--- title: Single data frame Operations author: R package build date: '2022-02-14' slug: single-data-frame-operations categories: [] tags: [] ---
library(tidyverse)
## ── Attaching packages ─────────────────────────────────────── tidyverse 1.3.1 ──
## ✓ ggplot2 3.3.5 ✓ purrr 0.3.4
## ✓ tibble 3.1.6 ✓ dplyr 1.0.8
## ✓ tidyr 1.2.0 ✓ stringr 1.4.0
## ✓ readr 2.1.2 ✓ forcats 0.5.1
## ── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
## x dplyr::filter() masks stats::filter()
## x dplyr::lag() masks stats::lag()
url <- 'https://raw.githubusercontent.com/gnunez2020/tidyverse/main/hotels.csv'
hotels <- read.csv(url)
names(hotels)
## [1] "hotel" "is_canceled"
## [3] "lead_time" "arrival_date_year"
## [5] "arrival_date_month" "arrival_date_week_number"
## [7] "arrival_date_day_of_month" "stays_in_weekend_nights"
## [9] "stays_in_week_nights" "adults"
## [11] "children" "babies"
## [13] "meal" "country"
## [15] "market_segment" "distribution_channel"
## [17] "is_repeated_guest" "previous_cancellations"
## [19] "previous_bookings_not_canceled" "reserved_room_type"
## [21] "assigned_room_type" "booking_changes"
## [23] "deposit_type" "agent"
## [25] "company" "days_in_waiting_list"
## [27] "customer_type" "adr"
## [29] "required_car_parking_spaces" "total_of_special_requests"
## [31] "reservation_status" "reservation_status_date"
##Select
hotels %>%
select(hotel, lead_time)
## hotel lead_time
## 1 Resort Hotel 342
## 2 Resort Hotel 737
## 3 Resort Hotel 7
## 4 Resort Hotel 13
## 5 Resort Hotel 14
## 6 Resort Hotel 14
## 7 Resort Hotel 0
## 8 Resort Hotel 9
## 9 Resort Hotel 85
## 10 Resort Hotel 75
## 11 Resort Hotel 23
## 12 Resort Hotel 35
## 13 Resort Hotel 68
## 14 Resort Hotel 18
## 15 Resort Hotel 37
## 16 Resort Hotel 68
## 17 Resort Hotel 37
## 18 Resort Hotel 12
## 19 Resort Hotel 0
## 20 Resort Hotel 7
## 21 Resort Hotel 37
## 22 Resort Hotel 72
## 23 Resort Hotel 72
## 24 Resort Hotel 72
## 25 Resort Hotel 127
## 26 Resort Hotel 78
## 27 Resort Hotel 48
## 28 Resort Hotel 60
## 29 Resort Hotel 77
## 30 Resort Hotel 99
## 31 Resort Hotel 118
## 32 Resort Hotel 95
## 33 Resort Hotel 96
## 34 Resort Hotel 69
## 35 Resort Hotel 45
## 36 Resort Hotel 40
## 37 Resort Hotel 15
## 38 Resort Hotel 36
## 39 Resort Hotel 43
## 40 Resort Hotel 70
## 41 Resort Hotel 45
## 42 Resort Hotel 45
## 43 Resort Hotel 16
## 44 Resort Hotel 70
## 45 Resort Hotel 107
## 46 Resort Hotel 47
## 47 Resort Hotel 96
## 48 Resort Hotel 113
## 49 Resort Hotel 90
## 50 Resort Hotel 50
## 51 Resort Hotel 113
## 52 Resort Hotel 93
## 53 Resort Hotel 76
## 54 Resort Hotel 3
## 55 Resort Hotel 1
## 56 Resort Hotel 1
## 57 Resort Hotel 0
## 58 Resort Hotel 0
## 59 Resort Hotel 0
## 60 Resort Hotel 14
## 61 Resort Hotel 10
## 62 Resort Hotel 5
## 63 Resort Hotel 17
## 64 Resort Hotel 93
## 65 Resort Hotel 3
## 66 Resort Hotel 10
## 67 Resort Hotel 3
## 68 Resort Hotel 51
## 69 Resort Hotel 71
## 70 Resort Hotel 63
## 71 Resort Hotel 62
## 72 Resort Hotel 101
## 73 Resort Hotel 2
## 74 Resort Hotel 15
## 75 Resort Hotel 51
## 76 Resort Hotel 3
## 77 Resort Hotel 48
## 78 Resort Hotel 2
## 79 Resort Hotel 72
## 80 Resort Hotel 81
## 81 Resort Hotel 99
## 82 Resort Hotel 368
## 83 Resort Hotel 364
## 84 Resort Hotel 81
## 85 Resort Hotel 99
## 86 Resort Hotel 324
## 87 Resort Hotel 69
## 88 Resort Hotel 79
## 89 Resort Hotel 12
## 90 Resort Hotel 9
## 91 Resort Hotel 1
## 92 Resort Hotel 21
## 93 Resort Hotel 9
## 94 Resort Hotel 109
## 95 Resort Hotel 109
## 96 Resort Hotel 72
## 97 Resort Hotel 63
## 98 Resort Hotel 63
## 99 Resort Hotel 101
## 100 Resort Hotel 102
## 101 Resort Hotel 4
## 102 Resort Hotel 98
## 103 Resort Hotel 92
## 104 Resort Hotel 95
## 105 Resort Hotel 102
## 106 Resort Hotel 26
## 107 Resort Hotel 73
## 108 Resort Hotel 102
## 109 Resort Hotel 115
## 110 Resort Hotel 102
## 111 Resort Hotel 86
## 112 Resort Hotel 78
## 113 Resort Hotel 52
## 114 Resort Hotel 29
## 115 Resort Hotel 101
## 116 Resort Hotel 109
## 117 Resort Hotel 92
## 118 Resort Hotel 92
## 119 Resort Hotel 79
## 120 Resort Hotel 2
## 121 Resort Hotel 30
## 122 Resort Hotel 51
## 123 Resort Hotel 36
## 124 Resort Hotel 73
## 125 Resort Hotel 33
## 126 Resort Hotel 32
## 127 Resort Hotel 8
## 128 Resort Hotel 100
## 129 Resort Hotel 1
## 130 Resort Hotel 100
## 131 Resort Hotel 100
## 132 Resort Hotel 9
## 133 Resort Hotel 5
## 134 Resort Hotel 0
## 135 Resort Hotel 9
## 136 Resort Hotel 2
## 137 Resort Hotel 2
## 138 Resort Hotel 9
## 139 Resort Hotel 5
## 140 Resort Hotel 2
## 141 Resort Hotel 44
## 142 Resort Hotel 80
## 143 Resort Hotel 97
## 144 Resort Hotel 109
## 145 Resort Hotel 30
## 146 Resort Hotel 64
## 147 Resort Hotel 39
## 148 Resort Hotel 90
## 149 Resort Hotel 34
## 150 Resort Hotel 93
## 151 Resort Hotel 97
## 152 Resort Hotel 29
## 153 Resort Hotel 101
## 154 Resort Hotel 27
## 155 Resort Hotel 8
## 156 Resort Hotel 82
## 157 Resort Hotel 94
## 158 Resort Hotel 110
## 159 Resort Hotel 96
## 160 Resort Hotel 79
## 161 Resort Hotel 115
## 162 Resort Hotel 111
## 163 Resort Hotel 51
## 164 Resort Hotel 94
## 165 Resort Hotel 81
## 166 Resort Hotel 84
## 167 Resort Hotel 51
## 168 Resort Hotel 111
## 169 Resort Hotel 0
## 170 Resort Hotel 2
## 171 Resort Hotel 7
## 172 Resort Hotel 98
## 173 Resort Hotel 95
## 174 Resort Hotel 48
## 175 Resort Hotel 66
## 176 Resort Hotel 104
## 177 Resort Hotel 28
## 178 Resort Hotel 34
## 179 Resort Hotel 98
## 180 Resort Hotel 104
## 181 Resort Hotel 68
## 182 Resort Hotel 86
## 183 Resort Hotel 258
## 184 Resort Hotel 111
## 185 Resort Hotel 94
## 186 Resort Hotel 112
## 187 Resort Hotel 100
## 188 Resort Hotel 33
## 189 Resort Hotel 97
## 190 Resort Hotel 80
## 191 Resort Hotel 90
## 192 Resort Hotel 111
## 193 Resort Hotel 65
## 194 Resort Hotel 67
## 195 Resort Hotel 55
## 196 Resort Hotel 21
## 197 Resort Hotel 8
## 198 Resort Hotel 8
## 199 Resort Hotel 0
## 200 Resort Hotel 0
## 201 Resort Hotel 0
## 202 Resort Hotel 8
## 203 Resort Hotel 66
## 204 Resort Hotel 88
## 205 Resort Hotel 0
## 206 Resort Hotel 43
## 207 Resort Hotel 88
## 208 Resort Hotel 54
## 209 Resort Hotel 292
## 210 Resort Hotel 112
## 211 Resort Hotel 68
## 212 Resort Hotel 7
## 213 Resort Hotel 1
## 214 Resort Hotel 113
## 215 Resort Hotel 5
## 216 Resort Hotel 83
## 217 Resort Hotel 105
## 218 Resort Hotel 0
## 219 Resort Hotel 1
## 220 Resort Hotel 1
## 221 Resort Hotel 1
## 222 Resort Hotel 102
## 223 Resort Hotel 113
## 224 Resort Hotel 280
## 225 Resort Hotel 96
## 226 Resort Hotel 394
## 227 Resort Hotel 33
## 228 Resort Hotel 82
## 229 Resort Hotel 100
## 230 Resort Hotel 100
## 231 Resort Hotel 17
## 232 Resort Hotel 68
## 233 Resort Hotel 12
## 234 Resort Hotel 77
## 235 Resort Hotel 24
## 236 Resort Hotel 44
## 237 Resort Hotel 78
## 238 Resort Hotel 17
## 239 Resort Hotel 103
## 240 Resort Hotel 16
## 241 Resort Hotel 14
## 242 Resort Hotel 77
## 243 Resort Hotel 90
## 244 Resort Hotel 90
## 245 Resort Hotel 90
## 246 Resort Hotel 366
## 247 Resort Hotel 249
## 248 Resort Hotel 69
## 249 Resort Hotel 10
## 250 Resort Hotel 22
## 251 Resort Hotel 91
## 252 Resort Hotel 23
## 253 Resort Hotel 11
## 254 Resort Hotel 3
## 255 Resort Hotel 13
## 256 Resort Hotel 108
## 257 Resort Hotel 91
## 258 Resort Hotel 37
## 259 Resort Hotel 21
## 260 Resort Hotel 106
## 261 Resort Hotel 30
## 262 Resort Hotel 30
## 263 Resort Hotel 51
## 264 Resort Hotel 79
## 265 Resort Hotel 21
## 266 Resort Hotel 35
## 267 Resort Hotel 78
## 268 Resort Hotel 31
## 269 Resort Hotel 78
## 270 Resort Hotel 78
## 271 Resort Hotel 44
## 272 Resort Hotel 34
## 273 Resort Hotel 87
## 274 Resort Hotel 11
## 275 Resort Hotel 115
## 276 Resort Hotel 86
## 277 Resort Hotel 41
## 278 Resort Hotel 32
## 279 Resort Hotel 34
## 280 Resort Hotel 34
## 281 Resort Hotel 100
## 282 Resort Hotel 44
## 283 Resort Hotel 304
## 284 Resort Hotel 36
## 285 Resort Hotel 117
## 286 Resort Hotel 70
## 287 Resort Hotel 110
## 288 Resort Hotel 109
## 289 Resort Hotel 33
## 290 Resort Hotel 33
## 291 Resort Hotel 33
## 292 Resort Hotel 0
## 293 Resort Hotel 0
## 294 Resort Hotel 0
## 295 Resort Hotel 0
## 296 Resort Hotel 84
## 297 Resort Hotel 71
## 298 Resort Hotel 16
## 299 Resort Hotel 54
## 300 Resort Hotel 8
## 301 Resort Hotel 36
## 302 Resort Hotel 40
## 303 Resort Hotel 59
## 304 Resort Hotel 79
## 305 Resort Hotel 32
## 306 Resort Hotel 110
## 307 Resort Hotel 33
## 308 Resort Hotel 53
## 309 Resort Hotel 2
## 310 Resort Hotel 8
## 311 Resort Hotel 72
## 312 Resort Hotel 12
## 313 Resort Hotel 48
## 314 Resort Hotel 90
## 315 Resort Hotel 34
## 316 Resort Hotel 58
## 317 Resort Hotel 59
## 318 Resort Hotel 90
## 319 Resort Hotel 116
## 320 Resort Hotel 31
## 321 Resort Hotel 51
## 322 Resort Hotel 48
## 323 Resort Hotel 59
## 324 Resort Hotel 97
## 325 Resort Hotel 12
## 326 Resort Hotel 64
## 327 Resort Hotel 31
## 328 Resort Hotel 59
## 329 Resort Hotel 55
## 330 Resort Hotel 81
## 331 Resort Hotel 1
## 332 Resort Hotel 34
## 333 Resort Hotel 13
## 334 Resort Hotel 40
## 335 Resort Hotel 1
## 336 Resort Hotel 34
## 337 Resort Hotel 88
## 338 Resort Hotel 9
## 339 Resort Hotel 24
## 340 Resort Hotel 97
## 341 Resort Hotel 60
## 342 Resort Hotel 100
## 343 Resort Hotel 50
## 344 Resort Hotel 47
## 345 Resort Hotel 8
## 346 Resort Hotel 34
## 347 Resort Hotel 47
## 348 Resort Hotel 115
## 349 Resort Hotel 79
## 350 Resort Hotel 91
## 351 Resort Hotel 98
## 352 Resort Hotel 109
## 353 Resort Hotel 0
## 354 Resort Hotel 98
## 355 Resort Hotel 0
## 356 Resort Hotel 9
## 357 Resort Hotel 62
## 358 Resort Hotel 45
## 359 Resort Hotel 42
## 360 Resort Hotel 54
## 361 Resort Hotel 51
## 362 Resort Hotel 54
## 363 Resort Hotel 58
## 364 Resort Hotel 0
## 365 Resort Hotel 60
## 366 Resort Hotel 321
## 367 Resort Hotel 40
## 368 Resort Hotel 51
## 369 Resort Hotel 38
## 370 Resort Hotel 75
## 371 Resort Hotel 101
## 372 Resort Hotel 42
## 373 Resort Hotel 40
## 374 Resort Hotel 109
## 375 Resort Hotel 81
## 376 Resort Hotel 98
## 377 Resort Hotel 32
## 378 Resort Hotel 72
## 379 Resort Hotel 115
## 380 Resort Hotel 118
## 381 Resort Hotel 81
## 382 Resort Hotel 95
## 383 Resort Hotel 16
## 384 Resort Hotel 56
## 385 Resort Hotel 88
## 386 Resort Hotel 41
## 387 Resort Hotel 40
## 388 Resort Hotel 1
## 389 Resort Hotel 1
## 390 Resort Hotel 1
## 391 Resort Hotel 76
## 392 Resort Hotel 0
## 393 Resort Hotel 49
## 394 Resort Hotel 76
## 395 Resort Hotel 73
## 396 Resort Hotel 73
## 397 Resort Hotel 317
## 398 Resort Hotel 112
## 399 Resort Hotel 6
## 400 Resort Hotel 8
## 401 Resort Hotel 96
## 402 Resort Hotel 96
## 403 Resort Hotel 99
## 404 Resort Hotel 66
## 405 Resort Hotel 38
## 406 Resort Hotel 38
## 407 Resort Hotel 113
## 408 Resort Hotel 0
## 409 Resort Hotel 62
## 410 Resort Hotel 39
## 411 Resort Hotel 37
## 412 Resort Hotel 58
## 413 Resort Hotel 37
## 414 Resort Hotel 57
## 415 Resort Hotel 57
## 416 Resort Hotel 57
## 417 Resort Hotel 57
## 418 Resort Hotel 57
## 419 Resort Hotel 83
## 420 Resort Hotel 57
## 421 Resort Hotel 57
## 422 Resort Hotel 57
## 423 Resort Hotel 57
## 424 Resort Hotel 57
## 425 Resort Hotel 57
## 426 Resort Hotel 57
## 427 Resort Hotel 57
## 428 Resort Hotel 57
## 429 Resort Hotel 57
## 430 Resort Hotel 57
## 431 Resort Hotel 57
## 432 Resort Hotel 57
## 433 Resort Hotel 57
## 434 Resort Hotel 57
## 435 Resort Hotel 66
## 436 Resort Hotel 13
## 437 Resort Hotel 50
## 438 Resort Hotel 48
## 439 Resort Hotel 0
## 440 Resort Hotel 7
## 441 Resort Hotel 0
## 442 Resort Hotel 66
## 443 Resort Hotel 13
## 444 Resort Hotel 66
## 445 Resort Hotel 10
## 446 Resort Hotel 10
## 447 Resort Hotel 58
## 448 Resort Hotel 17
## 449 Resort Hotel 19
## 450 Resort Hotel 10
## 451 Resort Hotel 12
## 452 Resort Hotel 10
## 453 Resort Hotel 63
## 454 Resort Hotel 35
## 455 Resort Hotel 113
## 456 Resort Hotel 35
## 457 Resort Hotel 68
## 458 Resort Hotel 113
## 459 Resort Hotel 21
## 460 Resort Hotel 6
## 461 Resort Hotel 7
## 462 Resort Hotel 17
## 463 Resort Hotel 1
## 464 Resort Hotel 2
## 465 Resort Hotel 15
## 466 Resort Hotel 7
## 467 Resort Hotel 11
## 468 Resort Hotel 6
## 469 Resort Hotel 1
## 470 Resort Hotel 1
## 471 Resort Hotel 48
## 472 Resort Hotel 15
## 473 Resort Hotel 3
## 474 Resort Hotel 23
## 475 Resort Hotel 53
## 476 Resort Hotel 53
## 477 Resort Hotel 94
## 478 Resort Hotel 64
## 479 Resort Hotel 53
## 480 Resort Hotel 53
## 481 Resort Hotel 64
## 482 Resort Hotel 53
## 483 Resort Hotel 24
## 484 Resort Hotel 24
## 485 Resort Hotel 23
## 486 Resort Hotel 53
## 487 Resort Hotel 23
## 488 Resort Hotel 90
## 489 Resort Hotel 79
## 490 Resort Hotel 43
## 491 Resort Hotel 90
## 492 Resort Hotel 65
## 493 Resort Hotel 65
## 494 Resort Hotel 99
## 495 Resort Hotel 25
## 496 Resort Hotel 92
## 497 Resort Hotel 91
## 498 Resort Hotel 38
## 499 Resort Hotel 6
## 500 Resort Hotel 38
## 501 Resort Hotel 13
## 502 Resort Hotel 32
## 503 Resort Hotel 315
## 504 Resort Hotel 8
## 505 Resort Hotel 0
## 506 Resort Hotel 91
## 507 Resort Hotel 3
## 508 Resort Hotel 9
## 509 Resort Hotel 19
## 510 Resort Hotel 25
## 511 Resort Hotel 108
## 512 Resort Hotel 37
## 513 Resort Hotel 45
## 514 Resort Hotel 64
## 515 Resort Hotel 44
## 516 Resort Hotel 26
## 517 Resort Hotel 96
## 518 Resort Hotel 123
## 519 Resort Hotel 42
## 520 Resort Hotel 59
## 521 Resort Hotel 28
## 522 Resort Hotel 106
## 523 Resort Hotel 1
## 524 Resort Hotel 0
## 525 Resort Hotel 4
## 526 Resort Hotel 3
## 527 Resort Hotel 73
## 528 Resort Hotel 44
## 529 Resort Hotel 95
## 530 Resort Hotel 94
## 531 Resort Hotel 40
## 532 Resort Hotel 64
## 533 Resort Hotel 64
## 534 Resort Hotel 94
## 535 Resort Hotel 57
## 536 Resort Hotel 60
## 537 Resort Hotel 57
## 538 Resort Hotel 87
## 539 Resort Hotel 0
## 540 Resort Hotel 0
## 541 Resort Hotel 6
## 542 Resort Hotel 0
## 543 Resort Hotel 19
## 544 Resort Hotel 4
## 545 Resort Hotel 59
## 546 Resort Hotel 44
## 547 Resort Hotel 37
## 548 Resort Hotel 66
## 549 Resort Hotel 38
## 550 Resort Hotel 62
## 551 Resort Hotel 41
## 552 Resort Hotel 60
## 553 Resort Hotel 104
## 554 Resort Hotel 62
## 555 Resort Hotel 117
## 556 Resort Hotel 31
## 557 Resort Hotel 34
## 558 Resort Hotel 47
## 559 Resort Hotel 24
## 560 Resort Hotel 104
## 561 Resort Hotel 104
## 562 Resort Hotel 32
## 563 Resort Hotel 47
## 564 Resort Hotel 29
## 565 Resort Hotel 30
## 566 Resort Hotel 123
## 567 Resort Hotel 14
## 568 Resort Hotel 118
## 569 Resort Hotel 0
## 570 Resort Hotel 0
## 571 Resort Hotel 79
## 572 Resort Hotel 63
## 573 Resort Hotel 68
## 574 Resort Hotel 96
## 575 Resort Hotel 41
## 576 Resort Hotel 46
## 577 Resort Hotel 41
## 578 Resort Hotel 60
## 579 Resort Hotel 41
## 580 Resort Hotel 69
## 581 Resort Hotel 41
## 582 Resort Hotel 52
## 583 Resort Hotel 41
## 584 Resort Hotel 89
## 585 Resort Hotel 28
## 586 Resort Hotel 65
## 587 Resort Hotel 82
## 588 Resort Hotel 42
## 589 Resort Hotel 62
## 590 Resort Hotel 86
## 591 Resort Hotel 118
## 592 Resort Hotel 28
## 593 Resort Hotel 52
## 594 Resort Hotel 49
## 595 Resort Hotel 39
## 596 Resort Hotel 39
## 597 Resort Hotel 39
## 598 Resort Hotel 7
## 599 Resort Hotel 7
## 600 Resort Hotel 42
## 601 Resort Hotel 5
## 602 Resort Hotel 81
## 603 Resort Hotel 63
## 604 Resort Hotel 61
## 605 Resort Hotel 8
## 606 Resort Hotel 89
## 607 Resort Hotel 57
## 608 Resort Hotel 102
## 609 Resort Hotel 108
## 610 Resort Hotel 28
## 611 Resort Hotel 29
## 612 Resort Hotel 0
## 613 Resort Hotel 96
## 614 Resort Hotel 44
## 615 Resort Hotel 44
## 616 Resort Hotel 44
## 617 Resort Hotel 44
## 618 Resort Hotel 41
## 619 Resort Hotel 16
## 620 Resort Hotel 73
## 621 Resort Hotel 3
## 622 Resort Hotel 0
## 623 Resort Hotel 55
## 624 Resort Hotel 33
## 625 Resort Hotel 19
## 626 Resort Hotel 55
## 627 Resort Hotel 33
## 628 Resort Hotel 19
## 629 Resort Hotel 19
## 630 Resort Hotel 117
## 631 Resort Hotel 72
## 632 Resort Hotel 19
## 633 Resort Hotel 34
## 634 Resort Hotel 9
## 635 Resort Hotel 8
## 636 Resort Hotel 36
## 637 Resort Hotel 22
## 638 Resort Hotel 22
## 639 Resort Hotel 22
## 640 Resort Hotel 36
## 641 Resort Hotel 22
## 642 Resort Hotel 22
## 643 Resort Hotel 18
## 644 Resort Hotel 8
## 645 Resort Hotel 67
## 646 Resort Hotel 105
## 647 Resort Hotel 1
## 648 Resort Hotel 67
## 649 Resort Hotel 39
## 650 Resort Hotel 45
## 651 Resort Hotel 45
## 652 Resort Hotel 14
## 653 Resort Hotel 53
## 654 Resort Hotel 28
## 655 Resort Hotel 55
## 656 Resort Hotel 55
## 657 Resort Hotel 25
## 658 Resort Hotel 43
## 659 Resort Hotel 109
## 660 Resort Hotel 62
## 661 Resort Hotel 25
## 662 Resort Hotel 43
## 663 Resort Hotel 35
## 664 Resort Hotel 42
## 665 Resort Hotel 312
## 666 Resort Hotel 30
## 667 Resort Hotel 47
## 668 Resort Hotel 40
## 669 Resort Hotel 11
## 670 Resort Hotel 39
## 671 Resort Hotel 39
## 672 Resort Hotel 1
## 673 Resort Hotel 12
## 674 Resort Hotel 16
## 675 Resort Hotel 16
## 676 Resort Hotel 12
## 677 Resort Hotel 51
## 678 Resort Hotel 67
## 679 Resort Hotel 52
## 680 Resort Hotel 25
## 681 Resort Hotel 94
## 682 Resort Hotel 54
## 683 Resort Hotel 33
## 684 Resort Hotel 47
## 685 Resort Hotel 43
## 686 Resort Hotel 87
## 687 Resort Hotel 54
## 688 Resort Hotel 32
## 689 Resort Hotel 29
## 690 Resort Hotel 96
## 691 Resort Hotel 100
## 692 Resort Hotel 54
## 693 Resort Hotel 75
## 694 Resort Hotel 31
## 695 Resort Hotel 25
## 696 Resort Hotel 61
## 697 Resort Hotel 60
## 698 Resort Hotel 31
## 699 Resort Hotel 107
## 700 Resort Hotel 31
## 701 Resort Hotel 115
## 702 Resort Hotel 59
## 703 Resort Hotel 85
## 704 Resort Hotel 0
## 705 Resort Hotel 299
## 706 Resort Hotel 50
## 707 Resort Hotel 50
## 708 Resort Hotel 88
## 709 Resort Hotel 116
## 710 Resort Hotel 47
## 711 Resort Hotel 48
## 712 Resort Hotel 54
## 713 Resort Hotel 33
## 714 Resort Hotel 73
## 715 Resort Hotel 54
## 716 Resort Hotel 33
## 717 Resort Hotel 38
## 718 Resort Hotel 34
## 719 Resort Hotel 130
## 720 Resort Hotel 39
## 721 Resort Hotel 39
## 722 Resort Hotel 45
## 723 Resort Hotel 31
## 724 Resort Hotel 48
## 725 Resort Hotel 59
## 726 Resort Hotel 48
## 727 Resort Hotel 48
## 728 Resort Hotel 48
## 729 Resort Hotel 48
## 730 Resort Hotel 96
## 731 Resort Hotel 51
## 732 Resort Hotel 96
## 733 Resort Hotel 41
## 734 Resort Hotel 6
## 735 Resort Hotel 27
## 736 Resort Hotel 28
## 737 Resort Hotel 30
## 738 Resort Hotel 45
## 739 Resort Hotel 52
## 740 Resort Hotel 31
## 741 Resort Hotel 74
## 742 Resort Hotel 31
## 743 Resort Hotel 87
## 744 Resort Hotel 48
## 745 Resort Hotel 41
## 746 Resort Hotel 35
## 747 Resort Hotel 28
## 748 Resort Hotel 77
## 749 Resort Hotel 33
## 750 Resort Hotel 30
## 751 Resort Hotel 34
## 752 Resort Hotel 298
## 753 Resort Hotel 35
## 754 Resort Hotel 40
## 755 Resort Hotel 101
## 756 Resort Hotel 101
## 757 Resort Hotel 101
## 758 Resort Hotel 101
## 759 Resort Hotel 38
## 760 Resort Hotel 76
## 761 Resort Hotel 70
## 762 Resort Hotel 70
## 763 Resort Hotel 68
## 764 Resort Hotel 63
## 765 Resort Hotel 11
## 766 Resort Hotel 32
## 767 Resort Hotel 29
## 768 Resort Hotel 47
## 769 Resort Hotel 50
## 770 Resort Hotel 29
## 771 Resort Hotel 36
## 772 Resort Hotel 49
## 773 Resort Hotel 70
## 774 Resort Hotel 110
## 775 Resort Hotel 8
## 776 Resort Hotel 119
## 777 Resort Hotel 30
## 778 Resort Hotel 29
## 779 Resort Hotel 71
## 780 Resort Hotel 37
## 781 Resort Hotel 40
## 782 Resort Hotel 37
## 783 Resort Hotel 0
## 784 Resort Hotel 37
## 785 Resort Hotel 37
## 786 Resort Hotel 97
## 787 Resort Hotel 71
## 788 Resort Hotel 118
## 789 Resort Hotel 102
## 790 Resort Hotel 54
## 791 Resort Hotel 58
## 792 Resort Hotel 34
## 793 Resort Hotel 105
## 794 Resort Hotel 47
## 795 Resort Hotel 15
## 796 Resort Hotel 37
## 797 Resort Hotel 0
## 798 Resort Hotel 8
## 799 Resort Hotel 17
## 800 Resort Hotel 3
## 801 Resort Hotel 30
## 802 Resort Hotel 31
## 803 Resort Hotel 66
## 804 Resort Hotel 52
## 805 Resort Hotel 20
## 806 Resort Hotel 30
## 807 Resort Hotel 31
## 808 Resort Hotel 62
## 809 Resort Hotel 65
## 810 Resort Hotel 64
## 811 Resort Hotel 77
## 812 Resort Hotel 75
## 813 Resort Hotel 75
## 814 Resort Hotel 62
## 815 Resort Hotel 42
## 816 Resort Hotel 46
## 817 Resort Hotel 0
## 818 Resort Hotel 25
## 819 Resort Hotel 16
## 820 Resort Hotel 16
## 821 Resort Hotel 16
## 822 Resort Hotel 4
## 823 Resort Hotel 4
## 824 Resort Hotel 25
## 825 Resort Hotel 83
## 826 Resort Hotel 4
## 827 Resort Hotel 56
## 828 Resort Hotel 32
## 829 Resort Hotel 32
## 830 Resort Hotel 0
## 831 Resort Hotel 18
## 832 Resort Hotel 23
## 833 Resort Hotel 39
## 834 Resort Hotel 18
## 835 Resort Hotel 18
## 836 Resort Hotel 23
## 837 Resort Hotel 286
## 838 Resort Hotel 72
## 839 Resort Hotel 136
## 840 Resort Hotel 58
## 841 Resort Hotel 80
## 842 Resort Hotel 113
## 843 Resort Hotel 129
## 844 Resort Hotel 84
## 845 Resort Hotel 84
## 846 Resort Hotel 89
## 847 Resort Hotel 10
## 848 Resort Hotel 80
## 849 Resort Hotel 10
## 850 Resort Hotel 10
## 851 Resort Hotel 24
## 852 Resort Hotel 1
## 853 Resort Hotel 9
## 854 Resort Hotel 3
## 855 Resort Hotel 3
## 856 Resort Hotel 124
## 857 Resort Hotel 74
## 858 Resort Hotel 82
## 859 Resort Hotel 91
## 860 Resort Hotel 77
## 861 Resort Hotel 130
## 862 Resort Hotel 91
## 863 Resort Hotel 79
## 864 Resort Hotel 130
## 865 Resort Hotel 66
## 866 Resort Hotel 53
## 867 Resort Hotel 80
## 868 Resort Hotel 77
## 869 Resort Hotel 57
## 870 Resort Hotel 11
## 871 Resort Hotel 25
## 872 Resort Hotel 2
## 873 Resort Hotel 36
## 874 Resort Hotel 36
## 875 Resort Hotel 115
## 876 Resort Hotel 95
## 877 Resort Hotel 67
## 878 Resort Hotel 60
## 879 Resort Hotel 34
## 880 Resort Hotel 78
## 881 Resort Hotel 93
## 882 Resort Hotel 327
## 883 Resort Hotel 21
## 884 Resort Hotel 0
## 885 Resort Hotel 47
## 886 Resort Hotel 81
## 887 Resort Hotel 52
## 888 Resort Hotel 13
## 889 Resort Hotel 83
## 890 Resort Hotel 131
## 891 Resort Hotel 460
## 892 Resort Hotel 82
## 893 Resort Hotel 61
## 894 Resort Hotel 94
## 895 Resort Hotel 1
## 896 Resort Hotel 0
## 897 Resort Hotel 36
## 898 Resort Hotel 61
## 899 Resort Hotel 13
## 900 Resort Hotel 13
## 901 Resort Hotel 15
## 902 Resort Hotel 14
## 903 Resort Hotel 13
## 904 Resort Hotel 140
## 905 Resort Hotel 6
## 906 Resort Hotel 140
## 907 Resort Hotel 81
## 908 Resort Hotel 1
## 909 Resort Hotel 65
## 910 Resort Hotel 0
## 911 Resort Hotel 2
## 912 Resort Hotel 0
## 913 Resort Hotel 114
## 914 Resort Hotel 111
## 915 Resort Hotel 44
## 916 Resort Hotel 139
## 917 Resort Hotel 57
## 918 Resort Hotel 16
## 919 Resort Hotel 139
## 920 Resort Hotel 84
## 921 Resort Hotel 117
## 922 Resort Hotel 69
## 923 Resort Hotel 2
## 924 Resort Hotel 118
## 925 Resort Hotel 129
## 926 Resort Hotel 9
## 927 Resort Hotel 52
## 928 Resort Hotel 65
## 929 Resort Hotel 7
## 930 Resort Hotel 28
## 931 Resort Hotel 3
## 932 Resort Hotel 87
## 933 Resort Hotel 51
## 934 Resort Hotel 136
## 935 Resort Hotel 4
## 936 Resort Hotel 1
## 937 Resort Hotel 49
## 938 Resort Hotel 4
## 939 Resort Hotel 45
## 940 Resort Hotel 6
## 941 Resort Hotel 4
## 942 Resort Hotel 53
## 943 Resort Hotel 52
## 944 Resort Hotel 4
## 945 Resort Hotel 98
## 946 Resort Hotel 46
## 947 Resort Hotel 122
## 948 Resort Hotel 83
## 949 Resort Hotel 16
## 950 Resort Hotel 43
## 951 Resort Hotel 73
## 952 Resort Hotel 116
## 953 Resort Hotel 113
## 954 Resort Hotel 113
## 955 Resort Hotel 51
## 956 Resort Hotel 65
## 957 Resort Hotel 0
## 958 Resort Hotel 87
## 959 Resort Hotel 106
## 960 Resort Hotel 5
## 961 Resort Hotel 98
## 962 Resort Hotel 78
## 963 Resort Hotel 4
## 964 Resort Hotel 5
## 965 Resort Hotel 3
## 966 Resort Hotel 85
## 967 Resort Hotel 137
## 968 Resort Hotel 67
## 969 Resort Hotel 54
## 970 Resort Hotel 87
## 971 Resort Hotel 54
## 972 Resort Hotel 12
## 973 Resort Hotel 60
## 974 Resort Hotel 75
## 975 Resort Hotel 54
## 976 Resort Hotel 126
## 977 Resort Hotel 54
## 978 Resort Hotel 84
## 979 Resort Hotel 106
## 980 Resort Hotel 136
## 981 Resort Hotel 98
## 982 Resort Hotel 91
## 983 Resort Hotel 58
## 984 Resort Hotel 61
## 985 Resort Hotel 0
## 986 Resort Hotel 5
## 987 Resort Hotel 2
## 988 Resort Hotel 9
## 989 Resort Hotel 10
## 990 Resort Hotel 62
## 991 Resort Hotel 34
## 992 Resort Hotel 82
## 993 Resort Hotel 65
## 994 Resort Hotel 129
## 995 Resort Hotel 55
## 996 Resort Hotel 122
## 997 Resort Hotel 41
## 998 Resort Hotel 41
## 999 Resort Hotel 81
## 1000 Resort Hotel 59
## 1001 Resort Hotel 72
## 1002 Resort Hotel 68
## 1003 Resort Hotel 81
## 1004 Resort Hotel 72
## 1005 Resort Hotel 68
## 1006 Resort Hotel 127
## 1007 Resort Hotel 127
## 1008 Resort Hotel 5
## 1009 Resort Hotel 68
## 1010 Resort Hotel 47
## 1011 Resort Hotel 19
## 1012 Resort Hotel 72
## 1013 Resort Hotel 30
## 1014 Resort Hotel 139
## 1015 Resort Hotel 112
## 1016 Resort Hotel 63
## 1017 Resort Hotel 35
## 1018 Resort Hotel 75
## 1019 Resort Hotel 136
## 1020 Resort Hotel 35
## 1021 Resort Hotel 63
## 1022 Resort Hotel 77
## 1023 Resort Hotel 62
## 1024 Resort Hotel 95
## 1025 Resort Hotel 101
## 1026 Resort Hotel 38
## 1027 Resort Hotel 60
## 1028 Resort Hotel 60
## 1029 Resort Hotel 76
## 1030 Resort Hotel 90
## 1031 Resort Hotel 90
## 1032 Resort Hotel 87
## 1033 Resort Hotel 31
## 1034 Resort Hotel 74
## 1035 Resort Hotel 120
## 1036 Resort Hotel 120
## 1037 Resort Hotel 120
## 1038 Resort Hotel 116
## 1039 Resort Hotel 83
## 1040 Resort Hotel 80
## 1041 Resort Hotel 27
## 1042 Resort Hotel 78
## 1043 Resort Hotel 117
## 1044 Resort Hotel 70
## 1045 Resort Hotel 85
## 1046 Resort Hotel 117
## 1047 Resort Hotel 22
## 1048 Resort Hotel 34
## 1049 Resort Hotel 68
## 1050 Resort Hotel 69
## 1051 Resort Hotel 85
## 1052 Resort Hotel 102
## 1053 Resort Hotel 31
## 1054 Resort Hotel 49
## 1055 Resort Hotel 84
## 1056 Resort Hotel 102
## 1057 Resort Hotel 66
## 1058 Resort Hotel 80
## 1059 Resort Hotel 85
## 1060 Resort Hotel 33
## 1061 Resort Hotel 1
## 1062 Resort Hotel 33
## 1063 Resort Hotel 47
## 1064 Resort Hotel 2
## 1065 Resort Hotel 22
## 1066 Resort Hotel 22
## 1067 Resort Hotel 55
## 1068 Resort Hotel 68
## 1069 Resort Hotel 128
## 1070 Resort Hotel 128
## 1071 Resort Hotel 128
## 1072 Resort Hotel 78
## 1073 Resort Hotel 85
## 1074 Resort Hotel 0
## 1075 Resort Hotel 9
## 1076 Resort Hotel 1
## 1077 Resort Hotel 9
## 1078 Resort Hotel 120
## 1079 Resort Hotel 72
## 1080 Resort Hotel 23
## 1081 Resort Hotel 8
## 1082 Resort Hotel 47
## 1083 Resort Hotel 8
## 1084 Resort Hotel 135
## 1085 Resort Hotel 76
## 1086 Resort Hotel 15
## 1087 Resort Hotel 23
## 1088 Resort Hotel 87
## 1089 Resort Hotel 19
## 1090 Resort Hotel 21
## 1091 Resort Hotel 19
## 1092 Resort Hotel 23
## 1093 Resort Hotel 89
## 1094 Resort Hotel 51
## 1095 Resort Hotel 0
## 1096 Resort Hotel 0
## 1097 Resort Hotel 0
## 1098 Resort Hotel 0
## 1099 Resort Hotel 0
## 1100 Resort Hotel 38
## 1101 Resort Hotel 21
## 1102 Resort Hotel 34
## 1103 Resort Hotel 51
## 1104 Resort Hotel 38
## 1105 Resort Hotel 0
## 1106 Resort Hotel 84
## 1107 Resort Hotel 63
## 1108 Resort Hotel 7
## 1109 Resort Hotel 91
## 1110 Resort Hotel 81
## 1111 Resort Hotel 6
## 1112 Resort Hotel 64
## 1113 Resort Hotel 52
## 1114 Resort Hotel 22
## 1115 Resort Hotel 150
## 1116 Resort Hotel 64
## 1117 Resort Hotel 22
## 1118 Resort Hotel 3
## 1119 Resort Hotel 68
## 1120 Resort Hotel 35
## 1121 Resort Hotel 2
## 1122 Resort Hotel 68
## 1123 Resort Hotel 11
## 1124 Resort Hotel 80
## 1125 Resort Hotel 80
## 1126 Resort Hotel 72
## 1127 Resort Hotel 80
## 1128 Resort Hotel 77
## 1129 Resort Hotel 80
## 1130 Resort Hotel 31
## 1131 Resort Hotel 77
## 1132 Resort Hotel 93
## 1133 Resort Hotel 31
## 1134 Resort Hotel 89
## 1135 Resort Hotel 68
## 1136 Resort Hotel 72
## 1137 Resort Hotel 65
## 1138 Resort Hotel 71
## 1139 Resort Hotel 65
## 1140 Resort Hotel 89
## 1141 Resort Hotel 98
## 1142 Resort Hotel 26
## 1143 Resort Hotel 67
## 1144 Resort Hotel 54
## 1145 Resort Hotel 75
## 1146 Resort Hotel 78
## 1147 Resort Hotel 53
## 1148 Resort Hotel 65
## 1149 Resort Hotel 84
## 1150 Resort Hotel 47
## 1151 Resort Hotel 37
## 1152 Resort Hotel 37
## 1153 Resort Hotel 4
## 1154 Resort Hotel 37
## 1155 Resort Hotel 37
## 1156 Resort Hotel 12
## 1157 Resort Hotel 0
## 1158 Resort Hotel 37
## 1159 Resort Hotel 37
## 1160 Resort Hotel 2
## 1161 Resort Hotel 12
## 1162 Resort Hotel 12
## 1163 Resort Hotel 11
## 1164 Resort Hotel 143
## 1165 Resort Hotel 99
## 1166 Resort Hotel 22
## 1167 Resort Hotel 15
## 1168 Resort Hotel 15
## 1169 Resort Hotel 66
## 1170 Resort Hotel 55
## 1171 Resort Hotel 66
## 1172 Resort Hotel 79
## 1173 Resort Hotel 66
## 1174 Resort Hotel 95
## 1175 Resort Hotel 151
## 1176 Resort Hotel 54
## 1177 Resort Hotel 122
## 1178 Resort Hotel 132
## 1179 Resort Hotel 58
## 1180 Resort Hotel 98
## 1181 Resort Hotel 126
## 1182 Resort Hotel 97
## 1183 Resort Hotel 96
## 1184 Resort Hotel 125
## 1185 Resort Hotel 80
## 1186 Resort Hotel 110
## 1187 Resort Hotel 157
## 1188 Resort Hotel 108
## 1189 Resort Hotel 74
## 1190 Resort Hotel 79
## 1191 Resort Hotel 79
## 1192 Resort Hotel 116
## 1193 Resort Hotel 80
## 1194 Resort Hotel 116
## 1195 Resort Hotel 93
## 1196 Resort Hotel 87
## 1197 Resort Hotel 13
## 1198 Resort Hotel 56
## 1199 Resort Hotel 1
## 1200 Resort Hotel 13
## 1201 Resort Hotel 13
## 1202 Resort Hotel 56
## 1203 Resort Hotel 81
## 1204 Resort Hotel 24
## 1205 Resort Hotel 57
## 1206 Resort Hotel 74
## 1207 Resort Hotel 126
## 1208 Resort Hotel 126
## 1209 Resort Hotel 126
## 1210 Resort Hotel 147
## 1211 Resort Hotel 68
## 1212 Resort Hotel 57
## 1213 Resort Hotel 10
## 1214 Resort Hotel 92
## 1215 Resort Hotel 92
## 1216 Resort Hotel 33
## 1217 Resort Hotel 1
## 1218 Resort Hotel 91
## 1219 Resort Hotel 33
## 1220 Resort Hotel 16
## 1221 Resort Hotel 128
## 1222 Resort Hotel 61
## 1223 Resort Hotel 23
## 1224 Resort Hotel 23
## 1225 Resort Hotel 29
## 1226 Resort Hotel 98
## 1227 Resort Hotel 23
## 1228 Resort Hotel 98
## 1229 Resort Hotel 138
## 1230 Resort Hotel 82
## 1231 Resort Hotel 10
## 1232 Resort Hotel 100
## 1233 Resort Hotel 10
## 1234 Resort Hotel 0
## 1235 Resort Hotel 65
## 1236 Resort Hotel 64
## 1237 Resort Hotel 56
## 1238 Resort Hotel 94
## 1239 Resort Hotel 58
## 1240 Resort Hotel 80
## 1241 Resort Hotel 40
## 1242 Resort Hotel 102
## 1243 Resort Hotel 16
## 1244 Resort Hotel 24
## 1245 Resort Hotel 24
## 1246 Resort Hotel 18
## 1247 Resort Hotel 95
## 1248 Resort Hotel 36
## 1249 Resort Hotel 16
## 1250 Resort Hotel 50
## 1251 Resort Hotel 76
## 1252 Resort Hotel 112
## 1253 Resort Hotel 16
## 1254 Resort Hotel 51
## 1255 Resort Hotel 13
## 1256 Resort Hotel 22
## 1257 Resort Hotel 32
## 1258 Resort Hotel 51
## 1259 Resort Hotel 65
## 1260 Resort Hotel 63
## 1261 Resort Hotel 35
## 1262 Resort Hotel 37
## 1263 Resort Hotel 35
## 1264 Resort Hotel 71
## 1265 Resort Hotel 71
## 1266 Resort Hotel 77
## 1267 Resort Hotel 0
## 1268 Resort Hotel 21
## 1269 Resort Hotel 87
## 1270 Resort Hotel 54
## 1271 Resort Hotel 156
## 1272 Resort Hotel 46
## 1273 Resort Hotel 46
## 1274 Resort Hotel 72
## 1275 Resort Hotel 85
## 1276 Resort Hotel 36
## 1277 Resort Hotel 65
## 1278 Resort Hotel 68
## 1279 Resort Hotel 46
## 1280 Resort Hotel 22
## 1281 Resort Hotel 12
## 1282 Resort Hotel 42
## 1283 Resort Hotel 72
## 1284 Resort Hotel 112
## 1285 Resort Hotel 85
## 1286 Resort Hotel 102
## 1287 Resort Hotel 80
## 1288 Resort Hotel 72
## 1289 Resort Hotel 151
## 1290 Resort Hotel 99
## 1291 Resort Hotel 151
## 1292 Resort Hotel 66
## 1293 Resort Hotel 44
## 1294 Resort Hotel 46
## 1295 Resort Hotel 70
## 1296 Resort Hotel 92
## 1297 Resort Hotel 6
## 1298 Resort Hotel 23
## 1299 Resort Hotel 79
## 1300 Resort Hotel 41
## 1301 Resort Hotel 58
## 1302 Resort Hotel 62
## 1303 Resort Hotel 83
## 1304 Resort Hotel 82
## 1305 Resort Hotel 69
## 1306 Resort Hotel 64
## 1307 Resort Hotel 116
## 1308 Resort Hotel 20
## 1309 Resort Hotel 132
## 1310 Resort Hotel 33
## 1311 Resort Hotel 62
## 1312 Resort Hotel 127
## 1313 Resort Hotel 78
## 1314 Resort Hotel 29
## 1315 Resort Hotel 78
## 1316 Resort Hotel 31
## 1317 Resort Hotel 9
## 1318 Resort Hotel 59
## 1319 Resort Hotel 40
## 1320 Resort Hotel 0
## 1321 Resort Hotel 30
## 1322 Resort Hotel 0
## 1323 Resort Hotel 35
## 1324 Resort Hotel 84
## 1325 Resort Hotel 25
## 1326 Resort Hotel 103
## 1327 Resort Hotel 35
## 1328 Resort Hotel 26
## 1329 Resort Hotel 55
## 1330 Resort Hotel 76
## 1331 Resort Hotel 102
## 1332 Resort Hotel 58
## 1333 Resort Hotel 11
## 1334 Resort Hotel 33
## 1335 Resort Hotel 11
## 1336 Resort Hotel 61
## 1337 Resort Hotel 89
## 1338 Resort Hotel 89
## 1339 Resort Hotel 37
## 1340 Resort Hotel 70
## 1341 Resort Hotel 54
## 1342 Resort Hotel 69
## 1343 Resort Hotel 71
## 1344 Resort Hotel 49
## 1345 Resort Hotel 50
## 1346 Resort Hotel 74
## 1347 Resort Hotel 74
## 1348 Resort Hotel 118
## 1349 Resort Hotel 42
## 1350 Resort Hotel 77
## 1351 Resort Hotel 84
## 1352 Resort Hotel 43
## 1353 Resort Hotel 73
## 1354 Resort Hotel 73
## 1355 Resort Hotel 21
## 1356 Resort Hotel 0
## 1357 Resort Hotel 2
## 1358 Resort Hotel 2
## 1359 Resort Hotel 0
## 1360 Resort Hotel 76
## 1361 Resort Hotel 41
## 1362 Resort Hotel 41
## 1363 Resort Hotel 44
## 1364 Resort Hotel 93
## 1365 Resort Hotel 106
## 1366 Resort Hotel 57
## 1367 Resort Hotel 29
## 1368 Resort Hotel 1
## 1369 Resort Hotel 41
## 1370 Resort Hotel 90
## 1371 Resort Hotel 57
## 1372 Resort Hotel 57
## 1373 Resort Hotel 41
## 1374 Resort Hotel 61
## 1375 Resort Hotel 49
## 1376 Resort Hotel 57
## 1377 Resort Hotel 31
## 1378 Resort Hotel 62
## 1379 Resort Hotel 43
## 1380 Resort Hotel 27
## 1381 Resort Hotel 106
## 1382 Resort Hotel 45
## 1383 Resort Hotel 106
## 1384 Resort Hotel 108
## 1385 Resort Hotel 49
## 1386 Resort Hotel 10
## 1387 Resort Hotel 108
## 1388 Resort Hotel 30
## 1389 Resort Hotel 164
## 1390 Resort Hotel 164
## 1391 Resort Hotel 164
## 1392 Resort Hotel 0
## 1393 Resort Hotel 46
## 1394 Resort Hotel 31
## 1395 Resort Hotel 34
## 1396 Resort Hotel 66
## 1397 Resort Hotel 4
## 1398 Resort Hotel 23
## 1399 Resort Hotel 31
## 1400 Resort Hotel 32
## 1401 Resort Hotel 42
## 1402 Resort Hotel 30
## 1403 Resort Hotel 30
## 1404 Resort Hotel 10
## 1405 Resort Hotel 11
## 1406 Resort Hotel 11
## 1407 Resort Hotel 8
## 1408 Resort Hotel 39
## 1409 Resort Hotel 4
## 1410 Resort Hotel 34
## 1411 Resort Hotel 55
## 1412 Resort Hotel 25
## 1413 Resort Hotel 106
## 1414 Resort Hotel 30
## 1415 Resort Hotel 1
## 1416 Resort Hotel 22
## 1417 Resort Hotel 42
## 1418 Resort Hotel 67
## 1419 Resort Hotel 35
## 1420 Resort Hotel 21
## 1421 Resort Hotel 50
## 1422 Resort Hotel 28
## 1423 Resort Hotel 30
## 1424 Resort Hotel 127
## 1425 Resort Hotel 29
## 1426 Resort Hotel 66
## 1427 Resort Hotel 59
## 1428 Resort Hotel 28
## 1429 Resort Hotel 59
## 1430 Resort Hotel 0
## 1431 Resort Hotel 47
## 1432 Resort Hotel 47
## 1433 Resort Hotel 47
## 1434 Resort Hotel 57
## 1435 Resort Hotel 1
## 1436 Resort Hotel 4
## 1437 Resort Hotel 32
## 1438 Resort Hotel 24
## 1439 Resort Hotel 11
## 1440 Resort Hotel 136
## 1441 Resort Hotel 2
## 1442 Resort Hotel 54
## 1443 Resort Hotel 87
## 1444 Resort Hotel 98
## 1445 Resort Hotel 9
## 1446 Resort Hotel 2
## 1447 Resort Hotel 11
## 1448 Resort Hotel 11
## 1449 Resort Hotel 69
## 1450 Resort Hotel 37
## 1451 Resort Hotel 103
## 1452 Resort Hotel 5
## 1453 Resort Hotel 34
## 1454 Resort Hotel 44
## 1455 Resort Hotel 83
## 1456 Resort Hotel 83
## 1457 Resort Hotel 72
## 1458 Resort Hotel 143
## 1459 Resort Hotel 47
## 1460 Resort Hotel 104
## 1461 Resort Hotel 25
## 1462 Resort Hotel 82
## 1463 Resort Hotel 104
## 1464 Resort Hotel 346
## 1465 Resort Hotel 0
## 1466 Resort Hotel 35
## 1467 Resort Hotel 34
## 1468 Resort Hotel 83
## 1469 Resort Hotel 41
## 1470 Resort Hotel 26
## 1471 Resort Hotel 143
## 1472 Resort Hotel 26
## 1473 Resort Hotel 0
## 1474 Resort Hotel 42
## 1475 Resort Hotel 6
## 1476 Resort Hotel 28
## 1477 Resort Hotel 26
## 1478 Resort Hotel 10
## 1479 Resort Hotel 59
## 1480 Resort Hotel 159
## 1481 Resort Hotel 124
## 1482 Resort Hotel 60
## 1483 Resort Hotel 26
## 1484 Resort Hotel 160
## 1485 Resort Hotel 68
## 1486 Resort Hotel 38
## 1487 Resort Hotel 47
## 1488 Resort Hotel 48
## 1489 Resort Hotel 48
## 1490 Resort Hotel 27
## 1491 Resort Hotel 71
## 1492 Resort Hotel 85
## 1493 Resort Hotel 132
## 1494 Resort Hotel 50
## 1495 Resort Hotel 122
## 1496 Resort Hotel 64
## 1497 Resort Hotel 48
## 1498 Resort Hotel 0
## 1499 Resort Hotel 14
## 1500 Resort Hotel 5
## 1501 Resort Hotel 161
## 1502 Resort Hotel 62
## 1503 Resort Hotel 161
## 1504 Resort Hotel 333
## 1505 Resort Hotel 27
## 1506 Resort Hotel 73
## 1507 Resort Hotel 123
## 1508 Resort Hotel 27
## 1509 Resort Hotel 97
## 1510 Resort Hotel 73
## 1511 Resort Hotel 97
## 1512 Resort Hotel 27
## 1513 Resort Hotel 27
## 1514 Resort Hotel 27
## 1515 Resort Hotel 140
## 1516 Resort Hotel 62
## 1517 Resort Hotel 381
## 1518 Resort Hotel 0
## 1519 Resort Hotel 149
## 1520 Resort Hotel 1
## 1521 Resort Hotel 149
## 1522 Resort Hotel 4
## 1523 Resort Hotel 104
## 1524 Resort Hotel 104
## 1525 Resort Hotel 68
## 1526 Resort Hotel 4
## 1527 Resort Hotel 71
## 1528 Resort Hotel 149
## 1529 Resort Hotel 1
## 1530 Resort Hotel 55
## 1531 Resort Hotel 154
## 1532 Resort Hotel 154
## 1533 Resort Hotel 57
## 1534 Resort Hotel 154
## 1535 Resort Hotel 29
## 1536 Resort Hotel 154
## 1537 Resort Hotel 154
## 1538 Resort Hotel 154
## 1539 Resort Hotel 6
## 1540 Resort Hotel 304
## 1541 Resort Hotel 29
## 1542 Resort Hotel 29
## 1543 Resort Hotel 29
## 1544 Resort Hotel 29
## 1545 Resort Hotel 297
## 1546 Resort Hotel 297
## 1547 Resort Hotel 52
## 1548 Resort Hotel 92
## 1549 Resort Hotel 52
## 1550 Resort Hotel 56
## 1551 Resort Hotel 65
## 1552 Resort Hotel 50
## 1553 Resort Hotel 163
## 1554 Resort Hotel 48
## 1555 Resort Hotel 327
## 1556 Resort Hotel 0
## 1557 Resort Hotel 1
## 1558 Resort Hotel 1
## 1559 Resort Hotel 0
## 1560 Resort Hotel 14
## 1561 Resort Hotel 88
## 1562 Resort Hotel 105
## 1563 Resort Hotel 0
## 1564 Resort Hotel 77
## 1565 Resort Hotel 15
## 1566 Resort Hotel 29
## 1567 Resort Hotel 28
## 1568 Resort Hotel 23
## 1569 Resort Hotel 28
## 1570 Resort Hotel 3
## 1571 Resort Hotel 28
## 1572 Resort Hotel 0
## 1573 Resort Hotel 4
## 1574 Resort Hotel 63
## 1575 Resort Hotel 67
## 1576 Resort Hotel 29
## 1577 Resort Hotel 73
## 1578 Resort Hotel 51
## 1579 Resort Hotel 150
## 1580 Resort Hotel 23
## 1581 Resort Hotel 67
## 1582 Resort Hotel 30
## 1583 Resort Hotel 15
## 1584 Resort Hotel 68
## 1585 Resort Hotel 47
## 1586 Resort Hotel 47
## 1587 Resort Hotel 74
## 1588 Resort Hotel 333
## 1589 Resort Hotel 26
## 1590 Resort Hotel 25
## 1591 Resort Hotel 71
## 1592 Resort Hotel 314
## 1593 Resort Hotel 54
## 1594 Resort Hotel 74
## 1595 Resort Hotel 74
## 1596 Resort Hotel 26
## 1597 Resort Hotel 94
## 1598 Resort Hotel 54
## 1599 Resort Hotel 52
## 1600 Resort Hotel 47
## 1601 Resort Hotel 74
## 1602 Resort Hotel 1
## 1603 Resort Hotel 50
## 1604 Resort Hotel 155
## 1605 Resort Hotel 323
## 1606 Resort Hotel 323
## 1607 Resort Hotel 340
## 1608 Resort Hotel 103
## 1609 Resort Hotel 356
## 1610 Resort Hotel 5
## 1611 Resort Hotel 40
## 1612 Resort Hotel 116
## 1613 Resort Hotel 74
## 1614 Resort Hotel 25
## 1615 Resort Hotel 32
## 1616 Resort Hotel 12
## 1617 Resort Hotel 26
## 1618 Resort Hotel 73
## 1619 Resort Hotel 26
## 1620 Resort Hotel 27
## 1621 Resort Hotel 110
## 1622 Resort Hotel 75
## 1623 Resort Hotel 61
## 1624 Resort Hotel 60
## 1625 Resort Hotel 61
## 1626 Resort Hotel 57
## 1627 Resort Hotel 61
## 1628 Resort Hotel 47
## 1629 Resort Hotel 30
## 1630 Resort Hotel 59
## 1631 Resort Hotel 78
## 1632 Resort Hotel 142
## 1633 Resort Hotel 94
## 1634 Resort Hotel 69
## 1635 Resort Hotel 78
## 1636 Resort Hotel 115
## 1637 Resort Hotel 128
## 1638 Resort Hotel 90
## 1639 Resort Hotel 328
## 1640 Resort Hotel 136
## 1641 Resort Hotel 143
## 1642 Resort Hotel 90
## 1643 Resort Hotel 144
## 1644 Resort Hotel 336
## 1645 Resort Hotel 90
## 1646 Resort Hotel 35
## 1647 Resort Hotel 4
## 1648 Resort Hotel 55
## 1649 Resort Hotel 0
## 1650 Resort Hotel 2
## 1651 Resort Hotel 112
## 1652 Resort Hotel 105
## 1653 Resort Hotel 109
## 1654 Resort Hotel 40
## 1655 Resort Hotel 75
## 1656 Resort Hotel 30
## 1657 Resort Hotel 144
## 1658 Resort Hotel 248
## 1659 Resort Hotel 0
## 1660 Resort Hotel 302
## 1661 Resort Hotel 302
## 1662 Resort Hotel 302
## 1663 Resort Hotel 61
## 1664 Resort Hotel 12
## 1665 Resort Hotel 47
## 1666 Resort Hotel 11
## 1667 Resort Hotel 117
## 1668 Resort Hotel 160
## 1669 Resort Hotel 175
## 1670 Resort Hotel 71
## 1671 Resort Hotel 344
## 1672 Resort Hotel 12
## 1673 Resort Hotel 382
## 1674 Resort Hotel 0
## 1675 Resort Hotel 0
## 1676 Resort Hotel 28
## 1677 Resort Hotel 58
## 1678 Resort Hotel 0
## 1679 Resort Hotel 20
## 1680 Resort Hotel 48
## 1681 Resort Hotel 2
## 1682 Resort Hotel 0
## 1683 Resort Hotel 137
## 1684 Resort Hotel 1
## 1685 Resort Hotel 130
## 1686 Resort Hotel 130
## 1687 Resort Hotel 118
## 1688 Resort Hotel 146
## 1689 Resort Hotel 159
## 1690 Resort Hotel 78
## 1691 Resort Hotel 159
## 1692 Resort Hotel 49
## 1693 Resort Hotel 1
## 1694 Resort Hotel 31
## 1695 Resort Hotel 114
## 1696 Resort Hotel 170
## 1697 Resort Hotel 27
## 1698 Resort Hotel 166
## 1699 Resort Hotel 114
## 1700 Resort Hotel 114
## 1701 Resort Hotel 108
## 1702 Resort Hotel 82
## 1703 Resort Hotel 113
## 1704 Resort Hotel 94
## 1705 Resort Hotel 0
## 1706 Resort Hotel 3
## 1707 Resort Hotel 12
## 1708 Resort Hotel 132
## 1709 Resort Hotel 12
## 1710 Resort Hotel 56
## 1711 Resort Hotel 140
## 1712 Resort Hotel 147
## 1713 Resort Hotel 140
## 1714 Resort Hotel 97
## 1715 Resort Hotel 160
## 1716 Resort Hotel 91
## 1717 Resort Hotel 111
## 1718 Resort Hotel 80
## 1719 Resort Hotel 114
## 1720 Resort Hotel 90
## 1721 Resort Hotel 338
## 1722 Resort Hotel 167
## 1723 Resort Hotel 2
## 1724 Resort Hotel 0
## 1725 Resort Hotel 73
## 1726 Resort Hotel 0
## 1727 Resort Hotel 63
## 1728 Resort Hotel 3
## 1729 Resort Hotel 8
## 1730 Resort Hotel 1
## 1731 Resort Hotel 70
## 1732 Resort Hotel 4
## 1733 Resort Hotel 157
## 1734 Resort Hotel 1
## 1735 Resort Hotel 1
## 1736 Resort Hotel 8
## 1737 Resort Hotel 102
## 1738 Resort Hotel 310
## 1739 Resort Hotel 11
## 1740 Resort Hotel 148
## 1741 Resort Hotel 165
## 1742 Resort Hotel 101
## 1743 Resort Hotel 101
## 1744 Resort Hotel 9
## 1745 Resort Hotel 172
## 1746 Resort Hotel 171
## 1747 Resort Hotel 143
## 1748 Resort Hotel 145
## 1749 Resort Hotel 121
## 1750 Resort Hotel 0
## 1751 Resort Hotel 96
## 1752 Resort Hotel 136
## 1753 Resort Hotel 340
## 1754 Resort Hotel 2
## 1755 Resort Hotel 170
## 1756 Resort Hotel 149
## 1757 Resort Hotel 0
## 1758 Resort Hotel 127
## 1759 Resort Hotel 149
## 1760 Resort Hotel 19
## 1761 Resort Hotel 12
## 1762 Resort Hotel 178
## 1763 Resort Hotel 12
## 1764 Resort Hotel 178
## 1765 Resort Hotel 26
## 1766 Resort Hotel 2
## 1767 Resort Hotel 10
## 1768 Resort Hotel 120
## 1769 Resort Hotel 123
## 1770 Resort Hotel 137
## 1771 Resort Hotel 104
## 1772 Resort Hotel 172
## 1773 Resort Hotel 305
## 1774 Resort Hotel 83
## 1775 Resort Hotel 173
## 1776 Resort Hotel 94
## 1777 Resort Hotel 118
## 1778 Resort Hotel 156
## 1779 Resort Hotel 21
## 1780 Resort Hotel 17
## 1781 Resort Hotel 128
## 1782 Resort Hotel 34
## 1783 Resort Hotel 19
## 1784 Resort Hotel 108
## 1785 Resort Hotel 25
## 1786 Resort Hotel 107
## 1787 Resort Hotel 11
## 1788 Resort Hotel 94
## 1789 Resort Hotel 83
## 1790 Resort Hotel 84
## 1791 Resort Hotel 135
## 1792 Resort Hotel 11
## 1793 Resort Hotel 5
## 1794 Resort Hotel 175
## 1795 Resort Hotel 105
## 1796 Resort Hotel 99
## 1797 Resort Hotel 81
## 1798 Resort Hotel 152
## 1799 Resort Hotel 103
## 1800 Resort Hotel 96
## 1801 Resort Hotel 81
## 1802 Resort Hotel 124
## 1803 Resort Hotel 354
## 1804 Resort Hotel 116
## 1805 Resort Hotel 119
## 1806 Resort Hotel 1
## 1807 Resort Hotel 0
## 1808 Resort Hotel 5
## 1809 Resort Hotel 0
## 1810 Resort Hotel 46
## 1811 Resort Hotel 0
## 1812 Resort Hotel 0
## 1813 Resort Hotel 0
## 1814 Resort Hotel 6
## 1815 Resort Hotel 44
## 1816 Resort Hotel 42
## 1817 Resort Hotel 64
## 1818 Resort Hotel 65
## 1819 Resort Hotel 93
## 1820 Resort Hotel 72
## 1821 Resort Hotel 42
## 1822 Resort Hotel 65
## 1823 Resort Hotel 121
## 1824 Resort Hotel 104
## 1825 Resort Hotel 1
## 1826 Resort Hotel 56
## 1827 Resort Hotel 114
## 1828 Resort Hotel 85
## 1829 Resort Hotel 65
## 1830 Resort Hotel 85
## 1831 Resort Hotel 95
## 1832 Resort Hotel 97
## 1833 Resort Hotel 97
## 1834 Resort Hotel 6
## 1835 Resort Hotel 78
## 1836 Resort Hotel 1
## 1837 Resort Hotel 50
## 1838 Resort Hotel 0
## 1839 Resort Hotel 105
## 1840 Resort Hotel 110
## 1841 Resort Hotel 110
## 1842 Resort Hotel 110
## 1843 Resort Hotel 110
## 1844 Resort Hotel 110
## 1845 Resort Hotel 138
## 1846 Resort Hotel 89
## 1847 Resort Hotel 62
## 1848 Resort Hotel 110
## 1849 Resort Hotel 110
## 1850 Resort Hotel 76
## 1851 Resort Hotel 87
## 1852 Resort Hotel 35
## 1853 Resort Hotel 104
## 1854 Resort Hotel 66
## 1855 Resort Hotel 34
## 1856 Resort Hotel 131
## 1857 Resort Hotel 167
## 1858 Resort Hotel 7
## 1859 Resort Hotel 7
## 1860 Resort Hotel 71
## 1861 Resort Hotel 101
## 1862 Resort Hotel 48
## 1863 Resort Hotel 99
## 1864 Resort Hotel 102
## 1865 Resort Hotel 32
## 1866 Resort Hotel 71
## 1867 Resort Hotel 102
## 1868 Resort Hotel 127
## 1869 Resort Hotel 119
## 1870 Resort Hotel 77
## 1871 Resort Hotel 79
## 1872 Resort Hotel 4
## 1873 Resort Hotel 65
## 1874 Resort Hotel 61
## 1875 Resort Hotel 36
## 1876 Resort Hotel 124
## 1877 Resort Hotel 33
## 1878 Resort Hotel 68
## 1879 Resort Hotel 99
## 1880 Resort Hotel 99
## 1881 Resort Hotel 85
## 1882 Resort Hotel 110
## 1883 Resort Hotel 75
## 1884 Resort Hotel 33
## 1885 Resort Hotel 347
## 1886 Resort Hotel 65
## 1887 Resort Hotel 35
## 1888 Resort Hotel 87
## 1889 Resort Hotel 128
## 1890 Resort Hotel 87
## 1891 Resort Hotel 92
## 1892 Resort Hotel 114
## 1893 Resort Hotel 65
## 1894 Resort Hotel 106
## 1895 Resort Hotel 83
## 1896 Resort Hotel 158
## 1897 Resort Hotel 86
## 1898 Resort Hotel 103
## 1899 Resort Hotel 158
## 1900 Resort Hotel 125
## 1901 Resort Hotel 4
## 1902 Resort Hotel 131
## 1903 Resort Hotel 125
## 1904 Resort Hotel 93
## 1905 Resort Hotel 185
## 1906 Resort Hotel 34
## 1907 Resort Hotel 12
## 1908 Resort Hotel 130
## 1909 Resort Hotel 185
## 1910 Resort Hotel 185
## 1911 Resort Hotel 33
## 1912 Resort Hotel 185
## 1913 Resort Hotel 121
## 1914 Resort Hotel 58
## 1915 Resort Hotel 185
## 1916 Resort Hotel 128
## 1917 Resort Hotel 111
## 1918 Resort Hotel 349
## 1919 Resort Hotel 73
## 1920 Resort Hotel 61
## 1921 Resort Hotel 94
## 1922 Resort Hotel 96
## 1923 Resort Hotel 109
## 1924 Resort Hotel 65
## 1925 Resort Hotel 124
## 1926 Resort Hotel 84
## 1927 Resort Hotel 95
## 1928 Resort Hotel 90
## 1929 Resort Hotel 90
## 1930 Resort Hotel 112
## 1931 Resort Hotel 130
## 1932 Resort Hotel 78
## 1933 Resort Hotel 36
## 1934 Resort Hotel 159
## 1935 Resort Hotel 75
## 1936 Resort Hotel 158
## 1937 Resort Hotel 108
## 1938 Resort Hotel 158
## 1939 Resort Hotel 70
## 1940 Resort Hotel 1
## 1941 Resort Hotel 76
## 1942 Resort Hotel 183
## 1943 Resort Hotel 21
## 1944 Resort Hotel 21
## 1945 Resort Hotel 21
## 1946 Resort Hotel 21
## 1947 Resort Hotel 21
## 1948 Resort Hotel 34
## 1949 Resort Hotel 119
## 1950 Resort Hotel 6
## 1951 Resort Hotel 6
## 1952 Resort Hotel 8
## 1953 Resort Hotel 68
## 1954 Resort Hotel 68
## 1955 Resort Hotel 137
## 1956 Resort Hotel 154
## 1957 Resort Hotel 76
## 1958 Resort Hotel 21
## 1959 Resort Hotel 71
## 1960 Resort Hotel 36
## 1961 Resort Hotel 64
## 1962 Resort Hotel 29
## 1963 Resort Hotel 352
## 1964 Resort Hotel 76
## 1965 Resort Hotel 76
## 1966 Resort Hotel 75
## 1967 Resort Hotel 115
## 1968 Resort Hotel 84
## 1969 Resort Hotel 77
## 1970 Resort Hotel 7
## 1971 Resort Hotel 0
## 1972 Resort Hotel 16
## 1973 Resort Hotel 2
## 1974 Resort Hotel 16
## 1975 Resort Hotel 0
## 1976 Resort Hotel 9
## 1977 Resort Hotel 8
## 1978 Resort Hotel 109
## 1979 Resort Hotel 9
## 1980 Resort Hotel 8
## 1981 Resort Hotel 60
## 1982 Resort Hotel 79
## 1983 Resort Hotel 79
## 1984 Resort Hotel 67
## 1985 Resort Hotel 74
## 1986 Resort Hotel 119
## 1987 Resort Hotel 51
## 1988 Resort Hotel 106
## 1989 Resort Hotel 119
## 1990 Resort Hotel 74
## 1991 Resort Hotel 39
## 1992 Resort Hotel 1
## 1993 Resort Hotel 37
## 1994 Resort Hotel 37
## 1995 Resort Hotel 10
## 1996 Resort Hotel 75
## 1997 Resort Hotel 59
## 1998 Resort Hotel 61
## 1999 Resort Hotel 61
## 2000 Resort Hotel 61
## 2001 Resort Hotel 44
## 2002 Resort Hotel 47
## 2003 Resort Hotel 64
## 2004 Resort Hotel 354
## 2005 Resort Hotel 98
## 2006 Resort Hotel 136
## 2007 Resort Hotel 116
## 2008 Resort Hotel 54
## 2009 Resort Hotel 41
## 2010 Resort Hotel 11
## 2011 Resort Hotel 32
## 2012 Resort Hotel 73
## 2013 Resort Hotel 53
## 2014 Resort Hotel 100
## 2015 Resort Hotel 73
## 2016 Resort Hotel 177
## 2017 Resort Hotel 51
## 2018 Resort Hotel 81
## 2019 Resort Hotel 47
## 2020 Resort Hotel 81
## 2021 Resort Hotel 163
## 2022 Resort Hotel 59
## 2023 Resort Hotel 55
## 2024 Resort Hotel 97
## 2025 Resort Hotel 85
## 2026 Resort Hotel 177
## 2027 Resort Hotel 0
## 2028 Resort Hotel 0
## 2029 Resort Hotel 80
## 2030 Resort Hotel 77
## 2031 Resort Hotel 69
## 2032 Resort Hotel 80
## 2033 Resort Hotel 77
## 2034 Resort Hotel 56
## 2035 Resort Hotel 77
## 2036 Resort Hotel 80
## 2037 Resort Hotel 80
## 2038 Resort Hotel 98
## 2039 Resort Hotel 56
## 2040 Resort Hotel 60
## 2041 Resort Hotel 77
## 2042 Resort Hotel 53
## 2043 Resort Hotel 72
## 2044 Resort Hotel 119
## 2045 Resort Hotel 164
## 2046 Resort Hotel 64
## 2047 Resort Hotel 89
## 2048 Resort Hotel 57
## 2049 Resort Hotel 54
## 2050 Resort Hotel 172
## 2051 Resort Hotel 60
## 2052 Resort Hotel 13
## 2053 Resort Hotel 165
## 2054 Resort Hotel 57
## 2055 Resort Hotel 55
## 2056 Resort Hotel 76
## 2057 Resort Hotel 81
## 2058 Resort Hotel 76
## 2059 Resort Hotel 96
## 2060 Resort Hotel 61
## 2061 Resort Hotel 19
## 2062 Resort Hotel 50
## 2063 Resort Hotel 0
## 2064 Resort Hotel 2
## 2065 Resort Hotel 2
## 2066 Resort Hotel 2
## 2067 Resort Hotel 55
## 2068 Resort Hotel 56
## 2069 Resort Hotel 2
## 2070 Resort Hotel 2
## 2071 Resort Hotel 55
## 2072 Resort Hotel 55
## 2073 Resort Hotel 55
## 2074 Resort Hotel 2
## 2075 Resort Hotel 54
## 2076 Resort Hotel 142
## 2077 Resort Hotel 51
## 2078 Resort Hotel 49
## 2079 Resort Hotel 93
## 2080 Resort Hotel 48
## 2081 Resort Hotel 68
## 2082 Resort Hotel 92
## 2083 Resort Hotel 97
## 2084 Resort Hotel 48
## 2085 Resort Hotel 58
## 2086 Resort Hotel 70
## 2087 Resort Hotel 41
## 2088 Resort Hotel 0
## 2089 Resort Hotel 63
## 2090 Resort Hotel 44
## 2091 Resort Hotel 19
## 2092 Resort Hotel 57
## 2093 Resort Hotel 24
## 2094 Resort Hotel 22
## 2095 Resort Hotel 51
## 2096 Resort Hotel 23
## 2097 Resort Hotel 79
## 2098 Resort Hotel 48
## 2099 Resort Hotel 51
## 2100 Resort Hotel 78
## 2101 Resort Hotel 24
## 2102 Resort Hotel 45
## 2103 Resort Hotel 24
## 2104 Resort Hotel 44
## 2105 Resort Hotel 78
## 2106 Resort Hotel 45
## 2107 Resort Hotel 115
## 2108 Resort Hotel 50
## 2109 Resort Hotel 45
## 2110 Resort Hotel 103
## 2111 Resort Hotel 145
## 2112 Resort Hotel 113
## 2113 Resort Hotel 102
## 2114 Resort Hotel 113
## 2115 Resort Hotel 0
## 2116 Resort Hotel 29
## 2117 Resort Hotel 115
## 2118 Resort Hotel 73
## 2119 Resort Hotel 115
## 2120 Resort Hotel 115
## 2121 Resort Hotel 20
## 2122 Resort Hotel 56
## 2123 Resort Hotel 50
## 2124 Resort Hotel 20
## 2125 Resort Hotel 53
## 2126 Resort Hotel 46
## 2127 Resort Hotel 23
## 2128 Resort Hotel 63
## 2129 Resort Hotel 200
## 2130 Resort Hotel 56
## 2131 Resort Hotel 49
## 2132 Resort Hotel 56
## 2133 Resort Hotel 0
## 2134 Resort Hotel 87
## 2135 Resort Hotel 87
## 2136 Resort Hotel 87
## 2137 Resort Hotel 87
## 2138 Resort Hotel 114
## 2139 Resort Hotel 1
## 2140 Resort Hotel 5
## 2141 Resort Hotel 1
## 2142 Resort Hotel 87
## 2143 Resort Hotel 87
## 2144 Resort Hotel 4
## 2145 Resort Hotel 4
## 2146 Resort Hotel 192
## 2147 Resort Hotel 192
## 2148 Resort Hotel 192
## 2149 Resort Hotel 39
## 2150 Resort Hotel 25
## 2151 Resort Hotel 192
## 2152 Resort Hotel 192
## 2153 Resort Hotel 53
## 2154 Resort Hotel 21
## 2155 Resort Hotel 19
## 2156 Resort Hotel 10
## 2157 Resort Hotel 61
## 2158 Resort Hotel 72
## 2159 Resort Hotel 70
## 2160 Resort Hotel 46
## 2161 Resort Hotel 38
## 2162 Resort Hotel 53
## 2163 Resort Hotel 51
## 2164 Resort Hotel 124
## 2165 Resort Hotel 361
## 2166 Resort Hotel 25
## 2167 Resort Hotel 49
## 2168 Resort Hotel 53
## 2169 Resort Hotel 14
## 2170 Resort Hotel 163
## 2171 Resort Hotel 2
## 2172 Resort Hotel 1
## 2173 Resort Hotel 0
## 2174 Resort Hotel 338
## 2175 Resort Hotel 0
## 2176 Resort Hotel 34
## 2177 Resort Hotel 34
## 2178 Resort Hotel 81
## 2179 Resort Hotel 26
## 2180 Resort Hotel 75
## 2181 Resort Hotel 54
## 2182 Resort Hotel 170
## 2183 Resort Hotel 170
## 2184 Resort Hotel 170
## 2185 Resort Hotel 170
## 2186 Resort Hotel 170
## 2187 Resort Hotel 170
## 2188 Resort Hotel 170
## 2189 Resort Hotel 170
## 2190 Resort Hotel 170
## 2191 Resort Hotel 170
## 2192 Resort Hotel 170
## 2193 Resort Hotel 170
## 2194 Resort Hotel 69
## 2195 Resort Hotel 69
## 2196 Resort Hotel 38
## 2197 Resort Hotel 90
## 2198 Resort Hotel 111
## 2199 Resort Hotel 18
## 2200 Resort Hotel 7
## 2201 Resort Hotel 1
## 2202 Resort Hotel 69
## 2203 Resort Hotel 7
## 2204 Resort Hotel 10
## 2205 Resort Hotel 55
## 2206 Resort Hotel 10
## 2207 Resort Hotel 52
## 2208 Resort Hotel 14
## 2209 Resort Hotel 17
## 2210 Resort Hotel 74
## 2211 Resort Hotel 74
## 2212 Resort Hotel 74
## 2213 Resort Hotel 74
## 2214 Resort Hotel 207
## 2215 Resort Hotel 102
## 2216 Resort Hotel 1
## 2217 Resort Hotel 1
## 2218 Resort Hotel 1
## 2219 Resort Hotel 0
## 2220 Resort Hotel 43
## 2221 Resort Hotel 70
## 2222 Resort Hotel 0
## 2223 Resort Hotel 91
## 2224 Resort Hotel 1
## 2225 Resort Hotel 1
## 2226 Resort Hotel 43
## 2227 Resort Hotel 3
## 2228 Resort Hotel 31
## 2229 Resort Hotel 328
## 2230 Resort Hotel 328
## 2231 Resort Hotel 87
## 2232 Resort Hotel 328
## 2233 Resort Hotel 84
## 2234 Resort Hotel 123
## 2235 Resort Hotel 4
## 2236 Resort Hotel 13
## 2237 Resort Hotel 4
## 2238 Resort Hotel 4
## 2239 Resort Hotel 4
## 2240 Resort Hotel 33
## 2241 Resort Hotel 13
## 2242 Resort Hotel 21
## 2243 Resort Hotel 0
## 2244 Resort Hotel 2
## 2245 Resort Hotel 6
## 2246 Resort Hotel 78
## 2247 Resort Hotel 21
## 2248 Resort Hotel 175
## 2249 Resort Hotel 158
## 2250 Resort Hotel 11
## 2251 Resort Hotel 158
## 2252 Resort Hotel 16
## 2253 Resort Hotel 174
## 2254 Resort Hotel 174
## 2255 Resort Hotel 21
## 2256 Resort Hotel 13
## 2257 Resort Hotel 3
## 2258 Resort Hotel 3
## 2259 Resort Hotel 22
## 2260 Resort Hotel 3
## 2261 Resort Hotel 33
## 2262 Resort Hotel 3
## 2263 Resort Hotel 44
## 2264 Resort Hotel 77
## 2265 Resort Hotel 10
## 2266 Resort Hotel 44
## 2267 Resort Hotel 76
## 2268 Resort Hotel 71
## 2269 Resort Hotel 9
## 2270 Resort Hotel 33
## 2271 Resort Hotel 3
## 2272 Resort Hotel 77
## 2273 Resort Hotel 59
## 2274 Resort Hotel 77
## 2275 Resort Hotel 77
## 2276 Resort Hotel 3
## 2277 Resort Hotel 71
## 2278 Resort Hotel 29
## 2279 Resort Hotel 10
## 2280 Resort Hotel 330
## 2281 Resort Hotel 22
## 2282 Resort Hotel 132
## 2283 Resort Hotel 10
## 2284 Resort Hotel 94
## 2285 Resort Hotel 94
## 2286 Resort Hotel 128
## 2287 Resort Hotel 1
## 2288 Resort Hotel 16
## 2289 Resort Hotel 1
## 2290 Resort Hotel 134
## 2291 Resort Hotel 77
## 2292 Resort Hotel 77
## 2293 Resort Hotel 34
## 2294 Resort Hotel 4
## 2295 Resort Hotel 78
## 2296 Resort Hotel 77
## 2297 Resort Hotel 77
## 2298 Resort Hotel 78
## 2299 Resort Hotel 78
## 2300 Resort Hotel 78
## 2301 Resort Hotel 78
## 2302 Resort Hotel 78
## 2303 Resort Hotel 78
## 2304 Resort Hotel 63
## 2305 Resort Hotel 78
## 2306 Resort Hotel 78
## 2307 Resort Hotel 8
## 2308 Resort Hotel 4
## 2309 Resort Hotel 77
## 2310 Resort Hotel 67
## 2311 Resort Hotel 21
## 2312 Resort Hotel 13
## 2313 Resort Hotel 78
## 2314 Resort Hotel 78
## 2315 Resort Hotel 78
## 2316 Resort Hotel 78
## 2317 Resort Hotel 78
## 2318 Resort Hotel 78
## 2319 Resort Hotel 78
## 2320 Resort Hotel 78
## 2321 Resort Hotel 78
## 2322 Resort Hotel 78
## 2323 Resort Hotel 78
## 2324 Resort Hotel 78
## 2325 Resort Hotel 78
## 2326 Resort Hotel 63
## 2327 Resort Hotel 9
## 2328 Resort Hotel 3
## 2329 Resort Hotel 78
## 2330 Resort Hotel 78
## 2331 Resort Hotel 78
## 2332 Resort Hotel 63
## 2333 Resort Hotel 14
## 2334 Resort Hotel 8
## 2335 Resort Hotel 25
## 2336 Resort Hotel 78
## 2337 Resort Hotel 78
## 2338 Resort Hotel 78
## 2339 Resort Hotel 78
## 2340 Resort Hotel 22
## 2341 Resort Hotel 0
## 2342 Resort Hotel 22
## 2343 Resort Hotel 10
## 2344 Resort Hotel 4
## 2345 Resort Hotel 7
## 2346 Resort Hotel 350
## 2347 Resort Hotel 2
## 2348 Resort Hotel 11
## 2349 Resort Hotel 11
## 2350 Resort Hotel 5
## 2351 Resort Hotel 35
## 2352 Resort Hotel 12
## 2353 Resort Hotel 4
## 2354 Resort Hotel 5
## 2355 Resort Hotel 12
## 2356 Resort Hotel 21
## 2357 Resort Hotel 11
## 2358 Resort Hotel 4
## 2359 Resort Hotel 5
## 2360 Resort Hotel 19
## 2361 Resort Hotel 5
## 2362 Resort Hotel 4
## 2363 Resort Hotel 4
## 2364 Resort Hotel 5
## 2365 Resort Hotel 12
## 2366 Resort Hotel 16
## 2367 Resort Hotel 21
## 2368 Resort Hotel 0
## 2369 Resort Hotel 143
## 2370 Resort Hotel 143
## 2371 Resort Hotel 143
## 2372 Resort Hotel 143
## 2373 Resort Hotel 143
## 2374 Resort Hotel 143
## 2375 Resort Hotel 143
## 2376 Resort Hotel 143
## 2377 Resort Hotel 143
## 2378 Resort Hotel 143
## 2379 Resort Hotel 368
## 2380 Resort Hotel 143
## 2381 Resort Hotel 143
## 2382 Resort Hotel 143
## 2383 Resort Hotel 143
## 2384 Resort Hotel 78
## 2385 Resort Hotel 78
## 2386 Resort Hotel 2
## 2387 Resort Hotel 2
## 2388 Resort Hotel 2
## 2389 Resort Hotel 39
## 2390 Resort Hotel 46
## 2391 Resort Hotel 0
## 2392 Resort Hotel 9
## 2393 Resort Hotel 6
## 2394 Resort Hotel 5
## 2395 Resort Hotel 2
## 2396 Resort Hotel 1
## 2397 Resort Hotel 99
## 2398 Resort Hotel 1
## 2399 Resort Hotel 87
## 2400 Resort Hotel 12
## 2401 Resort Hotel 41
## 2402 Resort Hotel 102
## 2403 Resort Hotel 87
## 2404 Resort Hotel 83
## 2405 Resort Hotel 13
## 2406 Resort Hotel 5
## 2407 Resort Hotel 5
## 2408 Resort Hotel 5
## 2409 Resort Hotel 0
## 2410 Resort Hotel 0
## 2411 Resort Hotel 13
## 2412 Resort Hotel 13
## 2413 Resort Hotel 20
## 2414 Resort Hotel 0
## 2415 Resort Hotel 2
## 2416 Resort Hotel 4
## 2417 Resort Hotel 6
## 2418 Resort Hotel 334
## 2419 Resort Hotel 334
## 2420 Resort Hotel 334
## 2421 Resort Hotel 283
## 2422 Resort Hotel 19
## 2423 Resort Hotel 1
## 2424 Resort Hotel 1
## 2425 Resort Hotel 0
## 2426 Resort Hotel 17
## 2427 Resort Hotel 0
## 2428 Resort Hotel 0
## 2429 Resort Hotel 21
## 2430 Resort Hotel 56
## 2431 Resort Hotel 73
## 2432 Resort Hotel 32
## 2433 Resort Hotel 1
## 2434 Resort Hotel 2
## 2435 Resort Hotel 0
## 2436 Resort Hotel 1
## 2437 Resort Hotel 0
## 2438 Resort Hotel 2
## 2439 Resort Hotel 106
## 2440 Resort Hotel 7
## 2441 Resort Hotel 7
## 2442 Resort Hotel 27
## 2443 Resort Hotel 150
## 2444 Resort Hotel 153
## 2445 Resort Hotel 153
## 2446 Resort Hotel 153
## 2447 Resort Hotel 0
## 2448 Resort Hotel 8
## 2449 Resort Hotel 1
## 2450 Resort Hotel 8
## 2451 Resort Hotel 130
## 2452 Resort Hotel 88
## 2453 Resort Hotel 88
## 2454 Resort Hotel 0
## 2455 Resort Hotel 25
## 2456 Resort Hotel 2
## 2457 Resort Hotel 9
## 2458 Resort Hotel 136
## 2459 Resort Hotel 95
## 2460 Resort Hotel 50
## 2461 Resort Hotel 9
## 2462 Resort Hotel 37
## 2463 Resort Hotel 37
## 2464 Resort Hotel 73
## 2465 Resort Hotel 17
## 2466 Resort Hotel 74
## 2467 Resort Hotel 92
## 2468 Resort Hotel 47
## 2469 Resort Hotel 41
## 2470 Resort Hotel 72
## 2471 Resort Hotel 82
## 2472 Resort Hotel 86
## 2473 Resort Hotel 68
## 2474 Resort Hotel 80
## 2475 Resort Hotel 119
## 2476 Resort Hotel 119
## 2477 Resort Hotel 5
## 2478 Resort Hotel 0
## 2479 Resort Hotel 7
## 2480 Resort Hotel 7
## 2481 Resort Hotel 0
## 2482 Resort Hotel 7
## 2483 Resort Hotel 10
## 2484 Resort Hotel 34
## 2485 Resort Hotel 10
## 2486 Resort Hotel 73
## 2487 Resort Hotel 47
## 2488 Resort Hotel 47
## 2489 Resort Hotel 47
## 2490 Resort Hotel 5
## 2491 Resort Hotel 47
## 2492 Resort Hotel 47
## 2493 Resort Hotel 47
## 2494 Resort Hotel 47
## 2495 Resort Hotel 47
## 2496 Resort Hotel 33
## 2497 Resort Hotel 47
## 2498 Resort Hotel 47
## 2499 Resort Hotel 47
## 2500 Resort Hotel 47
## 2501 Resort Hotel 47
## 2502 Resort Hotel 47
## 2503 Resort Hotel 47
## 2504 Resort Hotel 47
## 2505 Resort Hotel 47
## 2506 Resort Hotel 124
## 2507 Resort Hotel 47
## 2508 Resort Hotel 47
## 2509 Resort Hotel 47
## 2510 Resort Hotel 3
## 2511 Resort Hotel 47
## 2512 Resort Hotel 86
## 2513 Resort Hotel 69
## 2514 Resort Hotel 75
## 2515 Resort Hotel 118
## 2516 Resort Hotel 125
## 2517 Resort Hotel 60
## 2518 Resort Hotel 0
## 2519 Resort Hotel 0
## 2520 Resort Hotel 0
## 2521 Resort Hotel 99
## 2522 Resort Hotel 12
## 2523 Resort Hotel 75
## 2524 Resort Hotel 22
## 2525 Resort Hotel 106
## 2526 Resort Hotel 40
## 2527 Resort Hotel 108
## 2528 Resort Hotel 75
## 2529 Resort Hotel 75
## 2530 Resort Hotel 197
## 2531 Resort Hotel 0
## 2532 Resort Hotel 121
## 2533 Resort Hotel 1
## 2534 Resort Hotel 19
## 2535 Resort Hotel 28
## 2536 Resort Hotel 92
## 2537 Resort Hotel 28
## 2538 Resort Hotel 19
## 2539 Resort Hotel 28
## 2540 Resort Hotel 19
## 2541 Resort Hotel 83
## 2542 Resort Hotel 40
## 2543 Resort Hotel 83
## 2544 Resort Hotel 54
## 2545 Resort Hotel 86
## 2546 Resort Hotel 145
## 2547 Resort Hotel 120
## 2548 Resort Hotel 118
## 2549 Resort Hotel 107
## 2550 Resort Hotel 34
## 2551 Resort Hotel 48
## 2552 Resort Hotel 92
## 2553 Resort Hotel 160
## 2554 Resort Hotel 21
## 2555 Resort Hotel 107
## 2556 Resort Hotel 21
## 2557 Resort Hotel 30
## 2558 Resort Hotel 92
## 2559 Resort Hotel 24
## 2560 Resort Hotel 36
## 2561 Resort Hotel 24
## 2562 Resort Hotel 47
## 2563 Resort Hotel 21
## 2564 Resort Hotel 21
## 2565 Resort Hotel 0
## 2566 Resort Hotel 3
## 2567 Resort Hotel 133
## 2568 Resort Hotel 122
## 2569 Resort Hotel 122
## 2570 Resort Hotel 92
## 2571 Resort Hotel 64
## 2572 Resort Hotel 120
## 2573 Resort Hotel 122
## 2574 Resort Hotel 122
## 2575 Resort Hotel 122
## 2576 Resort Hotel 122
## 2577 Resort Hotel 19
## 2578 Resort Hotel 24
## 2579 Resort Hotel 21
## 2580 Resort Hotel 21
## 2581 Resort Hotel 52
## 2582 Resort Hotel 61
## 2583 Resort Hotel 24
## 2584 Resort Hotel 24
## 2585 Resort Hotel 24
## 2586 Resort Hotel 29
## 2587 Resort Hotel 22
## 2588 Resort Hotel 24
## 2589 Resort Hotel 29
## 2590 Resort Hotel 4
## 2591 Resort Hotel 10
## 2592 Resort Hotel 0
## 2593 Resort Hotel 1
## 2594 Resort Hotel 30
## 2595 Resort Hotel 29
## 2596 Resort Hotel 11
## 2597 Resort Hotel 29
## 2598 Resort Hotel 0
## 2599 Resort Hotel 3
## 2600 Resort Hotel 29
## 2601 Resort Hotel 0
## 2602 Resort Hotel 93
## 2603 Resort Hotel 39
## 2604 Resort Hotel 93
## 2605 Resort Hotel 119
## 2606 Resort Hotel 119
## 2607 Resort Hotel 73
## 2608 Resort Hotel 51
## 2609 Resort Hotel 165
## 2610 Resort Hotel 165
## 2611 Resort Hotel 27
## 2612 Resort Hotel 165
## 2613 Resort Hotel 165
## 2614 Resort Hotel 52
## 2615 Resort Hotel 22
## 2616 Resort Hotel 72
## 2617 Resort Hotel 23
## 2618 Resort Hotel 13
## 2619 Resort Hotel 39
## 2620 Resort Hotel 163
## 2621 Resort Hotel 30
## 2622 Resort Hotel 7
## 2623 Resort Hotel 11
## 2624 Resort Hotel 111
## 2625 Resort Hotel 0
## 2626 Resort Hotel 148
## 2627 Resort Hotel 148
## 2628 Resort Hotel 148
## 2629 Resort Hotel 148
## 2630 Resort Hotel 148
## 2631 Resort Hotel 148
## 2632 Resort Hotel 148
## 2633 Resort Hotel 148
## 2634 Resort Hotel 148
## 2635 Resort Hotel 148
## 2636 Resort Hotel 148
## 2637 Resort Hotel 148
## 2638 Resort Hotel 148
## 2639 Resort Hotel 148
## 2640 Resort Hotel 148
## 2641 Resort Hotel 148
## 2642 Resort Hotel 148
## 2643 Resort Hotel 148
## 2644 Resort Hotel 53
## 2645 Resort Hotel 148
## 2646 Resort Hotel 148
## 2647 Resort Hotel 148
## 2648 Resort Hotel 148
## 2649 Resort Hotel 148
## 2650 Resort Hotel 148
## 2651 Resort Hotel 53
## 2652 Resort Hotel 148
## 2653 Resort Hotel 148
## 2654 Resort Hotel 148
## 2655 Resort Hotel 148
## 2656 Resort Hotel 148
## 2657 Resort Hotel 148
## 2658 Resort Hotel 148
## 2659 Resort Hotel 148
## 2660 Resort Hotel 148
## 2661 Resort Hotel 148
## 2662 Resort Hotel 148
## 2663 Resort Hotel 99
## 2664 Resort Hotel 3
## 2665 Resort Hotel 4
## 2666 Resort Hotel 9
## 2667 Resort Hotel 9
## 2668 Resort Hotel 4
## 2669 Resort Hotel 50
## 2670 Resort Hotel 5
## 2671 Resort Hotel 98
## 2672 Resort Hotel 110
## 2673 Resort Hotel 96
## 2674 Resort Hotel 40
## 2675 Resort Hotel 40
## 2676 Resort Hotel 50
## 2677 Resort Hotel 120
## 2678 Resort Hotel 9
## 2679 Resort Hotel 28
## 2680 Resort Hotel 148
## 2681 Resort Hotel 148
## 2682 Resort Hotel 148
## 2683 Resort Hotel 148
## 2684 Resort Hotel 148
## 2685 Resort Hotel 1
## 2686 Resort Hotel 16
## 2687 Resort Hotel 115
## 2688 Resort Hotel 62
## 2689 Resort Hotel 68
## 2690 Resort Hotel 62
## 2691 Resort Hotel 9
## 2692 Resort Hotel 35
## 2693 Resort Hotel 1
## 2694 Resort Hotel 51
## 2695 Resort Hotel 25
## 2696 Resort Hotel 60
## 2697 Resort Hotel 27
## 2698 Resort Hotel 24
## 2699 Resort Hotel 114
## 2700 Resort Hotel 114
## 2701 Resort Hotel 114
## 2702 Resort Hotel 114
## 2703 Resort Hotel 114
## 2704 Resort Hotel 3
## 2705 Resort Hotel 0
## 2706 Resort Hotel 0
## 2707 Resort Hotel 0
## 2708 Resort Hotel 0
## 2709 Resort Hotel 0
## 2710 Resort Hotel 3
## 2711 Resort Hotel 10
## 2712 Resort Hotel 0
## 2713 Resort Hotel 0
## 2714 Resort Hotel 10
## 2715 Resort Hotel 1
## 2716 Resort Hotel 34
## 2717 Resort Hotel 42
## 2718 Resort Hotel 3
## 2719 Resort Hotel 61
## 2720 Resort Hotel 0
## 2721 Resort Hotel 2
## 2722 Resort Hotel 19
## 2723 Resort Hotel 0
## 2724 Resort Hotel 49
## 2725 Resort Hotel 49
## 2726 Resort Hotel 49
## 2727 Resort Hotel 49
## 2728 Resort Hotel 0
## 2729 Resort Hotel 2
## 2730 Resort Hotel 1
## 2731 Resort Hotel 1
## 2732 Resort Hotel 2
## 2733 Resort Hotel 2
## 2734 Resort Hotel 3
## 2735 Resort Hotel 7
## 2736 Resort Hotel 3
## 2737 Resort Hotel 2
## 2738 Resort Hotel 3
## 2739 Resort Hotel 153
## 2740 Resort Hotel 153
## 2741 Resort Hotel 63
## 2742 Resort Hotel 153
## 2743 Resort Hotel 1
## 2744 Resort Hotel 2
## 2745 Resort Hotel 16
## 2746 Resort Hotel 1
## 2747 Resort Hotel 154
## 2748 Resort Hotel 154
## 2749 Resort Hotel 25
## 2750 Resort Hotel 3
## 2751 Resort Hotel 154
## 2752 Resort Hotel 13
## 2753 Resort Hotel 6
## 2754 Resort Hotel 1
## 2755 Resort Hotel 3
## 2756 Resort Hotel 3
## 2757 Resort Hotel 4
## 2758 Resort Hotel 11
## 2759 Resort Hotel 11
## 2760 Resort Hotel 154
## 2761 Resort Hotel 4
## 2762 Resort Hotel 45
## 2763 Resort Hotel 11
## 2764 Resort Hotel 7
## 2765 Resort Hotel 85
## 2766 Resort Hotel 4
## 2767 Resort Hotel 10
## 2768 Resort Hotel 12
## 2769 Resort Hotel 5
## 2770 Resort Hotel 155
## 2771 Resort Hotel 155
## 2772 Resort Hotel 155
## 2773 Resort Hotel 155
## 2774 Resort Hotel 155
## 2775 Resort Hotel 155
## 2776 Resort Hotel 155
## 2777 Resort Hotel 4
## 2778 Resort Hotel 4
## 2779 Resort Hotel 0
## 2780 Resort Hotel 3
## 2781 Resort Hotel 8
## 2782 Resort Hotel 0
## 2783 Resort Hotel 155
## 2784 Resort Hotel 155
## 2785 Resort Hotel 155
## 2786 Resort Hotel 155
## 2787 Resort Hotel 1
## 2788 Resort Hotel 155
## 2789 Resort Hotel 155
## 2790 Resort Hotel 155
## 2791 Resort Hotel 155
## 2792 Resort Hotel 155
## 2793 Resort Hotel 155
## 2794 Resort Hotel 155
## 2795 Resort Hotel 155
## 2796 Resort Hotel 155
## 2797 Resort Hotel 4
## 2798 Resort Hotel 3
## 2799 Resort Hotel 4
## 2800 Resort Hotel 3
## 2801 Resort Hotel 54
## 2802 Resort Hotel 3
## 2803 Resort Hotel 1
## 2804 Resort Hotel 0
## 2805 Resort Hotel 155
## 2806 Resort Hotel 155
## 2807 Resort Hotel 155
## 2808 Resort Hotel 0
## 2809 Resort Hotel 155
## 2810 Resort Hotel 155
## 2811 Resort Hotel 155
## 2812 Resort Hotel 155
## 2813 Resort Hotel 155
## 2814 Resort Hotel 155
## 2815 Resort Hotel 155
## 2816 Resort Hotel 155
## 2817 Resort Hotel 1
## 2818 Resort Hotel 2
## 2819 Resort Hotel 74
## 2820 Resort Hotel 2
## 2821 Resort Hotel 11
## 2822 Resort Hotel 12
## 2823 Resort Hotel 155
## 2824 Resort Hotel 0
## 2825 Resort Hotel 155
## 2826 Resort Hotel 0
## 2827 Resort Hotel 75
## 2828 Resort Hotel 128
## 2829 Resort Hotel 128
## 2830 Resort Hotel 51
## 2831 Resort Hotel 25
## 2832 Resort Hotel 81
## 2833 Resort Hotel 39
## 2834 Resort Hotel 58
## 2835 Resort Hotel 5
## 2836 Resort Hotel 33
## 2837 Resort Hotel 1
## 2838 Resort Hotel 4
## 2839 Resort Hotel 5
## 2840 Resort Hotel 1
## 2841 Resort Hotel 33
## 2842 Resort Hotel 76
## 2843 Resort Hotel 171
## 2844 Resort Hotel 146
## 2845 Resort Hotel 83
## 2846 Resort Hotel 39
## 2847 Resort Hotel 24
## 2848 Resort Hotel 1
## 2849 Resort Hotel 0
## 2850 Resort Hotel 20
## 2851 Resort Hotel 20
## 2852 Resort Hotel 21
## 2853 Resort Hotel 31
## 2854 Resort Hotel 31
## 2855 Resort Hotel 31
## 2856 Resort Hotel 31
## 2857 Resort Hotel 31
## 2858 Resort Hotel 31
## 2859 Resort Hotel 31
## 2860 Resort Hotel 36
## 2861 Resort Hotel 5
## 2862 Resort Hotel 5
## 2863 Resort Hotel 0
## 2864 Resort Hotel 0
## 2865 Resort Hotel 7
## 2866 Resort Hotel 0
## 2867 Resort Hotel 6
## 2868 Resort Hotel 24
## 2869 Resort Hotel 6
## 2870 Resort Hotel 26
## 2871 Resort Hotel 3
## 2872 Resort Hotel 26
## 2873 Resort Hotel 49
## 2874 Resort Hotel 25
## 2875 Resort Hotel 26
## 2876 Resort Hotel 6
## 2877 Resort Hotel 8
## 2878 Resort Hotel 24
## 2879 Resort Hotel 24
## 2880 Resort Hotel 24
## 2881 Resort Hotel 24
## 2882 Resort Hotel 24
## 2883 Resort Hotel 24
## 2884 Resort Hotel 24
## 2885 Resort Hotel 24
## 2886 Resort Hotel 1
## 2887 Resort Hotel 2
## 2888 Resort Hotel 2
## 2889 Resort Hotel 0
## 2890 Resort Hotel 50
## 2891 Resort Hotel 25
## 2892 Resort Hotel 25
## 2893 Resort Hotel 33
## 2894 Resort Hotel 0
## 2895 Resort Hotel 0
## 2896 Resort Hotel 0
## 2897 Resort Hotel 28
## 2898 Resort Hotel 28
## 2899 Resort Hotel 34
## 2900 Resort Hotel 65
## 2901 Resort Hotel 34
## 2902 Resort Hotel 11
## 2903 Resort Hotel 1
## 2904 Resort Hotel 4
## 2905 Resort Hotel 0
## 2906 Resort Hotel 15
## 2907 Resort Hotel 0
## 2908 Resort Hotel 38
## 2909 Resort Hotel 0
## 2910 Resort Hotel 91
## 2911 Resort Hotel 123
## 2912 Resort Hotel 123
## 2913 Resort Hotel 27
## 2914 Resort Hotel 35
## 2915 Resort Hotel 35
## 2916 Resort Hotel 35
## 2917 Resort Hotel 35
## 2918 Resort Hotel 27
## 2919 Resort Hotel 35
## 2920 Resort Hotel 54
## 2921 Resort Hotel 0
## 2922 Resort Hotel 25
## 2923 Resort Hotel 18
## 2924 Resort Hotel 30
## 2925 Resort Hotel 0
## 2926 Resort Hotel 19
## 2927 Resort Hotel 30
## 2928 Resort Hotel 4
## 2929 Resort Hotel 0
## 2930 Resort Hotel 4
## 2931 Resort Hotel 18
## 2932 Resort Hotel 18
## 2933 Resort Hotel 51
## 2934 Resort Hotel 54
## 2935 Resort Hotel 36
## 2936 Resort Hotel 36
## 2937 Resort Hotel 36
## 2938 Resort Hotel 241
## 2939 Resort Hotel 36
## 2940 Resort Hotel 172
## 2941 Resort Hotel 171
## 2942 Resort Hotel 36
## 2943 Resort Hotel 36
## 2944 Resort Hotel 36
## 2945 Resort Hotel 36
## 2946 Resort Hotel 36
## 2947 Resort Hotel 28
## 2948 Resort Hotel 36
## 2949 Resort Hotel 36
## 2950 Resort Hotel 36
## 2951 Resort Hotel 36
## 2952 Resort Hotel 36
## 2953 Resort Hotel 36
## 2954 Resort Hotel 36
## 2955 Resort Hotel 36
## 2956 Resort Hotel 172
## 2957 Resort Hotel 241
## 2958 Resort Hotel 96
## 2959 Resort Hotel 13
## 2960 Resort Hotel 11
## 2961 Resort Hotel 15
## 2962 Resort Hotel 193
## 2963 Resort Hotel 0
## 2964 Resort Hotel 10
## 2965 Resort Hotel 17
## 2966 Resort Hotel 37
## 2967 Resort Hotel 37
## 2968 Resort Hotel 17
## 2969 Resort Hotel 29
## 2970 Resort Hotel 37
## 2971 Resort Hotel 37
## 2972 Resort Hotel 37
## 2973 Resort Hotel 10
## 2974 Resort Hotel 89
## 2975 Resort Hotel 3
## 2976 Resort Hotel 3
## 2977 Resort Hotel 5
## 2978 Resort Hotel 0
## 2979 Resort Hotel 0
## 2980 Resort Hotel 0
## 2981 Resort Hotel 11
## 2982 Resort Hotel 14
## 2983 Resort Hotel 2
## 2984 Resort Hotel 38
## 2985 Resort Hotel 38
## 2986 Resort Hotel 79
## 2987 Resort Hotel 79
## 2988 Resort Hotel 49
## 2989 Resort Hotel 30
## 2990 Resort Hotel 164
## 2991 Resort Hotel 50
## 2992 Resort Hotel 0
## 2993 Resort Hotel 39
## 2994 Resort Hotel 39
## 2995 Resort Hotel 39
## 2996 Resort Hotel 42
## 2997 Resort Hotel 39
## 2998 Resort Hotel 36
## 2999 Resort Hotel 0
## 3000 Resort Hotel 6
## 3001 Resort Hotel 40
## 3002 Resort Hotel 40
## 3003 Resort Hotel 32
## 3004 Resort Hotel 40
## 3005 Resort Hotel 40
## 3006 Resort Hotel 40
## 3007 Resort Hotel 56
## 3008 Resort Hotel 60
## 3009 Resort Hotel 166
## 3010 Resort Hotel 0
## 3011 Resort Hotel 40
## 3012 Resort Hotel 37
## 3013 Resort Hotel 53
## 3014 Resort Hotel 60
## 3015 Resort Hotel 61
## 3016 Resort Hotel 40
## 3017 Resort Hotel 40
## 3018 Resort Hotel 40
## 3019 Resort Hotel 40
## 3020 Resort Hotel 56
## 3021 Resort Hotel 32
## 3022 Resort Hotel 32
## 3023 Resort Hotel 166
## 3024 Resort Hotel 40
## 3025 Resort Hotel 40
## 3026 Resort Hotel 40
## 3027 Resort Hotel 56
## 3028 Resort Hotel 56
## 3029 Resort Hotel 60
## 3030 Resort Hotel 37
## 3031 Resort Hotel 39
## 3032 Resort Hotel 103
## 3033 Resort Hotel 32
## 3034 Resort Hotel 55
## 3035 Resort Hotel 49
## 3036 Resort Hotel 41
## 3037 Resort Hotel 41
## 3038 Resort Hotel 33
## 3039 Resort Hotel 41
## 3040 Resort Hotel 41
## 3041 Resort Hotel 41
## 3042 Resort Hotel 41
## 3043 Resort Hotel 41
## 3044 Resort Hotel 41
## 3045 Resort Hotel 33
## 3046 Resort Hotel 70
## 3047 Resort Hotel 33
## 3048 Resort Hotel 21
## 3049 Resort Hotel 33
## 3050 Resort Hotel 21
## 3051 Resort Hotel 33
## 3052 Resort Hotel 33
## 3053 Resort Hotel 41
## 3054 Resort Hotel 41
## 3055 Resort Hotel 41
## 3056 Resort Hotel 49
## 3057 Resort Hotel 2
## 3058 Resort Hotel 3
## 3059 Resort Hotel 33
## 3060 Resort Hotel 3
## 3061 Resort Hotel 2
## 3062 Resort Hotel 21
## 3063 Resort Hotel 33
## 3064 Resort Hotel 82
## 3065 Resort Hotel 41
## 3066 Resort Hotel 41
## 3067 Resort Hotel 41
## 3068 Resort Hotel 41
## 3069 Resort Hotel 33
## 3070 Resort Hotel 42
## 3071 Resort Hotel 42
## 3072 Resort Hotel 2
## 3073 Resort Hotel 1
## 3074 Resort Hotel 43
## 3075 Resort Hotel 31
## 3076 Resort Hotel 3
## 3077 Resort Hotel 44
## 3078 Resort Hotel 2
## 3079 Resort Hotel 15
## 3080 Resort Hotel 121
## 3081 Resort Hotel 38
## 3082 Resort Hotel 5
## 3083 Resort Hotel 54
## 3084 Resort Hotel 94
## 3085 Resort Hotel 10
## 3086 Resort Hotel 79
## 3087 Resort Hotel 53
## 3088 Resort Hotel 60
## 3089 Resort Hotel 125
## 3090 Resort Hotel 74
## 3091 Resort Hotel 74
## 3092 Resort Hotel 0
## 3093 Resort Hotel 27
## 3094 Resort Hotel 27
## 3095 Resort Hotel 27
## 3096 Resort Hotel 73
## 3097 Resort Hotel 80
## 3098 Resort Hotel 74
## 3099 Resort Hotel 42
## 3100 Resort Hotel 97
## 3101 Resort Hotel 0
## 3102 Resort Hotel 28
## 3103 Resort Hotel 46
## 3104 Resort Hotel 134
## 3105 Resort Hotel 16
## 3106 Resort Hotel 193
## 3107 Resort Hotel 105
## 3108 Resort Hotel 105
## 3109 Resort Hotel 105
## 3110 Resort Hotel 62
## 3111 Resort Hotel 62
## 3112 Resort Hotel 105
## 3113 Resort Hotel 105
## 3114 Resort Hotel 105
## 3115 Resort Hotel 62
## 3116 Resort Hotel 105
## 3117 Resort Hotel 105
## 3118 Resort Hotel 105
## 3119 Resort Hotel 105
## 3120 Resort Hotel 105
## 3121 Resort Hotel 105
## 3122 Resort Hotel 105
## 3123 Resort Hotel 12
## 3124 Resort Hotel 105
## 3125 Resort Hotel 105
## 3126 Resort Hotel 105
## 3127 Resort Hotel 62
## 3128 Resort Hotel 62
## 3129 Resort Hotel 105
## 3130 Resort Hotel 12
## 3131 Resort Hotel 62
## 3132 Resort Hotel 105
## 3133 Resort Hotel 105
## 3134 Resort Hotel 163
## 3135 Resort Hotel 10
## 3136 Resort Hotel 19
## 3137 Resort Hotel 31
## 3138 Resort Hotel 45
## 3139 Resort Hotel 16
## 3140 Resort Hotel 50
## 3141 Resort Hotel 121
## 3142 Resort Hotel 50
## 3143 Resort Hotel 120
## 3144 Resort Hotel 36
## 3145 Resort Hotel 36
## 3146 Resort Hotel 36
## 3147 Resort Hotel 36
## 3148 Resort Hotel 122
## 3149 Resort Hotel 122
## 3150 Resort Hotel 36
## 3151 Resort Hotel 36
## 3152 Resort Hotel 36
## 3153 Resort Hotel 39
## 3154 Resort Hotel 122
## 3155 Resort Hotel 122
## 3156 Resort Hotel 36
## 3157 Resort Hotel 36
## 3158 Resort Hotel 36
## 3159 Resort Hotel 235
## 3160 Resort Hotel 122
## 3161 Resort Hotel 122
## 3162 Resort Hotel 36
## 3163 Resort Hotel 36
## 3164 Resort Hotel 36
## 3165 Resort Hotel 8
## 3166 Resort Hotel 36
## 3167 Resort Hotel 36
## 3168 Resort Hotel 36
## 3169 Resort Hotel 122
## 3170 Resort Hotel 122
## 3171 Resort Hotel 122
## 3172 Resort Hotel 73
## 3173 Resort Hotel 36
## 3174 Resort Hotel 36
## 3175 Resort Hotel 36
## 3176 Resort Hotel 36
## 3177 Resort Hotel 122
## 3178 Resort Hotel 36
## 3179 Resort Hotel 36
## 3180 Resort Hotel 36
## 3181 Resort Hotel 123
## 3182 Resort Hotel 36
## 3183 Resort Hotel 129
## 3184 Resort Hotel 24
## 3185 Resort Hotel 24
## 3186 Resort Hotel 24
## 3187 Resort Hotel 78
## 3188 Resort Hotel 78
## 3189 Resort Hotel 78
## 3190 Resort Hotel 78
## 3191 Resort Hotel 78
## 3192 Resort Hotel 78
## 3193 Resort Hotel 78
## 3194 Resort Hotel 24
## 3195 Resort Hotel 24
## 3196 Resort Hotel 24
## 3197 Resort Hotel 15
## 3198 Resort Hotel 78
## 3199 Resort Hotel 78
## 3200 Resort Hotel 78
## 3201 Resort Hotel 78
## 3202 Resort Hotel 78
## 3203 Resort Hotel 78
## 3204 Resort Hotel 24
## 3205 Resort Hotel 24
## 3206 Resort Hotel 44
## 3207 Resort Hotel 15
## 3208 Resort Hotel 124
## 3209 Resort Hotel 44
## 3210 Resort Hotel 78
## 3211 Resort Hotel 78
## 3212 Resort Hotel 78
## 3213 Resort Hotel 24
## 3214 Resort Hotel 24
## 3215 Resort Hotel 78
## 3216 Resort Hotel 78
## 3217 Resort Hotel 78
## 3218 Resort Hotel 15
## 3219 Resort Hotel 78
## 3220 Resort Hotel 78
## 3221 Resort Hotel 78
## 3222 Resort Hotel 33
## 3223 Resort Hotel 15
## 3224 Resort Hotel 15
## 3225 Resort Hotel 24
## 3226 Resort Hotel 40
## 3227 Resort Hotel 78
## 3228 Resort Hotel 78
## 3229 Resort Hotel 78
## 3230 Resort Hotel 39
## 3231 Resort Hotel 24
## 3232 Resort Hotel 24
## 3233 Resort Hotel 14
## 3234 Resort Hotel 0
## 3235 Resort Hotel 56
## 3236 Resort Hotel 20
## 3237 Resort Hotel 20
## 3238 Resort Hotel 157
## 3239 Resort Hotel 17
## 3240 Resort Hotel 13
## 3241 Resort Hotel 21
## 3242 Resort Hotel 40
## 3243 Resort Hotel 12
## 3244 Resort Hotel 72
## 3245 Resort Hotel 17
## 3246 Resort Hotel 57
## 3247 Resort Hotel 57
## 3248 Resort Hotel 57
## 3249 Resort Hotel 57
## 3250 Resort Hotel 57
## 3251 Resort Hotel 57
## 3252 Resort Hotel 17
## 3253 Resort Hotel 14
## 3254 Resort Hotel 57
## 3255 Resort Hotel 174
## 3256 Resort Hotel 28
## 3257 Resort Hotel 15
## 3258 Resort Hotel 32
## 3259 Resort Hotel 15
## 3260 Resort Hotel 28
## 3261 Resort Hotel 22
## 3262 Resort Hotel 74
## 3263 Resort Hotel 164
## 3264 Resort Hotel 36
## 3265 Resort Hotel 88
## 3266 Resort Hotel 26
## 3267 Resort Hotel 82
## 3268 Resort Hotel 133
## 3269 Resort Hotel 62
## 3270 Resort Hotel 93
## 3271 Resort Hotel 91
## 3272 Resort Hotel 20
## 3273 Resort Hotel 118
## 3274 Resort Hotel 87
## 3275 Resort Hotel 118
## 3276 Resort Hotel 82
## 3277 Resort Hotel 21
## 3278 Resort Hotel 21
## 3279 Resort Hotel 21
## 3280 Resort Hotel 21
## 3281 Resort Hotel 119
## 3282 Resort Hotel 31
## 3283 Resort Hotel 23
## 3284 Resort Hotel 20
## 3285 Resort Hotel 45
## 3286 Resort Hotel 48
## 3287 Resort Hotel 52
## 3288 Resort Hotel 108
## 3289 Resort Hotel 30
## 3290 Resort Hotel 121
## 3291 Resort Hotel 58
## 3292 Resort Hotel 81
## 3293 Resort Hotel 80
## 3294 Resort Hotel 23
## 3295 Resort Hotel 88
## 3296 Resort Hotel 44
## 3297 Resort Hotel 74
## 3298 Resort Hotel 34
## 3299 Resort Hotel 22
## 3300 Resort Hotel 22
## 3301 Resort Hotel 34
## 3302 Resort Hotel 22
## 3303 Resort Hotel 130
## 3304 Resort Hotel 44
## 3305 Resort Hotel 66
## 3306 Resort Hotel 66
## 3307 Resort Hotel 66
## 3308 Resort Hotel 66
## 3309 Resort Hotel 66
## 3310 Resort Hotel 66
## 3311 Resort Hotel 54
## 3312 Resort Hotel 66
## 3313 Resort Hotel 66
## 3314 Resort Hotel 66
## 3315 Resort Hotel 66
## 3316 Resort Hotel 66
## 3317 Resort Hotel 26
## 3318 Resort Hotel 66
## 3319 Resort Hotel 66
## 3320 Resort Hotel 66
## 3321 Resort Hotel 66
## 3322 Resort Hotel 66
## 3323 Resort Hotel 66
## 3324 Resort Hotel 66
## 3325 Resort Hotel 66
## 3326 Resort Hotel 66
## 3327 Resort Hotel 66
## 3328 Resort Hotel 66
## 3329 Resort Hotel 66
## 3330 Resort Hotel 66
## 3331 Resort Hotel 66
## 3332 Resort Hotel 66
## 3333 Resort Hotel 66
## 3334 Resort Hotel 66
## 3335 Resort Hotel 66
## 3336 Resort Hotel 66
## 3337 Resort Hotel 59
## 3338 Resort Hotel 59
## 3339 Resort Hotel 23
## 3340 Resort Hotel 24
## 3341 Resort Hotel 149
## 3342 Resort Hotel 149
## 3343 Resort Hotel 149
## 3344 Resort Hotel 149
## 3345 Resort Hotel 44
## 3346 Resort Hotel 44
## 3347 Resort Hotel 45
## 3348 Resort Hotel 45
## 3349 Resort Hotel 54
## 3350 Resort Hotel 59
## 3351 Resort Hotel 60
## 3352 Resort Hotel 149
## 3353 Resort Hotel 149
## 3354 Resort Hotel 149
## 3355 Resort Hotel 44
## 3356 Resort Hotel 44
## 3357 Resort Hotel 44
## 3358 Resort Hotel 45
## 3359 Resort Hotel 45
## 3360 Resort Hotel 45
## 3361 Resort Hotel 44
## 3362 Resort Hotel 44
## 3363 Resort Hotel 44
## 3364 Resort Hotel 45
## 3365 Resort Hotel 45
## 3366 Resort Hotel 45
## 3367 Resort Hotel 45
## 3368 Resort Hotel 45
## 3369 Resort Hotel 54
## 3370 Resort Hotel 149
## 3371 Resort Hotel 149
## 3372 Resort Hotel 149
## 3373 Resort Hotel 46
## 3374 Resort Hotel 44
## 3375 Resort Hotel 44
## 3376 Resort Hotel 45
## 3377 Resort Hotel 45
## 3378 Resort Hotel 149
## 3379 Resort Hotel 149
## 3380 Resort Hotel 149
## 3381 Resort Hotel 113
## 3382 Resort Hotel 59
## 3383 Resort Hotel 59
## 3384 Resort Hotel 149
## 3385 Resort Hotel 149
## 3386 Resort Hotel 149
## 3387 Resort Hotel 149
## 3388 Resort Hotel 45
## 3389 Resort Hotel 45
## 3390 Resort Hotel 45
## 3391 Resort Hotel 44
## 3392 Resort Hotel 44
## 3393 Resort Hotel 44
## 3394 Resort Hotel 44
## 3395 Resort Hotel 44
## 3396 Resort Hotel 58
## 3397 Resort Hotel 149
## 3398 Resort Hotel 149
## 3399 Resort Hotel 149
## 3400 Resort Hotel 45
## 3401 Resort Hotel 45
## 3402 Resort Hotel 45
## 3403 Resort Hotel 45
## 3404 Resort Hotel 45
## 3405 Resort Hotel 44
## 3406 Resort Hotel 44
## 3407 Resort Hotel 44
## 3408 Resort Hotel 44
## 3409 Resort Hotel 149
## 3410 Resort Hotel 149
## 3411 Resort Hotel 33
## 3412 Resort Hotel 45
## 3413 Resort Hotel 45
## 3414 Resort Hotel 45
## 3415 Resort Hotel 45
## 3416 Resort Hotel 44
## 3417 Resort Hotel 44
## 3418 Resort Hotel 149
## 3419 Resort Hotel 149
## 3420 Resort Hotel 149
## 3421 Resort Hotel 44
## 3422 Resort Hotel 44
## 3423 Resort Hotel 44
## 3424 Resort Hotel 45
## 3425 Resort Hotel 45
## 3426 Resort Hotel 45
## 3427 Resort Hotel 54
## 3428 Resort Hotel 39
## 3429 Resort Hotel 81
## 3430 Resort Hotel 81
## 3431 Resort Hotel 81
## 3432 Resort Hotel 68
## 3433 Resort Hotel 81
## 3434 Resort Hotel 81
## 3435 Resort Hotel 81
## 3436 Resort Hotel 81
## 3437 Resort Hotel 81
## 3438 Resort Hotel 81
## 3439 Resort Hotel 81
## 3440 Resort Hotel 81
## 3441 Resort Hotel 81
## 3442 Resort Hotel 31
## 3443 Resort Hotel 35
## 3444 Resort Hotel 49
## 3445 Resort Hotel 35
## 3446 Resort Hotel 25
## 3447 Resort Hotel 183
## 3448 Resort Hotel 140
## 3449 Resort Hotel 192
## 3450 Resort Hotel 29
## 3451 Resort Hotel 29
## 3452 Resort Hotel 29
## 3453 Resort Hotel 66
## 3454 Resort Hotel 29
## 3455 Resort Hotel 29
## 3456 Resort Hotel 126
## 3457 Resort Hotel 56
## 3458 Resort Hotel 66
## 3459 Resort Hotel 194
## 3460 Resort Hotel 149
## 3461 Resort Hotel 70
## 3462 Resort Hotel 33
## 3463 Resort Hotel 103
## 3464 Resort Hotel 71
## 3465 Resort Hotel 50
## 3466 Resort Hotel 44
## 3467 Resort Hotel 261
## 3468 Resort Hotel 125
## 3469 Resort Hotel 52
## 3470 Resort Hotel 49
## 3471 Resort Hotel 58
## 3472 Resort Hotel 113
## 3473 Resort Hotel 60
## 3474 Resort Hotel 45
## 3475 Resort Hotel 86
## 3476 Resort Hotel 93
## 3477 Resort Hotel 93
## 3478 Resort Hotel 93
## 3479 Resort Hotel 93
## 3480 Resort Hotel 93
## 3481 Resort Hotel 93
## 3482 Resort Hotel 93
## 3483 Resort Hotel 93
## 3484 Resort Hotel 93
## 3485 Resort Hotel 93
## 3486 Resort Hotel 93
## 3487 Resort Hotel 93
## 3488 Resort Hotel 93
## 3489 Resort Hotel 93
## 3490 Resort Hotel 93
## 3491 Resort Hotel 93
## 3492 Resort Hotel 93
## 3493 Resort Hotel 93
## 3494 Resort Hotel 93
## 3495 Resort Hotel 93
## 3496 Resort Hotel 93
## 3497 Resort Hotel 93
## 3498 Resort Hotel 93
## 3499 Resort Hotel 93
## 3500 Resort Hotel 93
## 3501 Resort Hotel 39
## 3502 Resort Hotel 88
## 3503 Resort Hotel 113
## 3504 Resort Hotel 118
## 3505 Resort Hotel 260
## 3506 Resort Hotel 216
## 3507 Resort Hotel 169
## 3508 Resort Hotel 216
## 3509 Resort Hotel 169
## 3510 Resort Hotel 260
## 3511 Resort Hotel 48
## 3512 Resort Hotel 113
## 3513 Resort Hotel 113
## 3514 Resort Hotel 126
## 3515 Resort Hotel 67
## 3516 Resort Hotel 209
## 3517 Resort Hotel 49
## 3518 Resort Hotel 94
## 3519 Resort Hotel 94
## 3520 Resort Hotel 39
## 3521 Resort Hotel 94
## 3522 Resort Hotel 39
## 3523 Resort Hotel 94
## 3524 Resort Hotel 94
## 3525 Resort Hotel 119
## 3526 Resort Hotel 3
## 3527 Resort Hotel 57
## 3528 Resort Hotel 54
## 3529 Resort Hotel 43
## 3530 Resort Hotel 60
## 3531 Resort Hotel 131
## 3532 Resort Hotel 139
## 3533 Resort Hotel 131
## 3534 Resort Hotel 131
## 3535 Resort Hotel 131
## 3536 Resort Hotel 131
## 3537 Resort Hotel 131
## 3538 Resort Hotel 70
## 3539 Resort Hotel 131
## 3540 Resort Hotel 131
## 3541 Resort Hotel 131
## 3542 Resort Hotel 131
## 3543 Resort Hotel 131
## 3544 Resort Hotel 131
## 3545 Resort Hotel 131
## 3546 Resort Hotel 131
## 3547 Resort Hotel 1
## 3548 Resort Hotel 131
## 3549 Resort Hotel 131
## 3550 Resort Hotel 131
## 3551 Resort Hotel 131
## 3552 Resort Hotel 131
## 3553 Resort Hotel 131
## 3554 Resort Hotel 83
## 3555 Resort Hotel 119
## 3556 Resort Hotel 49
## 3557 Resort Hotel 49
## 3558 Resort Hotel 48
## 3559 Resort Hotel 111
## 3560 Resort Hotel 100
## 3561 Resort Hotel 70
## 3562 Resort Hotel 44
## 3563 Resort Hotel 99
## 3564 Resort Hotel 44
## 3565 Resort Hotel 65
## 3566 Resort Hotel 45
## 3567 Resort Hotel 44
## 3568 Resort Hotel 45
## 3569 Resort Hotel 66
## 3570 Resort Hotel 59
## 3571 Resort Hotel 155
## 3572 Resort Hotel 59
## 3573 Resort Hotel 155
## 3574 Resort Hotel 44
## 3575 Resort Hotel 113
## 3576 Resort Hotel 86
## 3577 Resort Hotel 127
## 3578 Resort Hotel 131
## 3579 Resort Hotel 119
## 3580 Resort Hotel 127
## 3581 Resort Hotel 79
## 3582 Resort Hotel 113
## 3583 Resort Hotel 57
## 3584 Resort Hotel 87
## 3585 Resort Hotel 110
## 3586 Resort Hotel 99
## 3587 Resort Hotel 178
## 3588 Resort Hotel 51
## 3589 Resort Hotel 0
## 3590 Resort Hotel 0
## 3591 Resort Hotel 0
## 3592 Resort Hotel 0
## 3593 Resort Hotel 0
## 3594 Resort Hotel 0
## 3595 Resort Hotel 0
## 3596 Resort Hotel 0
## 3597 Resort Hotel 0
## 3598 Resort Hotel 0
## 3599 Resort Hotel 0
## 3600 Resort Hotel 0
## 3601 Resort Hotel 0
## 3602 Resort Hotel 0
## 3603 Resort Hotel 0
## 3604 Resort Hotel 0
## 3605 Resort Hotel 0
## 3606 Resort Hotel 55
## 3607 Resort Hotel 56
## 3608 Resort Hotel 56
## 3609 Resort Hotel 56
## 3610 Resort Hotel 55
## 3611 Resort Hotel 55
## 3612 Resort Hotel 45
## 3613 Resort Hotel 130
## 3614 Resort Hotel 93
## 3615 Resort Hotel 112
## 3616 Resort Hotel 107
## 3617 Resort Hotel 114
## 3618 Resort Hotel 238
## 3619 Resort Hotel 89
## 3620 Resort Hotel 215
## 3621 Resort Hotel 59
## 3622 Resort Hotel 129
## 3623 Resort Hotel 62
## 3624 Resort Hotel 31
## 3625 Resort Hotel 62
## 3626 Resort Hotel 27
## 3627 Resort Hotel 83
## 3628 Resort Hotel 133
## 3629 Resort Hotel 49
## 3630 Resort Hotel 3
## 3631 Resort Hotel 49
## 3632 Resort Hotel 49
## 3633 Resort Hotel 126
## 3634 Resort Hotel 77
## 3635 Resort Hotel 90
## 3636 Resort Hotel 105
## 3637 Resort Hotel 81
## 3638 Resort Hotel 81
## 3639 Resort Hotel 118
## 3640 Resort Hotel 76
## 3641 Resort Hotel 101
## 3642 Resort Hotel 66
## 3643 Resort Hotel 49
## 3644 Resort Hotel 53
## 3645 Resort Hotel 75
## 3646 Resort Hotel 94
## 3647 Resort Hotel 160
## 3648 Resort Hotel 76
## 3649 Resort Hotel 165
## 3650 Resort Hotel 165
## 3651 Resort Hotel 165
## 3652 Resort Hotel 165
## 3653 Resort Hotel 65
## 3654 Resort Hotel 165
## 3655 Resort Hotel 165
## 3656 Resort Hotel 165
## 3657 Resort Hotel 165
## 3658 Resort Hotel 165
## 3659 Resort Hotel 165
## 3660 Resort Hotel 165
## 3661 Resort Hotel 165
## 3662 Resort Hotel 165
## 3663 Resort Hotel 165
## 3664 Resort Hotel 165
## 3665 Resort Hotel 165
## 3666 Resort Hotel 165
## 3667 Resort Hotel 165
## 3668 Resort Hotel 54
## 3669 Resort Hotel 165
## 3670 Resort Hotel 165
## 3671 Resort Hotel 165
## 3672 Resort Hotel 165
## 3673 Resort Hotel 165
## 3674 Resort Hotel 165
## 3675 Resort Hotel 165
## 3676 Resort Hotel 165
## 3677 Resort Hotel 165
## 3678 Resort Hotel 165
## 3679 Resort Hotel 165
## 3680 Resort Hotel 165
## 3681 Resort Hotel 165
## 3682 Resort Hotel 165
## 3683 Resort Hotel 65
## 3684 Resort Hotel 9
## 3685 Resort Hotel 165
## 3686 Resort Hotel 9
## 3687 Resort Hotel 53
## 3688 Resort Hotel 165
## 3689 Resort Hotel 165
## 3690 Resort Hotel 165
## 3691 Resort Hotel 165
## 3692 Resort Hotel 165
## 3693 Resort Hotel 165
## 3694 Resort Hotel 165
## 3695 Resort Hotel 165
## 3696 Resort Hotel 165
## 3697 Resort Hotel 165
## 3698 Resort Hotel 165
## 3699 Resort Hotel 165
## 3700 Resort Hotel 165
## 3701 Resort Hotel 165
## 3702 Resort Hotel 165
## 3703 Resort Hotel 165
## 3704 Resort Hotel 165
## 3705 Resort Hotel 165
## 3706 Resort Hotel 165
## 3707 Resort Hotel 165
## 3708 Resort Hotel 55
## 3709 Resort Hotel 165
## 3710 Resort Hotel 41
## 3711 Resort Hotel 85
## 3712 Resort Hotel 43
## 3713 Resort Hotel 52
## 3714 Resort Hotel 66
## 3715 Resort Hotel 86
## 3716 Resort Hotel 114
## 3717 Resort Hotel 90
## 3718 Resort Hotel 161
## 3719 Resort Hotel 161
## 3720 Resort Hotel 86
## 3721 Resort Hotel 69
## 3722 Resort Hotel 62
## 3723 Resort Hotel 141
## 3724 Resort Hotel 72
## 3725 Resort Hotel 101
## 3726 Resort Hotel 66
## 3727 Resort Hotel 69
## 3728 Resort Hotel 55
## 3729 Resort Hotel 45
## 3730 Resort Hotel 69
## 3731 Resort Hotel 49
## 3732 Resort Hotel 79
## 3733 Resort Hotel 69
## 3734 Resort Hotel 70
## 3735 Resort Hotel 92
## 3736 Resort Hotel 92
## 3737 Resort Hotel 92
## 3738 Resort Hotel 92
## 3739 Resort Hotel 109
## 3740 Resort Hotel 109
## 3741 Resort Hotel 2
## 3742 Resort Hotel 88
## 3743 Resort Hotel 20
## 3744 Resort Hotel 76
## 3745 Resort Hotel 88
## 3746 Resort Hotel 113
## 3747 Resort Hotel 113
## 3748 Resort Hotel 113
## 3749 Resort Hotel 113
## 3750 Resort Hotel 113
## 3751 Resort Hotel 113
## 3752 Resort Hotel 113
## 3753 Resort Hotel 113
## 3754 Resort Hotel 113
## 3755 Resort Hotel 113
## 3756 Resort Hotel 113
## 3757 Resort Hotel 113
## 3758 Resort Hotel 113
## 3759 Resort Hotel 113
## 3760 Resort Hotel 113
## 3761 Resort Hotel 113
## 3762 Resort Hotel 113
## 3763 Resort Hotel 113
## 3764 Resort Hotel 113
## 3765 Resort Hotel 113
## 3766 Resort Hotel 113
## 3767 Resort Hotel 113
## 3768 Resort Hotel 113
## 3769 Resort Hotel 113
## 3770 Resort Hotel 113
## 3771 Resort Hotel 110
## 3772 Resort Hotel 103
## 3773 Resort Hotel 22
## 3774 Resort Hotel 0
## 3775 Resort Hotel 3
## 3776 Resort Hotel 5
## 3777 Resort Hotel 5
## 3778 Resort Hotel 5
## 3779 Resort Hotel 5
## 3780 Resort Hotel 5
## 3781 Resort Hotel 20
## 3782 Resort Hotel 62
## 3783 Resort Hotel 189
## 3784 Resort Hotel 132
## 3785 Resort Hotel 13
## 3786 Resort Hotel 86
## 3787 Resort Hotel 187
## 3788 Resort Hotel 85
## 3789 Resort Hotel 93
## 3790 Resort Hotel 93
## 3791 Resort Hotel 0
## 3792 Resort Hotel 143
## 3793 Resort Hotel 223
## 3794 Resort Hotel 117
## 3795 Resort Hotel 13
## 3796 Resort Hotel 24
## 3797 Resort Hotel 2
## 3798 Resort Hotel 59
## 3799 Resort Hotel 6
## 3800 Resort Hotel 11
## 3801 Resort Hotel 19
## 3802 Resort Hotel 19
## 3803 Resort Hotel 74
## 3804 Resort Hotel 169
## 3805 Resort Hotel 200
## 3806 Resort Hotel 1
## 3807 Resort Hotel 28
## 3808 Resort Hotel 1
## 3809 Resort Hotel 28
## 3810 Resort Hotel 110
## 3811 Resort Hotel 15
## 3812 Resort Hotel 103
## 3813 Resort Hotel 87
## 3814 Resort Hotel 177
## 3815 Resort Hotel 6
## 3816 Resort Hotel 8
## 3817 Resort Hotel 99
## 3818 Resort Hotel 99
## 3819 Resort Hotel 172
## 3820 Resort Hotel 284
## 3821 Resort Hotel 122
## 3822 Resort Hotel 0
## 3823 Resort Hotel 15
## 3824 Resort Hotel 15
## 3825 Resort Hotel 15
## 3826 Resort Hotel 23
## 3827 Resort Hotel 0
## 3828 Resort Hotel 34
## 3829 Resort Hotel 1
## 3830 Resort Hotel 7
## 3831 Resort Hotel 172
## 3832 Resort Hotel 172
## 3833 Resort Hotel 12
## 3834 Resort Hotel 31
## 3835 Resort Hotel 3
## 3836 Resort Hotel 3
## 3837 Resort Hotel 34
## 3838 Resort Hotel 26
## 3839 Resort Hotel 3
## 3840 Resort Hotel 101
## 3841 Resort Hotel 3
## 3842 Resort Hotel 3
## 3843 Resort Hotel 13
## 3844 Resort Hotel 11
## 3845 Resort Hotel 1
## 3846 Resort Hotel 173
## 3847 Resort Hotel 14
## 3848 Resort Hotel 160
## 3849 Resort Hotel 154
## 3850 Resort Hotel 4
## 3851 Resort Hotel 214
## 3852 Resort Hotel 154
## 3853 Resort Hotel 5
## 3854 Resort Hotel 16
## 3855 Resort Hotel 2
## 3856 Resort Hotel 80
## 3857 Resort Hotel 33
## 3858 Resort Hotel 33
## 3859 Resort Hotel 185
## 3860 Resort Hotel 1
## 3861 Resort Hotel 48
## 3862 Resort Hotel 157
## 3863 Resort Hotel 15
## 3864 Resort Hotel 22
## 3865 Resort Hotel 3
## 3866 Resort Hotel 3
## 3867 Resort Hotel 0
## 3868 Resort Hotel 13
## 3869 Resort Hotel 11
## 3870 Resort Hotel 28
## 3871 Resort Hotel 101
## 3872 Resort Hotel 202
## 3873 Resort Hotel 133
## 3874 Resort Hotel 4
## 3875 Resort Hotel 116
## 3876 Resort Hotel 100
## 3877 Resort Hotel 97
## 3878 Resort Hotel 39
## 3879 Resort Hotel 46
## 3880 Resort Hotel 46
## 3881 Resort Hotel 20
## 3882 Resort Hotel 142
## 3883 Resort Hotel 17
## 3884 Resort Hotel 26
## 3885 Resort Hotel 83
## 3886 Resort Hotel 99
## 3887 Resort Hotel 13
## 3888 Resort Hotel 2
## 3889 Resort Hotel 18
## 3890 Resort Hotel 88
## 3891 Resort Hotel 88
## 3892 Resort Hotel 18
## 3893 Resort Hotel 18
## 3894 Resort Hotel 211
## 3895 Resort Hotel 29
## 3896 Resort Hotel 72
## 3897 Resort Hotel 72
## 3898 Resort Hotel 72
## 3899 Resort Hotel 72
## 3900 Resort Hotel 72
## 3901 Resort Hotel 72
## 3902 Resort Hotel 12
## 3903 Resort Hotel 72
## 3904 Resort Hotel 72
## 3905 Resort Hotel 72
## 3906 Resort Hotel 72
## 3907 Resort Hotel 22
## 3908 Resort Hotel 72
## 3909 Resort Hotel 72
## 3910 Resort Hotel 72
## 3911 Resort Hotel 72
## 3912 Resort Hotel 72
## 3913 Resort Hotel 72
## 3914 Resort Hotel 72
## 3915 Resort Hotel 72
## 3916 Resort Hotel 72
## 3917 Resort Hotel 72
## 3918 Resort Hotel 72
## 3919 Resort Hotel 72
## 3920 Resort Hotel 72
## 3921 Resort Hotel 155
## 3922 Resort Hotel 94
## 3923 Resort Hotel 94
## 3924 Resort Hotel 81
## 3925 Resort Hotel 168
## 3926 Resort Hotel 120
## 3927 Resort Hotel 8
## 3928 Resort Hotel 4
## 3929 Resort Hotel 111
## 3930 Resort Hotel 143
## 3931 Resort Hotel 143
## 3932 Resort Hotel 102
## 3933 Resort Hotel 102
## 3934 Resort Hotel 102
## 3935 Resort Hotel 102
## 3936 Resort Hotel 102
## 3937 Resort Hotel 102
## 3938 Resort Hotel 5
## 3939 Resort Hotel 117
## 3940 Resort Hotel 152
## 3941 Resort Hotel 32
## 3942 Resort Hotel 103
## 3943 Resort Hotel 103
## 3944 Resort Hotel 103
## 3945 Resort Hotel 103
## 3946 Resort Hotel 103
## 3947 Resort Hotel 103
## 3948 Resort Hotel 103
## 3949 Resort Hotel 103
## 3950 Resort Hotel 103
## 3951 Resort Hotel 103
## 3952 Resort Hotel 103
## 3953 Resort Hotel 103
## 3954 Resort Hotel 103
## 3955 Resort Hotel 103
## 3956 Resort Hotel 103
## 3957 Resort Hotel 103
## 3958 Resort Hotel 103
## 3959 Resort Hotel 103
## 3960 Resort Hotel 103
## 3961 Resort Hotel 312
## 3962 Resort Hotel 2
## 3963 Resort Hotel 103
## 3964 Resort Hotel 103
## 3965 Resort Hotel 39
## 3966 Resort Hotel 39
## 3967 Resort Hotel 103
## 3968 Resort Hotel 7
## 3969 Resort Hotel 64
## 3970 Resort Hotel 64
## 3971 Resort Hotel 64
## 3972 Resort Hotel 64
## 3973 Resort Hotel 64
## 3974 Resort Hotel 64
## 3975 Resort Hotel 64
## 3976 Resort Hotel 27
## 3977 Resort Hotel 64
## 3978 Resort Hotel 64
## 3979 Resort Hotel 64
## 3980 Resort Hotel 64
## 3981 Resort Hotel 64
## 3982 Resort Hotel 64
## 3983 Resort Hotel 64
## 3984 Resort Hotel 230
## 3985 Resort Hotel 0
## 3986 Resort Hotel 64
## 3987 Resort Hotel 64
## 3988 Resort Hotel 2
## 3989 Resort Hotel 88
## 3990 Resort Hotel 111
## 3991 Resort Hotel 111
## 3992 Resort Hotel 111
## 3993 Resort Hotel 112
## 3994 Resort Hotel 112
## 3995 Resort Hotel 112
## 3996 Resort Hotel 112
## 3997 Resort Hotel 112
## 3998 Resort Hotel 112
## 3999 Resort Hotel 140
## 4000 Resort Hotel 140
## 4001 Resort Hotel 140
## 4002 Resort Hotel 111
## 4003 Resort Hotel 111
## 4004 Resort Hotel 111
## 4005 Resort Hotel 112
## 4006 Resort Hotel 112
## 4007 Resort Hotel 112
## 4008 Resort Hotel 112
## 4009 Resort Hotel 112
## 4010 Resort Hotel 112
## 4011 Resort Hotel 112
## 4012 Resort Hotel 35
## 4013 Resort Hotel 140
## 4014 Resort Hotel 140
## 4015 Resort Hotel 140
## 4016 Resort Hotel 111
## 4017 Resort Hotel 111
## 4018 Resort Hotel 111
## 4019 Resort Hotel 111
## 4020 Resort Hotel 112
## 4021 Resort Hotel 112
## 4022 Resort Hotel 112
## 4023 Resort Hotel 112
## 4024 Resort Hotel 112
## 4025 Resort Hotel 112
## 4026 Resort Hotel 112
## 4027 Resort Hotel 112
## 4028 Resort Hotel 140
## 4029 Resort Hotel 140
## 4030 Resort Hotel 140
## 4031 Resort Hotel 140
## 4032 Resort Hotel 140
## 4033 Resort Hotel 112
## 4034 Resort Hotel 112
## 4035 Resort Hotel 112
## 4036 Resort Hotel 112
## 4037 Resort Hotel 112
## 4038 Resort Hotel 112
## 4039 Resort Hotel 112
## 4040 Resort Hotel 111
## 4041 Resort Hotel 111
## 4042 Resort Hotel 111
## 4043 Resort Hotel 88
## 4044 Resort Hotel 140
## 4045 Resort Hotel 140
## 4046 Resort Hotel 140
## 4047 Resort Hotel 140
## 4048 Resort Hotel 140
## 4049 Resort Hotel 111
## 4050 Resort Hotel 111
## 4051 Resort Hotel 111
## 4052 Resort Hotel 112
## 4053 Resort Hotel 112
## 4054 Resort Hotel 112
## 4055 Resort Hotel 112
## 4056 Resort Hotel 112
## 4057 Resort Hotel 112
## 4058 Resort Hotel 112
## 4059 Resort Hotel 151
## 4060 Resort Hotel 140
## 4061 Resort Hotel 140
## 4062 Resort Hotel 140
## 4063 Resort Hotel 140
## 4064 Resort Hotel 140
## 4065 Resort Hotel 88
## 4066 Resort Hotel 111
## 4067 Resort Hotel 111
## 4068 Resort Hotel 111
## 4069 Resort Hotel 112
## 4070 Resort Hotel 112
## 4071 Resort Hotel 112
## 4072 Resort Hotel 112
## 4073 Resort Hotel 112
## 4074 Resort Hotel 112
## 4075 Resort Hotel 140
## 4076 Resort Hotel 140
## 4077 Resort Hotel 25
## 4078 Resort Hotel 111
## 4079 Resort Hotel 111
## 4080 Resort Hotel 111
## 4081 Resort Hotel 112
## 4082 Resort Hotel 112
## 4083 Resort Hotel 112
## 4084 Resort Hotel 112
## 4085 Resort Hotel 112
## 4086 Resort Hotel 140
## 4087 Resort Hotel 140
## 4088 Resort Hotel 140
## 4089 Resort Hotel 88
## 4090 Resort Hotel 111
## 4091 Resort Hotel 111
## 4092 Resort Hotel 111
## 4093 Resort Hotel 112
## 4094 Resort Hotel 112
## 4095 Resort Hotel 112
## 4096 Resort Hotel 112
## 4097 Resort Hotel 112
## 4098 Resort Hotel 112
## 4099 Resort Hotel 112
## 4100 Resort Hotel 112
## 4101 Resort Hotel 140
## 4102 Resort Hotel 140
## 4103 Resort Hotel 140
## 4104 Resort Hotel 140
## 4105 Resort Hotel 7
## 4106 Resort Hotel 47
## 4107 Resort Hotel 230
## 4108 Resort Hotel 32
## 4109 Resort Hotel 1
## 4110 Resort Hotel 0
## 4111 Resort Hotel 38
## 4112 Resort Hotel 25
## 4113 Resort Hotel 14
## 4114 Resort Hotel 203
## 4115 Resort Hotel 101
## 4116 Resort Hotel 161
## 4117 Resort Hotel 20
## 4118 Resort Hotel 103
## 4119 Resort Hotel 3
## 4120 Resort Hotel 4
## 4121 Resort Hotel 18
## 4122 Resort Hotel 41
## 4123 Resort Hotel 46
## 4124 Resort Hotel 41
## 4125 Resort Hotel 72
## 4126 Resort Hotel 109
## 4127 Resort Hotel 117
## 4128 Resort Hotel 0
## 4129 Resort Hotel 200
## 4130 Resort Hotel 133
## 4131 Resort Hotel 133
## 4132 Resort Hotel 41
## 4133 Resort Hotel 192
## 4134 Resort Hotel 192
## 4135 Resort Hotel 188
## 4136 Resort Hotel 38
## 4137 Resort Hotel 118
## 4138 Resort Hotel 232
## 4139 Resort Hotel 99
## 4140 Resort Hotel 131
## 4141 Resort Hotel 53
## 4142 Resort Hotel 72
## 4143 Resort Hotel 44
## 4144 Resort Hotel 33
## 4145 Resort Hotel 14
## 4146 Resort Hotel 69
## 4147 Resort Hotel 21
## 4148 Resort Hotel 35
## 4149 Resort Hotel 2
## 4150 Resort Hotel 34
## 4151 Resort Hotel 150
## 4152 Resort Hotel 172
## 4153 Resort Hotel 150
## 4154 Resort Hotel 10
## 4155 Resort Hotel 29
## 4156 Resort Hotel 1
## 4157 Resort Hotel 5
## 4158 Resort Hotel 26
## 4159 Resort Hotel 100
## 4160 Resort Hotel 100
## 4161 Resort Hotel 55
## 4162 Resort Hotel 108
## 4163 Resort Hotel 108
## 4164 Resort Hotel 31
## 4165 Resort Hotel 38
## 4166 Resort Hotel 11
## 4167 Resort Hotel 85
## 4168 Resort Hotel 3
## 4169 Resort Hotel 24
## 4170 Resort Hotel 24
## 4171 Resort Hotel 187
## 4172 Resort Hotel 117
## 4173 Resort Hotel 117
## 4174 Resort Hotel 78
## 4175 Resort Hotel 45
## 4176 Resort Hotel 8
## 4177 Resort Hotel 9
## 4178 Resort Hotel 26
## 4179 Resort Hotel 1
## 4180 Resort Hotel 1
## 4181 Resort Hotel 16
## 4182 Resort Hotel 44
## 4183 Resort Hotel 709
## 4184 Resort Hotel 73
## 4185 Resort Hotel 73
## 4186 Resort Hotel 24
## 4187 Resort Hotel 36
## 4188 Resort Hotel 50
## 4189 Resort Hotel 74
## 4190 Resort Hotel 74
## 4191 Resort Hotel 30
## 4192 Resort Hotel 45
## 4193 Resort Hotel 74
## 4194 Resort Hotel 74
## 4195 Resort Hotel 74
## 4196 Resort Hotel 74
## 4197 Resort Hotel 74
## 4198 Resort Hotel 74
## 4199 Resort Hotel 74
## 4200 Resort Hotel 74
## 4201 Resort Hotel 74
## 4202 Resort Hotel 74
## 4203 Resort Hotel 81
## 4204 Resort Hotel 74
## 4205 Resort Hotel 74
## 4206 Resort Hotel 74
## 4207 Resort Hotel 74
## 4208 Resort Hotel 74
## 4209 Resort Hotel 74
## 4210 Resort Hotel 74
## 4211 Resort Hotel 74
## 4212 Resort Hotel 74
## 4213 Resort Hotel 74
## 4214 Resort Hotel 74
## 4215 Resort Hotel 36
## 4216 Resort Hotel 74
## 4217 Resort Hotel 74
## 4218 Resort Hotel 74
## 4219 Resort Hotel 74
## 4220 Resort Hotel 74
## 4221 Resort Hotel 74
## 4222 Resort Hotel 211
## 4223 Resort Hotel 53
## 4224 Resort Hotel 135
## 4225 Resort Hotel 53
## 4226 Resort Hotel 69
## 4227 Resort Hotel 12
## 4228 Resort Hotel 0
## 4229 Resort Hotel 123
## 4230 Resort Hotel 123
## 4231 Resort Hotel 123
## 4232 Resort Hotel 74
## 4233 Resort Hotel 44
## 4234 Resort Hotel 123
## 4235 Resort Hotel 123
## 4236 Resort Hotel 123
## 4237 Resort Hotel 123
## 4238 Resort Hotel 123
## 4239 Resort Hotel 123
## 4240 Resort Hotel 123
## 4241 Resort Hotel 123
## 4242 Resort Hotel 123
## 4243 Resort Hotel 123
## 4244 Resort Hotel 123
## 4245 Resort Hotel 123
## 4246 Resort Hotel 123
## 4247 Resort Hotel 42
## 4248 Resort Hotel 46
## 4249 Resort Hotel 74
## 4250 Resort Hotel 44
## 4251 Resort Hotel 123
## 4252 Resort Hotel 123
## 4253 Resort Hotel 123
## 4254 Resort Hotel 123
## 4255 Resort Hotel 44
## 4256 Resort Hotel 123
## 4257 Resort Hotel 123
## 4258 Resort Hotel 74
## 4259 Resort Hotel 82
## 4260 Resort Hotel 123
## 4261 Resort Hotel 123
## 4262 Resort Hotel 123
## 4263 Resort Hotel 5
## 4264 Resort Hotel 42
## 4265 Resort Hotel 120
## 4266 Resort Hotel 119
## 4267 Resort Hotel 44
## 4268 Resort Hotel 40
## 4269 Resort Hotel 41
## 4270 Resort Hotel 59
## 4271 Resort Hotel 32
## 4272 Resort Hotel 19
## 4273 Resort Hotel 28
## 4274 Resort Hotel 138
## 4275 Resort Hotel 40
## 4276 Resort Hotel 15
## 4277 Resort Hotel 144
## 4278 Resort Hotel 45
## 4279 Resort Hotel 45
## 4280 Resort Hotel 45
## 4281 Resort Hotel 45
## 4282 Resort Hotel 45
## 4283 Resort Hotel 45
## 4284 Resort Hotel 45
## 4285 Resort Hotel 33
## 4286 Resort Hotel 57
## 4287 Resort Hotel 33
## 4288 Resort Hotel 61
## 4289 Resort Hotel 0
## 4290 Resort Hotel 219
## 4291 Resort Hotel 219
## 4292 Resort Hotel 219
## 4293 Resort Hotel 118
## 4294 Resort Hotel 219
## 4295 Resort Hotel 219
## 4296 Resort Hotel 219
## 4297 Resort Hotel 219
## 4298 Resort Hotel 219
## 4299 Resort Hotel 219
## 4300 Resort Hotel 219
## 4301 Resort Hotel 219
## 4302 Resort Hotel 219
## 4303 Resort Hotel 219
## 4304 Resort Hotel 219
## 4305 Resort Hotel 219
## 4306 Resort Hotel 219
## 4307 Resort Hotel 219
## 4308 Resort Hotel 219
## 4309 Resort Hotel 219
## 4310 Resort Hotel 219
## 4311 Resort Hotel 131
## 4312 Resort Hotel 0
## 4313 Resort Hotel 7
## 4314 Resort Hotel 7
## 4315 Resort Hotel 2
## 4316 Resort Hotel 30
## 4317 Resort Hotel 0
## 4318 Resort Hotel 0
## 4319 Resort Hotel 52
## 4320 Resort Hotel 30
## 4321 Resort Hotel 0
## 4322 Resort Hotel 29
## 4323 Resort Hotel 58
## 4324 Resort Hotel 162
## 4325 Resort Hotel 162
## 4326 Resort Hotel 162
## 4327 Resort Hotel 162
## 4328 Resort Hotel 162
## 4329 Resort Hotel 162
## 4330 Resort Hotel 162
## 4331 Resort Hotel 162
## 4332 Resort Hotel 162
## 4333 Resort Hotel 162
## 4334 Resort Hotel 162
## 4335 Resort Hotel 162
## 4336 Resort Hotel 162
## 4337 Resort Hotel 162
## 4338 Resort Hotel 162
## 4339 Resort Hotel 50
## 4340 Resort Hotel 49
## 4341 Resort Hotel 49
## 4342 Resort Hotel 49
## 4343 Resort Hotel 49
## 4344 Resort Hotel 49
## 4345 Resort Hotel 38
## 4346 Resort Hotel 49
## 4347 Resort Hotel 49
## 4348 Resort Hotel 49
## 4349 Resort Hotel 49
## 4350 Resort Hotel 38
## 4351 Resort Hotel 49
## 4352 Resort Hotel 49
## 4353 Resort Hotel 19
## 4354 Resort Hotel 11
## 4355 Resort Hotel 3
## 4356 Resort Hotel 196
## 4357 Resort Hotel 196
## 4358 Resort Hotel 30
## 4359 Resort Hotel 30
## 4360 Resort Hotel 30
## 4361 Resort Hotel 30
## 4362 Resort Hotel 30
## 4363 Resort Hotel 30
## 4364 Resort Hotel 119
## 4365 Resort Hotel 67
## 4366 Resort Hotel 157
## 4367 Resort Hotel 0
## 4368 Resort Hotel 12
## 4369 Resort Hotel 190
## 4370 Resort Hotel 190
## 4371 Resort Hotel 259
## 4372 Resort Hotel 81
## 4373 Resort Hotel 81
## 4374 Resort Hotel 81
## 4375 Resort Hotel 81
## 4376 Resort Hotel 15
## 4377 Resort Hotel 81
## 4378 Resort Hotel 26
## 4379 Resort Hotel 32
## 4380 Resort Hotel 49
## 4381 Resort Hotel 6
## 4382 Resort Hotel 6
## 4383 Resort Hotel 36
## 4384 Resort Hotel 46
## 4385 Resort Hotel 46
## 4386 Resort Hotel 46
## 4387 Resort Hotel 46
## 4388 Resort Hotel 46
## 4389 Resort Hotel 46
## 4390 Resort Hotel 50
## 4391 Resort Hotel 46
## 4392 Resort Hotel 22
## 4393 Resort Hotel 22
## 4394 Resort Hotel 7
## 4395 Resort Hotel 24
## 4396 Resort Hotel 228
## 4397 Resort Hotel 51
## 4398 Resort Hotel 31
## 4399 Resort Hotel 31
## 4400 Resort Hotel 31
## 4401 Resort Hotel 31
## 4402 Resort Hotel 65
## 4403 Resort Hotel 65
## 4404 Resort Hotel 65
## 4405 Resort Hotel 65
## 4406 Resort Hotel 54
## 4407 Resort Hotel 44
## 4408 Resort Hotel 153
## 4409 Resort Hotel 153
## 4410 Resort Hotel 25
## 4411 Resort Hotel 130
## 4412 Resort Hotel 0
## 4413 Resort Hotel 45
## 4414 Resort Hotel 85
## 4415 Resort Hotel 14
## 4416 Resort Hotel 14
## 4417 Resort Hotel 145
## 4418 Resort Hotel 110
## 4419 Resort Hotel 0
## 4420 Resort Hotel 46
## 4421 Resort Hotel 1
## 4422 Resort Hotel 132
## 4423 Resort Hotel 14
## 4424 Resort Hotel 1
## 4425 Resort Hotel 9
## 4426 Resort Hotel 176
## 4427 Resort Hotel 15
## 4428 Resort Hotel 250
## 4429 Resort Hotel 3
## 4430 Resort Hotel 1
## 4431 Resort Hotel 2
## 4432 Resort Hotel 51
## 4433 Resort Hotel 30
## 4434 Resort Hotel 24
## 4435 Resort Hotel 56
## 4436 Resort Hotel 148
## 4437 Resort Hotel 66
## 4438 Resort Hotel 105
## 4439 Resort Hotel 22
## 4440 Resort Hotel 45
## 4441 Resort Hotel 7
## 4442 Resort Hotel 63
## 4443 Resort Hotel 7
## 4444 Resort Hotel 35
## 4445 Resort Hotel 133
## 4446 Resort Hotel 25
## 4447 Resort Hotel 157
## 4448 Resort Hotel 129
## 4449 Resort Hotel 167
## 4450 Resort Hotel 143
## 4451 Resort Hotel 17
## 4452 Resort Hotel 18
## 4453 Resort Hotel 1
## 4454 Resort Hotel 14
## 4455 Resort Hotel 23
## 4456 Resort Hotel 57
## 4457 Resort Hotel 45
## 4458 Resort Hotel 30
## 4459 Resort Hotel 30
## 4460 Resort Hotel 61
## 4461 Resort Hotel 30
## 4462 Resort Hotel 30
## 4463 Resort Hotel 73
## 4464 Resort Hotel 31
## 4465 Resort Hotel 197
## 4466 Resort Hotel 17
## 4467 Resort Hotel 17
## 4468 Resort Hotel 154
## 4469 Resort Hotel 166
## 4470 Resort Hotel 201
## 4471 Resort Hotel 151
## 4472 Resort Hotel 186
## 4473 Resort Hotel 201
## 4474 Resort Hotel 185
## 4475 Resort Hotel 199
## 4476 Resort Hotel 180
## 4477 Resort Hotel 201
## 4478 Resort Hotel 35
## 4479 Resort Hotel 186
## 4480 Resort Hotel 66
## 4481 Resort Hotel 23
## 4482 Resort Hotel 19
## 4483 Resort Hotel 11
## 4484 Resort Hotel 9
## 4485 Resort Hotel 20
## 4486 Resort Hotel 20
## 4487 Resort Hotel 135
## 4488 Resort Hotel 93
## 4489 Resort Hotel 19
## 4490 Resort Hotel 135
## 4491 Resort Hotel 33
## 4492 Resort Hotel 99
## 4493 Resort Hotel 34
## 4494 Resort Hotel 177
## 4495 Resort Hotel 16
## 4496 Resort Hotel 207
## 4497 Resort Hotel 202
## 4498 Resort Hotel 202
## 4499 Resort Hotel 108
## 4500 Resort Hotel 38
## 4501 Resort Hotel 18
## 4502 Resort Hotel 20
## 4503 Resort Hotel 20
## 4504 Resort Hotel 27
## 4505 Resort Hotel 18
## 4506 Resort Hotel 39
## 4507 Resort Hotel 39
## 4508 Resort Hotel 66
## 4509 Resort Hotel 194
## 4510 Resort Hotel 203
## 4511 Resort Hotel 206
## 4512 Resort Hotel 203
## 4513 Resort Hotel 18
## 4514 Resort Hotel 9
## 4515 Resort Hotel 238
## 4516 Resort Hotel 82
## 4517 Resort Hotel 238
## 4518 Resort Hotel 238
## 4519 Resort Hotel 36
## 4520 Resort Hotel 60
## 4521 Resort Hotel 140
## 4522 Resort Hotel 153
## 4523 Resort Hotel 146
## 4524 Resort Hotel 138
## 4525 Resort Hotel 50
## 4526 Resort Hotel 65
## 4527 Resort Hotel 50
## 4528 Resort Hotel 12
## 4529 Resort Hotel 41
## 4530 Resort Hotel 141
## 4531 Resort Hotel 11
## 4532 Resort Hotel 70
## 4533 Resort Hotel 162
## 4534 Resort Hotel 162
## 4535 Resort Hotel 162
## 4536 Resort Hotel 162
## 4537 Resort Hotel 136
## 4538 Resort Hotel 136
## 4539 Resort Hotel 136
## 4540 Resort Hotel 136
## 4541 Resort Hotel 136
## 4542 Resort Hotel 136
## 4543 Resort Hotel 147
## 4544 Resort Hotel 43
## 4545 Resort Hotel 69
## 4546 Resort Hotel 152
## 4547 Resort Hotel 162
## 4548 Resort Hotel 162
## 4549 Resort Hotel 162
## 4550 Resort Hotel 162
## 4551 Resort Hotel 136
## 4552 Resort Hotel 136
## 4553 Resort Hotel 136
## 4554 Resort Hotel 136
## 4555 Resort Hotel 79
## 4556 Resort Hotel 136
## 4557 Resort Hotel 136
## 4558 Resort Hotel 136
## 4559 Resort Hotel 58
## 4560 Resort Hotel 57
## 4561 Resort Hotel 59
## 4562 Resort Hotel 3
## 4563 Resort Hotel 162
## 4564 Resort Hotel 162
## 4565 Resort Hotel 136
## 4566 Resort Hotel 136
## 4567 Resort Hotel 162
## 4568 Resort Hotel 162
## 4569 Resort Hotel 162
## 4570 Resort Hotel 13
## 4571 Resort Hotel 56
## 4572 Resort Hotel 136
## 4573 Resort Hotel 136
## 4574 Resort Hotel 136
## 4575 Resort Hotel 162
## 4576 Resort Hotel 162
## 4577 Resort Hotel 162
## 4578 Resort Hotel 162
## 4579 Resort Hotel 37
## 4580 Resort Hotel 136
## 4581 Resort Hotel 136
## 4582 Resort Hotel 136
## 4583 Resort Hotel 136
## 4584 Resort Hotel 136
## 4585 Resort Hotel 162
## 4586 Resort Hotel 162
## 4587 Resort Hotel 162
## 4588 Resort Hotel 57
## 4589 Resort Hotel 136
## 4590 Resort Hotel 136
## 4591 Resort Hotel 136
## 4592 Resort Hotel 136
## 4593 Resort Hotel 162
## 4594 Resort Hotel 162
## 4595 Resort Hotel 162
## 4596 Resort Hotel 162
## 4597 Resort Hotel 162
## 4598 Resort Hotel 136
## 4599 Resort Hotel 136
## 4600 Resort Hotel 136
## 4601 Resort Hotel 136
## 4602 Resort Hotel 136
## 4603 Resort Hotel 162
## 4604 Resort Hotel 162
## 4605 Resort Hotel 106
## 4606 Resort Hotel 106
## 4607 Resort Hotel 106
## 4608 Resort Hotel 106
## 4609 Resort Hotel 106
## 4610 Resort Hotel 106
## 4611 Resort Hotel 136
## 4612 Resort Hotel 41
## 4613 Resort Hotel 106
## 4614 Resort Hotel 106
## 4615 Resort Hotel 106
## 4616 Resort Hotel 106
## 4617 Resort Hotel 106
## 4618 Resort Hotel 106
## 4619 Resort Hotel 106
## 4620 Resort Hotel 106
## 4621 Resort Hotel 77
## 4622 Resort Hotel 106
## 4623 Resort Hotel 106
## 4624 Resort Hotel 106
## 4625 Resort Hotel 106
## 4626 Resort Hotel 106
## 4627 Resort Hotel 106
## 4628 Resort Hotel 36
## 4629 Resort Hotel 106
## 4630 Resort Hotel 106
## 4631 Resort Hotel 106
## 4632 Resort Hotel 106
## 4633 Resort Hotel 106
## 4634 Resort Hotel 106
## 4635 Resort Hotel 69
## 4636 Resort Hotel 106
## 4637 Resort Hotel 106
## 4638 Resort Hotel 106
## 4639 Resort Hotel 106
## 4640 Resort Hotel 63
## 4641 Resort Hotel 106
## 4642 Resort Hotel 106
## 4643 Resort Hotel 106
## 4644 Resort Hotel 106
## 4645 Resort Hotel 106
## 4646 Resort Hotel 106
## 4647 Resort Hotel 162
## 4648 Resort Hotel 106
## 4649 Resort Hotel 106
## 4650 Resort Hotel 106
## 4651 Resort Hotel 106
## 4652 Resort Hotel 69
## 4653 Resort Hotel 66
## 4654 Resort Hotel 5
## 4655 Resort Hotel 67
## 4656 Resort Hotel 127
## 4657 Resort Hotel 192
## 4658 Resort Hotel 199
## 4659 Resort Hotel 199
## 4660 Resort Hotel 192
## 4661 Resort Hotel 49
## 4662 Resort Hotel 64
## 4663 Resort Hotel 142
## 4664 Resort Hotel 60
## 4665 Resort Hotel 149
## 4666 Resort Hotel 40
## 4667 Resort Hotel 40
## 4668 Resort Hotel 58
## 4669 Resort Hotel 33
## 4670 Resort Hotel 110
## 4671 Resort Hotel 78
## 4672 Resort Hotel 10
## 4673 Resort Hotel 21
## 4674 Resort Hotel 24
## 4675 Resort Hotel 148
## 4676 Resort Hotel 92
## 4677 Resort Hotel 20
## 4678 Resort Hotel 108
## 4679 Resort Hotel 67
## 4680 Resort Hotel 143
## 4681 Resort Hotel 62
## 4682 Resort Hotel 143
## 4683 Resort Hotel 62
## 4684 Resort Hotel 20
## 4685 Resort Hotel 22
## 4686 Resort Hotel 45
## 4687 Resort Hotel 45
## 4688 Resort Hotel 76
## 4689 Resort Hotel 38
## 4690 Resort Hotel 73
## 4691 Resort Hotel 74
## 4692 Resort Hotel 79
## 4693 Resort Hotel 66
## 4694 Resort Hotel 66
## 4695 Resort Hotel 66
## 4696 Resort Hotel 24
## 4697 Resort Hotel 24
## 4698 Resort Hotel 147
## 4699 Resort Hotel 2
## 4700 Resort Hotel 147
## 4701 Resort Hotel 147
## 4702 Resort Hotel 24
## 4703 Resort Hotel 147
## 4704 Resort Hotel 147
## 4705 Resort Hotel 147
## 4706 Resort Hotel 2
## 4707 Resort Hotel 2
## 4708 Resort Hotel 147
## 4709 Resort Hotel 147
## 4710 Resort Hotel 24
## 4711 Resort Hotel 147
## 4712 Resort Hotel 29
## 4713 Resort Hotel 29
## 4714 Resort Hotel 53
## 4715 Resort Hotel 167
## 4716 Resort Hotel 36
## 4717 Resort Hotel 36
## 4718 Resort Hotel 43
## 4719 Resort Hotel 2
## 4720 Resort Hotel 2
## 4721 Resort Hotel 168
## 4722 Resort Hotel 168
## 4723 Resort Hotel 168
## 4724 Resort Hotel 168
## 4725 Resort Hotel 168
## 4726 Resort Hotel 168
## 4727 Resort Hotel 168
## 4728 Resort Hotel 168
## 4729 Resort Hotel 168
## 4730 Resort Hotel 156
## 4731 Resort Hotel 168
## 4732 Resort Hotel 168
## 4733 Resort Hotel 168
## 4734 Resort Hotel 168
## 4735 Resort Hotel 123
## 4736 Resort Hotel 205
## 4737 Resort Hotel 169
## 4738 Resort Hotel 169
## 4739 Resort Hotel 169
## 4740 Resort Hotel 169
## 4741 Resort Hotel 169
## 4742 Resort Hotel 224
## 4743 Resort Hotel 169
## 4744 Resort Hotel 169
## 4745 Resort Hotel 169
## 4746 Resort Hotel 169
## 4747 Resort Hotel 169
## 4748 Resort Hotel 169
## 4749 Resort Hotel 169
## 4750 Resort Hotel 169
## 4751 Resort Hotel 169
## 4752 Resort Hotel 169
## 4753 Resort Hotel 169
## 4754 Resort Hotel 169
## 4755 Resort Hotel 169
## 4756 Resort Hotel 169
## 4757 Resort Hotel 169
## 4758 Resort Hotel 169
## 4759 Resort Hotel 169
## 4760 Resort Hotel 169
## 4761 Resort Hotel 169
## 4762 Resort Hotel 169
## 4763 Resort Hotel 169
## 4764 Resort Hotel 169
## 4765 Resort Hotel 169
## 4766 Resort Hotel 169
## 4767 Resort Hotel 169
## 4768 Resort Hotel 169
## 4769 Resort Hotel 169
## 4770 Resort Hotel 169
## 4771 Resort Hotel 169
## 4772 Resort Hotel 169
## 4773 Resort Hotel 169
## 4774 Resort Hotel 169
## 4775 Resort Hotel 169
## 4776 Resort Hotel 169
## 4777 Resort Hotel 169
## 4778 Resort Hotel 169
## 4779 Resort Hotel 169
## 4780 Resort Hotel 169
## 4781 Resort Hotel 169
## 4782 Resort Hotel 169
## 4783 Resort Hotel 169
## 4784 Resort Hotel 169
## 4785 Resort Hotel 169
## 4786 Resort Hotel 169
## 4787 Resort Hotel 169
## 4788 Resort Hotel 169
## 4789 Resort Hotel 169
## 4790 Resort Hotel 169
## 4791 Resort Hotel 169
## 4792 Resort Hotel 169
## 4793 Resort Hotel 169
## 4794 Resort Hotel 169
## 4795 Resort Hotel 169
## 4796 Resort Hotel 169
## 4797 Resort Hotel 37
## 4798 Resort Hotel 169
## 4799 Resort Hotel 169
## 4800 Resort Hotel 169
## 4801 Resort Hotel 91
## 4802 Resort Hotel 76
## 4803 Resort Hotel 45
## 4804 Resort Hotel 31
## 4805 Resort Hotel 0
## 4806 Resort Hotel 144
## 4807 Resort Hotel 144
## 4808 Resort Hotel 144
## 4809 Resort Hotel 163
## 4810 Resort Hotel 38
## 4811 Resort Hotel 175
## 4812 Resort Hotel 39
## 4813 Resort Hotel 32
## 4814 Resort Hotel 222
## 4815 Resort Hotel 59
## 4816 Resort Hotel 222
## 4817 Resort Hotel 32
## 4818 Resort Hotel 0
## 4819 Resort Hotel 60
## 4820 Resort Hotel 1
## 4821 Resort Hotel 33
## 4822 Resort Hotel 33
## 4823 Resort Hotel 61
## 4824 Resort Hotel 182
## 4825 Resort Hotel 171
## 4826 Resort Hotel 171
## 4827 Resort Hotel 171
## 4828 Resort Hotel 171
## 4829 Resort Hotel 171
## 4830 Resort Hotel 171
## 4831 Resort Hotel 171
## 4832 Resort Hotel 171
## 4833 Resort Hotel 171
## 4834 Resort Hotel 171
## 4835 Resort Hotel 171
## 4836 Resort Hotel 27
## 4837 Resort Hotel 171
## 4838 Resort Hotel 171
## 4839 Resort Hotel 171
## 4840 Resort Hotel 171
## 4841 Resort Hotel 171
## 4842 Resort Hotel 171
## 4843 Resort Hotel 171
## 4844 Resort Hotel 171
## 4845 Resort Hotel 171
## 4846 Resort Hotel 171
## 4847 Resort Hotel 171
## 4848 Resort Hotel 171
## 4849 Resort Hotel 171
## 4850 Resort Hotel 171
## 4851 Resort Hotel 171
## 4852 Resort Hotel 139
## 4853 Resort Hotel 171
## 4854 Resort Hotel 171
## 4855 Resort Hotel 171
## 4856 Resort Hotel 171
## 4857 Resort Hotel 171
## 4858 Resort Hotel 171
## 4859 Resort Hotel 171
## 4860 Resort Hotel 171
## 4861 Resort Hotel 171
## 4862 Resort Hotel 171
## 4863 Resort Hotel 171
## 4864 Resort Hotel 171
## 4865 Resort Hotel 171
## 4866 Resort Hotel 171
## 4867 Resort Hotel 171
## 4868 Resort Hotel 42
## 4869 Resort Hotel 171
## 4870 Resort Hotel 27
## 4871 Resort Hotel 116
## 4872 Resort Hotel 116
## 4873 Resort Hotel 116
## 4874 Resort Hotel 116
## 4875 Resort Hotel 116
## 4876 Resort Hotel 116
## 4877 Resort Hotel 116
## 4878 Resort Hotel 86
## 4879 Resort Hotel 83
## 4880 Resort Hotel 116
## 4881 Resort Hotel 116
## 4882 Resort Hotel 116
## 4883 Resort Hotel 186
## 4884 Resort Hotel 40
## 4885 Resort Hotel 40
## 4886 Resort Hotel 40
## 4887 Resort Hotel 200
## 4888 Resort Hotel 200
## 4889 Resort Hotel 36
## 4890 Resort Hotel 85
## 4891 Resort Hotel 85
## 4892 Resort Hotel 85
## 4893 Resort Hotel 85
## 4894 Resort Hotel 85
## 4895 Resort Hotel 85
## 4896 Resort Hotel 85
## 4897 Resort Hotel 85
## 4898 Resort Hotel 31
## 4899 Resort Hotel 85
## 4900 Resort Hotel 85
## 4901 Resort Hotel 85
## 4902 Resort Hotel 85
## 4903 Resort Hotel 85
## 4904 Resort Hotel 23
## 4905 Resort Hotel 85
## 4906 Resort Hotel 85
## 4907 Resort Hotel 85
## 4908 Resort Hotel 85
## 4909 Resort Hotel 31
## 4910 Resort Hotel 21
## 4911 Resort Hotel 210
## 4912 Resort Hotel 26
## 4913 Resort Hotel 3
## 4914 Resort Hotel 15
## 4915 Resort Hotel 15
## 4916 Resort Hotel 26
## 4917 Resort Hotel 65
## 4918 Resort Hotel 149
## 4919 Resort Hotel 46
## 4920 Resort Hotel 46
## 4921 Resort Hotel 46
## 4922 Resort Hotel 22
## 4923 Resort Hotel 10
## 4924 Resort Hotel 10
## 4925 Resort Hotel 84
## 4926 Resort Hotel 37
## 4927 Resort Hotel 121
## 4928 Resort Hotel 121
## 4929 Resort Hotel 121
## 4930 Resort Hotel 121
## 4931 Resort Hotel 74
## 4932 Resort Hotel 121
## 4933 Resort Hotel 121
## 4934 Resort Hotel 121
## 4935 Resort Hotel 121
## 4936 Resort Hotel 121
## 4937 Resort Hotel 121
## 4938 Resort Hotel 121
## 4939 Resort Hotel 121
## 4940 Resort Hotel 121
## 4941 Resort Hotel 121
## 4942 Resort Hotel 72
## 4943 Resort Hotel 15
## 4944 Resort Hotel 27
## 4945 Resort Hotel 32
## 4946 Resort Hotel 190
## 4947 Resort Hotel 190
## 4948 Resort Hotel 275
## 4949 Resort Hotel 275
## 4950 Resort Hotel 275
## 4951 Resort Hotel 275
## 4952 Resort Hotel 275
## 4953 Resort Hotel 275
## 4954 Resort Hotel 275
## 4955 Resort Hotel 190
## 4956 Resort Hotel 275
## 4957 Resort Hotel 275
## 4958 Resort Hotel 275
## 4959 Resort Hotel 275
## 4960 Resort Hotel 275
## 4961 Resort Hotel 275
## 4962 Resort Hotel 190
## 4963 Resort Hotel 190
## 4964 Resort Hotel 275
## 4965 Resort Hotel 275
## 4966 Resort Hotel 275
## 4967 Resort Hotel 275
## 4968 Resort Hotel 52
## 4969 Resort Hotel 0
## 4970 Resort Hotel 79
## 4971 Resort Hotel 212
## 4972 Resort Hotel 212
## 4973 Resort Hotel 212
## 4974 Resort Hotel 212
## 4975 Resort Hotel 212
## 4976 Resort Hotel 214
## 4977 Resort Hotel 212
## 4978 Resort Hotel 212
## 4979 Resort Hotel 212
## 4980 Resort Hotel 212
## 4981 Resort Hotel 212
## 4982 Resort Hotel 212
## 4983 Resort Hotel 212
## 4984 Resort Hotel 212
## 4985 Resort Hotel 212
## 4986 Resort Hotel 212
## 4987 Resort Hotel 212
## 4988 Resort Hotel 52
## 4989 Resort Hotel 35
## 4990 Resort Hotel 28
## 4991 Resort Hotel 68
## 4992 Resort Hotel 38
## 4993 Resort Hotel 66
## 4994 Resort Hotel 214
## 4995 Resort Hotel 212
## 4996 Resort Hotel 212
## 4997 Resort Hotel 212
## 4998 Resort Hotel 212
## 4999 Resort Hotel 212
## 5000 Resort Hotel 212
## 5001 Resort Hotel 212
## 5002 Resort Hotel 187
## 5003 Resort Hotel 212
## 5004 Resort Hotel 212
## 5005 Resort Hotel 168
## 5006 Resort Hotel 168
## 5007 Resort Hotel 168
## 5008 Resort Hotel 168
## 5009 Resort Hotel 168
## 5010 Resort Hotel 168
## 5011 Resort Hotel 168
## 5012 Resort Hotel 168
## 5013 Resort Hotel 168
## 5014 Resort Hotel 168
## 5015 Resort Hotel 168
## 5016 Resort Hotel 168
## 5017 Resort Hotel 168
## 5018 Resort Hotel 168
## 5019 Resort Hotel 168
## 5020 Resort Hotel 168
## 5021 Resort Hotel 168
## 5022 Resort Hotel 168
## 5023 Resort Hotel 168
## 5024 Resort Hotel 168
## 5025 Resort Hotel 168
## 5026 Resort Hotel 168
## 5027 Resort Hotel 168
## 5028 Resort Hotel 168
## 5029 Resort Hotel 168
## 5030 Resort Hotel 192
## 5031 Resort Hotel 197
## 5032 Resort Hotel 229
## 5033 Resort Hotel 78
## 5034 Resort Hotel 78
## 5035 Resort Hotel 35
## 5036 Resort Hotel 26
## 5037 Resort Hotel 27
## 5038 Resort Hotel 30
## 5039 Resort Hotel 21
## 5040 Resort Hotel 9
## 5041 Resort Hotel 10
## 5042 Resort Hotel 164
## 5043 Resort Hotel 15
## 5044 Resort Hotel 164
## 5045 Resort Hotel 164
## 5046 Resort Hotel 164
## 5047 Resort Hotel 183
## 5048 Resort Hotel 183
## 5049 Resort Hotel 183
## 5050 Resort Hotel 183
## 5051 Resort Hotel 183
## 5052 Resort Hotel 183
## 5053 Resort Hotel 183
## 5054 Resort Hotel 183
## 5055 Resort Hotel 183
## 5056 Resort Hotel 183
## 5057 Resort Hotel 183
## 5058 Resort Hotel 183
## 5059 Resort Hotel 183
## 5060 Resort Hotel 183
## 5061 Resort Hotel 183
## 5062 Resort Hotel 183
## 5063 Resort Hotel 183
## 5064 Resort Hotel 183
## 5065 Resort Hotel 183
## 5066 Resort Hotel 183
## 5067 Resort Hotel 183
## 5068 Resort Hotel 183
## 5069 Resort Hotel 183
## 5070 Resort Hotel 183
## 5071 Resort Hotel 183
## 5072 Resort Hotel 183
## 5073 Resort Hotel 183
## 5074 Resort Hotel 183
## 5075 Resort Hotel 183
## 5076 Resort Hotel 183
## 5077 Resort Hotel 183
## 5078 Resort Hotel 183
## 5079 Resort Hotel 183
## 5080 Resort Hotel 183
## 5081 Resort Hotel 183
## 5082 Resort Hotel 183
## 5083 Resort Hotel 183
## 5084 Resort Hotel 183
## 5085 Resort Hotel 183
## 5086 Resort Hotel 183
## 5087 Resort Hotel 183
## 5088 Resort Hotel 183
## 5089 Resort Hotel 169
## 5090 Resort Hotel 169
## 5091 Resort Hotel 34
## 5092 Resort Hotel 232
## 5093 Resort Hotel 192
## 5094 Resort Hotel 51
## 5095 Resort Hotel 30
## 5096 Resort Hotel 200
## 5097 Resort Hotel 82
## 5098 Resort Hotel 218
## 5099 Resort Hotel 54
## 5100 Resort Hotel 89
## 5101 Resort Hotel 206
## 5102 Resort Hotel 53
## 5103 Resort Hotel 185
## 5104 Resort Hotel 185
## 5105 Resort Hotel 185
## 5106 Resort Hotel 185
## 5107 Resort Hotel 185
## 5108 Resort Hotel 185
## 5109 Resort Hotel 185
## 5110 Resort Hotel 185
## 5111 Resort Hotel 185
## 5112 Resort Hotel 185
## 5113 Resort Hotel 185
## 5114 Resort Hotel 185
## 5115 Resort Hotel 185
## 5116 Resort Hotel 185
## 5117 Resort Hotel 185
## 5118 Resort Hotel 185
## 5119 Resort Hotel 185
## 5120 Resort Hotel 185
## 5121 Resort Hotel 185
## 5122 Resort Hotel 185
## 5123 Resort Hotel 185
## 5124 Resort Hotel 185
## 5125 Resort Hotel 185
## 5126 Resort Hotel 185
## 5127 Resort Hotel 185
## 5128 Resort Hotel 185
## 5129 Resort Hotel 185
## 5130 Resort Hotel 185
## 5131 Resort Hotel 185
## 5132 Resort Hotel 185
## 5133 Resort Hotel 185
## 5134 Resort Hotel 185
## 5135 Resort Hotel 185
## 5136 Resort Hotel 185
## 5137 Resort Hotel 185
## 5138 Resort Hotel 185
## 5139 Resort Hotel 185
## 5140 Resort Hotel 185
## 5141 Resort Hotel 185
## 5142 Resort Hotel 185
## 5143 Resort Hotel 185
## 5144 Resort Hotel 34
## 5145 Resort Hotel 49
## 5146 Resort Hotel 110
## 5147 Resort Hotel 128
## 5148 Resort Hotel 114
## 5149 Resort Hotel 97
## 5150 Resort Hotel 37
## 5151 Resort Hotel 172
## 5152 Resort Hotel 172
## 5153 Resort Hotel 172
## 5154 Resort Hotel 172
## 5155 Resort Hotel 172
## 5156 Resort Hotel 172
## 5157 Resort Hotel 215
## 5158 Resort Hotel 22
## 5159 Resort Hotel 215
## 5160 Resort Hotel 32
## 5161 Resort Hotel 32
## 5162 Resort Hotel 162
## 5163 Resort Hotel 92
## 5164 Resort Hotel 40
## 5165 Resort Hotel 208
## 5166 Resort Hotel 208
## 5167 Resort Hotel 32
## 5168 Resort Hotel 32
## 5169 Resort Hotel 133
## 5170 Resort Hotel 208
## 5171 Resort Hotel 91
## 5172 Resort Hotel 32
## 5173 Resort Hotel 32
## 5174 Resort Hotel 32
## 5175 Resort Hotel 32
## 5176 Resort Hotel 208
## 5177 Resort Hotel 208
## 5178 Resort Hotel 32
## 5179 Resort Hotel 32
## 5180 Resort Hotel 96
## 5181 Resort Hotel 208
## 5182 Resort Hotel 208
## 5183 Resort Hotel 208
## 5184 Resort Hotel 32
## 5185 Resort Hotel 32
## 5186 Resort Hotel 208
## 5187 Resort Hotel 208
## 5188 Resort Hotel 208
## 5189 Resort Hotel 208
## 5190 Resort Hotel 56
## 5191 Resort Hotel 90
## 5192 Resort Hotel 0
## 5193 Resort Hotel 50
## 5194 Resort Hotel 28
## 5195 Resort Hotel 6
## 5196 Resort Hotel 66
## 5197 Resort Hotel 66
## 5198 Resort Hotel 31
## 5199 Resort Hotel 206
## 5200 Resort Hotel 206
## 5201 Resort Hotel 100
## 5202 Resort Hotel 116
## 5203 Resort Hotel 168
## 5204 Resort Hotel 93
## 5205 Resort Hotel 57
## 5206 Resort Hotel 191
## 5207 Resort Hotel 191
## 5208 Resort Hotel 191
## 5209 Resort Hotel 191
## 5210 Resort Hotel 191
## 5211 Resort Hotel 191
## 5212 Resort Hotel 191
## 5213 Resort Hotel 191
## 5214 Resort Hotel 191
## 5215 Resort Hotel 191
## 5216 Resort Hotel 191
## 5217 Resort Hotel 191
## 5218 Resort Hotel 191
## 5219 Resort Hotel 191
## 5220 Resort Hotel 191
## 5221 Resort Hotel 191
## 5222 Resort Hotel 191
## 5223 Resort Hotel 191
## 5224 Resort Hotel 191
## 5225 Resort Hotel 92
## 5226 Resort Hotel 191
## 5227 Resort Hotel 191
## 5228 Resort Hotel 191
## 5229 Resort Hotel 181
## 5230 Resort Hotel 191
## 5231 Resort Hotel 191
## 5232 Resort Hotel 191
## 5233 Resort Hotel 7
## 5234 Resort Hotel 191
## 5235 Resort Hotel 191
## 5236 Resort Hotel 191
## 5237 Resort Hotel 191
## 5238 Resort Hotel 83
## 5239 Resort Hotel 83
## 5240 Resort Hotel 83
## 5241 Resort Hotel 83
## 5242 Resort Hotel 83
## 5243 Resort Hotel 83
## 5244 Resort Hotel 42
## 5245 Resort Hotel 83
## 5246 Resort Hotel 83
## 5247 Resort Hotel 83
## 5248 Resort Hotel 80
## 5249 Resort Hotel 83
## 5250 Resort Hotel 83
## 5251 Resort Hotel 83
## 5252 Resort Hotel 41
## 5253 Resort Hotel 83
## 5254 Resort Hotel 83
## 5255 Resort Hotel 83
## 5256 Resort Hotel 83
## 5257 Resort Hotel 83
## 5258 Resort Hotel 25
## 5259 Resort Hotel 35
## 5260 Resort Hotel 197
## 5261 Resort Hotel 106
## 5262 Resort Hotel 61
## 5263 Resort Hotel 52
## 5264 Resort Hotel 27
## 5265 Resort Hotel 36
## 5266 Resort Hotel 21
## 5267 Resort Hotel 98
## 5268 Resort Hotel 106
## 5269 Resort Hotel 17
## 5270 Resort Hotel 229
## 5271 Resort Hotel 191
## 5272 Resort Hotel 218
## 5273 Resort Hotel 80
## 5274 Resort Hotel 80
## 5275 Resort Hotel 222
## 5276 Resort Hotel 103
## 5277 Resort Hotel 95
## 5278 Resort Hotel 95
## 5279 Resort Hotel 95
## 5280 Resort Hotel 95
## 5281 Resort Hotel 9
## 5282 Resort Hotel 143
## 5283 Resort Hotel 143
## 5284 Resort Hotel 143
## 5285 Resort Hotel 143
## 5286 Resort Hotel 143
## 5287 Resort Hotel 143
## 5288 Resort Hotel 62
## 5289 Resort Hotel 143
## 5290 Resort Hotel 143
## 5291 Resort Hotel 143
## 5292 Resort Hotel 143
## 5293 Resort Hotel 143
## 5294 Resort Hotel 143
## 5295 Resort Hotel 143
## 5296 Resort Hotel 143
## 5297 Resort Hotel 143
## 5298 Resort Hotel 143
## 5299 Resort Hotel 143
## 5300 Resort Hotel 143
## 5301 Resort Hotel 143
## 5302 Resort Hotel 143
## 5303 Resort Hotel 143
## 5304 Resort Hotel 143
## 5305 Resort Hotel 143
## 5306 Resort Hotel 143
## 5307 Resort Hotel 143
## 5308 Resort Hotel 46
## 5309 Resort Hotel 42
## 5310 Resort Hotel 89
## 5311 Resort Hotel 167
## 5312 Resort Hotel 72
## 5313 Resort Hotel 98
## 5314 Resort Hotel 9
## 5315 Resort Hotel 53
## 5316 Resort Hotel 138
## 5317 Resort Hotel 138
## 5318 Resort Hotel 138
## 5319 Resort Hotel 138
## 5320 Resort Hotel 138
## 5321 Resort Hotel 138
## 5322 Resort Hotel 138
## 5323 Resort Hotel 138
## 5324 Resort Hotel 138
## 5325 Resort Hotel 138
## 5326 Resort Hotel 138
## 5327 Resort Hotel 138
## 5328 Resort Hotel 138
## 5329 Resort Hotel 13
## 5330 Resort Hotel 138
## 5331 Resort Hotel 138
## 5332 Resort Hotel 138
## 5333 Resort Hotel 138
## 5334 Resort Hotel 138
## 5335 Resort Hotel 138
## 5336 Resort Hotel 138
## 5337 Resort Hotel 18
## 5338 Resort Hotel 110
## 5339 Resort Hotel 27
## 5340 Resort Hotel 56
## 5341 Resort Hotel 13
## 5342 Resort Hotel 93
## 5343 Resort Hotel 93
## 5344 Resort Hotel 93
## 5345 Resort Hotel 13
## 5346 Resort Hotel 56
## 5347 Resort Hotel 3
## 5348 Resort Hotel 7
## 5349 Resort Hotel 189
## 5350 Resort Hotel 189
## 5351 Resort Hotel 189
## 5352 Resort Hotel 189
## 5353 Resort Hotel 189
## 5354 Resort Hotel 189
## 5355 Resort Hotel 189
## 5356 Resort Hotel 189
## 5357 Resort Hotel 189
## 5358 Resort Hotel 189
## 5359 Resort Hotel 189
## 5360 Resort Hotel 189
## 5361 Resort Hotel 189
## 5362 Resort Hotel 189
## 5363 Resort Hotel 189
## 5364 Resort Hotel 189
## 5365 Resort Hotel 189
## 5366 Resort Hotel 189
## 5367 Resort Hotel 27
## 5368 Resort Hotel 53
## 5369 Resort Hotel 11
## 5370 Resort Hotel 26
## 5371 Resort Hotel 53
## 5372 Resort Hotel 179
## 5373 Resort Hotel 6
## 5374 Resort Hotel 6
## 5375 Resort Hotel 179
## 5376 Resort Hotel 12
## 5377 Resort Hotel 12
## 5378 Resort Hotel 12
## 5379 Resort Hotel 89
## 5380 Resort Hotel 12
## 5381 Resort Hotel 12
## 5382 Resort Hotel 12
## 5383 Resort Hotel 91
## 5384 Resort Hotel 209
## 5385 Resort Hotel 97
## 5386 Resort Hotel 200
## 5387 Resort Hotel 66
## 5388 Resort Hotel 15
## 5389 Resort Hotel 27
## 5390 Resort Hotel 113
## 5391 Resort Hotel 113
## 5392 Resort Hotel 168
## 5393 Resort Hotel 168
## 5394 Resort Hotel 168
## 5395 Resort Hotel 168
## 5396 Resort Hotel 168
## 5397 Resort Hotel 168
## 5398 Resort Hotel 168
## 5399 Resort Hotel 168
## 5400 Resort Hotel 168
## 5401 Resort Hotel 206
## 5402 Resort Hotel 168
## 5403 Resort Hotel 168
## 5404 Resort Hotel 168
## 5405 Resort Hotel 168
## 5406 Resort Hotel 168
## 5407 Resort Hotel 168
## 5408 Resort Hotel 43
## 5409 Resort Hotel 168
## 5410 Resort Hotel 168
## 5411 Resort Hotel 168
## 5412 Resort Hotel 168
## 5413 Resort Hotel 168
## 5414 Resort Hotel 168
## 5415 Resort Hotel 168
## 5416 Resort Hotel 168
## 5417 Resort Hotel 168
## 5418 Resort Hotel 41
## 5419 Resort Hotel 14
## 5420 Resort Hotel 1
## 5421 Resort Hotel 0
## 5422 Resort Hotel 1
## 5423 Resort Hotel 7
## 5424 Resort Hotel 65
## 5425 Resort Hotel 13
## 5426 Resort Hotel 114
## 5427 Resort Hotel 34
## 5428 Resort Hotel 25
## 5429 Resort Hotel 26
## 5430 Resort Hotel 102
## 5431 Resort Hotel 50
## 5432 Resort Hotel 47
## 5433 Resort Hotel 199
## 5434 Resort Hotel 114
## 5435 Resort Hotel 101
## 5436 Resort Hotel 31
## 5437 Resort Hotel 116
## 5438 Resort Hotel 29
## 5439 Resort Hotel 108
## 5440 Resort Hotel 108
## 5441 Resort Hotel 108
## 5442 Resort Hotel 108
## 5443 Resort Hotel 52
## 5444 Resort Hotel 108
## 5445 Resort Hotel 108
## 5446 Resort Hotel 108
## 5447 Resort Hotel 147
## 5448 Resort Hotel 108
## 5449 Resort Hotel 108
## 5450 Resort Hotel 10
## 5451 Resort Hotel 108
## 5452 Resort Hotel 147
## 5453 Resort Hotel 108
## 5454 Resort Hotel 101
## 5455 Resort Hotel 87
## 5456 Resort Hotel 87
## 5457 Resort Hotel 101
## 5458 Resort Hotel 37
## 5459 Resort Hotel 87
## 5460 Resort Hotel 87
## 5461 Resort Hotel 87
## 5462 Resort Hotel 87
## 5463 Resort Hotel 87
## 5464 Resort Hotel 101
## 5465 Resort Hotel 101
## 5466 Resort Hotel 101
## 5467 Resort Hotel 87
## 5468 Resort Hotel 87
## 5469 Resort Hotel 87
## 5470 Resort Hotel 87
## 5471 Resort Hotel 87
## 5472 Resort Hotel 87
## 5473 Resort Hotel 87
## 5474 Resort Hotel 37
## 5475 Resort Hotel 87
## 5476 Resort Hotel 87
## 5477 Resort Hotel 76
## 5478 Resort Hotel 78
## 5479 Resort Hotel 157
## 5480 Resort Hotel 157
## 5481 Resort Hotel 157
## 5482 Resort Hotel 0
## 5483 Resort Hotel 14
## 5484 Resort Hotel 3
## 5485 Resort Hotel 19
## 5486 Resort Hotel 0
## 5487 Resort Hotel 32
## 5488 Resort Hotel 197
## 5489 Resort Hotel 39
## 5490 Resort Hotel 19
## 5491 Resort Hotel 31
## 5492 Resort Hotel 197
## 5493 Resort Hotel 197
## 5494 Resort Hotel 52
## 5495 Resort Hotel 197
## 5496 Resort Hotel 18
## 5497 Resort Hotel 8
## 5498 Resort Hotel 45
## 5499 Resort Hotel 197
## 5500 Resort Hotel 197
## 5501 Resort Hotel 197
## 5502 Resort Hotel 197
## 5503 Resort Hotel 31
## 5504 Resort Hotel 19
## 5505 Resort Hotel 178
## 5506 Resort Hotel 197
## 5507 Resort Hotel 22
## 5508 Resort Hotel 187
## 5509 Resort Hotel 187
## 5510 Resort Hotel 187
## 5511 Resort Hotel 32
## 5512 Resort Hotel 171
## 5513 Resort Hotel 55
## 5514 Resort Hotel 32
## 5515 Resort Hotel 246
## 5516 Resort Hotel 173
## 5517 Resort Hotel 206
## 5518 Resort Hotel 255
## 5519 Resort Hotel 171
## 5520 Resort Hotel 171
## 5521 Resort Hotel 171
## 5522 Resort Hotel 36
## 5523 Resort Hotel 14
## 5524 Resort Hotel 76
## 5525 Resort Hotel 32
## 5526 Resort Hotel 232
## 5527 Resort Hotel 229
## 5528 Resort Hotel 186
## 5529 Resort Hotel 0
## 5530 Resort Hotel 3
## 5531 Resort Hotel 199
## 5532 Resort Hotel 199
## 5533 Resort Hotel 199
## 5534 Resort Hotel 199
## 5535 Resort Hotel 199
## 5536 Resort Hotel 199
## 5537 Resort Hotel 199
## 5538 Resort Hotel 199
## 5539 Resort Hotel 199
## 5540 Resort Hotel 199
## 5541 Resort Hotel 199
## 5542 Resort Hotel 199
## 5543 Resort Hotel 199
## 5544 Resort Hotel 199
## 5545 Resort Hotel 199
## 5546 Resort Hotel 199
## 5547 Resort Hotel 199
## 5548 Resort Hotel 199
## 5549 Resort Hotel 199
## 5550 Resort Hotel 199
## 5551 Resort Hotel 199
## 5552 Resort Hotel 199
## 5553 Resort Hotel 199
## 5554 Resort Hotel 199
## 5555 Resort Hotel 199
## 5556 Resort Hotel 199
## 5557 Resort Hotel 199
## 5558 Resort Hotel 199
## 5559 Resort Hotel 199
## 5560 Resort Hotel 199
## 5561 Resort Hotel 199
## 5562 Resort Hotel 199
## 5563 Resort Hotel 199
## 5564 Resort Hotel 199
## 5565 Resort Hotel 199
## 5566 Resort Hotel 199
## 5567 Resort Hotel 199
## 5568 Resort Hotel 199
## 5569 Resort Hotel 199
## 5570 Resort Hotel 199
## 5571 Resort Hotel 199
## 5572 Resort Hotel 199
## 5573 Resort Hotel 89
## 5574 Resort Hotel 6
## 5575 Resort Hotel 45
## 5576 Resort Hotel 5
## 5577 Resort Hotel 215
## 5578 Resort Hotel 203
## 5579 Resort Hotel 80
## 5580 Resort Hotel 200
## 5581 Resort Hotel 187
## 5582 Resort Hotel 68
## 5583 Resort Hotel 127
## 5584 Resort Hotel 187
## 5585 Resort Hotel 200
## 5586 Resort Hotel 187
## 5587 Resort Hotel 109
## 5588 Resort Hotel 201
## 5589 Resort Hotel 226
## 5590 Resort Hotel 188
## 5591 Resort Hotel 288
## 5592 Resort Hotel 108
## 5593 Resort Hotel 108
## 5594 Resort Hotel 188
## 5595 Resort Hotel 288
## 5596 Resort Hotel 74
## 5597 Resort Hotel 129
## 5598 Resort Hotel 49
## 5599 Resort Hotel 101
## 5600 Resort Hotel 12
## 5601 Resort Hotel 12
## 5602 Resort Hotel 188
## 5603 Resort Hotel 19
## 5604 Resort Hotel 141
## 5605 Resort Hotel 159
## 5606 Resort Hotel 45
## 5607 Resort Hotel 209
## 5608 Resort Hotel 164
## 5609 Resort Hotel 189
## 5610 Resort Hotel 209
## 5611 Resort Hotel 71
## 5612 Resort Hotel 209
## 5613 Resort Hotel 253
## 5614 Resort Hotel 113
## 5615 Resort Hotel 253
## 5616 Resort Hotel 154
## 5617 Resort Hotel 252
## 5618 Resort Hotel 2
## 5619 Resort Hotel 0
## 5620 Resort Hotel 153
## 5621 Resort Hotel 81
## 5622 Resort Hotel 165
## 5623 Resort Hotel 71
## 5624 Resort Hotel 44
## 5625 Resort Hotel 19
## 5626 Resort Hotel 66
## 5627 Resort Hotel 36
## 5628 Resort Hotel 354
## 5629 Resort Hotel 174
## 5630 Resort Hotel 119
## 5631 Resort Hotel 80
## 5632 Resort Hotel 260
## 5633 Resort Hotel 58
## 5634 Resort Hotel 179
## 5635 Resort Hotel 35
## 5636 Resort Hotel 54
## 5637 Resort Hotel 49
## 5638 Resort Hotel 122
## 5639 Resort Hotel 119
## 5640 Resort Hotel 95
## 5641 Resort Hotel 80
## 5642 Resort Hotel 89
## 5643 Resort Hotel 262
## 5644 Resort Hotel 232
## 5645 Resort Hotel 16
## 5646 Resort Hotel 75
## 5647 Resort Hotel 232
## 5648 Resort Hotel 81
## 5649 Resort Hotel 236
## 5650 Resort Hotel 1
## 5651 Resort Hotel 59
## 5652 Resort Hotel 39
## 5653 Resort Hotel 1
## 5654 Resort Hotel 20
## 5655 Resort Hotel 20
## 5656 Resort Hotel 59
## 5657 Resort Hotel 59
## 5658 Resort Hotel 158
## 5659 Resort Hotel 46
## 5660 Resort Hotel 68
## 5661 Resort Hotel 192
## 5662 Resort Hotel 92
## 5663 Resort Hotel 230
## 5664 Resort Hotel 256
## 5665 Resort Hotel 212
## 5666 Resort Hotel 163
## 5667 Resort Hotel 163
## 5668 Resort Hotel 22
## 5669 Resort Hotel 7
## 5670 Resort Hotel 59
## 5671 Resort Hotel 202
## 5672 Resort Hotel 235
## 5673 Resort Hotel 87
## 5674 Resort Hotel 122
## 5675 Resort Hotel 234
## 5676 Resort Hotel 254
## 5677 Resort Hotel 203
## 5678 Resort Hotel 203
## 5679 Resort Hotel 203
## 5680 Resort Hotel 203
## 5681 Resort Hotel 203
## 5682 Resort Hotel 203
## 5683 Resort Hotel 203
## 5684 Resort Hotel 203
## 5685 Resort Hotel 203
## 5686 Resort Hotel 203
## 5687 Resort Hotel 203
## 5688 Resort Hotel 203
## 5689 Resort Hotel 203
## 5690 Resort Hotel 203
## 5691 Resort Hotel 203
## 5692 Resort Hotel 203
## 5693 Resort Hotel 203
## 5694 Resort Hotel 203
## 5695 Resort Hotel 56
## 5696 Resort Hotel 235
## 5697 Resort Hotel 29
## 5698 Resort Hotel 49
## 5699 Resort Hotel 90
## 5700 Resort Hotel 48
## 5701 Resort Hotel 7
## 5702 Resort Hotel 59
## 5703 Resort Hotel 189
## 5704 Resort Hotel 188
## 5705 Resort Hotel 468
## 5706 Resort Hotel 468
## 5707 Resort Hotel 30
## 5708 Resort Hotel 468
## 5709 Resort Hotel 468
## 5710 Resort Hotel 30
## 5711 Resort Hotel 52
## 5712 Resort Hotel 69
## 5713 Resort Hotel 468
## 5714 Resort Hotel 468
## 5715 Resort Hotel 468
## 5716 Resort Hotel 468
## 5717 Resort Hotel 468
## 5718 Resort Hotel 468
## 5719 Resort Hotel 236
## 5720 Resort Hotel 236
## 5721 Resort Hotel 236
## 5722 Resort Hotel 236
## 5723 Resort Hotel 236
## 5724 Resort Hotel 236
## 5725 Resort Hotel 236
## 5726 Resort Hotel 236
## 5727 Resort Hotel 236
## 5728 Resort Hotel 236
## 5729 Resort Hotel 236
## 5730 Resort Hotel 236
## 5731 Resort Hotel 236
## 5732 Resort Hotel 236
## 5733 Resort Hotel 236
## 5734 Resort Hotel 236
## 5735 Resort Hotel 236
## 5736 Resort Hotel 236
## 5737 Resort Hotel 236
## 5738 Resort Hotel 236
## 5739 Resort Hotel 236
## 5740 Resort Hotel 236
## 5741 Resort Hotel 236
## 5742 Resort Hotel 236
## 5743 Resort Hotel 236
## 5744 Resort Hotel 236
## 5745 Resort Hotel 236
## 5746 Resort Hotel 236
## 5747 Resort Hotel 236
## 5748 Resort Hotel 236
## 5749 Resort Hotel 236
## 5750 Resort Hotel 236
## 5751 Resort Hotel 114
## 5752 Resort Hotel 236
## 5753 Resort Hotel 236
## 5754 Resort Hotel 236
## 5755 Resort Hotel 236
## 5756 Resort Hotel 236
## 5757 Resort Hotel 236
## 5758 Resort Hotel 236
## 5759 Resort Hotel 25
## 5760 Resort Hotel 197
## 5761 Resort Hotel 189
## 5762 Resort Hotel 189
## 5763 Resort Hotel 213
## 5764 Resort Hotel 213
## 5765 Resort Hotel 237
## 5766 Resort Hotel 54
## 5767 Resort Hotel 237
## 5768 Resort Hotel 30
## 5769 Resort Hotel 9
## 5770 Resort Hotel 9
## 5771 Resort Hotel 119
## 5772 Resort Hotel 22
## 5773 Resort Hotel 119
## 5774 Resort Hotel 17
## 5775 Resort Hotel 198
## 5776 Resort Hotel 195
## 5777 Resort Hotel 259
## 5778 Resort Hotel 195
## 5779 Resort Hotel 259
## 5780 Resort Hotel 3
## 5781 Resort Hotel 35
## 5782 Resort Hotel 113
## 5783 Resort Hotel 39
## 5784 Resort Hotel 35
## 5785 Resort Hotel 117
## 5786 Resort Hotel 190
## 5787 Resort Hotel 158
## 5788 Resort Hotel 128
## 5789 Resort Hotel 128
## 5790 Resort Hotel 128
## 5791 Resort Hotel 190
## 5792 Resort Hotel 120
## 5793 Resort Hotel 115
## 5794 Resort Hotel 206
## 5795 Resort Hotel 211
## 5796 Resort Hotel 211
## 5797 Resort Hotel 211
## 5798 Resort Hotel 211
## 5799 Resort Hotel 211
## 5800 Resort Hotel 211
## 5801 Resort Hotel 211
## 5802 Resort Hotel 211
## 5803 Resort Hotel 211
## 5804 Resort Hotel 211
## 5805 Resort Hotel 211
## 5806 Resort Hotel 211
## 5807 Resort Hotel 211
## 5808 Resort Hotel 211
## 5809 Resort Hotel 211
## 5810 Resort Hotel 211
## 5811 Resort Hotel 211
## 5812 Resort Hotel 211
## 5813 Resort Hotel 211
## 5814 Resort Hotel 211
## 5815 Resort Hotel 211
## 5816 Resort Hotel 211
## 5817 Resort Hotel 211
## 5818 Resort Hotel 211
## 5819 Resort Hotel 211
## 5820 Resort Hotel 211
## 5821 Resort Hotel 211
## 5822 Resort Hotel 211
## 5823 Resort Hotel 211
## 5824 Resort Hotel 211
## 5825 Resort Hotel 211
## 5826 Resort Hotel 211
## 5827 Resort Hotel 211
## 5828 Resort Hotel 211
## 5829 Resort Hotel 211
## 5830 Resort Hotel 211
## 5831 Resort Hotel 211
## 5832 Resort Hotel 211
## 5833 Resort Hotel 211
## 5834 Resort Hotel 211
## 5835 Resort Hotel 9
## 5836 Resort Hotel 9
## 5837 Resort Hotel 9
## 5838 Resort Hotel 9
## 5839 Resort Hotel 9
## 5840 Resort Hotel 9
## 5841 Resort Hotel 9
## 5842 Resort Hotel 9
## 5843 Resort Hotel 9
## 5844 Resort Hotel 9
## 5845 Resort Hotel 9
## 5846 Resort Hotel 9
## 5847 Resort Hotel 9
## 5848 Resort Hotel 9
## 5849 Resort Hotel 9
## 5850 Resort Hotel 9
## 5851 Resort Hotel 9
## 5852 Resort Hotel 9
## 5853 Resort Hotel 9
## 5854 Resort Hotel 9
## 5855 Resort Hotel 9
## 5856 Resort Hotel 9
## 5857 Resort Hotel 9
## 5858 Resort Hotel 9
## 5859 Resort Hotel 9
## 5860 Resort Hotel 9
## 5861 Resort Hotel 9
## 5862 Resort Hotel 9
## 5863 Resort Hotel 9
## 5864 Resort Hotel 9
## 5865 Resort Hotel 137
## 5866 Resort Hotel 30
## 5867 Resort Hotel 38
## 5868 Resort Hotel 239
## 5869 Resort Hotel 117
## 5870 Resort Hotel 117
## 5871 Resort Hotel 205
## 5872 Resort Hotel 208
## 5873 Resort Hotel 62
## 5874 Resort Hotel 62
## 5875 Resort Hotel 65
## 5876 Resort Hotel 0
## 5877 Resort Hotel 65
## 5878 Resort Hotel 213
## 5879 Resort Hotel 213
## 5880 Resort Hotel 213
## 5881 Resort Hotel 213
## 5882 Resort Hotel 213
## 5883 Resort Hotel 213
## 5884 Resort Hotel 213
## 5885 Resort Hotel 213
## 5886 Resort Hotel 213
## 5887 Resort Hotel 213
## 5888 Resort Hotel 213
## 5889 Resort Hotel 213
## 5890 Resort Hotel 213
## 5891 Resort Hotel 213
## 5892 Resort Hotel 213
## 5893 Resort Hotel 213
## 5894 Resort Hotel 213
## 5895 Resort Hotel 213
## 5896 Resort Hotel 213
## 5897 Resort Hotel 213
## 5898 Resort Hotel 213
## 5899 Resort Hotel 213
## 5900 Resort Hotel 213
## 5901 Resort Hotel 213
## 5902 Resort Hotel 213
## 5903 Resort Hotel 213
## 5904 Resort Hotel 213
## 5905 Resort Hotel 213
## 5906 Resort Hotel 213
## 5907 Resort Hotel 213
## 5908 Resort Hotel 213
## 5909 Resort Hotel 213
## 5910 Resort Hotel 213
## 5911 Resort Hotel 213
## 5912 Resort Hotel 213
## 5913 Resort Hotel 213
## 5914 Resort Hotel 213
## 5915 Resort Hotel 213
## 5916 Resort Hotel 213
## 5917 Resort Hotel 213
## 5918 Resort Hotel 213
## 5919 Resort Hotel 213
## 5920 Resort Hotel 201
## 5921 Resort Hotel 95
## 5922 Resort Hotel 39
## 5923 Resort Hotel 95
## 5924 Resort Hotel 201
## 5925 Resort Hotel 263
## 5926 Resort Hotel 189
## 5927 Resort Hotel 28
## 5928 Resort Hotel 265
## 5929 Resort Hotel 250
## 5930 Resort Hotel 215
## 5931 Resort Hotel 215
## 5932 Resort Hotel 265
## 5933 Resort Hotel 5
## 5934 Resort Hotel 201
## 5935 Resort Hotel 189
## 5936 Resort Hotel 201
## 5937 Resort Hotel 201
## 5938 Resort Hotel 201
## 5939 Resort Hotel 196
## 5940 Resort Hotel 151
## 5941 Resort Hotel 151
## 5942 Resort Hotel 151
## 5943 Resort Hotel 151
## 5944 Resort Hotel 151
## 5945 Resort Hotel 151
## 5946 Resort Hotel 151
## 5947 Resort Hotel 151
## 5948 Resort Hotel 151
## 5949 Resort Hotel 151
## 5950 Resort Hotel 40
## 5951 Resort Hotel 253
## 5952 Resort Hotel 224
## 5953 Resort Hotel 224
## 5954 Resort Hotel 132
## 5955 Resort Hotel 143
## 5956 Resort Hotel 199
## 5957 Resort Hotel 132
## 5958 Resort Hotel 139
## 5959 Resort Hotel 239
## 5960 Resort Hotel 0
## 5961 Resort Hotel 40
## 5962 Resort Hotel 40
## 5963 Resort Hotel 37
## 5964 Resort Hotel 191
## 5965 Resort Hotel 76
## 5966 Resort Hotel 124
## 5967 Resort Hotel 124
## 5968 Resort Hotel 40
## 5969 Resort Hotel 40
## 5970 Resort Hotel 40
## 5971 Resort Hotel 40
## 5972 Resort Hotel 40
## 5973 Resort Hotel 40
## 5974 Resort Hotel 40
## 5975 Resort Hotel 40
## 5976 Resort Hotel 40
## 5977 Resort Hotel 40
## 5978 Resort Hotel 40
## 5979 Resort Hotel 40
## 5980 Resort Hotel 40
## 5981 Resort Hotel 40
## 5982 Resort Hotel 92
## 5983 Resort Hotel 40
## 5984 Resort Hotel 40
## 5985 Resort Hotel 40
## 5986 Resort Hotel 8
## 5987 Resort Hotel 40
## 5988 Resort Hotel 40
## 5989 Resort Hotel 144
## 5990 Resort Hotel 41
## 5991 Resort Hotel 0
## 5992 Resort Hotel 3
## 5993 Resort Hotel 80
## 5994 Resort Hotel 124
## 5995 Resort Hotel 304
## 5996 Resort Hotel 87
## 5997 Resort Hotel 258
## 5998 Resort Hotel 304
## 5999 Resort Hotel 274
## 6000 Resort Hotel 155
## 6001 Resort Hotel 125
## 6002 Resort Hotel 237
## 6003 Resort Hotel 101
## 6004 Resort Hotel 118
## 6005 Resort Hotel 118
## 6006 Resort Hotel 101
## 6007 Resort Hotel 66
## 6008 Resort Hotel 49
## 6009 Resort Hotel 109
## 6010 Resort Hotel 32
## 6011 Resort Hotel 2
## 6012 Resort Hotel 193
## 6013 Resort Hotel 217
## 6014 Resort Hotel 202
## 6015 Resort Hotel 178
## 6016 Resort Hotel 171
## 6017 Resort Hotel 0
## 6018 Resort Hotel 126
## 6019 Resort Hotel 1
## 6020 Resort Hotel 126
## 6021 Resort Hotel 79
## 6022 Resort Hotel 78
## 6023 Resort Hotel 5
## 6024 Resort Hotel 116
## 6025 Resort Hotel 210
## 6026 Resort Hotel 82
## 6027 Resort Hotel 117
## 6028 Resort Hotel 123
## 6029 Resort Hotel 123
## 6030 Resort Hotel 82
## 6031 Resort Hotel 25
## 6032 Resort Hotel 192
## 6033 Resort Hotel 256
## 6034 Resort Hotel 70
## 6035 Resort Hotel 262
## 6036 Resort Hotel 220
## 6037 Resort Hotel 248
## 6038 Resort Hotel 236
## 6039 Resort Hotel 212
## 6040 Resort Hotel 46
## 6041 Resort Hotel 0
## 6042 Resort Hotel 241
## 6043 Resort Hotel 262
## 6044 Resort Hotel 307
## 6045 Resort Hotel 221
## 6046 Resort Hotel 46
## 6047 Resort Hotel 34
## 6048 Resort Hotel 73
## 6049 Resort Hotel 98
## 6050 Resort Hotel 101
## 6051 Resort Hotel 233
## 6052 Resort Hotel 32
## 6053 Resort Hotel 222
## 6054 Resort Hotel 201
## 6055 Resort Hotel 257
## 6056 Resort Hotel 126
## 6057 Resort Hotel 206
## 6058 Resort Hotel 200
## 6059 Resort Hotel 68
## 6060 Resort Hotel 30
## 6061 Resort Hotel 209
## 6062 Resort Hotel 197
## 6063 Resort Hotel 139
## 6064 Resort Hotel 222
## 6065 Resort Hotel 223
## 6066 Resort Hotel 223
## 6067 Resort Hotel 223
## 6068 Resort Hotel 223
## 6069 Resort Hotel 223
## 6070 Resort Hotel 223
## 6071 Resort Hotel 223
## 6072 Resort Hotel 223
## 6073 Resort Hotel 223
## 6074 Resort Hotel 223
## 6075 Resort Hotel 223
## 6076 Resort Hotel 223
## 6077 Resort Hotel 223
## 6078 Resort Hotel 223
## 6079 Resort Hotel 223
## 6080 Resort Hotel 28
## 6081 Resort Hotel 28
## 6082 Resort Hotel 223
## 6083 Resort Hotel 223
## 6084 Resort Hotel 223
## 6085 Resort Hotel 223
## 6086 Resort Hotel 213
## 6087 Resort Hotel 223
## 6088 Resort Hotel 223
## 6089 Resort Hotel 213
## 6090 Resort Hotel 227
## 6091 Resort Hotel 227
## 6092 Resort Hotel 69
## 6093 Resort Hotel 100
## 6094 Resort Hotel 99
## 6095 Resort Hotel 100
## 6096 Resort Hotel 100
## 6097 Resort Hotel 100
## 6098 Resort Hotel 257
## 6099 Resort Hotel 224
## 6100 Resort Hotel 224
## 6101 Resort Hotel 224
## 6102 Resort Hotel 224
## 6103 Resort Hotel 224
## 6104 Resort Hotel 105
## 6105 Resort Hotel 224
## 6106 Resort Hotel 224
## 6107 Resort Hotel 224
## 6108 Resort Hotel 100
## 6109 Resort Hotel 228
## 6110 Resort Hotel 224
## 6111 Resort Hotel 224
## 6112 Resort Hotel 100
## 6113 Resort Hotel 141
## 6114 Resort Hotel 197
## 6115 Resort Hotel 276
## 6116 Resort Hotel 225
## 6117 Resort Hotel 26
## 6118 Resort Hotel 225
## 6119 Resort Hotel 225
## 6120 Resort Hotel 225
## 6121 Resort Hotel 225
## 6122 Resort Hotel 225
## 6123 Resort Hotel 225
## 6124 Resort Hotel 225
## 6125 Resort Hotel 22
## 6126 Resort Hotel 101
## 6127 Resort Hotel 225
## 6128 Resort Hotel 183
## 6129 Resort Hotel 225
## 6130 Resort Hotel 225
## 6131 Resort Hotel 225
## 6132 Resort Hotel 225
## 6133 Resort Hotel 225
## 6134 Resort Hotel 225
## 6135 Resort Hotel 225
## 6136 Resort Hotel 225
## 6137 Resort Hotel 225
## 6138 Resort Hotel 225
## 6139 Resort Hotel 225
## 6140 Resort Hotel 225
## 6141 Resort Hotel 225
## 6142 Resort Hotel 225
## 6143 Resort Hotel 225
## 6144 Resort Hotel 225
## 6145 Resort Hotel 225
## 6146 Resort Hotel 225
## 6147 Resort Hotel 225
## 6148 Resort Hotel 225
## 6149 Resort Hotel 225
## 6150 Resort Hotel 225
## 6151 Resort Hotel 225
## 6152 Resort Hotel 139
## 6153 Resort Hotel 225
## 6154 Resort Hotel 225
## 6155 Resort Hotel 225
## 6156 Resort Hotel 225
## 6157 Resort Hotel 225
## 6158 Resort Hotel 264
## 6159 Resort Hotel 311
## 6160 Resort Hotel 238
## 6161 Resort Hotel 264
## 6162 Resort Hotel 18
## 6163 Resort Hotel 143
## 6164 Resort Hotel 100
## 6165 Resort Hotel 100
## 6166 Resort Hotel 7
## 6167 Resort Hotel 7
## 6168 Resort Hotel 7
## 6169 Resort Hotel 122
## 6170 Resort Hotel 7
## 6171 Resort Hotel 7
## 6172 Resort Hotel 277
## 6173 Resort Hotel 7
## 6174 Resort Hotel 7
## 6175 Resort Hotel 7
## 6176 Resort Hotel 100
## 6177 Resort Hotel 100
## 6178 Resort Hotel 226
## 6179 Resort Hotel 135
## 6180 Resort Hotel 100
## 6181 Resort Hotel 143
## 6182 Resort Hotel 100
## 6183 Resort Hotel 11
## 6184 Resort Hotel 102
## 6185 Resort Hotel 18
## 6186 Resort Hotel 204
## 6187 Resort Hotel 312
## 6188 Resort Hotel 204
## 6189 Resort Hotel 204
## 6190 Resort Hotel 312
## 6191 Resort Hotel 227
## 6192 Resort Hotel 225
## 6193 Resort Hotel 225
## 6194 Resort Hotel 225
## 6195 Resort Hotel 212
## 6196 Resort Hotel 225
## 6197 Resort Hotel 225
## 6198 Resort Hotel 225
## 6199 Resort Hotel 225
## 6200 Resort Hotel 225
## 6201 Resort Hotel 225
## 6202 Resort Hotel 225
## 6203 Resort Hotel 225
## 6204 Resort Hotel 225
## 6205 Resort Hotel 225
## 6206 Resort Hotel 225
## 6207 Resort Hotel 225
## 6208 Resort Hotel 225
## 6209 Resort Hotel 225
## 6210 Resort Hotel 225
## 6211 Resort Hotel 213
## 6212 Resort Hotel 145
## 6213 Resort Hotel 145
## 6214 Resort Hotel 145
## 6215 Resort Hotel 225
## 6216 Resort Hotel 225
## 6217 Resort Hotel 225
## 6218 Resort Hotel 145
## 6219 Resort Hotel 116
## 6220 Resort Hotel 144
## 6221 Resort Hotel 108
## 6222 Resort Hotel 144
## 6223 Resort Hotel 116
## 6224 Resort Hotel 102
## 6225 Resort Hotel 210
## 6226 Resort Hotel 168
## 6227 Resort Hotel 5
## 6228 Resort Hotel 11
## 6229 Resort Hotel 16
## 6230 Resort Hotel 5
## 6231 Resort Hotel 139
## 6232 Resort Hotel 314
## 6233 Resort Hotel 139
## 6234 Resort Hotel 107
## 6235 Resort Hotel 0
## 6236 Resort Hotel 0
## 6237 Resort Hotel 229
## 6238 Resort Hotel 50
## 6239 Resort Hotel 43
## 6240 Resort Hotel 125
## 6241 Resort Hotel 0
## 6242 Resort Hotel 117
## 6243 Resort Hotel 126
## 6244 Resort Hotel 215
## 6245 Resort Hotel 136
## 6246 Resort Hotel 237
## 6247 Resort Hotel 215
## 6248 Resort Hotel 71
## 6249 Resort Hotel 71
## 6250 Resort Hotel 215
## 6251 Resort Hotel 207
## 6252 Resort Hotel 152
## 6253 Resort Hotel 213
## 6254 Resort Hotel 76
## 6255 Resort Hotel 63
## 6256 Resort Hotel 290
## 6257 Resort Hotel 235
## 6258 Resort Hotel 235
## 6259 Resort Hotel 102
## 6260 Resort Hotel 105
## 6261 Resort Hotel 124
## 6262 Resort Hotel 241
## 6263 Resort Hotel 102
## 6264 Resort Hotel 102
## 6265 Resort Hotel 77
## 6266 Resort Hotel 134
## 6267 Resort Hotel 232
## 6268 Resort Hotel 90
## 6269 Resort Hotel 102
## 6270 Resort Hotel 46
## 6271 Resort Hotel 33
## 6272 Resort Hotel 102
## 6273 Resort Hotel 206
## 6274 Resort Hotel 206
## 6275 Resort Hotel 266
## 6276 Resort Hotel 7
## 6277 Resort Hotel 179
## 6278 Resort Hotel 2
## 6279 Resort Hotel 215
## 6280 Resort Hotel 215
## 6281 Resort Hotel 215
## 6282 Resort Hotel 215
## 6283 Resort Hotel 215
## 6284 Resort Hotel 118
## 6285 Resort Hotel 30
## 6286 Resort Hotel 43
## 6287 Resort Hotel 215
## 6288 Resort Hotel 215
## 6289 Resort Hotel 30
## 6290 Resort Hotel 215
## 6291 Resort Hotel 215
## 6292 Resort Hotel 215
## 6293 Resort Hotel 215
## 6294 Resort Hotel 215
## 6295 Resort Hotel 133
## 6296 Resort Hotel 217
## 6297 Resort Hotel 235
## 6298 Resort Hotel 208
## 6299 Resort Hotel 216
## 6300 Resort Hotel 107
## 6301 Resort Hotel 40
## 6302 Resort Hotel 168
## 6303 Resort Hotel 147
## 6304 Resort Hotel 34
## 6305 Resort Hotel 98
## 6306 Resort Hotel 250
## 6307 Resort Hotel 101
## 6308 Resort Hotel 139
## 6309 Resort Hotel 237
## 6310 Resort Hotel 237
## 6311 Resort Hotel 91
## 6312 Resort Hotel 20
## 6313 Resort Hotel 54
## 6314 Resort Hotel 182
## 6315 Resort Hotel 182
## 6316 Resort Hotel 182
## 6317 Resort Hotel 182
## 6318 Resort Hotel 182
## 6319 Resort Hotel 150
## 6320 Resort Hotel 182
## 6321 Resort Hotel 182
## 6322 Resort Hotel 182
## 6323 Resort Hotel 122
## 6324 Resort Hotel 122
## 6325 Resort Hotel 81
## 6326 Resort Hotel 182
## 6327 Resort Hotel 270
## 6328 Resort Hotel 237
## 6329 Resort Hotel 143
## 6330 Resort Hotel 227
## 6331 Resort Hotel 198
## 6332 Resort Hotel 44
## 6333 Resort Hotel 136
## 6334 Resort Hotel 294
## 6335 Resort Hotel 227
## 6336 Resort Hotel 216
## 6337 Resort Hotel 219
## 6338 Resort Hotel 270
## 6339 Resort Hotel 319
## 6340 Resort Hotel 319
## 6341 Resort Hotel 264
## 6342 Resort Hotel 264
## 6343 Resort Hotel 264
## 6344 Resort Hotel 157
## 6345 Resort Hotel 37
## 6346 Resort Hotel 113
## 6347 Resort Hotel 130
## 6348 Resort Hotel 144
## 6349 Resort Hotel 128
## 6350 Resort Hotel 78
## 6351 Resort Hotel 151
## 6352 Resort Hotel 161
## 6353 Resort Hotel 252
## 6354 Resort Hotel 290
## 6355 Resort Hotel 250
## 6356 Resort Hotel 2
## 6357 Resort Hotel 29
## 6358 Resort Hotel 6
## 6359 Resort Hotel 46
## 6360 Resort Hotel 32
## 6361 Resort Hotel 107
## 6362 Resort Hotel 107
## 6363 Resort Hotel 123
## 6364 Resort Hotel 282
## 6365 Resort Hotel 114
## 6366 Resort Hotel 176
## 6367 Resort Hotel 256
## 6368 Resort Hotel 257
## 6369 Resort Hotel 3
## 6370 Resort Hotel 3
## 6371 Resort Hotel 3
## 6372 Resort Hotel 76
## 6373 Resort Hotel 18
## 6374 Resort Hotel 282
## 6375 Resort Hotel 40
## 6376 Resort Hotel 35
## 6377 Resort Hotel 195
## 6378 Resort Hotel 251
## 6379 Resort Hotel 94
## 6380 Resort Hotel 94
## 6381 Resort Hotel 151
## 6382 Resort Hotel 322
## 6383 Resort Hotel 322
## 6384 Resort Hotel 12
## 6385 Resort Hotel 35
## 6386 Resort Hotel 34
## 6387 Resort Hotel 34
## 6388 Resort Hotel 41
## 6389 Resort Hotel 125
## 6390 Resort Hotel 136
## 6391 Resort Hotel 144
## 6392 Resort Hotel 95
## 6393 Resort Hotel 144
## 6394 Resort Hotel 125
## 6395 Resort Hotel 323
## 6396 Resort Hotel 58
## 6397 Resort Hotel 229
## 6398 Resort Hotel 151
## 6399 Resort Hotel 215
## 6400 Resort Hotel 24
## 6401 Resort Hotel 21
## 6402 Resort Hotel 160
## 6403 Resort Hotel 291
## 6404 Resort Hotel 97
## 6405 Resort Hotel 142
## 6406 Resort Hotel 14
## 6407 Resort Hotel 131
## 6408 Resort Hotel 152
## 6409 Resort Hotel 253
## 6410 Resort Hotel 59
## 6411 Resort Hotel 269
## 6412 Resort Hotel 229
## 6413 Resort Hotel 286
## 6414 Resort Hotel 143
## 6415 Resort Hotel 15
## 6416 Resort Hotel 15
## 6417 Resort Hotel 141
## 6418 Resort Hotel 57
## 6419 Resort Hotel 240
## 6420 Resort Hotel 93
## 6421 Resort Hotel 162
## 6422 Resort Hotel 151
## 6423 Resort Hotel 269
## 6424 Resort Hotel 142
## 6425 Resort Hotel 129
## 6426 Resort Hotel 17
## 6427 Resort Hotel 17
## 6428 Resort Hotel 266
## 6429 Resort Hotel 116
## 6430 Resort Hotel 16
## 6431 Resort Hotel 155
## 6432 Resort Hotel 255
## 6433 Resort Hotel 271
## 6434 Resort Hotel 271
## 6435 Resort Hotel 271
## 6436 Resort Hotel 16
## 6437 Resort Hotel 17
## 6438 Resort Hotel 115
## 6439 Resort Hotel 220
## 6440 Resort Hotel 191
## 6441 Resort Hotel 241
## 6442 Resort Hotel 220
## 6443 Resort Hotel 57
## 6444 Resort Hotel 120
## 6445 Resort Hotel 227
## 6446 Resort Hotel 241
## 6447 Resort Hotel 227
## 6448 Resort Hotel 184
## 6449 Resort Hotel 277
## 6450 Resort Hotel 277
## 6451 Resort Hotel 277
## 6452 Resort Hotel 277
## 6453 Resort Hotel 277
## 6454 Resort Hotel 277
## 6455 Resort Hotel 277
## 6456 Resort Hotel 277
## 6457 Resort Hotel 277
## 6458 Resort Hotel 277
## 6459 Resort Hotel 277
## 6460 Resort Hotel 277
## 6461 Resort Hotel 277
## 6462 Resort Hotel 277
## 6463 Resort Hotel 277
## 6464 Resort Hotel 277
## 6465 Resort Hotel 55
## 6466 Resort Hotel 19
## 6467 Resort Hotel 55
## 6468 Resort Hotel 36
## 6469 Resort Hotel 277
## 6470 Resort Hotel 277
## 6471 Resort Hotel 277
## 6472 Resort Hotel 277
## 6473 Resort Hotel 277
## 6474 Resort Hotel 277
## 6475 Resort Hotel 277
## 6476 Resort Hotel 277
## 6477 Resort Hotel 277
## 6478 Resort Hotel 277
## 6479 Resort Hotel 277
## 6480 Resort Hotel 277
## 6481 Resort Hotel 17
## 6482 Resort Hotel 199
## 6483 Resort Hotel 149
## 6484 Resort Hotel 40
## 6485 Resort Hotel 141
## 6486 Resort Hotel 70
## 6487 Resort Hotel 328
## 6488 Resort Hotel 221
## 6489 Resort Hotel 221
## 6490 Resort Hotel 65
## 6491 Resort Hotel 150
## 6492 Resort Hotel 259
## 6493 Resort Hotel 0
## 6494 Resort Hotel 32
## 6495 Resort Hotel 72
## 6496 Resort Hotel 146
## 6497 Resort Hotel 39
## 6498 Resort Hotel 206
## 6499 Resort Hotel 206
## 6500 Resort Hotel 65
## 6501 Resort Hotel 50
## 6502 Resort Hotel 50
## 6503 Resort Hotel 114
## 6504 Resort Hotel 205
## 6505 Resort Hotel 217
## 6506 Resort Hotel 223
## 6507 Resort Hotel 223
## 6508 Resort Hotel 112
## 6509 Resort Hotel 217
## 6510 Resort Hotel 223
## 6511 Resort Hotel 145
## 6512 Resort Hotel 223
## 6513 Resort Hotel 166
## 6514 Resort Hotel 104
## 6515 Resort Hotel 248
## 6516 Resort Hotel 147
## 6517 Resort Hotel 97
## 6518 Resort Hotel 62
## 6519 Resort Hotel 110
## 6520 Resort Hotel 95
## 6521 Resort Hotel 98
## 6522 Resort Hotel 330
## 6523 Resort Hotel 225
## 6524 Resort Hotel 231
## 6525 Resort Hotel 231
## 6526 Resort Hotel 268
## 6527 Resort Hotel 274
## 6528 Resort Hotel 250
## 6529 Resort Hotel 268
## 6530 Resort Hotel 249
## 6531 Resort Hotel 246
## 6532 Resort Hotel 83
## 6533 Resort Hotel 85
## 6534 Resort Hotel 40
## 6535 Resort Hotel 37
## 6536 Resort Hotel 37
## 6537 Resort Hotel 250
## 6538 Resort Hotel 234
## 6539 Resort Hotel 275
## 6540 Resort Hotel 73
## 6541 Resort Hotel 21
## 6542 Resort Hotel 247
## 6543 Resort Hotel 32
## 6544 Resort Hotel 37
## 6545 Resort Hotel 37
## 6546 Resort Hotel 32
## 6547 Resort Hotel 43
## 6548 Resort Hotel 72
## 6549 Resort Hotel 92
## 6550 Resort Hotel 61
## 6551 Resort Hotel 221
## 6552 Resort Hotel 60
## 6553 Resort Hotel 155
## 6554 Resort Hotel 73
## 6555 Resort Hotel 228
## 6556 Resort Hotel 174
## 6557 Resort Hotel 273
## 6558 Resort Hotel 300
## 6559 Resort Hotel 273
## 6560 Resort Hotel 256
## 6561 Resort Hotel 246
## 6562 Resort Hotel 248
## 6563 Resort Hotel 304
## 6564 Resort Hotel 23
## 6565 Resort Hotel 67
## 6566 Resort Hotel 10
## 6567 Resort Hotel 23
## 6568 Resort Hotel 12
## 6569 Resort Hotel 81
## 6570 Resort Hotel 62
## 6571 Resort Hotel 117
## 6572 Resort Hotel 250
## 6573 Resort Hotel 301
## 6574 Resort Hotel 250
## 6575 Resort Hotel 228
## 6576 Resort Hotel 250
## 6577 Resort Hotel 256
## 6578 Resort Hotel 231
## 6579 Resort Hotel 164
## 6580 Resort Hotel 241
## 6581 Resort Hotel 291
## 6582 Resort Hotel 241
## 6583 Resort Hotel 249
## 6584 Resort Hotel 249
## 6585 Resort Hotel 175
## 6586 Resort Hotel 143
## 6587 Resort Hotel 81
## 6588 Resort Hotel 5
## 6589 Resort Hotel 267
## 6590 Resort Hotel 267
## 6591 Resort Hotel 163
## 6592 Resort Hotel 235
## 6593 Resort Hotel 128
## 6594 Resort Hotel 128
## 6595 Resort Hotel 128
## 6596 Resort Hotel 128
## 6597 Resort Hotel 185
## 6598 Resort Hotel 11
## 6599 Resort Hotel 244
## 6600 Resort Hotel 177
## 6601 Resort Hotel 177
## 6602 Resort Hotel 177
## 6603 Resort Hotel 177
## 6604 Resort Hotel 191
## 6605 Resort Hotel 177
## 6606 Resort Hotel 271
## 6607 Resort Hotel 177
## 6608 Resort Hotel 177
## 6609 Resort Hotel 177
## 6610 Resort Hotel 177
## 6611 Resort Hotel 177
## 6612 Resort Hotel 167
## 6613 Resort Hotel 152
## 6614 Resort Hotel 152
## 6615 Resort Hotel 306
## 6616 Resort Hotel 216
## 6617 Resort Hotel 304
## 6618 Resort Hotel 294
## 6619 Resort Hotel 293
## 6620 Resort Hotel 293
## 6621 Resort Hotel 293
## 6622 Resort Hotel 293
## 6623 Resort Hotel 293
## 6624 Resort Hotel 203
## 6625 Resort Hotel 294
## 6626 Resort Hotel 309
## 6627 Resort Hotel 227
## 6628 Resort Hotel 155
## 6629 Resort Hotel 272
## 6630 Resort Hotel 167
## 6631 Resort Hotel 124
## 6632 Resort Hotel 242
## 6633 Resort Hotel 237
## 6634 Resort Hotel 237
## 6635 Resort Hotel 127
## 6636 Resort Hotel 235
## 6637 Resort Hotel 247
## 6638 Resort Hotel 322
## 6639 Resort Hotel 322
## 6640 Resort Hotel 253
## 6641 Resort Hotel 322
## 6642 Resort Hotel 322
## 6643 Resort Hotel 322
## 6644 Resort Hotel 322
## 6645 Resort Hotel 322
## 6646 Resort Hotel 322
## 6647 Resort Hotel 253
## 6648 Resort Hotel 29
## 6649 Resort Hotel 322
## 6650 Resort Hotel 322
## 6651 Resort Hotel 253
## 6652 Resort Hotel 253
## 6653 Resort Hotel 322
## 6654 Resort Hotel 322
## 6655 Resort Hotel 247
## 6656 Resort Hotel 322
## 6657 Resort Hotel 2
## 6658 Resort Hotel 253
## 6659 Resort Hotel 322
## 6660 Resort Hotel 322
## 6661 Resort Hotel 322
## 6662 Resort Hotel 322
## 6663 Resort Hotel 322
## 6664 Resort Hotel 267
## 6665 Resort Hotel 0
## 6666 Resort Hotel 267
## 6667 Resort Hotel 295
## 6668 Resort Hotel 295
## 6669 Resort Hotel 322
## 6670 Resort Hotel 3
## 6671 Resort Hotel 2
## 6672 Resort Hotel 128
## 6673 Resort Hotel 155
## 6674 Resort Hotel 18
## 6675 Resort Hotel 225
## 6676 Resort Hotel 225
## 6677 Resort Hotel 286
## 6678 Resort Hotel 131
## 6679 Resort Hotel 286
## 6680 Resort Hotel 262
## 6681 Resort Hotel 227
## 6682 Resort Hotel 11
## 6683 Resort Hotel 3
## 6684 Resort Hotel 13
## 6685 Resort Hotel 284
## 6686 Resort Hotel 252
## 6687 Resort Hotel 294
## 6688 Resort Hotel 291
## 6689 Resort Hotel 232
## 6690 Resort Hotel 310
## 6691 Resort Hotel 232
## 6692 Resort Hotel 170
## 6693 Resort Hotel 170
## 6694 Resort Hotel 0
## 6695 Resort Hotel 170
## 6696 Resort Hotel 3
## 6697 Resort Hotel 24
## 6698 Resort Hotel 4
## 6699 Resort Hotel 75
## 6700 Resort Hotel 234
## 6701 Resort Hotel 127
## 6702 Resort Hotel 112
## 6703 Resort Hotel 229
## 6704 Resort Hotel 165
## 6705 Resort Hotel 226
## 6706 Resort Hotel 117
## 6707 Resort Hotel 196
## 6708 Resort Hotel 285
## 6709 Resort Hotel 241
## 6710 Resort Hotel 3
## 6711 Resort Hotel 92
## 6712 Resort Hotel 92
## 6713 Resort Hotel 94
## 6714 Resort Hotel 90
## 6715 Resort Hotel 90
## 6716 Resort Hotel 123
## 6717 Resort Hotel 227
## 6718 Resort Hotel 172
## 6719 Resort Hotel 105
## 6720 Resort Hotel 116
## 6721 Resort Hotel 116
## 6722 Resort Hotel 105
## 6723 Resort Hotel 274
## 6724 Resort Hotel 0
## 6725 Resort Hotel 47
## 6726 Resort Hotel 5
## 6727 Resort Hotel 26
## 6728 Resort Hotel 10
## 6729 Resort Hotel 167
## 6730 Resort Hotel 91
## 6731 Resort Hotel 198
## 6732 Resort Hotel 247
## 6733 Resort Hotel 172
## 6734 Resort Hotel 174
## 6735 Resort Hotel 174
## 6736 Resort Hotel 184
## 6737 Resort Hotel 240
## 6738 Resort Hotel 171
## 6739 Resort Hotel 290
## 6740 Resort Hotel 172
## 6741 Resort Hotel 244
## 6742 Resort Hotel 246
## 6743 Resort Hotel 174
## 6744 Resort Hotel 106
## 6745 Resort Hotel 241
## 6746 Resort Hotel 230
## 6747 Resort Hotel 237
## 6748 Resort Hotel 237
## 6749 Resort Hotel 266
## 6750 Resort Hotel 237
## 6751 Resort Hotel 314
## 6752 Resort Hotel 208
## 6753 Resort Hotel 295
## 6754 Resort Hotel 114
## 6755 Resort Hotel 166
## 6756 Resort Hotel 186
## 6757 Resort Hotel 186
## 6758 Resort Hotel 168
## 6759 Resort Hotel 2
## 6760 Resort Hotel 78
## 6761 Resort Hotel 20
## 6762 Resort Hotel 159
## 6763 Resort Hotel 32
## 6764 Resort Hotel 201
## 6765 Resort Hotel 164
## 6766 Resort Hotel 68
## 6767 Resort Hotel 62
## 6768 Resort Hotel 9
## 6769 Resort Hotel 255
## 6770 Resort Hotel 254
## 6771 Resort Hotel 178
## 6772 Resort Hotel 170
## 6773 Resort Hotel 220
## 6774 Resort Hotel 220
## 6775 Resort Hotel 0
## 6776 Resort Hotel 301
## 6777 Resort Hotel 301
## 6778 Resort Hotel 304
## 6779 Resort Hotel 305
## 6780 Resort Hotel 164
## 6781 Resort Hotel 68
## 6782 Resort Hotel 305
## 6783 Resort Hotel 241
## 6784 Resort Hotel 170
## 6785 Resort Hotel 170
## 6786 Resort Hotel 73
## 6787 Resort Hotel 189
## 6788 Resort Hotel 179
## 6789 Resort Hotel 273
## 6790 Resort Hotel 179
## 6791 Resort Hotel 170
## 6792 Resort Hotel 171
## 6793 Resort Hotel 172
## 6794 Resort Hotel 264
## 6795 Resort Hotel 203
## 6796 Resort Hotel 248
## 6797 Resort Hotel 179
## 6798 Resort Hotel 236
## 6799 Resort Hotel 172
## 6800 Resort Hotel 138
## 6801 Resort Hotel 149
## 6802 Resort Hotel 138
## 6803 Resort Hotel 266
## 6804 Resort Hotel 138
## 6805 Resort Hotel 243
## 6806 Resort Hotel 178
## 6807 Resort Hotel 265
## 6808 Resort Hotel 152
## 6809 Resort Hotel 169
## 6810 Resort Hotel 265
## 6811 Resort Hotel 139
## 6812 Resort Hotel 139
## 6813 Resort Hotel 265
## 6814 Resort Hotel 167
## 6815 Resort Hotel 265
## 6816 Resort Hotel 314
## 6817 Resort Hotel 349
## 6818 Resort Hotel 208
## 6819 Resort Hotel 15
## 6820 Resort Hotel 18
## 6821 Resort Hotel 38
## 6822 Resort Hotel 256
## 6823 Resort Hotel 317
## 6824 Resort Hotel 317
## 6825 Resort Hotel 166
## 6826 Resort Hotel 171
## 6827 Resort Hotel 166
## 6828 Resort Hotel 308
## 6829 Resort Hotel 166
## 6830 Resort Hotel 398
## 6831 Resort Hotel 166
## 6832 Resort Hotel 175
## 6833 Resort Hotel 261
## 6834 Resort Hotel 198
## 6835 Resort Hotel 255
## 6836 Resort Hotel 198
## 6837 Resort Hotel 211
## 6838 Resort Hotel 272
## 6839 Resort Hotel 172
## 6840 Resort Hotel 272
## 6841 Resort Hotel 272
## 6842 Resort Hotel 273
## 6843 Resort Hotel 283
## 6844 Resort Hotel 16
## 6845 Resort Hotel 9
## 6846 Resort Hotel 180
## 6847 Resort Hotel 317
## 6848 Resort Hotel 34
## 6849 Resort Hotel 179
## 6850 Resort Hotel 292
## 6851 Resort Hotel 8
## 6852 Resort Hotel 24
## 6853 Resort Hotel 123
## 6854 Resort Hotel 15
## 6855 Resort Hotel 240
## 6856 Resort Hotel 324
## 6857 Resort Hotel 178
## 6858 Resort Hotel 181
## 6859 Resort Hotel 259
## 6860 Resort Hotel 323
## 6861 Resort Hotel 18
## 6862 Resort Hotel 10
## 6863 Resort Hotel 24
## 6864 Resort Hotel 144
## 6865 Resort Hotel 14
## 6866 Resort Hotel 23
## 6867 Resort Hotel 16
## 6868 Resort Hotel 23
## 6869 Resort Hotel 22
## 6870 Resort Hotel 40
## 6871 Resort Hotel 135
## 6872 Resort Hotel 272
## 6873 Resort Hotel 209
## 6874 Resort Hotel 309
## 6875 Resort Hotel 241
## 6876 Resort Hotel 147
## 6877 Resort Hotel 113
## 6878 Resort Hotel 191
## 6879 Resort Hotel 241
## 6880 Resort Hotel 142
## 6881 Resort Hotel 254
## 6882 Resort Hotel 2
## 6883 Resort Hotel 22
## 6884 Resort Hotel 11
## 6885 Resort Hotel 180
## 6886 Resort Hotel 291
## 6887 Resort Hotel 180
## 6888 Resort Hotel 327
## 6889 Resort Hotel 185
## 6890 Resort Hotel 227
## 6891 Resort Hotel 180
## 6892 Resort Hotel 120
## 6893 Resort Hotel 127
## 6894 Resort Hotel 262
## 6895 Resort Hotel 290
## 6896 Resort Hotel 262
## 6897 Resort Hotel 262
## 6898 Resort Hotel 303
## 6899 Resort Hotel 207
## 6900 Resort Hotel 356
## 6901 Resort Hotel 292
## 6902 Resort Hotel 149
## 6903 Resort Hotel 146
## 6904 Resort Hotel 292
## 6905 Resort Hotel 292
## 6906 Resort Hotel 35
## 6907 Resort Hotel 187
## 6908 Resort Hotel 146
## 6909 Resort Hotel 7
## 6910 Resort Hotel 159
## 6911 Resort Hotel 133
## 6912 Resort Hotel 144
## 6913 Resort Hotel 26
## 6914 Resort Hotel 276
## 6915 Resort Hotel 294
## 6916 Resort Hotel 273
## 6917 Resort Hotel 275
## 6918 Resort Hotel 103
## 6919 Resort Hotel 126
## 6920 Resort Hotel 245
## 6921 Resort Hotel 424
## 6922 Resort Hotel 165
## 6923 Resort Hotel 177
## 6924 Resort Hotel 284
## 6925 Resort Hotel 140
## 6926 Resort Hotel 12
## 6927 Resort Hotel 24
## 6928 Resort Hotel 134
## 6929 Resort Hotel 141
## 6930 Resort Hotel 24
## 6931 Resort Hotel 134
## 6932 Resort Hotel 141
## 6933 Resort Hotel 309
## 6934 Resort Hotel 44
## 6935 Resort Hotel 29
## 6936 Resort Hotel 100
## 6937 Resort Hotel 244
## 6938 Resort Hotel 277
## 6939 Resort Hotel 277
## 6940 Resort Hotel 277
## 6941 Resort Hotel 277
## 6942 Resort Hotel 218
## 6943 Resort Hotel 244
## 6944 Resort Hotel 244
## 6945 Resort Hotel 277
## 6946 Resort Hotel 298
## 6947 Resort Hotel 100
## 6948 Resort Hotel 90
## 6949 Resort Hotel 88
## 6950 Resort Hotel 26
## 6951 Resort Hotel 23
## 6952 Resort Hotel 82
## 6953 Resort Hotel 23
## 6954 Resort Hotel 80
## 6955 Resort Hotel 95
## 6956 Resort Hotel 74
## 6957 Resort Hotel 259
## 6958 Resort Hotel 217
## 6959 Resort Hotel 28
## 6960 Resort Hotel 102
## 6961 Resort Hotel 35
## 6962 Resort Hotel 50
## 6963 Resort Hotel 74
## 6964 Resort Hotel 279
## 6965 Resort Hotel 72
## 6966 Resort Hotel 10
## 6967 Resort Hotel 297
## 6968 Resort Hotel 72
## 6969 Resort Hotel 16
## 6970 Resort Hotel 331
## 6971 Resort Hotel 311
## 6972 Resort Hotel 248
## 6973 Resort Hotel 63
## 6974 Resort Hotel 0
## 6975 Resort Hotel 67
## 6976 Resort Hotel 25
## 6977 Resort Hotel 54
## 6978 Resort Hotel 23
## 6979 Resort Hotel 0
## 6980 Resort Hotel 333
## 6981 Resort Hotel 333
## 6982 Resort Hotel 333
## 6983 Resort Hotel 333
## 6984 Resort Hotel 333
## 6985 Resort Hotel 333
## 6986 Resort Hotel 51
## 6987 Resort Hotel 66
## 6988 Resort Hotel 216
## 6989 Resort Hotel 66
## 6990 Resort Hotel 305
## 6991 Resort Hotel 305
## 6992 Resort Hotel 143
## 6993 Resort Hotel 172
## 6994 Resort Hotel 191
## 6995 Resort Hotel 138
## 6996 Resort Hotel 83
## 6997 Resort Hotel 58
## 6998 Resort Hotel 103
## 6999 Resort Hotel 35
## 7000 Resort Hotel 20
## 7001 Resort Hotel 19
## 7002 Resort Hotel 19
## 7003 Resort Hotel 66
## 7004 Resort Hotel 66
## 7005 Resort Hotel 17
## 7006 Resort Hotel 152
## 7007 Resort Hotel 177
## 7008 Resort Hotel 20
## 7009 Resort Hotel 144
## 7010 Resort Hotel 155
## 7011 Resort Hotel 177
## 7012 Resort Hotel 109
## 7013 Resort Hotel 109
## 7014 Resort Hotel 113
## 7015 Resort Hotel 144
## 7016 Resort Hotel 144
## 7017 Resort Hotel 144
## 7018 Resort Hotel 234
## 7019 Resort Hotel 109
## 7020 Resort Hotel 108
## 7021 Resort Hotel 105
## 7022 Resort Hotel 162
## 7023 Resort Hotel 281
## 7024 Resort Hotel 164
## 7025 Resort Hotel 165
## 7026 Resort Hotel 203
## 7027 Resort Hotel 146
## 7028 Resort Hotel 263
## 7029 Resort Hotel 137
## 7030 Resort Hotel 21
## 7031 Resort Hotel 107
## 7032 Resort Hotel 203
## 7033 Resort Hotel 15
## 7034 Resort Hotel 136
## 7035 Resort Hotel 193
## 7036 Resort Hotel 181
## 7037 Resort Hotel 184
## 7038 Resort Hotel 181
## 7039 Resort Hotel 181
## 7040 Resort Hotel 181
## 7041 Resort Hotel 181
## 7042 Resort Hotel 125
## 7043 Resort Hotel 185
## 7044 Resort Hotel 165
## 7045 Resort Hotel 0
## 7046 Resort Hotel 6
## 7047 Resort Hotel 0
## 7048 Resort Hotel 200
## 7049 Resort Hotel 15
## 7050 Resort Hotel 200
## 7051 Resort Hotel 46
## 7052 Resort Hotel 200
## 7053 Resort Hotel 182
## 7054 Resort Hotel 99
## 7055 Resort Hotel 100
## 7056 Resort Hotel 130
## 7057 Resort Hotel 224
## 7058 Resort Hotel 182
## 7059 Resort Hotel 119
## 7060 Resort Hotel 109
## 7061 Resort Hotel 118
## 7062 Resort Hotel 93
## 7063 Resort Hotel 305
## 7064 Resort Hotel 14
## 7065 Resort Hotel 305
## 7066 Resort Hotel 167
## 7067 Resort Hotel 305
## 7068 Resort Hotel 25
## 7069 Resort Hotel 114
## 7070 Resort Hotel 261
## 7071 Resort Hotel 0
## 7072 Resort Hotel 17
## 7073 Resort Hotel 17
## 7074 Resort Hotel 46
## 7075 Resort Hotel 17
## 7076 Resort Hotel 174
## 7077 Resort Hotel 88
## 7078 Resort Hotel 119
## 7079 Resort Hotel 161
## 7080 Resort Hotel 29
## 7081 Resort Hotel 1
## 7082 Resort Hotel 266
## 7083 Resort Hotel 266
## 7084 Resort Hotel 114
## 7085 Resort Hotel 155
## 7086 Resort Hotel 29
## 7087 Resort Hotel 28
## 7088 Resort Hotel 155
## 7089 Resort Hotel 28
## 7090 Resort Hotel 163
## 7091 Resort Hotel 119
## 7092 Resort Hotel 2
## 7093 Resort Hotel 8
## 7094 Resort Hotel 55
## 7095 Resort Hotel 55
## 7096 Resort Hotel 106
## 7097 Resort Hotel 114
## 7098 Resort Hotel 114
## 7099 Resort Hotel 114
## 7100 Resort Hotel 106
## 7101 Resort Hotel 114
## 7102 Resort Hotel 37
## 7103 Resort Hotel 114
## 7104 Resort Hotel 114
## 7105 Resort Hotel 169
## 7106 Resort Hotel 306
## 7107 Resort Hotel 113
## 7108 Resort Hotel 10
## 7109 Resort Hotel 23
## 7110 Resort Hotel 23
## 7111 Resort Hotel 10
## 7112 Resort Hotel 112
## 7113 Resort Hotel 59
## 7114 Resort Hotel 99
## 7115 Resort Hotel 34
## 7116 Resort Hotel 59
## 7117 Resort Hotel 127
## 7118 Resort Hotel 147
## 7119 Resort Hotel 32
## 7120 Resort Hotel 40
## 7121 Resort Hotel 59
## 7122 Resort Hotel 139
## 7123 Resort Hotel 17
## 7124 Resort Hotel 209
## 7125 Resort Hotel 0
## 7126 Resort Hotel 31
## 7127 Resort Hotel 119
## 7128 Resort Hotel 142
## 7129 Resort Hotel 51
## 7130 Resort Hotel 110
## 7131 Resort Hotel 149
## 7132 Resort Hotel 74
## 7133 Resort Hotel 149
## 7134 Resort Hotel 149
## 7135 Resort Hotel 35
## 7136 Resort Hotel 59
## 7137 Resort Hotel 271
## 7138 Resort Hotel 209
## 7139 Resort Hotel 149
## 7140 Resort Hotel 162
## 7141 Resort Hotel 74
## 7142 Resort Hotel 149
## 7143 Resort Hotel 241
## 7144 Resort Hotel 111
## 7145 Resort Hotel 98
## 7146 Resort Hotel 162
## 7147 Resort Hotel 199
## 7148 Resort Hotel 339
## 7149 Resort Hotel 12
## 7150 Resort Hotel 12
## 7151 Resort Hotel 12
## 7152 Resort Hotel 12
## 7153 Resort Hotel 12
## 7154 Resort Hotel 191
## 7155 Resort Hotel 159
## 7156 Resort Hotel 110
## 7157 Resort Hotel 139
## 7158 Resort Hotel 284
## 7159 Resort Hotel 140
## 7160 Resort Hotel 200
## 7161 Resort Hotel 81
## 7162 Resort Hotel 48
## 7163 Resort Hotel 109
## 7164 Resort Hotel 186
## 7165 Resort Hotel 269
## 7166 Resort Hotel 42
## 7167 Resort Hotel 154
## 7168 Resort Hotel 24
## 7169 Resort Hotel 72
## 7170 Resort Hotel 42
## 7171 Resort Hotel 42
## 7172 Resort Hotel 48
## 7173 Resort Hotel 131
## 7174 Resort Hotel 262
## 7175 Resort Hotel 196
## 7176 Resort Hotel 174
## 7177 Resort Hotel 115
## 7178 Resort Hotel 145
## 7179 Resort Hotel 154
## 7180 Resort Hotel 115
## 7181 Resort Hotel 118
## 7182 Resort Hotel 118
## 7183 Resort Hotel 105
## 7184 Resort Hotel 5
## 7185 Resort Hotel 0
## 7186 Resort Hotel 173
## 7187 Resort Hotel 105
## 7188 Resort Hotel 83
## 7189 Resort Hotel 105
## 7190 Resort Hotel 221
## 7191 Resort Hotel 110
## 7192 Resort Hotel 183
## 7193 Resort Hotel 115
## 7194 Resort Hotel 40
## 7195 Resort Hotel 27
## 7196 Resort Hotel 40
## 7197 Resort Hotel 115
## 7198 Resort Hotel 40
## 7199 Resort Hotel 69
## 7200 Resort Hotel 70
## 7201 Resort Hotel 115
## 7202 Resort Hotel 145
## 7203 Resort Hotel 22
## 7204 Resort Hotel 251
## 7205 Resort Hotel 107
## 7206 Resort Hotel 107
## 7207 Resort Hotel 301
## 7208 Resort Hotel 188
## 7209 Resort Hotel 42
## 7210 Resort Hotel 147
## 7211 Resort Hotel 26
## 7212 Resort Hotel 47
## 7213 Resort Hotel 37
## 7214 Resort Hotel 108
## 7215 Resort Hotel 108
## 7216 Resort Hotel 201
## 7217 Resort Hotel 154
## 7218 Resort Hotel 292
## 7219 Resort Hotel 120
## 7220 Resort Hotel 322
## 7221 Resort Hotel 159
## 7222 Resort Hotel 159
## 7223 Resort Hotel 292
## 7224 Resort Hotel 44
## 7225 Resort Hotel 38
## 7226 Resort Hotel 36
## 7227 Resort Hotel 22
## 7228 Resort Hotel 43
## 7229 Resort Hotel 124
## 7230 Resort Hotel 324
## 7231 Resort Hotel 6
## 7232 Resort Hotel 59
## 7233 Resort Hotel 191
## 7234 Resort Hotel 109
## 7235 Resort Hotel 307
## 7236 Resort Hotel 46
## 7237 Resort Hotel 46
## 7238 Resort Hotel 46
## 7239 Resort Hotel 121
## 7240 Resort Hotel 151
## 7241 Resort Hotel 187
## 7242 Resort Hotel 35
## 7243 Resort Hotel 14
## 7244 Resort Hotel 192
## 7245 Resort Hotel 150
## 7246 Resort Hotel 129
## 7247 Resort Hotel 26
## 7248 Resort Hotel 129
## 7249 Resort Hotel 151
## 7250 Resort Hotel 162
## 7251 Resort Hotel 228
## 7252 Resort Hotel 142
## 7253 Resort Hotel 199
## 7254 Resort Hotel 161
## 7255 Resort Hotel 161
## 7256 Resort Hotel 161
## 7257 Resort Hotel 125
## 7258 Resort Hotel 108
## 7259 Resort Hotel 67
## 7260 Resort Hotel 87
## 7261 Resort Hotel 87
## 7262 Resort Hotel 141
## 7263 Resort Hotel 9
## 7264 Resort Hotel 16
## 7265 Resort Hotel 186
## 7266 Resort Hotel 133
## 7267 Resort Hotel 187
## 7268 Resort Hotel 96
## 7269 Resort Hotel 153
## 7270 Resort Hotel 153
## 7271 Resort Hotel 148
## 7272 Resort Hotel 148
## 7273 Resort Hotel 199
## 7274 Resort Hotel 201
## 7275 Resort Hotel 265
## 7276 Resort Hotel 285
## 7277 Resort Hotel 285
## 7278 Resort Hotel 147
## 7279 Resort Hotel 270
## 7280 Resort Hotel 173
## 7281 Resort Hotel 141
## 7282 Resort Hotel 247
## 7283 Resort Hotel 247
## 7284 Resort Hotel 78
## 7285 Resort Hotel 167
## 7286 Resort Hotel 194
## 7287 Resort Hotel 28
## 7288 Resort Hotel 180
## 7289 Resort Hotel 179
## 7290 Resort Hotel 243
## 7291 Resort Hotel 194
## 7292 Resort Hotel 152
## 7293 Resort Hotel 180
## 7294 Resort Hotel 177
## 7295 Resort Hotel 194
## 7296 Resort Hotel 180
## 7297 Resort Hotel 150
## 7298 Resort Hotel 163
## 7299 Resort Hotel 265
## 7300 Resort Hotel 149
## 7301 Resort Hotel 161
## 7302 Resort Hotel 158
## 7303 Resort Hotel 209
## 7304 Resort Hotel 127
## 7305 Resort Hotel 5
## 7306 Resort Hotel 197
## 7307 Resort Hotel 210
## 7308 Resort Hotel 56
## 7309 Resort Hotel 56
## 7310 Resort Hotel 29
## 7311 Resort Hotel 152
## 7312 Resort Hotel 274
## 7313 Resort Hotel 152
## 7314 Resort Hotel 29
## 7315 Resort Hotel 274
## 7316 Resort Hotel 36
## 7317 Resort Hotel 55
## 7318 Resort Hotel 220
## 7319 Resort Hotel 434
## 7320 Resort Hotel 190
## 7321 Resort Hotel 215
## 7322 Resort Hotel 48
## 7323 Resort Hotel 209
## 7324 Resort Hotel 208
## 7325 Resort Hotel 58
## 7326 Resort Hotel 58
## 7327 Resort Hotel 15
## 7328 Resort Hotel 16
## 7329 Resort Hotel 143
## 7330 Resort Hotel 143
## 7331 Resort Hotel 267
## 7332 Resort Hotel 143
## 7333 Resort Hotel 169
## 7334 Resort Hotel 162
## 7335 Resort Hotel 247
## 7336 Resort Hotel 24
## 7337 Resort Hotel 23
## 7338 Resort Hotel 44
## 7339 Resort Hotel 104
## 7340 Resort Hotel 349
## 7341 Resort Hotel 349
## 7342 Resort Hotel 157
## 7343 Resort Hotel 199
## 7344 Resort Hotel 64
## 7345 Resort Hotel 93
## 7346 Resort Hotel 91
## 7347 Resort Hotel 98
## 7348 Resort Hotel 100
## 7349 Resort Hotel 0
## 7350 Resort Hotel 116
## 7351 Resort Hotel 52
## 7352 Resort Hotel 145
## 7353 Resort Hotel 96
## 7354 Resort Hotel 96
## 7355 Resort Hotel 20
## 7356 Resort Hotel 105
## 7357 Resort Hotel 151
## 7358 Resort Hotel 44
## 7359 Resort Hotel 47
## 7360 Resort Hotel 210
## 7361 Resort Hotel 156
## 7362 Resort Hotel 156
## 7363 Resort Hotel 162
## 7364 Resort Hotel 149
## 7365 Resort Hotel 149
## 7366 Resort Hotel 149
## 7367 Resort Hotel 149
## 7368 Resort Hotel 177
## 7369 Resort Hotel 105
## 7370 Resort Hotel 4
## 7371 Resort Hotel 33
## 7372 Resort Hotel 199
## 7373 Resort Hotel 221
## 7374 Resort Hotel 33
## 7375 Resort Hotel 155
## 7376 Resort Hotel 156
## 7377 Resort Hotel 90
## 7378 Resort Hotel 16
## 7379 Resort Hotel 76
## 7380 Resort Hotel 157
## 7381 Resort Hotel 357
## 7382 Resort Hotel 325
## 7383 Resort Hotel 100
## 7384 Resort Hotel 168
## 7385 Resort Hotel 48
## 7386 Resort Hotel 168
## 7387 Resort Hotel 248
## 7388 Resort Hotel 187
## 7389 Resort Hotel 125
## 7390 Resort Hotel 47
## 7391 Resort Hotel 1
## 7392 Resort Hotel 1
## 7393 Resort Hotel 44
## 7394 Resort Hotel 9
## 7395 Resort Hotel 290
## 7396 Resort Hotel 98
## 7397 Resort Hotel 91
## 7398 Resort Hotel 52
## 7399 Resort Hotel 148
## 7400 Resort Hotel 167
## 7401 Resort Hotel 148
## 7402 Resort Hotel 91
## 7403 Resort Hotel 208
## 7404 Resort Hotel 139
## 7405 Resort Hotel 139
## 7406 Resort Hotel 139
## 7407 Resort Hotel 139
## 7408 Resort Hotel 141
## 7409 Resort Hotel 161
## 7410 Resort Hotel 257
## 7411 Resort Hotel 245
## 7412 Resort Hotel 290
## 7413 Resort Hotel 329
## 7414 Resort Hotel 236
## 7415 Resort Hotel 60
## 7416 Resort Hotel 60
## 7417 Resort Hotel 22
## 7418 Resort Hotel 22
## 7419 Resort Hotel 60
## 7420 Resort Hotel 13
## 7421 Resort Hotel 150
## 7422 Resort Hotel 55
## 7423 Resort Hotel 113
## 7424 Resort Hotel 30
## 7425 Resort Hotel 346
## 7426 Resort Hotel 161
## 7427 Resort Hotel 157
## 7428 Resort Hotel 119
## 7429 Resort Hotel 201
## 7430 Resort Hotel 65
## 7431 Resort Hotel 126
## 7432 Resort Hotel 201
## 7433 Resort Hotel 157
## 7434 Resort Hotel 181
## 7435 Resort Hotel 160
## 7436 Resort Hotel 86
## 7437 Resort Hotel 179
## 7438 Resort Hotel 169
## 7439 Resort Hotel 179
## 7440 Resort Hotel 329
## 7441 Resort Hotel 83
## 7442 Resort Hotel 308
## 7443 Resort Hotel 182
## 7444 Resort Hotel 217
## 7445 Resort Hotel 112
## 7446 Resort Hotel 55
## 7447 Resort Hotel 36
## 7448 Resort Hotel 317
## 7449 Resort Hotel 208
## 7450 Resort Hotel 155
## 7451 Resort Hotel 155
## 7452 Resort Hotel 13
## 7453 Resort Hotel 155
## 7454 Resort Hotel 155
## 7455 Resort Hotel 42
## 7456 Resort Hotel 155
## 7457 Resort Hotel 155
## 7458 Resort Hotel 278
## 7459 Resort Hotel 153
## 7460 Resort Hotel 205
## 7461 Resort Hotel 153
## 7462 Resort Hotel 146
## 7463 Resort Hotel 217
## 7464 Resort Hotel 149
## 7465 Resort Hotel 314
## 7466 Resort Hotel 76
## 7467 Resort Hotel 127
## 7468 Resort Hotel 132
## 7469 Resort Hotel 132
## 7470 Resort Hotel 145
## 7471 Resort Hotel 12
## 7472 Resort Hotel 86
## 7473 Resort Hotel 12
## 7474 Resort Hotel 28
## 7475 Resort Hotel 139
## 7476 Resort Hotel 18
## 7477 Resort Hotel 139
## 7478 Resort Hotel 48
## 7479 Resort Hotel 55
## 7480 Resort Hotel 69
## 7481 Resort Hotel 332
## 7482 Resort Hotel 338
## 7483 Resort Hotel 197
## 7484 Resort Hotel 199
## 7485 Resort Hotel 239
## 7486 Resort Hotel 13
## 7487 Resort Hotel 51
## 7488 Resort Hotel 304
## 7489 Resort Hotel 152
## 7490 Resort Hotel 13
## 7491 Resort Hotel 68
## 7492 Resort Hotel 121
## 7493 Resort Hotel 87
## 7494 Resort Hotel 118
## 7495 Resort Hotel 129
## 7496 Resort Hotel 138
## 7497 Resort Hotel 23
## 7498 Resort Hotel 21
## 7499 Resort Hotel 57
## 7500 Resort Hotel 23
## 7501 Resort Hotel 19
## 7502 Resort Hotel 138
## 7503 Resort Hotel 92
## 7504 Resort Hotel 41
## 7505 Resort Hotel 51
## 7506 Resort Hotel 116
## 7507 Resort Hotel 343
## 7508 Resort Hotel 291
## 7509 Resort Hotel 10
## 7510 Resort Hotel 114
## 7511 Resort Hotel 69
## 7512 Resort Hotel 53
## 7513 Resort Hotel 69
## 7514 Resort Hotel 113
## 7515 Resort Hotel 140
## 7516 Resort Hotel 91
## 7517 Resort Hotel 113
## 7518 Resort Hotel 8
## 7519 Resort Hotel 140
## 7520 Resort Hotel 99
## 7521 Resort Hotel 24
## 7522 Resort Hotel 121
## 7523 Resort Hotel 131
## 7524 Resort Hotel 345
## 7525 Resort Hotel 107
## 7526 Resort Hotel 360
## 7527 Resort Hotel 348
## 7528 Resort Hotel 166
## 7529 Resort Hotel 19
## 7530 Resort Hotel 61
## 7531 Resort Hotel 61
## 7532 Resort Hotel 166
## 7533 Resort Hotel 10
## 7534 Resort Hotel 57
## 7535 Resort Hotel 85
## 7536 Resort Hotel 162
## 7537 Resort Hotel 110
## 7538 Resort Hotel 82
## 7539 Resort Hotel 162
## 7540 Resort Hotel 82
## 7541 Resort Hotel 169
## 7542 Resort Hotel 141
## 7543 Resort Hotel 169
## 7544 Resort Hotel 105
## 7545 Resort Hotel 133
## 7546 Resort Hotel 12
## 7547 Resort Hotel 60
## 7548 Resort Hotel 3
## 7549 Resort Hotel 49
## 7550 Resort Hotel 123
## 7551 Resort Hotel 63
## 7552 Resort Hotel 87
## 7553 Resort Hotel 54
## 7554 Resort Hotel 95
## 7555 Resort Hotel 95
## 7556 Resort Hotel 212
## 7557 Resort Hotel 85
## 7558 Resort Hotel 212
## 7559 Resort Hotel 212
## 7560 Resort Hotel 212
## 7561 Resort Hotel 212
## 7562 Resort Hotel 291
## 7563 Resort Hotel 291
## 7564 Resort Hotel 291
## 7565 Resort Hotel 291
## 7566 Resort Hotel 291
## 7567 Resort Hotel 135
## 7568 Resort Hotel 154
## 7569 Resort Hotel 348
## 7570 Resort Hotel 83
## 7571 Resort Hotel 175
## 7572 Resort Hotel 78
## 7573 Resort Hotel 175
## 7574 Resort Hotel 78
## 7575 Resort Hotel 20
## 7576 Resort Hotel 205
## 7577 Resort Hotel 78
## 7578 Resort Hotel 135
## 7579 Resort Hotel 222
## 7580 Resort Hotel 90
## 7581 Resort Hotel 54
## 7582 Resort Hotel 222
## 7583 Resort Hotel 200
## 7584 Resort Hotel 240
## 7585 Resort Hotel 96
## 7586 Resort Hotel 149
## 7587 Resort Hotel 240
## 7588 Resort Hotel 166
## 7589 Resort Hotel 201
## 7590 Resort Hotel 196
## 7591 Resort Hotel 146
## 7592 Resort Hotel 158
## 7593 Resort Hotel 200
## 7594 Resort Hotel 119
## 7595 Resort Hotel 119
## 7596 Resort Hotel 0
## 7597 Resort Hotel 12
## 7598 Resort Hotel 100
## 7599 Resort Hotel 10
## 7600 Resort Hotel 142
## 7601 Resort Hotel 28
## 7602 Resort Hotel 75
## 7603 Resort Hotel 292
## 7604 Resort Hotel 293
## 7605 Resort Hotel 79
## 7606 Resort Hotel 28
## 7607 Resort Hotel 75
## 7608 Resort Hotel 75
## 7609 Resort Hotel 61
## 7610 Resort Hotel 155
## 7611 Resort Hotel 183
## 7612 Resort Hotel 167
## 7613 Resort Hotel 168
## 7614 Resort Hotel 55
## 7615 Resort Hotel 127
## 7616 Resort Hotel 245
## 7617 Resort Hotel 195
## 7618 Resort Hotel 143
## 7619 Resort Hotel 143
## 7620 Resort Hotel 143
## 7621 Resort Hotel 106
## 7622 Resort Hotel 23
## 7623 Resort Hotel 137
## 7624 Resort Hotel 22
## 7625 Resort Hotel 23
## 7626 Resort Hotel 16
## 7627 Resort Hotel 56
## 7628 Resort Hotel 78
## 7629 Resort Hotel 79
## 7630 Resort Hotel 24
## 7631 Resort Hotel 187
## 7632 Resort Hotel 144
## 7633 Resort Hotel 112
## 7634 Resort Hotel 134
## 7635 Resort Hotel 26
## 7636 Resort Hotel 173
## 7637 Resort Hotel 180
## 7638 Resort Hotel 73
## 7639 Resort Hotel 3
## 7640 Resort Hotel 77
## 7641 Resort Hotel 51
## 7642 Resort Hotel 81
## 7643 Resort Hotel 27
## 7644 Resort Hotel 165
## 7645 Resort Hotel 165
## 7646 Resort Hotel 165
## 7647 Resort Hotel 165
## 7648 Resort Hotel 165
## 7649 Resort Hotel 16
## 7650 Resort Hotel 165
## 7651 Resort Hotel 149
## 7652 Resort Hotel 165
## 7653 Resort Hotel 165
## 7654 Resort Hotel 165
## 7655 Resort Hotel 29
## 7656 Resort Hotel 116
## 7657 Resort Hotel 14
## 7658 Resort Hotel 54
## 7659 Resort Hotel 86
## 7660 Resort Hotel 80
## 7661 Resort Hotel 360
## 7662 Resort Hotel 48
## 7663 Resort Hotel 159
## 7664 Resort Hotel 12
## 7665 Resort Hotel 59
## 7666 Resort Hotel 328
## 7667 Resort Hotel 70
## 7668 Resort Hotel 13
## 7669 Resort Hotel 174
## 7670 Resort Hotel 104
## 7671 Resort Hotel 166
## 7672 Resort Hotel 288
## 7673 Resort Hotel 0
## 7674 Resort Hotel 26
## 7675 Resort Hotel 26
## 7676 Resort Hotel 151
## 7677 Resort Hotel 140
## 7678 Resort Hotel 86
## 7679 Resort Hotel 86
## 7680 Resort Hotel 86
## 7681 Resort Hotel 190
## 7682 Resort Hotel 86
## 7683 Resort Hotel 32
## 7684 Resort Hotel 116
## 7685 Resort Hotel 100
## 7686 Resort Hotel 107
## 7687 Resort Hotel 227
## 7688 Resort Hotel 137
## 7689 Resort Hotel 185
## 7690 Resort Hotel 173
## 7691 Resort Hotel 131
## 7692 Resort Hotel 249
## 7693 Resort Hotel 193
## 7694 Resort Hotel 100
## 7695 Resort Hotel 100
## 7696 Resort Hotel 218
## 7697 Resort Hotel 165
## 7698 Resort Hotel 55
## 7699 Resort Hotel 17
## 7700 Resort Hotel 73
## 7701 Resort Hotel 200
## 7702 Resort Hotel 115
## 7703 Resort Hotel 115
## 7704 Resort Hotel 167
## 7705 Resort Hotel 305
## 7706 Resort Hotel 67
## 7707 Resort Hotel 367
## 7708 Resort Hotel 367
## 7709 Resort Hotel 6
## 7710 Resort Hotel 12
## 7711 Resort Hotel 45
## 7712 Resort Hotel 45
## 7713 Resort Hotel 42
## 7714 Resort Hotel 12
## 7715 Resort Hotel 259
## 7716 Resort Hotel 18
## 7717 Resort Hotel 77
## 7718 Resort Hotel 14
## 7719 Resort Hotel 54
## 7720 Resort Hotel 223
## 7721 Resort Hotel 306
## 7722 Resort Hotel 77
## 7723 Resort Hotel 60
## 7724 Resort Hotel 50
## 7725 Resort Hotel 50
## 7726 Resort Hotel 80
## 7727 Resort Hotel 192
## 7728 Resort Hotel 353
## 7729 Resort Hotel 144
## 7730 Resort Hotel 210
## 7731 Resort Hotel 210
## 7732 Resort Hotel 67
## 7733 Resort Hotel 80
## 7734 Resort Hotel 199
## 7735 Resort Hotel 59
## 7736 Resort Hotel 292
## 7737 Resort Hotel 299
## 7738 Resort Hotel 292
## 7739 Resort Hotel 41
## 7740 Resort Hotel 174
## 7741 Resort Hotel 92
## 7742 Resort Hotel 129
## 7743 Resort Hotel 14
## 7744 Resort Hotel 43
## 7745 Resort Hotel 47
## 7746 Resort Hotel 225
## 7747 Resort Hotel 54
## 7748 Resort Hotel 35
## 7749 Resort Hotel 62
## 7750 Resort Hotel 44
## 7751 Resort Hotel 137
## 7752 Resort Hotel 84
## 7753 Resort Hotel 15
## 7754 Resort Hotel 74
## 7755 Resort Hotel 90
## 7756 Resort Hotel 0
## 7757 Resort Hotel 6
## 7758 Resort Hotel 6
## 7759 Resort Hotel 12
## 7760 Resort Hotel 31
## 7761 Resort Hotel 0
## 7762 Resort Hotel 29
## 7763 Resort Hotel 31
## 7764 Resort Hotel 52
## 7765 Resort Hotel 92
## 7766 Resort Hotel 28
## 7767 Resort Hotel 44
## 7768 Resort Hotel 44
## 7769 Resort Hotel 80
## 7770 Resort Hotel 0
## 7771 Resort Hotel 234
## 7772 Resort Hotel 234
## 7773 Resort Hotel 57
## 7774 Resort Hotel 27
## 7775 Resort Hotel 12
## 7776 Resort Hotel 51
## 7777 Resort Hotel 77
## 7778 Resort Hotel 161
## 7779 Resort Hotel 121
## 7780 Resort Hotel 140
## 7781 Resort Hotel 73
## 7782 Resort Hotel 228
## 7783 Resort Hotel 145
## 7784 Resort Hotel 74
## 7785 Resort Hotel 95
## 7786 Resort Hotel 76
## 7787 Resort Hotel 81
## 7788 Resort Hotel 14
## 7789 Resort Hotel 102
## 7790 Resort Hotel 164
## 7791 Resort Hotel 373
## 7792 Resort Hotel 81
## 7793 Resort Hotel 185
## 7794 Resort Hotel 41
## 7795 Resort Hotel 73
## 7796 Resort Hotel 41
## 7797 Resort Hotel 42
## 7798 Resort Hotel 32
## 7799 Resort Hotel 178
## 7800 Resort Hotel 219
## 7801 Resort Hotel 225
## 7802 Resort Hotel 90
## 7803 Resort Hotel 225
## 7804 Resort Hotel 219
## 7805 Resort Hotel 213
## 7806 Resort Hotel 94
## 7807 Resort Hotel 206
## 7808 Resort Hotel 172
## 7809 Resort Hotel 206
## 7810 Resort Hotel 40
## 7811 Resort Hotel 219
## 7812 Resort Hotel 374
## 7813 Resort Hotel 226
## 7814 Resort Hotel 26
## 7815 Resort Hotel 8
## 7816 Resort Hotel 115
## 7817 Resort Hotel 139
## 7818 Resort Hotel 128
## 7819 Resort Hotel 115
## 7820 Resort Hotel 21
## 7821 Resort Hotel 23
## 7822 Resort Hotel 48
## 7823 Resort Hotel 123
## 7824 Resort Hotel 208
## 7825 Resort Hotel 333
## 7826 Resort Hotel 328
## 7827 Resort Hotel 333
## 7828 Resort Hotel 333
## 7829 Resort Hotel 0
## 7830 Resort Hotel 116
## 7831 Resort Hotel 168
## 7832 Resort Hotel 124
## 7833 Resort Hotel 84
## 7834 Resort Hotel 95
## 7835 Resort Hotel 246
## 7836 Resort Hotel 145
## 7837 Resort Hotel 25
## 7838 Resort Hotel 236
## 7839 Resort Hotel 45
## 7840 Resort Hotel 222
## 7841 Resort Hotel 109
## 7842 Resort Hotel 160
## 7843 Resort Hotel 52
## 7844 Resort Hotel 196
## 7845 Resort Hotel 294
## 7846 Resort Hotel 314
## 7847 Resort Hotel 406
## 7848 Resort Hotel 406
## 7849 Resort Hotel 406
## 7850 Resort Hotel 406
## 7851 Resort Hotel 406
## 7852 Resort Hotel 23
## 7853 Resort Hotel 0
## 7854 Resort Hotel 14
## 7855 Resort Hotel 117
## 7856 Resort Hotel 112
## 7857 Resort Hotel 127
## 7858 Resort Hotel 38
## 7859 Resort Hotel 76
## 7860 Resort Hotel 38
## 7861 Resort Hotel 39
## 7862 Resort Hotel 269
## 7863 Resort Hotel 187
## 7864 Resort Hotel 88
## 7865 Resort Hotel 230
## 7866 Resort Hotel 223
## 7867 Resort Hotel 400
## 7868 Resort Hotel 326
## 7869 Resort Hotel 340
## 7870 Resort Hotel 315
## 7871 Resort Hotel 1
## 7872 Resort Hotel 83
## 7873 Resort Hotel 127
## 7874 Resort Hotel 239
## 7875 Resort Hotel 34
## 7876 Resort Hotel 232
## 7877 Resort Hotel 162
## 7878 Resort Hotel 194
## 7879 Resort Hotel 327
## 7880 Resort Hotel 346
## 7881 Resort Hotel 43
## 7882 Resort Hotel 346
## 7883 Resort Hotel 346
## 7884 Resort Hotel 22
## 7885 Resort Hotel 41
## 7886 Resort Hotel 239
## 7887 Resort Hotel 223
## 7888 Resort Hotel 144
## 7889 Resort Hotel 249
## 7890 Resort Hotel 226
## 7891 Resort Hotel 218
## 7892 Resort Hotel 169
## 7893 Resort Hotel 148
## 7894 Resort Hotel 226
## 7895 Resort Hotel 143
## 7896 Resort Hotel 158
## 7897 Resort Hotel 345
## 7898 Resort Hotel 303
## 7899 Resort Hotel 379
## 7900 Resort Hotel 282
## 7901 Resort Hotel 303
## 7902 Resort Hotel 223
## 7903 Resort Hotel 223
## 7904 Resort Hotel 223
## 7905 Resort Hotel 399
## 7906 Resort Hotel 282
## 7907 Resort Hotel 332
## 7908 Resort Hotel 52
## 7909 Resort Hotel 138
## 7910 Resort Hotel 19
## 7911 Resort Hotel 73
## 7912 Resort Hotel 103
## 7913 Resort Hotel 65
## 7914 Resort Hotel 138
## 7915 Resort Hotel 30
## 7916 Resort Hotel 121
## 7917 Resort Hotel 121
## 7918 Resort Hotel 36
## 7919 Resort Hotel 121
## 7920 Resort Hotel 241
## 7921 Resort Hotel 205
## 7922 Resort Hotel 156
## 7923 Resort Hotel 316
## 7924 Resort Hotel 265
## 7925 Resort Hotel 315
## 7926 Resort Hotel 315
## 7927 Resort Hotel 346
## 7928 Resort Hotel 315
## 7929 Resort Hotel 322
## 7930 Resort Hotel 265
## 7931 Resort Hotel 156
## 7932 Resort Hotel 241
## 7933 Resort Hotel 265
## 7934 Resort Hotel 241
## 7935 Resort Hotel 315
## 7936 Resort Hotel 361
## 7937 Resort Hotel 60
## 7938 Resort Hotel 20
## 7939 Resort Hotel 262
## 7940 Resort Hotel 262
## 7941 Resort Hotel 309
## 7942 Resort Hotel 233
## 7943 Resort Hotel 60
## 7944 Resort Hotel 341
## 7945 Resort Hotel 235
## 7946 Resort Hotel 304
## 7947 Resort Hotel 83
## 7948 Resort Hotel 60
## 7949 Resort Hotel 170
## 7950 Resort Hotel 170
## 7951 Resort Hotel 237
## 7952 Resort Hotel 19
## 7953 Resort Hotel 330
## 7954 Resort Hotel 226
## 7955 Resort Hotel 164
## 7956 Resort Hotel 230
## 7957 Resort Hotel 171
## 7958 Resort Hotel 283
## 7959 Resort Hotel 78
## 7960 Resort Hotel 347
## 7961 Resort Hotel 373
## 7962 Resort Hotel 361
## 7963 Resort Hotel 347
## 7964 Resort Hotel 46
## 7965 Resort Hotel 116
## 7966 Resort Hotel 10
## 7967 Resort Hotel 320
## 7968 Resort Hotel 77
## 7969 Resort Hotel 223
## 7970 Resort Hotel 183
## 7971 Resort Hotel 188
## 7972 Resort Hotel 183
## 7973 Resort Hotel 183
## 7974 Resort Hotel 304
## 7975 Resort Hotel 364
## 7976 Resort Hotel 203
## 7977 Resort Hotel 338
## 7978 Resort Hotel 235
## 7979 Resort Hotel 301
## 7980 Resort Hotel 301
## 7981 Resort Hotel 168
## 7982 Resort Hotel 217
## 7983 Resort Hotel 144
## 7984 Resort Hotel 242
## 7985 Resort Hotel 354
## 7986 Resort Hotel 305
## 7987 Resort Hotel 235
## 7988 Resort Hotel 12
## 7989 Resort Hotel 211
## 7990 Resort Hotel 211
## 7991 Resort Hotel 211
## 7992 Resort Hotel 211
## 7993 Resort Hotel 238
## 7994 Resort Hotel 238
## 7995 Resort Hotel 238
## 7996 Resort Hotel 238
## 7997 Resort Hotel 1
## 7998 Resort Hotel 211
## 7999 Resort Hotel 211
## 8000 Resort Hotel 238
## 8001 Resort Hotel 238
## 8002 Resort Hotel 238
## 8003 Resort Hotel 211
## 8004 Resort Hotel 211
## 8005 Resort Hotel 238
## 8006 Resort Hotel 238
## 8007 Resort Hotel 211
## 8008 Resort Hotel 211
## 8009 Resort Hotel 238
## 8010 Resort Hotel 238
## 8011 Resort Hotel 238
## 8012 Resort Hotel 211
## 8013 Resort Hotel 211
## 8014 Resort Hotel 211
## 8015 Resort Hotel 211
## 8016 Resort Hotel 211
## 8017 Resort Hotel 1
## 8018 Resort Hotel 238
## 8019 Resort Hotel 238
## 8020 Resort Hotel 238
## 8021 Resort Hotel 238
## 8022 Resort Hotel 238
## 8023 Resort Hotel 238
## 8024 Resort Hotel 238
## 8025 Resort Hotel 211
## 8026 Resort Hotel 211
## 8027 Resort Hotel 211
## 8028 Resort Hotel 238
## 8029 Resort Hotel 238
## 8030 Resort Hotel 238
## 8031 Resort Hotel 238
## 8032 Resort Hotel 211
## 8033 Resort Hotel 211
## 8034 Resort Hotel 211
## 8035 Resort Hotel 211
## 8036 Resort Hotel 211
## 8037 Resort Hotel 211
## 8038 Resort Hotel 211
## 8039 Resort Hotel 238
## 8040 Resort Hotel 238
## 8041 Resort Hotel 130
## 8042 Resort Hotel 348
## 8043 Resort Hotel 29
## 8044 Resort Hotel 314
## 8045 Resort Hotel 208
## 8046 Resort Hotel 385
## 8047 Resort Hotel 355
## 8048 Resort Hotel 27
## 8049 Resort Hotel 13
## 8050 Resort Hotel 145
## 8051 Resort Hotel 116
## 8052 Resort Hotel 50
## 8053 Resort Hotel 50
## 8054 Resort Hotel 218
## 8055 Resort Hotel 293
## 8056 Resort Hotel 244
## 8057 Resort Hotel 363
## 8058 Resort Hotel 360
## 8059 Resort Hotel 241
## 8060 Resort Hotel 358
## 8061 Resort Hotel 311
## 8062 Resort Hotel 3
## 8063 Resort Hotel 10
## 8064 Resort Hotel 43
## 8065 Resort Hotel 233
## 8066 Resort Hotel 0
## 8067 Resort Hotel 43
## 8068 Resort Hotel 234
## 8069 Resort Hotel 80
## 8070 Resort Hotel 18
## 8071 Resort Hotel 38
## 8072 Resort Hotel 333
## 8073 Resort Hotel 163
## 8074 Resort Hotel 219
## 8075 Resort Hotel 219
## 8076 Resort Hotel 219
## 8077 Resort Hotel 219
## 8078 Resort Hotel 129
## 8079 Resort Hotel 228
## 8080 Resort Hotel 57
## 8081 Resort Hotel 57
## 8082 Resort Hotel 311
## 8083 Resort Hotel 338
## 8084 Resort Hotel 214
## 8085 Resort Hotel 118
## 8086 Resort Hotel 305
## 8087 Resort Hotel 247
## 8088 Resort Hotel 33
## 8089 Resort Hotel 311
## 8090 Resort Hotel 125
## 8091 Resort Hotel 88
## 8092 Resort Hotel 75
## 8093 Resort Hotel 75
## 8094 Resort Hotel 17
## 8095 Resort Hotel 47
## 8096 Resort Hotel 75
## 8097 Resort Hotel 53
## 8098 Resort Hotel 60
## 8099 Resort Hotel 34
## 8100 Resort Hotel 195
## 8101 Resort Hotel 111
## 8102 Resort Hotel 91
## 8103 Resort Hotel 19
## 8104 Resort Hotel 69
## 8105 Resort Hotel 55
## 8106 Resort Hotel 26
## 8107 Resort Hotel 47
## 8108 Resort Hotel 69
## 8109 Resort Hotel 65
## 8110 Resort Hotel 83
## 8111 Resort Hotel 247
## 8112 Resort Hotel 118
## 8113 Resort Hotel 244
## 8114 Resort Hotel 19
## 8115 Resort Hotel 333
## 8116 Resort Hotel 332
## 8117 Resort Hotel 24
## 8118 Resort Hotel 69
## 8119 Resort Hotel 174
## 8120 Resort Hotel 296
## 8121 Resort Hotel 175
## 8122 Resort Hotel 271
## 8123 Resort Hotel 422
## 8124 Resort Hotel 272
## 8125 Resort Hotel 390
## 8126 Resort Hotel 257
## 8127 Resort Hotel 236
## 8128 Resort Hotel 390
## 8129 Resort Hotel 245
## 8130 Resort Hotel 236
## 8131 Resort Hotel 15
## 8132 Resort Hotel 15
## 8133 Resort Hotel 193
## 8134 Resort Hotel 251
## 8135 Resort Hotel 334
## 8136 Resort Hotel 239
## 8137 Resort Hotel 356
## 8138 Resort Hotel 0
## 8139 Resort Hotel 0
## 8140 Resort Hotel 0
## 8141 Resort Hotel 36
## 8142 Resort Hotel 327
## 8143 Resort Hotel 327
## 8144 Resort Hotel 327
## 8145 Resort Hotel 327
## 8146 Resort Hotel 327
## 8147 Resort Hotel 327
## 8148 Resort Hotel 193
## 8149 Resort Hotel 229
## 8150 Resort Hotel 335
## 8151 Resort Hotel 335
## 8152 Resort Hotel 335
## 8153 Resort Hotel 335
## 8154 Resort Hotel 335
## 8155 Resort Hotel 335
## 8156 Resort Hotel 327
## 8157 Resort Hotel 336
## 8158 Resort Hotel 336
## 8159 Resort Hotel 336
## 8160 Resort Hotel 130
## 8161 Resort Hotel 336
## 8162 Resort Hotel 336
## 8163 Resort Hotel 336
## 8164 Resort Hotel 336
## 8165 Resort Hotel 336
## 8166 Resort Hotel 336
## 8167 Resort Hotel 336
## 8168 Resort Hotel 336
## 8169 Resort Hotel 336
## 8170 Resort Hotel 336
## 8171 Resort Hotel 336
## 8172 Resort Hotel 336
## 8173 Resort Hotel 336
## 8174 Resort Hotel 130
## 8175 Resort Hotel 336
## 8176 Resort Hotel 336
## 8177 Resort Hotel 336
## 8178 Resort Hotel 336
## 8179 Resort Hotel 336
## 8180 Resort Hotel 51
## 8181 Resort Hotel 336
## 8182 Resort Hotel 336
## 8183 Resort Hotel 336
## 8184 Resort Hotel 336
## 8185 Resort Hotel 336
## 8186 Resort Hotel 336
## 8187 Resort Hotel 336
## 8188 Resort Hotel 336
## 8189 Resort Hotel 336
## 8190 Resort Hotel 336
## 8191 Resort Hotel 336
## 8192 Resort Hotel 370
## 8193 Resort Hotel 261
## 8194 Resort Hotel 246
## 8195 Resort Hotel 261
## 8196 Resort Hotel 261
## 8197 Resort Hotel 363
## 8198 Resort Hotel 170
## 8199 Resort Hotel 350
## 8200 Resort Hotel 338
## 8201 Resort Hotel 394
## 8202 Resort Hotel 242
## 8203 Resort Hotel 170
## 8204 Resort Hotel 255
## 8205 Resort Hotel 347
## 8206 Resort Hotel 7
## 8207 Resort Hotel 245
## 8208 Resort Hotel 245
## 8209 Resort Hotel 167
## 8210 Resort Hotel 33
## 8211 Resort Hotel 49
## 8212 Resort Hotel 51
## 8213 Resort Hotel 29
## 8214 Resort Hotel 55
## 8215 Resort Hotel 244
## 8216 Resort Hotel 55
## 8217 Resort Hotel 206
## 8218 Resort Hotel 53
## 8219 Resort Hotel 248
## 8220 Resort Hotel 128
## 8221 Resort Hotel 376
## 8222 Resort Hotel 376
## 8223 Resort Hotel 342
## 8224 Resort Hotel 376
## 8225 Resort Hotel 375
## 8226 Resort Hotel 6
## 8227 Resort Hotel 38
## 8228 Resort Hotel 33
## 8229 Resort Hotel 60
## 8230 Resort Hotel 144
## 8231 Resort Hotel 215
## 8232 Resort Hotel 60
## 8233 Resort Hotel 61
## 8234 Resort Hotel 196
## 8235 Resort Hotel 189
## 8236 Resort Hotel 152
## 8237 Resort Hotel 76
## 8238 Resort Hotel 171
## 8239 Resort Hotel 252
## 8240 Resort Hotel 200
## 8241 Resort Hotel 199
## 8242 Resort Hotel 206
## 8243 Resort Hotel 243
## 8244 Resort Hotel 243
## 8245 Resort Hotel 215
## 8246 Resort Hotel 243
## 8247 Resort Hotel 243
## 8248 Resort Hotel 297
## 8249 Resort Hotel 243
## 8250 Resort Hotel 46
## 8251 Resort Hotel 42
## 8252 Resort Hotel 139
## 8253 Resort Hotel 244
## 8254 Resort Hotel 328
## 8255 Resort Hotel 244
## 8256 Resort Hotel 244
## 8257 Resort Hotel 244
## 8258 Resort Hotel 244
## 8259 Resort Hotel 244
## 8260 Resort Hotel 244
## 8261 Resort Hotel 223
## 8262 Resort Hotel 244
## 8263 Resort Hotel 244
## 8264 Resort Hotel 328
## 8265 Resort Hotel 244
## 8266 Resort Hotel 244
## 8267 Resort Hotel 244
## 8268 Resort Hotel 244
## 8269 Resort Hotel 328
## 8270 Resort Hotel 343
## 8271 Resort Hotel 343
## 8272 Resort Hotel 385
## 8273 Resort Hotel 385
## 8274 Resort Hotel 385
## 8275 Resort Hotel 397
## 8276 Resort Hotel 397
## 8277 Resort Hotel 385
## 8278 Resort Hotel 385
## 8279 Resort Hotel 385
## 8280 Resort Hotel 397
## 8281 Resort Hotel 397
## 8282 Resort Hotel 397
## 8283 Resort Hotel 343
## 8284 Resort Hotel 385
## 8285 Resort Hotel 385
## 8286 Resort Hotel 397
## 8287 Resort Hotel 397
## 8288 Resort Hotel 343
## 8289 Resort Hotel 343
## 8290 Resort Hotel 343
## 8291 Resort Hotel 343
## 8292 Resort Hotel 119
## 8293 Resort Hotel 168
## 8294 Resort Hotel 202
## 8295 Resort Hotel 197
## 8296 Resort Hotel 197
## 8297 Resort Hotel 197
## 8298 Resort Hotel 197
## 8299 Resort Hotel 197
## 8300 Resort Hotel 197
## 8301 Resort Hotel 181
## 8302 Resort Hotel 329
## 8303 Resort Hotel 164
## 8304 Resort Hotel 260
## 8305 Resort Hotel 397
## 8306 Resort Hotel 397
## 8307 Resort Hotel 397
## 8308 Resort Hotel 385
## 8309 Resort Hotel 385
## 8310 Resort Hotel 385
## 8311 Resort Hotel 385
## 8312 Resort Hotel 385
## 8313 Resort Hotel 397
## 8314 Resort Hotel 397
## 8315 Resort Hotel 397
## 8316 Resort Hotel 385
## 8317 Resort Hotel 385
## 8318 Resort Hotel 343
## 8319 Resort Hotel 343
## 8320 Resort Hotel 343
## 8321 Resort Hotel 343
## 8322 Resort Hotel 397
## 8323 Resort Hotel 397
## 8324 Resort Hotel 385
## 8325 Resort Hotel 385
## 8326 Resort Hotel 96
## 8327 Resort Hotel 343
## 8328 Resort Hotel 343
## 8329 Resort Hotel 397
## 8330 Resort Hotel 397
## 8331 Resort Hotel 385
## 8332 Resort Hotel 385
## 8333 Resort Hotel 385
## 8334 Resort Hotel 18
## 8335 Resort Hotel 232
## 8336 Resort Hotel 18
## 8337 Resort Hotel 14
## 8338 Resort Hotel 18
## 8339 Resort Hotel 22
## 8340 Resort Hotel 174
## 8341 Resort Hotel 191
## 8342 Resort Hotel 195
## 8343 Resort Hotel 191
## 8344 Resort Hotel 13
## 8345 Resort Hotel 42
## 8346 Resort Hotel 27
## 8347 Resort Hotel 27
## 8348 Resort Hotel 41
## 8349 Resort Hotel 63
## 8350 Resort Hotel 39
## 8351 Resort Hotel 38
## 8352 Resort Hotel 29
## 8353 Resort Hotel 31
## 8354 Resort Hotel 44
## 8355 Resort Hotel 36
## 8356 Resort Hotel 197
## 8357 Resort Hotel 44
## 8358 Resort Hotel 168
## 8359 Resort Hotel 338
## 8360 Resort Hotel 177
## 8361 Resort Hotel 63
## 8362 Resort Hotel 155
## 8363 Resort Hotel 168
## 8364 Resort Hotel 73
## 8365 Resort Hotel 22
## 8366 Resort Hotel 289
## 8367 Resort Hotel 289
## 8368 Resort Hotel 2
## 8369 Resort Hotel 289
## 8370 Resort Hotel 2
## 8371 Resort Hotel 289
## 8372 Resort Hotel 289
## 8373 Resort Hotel 289
## 8374 Resort Hotel 289
## 8375 Resort Hotel 176
## 8376 Resort Hotel 289
## 8377 Resort Hotel 23
## 8378 Resort Hotel 56
## 8379 Resort Hotel 29
## 8380 Resort Hotel 49
## 8381 Resort Hotel 29
## 8382 Resort Hotel 19
## 8383 Resort Hotel 71
## 8384 Resort Hotel 70
## 8385 Resort Hotel 20
## 8386 Resort Hotel 140
## 8387 Resort Hotel 344
## 8388 Resort Hotel 344
## 8389 Resort Hotel 310
## 8390 Resort Hotel 20
## 8391 Resort Hotel 14
## 8392 Resort Hotel 56
## 8393 Resort Hotel 53
## 8394 Resort Hotel 177
## 8395 Resort Hotel 44
## 8396 Resort Hotel 542
## 8397 Resort Hotel 19
## 8398 Resort Hotel 542
## 8399 Resort Hotel 347
## 8400 Resort Hotel 542
## 8401 Resort Hotel 542
## 8402 Resort Hotel 168
## 8403 Resort Hotel 339
## 8404 Resort Hotel 339
## 8405 Resort Hotel 339
## 8406 Resort Hotel 339
## 8407 Resort Hotel 339
## 8408 Resort Hotel 339
## 8409 Resort Hotel 339
## 8410 Resort Hotel 339
## 8411 Resort Hotel 339
## 8412 Resort Hotel 339
## 8413 Resort Hotel 339
## 8414 Resort Hotel 339
## 8415 Resort Hotel 339
## 8416 Resort Hotel 339
## 8417 Resort Hotel 339
## 8418 Resort Hotel 333
## 8419 Resort Hotel 354
## 8420 Resort Hotel 542
## 8421 Resort Hotel 137
## 8422 Resort Hotel 542
## 8423 Resort Hotel 542
## 8424 Resort Hotel 542
## 8425 Resort Hotel 98
## 8426 Resort Hotel 542
## 8427 Resort Hotel 143
## 8428 Resort Hotel 333
## 8429 Resort Hotel 542
## 8430 Resort Hotel 168
## 8431 Resort Hotel 148
## 8432 Resort Hotel 36
## 8433 Resort Hotel 129
## 8434 Resort Hotel 167
## 8435 Resort Hotel 173
## 8436 Resort Hotel 167
## 8437 Resort Hotel 173
## 8438 Resort Hotel 342
## 8439 Resort Hotel 342
## 8440 Resort Hotel 96
## 8441 Resort Hotel 98
## 8442 Resort Hotel 131
## 8443 Resort Hotel 63
## 8444 Resort Hotel 63
## 8445 Resort Hotel 63
## 8446 Resort Hotel 63
## 8447 Resort Hotel 229
## 8448 Resort Hotel 263
## 8449 Resort Hotel 127
## 8450 Resort Hotel 161
## 8451 Resort Hotel 136
## 8452 Resort Hotel 94
## 8453 Resort Hotel 342
## 8454 Resort Hotel 69
## 8455 Resort Hotel 14
## 8456 Resort Hotel 55
## 8457 Resort Hotel 231
## 8458 Resort Hotel 231
## 8459 Resort Hotel 231
## 8460 Resort Hotel 20
## 8461 Resort Hotel 231
## 8462 Resort Hotel 231
## 8463 Resort Hotel 231
## 8464 Resort Hotel 58
## 8465 Resort Hotel 231
## 8466 Resort Hotel 231
## 8467 Resort Hotel 231
## 8468 Resort Hotel 231
## 8469 Resort Hotel 231
## 8470 Resort Hotel 231
## 8471 Resort Hotel 231
## 8472 Resort Hotel 231
## 8473 Resort Hotel 132
## 8474 Resort Hotel 48
## 8475 Resort Hotel 35
## 8476 Resort Hotel 24
## 8477 Resort Hotel 174
## 8478 Resort Hotel 101
## 8479 Resort Hotel 184
## 8480 Resort Hotel 71
## 8481 Resort Hotel 71
## 8482 Resort Hotel 269
## 8483 Resort Hotel 65
## 8484 Resort Hotel 24
## 8485 Resort Hotel 65
## 8486 Resort Hotel 157
## 8487 Resort Hotel 157
## 8488 Resort Hotel 157
## 8489 Resort Hotel 157
## 8490 Resort Hotel 207
## 8491 Resort Hotel 157
## 8492 Resort Hotel 157
## 8493 Resort Hotel 157
## 8494 Resort Hotel 157
## 8495 Resort Hotel 157
## 8496 Resort Hotel 157
## 8497 Resort Hotel 157
## 8498 Resort Hotel 157
## 8499 Resort Hotel 157
## 8500 Resort Hotel 157
## 8501 Resort Hotel 157
## 8502 Resort Hotel 157
## 8503 Resort Hotel 48
## 8504 Resort Hotel 68
## 8505 Resort Hotel 319
## 8506 Resort Hotel 403
## 8507 Resort Hotel 403
## 8508 Resort Hotel 19
## 8509 Resort Hotel 243
## 8510 Resort Hotel 158
## 8511 Resort Hotel 166
## 8512 Resort Hotel 14
## 8513 Resort Hotel 258
## 8514 Resort Hotel 103
## 8515 Resort Hotel 67
## 8516 Resort Hotel 142
## 8517 Resort Hotel 186
## 8518 Resort Hotel 141
## 8519 Resort Hotel 160
## 8520 Resort Hotel 86
## 8521 Resort Hotel 113
## 8522 Resort Hotel 181
## 8523 Resort Hotel 235
## 8524 Resort Hotel 182
## 8525 Resort Hotel 55
## 8526 Resort Hotel 55
## 8527 Resort Hotel 341
## 8528 Resort Hotel 65
## 8529 Resort Hotel 65
## 8530 Resort Hotel 169
## 8531 Resort Hotel 149
## 8532 Resort Hotel 65
## 8533 Resort Hotel 65
## 8534 Resort Hotel 64
## 8535 Resort Hotel 13
## 8536 Resort Hotel 157
## 8537 Resort Hotel 29
## 8538 Resort Hotel 180
## 8539 Resort Hotel 59
## 8540 Resort Hotel 7
## 8541 Resort Hotel 7
## 8542 Resort Hotel 7
## 8543 Resort Hotel 198
## 8544 Resort Hotel 198
## 8545 Resort Hotel 198
## 8546 Resort Hotel 261
## 8547 Resort Hotel 383
## 8548 Resort Hotel 383
## 8549 Resort Hotel 59
## 8550 Resort Hotel 383
## 8551 Resort Hotel 383
## 8552 Resort Hotel 383
## 8553 Resort Hotel 383
## 8554 Resort Hotel 59
## 8555 Resort Hotel 383
## 8556 Resort Hotel 383
## 8557 Resort Hotel 383
## 8558 Resort Hotel 383
## 8559 Resort Hotel 383
## 8560 Resort Hotel 383
## 8561 Resort Hotel 383
## 8562 Resort Hotel 383
## 8563 Resort Hotel 383
## 8564 Resort Hotel 383
## 8565 Resort Hotel 59
## 8566 Resort Hotel 383
## 8567 Resort Hotel 383
## 8568 Resort Hotel 383
## 8569 Resort Hotel 383
## 8570 Resort Hotel 383
## 8571 Resort Hotel 383
## 8572 Resort Hotel 383
## 8573 Resort Hotel 383
## 8574 Resort Hotel 383
## 8575 Resort Hotel 383
## 8576 Resort Hotel 383
## 8577 Resort Hotel 383
## 8578 Resort Hotel 383
## 8579 Resort Hotel 383
## 8580 Resort Hotel 383
## 8581 Resort Hotel 383
## 8582 Resort Hotel 383
## 8583 Resort Hotel 383
## 8584 Resort Hotel 383
## 8585 Resort Hotel 383
## 8586 Resort Hotel 383
## 8587 Resort Hotel 383
## 8588 Resort Hotel 383
## 8589 Resort Hotel 67
## 8590 Resort Hotel 383
## 8591 Resort Hotel 383
## 8592 Resort Hotel 383
## 8593 Resort Hotel 383
## 8594 Resort Hotel 383
## 8595 Resort Hotel 383
## 8596 Resort Hotel 383
## 8597 Resort Hotel 383
## 8598 Resort Hotel 383
## 8599 Resort Hotel 383
## 8600 Resort Hotel 383
## 8601 Resort Hotel 383
## 8602 Resort Hotel 94
## 8603 Resort Hotel 239
## 8604 Resort Hotel 384
## 8605 Resort Hotel 144
## 8606 Resort Hotel 14
## 8607 Resort Hotel 60
## 8608 Resort Hotel 40
## 8609 Resort Hotel 183
## 8610 Resort Hotel 94
## 8611 Resort Hotel 181
## 8612 Resort Hotel 359
## 8613 Resort Hotel 40
## 8614 Resort Hotel 385
## 8615 Resort Hotel 151
## 8616 Resort Hotel 151
## 8617 Resort Hotel 151
## 8618 Resort Hotel 393
## 8619 Resort Hotel 393
## 8620 Resort Hotel 393
## 8621 Resort Hotel 393
## 8622 Resort Hotel 393
## 8623 Resort Hotel 393
## 8624 Resort Hotel 393
## 8625 Resort Hotel 393
## 8626 Resort Hotel 393
## 8627 Resort Hotel 393
## 8628 Resort Hotel 393
## 8629 Resort Hotel 393
## 8630 Resort Hotel 393
## 8631 Resort Hotel 393
## 8632 Resort Hotel 393
## 8633 Resort Hotel 393
## 8634 Resort Hotel 393
## 8635 Resort Hotel 393
## 8636 Resort Hotel 393
## 8637 Resort Hotel 19
## 8638 Resort Hotel 393
## 8639 Resort Hotel 393
## 8640 Resort Hotel 56
## 8641 Resort Hotel 393
## 8642 Resort Hotel 393
## 8643 Resort Hotel 393
## 8644 Resort Hotel 393
## 8645 Resort Hotel 393
## 8646 Resort Hotel 393
## 8647 Resort Hotel 393
## 8648 Resort Hotel 151
## 8649 Resort Hotel 151
## 8650 Resort Hotel 134
## 8651 Resort Hotel 48
## 8652 Resort Hotel 315
## 8653 Resort Hotel 360
## 8654 Resort Hotel 360
## 8655 Resort Hotel 360
## 8656 Resort Hotel 368
## 8657 Resort Hotel 2
## 8658 Resort Hotel 131
## 8659 Resort Hotel 131
## 8660 Resort Hotel 131
## 8661 Resort Hotel 16
## 8662 Resort Hotel 131
## 8663 Resort Hotel 131
## 8664 Resort Hotel 16
## 8665 Resort Hotel 131
## 8666 Resort Hotel 16
## 8667 Resort Hotel 16
## 8668 Resort Hotel 131
## 8669 Resort Hotel 131
## 8670 Resort Hotel 10
## 8671 Resort Hotel 16
## 8672 Resort Hotel 131
## 8673 Resort Hotel 131
## 8674 Resort Hotel 16
## 8675 Resort Hotel 131
## 8676 Resort Hotel 131
## 8677 Resort Hotel 131
## 8678 Resort Hotel 131
## 8679 Resort Hotel 131
## 8680 Resort Hotel 131
## 8681 Resort Hotel 131
## 8682 Resort Hotel 131
## 8683 Resort Hotel 96
## 8684 Resort Hotel 131
## 8685 Resort Hotel 131
## 8686 Resort Hotel 96
## 8687 Resort Hotel 30
## 8688 Resort Hotel 131
## 8689 Resort Hotel 131
## 8690 Resort Hotel 92
## 8691 Resort Hotel 131
## 8692 Resort Hotel 184
## 8693 Resort Hotel 131
## 8694 Resort Hotel 337
## 8695 Resort Hotel 337
## 8696 Resort Hotel 337
## 8697 Resort Hotel 337
## 8698 Resort Hotel 337
## 8699 Resort Hotel 337
## 8700 Resort Hotel 337
## 8701 Resort Hotel 337
## 8702 Resort Hotel 337
## 8703 Resort Hotel 337
## 8704 Resort Hotel 337
## 8705 Resort Hotel 337
## 8706 Resort Hotel 337
## 8707 Resort Hotel 337
## 8708 Resort Hotel 337
## 8709 Resort Hotel 337
## 8710 Resort Hotel 316
## 8711 Resort Hotel 236
## 8712 Resort Hotel 10
## 8713 Resort Hotel 10
## 8714 Resort Hotel 12
## 8715 Resort Hotel 362
## 8716 Resort Hotel 18
## 8717 Resort Hotel 1
## 8718 Resort Hotel 12
## 8719 Resort Hotel 5
## 8720 Resort Hotel 6
## 8721 Resort Hotel 18
## 8722 Resort Hotel 18
## 8723 Resort Hotel 363
## 8724 Resort Hotel 339
## 8725 Resort Hotel 339
## 8726 Resort Hotel 363
## 8727 Resort Hotel 339
## 8728 Resort Hotel 339
## 8729 Resort Hotel 364
## 8730 Resort Hotel 364
## 8731 Resort Hotel 364
## 8732 Resort Hotel 364
## 8733 Resort Hotel 364
## 8734 Resort Hotel 364
## 8735 Resort Hotel 364
## 8736 Resort Hotel 2
## 8737 Resort Hotel 364
## 8738 Resort Hotel 364
## 8739 Resort Hotel 364
## 8740 Resort Hotel 364
## 8741 Resort Hotel 364
## 8742 Resort Hotel 364
## 8743 Resort Hotel 364
## 8744 Resort Hotel 364
## 8745 Resort Hotel 364
## 8746 Resort Hotel 257
## 8747 Resort Hotel 364
## 8748 Resort Hotel 364
## 8749 Resort Hotel 364
## 8750 Resort Hotel 364
## 8751 Resort Hotel 364
## 8752 Resort Hotel 364
## 8753 Resort Hotel 364
## 8754 Resort Hotel 364
## 8755 Resort Hotel 364
## 8756 Resort Hotel 364
## 8757 Resort Hotel 364
## 8758 Resort Hotel 364
## 8759 Resort Hotel 364
## 8760 Resort Hotel 364
## 8761 Resort Hotel 364
## 8762 Resort Hotel 364
## 8763 Resort Hotel 364
## 8764 Resort Hotel 364
## 8765 Resort Hotel 364
## 8766 Resort Hotel 364
## 8767 Resort Hotel 364
## 8768 Resort Hotel 364
## 8769 Resort Hotel 364
## 8770 Resort Hotel 364
## 8771 Resort Hotel 364
## 8772 Resort Hotel 364
## 8773 Resort Hotel 364
## 8774 Resort Hotel 364
## 8775 Resort Hotel 364
## 8776 Resort Hotel 364
## 8777 Resort Hotel 364
## 8778 Resort Hotel 364
## 8779 Resort Hotel 364
## 8780 Resort Hotel 0
## 8781 Resort Hotel 149
## 8782 Resort Hotel 365
## 8783 Resort Hotel 365
## 8784 Resort Hotel 365
## 8785 Resort Hotel 365
## 8786 Resort Hotel 342
## 8787 Resort Hotel 342
## 8788 Resort Hotel 342
## 8789 Resort Hotel 342
## 8790 Resort Hotel 342
## 8791 Resort Hotel 249
## 8792 Resort Hotel 342
## 8793 Resort Hotel 342
## 8794 Resort Hotel 342
## 8795 Resort Hotel 342
## 8796 Resort Hotel 342
## 8797 Resort Hotel 342
## 8798 Resort Hotel 342
## 8799 Resort Hotel 342
## 8800 Resort Hotel 342
## 8801 Resort Hotel 435
## 8802 Resort Hotel 342
## 8803 Resort Hotel 18
## 8804 Resort Hotel 12
## 8805 Resort Hotel 115
## 8806 Resort Hotel 24
## 8807 Resort Hotel 24
## 8808 Resort Hotel 198
## 8809 Resort Hotel 198
## 8810 Resort Hotel 198
## 8811 Resort Hotel 198
## 8812 Resort Hotel 198
## 8813 Resort Hotel 198
## 8814 Resort Hotel 198
## 8815 Resort Hotel 198
## 8816 Resort Hotel 27
## 8817 Resort Hotel 198
## 8818 Resort Hotel 198
## 8819 Resort Hotel 198
## 8820 Resort Hotel 27
## 8821 Resort Hotel 198
## 8822 Resort Hotel 198
## 8823 Resort Hotel 198
## 8824 Resort Hotel 198
## 8825 Resort Hotel 198
## 8826 Resort Hotel 375
## 8827 Resort Hotel 27
## 8828 Resort Hotel 181
## 8829 Resort Hotel 181
## 8830 Resort Hotel 181
## 8831 Resort Hotel 181
## 8832 Resort Hotel 181
## 8833 Resort Hotel 181
## 8834 Resort Hotel 181
## 8835 Resort Hotel 181
## 8836 Resort Hotel 181
## 8837 Resort Hotel 181
## 8838 Resort Hotel 181
## 8839 Resort Hotel 181
## 8840 Resort Hotel 181
## 8841 Resort Hotel 181
## 8842 Resort Hotel 181
## 8843 Resort Hotel 181
## 8844 Resort Hotel 23
## 8845 Resort Hotel 23
## 8846 Resort Hotel 14
## 8847 Resort Hotel 19
## 8848 Resort Hotel 30
## 8849 Resort Hotel 47
## 8850 Resort Hotel 31
## 8851 Resort Hotel 47
## 8852 Resort Hotel 247
## 8853 Resort Hotel 247
## 8854 Resort Hotel 244
## 8855 Resort Hotel 247
## 8856 Resort Hotel 142
## 8857 Resort Hotel 243
## 8858 Resort Hotel 382
## 8859 Resort Hotel 67
## 8860 Resort Hotel 68
## 8861 Resort Hotel 161
## 8862 Resort Hotel 161
## 8863 Resort Hotel 161
## 8864 Resort Hotel 17
## 8865 Resort Hotel 22
## 8866 Resort Hotel 154
## 8867 Resort Hotel 58
## 8868 Resort Hotel 62
## 8869 Resort Hotel 30
## 8870 Resort Hotel 95
## 8871 Resort Hotel 224
## 8872 Resort Hotel 180
## 8873 Resort Hotel 224
## 8874 Resort Hotel 224
## 8875 Resort Hotel 224
## 8876 Resort Hotel 109
## 8877 Resort Hotel 0
## 8878 Resort Hotel 47
## 8879 Resort Hotel 71
## 8880 Resort Hotel 71
## 8881 Resort Hotel 71
## 8882 Resort Hotel 71
## 8883 Resort Hotel 18
## 8884 Resort Hotel 71
## 8885 Resort Hotel 41
## 8886 Resort Hotel 22
## 8887 Resort Hotel 14
## 8888 Resort Hotel 18
## 8889 Resort Hotel 386
## 8890 Resort Hotel 91
## 8891 Resort Hotel 132
## 8892 Resort Hotel 116
## 8893 Resort Hotel 132
## 8894 Resort Hotel 63
## 8895 Resort Hotel 111
## 8896 Resort Hotel 386
## 8897 Resort Hotel 2
## 8898 Resort Hotel 127
## 8899 Resort Hotel 127
## 8900 Resort Hotel 15
## 8901 Resort Hotel 23
## 8902 Resort Hotel 23
## 8903 Resort Hotel 211
## 8904 Resort Hotel 123
## 8905 Resort Hotel 385
## 8906 Resort Hotel 385
## 8907 Resort Hotel 385
## 8908 Resort Hotel 385
## 8909 Resort Hotel 127
## 8910 Resort Hotel 20
## 8911 Resort Hotel 385
## 8912 Resort Hotel 385
## 8913 Resort Hotel 145
## 8914 Resort Hotel 123
## 8915 Resort Hotel 99
## 8916 Resort Hotel 386
## 8917 Resort Hotel 113
## 8918 Resort Hotel 386
## 8919 Resort Hotel 386
## 8920 Resort Hotel 386
## 8921 Resort Hotel 34
## 8922 Resort Hotel 386
## 8923 Resort Hotel 386
## 8924 Resort Hotel 386
## 8925 Resort Hotel 386
## 8926 Resort Hotel 386
## 8927 Resort Hotel 386
## 8928 Resort Hotel 386
## 8929 Resort Hotel 386
## 8930 Resort Hotel 386
## 8931 Resort Hotel 386
## 8932 Resort Hotel 386
## 8933 Resort Hotel 3
## 8934 Resort Hotel 101
## 8935 Resort Hotel 130
## 8936 Resort Hotel 111
## 8937 Resort Hotel 70
## 8938 Resort Hotel 24
## 8939 Resort Hotel 130
## 8940 Resort Hotel 131
## 8941 Resort Hotel 8
## 8942 Resort Hotel 135
## 8943 Resort Hotel 124
## 8944 Resort Hotel 110
## 8945 Resort Hotel 135
## 8946 Resort Hotel 24
## 8947 Resort Hotel 179
## 8948 Resort Hotel 27
## 8949 Resort Hotel 130
## 8950 Resort Hotel 173
## 8951 Resort Hotel 78
## 8952 Resort Hotel 164
## 8953 Resort Hotel 4
## 8954 Resort Hotel 73
## 8955 Resort Hotel 4
## 8956 Resort Hotel 319
## 8957 Resort Hotel 314
## 8958 Resort Hotel 100
## 8959 Resort Hotel 124
## 8960 Resort Hotel 138
## 8961 Resort Hotel 141
## 8962 Resort Hotel 178
## 8963 Resort Hotel 178
## 8964 Resort Hotel 178
## 8965 Resort Hotel 178
## 8966 Resort Hotel 66
## 8967 Resort Hotel 138
## 8968 Resort Hotel 135
## 8969 Resort Hotel 135
## 8970 Resort Hotel 135
## 8971 Resort Hotel 17
## 8972 Resort Hotel 17
## 8973 Resort Hotel 82
## 8974 Resort Hotel 135
## 8975 Resort Hotel 135
## 8976 Resort Hotel 141
## 8977 Resort Hotel 178
## 8978 Resort Hotel 17
## 8979 Resort Hotel 135
## 8980 Resort Hotel 135
## 8981 Resort Hotel 141
## 8982 Resort Hotel 124
## 8983 Resort Hotel 178
## 8984 Resort Hotel 178
## 8985 Resort Hotel 178
## 8986 Resort Hotel 178
## 8987 Resort Hotel 5
## 8988 Resort Hotel 17
## 8989 Resort Hotel 124
## 8990 Resort Hotel 135
## 8991 Resort Hotel 138
## 8992 Resort Hotel 138
## 8993 Resort Hotel 178
## 8994 Resort Hotel 178
## 8995 Resort Hotel 178
## 8996 Resort Hotel 178
## 8997 Resort Hotel 124
## 8998 Resort Hotel 124
## 8999 Resort Hotel 135
## 9000 Resort Hotel 141
## 9001 Resort Hotel 178
## 9002 Resort Hotel 124
## 9003 Resort Hotel 124
## 9004 Resort Hotel 124
## 9005 Resort Hotel 124
## 9006 Resort Hotel 124
## 9007 Resort Hotel 124
## 9008 Resort Hotel 124
## 9009 Resort Hotel 17
## 9010 Resort Hotel 138
## 9011 Resort Hotel 135
## 9012 Resort Hotel 135
## 9013 Resort Hotel 178
## 9014 Resort Hotel 114
## 9015 Resort Hotel 119
## 9016 Resort Hotel 167
## 9017 Resort Hotel 18
## 9018 Resort Hotel 39
## 9019 Resort Hotel 59
## 9020 Resort Hotel 203
## 9021 Resort Hotel 151
## 9022 Resort Hotel 89
## 9023 Resort Hotel 133
## 9024 Resort Hotel 133
## 9025 Resort Hotel 87
## 9026 Resort Hotel 76
## 9027 Resort Hotel 7
## 9028 Resort Hotel 35
## 9029 Resort Hotel 63
## 9030 Resort Hotel 29
## 9031 Resort Hotel 29
## 9032 Resort Hotel 28
## 9033 Resort Hotel 31
## 9034 Resort Hotel 40
## 9035 Resort Hotel 50
## 9036 Resort Hotel 180
## 9037 Resort Hotel 66
## 9038 Resort Hotel 66
## 9039 Resort Hotel 176
## 9040 Resort Hotel 65
## 9041 Resort Hotel 86
## 9042 Resort Hotel 71
## 9043 Resort Hotel 72
## 9044 Resort Hotel 71
## 9045 Resort Hotel 65
## 9046 Resort Hotel 43
## 9047 Resort Hotel 8
## 9048 Resort Hotel 0
## 9049 Resort Hotel 8
## 9050 Resort Hotel 0
## 9051 Resort Hotel 20
## 9052 Resort Hotel 70
## 9053 Resort Hotel 51
## 9054 Resort Hotel 86
## 9055 Resort Hotel 138
## 9056 Resort Hotel 7
## 9057 Resort Hotel 0
## 9058 Resort Hotel 42
## 9059 Resort Hotel 65
## 9060 Resort Hotel 153
## 9061 Resort Hotel 78
## 9062 Resort Hotel 213
## 9063 Resort Hotel 79
## 9064 Resort Hotel 43
## 9065 Resort Hotel 213
## 9066 Resort Hotel 188
## 9067 Resort Hotel 79
## 9068 Resort Hotel 54
## 9069 Resort Hotel 188
## 9070 Resort Hotel 54
## 9071 Resort Hotel 79
## 9072 Resort Hotel 188
## 9073 Resort Hotel 54
## 9074 Resort Hotel 79
## 9075 Resort Hotel 0
## 9076 Resort Hotel 0
## 9077 Resort Hotel 8
## 9078 Resort Hotel 0
## 9079 Resort Hotel 142
## 9080 Resort Hotel 87
## 9081 Resort Hotel 87
## 9082 Resort Hotel 142
## 9083 Resort Hotel 248
## 9084 Resort Hotel 24
## 9085 Resort Hotel 87
## 9086 Resort Hotel 142
## 9087 Resort Hotel 31
## 9088 Resort Hotel 121
## 9089 Resort Hotel 53
## 9090 Resort Hotel 20
## 9091 Resort Hotel 69
## 9092 Resort Hotel 206
## 9093 Resort Hotel 206
## 9094 Resort Hotel 206
## 9095 Resort Hotel 117
## 9096 Resort Hotel 117
## 9097 Resort Hotel 117
## 9098 Resort Hotel 181
## 9099 Resort Hotel 177
## 9100 Resort Hotel 206
## 9101 Resort Hotel 181
## 9102 Resort Hotel 96
## 9103 Resort Hotel 206
## 9104 Resort Hotel 206
## 9105 Resort Hotel 66
## 9106 Resort Hotel 206
## 9107 Resort Hotel 206
## 9108 Resort Hotel 206
## 9109 Resort Hotel 206
## 9110 Resort Hotel 3
## 9111 Resort Hotel 0
## 9112 Resort Hotel 79
## 9113 Resort Hotel 0
## 9114 Resort Hotel 179
## 9115 Resort Hotel 120
## 9116 Resort Hotel 179
## 9117 Resort Hotel 14
## 9118 Resort Hotel 16
## 9119 Resort Hotel 10
## 9120 Resort Hotel 79
## 9121 Resort Hotel 42
## 9122 Resort Hotel 32
## 9123 Resort Hotel 129
## 9124 Resort Hotel 72
## 9125 Resort Hotel 69
## 9126 Resort Hotel 178
## 9127 Resort Hotel 131
## 9128 Resort Hotel 255
## 9129 Resort Hotel 131
## 9130 Resort Hotel 131
## 9131 Resort Hotel 131
## 9132 Resort Hotel 178
## 9133 Resort Hotel 208
## 9134 Resort Hotel 18
## 9135 Resort Hotel 18
## 9136 Resort Hotel 12
## 9137 Resort Hotel 1
## 9138 Resort Hotel 18
## 9139 Resort Hotel 50
## 9140 Resort Hotel 16
## 9141 Resort Hotel 18
## 9142 Resort Hotel 67
## 9143 Resort Hotel 39
## 9144 Resort Hotel 40
## 9145 Resort Hotel 39
## 9146 Resort Hotel 40
## 9147 Resort Hotel 112
## 9148 Resort Hotel 46
## 9149 Resort Hotel 58
## 9150 Resort Hotel 142
## 9151 Resort Hotel 101
## 9152 Resort Hotel 49
## 9153 Resort Hotel 126
## 9154 Resort Hotel 201
## 9155 Resort Hotel 96
## 9156 Resort Hotel 17
## 9157 Resort Hotel 2
## 9158 Resort Hotel 17
## 9159 Resort Hotel 17
## 9160 Resort Hotel 5
## 9161 Resort Hotel 81
## 9162 Resort Hotel 19
## 9163 Resort Hotel 20
## 9164 Resort Hotel 186
## 9165 Resort Hotel 34
## 9166 Resort Hotel 89
## 9167 Resort Hotel 75
## 9168 Resort Hotel 245
## 9169 Resort Hotel 245
## 9170 Resort Hotel 192
## 9171 Resort Hotel 96
## 9172 Resort Hotel 76
## 9173 Resort Hotel 53
## 9174 Resort Hotel 214
## 9175 Resort Hotel 87
## 9176 Resort Hotel 70
## 9177 Resort Hotel 214
## 9178 Resort Hotel 1
## 9179 Resort Hotel 378
## 9180 Resort Hotel 378
## 9181 Resort Hotel 378
## 9182 Resort Hotel 378
## 9183 Resort Hotel 22
## 9184 Resort Hotel 378
## 9185 Resort Hotel 378
## 9186 Resort Hotel 378
## 9187 Resort Hotel 378
## 9188 Resort Hotel 378
## 9189 Resort Hotel 378
## 9190 Resort Hotel 378
## 9191 Resort Hotel 378
## 9192 Resort Hotel 378
## 9193 Resort Hotel 378
## 9194 Resort Hotel 378
## 9195 Resort Hotel 378
## 9196 Resort Hotel 378
## 9197 Resort Hotel 378
## 9198 Resort Hotel 58
## 9199 Resort Hotel 46
## 9200 Resort Hotel 113
## 9201 Resort Hotel 113
## 9202 Resort Hotel 113
## 9203 Resort Hotel 113
## 9204 Resort Hotel 42
## 9205 Resort Hotel 37
## 9206 Resort Hotel 27
## 9207 Resort Hotel 49
## 9208 Resort Hotel 20
## 9209 Resort Hotel 292
## 9210 Resort Hotel 292
## 9211 Resort Hotel 13
## 9212 Resort Hotel 13
## 9213 Resort Hotel 292
## 9214 Resort Hotel 292
## 9215 Resort Hotel 292
## 9216 Resort Hotel 292
## 9217 Resort Hotel 292
## 9218 Resort Hotel 292
## 9219 Resort Hotel 13
## 9220 Resort Hotel 292
## 9221 Resort Hotel 292
## 9222 Resort Hotel 292
## 9223 Resort Hotel 292
## 9224 Resort Hotel 13
## 9225 Resort Hotel 44
## 9226 Resort Hotel 70
## 9227 Resort Hotel 192
## 9228 Resort Hotel 66
## 9229 Resort Hotel 0
## 9230 Resort Hotel 57
## 9231 Resort Hotel 64
## 9232 Resort Hotel 46
## 9233 Resort Hotel 22
## 9234 Resort Hotel 46
## 9235 Resort Hotel 26
## 9236 Resort Hotel 24
## 9237 Resort Hotel 84
## 9238 Resort Hotel 201
## 9239 Resort Hotel 42
## 9240 Resort Hotel 46
## 9241 Resort Hotel 23
## 9242 Resort Hotel 33
## 9243 Resort Hotel 211
## 9244 Resort Hotel 211
## 9245 Resort Hotel 211
## 9246 Resort Hotel 99
## 9247 Resort Hotel 201
## 9248 Resort Hotel 201
## 9249 Resort Hotel 211
## 9250 Resort Hotel 211
## 9251 Resort Hotel 99
## 9252 Resort Hotel 211
## 9253 Resort Hotel 201
## 9254 Resort Hotel 211
## 9255 Resort Hotel 211
## 9256 Resort Hotel 211
## 9257 Resort Hotel 99
## 9258 Resort Hotel 211
## 9259 Resort Hotel 201
## 9260 Resort Hotel 211
## 9261 Resort Hotel 211
## 9262 Resort Hotel 44
## 9263 Resort Hotel 75
## 9264 Resort Hotel 44
## 9265 Resort Hotel 47
## 9266 Resort Hotel 13
## 9267 Resort Hotel 13
## 9268 Resort Hotel 36
## 9269 Resort Hotel 33
## 9270 Resort Hotel 67
## 9271 Resort Hotel 224
## 9272 Resort Hotel 98
## 9273 Resort Hotel 44
## 9274 Resort Hotel 0
## 9275 Resort Hotel 0
## 9276 Resort Hotel 28
## 9277 Resort Hotel 157
## 9278 Resort Hotel 25
## 9279 Resort Hotel 21
## 9280 Resort Hotel 32
## 9281 Resort Hotel 194
## 9282 Resort Hotel 20
## 9283 Resort Hotel 38
## 9284 Resort Hotel 38
## 9285 Resort Hotel 75
## 9286 Resort Hotel 43
## 9287 Resort Hotel 32
## 9288 Resort Hotel 245
## 9289 Resort Hotel 93
## 9290 Resort Hotel 2
## 9291 Resort Hotel 86
## 9292 Resort Hotel 105
## 9293 Resort Hotel 61
## 9294 Resort Hotel 37
## 9295 Resort Hotel 37
## 9296 Resort Hotel 74
## 9297 Resort Hotel 135
## 9298 Resort Hotel 135
## 9299 Resort Hotel 150
## 9300 Resort Hotel 135
## 9301 Resort Hotel 135
## 9302 Resort Hotel 37
## 9303 Resort Hotel 135
## 9304 Resort Hotel 135
## 9305 Resort Hotel 135
## 9306 Resort Hotel 19
## 9307 Resort Hotel 33
## 9308 Resort Hotel 33
## 9309 Resort Hotel 33
## 9310 Resort Hotel 53
## 9311 Resort Hotel 39
## 9312 Resort Hotel 31
## 9313 Resort Hotel 58
## 9314 Resort Hotel 100
## 9315 Resort Hotel 85
## 9316 Resort Hotel 53
## 9317 Resort Hotel 53
## 9318 Resort Hotel 122
## 9319 Resort Hotel 59
## 9320 Resort Hotel 32
## 9321 Resort Hotel 40
## 9322 Resort Hotel 217
## 9323 Resort Hotel 51
## 9324 Resort Hotel 44
## 9325 Resort Hotel 159
## 9326 Resort Hotel 53
## 9327 Resort Hotel 47
## 9328 Resort Hotel 53
## 9329 Resort Hotel 30
## 9330 Resort Hotel 211
## 9331 Resort Hotel 54
## 9332 Resort Hotel 81
## 9333 Resort Hotel 139
## 9334 Resort Hotel 59
## 9335 Resort Hotel 59
## 9336 Resort Hotel 124
## 9337 Resort Hotel 0
## 9338 Resort Hotel 1
## 9339 Resort Hotel 0
## 9340 Resort Hotel 21
## 9341 Resort Hotel 0
## 9342 Resort Hotel 48
## 9343 Resort Hotel 136
## 9344 Resort Hotel 50
## 9345 Resort Hotel 47
## 9346 Resort Hotel 73
## 9347 Resort Hotel 22
## 9348 Resort Hotel 185
## 9349 Resort Hotel 42
## 9350 Resort Hotel 116
## 9351 Resort Hotel 100
## 9352 Resort Hotel 100
## 9353 Resort Hotel 80
## 9354 Resort Hotel 80
## 9355 Resort Hotel 115
## 9356 Resort Hotel 94
## 9357 Resort Hotel 37
## 9358 Resort Hotel 52
## 9359 Resort Hotel 28
## 9360 Resort Hotel 8
## 9361 Resort Hotel 21
## 9362 Resort Hotel 45
## 9363 Resort Hotel 46
## 9364 Resort Hotel 91
## 9365 Resort Hotel 65
## 9366 Resort Hotel 84
## 9367 Resort Hotel 67
## 9368 Resort Hotel 94
## 9369 Resort Hotel 24
## 9370 Resort Hotel 44
## 9371 Resort Hotel 44
## 9372 Resort Hotel 110
## 9373 Resort Hotel 20
## 9374 Resort Hotel 40
## 9375 Resort Hotel 25
## 9376 Resort Hotel 5
## 9377 Resort Hotel 0
## 9378 Resort Hotel 66
## 9379 Resort Hotel 67
## 9380 Resort Hotel 159
## 9381 Resort Hotel 64
## 9382 Resort Hotel 163
## 9383 Resort Hotel 18
## 9384 Resort Hotel 40
## 9385 Resort Hotel 159
## 9386 Resort Hotel 56
## 9387 Resort Hotel 32
## 9388 Resort Hotel 1
## 9389 Resort Hotel 11
## 9390 Resort Hotel 44
## 9391 Resort Hotel 7
## 9392 Resort Hotel 7
## 9393 Resort Hotel 7
## 9394 Resort Hotel 32
## 9395 Resort Hotel 59
## 9396 Resort Hotel 199
## 9397 Resort Hotel 59
## 9398 Resort Hotel 215
## 9399 Resort Hotel 242
## 9400 Resort Hotel 220
## 9401 Resort Hotel 46
## 9402 Resort Hotel 64
## 9403 Resort Hotel 101
## 9404 Resort Hotel 16
## 9405 Resort Hotel 45
## 9406 Resort Hotel 73
## 9407 Resort Hotel 58
## 9408 Resort Hotel 96
## 9409 Resort Hotel 48
## 9410 Resort Hotel 48
## 9411 Resort Hotel 25
## 9412 Resort Hotel 59
## 9413 Resort Hotel 46
## 9414 Resort Hotel 29
## 9415 Resort Hotel 222
## 9416 Resort Hotel 222
## 9417 Resort Hotel 232
## 9418 Resort Hotel 232
## 9419 Resort Hotel 232
## 9420 Resort Hotel 222
## 9421 Resort Hotel 232
## 9422 Resort Hotel 232
## 9423 Resort Hotel 232
## 9424 Resort Hotel 232
## 9425 Resort Hotel 232
## 9426 Resort Hotel 222
## 9427 Resort Hotel 232
## 9428 Resort Hotel 232
## 9429 Resort Hotel 232
## 9430 Resort Hotel 232
## 9431 Resort Hotel 48
## 9432 Resort Hotel 101
## 9433 Resort Hotel 69
## 9434 Resort Hotel 12
## 9435 Resort Hotel 152
## 9436 Resort Hotel 15
## 9437 Resort Hotel 8
## 9438 Resort Hotel 7
## 9439 Resort Hotel 25
## 9440 Resort Hotel 34
## 9441 Resort Hotel 76
## 9442 Resort Hotel 76
## 9443 Resort Hotel 76
## 9444 Resort Hotel 76
## 9445 Resort Hotel 76
## 9446 Resort Hotel 8
## 9447 Resort Hotel 132
## 9448 Resort Hotel 44
## 9449 Resort Hotel 2
## 9450 Resort Hotel 139
## 9451 Resort Hotel 69
## 9452 Resort Hotel 0
## 9453 Resort Hotel 214
## 9454 Resort Hotel 7
## 9455 Resort Hotel 16
## 9456 Resort Hotel 43
## 9457 Resort Hotel 88
## 9458 Resort Hotel 139
## 9459 Resort Hotel 135
## 9460 Resort Hotel 14
## 9461 Resort Hotel 87
## 9462 Resort Hotel 63
## 9463 Resort Hotel 82
## 9464 Resort Hotel 92
## 9465 Resort Hotel 55
## 9466 Resort Hotel 128
## 9467 Resort Hotel 128
## 9468 Resort Hotel 45
## 9469 Resort Hotel 128
## 9470 Resort Hotel 128
## 9471 Resort Hotel 128
## 9472 Resort Hotel 128
## 9473 Resort Hotel 128
## 9474 Resort Hotel 128
## 9475 Resort Hotel 128
## 9476 Resort Hotel 128
## 9477 Resort Hotel 128
## 9478 Resort Hotel 183
## 9479 Resort Hotel 183
## 9480 Resort Hotel 183
## 9481 Resort Hotel 183
## 9482 Resort Hotel 183
## 9483 Resort Hotel 183
## 9484 Resort Hotel 183
## 9485 Resort Hotel 183
## 9486 Resort Hotel 183
## 9487 Resort Hotel 183
## 9488 Resort Hotel 183
## 9489 Resort Hotel 183
## 9490 Resort Hotel 183
## 9491 Resort Hotel 183
## 9492 Resort Hotel 183
## 9493 Resort Hotel 183
## 9494 Resort Hotel 183
## 9495 Resort Hotel 183
## 9496 Resort Hotel 183
## 9497 Resort Hotel 183
## 9498 Resort Hotel 183
## 9499 Resort Hotel 183
## 9500 Resort Hotel 183
## 9501 Resort Hotel 183
## 9502 Resort Hotel 183
## 9503 Resort Hotel 183
## 9504 Resort Hotel 183
## 9505 Resort Hotel 183
## 9506 Resort Hotel 183
## 9507 Resort Hotel 183
## 9508 Resort Hotel 102
## 9509 Resort Hotel 14
## 9510 Resort Hotel 14
## 9511 Resort Hotel 85
## 9512 Resort Hotel 14
## 9513 Resort Hotel 14
## 9514 Resort Hotel 14
## 9515 Resort Hotel 14
## 9516 Resort Hotel 3
## 9517 Resort Hotel 67
## 9518 Resort Hotel 239
## 9519 Resort Hotel 95
## 9520 Resort Hotel 1
## 9521 Resort Hotel 34
## 9522 Resort Hotel 51
## 9523 Resort Hotel 57
## 9524 Resort Hotel 65
## 9525 Resort Hotel 95
## 9526 Resort Hotel 75
## 9527 Resort Hotel 35
## 9528 Resort Hotel 57
## 9529 Resort Hotel 82
## 9530 Resort Hotel 16
## 9531 Resort Hotel 33
## 9532 Resort Hotel 21
## 9533 Resort Hotel 38
## 9534 Resort Hotel 16
## 9535 Resort Hotel 22
## 9536 Resort Hotel 38
## 9537 Resort Hotel 22
## 9538 Resort Hotel 22
## 9539 Resort Hotel 22
## 9540 Resort Hotel 22
## 9541 Resort Hotel 22
## 9542 Resort Hotel 22
## 9543 Resort Hotel 22
## 9544 Resort Hotel 22
## 9545 Resort Hotel 22
## 9546 Resort Hotel 22
## 9547 Resort Hotel 99
## 9548 Resort Hotel 92
## 9549 Resort Hotel 105
## 9550 Resort Hotel 149
## 9551 Resort Hotel 200
## 9552 Resort Hotel 86
## 9553 Resort Hotel 63
## 9554 Resort Hotel 92
## 9555 Resort Hotel 26
## 9556 Resort Hotel 4
## 9557 Resort Hotel 12
## 9558 Resort Hotel 71
## 9559 Resort Hotel 23
## 9560 Resort Hotel 23
## 9561 Resort Hotel 51
## 9562 Resort Hotel 25
## 9563 Resort Hotel 58
## 9564 Resort Hotel 20
## 9565 Resort Hotel 81
## 9566 Resort Hotel 152
## 9567 Resort Hotel 5
## 9568 Resort Hotel 5
## 9569 Resort Hotel 48
## 9570 Resort Hotel 5
## 9571 Resort Hotel 1
## 9572 Resort Hotel 210
## 9573 Resort Hotel 0
## 9574 Resort Hotel 245
## 9575 Resort Hotel 245
## 9576 Resort Hotel 50
## 9577 Resort Hotel 50
## 9578 Resort Hotel 125
## 9579 Resort Hotel 45
## 9580 Resort Hotel 23
## 9581 Resort Hotel 15
## 9582 Resort Hotel 121
## 9583 Resort Hotel 38
## 9584 Resort Hotel 17
## 9585 Resort Hotel 19
## 9586 Resort Hotel 4
## 9587 Resort Hotel 86
## 9588 Resort Hotel 52
## 9589 Resort Hotel 53
## 9590 Resort Hotel 52
## 9591 Resort Hotel 53
## 9592 Resort Hotel 79
## 9593 Resort Hotel 11
## 9594 Resort Hotel 49
## 9595 Resort Hotel 60
## 9596 Resort Hotel 105
## 9597 Resort Hotel 14
## 9598 Resort Hotel 200
## 9599 Resort Hotel 206
## 9600 Resort Hotel 52
## 9601 Resort Hotel 52
## 9602 Resort Hotel 92
## 9603 Resort Hotel 95
## 9604 Resort Hotel 21
## 9605 Resort Hotel 0
## 9606 Resort Hotel 244
## 9607 Resort Hotel 30
## 9608 Resort Hotel 85
## 9609 Resort Hotel 350
## 9610 Resort Hotel 308
## 9611 Resort Hotel 4
## 9612 Resort Hotel 19
## 9613 Resort Hotel 4
## 9614 Resort Hotel 102
## 9615 Resort Hotel 188
## 9616 Resort Hotel 194
## 9617 Resort Hotel 172
## 9618 Resort Hotel 208
## 9619 Resort Hotel 250
## 9620 Resort Hotel 250
## 9621 Resort Hotel 250
## 9622 Resort Hotel 250
## 9623 Resort Hotel 250
## 9624 Resort Hotel 0
## 9625 Resort Hotel 226
## 9626 Resort Hotel 2
## 9627 Resort Hotel 247
## 9628 Resort Hotel 84
## 9629 Resort Hotel 75
## 9630 Resort Hotel 251
## 9631 Resort Hotel 126
## 9632 Resort Hotel 1
## 9633 Resort Hotel 159
## 9634 Resort Hotel 130
## 9635 Resort Hotel 252
## 9636 Resort Hotel 252
## 9637 Resort Hotel 248
## 9638 Resort Hotel 252
## 9639 Resort Hotel 252
## 9640 Resort Hotel 248
## 9641 Resort Hotel 156
## 9642 Resort Hotel 248
## 9643 Resort Hotel 248
## 9644 Resort Hotel 227
## 9645 Resort Hotel 128
## 9646 Resort Hotel 181
## 9647 Resort Hotel 2
## 9648 Resort Hotel 99
## 9649 Resort Hotel 53
## 9650 Resort Hotel 59
## 9651 Resort Hotel 59
## 9652 Resort Hotel 99
## 9653 Resort Hotel 73
## 9654 Resort Hotel 57
## 9655 Resort Hotel 57
## 9656 Resort Hotel 88
## 9657 Resort Hotel 88
## 9658 Resort Hotel 91
## 9659 Resort Hotel 91
## 9660 Resort Hotel 91
## 9661 Resort Hotel 91
## 9662 Resort Hotel 91
## 9663 Resort Hotel 90
## 9664 Resort Hotel 90
## 9665 Resort Hotel 92
## 9666 Resort Hotel 88
## 9667 Resort Hotel 38
## 9668 Resort Hotel 38
## 9669 Resort Hotel 59
## 9670 Resort Hotel 76
## 9671 Resort Hotel 9
## 9672 Resort Hotel 73
## 9673 Resort Hotel 168
## 9674 Resort Hotel 79
## 9675 Resort Hotel 79
## 9676 Resort Hotel 79
## 9677 Resort Hotel 4
## 9678 Resort Hotel 18
## 9679 Resort Hotel 131
## 9680 Resort Hotel 226
## 9681 Resort Hotel 196
## 9682 Resort Hotel 295
## 9683 Resort Hotel 247
## 9684 Resort Hotel 107
## 9685 Resort Hotel 161
## 9686 Resort Hotel 62
## 9687 Resort Hotel 91
## 9688 Resort Hotel 15
## 9689 Resort Hotel 83
## 9690 Resort Hotel 65
## 9691 Resort Hotel 90
## 9692 Resort Hotel 155
## 9693 Resort Hotel 168
## 9694 Resort Hotel 161
## 9695 Resort Hotel 126
## 9696 Resort Hotel 98
## 9697 Resort Hotel 172
## 9698 Resort Hotel 126
## 9699 Resort Hotel 126
## 9700 Resort Hotel 258
## 9701 Resort Hotel 172
## 9702 Resort Hotel 126
## 9703 Resort Hotel 125
## 9704 Resort Hotel 288
## 9705 Resort Hotel 288
## 9706 Resort Hotel 12
## 9707 Resort Hotel 12
## 9708 Resort Hotel 135
## 9709 Resort Hotel 44
## 9710 Resort Hotel 137
## 9711 Resort Hotel 122
## 9712 Resort Hotel 309
## 9713 Resort Hotel 135
## 9714 Resort Hotel 12
## 9715 Resort Hotel 10
## 9716 Resort Hotel 119
## 9717 Resort Hotel 335
## 9718 Resort Hotel 13
## 9719 Resort Hotel 294
## 9720 Resort Hotel 131
## 9721 Resort Hotel 16
## 9722 Resort Hotel 64
## 9723 Resort Hotel 9
## 9724 Resort Hotel 182
## 9725 Resort Hotel 258
## 9726 Resort Hotel 258
## 9727 Resort Hotel 51
## 9728 Resort Hotel 31
## 9729 Resort Hotel 95
## 9730 Resort Hotel 131
## 9731 Resort Hotel 70
## 9732 Resort Hotel 317
## 9733 Resort Hotel 238
## 9734 Resort Hotel 187
## 9735 Resort Hotel 44
## 9736 Resort Hotel 70
## 9737 Resort Hotel 187
## 9738 Resort Hotel 239
## 9739 Resort Hotel 21
## 9740 Resort Hotel 17
## 9741 Resort Hotel 317
## 9742 Resort Hotel 315
## 9743 Resort Hotel 319
## 9744 Resort Hotel 66
## 9745 Resort Hotel 196
## 9746 Resort Hotel 196
## 9747 Resort Hotel 11
## 9748 Resort Hotel 135
## 9749 Resort Hotel 109
## 9750 Resort Hotel 72
## 9751 Resort Hotel 196
## 9752 Resort Hotel 156
## 9753 Resort Hotel 196
## 9754 Resort Hotel 196
## 9755 Resort Hotel 72
## 9756 Resort Hotel 135
## 9757 Resort Hotel 196
## 9758 Resort Hotel 62
## 9759 Resort Hotel 11
## 9760 Resort Hotel 20
## 9761 Resort Hotel 196
## 9762 Resort Hotel 10
## 9763 Resort Hotel 196
## 9764 Resort Hotel 196
## 9765 Resort Hotel 2
## 9766 Resort Hotel 280
## 9767 Resort Hotel 280
## 9768 Resort Hotel 99
## 9769 Resort Hotel 319
## 9770 Resort Hotel 42
## 9771 Resort Hotel 284
## 9772 Resort Hotel 42
## 9773 Resort Hotel 78
## 9774 Resort Hotel 130
## 9775 Resort Hotel 55
## 9776 Resort Hotel 74
## 9777 Resort Hotel 62
## 9778 Resort Hotel 62
## 9779 Resort Hotel 62
## 9780 Resort Hotel 71
## 9781 Resort Hotel 88
## 9782 Resort Hotel 172
## 9783 Resort Hotel 168
## 9784 Resort Hotel 52
## 9785 Resort Hotel 25
## 9786 Resort Hotel 42
## 9787 Resort Hotel 42
## 9788 Resort Hotel 143
## 9789 Resort Hotel 89
## 9790 Resort Hotel 131
## 9791 Resort Hotel 21
## 9792 Resort Hotel 89
## 9793 Resort Hotel 48
## 9794 Resort Hotel 31
## 9795 Resort Hotel 47
## 9796 Resort Hotel 20
## 9797 Resort Hotel 173
## 9798 Resort Hotel 36
## 9799 Resort Hotel 23
## 9800 Resort Hotel 46
## 9801 Resort Hotel 56
## 9802 Resort Hotel 56
## 9803 Resort Hotel 149
## 9804 Resort Hotel 44
## 9805 Resort Hotel 68
## 9806 Resort Hotel 6
## 9807 Resort Hotel 23
## 9808 Resort Hotel 43
## 9809 Resort Hotel 43
## 9810 Resort Hotel 112
## 9811 Resort Hotel 59
## 9812 Resort Hotel 65
## 9813 Resort Hotel 93
## 9814 Resort Hotel 4
## 9815 Resort Hotel 115
## 9816 Resort Hotel 187
## 9817 Resort Hotel 11
## 9818 Resort Hotel 11
## 9819 Resort Hotel 2
## 9820 Resort Hotel 32
## 9821 Resort Hotel 27
## 9822 Resort Hotel 15
## 9823 Resort Hotel 42
## 9824 Resort Hotel 86
## 9825 Resort Hotel 23
## 9826 Resort Hotel 36
## 9827 Resort Hotel 66
## 9828 Resort Hotel 140
## 9829 Resort Hotel 113
## 9830 Resort Hotel 113
## 9831 Resort Hotel 102
## 9832 Resort Hotel 52
## 9833 Resort Hotel 85
## 9834 Resort Hotel 125
## 9835 Resort Hotel 161
## 9836 Resort Hotel 161
## 9837 Resort Hotel 154
## 9838 Resort Hotel 154
## 9839 Resort Hotel 0
## 9840 Resort Hotel 322
## 9841 Resort Hotel 1
## 9842 Resort Hotel 0
## 9843 Resort Hotel 2
## 9844 Resort Hotel 1
## 9845 Resort Hotel 5
## 9846 Resort Hotel 35
## 9847 Resort Hotel 37
## 9848 Resort Hotel 58
## 9849 Resort Hotel 60
## 9850 Resort Hotel 129
## 9851 Resort Hotel 84
## 9852 Resort Hotel 115
## 9853 Resort Hotel 78
## 9854 Resort Hotel 10
## 9855 Resort Hotel 82
## 9856 Resort Hotel 11
## 9857 Resort Hotel 8
## 9858 Resort Hotel 18
## 9859 Resort Hotel 22
## 9860 Resort Hotel 33
## 9861 Resort Hotel 108
## 9862 Resort Hotel 87
## 9863 Resort Hotel 275
## 9864 Resort Hotel 87
## 9865 Resort Hotel 106
## 9866 Resort Hotel 45
## 9867 Resort Hotel 45
## 9868 Resort Hotel 90
## 9869 Resort Hotel 242
## 9870 Resort Hotel 19
## 9871 Resort Hotel 18
## 9872 Resort Hotel 281
## 9873 Resort Hotel 281
## 9874 Resort Hotel 40
## 9875 Resort Hotel 40
## 9876 Resort Hotel 40
## 9877 Resort Hotel 40
## 9878 Resort Hotel 40
## 9879 Resort Hotel 27
## 9880 Resort Hotel 40
## 9881 Resort Hotel 17
## 9882 Resort Hotel 40
## 9883 Resort Hotel 40
## 9884 Resort Hotel 17
## 9885 Resort Hotel 0
## 9886 Resort Hotel 40
## 9887 Resort Hotel 40
## 9888 Resort Hotel 40
## 9889 Resort Hotel 5
## 9890 Resort Hotel 0
## 9891 Resort Hotel 16
## 9892 Resort Hotel 1
## 9893 Resort Hotel 41
## 9894 Resort Hotel 134
## 9895 Resort Hotel 1
## 9896 Resort Hotel 3
## 9897 Resort Hotel 3
## 9898 Resort Hotel 41
## 9899 Resort Hotel 41
## 9900 Resort Hotel 135
## 9901 Resort Hotel 123
## 9902 Resort Hotel 3
## 9903 Resort Hotel 128
## 9904 Resort Hotel 47
## 9905 Resort Hotel 128
## 9906 Resort Hotel 10
## 9907 Resort Hotel 123
## 9908 Resort Hotel 72
## 9909 Resort Hotel 86
## 9910 Resort Hotel 12
## 9911 Resort Hotel 43
## 9912 Resort Hotel 15
## 9913 Resort Hotel 124
## 9914 Resort Hotel 44
## 9915 Resort Hotel 103
## 9916 Resort Hotel 8
## 9917 Resort Hotel 5
## 9918 Resort Hotel 5
## 9919 Resort Hotel 5
## 9920 Resort Hotel 5
## 9921 Resort Hotel 160
## 9922 Resort Hotel 13
## 9923 Resort Hotel 6
## 9924 Resort Hotel 54
## 9925 Resort Hotel 0
## 9926 Resort Hotel 33
## 9927 Resort Hotel 77
## 9928 Resort Hotel 58
## 9929 Resort Hotel 65
## 9930 Resort Hotel 281
## 9931 Resort Hotel 27
## 9932 Resort Hotel 24
## 9933 Resort Hotel 30
## 9934 Resort Hotel 27
## 9935 Resort Hotel 24
## 9936 Resort Hotel 27
## 9937 Resort Hotel 124
## 9938 Resort Hotel 43
## 9939 Resort Hotel 16
## 9940 Resort Hotel 43
## 9941 Resort Hotel 43
## 9942 Resort Hotel 73
## 9943 Resort Hotel 78
## 9944 Resort Hotel 16
## 9945 Resort Hotel 17
## 9946 Resort Hotel 94
## 9947 Resort Hotel 2
## 9948 Resort Hotel 17
## 9949 Resort Hotel 9
## 9950 Resort Hotel 3
## 9951 Resort Hotel 94
## 9952 Resort Hotel 33
## 9953 Resort Hotel 18
## 9954 Resort Hotel 4
## 9955 Resort Hotel 4
## 9956 Resort Hotel 209
## 9957 Resort Hotel 5
## 9958 Resort Hotel 3
## 9959 Resort Hotel 219
## 9960 Resort Hotel 60
## 9961 Resort Hotel 178
## 9962 Resort Hotel 11
## 9963 Resort Hotel 84
## 9964 Resort Hotel 82
## 9965 Resort Hotel 125
## 9966 Resort Hotel 79
## 9967 Resort Hotel 12
## 9968 Resort Hotel 12
## 9969 Resort Hotel 12
## 9970 Resort Hotel 72
## 9971 Resort Hotel 15
## 9972 Resort Hotel 71
## 9973 Resort Hotel 17
## 9974 Resort Hotel 36
## 9975 Resort Hotel 292
## 9976 Resort Hotel 106
## 9977 Resort Hotel 20
## 9978 Resort Hotel 186
## 9979 Resort Hotel 76
## 9980 Resort Hotel 11
## 9981 Resort Hotel 0
## 9982 Resort Hotel 123
## 9983 Resort Hotel 85
## 9984 Resort Hotel 0
## 9985 Resort Hotel 2
## 9986 Resort Hotel 169
## 9987 Resort Hotel 169
## 9988 Resort Hotel 81
## 9989 Resort Hotel 110
## 9990 Resort Hotel 0
## 9991 Resort Hotel 2
## 9992 Resort Hotel 21
## 9993 Resort Hotel 31
## 9994 Resort Hotel 98
## 9995 Resort Hotel 166
## 9996 Resort Hotel 28
## 9997 Resort Hotel 31
## 9998 Resort Hotel 0
## 9999 Resort Hotel 1
## 10000 Resort Hotel 1
## 10001 Resort Hotel 1
## 10002 Resort Hotel 0
## 10003 Resort Hotel 1
## 10004 Resort Hotel 29
## 10005 Resort Hotel 83
## 10006 Resort Hotel 83
## 10007 Resort Hotel 111
## 10008 Resort Hotel 54
## 10009 Resort Hotel 85
## 10010 Resort Hotel 200
## 10011 Resort Hotel 135
## 10012 Resort Hotel 131
## 10013 Resort Hotel 3
## 10014 Resort Hotel 80
## 10015 Resort Hotel 145
## 10016 Resort Hotel 40
## 10017 Resort Hotel 102
## 10018 Resort Hotel 102
## 10019 Resort Hotel 0
## 10020 Resort Hotel 102
## 10021 Resort Hotel 95
## 10022 Resort Hotel 35
## 10023 Resort Hotel 170
## 10024 Resort Hotel 170
## 10025 Resort Hotel 125
## 10026 Resort Hotel 307
## 10027 Resort Hotel 298
## 10028 Resort Hotel 348
## 10029 Resort Hotel 55
## 10030 Resort Hotel 55
## 10031 Resort Hotel 94
## 10032 Resort Hotel 55
## 10033 Resort Hotel 77
## 10034 Resort Hotel 8
## 10035 Resort Hotel 35
## 10036 Resort Hotel 11
## 10037 Resort Hotel 135
## 10038 Resort Hotel 98
## 10039 Resort Hotel 32
## 10040 Resort Hotel 25
## 10041 Resort Hotel 18
## 10042 Resort Hotel 238
## 10043 Resort Hotel 238
## 10044 Resort Hotel 238
## 10045 Resort Hotel 238
## 10046 Resort Hotel 238
## 10047 Resort Hotel 24
## 10048 Resort Hotel 238
## 10049 Resort Hotel 238
## 10050 Resort Hotel 238
## 10051 Resort Hotel 43
## 10052 Resort Hotel 238
## 10053 Resort Hotel 238
## 10054 Resort Hotel 238
## 10055 Resort Hotel 238
## 10056 Resort Hotel 238
## 10057 Resort Hotel 238
## 10058 Resort Hotel 238
## 10059 Resort Hotel 238
## 10060 Resort Hotel 238
## 10061 Resort Hotel 238
## 10062 Resort Hotel 238
## 10063 Resort Hotel 7
## 10064 Resort Hotel 238
## 10065 Resort Hotel 238
## 10066 Resort Hotel 238
## 10067 Resort Hotel 238
## 10068 Resort Hotel 238
## 10069 Resort Hotel 19
## 10070 Resort Hotel 24
## 10071 Resort Hotel 238
## 10072 Resort Hotel 238
## 10073 Resort Hotel 211
## 10074 Resort Hotel 238
## 10075 Resort Hotel 238
## 10076 Resort Hotel 238
## 10077 Resort Hotel 54
## 10078 Resort Hotel 55
## 10079 Resort Hotel 77
## 10080 Resort Hotel 54
## 10081 Resort Hotel 89
## 10082 Resort Hotel 14
## 10083 Resort Hotel 77
## 10084 Resort Hotel 137
## 10085 Resort Hotel 15
## 10086 Resort Hotel 39
## 10087 Resort Hotel 32
## 10088 Resort Hotel 0
## 10089 Resort Hotel 1
## 10090 Resort Hotel 25
## 10091 Resort Hotel 1
## 10092 Resort Hotel 19
## 10093 Resort Hotel 33
## 10094 Resort Hotel 161
## 10095 Resort Hotel 55
## 10096 Resort Hotel 26
## 10097 Resort Hotel 149
## 10098 Resort Hotel 22
## 10099 Resort Hotel 82
## 10100 Resort Hotel 82
## 10101 Resort Hotel 239
## 10102 Resort Hotel 0
## 10103 Resort Hotel 18
## 10104 Resort Hotel 108
## 10105 Resort Hotel 40
## 10106 Resort Hotel 40
## 10107 Resort Hotel 12
## 10108 Resort Hotel 206
## 10109 Resort Hotel 134
## 10110 Resort Hotel 19
## 10111 Resort Hotel 19
## 10112 Resort Hotel 9
## 10113 Resort Hotel 42
## 10114 Resort Hotel 179
## 10115 Resort Hotel 20
## 10116 Resort Hotel 11
## 10117 Resort Hotel 46
## 10118 Resort Hotel 205
## 10119 Resort Hotel 60
## 10120 Resort Hotel 123
## 10121 Resort Hotel 142
## 10122 Resort Hotel 2
## 10123 Resort Hotel 47
## 10124 Resort Hotel 38
## 10125 Resort Hotel 33
## 10126 Resort Hotel 17
## 10127 Resort Hotel 19
## 10128 Resort Hotel 14
## 10129 Resort Hotel 14
## 10130 Resort Hotel 31
## 10131 Resort Hotel 30
## 10132 Resort Hotel 38
## 10133 Resort Hotel 55
## 10134 Resort Hotel 92
## 10135 Resort Hotel 92
## 10136 Resort Hotel 2
## 10137 Resort Hotel 91
## 10138 Resort Hotel 24
## 10139 Resort Hotel 56
## 10140 Resort Hotel 38
## 10141 Resort Hotel 38
## 10142 Resort Hotel 24
## 10143 Resort Hotel 30
## 10144 Resort Hotel 29
## 10145 Resort Hotel 29
## 10146 Resort Hotel 56
## 10147 Resort Hotel 34
## 10148 Resort Hotel 261
## 10149 Resort Hotel 342
## 10150 Resort Hotel 0
## 10151 Resort Hotel 30
## 10152 Resort Hotel 36
## 10153 Resort Hotel 15
## 10154 Resort Hotel 71
## 10155 Resort Hotel 33
## 10156 Resort Hotel 30
## 10157 Resort Hotel 92
## 10158 Resort Hotel 16
## 10159 Resort Hotel 44
## 10160 Resort Hotel 119
## 10161 Resort Hotel 16
## 10162 Resort Hotel 73
## 10163 Resort Hotel 93
## 10164 Resort Hotel 93
## 10165 Resort Hotel 73
## 10166 Resort Hotel 16
## 10167 Resort Hotel 320
## 10168 Resort Hotel 34
## 10169 Resort Hotel 23
## 10170 Resort Hotel 42
## 10171 Resort Hotel 127
## 10172 Resort Hotel 39
## 10173 Resort Hotel 21
## 10174 Resort Hotel 27
## 10175 Resort Hotel 38
## 10176 Resort Hotel 21
## 10177 Resort Hotel 4
## 10178 Resort Hotel 186
## 10179 Resort Hotel 42
## 10180 Resort Hotel 74
## 10181 Resort Hotel 74
## 10182 Resort Hotel 1
## 10183 Resort Hotel 74
## 10184 Resort Hotel 74
## 10185 Resort Hotel 74
## 10186 Resort Hotel 74
## 10187 Resort Hotel 74
## 10188 Resort Hotel 74
## 10189 Resort Hotel 74
## 10190 Resort Hotel 74
## 10191 Resort Hotel 74
## 10192 Resort Hotel 35
## 10193 Resort Hotel 34
## 10194 Resort Hotel 266
## 10195 Resort Hotel 58
## 10196 Resort Hotel 0
## 10197 Resort Hotel 200
## 10198 Resort Hotel 69
## 10199 Resort Hotel 69
## 10200 Resort Hotel 73
## 10201 Resort Hotel 13
## 10202 Resort Hotel 79
## 10203 Resort Hotel 79
## 10204 Resort Hotel 79
## 10205 Resort Hotel 79
## 10206 Resort Hotel 69
## 10207 Resort Hotel 79
## 10208 Resort Hotel 79
## 10209 Resort Hotel 79
## 10210 Resort Hotel 28
## 10211 Resort Hotel 140
## 10212 Resort Hotel 284
## 10213 Resort Hotel 0
## 10214 Resort Hotel 5
## 10215 Resort Hotel 28
## 10216 Resort Hotel 25
## 10217 Resort Hotel 6
## 10218 Resort Hotel 137
## 10219 Resort Hotel 14
## 10220 Resort Hotel 2
## 10221 Resort Hotel 164
## 10222 Resort Hotel 20
## 10223 Resort Hotel 20
## 10224 Resort Hotel 1
## 10225 Resort Hotel 69
## 10226 Resort Hotel 1
## 10227 Resort Hotel 28
## 10228 Resort Hotel 29
## 10229 Resort Hotel 0
## 10230 Resort Hotel 7
## 10231 Resort Hotel 51
## 10232 Resort Hotel 2
## 10233 Resort Hotel 70
## 10234 Resort Hotel 70
## 10235 Resort Hotel 70
## 10236 Resort Hotel 70
## 10237 Resort Hotel 2
## 10238 Resort Hotel 70
## 10239 Resort Hotel 2
## 10240 Resort Hotel 2
## 10241 Resort Hotel 70
## 10242 Resort Hotel 70
## 10243 Resort Hotel 70
## 10244 Resort Hotel 70
## 10245 Resort Hotel 70
## 10246 Resort Hotel 70
## 10247 Resort Hotel 2
## 10248 Resort Hotel 2
## 10249 Resort Hotel 35
## 10250 Resort Hotel 232
## 10251 Resort Hotel 0
## 10252 Resort Hotel 44
## 10253 Resort Hotel 22
## 10254 Resort Hotel 22
## 10255 Resort Hotel 55
## 10256 Resort Hotel 22
## 10257 Resort Hotel 22
## 10258 Resort Hotel 22
## 10259 Resort Hotel 22
## 10260 Resort Hotel 22
## 10261 Resort Hotel 22
## 10262 Resort Hotel 22
## 10263 Resort Hotel 22
## 10264 Resort Hotel 55
## 10265 Resort Hotel 22
## 10266 Resort Hotel 22
## 10267 Resort Hotel 22
## 10268 Resort Hotel 120
## 10269 Resort Hotel 26
## 10270 Resort Hotel 23
## 10271 Resort Hotel 35
## 10272 Resort Hotel 36
## 10273 Resort Hotel 128
## 10274 Resort Hotel 20
## 10275 Resort Hotel 46
## 10276 Resort Hotel 27
## 10277 Resort Hotel 46
## 10278 Resort Hotel 46
## 10279 Resort Hotel 112
## 10280 Resort Hotel 76
## 10281 Resort Hotel 105
## 10282 Resort Hotel 39
## 10283 Resort Hotel 25
## 10284 Resort Hotel 29
## 10285 Resort Hotel 18
## 10286 Resort Hotel 17
## 10287 Resort Hotel 50
## 10288 Resort Hotel 51
## 10289 Resort Hotel 17
## 10290 Resort Hotel 34
## 10291 Resort Hotel 191
## 10292 Resort Hotel 46
## 10293 Resort Hotel 13
## 10294 Resort Hotel 19
## 10295 Resort Hotel 19
## 10296 Resort Hotel 16
## 10297 Resort Hotel 18
## 10298 Resort Hotel 18
## 10299 Resort Hotel 22
## 10300 Resort Hotel 19
## 10301 Resort Hotel 48
## 10302 Resort Hotel 29
## 10303 Resort Hotel 78
## 10304 Resort Hotel 21
## 10305 Resort Hotel 26
## 10306 Resort Hotel 35
## 10307 Resort Hotel 18
## 10308 Resort Hotel 12
## 10309 Resort Hotel 54
## 10310 Resort Hotel 82
## 10311 Resort Hotel 75
## 10312 Resort Hotel 45
## 10313 Resort Hotel 26
## 10314 Resort Hotel 82
## 10315 Resort Hotel 38
## 10316 Resort Hotel 35
## 10317 Resort Hotel 29
## 10318 Resort Hotel 21
## 10319 Resort Hotel 38
## 10320 Resort Hotel 37
## 10321 Resort Hotel 186
## 10322 Resort Hotel 172
## 10323 Resort Hotel 116
## 10324 Resort Hotel 116
## 10325 Resort Hotel 184
## 10326 Resort Hotel 33
## 10327 Resort Hotel 17
## 10328 Resort Hotel 40
## 10329 Resort Hotel 33
## 10330 Resort Hotel 15
## 10331 Resort Hotel 2
## 10332 Resort Hotel 53
## 10333 Resort Hotel 16
## 10334 Resort Hotel 79
## 10335 Resort Hotel 49
## 10336 Resort Hotel 49
## 10337 Resort Hotel 49
## 10338 Resort Hotel 49
## 10339 Resort Hotel 49
## 10340 Resort Hotel 49
## 10341 Resort Hotel 49
## 10342 Resort Hotel 49
## 10343 Resort Hotel 49
## 10344 Resort Hotel 49
## 10345 Resort Hotel 49
## 10346 Resort Hotel 49
## 10347 Resort Hotel 49
## 10348 Resort Hotel 0
## 10349 Resort Hotel 49
## 10350 Resort Hotel 49
## 10351 Resort Hotel 49
## 10352 Resort Hotel 49
## 10353 Resort Hotel 49
## 10354 Resort Hotel 63
## 10355 Resort Hotel 49
## 10356 Resort Hotel 49
## 10357 Resort Hotel 49
## 10358 Resort Hotel 49
## 10359 Resort Hotel 49
## 10360 Resort Hotel 49
## 10361 Resort Hotel 187
## 10362 Resort Hotel 194
## 10363 Resort Hotel 181
## 10364 Resort Hotel 181
## 10365 Resort Hotel 181
## 10366 Resort Hotel 181
## 10367 Resort Hotel 181
## 10368 Resort Hotel 181
## 10369 Resort Hotel 26
## 10370 Resort Hotel 50
## 10371 Resort Hotel 240
## 10372 Resort Hotel 240
## 10373 Resort Hotel 84
## 10374 Resort Hotel 181
## 10375 Resort Hotel 181
## 10376 Resort Hotel 181
## 10377 Resort Hotel 181
## 10378 Resort Hotel 84
## 10379 Resort Hotel 181
## 10380 Resort Hotel 181
## 10381 Resort Hotel 181
## 10382 Resort Hotel 181
## 10383 Resort Hotel 84
## 10384 Resort Hotel 181
## 10385 Resort Hotel 181
## 10386 Resort Hotel 182
## 10387 Resort Hotel 21
## 10388 Resort Hotel 7
## 10389 Resort Hotel 5
## 10390 Resort Hotel 8
## 10391 Resort Hotel 8
## 10392 Resort Hotel 8
## 10393 Resort Hotel 8
## 10394 Resort Hotel 8
## 10395 Resort Hotel 39
## 10396 Resort Hotel 266
## 10397 Resort Hotel 11
## 10398 Resort Hotel 82
## 10399 Resort Hotel 168
## 10400 Resort Hotel 167
## 10401 Resort Hotel 316
## 10402 Resort Hotel 9
## 10403 Resort Hotel 15
## 10404 Resort Hotel 30
## 10405 Resort Hotel 25
## 10406 Resort Hotel 17
## 10407 Resort Hotel 270
## 10408 Resort Hotel 270
## 10409 Resort Hotel 312
## 10410 Resort Hotel 312
## 10411 Resort Hotel 312
## 10412 Resort Hotel 312
## 10413 Resort Hotel 312
## 10414 Resort Hotel 53
## 10415 Resort Hotel 312
## 10416 Resort Hotel 171
## 10417 Resort Hotel 35
## 10418 Resort Hotel 312
## 10419 Resort Hotel 53
## 10420 Resort Hotel 312
## 10421 Resort Hotel 312
## 10422 Resort Hotel 312
## 10423 Resort Hotel 312
## 10424 Resort Hotel 312
## 10425 Resort Hotel 53
## 10426 Resort Hotel 312
## 10427 Resort Hotel 312
## 10428 Resort Hotel 312
## 10429 Resort Hotel 312
## 10430 Resort Hotel 124
## 10431 Resort Hotel 195
## 10432 Resort Hotel 4
## 10433 Resort Hotel 6
## 10434 Resort Hotel 5
## 10435 Resort Hotel 3
## 10436 Resort Hotel 142
## 10437 Resort Hotel 1
## 10438 Resort Hotel 19
## 10439 Resort Hotel 21
## 10440 Resort Hotel 220
## 10441 Resort Hotel 218
## 10442 Resort Hotel 2
## 10443 Resort Hotel 8
## 10444 Resort Hotel 25
## 10445 Resort Hotel 321
## 10446 Resort Hotel 211
## 10447 Resort Hotel 0
## 10448 Resort Hotel 107
## 10449 Resort Hotel 115
## 10450 Resort Hotel 86
## 10451 Resort Hotel 86
## 10452 Resort Hotel 86
## 10453 Resort Hotel 86
## 10454 Resort Hotel 115
## 10455 Resort Hotel 115
## 10456 Resort Hotel 86
## 10457 Resort Hotel 86
## 10458 Resort Hotel 86
## 10459 Resort Hotel 17
## 10460 Resort Hotel 86
## 10461 Resort Hotel 86
## 10462 Resort Hotel 86
## 10463 Resort Hotel 86
## 10464 Resort Hotel 86
## 10465 Resort Hotel 86
## 10466 Resort Hotel 86
## 10467 Resort Hotel 86
## 10468 Resort Hotel 86
## 10469 Resort Hotel 115
## 10470 Resort Hotel 115
## 10471 Resort Hotel 26
## 10472 Resort Hotel 100
## 10473 Resort Hotel 146
## 10474 Resort Hotel 86
## 10475 Resort Hotel 86
## 10476 Resort Hotel 86
## 10477 Resort Hotel 86
## 10478 Resort Hotel 86
## 10479 Resort Hotel 16
## 10480 Resort Hotel 86
## 10481 Resort Hotel 86
## 10482 Resort Hotel 86
## 10483 Resort Hotel 86
## 10484 Resort Hotel 86
## 10485 Resort Hotel 86
## 10486 Resort Hotel 142
## 10487 Resort Hotel 142
## 10488 Resort Hotel 142
## 10489 Resort Hotel 142
## 10490 Resort Hotel 142
## 10491 Resort Hotel 142
## 10492 Resort Hotel 125
## 10493 Resort Hotel 64
## 10494 Resort Hotel 18
## 10495 Resort Hotel 14
## 10496 Resort Hotel 16
## 10497 Resort Hotel 14
## 10498 Resort Hotel 32
## 10499 Resort Hotel 31
## 10500 Resort Hotel 148
## 10501 Resort Hotel 46
## 10502 Resort Hotel 81
## 10503 Resort Hotel 22
## 10504 Resort Hotel 88
## 10505 Resort Hotel 57
## 10506 Resort Hotel 9
## 10507 Resort Hotel 15
## 10508 Resort Hotel 39
## 10509 Resort Hotel 339
## 10510 Resort Hotel 332
## 10511 Resort Hotel 332
## 10512 Resort Hotel 339
## 10513 Resort Hotel 57
## 10514 Resort Hotel 339
## 10515 Resort Hotel 339
## 10516 Resort Hotel 88
## 10517 Resort Hotel 57
## 10518 Resort Hotel 332
## 10519 Resort Hotel 39
## 10520 Resort Hotel 339
## 10521 Resort Hotel 46
## 10522 Resort Hotel 332
## 10523 Resort Hotel 57
## 10524 Resort Hotel 57
## 10525 Resort Hotel 339
## 10526 Resort Hotel 252
## 10527 Resort Hotel 2
## 10528 Resort Hotel 30
## 10529 Resort Hotel 66
## 10530 Resort Hotel 39
## 10531 Resort Hotel 96
## 10532 Resort Hotel 96
## 10533 Resort Hotel 96
## 10534 Resort Hotel 96
## 10535 Resort Hotel 133
## 10536 Resort Hotel 112
## 10537 Resort Hotel 146
## 10538 Resort Hotel 24
## 10539 Resort Hotel 24
## 10540 Resort Hotel 58
## 10541 Resort Hotel 27
## 10542 Resort Hotel 115
## 10543 Resort Hotel 208
## 10544 Resort Hotel 0
## 10545 Resort Hotel 61
## 10546 Resort Hotel 140
## 10547 Resort Hotel 168
## 10548 Resort Hotel 26
## 10549 Resort Hotel 26
## 10550 Resort Hotel 26
## 10551 Resort Hotel 26
## 10552 Resort Hotel 26
## 10553 Resort Hotel 177
## 10554 Resort Hotel 157
## 10555 Resort Hotel 26
## 10556 Resort Hotel 278
## 10557 Resort Hotel 19
## 10558 Resort Hotel 94
## 10559 Resort Hotel 144
## 10560 Resort Hotel 144
## 10561 Resort Hotel 194
## 10562 Resort Hotel 144
## 10563 Resort Hotel 144
## 10564 Resort Hotel 144
## 10565 Resort Hotel 144
## 10566 Resort Hotel 144
## 10567 Resort Hotel 144
## 10568 Resort Hotel 144
## 10569 Resort Hotel 144
## 10570 Resort Hotel 144
## 10571 Resort Hotel 144
## 10572 Resort Hotel 144
## 10573 Resort Hotel 144
## 10574 Resort Hotel 144
## 10575 Resort Hotel 194
## 10576 Resort Hotel 177
## 10577 Resort Hotel 159
## 10578 Resort Hotel 112
## 10579 Resort Hotel 112
## 10580 Resort Hotel 112
## 10581 Resort Hotel 112
## 10582 Resort Hotel 112
## 10583 Resort Hotel 285
## 10584 Resort Hotel 211
## 10585 Resort Hotel 24
## 10586 Resort Hotel 210
## 10587 Resort Hotel 232
## 10588 Resort Hotel 148
## 10589 Resort Hotel 10
## 10590 Resort Hotel 139
## 10591 Resort Hotel 24
## 10592 Resort Hotel 50
## 10593 Resort Hotel 27
## 10594 Resort Hotel 28
## 10595 Resort Hotel 134
## 10596 Resort Hotel 28
## 10597 Resort Hotel 204
## 10598 Resort Hotel 30
## 10599 Resort Hotel 14
## 10600 Resort Hotel 26
## 10601 Resort Hotel 68
## 10602 Resort Hotel 201
## 10603 Resort Hotel 115
## 10604 Resort Hotel 201
## 10605 Resort Hotel 282
## 10606 Resort Hotel 201
## 10607 Resort Hotel 205
## 10608 Resort Hotel 74
## 10609 Resort Hotel 309
## 10610 Resort Hotel 283
## 10611 Resort Hotel 3
## 10612 Resort Hotel 320
## 10613 Resort Hotel 216
## 10614 Resort Hotel 96
## 10615 Resort Hotel 12
## 10616 Resort Hotel 6
## 10617 Resort Hotel 20
## 10618 Resort Hotel 61
## 10619 Resort Hotel 98
## 10620 Resort Hotel 40
## 10621 Resort Hotel 123
## 10622 Resort Hotel 340
## 10623 Resort Hotel 39
## 10624 Resort Hotel 350
## 10625 Resort Hotel 350
## 10626 Resort Hotel 340
## 10627 Resort Hotel 350
## 10628 Resort Hotel 350
## 10629 Resort Hotel 350
## 10630 Resort Hotel 350
## 10631 Resort Hotel 350
## 10632 Resort Hotel 340
## 10633 Resort Hotel 350
## 10634 Resort Hotel 340
## 10635 Resort Hotel 16
## 10636 Resort Hotel 350
## 10637 Resort Hotel 350
## 10638 Resort Hotel 350
## 10639 Resort Hotel 350
## 10640 Resort Hotel 214
## 10641 Resort Hotel 214
## 10642 Resort Hotel 186
## 10643 Resort Hotel 214
## 10644 Resort Hotel 214
## 10645 Resort Hotel 186
## 10646 Resort Hotel 214
## 10647 Resort Hotel 13
## 10648 Resort Hotel 13
## 10649 Resort Hotel 226
## 10650 Resort Hotel 226
## 10651 Resort Hotel 105
## 10652 Resort Hotel 120
## 10653 Resort Hotel 273
## 10654 Resort Hotel 273
## 10655 Resort Hotel 273
## 10656 Resort Hotel 102
## 10657 Resort Hotel 102
## 10658 Resort Hotel 102
## 10659 Resort Hotel 102
## 10660 Resort Hotel 102
## 10661 Resort Hotel 74
## 10662 Resort Hotel 11
## 10663 Resort Hotel 182
## 10664 Resort Hotel 103
## 10665 Resort Hotel 103
## 10666 Resort Hotel 103
## 10667 Resort Hotel 103
## 10668 Resort Hotel 103
## 10669 Resort Hotel 103
## 10670 Resort Hotel 103
## 10671 Resort Hotel 103
## 10672 Resort Hotel 103
## 10673 Resort Hotel 103
## 10674 Resort Hotel 103
## 10675 Resort Hotel 103
## 10676 Resort Hotel 103
## 10677 Resort Hotel 103
## 10678 Resort Hotel 103
## 10679 Resort Hotel 103
## 10680 Resort Hotel 103
## 10681 Resort Hotel 103
## 10682 Resort Hotel 103
## 10683 Resort Hotel 103
## 10684 Resort Hotel 103
## 10685 Resort Hotel 103
## 10686 Resort Hotel 103
## 10687 Resort Hotel 103
## 10688 Resort Hotel 103
## 10689 Resort Hotel 103
## 10690 Resort Hotel 103
## 10691 Resort Hotel 103
## 10692 Resort Hotel 103
## 10693 Resort Hotel 103
## 10694 Resort Hotel 103
## 10695 Resort Hotel 103
## 10696 Resort Hotel 103
## 10697 Resort Hotel 103
## 10698 Resort Hotel 103
## 10699 Resort Hotel 103
## 10700 Resort Hotel 103
## 10701 Resort Hotel 103
## 10702 Resort Hotel 103
## 10703 Resort Hotel 103
## 10704 Resort Hotel 103
## 10705 Resort Hotel 103
## 10706 Resort Hotel 103
## 10707 Resort Hotel 103
## 10708 Resort Hotel 103
## 10709 Resort Hotel 6
## 10710 Resort Hotel 34
## 10711 Resort Hotel 21
## 10712 Resort Hotel 136
## 10713 Resort Hotel 176
## 10714 Resort Hotel 0
## 10715 Resort Hotel 54
## 10716 Resort Hotel 26
## 10717 Resort Hotel 180
## 10718 Resort Hotel 125
## 10719 Resort Hotel 63
## 10720 Resort Hotel 192
## 10721 Resort Hotel 60
## 10722 Resort Hotel 40
## 10723 Resort Hotel 188
## 10724 Resort Hotel 118
## 10725 Resort Hotel 0
## 10726 Resort Hotel 72
## 10727 Resort Hotel 40
## 10728 Resort Hotel 25
## 10729 Resort Hotel 113
## 10730 Resort Hotel 175
## 10731 Resort Hotel 50
## 10732 Resort Hotel 66
## 10733 Resort Hotel 9
## 10734 Resort Hotel 47
## 10735 Resort Hotel 156
## 10736 Resort Hotel 30
## 10737 Resort Hotel 34
## 10738 Resort Hotel 47
## 10739 Resort Hotel 15
## 10740 Resort Hotel 15
## 10741 Resort Hotel 0
## 10742 Resort Hotel 19
## 10743 Resort Hotel 57
## 10744 Resort Hotel 27
## 10745 Resort Hotel 23
## 10746 Resort Hotel 24
## 10747 Resort Hotel 64
## 10748 Resort Hotel 27
## 10749 Resort Hotel 145
## 10750 Resort Hotel 32
## 10751 Resort Hotel 162
## 10752 Resort Hotel 69
## 10753 Resort Hotel 63
## 10754 Resort Hotel 94
## 10755 Resort Hotel 35
## 10756 Resort Hotel 48
## 10757 Resort Hotel 69
## 10758 Resort Hotel 177
## 10759 Resort Hotel 174
## 10760 Resort Hotel 57
## 10761 Resort Hotel 2
## 10762 Resort Hotel 82
## 10763 Resort Hotel 117
## 10764 Resort Hotel 38
## 10765 Resort Hotel 84
## 10766 Resort Hotel 38
## 10767 Resort Hotel 174
## 10768 Resort Hotel 10
## 10769 Resort Hotel 10
## 10770 Resort Hotel 255
## 10771 Resort Hotel 10
## 10772 Resort Hotel 10
## 10773 Resort Hotel 10
## 10774 Resort Hotel 10
## 10775 Resort Hotel 10
## 10776 Resort Hotel 10
## 10777 Resort Hotel 10
## 10778 Resort Hotel 10
## 10779 Resort Hotel 10
## 10780 Resort Hotel 10
## 10781 Resort Hotel 10
## 10782 Resort Hotel 10
## 10783 Resort Hotel 10
## 10784 Resort Hotel 55
## 10785 Resort Hotel 26
## 10786 Resort Hotel 12
## 10787 Resort Hotel 112
## 10788 Resort Hotel 364
## 10789 Resort Hotel 12
## 10790 Resort Hotel 255
## 10791 Resort Hotel 255
## 10792 Resort Hotel 255
## 10793 Resort Hotel 273
## 10794 Resort Hotel 48
## 10795 Resort Hotel 26
## 10796 Resort Hotel 121
## 10797 Resort Hotel 240
## 10798 Resort Hotel 192
## 10799 Resort Hotel 205
## 10800 Resort Hotel 6
## 10801 Resort Hotel 12
## 10802 Resort Hotel 46
## 10803 Resort Hotel 152
## 10804 Resort Hotel 226
## 10805 Resort Hotel 59
## 10806 Resort Hotel 52
## 10807 Resort Hotel 57
## 10808 Resort Hotel 152
## 10809 Resort Hotel 252
## 10810 Resort Hotel 1
## 10811 Resort Hotel 21
## 10812 Resort Hotel 41
## 10813 Resort Hotel 175
## 10814 Resort Hotel 175
## 10815 Resort Hotel 10
## 10816 Resort Hotel 175
## 10817 Resort Hotel 175
## 10818 Resort Hotel 22
## 10819 Resort Hotel 175
## 10820 Resort Hotel 175
## 10821 Resort Hotel 175
## 10822 Resort Hotel 180
## 10823 Resort Hotel 31
## 10824 Resort Hotel 32
## 10825 Resort Hotel 84
## 10826 Resort Hotel 0
## 10827 Resort Hotel 1
## 10828 Resort Hotel 47
## 10829 Resort Hotel 53
## 10830 Resort Hotel 32
## 10831 Resort Hotel 53
## 10832 Resort Hotel 53
## 10833 Resort Hotel 84
## 10834 Resort Hotel 223
## 10835 Resort Hotel 24
## 10836 Resort Hotel 45
## 10837 Resort Hotel 155
## 10838 Resort Hotel 62
## 10839 Resort Hotel 123
## 10840 Resort Hotel 45
## 10841 Resort Hotel 45
## 10842 Resort Hotel 58
## 10843 Resort Hotel 30
## 10844 Resort Hotel 95
## 10845 Resort Hotel 32
## 10846 Resort Hotel 313
## 10847 Resort Hotel 351
## 10848 Resort Hotel 46
## 10849 Resort Hotel 60
## 10850 Resort Hotel 47
## 10851 Resort Hotel 89
## 10852 Resort Hotel 313
## 10853 Resort Hotel 313
## 10854 Resort Hotel 351
## 10855 Resort Hotel 313
## 10856 Resort Hotel 86
## 10857 Resort Hotel 313
## 10858 Resort Hotel 351
## 10859 Resort Hotel 351
## 10860 Resort Hotel 351
## 10861 Resort Hotel 187
## 10862 Resort Hotel 351
## 10863 Resort Hotel 58
## 10864 Resort Hotel 233
## 10865 Resort Hotel 233
## 10866 Resort Hotel 70
## 10867 Resort Hotel 351
## 10868 Resort Hotel 200
## 10869 Resort Hotel 3
## 10870 Resort Hotel 29
## 10871 Resort Hotel 3
## 10872 Resort Hotel 210
## 10873 Resort Hotel 79
## 10874 Resort Hotel 212
## 10875 Resort Hotel 3
## 10876 Resort Hotel 3
## 10877 Resort Hotel 68
## 10878 Resort Hotel 55
## 10879 Resort Hotel 124
## 10880 Resort Hotel 124
## 10881 Resort Hotel 124
## 10882 Resort Hotel 124
## 10883 Resort Hotel 124
## 10884 Resort Hotel 124
## 10885 Resort Hotel 124
## 10886 Resort Hotel 124
## 10887 Resort Hotel 124
## 10888 Resort Hotel 124
## 10889 Resort Hotel 124
## 10890 Resort Hotel 124
## 10891 Resort Hotel 124
## 10892 Resort Hotel 105
## 10893 Resort Hotel 124
## 10894 Resort Hotel 124
## 10895 Resort Hotel 124
## 10896 Resort Hotel 146
## 10897 Resort Hotel 124
## 10898 Resort Hotel 124
## 10899 Resort Hotel 124
## 10900 Resort Hotel 124
## 10901 Resort Hotel 124
## 10902 Resort Hotel 124
## 10903 Resort Hotel 124
## 10904 Resort Hotel 124
## 10905 Resort Hotel 124
## 10906 Resort Hotel 124
## 10907 Resort Hotel 124
## 10908 Resort Hotel 30
## 10909 Resort Hotel 216
## 10910 Resort Hotel 216
## 10911 Resort Hotel 97
## 10912 Resort Hotel 188
## 10913 Resort Hotel 21
## 10914 Resort Hotel 217
## 10915 Resort Hotel 214
## 10916 Resort Hotel 56
## 10917 Resort Hotel 54
## 10918 Resort Hotel 24
## 10919 Resort Hotel 148
## 10920 Resort Hotel 148
## 10921 Resort Hotel 29
## 10922 Resort Hotel 62
## 10923 Resort Hotel 65
## 10924 Resort Hotel 238
## 10925 Resort Hotel 212
## 10926 Resort Hotel 39
## 10927 Resort Hotel 62
## 10928 Resort Hotel 5
## 10929 Resort Hotel 23
## 10930 Resort Hotel 52
## 10931 Resort Hotel 70
## 10932 Resort Hotel 51
## 10933 Resort Hotel 70
## 10934 Resort Hotel 70
## 10935 Resort Hotel 70
## 10936 Resort Hotel 62
## 10937 Resort Hotel 76
## 10938 Resort Hotel 25
## 10939 Resort Hotel 25
## 10940 Resort Hotel 220
## 10941 Resort Hotel 27
## 10942 Resort Hotel 50
## 10943 Resort Hotel 32
## 10944 Resort Hotel 77
## 10945 Resort Hotel 42
## 10946 Resort Hotel 141
## 10947 Resort Hotel 141
## 10948 Resort Hotel 95
## 10949 Resort Hotel 203
## 10950 Resort Hotel 66
## 10951 Resort Hotel 19
## 10952 Resort Hotel 13
## 10953 Resort Hotel 26
## 10954 Resort Hotel 153
## 10955 Resort Hotel 63
## 10956 Resort Hotel 66
## 10957 Resort Hotel 134
## 10958 Resort Hotel 73
## 10959 Resort Hotel 23
## 10960 Resort Hotel 40
## 10961 Resort Hotel 66
## 10962 Resort Hotel 246
## 10963 Resort Hotel 80
## 10964 Resort Hotel 134
## 10965 Resort Hotel 32
## 10966 Resort Hotel 35
## 10967 Resort Hotel 180
## 10968 Resort Hotel 43
## 10969 Resort Hotel 261
## 10970 Resort Hotel 62
## 10971 Resort Hotel 35
## 10972 Resort Hotel 90
## 10973 Resort Hotel 43
## 10974 Resort Hotel 230
## 10975 Resort Hotel 167
## 10976 Resort Hotel 230
## 10977 Resort Hotel 76
## 10978 Resort Hotel 167
## 10979 Resort Hotel 86
## 10980 Resort Hotel 72
## 10981 Resort Hotel 159
## 10982 Resort Hotel 227
## 10983 Resort Hotel 224
## 10984 Resort Hotel 162
## 10985 Resort Hotel 161
## 10986 Resort Hotel 162
## 10987 Resort Hotel 162
## 10988 Resort Hotel 161
## 10989 Resort Hotel 162
## 10990 Resort Hotel 58
## 10991 Resort Hotel 71
## 10992 Resort Hotel 58
## 10993 Resort Hotel 43
## 10994 Resort Hotel 43
## 10995 Resort Hotel 43
## 10996 Resort Hotel 80
## 10997 Resort Hotel 186
## 10998 Resort Hotel 14
## 10999 Resort Hotel 172
## 11000 Resort Hotel 98
## 11001 Resort Hotel 72
## 11002 Resort Hotel 60
## 11003 Resort Hotel 55
## 11004 Resort Hotel 79
## 11005 Resort Hotel 72
## 11006 Resort Hotel 70
## 11007 Resort Hotel 208
## 11008 Resort Hotel 87
## 11009 Resort Hotel 229
## 11010 Resort Hotel 75
## 11011 Resort Hotel 272
## 11012 Resort Hotel 111
## 11013 Resort Hotel 102
## 11014 Resort Hotel 69
## 11015 Resort Hotel 111
## 11016 Resort Hotel 46
## 11017 Resort Hotel 173
## 11018 Resort Hotel 173
## 11019 Resort Hotel 161
## 11020 Resort Hotel 105
## 11021 Resort Hotel 267
## 11022 Resort Hotel 267
## 11023 Resort Hotel 249
## 11024 Resort Hotel 267
## 11025 Resort Hotel 267
## 11026 Resort Hotel 267
## 11027 Resort Hotel 119
## 11028 Resort Hotel 3
## 11029 Resort Hotel 19
## 11030 Resort Hotel 102
## 11031 Resort Hotel 102
## 11032 Resort Hotel 98
## 11033 Resort Hotel 29
## 11034 Resort Hotel 73
## 11035 Resort Hotel 73
## 11036 Resort Hotel 73
## 11037 Resort Hotel 10
## 11038 Resort Hotel 102
## 11039 Resort Hotel 210
## 11040 Resort Hotel 98
## 11041 Resort Hotel 86
## 11042 Resort Hotel 239
## 11043 Resort Hotel 93
## 11044 Resort Hotel 239
## 11045 Resort Hotel 125
## 11046 Resort Hotel 24
## 11047 Resort Hotel 184
## 11048 Resort Hotel 4
## 11049 Resort Hotel 94
## 11050 Resort Hotel 72
## 11051 Resort Hotel 116
## 11052 Resort Hotel 179
## 11053 Resort Hotel 158
## 11054 Resort Hotel 179
## 11055 Resort Hotel 132
## 11056 Resort Hotel 154
## 11057 Resort Hotel 131
## 11058 Resort Hotel 210
## 11059 Resort Hotel 95
## 11060 Resort Hotel 221
## 11061 Resort Hotel 131
## 11062 Resort Hotel 87
## 11063 Resort Hotel 95
## 11064 Resort Hotel 131
## 11065 Resort Hotel 104
## 11066 Resort Hotel 87
## 11067 Resort Hotel 131
## 11068 Resort Hotel 131
## 11069 Resort Hotel 184
## 11070 Resort Hotel 144
## 11071 Resort Hotel 133
## 11072 Resort Hotel 184
## 11073 Resort Hotel 65
## 11074 Resort Hotel 92
## 11075 Resort Hotel 68
## 11076 Resort Hotel 92
## 11077 Resort Hotel 92
## 11078 Resort Hotel 39
## 11079 Resort Hotel 126
## 11080 Resort Hotel 126
## 11081 Resort Hotel 39
## 11082 Resort Hotel 126
## 11083 Resort Hotel 168
## 11084 Resort Hotel 95
## 11085 Resort Hotel 85
## 11086 Resort Hotel 80
## 11087 Resort Hotel 95
## 11088 Resort Hotel 64
## 11089 Resort Hotel 228
## 11090 Resort Hotel 228
## 11091 Resort Hotel 287
## 11092 Resort Hotel 38
## 11093 Resort Hotel 206
## 11094 Resort Hotel 72
## 11095 Resort Hotel 24
## 11096 Resort Hotel 76
## 11097 Resort Hotel 88
## 11098 Resort Hotel 88
## 11099 Resort Hotel 93
## 11100 Resort Hotel 88
## 11101 Resort Hotel 88
## 11102 Resort Hotel 100
## 11103 Resort Hotel 9
## 11104 Resort Hotel 96
## 11105 Resort Hotel 28
## 11106 Resort Hotel 174
## 11107 Resort Hotel 213
## 11108 Resort Hotel 26
## 11109 Resort Hotel 29
## 11110 Resort Hotel 29
## 11111 Resort Hotel 72
## 11112 Resort Hotel 63
## 11113 Resort Hotel 216
## 11114 Resort Hotel 105
## 11115 Resort Hotel 105
## 11116 Resort Hotel 8
## 11117 Resort Hotel 8
## 11118 Resort Hotel 157
## 11119 Resort Hotel 157
## 11120 Resort Hotel 2
## 11121 Resort Hotel 78
## 11122 Resort Hotel 278
## 11123 Resort Hotel 4
## 11124 Resort Hotel 180
## 11125 Resort Hotel 171
## 11126 Resort Hotel 108
## 11127 Resort Hotel 253
## 11128 Resort Hotel 296
## 11129 Resort Hotel 214
## 11130 Resort Hotel 208
## 11131 Resort Hotel 109
## 11132 Resort Hotel 23
## 11133 Resort Hotel 234
## 11134 Resort Hotel 232
## 11135 Resort Hotel 239
## 11136 Resort Hotel 234
## 11137 Resort Hotel 15
## 11138 Resort Hotel 234
## 11139 Resort Hotel 214
## 11140 Resort Hotel 23
## 11141 Resort Hotel 208
## 11142 Resort Hotel 239
## 11143 Resort Hotel 239
## 11144 Resort Hotel 214
## 11145 Resort Hotel 239
## 11146 Resort Hotel 239
## 11147 Resort Hotel 252
## 11148 Resort Hotel 224
## 11149 Resort Hotel 234
## 11150 Resort Hotel 67
## 11151 Resort Hotel 23
## 11152 Resort Hotel 31
## 11153 Resort Hotel 240
## 11154 Resort Hotel 130
## 11155 Resort Hotel 253
## 11156 Resort Hotel 253
## 11157 Resort Hotel 39
## 11158 Resort Hotel 201
## 11159 Resort Hotel 259
## 11160 Resort Hotel 259
## 11161 Resort Hotel 4
## 11162 Resort Hotel 211
## 11163 Resort Hotel 211
## 11164 Resort Hotel 203
## 11165 Resort Hotel 203
## 11166 Resort Hotel 203
## 11167 Resort Hotel 203
## 11168 Resort Hotel 203
## 11169 Resort Hotel 203
## 11170 Resort Hotel 203
## 11171 Resort Hotel 266
## 11172 Resort Hotel 80
## 11173 Resort Hotel 36
## 11174 Resort Hotel 5
## 11175 Resort Hotel 245
## 11176 Resort Hotel 63
## 11177 Resort Hotel 225
## 11178 Resort Hotel 218
## 11179 Resort Hotel 36
## 11180 Resort Hotel 0
## 11181 Resort Hotel 90
## 11182 Resort Hotel 224
## 11183 Resort Hotel 224
## 11184 Resort Hotel 224
## 11185 Resort Hotel 224
## 11186 Resort Hotel 224
## 11187 Resort Hotel 9
## 11188 Resort Hotel 90
## 11189 Resort Hotel 61
## 11190 Resort Hotel 34
## 11191 Resort Hotel 17
## 11192 Resort Hotel 18
## 11193 Resort Hotel 4
## 11194 Resort Hotel 250
## 11195 Resort Hotel 80
## 11196 Resort Hotel 302
## 11197 Resort Hotel 201
## 11198 Resort Hotel 201
## 11199 Resort Hotel 113
## 11200 Resort Hotel 112
## 11201 Resort Hotel 215
## 11202 Resort Hotel 215
## 11203 Resort Hotel 267
## 11204 Resort Hotel 59
## 11205 Resort Hotel 26
## 11206 Resort Hotel 16
## 11207 Resort Hotel 109
## 11208 Resort Hotel 37
## 11209 Resort Hotel 21
## 11210 Resort Hotel 6
## 11211 Resort Hotel 110
## 11212 Resort Hotel 12
## 11213 Resort Hotel 255
## 11214 Resort Hotel 21
## 11215 Resort Hotel 23
## 11216 Resort Hotel 100
## 11217 Resort Hotel 100
## 11218 Resort Hotel 100
## 11219 Resort Hotel 89
## 11220 Resort Hotel 100
## 11221 Resort Hotel 100
## 11222 Resort Hotel 34
## 11223 Resort Hotel 54
## 11224 Resort Hotel 100
## 11225 Resort Hotel 100
## 11226 Resort Hotel 100
## 11227 Resort Hotel 15
## 11228 Resort Hotel 221
## 11229 Resort Hotel 5
## 11230 Resort Hotel 100
## 11231 Resort Hotel 13
## 11232 Resort Hotel 59
## 11233 Resort Hotel 59
## 11234 Resort Hotel 233
## 11235 Resort Hotel 172
## 11236 Resort Hotel 172
## 11237 Resort Hotel 287
## 11238 Resort Hotel 172
## 11239 Resort Hotel 172
## 11240 Resort Hotel 172
## 11241 Resort Hotel 287
## 11242 Resort Hotel 172
## 11243 Resort Hotel 104
## 11244 Resort Hotel 172
## 11245 Resort Hotel 172
## 11246 Resort Hotel 251
## 11247 Resort Hotel 103
## 11248 Resort Hotel 78
## 11249 Resort Hotel 172
## 11250 Resort Hotel 172
## 11251 Resort Hotel 172
## 11252 Resort Hotel 20
## 11253 Resort Hotel 85
## 11254 Resort Hotel 172
## 11255 Resort Hotel 172
## 11256 Resort Hotel 172
## 11257 Resort Hotel 172
## 11258 Resort Hotel 38
## 11259 Resort Hotel 25
## 11260 Resort Hotel 25
## 11261 Resort Hotel 179
## 11262 Resort Hotel 87
## 11263 Resort Hotel 87
## 11264 Resort Hotel 87
## 11265 Resort Hotel 87
## 11266 Resort Hotel 87
## 11267 Resort Hotel 87
## 11268 Resort Hotel 43
## 11269 Resort Hotel 221
## 11270 Resort Hotel 221
## 11271 Resort Hotel 221
## 11272 Resort Hotel 243
## 11273 Resort Hotel 221
## 11274 Resort Hotel 221
## 11275 Resort Hotel 221
## 11276 Resort Hotel 221
## 11277 Resort Hotel 221
## 11278 Resort Hotel 221
## 11279 Resort Hotel 221
## 11280 Resort Hotel 221
## 11281 Resort Hotel 219
## 11282 Resort Hotel 221
## 11283 Resort Hotel 221
## 11284 Resort Hotel 221
## 11285 Resort Hotel 221
## 11286 Resort Hotel 105
## 11287 Resort Hotel 188
## 11288 Resort Hotel 190
## 11289 Resort Hotel 72
## 11290 Resort Hotel 237
## 11291 Resort Hotel 18
## 11292 Resort Hotel 65
## 11293 Resort Hotel 65
## 11294 Resort Hotel 208
## 11295 Resort Hotel 155
## 11296 Resort Hotel 13
## 11297 Resort Hotel 152
## 11298 Resort Hotel 37
## 11299 Resort Hotel 155
## 11300 Resort Hotel 73
## 11301 Resort Hotel 308
## 11302 Resort Hotel 37
## 11303 Resort Hotel 87
## 11304 Resort Hotel 19
## 11305 Resort Hotel 111
## 11306 Resort Hotel 70
## 11307 Resort Hotel 74
## 11308 Resort Hotel 84
## 11309 Resort Hotel 127
## 11310 Resort Hotel 18
## 11311 Resort Hotel 113
## 11312 Resort Hotel 41
## 11313 Resort Hotel 237
## 11314 Resort Hotel 237
## 11315 Resort Hotel 209
## 11316 Resort Hotel 237
## 11317 Resort Hotel 209
## 11318 Resort Hotel 237
## 11319 Resort Hotel 237
## 11320 Resort Hotel 209
## 11321 Resort Hotel 94
## 11322 Resort Hotel 83
## 11323 Resort Hotel 83
## 11324 Resort Hotel 83
## 11325 Resort Hotel 83
## 11326 Resort Hotel 83
## 11327 Resort Hotel 83
## 11328 Resort Hotel 83
## 11329 Resort Hotel 93
## 11330 Resort Hotel 83
## 11331 Resort Hotel 83
## 11332 Resort Hotel 83
## 11333 Resort Hotel 65
## 11334 Resort Hotel 65
## 11335 Resort Hotel 65
## 11336 Resort Hotel 65
## 11337 Resort Hotel 65
## 11338 Resort Hotel 65
## 11339 Resort Hotel 65
## 11340 Resort Hotel 65
## 11341 Resort Hotel 229
## 11342 Resort Hotel 228
## 11343 Resort Hotel 217
## 11344 Resort Hotel 202
## 11345 Resort Hotel 202
## 11346 Resort Hotel 0
## 11347 Resort Hotel 202
## 11348 Resort Hotel 202
## 11349 Resort Hotel 202
## 11350 Resort Hotel 202
## 11351 Resort Hotel 43
## 11352 Resort Hotel 108
## 11353 Resort Hotel 51
## 11354 Resort Hotel 108
## 11355 Resort Hotel 108
## 11356 Resort Hotel 54
## 11357 Resort Hotel 108
## 11358 Resort Hotel 15
## 11359 Resort Hotel 210
## 11360 Resort Hotel 210
## 11361 Resort Hotel 210
## 11362 Resort Hotel 223
## 11363 Resort Hotel 210
## 11364 Resort Hotel 210
## 11365 Resort Hotel 223
## 11366 Resort Hotel 223
## 11367 Resort Hotel 210
## 11368 Resort Hotel 210
## 11369 Resort Hotel 121
## 11370 Resort Hotel 210
## 11371 Resort Hotel 210
## 11372 Resort Hotel 210
## 11373 Resort Hotel 223
## 11374 Resort Hotel 210
## 11375 Resort Hotel 210
## 11376 Resort Hotel 210
## 11377 Resort Hotel 253
## 11378 Resort Hotel 223
## 11379 Resort Hotel 210
## 11380 Resort Hotel 227
## 11381 Resort Hotel 194
## 11382 Resort Hotel 1
## 11383 Resort Hotel 19
## 11384 Resort Hotel 37
## 11385 Resort Hotel 5
## 11386 Resort Hotel 214
## 11387 Resort Hotel 214
## 11388 Resort Hotel 14
## 11389 Resort Hotel 214
## 11390 Resort Hotel 214
## 11391 Resort Hotel 29
## 11392 Resort Hotel 5
## 11393 Resort Hotel 214
## 11394 Resort Hotel 214
## 11395 Resort Hotel 214
## 11396 Resort Hotel 49
## 11397 Resort Hotel 89
## 11398 Resort Hotel 44
## 11399 Resort Hotel 183
## 11400 Resort Hotel 54
## 11401 Resort Hotel 6
## 11402 Resort Hotel 15
## 11403 Resort Hotel 106
## 11404 Resort Hotel 226
## 11405 Resort Hotel 225
## 11406 Resort Hotel 226
## 11407 Resort Hotel 233
## 11408 Resort Hotel 233
## 11409 Resort Hotel 93
## 11410 Resort Hotel 295
## 11411 Resort Hotel 330
## 11412 Resort Hotel 116
## 11413 Resort Hotel 116
## 11414 Resort Hotel 115
## 11415 Resort Hotel 23
## 11416 Resort Hotel 227
## 11417 Resort Hotel 227
## 11418 Resort Hotel 90
## 11419 Resort Hotel 17
## 11420 Resort Hotel 152
## 11421 Resort Hotel 86
## 11422 Resort Hotel 33
## 11423 Resort Hotel 49
## 11424 Resort Hotel 136
## 11425 Resort Hotel 136
## 11426 Resort Hotel 62
## 11427 Resort Hotel 17
## 11428 Resort Hotel 41
## 11429 Resort Hotel 319
## 11430 Resort Hotel 123
## 11431 Resort Hotel 257
## 11432 Resort Hotel 70
## 11433 Resort Hotel 2
## 11434 Resort Hotel 2
## 11435 Resort Hotel 2
## 11436 Resort Hotel 2
## 11437 Resort Hotel 82
## 11438 Resort Hotel 104
## 11439 Resort Hotel 140
## 11440 Resort Hotel 158
## 11441 Resort Hotel 31
## 11442 Resort Hotel 82
## 11443 Resort Hotel 156
## 11444 Resort Hotel 217
## 11445 Resort Hotel 183
## 11446 Resort Hotel 15
## 11447 Resort Hotel 7
## 11448 Resort Hotel 7
## 11449 Resort Hotel 257
## 11450 Resort Hotel 54
## 11451 Resort Hotel 302
## 11452 Resort Hotel 302
## 11453 Resort Hotel 302
## 11454 Resort Hotel 47
## 11455 Resort Hotel 302
## 11456 Resort Hotel 257
## 11457 Resort Hotel 302
## 11458 Resort Hotel 302
## 11459 Resort Hotel 302
## 11460 Resort Hotel 302
## 11461 Resort Hotel 302
## 11462 Resort Hotel 302
## 11463 Resort Hotel 231
## 11464 Resort Hotel 302
## 11465 Resort Hotel 302
## 11466 Resort Hotel 302
## 11467 Resort Hotel 302
## 11468 Resort Hotel 302
## 11469 Resort Hotel 84
## 11470 Resort Hotel 29
## 11471 Resort Hotel 120
## 11472 Resort Hotel 115
## 11473 Resort Hotel 296
## 11474 Resort Hotel 303
## 11475 Resort Hotel 16
## 11476 Resort Hotel 79
## 11477 Resort Hotel 78
## 11478 Resort Hotel 140
## 11479 Resort Hotel 140
## 11480 Resort Hotel 140
## 11481 Resort Hotel 140
## 11482 Resort Hotel 14
## 11483 Resort Hotel 140
## 11484 Resort Hotel 140
## 11485 Resort Hotel 130
## 11486 Resort Hotel 130
## 11487 Resort Hotel 67
## 11488 Resort Hotel 288
## 11489 Resort Hotel 0
## 11490 Resort Hotel 13
## 11491 Resort Hotel 29
## 11492 Resort Hotel 77
## 11493 Resort Hotel 24
## 11494 Resort Hotel 154
## 11495 Resort Hotel 150
## 11496 Resort Hotel 77
## 11497 Resort Hotel 233
## 11498 Resort Hotel 233
## 11499 Resort Hotel 10
## 11500 Resort Hotel 116
## 11501 Resort Hotel 94
## 11502 Resort Hotel 8
## 11503 Resort Hotel 98
## 11504 Resort Hotel 22
## 11505 Resort Hotel 52
## 11506 Resort Hotel 102
## 11507 Resort Hotel 120
## 11508 Resort Hotel 120
## 11509 Resort Hotel 263
## 11510 Resort Hotel 201
## 11511 Resort Hotel 201
## 11512 Resort Hotel 95
## 11513 Resort Hotel 201
## 11514 Resort Hotel 38
## 11515 Resort Hotel 2
## 11516 Resort Hotel 9
## 11517 Resort Hotel 134
## 11518 Resort Hotel 70
## 11519 Resort Hotel 124
## 11520 Resort Hotel 189
## 11521 Resort Hotel 81
## 11522 Resort Hotel 261
## 11523 Resort Hotel 89
## 11524 Resort Hotel 89
## 11525 Resort Hotel 217
## 11526 Resort Hotel 337
## 11527 Resort Hotel 338
## 11528 Resort Hotel 10
## 11529 Resort Hotel 47
## 11530 Resort Hotel 101
## 11531 Resort Hotel 101
## 11532 Resort Hotel 3
## 11533 Resort Hotel 98
## 11534 Resort Hotel 313
## 11535 Resort Hotel 272
## 11536 Resort Hotel 28
## 11537 Resort Hotel 305
## 11538 Resort Hotel 278
## 11539 Resort Hotel 180
## 11540 Resort Hotel 305
## 11541 Resort Hotel 302
## 11542 Resort Hotel 158
## 11543 Resort Hotel 3
## 11544 Resort Hotel 41
## 11545 Resort Hotel 41
## 11546 Resort Hotel 284
## 11547 Resort Hotel 41
## 11548 Resort Hotel 60
## 11549 Resort Hotel 258
## 11550 Resort Hotel 144
## 11551 Resort Hotel 201
## 11552 Resort Hotel 14
## 11553 Resort Hotel 96
## 11554 Resort Hotel 134
## 11555 Resort Hotel 90
## 11556 Resort Hotel 72
## 11557 Resort Hotel 80
## 11558 Resort Hotel 30
## 11559 Resort Hotel 25
## 11560 Resort Hotel 230
## 11561 Resort Hotel 322
## 11562 Resort Hotel 81
## 11563 Resort Hotel 81
## 11564 Resort Hotel 116
## 11565 Resort Hotel 336
## 11566 Resort Hotel 310
## 11567 Resort Hotel 107
## 11568 Resort Hotel 222
## 11569 Resort Hotel 107
## 11570 Resort Hotel 70
## 11571 Resort Hotel 43
## 11572 Resort Hotel 152
## 11573 Resort Hotel 27
## 11574 Resort Hotel 178
## 11575 Resort Hotel 21
## 11576 Resort Hotel 178
## 11577 Resort Hotel 333
## 11578 Resort Hotel 124
## 11579 Resort Hotel 165
## 11580 Resort Hotel 262
## 11581 Resort Hotel 266
## 11582 Resort Hotel 45
## 11583 Resort Hotel 15
## 11584 Resort Hotel 33
## 11585 Resort Hotel 38
## 11586 Resort Hotel 87
## 11587 Resort Hotel 207
## 11588 Resort Hotel 207
## 11589 Resort Hotel 112
## 11590 Resort Hotel 299
## 11591 Resort Hotel 300
## 11592 Resort Hotel 205
## 11593 Resort Hotel 98
## 11594 Resort Hotel 131
## 11595 Resort Hotel 93
## 11596 Resort Hotel 86
## 11597 Resort Hotel 263
## 11598 Resort Hotel 101
## 11599 Resort Hotel 61
## 11600 Resort Hotel 15
## 11601 Resort Hotel 471
## 11602 Resort Hotel 104
## 11603 Resort Hotel 471
## 11604 Resort Hotel 471
## 11605 Resort Hotel 226
## 11606 Resort Hotel 471
## 11607 Resort Hotel 471
## 11608 Resort Hotel 471
## 11609 Resort Hotel 60
## 11610 Resort Hotel 60
## 11611 Resort Hotel 60
## 11612 Resort Hotel 60
## 11613 Resort Hotel 60
## 11614 Resort Hotel 60
## 11615 Resort Hotel 60
## 11616 Resort Hotel 60
## 11617 Resort Hotel 259
## 11618 Resort Hotel 139
## 11619 Resort Hotel 191
## 11620 Resort Hotel 139
## 11621 Resort Hotel 253
## 11622 Resort Hotel 237
## 11623 Resort Hotel 251
## 11624 Resort Hotel 237
## 11625 Resort Hotel 249
## 11626 Resort Hotel 107
## 11627 Resort Hotel 5
## 11628 Resort Hotel 139
## 11629 Resort Hotel 18
## 11630 Resort Hotel 62
## 11631 Resort Hotel 78
## 11632 Resort Hotel 40
## 11633 Resort Hotel 220
## 11634 Resort Hotel 220
## 11635 Resort Hotel 17
## 11636 Resort Hotel 13
## 11637 Resort Hotel 53
## 11638 Resort Hotel 8
## 11639 Resort Hotel 8
## 11640 Resort Hotel 92
## 11641 Resort Hotel 8
## 11642 Resort Hotel 8
## 11643 Resort Hotel 8
## 11644 Resort Hotel 280
## 11645 Resort Hotel 86
## 11646 Resort Hotel 160
## 11647 Resort Hotel 2
## 11648 Resort Hotel 18
## 11649 Resort Hotel 7
## 11650 Resort Hotel 92
## 11651 Resort Hotel 92
## 11652 Resort Hotel 47
## 11653 Resort Hotel 49
## 11654 Resort Hotel 269
## 11655 Resort Hotel 317
## 11656 Resort Hotel 41
## 11657 Resort Hotel 462
## 11658 Resort Hotel 462
## 11659 Resort Hotel 462
## 11660 Resort Hotel 203
## 11661 Resort Hotel 462
## 11662 Resort Hotel 462
## 11663 Resort Hotel 8
## 11664 Resort Hotel 462
## 11665 Resort Hotel 462
## 11666 Resort Hotel 462
## 11667 Resort Hotel 16
## 11668 Resort Hotel 462
## 11669 Resort Hotel 462
## 11670 Resort Hotel 462
## 11671 Resort Hotel 462
## 11672 Resort Hotel 462
## 11673 Resort Hotel 462
## 11674 Resort Hotel 462
## 11675 Resort Hotel 95
## 11676 Resort Hotel 462
## 11677 Resort Hotel 462
## 11678 Resort Hotel 462
## 11679 Resort Hotel 462
## 11680 Resort Hotel 462
## 11681 Resort Hotel 38
## 11682 Resort Hotel 312
## 11683 Resort Hotel 224
## 11684 Resort Hotel 177
## 11685 Resort Hotel 224
## 11686 Resort Hotel 263
## 11687 Resort Hotel 227
## 11688 Resort Hotel 162
## 11689 Resort Hotel 305
## 11690 Resort Hotel 162
## 11691 Resort Hotel 351
## 11692 Resort Hotel 162
## 11693 Resort Hotel 352
## 11694 Resort Hotel 352
## 11695 Resort Hotel 305
## 11696 Resort Hotel 219
## 11697 Resort Hotel 305
## 11698 Resort Hotel 222
## 11699 Resort Hotel 24
## 11700 Resort Hotel 20
## 11701 Resort Hotel 146
## 11702 Resort Hotel 136
## 11703 Resort Hotel 139
## 11704 Resort Hotel 14
## 11705 Resort Hotel 251
## 11706 Resort Hotel 297
## 11707 Resort Hotel 39
## 11708 Resort Hotel 304
## 11709 Resort Hotel 165
## 11710 Resort Hotel 231
## 11711 Resort Hotel 229
## 11712 Resort Hotel 322
## 11713 Resort Hotel 350
## 11714 Resort Hotel 232
## 11715 Resort Hotel 212
## 11716 Resort Hotel 355
## 11717 Resort Hotel 305
## 11718 Resort Hotel 60
## 11719 Resort Hotel 38
## 11720 Resort Hotel 140
## 11721 Resort Hotel 311
## 11722 Resort Hotel 107
## 11723 Resort Hotel 67
## 11724 Resort Hotel 312
## 11725 Resort Hotel 337
## 11726 Resort Hotel 313
## 11727 Resort Hotel 313
## 11728 Resort Hotel 33
## 11729 Resort Hotel 313
## 11730 Resort Hotel 353
## 11731 Resort Hotel 313
## 11732 Resort Hotel 116
## 11733 Resort Hotel 313
## 11734 Resort Hotel 200
## 11735 Resort Hotel 313
## 11736 Resort Hotel 313
## 11737 Resort Hotel 353
## 11738 Resort Hotel 230
## 11739 Resort Hotel 13
## 11740 Resort Hotel 77
## 11741 Resort Hotel 198
## 11742 Resort Hotel 51
## 11743 Resort Hotel 352
## 11744 Resort Hotel 7
## 11745 Resort Hotel 103
## 11746 Resort Hotel 80
## 11747 Resort Hotel 63
## 11748 Resort Hotel 63
## 11749 Resort Hotel 12
## 11750 Resort Hotel 11
## 11751 Resort Hotel 107
## 11752 Resort Hotel 108
## 11753 Resort Hotel 103
## 11754 Resort Hotel 199
## 11755 Resort Hotel 102
## 11756 Resort Hotel 222
## 11757 Resort Hotel 139
## 11758 Resort Hotel 222
## 11759 Resort Hotel 214
## 11760 Resort Hotel 222
## 11761 Resort Hotel 247
## 11762 Resort Hotel 338
## 11763 Resort Hotel 321
## 11764 Resort Hotel 342
## 11765 Resort Hotel 247
## 11766 Resort Hotel 30
## 11767 Resort Hotel 132
## 11768 Resort Hotel 184
## 11769 Resort Hotel 312
## 11770 Resort Hotel 4
## 11771 Resort Hotel 128
## 11772 Resort Hotel 128
## 11773 Resort Hotel 22
## 11774 Resort Hotel 97
## 11775 Resort Hotel 72
## 11776 Resort Hotel 254
## 11777 Resort Hotel 42
## 11778 Resort Hotel 113
## 11779 Resort Hotel 113
## 11780 Resort Hotel 113
## 11781 Resort Hotel 113
## 11782 Resort Hotel 113
## 11783 Resort Hotel 113
## 11784 Resort Hotel 155
## 11785 Resort Hotel 216
## 11786 Resort Hotel 7
## 11787 Resort Hotel 137
## 11788 Resort Hotel 71
## 11789 Resort Hotel 155
## 11790 Resort Hotel 7
## 11791 Resort Hotel 289
## 11792 Resort Hotel 314
## 11793 Resort Hotel 279
## 11794 Resort Hotel 279
## 11795 Resort Hotel 138
## 11796 Resort Hotel 138
## 11797 Resort Hotel 152
## 11798 Resort Hotel 295
## 11799 Resort Hotel 238
## 11800 Resort Hotel 23
## 11801 Resort Hotel 14
## 11802 Resort Hotel 143
## 11803 Resort Hotel 144
## 11804 Resort Hotel 46
## 11805 Resort Hotel 322
## 11806 Resort Hotel 411
## 11807 Resort Hotel 411
## 11808 Resort Hotel 411
## 11809 Resort Hotel 411
## 11810 Resort Hotel 411
## 11811 Resort Hotel 411
## 11812 Resort Hotel 411
## 11813 Resort Hotel 411
## 11814 Resort Hotel 411
## 11815 Resort Hotel 411
## 11816 Resort Hotel 411
## 11817 Resort Hotel 411
## 11818 Resort Hotel 411
## 11819 Resort Hotel 411
## 11820 Resort Hotel 411
## 11821 Resort Hotel 411
## 11822 Resort Hotel 411
## 11823 Resort Hotel 411
## 11824 Resort Hotel 411
## 11825 Resort Hotel 411
## 11826 Resort Hotel 411
## 11827 Resort Hotel 450
## 11828 Resort Hotel 411
## 11829 Resort Hotel 411
## 11830 Resort Hotel 411
## 11831 Resort Hotel 350
## 11832 Resort Hotel 1
## 11833 Resort Hotel 1
## 11834 Resort Hotel 18
## 11835 Resort Hotel 43
## 11836 Resort Hotel 13
## 11837 Resort Hotel 19
## 11838 Resort Hotel 255
## 11839 Resort Hotel 309
## 11840 Resort Hotel 17
## 11841 Resort Hotel 123
## 11842 Resort Hotel 309
## 11843 Resort Hotel 104
## 11844 Resort Hotel 113
## 11845 Resort Hotel 263
## 11846 Resort Hotel 263
## 11847 Resort Hotel 263
## 11848 Resort Hotel 160
## 11849 Resort Hotel 344
## 11850 Resort Hotel 239
## 11851 Resort Hotel 321
## 11852 Resort Hotel 344
## 11853 Resort Hotel 239
## 11854 Resort Hotel 74
## 11855 Resort Hotel 7
## 11856 Resort Hotel 49
## 11857 Resort Hotel 1
## 11858 Resort Hotel 1
## 11859 Resort Hotel 23
## 11860 Resort Hotel 19
## 11861 Resort Hotel 41
## 11862 Resort Hotel 48
## 11863 Resort Hotel 65
## 11864 Resort Hotel 1
## 11865 Resort Hotel 43
## 11866 Resort Hotel 36
## 11867 Resort Hotel 88
## 11868 Resort Hotel 1
## 11869 Resort Hotel 1
## 11870 Resort Hotel 41
## 11871 Resort Hotel 18
## 11872 Resort Hotel 49
## 11873 Resort Hotel 282
## 11874 Resort Hotel 1
## 11875 Resort Hotel 43
## 11876 Resort Hotel 131
## 11877 Resort Hotel 247
## 11878 Resort Hotel 113
## 11879 Resort Hotel 28
## 11880 Resort Hotel 219
## 11881 Resort Hotel 241
## 11882 Resort Hotel 264
## 11883 Resort Hotel 264
## 11884 Resort Hotel 99
## 11885 Resort Hotel 22
## 11886 Resort Hotel 278
## 11887 Resort Hotel 282
## 11888 Resort Hotel 43
## 11889 Resort Hotel 248
## 11890 Resort Hotel 175
## 11891 Resort Hotel 16
## 11892 Resort Hotel 22
## 11893 Resort Hotel 2
## 11894 Resort Hotel 114
## 11895 Resort Hotel 252
## 11896 Resort Hotel 320
## 11897 Resort Hotel 320
## 11898 Resort Hotel 310
## 11899 Resort Hotel 274
## 11900 Resort Hotel 323
## 11901 Resort Hotel 323
## 11902 Resort Hotel 319
## 11903 Resort Hotel 323
## 11904 Resort Hotel 323
## 11905 Resort Hotel 323
## 11906 Resort Hotel 240
## 11907 Resort Hotel 320
## 11908 Resort Hotel 310
## 11909 Resort Hotel 319
## 11910 Resort Hotel 323
## 11911 Resort Hotel 323
## 11912 Resort Hotel 323
## 11913 Resort Hotel 323
## 11914 Resort Hotel 323
## 11915 Resort Hotel 323
## 11916 Resort Hotel 323
## 11917 Resort Hotel 323
## 11918 Resort Hotel 319
## 11919 Resort Hotel 320
## 11920 Resort Hotel 320
## 11921 Resort Hotel 320
## 11922 Resort Hotel 323
## 11923 Resort Hotel 323
## 11924 Resort Hotel 319
## 11925 Resort Hotel 314
## 11926 Resort Hotel 323
## 11927 Resort Hotel 323
## 11928 Resort Hotel 323
## 11929 Resort Hotel 310
## 11930 Resort Hotel 320
## 11931 Resort Hotel 319
## 11932 Resort Hotel 323
## 11933 Resort Hotel 323
## 11934 Resort Hotel 355
## 11935 Resort Hotel 310
## 11936 Resort Hotel 141
## 11937 Resort Hotel 141
## 11938 Resort Hotel 219
## 11939 Resort Hotel 244
## 11940 Resort Hotel 69
## 11941 Resort Hotel 69
## 11942 Resort Hotel 87
## 11943 Resort Hotel 67
## 11944 Resort Hotel 83
## 11945 Resort Hotel 102
## 11946 Resort Hotel 87
## 11947 Resort Hotel 127
## 11948 Resort Hotel 119
## 11949 Resort Hotel 272
## 11950 Resort Hotel 25
## 11951 Resort Hotel 326
## 11952 Resort Hotel 318
## 11953 Resort Hotel 318
## 11954 Resort Hotel 318
## 11955 Resort Hotel 318
## 11956 Resort Hotel 318
## 11957 Resort Hotel 318
## 11958 Resort Hotel 75
## 11959 Resort Hotel 24
## 11960 Resort Hotel 318
## 11961 Resort Hotel 318
## 11962 Resort Hotel 21
## 11963 Resort Hotel 128
## 11964 Resort Hotel 319
## 11965 Resort Hotel 319
## 11966 Resort Hotel 35
## 11967 Resort Hotel 321
## 11968 Resort Hotel 303
## 11969 Resort Hotel 60
## 11970 Resort Hotel 222
## 11971 Resort Hotel 149
## 11972 Resort Hotel 4
## 11973 Resort Hotel 149
## 11974 Resort Hotel 91
## 11975 Resort Hotel 91
## 11976 Resort Hotel 120
## 11977 Resort Hotel 132
## 11978 Resort Hotel 329
## 11979 Resort Hotel 223
## 11980 Resort Hotel 257
## 11981 Resort Hotel 35
## 11982 Resort Hotel 18
## 11983 Resort Hotel 18
## 11984 Resort Hotel 340
## 11985 Resort Hotel 47
## 11986 Resort Hotel 2
## 11987 Resort Hotel 33
## 11988 Resort Hotel 29
## 11989 Resort Hotel 156
## 11990 Resort Hotel 247
## 11991 Resort Hotel 328
## 11992 Resort Hotel 1
## 11993 Resort Hotel 304
## 11994 Resort Hotel 304
## 11995 Resort Hotel 304
## 11996 Resort Hotel 235
## 11997 Resort Hotel 304
## 11998 Resort Hotel 304
## 11999 Resort Hotel 309
## 12000 Resort Hotel 21
## 12001 Resort Hotel 304
## 12002 Resort Hotel 309
## 12003 Resort Hotel 304
## 12004 Resort Hotel 304
## 12005 Resort Hotel 304
## 12006 Resort Hotel 304
## 12007 Resort Hotel 304
## 12008 Resort Hotel 304
## 12009 Resort Hotel 122
## 12010 Resort Hotel 304
## 12011 Resort Hotel 304
## 12012 Resort Hotel 304
## 12013 Resort Hotel 304
## 12014 Resort Hotel 304
## 12015 Resort Hotel 20
## 12016 Resort Hotel 6
## 12017 Resort Hotel 288
## 12018 Resort Hotel 197
## 12019 Resort Hotel 307
## 12020 Resort Hotel 8
## 12021 Resort Hotel 0
## 12022 Resort Hotel 39
## 12023 Resort Hotel 101
## 12024 Resort Hotel 40
## 12025 Resort Hotel 65
## 12026 Resort Hotel 104
## 12027 Resort Hotel 17
## 12028 Resort Hotel 23
## 12029 Resort Hotel 98
## 12030 Resort Hotel 76
## 12031 Resort Hotel 37
## 12032 Resort Hotel 143
## 12033 Resort Hotel 95
## 12034 Resort Hotel 179
## 12035 Resort Hotel 179
## 12036 Resort Hotel 234
## 12037 Resort Hotel 150
## 12038 Resort Hotel 66
## 12039 Resort Hotel 6
## 12040 Resort Hotel 6
## 12041 Resort Hotel 37
## 12042 Resort Hotel 37
## 12043 Resort Hotel 21
## 12044 Resort Hotel 128
## 12045 Resort Hotel 155
## 12046 Resort Hotel 193
## 12047 Resort Hotel 131
## 12048 Resort Hotel 330
## 12049 Resort Hotel 257
## 12050 Resort Hotel 58
## 12051 Resort Hotel 332
## 12052 Resort Hotel 118
## 12053 Resort Hotel 314
## 12054 Resort Hotel 306
## 12055 Resort Hotel 306
## 12056 Resort Hotel 0
## 12057 Resort Hotel 278
## 12058 Resort Hotel 20
## 12059 Resort Hotel 29
## 12060 Resort Hotel 27
## 12061 Resort Hotel 29
## 12062 Resort Hotel 83
## 12063 Resort Hotel 108
## 12064 Resort Hotel 27
## 12065 Resort Hotel 231
## 12066 Resort Hotel 131
## 12067 Resort Hotel 184
## 12068 Resort Hotel 184
## 12069 Resort Hotel 135
## 12070 Resort Hotel 125
## 12071 Resort Hotel 141
## 12072 Resort Hotel 117
## 12073 Resort Hotel 167
## 12074 Resort Hotel 114
## 12075 Resort Hotel 192
## 12076 Resort Hotel 114
## 12077 Resort Hotel 140
## 12078 Resort Hotel 41
## 12079 Resort Hotel 6
## 12080 Resort Hotel 319
## 12081 Resort Hotel 13
## 12082 Resort Hotel 70
## 12083 Resort Hotel 237
## 12084 Resort Hotel 19
## 12085 Resort Hotel 120
## 12086 Resort Hotel 230
## 12087 Resort Hotel 201
## 12088 Resort Hotel 52
## 12089 Resort Hotel 210
## 12090 Resort Hotel 230
## 12091 Resort Hotel 94
## 12092 Resort Hotel 271
## 12093 Resort Hotel 298
## 12094 Resort Hotel 230
## 12095 Resort Hotel 216
## 12096 Resort Hotel 162
## 12097 Resort Hotel 12
## 12098 Resort Hotel 133
## 12099 Resort Hotel 138
## 12100 Resort Hotel 140
## 12101 Resort Hotel 140
## 12102 Resort Hotel 135
## 12103 Resort Hotel 130
## 12104 Resort Hotel 113
## 12105 Resort Hotel 247
## 12106 Resort Hotel 247
## 12107 Resort Hotel 50
## 12108 Resort Hotel 30
## 12109 Resort Hotel 135
## 12110 Resort Hotel 30
## 12111 Resort Hotel 175
## 12112 Resort Hotel 141
## 12113 Resort Hotel 97
## 12114 Resort Hotel 288
## 12115 Resort Hotel 155
## 12116 Resort Hotel 97
## 12117 Resort Hotel 288
## 12118 Resort Hotel 134
## 12119 Resort Hotel 134
## 12120 Resort Hotel 120
## 12121 Resort Hotel 97
## 12122 Resort Hotel 146
## 12123 Resort Hotel 86
## 12124 Resort Hotel 150
## 12125 Resort Hotel 118
## 12126 Resort Hotel 218
## 12127 Resort Hotel 345
## 12128 Resort Hotel 292
## 12129 Resort Hotel 13
## 12130 Resort Hotel 219
## 12131 Resort Hotel 219
## 12132 Resort Hotel 219
## 12133 Resort Hotel 219
## 12134 Resort Hotel 130
## 12135 Resort Hotel 131
## 12136 Resort Hotel 103
## 12137 Resort Hotel 106
## 12138 Resort Hotel 54
## 12139 Resort Hotel 132
## 12140 Resort Hotel 219
## 12141 Resort Hotel 219
## 12142 Resort Hotel 219
## 12143 Resort Hotel 219
## 12144 Resort Hotel 219
## 12145 Resort Hotel 151
## 12146 Resort Hotel 219
## 12147 Resort Hotel 123
## 12148 Resort Hotel 125
## 12149 Resort Hotel 223
## 12150 Resort Hotel 206
## 12151 Resort Hotel 223
## 12152 Resort Hotel 249
## 12153 Resort Hotel 249
## 12154 Resort Hotel 223
## 12155 Resort Hotel 295
## 12156 Resort Hotel 86
## 12157 Resort Hotel 8
## 12158 Resort Hotel 20
## 12159 Resort Hotel 0
## 12160 Resort Hotel 253
## 12161 Resort Hotel 269
## 12162 Resort Hotel 158
## 12163 Resort Hotel 343
## 12164 Resort Hotel 30
## 12165 Resort Hotel 30
## 12166 Resort Hotel 30
## 12167 Resort Hotel 110
## 12168 Resort Hotel 33
## 12169 Resort Hotel 36
## 12170 Resort Hotel 255
## 12171 Resort Hotel 254
## 12172 Resort Hotel 60
## 12173 Resort Hotel 55
## 12174 Resort Hotel 254
## 12175 Resort Hotel 250
## 12176 Resort Hotel 247
## 12177 Resort Hotel 248
## 12178 Resort Hotel 55
## 12179 Resort Hotel 60
## 12180 Resort Hotel 107
## 12181 Resort Hotel 308
## 12182 Resort Hotel 310
## 12183 Resort Hotel 308
## 12184 Resort Hotel 310
## 12185 Resort Hotel 94
## 12186 Resort Hotel 368
## 12187 Resort Hotel 368
## 12188 Resort Hotel 5
## 12189 Resort Hotel 139
## 12190 Resort Hotel 145
## 12191 Resort Hotel 155
## 12192 Resort Hotel 250
## 12193 Resort Hotel 215
## 12194 Resort Hotel 250
## 12195 Resort Hotel 77
## 12196 Resort Hotel 141
## 12197 Resort Hotel 112
## 12198 Resort Hotel 331
## 12199 Resort Hotel 307
## 12200 Resort Hotel 321
## 12201 Resort Hotel 251
## 12202 Resort Hotel 277
## 12203 Resort Hotel 250
## 12204 Resort Hotel 326
## 12205 Resort Hotel 326
## 12206 Resort Hotel 28
## 12207 Resort Hotel 11
## 12208 Resort Hotel 28
## 12209 Resort Hotel 50
## 12210 Resort Hotel 147
## 12211 Resort Hotel 131
## 12212 Resort Hotel 165
## 12213 Resort Hotel 131
## 12214 Resort Hotel 115
## 12215 Resort Hotel 143
## 12216 Resort Hotel 116
## 12217 Resort Hotel 26
## 12218 Resort Hotel 135
## 12219 Resort Hotel 45
## 12220 Resort Hotel 217
## 12221 Resort Hotel 129
## 12222 Resort Hotel 244
## 12223 Resort Hotel 312
## 12224 Resort Hotel 101
## 12225 Resort Hotel 57
## 12226 Resort Hotel 193
## 12227 Resort Hotel 263
## 12228 Resort Hotel 57
## 12229 Resort Hotel 282
## 12230 Resort Hotel 160
## 12231 Resort Hotel 269
## 12232 Resort Hotel 340
## 12233 Resort Hotel 285
## 12234 Resort Hotel 39
## 12235 Resort Hotel 108
## 12236 Resort Hotel 298
## 12237 Resort Hotel 101
## 12238 Resort Hotel 114
## 12239 Resort Hotel 98
## 12240 Resort Hotel 135
## 12241 Resort Hotel 148
## 12242 Resort Hotel 294
## 12243 Resort Hotel 210
## 12244 Resort Hotel 132
## 12245 Resort Hotel 237
## 12246 Resort Hotel 34
## 12247 Resort Hotel 166
## 12248 Resort Hotel 330
## 12249 Resort Hotel 125
## 12250 Resort Hotel 330
## 12251 Resort Hotel 313
## 12252 Resort Hotel 15
## 12253 Resort Hotel 57
## 12254 Resort Hotel 126
## 12255 Resort Hotel 87
## 12256 Resort Hotel 321
## 12257 Resort Hotel 258
## 12258 Resort Hotel 78
## 12259 Resort Hotel 326
## 12260 Resort Hotel 285
## 12261 Resort Hotel 289
## 12262 Resort Hotel 213
## 12263 Resort Hotel 320
## 12264 Resort Hotel 153
## 12265 Resort Hotel 94
## 12266 Resort Hotel 261
## 12267 Resort Hotel 43
## 12268 Resort Hotel 17
## 12269 Resort Hotel 18
## 12270 Resort Hotel 18
## 12271 Resort Hotel 17
## 12272 Resort Hotel 253
## 12273 Resort Hotel 329
## 12274 Resort Hotel 324
## 12275 Resort Hotel 336
## 12276 Resort Hotel 129
## 12277 Resort Hotel 28
## 12278 Resort Hotel 107
## 12279 Resort Hotel 150
## 12280 Resort Hotel 105
## 12281 Resort Hotel 170
## 12282 Resort Hotel 44
## 12283 Resort Hotel 153
## 12284 Resort Hotel 154
## 12285 Resort Hotel 22
## 12286 Resort Hotel 188
## 12287 Resort Hotel 154
## 12288 Resort Hotel 244
## 12289 Resort Hotel 244
## 12290 Resort Hotel 153
## 12291 Resort Hotel 188
## 12292 Resort Hotel 332
## 12293 Resort Hotel 279
## 12294 Resort Hotel 240
## 12295 Resort Hotel 240
## 12296 Resort Hotel 336
## 12297 Resort Hotel 10
## 12298 Resort Hotel 95
## 12299 Resort Hotel 37
## 12300 Resort Hotel 227
## 12301 Resort Hotel 28
## 12302 Resort Hotel 11
## 12303 Resort Hotel 55
## 12304 Resort Hotel 45
## 12305 Resort Hotel 205
## 12306 Resort Hotel 280
## 12307 Resort Hotel 280
## 12308 Resort Hotel 42
## 12309 Resort Hotel 49
## 12310 Resort Hotel 326
## 12311 Resort Hotel 129
## 12312 Resort Hotel 326
## 12313 Resort Hotel 123
## 12314 Resort Hotel 259
## 12315 Resort Hotel 80
## 12316 Resort Hotel 331
## 12317 Resort Hotel 317
## 12318 Resort Hotel 317
## 12319 Resort Hotel 209
## 12320 Resort Hotel 119
## 12321 Resort Hotel 325
## 12322 Resort Hotel 305
## 12323 Resort Hotel 119
## 12324 Resort Hotel 86
## 12325 Resort Hotel 331
## 12326 Resort Hotel 274
## 12327 Resort Hotel 273
## 12328 Resort Hotel 288
## 12329 Resort Hotel 176
## 12330 Resort Hotel 273
## 12331 Resort Hotel 275
## 12332 Resort Hotel 241
## 12333 Resort Hotel 253
## 12334 Resort Hotel 296
## 12335 Resort Hotel 243
## 12336 Resort Hotel 278
## 12337 Resort Hotel 5
## 12338 Resort Hotel 27
## 12339 Resort Hotel 27
## 12340 Resort Hotel 103
## 12341 Resort Hotel 109
## 12342 Resort Hotel 128
## 12343 Resort Hotel 47
## 12344 Resort Hotel 171
## 12345 Resort Hotel 253
## 12346 Resort Hotel 238
## 12347 Resort Hotel 113
## 12348 Resort Hotel 47
## 12349 Resort Hotel 159
## 12350 Resort Hotel 163
## 12351 Resort Hotel 311
## 12352 Resort Hotel 172
## 12353 Resort Hotel 97
## 12354 Resort Hotel 342
## 12355 Resort Hotel 47
## 12356 Resort Hotel 311
## 12357 Resort Hotel 263
## 12358 Resort Hotel 330
## 12359 Resort Hotel 342
## 12360 Resort Hotel 311
## 12361 Resort Hotel 47
## 12362 Resort Hotel 251
## 12363 Resort Hotel 159
## 12364 Resort Hotel 311
## 12365 Resort Hotel 311
## 12366 Resort Hotel 47
## 12367 Resort Hotel 336
## 12368 Resort Hotel 47
## 12369 Resort Hotel 47
## 12370 Resort Hotel 270
## 12371 Resort Hotel 98
## 12372 Resort Hotel 50
## 12373 Resort Hotel 227
## 12374 Resort Hotel 50
## 12375 Resort Hotel 312
## 12376 Resort Hotel 169
## 12377 Resort Hotel 48
## 12378 Resort Hotel 116
## 12379 Resort Hotel 106
## 12380 Resort Hotel 250
## 12381 Resort Hotel 48
## 12382 Resort Hotel 119
## 12383 Resort Hotel 178
## 12384 Resort Hotel 250
## 12385 Resort Hotel 313
## 12386 Resort Hotel 165
## 12387 Resort Hotel 309
## 12388 Resort Hotel 170
## 12389 Resort Hotel 165
## 12390 Resort Hotel 262
## 12391 Resort Hotel 319
## 12392 Resort Hotel 319
## 12393 Resort Hotel 48
## 12394 Resort Hotel 296
## 12395 Resort Hotel 274
## 12396 Resort Hotel 127
## 12397 Resort Hotel 336
## 12398 Resort Hotel 48
## 12399 Resort Hotel 188
## 12400 Resort Hotel 2
## 12401 Resort Hotel 2
## 12402 Resort Hotel 130
## 12403 Resort Hotel 183
## 12404 Resort Hotel 104
## 12405 Resort Hotel 167
## 12406 Resort Hotel 145
## 12407 Resort Hotel 179
## 12408 Resort Hotel 309
## 12409 Resort Hotel 310
## 12410 Resort Hotel 218
## 12411 Resort Hotel 310
## 12412 Resort Hotel 122
## 12413 Resort Hotel 118
## 12414 Resort Hotel 0
## 12415 Resort Hotel 267
## 12416 Resort Hotel 139
## 12417 Resort Hotel 160
## 12418 Resort Hotel 50
## 12419 Resort Hotel 219
## 12420 Resort Hotel 339
## 12421 Resort Hotel 154
## 12422 Resort Hotel 178
## 12423 Resort Hotel 282
## 12424 Resort Hotel 22
## 12425 Resort Hotel 114
## 12426 Resort Hotel 333
## 12427 Resort Hotel 213
## 12428 Resort Hotel 196
## 12429 Resort Hotel 201
## 12430 Resort Hotel 201
## 12431 Resort Hotel 137
## 12432 Resort Hotel 319
## 12433 Resort Hotel 317
## 12434 Resort Hotel 51
## 12435 Resort Hotel 263
## 12436 Resort Hotel 263
## 12437 Resort Hotel 248
## 12438 Resort Hotel 17
## 12439 Resort Hotel 21
## 12440 Resort Hotel 17
## 12441 Resort Hotel 106
## 12442 Resort Hotel 17
## 12443 Resort Hotel 0
## 12444 Resort Hotel 60
## 12445 Resort Hotel 151
## 12446 Resort Hotel 109
## 12447 Resort Hotel 248
## 12448 Resort Hotel 175
## 12449 Resort Hotel 51
## 12450 Resort Hotel 51
## 12451 Resort Hotel 51
## 12452 Resort Hotel 264
## 12453 Resort Hotel 202
## 12454 Resort Hotel 264
## 12455 Resort Hotel 162
## 12456 Resort Hotel 215
## 12457 Resort Hotel 353
## 12458 Resort Hotel 204
## 12459 Resort Hotel 51
## 12460 Resort Hotel 130
## 12461 Resort Hotel 130
## 12462 Resort Hotel 303
## 12463 Resort Hotel 59
## 12464 Resort Hotel 303
## 12465 Resort Hotel 130
## 12466 Resort Hotel 130
## 12467 Resort Hotel 110
## 12468 Resort Hotel 224
## 12469 Resort Hotel 110
## 12470 Resort Hotel 127
## 12471 Resort Hotel 146
## 12472 Resort Hotel 145
## 12473 Resort Hotel 218
## 12474 Resort Hotel 305
## 12475 Resort Hotel 198
## 12476 Resort Hotel 197
## 12477 Resort Hotel 305
## 12478 Resort Hotel 145
## 12479 Resort Hotel 146
## 12480 Resort Hotel 305
## 12481 Resort Hotel 164
## 12482 Resort Hotel 259
## 12483 Resort Hotel 59
## 12484 Resort Hotel 334
## 12485 Resort Hotel 155
## 12486 Resort Hotel 117
## 12487 Resort Hotel 209
## 12488 Resort Hotel 334
## 12489 Resort Hotel 243
## 12490 Resort Hotel 303
## 12491 Resort Hotel 184
## 12492 Resort Hotel 52
## 12493 Resort Hotel 141
## 12494 Resort Hotel 325
## 12495 Resort Hotel 306
## 12496 Resort Hotel 248
## 12497 Resort Hotel 183
## 12498 Resort Hotel 110
## 12499 Resort Hotel 109
## 12500 Resort Hotel 171
## 12501 Resort Hotel 104
## 12502 Resort Hotel 146
## 12503 Resort Hotel 159
## 12504 Resort Hotel 95
## 12505 Resort Hotel 143
## 12506 Resort Hotel 100
## 12507 Resort Hotel 110
## 12508 Resort Hotel 219
## 12509 Resort Hotel 268
## 12510 Resort Hotel 177
## 12511 Resort Hotel 259
## 12512 Resort Hotel 280
## 12513 Resort Hotel 57
## 12514 Resort Hotel 174
## 12515 Resort Hotel 188
## 12516 Resort Hotel 320
## 12517 Resort Hotel 275
## 12518 Resort Hotel 179
## 12519 Resort Hotel 53
## 12520 Resort Hotel 53
## 12521 Resort Hotel 133
## 12522 Resort Hotel 102
## 12523 Resort Hotel 159
## 12524 Resort Hotel 103
## 12525 Resort Hotel 144
## 12526 Resort Hotel 178
## 12527 Resort Hotel 146
## 12528 Resort Hotel 150
## 12529 Resort Hotel 157
## 12530 Resort Hotel 171
## 12531 Resort Hotel 190
## 12532 Resort Hotel 169
## 12533 Resort Hotel 262
## 12534 Resort Hotel 280
## 12535 Resort Hotel 54
## 12536 Resort Hotel 186
## 12537 Resort Hotel 251
## 12538 Resort Hotel 262
## 12539 Resort Hotel 177
## 12540 Resort Hotel 171
## 12541 Resort Hotel 150
## 12542 Resort Hotel 280
## 12543 Resort Hotel 300
## 12544 Resort Hotel 47
## 12545 Resort Hotel 317
## 12546 Resort Hotel 347
## 12547 Resort Hotel 268
## 12548 Resort Hotel 277
## 12549 Resort Hotel 347
## 12550 Resort Hotel 269
## 12551 Resort Hotel 6
## 12552 Resort Hotel 320
## 12553 Resort Hotel 153
## 12554 Resort Hotel 237
## 12555 Resort Hotel 324
## 12556 Resort Hotel 315
## 12557 Resort Hotel 131
## 12558 Resort Hotel 55
## 12559 Resort Hotel 271
## 12560 Resort Hotel 324
## 12561 Resort Hotel 236
## 12562 Resort Hotel 271
## 12563 Resort Hotel 217
## 12564 Resort Hotel 269
## 12565 Resort Hotel 270
## 12566 Resort Hotel 55
## 12567 Resort Hotel 55
## 12568 Resort Hotel 55
## 12569 Resort Hotel 335
## 12570 Resort Hotel 8
## 12571 Resort Hotel 8
## 12572 Resort Hotel 8
## 12573 Resort Hotel 345
## 12574 Resort Hotel 164
## 12575 Resort Hotel 14
## 12576 Resort Hotel 168
## 12577 Resort Hotel 14
## 12578 Resort Hotel 334
## 12579 Resort Hotel 352
## 12580 Resort Hotel 251
## 12581 Resort Hotel 158
## 12582 Resort Hotel 183
## 12583 Resort Hotel 168
## 12584 Resort Hotel 65
## 12585 Resort Hotel 338
## 12586 Resort Hotel 168
## 12587 Resort Hotel 171
## 12588 Resort Hotel 57
## 12589 Resort Hotel 130
## 12590 Resort Hotel 86
## 12591 Resort Hotel 210
## 12592 Resort Hotel 210
## 12593 Resort Hotel 210
## 12594 Resort Hotel 210
## 12595 Resort Hotel 326
## 12596 Resort Hotel 339
## 12597 Resort Hotel 335
## 12598 Resort Hotel 140
## 12599 Resort Hotel 288
## 12600 Resort Hotel 150
## 12601 Resort Hotel 113
## 12602 Resort Hotel 11
## 12603 Resort Hotel 58
## 12604 Resort Hotel 58
## 12605 Resort Hotel 179
## 12606 Resort Hotel 184
## 12607 Resort Hotel 58
## 12608 Resort Hotel 227
## 12609 Resort Hotel 227
## 12610 Resort Hotel 51
## 12611 Resort Hotel 313
## 12612 Resort Hotel 58
## 12613 Resort Hotel 19
## 12614 Resort Hotel 9
## 12615 Resort Hotel 3
## 12616 Resort Hotel 135
## 12617 Resort Hotel 135
## 12618 Resort Hotel 186
## 12619 Resort Hotel 152
## 12620 Resort Hotel 209
## 12621 Resort Hotel 264
## 12622 Resort Hotel 150
## 12623 Resort Hotel 59
## 12624 Resort Hotel 109
## 12625 Resort Hotel 162
## 12626 Resort Hotel 162
## 12627 Resort Hotel 192
## 12628 Resort Hotel 154
## 12629 Resort Hotel 8
## 12630 Resort Hotel 256
## 12631 Resort Hotel 154
## 12632 Resort Hotel 61
## 12633 Resort Hotel 258
## 12634 Resort Hotel 33
## 12635 Resort Hotel 151
## 12636 Resort Hotel 349
## 12637 Resort Hotel 157
## 12638 Resort Hotel 216
## 12639 Resort Hotel 60
## 12640 Resort Hotel 60
## 12641 Resort Hotel 315
## 12642 Resort Hotel 190
## 12643 Resort Hotel 4
## 12644 Resort Hotel 10
## 12645 Resort Hotel 10
## 12646 Resort Hotel 112
## 12647 Resort Hotel 117
## 12648 Resort Hotel 149
## 12649 Resort Hotel 9
## 12650 Resort Hotel 148
## 12651 Resort Hotel 217
## 12652 Resort Hotel 125
## 12653 Resort Hotel 156
## 12654 Resort Hotel 76
## 12655 Resort Hotel 76
## 12656 Resort Hotel 289
## 12657 Resort Hotel 163
## 12658 Resort Hotel 140
## 12659 Resort Hotel 114
## 12660 Resort Hotel 48
## 12661 Resort Hotel 153
## 12662 Resort Hotel 153
## 12663 Resort Hotel 137
## 12664 Resort Hotel 5
## 12665 Resort Hotel 1
## 12666 Resort Hotel 3
## 12667 Resort Hotel 21
## 12668 Resort Hotel 95
## 12669 Resort Hotel 47
## 12670 Resort Hotel 47
## 12671 Resort Hotel 47
## 12672 Resort Hotel 48
## 12673 Resort Hotel 47
## 12674 Resort Hotel 73
## 12675 Resort Hotel 151
## 12676 Resort Hotel 24
## 12677 Resort Hotel 23
## 12678 Resort Hotel 110
## 12679 Resort Hotel 110
## 12680 Resort Hotel 110
## 12681 Resort Hotel 62
## 12682 Resort Hotel 151
## 12683 Resort Hotel 62
## 12684 Resort Hotel 234
## 12685 Resort Hotel 346
## 12686 Resort Hotel 87
## 12687 Resort Hotel 5
## 12688 Resort Hotel 32
## 12689 Resort Hotel 21
## 12690 Resort Hotel 82
## 12691 Resort Hotel 20
## 12692 Resort Hotel 16
## 12693 Resort Hotel 72
## 12694 Resort Hotel 33
## 12695 Resort Hotel 89
## 12696 Resort Hotel 20
## 12697 Resort Hotel 27
## 12698 Resort Hotel 38
## 12699 Resort Hotel 29
## 12700 Resort Hotel 134
## 12701 Resort Hotel 20
## 12702 Resort Hotel 77
## 12703 Resort Hotel 51
## 12704 Resort Hotel 128
## 12705 Resort Hotel 0
## 12706 Resort Hotel 17
## 12707 Resort Hotel 31
## 12708 Resort Hotel 31
## 12709 Resort Hotel 27
## 12710 Resort Hotel 184
## 12711 Resort Hotel 145
## 12712 Resort Hotel 145
## 12713 Resort Hotel 74
## 12714 Resort Hotel 201
## 12715 Resort Hotel 154
## 12716 Resort Hotel 281
## 12717 Resort Hotel 161
## 12718 Resort Hotel 31
## 12719 Resort Hotel 36
## 12720 Resort Hotel 95
## 12721 Resort Hotel 135
## 12722 Resort Hotel 35
## 12723 Resort Hotel 35
## 12724 Resort Hotel 67
## 12725 Resort Hotel 66
## 12726 Resort Hotel 148
## 12727 Resort Hotel 169
## 12728 Resort Hotel 172
## 12729 Resort Hotel 21
## 12730 Resort Hotel 172
## 12731 Resort Hotel 169
## 12732 Resort Hotel 123
## 12733 Resort Hotel 70
## 12734 Resort Hotel 242
## 12735 Resort Hotel 212
## 12736 Resort Hotel 283
## 12737 Resort Hotel 0
## 12738 Resort Hotel 0
## 12739 Resort Hotel 24
## 12740 Resort Hotel 59
## 12741 Resort Hotel 0
## 12742 Resort Hotel 0
## 12743 Resort Hotel 183
## 12744 Resort Hotel 55
## 12745 Resort Hotel 55
## 12746 Resort Hotel 253
## 12747 Resort Hotel 122
## 12748 Resort Hotel 126
## 12749 Resort Hotel 109
## 12750 Resort Hotel 125
## 12751 Resort Hotel 158
## 12752 Resort Hotel 125
## 12753 Resort Hotel 126
## 12754 Resort Hotel 109
## 12755 Resort Hotel 123
## 12756 Resort Hotel 126
## 12757 Resort Hotel 126
## 12758 Resort Hotel 125
## 12759 Resort Hotel 167
## 12760 Resort Hotel 17
## 12761 Resort Hotel 113
## 12762 Resort Hotel 354
## 12763 Resort Hotel 185
## 12764 Resort Hotel 192
## 12765 Resort Hotel 51
## 12766 Resort Hotel 137
## 12767 Resort Hotel 25
## 12768 Resort Hotel 213
## 12769 Resort Hotel 145
## 12770 Resort Hotel 213
## 12771 Resort Hotel 157
## 12772 Resort Hotel 156
## 12773 Resort Hotel 333
## 12774 Resort Hotel 128
## 12775 Resort Hotel 175
## 12776 Resort Hotel 180
## 12777 Resort Hotel 188
## 12778 Resort Hotel 181
## 12779 Resort Hotel 188
## 12780 Resort Hotel 170
## 12781 Resort Hotel 188
## 12782 Resort Hotel 340
## 12783 Resort Hotel 340
## 12784 Resort Hotel 158
## 12785 Resort Hotel 184
## 12786 Resort Hotel 25
## 12787 Resort Hotel 21
## 12788 Resort Hotel 103
## 12789 Resort Hotel 190
## 12790 Resort Hotel 27
## 12791 Resort Hotel 103
## 12792 Resort Hotel 118
## 12793 Resort Hotel 209
## 12794 Resort Hotel 64
## 12795 Resort Hotel 252
## 12796 Resort Hotel 182
## 12797 Resort Hotel 323
## 12798 Resort Hotel 2
## 12799 Resort Hotel 140
## 12800 Resort Hotel 42
## 12801 Resort Hotel 190
## 12802 Resort Hotel 322
## 12803 Resort Hotel 133
## 12804 Resort Hotel 133
## 12805 Resort Hotel 221
## 12806 Resort Hotel 390
## 12807 Resort Hotel 141
## 12808 Resort Hotel 332
## 12809 Resort Hotel 211
## 12810 Resort Hotel 195
## 12811 Resort Hotel 159
## 12812 Resort Hotel 211
## 12813 Resort Hotel 194
## 12814 Resort Hotel 55
## 12815 Resort Hotel 268
## 12816 Resort Hotel 240
## 12817 Resort Hotel 236
## 12818 Resort Hotel 253
## 12819 Resort Hotel 0
## 12820 Resort Hotel 7
## 12821 Resort Hotel 163
## 12822 Resort Hotel 1
## 12823 Resort Hotel 163
## 12824 Resort Hotel 227
## 12825 Resort Hotel 227
## 12826 Resort Hotel 78
## 12827 Resort Hotel 165
## 12828 Resort Hotel 39
## 12829 Resort Hotel 158
## 12830 Resort Hotel 43
## 12831 Resort Hotel 67
## 12832 Resort Hotel 128
## 12833 Resort Hotel 299
## 12834 Resort Hotel 299
## 12835 Resort Hotel 108
## 12836 Resort Hotel 108
## 12837 Resort Hotel 211
## 12838 Resort Hotel 197
## 12839 Resort Hotel 143
## 12840 Resort Hotel 327
## 12841 Resort Hotel 247
## 12842 Resort Hotel 72
## 12843 Resort Hotel 187
## 12844 Resort Hotel 187
## 12845 Resort Hotel 20
## 12846 Resort Hotel 176
## 12847 Resort Hotel 2
## 12848 Resort Hotel 144
## 12849 Resort Hotel 171
## 12850 Resort Hotel 21
## 12851 Resort Hotel 123
## 12852 Resort Hotel 5
## 12853 Resort Hotel 160
## 12854 Resort Hotel 64
## 12855 Resort Hotel 168
## 12856 Resort Hotel 41
## 12857 Resort Hotel 193
## 12858 Resort Hotel 172
## 12859 Resort Hotel 328
## 12860 Resort Hotel 202
## 12861 Resort Hotel 2
## 12862 Resort Hotel 2
## 12863 Resort Hotel 2
## 12864 Resort Hotel 19
## 12865 Resort Hotel 147
## 12866 Resort Hotel 347
## 12867 Resort Hotel 178
## 12868 Resort Hotel 101
## 12869 Resort Hotel 73
## 12870 Resort Hotel 268
## 12871 Resort Hotel 116
## 12872 Resort Hotel 109
## 12873 Resort Hotel 108
## 12874 Resort Hotel 91
## 12875 Resort Hotel 200
## 12876 Resort Hotel 192
## 12877 Resort Hotel 372
## 12878 Resort Hotel 127
## 12879 Resort Hotel 82
## 12880 Resort Hotel 28
## 12881 Resort Hotel 194
## 12882 Resort Hotel 82
## 12883 Resort Hotel 28
## 12884 Resort Hotel 186
## 12885 Resort Hotel 180
## 12886 Resort Hotel 312
## 12887 Resort Hotel 151
## 12888 Resort Hotel 151
## 12889 Resort Hotel 198
## 12890 Resort Hotel 159
## 12891 Resort Hotel 159
## 12892 Resort Hotel 122
## 12893 Resort Hotel 312
## 12894 Resort Hotel 180
## 12895 Resort Hotel 151
## 12896 Resort Hotel 159
## 12897 Resort Hotel 151
## 12898 Resort Hotel 270
## 12899 Resort Hotel 159
## 12900 Resort Hotel 159
## 12901 Resort Hotel 151
## 12902 Resort Hotel 134
## 12903 Resort Hotel 180
## 12904 Resort Hotel 312
## 12905 Resort Hotel 159
## 12906 Resort Hotel 66
## 12907 Resort Hotel 26
## 12908 Resort Hotel 139
## 12909 Resort Hotel 84
## 12910 Resort Hotel 174
## 12911 Resort Hotel 174
## 12912 Resort Hotel 163
## 12913 Resort Hotel 352
## 12914 Resort Hotel 44
## 12915 Resort Hotel 45
## 12916 Resort Hotel 40
## 12917 Resort Hotel 170
## 12918 Resort Hotel 165
## 12919 Resort Hotel 13
## 12920 Resort Hotel 67
## 12921 Resort Hotel 195
## 12922 Resort Hotel 175
## 12923 Resort Hotel 192
## 12924 Resort Hotel 175
## 12925 Resort Hotel 84
## 12926 Resort Hotel 70
## 12927 Resort Hotel 154
## 12928 Resort Hotel 84
## 12929 Resort Hotel 251
## 12930 Resort Hotel 200
## 12931 Resort Hotel 1
## 12932 Resort Hotel 27
## 12933 Resort Hotel 153
## 12934 Resort Hotel 134
## 12935 Resort Hotel 32
## 12936 Resort Hotel 158
## 12937 Resort Hotel 181
## 12938 Resort Hotel 24
## 12939 Resort Hotel 207
## 12940 Resort Hotel 85
## 12941 Resort Hotel 95
## 12942 Resort Hotel 88
## 12943 Resort Hotel 12
## 12944 Resort Hotel 181
## 12945 Resort Hotel 181
## 12946 Resort Hotel 132
## 12947 Resort Hotel 187
## 12948 Resort Hotel 132
## 12949 Resort Hotel 89
## 12950 Resort Hotel 189
## 12951 Resort Hotel 347
## 12952 Resort Hotel 196
## 12953 Resort Hotel 189
## 12954 Resort Hotel 272
## 12955 Resort Hotel 196
## 12956 Resort Hotel 193
## 12957 Resort Hotel 184
## 12958 Resort Hotel 190
## 12959 Resort Hotel 73
## 12960 Resort Hotel 129
## 12961 Resort Hotel 129
## 12962 Resort Hotel 129
## 12963 Resort Hotel 154
## 12964 Resort Hotel 8
## 12965 Resort Hotel 169
## 12966 Resort Hotel 117
## 12967 Resort Hotel 289
## 12968 Resort Hotel 289
## 12969 Resort Hotel 117
## 12970 Resort Hotel 46
## 12971 Resort Hotel 15
## 12972 Resort Hotel 173
## 12973 Resort Hotel 197
## 12974 Resort Hotel 120
## 12975 Resort Hotel 36
## 12976 Resort Hotel 173
## 12977 Resort Hotel 74
## 12978 Resort Hotel 165
## 12979 Resort Hotel 35
## 12980 Resort Hotel 141
## 12981 Resort Hotel 166
## 12982 Resort Hotel 23
## 12983 Resort Hotel 174
## 12984 Resort Hotel 23
## 12985 Resort Hotel 335
## 12986 Resort Hotel 17
## 12987 Resort Hotel 25
## 12988 Resort Hotel 42
## 12989 Resort Hotel 93
## 12990 Resort Hotel 148
## 12991 Resort Hotel 20
## 12992 Resort Hotel 17
## 12993 Resort Hotel 42
## 12994 Resort Hotel 157
## 12995 Resort Hotel 203
## 12996 Resort Hotel 203
## 12997 Resort Hotel 193
## 12998 Resort Hotel 31
## 12999 Resort Hotel 381
## 13000 Resort Hotel 340
## 13001 Resort Hotel 196
## 13002 Resort Hotel 165
## 13003 Resort Hotel 71
## 13004 Resort Hotel 198
## 13005 Resort Hotel 279
## 13006 Resort Hotel 199
## 13007 Resort Hotel 198
## 13008 Resort Hotel 59
## 13009 Resort Hotel 71
## 13010 Resort Hotel 198
## 13011 Resort Hotel 191
## 13012 Resort Hotel 167
## 13013 Resort Hotel 300
## 13014 Resort Hotel 18
## 13015 Resort Hotel 33
## 13016 Resort Hotel 19
## 13017 Resort Hotel 318
## 13018 Resort Hotel 50
## 13019 Resort Hotel 0
## 13020 Resort Hotel 203
## 13021 Resort Hotel 203
## 13022 Resort Hotel 18
## 13023 Resort Hotel 16
## 13024 Resort Hotel 16
## 13025 Resort Hotel 18
## 13026 Resort Hotel 17
## 13027 Resort Hotel 4
## 13028 Resort Hotel 318
## 13029 Resort Hotel 25
## 13030 Resort Hotel 261
## 13031 Resort Hotel 69
## 13032 Resort Hotel 69
## 13033 Resort Hotel 33
## 13034 Resort Hotel 129
## 13035 Resort Hotel 292
## 13036 Resort Hotel 205
## 13037 Resort Hotel 128
## 13038 Resort Hotel 141
## 13039 Resort Hotel 19
## 13040 Resort Hotel 60
## 13041 Resort Hotel 43
## 13042 Resort Hotel 42
## 13043 Resort Hotel 116
## 13044 Resort Hotel 67
## 13045 Resort Hotel 52
## 13046 Resort Hotel 239
## 13047 Resort Hotel 239
## 13048 Resort Hotel 23
## 13049 Resort Hotel 20
## 13050 Resort Hotel 173
## 13051 Resort Hotel 172
## 13052 Resort Hotel 147
## 13053 Resort Hotel 335
## 13054 Resort Hotel 358
## 13055 Resort Hotel 231
## 13056 Resort Hotel 335
## 13057 Resort Hotel 191
## 13058 Resort Hotel 247
## 13059 Resort Hotel 56
## 13060 Resort Hotel 137
## 13061 Resort Hotel 56
## 13062 Resort Hotel 247
## 13063 Resort Hotel 60
## 13064 Resort Hotel 306
## 13065 Resort Hotel 237
## 13066 Resort Hotel 38
## 13067 Resort Hotel 137
## 13068 Resort Hotel 358
## 13069 Resort Hotel 342
## 13070 Resort Hotel 343
## 13071 Resort Hotel 158
## 13072 Resort Hotel 51
## 13073 Resort Hotel 56
## 13074 Resort Hotel 39
## 13075 Resort Hotel 63
## 13076 Resort Hotel 124
## 13077 Resort Hotel 255
## 13078 Resort Hotel 188
## 13079 Resort Hotel 224
## 13080 Resort Hotel 359
## 13081 Resort Hotel 109
## 13082 Resort Hotel 309
## 13083 Resort Hotel 359
## 13084 Resort Hotel 18
## 13085 Resort Hotel 18
## 13086 Resort Hotel 228
## 13087 Resort Hotel 0
## 13088 Resort Hotel 20
## 13089 Resort Hotel 2
## 13090 Resort Hotel 2
## 13091 Resort Hotel 39
## 13092 Resort Hotel 125
## 13093 Resort Hotel 170
## 13094 Resort Hotel 125
## 13095 Resort Hotel 20
## 13096 Resort Hotel 142
## 13097 Resort Hotel 75
## 13098 Resort Hotel 172
## 13099 Resort Hotel 211
## 13100 Resort Hotel 134
## 13101 Resort Hotel 172
## 13102 Resort Hotel 164
## 13103 Resort Hotel 181
## 13104 Resort Hotel 357
## 13105 Resort Hotel 167
## 13106 Resort Hotel 329
## 13107 Resort Hotel 23
## 13108 Resort Hotel 26
## 13109 Resort Hotel 189
## 13110 Resort Hotel 254
## 13111 Resort Hotel 130
## 13112 Resort Hotel 189
## 13113 Resort Hotel 343
## 13114 Resort Hotel 172
## 13115 Resort Hotel 172
## 13116 Resort Hotel 122
## 13117 Resort Hotel 78
## 13118 Resort Hotel 67
## 13119 Resort Hotel 69
## 13120 Resort Hotel 198
## 13121 Resort Hotel 98
## 13122 Resort Hotel 159
## 13123 Resort Hotel 298
## 13124 Resort Hotel 298
## 13125 Resort Hotel 334
## 13126 Resort Hotel 334
## 13127 Resort Hotel 195
## 13128 Resort Hotel 181
## 13129 Resort Hotel 176
## 13130 Resort Hotel 136
## 13131 Resort Hotel 28
## 13132 Resort Hotel 242
## 13133 Resort Hotel 27
## 13134 Resort Hotel 215
## 13135 Resort Hotel 176
## 13136 Resort Hotel 162
## 13137 Resort Hotel 28
## 13138 Resort Hotel 81
## 13139 Resort Hotel 328
## 13140 Resort Hotel 203
## 13141 Resort Hotel 358
## 13142 Resort Hotel 352
## 13143 Resort Hotel 378
## 13144 Resort Hotel 300
## 13145 Resort Hotel 15
## 13146 Resort Hotel 205
## 13147 Resort Hotel 205
## 13148 Resort Hotel 231
## 13149 Resort Hotel 231
## 13150 Resort Hotel 231
## 13151 Resort Hotel 248
## 13152 Resort Hotel 310
## 13153 Resort Hotel 78
## 13154 Resort Hotel 187
## 13155 Resort Hotel 188
## 13156 Resort Hotel 76
## 13157 Resort Hotel 213
## 13158 Resort Hotel 187
## 13159 Resort Hotel 101
## 13160 Resort Hotel 15
## 13161 Resort Hotel 28
## 13162 Resort Hotel 28
## 13163 Resort Hotel 28
## 13164 Resort Hotel 28
## 13165 Resort Hotel 28
## 13166 Resort Hotel 28
## 13167 Resort Hotel 101
## 13168 Resort Hotel 28
## 13169 Resort Hotel 195
## 13170 Resort Hotel 17
## 13171 Resort Hotel 43
## 13172 Resort Hotel 22
## 13173 Resort Hotel 246
## 13174 Resort Hotel 246
## 13175 Resort Hotel 246
## 13176 Resort Hotel 153
## 13177 Resort Hotel 273
## 13178 Resort Hotel 296
## 13179 Resort Hotel 104
## 13180 Resort Hotel 178
## 13181 Resort Hotel 83
## 13182 Resort Hotel 83
## 13183 Resort Hotel 29
## 13184 Resort Hotel 304
## 13185 Resort Hotel 304
## 13186 Resort Hotel 28
## 13187 Resort Hotel 42
## 13188 Resort Hotel 42
## 13189 Resort Hotel 113
## 13190 Resort Hotel 304
## 13191 Resort Hotel 304
## 13192 Resort Hotel 353
## 13193 Resort Hotel 24
## 13194 Resort Hotel 34
## 13195 Resort Hotel 40
## 13196 Resort Hotel 93
## 13197 Resort Hotel 304
## 13198 Resort Hotel 312
## 13199 Resort Hotel 214
## 13200 Resort Hotel 51
## 13201 Resort Hotel 312
## 13202 Resort Hotel 165
## 13203 Resort Hotel 166
## 13204 Resort Hotel 178
## 13205 Resort Hotel 91
## 13206 Resort Hotel 91
## 13207 Resort Hotel 319
## 13208 Resort Hotel 95
## 13209 Resort Hotel 302
## 13210 Resort Hotel 302
## 13211 Resort Hotel 144
## 13212 Resort Hotel 163
## 13213 Resort Hotel 8
## 13214 Resort Hotel 10
## 13215 Resort Hotel 167
## 13216 Resort Hotel 16
## 13217 Resort Hotel 180
## 13218 Resort Hotel 11
## 13219 Resort Hotel 20
## 13220 Resort Hotel 341
## 13221 Resort Hotel 20
## 13222 Resort Hotel 16
## 13223 Resort Hotel 3
## 13224 Resort Hotel 333
## 13225 Resort Hotel 25
## 13226 Resort Hotel 119
## 13227 Resort Hotel 333
## 13228 Resort Hotel 142
## 13229 Resort Hotel 238
## 13230 Resort Hotel 328
## 13231 Resort Hotel 45
## 13232 Resort Hotel 328
## 13233 Resort Hotel 38
## 13234 Resort Hotel 210
## 13235 Resort Hotel 141
## 13236 Resort Hotel 98
## 13237 Resort Hotel 31
## 13238 Resort Hotel 45
## 13239 Resort Hotel 208
## 13240 Resort Hotel 208
## 13241 Resort Hotel 208
## 13242 Resort Hotel 143
## 13243 Resort Hotel 209
## 13244 Resort Hotel 128
## 13245 Resort Hotel 33
## 13246 Resort Hotel 145
## 13247 Resort Hotel 33
## 13248 Resort Hotel 128
## 13249 Resort Hotel 123
## 13250 Resort Hotel 126
## 13251 Resort Hotel 128
## 13252 Resort Hotel 142
## 13253 Resort Hotel 126
## 13254 Resort Hotel 172
## 13255 Resort Hotel 31
## 13256 Resort Hotel 126
## 13257 Resort Hotel 177
## 13258 Resort Hotel 343
## 13259 Resort Hotel 190
## 13260 Resort Hotel 117
## 13261 Resort Hotel 178
## 13262 Resort Hotel 178
## 13263 Resort Hotel 177
## 13264 Resort Hotel 314
## 13265 Resort Hotel 185
## 13266 Resort Hotel 177
## 13267 Resort Hotel 194
## 13268 Resort Hotel 96
## 13269 Resort Hotel 157
## 13270 Resort Hotel 310
## 13271 Resort Hotel 113
## 13272 Resort Hotel 45
## 13273 Resort Hotel 174
## 13274 Resort Hotel 153
## 13275 Resort Hotel 41
## 13276 Resort Hotel 139
## 13277 Resort Hotel 184
## 13278 Resort Hotel 153
## 13279 Resort Hotel 152
## 13280 Resort Hotel 128
## 13281 Resort Hotel 88
## 13282 Resort Hotel 138
## 13283 Resort Hotel 152
## 13284 Resort Hotel 216
## 13285 Resort Hotel 265
## 13286 Resort Hotel 216
## 13287 Resort Hotel 311
## 13288 Resort Hotel 187
## 13289 Resort Hotel 213
## 13290 Resort Hotel 228
## 13291 Resort Hotel 141
## 13292 Resort Hotel 141
## 13293 Resort Hotel 103
## 13294 Resort Hotel 143
## 13295 Resort Hotel 196
## 13296 Resort Hotel 204
## 13297 Resort Hotel 257
## 13298 Resort Hotel 316
## 13299 Resort Hotel 193
## 13300 Resort Hotel 200
## 13301 Resort Hotel 192
## 13302 Resort Hotel 200
## 13303 Resort Hotel 105
## 13304 Resort Hotel 188
## 13305 Resort Hotel 298
## 13306 Resort Hotel 260
## 13307 Resort Hotel 165
## 13308 Resort Hotel 328
## 13309 Resort Hotel 153
## 13310 Resort Hotel 166
## 13311 Resort Hotel 196
## 13312 Resort Hotel 225
## 13313 Resort Hotel 193
## 13314 Resort Hotel 34
## 13315 Resort Hotel 34
## 13316 Resort Hotel 199
## 13317 Resort Hotel 314
## 13318 Resort Hotel 339
## 13319 Resort Hotel 32
## 13320 Resort Hotel 129
## 13321 Resort Hotel 184
## 13322 Resort Hotel 239
## 13323 Resort Hotel 198
## 13324 Resort Hotel 116
## 13325 Resort Hotel 28
## 13326 Resort Hotel 116
## 13327 Resort Hotel 0
## 13328 Resort Hotel 50
## 13329 Resort Hotel 91
## 13330 Resort Hotel 95
## 13331 Resort Hotel 95
## 13332 Resort Hotel 29
## 13333 Resort Hotel 94
## 13334 Resort Hotel 95
## 13335 Resort Hotel 45
## 13336 Resort Hotel 184
## 13337 Resort Hotel 172
## 13338 Resort Hotel 289
## 13339 Resort Hotel 338
## 13340 Resort Hotel 289
## 13341 Resort Hotel 199
## 13342 Resort Hotel 47
## 13343 Resort Hotel 11
## 13344 Resort Hotel 106
## 13345 Resort Hotel 311
## 13346 Resort Hotel 262
## 13347 Resort Hotel 184
## 13348 Resort Hotel 98
## 13349 Resort Hotel 87
## 13350 Resort Hotel 210
## 13351 Resort Hotel 238
## 13352 Resort Hotel 88
## 13353 Resort Hotel 311
## 13354 Resort Hotel 11
## 13355 Resort Hotel 306
## 13356 Resort Hotel 306
## 13357 Resort Hotel 311
## 13358 Resort Hotel 305
## 13359 Resort Hotel 161
## 13360 Resort Hotel 301
## 13361 Resort Hotel 306
## 13362 Resort Hotel 327
## 13363 Resort Hotel 201
## 13364 Resort Hotel 307
## 13365 Resort Hotel 132
## 13366 Resort Hotel 224
## 13367 Resort Hotel 47
## 13368 Resort Hotel 36
## 13369 Resort Hotel 187
## 13370 Resort Hotel 46
## 13371 Resort Hotel 46
## 13372 Resort Hotel 186
## 13373 Resort Hotel 144
## 13374 Resort Hotel 269
## 13375 Resort Hotel 341
## 13376 Resort Hotel 341
## 13377 Resort Hotel 187
## 13378 Resort Hotel 187
## 13379 Resort Hotel 273
## 13380 Resort Hotel 193
## 13381 Resort Hotel 213
## 13382 Resort Hotel 0
## 13383 Resort Hotel 176
## 13384 Resort Hotel 176
## 13385 Resort Hotel 183
## 13386 Resort Hotel 95
## 13387 Resort Hotel 183
## 13388 Resort Hotel 227
## 13389 Resort Hotel 130
## 13390 Resort Hotel 220
## 13391 Resort Hotel 52
## 13392 Resort Hotel 59
## 13393 Resort Hotel 285
## 13394 Resort Hotel 166
## 13395 Resort Hotel 309
## 13396 Resort Hotel 300
## 13397 Resort Hotel 285
## 13398 Resort Hotel 102
## 13399 Resort Hotel 216
## 13400 Resort Hotel 291
## 13401 Resort Hotel 291
## 13402 Resort Hotel 228
## 13403 Resort Hotel 0
## 13404 Resort Hotel 0
## 13405 Resort Hotel 0
## 13406 Resort Hotel 89
## 13407 Resort Hotel 53
## 13408 Resort Hotel 188
## 13409 Resort Hotel 206
## 13410 Resort Hotel 216
## 13411 Resort Hotel 175
## 13412 Resort Hotel 14
## 13413 Resort Hotel 216
## 13414 Resort Hotel 295
## 13415 Resort Hotel 175
## 13416 Resort Hotel 175
## 13417 Resort Hotel 183
## 13418 Resort Hotel 99
## 13419 Resort Hotel 91
## 13420 Resort Hotel 342
## 13421 Resort Hotel 133
## 13422 Resort Hotel 146
## 13423 Resort Hotel 13
## 13424 Resort Hotel 227
## 13425 Resort Hotel 195
## 13426 Resort Hotel 146
## 13427 Resort Hotel 33
## 13428 Resort Hotel 182
## 13429 Resort Hotel 295
## 13430 Resort Hotel 358
## 13431 Resort Hotel 269
## 13432 Resort Hotel 244
## 13433 Resort Hotel 16
## 13434 Resort Hotel 16
## 13435 Resort Hotel 16
## 13436 Resort Hotel 1
## 13437 Resort Hotel 7
## 13438 Resort Hotel 6
## 13439 Resort Hotel 270
## 13440 Resort Hotel 194
## 13441 Resort Hotel 126
## 13442 Resort Hotel 221
## 13443 Resort Hotel 39
## 13444 Resort Hotel 126
## 13445 Resort Hotel 15
## 13446 Resort Hotel 284
## 13447 Resort Hotel 141
## 13448 Resort Hotel 24
## 13449 Resort Hotel 198
## 13450 Resort Hotel 97
## 13451 Resort Hotel 203
## 13452 Resort Hotel 371
## 13453 Resort Hotel 49
## 13454 Resort Hotel 15
## 13455 Resort Hotel 49
## 13456 Resort Hotel 36
## 13457 Resort Hotel 36
## 13458 Resort Hotel 227
## 13459 Resort Hotel 61
## 13460 Resort Hotel 66
## 13461 Resort Hotel 211
## 13462 Resort Hotel 142
## 13463 Resort Hotel 66
## 13464 Resort Hotel 145
## 13465 Resort Hotel 36
## 13466 Resort Hotel 37
## 13467 Resort Hotel 217
## 13468 Resort Hotel 133
## 13469 Resort Hotel 0
## 13470 Resort Hotel 16
## 13471 Resort Hotel 2
## 13472 Resort Hotel 82
## 13473 Resort Hotel 2
## 13474 Resort Hotel 0
## 13475 Resort Hotel 3
## 13476 Resort Hotel 129
## 13477 Resort Hotel 13
## 13478 Resort Hotel 184
## 13479 Resort Hotel 77
## 13480 Resort Hotel 40
## 13481 Resort Hotel 69
## 13482 Resort Hotel 168
## 13483 Resort Hotel 40
## 13484 Resort Hotel 187
## 13485 Resort Hotel 177
## 13486 Resort Hotel 149
## 13487 Resort Hotel 40
## 13488 Resort Hotel 212
## 13489 Resort Hotel 247
## 13490 Resort Hotel 12
## 13491 Resort Hotel 212
## 13492 Resort Hotel 209
## 13493 Resort Hotel 168
## 13494 Resort Hotel 168
## 13495 Resort Hotel 161
## 13496 Resort Hotel 245
## 13497 Resort Hotel 161
## 13498 Resort Hotel 245
## 13499 Resort Hotel 179
## 13500 Resort Hotel 213
## 13501 Resort Hotel 213
## 13502 Resort Hotel 212
## 13503 Resort Hotel 358
## 13504 Resort Hotel 154
## 13505 Resort Hotel 212
## 13506 Resort Hotel 84
## 13507 Resort Hotel 172
## 13508 Resort Hotel 358
## 13509 Resort Hotel 213
## 13510 Resort Hotel 151
## 13511 Resort Hotel 65
## 13512 Resort Hotel 168
## 13513 Resort Hotel 168
## 13514 Resort Hotel 44
## 13515 Resort Hotel 158
## 13516 Resort Hotel 49
## 13517 Resort Hotel 117
## 13518 Resort Hotel 19
## 13519 Resort Hotel 124
## 13520 Resort Hotel 88
## 13521 Resort Hotel 144
## 13522 Resort Hotel 33
## 13523 Resort Hotel 200
## 13524 Resort Hotel 200
## 13525 Resort Hotel 76
## 13526 Resort Hotel 44
## 13527 Resort Hotel 39
## 13528 Resort Hotel 64
## 13529 Resort Hotel 187
## 13530 Resort Hotel 257
## 13531 Resort Hotel 185
## 13532 Resort Hotel 8
## 13533 Resort Hotel 173
## 13534 Resort Hotel 203
## 13535 Resort Hotel 108
## 13536 Resort Hotel 177
## 13537 Resort Hotel 259
## 13538 Resort Hotel 2
## 13539 Resort Hotel 234
## 13540 Resort Hotel 195
## 13541 Resort Hotel 160
## 13542 Resort Hotel 173
## 13543 Resort Hotel 177
## 13544 Resort Hotel 108
## 13545 Resort Hotel 113
## 13546 Resort Hotel 187
## 13547 Resort Hotel 199
## 13548 Resort Hotel 160
## 13549 Resort Hotel 306
## 13550 Resort Hotel 211
## 13551 Resort Hotel 125
## 13552 Resort Hotel 211
## 13553 Resort Hotel 129
## 13554 Resort Hotel 129
## 13555 Resort Hotel 146
## 13556 Resort Hotel 216
## 13557 Resort Hotel 211
## 13558 Resort Hotel 122
## 13559 Resort Hotel 129
## 13560 Resort Hotel 349
## 13561 Resort Hotel 220
## 13562 Resort Hotel 353
## 13563 Resort Hotel 5
## 13564 Resort Hotel 118
## 13565 Resort Hotel 210
## 13566 Resort Hotel 294
## 13567 Resort Hotel 337
## 13568 Resort Hotel 64
## 13569 Resort Hotel 178
## 13570 Resort Hotel 161
## 13571 Resort Hotel 161
## 13572 Resort Hotel 315
## 13573 Resort Hotel 360
## 13574 Resort Hotel 173
## 13575 Resort Hotel 190
## 13576 Resort Hotel 210
## 13577 Resort Hotel 277
## 13578 Resort Hotel 143
## 13579 Resort Hotel 90
## 13580 Resort Hotel 60
## 13581 Resort Hotel 60
## 13582 Resort Hotel 106
## 13583 Resort Hotel 195
## 13584 Resort Hotel 83
## 13585 Resort Hotel 19
## 13586 Resort Hotel 25
## 13587 Resort Hotel 193
## 13588 Resort Hotel 197
## 13589 Resort Hotel 21
## 13590 Resort Hotel 38
## 13591 Resort Hotel 34
## 13592 Resort Hotel 247
## 13593 Resort Hotel 295
## 13594 Resort Hotel 206
## 13595 Resort Hotel 119
## 13596 Resort Hotel 189
## 13597 Resort Hotel 202
## 13598 Resort Hotel 122
## 13599 Resort Hotel 12
## 13600 Resort Hotel 238
## 13601 Resort Hotel 189
## 13602 Resort Hotel 29
## 13603 Resort Hotel 233
## 13604 Resort Hotel 136
## 13605 Resort Hotel 144
## 13606 Resort Hotel 136
## 13607 Resort Hotel 217
## 13608 Resort Hotel 193
## 13609 Resort Hotel 204
## 13610 Resort Hotel 202
## 13611 Resort Hotel 15
## 13612 Resort Hotel 3
## 13613 Resort Hotel 101
## 13614 Resort Hotel 49
## 13615 Resort Hotel 157
## 13616 Resort Hotel 26
## 13617 Resort Hotel 181
## 13618 Resort Hotel 58
## 13619 Resort Hotel 43
## 13620 Resort Hotel 212
## 13621 Resort Hotel 24
## 13622 Resort Hotel 209
## 13623 Resort Hotel 223
## 13624 Resort Hotel 156
## 13625 Resort Hotel 63
## 13626 Resort Hotel 156
## 13627 Resort Hotel 223
## 13628 Resort Hotel 95
## 13629 Resort Hotel 195
## 13630 Resort Hotel 77
## 13631 Resort Hotel 77
## 13632 Resort Hotel 77
## 13633 Resort Hotel 77
## 13634 Resort Hotel 77
## 13635 Resort Hotel 111
## 13636 Resort Hotel 77
## 13637 Resort Hotel 77
## 13638 Resort Hotel 77
## 13639 Resort Hotel 60
## 13640 Resort Hotel 44
## 13641 Resort Hotel 338
## 13642 Resort Hotel 197
## 13643 Resort Hotel 77
## 13644 Resort Hotel 77
## 13645 Resort Hotel 20
## 13646 Resort Hotel 71
## 13647 Resort Hotel 198
## 13648 Resort Hotel 338
## 13649 Resort Hotel 144
## 13650 Resort Hotel 237
## 13651 Resort Hotel 162
## 13652 Resort Hotel 58
## 13653 Resort Hotel 163
## 13654 Resort Hotel 165
## 13655 Resort Hotel 162
## 13656 Resort Hotel 198
## 13657 Resort Hotel 60
## 13658 Resort Hotel 198
## 13659 Resort Hotel 26
## 13660 Resort Hotel 31
## 13661 Resort Hotel 72
## 13662 Resort Hotel 90
## 13663 Resort Hotel 149
## 13664 Resort Hotel 150
## 13665 Resort Hotel 253
## 13666 Resort Hotel 167
## 13667 Resort Hotel 253
## 13668 Resort Hotel 253
## 13669 Resort Hotel 110
## 13670 Resort Hotel 253
## 13671 Resort Hotel 38
## 13672 Resort Hotel 172
## 13673 Resort Hotel 353
## 13674 Resort Hotel 0
## 13675 Resort Hotel 172
## 13676 Resort Hotel 17
## 13677 Resort Hotel 45
## 13678 Resort Hotel 74
## 13679 Resort Hotel 143
## 13680 Resort Hotel 204
## 13681 Resort Hotel 143
## 13682 Resort Hotel 191
## 13683 Resort Hotel 80
## 13684 Resort Hotel 181
## 13685 Resort Hotel 80
## 13686 Resort Hotel 25
## 13687 Resort Hotel 29
## 13688 Resort Hotel 17
## 13689 Resort Hotel 66
## 13690 Resort Hotel 103
## 13691 Resort Hotel 184
## 13692 Resort Hotel 142
## 13693 Resort Hotel 47
## 13694 Resort Hotel 185
## 13695 Resort Hotel 90
## 13696 Resort Hotel 87
## 13697 Resort Hotel 17
## 13698 Resort Hotel 3
## 13699 Resort Hotel 17
## 13700 Resort Hotel 212
## 13701 Resort Hotel 40
## 13702 Resort Hotel 191
## 13703 Resort Hotel 19
## 13704 Resort Hotel 181
## 13705 Resort Hotel 73
## 13706 Resort Hotel 220
## 13707 Resort Hotel 51
## 13708 Resort Hotel 51
## 13709 Resort Hotel 50
## 13710 Resort Hotel 301
## 13711 Resort Hotel 344
## 13712 Resort Hotel 140
## 13713 Resort Hotel 36
## 13714 Resort Hotel 61
## 13715 Resort Hotel 22
## 13716 Resort Hotel 47
## 13717 Resort Hotel 47
## 13718 Resort Hotel 46
## 13719 Resort Hotel 99
## 13720 Resort Hotel 20
## 13721 Resort Hotel 216
## 13722 Resort Hotel 20
## 13723 Resort Hotel 216
## 13724 Resort Hotel 327
## 13725 Resort Hotel 305
## 13726 Resort Hotel 56
## 13727 Resort Hotel 98
## 13728 Resort Hotel 48
## 13729 Resort Hotel 56
## 13730 Resort Hotel 98
## 13731 Resort Hotel 98
## 13732 Resort Hotel 56
## 13733 Resort Hotel 53
## 13734 Resort Hotel 40
## 13735 Resort Hotel 172
## 13736 Resort Hotel 63
## 13737 Resort Hotel 152
## 13738 Resort Hotel 61
## 13739 Resort Hotel 35
## 13740 Resort Hotel 14
## 13741 Resort Hotel 26
## 13742 Resort Hotel 73
## 13743 Resort Hotel 175
## 13744 Resort Hotel 73
## 13745 Resort Hotel 65
## 13746 Resort Hotel 27
## 13747 Resort Hotel 222
## 13748 Resort Hotel 175
## 13749 Resort Hotel 112
## 13750 Resort Hotel 80
## 13751 Resort Hotel 13
## 13752 Resort Hotel 112
## 13753 Resort Hotel 54
## 13754 Resort Hotel 120
## 13755 Resort Hotel 80
## 13756 Resort Hotel 120
## 13757 Resort Hotel 59
## 13758 Resort Hotel 77
## 13759 Resort Hotel 59
## 13760 Resort Hotel 237
## 13761 Resort Hotel 237
## 13762 Resort Hotel 18
## 13763 Resort Hotel 205
## 13764 Resort Hotel 29
## 13765 Resort Hotel 32
## 13766 Resort Hotel 35
## 13767 Resort Hotel 29
## 13768 Resort Hotel 75
## 13769 Resort Hotel 114
## 13770 Resort Hotel 8
## 13771 Resort Hotel 72
## 13772 Resort Hotel 246
## 13773 Resort Hotel 19
## 13774 Resort Hotel 42
## 13775 Resort Hotel 160
## 13776 Resort Hotel 148
## 13777 Resort Hotel 73
## 13778 Resort Hotel 98
## 13779 Resort Hotel 54
## 13780 Resort Hotel 50
## 13781 Resort Hotel 98
## 13782 Resort Hotel 74
## 13783 Resort Hotel 51
## 13784 Resort Hotel 36
## 13785 Resort Hotel 60
## 13786 Resort Hotel 92
## 13787 Resort Hotel 207
## 13788 Resort Hotel 62
## 13789 Resort Hotel 262
## 13790 Resort Hotel 24
## 13791 Resort Hotel 95
## 13792 Resort Hotel 45
## 13793 Resort Hotel 24
## 13794 Resort Hotel 17
## 13795 Resort Hotel 17
## 13796 Resort Hotel 70
## 13797 Resort Hotel 112
## 13798 Resort Hotel 13
## 13799 Resort Hotel 6
## 13800 Resort Hotel 45
## 13801 Resort Hotel 184
## 13802 Resort Hotel 29
## 13803 Resort Hotel 350
## 13804 Resort Hotel 7
## 13805 Resort Hotel 7
## 13806 Resort Hotel 2
## 13807 Resort Hotel 7
## 13808 Resort Hotel 7
## 13809 Resort Hotel 6
## 13810 Resort Hotel 7
## 13811 Resort Hotel 66
## 13812 Resort Hotel 71
## 13813 Resort Hotel 6
## 13814 Resort Hotel 1
## 13815 Resort Hotel 6
## 13816 Resort Hotel 6
## 13817 Resort Hotel 6
## 13818 Resort Hotel 1
## 13819 Resort Hotel 4
## 13820 Resort Hotel 11
## 13821 Resort Hotel 1
## 13822 Resort Hotel 7
## 13823 Resort Hotel 11
## 13824 Resort Hotel 7
## 13825 Resort Hotel 0
## 13826 Resort Hotel 6
## 13827 Resort Hotel 7
## 13828 Resort Hotel 8
## 13829 Resort Hotel 5
## 13830 Resort Hotel 14
## 13831 Resort Hotel 6
## 13832 Resort Hotel 7
## 13833 Resort Hotel 5
## 13834 Resort Hotel 4
## 13835 Resort Hotel 1
## 13836 Resort Hotel 2
## 13837 Resort Hotel 7
## 13838 Resort Hotel 5
## 13839 Resort Hotel 183
## 13840 Resort Hotel 186
## 13841 Resort Hotel 14
## 13842 Resort Hotel 4
## 13843 Resort Hotel 118
## 13844 Resort Hotel 1
## 13845 Resort Hotel 32
## 13846 Resort Hotel 137
## 13847 Resort Hotel 0
## 13848 Resort Hotel 0
## 13849 Resort Hotel 105
## 13850 Resort Hotel 105
## 13851 Resort Hotel 52
## 13852 Resort Hotel 81
## 13853 Resort Hotel 89
## 13854 Resort Hotel 1
## 13855 Resort Hotel 33
## 13856 Resort Hotel 5
## 13857 Resort Hotel 0
## 13858 Resort Hotel 7
## 13859 Resort Hotel 5
## 13860 Resort Hotel 78
## 13861 Resort Hotel 110
## 13862 Resort Hotel 134
## 13863 Resort Hotel 73
## 13864 Resort Hotel 9
## 13865 Resort Hotel 92
## 13866 Resort Hotel 1
## 13867 Resort Hotel 5
## 13868 Resort Hotel 0
## 13869 Resort Hotel 6
## 13870 Resort Hotel 4
## 13871 Resort Hotel 6
## 13872 Resort Hotel 7
## 13873 Resort Hotel 0
## 13874 Resort Hotel 12
## 13875 Resort Hotel 8
## 13876 Resort Hotel 27
## 13877 Resort Hotel 16
## 13878 Resort Hotel 20
## 13879 Resort Hotel 1
## 13880 Resort Hotel 3
## 13881 Resort Hotel 19
## 13882 Resort Hotel 26
## 13883 Resort Hotel 0
## 13884 Resort Hotel 0
## 13885 Resort Hotel 2
## 13886 Resort Hotel 1
## 13887 Resort Hotel 1
## 13888 Resort Hotel 0
## 13889 Resort Hotel 8
## 13890 Resort Hotel 5
## 13891 Resort Hotel 3
## 13892 Resort Hotel 2
## 13893 Resort Hotel 39
## 13894 Resort Hotel 1
## 13895 Resort Hotel 3
## 13896 Resort Hotel 0
## 13897 Resort Hotel 2
## 13898 Resort Hotel 1
## 13899 Resort Hotel 0
## 13900 Resort Hotel 0
## 13901 Resort Hotel 2
## 13902 Resort Hotel 20
## 13903 Resort Hotel 2
## 13904 Resort Hotel 0
## 13905 Resort Hotel 0
## 13906 Resort Hotel 0
## 13907 Resort Hotel 5
## 13908 Resort Hotel 0
## 13909 Resort Hotel 5
## 13910 Resort Hotel 0
## 13911 Resort Hotel 16
## 13912 Resort Hotel 131
## 13913 Resort Hotel 2
## 13914 Resort Hotel 7
## 13915 Resort Hotel 5
## 13916 Resort Hotel 3
## 13917 Resort Hotel 2
## 13918 Resort Hotel 10
## 13919 Resort Hotel 8
## 13920 Resort Hotel 1
## 13921 Resort Hotel 0
## 13922 Resort Hotel 0
## 13923 Resort Hotel 1
## 13924 Resort Hotel 1
## 13925 Resort Hotel 0
## 13926 Resort Hotel 0
## 13927 Resort Hotel 6
## 13928 Resort Hotel 236
## 13929 Resort Hotel 66
## 13930 Resort Hotel 112
## 13931 Resort Hotel 134
## 13932 Resort Hotel 151
## 13933 Resort Hotel 89
## 13934 Resort Hotel 136
## 13935 Resort Hotel 172
## 13936 Resort Hotel 157
## 13937 Resort Hotel 2
## 13938 Resort Hotel 6
## 13939 Resort Hotel 245
## 13940 Resort Hotel 11
## 13941 Resort Hotel 0
## 13942 Resort Hotel 0
## 13943 Resort Hotel 122
## 13944 Resort Hotel 12
## 13945 Resort Hotel 7
## 13946 Resort Hotel 8
## 13947 Resort Hotel 2
## 13948 Resort Hotel 1
## 13949 Resort Hotel 0
## 13950 Resort Hotel 1
## 13951 Resort Hotel 0
## 13952 Resort Hotel 4
## 13953 Resort Hotel 0
## 13954 Resort Hotel 1
## 13955 Resort Hotel 0
## 13956 Resort Hotel 1
## 13957 Resort Hotel 6
## 13958 Resort Hotel 0
## 13959 Resort Hotel 0
## 13960 Resort Hotel 3
## 13961 Resort Hotel 5
## 13962 Resort Hotel 1
## 13963 Resort Hotel 0
## 13964 Resort Hotel 0
## 13965 Resort Hotel 6
## 13966 Resort Hotel 0
## 13967 Resort Hotel 2
## 13968 Resort Hotel 0
## 13969 Resort Hotel 69
## 13970 Resort Hotel 87
## 13971 Resort Hotel 2
## 13972 Resort Hotel 0
## 13973 Resort Hotel 0
## 13974 Resort Hotel 0
## 13975 Resort Hotel 7
## 13976 Resort Hotel 1
## 13977 Resort Hotel 1
## 13978 Resort Hotel 0
## 13979 Resort Hotel 2
## 13980 Resort Hotel 0
## 13981 Resort Hotel 9
## 13982 Resort Hotel 2
## 13983 Resort Hotel 2
## 13984 Resort Hotel 4
## 13985 Resort Hotel 9
## 13986 Resort Hotel 11
## 13987 Resort Hotel 7
## 13988 Resort Hotel 0
## 13989 Resort Hotel 11
## 13990 Resort Hotel 11
## 13991 Resort Hotel 20
## 13992 Resort Hotel 0
## 13993 Resort Hotel 5
## 13994 Resort Hotel 1
## 13995 Resort Hotel 0
## 13996 Resort Hotel 13
## 13997 Resort Hotel 1
## 13998 Resort Hotel 1
## 13999 Resort Hotel 91
## 14000 Resort Hotel 113
## 14001 Resort Hotel 122
## 14002 Resort Hotel 162
## 14003 Resort Hotel 4
## 14004 Resort Hotel 7
## 14005 Resort Hotel 2
## 14006 Resort Hotel 8
## 14007 Resort Hotel 1
## 14008 Resort Hotel 1
## 14009 Resort Hotel 1
## 14010 Resort Hotel 0
## 14011 Resort Hotel 2
## 14012 Resort Hotel 1
## 14013 Resort Hotel 1
## 14014 Resort Hotel 1
## 14015 Resort Hotel 1
## 14016 Resort Hotel 1
## 14017 Resort Hotel 7
## 14018 Resort Hotel 1
## 14019 Resort Hotel 11
## 14020 Resort Hotel 9
## 14021 Resort Hotel 2
## 14022 Resort Hotel 2
## 14023 Resort Hotel 0
## 14024 Resort Hotel 5
## 14025 Resort Hotel 0
## 14026 Resort Hotel 2
## 14027 Resort Hotel 1
## 14028 Resort Hotel 1
## 14029 Resort Hotel 2
## 14030 Resort Hotel 2
## 14031 Resort Hotel 9
## 14032 Resort Hotel 6
## 14033 Resort Hotel 5
## 14034 Resort Hotel 3
## 14035 Resort Hotel 3
## 14036 Resort Hotel 7
## 14037 Resort Hotel 0
## 14038 Resort Hotel 113
## 14039 Resort Hotel 126
## 14040 Resort Hotel 74
## 14041 Resort Hotel 0
## 14042 Resort Hotel 0
## 14043 Resort Hotel 5
## 14044 Resort Hotel 0
## 14045 Resort Hotel 0
## 14046 Resort Hotel 0
## 14047 Resort Hotel 0
## 14048 Resort Hotel 0
## 14049 Resort Hotel 7
## 14050 Resort Hotel 64
## 14051 Resort Hotel 0
## 14052 Resort Hotel 0
## 14053 Resort Hotel 0
## 14054 Resort Hotel 5
## 14055 Resort Hotel 7
## 14056 Resort Hotel 0
## 14057 Resort Hotel 0
## 14058 Resort Hotel 0
## 14059 Resort Hotel 1
## 14060 Resort Hotel 0
## 14061 Resort Hotel 0
## 14062 Resort Hotel 0
## 14063 Resort Hotel 151
## 14064 Resort Hotel 87
## 14065 Resort Hotel 20
## 14066 Resort Hotel 1
## 14067 Resort Hotel 0
## 14068 Resort Hotel 20
## 14069 Resort Hotel 6
## 14070 Resort Hotel 2
## 14071 Resort Hotel 267
## 14072 Resort Hotel 168
## 14073 Resort Hotel 109
## 14074 Resort Hotel 52
## 14075 Resort Hotel 67
## 14076 Resort Hotel 11
## 14077 Resort Hotel 0
## 14078 Resort Hotel 1
## 14079 Resort Hotel 15
## 14080 Resort Hotel 6
## 14081 Resort Hotel 1
## 14082 Resort Hotel 6
## 14083 Resort Hotel 13
## 14084 Resort Hotel 6
## 14085 Resort Hotel 1
## 14086 Resort Hotel 2
## 14087 Resort Hotel 4
## 14088 Resort Hotel 165
## 14089 Resort Hotel 163
## 14090 Resort Hotel 1
## 14091 Resort Hotel 5
## 14092 Resort Hotel 0
## 14093 Resort Hotel 91
## 14094 Resort Hotel 119
## 14095 Resort Hotel 137
## 14096 Resort Hotel 158
## 14097 Resort Hotel 124
## 14098 Resort Hotel 122
## 14099 Resort Hotel 152
## 14100 Resort Hotel 88
## 14101 Resort Hotel 19
## 14102 Resort Hotel 141
## 14103 Resort Hotel 19
## 14104 Resort Hotel 65
## 14105 Resort Hotel 167
## 14106 Resort Hotel 1
## 14107 Resort Hotel 0
## 14108 Resort Hotel 237
## 14109 Resort Hotel 29
## 14110 Resort Hotel 1
## 14111 Resort Hotel 8
## 14112 Resort Hotel 305
## 14113 Resort Hotel 127
## 14114 Resort Hotel 303
## 14115 Resort Hotel 7
## 14116 Resort Hotel 7
## 14117 Resort Hotel 29
## 14118 Resort Hotel 2
## 14119 Resort Hotel 4
## 14120 Resort Hotel 64
## 14121 Resort Hotel 2
## 14122 Resort Hotel 6
## 14123 Resort Hotel 5
## 14124 Resort Hotel 5
## 14125 Resort Hotel 6
## 14126 Resort Hotel 249
## 14127 Resort Hotel 0
## 14128 Resort Hotel 1
## 14129 Resort Hotel 9
## 14130 Resort Hotel 5
## 14131 Resort Hotel 25
## 14132 Resort Hotel 0
## 14133 Resort Hotel 1
## 14134 Resort Hotel 112
## 14135 Resort Hotel 2
## 14136 Resort Hotel 335
## 14137 Resort Hotel 0
## 14138 Resort Hotel 5
## 14139 Resort Hotel 0
## 14140 Resort Hotel 0
## 14141 Resort Hotel 4
## 14142 Resort Hotel 0
## 14143 Resort Hotel 5
## 14144 Resort Hotel 11
## 14145 Resort Hotel 19
## 14146 Resort Hotel 9
## 14147 Resort Hotel 10
## 14148 Resort Hotel 8
## 14149 Resort Hotel 2
## 14150 Resort Hotel 20
## 14151 Resort Hotel 4
## 14152 Resort Hotel 35
## 14153 Resort Hotel 0
## 14154 Resort Hotel 2
## 14155 Resort Hotel 8
## 14156 Resort Hotel 5
## 14157 Resort Hotel 8
## 14158 Resort Hotel 2
## 14159 Resort Hotel 3
## 14160 Resort Hotel 6
## 14161 Resort Hotel 7
## 14162 Resort Hotel 0
## 14163 Resort Hotel 13
## 14164 Resort Hotel 134
## 14165 Resort Hotel 76
## 14166 Resort Hotel 104
## 14167 Resort Hotel 103
## 14168 Resort Hotel 6
## 14169 Resort Hotel 8
## 14170 Resort Hotel 6
## 14171 Resort Hotel 0
## 14172 Resort Hotel 0
## 14173 Resort Hotel 0
## 14174 Resort Hotel 7
## 14175 Resort Hotel 0
## 14176 Resort Hotel 1
## 14177 Resort Hotel 0
## 14178 Resort Hotel 4
## 14179 Resort Hotel 0
## 14180 Resort Hotel 0
## 14181 Resort Hotel 2
## 14182 Resort Hotel 21
## 14183 Resort Hotel 80
## 14184 Resort Hotel 2
## 14185 Resort Hotel 167
## 14186 Resort Hotel 164
## 14187 Resort Hotel 172
## 14188 Resort Hotel 234
## 14189 Resort Hotel 454
## 14190 Resort Hotel 61
## 14191 Resort Hotel 83
## 14192 Resort Hotel 66
## 14193 Resort Hotel 160
## 14194 Resort Hotel 0
## 14195 Resort Hotel 2
## 14196 Resort Hotel 2
## 14197 Resort Hotel 2
## 14198 Resort Hotel 10
## 14199 Resort Hotel 2
## 14200 Resort Hotel 8
## 14201 Resort Hotel 22
## 14202 Resort Hotel 16
## 14203 Resort Hotel 0
## 14204 Resort Hotel 6
## 14205 Resort Hotel 0
## 14206 Resort Hotel 5
## 14207 Resort Hotel 58
## 14208 Resort Hotel 6
## 14209 Resort Hotel 6
## 14210 Resort Hotel 5
## 14211 Resort Hotel 32
## 14212 Resort Hotel 118
## 14213 Resort Hotel 120
## 14214 Resort Hotel 1
## 14215 Resort Hotel 1
## 14216 Resort Hotel 26
## 14217 Resort Hotel 16
## 14218 Resort Hotel 24
## 14219 Resort Hotel 1
## 14220 Resort Hotel 0
## 14221 Resort Hotel 1
## 14222 Resort Hotel 0
## 14223 Resort Hotel 0
## 14224 Resort Hotel 1
## 14225 Resort Hotel 76
## 14226 Resort Hotel 150
## 14227 Resort Hotel 1
## 14228 Resort Hotel 81
## 14229 Resort Hotel 46
## 14230 Resort Hotel 4
## 14231 Resort Hotel 144
## 14232 Resort Hotel 31
## 14233 Resort Hotel 1
## 14234 Resort Hotel 0
## 14235 Resort Hotel 2
## 14236 Resort Hotel 0
## 14237 Resort Hotel 0
## 14238 Resort Hotel 1
## 14239 Resort Hotel 3
## 14240 Resort Hotel 8
## 14241 Resort Hotel 4
## 14242 Resort Hotel 0
## 14243 Resort Hotel 18
## 14244 Resort Hotel 2
## 14245 Resort Hotel 6
## 14246 Resort Hotel 2
## 14247 Resort Hotel 1
## 14248 Resort Hotel 1
## 14249 Resort Hotel 2
## 14250 Resort Hotel 3
## 14251 Resort Hotel 1
## 14252 Resort Hotel 35
## 14253 Resort Hotel 224
## 14254 Resort Hotel 197
## 14255 Resort Hotel 151
## 14256 Resort Hotel 88
## 14257 Resort Hotel 1
## 14258 Resort Hotel 17
## 14259 Resort Hotel 29
## 14260 Resort Hotel 14
## 14261 Resort Hotel 12
## 14262 Resort Hotel 11
## 14263 Resort Hotel 37
## 14264 Resort Hotel 16
## 14265 Resort Hotel 37
## 14266 Resort Hotel 24
## 14267 Resort Hotel 13
## 14268 Resort Hotel 10
## 14269 Resort Hotel 17
## 14270 Resort Hotel 17
## 14271 Resort Hotel 19
## 14272 Resort Hotel 11
## 14273 Resort Hotel 30
## 14274 Resort Hotel 17
## 14275 Resort Hotel 230
## 14276 Resort Hotel 75
## 14277 Resort Hotel 44
## 14278 Resort Hotel 72
## 14279 Resort Hotel 4
## 14280 Resort Hotel 2
## 14281 Resort Hotel 5
## 14282 Resort Hotel 2
## 14283 Resort Hotel 3
## 14284 Resort Hotel 4
## 14285 Resort Hotel 2
## 14286 Resort Hotel 9
## 14287 Resort Hotel 29
## 14288 Resort Hotel 26
## 14289 Resort Hotel 12
## 14290 Resort Hotel 28
## 14291 Resort Hotel 4
## 14292 Resort Hotel 1
## 14293 Resort Hotel 12
## 14294 Resort Hotel 8
## 14295 Resort Hotel 17
## 14296 Resort Hotel 17
## 14297 Resort Hotel 0
## 14298 Resort Hotel 0
## 14299 Resort Hotel 0
## 14300 Resort Hotel 0
## 14301 Resort Hotel 0
## 14302 Resort Hotel 0
## 14303 Resort Hotel 0
## 14304 Resort Hotel 2
## 14305 Resort Hotel 0
## 14306 Resort Hotel 4
## 14307 Resort Hotel 1
## 14308 Resort Hotel 1
## 14309 Resort Hotel 3
## 14310 Resort Hotel 5
## 14311 Resort Hotel 6
## 14312 Resort Hotel 3
## 14313 Resort Hotel 6
## 14314 Resort Hotel 6
## 14315 Resort Hotel 6
## 14316 Resort Hotel 10
## 14317 Resort Hotel 5
## 14318 Resort Hotel 3
## 14319 Resort Hotel 1
## 14320 Resort Hotel 0
## 14321 Resort Hotel 0
## 14322 Resort Hotel 0
## 14323 Resort Hotel 3
## 14324 Resort Hotel 16
## 14325 Resort Hotel 8
## 14326 Resort Hotel 5
## 14327 Resort Hotel 30
## 14328 Resort Hotel 31
## 14329 Resort Hotel 12
## 14330 Resort Hotel 1
## 14331 Resort Hotel 20
## 14332 Resort Hotel 21
## 14333 Resort Hotel 1
## 14334 Resort Hotel 15
## 14335 Resort Hotel 9
## 14336 Resort Hotel 5
## 14337 Resort Hotel 0
## 14338 Resort Hotel 0
## 14339 Resort Hotel 23
## 14340 Resort Hotel 2
## 14341 Resort Hotel 2
## 14342 Resort Hotel 7
## 14343 Resort Hotel 0
## 14344 Resort Hotel 0
## 14345 Resort Hotel 62
## 14346 Resort Hotel 183
## 14347 Resort Hotel 0
## 14348 Resort Hotel 4
## 14349 Resort Hotel 3
## 14350 Resort Hotel 72
## 14351 Resort Hotel 4
## 14352 Resort Hotel 0
## 14353 Resort Hotel 0
## 14354 Resort Hotel 1
## 14355 Resort Hotel 3
## 14356 Resort Hotel 1
## 14357 Resort Hotel 3
## 14358 Resort Hotel 1
## 14359 Resort Hotel 4
## 14360 Resort Hotel 0
## 14361 Resort Hotel 0
## 14362 Resort Hotel 45
## 14363 Resort Hotel 0
## 14364 Resort Hotel 0
## 14365 Resort Hotel 0
## 14366 Resort Hotel 39
## 14367 Resort Hotel 1
## 14368 Resort Hotel 22
## 14369 Resort Hotel 83
## 14370 Resort Hotel 9
## 14371 Resort Hotel 1
## 14372 Resort Hotel 5
## 14373 Resort Hotel 1
## 14374 Resort Hotel 1
## 14375 Resort Hotel 5
## 14376 Resort Hotel 0
## 14377 Resort Hotel 244
## 14378 Resort Hotel 2
## 14379 Resort Hotel 166
## 14380 Resort Hotel 4
## 14381 Resort Hotel 43
## 14382 Resort Hotel 0
## 14383 Resort Hotel 2
## 14384 Resort Hotel 18
## 14385 Resort Hotel 0
## 14386 Resort Hotel 49
## 14387 Resort Hotel 15
## 14388 Resort Hotel 9
## 14389 Resort Hotel 8
## 14390 Resort Hotel 51
## 14391 Resort Hotel 43
## 14392 Resort Hotel 117
## 14393 Resort Hotel 238
## 14394 Resort Hotel 1
## 14395 Resort Hotel 137
## 14396 Resort Hotel 4
## 14397 Resort Hotel 3
## 14398 Resort Hotel 3
## 14399 Resort Hotel 7
## 14400 Resort Hotel 10
## 14401 Resort Hotel 45
## 14402 Resort Hotel 110
## 14403 Resort Hotel 101
## 14404 Resort Hotel 297
## 14405 Resort Hotel 106
## 14406 Resort Hotel 236
## 14407 Resort Hotel 1
## 14408 Resort Hotel 1
## 14409 Resort Hotel 187
## 14410 Resort Hotel 175
## 14411 Resort Hotel 58
## 14412 Resort Hotel 40
## 14413 Resort Hotel 176
## 14414 Resort Hotel 0
## 14415 Resort Hotel 0
## 14416 Resort Hotel 260
## 14417 Resort Hotel 0
## 14418 Resort Hotel 0
## 14419 Resort Hotel 1
## 14420 Resort Hotel 204
## 14421 Resort Hotel 0
## 14422 Resort Hotel 8
## 14423 Resort Hotel 8
## 14424 Resort Hotel 0
## 14425 Resort Hotel 0
## 14426 Resort Hotel 1
## 14427 Resort Hotel 1
## 14428 Resort Hotel 0
## 14429 Resort Hotel 0
## 14430 Resort Hotel 0
## 14431 Resort Hotel 1
## 14432 Resort Hotel 7
## 14433 Resort Hotel 1
## 14434 Resort Hotel 25
## 14435 Resort Hotel 0
## 14436 Resort Hotel 0
## 14437 Resort Hotel 4
## 14438 Resort Hotel 6
## 14439 Resort Hotel 2
## 14440 Resort Hotel 1
## 14441 Resort Hotel 6
## 14442 Resort Hotel 1
## 14443 Resort Hotel 1
## 14444 Resort Hotel 0
## 14445 Resort Hotel 3
## 14446 Resort Hotel 14
## 14447 Resort Hotel 0
## 14448 Resort Hotel 0
## 14449 Resort Hotel 1
## 14450 Resort Hotel 1
## 14451 Resort Hotel 3
## 14452 Resort Hotel 2
## 14453 Resort Hotel 7
## 14454 Resort Hotel 0
## 14455 Resort Hotel 0
## 14456 Resort Hotel 0
## 14457 Resort Hotel 0
## 14458 Resort Hotel 10
## 14459 Resort Hotel 11
## 14460 Resort Hotel 13
## 14461 Resort Hotel 2
## 14462 Resort Hotel 0
## 14463 Resort Hotel 23
## 14464 Resort Hotel 2
## 14465 Resort Hotel 1
## 14466 Resort Hotel 1
## 14467 Resort Hotel 0
## 14468 Resort Hotel 0
## 14469 Resort Hotel 0
## 14470 Resort Hotel 13
## 14471 Resort Hotel 12
## 14472 Resort Hotel 3
## 14473 Resort Hotel 22
## 14474 Resort Hotel 14
## 14475 Resort Hotel 0
## 14476 Resort Hotel 0
## 14477 Resort Hotel 0
## 14478 Resort Hotel 0
## 14479 Resort Hotel 0
## 14480 Resort Hotel 0
## 14481 Resort Hotel 2
## 14482 Resort Hotel 1
## 14483 Resort Hotel 0
## 14484 Resort Hotel 5
## 14485 Resort Hotel 20
## 14486 Resort Hotel 7
## 14487 Resort Hotel 6
## 14488 Resort Hotel 6
## 14489 Resort Hotel 2
## 14490 Resort Hotel 0
## 14491 Resort Hotel 0
## 14492 Resort Hotel 0
## 14493 Resort Hotel 0
## 14494 Resort Hotel 0
## 14495 Resort Hotel 1
## 14496 Resort Hotel 3
## 14497 Resort Hotel 40
## 14498 Resort Hotel 0
## 14499 Resort Hotel 1
## 14500 Resort Hotel 0
## 14501 Resort Hotel 0
## 14502 Resort Hotel 2
## 14503 Resort Hotel 11
## 14504 Resort Hotel 3
## 14505 Resort Hotel 0
## 14506 Resort Hotel 6
## 14507 Resort Hotel 5
## 14508 Resort Hotel 6
## 14509 Resort Hotel 3
## 14510 Resort Hotel 0
## 14511 Resort Hotel 1
## 14512 Resort Hotel 1
## 14513 Resort Hotel 0
## 14514 Resort Hotel 0
## 14515 Resort Hotel 0
## 14516 Resort Hotel 0
## 14517 Resort Hotel 4
## 14518 Resort Hotel 0
## 14519 Resort Hotel 0
## 14520 Resort Hotel 28
## 14521 Resort Hotel 0
## 14522 Resort Hotel 0
## 14523 Resort Hotel 0
## 14524 Resort Hotel 0
## 14525 Resort Hotel 0
## 14526 Resort Hotel 1
## 14527 Resort Hotel 0
## 14528 Resort Hotel 1
## 14529 Resort Hotel 3
## 14530 Resort Hotel 2
## 14531 Resort Hotel 2
## 14532 Resort Hotel 2
## 14533 Resort Hotel 29
## 14534 Resort Hotel 4
## 14535 Resort Hotel 1
## 14536 Resort Hotel 2
## 14537 Resort Hotel 0
## 14538 Resort Hotel 1
## 14539 Resort Hotel 6
## 14540 Resort Hotel 6
## 14541 Resort Hotel 0
## 14542 Resort Hotel 14
## 14543 Resort Hotel 2
## 14544 Resort Hotel 27
## 14545 Resort Hotel 17
## 14546 Resort Hotel 2
## 14547 Resort Hotel 0
## 14548 Resort Hotel 0
## 14549 Resort Hotel 0
## 14550 Resort Hotel 4
## 14551 Resort Hotel 3
## 14552 Resort Hotel 0
## 14553 Resort Hotel 0
## 14554 Resort Hotel 10
## 14555 Resort Hotel 81
## 14556 Resort Hotel 69
## 14557 Resort Hotel 66
## 14558 Resort Hotel 10
## 14559 Resort Hotel 2
## 14560 Resort Hotel 12
## 14561 Resort Hotel 8
## 14562 Resort Hotel 1
## 14563 Resort Hotel 0
## 14564 Resort Hotel 1
## 14565 Resort Hotel 2
## 14566 Resort Hotel 0
## 14567 Resort Hotel 1
## 14568 Resort Hotel 95
## 14569 Resort Hotel 181
## 14570 Resort Hotel 181
## 14571 Resort Hotel 0
## 14572 Resort Hotel 0
## 14573 Resort Hotel 43
## 14574 Resort Hotel 1
## 14575 Resort Hotel 5
## 14576 Resort Hotel 1
## 14577 Resort Hotel 10
## 14578 Resort Hotel 8
## 14579 Resort Hotel 0
## 14580 Resort Hotel 5
## 14581 Resort Hotel 74
## 14582 Resort Hotel 49
## 14583 Resort Hotel 50
## 14584 Resort Hotel 166
## 14585 Resort Hotel 1
## 14586 Resort Hotel 19
## 14587 Resort Hotel 327
## 14588 Resort Hotel 172
## 14589 Resort Hotel 14
## 14590 Resort Hotel 133
## 14591 Resort Hotel 8
## 14592 Resort Hotel 14
## 14593 Resort Hotel 0
## 14594 Resort Hotel 6
## 14595 Resort Hotel 103
## 14596 Resort Hotel 22
## 14597 Resort Hotel 22
## 14598 Resort Hotel 39
## 14599 Resort Hotel 19
## 14600 Resort Hotel 5
## 14601 Resort Hotel 139
## 14602 Resort Hotel 0
## 14603 Resort Hotel 37
## 14604 Resort Hotel 38
## 14605 Resort Hotel 1
## 14606 Resort Hotel 3
## 14607 Resort Hotel 2
## 14608 Resort Hotel 51
## 14609 Resort Hotel 1
## 14610 Resort Hotel 1
## 14611 Resort Hotel 1
## 14612 Resort Hotel 0
## 14613 Resort Hotel 147
## 14614 Resort Hotel 105
## 14615 Resort Hotel 25
## 14616 Resort Hotel 176
## 14617 Resort Hotel 0
## 14618 Resort Hotel 4
## 14619 Resort Hotel 126
## 14620 Resort Hotel 10
## 14621 Resort Hotel 155
## 14622 Resort Hotel 155
## 14623 Resort Hotel 159
## 14624 Resort Hotel 181
## 14625 Resort Hotel 250
## 14626 Resort Hotel 7
## 14627 Resort Hotel 33
## 14628 Resort Hotel 21
## 14629 Resort Hotel 212
## 14630 Resort Hotel 3
## 14631 Resort Hotel 63
## 14632 Resort Hotel 184
## 14633 Resort Hotel 169
## 14634 Resort Hotel 2
## 14635 Resort Hotel 348
## 14636 Resort Hotel 6
## 14637 Resort Hotel 0
## 14638 Resort Hotel 2
## 14639 Resort Hotel 7
## 14640 Resort Hotel 7
## 14641 Resort Hotel 6
## 14642 Resort Hotel 2
## 14643 Resort Hotel 8
## 14644 Resort Hotel 6
## 14645 Resort Hotel 152
## 14646 Resort Hotel 250
## 14647 Resort Hotel 151
## 14648 Resort Hotel 17
## 14649 Resort Hotel 48
## 14650 Resort Hotel 165
## 14651 Resort Hotel 266
## 14652 Resort Hotel 266
## 14653 Resort Hotel 266
## 14654 Resort Hotel 266
## 14655 Resort Hotel 40
## 14656 Resort Hotel 266
## 14657 Resort Hotel 152
## 14658 Resort Hotel 228
## 14659 Resort Hotel 9
## 14660 Resort Hotel 2
## 14661 Resort Hotel 185
## 14662 Resort Hotel 5
## 14663 Resort Hotel 0
## 14664 Resort Hotel 255
## 14665 Resort Hotel 41
## 14666 Resort Hotel 9
## 14667 Resort Hotel 11
## 14668 Resort Hotel 41
## 14669 Resort Hotel 1
## 14670 Resort Hotel 0
## 14671 Resort Hotel 0
## 14672 Resort Hotel 3
## 14673 Resort Hotel 10
## 14674 Resort Hotel 154
## 14675 Resort Hotel 17
## 14676 Resort Hotel 1
## 14677 Resort Hotel 0
## 14678 Resort Hotel 0
## 14679 Resort Hotel 0
## 14680 Resort Hotel 0
## 14681 Resort Hotel 399
## 14682 Resort Hotel 202
## 14683 Resort Hotel 259
## 14684 Resort Hotel 259
## 14685 Resort Hotel 259
## 14686 Resort Hotel 259
## 14687 Resort Hotel 259
## 14688 Resort Hotel 259
## 14689 Resort Hotel 259
## 14690 Resort Hotel 259
## 14691 Resort Hotel 259
## 14692 Resort Hotel 259
## 14693 Resort Hotel 259
## 14694 Resort Hotel 259
## 14695 Resort Hotel 259
## 14696 Resort Hotel 259
## 14697 Resort Hotel 259
## 14698 Resort Hotel 259
## 14699 Resort Hotel 259
## 14700 Resort Hotel 259
## 14701 Resort Hotel 259
## 14702 Resort Hotel 259
## 14703 Resort Hotel 259
## 14704 Resort Hotel 259
## 14705 Resort Hotel 259
## 14706 Resort Hotel 259
## 14707 Resort Hotel 259
## 14708 Resort Hotel 259
## 14709 Resort Hotel 259
## 14710 Resort Hotel 259
## 14711 Resort Hotel 259
## 14712 Resort Hotel 259
## 14713 Resort Hotel 259
## 14714 Resort Hotel 259
## 14715 Resort Hotel 259
## 14716 Resort Hotel 259
## 14717 Resort Hotel 259
## 14718 Resort Hotel 259
## 14719 Resort Hotel 259
## 14720 Resort Hotel 259
## 14721 Resort Hotel 259
## 14722 Resort Hotel 259
## 14723 Resort Hotel 259
## 14724 Resort Hotel 259
## 14725 Resort Hotel 259
## 14726 Resort Hotel 259
## 14727 Resort Hotel 259
## 14728 Resort Hotel 259
## 14729 Resort Hotel 259
## 14730 Resort Hotel 259
## 14731 Resort Hotel 259
## 14732 Resort Hotel 259
## 14733 Resort Hotel 259
## 14734 Resort Hotel 259
## 14735 Resort Hotel 259
## 14736 Resort Hotel 259
## 14737 Resort Hotel 259
## 14738 Resort Hotel 259
## 14739 Resort Hotel 259
## 14740 Resort Hotel 259
## 14741 Resort Hotel 259
## 14742 Resort Hotel 259
## 14743 Resort Hotel 259
## 14744 Resort Hotel 259
## 14745 Resort Hotel 259
## 14746 Resort Hotel 259
## 14747 Resort Hotel 259
## 14748 Resort Hotel 259
## 14749 Resort Hotel 259
## 14750 Resort Hotel 259
## 14751 Resort Hotel 259
## 14752 Resort Hotel 259
## 14753 Resort Hotel 259
## 14754 Resort Hotel 259
## 14755 Resort Hotel 259
## 14756 Resort Hotel 259
## 14757 Resort Hotel 259
## 14758 Resort Hotel 259
## 14759 Resort Hotel 259
## 14760 Resort Hotel 259
## 14761 Resort Hotel 259
## 14762 Resort Hotel 259
## 14763 Resort Hotel 259
## 14764 Resort Hotel 259
## 14765 Resort Hotel 259
## 14766 Resort Hotel 259
## 14767 Resort Hotel 259
## 14768 Resort Hotel 259
## 14769 Resort Hotel 259
## 14770 Resort Hotel 259
## 14771 Resort Hotel 259
## 14772 Resort Hotel 259
## 14773 Resort Hotel 256
## 14774 Resort Hotel 261
## 14775 Resort Hotel 195
## 14776 Resort Hotel 195
## 14777 Resort Hotel 216
## 14778 Resort Hotel 187
## 14779 Resort Hotel 275
## 14780 Resort Hotel 275
## 14781 Resort Hotel 275
## 14782 Resort Hotel 275
## 14783 Resort Hotel 275
## 14784 Resort Hotel 275
## 14785 Resort Hotel 275
## 14786 Resort Hotel 275
## 14787 Resort Hotel 275
## 14788 Resort Hotel 275
## 14789 Resort Hotel 275
## 14790 Resort Hotel 275
## 14791 Resort Hotel 275
## 14792 Resort Hotel 275
## 14793 Resort Hotel 275
## 14794 Resort Hotel 275
## 14795 Resort Hotel 275
## 14796 Resort Hotel 275
## 14797 Resort Hotel 275
## 14798 Resort Hotel 275
## 14799 Resort Hotel 275
## 14800 Resort Hotel 275
## 14801 Resort Hotel 275
## 14802 Resort Hotel 275
## 14803 Resort Hotel 275
## 14804 Resort Hotel 275
## 14805 Resort Hotel 275
## 14806 Resort Hotel 231
## 14807 Resort Hotel 231
## 14808 Resort Hotel 236
## 14809 Resort Hotel 179
## 14810 Resort Hotel 267
## 14811 Resort Hotel 210
## 14812 Resort Hotel 211
## 14813 Resort Hotel 209
## 14814 Resort Hotel 181
## 14815 Resort Hotel 200
## 14816 Resort Hotel 182
## 14817 Resort Hotel 195
## 14818 Resort Hotel 202
## 14819 Resort Hotel 180
## 14820 Resort Hotel 184
## 14821 Resort Hotel 252
## 14822 Resort Hotel 209
## 14823 Resort Hotel 213
## 14824 Resort Hotel 173
## 14825 Resort Hotel 179
## 14826 Resort Hotel 135
## 14827 Resort Hotel 137
## 14828 Resort Hotel 217
## 14829 Resort Hotel 222
## 14830 Resort Hotel 222
## 14831 Resort Hotel 222
## 14832 Resort Hotel 222
## 14833 Resort Hotel 222
## 14834 Resort Hotel 222
## 14835 Resort Hotel 222
## 14836 Resort Hotel 222
## 14837 Resort Hotel 222
## 14838 Resort Hotel 222
## 14839 Resort Hotel 222
## 14840 Resort Hotel 222
## 14841 Resort Hotel 222
## 14842 Resort Hotel 222
## 14843 Resort Hotel 222
## 14844 Resort Hotel 222
## 14845 Resort Hotel 222
## 14846 Resort Hotel 222
## 14847 Resort Hotel 222
## 14848 Resort Hotel 222
## 14849 Resort Hotel 222
## 14850 Resort Hotel 222
## 14851 Resort Hotel 222
## 14852 Resort Hotel 222
## 14853 Resort Hotel 222
## 14854 Resort Hotel 222
## 14855 Resort Hotel 207
## 14856 Resort Hotel 207
## 14857 Resort Hotel 207
## 14858 Resort Hotel 207
## 14859 Resort Hotel 207
## 14860 Resort Hotel 207
## 14861 Resort Hotel 207
## 14862 Resort Hotel 207
## 14863 Resort Hotel 207
## 14864 Resort Hotel 207
## 14865 Resort Hotel 129
## 14866 Resort Hotel 128
## 14867 Resort Hotel 268
## 14868 Resort Hotel 127
## 14869 Resort Hotel 289
## 14870 Resort Hotel 140
## 14871 Resort Hotel 141
## 14872 Resort Hotel 122
## 14873 Resort Hotel 187
## 14874 Resort Hotel 191
## 14875 Resort Hotel 131
## 14876 Resort Hotel 231
## 14877 Resort Hotel 132
## 14878 Resort Hotel 136
## 14879 Resort Hotel 139
## 14880 Resort Hotel 139
## 14881 Resort Hotel 187
## 14882 Resort Hotel 2
## 14883 Resort Hotel 1
## 14884 Resort Hotel 23
## 14885 Resort Hotel 265
## 14886 Resort Hotel 265
## 14887 Resort Hotel 265
## 14888 Resort Hotel 265
## 14889 Resort Hotel 265
## 14890 Resort Hotel 265
## 14891 Resort Hotel 265
## 14892 Resort Hotel 265
## 14893 Resort Hotel 265
## 14894 Resort Hotel 265
## 14895 Resort Hotel 265
## 14896 Resort Hotel 265
## 14897 Resort Hotel 265
## 14898 Resort Hotel 265
## 14899 Resort Hotel 265
## 14900 Resort Hotel 93
## 14901 Resort Hotel 109
## 14902 Resort Hotel 180
## 14903 Resort Hotel 237
## 14904 Resort Hotel 237
## 14905 Resort Hotel 237
## 14906 Resort Hotel 152
## 14907 Resort Hotel 31
## 14908 Resort Hotel 134
## 14909 Resort Hotel 148
## 14910 Resort Hotel 241
## 14911 Resort Hotel 192
## 14912 Resort Hotel 249
## 14913 Resort Hotel 57
## 14914 Resort Hotel 241
## 14915 Resort Hotel 97
## 14916 Resort Hotel 126
## 14917 Resort Hotel 132
## 14918 Resort Hotel 174
## 14919 Resort Hotel 288
## 14920 Resort Hotel 321
## 14921 Resort Hotel 355
## 14922 Resort Hotel 185
## 14923 Resort Hotel 134
## 14924 Resort Hotel 117
## 14925 Resort Hotel 125
## 14926 Resort Hotel 132
## 14927 Resort Hotel 12
## 14928 Resort Hotel 72
## 14929 Resort Hotel 107
## 14930 Resort Hotel 61
## 14931 Resort Hotel 61
## 14932 Resort Hotel 22
## 14933 Resort Hotel 37
## 14934 Resort Hotel 0
## 14935 Resort Hotel 0
## 14936 Resort Hotel 0
## 14937 Resort Hotel 228
## 14938 Resort Hotel 146
## 14939 Resort Hotel 177
## 14940 Resort Hotel 177
## 14941 Resort Hotel 169
## 14942 Resort Hotel 7
## 14943 Resort Hotel 152
## 14944 Resort Hotel 1
## 14945 Resort Hotel 226
## 14946 Resort Hotel 234
## 14947 Resort Hotel 270
## 14948 Resort Hotel 270
## 14949 Resort Hotel 149
## 14950 Resort Hotel 216
## 14951 Resort Hotel 256
## 14952 Resort Hotel 256
## 14953 Resort Hotel 1
## 14954 Resort Hotel 2
## 14955 Resort Hotel 8
## 14956 Resort Hotel 0
## 14957 Resort Hotel 7
## 14958 Resort Hotel 18
## 14959 Resort Hotel 75
## 14960 Resort Hotel 150
## 14961 Resort Hotel 3
## 14962 Resort Hotel 8
## 14963 Resort Hotel 15
## 14964 Resort Hotel 3
## 14965 Resort Hotel 4
## 14966 Resort Hotel 169
## 14967 Resort Hotel 0
## 14968 Resort Hotel 0
## 14969 Resort Hotel 280
## 14970 Resort Hotel 195
## 14971 Resort Hotel 252
## 14972 Resort Hotel 166
## 14973 Resort Hotel 166
## 14974 Resort Hotel 166
## 14975 Resort Hotel 166
## 14976 Resort Hotel 166
## 14977 Resort Hotel 166
## 14978 Resort Hotel 166
## 14979 Resort Hotel 166
## 14980 Resort Hotel 166
## 14981 Resort Hotel 166
## 14982 Resort Hotel 166
## 14983 Resort Hotel 166
## 14984 Resort Hotel 166
## 14985 Resort Hotel 166
## 14986 Resort Hotel 166
## 14987 Resort Hotel 166
## 14988 Resort Hotel 166
## 14989 Resort Hotel 166
## 14990 Resort Hotel 166
## 14991 Resort Hotel 166
## 14992 Resort Hotel 166
## 14993 Resort Hotel 166
## 14994 Resort Hotel 166
## 14995 Resort Hotel 166
## 14996 Resort Hotel 166
## 14997 Resort Hotel 244
## 14998 Resort Hotel 244
## 14999 Resort Hotel 244
## 15000 Resort Hotel 244
## 15001 Resort Hotel 244
## 15002 Resort Hotel 244
## 15003 Resort Hotel 244
## 15004 Resort Hotel 244
## 15005 Resort Hotel 244
## 15006 Resort Hotel 244
## 15007 Resort Hotel 244
## 15008 Resort Hotel 244
## 15009 Resort Hotel 244
## 15010 Resort Hotel 244
## 15011 Resort Hotel 244
## 15012 Resort Hotel 244
## 15013 Resort Hotel 244
## 15014 Resort Hotel 244
## 15015 Resort Hotel 244
## 15016 Resort Hotel 244
## 15017 Resort Hotel 203
## 15018 Resort Hotel 212
## 15019 Resort Hotel 2
## 15020 Resort Hotel 6
## 15021 Resort Hotel 6
## 15022 Resort Hotel 11
## 15023 Resort Hotel 14
## 15024 Resort Hotel 7
## 15025 Resort Hotel 14
## 15026 Resort Hotel 7
## 15027 Resort Hotel 299
## 15028 Resort Hotel 191
## 15029 Resort Hotel 96
## 15030 Resort Hotel 61
## 15031 Resort Hotel 89
## 15032 Resort Hotel 49
## 15033 Resort Hotel 0
## 15034 Resort Hotel 3
## 15035 Resort Hotel 3
## 15036 Resort Hotel 0
## 15037 Resort Hotel 3
## 15038 Resort Hotel 179
## 15039 Resort Hotel 200
## 15040 Resort Hotel 200
## 15041 Resort Hotel 81
## 15042 Resort Hotel 182
## 15043 Resort Hotel 155
## 15044 Resort Hotel 221
## 15045 Resort Hotel 250
## 15046 Resort Hotel 174
## 15047 Resort Hotel 0
## 15048 Resort Hotel 1
## 15049 Resort Hotel 1
## 15050 Resort Hotel 6
## 15051 Resort Hotel 6
## 15052 Resort Hotel 7
## 15053 Resort Hotel 1
## 15054 Resort Hotel 0
## 15055 Resort Hotel 2
## 15056 Resort Hotel 2
## 15057 Resort Hotel 1
## 15058 Resort Hotel 5
## 15059 Resort Hotel 0
## 15060 Resort Hotel 1
## 15061 Resort Hotel 2
## 15062 Resort Hotel 0
## 15063 Resort Hotel 0
## 15064 Resort Hotel 114
## 15065 Resort Hotel 1
## 15066 Resort Hotel 1
## 15067 Resort Hotel 0
## 15068 Resort Hotel 0
## 15069 Resort Hotel 0
## 15070 Resort Hotel 14
## 15071 Resort Hotel 0
## 15072 Resort Hotel 2
## 15073 Resort Hotel 0
## 15074 Resort Hotel 4
## 15075 Resort Hotel 198
## 15076 Resort Hotel 198
## 15077 Resort Hotel 0
## 15078 Resort Hotel 135
## 15079 Resort Hotel 252
## 15080 Resort Hotel 183
## 15081 Resort Hotel 277
## 15082 Resort Hotel 277
## 15083 Resort Hotel 152
## 15084 Resort Hotel 1
## 15085 Resort Hotel 144
## 15086 Resort Hotel 5
## 15087 Resort Hotel 1
## 15088 Resort Hotel 0
## 15089 Resort Hotel 0
## 15090 Resort Hotel 1
## 15091 Resort Hotel 167
## 15092 Resort Hotel 0
## 15093 Resort Hotel 155
## 15094 Resort Hotel 214
## 15095 Resort Hotel 214
## 15096 Resort Hotel 214
## 15097 Resort Hotel 214
## 15098 Resort Hotel 214
## 15099 Resort Hotel 214
## 15100 Resort Hotel 214
## 15101 Resort Hotel 214
## 15102 Resort Hotel 214
## 15103 Resort Hotel 214
## 15104 Resort Hotel 214
## 15105 Resort Hotel 214
## 15106 Resort Hotel 214
## 15107 Resort Hotel 214
## 15108 Resort Hotel 214
## 15109 Resort Hotel 214
## 15110 Resort Hotel 214
## 15111 Resort Hotel 214
## 15112 Resort Hotel 214
## 15113 Resort Hotel 214
## 15114 Resort Hotel 214
## 15115 Resort Hotel 214
## 15116 Resort Hotel 214
## 15117 Resort Hotel 214
## 15118 Resort Hotel 214
## 15119 Resort Hotel 39
## 15120 Resort Hotel 1
## 15121 Resort Hotel 29
## 15122 Resort Hotel 11
## 15123 Resort Hotel 23
## 15124 Resort Hotel 5
## 15125 Resort Hotel 127
## 15126 Resort Hotel 128
## 15127 Resort Hotel 157
## 15128 Resort Hotel 3
## 15129 Resort Hotel 46
## 15130 Resort Hotel 29
## 15131 Resort Hotel 108
## 15132 Resort Hotel 142
## 15133 Resort Hotel 114
## 15134 Resort Hotel 242
## 15135 Resort Hotel 235
## 15136 Resort Hotel 235
## 15137 Resort Hotel 235
## 15138 Resort Hotel 32
## 15139 Resort Hotel 289
## 15140 Resort Hotel 217
## 15141 Resort Hotel 178
## 15142 Resort Hotel 6
## 15143 Resort Hotel 4
## 15144 Resort Hotel 0
## 15145 Resort Hotel 0
## 15146 Resort Hotel 2
## 15147 Resort Hotel 8
## 15148 Resort Hotel 11
## 15149 Resort Hotel 158
## 15150 Resort Hotel 235
## 15151 Resort Hotel 244
## 15152 Resort Hotel 244
## 15153 Resort Hotel 244
## 15154 Resort Hotel 244
## 15155 Resort Hotel 244
## 15156 Resort Hotel 244
## 15157 Resort Hotel 244
## 15158 Resort Hotel 244
## 15159 Resort Hotel 244
## 15160 Resort Hotel 244
## 15161 Resort Hotel 244
## 15162 Resort Hotel 244
## 15163 Resort Hotel 244
## 15164 Resort Hotel 244
## 15165 Resort Hotel 244
## 15166 Resort Hotel 244
## 15167 Resort Hotel 244
## 15168 Resort Hotel 244
## 15169 Resort Hotel 244
## 15170 Resort Hotel 244
## 15171 Resort Hotel 244
## 15172 Resort Hotel 244
## 15173 Resort Hotel 244
## 15174 Resort Hotel 244
## 15175 Resort Hotel 246
## 15176 Resort Hotel 246
## 15177 Resort Hotel 246
## 15178 Resort Hotel 246
## 15179 Resort Hotel 246
## 15180 Resort Hotel 246
## 15181 Resort Hotel 246
## 15182 Resort Hotel 246
## 15183 Resort Hotel 246
## 15184 Resort Hotel 253
## 15185 Resort Hotel 253
## 15186 Resort Hotel 253
## 15187 Resort Hotel 253
## 15188 Resort Hotel 253
## 15189 Resort Hotel 253
## 15190 Resort Hotel 253
## 15191 Resort Hotel 253
## 15192 Resort Hotel 253
## 15193 Resort Hotel 253
## 15194 Resort Hotel 253
## 15195 Resort Hotel 253
## 15196 Resort Hotel 253
## 15197 Resort Hotel 260
## 15198 Resort Hotel 260
## 15199 Resort Hotel 260
## 15200 Resort Hotel 260
## 15201 Resort Hotel 260
## 15202 Resort Hotel 260
## 15203 Resort Hotel 260
## 15204 Resort Hotel 267
## 15205 Resort Hotel 267
## 15206 Resort Hotel 267
## 15207 Resort Hotel 267
## 15208 Resort Hotel 267
## 15209 Resort Hotel 267
## 15210 Resort Hotel 267
## 15211 Resort Hotel 267
## 15212 Resort Hotel 267
## 15213 Resort Hotel 267
## 15214 Resort Hotel 267
## 15215 Resort Hotel 267
## 15216 Resort Hotel 267
## 15217 Resort Hotel 274
## 15218 Resort Hotel 274
## 15219 Resort Hotel 274
## 15220 Resort Hotel 274
## 15221 Resort Hotel 274
## 15222 Resort Hotel 274
## 15223 Resort Hotel 274
## 15224 Resort Hotel 241
## 15225 Resort Hotel 196
## 15226 Resort Hotel 160
## 15227 Resort Hotel 186
## 15228 Resort Hotel 99
## 15229 Resort Hotel 178
## 15230 Resort Hotel 67
## 15231 Resort Hotel 152
## 15232 Resort Hotel 48
## 15233 Resort Hotel 321
## 15234 Resort Hotel 0
## 15235 Resort Hotel 0
## 15236 Resort Hotel 0
## 15237 Resort Hotel 0
## 15238 Resort Hotel 0
## 15239 Resort Hotel 0
## 15240 Resort Hotel 1
## 15241 Resort Hotel 0
## 15242 Resort Hotel 0
## 15243 Resort Hotel 0
## 15244 Resort Hotel 1
## 15245 Resort Hotel 207
## 15246 Resort Hotel 207
## 15247 Resort Hotel 207
## 15248 Resort Hotel 207
## 15249 Resort Hotel 207
## 15250 Resort Hotel 207
## 15251 Resort Hotel 207
## 15252 Resort Hotel 207
## 15253 Resort Hotel 207
## 15254 Resort Hotel 0
## 15255 Resort Hotel 4
## 15256 Resort Hotel 134
## 15257 Resort Hotel 6
## 15258 Resort Hotel 1
## 15259 Resort Hotel 0
## 15260 Resort Hotel 1
## 15261 Resort Hotel 0
## 15262 Resort Hotel 8
## 15263 Resort Hotel 20
## 15264 Resort Hotel 24
## 15265 Resort Hotel 22
## 15266 Resort Hotel 1
## 15267 Resort Hotel 26
## 15268 Resort Hotel 2
## 15269 Resort Hotel 183
## 15270 Resort Hotel 144
## 15271 Resort Hotel 8
## 15272 Resort Hotel 4
## 15273 Resort Hotel 4
## 15274 Resort Hotel 6
## 15275 Resort Hotel 4
## 15276 Resort Hotel 6
## 15277 Resort Hotel 7
## 15278 Resort Hotel 19
## 15279 Resort Hotel 8
## 15280 Resort Hotel 29
## 15281 Resort Hotel 7
## 15282 Resort Hotel 13
## 15283 Resort Hotel 29
## 15284 Resort Hotel 8
## 15285 Resort Hotel 22
## 15286 Resort Hotel 30
## 15287 Resort Hotel 150
## 15288 Resort Hotel 2
## 15289 Resort Hotel 0
## 15290 Resort Hotel 0
## 15291 Resort Hotel 0
## 15292 Resort Hotel 0
## 15293 Resort Hotel 1
## 15294 Resort Hotel 325
## 15295 Resort Hotel 131
## 15296 Resort Hotel 112
## 15297 Resort Hotel 31
## 15298 Resort Hotel 183
## 15299 Resort Hotel 181
## 15300 Resort Hotel 126
## 15301 Resort Hotel 116
## 15302 Resort Hotel 7
## 15303 Resort Hotel 135
## 15304 Resort Hotel 0
## 15305 Resort Hotel 110
## 15306 Resort Hotel 197
## 15307 Resort Hotel 134
## 15308 Resort Hotel 279
## 15309 Resort Hotel 279
## 15310 Resort Hotel 279
## 15311 Resort Hotel 279
## 15312 Resort Hotel 279
## 15313 Resort Hotel 279
## 15314 Resort Hotel 279
## 15315 Resort Hotel 279
## 15316 Resort Hotel 279
## 15317 Resort Hotel 279
## 15318 Resort Hotel 279
## 15319 Resort Hotel 279
## 15320 Resort Hotel 279
## 15321 Resort Hotel 279
## 15322 Resort Hotel 279
## 15323 Resort Hotel 279
## 15324 Resort Hotel 279
## 15325 Resort Hotel 279
## 15326 Resort Hotel 279
## 15327 Resort Hotel 279
## 15328 Resort Hotel 279
## 15329 Resort Hotel 279
## 15330 Resort Hotel 279
## 15331 Resort Hotel 279
## 15332 Resort Hotel 279
## 15333 Resort Hotel 145
## 15334 Resort Hotel 127
## 15335 Resort Hotel 149
## 15336 Resort Hotel 149
## 15337 Resort Hotel 139
## 15338 Resort Hotel 239
## 15339 Resort Hotel 239
## 15340 Resort Hotel 239
## 15341 Resort Hotel 246
## 15342 Resort Hotel 246
## 15343 Resort Hotel 246
## 15344 Resort Hotel 260
## 15345 Resort Hotel 260
## 15346 Resort Hotel 260
## 15347 Resort Hotel 260
## 15348 Resort Hotel 260
## 15349 Resort Hotel 260
## 15350 Resort Hotel 145
## 15351 Resort Hotel 152
## 15352 Resort Hotel 152
## 15353 Resort Hotel 183
## 15354 Resort Hotel 226
## 15355 Resort Hotel 128
## 15356 Resort Hotel 147
## 15357 Resort Hotel 121
## 15358 Resort Hotel 121
## 15359 Resort Hotel 20
## 15360 Resort Hotel 2
## 15361 Resort Hotel 1
## 15362 Resort Hotel 2
## 15363 Resort Hotel 2
## 15364 Resort Hotel 1
## 15365 Resort Hotel 0
## 15366 Resort Hotel 3
## 15367 Resort Hotel 183
## 15368 Resort Hotel 230
## 15369 Resort Hotel 186
## 15370 Resort Hotel 103
## 15371 Resort Hotel 15
## 15372 Resort Hotel 186
## 15373 Resort Hotel 186
## 15374 Resort Hotel 185
## 15375 Resort Hotel 128
## 15376 Resort Hotel 158
## 15377 Resort Hotel 183
## 15378 Resort Hotel 149
## 15379 Resort Hotel 151
## 15380 Resort Hotel 127
## 15381 Resort Hotel 151
## 15382 Resort Hotel 151
## 15383 Resort Hotel 137
## 15384 Resort Hotel 164
## 15385 Resort Hotel 58
## 15386 Resort Hotel 143
## 15387 Resort Hotel 123
## 15388 Resort Hotel 184
## 15389 Resort Hotel 130
## 15390 Resort Hotel 130
## 15391 Resort Hotel 130
## 15392 Resort Hotel 134
## 15393 Resort Hotel 123
## 15394 Resort Hotel 129
## 15395 Resort Hotel 143
## 15396 Resort Hotel 143
## 15397 Resort Hotel 135
## 15398 Resort Hotel 159
## 15399 Resort Hotel 84
## 15400 Resort Hotel 94
## 15401 Resort Hotel 109
## 15402 Resort Hotel 1
## 15403 Resort Hotel 6
## 15404 Resort Hotel 8
## 15405 Resort Hotel 30
## 15406 Resort Hotel 158
## 15407 Resort Hotel 185
## 15408 Resort Hotel 142
## 15409 Resort Hotel 143
## 15410 Resort Hotel 143
## 15411 Resort Hotel 157
## 15412 Resort Hotel 118
## 15413 Resort Hotel 165
## 15414 Resort Hotel 2
## 15415 Resort Hotel 159
## 15416 Resort Hotel 65
## 15417 Resort Hotel 187
## 15418 Resort Hotel 162
## 15419 Resort Hotel 162
## 15420 Resort Hotel 189
## 15421 Resort Hotel 189
## 15422 Resort Hotel 155
## 15423 Resort Hotel 152
## 15424 Resort Hotel 59
## 15425 Resort Hotel 59
## 15426 Resort Hotel 127
## 15427 Resort Hotel 188
## 15428 Resort Hotel 115
## 15429 Resort Hotel 0
## 15430 Resort Hotel 2
## 15431 Resort Hotel 129
## 15432 Resort Hotel 151
## 15433 Resort Hotel 134
## 15434 Resort Hotel 134
## 15435 Resort Hotel 158
## 15436 Resort Hotel 139
## 15437 Resort Hotel 129
## 15438 Resort Hotel 151
## 15439 Resort Hotel 237
## 15440 Resort Hotel 237
## 15441 Resort Hotel 185
## 15442 Resort Hotel 108
## 15443 Resort Hotel 62
## 15444 Resort Hotel 185
## 15445 Resort Hotel 237
## 15446 Resort Hotel 5
## 15447 Resort Hotel 0
## 15448 Resort Hotel 184
## 15449 Resort Hotel 0
## 15450 Resort Hotel 0
## 15451 Resort Hotel 16
## 15452 Resort Hotel 129
## 15453 Resort Hotel 0
## 15454 Resort Hotel 0
## 15455 Resort Hotel 148
## 15456 Resort Hotel 94
## 15457 Resort Hotel 188
## 15458 Resort Hotel 137
## 15459 Resort Hotel 29
## 15460 Resort Hotel 184
## 15461 Resort Hotel 93
## 15462 Resort Hotel 162
## 15463 Resort Hotel 98
## 15464 Resort Hotel 172
## 15465 Resort Hotel 2
## 15466 Resort Hotel 0
## 15467 Resort Hotel 6
## 15468 Resort Hotel 10
## 15469 Resort Hotel 3
## 15470 Resort Hotel 17
## 15471 Resort Hotel 125
## 15472 Resort Hotel 41
## 15473 Resort Hotel 41
## 15474 Resort Hotel 25
## 15475 Resort Hotel 131
## 15476 Resort Hotel 0
## 15477 Resort Hotel 17
## 15478 Resort Hotel 0
## 15479 Resort Hotel 0
## 15480 Resort Hotel 130
## 15481 Resort Hotel 0
## 15482 Resort Hotel 0
## 15483 Resort Hotel 189
## 15484 Resort Hotel 6
## 15485 Resort Hotel 133
## 15486 Resort Hotel 29
## 15487 Resort Hotel 29
## 15488 Resort Hotel 0
## 15489 Resort Hotel 133
## 15490 Resort Hotel 59
## 15491 Resort Hotel 35
## 15492 Resort Hotel 35
## 15493 Resort Hotel 241
## 15494 Resort Hotel 86
## 15495 Resort Hotel 194
## 15496 Resort Hotel 161
## 15497 Resort Hotel 90
## 15498 Resort Hotel 50
## 15499 Resort Hotel 104
## 15500 Resort Hotel 90
## 15501 Resort Hotel 48
## 15502 Resort Hotel 22
## 15503 Resort Hotel 39
## 15504 Resort Hotel 157
## 15505 Resort Hotel 140
## 15506 Resort Hotel 13
## 15507 Resort Hotel 50
## 15508 Resort Hotel 0
## 15509 Resort Hotel 97
## 15510 Resort Hotel 201
## 15511 Resort Hotel 36
## 15512 Resort Hotel 93
## 15513 Resort Hotel 45
## 15514 Resort Hotel 126
## 15515 Resort Hotel 44
## 15516 Resort Hotel 40
## 15517 Resort Hotel 28
## 15518 Resort Hotel 42
## 15519 Resort Hotel 64
## 15520 Resort Hotel 1
## 15521 Resort Hotel 190
## 15522 Resort Hotel 3
## 15523 Resort Hotel 151
## 15524 Resort Hotel 37
## 15525 Resort Hotel 37
## 15526 Resort Hotel 178
## 15527 Resort Hotel 37
## 15528 Resort Hotel 37
## 15529 Resort Hotel 35
## 15530 Resort Hotel 68
## 15531 Resort Hotel 0
## 15532 Resort Hotel 65
## 15533 Resort Hotel 44
## 15534 Resort Hotel 27
## 15535 Resort Hotel 0
## 15536 Resort Hotel 106
## 15537 Resort Hotel 2
## 15538 Resort Hotel 3
## 15539 Resort Hotel 0
## 15540 Resort Hotel 43
## 15541 Resort Hotel 1
## 15542 Resort Hotel 56
## 15543 Resort Hotel 55
## 15544 Resort Hotel 70
## 15545 Resort Hotel 71
## 15546 Resort Hotel 96
## 15547 Resort Hotel 96
## 15548 Resort Hotel 0
## 15549 Resort Hotel 44
## 15550 Resort Hotel 51
## 15551 Resort Hotel 25
## 15552 Resort Hotel 51
## 15553 Resort Hotel 94
## 15554 Resort Hotel 10
## 15555 Resort Hotel 63
## 15556 Resort Hotel 54
## 15557 Resort Hotel 153
## 15558 Resort Hotel 22
## 15559 Resort Hotel 39
## 15560 Resort Hotel 10
## 15561 Resort Hotel 57
## 15562 Resort Hotel 57
## 15563 Resort Hotel 8
## 15564 Resort Hotel 38
## 15565 Resort Hotel 67
## 15566 Resort Hotel 51
## 15567 Resort Hotel 33
## 15568 Resort Hotel 98
## 15569 Resort Hotel 98
## 15570 Resort Hotel 72
## 15571 Resort Hotel 33
## 15572 Resort Hotel 84
## 15573 Resort Hotel 11
## 15574 Resort Hotel 11
## 15575 Resort Hotel 11
## 15576 Resort Hotel 9
## 15577 Resort Hotel 1
## 15578 Resort Hotel 82
## 15579 Resort Hotel 262
## 15580 Resort Hotel 46
## 15581 Resort Hotel 55
## 15582 Resort Hotel 49
## 15583 Resort Hotel 52
## 15584 Resort Hotel 171
## 15585 Resort Hotel 62
## 15586 Resort Hotel 108
## 15587 Resort Hotel 209
## 15588 Resort Hotel 52
## 15589 Resort Hotel 33
## 15590 Resort Hotel 67
## 15591 Resort Hotel 30
## 15592 Resort Hotel 42
## 15593 Resort Hotel 42
## 15594 Resort Hotel 42
## 15595 Resort Hotel 14
## 15596 Resort Hotel 50
## 15597 Resort Hotel 7
## 15598 Resort Hotel 26
## 15599 Resort Hotel 59
## 15600 Resort Hotel 130
## 15601 Resort Hotel 66
## 15602 Resort Hotel 256
## 15603 Resort Hotel 160
## 15604 Resort Hotel 160
## 15605 Resort Hotel 136
## 15606 Resort Hotel 136
## 15607 Resort Hotel 26
## 15608 Resort Hotel 43
## 15609 Resort Hotel 42
## 15610 Resort Hotel 38
## 15611 Resort Hotel 42
## 15612 Resort Hotel 50
## 15613 Resort Hotel 46
## 15614 Resort Hotel 153
## 15615 Resort Hotel 153
## 15616 Resort Hotel 50
## 15617 Resort Hotel 50
## 15618 Resort Hotel 48
## 15619 Resort Hotel 48
## 15620 Resort Hotel 171
## 15621 Resort Hotel 41
## 15622 Resort Hotel 243
## 15623 Resort Hotel 243
## 15624 Resort Hotel 243
## 15625 Resort Hotel 243
## 15626 Resort Hotel 243
## 15627 Resort Hotel 243
## 15628 Resort Hotel 243
## 15629 Resort Hotel 44
## 15630 Resort Hotel 74
## 15631 Resort Hotel 73
## 15632 Resort Hotel 35
## 15633 Resort Hotel 153
## 15634 Resort Hotel 142
## 15635 Resort Hotel 142
## 15636 Resort Hotel 68
## 15637 Resort Hotel 24
## 15638 Resort Hotel 296
## 15639 Resort Hotel 296
## 15640 Resort Hotel 71
## 15641 Resort Hotel 13
## 15642 Resort Hotel 40
## 15643 Resort Hotel 9
## 15644 Resort Hotel 239
## 15645 Resort Hotel 93
## 15646 Resort Hotel 13
## 15647 Resort Hotel 13
## 15648 Resort Hotel 26
## 15649 Resort Hotel 26
## 15650 Resort Hotel 26
## 15651 Resort Hotel 72
## 15652 Resort Hotel 61
## 15653 Resort Hotel 56
## 15654 Resort Hotel 35
## 15655 Resort Hotel 468
## 15656 Resort Hotel 468
## 15657 Resort Hotel 468
## 15658 Resort Hotel 468
## 15659 Resort Hotel 468
## 15660 Resort Hotel 468
## 15661 Resort Hotel 468
## 15662 Resort Hotel 468
## 15663 Resort Hotel 468
## 15664 Resort Hotel 468
## 15665 Resort Hotel 468
## 15666 Resort Hotel 468
## 15667 Resort Hotel 468
## 15668 Resort Hotel 468
## 15669 Resort Hotel 468
## 15670 Resort Hotel 468
## 15671 Resort Hotel 468
## 15672 Resort Hotel 468
## 15673 Resort Hotel 468
## 15674 Resort Hotel 468
## 15675 Resort Hotel 143
## 15676 Resort Hotel 50
## 15677 Resort Hotel 47
## 15678 Resort Hotel 20
## 15679 Resort Hotel 30
## 15680 Resort Hotel 53
## 15681 Resort Hotel 53
## 15682 Resort Hotel 72
## 15683 Resort Hotel 72
## 15684 Resort Hotel 78
## 15685 Resort Hotel 36
## 15686 Resort Hotel 78
## 15687 Resort Hotel 152
## 15688 Resort Hotel 102
## 15689 Resort Hotel 64
## 15690 Resort Hotel 24
## 15691 Resort Hotel 48
## 15692 Resort Hotel 72
## 15693 Resort Hotel 27
## 15694 Resort Hotel 254
## 15695 Resort Hotel 28
## 15696 Resort Hotel 24
## 15697 Resort Hotel 0
## 15698 Resort Hotel 152
## 15699 Resort Hotel 53
## 15700 Resort Hotel 48
## 15701 Resort Hotel 245
## 15702 Resort Hotel 245
## 15703 Resort Hotel 245
## 15704 Resort Hotel 245
## 15705 Resort Hotel 245
## 15706 Resort Hotel 245
## 15707 Resort Hotel 245
## 15708 Resort Hotel 245
## 15709 Resort Hotel 245
## 15710 Resort Hotel 245
## 15711 Resort Hotel 245
## 15712 Resort Hotel 245
## 15713 Resort Hotel 245
## 15714 Resort Hotel 245
## 15715 Resort Hotel 245
## 15716 Resort Hotel 245
## 15717 Resort Hotel 245
## 15718 Resort Hotel 245
## 15719 Resort Hotel 245
## 15720 Resort Hotel 245
## 15721 Resort Hotel 245
## 15722 Resort Hotel 245
## 15723 Resort Hotel 245
## 15724 Resort Hotel 245
## 15725 Resort Hotel 245
## 15726 Resort Hotel 245
## 15727 Resort Hotel 245
## 15728 Resort Hotel 32
## 15729 Resort Hotel 45
## 15730 Resort Hotel 49
## 15731 Resort Hotel 67
## 15732 Resort Hotel 67
## 15733 Resort Hotel 53
## 15734 Resort Hotel 11
## 15735 Resort Hotel 204
## 15736 Resort Hotel 0
## 15737 Resort Hotel 3
## 15738 Resort Hotel 34
## 15739 Resort Hotel 55
## 15740 Resort Hotel 50
## 15741 Resort Hotel 42
## 15742 Resort Hotel 48
## 15743 Resort Hotel 33
## 15744 Resort Hotel 23
## 15745 Resort Hotel 53
## 15746 Resort Hotel 47
## 15747 Resort Hotel 156
## 15748 Resort Hotel 45
## 15749 Resort Hotel 29
## 15750 Resort Hotel 39
## 15751 Resort Hotel 3
## 15752 Resort Hotel 48
## 15753 Resort Hotel 53
## 15754 Resort Hotel 244
## 15755 Resort Hotel 244
## 15756 Resort Hotel 244
## 15757 Resort Hotel 244
## 15758 Resort Hotel 244
## 15759 Resort Hotel 244
## 15760 Resort Hotel 244
## 15761 Resort Hotel 244
## 15762 Resort Hotel 244
## 15763 Resort Hotel 244
## 15764 Resort Hotel 244
## 15765 Resort Hotel 244
## 15766 Resort Hotel 244
## 15767 Resort Hotel 244
## 15768 Resort Hotel 172
## 15769 Resort Hotel 25
## 15770 Resort Hotel 38
## 15771 Resort Hotel 50
## 15772 Resort Hotel 39
## 15773 Resort Hotel 31
## 15774 Resort Hotel 39
## 15775 Resort Hotel 31
## 15776 Resort Hotel 56
## 15777 Resort Hotel 222
## 15778 Resort Hotel 15
## 15779 Resort Hotel 16
## 15780 Resort Hotel 56
## 15781 Resort Hotel 49
## 15782 Resort Hotel 167
## 15783 Resort Hotel 15
## 15784 Resort Hotel 15
## 15785 Resort Hotel 14
## 15786 Resort Hotel 32
## 15787 Resort Hotel 39
## 15788 Resort Hotel 46
## 15789 Resort Hotel 32
## 15790 Resort Hotel 32
## 15791 Resort Hotel 51
## 15792 Resort Hotel 33
## 15793 Resort Hotel 33
## 15794 Resort Hotel 31
## 15795 Resort Hotel 0
## 15796 Resort Hotel 16
## 15797 Resort Hotel 25
## 15798 Resort Hotel 1
## 15799 Resort Hotel 157
## 15800 Resort Hotel 38
## 15801 Resort Hotel 82
## 15802 Resort Hotel 33
## 15803 Resort Hotel 43
## 15804 Resort Hotel 44
## 15805 Resort Hotel 21
## 15806 Resort Hotel 39
## 15807 Resort Hotel 53
## 15808 Resort Hotel 122
## 15809 Resort Hotel 1
## 15810 Resort Hotel 31
## 15811 Resort Hotel 3
## 15812 Resort Hotel 11
## 15813 Resort Hotel 146
## 15814 Resort Hotel 44
## 15815 Resort Hotel 77
## 15816 Resort Hotel 261
## 15817 Resort Hotel 118
## 15818 Resort Hotel 64
## 15819 Resort Hotel 49
## 15820 Resort Hotel 22
## 15821 Resort Hotel 11
## 15822 Resort Hotel 48
## 15823 Resort Hotel 58
## 15824 Resort Hotel 255
## 15825 Resort Hotel 209
## 15826 Resort Hotel 210
## 15827 Resort Hotel 25
## 15828 Resort Hotel 24
## 15829 Resort Hotel 24
## 15830 Resort Hotel 128
## 15831 Resort Hotel 156
## 15832 Resort Hotel 119
## 15833 Resort Hotel 49
## 15834 Resort Hotel 67
## 15835 Resort Hotel 67
## 15836 Resort Hotel 4
## 15837 Resort Hotel 1
## 15838 Resort Hotel 143
## 15839 Resort Hotel 143
## 15840 Resort Hotel 23
## 15841 Resort Hotel 2
## 15842 Resort Hotel 8
## 15843 Resort Hotel 0
## 15844 Resort Hotel 35
## 15845 Resort Hotel 0
## 15846 Resort Hotel 177
## 15847 Resort Hotel 218
## 15848 Resort Hotel 88
## 15849 Resort Hotel 123
## 15850 Resort Hotel 157
## 15851 Resort Hotel 123
## 15852 Resort Hotel 0
## 15853 Resort Hotel 158
## 15854 Resort Hotel 79
## 15855 Resort Hotel 77
## 15856 Resort Hotel 0
## 15857 Resort Hotel 79
## 15858 Resort Hotel 79
## 15859 Resort Hotel 0
## 15860 Resort Hotel 91
## 15861 Resort Hotel 82
## 15862 Resort Hotel 48
## 15863 Resort Hotel 264
## 15864 Resort Hotel 69
## 15865 Resort Hotel 182
## 15866 Resort Hotel 146
## 15867 Resort Hotel 107
## 15868 Resort Hotel 73
## 15869 Resort Hotel 73
## 15870 Resort Hotel 155
## 15871 Resort Hotel 155
## 15872 Resort Hotel 2
## 15873 Resort Hotel 1
## 15874 Resort Hotel 5
## 15875 Resort Hotel 12
## 15876 Resort Hotel 6
## 15877 Resort Hotel 6
## 15878 Resort Hotel 110
## 15879 Resort Hotel 2
## 15880 Resort Hotel 54
## 15881 Resort Hotel 5
## 15882 Resort Hotel 210
## 15883 Resort Hotel 202
## 15884 Resort Hotel 1
## 15885 Resort Hotel 0
## 15886 Resort Hotel 154
## 15887 Resort Hotel 311
## 15888 Resort Hotel 6
## 15889 Resort Hotel 155
## 15890 Resort Hotel 211
## 15891 Resort Hotel 5
## 15892 Resort Hotel 0
## 15893 Resort Hotel 55
## 15894 Resort Hotel 0
## 15895 Resort Hotel 328
## 15896 Resort Hotel 210
## 15897 Resort Hotel 219
## 15898 Resort Hotel 211
## 15899 Resort Hotel 88
## 15900 Resort Hotel 160
## 15901 Resort Hotel 82
## 15902 Resort Hotel 67
## 15903 Resort Hotel 67
## 15904 Resort Hotel 93
## 15905 Resort Hotel 82
## 15906 Resort Hotel 103
## 15907 Resort Hotel 142
## 15908 Resort Hotel 5
## 15909 Resort Hotel 66
## 15910 Resort Hotel 93
## 15911 Resort Hotel 85
## 15912 Resort Hotel 73
## 15913 Resort Hotel 3
## 15914 Resort Hotel 177
## 15915 Resort Hotel 160
## 15916 Resort Hotel 160
## 15917 Resort Hotel 160
## 15918 Resort Hotel 160
## 15919 Resort Hotel 258
## 15920 Resort Hotel 0
## 15921 Resort Hotel 195
## 15922 Resort Hotel 159
## 15923 Resort Hotel 112
## 15924 Resort Hotel 1
## 15925 Resort Hotel 0
## 15926 Resort Hotel 46
## 15927 Resort Hotel 107
## 15928 Resort Hotel 166
## 15929 Resort Hotel 157
## 15930 Resort Hotel 10
## 15931 Resort Hotel 82
## 15932 Resort Hotel 70
## 15933 Resort Hotel 51
## 15934 Resort Hotel 124
## 15935 Resort Hotel 86
## 15936 Resort Hotel 32
## 15937 Resort Hotel 156
## 15938 Resort Hotel 12
## 15939 Resort Hotel 75
## 15940 Resort Hotel 143
## 15941 Resort Hotel 4
## 15942 Resort Hotel 167
## 15943 Resort Hotel 194
## 15944 Resort Hotel 67
## 15945 Resort Hotel 55
## 15946 Resort Hotel 41
## 15947 Resort Hotel 157
## 15948 Resort Hotel 1
## 15949 Resort Hotel 78
## 15950 Resort Hotel 16
## 15951 Resort Hotel 6
## 15952 Resort Hotel 71
## 15953 Resort Hotel 0
## 15954 Resort Hotel 127
## 15955 Resort Hotel 129
## 15956 Resort Hotel 33
## 15957 Resort Hotel 2
## 15958 Resort Hotel 82
## 15959 Resort Hotel 177
## 15960 Resort Hotel 82
## 15961 Resort Hotel 53
## 15962 Resort Hotel 53
## 15963 Resort Hotel 53
## 15964 Resort Hotel 51
## 15965 Resort Hotel 0
## 15966 Resort Hotel 129
## 15967 Resort Hotel 195
## 15968 Resort Hotel 92
## 15969 Resort Hotel 67
## 15970 Resort Hotel 55
## 15971 Resort Hotel 61
## 15972 Resort Hotel 0
## 15973 Resort Hotel 310
## 15974 Resort Hotel 129
## 15975 Resort Hotel 460
## 15976 Resort Hotel 17
## 15977 Resort Hotel 460
## 15978 Resort Hotel 23
## 15979 Resort Hotel 62
## 15980 Resort Hotel 213
## 15981 Resort Hotel 202
## 15982 Resort Hotel 82
## 15983 Resort Hotel 105
## 15984 Resort Hotel 96
## 15985 Resort Hotel 131
## 15986 Resort Hotel 69
## 15987 Resort Hotel 68
## 15988 Resort Hotel 74
## 15989 Resort Hotel 130
## 15990 Resort Hotel 74
## 15991 Resort Hotel 74
## 15992 Resort Hotel 4
## 15993 Resort Hotel 0
## 15994 Resort Hotel 81
## 15995 Resort Hotel 179
## 15996 Resort Hotel 4
## 15997 Resort Hotel 103
## 15998 Resort Hotel 146
## 15999 Resort Hotel 146
## 16000 Resort Hotel 17
## 16001 Resort Hotel 146
## 16002 Resort Hotel 82
## 16003 Resort Hotel 108
## 16004 Resort Hotel 146
## 16005 Resort Hotel 126
## 16006 Resort Hotel 112
## 16007 Resort Hotel 181
## 16008 Resort Hotel 217
## 16009 Resort Hotel 227
## 16010 Resort Hotel 111
## 16011 Resort Hotel 129
## 16012 Resort Hotel 83
## 16013 Resort Hotel 135
## 16014 Resort Hotel 81
## 16015 Resort Hotel 107
## 16016 Resort Hotel 5
## 16017 Resort Hotel 155
## 16018 Resort Hotel 120
## 16019 Resort Hotel 120
## 16020 Resort Hotel 0
## 16021 Resort Hotel 61
## 16022 Resort Hotel 48
## 16023 Resort Hotel 67
## 16024 Resort Hotel 67
## 16025 Resort Hotel 211
## 16026 Resort Hotel 153
## 16027 Resort Hotel 153
## 16028 Resort Hotel 25
## 16029 Resort Hotel 153
## 16030 Resort Hotel 40
## 16031 Resort Hotel 40
## 16032 Resort Hotel 6
## 16033 Resort Hotel 94
## 16034 Resort Hotel 158
## 16035 Resort Hotel 151
## 16036 Resort Hotel 148
## 16037 Resort Hotel 0
## 16038 Resort Hotel 39
## 16039 Resort Hotel 4
## 16040 Resort Hotel 0
## 16041 Resort Hotel 274
## 16042 Resort Hotel 274
## 16043 Resort Hotel 274
## 16044 Resort Hotel 274
## 16045 Resort Hotel 274
## 16046 Resort Hotel 274
## 16047 Resort Hotel 41
## 16048 Resort Hotel 222
## 16049 Resort Hotel 222
## 16050 Resort Hotel 222
## 16051 Resort Hotel 174
## 16052 Resort Hotel 164
## 16053 Resort Hotel 164
## 16054 Resort Hotel 33
## 16055 Resort Hotel 107
## 16056 Resort Hotel 107
## 16057 Resort Hotel 70
## 16058 Resort Hotel 212
## 16059 Resort Hotel 212
## 16060 Resort Hotel 41
## 16061 Resort Hotel 34
## 16062 Resort Hotel 109
## 16063 Resort Hotel 33
## 16064 Resort Hotel 35
## 16065 Resort Hotel 114
## 16066 Resort Hotel 0
## 16067 Resort Hotel 0
## 16068 Resort Hotel 56
## 16069 Resort Hotel 190
## 16070 Resort Hotel 190
## 16071 Resort Hotel 190
## 16072 Resort Hotel 85
## 16073 Resort Hotel 85
## 16074 Resort Hotel 153
## 16075 Resort Hotel 65
## 16076 Resort Hotel 5
## 16077 Resort Hotel 49
## 16078 Resort Hotel 174
## 16079 Resort Hotel 21
## 16080 Resort Hotel 67
## 16081 Resort Hotel 0
## 16082 Resort Hotel 36
## 16083 Resort Hotel 29
## 16084 Resort Hotel 72
## 16085 Resort Hotel 69
## 16086 Resort Hotel 51
## 16087 Resort Hotel 1
## 16088 Resort Hotel 103
## 16089 Resort Hotel 175
## 16090 Resort Hotel 98
## 16091 Resort Hotel 269
## 16092 Resort Hotel 37
## 16093 Resort Hotel 33
## 16094 Resort Hotel 107
## 16095 Resort Hotel 34
## 16096 Resort Hotel 88
## 16097 Resort Hotel 28
## 16098 Resort Hotel 146
## 16099 Resort Hotel 88
## 16100 Resort Hotel 41
## 16101 Resort Hotel 40
## 16102 Resort Hotel 64
## 16103 Resort Hotel 130
## 16104 Resort Hotel 64
## 16105 Resort Hotel 64
## 16106 Resort Hotel 49
## 16107 Resort Hotel 14
## 16108 Resort Hotel 58
## 16109 Resort Hotel 38
## 16110 Resort Hotel 56
## 16111 Resort Hotel 0
## 16112 Resort Hotel 62
## 16113 Resort Hotel 164
## 16114 Resort Hotel 60
## 16115 Resort Hotel 0
## 16116 Resort Hotel 89
## 16117 Resort Hotel 40
## 16118 Resort Hotel 0
## 16119 Resort Hotel 34
## 16120 Resort Hotel 150
## 16121 Resort Hotel 329
## 16122 Resort Hotel 90
## 16123 Resort Hotel 90
## 16124 Resort Hotel 89
## 16125 Resort Hotel 173
## 16126 Resort Hotel 173
## 16127 Resort Hotel 176
## 16128 Resort Hotel 61
## 16129 Resort Hotel 61
## 16130 Resort Hotel 61
## 16131 Resort Hotel 108
## 16132 Resort Hotel 98
## 16133 Resort Hotel 136
## 16134 Resort Hotel 134
## 16135 Resort Hotel 191
## 16136 Resort Hotel 8
## 16137 Resort Hotel 3
## 16138 Resort Hotel 65
## 16139 Resort Hotel 48
## 16140 Resort Hotel 69
## 16141 Resort Hotel 48
## 16142 Resort Hotel 108
## 16143 Resort Hotel 182
## 16144 Resort Hotel 86
## 16145 Resort Hotel 76
## 16146 Resort Hotel 38
## 16147 Resort Hotel 48
## 16148 Resort Hotel 19
## 16149 Resort Hotel 151
## 16150 Resort Hotel 1
## 16151 Resort Hotel 100
## 16152 Resort Hotel 89
## 16153 Resort Hotel 62
## 16154 Resort Hotel 9
## 16155 Resort Hotel 72
## 16156 Resort Hotel 8
## 16157 Resort Hotel 72
## 16158 Resort Hotel 72
## 16159 Resort Hotel 68
## 16160 Resort Hotel 181
## 16161 Resort Hotel 101
## 16162 Resort Hotel 220
## 16163 Resort Hotel 0
## 16164 Resort Hotel 93
## 16165 Resort Hotel 45
## 16166 Resort Hotel 3
## 16167 Resort Hotel 37
## 16168 Resort Hotel 37
## 16169 Resort Hotel 21
## 16170 Resort Hotel 26
## 16171 Resort Hotel 2
## 16172 Resort Hotel 37
## 16173 Resort Hotel 222
## 16174 Resort Hotel 39
## 16175 Resort Hotel 159
## 16176 Resort Hotel 3
## 16177 Resort Hotel 115
## 16178 Resort Hotel 236
## 16179 Resort Hotel 37
## 16180 Resort Hotel 7
## 16181 Resort Hotel 37
## 16182 Resort Hotel 37
## 16183 Resort Hotel 118
## 16184 Resort Hotel 1
## 16185 Resort Hotel 32
## 16186 Resort Hotel 196
## 16187 Resort Hotel 196
## 16188 Resort Hotel 7
## 16189 Resort Hotel 81
## 16190 Resort Hotel 81
## 16191 Resort Hotel 71
## 16192 Resort Hotel 20
## 16193 Resort Hotel 68
## 16194 Resort Hotel 3
## 16195 Resort Hotel 3
## 16196 Resort Hotel 212
## 16197 Resort Hotel 0
## 16198 Resort Hotel 74
## 16199 Resort Hotel 75
## 16200 Resort Hotel 30
## 16201 Resort Hotel 0
## 16202 Resort Hotel 168
## 16203 Resort Hotel 79
## 16204 Resort Hotel 127
## 16205 Resort Hotel 64
## 16206 Resort Hotel 95
## 16207 Resort Hotel 195
## 16208 Resort Hotel 151
## 16209 Resort Hotel 2
## 16210 Resort Hotel 187
## 16211 Resort Hotel 118
## 16212 Resort Hotel 64
## 16213 Resort Hotel 68
## 16214 Resort Hotel 59
## 16215 Resort Hotel 82
## 16216 Resort Hotel 144
## 16217 Resort Hotel 169
## 16218 Resort Hotel 132
## 16219 Resort Hotel 8
## 16220 Resort Hotel 79
## 16221 Resort Hotel 63
## 16222 Resort Hotel 243
## 16223 Resort Hotel 13
## 16224 Resort Hotel 89
## 16225 Resort Hotel 77
## 16226 Resort Hotel 139
## 16227 Resort Hotel 167
## 16228 Resort Hotel 66
## 16229 Resort Hotel 10
## 16230 Resort Hotel 84
## 16231 Resort Hotel 94
## 16232 Resort Hotel 8
## 16233 Resort Hotel 1
## 16234 Resort Hotel 0
## 16235 Resort Hotel 0
## 16236 Resort Hotel 124
## 16237 Resort Hotel 71
## 16238 Resort Hotel 49
## 16239 Resort Hotel 2
## 16240 Resort Hotel 82
## 16241 Resort Hotel 190
## 16242 Resort Hotel 70
## 16243 Resort Hotel 175
## 16244 Resort Hotel 70
## 16245 Resort Hotel 81
## 16246 Resort Hotel 75
## 16247 Resort Hotel 84
## 16248 Resort Hotel 64
## 16249 Resort Hotel 95
## 16250 Resort Hotel 100
## 16251 Resort Hotel 74
## 16252 Resort Hotel 21
## 16253 Resort Hotel 8
## 16254 Resort Hotel 86
## 16255 Resort Hotel 41
## 16256 Resort Hotel 6
## 16257 Resort Hotel 2
## 16258 Resort Hotel 292
## 16259 Resort Hotel 292
## 16260 Resort Hotel 292
## 16261 Resort Hotel 77
## 16262 Resort Hotel 77
## 16263 Resort Hotel 73
## 16264 Resort Hotel 76
## 16265 Resort Hotel 318
## 16266 Resort Hotel 210
## 16267 Resort Hotel 53
## 16268 Resort Hotel 68
## 16269 Resort Hotel 32
## 16270 Resort Hotel 32
## 16271 Resort Hotel 86
## 16272 Resort Hotel 86
## 16273 Resort Hotel 86
## 16274 Resort Hotel 100
## 16275 Resort Hotel 173
## 16276 Resort Hotel 145
## 16277 Resort Hotel 117
## 16278 Resort Hotel 117
## 16279 Resort Hotel 171
## 16280 Resort Hotel 117
## 16281 Resort Hotel 81
## 16282 Resort Hotel 81
## 16283 Resort Hotel 81
## 16284 Resort Hotel 10
## 16285 Resort Hotel 90
## 16286 Resort Hotel 90
## 16287 Resort Hotel 83
## 16288 Resort Hotel 108
## 16289 Resort Hotel 113
## 16290 Resort Hotel 58
## 16291 Resort Hotel 14
## 16292 Resort Hotel 148
## 16293 Resort Hotel 232
## 16294 Resort Hotel 87
## 16295 Resort Hotel 159
## 16296 Resort Hotel 96
## 16297 Resort Hotel 144
## 16298 Resort Hotel 106
## 16299 Resort Hotel 15
## 16300 Resort Hotel 120
## 16301 Resort Hotel 120
## 16302 Resort Hotel 13
## 16303 Resort Hotel 78
## 16304 Resort Hotel 115
## 16305 Resort Hotel 84
## 16306 Resort Hotel 84
## 16307 Resort Hotel 81
## 16308 Resort Hotel 81
## 16309 Resort Hotel 13
## 16310 Resort Hotel 11
## 16311 Resort Hotel 71
## 16312 Resort Hotel 12
## 16313 Resort Hotel 7
## 16314 Resort Hotel 78
## 16315 Resort Hotel 54
## 16316 Resort Hotel 102
## 16317 Resort Hotel 66
## 16318 Resort Hotel 50
## 16319 Resort Hotel 61
## 16320 Resort Hotel 1
## 16321 Resort Hotel 147
## 16322 Resort Hotel 171
## 16323 Resort Hotel 125
## 16324 Resort Hotel 63
## 16325 Resort Hotel 63
## 16326 Resort Hotel 78
## 16327 Resort Hotel 87
## 16328 Resort Hotel 74
## 16329 Resort Hotel 91
## 16330 Resort Hotel 77
## 16331 Resort Hotel 272
## 16332 Resort Hotel 125
## 16333 Resort Hotel 107
## 16334 Resort Hotel 45
## 16335 Resort Hotel 35
## 16336 Resort Hotel 65
## 16337 Resort Hotel 0
## 16338 Resort Hotel 59
## 16339 Resort Hotel 80
## 16340 Resort Hotel 70
## 16341 Resort Hotel 12
## 16342 Resort Hotel 75
## 16343 Resort Hotel 159
## 16344 Resort Hotel 0
## 16345 Resort Hotel 0
## 16346 Resort Hotel 66
## 16347 Resort Hotel 68
## 16348 Resort Hotel 117
## 16349 Resort Hotel 117
## 16350 Resort Hotel 0
## 16351 Resort Hotel 58
## 16352 Resort Hotel 58
## 16353 Resort Hotel 85
## 16354 Resort Hotel 83
## 16355 Resort Hotel 83
## 16356 Resort Hotel 226
## 16357 Resort Hotel 74
## 16358 Resort Hotel 58
## 16359 Resort Hotel 218
## 16360 Resort Hotel 1
## 16361 Resort Hotel 272
## 16362 Resort Hotel 59
## 16363 Resort Hotel 0
## 16364 Resort Hotel 58
## 16365 Resort Hotel 107
## 16366 Resort Hotel 83
## 16367 Resort Hotel 0
## 16368 Resort Hotel 11
## 16369 Resort Hotel 22
## 16370 Resort Hotel 59
## 16371 Resort Hotel 21
## 16372 Resort Hotel 5
## 16373 Resort Hotel 79
## 16374 Resort Hotel 41
## 16375 Resort Hotel 62
## 16376 Resort Hotel 0
## 16377 Resort Hotel 100
## 16378 Resort Hotel 15
## 16379 Resort Hotel 266
## 16380 Resort Hotel 0
## 16381 Resort Hotel 21
## 16382 Resort Hotel 0
## 16383 Resort Hotel 57
## 16384 Resort Hotel 45
## 16385 Resort Hotel 17
## 16386 Resort Hotel 8
## 16387 Resort Hotel 1
## 16388 Resort Hotel 3
## 16389 Resort Hotel 6
## 16390 Resort Hotel 7
## 16391 Resort Hotel 8
## 16392 Resort Hotel 69
## 16393 Resort Hotel 150
## 16394 Resort Hotel 31
## 16395 Resort Hotel 31
## 16396 Resort Hotel 39
## 16397 Resort Hotel 100
## 16398 Resort Hotel 62
## 16399 Resort Hotel 97
## 16400 Resort Hotel 37
## 16401 Resort Hotel 37
## 16402 Resort Hotel 87
## 16403 Resort Hotel 10
## 16404 Resort Hotel 49
## 16405 Resort Hotel 38
## 16406 Resort Hotel 49
## 16407 Resort Hotel 49
## 16408 Resort Hotel 193
## 16409 Resort Hotel 289
## 16410 Resort Hotel 288
## 16411 Resort Hotel 288
## 16412 Resort Hotel 288
## 16413 Resort Hotel 288
## 16414 Resort Hotel 239
## 16415 Resort Hotel 32
## 16416 Resort Hotel 60
## 16417 Resort Hotel 59
## 16418 Resort Hotel 60
## 16419 Resort Hotel 258
## 16420 Resort Hotel 46
## 16421 Resort Hotel 26
## 16422 Resort Hotel 4
## 16423 Resort Hotel 36
## 16424 Resort Hotel 77
## 16425 Resort Hotel 15
## 16426 Resort Hotel 152
## 16427 Resort Hotel 12
## 16428 Resort Hotel 0
## 16429 Resort Hotel 82
## 16430 Resort Hotel 37
## 16431 Resort Hotel 62
## 16432 Resort Hotel 69
## 16433 Resort Hotel 233
## 16434 Resort Hotel 47
## 16435 Resort Hotel 42
## 16436 Resort Hotel 52
## 16437 Resort Hotel 146
## 16438 Resort Hotel 47
## 16439 Resort Hotel 55
## 16440 Resort Hotel 88
## 16441 Resort Hotel 0
## 16442 Resort Hotel 283
## 16443 Resort Hotel 84
## 16444 Resort Hotel 205
## 16445 Resort Hotel 244
## 16446 Resort Hotel 48
## 16447 Resort Hotel 62
## 16448 Resort Hotel 31
## 16449 Resort Hotel 31
## 16450 Resort Hotel 172
## 16451 Resort Hotel 101
## 16452 Resort Hotel 37
## 16453 Resort Hotel 29
## 16454 Resort Hotel 22
## 16455 Resort Hotel 77
## 16456 Resort Hotel 77
## 16457 Resort Hotel 9
## 16458 Resort Hotel 88
## 16459 Resort Hotel 58
## 16460 Resort Hotel 45
## 16461 Resort Hotel 45
## 16462 Resort Hotel 198
## 16463 Resort Hotel 198
## 16464 Resort Hotel 0
## 16465 Resort Hotel 212
## 16466 Resort Hotel 45
## 16467 Resort Hotel 86
## 16468 Resort Hotel 86
## 16469 Resort Hotel 56
## 16470 Resort Hotel 76
## 16471 Resort Hotel 12
## 16472 Resort Hotel 151
## 16473 Resort Hotel 204
## 16474 Resort Hotel 0
## 16475 Resort Hotel 22
## 16476 Resort Hotel 35
## 16477 Resort Hotel 201
## 16478 Resort Hotel 196
## 16479 Resort Hotel 128
## 16480 Resort Hotel 42
## 16481 Resort Hotel 37
## 16482 Resort Hotel 37
## 16483 Resort Hotel 163
## 16484 Resort Hotel 204
## 16485 Resort Hotel 37
## 16486 Resort Hotel 0
## 16487 Resort Hotel 52
## 16488 Resort Hotel 63
## 16489 Resort Hotel 12
## 16490 Resort Hotel 199
## 16491 Resort Hotel 39
## 16492 Resort Hotel 0
## 16493 Resort Hotel 48
## 16494 Resort Hotel 243
## 16495 Resort Hotel 124
## 16496 Resort Hotel 199
## 16497 Resort Hotel 186
## 16498 Resort Hotel 54
## 16499 Resort Hotel 0
## 16500 Resort Hotel 1
## 16501 Resort Hotel 0
## 16502 Resort Hotel 190
## 16503 Resort Hotel 59
## 16504 Resort Hotel 89
## 16505 Resort Hotel 89
## 16506 Resort Hotel 107
## 16507 Resort Hotel 1
## 16508 Resort Hotel 61
## 16509 Resort Hotel 61
## 16510 Resort Hotel 13
## 16511 Resort Hotel 0
## 16512 Resort Hotel 13
## 16513 Resort Hotel 236
## 16514 Resort Hotel 23
## 16515 Resort Hotel 27
## 16516 Resort Hotel 25
## 16517 Resort Hotel 1
## 16518 Resort Hotel 0
## 16519 Resort Hotel 0
## 16520 Resort Hotel 25
## 16521 Resort Hotel 107
## 16522 Resort Hotel 62
## 16523 Resort Hotel 24
## 16524 Resort Hotel 194
## 16525 Resort Hotel 28
## 16526 Resort Hotel 29
## 16527 Resort Hotel 97
## 16528 Resort Hotel 32
## 16529 Resort Hotel 39
## 16530 Resort Hotel 67
## 16531 Resort Hotel 13
## 16532 Resort Hotel 29
## 16533 Resort Hotel 29
## 16534 Resort Hotel 1
## 16535 Resort Hotel 1
## 16536 Resort Hotel 211
## 16537 Resort Hotel 90
## 16538 Resort Hotel 1
## 16539 Resort Hotel 35
## 16540 Resort Hotel 67
## 16541 Resort Hotel 236
## 16542 Resort Hotel 38
## 16543 Resort Hotel 67
## 16544 Resort Hotel 200
## 16545 Resort Hotel 200
## 16546 Resort Hotel 247
## 16547 Resort Hotel 247
## 16548 Resort Hotel 247
## 16549 Resort Hotel 247
## 16550 Resort Hotel 247
## 16551 Resort Hotel 247
## 16552 Resort Hotel 247
## 16553 Resort Hotel 247
## 16554 Resort Hotel 247
## 16555 Resort Hotel 247
## 16556 Resort Hotel 247
## 16557 Resort Hotel 247
## 16558 Resort Hotel 247
## 16559 Resort Hotel 247
## 16560 Resort Hotel 247
## 16561 Resort Hotel 247
## 16562 Resort Hotel 247
## 16563 Resort Hotel 247
## 16564 Resort Hotel 247
## 16565 Resort Hotel 247
## 16566 Resort Hotel 247
## 16567 Resort Hotel 247
## 16568 Resort Hotel 247
## 16569 Resort Hotel 247
## 16570 Resort Hotel 247
## 16571 Resort Hotel 247
## 16572 Resort Hotel 247
## 16573 Resort Hotel 57
## 16574 Resort Hotel 110
## 16575 Resort Hotel 26
## 16576 Resort Hotel 44
## 16577 Resort Hotel 31
## 16578 Resort Hotel 177
## 16579 Resort Hotel 139
## 16580 Resort Hotel 139
## 16581 Resort Hotel 101
## 16582 Resort Hotel 23
## 16583 Resort Hotel 78
## 16584 Resort Hotel 65
## 16585 Resort Hotel 26
## 16586 Resort Hotel 94
## 16587 Resort Hotel 94
## 16588 Resort Hotel 6
## 16589 Resort Hotel 19
## 16590 Resort Hotel 28
## 16591 Resort Hotel 38
## 16592 Resort Hotel 40
## 16593 Resort Hotel 23
## 16594 Resort Hotel 196
## 16595 Resort Hotel 31
## 16596 Resort Hotel 70
## 16597 Resort Hotel 17
## 16598 Resort Hotel 0
## 16599 Resort Hotel 134
## 16600 Resort Hotel 64
## 16601 Resort Hotel 18
## 16602 Resort Hotel 41
## 16603 Resort Hotel 23
## 16604 Resort Hotel 51
## 16605 Resort Hotel 216
## 16606 Resort Hotel 57
## 16607 Resort Hotel 34
## 16608 Resort Hotel 55
## 16609 Resort Hotel 29
## 16610 Resort Hotel 61
## 16611 Resort Hotel 68
## 16612 Resort Hotel 219
## 16613 Resort Hotel 220
## 16614 Resort Hotel 36
## 16615 Resort Hotel 210
## 16616 Resort Hotel 305
## 16617 Resort Hotel 74
## 16618 Resort Hotel 37
## 16619 Resort Hotel 218
## 16620 Resort Hotel 37
## 16621 Resort Hotel 104
## 16622 Resort Hotel 27
## 16623 Resort Hotel 74
## 16624 Resort Hotel 23
## 16625 Resort Hotel 10
## 16626 Resort Hotel 33
## 16627 Resort Hotel 27
## 16628 Resort Hotel 33
## 16629 Resort Hotel 74
## 16630 Resort Hotel 52
## 16631 Resort Hotel 185
## 16632 Resort Hotel 101
## 16633 Resort Hotel 36
## 16634 Resort Hotel 68
## 16635 Resort Hotel 68
## 16636 Resort Hotel 232
## 16637 Resort Hotel 55
## 16638 Resort Hotel 4
## 16639 Resort Hotel 47
## 16640 Resort Hotel 71
## 16641 Resort Hotel 112
## 16642 Resort Hotel 142
## 16643 Resort Hotel 199
## 16644 Resort Hotel 199
## 16645 Resort Hotel 154
## 16646 Resort Hotel 17
## 16647 Resort Hotel 289
## 16648 Resort Hotel 205
## 16649 Resort Hotel 154
## 16650 Resort Hotel 208
## 16651 Resort Hotel 205
## 16652 Resort Hotel 4
## 16653 Resort Hotel 25
## 16654 Resort Hotel 0
## 16655 Resort Hotel 70
## 16656 Resort Hotel 29
## 16657 Resort Hotel 199
## 16658 Resort Hotel 59
## 16659 Resort Hotel 44
## 16660 Resort Hotel 199
## 16661 Resort Hotel 199
## 16662 Resort Hotel 105
## 16663 Resort Hotel 67
## 16664 Resort Hotel 0
## 16665 Resort Hotel 222
## 16666 Resort Hotel 186
## 16667 Resort Hotel 186
## 16668 Resort Hotel 186
## 16669 Resort Hotel 297
## 16670 Resort Hotel 297
## 16671 Resort Hotel 189
## 16672 Resort Hotel 288
## 16673 Resort Hotel 288
## 16674 Resort Hotel 288
## 16675 Resort Hotel 288
## 16676 Resort Hotel 288
## 16677 Resort Hotel 290
## 16678 Resort Hotel 174
## 16679 Resort Hotel 136
## 16680 Resort Hotel 289
## 16681 Resort Hotel 182
## 16682 Resort Hotel 288
## 16683 Resort Hotel 288
## 16684 Resort Hotel 0
## 16685 Resort Hotel 186
## 16686 Resort Hotel 0
## 16687 Resort Hotel 15
## 16688 Resort Hotel 9
## 16689 Resort Hotel 250
## 16690 Resort Hotel 99
## 16691 Resort Hotel 199
## 16692 Resort Hotel 242
## 16693 Resort Hotel 242
## 16694 Resort Hotel 225
## 16695 Resort Hotel 240
## 16696 Resort Hotel 240
## 16697 Resort Hotel 240
## 16698 Resort Hotel 240
## 16699 Resort Hotel 240
## 16700 Resort Hotel 218
## 16701 Resort Hotel 218
## 16702 Resort Hotel 202
## 16703 Resort Hotel 205
## 16704 Resort Hotel 167
## 16705 Resort Hotel 244
## 16706 Resort Hotel 215
## 16707 Resort Hotel 244
## 16708 Resort Hotel 78
## 16709 Resort Hotel 262
## 16710 Resort Hotel 244
## 16711 Resort Hotel 244
## 16712 Resort Hotel 0
## 16713 Resort Hotel 208
## 16714 Resort Hotel 160
## 16715 Resort Hotel 243
## 16716 Resort Hotel 244
## 16717 Resort Hotel 244
## 16718 Resort Hotel 244
## 16719 Resort Hotel 183
## 16720 Resort Hotel 66
## 16721 Resort Hotel 183
## 16722 Resort Hotel 244
## 16723 Resort Hotel 244
## 16724 Resort Hotel 244
## 16725 Resort Hotel 71
## 16726 Resort Hotel 47
## 16727 Resort Hotel 23
## 16728 Resort Hotel 244
## 16729 Resort Hotel 14
## 16730 Resort Hotel 158
## 16731 Resort Hotel 29
## 16732 Resort Hotel 52
## 16733 Resort Hotel 206
## 16734 Resort Hotel 199
## 16735 Resort Hotel 286
## 16736 Resort Hotel 266
## 16737 Resort Hotel 199
## 16738 Resort Hotel 153
## 16739 Resort Hotel 15
## 16740 Resort Hotel 1
## 16741 Resort Hotel 1
## 16742 Resort Hotel 0
## 16743 Resort Hotel 0
## 16744 Resort Hotel 4
## 16745 Resort Hotel 34
## 16746 Resort Hotel 25
## 16747 Resort Hotel 89
## 16748 Resort Hotel 89
## 16749 Resort Hotel 242
## 16750 Resort Hotel 242
## 16751 Resort Hotel 1
## 16752 Resort Hotel 194
## 16753 Resort Hotel 216
## 16754 Resort Hotel 352
## 16755 Resort Hotel 48
## 16756 Resort Hotel 35
## 16757 Resort Hotel 27
## 16758 Resort Hotel 160
## 16759 Resort Hotel 81
## 16760 Resort Hotel 117
## 16761 Resort Hotel 37
## 16762 Resort Hotel 5
## 16763 Resort Hotel 81
## 16764 Resort Hotel 14
## 16765 Resort Hotel 10
## 16766 Resort Hotel 218
## 16767 Resort Hotel 48
## 16768 Resort Hotel 243
## 16769 Resort Hotel 258
## 16770 Resort Hotel 221
## 16771 Resort Hotel 221
## 16772 Resort Hotel 221
## 16773 Resort Hotel 221
## 16774 Resort Hotel 221
## 16775 Resort Hotel 221
## 16776 Resort Hotel 221
## 16777 Resort Hotel 246
## 16778 Resort Hotel 239
## 16779 Resort Hotel 0
## 16780 Resort Hotel 32
## 16781 Resort Hotel 1
## 16782 Resort Hotel 52
## 16783 Resort Hotel 32
## 16784 Resort Hotel 22
## 16785 Resort Hotel 4
## 16786 Resort Hotel 5
## 16787 Resort Hotel 31
## 16788 Resort Hotel 32
## 16789 Resort Hotel 94
## 16790 Resort Hotel 52
## 16791 Resort Hotel 37
## 16792 Resort Hotel 194
## 16793 Resort Hotel 287
## 16794 Resort Hotel 31
## 16795 Resort Hotel 205
## 16796 Resort Hotel 178
## 16797 Resort Hotel 178
## 16798 Resort Hotel 178
## 16799 Resort Hotel 178
## 16800 Resort Hotel 178
## 16801 Resort Hotel 2
## 16802 Resort Hotel 51
## 16803 Resort Hotel 178
## 16804 Resort Hotel 36
## 16805 Resort Hotel 128
## 16806 Resort Hotel 69
## 16807 Resort Hotel 81
## 16808 Resort Hotel 178
## 16809 Resort Hotel 117
## 16810 Resort Hotel 259
## 16811 Resort Hotel 53
## 16812 Resort Hotel 246
## 16813 Resort Hotel 1
## 16814 Resort Hotel 167
## 16815 Resort Hotel 65
## 16816 Resort Hotel 113
## 16817 Resort Hotel 113
## 16818 Resort Hotel 111
## 16819 Resort Hotel 113
## 16820 Resort Hotel 13
## 16821 Resort Hotel 17
## 16822 Resort Hotel 240
## 16823 Resort Hotel 334
## 16824 Resort Hotel 333
## 16825 Resort Hotel 0
## 16826 Resort Hotel 16
## 16827 Resort Hotel 25
## 16828 Resort Hotel 199
## 16829 Resort Hotel 199
## 16830 Resort Hotel 199
## 16831 Resort Hotel 187
## 16832 Resort Hotel 252
## 16833 Resort Hotel 194
## 16834 Resort Hotel 26
## 16835 Resort Hotel 146
## 16836 Resort Hotel 180
## 16837 Resort Hotel 214
## 16838 Resort Hotel 204
## 16839 Resort Hotel 222
## 16840 Resort Hotel 60
## 16841 Resort Hotel 180
## 16842 Resort Hotel 254
## 16843 Resort Hotel 254
## 16844 Resort Hotel 254
## 16845 Resort Hotel 254
## 16846 Resort Hotel 254
## 16847 Resort Hotel 254
## 16848 Resort Hotel 254
## 16849 Resort Hotel 254
## 16850 Resort Hotel 254
## 16851 Resort Hotel 254
## 16852 Resort Hotel 254
## 16853 Resort Hotel 254
## 16854 Resort Hotel 254
## 16855 Resort Hotel 254
## 16856 Resort Hotel 254
## 16857 Resort Hotel 254
## 16858 Resort Hotel 254
## 16859 Resort Hotel 254
## 16860 Resort Hotel 254
## 16861 Resort Hotel 254
## 16862 Resort Hotel 254
## 16863 Resort Hotel 254
## 16864 Resort Hotel 99
## 16865 Resort Hotel 118
## 16866 Resort Hotel 222
## 16867 Resort Hotel 222
## 16868 Resort Hotel 222
## 16869 Resort Hotel 222
## 16870 Resort Hotel 222
## 16871 Resort Hotel 222
## 16872 Resort Hotel 222
## 16873 Resort Hotel 222
## 16874 Resort Hotel 222
## 16875 Resort Hotel 222
## 16876 Resort Hotel 222
## 16877 Resort Hotel 222
## 16878 Resort Hotel 222
## 16879 Resort Hotel 222
## 16880 Resort Hotel 222
## 16881 Resort Hotel 222
## 16882 Resort Hotel 222
## 16883 Resort Hotel 222
## 16884 Resort Hotel 222
## 16885 Resort Hotel 222
## 16886 Resort Hotel 222
## 16887 Resort Hotel 222
## 16888 Resort Hotel 222
## 16889 Resort Hotel 41
## 16890 Resort Hotel 55
## 16891 Resort Hotel 57
## 16892 Resort Hotel 13
## 16893 Resort Hotel 200
## 16894 Resort Hotel 200
## 16895 Resort Hotel 89
## 16896 Resort Hotel 252
## 16897 Resort Hotel 217
## 16898 Resort Hotel 1
## 16899 Resort Hotel 1
## 16900 Resort Hotel 0
## 16901 Resort Hotel 0
## 16902 Resort Hotel 0
## 16903 Resort Hotel 0
## 16904 Resort Hotel 0
## 16905 Resort Hotel 1
## 16906 Resort Hotel 3
## 16907 Resort Hotel 1
## 16908 Resort Hotel 0
## 16909 Resort Hotel 1
## 16910 Resort Hotel 0
## 16911 Resort Hotel 71
## 16912 Resort Hotel 0
## 16913 Resort Hotel 12
## 16914 Resort Hotel 0
## 16915 Resort Hotel 2
## 16916 Resort Hotel 0
## 16917 Resort Hotel 116
## 16918 Resort Hotel 6
## 16919 Resort Hotel 169
## 16920 Resort Hotel 137
## 16921 Resort Hotel 205
## 16922 Resort Hotel 95
## 16923 Resort Hotel 226
## 16924 Resort Hotel 252
## 16925 Resort Hotel 246
## 16926 Resort Hotel 301
## 16927 Resort Hotel 97
## 16928 Resort Hotel 16
## 16929 Resort Hotel 211
## 16930 Resort Hotel 14
## 16931 Resort Hotel 11
## 16932 Resort Hotel 26
## 16933 Resort Hotel 5
## 16934 Resort Hotel 18
## 16935 Resort Hotel 6
## 16936 Resort Hotel 6
## 16937 Resort Hotel 4
## 16938 Resort Hotel 13
## 16939 Resort Hotel 7
## 16940 Resort Hotel 26
## 16941 Resort Hotel 203
## 16942 Resort Hotel 0
## 16943 Resort Hotel 6
## 16944 Resort Hotel 64
## 16945 Resort Hotel 152
## 16946 Resort Hotel 0
## 16947 Resort Hotel 119
## 16948 Resort Hotel 13
## 16949 Resort Hotel 64
## 16950 Resort Hotel 149
## 16951 Resort Hotel 169
## 16952 Resort Hotel 93
## 16953 Resort Hotel 101
## 16954 Resort Hotel 30
## 16955 Resort Hotel 4
## 16956 Resort Hotel 2
## 16957 Resort Hotel 254
## 16958 Resort Hotel 65
## 16959 Resort Hotel 14
## 16960 Resort Hotel 258
## 16961 Resort Hotel 258
## 16962 Resort Hotel 17
## 16963 Resort Hotel 258
## 16964 Resort Hotel 152
## 16965 Resort Hotel 258
## 16966 Resort Hotel 258
## 16967 Resort Hotel 35
## 16968 Resort Hotel 258
## 16969 Resort Hotel 258
## 16970 Resort Hotel 258
## 16971 Resort Hotel 258
## 16972 Resort Hotel 258
## 16973 Resort Hotel 208
## 16974 Resort Hotel 93
## 16975 Resort Hotel 93
## 16976 Resort Hotel 76
## 16977 Resort Hotel 258
## 16978 Resort Hotel 227
## 16979 Resort Hotel 193
## 16980 Resort Hotel 355
## 16981 Resort Hotel 206
## 16982 Resort Hotel 146
## 16983 Resort Hotel 92
## 16984 Resort Hotel 52
## 16985 Resort Hotel 120
## 16986 Resort Hotel 7
## 16987 Resort Hotel 257
## 16988 Resort Hotel 252
## 16989 Resort Hotel 120
## 16990 Resort Hotel 295
## 16991 Resort Hotel 146
## 16992 Resort Hotel 258
## 16993 Resort Hotel 258
## 16994 Resort Hotel 239
## 16995 Resort Hotel 293
## 16996 Resort Hotel 239
## 16997 Resort Hotel 239
## 16998 Resort Hotel 239
## 16999 Resort Hotel 239
## 17000 Resort Hotel 239
## 17001 Resort Hotel 239
## 17002 Resort Hotel 239
## 17003 Resort Hotel 239
## 17004 Resort Hotel 239
## 17005 Resort Hotel 239
## 17006 Resort Hotel 239
## 17007 Resort Hotel 239
## 17008 Resort Hotel 239
## 17009 Resort Hotel 239
## 17010 Resort Hotel 239
## 17011 Resort Hotel 239
## 17012 Resort Hotel 239
## 17013 Resort Hotel 239
## 17014 Resort Hotel 239
## 17015 Resort Hotel 239
## 17016 Resort Hotel 239
## 17017 Resort Hotel 239
## 17018 Resort Hotel 164
## 17019 Resort Hotel 88
## 17020 Resort Hotel 88
## 17021 Resort Hotel 172
## 17022 Resort Hotel 179
## 17023 Resort Hotel 3
## 17024 Resort Hotel 36
## 17025 Resort Hotel 31
## 17026 Resort Hotel 239
## 17027 Resort Hotel 107
## 17028 Resort Hotel 108
## 17029 Resort Hotel 85
## 17030 Resort Hotel 301
## 17031 Resort Hotel 172
## 17032 Resort Hotel 79
## 17033 Resort Hotel 138
## 17034 Resort Hotel 208
## 17035 Resort Hotel 148
## 17036 Resort Hotel 39
## 17037 Resort Hotel 203
## 17038 Resort Hotel 257
## 17039 Resort Hotel 78
## 17040 Resort Hotel 92
## 17041 Resort Hotel 92
## 17042 Resort Hotel 34
## 17043 Resort Hotel 85
## 17044 Resort Hotel 185
## 17045 Resort Hotel 185
## 17046 Resort Hotel 185
## 17047 Resort Hotel 33
## 17048 Resort Hotel 28
## 17049 Resort Hotel 34
## 17050 Resort Hotel 185
## 17051 Resort Hotel 185
## 17052 Resort Hotel 185
## 17053 Resort Hotel 185
## 17054 Resort Hotel 185
## 17055 Resort Hotel 185
## 17056 Resort Hotel 1
## 17057 Resort Hotel 0
## 17058 Resort Hotel 185
## 17059 Resort Hotel 185
## 17060 Resort Hotel 185
## 17061 Resort Hotel 185
## 17062 Resort Hotel 185
## 17063 Resort Hotel 185
## 17064 Resort Hotel 138
## 17065 Resort Hotel 70
## 17066 Resort Hotel 85
## 17067 Resort Hotel 185
## 17068 Resort Hotel 160
## 17069 Resort Hotel 160
## 17070 Resort Hotel 258
## 17071 Resort Hotel 163
## 17072 Resort Hotel 160
## 17073 Resort Hotel 167
## 17074 Resort Hotel 0
## 17075 Resort Hotel 305
## 17076 Resort Hotel 0
## 17077 Resort Hotel 115
## 17078 Resort Hotel 21
## 17079 Resort Hotel 21
## 17080 Resort Hotel 77
## 17081 Resort Hotel 66
## 17082 Resort Hotel 253
## 17083 Resort Hotel 95
## 17084 Resort Hotel 168
## 17085 Resort Hotel 197
## 17086 Resort Hotel 211
## 17087 Resort Hotel 77
## 17088 Resort Hotel 93
## 17089 Resort Hotel 262
## 17090 Resort Hotel 262
## 17091 Resort Hotel 262
## 17092 Resort Hotel 262
## 17093 Resort Hotel 343
## 17094 Resort Hotel 1
## 17095 Resort Hotel 262
## 17096 Resort Hotel 343
## 17097 Resort Hotel 262
## 17098 Resort Hotel 262
## 17099 Resort Hotel 262
## 17100 Resort Hotel 262
## 17101 Resort Hotel 262
## 17102 Resort Hotel 262
## 17103 Resort Hotel 262
## 17104 Resort Hotel 262
## 17105 Resort Hotel 99
## 17106 Resort Hotel 262
## 17107 Resort Hotel 37
## 17108 Resort Hotel 111
## 17109 Resort Hotel 66
## 17110 Resort Hotel 43
## 17111 Resort Hotel 47
## 17112 Resort Hotel 87
## 17113 Resort Hotel 234
## 17114 Resort Hotel 201
## 17115 Resort Hotel 224
## 17116 Resort Hotel 81
## 17117 Resort Hotel 241
## 17118 Resort Hotel 83
## 17119 Resort Hotel 0
## 17120 Resort Hotel 65
## 17121 Resort Hotel 27
## 17122 Resort Hotel 115
## 17123 Resort Hotel 277
## 17124 Resort Hotel 212
## 17125 Resort Hotel 125
## 17126 Resort Hotel 78
## 17127 Resort Hotel 167
## 17128 Resort Hotel 167
## 17129 Resort Hotel 170
## 17130 Resort Hotel 170
## 17131 Resort Hotel 170
## 17132 Resort Hotel 212
## 17133 Resort Hotel 115
## 17134 Resort Hotel 170
## 17135 Resort Hotel 77
## 17136 Resort Hotel 11
## 17137 Resort Hotel 33
## 17138 Resort Hotel 212
## 17139 Resort Hotel 166
## 17140 Resort Hotel 207
## 17141 Resort Hotel 207
## 17142 Resort Hotel 207
## 17143 Resort Hotel 207
## 17144 Resort Hotel 207
## 17145 Resort Hotel 207
## 17146 Resort Hotel 207
## 17147 Resort Hotel 207
## 17148 Resort Hotel 207
## 17149 Resort Hotel 207
## 17150 Resort Hotel 207
## 17151 Resort Hotel 207
## 17152 Resort Hotel 207
## 17153 Resort Hotel 207
## 17154 Resort Hotel 207
## 17155 Resort Hotel 257
## 17156 Resort Hotel 32
## 17157 Resort Hotel 0
## 17158 Resort Hotel 0
## 17159 Resort Hotel 0
## 17160 Resort Hotel 65
## 17161 Resort Hotel 1
## 17162 Resort Hotel 73
## 17163 Resort Hotel 43
## 17164 Resort Hotel 9
## 17165 Resort Hotel 0
## 17166 Resort Hotel 272
## 17167 Resort Hotel 272
## 17168 Resort Hotel 272
## 17169 Resort Hotel 272
## 17170 Resort Hotel 185
## 17171 Resort Hotel 68
## 17172 Resort Hotel 2
## 17173 Resort Hotel 75
## 17174 Resort Hotel 75
## 17175 Resort Hotel 0
## 17176 Resort Hotel 0
## 17177 Resort Hotel 29
## 17178 Resort Hotel 0
## 17179 Resort Hotel 13
## 17180 Resort Hotel 193
## 17181 Resort Hotel 13
## 17182 Resort Hotel 130
## 17183 Resort Hotel 34
## 17184 Resort Hotel 82
## 17185 Resort Hotel 202
## 17186 Resort Hotel 309
## 17187 Resort Hotel 225
## 17188 Resort Hotel 219
## 17189 Resort Hotel 222
## 17190 Resort Hotel 222
## 17191 Resort Hotel 266
## 17192 Resort Hotel 266
## 17193 Resort Hotel 266
## 17194 Resort Hotel 2
## 17195 Resort Hotel 93
## 17196 Resort Hotel 3
## 17197 Resort Hotel 160
## 17198 Resort Hotel 159
## 17199 Resort Hotel 42
## 17200 Resort Hotel 123
## 17201 Resort Hotel 70
## 17202 Resort Hotel 266
## 17203 Resort Hotel 3
## 17204 Resort Hotel 46
## 17205 Resort Hotel 34
## 17206 Resort Hotel 131
## 17207 Resort Hotel 236
## 17208 Resort Hotel 174
## 17209 Resort Hotel 174
## 17210 Resort Hotel 174
## 17211 Resort Hotel 0
## 17212 Resort Hotel 167
## 17213 Resort Hotel 237
## 17214 Resort Hotel 167
## 17215 Resort Hotel 167
## 17216 Resort Hotel 106
## 17217 Resort Hotel 225
## 17218 Resort Hotel 227
## 17219 Resort Hotel 167
## 17220 Resort Hotel 153
## 17221 Resort Hotel 167
## 17222 Resort Hotel 167
## 17223 Resort Hotel 246
## 17224 Resort Hotel 246
## 17225 Resort Hotel 52
## 17226 Resort Hotel 219
## 17227 Resort Hotel 130
## 17228 Resort Hotel 97
## 17229 Resort Hotel 224
## 17230 Resort Hotel 224
## 17231 Resort Hotel 174
## 17232 Resort Hotel 167
## 17233 Resort Hotel 260
## 17234 Resort Hotel 115
## 17235 Resort Hotel 260
## 17236 Resort Hotel 115
## 17237 Resort Hotel 58
## 17238 Resort Hotel 67
## 17239 Resort Hotel 74
## 17240 Resort Hotel 0
## 17241 Resort Hotel 60
## 17242 Resort Hotel 3
## 17243 Resort Hotel 289
## 17244 Resort Hotel 289
## 17245 Resort Hotel 289
## 17246 Resort Hotel 289
## 17247 Resort Hotel 289
## 17248 Resort Hotel 289
## 17249 Resort Hotel 289
## 17250 Resort Hotel 0
## 17251 Resort Hotel 67
## 17252 Resort Hotel 292
## 17253 Resort Hotel 0
## 17254 Resort Hotel 7
## 17255 Resort Hotel 277
## 17256 Resort Hotel 277
## 17257 Resort Hotel 277
## 17258 Resort Hotel 277
## 17259 Resort Hotel 277
## 17260 Resort Hotel 277
## 17261 Resort Hotel 277
## 17262 Resort Hotel 277
## 17263 Resort Hotel 277
## 17264 Resort Hotel 277
## 17265 Resort Hotel 277
## 17266 Resort Hotel 277
## 17267 Resort Hotel 277
## 17268 Resort Hotel 277
## 17269 Resort Hotel 277
## 17270 Resort Hotel 277
## 17271 Resort Hotel 277
## 17272 Resort Hotel 52
## 17273 Resort Hotel 272
## 17274 Resort Hotel 272
## 17275 Resort Hotel 272
## 17276 Resort Hotel 272
## 17277 Resort Hotel 272
## 17278 Resort Hotel 272
## 17279 Resort Hotel 272
## 17280 Resort Hotel 272
## 17281 Resort Hotel 272
## 17282 Resort Hotel 272
## 17283 Resort Hotel 272
## 17284 Resort Hotel 272
## 17285 Resort Hotel 272
## 17286 Resort Hotel 0
## 17287 Resort Hotel 272
## 17288 Resort Hotel 42
## 17289 Resort Hotel 64
## 17290 Resort Hotel 64
## 17291 Resort Hotel 169
## 17292 Resort Hotel 78
## 17293 Resort Hotel 56
## 17294 Resort Hotel 54
## 17295 Resort Hotel 51
## 17296 Resort Hotel 89
## 17297 Resort Hotel 0
## 17298 Resort Hotel 268
## 17299 Resort Hotel 170
## 17300 Resort Hotel 51
## 17301 Resort Hotel 138
## 17302 Resort Hotel 174
## 17303 Resort Hotel 89
## 17304 Resort Hotel 89
## 17305 Resort Hotel 0
## 17306 Resort Hotel 58
## 17307 Resort Hotel 55
## 17308 Resort Hotel 117
## 17309 Resort Hotel 28
## 17310 Resort Hotel 268
## 17311 Resort Hotel 16
## 17312 Resort Hotel 172
## 17313 Resort Hotel 42
## 17314 Resort Hotel 269
## 17315 Resort Hotel 1
## 17316 Resort Hotel 10
## 17317 Resort Hotel 74
## 17318 Resort Hotel 0
## 17319 Resort Hotel 51
## 17320 Resort Hotel 78
## 17321 Resort Hotel 0
## 17322 Resort Hotel 0
## 17323 Resort Hotel 44
## 17324 Resort Hotel 49
## 17325 Resort Hotel 53
## 17326 Resort Hotel 0
## 17327 Resort Hotel 1
## 17328 Resort Hotel 97
## 17329 Resort Hotel 202
## 17330 Resort Hotel 132
## 17331 Resort Hotel 230
## 17332 Resort Hotel 40
## 17333 Resort Hotel 64
## 17334 Resort Hotel 35
## 17335 Resort Hotel 106
## 17336 Resort Hotel 0
## 17337 Resort Hotel 54
## 17338 Resort Hotel 249
## 17339 Resort Hotel 1
## 17340 Resort Hotel 0
## 17341 Resort Hotel 0
## 17342 Resort Hotel 0
## 17343 Resort Hotel 0
## 17344 Resort Hotel 1
## 17345 Resort Hotel 86
## 17346 Resort Hotel 90
## 17347 Resort Hotel 1
## 17348 Resort Hotel 1
## 17349 Resort Hotel 25
## 17350 Resort Hotel 27
## 17351 Resort Hotel 50
## 17352 Resort Hotel 214
## 17353 Resort Hotel 192
## 17354 Resort Hotel 270
## 17355 Resort Hotel 84
## 17356 Resort Hotel 50
## 17357 Resort Hotel 50
## 17358 Resort Hotel 45
## 17359 Resort Hotel 55
## 17360 Resort Hotel 77
## 17361 Resort Hotel 112
## 17362 Resort Hotel 55
## 17363 Resort Hotel 4
## 17364 Resort Hotel 34
## 17365 Resort Hotel 315
## 17366 Resort Hotel 80
## 17367 Resort Hotel 7
## 17368 Resort Hotel 3
## 17369 Resort Hotel 80
## 17370 Resort Hotel 83
## 17371 Resort Hotel 0
## 17372 Resort Hotel 53
## 17373 Resort Hotel 273
## 17374 Resort Hotel 69
## 17375 Resort Hotel 1
## 17376 Resort Hotel 50
## 17377 Resort Hotel 20
## 17378 Resort Hotel 182
## 17379 Resort Hotel 35
## 17380 Resort Hotel 82
## 17381 Resort Hotel 67
## 17382 Resort Hotel 21
## 17383 Resort Hotel 53
## 17384 Resort Hotel 216
## 17385 Resort Hotel 64
## 17386 Resort Hotel 246
## 17387 Resort Hotel 239
## 17388 Resort Hotel 246
## 17389 Resort Hotel 0
## 17390 Resort Hotel 0
## 17391 Resort Hotel 246
## 17392 Resort Hotel 0
## 17393 Resort Hotel 13
## 17394 Resort Hotel 0
## 17395 Resort Hotel 0
## 17396 Resort Hotel 19
## 17397 Resort Hotel 62
## 17398 Resort Hotel 1
## 17399 Resort Hotel 47
## 17400 Resort Hotel 89
## 17401 Resort Hotel 0
## 17402 Resort Hotel 239
## 17403 Resort Hotel 69
## 17404 Resort Hotel 224
## 17405 Resort Hotel 90
## 17406 Resort Hotel 207
## 17407 Resort Hotel 88
## 17408 Resort Hotel 253
## 17409 Resort Hotel 53
## 17410 Resort Hotel 4
## 17411 Resort Hotel 7
## 17412 Resort Hotel 0
## 17413 Resort Hotel 12
## 17414 Resort Hotel 59
## 17415 Resort Hotel 55
## 17416 Resort Hotel 53
## 17417 Resort Hotel 16
## 17418 Resort Hotel 7
## 17419 Resort Hotel 0
## 17420 Resort Hotel 0
## 17421 Resort Hotel 0
## 17422 Resort Hotel 3
## 17423 Resort Hotel 43
## 17424 Resort Hotel 9
## 17425 Resort Hotel 31
## 17426 Resort Hotel 11
## 17427 Resort Hotel 59
## 17428 Resort Hotel 532
## 17429 Resort Hotel 7
## 17430 Resort Hotel 24
## 17431 Resort Hotel 17
## 17432 Resort Hotel 99
## 17433 Resort Hotel 16
## 17434 Resort Hotel 7
## 17435 Resort Hotel 1
## 17436 Resort Hotel 236
## 17437 Resort Hotel 5
## 17438 Resort Hotel 31
## 17439 Resort Hotel 11
## 17440 Resort Hotel 59
## 17441 Resort Hotel 44
## 17442 Resort Hotel 33
## 17443 Resort Hotel 33
## 17444 Resort Hotel 221
## 17445 Resort Hotel 221
## 17446 Resort Hotel 39
## 17447 Resort Hotel 221
## 17448 Resort Hotel 221
## 17449 Resort Hotel 221
## 17450 Resort Hotel 221
## 17451 Resort Hotel 221
## 17452 Resort Hotel 221
## 17453 Resort Hotel 221
## 17454 Resort Hotel 221
## 17455 Resort Hotel 221
## 17456 Resort Hotel 221
## 17457 Resort Hotel 221
## 17458 Resort Hotel 221
## 17459 Resort Hotel 221
## 17460 Resort Hotel 221
## 17461 Resort Hotel 221
## 17462 Resort Hotel 221
## 17463 Resort Hotel 1
## 17464 Resort Hotel 2
## 17465 Resort Hotel 8
## 17466 Resort Hotel 3
## 17467 Resort Hotel 35
## 17468 Resort Hotel 0
## 17469 Resort Hotel 19
## 17470 Resort Hotel 49
## 17471 Resort Hotel 12
## 17472 Resort Hotel 9
## 17473 Resort Hotel 5
## 17474 Resort Hotel 283
## 17475 Resort Hotel 36
## 17476 Resort Hotel 0
## 17477 Resort Hotel 17
## 17478 Resort Hotel 16
## 17479 Resort Hotel 2
## 17480 Resort Hotel 1
## 17481 Resort Hotel 1
## 17482 Resort Hotel 0
## 17483 Resort Hotel 0
## 17484 Resort Hotel 287
## 17485 Resort Hotel 0
## 17486 Resort Hotel 277
## 17487 Resort Hotel 277
## 17488 Resort Hotel 277
## 17489 Resort Hotel 277
## 17490 Resort Hotel 277
## 17491 Resort Hotel 123
## 17492 Resort Hotel 277
## 17493 Resort Hotel 277
## 17494 Resort Hotel 0
## 17495 Resort Hotel 277
## 17496 Resort Hotel 277
## 17497 Resort Hotel 277
## 17498 Resort Hotel 277
## 17499 Resort Hotel 277
## 17500 Resort Hotel 18
## 17501 Resort Hotel 26
## 17502 Resort Hotel 110
## 17503 Resort Hotel 153
## 17504 Resort Hotel 18
## 17505 Resort Hotel 26
## 17506 Resort Hotel 18
## 17507 Resort Hotel 18
## 17508 Resort Hotel 18
## 17509 Resort Hotel 12
## 17510 Resort Hotel 13
## 17511 Resort Hotel 27
## 17512 Resort Hotel 18
## 17513 Resort Hotel 18
## 17514 Resort Hotel 18
## 17515 Resort Hotel 8
## 17516 Resort Hotel 5
## 17517 Resort Hotel 3
## 17518 Resort Hotel 5
## 17519 Resort Hotel 4
## 17520 Resort Hotel 0
## 17521 Resort Hotel 0
## 17522 Resort Hotel 10
## 17523 Resort Hotel 18
## 17524 Resort Hotel 26
## 17525 Resort Hotel 18
## 17526 Resort Hotel 11
## 17527 Resort Hotel 26
## 17528 Resort Hotel 4
## 17529 Resort Hotel 44
## 17530 Resort Hotel 2
## 17531 Resort Hotel 5
## 17532 Resort Hotel 120
## 17533 Resort Hotel 152
## 17534 Resort Hotel 44
## 17535 Resort Hotel 277
## 17536 Resort Hotel 123
## 17537 Resort Hotel 201
## 17538 Resort Hotel 38
## 17539 Resort Hotel 0
## 17540 Resort Hotel 0
## 17541 Resort Hotel 56
## 17542 Resort Hotel 22
## 17543 Resort Hotel 0
## 17544 Resort Hotel 285
## 17545 Resort Hotel 285
## 17546 Resort Hotel 287
## 17547 Resort Hotel 6
## 17548 Resort Hotel 0
## 17549 Resort Hotel 2
## 17550 Resort Hotel 193
## 17551 Resort Hotel 14
## 17552 Resort Hotel 16
## 17553 Resort Hotel 0
## 17554 Resort Hotel 0
## 17555 Resort Hotel 1
## 17556 Resort Hotel 0
## 17557 Resort Hotel 204
## 17558 Resort Hotel 0
## 17559 Resort Hotel 2
## 17560 Resort Hotel 6
## 17561 Resort Hotel 1
## 17562 Resort Hotel 286
## 17563 Resort Hotel 1
## 17564 Resort Hotel 8
## 17565 Resort Hotel 5
## 17566 Resort Hotel 10
## 17567 Resort Hotel 22
## 17568 Resort Hotel 49
## 17569 Resort Hotel 0
## 17570 Resort Hotel 1
## 17571 Resort Hotel 0
## 17572 Resort Hotel 287
## 17573 Resort Hotel 167
## 17574 Resort Hotel 287
## 17575 Resort Hotel 172
## 17576 Resort Hotel 28
## 17577 Resort Hotel 287
## 17578 Resort Hotel 12
## 17579 Resort Hotel 5
## 17580 Resort Hotel 2
## 17581 Resort Hotel 0
## 17582 Resort Hotel 5
## 17583 Resort Hotel 0
## 17584 Resort Hotel 286
## 17585 Resort Hotel 286
## 17586 Resort Hotel 287
## 17587 Resort Hotel 287
## 17588 Resort Hotel 20
## 17589 Resort Hotel 167
## 17590 Resort Hotel 4
## 17591 Resort Hotel 0
## 17592 Resort Hotel 287
## 17593 Resort Hotel 67
## 17594 Resort Hotel 0
## 17595 Resort Hotel 0
## 17596 Resort Hotel 0
## 17597 Resort Hotel 141
## 17598 Resort Hotel 141
## 17599 Resort Hotel 7
## 17600 Resort Hotel 7
## 17601 Resort Hotel 7
## 17602 Resort Hotel 53
## 17603 Resort Hotel 7
## 17604 Resort Hotel 7
## 17605 Resort Hotel 7
## 17606 Resort Hotel 287
## 17607 Resort Hotel 7
## 17608 Resort Hotel 39
## 17609 Resort Hotel 8
## 17610 Resort Hotel 127
## 17611 Resort Hotel 287
## 17612 Resort Hotel 287
## 17613 Resort Hotel 125
## 17614 Resort Hotel 287
## 17615 Resort Hotel 287
## 17616 Resort Hotel 287
## 17617 Resort Hotel 287
## 17618 Resort Hotel 3
## 17619 Resort Hotel 174
## 17620 Resort Hotel 287
## 17621 Resort Hotel 0
## 17622 Resort Hotel 287
## 17623 Resort Hotel 287
## 17624 Resort Hotel 287
## 17625 Resort Hotel 287
## 17626 Resort Hotel 7
## 17627 Resort Hotel 5
## 17628 Resort Hotel 287
## 17629 Resort Hotel 287
## 17630 Resort Hotel 287
## 17631 Resort Hotel 84
## 17632 Resort Hotel 130
## 17633 Resort Hotel 0
## 17634 Resort Hotel 287
## 17635 Resort Hotel 275
## 17636 Resort Hotel 287
## 17637 Resort Hotel 73
## 17638 Resort Hotel 7
## 17639 Resort Hotel 73
## 17640 Resort Hotel 287
## 17641 Resort Hotel 3
## 17642 Resort Hotel 287
## 17643 Resort Hotel 3
## 17644 Resort Hotel 287
## 17645 Resort Hotel 59
## 17646 Resort Hotel 287
## 17647 Resort Hotel 287
## 17648 Resort Hotel 58
## 17649 Resort Hotel 287
## 17650 Resort Hotel 287
## 17651 Resort Hotel 287
## 17652 Resort Hotel 287
## 17653 Resort Hotel 287
## 17654 Resort Hotel 286
## 17655 Resort Hotel 287
## 17656 Resort Hotel 287
## 17657 Resort Hotel 287
## 17658 Resort Hotel 287
## 17659 Resort Hotel 287
## 17660 Resort Hotel 287
## 17661 Resort Hotel 287
## 17662 Resort Hotel 287
## 17663 Resort Hotel 287
## 17664 Resort Hotel 283
## 17665 Resort Hotel 287
## 17666 Resort Hotel 287
## 17667 Resort Hotel 287
## 17668 Resort Hotel 287
## 17669 Resort Hotel 287
## 17670 Resort Hotel 286
## 17671 Resort Hotel 287
## 17672 Resort Hotel 0
## 17673 Resort Hotel 287
## 17674 Resort Hotel 287
## 17675 Resort Hotel 287
## 17676 Resort Hotel 287
## 17677 Resort Hotel 287
## 17678 Resort Hotel 287
## 17679 Resort Hotel 287
## 17680 Resort Hotel 283
## 17681 Resort Hotel 287
## 17682 Resort Hotel 287
## 17683 Resort Hotel 287
## 17684 Resort Hotel 287
## 17685 Resort Hotel 287
## 17686 Resort Hotel 287
## 17687 Resort Hotel 287
## 17688 Resort Hotel 283
## 17689 Resort Hotel 283
## 17690 Resort Hotel 287
## 17691 Resort Hotel 283
## 17692 Resort Hotel 283
## 17693 Resort Hotel 283
## 17694 Resort Hotel 283
## 17695 Resort Hotel 283
## 17696 Resort Hotel 283
## 17697 Resort Hotel 283
## 17698 Resort Hotel 283
## 17699 Resort Hotel 287
## 17700 Resort Hotel 283
## 17701 Resort Hotel 0
## 17702 Resort Hotel 2
## 17703 Resort Hotel 287
## 17704 Resort Hotel 287
## 17705 Resort Hotel 0
## 17706 Resort Hotel 1
## 17707 Resort Hotel 283
## 17708 Resort Hotel 283
## 17709 Resort Hotel 283
## 17710 Resort Hotel 283
## 17711 Resort Hotel 283
## 17712 Resort Hotel 283
## 17713 Resort Hotel 283
## 17714 Resort Hotel 283
## 17715 Resort Hotel 283
## 17716 Resort Hotel 283
## 17717 Resort Hotel 283
## 17718 Resort Hotel 287
## 17719 Resort Hotel 287
## 17720 Resort Hotel 8
## 17721 Resort Hotel 287
## 17722 Resort Hotel 73
## 17723 Resort Hotel 52
## 17724 Resort Hotel 9
## 17725 Resort Hotel 153
## 17726 Resort Hotel 0
## 17727 Resort Hotel 6
## 17728 Resort Hotel 287
## 17729 Resort Hotel 285
## 17730 Resort Hotel 168
## 17731 Resort Hotel 7
## 17732 Resort Hotel 287
## 17733 Resort Hotel 287
## 17734 Resort Hotel 287
## 17735 Resort Hotel 287
## 17736 Resort Hotel 236
## 17737 Resort Hotel 236
## 17738 Resort Hotel 287
## 17739 Resort Hotel 286
## 17740 Resort Hotel 286
## 17741 Resort Hotel 3
## 17742 Resort Hotel 286
## 17743 Resort Hotel 287
## 17744 Resort Hotel 286
## 17745 Resort Hotel 286
## 17746 Resort Hotel 16
## 17747 Resort Hotel 278
## 17748 Resort Hotel 1
## 17749 Resort Hotel 3
## 17750 Resort Hotel 0
## 17751 Resort Hotel 0
## 17752 Resort Hotel 1
## 17753 Resort Hotel 3
## 17754 Resort Hotel 0
## 17755 Resort Hotel 0
## 17756 Resort Hotel 285
## 17757 Resort Hotel 76
## 17758 Resort Hotel 92
## 17759 Resort Hotel 93
## 17760 Resort Hotel 211
## 17761 Resort Hotel 85
## 17762 Resort Hotel 0
## 17763 Resort Hotel 286
## 17764 Resort Hotel 286
## 17765 Resort Hotel 286
## 17766 Resort Hotel 6
## 17767 Resort Hotel 7
## 17768 Resort Hotel 285
## 17769 Resort Hotel 7
## 17770 Resort Hotel 0
## 17771 Resort Hotel 0
## 17772 Resort Hotel 139
## 17773 Resort Hotel 0
## 17774 Resort Hotel 0
## 17775 Resort Hotel 286
## 17776 Resort Hotel 4
## 17777 Resort Hotel 11
## 17778 Resort Hotel 0
## 17779 Resort Hotel 287
## 17780 Resort Hotel 287
## 17781 Resort Hotel 157
## 17782 Resort Hotel 4
## 17783 Resort Hotel 4
## 17784 Resort Hotel 2
## 17785 Resort Hotel 6
## 17786 Resort Hotel 7
## 17787 Resort Hotel 21
## 17788 Resort Hotel 30
## 17789 Resort Hotel 5
## 17790 Resort Hotel 6
## 17791 Resort Hotel 8
## 17792 Resort Hotel 0
## 17793 Resort Hotel 20
## 17794 Resort Hotel 0
## 17795 Resort Hotel 1
## 17796 Resort Hotel 1
## 17797 Resort Hotel 9
## 17798 Resort Hotel 1
## 17799 Resort Hotel 11
## 17800 Resort Hotel 1
## 17801 Resort Hotel 35
## 17802 Resort Hotel 9
## 17803 Resort Hotel 2
## 17804 Resort Hotel 16
## 17805 Resort Hotel 0
## 17806 Resort Hotel 0
## 17807 Resort Hotel 1
## 17808 Resort Hotel 2
## 17809 Resort Hotel 5
## 17810 Resort Hotel 1
## 17811 Resort Hotel 24
## 17812 Resort Hotel 287
## 17813 Resort Hotel 5
## 17814 Resort Hotel 0
## 17815 Resort Hotel 101
## 17816 Resort Hotel 215
## 17817 Resort Hotel 223
## 17818 Resort Hotel 215
## 17819 Resort Hotel 0
## 17820 Resort Hotel 287
## 17821 Resort Hotel 292
## 17822 Resort Hotel 292
## 17823 Resort Hotel 292
## 17824 Resort Hotel 292
## 17825 Resort Hotel 292
## 17826 Resort Hotel 292
## 17827 Resort Hotel 292
## 17828 Resort Hotel 292
## 17829 Resort Hotel 292
## 17830 Resort Hotel 292
## 17831 Resort Hotel 292
## 17832 Resort Hotel 292
## 17833 Resort Hotel 292
## 17834 Resort Hotel 292
## 17835 Resort Hotel 292
## 17836 Resort Hotel 292
## 17837 Resort Hotel 292
## 17838 Resort Hotel 292
## 17839 Resort Hotel 292
## 17840 Resort Hotel 292
## 17841 Resort Hotel 292
## 17842 Resort Hotel 292
## 17843 Resort Hotel 292
## 17844 Resort Hotel 34
## 17845 Resort Hotel 10
## 17846 Resort Hotel 8
## 17847 Resort Hotel 28
## 17848 Resort Hotel 0
## 17849 Resort Hotel 75
## 17850 Resort Hotel 36
## 17851 Resort Hotel 32
## 17852 Resort Hotel 287
## 17853 Resort Hotel 24
## 17854 Resort Hotel 33
## 17855 Resort Hotel 48
## 17856 Resort Hotel 113
## 17857 Resort Hotel 113
## 17858 Resort Hotel 113
## 17859 Resort Hotel 5
## 17860 Resort Hotel 47
## 17861 Resort Hotel 47
## 17862 Resort Hotel 5
## 17863 Resort Hotel 1
## 17864 Resort Hotel 0
## 17865 Resort Hotel 43
## 17866 Resort Hotel 25
## 17867 Resort Hotel 91
## 17868 Resort Hotel 29
## 17869 Resort Hotel 7
## 17870 Resort Hotel 7
## 17871 Resort Hotel 7
## 17872 Resort Hotel 86
## 17873 Resort Hotel 0
## 17874 Resort Hotel 0
## 17875 Resort Hotel 121
## 17876 Resort Hotel 121
## 17877 Resort Hotel 0
## 17878 Resort Hotel 0
## 17879 Resort Hotel 1
## 17880 Resort Hotel 62
## 17881 Resort Hotel 55
## 17882 Resort Hotel 11
## 17883 Resort Hotel 62
## 17884 Resort Hotel 25
## 17885 Resort Hotel 44
## 17886 Resort Hotel 10
## 17887 Resort Hotel 7
## 17888 Resort Hotel 89
## 17889 Resort Hotel 29
## 17890 Resort Hotel 44
## 17891 Resort Hotel 44
## 17892 Resort Hotel 163
## 17893 Resort Hotel 0
## 17894 Resort Hotel 163
## 17895 Resort Hotel 51
## 17896 Resort Hotel 51
## 17897 Resort Hotel 51
## 17898 Resort Hotel 52
## 17899 Resort Hotel 0
## 17900 Resort Hotel 38
## 17901 Resort Hotel 107
## 17902 Resort Hotel 105
## 17903 Resort Hotel 146
## 17904 Resort Hotel 146
## 17905 Resort Hotel 146
## 17906 Resort Hotel 0
## 17907 Resort Hotel 77
## 17908 Resort Hotel 146
## 17909 Resort Hotel 146
## 17910 Resort Hotel 108
## 17911 Resort Hotel 84
## 17912 Resort Hotel 36
## 17913 Resort Hotel 3
## 17914 Resort Hotel 4
## 17915 Resort Hotel 3
## 17916 Resort Hotel 7
## 17917 Resort Hotel 3
## 17918 Resort Hotel 4
## 17919 Resort Hotel 0
## 17920 Resort Hotel 0
## 17921 Resort Hotel 0
## 17922 Resort Hotel 1
## 17923 Resort Hotel 1
## 17924 Resort Hotel 4
## 17925 Resort Hotel 0
## 17926 Resort Hotel 1
## 17927 Resort Hotel 4
## 17928 Resort Hotel 0
## 17929 Resort Hotel 0
## 17930 Resort Hotel 188
## 17931 Resort Hotel 1
## 17932 Resort Hotel 0
## 17933 Resort Hotel 0
## 17934 Resort Hotel 48
## 17935 Resort Hotel 40
## 17936 Resort Hotel 122
## 17937 Resort Hotel 0
## 17938 Resort Hotel 0
## 17939 Resort Hotel 21
## 17940 Resort Hotel 5
## 17941 Resort Hotel 5
## 17942 Resort Hotel 1
## 17943 Resort Hotel 0
## 17944 Resort Hotel 0
## 17945 Resort Hotel 0
## 17946 Resort Hotel 0
## 17947 Resort Hotel 0
## 17948 Resort Hotel 0
## 17949 Resort Hotel 0
## 17950 Resort Hotel 5
## 17951 Resort Hotel 7
## 17952 Resort Hotel 1
## 17953 Resort Hotel 43
## 17954 Resort Hotel 41
## 17955 Resort Hotel 5
## 17956 Resort Hotel 33
## 17957 Resort Hotel 6
## 17958 Resort Hotel 0
## 17959 Resort Hotel 0
## 17960 Resort Hotel 0
## 17961 Resort Hotel 0
## 17962 Resort Hotel 101
## 17963 Resort Hotel 21
## 17964 Resort Hotel 115
## 17965 Resort Hotel 0
## 17966 Resort Hotel 0
## 17967 Resort Hotel 0
## 17968 Resort Hotel 0
## 17969 Resort Hotel 0
## 17970 Resort Hotel 1
## 17971 Resort Hotel 38
## 17972 Resort Hotel 2
## 17973 Resort Hotel 2
## 17974 Resort Hotel 7
## 17975 Resort Hotel 45
## 17976 Resort Hotel 121
## 17977 Resort Hotel 0
## 17978 Resort Hotel 9
## 17979 Resort Hotel 22
## 17980 Resort Hotel 21
## 17981 Resort Hotel 21
## 17982 Resort Hotel 289
## 17983 Resort Hotel 289
## 17984 Resort Hotel 14
## 17985 Resort Hotel 0
## 17986 Resort Hotel 6
## 17987 Resort Hotel 10
## 17988 Resort Hotel 0
## 17989 Resort Hotel 24
## 17990 Resort Hotel 0
## 17991 Resort Hotel 1
## 17992 Resort Hotel 1
## 17993 Resort Hotel 0
## 17994 Resort Hotel 0
## 17995 Resort Hotel 0
## 17996 Resort Hotel 0
## 17997 Resort Hotel 0
## 17998 Resort Hotel 0
## 17999 Resort Hotel 0
## 18000 Resort Hotel 0
## 18001 Resort Hotel 0
## 18002 Resort Hotel 0
## 18003 Resort Hotel 0
## 18004 Resort Hotel 0
## 18005 Resort Hotel 0
## 18006 Resort Hotel 1
## 18007 Resort Hotel 0
## 18008 Resort Hotel 0
## 18009 Resort Hotel 0
## 18010 Resort Hotel 1
## 18011 Resort Hotel 0
## 18012 Resort Hotel 0
## 18013 Resort Hotel 0
## 18014 Resort Hotel 0
## 18015 Resort Hotel 0
## 18016 Resort Hotel 0
## 18017 Resort Hotel 0
## 18018 Resort Hotel 0
## 18019 Resort Hotel 5
## 18020 Resort Hotel 61
## 18021 Resort Hotel 7
## 18022 Resort Hotel 1
## 18023 Resort Hotel 1
## 18024 Resort Hotel 1
## 18025 Resort Hotel 0
## 18026 Resort Hotel 5
## 18027 Resort Hotel 129
## 18028 Resort Hotel 5
## 18029 Resort Hotel 79
## 18030 Resort Hotel 79
## 18031 Resort Hotel 8
## 18032 Resort Hotel 8
## 18033 Resort Hotel 1
## 18034 Resort Hotel 88
## 18035 Resort Hotel 103
## 18036 Resort Hotel 88
## 18037 Resort Hotel 0
## 18038 Resort Hotel 115
## 18039 Resort Hotel 130
## 18040 Resort Hotel 130
## 18041 Resort Hotel 9
## 18042 Resort Hotel 9
## 18043 Resort Hotel 0
## 18044 Resort Hotel 0
## 18045 Resort Hotel 155
## 18046 Resort Hotel 9
## 18047 Resort Hotel 101
## 18048 Resort Hotel 20
## 18049 Resort Hotel 48
## 18050 Resort Hotel 48
## 18051 Resort Hotel 159
## 18052 Resort Hotel 111
## 18053 Resort Hotel 3
## 18054 Resort Hotel 3
## 18055 Resort Hotel 153
## 18056 Resort Hotel 153
## 18057 Resort Hotel 155
## 18058 Resort Hotel 154
## 18059 Resort Hotel 2
## 18060 Resort Hotel 0
## 18061 Resort Hotel 155
## 18062 Resort Hotel 153
## 18063 Resort Hotel 155
## 18064 Resort Hotel 2
## 18065 Resort Hotel 153
## 18066 Resort Hotel 4
## 18067 Resort Hotel 4
## 18068 Resort Hotel 88
## 18069 Resort Hotel 74
## 18070 Resort Hotel 1
## 18071 Resort Hotel 2
## 18072 Resort Hotel 33
## 18073 Resort Hotel 6
## 18074 Resort Hotel 17
## 18075 Resort Hotel 58
## 18076 Resort Hotel 11
## 18077 Resort Hotel 0
## 18078 Resort Hotel 1
## 18079 Resort Hotel 0
## 18080 Resort Hotel 3
## 18081 Resort Hotel 6
## 18082 Resort Hotel 5
## 18083 Resort Hotel 3
## 18084 Resort Hotel 0
## 18085 Resort Hotel 74
## 18086 Resort Hotel 0
## 18087 Resort Hotel 6
## 18088 Resort Hotel 6
## 18089 Resort Hotel 1
## 18090 Resort Hotel 4
## 18091 Resort Hotel 0
## 18092 Resort Hotel 0
## 18093 Resort Hotel 0
## 18094 Resort Hotel 4
## 18095 Resort Hotel 0
## 18096 Resort Hotel 6
## 18097 Resort Hotel 5
## 18098 Resort Hotel 4
## 18099 Resort Hotel 11
## 18100 Resort Hotel 3
## 18101 Resort Hotel 10
## 18102 Resort Hotel 113
## 18103 Resort Hotel 0
## 18104 Resort Hotel 0
## 18105 Resort Hotel 0
## 18106 Resort Hotel 1
## 18107 Resort Hotel 1
## 18108 Resort Hotel 0
## 18109 Resort Hotel 6
## 18110 Resort Hotel 1
## 18111 Resort Hotel 0
## 18112 Resort Hotel 28
## 18113 Resort Hotel 9
## 18114 Resort Hotel 21
## 18115 Resort Hotel 1
## 18116 Resort Hotel 53
## 18117 Resort Hotel 1
## 18118 Resort Hotel 0
## 18119 Resort Hotel 0
## 18120 Resort Hotel 121
## 18121 Resort Hotel 0
## 18122 Resort Hotel 3
## 18123 Resort Hotel 27
## 18124 Resort Hotel 14
## 18125 Resort Hotel 5
## 18126 Resort Hotel 29
## 18127 Resort Hotel 17
## 18128 Resort Hotel 99
## 18129 Resort Hotel 0
## 18130 Resort Hotel 29
## 18131 Resort Hotel 11
## 18132 Resort Hotel 59
## 18133 Resort Hotel 15
## 18134 Resort Hotel 45
## 18135 Resort Hotel 7
## 18136 Resort Hotel 20
## 18137 Resort Hotel 16
## 18138 Resort Hotel 1
## 18139 Resort Hotel 19
## 18140 Resort Hotel 13
## 18141 Resort Hotel 1
## 18142 Resort Hotel 4
## 18143 Resort Hotel 34
## 18144 Resort Hotel 1
## 18145 Resort Hotel 1
## 18146 Resort Hotel 269
## 18147 Resort Hotel 69
## 18148 Resort Hotel 1
## 18149 Resort Hotel 23
## 18150 Resort Hotel 23
## 18151 Resort Hotel 39
## 18152 Resort Hotel 4
## 18153 Resort Hotel 94
## 18154 Resort Hotel 18
## 18155 Resort Hotel 170
## 18156 Resort Hotel 2
## 18157 Resort Hotel 1
## 18158 Resort Hotel 2
## 18159 Resort Hotel 0
## 18160 Resort Hotel 20
## 18161 Resort Hotel 20
## 18162 Resort Hotel 20
## 18163 Resort Hotel 305
## 18164 Resort Hotel 0
## 18165 Resort Hotel 22
## 18166 Resort Hotel 13
## 18167 Resort Hotel 0
## 18168 Resort Hotel 0
## 18169 Resort Hotel 11
## 18170 Resort Hotel 31
## 18171 Resort Hotel 0
## 18172 Resort Hotel 4
## 18173 Resort Hotel 289
## 18174 Resort Hotel 289
## 18175 Resort Hotel 289
## 18176 Resort Hotel 289
## 18177 Resort Hotel 0
## 18178 Resort Hotel 1
## 18179 Resort Hotel 0
## 18180 Resort Hotel 32
## 18181 Resort Hotel 0
## 18182 Resort Hotel 0
## 18183 Resort Hotel 0
## 18184 Resort Hotel 0
## 18185 Resort Hotel 2
## 18186 Resort Hotel 3
## 18187 Resort Hotel 1
## 18188 Resort Hotel 0
## 18189 Resort Hotel 34
## 18190 Resort Hotel 6
## 18191 Resort Hotel 1
## 18192 Resort Hotel 31
## 18193 Resort Hotel 31
## 18194 Resort Hotel 65
## 18195 Resort Hotel 33
## 18196 Resort Hotel 21
## 18197 Resort Hotel 5
## 18198 Resort Hotel 109
## 18199 Resort Hotel 109
## 18200 Resort Hotel 26
## 18201 Resort Hotel 26
## 18202 Resort Hotel 39
## 18203 Resort Hotel 36
## 18204 Resort Hotel 36
## 18205 Resort Hotel 14
## 18206 Resort Hotel 89
## 18207 Resort Hotel 3
## 18208 Resort Hotel 15
## 18209 Resort Hotel 36
## 18210 Resort Hotel 16
## 18211 Resort Hotel 29
## 18212 Resort Hotel 28
## 18213 Resort Hotel 28
## 18214 Resort Hotel 30
## 18215 Resort Hotel 42
## 18216 Resort Hotel 37
## 18217 Resort Hotel 37
## 18218 Resort Hotel 37
## 18219 Resort Hotel 27
## 18220 Resort Hotel 54
## 18221 Resort Hotel 54
## 18222 Resort Hotel 24
## 18223 Resort Hotel 37
## 18224 Resort Hotel 65
## 18225 Resort Hotel 65
## 18226 Resort Hotel 30
## 18227 Resort Hotel 25
## 18228 Resort Hotel 31
## 18229 Resort Hotel 31
## 18230 Resort Hotel 26
## 18231 Resort Hotel 26
## 18232 Resort Hotel 37
## 18233 Resort Hotel 37
## 18234 Resort Hotel 31
## 18235 Resort Hotel 2
## 18236 Resort Hotel 36
## 18237 Resort Hotel 31
## 18238 Resort Hotel 35
## 18239 Resort Hotel 31
## 18240 Resort Hotel 179
## 18241 Resort Hotel 163
## 18242 Resort Hotel 0
## 18243 Resort Hotel 35
## 18244 Resort Hotel 2
## 18245 Resort Hotel 8
## 18246 Resort Hotel 35
## 18247 Resort Hotel 37
## 18248 Resort Hotel 36
## 18249 Resort Hotel 35
## 18250 Resort Hotel 36
## 18251 Resort Hotel 0
## 18252 Resort Hotel 36
## 18253 Resort Hotel 36
## 18254 Resort Hotel 36
## 18255 Resort Hotel 27
## 18256 Resort Hotel 41
## 18257 Resort Hotel 41
## 18258 Resort Hotel 31
## 18259 Resort Hotel 12
## 18260 Resort Hotel 54
## 18261 Resort Hotel 163
## 18262 Resort Hotel 1
## 18263 Resort Hotel 0
## 18264 Resort Hotel 34
## 18265 Resort Hotel 19
## 18266 Resort Hotel 36
## 18267 Resort Hotel 15
## 18268 Resort Hotel 37
## 18269 Resort Hotel 34
## 18270 Resort Hotel 25
## 18271 Resort Hotel 12
## 18272 Resort Hotel 24
## 18273 Resort Hotel 0
## 18274 Resort Hotel 0
## 18275 Resort Hotel 0
## 18276 Resort Hotel 0
## 18277 Resort Hotel 2
## 18278 Resort Hotel 1
## 18279 Resort Hotel 2
## 18280 Resort Hotel 24
## 18281 Resort Hotel 24
## 18282 Resort Hotel 24
## 18283 Resort Hotel 24
## 18284 Resort Hotel 24
## 18285 Resort Hotel 36
## 18286 Resort Hotel 24
## 18287 Resort Hotel 0
## 18288 Resort Hotel 19
## 18289 Resort Hotel 1
## 18290 Resort Hotel 0
## 18291 Resort Hotel 0
## 18292 Resort Hotel 2
## 18293 Resort Hotel 24
## 18294 Resort Hotel 1
## 18295 Resort Hotel 0
## 18296 Resort Hotel 31
## 18297 Resort Hotel 24
## 18298 Resort Hotel 31
## 18299 Resort Hotel 31
## 18300 Resort Hotel 0
## 18301 Resort Hotel 2
## 18302 Resort Hotel 3
## 18303 Resort Hotel 4
## 18304 Resort Hotel 0
## 18305 Resort Hotel 0
## 18306 Resort Hotel 0
## 18307 Resort Hotel 6
## 18308 Resort Hotel 0
## 18309 Resort Hotel 6
## 18310 Resort Hotel 2
## 18311 Resort Hotel 12
## 18312 Resort Hotel 12
## 18313 Resort Hotel 3
## 18314 Resort Hotel 24
## 18315 Resort Hotel 10
## 18316 Resort Hotel 10
## 18317 Resort Hotel 31
## 18318 Resort Hotel 26
## 18319 Resort Hotel 0
## 18320 Resort Hotel 0
## 18321 Resort Hotel 0
## 18322 Resort Hotel 105
## 18323 Resort Hotel 2
## 18324 Resort Hotel 234
## 18325 Resort Hotel 82
## 18326 Resort Hotel 82
## 18327 Resort Hotel 82
## 18328 Resort Hotel 82
## 18329 Resort Hotel 82
## 18330 Resort Hotel 82
## 18331 Resort Hotel 82
## 18332 Resort Hotel 82
## 18333 Resort Hotel 82
## 18334 Resort Hotel 82
## 18335 Resort Hotel 82
## 18336 Resort Hotel 82
## 18337 Resort Hotel 82
## 18338 Resort Hotel 82
## 18339 Resort Hotel 82
## 18340 Resort Hotel 82
## 18341 Resort Hotel 82
## 18342 Resort Hotel 82
## 18343 Resort Hotel 82
## 18344 Resort Hotel 82
## 18345 Resort Hotel 82
## 18346 Resort Hotel 82
## 18347 Resort Hotel 82
## 18348 Resort Hotel 82
## 18349 Resort Hotel 82
## 18350 Resort Hotel 82
## 18351 Resort Hotel 82
## 18352 Resort Hotel 82
## 18353 Resort Hotel 82
## 18354 Resort Hotel 82
## 18355 Resort Hotel 82
## 18356 Resort Hotel 82
## 18357 Resort Hotel 82
## 18358 Resort Hotel 82
## 18359 Resort Hotel 82
## 18360 Resort Hotel 82
## 18361 Resort Hotel 82
## 18362 Resort Hotel 82
## 18363 Resort Hotel 82
## 18364 Resort Hotel 82
## 18365 Resort Hotel 82
## 18366 Resort Hotel 82
## 18367 Resort Hotel 215
## 18368 Resort Hotel 0
## 18369 Resort Hotel 0
## 18370 Resort Hotel 0
## 18371 Resort Hotel 6
## 18372 Resort Hotel 2
## 18373 Resort Hotel 4
## 18374 Resort Hotel 5
## 18375 Resort Hotel 0
## 18376 Resort Hotel 1
## 18377 Resort Hotel 1
## 18378 Resort Hotel 1
## 18379 Resort Hotel 78
## 18380 Resort Hotel 1
## 18381 Resort Hotel 5
## 18382 Resort Hotel 2
## 18383 Resort Hotel 50
## 18384 Resort Hotel 10
## 18385 Resort Hotel 1
## 18386 Resort Hotel 1
## 18387 Resort Hotel 12
## 18388 Resort Hotel 2
## 18389 Resort Hotel 1
## 18390 Resort Hotel 11
## 18391 Resort Hotel 5
## 18392 Resort Hotel 1
## 18393 Resort Hotel 7
## 18394 Resort Hotel 6
## 18395 Resort Hotel 0
## 18396 Resort Hotel 2
## 18397 Resort Hotel 2
## 18398 Resort Hotel 0
## 18399 Resort Hotel 0
## 18400 Resort Hotel 0
## 18401 Resort Hotel 0
## 18402 Resort Hotel 2
## 18403 Resort Hotel 6
## 18404 Resort Hotel 0
## 18405 Resort Hotel 2
## 18406 Resort Hotel 6
## 18407 Resort Hotel 2
## 18408 Resort Hotel 1
## 18409 Resort Hotel 8
## 18410 Resort Hotel 4
## 18411 Resort Hotel 2
## 18412 Resort Hotel 6
## 18413 Resort Hotel 2
## 18414 Resort Hotel 4
## 18415 Resort Hotel 5
## 18416 Resort Hotel 0
## 18417 Resort Hotel 3
## 18418 Resort Hotel 4
## 18419 Resort Hotel 2
## 18420 Resort Hotel 0
## 18421 Resort Hotel 1
## 18422 Resort Hotel 2
## 18423 Resort Hotel 0
## 18424 Resort Hotel 1
## 18425 Resort Hotel 2
## 18426 Resort Hotel 0
## 18427 Resort Hotel 22
## 18428 Resort Hotel 10
## 18429 Resort Hotel 6
## 18430 Resort Hotel 6
## 18431 Resort Hotel 6
## 18432 Resort Hotel 6
## 18433 Resort Hotel 6
## 18434 Resort Hotel 289
## 18435 Resort Hotel 1
## 18436 Resort Hotel 3
## 18437 Resort Hotel 23
## 18438 Resort Hotel 27
## 18439 Resort Hotel 14
## 18440 Resort Hotel 0
## 18441 Resort Hotel 0
## 18442 Resort Hotel 0
## 18443 Resort Hotel 1
## 18444 Resort Hotel 1
## 18445 Resort Hotel 1
## 18446 Resort Hotel 1
## 18447 Resort Hotel 0
## 18448 Resort Hotel 1
## 18449 Resort Hotel 0
## 18450 Resort Hotel 1
## 18451 Resort Hotel 0
## 18452 Resort Hotel 1
## 18453 Resort Hotel 2
## 18454 Resort Hotel 5
## 18455 Resort Hotel 3
## 18456 Resort Hotel 17
## 18457 Resort Hotel 19
## 18458 Resort Hotel 20
## 18459 Resort Hotel 1
## 18460 Resort Hotel 0
## 18461 Resort Hotel 0
## 18462 Resort Hotel 0
## 18463 Resort Hotel 0
## 18464 Resort Hotel 2
## 18465 Resort Hotel 0
## 18466 Resort Hotel 2
## 18467 Resort Hotel 20
## 18468 Resort Hotel 20
## 18469 Resort Hotel 0
## 18470 Resort Hotel 0
## 18471 Resort Hotel 0
## 18472 Resort Hotel 0
## 18473 Resort Hotel 0
## 18474 Resort Hotel 0
## 18475 Resort Hotel 0
## 18476 Resort Hotel 0
## 18477 Resort Hotel 1
## 18478 Resort Hotel 6
## 18479 Resort Hotel 12
## 18480 Resort Hotel 0
## 18481 Resort Hotel 4
## 18482 Resort Hotel 0
## 18483 Resort Hotel 0
## 18484 Resort Hotel 0
## 18485 Resort Hotel 0
## 18486 Resort Hotel 1
## 18487 Resort Hotel 0
## 18488 Resort Hotel 0
## 18489 Resort Hotel 0
## 18490 Resort Hotel 1
## 18491 Resort Hotel 11
## 18492 Resort Hotel 7
## 18493 Resort Hotel 0
## 18494 Resort Hotel 69
## 18495 Resort Hotel 7
## 18496 Resort Hotel 1
## 18497 Resort Hotel 21
## 18498 Resort Hotel 21
## 18499 Resort Hotel 7
## 18500 Resort Hotel 7
## 18501 Resort Hotel 7
## 18502 Resort Hotel 1
## 18503 Resort Hotel 43
## 18504 Resort Hotel 4
## 18505 Resort Hotel 9
## 18506 Resort Hotel 2
## 18507 Resort Hotel 4
## 18508 Resort Hotel 36
## 18509 Resort Hotel 1
## 18510 Resort Hotel 6
## 18511 Resort Hotel 53
## 18512 Resort Hotel 18
## 18513 Resort Hotel 1
## 18514 Resort Hotel 4
## 18515 Resort Hotel 4
## 18516 Resort Hotel 5
## 18517 Resort Hotel 5
## 18518 Resort Hotel 44
## 18519 Resort Hotel 7
## 18520 Resort Hotel 44
## 18521 Resort Hotel 0
## 18522 Resort Hotel 4
## 18523 Resort Hotel 4
## 18524 Resort Hotel 0
## 18525 Resort Hotel 0
## 18526 Resort Hotel 26
## 18527 Resort Hotel 4
## 18528 Resort Hotel 32
## 18529 Resort Hotel 32
## 18530 Resort Hotel 10
## 18531 Resort Hotel 184
## 18532 Resort Hotel 119
## 18533 Resort Hotel 3
## 18534 Resort Hotel 5
## 18535 Resort Hotel 7
## 18536 Resort Hotel 7
## 18537 Resort Hotel 5
## 18538 Resort Hotel 13
## 18539 Resort Hotel 289
## 18540 Resort Hotel 289
## 18541 Resort Hotel 289
## 18542 Resort Hotel 289
## 18543 Resort Hotel 289
## 18544 Resort Hotel 3
## 18545 Resort Hotel 289
## 18546 Resort Hotel 289
## 18547 Resort Hotel 289
## 18548 Resort Hotel 289
## 18549 Resort Hotel 289
## 18550 Resort Hotel 289
## 18551 Resort Hotel 289
## 18552 Resort Hotel 66
## 18553 Resort Hotel 29
## 18554 Resort Hotel 43
## 18555 Resort Hotel 43
## 18556 Resort Hotel 43
## 18557 Resort Hotel 66
## 18558 Resort Hotel 1
## 18559 Resort Hotel 62
## 18560 Resort Hotel 105
## 18561 Resort Hotel 105
## 18562 Resort Hotel 105
## 18563 Resort Hotel 105
## 18564 Resort Hotel 105
## 18565 Resort Hotel 105
## 18566 Resort Hotel 105
## 18567 Resort Hotel 78
## 18568 Resort Hotel 12
## 18569 Resort Hotel 90
## 18570 Resort Hotel 11
## 18571 Resort Hotel 0
## 18572 Resort Hotel 25
## 18573 Resort Hotel 12
## 18574 Resort Hotel 2
## 18575 Resort Hotel 25
## 18576 Resort Hotel 0
## 18577 Resort Hotel 1
## 18578 Resort Hotel 44
## 18579 Resort Hotel 0
## 18580 Resort Hotel 0
## 18581 Resort Hotel 5
## 18582 Resort Hotel 5
## 18583 Resort Hotel 5
## 18584 Resort Hotel 0
## 18585 Resort Hotel 105
## 18586 Resort Hotel 11
## 18587 Resort Hotel 187
## 18588 Resort Hotel 187
## 18589 Resort Hotel 287
## 18590 Resort Hotel 287
## 18591 Resort Hotel 287
## 18592 Resort Hotel 287
## 18593 Resort Hotel 287
## 18594 Resort Hotel 287
## 18595 Resort Hotel 219
## 18596 Resort Hotel 219
## 18597 Resort Hotel 219
## 18598 Resort Hotel 216
## 18599 Resort Hotel 216
## 18600 Resort Hotel 216
## 18601 Resort Hotel 108
## 18602 Resort Hotel 108
## 18603 Resort Hotel 108
## 18604 Resort Hotel 212
## 18605 Resort Hotel 0
## 18606 Resort Hotel 0
## 18607 Resort Hotel 1
## 18608 Resort Hotel 1
## 18609 Resort Hotel 1
## 18610 Resort Hotel 112
## 18611 Resort Hotel 4
## 18612 Resort Hotel 0
## 18613 Resort Hotel 0
## 18614 Resort Hotel 0
## 18615 Resort Hotel 0
## 18616 Resort Hotel 0
## 18617 Resort Hotel 1
## 18618 Resort Hotel 3
## 18619 Resort Hotel 4
## 18620 Resort Hotel 21
## 18621 Resort Hotel 0
## 18622 Resort Hotel 0
## 18623 Resort Hotel 21
## 18624 Resort Hotel 1
## 18625 Resort Hotel 1
## 18626 Resort Hotel 1
## 18627 Resort Hotel 2
## 18628 Resort Hotel 6
## 18629 Resort Hotel 1
## 18630 Resort Hotel 1
## 18631 Resort Hotel 2
## 18632 Resort Hotel 1
## 18633 Resort Hotel 1
## 18634 Resort Hotel 6
## 18635 Resort Hotel 5
## 18636 Resort Hotel 1
## 18637 Resort Hotel 1
## 18638 Resort Hotel 0
## 18639 Resort Hotel 0
## 18640 Resort Hotel 0
## 18641 Resort Hotel 19
## 18642 Resort Hotel 0
## 18643 Resort Hotel 1
## 18644 Resort Hotel 27
## 18645 Resort Hotel 21
## 18646 Resort Hotel 0
## 18647 Resort Hotel 0
## 18648 Resort Hotel 0
## 18649 Resort Hotel 0
## 18650 Resort Hotel 2
## 18651 Resort Hotel 1
## 18652 Resort Hotel 13
## 18653 Resort Hotel 7
## 18654 Resort Hotel 158
## 18655 Resort Hotel 5
## 18656 Resort Hotel 5
## 18657 Resort Hotel 6
## 18658 Resort Hotel 4
## 18659 Resort Hotel 0
## 18660 Resort Hotel 5
## 18661 Resort Hotel 5
## 18662 Resort Hotel 0
## 18663 Resort Hotel 1
## 18664 Resort Hotel 6
## 18665 Resort Hotel 2
## 18666 Resort Hotel 4
## 18667 Resort Hotel 0
## 18668 Resort Hotel 2
## 18669 Resort Hotel 6
## 18670 Resort Hotel 0
## 18671 Resort Hotel 0
## 18672 Resort Hotel 0
## 18673 Resort Hotel 0
## 18674 Resort Hotel 0
## 18675 Resort Hotel 0
## 18676 Resort Hotel 4
## 18677 Resort Hotel 3
## 18678 Resort Hotel 14
## 18679 Resort Hotel 273
## 18680 Resort Hotel 273
## 18681 Resort Hotel 26
## 18682 Resort Hotel 0
## 18683 Resort Hotel 15
## 18684 Resort Hotel 15
## 18685 Resort Hotel 15
## 18686 Resort Hotel 15
## 18687 Resort Hotel 15
## 18688 Resort Hotel 47
## 18689 Resort Hotel 0
## 18690 Resort Hotel 111
## 18691 Resort Hotel 1
## 18692 Resort Hotel 1
## 18693 Resort Hotel 40
## 18694 Resort Hotel 40
## 18695 Resort Hotel 2
## 18696 Resort Hotel 1
## 18697 Resort Hotel 5
## 18698 Resort Hotel 12
## 18699 Resort Hotel 7
## 18700 Resort Hotel 0
## 18701 Resort Hotel 1
## 18702 Resort Hotel 55
## 18703 Resort Hotel 11
## 18704 Resort Hotel 15
## 18705 Resort Hotel 27
## 18706 Resort Hotel 17
## 18707 Resort Hotel 15
## 18708 Resort Hotel 0
## 18709 Resort Hotel 40
## 18710 Resort Hotel 0
## 18711 Resort Hotel 0
## 18712 Resort Hotel 5
## 18713 Resort Hotel 11
## 18714 Resort Hotel 11
## 18715 Resort Hotel 11
## 18716 Resort Hotel 7
## 18717 Resort Hotel 5
## 18718 Resort Hotel 32
## 18719 Resort Hotel 0
## 18720 Resort Hotel 0
## 18721 Resort Hotel 3
## 18722 Resort Hotel 37
## 18723 Resort Hotel 1
## 18724 Resort Hotel 1
## 18725 Resort Hotel 0
## 18726 Resort Hotel 4
## 18727 Resort Hotel 17
## 18728 Resort Hotel 1
## 18729 Resort Hotel 1
## 18730 Resort Hotel 10
## 18731 Resort Hotel 0
## 18732 Resort Hotel 1
## 18733 Resort Hotel 4
## 18734 Resort Hotel 0
## 18735 Resort Hotel 15
## 18736 Resort Hotel 0
## 18737 Resort Hotel 0
## 18738 Resort Hotel 1
## 18739 Resort Hotel 11
## 18740 Resort Hotel 2
## 18741 Resort Hotel 2
## 18742 Resort Hotel 2
## 18743 Resort Hotel 1
## 18744 Resort Hotel 1
## 18745 Resort Hotel 0
## 18746 Resort Hotel 0
## 18747 Resort Hotel 8
## 18748 Resort Hotel 0
## 18749 Resort Hotel 6
## 18750 Resort Hotel 2
## 18751 Resort Hotel 2
## 18752 Resort Hotel 15
## 18753 Resort Hotel 4
## 18754 Resort Hotel 2
## 18755 Resort Hotel 15
## 18756 Resort Hotel 10
## 18757 Resort Hotel 10
## 18758 Resort Hotel 2
## 18759 Resort Hotel 15
## 18760 Resort Hotel 17
## 18761 Resort Hotel 3
## 18762 Resort Hotel 15
## 18763 Resort Hotel 17
## 18764 Resort Hotel 15
## 18765 Resort Hotel 15
## 18766 Resort Hotel 0
## 18767 Resort Hotel 2
## 18768 Resort Hotel 1
## 18769 Resort Hotel 3
## 18770 Resort Hotel 3
## 18771 Resort Hotel 3
## 18772 Resort Hotel 4
## 18773 Resort Hotel 11
## 18774 Resort Hotel 11
## 18775 Resort Hotel 1
## 18776 Resort Hotel 11
## 18777 Resort Hotel 9
## 18778 Resort Hotel 15
## 18779 Resort Hotel 2
## 18780 Resort Hotel 4
## 18781 Resort Hotel 10
## 18782 Resort Hotel 0
## 18783 Resort Hotel 2
## 18784 Resort Hotel 11
## 18785 Resort Hotel 9
## 18786 Resort Hotel 9
## 18787 Resort Hotel 0
## 18788 Resort Hotel 1
## 18789 Resort Hotel 116
## 18790 Resort Hotel 0
## 18791 Resort Hotel 1
## 18792 Resort Hotel 1
## 18793 Resort Hotel 0
## 18794 Resort Hotel 2
## 18795 Resort Hotel 1
## 18796 Resort Hotel 0
## 18797 Resort Hotel 0
## 18798 Resort Hotel 0
## 18799 Resort Hotel 0
## 18800 Resort Hotel 0
## 18801 Resort Hotel 27
## 18802 Resort Hotel 4
## 18803 Resort Hotel 2
## 18804 Resort Hotel 2
## 18805 Resort Hotel 5
## 18806 Resort Hotel 5
## 18807 Resort Hotel 1
## 18808 Resort Hotel 7
## 18809 Resort Hotel 1
## 18810 Resort Hotel 4
## 18811 Resort Hotel 1
## 18812 Resort Hotel 8
## 18813 Resort Hotel 25
## 18814 Resort Hotel 3
## 18815 Resort Hotel 35
## 18816 Resort Hotel 12
## 18817 Resort Hotel 27
## 18818 Resort Hotel 62
## 18819 Resort Hotel 4
## 18820 Resort Hotel 8
## 18821 Resort Hotel 8
## 18822 Resort Hotel 8
## 18823 Resort Hotel 8
## 18824 Resort Hotel 8
## 18825 Resort Hotel 8
## 18826 Resort Hotel 8
## 18827 Resort Hotel 8
## 18828 Resort Hotel 4
## 18829 Resort Hotel 4
## 18830 Resort Hotel 0
## 18831 Resort Hotel 1
## 18832 Resort Hotel 220
## 18833 Resort Hotel 0
## 18834 Resort Hotel 268
## 18835 Resort Hotel 8
## 18836 Resort Hotel 8
## 18837 Resort Hotel 0
## 18838 Resort Hotel 4
## 18839 Resort Hotel 0
## 18840 Resort Hotel 0
## 18841 Resort Hotel 0
## 18842 Resort Hotel 11
## 18843 Resort Hotel 0
## 18844 Resort Hotel 6
## 18845 Resort Hotel 0
## 18846 Resort Hotel 14
## 18847 Resort Hotel 0
## 18848 Resort Hotel 25
## 18849 Resort Hotel 0
## 18850 Resort Hotel 25
## 18851 Resort Hotel 75
## 18852 Resort Hotel 0
## 18853 Resort Hotel 0
## 18854 Resort Hotel 184
## 18855 Resort Hotel 168
## 18856 Resort Hotel 0
## 18857 Resort Hotel 1
## 18858 Resort Hotel 1
## 18859 Resort Hotel 6
## 18860 Resort Hotel 69
## 18861 Resort Hotel 5
## 18862 Resort Hotel 7
## 18863 Resort Hotel 15
## 18864 Resort Hotel 0
## 18865 Resort Hotel 0
## 18866 Resort Hotel 0
## 18867 Resort Hotel 34
## 18868 Resort Hotel 0
## 18869 Resort Hotel 5
## 18870 Resort Hotel 5
## 18871 Resort Hotel 5
## 18872 Resort Hotel 0
## 18873 Resort Hotel 2
## 18874 Resort Hotel 1
## 18875 Resort Hotel 6
## 18876 Resort Hotel 159
## 18877 Resort Hotel 11
## 18878 Resort Hotel 11
## 18879 Resort Hotel 11
## 18880 Resort Hotel 11
## 18881 Resort Hotel 11
## 18882 Resort Hotel 11
## 18883 Resort Hotel 11
## 18884 Resort Hotel 159
## 18885 Resort Hotel 1
## 18886 Resort Hotel 0
## 18887 Resort Hotel 1
## 18888 Resort Hotel 8
## 18889 Resort Hotel 5
## 18890 Resort Hotel 8
## 18891 Resort Hotel 1
## 18892 Resort Hotel 25
## 18893 Resort Hotel 25
## 18894 Resort Hotel 2
## 18895 Resort Hotel 0
## 18896 Resort Hotel 24
## 18897 Resort Hotel 7
## 18898 Resort Hotel 1
## 18899 Resort Hotel 0
## 18900 Resort Hotel 0
## 18901 Resort Hotel 0
## 18902 Resort Hotel 1
## 18903 Resort Hotel 2
## 18904 Resort Hotel 0
## 18905 Resort Hotel 9
## 18906 Resort Hotel 0
## 18907 Resort Hotel 0
## 18908 Resort Hotel 0
## 18909 Resort Hotel 7
## 18910 Resort Hotel 0
## 18911 Resort Hotel 2
## 18912 Resort Hotel 1
## 18913 Resort Hotel 1
## 18914 Resort Hotel 4
## 18915 Resort Hotel 6
## 18916 Resort Hotel 0
## 18917 Resort Hotel 0
## 18918 Resort Hotel 65
## 18919 Resort Hotel 5
## 18920 Resort Hotel 9
## 18921 Resort Hotel 19
## 18922 Resort Hotel 17
## 18923 Resort Hotel 17
## 18924 Resort Hotel 20
## 18925 Resort Hotel 17
## 18926 Resort Hotel 19
## 18927 Resort Hotel 17
## 18928 Resort Hotel 11
## 18929 Resort Hotel 19
## 18930 Resort Hotel 19
## 18931 Resort Hotel 17
## 18932 Resort Hotel 19
## 18933 Resort Hotel 19
## 18934 Resort Hotel 17
## 18935 Resort Hotel 17
## 18936 Resort Hotel 17
## 18937 Resort Hotel 17
## 18938 Resort Hotel 17
## 18939 Resort Hotel 17
## 18940 Resort Hotel 17
## 18941 Resort Hotel 17
## 18942 Resort Hotel 17
## 18943 Resort Hotel 7
## 18944 Resort Hotel 1
## 18945 Resort Hotel 0
## 18946 Resort Hotel 5
## 18947 Resort Hotel 0
## 18948 Resort Hotel 0
## 18949 Resort Hotel 1
## 18950 Resort Hotel 0
## 18951 Resort Hotel 0
## 18952 Resort Hotel 0
## 18953 Resort Hotel 0
## 18954 Resort Hotel 2
## 18955 Resort Hotel 16
## 18956 Resort Hotel 17
## 18957 Resort Hotel 20
## 18958 Resort Hotel 0
## 18959 Resort Hotel 13
## 18960 Resort Hotel 0
## 18961 Resort Hotel 1
## 18962 Resort Hotel 0
## 18963 Resort Hotel 17
## 18964 Resort Hotel 2
## 18965 Resort Hotel 2
## 18966 Resort Hotel 1
## 18967 Resort Hotel 0
## 18968 Resort Hotel 4
## 18969 Resort Hotel 5
## 18970 Resort Hotel 0
## 18971 Resort Hotel 21
## 18972 Resort Hotel 16
## 18973 Resort Hotel 1
## 18974 Resort Hotel 196
## 18975 Resort Hotel 0
## 18976 Resort Hotel 9
## 18977 Resort Hotel 2
## 18978 Resort Hotel 0
## 18979 Resort Hotel 0
## 18980 Resort Hotel 1
## 18981 Resort Hotel 95
## 18982 Resort Hotel 0
## 18983 Resort Hotel 0
## 18984 Resort Hotel 6
## 18985 Resort Hotel 21
## 18986 Resort Hotel 2
## 18987 Resort Hotel 8
## 18988 Resort Hotel 15
## 18989 Resort Hotel 0
## 18990 Resort Hotel 5
## 18991 Resort Hotel 9
## 18992 Resort Hotel 125
## 18993 Resort Hotel 0
## 18994 Resort Hotel 3
## 18995 Resort Hotel 2
## 18996 Resort Hotel 2
## 18997 Resort Hotel 3
## 18998 Resort Hotel 90
## 18999 Resort Hotel 226
## 19000 Resort Hotel 254
## 19001 Resort Hotel 16
## 19002 Resort Hotel 11
## 19003 Resort Hotel 16
## 19004 Resort Hotel 7
## 19005 Resort Hotel 4
## 19006 Resort Hotel 4
## 19007 Resort Hotel 4
## 19008 Resort Hotel 4
## 19009 Resort Hotel 1
## 19010 Resort Hotel 1
## 19011 Resort Hotel 0
## 19012 Resort Hotel 16
## 19013 Resort Hotel 68
## 19014 Resort Hotel 0
## 19015 Resort Hotel 22
## 19016 Resort Hotel 15
## 19017 Resort Hotel 15
## 19018 Resort Hotel 0
## 19019 Resort Hotel 0
## 19020 Resort Hotel 5
## 19021 Resort Hotel 50
## 19022 Resort Hotel 22
## 19023 Resort Hotel 18
## 19024 Resort Hotel 17
## 19025 Resort Hotel 5
## 19026 Resort Hotel 1
## 19027 Resort Hotel 0
## 19028 Resort Hotel 32
## 19029 Resort Hotel 3
## 19030 Resort Hotel 64
## 19031 Resort Hotel 28
## 19032 Resort Hotel 46
## 19033 Resort Hotel 0
## 19034 Resort Hotel 3
## 19035 Resort Hotel 73
## 19036 Resort Hotel 0
## 19037 Resort Hotel 1
## 19038 Resort Hotel 26
## 19039 Resort Hotel 26
## 19040 Resort Hotel 87
## 19041 Resort Hotel 177
## 19042 Resort Hotel 49
## 19043 Resort Hotel 49
## 19044 Resort Hotel 174
## 19045 Resort Hotel 6
## 19046 Resort Hotel 1
## 19047 Resort Hotel 0
## 19048 Resort Hotel 0
## 19049 Resort Hotel 0
## 19050 Resort Hotel 1
## 19051 Resort Hotel 0
## 19052 Resort Hotel 0
## 19053 Resort Hotel 0
## 19054 Resort Hotel 2
## 19055 Resort Hotel 3
## 19056 Resort Hotel 120
## 19057 Resort Hotel 3
## 19058 Resort Hotel 0
## 19059 Resort Hotel 3
## 19060 Resort Hotel 11
## 19061 Resort Hotel 11
## 19062 Resort Hotel 11
## 19063 Resort Hotel 11
## 19064 Resort Hotel 11
## 19065 Resort Hotel 11
## 19066 Resort Hotel 1
## 19067 Resort Hotel 11
## 19068 Resort Hotel 17
## 19069 Resort Hotel 11
## 19070 Resort Hotel 11
## 19071 Resort Hotel 11
## 19072 Resort Hotel 8
## 19073 Resort Hotel 11
## 19074 Resort Hotel 11
## 19075 Resort Hotel 11
## 19076 Resort Hotel 11
## 19077 Resort Hotel 11
## 19078 Resort Hotel 8
## 19079 Resort Hotel 8
## 19080 Resort Hotel 11
## 19081 Resort Hotel 11
## 19082 Resort Hotel 11
## 19083 Resort Hotel 11
## 19084 Resort Hotel 11
## 19085 Resort Hotel 11
## 19086 Resort Hotel 11
## 19087 Resort Hotel 5
## 19088 Resort Hotel 1
## 19089 Resort Hotel 11
## 19090 Resort Hotel 20
## 19091 Resort Hotel 20
## 19092 Resort Hotel 26
## 19093 Resort Hotel 7
## 19094 Resort Hotel 2
## 19095 Resort Hotel 10
## 19096 Resort Hotel 12
## 19097 Resort Hotel 0
## 19098 Resort Hotel 1
## 19099 Resort Hotel 17
## 19100 Resort Hotel 0
## 19101 Resort Hotel 0
## 19102 Resort Hotel 47
## 19103 Resort Hotel 12
## 19104 Resort Hotel 12
## 19105 Resort Hotel 0
## 19106 Resort Hotel 7
## 19107 Resort Hotel 94
## 19108 Resort Hotel 2
## 19109 Resort Hotel 0
## 19110 Resort Hotel 7
## 19111 Resort Hotel 7
## 19112 Resort Hotel 18
## 19113 Resort Hotel 5
## 19114 Resort Hotel 113
## 19115 Resort Hotel 11
## 19116 Resort Hotel 2
## 19117 Resort Hotel 11
## 19118 Resort Hotel 1
## 19119 Resort Hotel 12
## 19120 Resort Hotel 19
## 19121 Resort Hotel 0
## 19122 Resort Hotel 0
## 19123 Resort Hotel 1
## 19124 Resort Hotel 23
## 19125 Resort Hotel 11
## 19126 Resort Hotel 0
## 19127 Resort Hotel 0
## 19128 Resort Hotel 11
## 19129 Resort Hotel 11
## 19130 Resort Hotel 2
## 19131 Resort Hotel 1
## 19132 Resort Hotel 18
## 19133 Resort Hotel 14
## 19134 Resort Hotel 229
## 19135 Resort Hotel 193
## 19136 Resort Hotel 2
## 19137 Resort Hotel 2
## 19138 Resort Hotel 1
## 19139 Resort Hotel 2
## 19140 Resort Hotel 133
## 19141 Resort Hotel 0
## 19142 Resort Hotel 3
## 19143 Resort Hotel 3
## 19144 Resort Hotel 1
## 19145 Resort Hotel 0
## 19146 Resort Hotel 1
## 19147 Resort Hotel 27
## 19148 Resort Hotel 9
## 19149 Resort Hotel 24
## 19150 Resort Hotel 25
## 19151 Resort Hotel 17
## 19152 Resort Hotel 6
## 19153 Resort Hotel 4
## 19154 Resort Hotel 0
## 19155 Resort Hotel 0
## 19156 Resort Hotel 2
## 19157 Resort Hotel 2
## 19158 Resort Hotel 6
## 19159 Resort Hotel 6
## 19160 Resort Hotel 6
## 19161 Resort Hotel 4
## 19162 Resort Hotel 7
## 19163 Resort Hotel 1
## 19164 Resort Hotel 1
## 19165 Resort Hotel 4
## 19166 Resort Hotel 8
## 19167 Resort Hotel 8
## 19168 Resort Hotel 0
## 19169 Resort Hotel 27
## 19170 Resort Hotel 144
## 19171 Resort Hotel 0
## 19172 Resort Hotel 0
## 19173 Resort Hotel 0
## 19174 Resort Hotel 0
## 19175 Resort Hotel 8
## 19176 Resort Hotel 9
## 19177 Resort Hotel 10
## 19178 Resort Hotel 12
## 19179 Resort Hotel 1
## 19180 Resort Hotel 0
## 19181 Resort Hotel 25
## 19182 Resort Hotel 26
## 19183 Resort Hotel 237
## 19184 Resort Hotel 26
## 19185 Resort Hotel 92
## 19186 Resort Hotel 92
## 19187 Resort Hotel 92
## 19188 Resort Hotel 92
## 19189 Resort Hotel 92
## 19190 Resort Hotel 92
## 19191 Resort Hotel 92
## 19192 Resort Hotel 92
## 19193 Resort Hotel 92
## 19194 Resort Hotel 92
## 19195 Resort Hotel 92
## 19196 Resort Hotel 92
## 19197 Resort Hotel 92
## 19198 Resort Hotel 92
## 19199 Resort Hotel 92
## 19200 Resort Hotel 92
## 19201 Resort Hotel 92
## 19202 Resort Hotel 92
## 19203 Resort Hotel 92
## 19204 Resort Hotel 92
## 19205 Resort Hotel 92
## 19206 Resort Hotel 92
## 19207 Resort Hotel 92
## 19208 Resort Hotel 92
## 19209 Resort Hotel 92
## 19210 Resort Hotel 92
## 19211 Resort Hotel 92
## 19212 Resort Hotel 92
## 19213 Resort Hotel 92
## 19214 Resort Hotel 92
## 19215 Resort Hotel 92
## 19216 Resort Hotel 92
## 19217 Resort Hotel 92
## 19218 Resort Hotel 92
## 19219 Resort Hotel 92
## 19220 Resort Hotel 92
## 19221 Resort Hotel 92
## 19222 Resort Hotel 92
## 19223 Resort Hotel 92
## 19224 Resort Hotel 92
## 19225 Resort Hotel 92
## 19226 Resort Hotel 92
## 19227 Resort Hotel 92
## 19228 Resort Hotel 92
## 19229 Resort Hotel 92
## 19230 Resort Hotel 92
## 19231 Resort Hotel 92
## 19232 Resort Hotel 92
## 19233 Resort Hotel 92
## 19234 Resort Hotel 92
## 19235 Resort Hotel 92
## 19236 Resort Hotel 92
## 19237 Resort Hotel 92
## 19238 Resort Hotel 92
## 19239 Resort Hotel 92
## 19240 Resort Hotel 3
## 19241 Resort Hotel 4
## 19242 Resort Hotel 1
## 19243 Resort Hotel 15
## 19244 Resort Hotel 0
## 19245 Resort Hotel 0
## 19246 Resort Hotel 1
## 19247 Resort Hotel 9
## 19248 Resort Hotel 0
## 19249 Resort Hotel 1
## 19250 Resort Hotel 2
## 19251 Resort Hotel 0
## 19252 Resort Hotel 0
## 19253 Resort Hotel 0
## 19254 Resort Hotel 0
## 19255 Resort Hotel 4
## 19256 Resort Hotel 7
## 19257 Resort Hotel 86
## 19258 Resort Hotel 86
## 19259 Resort Hotel 1
## 19260 Resort Hotel 1
## 19261 Resort Hotel 40
## 19262 Resort Hotel 40
## 19263 Resort Hotel 147
## 19264 Resort Hotel 14
## 19265 Resort Hotel 16
## 19266 Resort Hotel 13
## 19267 Resort Hotel 3
## 19268 Resort Hotel 7
## 19269 Resort Hotel 6
## 19270 Resort Hotel 0
## 19271 Resort Hotel 5
## 19272 Resort Hotel 23
## 19273 Resort Hotel 11
## 19274 Resort Hotel 8
## 19275 Resort Hotel 3
## 19276 Resort Hotel 17
## 19277 Resort Hotel 0
## 19278 Resort Hotel 80
## 19279 Resort Hotel 0
## 19280 Resort Hotel 0
## 19281 Resort Hotel 0
## 19282 Resort Hotel 17
## 19283 Resort Hotel 28
## 19284 Resort Hotel 318
## 19285 Resort Hotel 28
## 19286 Resort Hotel 49
## 19287 Resort Hotel 12
## 19288 Resort Hotel 1
## 19289 Resort Hotel 8
## 19290 Resort Hotel 1
## 19291 Resort Hotel 0
## 19292 Resort Hotel 1
## 19293 Resort Hotel 11
## 19294 Resort Hotel 26
## 19295 Resort Hotel 1
## 19296 Resort Hotel 1
## 19297 Resort Hotel 1
## 19298 Resort Hotel 3
## 19299 Resort Hotel 26
## 19300 Resort Hotel 4
## 19301 Resort Hotel 1
## 19302 Resort Hotel 16
## 19303 Resort Hotel 3
## 19304 Resort Hotel 17
## 19305 Resort Hotel 1
## 19306 Resort Hotel 2
## 19307 Resort Hotel 3
## 19308 Resort Hotel 69
## 19309 Resort Hotel 0
## 19310 Resort Hotel 4
## 19311 Resort Hotel 14
## 19312 Resort Hotel 2
## 19313 Resort Hotel 4
## 19314 Resort Hotel 4
## 19315 Resort Hotel 63
## 19316 Resort Hotel 3
## 19317 Resort Hotel 3
## 19318 Resort Hotel 3
## 19319 Resort Hotel 1
## 19320 Resort Hotel 36
## 19321 Resort Hotel 9
## 19322 Resort Hotel 9
## 19323 Resort Hotel 5
## 19324 Resort Hotel 12
## 19325 Resort Hotel 0
## 19326 Resort Hotel 0
## 19327 Resort Hotel 23
## 19328 Resort Hotel 0
## 19329 Resort Hotel 0
## 19330 Resort Hotel 14
## 19331 Resort Hotel 12
## 19332 Resort Hotel 30
## 19333 Resort Hotel 1
## 19334 Resort Hotel 11
## 19335 Resort Hotel 11
## 19336 Resort Hotel 2
## 19337 Resort Hotel 1
## 19338 Resort Hotel 128
## 19339 Resort Hotel 3
## 19340 Resort Hotel 0
## 19341 Resort Hotel 0
## 19342 Resort Hotel 0
## 19343 Resort Hotel 6
## 19344 Resort Hotel 13
## 19345 Resort Hotel 23
## 19346 Resort Hotel 0
## 19347 Resort Hotel 17
## 19348 Resort Hotel 2
## 19349 Resort Hotel 2
## 19350 Resort Hotel 30
## 19351 Resort Hotel 1
## 19352 Resort Hotel 17
## 19353 Resort Hotel 1
## 19354 Resort Hotel 7
## 19355 Resort Hotel 1
## 19356 Resort Hotel 19
## 19357 Resort Hotel 0
## 19358 Resort Hotel 1
## 19359 Resort Hotel 0
## 19360 Resort Hotel 0
## 19361 Resort Hotel 5
## 19362 Resort Hotel 4
## 19363 Resort Hotel 0
## 19364 Resort Hotel 16
## 19365 Resort Hotel 11
## 19366 Resort Hotel 12
## 19367 Resort Hotel 12
## 19368 Resort Hotel 12
## 19369 Resort Hotel 12
## 19370 Resort Hotel 25
## 19371 Resort Hotel 2
## 19372 Resort Hotel 19
## 19373 Resort Hotel 19
## 19374 Resort Hotel 16
## 19375 Resort Hotel 29
## 19376 Resort Hotel 79
## 19377 Resort Hotel 4
## 19378 Resort Hotel 44
## 19379 Resort Hotel 2
## 19380 Resort Hotel 1
## 19381 Resort Hotel 0
## 19382 Resort Hotel 1
## 19383 Resort Hotel 2
## 19384 Resort Hotel 0
## 19385 Resort Hotel 5
## 19386 Resort Hotel 5
## 19387 Resort Hotel 0
## 19388 Resort Hotel 0
## 19389 Resort Hotel 0
## 19390 Resort Hotel 0
## 19391 Resort Hotel 7
## 19392 Resort Hotel 7
## 19393 Resort Hotel 0
## 19394 Resort Hotel 0
## 19395 Resort Hotel 196
## 19396 Resort Hotel 196
## 19397 Resort Hotel 0
## 19398 Resort Hotel 13
## 19399 Resort Hotel 11
## 19400 Resort Hotel 11
## 19401 Resort Hotel 0
## 19402 Resort Hotel 1
## 19403 Resort Hotel 0
## 19404 Resort Hotel 0
## 19405 Resort Hotel 0
## 19406 Resort Hotel 0
## 19407 Resort Hotel 0
## 19408 Resort Hotel 0
## 19409 Resort Hotel 0
## 19410 Resort Hotel 0
## 19411 Resort Hotel 3
## 19412 Resort Hotel 0
## 19413 Resort Hotel 0
## 19414 Resort Hotel 2
## 19415 Resort Hotel 0
## 19416 Resort Hotel 1
## 19417 Resort Hotel 2
## 19418 Resort Hotel 1
## 19419 Resort Hotel 33
## 19420 Resort Hotel 105
## 19421 Resort Hotel 1
## 19422 Resort Hotel 20
## 19423 Resort Hotel 17
## 19424 Resort Hotel 0
## 19425 Resort Hotel 11
## 19426 Resort Hotel 3
## 19427 Resort Hotel 3
## 19428 Resort Hotel 15
## 19429 Resort Hotel 3
## 19430 Resort Hotel 0
## 19431 Resort Hotel 2
## 19432 Resort Hotel 4
## 19433 Resort Hotel 0
## 19434 Resort Hotel 5
## 19435 Resort Hotel 3
## 19436 Resort Hotel 0
## 19437 Resort Hotel 39
## 19438 Resort Hotel 11
## 19439 Resort Hotel 5
## 19440 Resort Hotel 3
## 19441 Resort Hotel 5
## 19442 Resort Hotel 3
## 19443 Resort Hotel 16
## 19444 Resort Hotel 0
## 19445 Resort Hotel 15
## 19446 Resort Hotel 5
## 19447 Resort Hotel 5
## 19448 Resort Hotel 0
## 19449 Resort Hotel 2
## 19450 Resort Hotel 0
## 19451 Resort Hotel 4
## 19452 Resort Hotel 9
## 19453 Resort Hotel 17
## 19454 Resort Hotel 45
## 19455 Resort Hotel 13
## 19456 Resort Hotel 12
## 19457 Resort Hotel 24
## 19458 Resort Hotel 0
## 19459 Resort Hotel 0
## 19460 Resort Hotel 0
## 19461 Resort Hotel 203
## 19462 Resort Hotel 210
## 19463 Resort Hotel 2
## 19464 Resort Hotel 202
## 19465 Resort Hotel 35
## 19466 Resort Hotel 10
## 19467 Resort Hotel 0
## 19468 Resort Hotel 0
## 19469 Resort Hotel 19
## 19470 Resort Hotel 16
## 19471 Resort Hotel 8
## 19472 Resort Hotel 5
## 19473 Resort Hotel 5
## 19474 Resort Hotel 75
## 19475 Resort Hotel 22
## 19476 Resort Hotel 46
## 19477 Resort Hotel 46
## 19478 Resort Hotel 46
## 19479 Resort Hotel 46
## 19480 Resort Hotel 0
## 19481 Resort Hotel 0
## 19482 Resort Hotel 0
## 19483 Resort Hotel 0
## 19484 Resort Hotel 2
## 19485 Resort Hotel 121
## 19486 Resort Hotel 128
## 19487 Resort Hotel 19
## 19488 Resort Hotel 1
## 19489 Resort Hotel 19
## 19490 Resort Hotel 10
## 19491 Resort Hotel 25
## 19492 Resort Hotel 0
## 19493 Resort Hotel 6
## 19494 Resort Hotel 3
## 19495 Resort Hotel 0
## 19496 Resort Hotel 7
## 19497 Resort Hotel 1
## 19498 Resort Hotel 34
## 19499 Resort Hotel 34
## 19500 Resort Hotel 34
## 19501 Resort Hotel 22
## 19502 Resort Hotel 4
## 19503 Resort Hotel 24
## 19504 Resort Hotel 11
## 19505 Resort Hotel 0
## 19506 Resort Hotel 8
## 19507 Resort Hotel 1
## 19508 Resort Hotel 13
## 19509 Resort Hotel 3
## 19510 Resort Hotel 13
## 19511 Resort Hotel 10
## 19512 Resort Hotel 1
## 19513 Resort Hotel 0
## 19514 Resort Hotel 15
## 19515 Resort Hotel 1
## 19516 Resort Hotel 20
## 19517 Resort Hotel 7
## 19518 Resort Hotel 20
## 19519 Resort Hotel 17
## 19520 Resort Hotel 0
## 19521 Resort Hotel 1
## 19522 Resort Hotel 297
## 19523 Resort Hotel 24
## 19524 Resort Hotel 139
## 19525 Resort Hotel 27
## 19526 Resort Hotel 3
## 19527 Resort Hotel 50
## 19528 Resort Hotel 12
## 19529 Resort Hotel 93
## 19530 Resort Hotel 0
## 19531 Resort Hotel 40
## 19532 Resort Hotel 40
## 19533 Resort Hotel 4
## 19534 Resort Hotel 4
## 19535 Resort Hotel 73
## 19536 Resort Hotel 138
## 19537 Resort Hotel 138
## 19538 Resort Hotel 0
## 19539 Resort Hotel 7
## 19540 Resort Hotel 3
## 19541 Resort Hotel 0
## 19542 Resort Hotel 0
## 19543 Resort Hotel 29
## 19544 Resort Hotel 20
## 19545 Resort Hotel 20
## 19546 Resort Hotel 111
## 19547 Resort Hotel 111
## 19548 Resort Hotel 14
## 19549 Resort Hotel 29
## 19550 Resort Hotel 0
## 19551 Resort Hotel 10
## 19552 Resort Hotel 24
## 19553 Resort Hotel 30
## 19554 Resort Hotel 30
## 19555 Resort Hotel 29
## 19556 Resort Hotel 2
## 19557 Resort Hotel 6
## 19558 Resort Hotel 24
## 19559 Resort Hotel 3
## 19560 Resort Hotel 1
## 19561 Resort Hotel 0
## 19562 Resort Hotel 7
## 19563 Resort Hotel 3
## 19564 Resort Hotel 13
## 19565 Resort Hotel 18
## 19566 Resort Hotel 14
## 19567 Resort Hotel 1
## 19568 Resort Hotel 14
## 19569 Resort Hotel 18
## 19570 Resort Hotel 16
## 19571 Resort Hotel 13
## 19572 Resort Hotel 28
## 19573 Resort Hotel 0
## 19574 Resort Hotel 0
## 19575 Resort Hotel 23
## 19576 Resort Hotel 14
## 19577 Resort Hotel 14
## 19578 Resort Hotel 2
## 19579 Resort Hotel 8
## 19580 Resort Hotel 1
## 19581 Resort Hotel 0
## 19582 Resort Hotel 47
## 19583 Resort Hotel 0
## 19584 Resort Hotel 1
## 19585 Resort Hotel 0
## 19586 Resort Hotel 28
## 19587 Resort Hotel 26
## 19588 Resort Hotel 29
## 19589 Resort Hotel 29
## 19590 Resort Hotel 0
## 19591 Resort Hotel 5
## 19592 Resort Hotel 37
## 19593 Resort Hotel 0
## 19594 Resort Hotel 0
## 19595 Resort Hotel 14
## 19596 Resort Hotel 1
## 19597 Resort Hotel 4
## 19598 Resort Hotel 132
## 19599 Resort Hotel 47
## 19600 Resort Hotel 26
## 19601 Resort Hotel 131
## 19602 Resort Hotel 153
## 19603 Resort Hotel 4
## 19604 Resort Hotel 4
## 19605 Resort Hotel 3
## 19606 Resort Hotel 24
## 19607 Resort Hotel 24
## 19608 Resort Hotel 29
## 19609 Resort Hotel 3
## 19610 Resort Hotel 50
## 19611 Resort Hotel 34
## 19612 Resort Hotel 131
## 19613 Resort Hotel 29
## 19614 Resort Hotel 131
## 19615 Resort Hotel 131
## 19616 Resort Hotel 8
## 19617 Resort Hotel 19
## 19618 Resort Hotel 58
## 19619 Resort Hotel 131
## 19620 Resort Hotel 131
## 19621 Resort Hotel 24
## 19622 Resort Hotel 24
## 19623 Resort Hotel 10
## 19624 Resort Hotel 146
## 19625 Resort Hotel 36
## 19626 Resort Hotel 36
## 19627 Resort Hotel 25
## 19628 Resort Hotel 138
## 19629 Resort Hotel 0
## 19630 Resort Hotel 0
## 19631 Resort Hotel 0
## 19632 Resort Hotel 0
## 19633 Resort Hotel 14
## 19634 Resort Hotel 0
## 19635 Resort Hotel 0
## 19636 Resort Hotel 69
## 19637 Resort Hotel 0
## 19638 Resort Hotel 0
## 19639 Resort Hotel 0
## 19640 Resort Hotel 3
## 19641 Resort Hotel 1
## 19642 Resort Hotel 105
## 19643 Resort Hotel 14
## 19644 Resort Hotel 24
## 19645 Resort Hotel 29
## 19646 Resort Hotel 1
## 19647 Resort Hotel 1
## 19648 Resort Hotel 0
## 19649 Resort Hotel 0
## 19650 Resort Hotel 1
## 19651 Resort Hotel 32
## 19652 Resort Hotel 118
## 19653 Resort Hotel 35
## 19654 Resort Hotel 34
## 19655 Resort Hotel 1
## 19656 Resort Hotel 45
## 19657 Resort Hotel 7
## 19658 Resort Hotel 4
## 19659 Resort Hotel 44
## 19660 Resort Hotel 25
## 19661 Resort Hotel 46
## 19662 Resort Hotel 0
## 19663 Resort Hotel 36
## 19664 Resort Hotel 0
## 19665 Resort Hotel 1
## 19666 Resort Hotel 0
## 19667 Resort Hotel 3
## 19668 Resort Hotel 23
## 19669 Resort Hotel 5
## 19670 Resort Hotel 0
## 19671 Resort Hotel 0
## 19672 Resort Hotel 0
## 19673 Resort Hotel 22
## 19674 Resort Hotel 178
## 19675 Resort Hotel 16
## 19676 Resort Hotel 33
## 19677 Resort Hotel 30
## 19678 Resort Hotel 93
## 19679 Resort Hotel 23
## 19680 Resort Hotel 28
## 19681 Resort Hotel 17
## 19682 Resort Hotel 17
## 19683 Resort Hotel 17
## 19684 Resort Hotel 7
## 19685 Resort Hotel 3
## 19686 Resort Hotel 0
## 19687 Resort Hotel 0
## 19688 Resort Hotel 6
## 19689 Resort Hotel 0
## 19690 Resort Hotel 113
## 19691 Resort Hotel 11
## 19692 Resort Hotel 0
## 19693 Resort Hotel 67
## 19694 Resort Hotel 0
## 19695 Resort Hotel 16
## 19696 Resort Hotel 131
## 19697 Resort Hotel 82
## 19698 Resort Hotel 74
## 19699 Resort Hotel 88
## 19700 Resort Hotel 304
## 19701 Resort Hotel 47
## 19702 Resort Hotel 10
## 19703 Resort Hotel 36
## 19704 Resort Hotel 42
## 19705 Resort Hotel 37
## 19706 Resort Hotel 37
## 19707 Resort Hotel 64
## 19708 Resort Hotel 70
## 19709 Resort Hotel 42
## 19710 Resort Hotel 37
## 19711 Resort Hotel 38
## 19712 Resort Hotel 90
## 19713 Resort Hotel 152
## 19714 Resort Hotel 201
## 19715 Resort Hotel 42
## 19716 Resort Hotel 61
## 19717 Resort Hotel 14
## 19718 Resort Hotel 14
## 19719 Resort Hotel 0
## 19720 Resort Hotel 21
## 19721 Resort Hotel 14
## 19722 Resort Hotel 14
## 19723 Resort Hotel 77
## 19724 Resort Hotel 13
## 19725 Resort Hotel 112
## 19726 Resort Hotel 112
## 19727 Resort Hotel 31
## 19728 Resort Hotel 112
## 19729 Resort Hotel 31
## 19730 Resort Hotel 112
## 19731 Resort Hotel 112
## 19732 Resort Hotel 112
## 19733 Resort Hotel 112
## 19734 Resort Hotel 112
## 19735 Resort Hotel 112
## 19736 Resort Hotel 6
## 19737 Resort Hotel 112
## 19738 Resort Hotel 112
## 19739 Resort Hotel 31
## 19740 Resort Hotel 112
## 19741 Resort Hotel 112
## 19742 Resort Hotel 31
## 19743 Resort Hotel 112
## 19744 Resort Hotel 112
## 19745 Resort Hotel 112
## 19746 Resort Hotel 112
## 19747 Resort Hotel 112
## 19748 Resort Hotel 112
## 19749 Resort Hotel 0
## 19750 Resort Hotel 112
## 19751 Resort Hotel 112
## 19752 Resort Hotel 112
## 19753 Resort Hotel 112
## 19754 Resort Hotel 112
## 19755 Resort Hotel 112
## 19756 Resort Hotel 31
## 19757 Resort Hotel 112
## 19758 Resort Hotel 112
## 19759 Resort Hotel 112
## 19760 Resort Hotel 70
## 19761 Resort Hotel 105
## 19762 Resort Hotel 2
## 19763 Resort Hotel 44
## 19764 Resort Hotel 12
## 19765 Resort Hotel 116
## 19766 Resort Hotel 8
## 19767 Resort Hotel 13
## 19768 Resort Hotel 17
## 19769 Resort Hotel 3
## 19770 Resort Hotel 3
## 19771 Resort Hotel 20
## 19772 Resort Hotel 41
## 19773 Resort Hotel 53
## 19774 Resort Hotel 41
## 19775 Resort Hotel 49
## 19776 Resort Hotel 41
## 19777 Resort Hotel 59
## 19778 Resort Hotel 7
## 19779 Resort Hotel 26
## 19780 Resort Hotel 11
## 19781 Resort Hotel 16
## 19782 Resort Hotel 2
## 19783 Resort Hotel 4
## 19784 Resort Hotel 16
## 19785 Resort Hotel 5
## 19786 Resort Hotel 5
## 19787 Resort Hotel 48
## 19788 Resort Hotel 71
## 19789 Resort Hotel 120
## 19790 Resort Hotel 0
## 19791 Resort Hotel 1
## 19792 Resort Hotel 1
## 19793 Resort Hotel 42
## 19794 Resort Hotel 3
## 19795 Resort Hotel 3
## 19796 Resort Hotel 3
## 19797 Resort Hotel 26
## 19798 Resort Hotel 11
## 19799 Resort Hotel 53
## 19800 Resort Hotel 2
## 19801 Resort Hotel 2
## 19802 Resort Hotel 90
## 19803 Resort Hotel 100
## 19804 Resort Hotel 9
## 19805 Resort Hotel 15
## 19806 Resort Hotel 8
## 19807 Resort Hotel 70
## 19808 Resort Hotel 0
## 19809 Resort Hotel 0
## 19810 Resort Hotel 83
## 19811 Resort Hotel 89
## 19812 Resort Hotel 0
## 19813 Resort Hotel 2
## 19814 Resort Hotel 1
## 19815 Resort Hotel 1
## 19816 Resort Hotel 1
## 19817 Resort Hotel 0
## 19818 Resort Hotel 1
## 19819 Resort Hotel 100
## 19820 Resort Hotel 8
## 19821 Resort Hotel 1
## 19822 Resort Hotel 0
## 19823 Resort Hotel 17
## 19824 Resort Hotel 23
## 19825 Resort Hotel 148
## 19826 Resort Hotel 0
## 19827 Resort Hotel 148
## 19828 Resort Hotel 21
## 19829 Resort Hotel 148
## 19830 Resort Hotel 148
## 19831 Resort Hotel 138
## 19832 Resort Hotel 2
## 19833 Resort Hotel 5
## 19834 Resort Hotel 23
## 19835 Resort Hotel 0
## 19836 Resort Hotel 23
## 19837 Resort Hotel 7
## 19838 Resort Hotel 0
## 19839 Resort Hotel 28
## 19840 Resort Hotel 14
## 19841 Resort Hotel 0
## 19842 Resort Hotel 0
## 19843 Resort Hotel 4
## 19844 Resort Hotel 38
## 19845 Resort Hotel 0
## 19846 Resort Hotel 0
## 19847 Resort Hotel 0
## 19848 Resort Hotel 11
## 19849 Resort Hotel 0
## 19850 Resort Hotel 3
## 19851 Resort Hotel 3
## 19852 Resort Hotel 0
## 19853 Resort Hotel 38
## 19854 Resort Hotel 5
## 19855 Resort Hotel 2
## 19856 Resort Hotel 38
## 19857 Resort Hotel 1
## 19858 Resort Hotel 38
## 19859 Resort Hotel 0
## 19860 Resort Hotel 16
## 19861 Resort Hotel 24
## 19862 Resort Hotel 46
## 19863 Resort Hotel 157
## 19864 Resort Hotel 5
## 19865 Resort Hotel 11
## 19866 Resort Hotel 1
## 19867 Resort Hotel 5
## 19868 Resort Hotel 0
## 19869 Resort Hotel 0
## 19870 Resort Hotel 6
## 19871 Resort Hotel 75
## 19872 Resort Hotel 0
## 19873 Resort Hotel 3
## 19874 Resort Hotel 38
## 19875 Resort Hotel 0
## 19876 Resort Hotel 25
## 19877 Resort Hotel 0
## 19878 Resort Hotel 12
## 19879 Resort Hotel 5
## 19880 Resort Hotel 0
## 19881 Resort Hotel 0
## 19882 Resort Hotel 0
## 19883 Resort Hotel 0
## 19884 Resort Hotel 0
## 19885 Resort Hotel 0
## 19886 Resort Hotel 55
## 19887 Resort Hotel 37
## 19888 Resort Hotel 5
## 19889 Resort Hotel 5
## 19890 Resort Hotel 5
## 19891 Resort Hotel 5
## 19892 Resort Hotel 5
## 19893 Resort Hotel 5
## 19894 Resort Hotel 5
## 19895 Resort Hotel 0
## 19896 Resort Hotel 39
## 19897 Resort Hotel 0
## 19898 Resort Hotel 5
## 19899 Resort Hotel 1
## 19900 Resort Hotel 0
## 19901 Resort Hotel 0
## 19902 Resort Hotel 8
## 19903 Resort Hotel 0
## 19904 Resort Hotel 0
## 19905 Resort Hotel 5
## 19906 Resort Hotel 8
## 19907 Resort Hotel 0
## 19908 Resort Hotel 7
## 19909 Resort Hotel 0
## 19910 Resort Hotel 0
## 19911 Resort Hotel 5
## 19912 Resort Hotel 32
## 19913 Resort Hotel 27
## 19914 Resort Hotel 7
## 19915 Resort Hotel 2
## 19916 Resort Hotel 38
## 19917 Resort Hotel 10
## 19918 Resort Hotel 0
## 19919 Resort Hotel 0
## 19920 Resort Hotel 37
## 19921 Resort Hotel 9
## 19922 Resort Hotel 10
## 19923 Resort Hotel 0
## 19924 Resort Hotel 61
## 19925 Resort Hotel 0
## 19926 Resort Hotel 1
## 19927 Resort Hotel 11
## 19928 Resort Hotel 38
## 19929 Resort Hotel 10
## 19930 Resort Hotel 8
## 19931 Resort Hotel 8
## 19932 Resort Hotel 20
## 19933 Resort Hotel 0
## 19934 Resort Hotel 5
## 19935 Resort Hotel 0
## 19936 Resort Hotel 129
## 19937 Resort Hotel 1
## 19938 Resort Hotel 1
## 19939 Resort Hotel 5
## 19940 Resort Hotel 12
## 19941 Resort Hotel 19
## 19942 Resort Hotel 4
## 19943 Resort Hotel 1
## 19944 Resort Hotel 64
## 19945 Resort Hotel 5
## 19946 Resort Hotel 0
## 19947 Resort Hotel 5
## 19948 Resort Hotel 31
## 19949 Resort Hotel 1
## 19950 Resort Hotel 0
## 19951 Resort Hotel 1
## 19952 Resort Hotel 9
## 19953 Resort Hotel 2
## 19954 Resort Hotel 0
## 19955 Resort Hotel 0
## 19956 Resort Hotel 2
## 19957 Resort Hotel 2
## 19958 Resort Hotel 0
## 19959 Resort Hotel 0
## 19960 Resort Hotel 47
## 19961 Resort Hotel 20
## 19962 Resort Hotel 20
## 19963 Resort Hotel 23
## 19964 Resort Hotel 11
## 19965 Resort Hotel 3
## 19966 Resort Hotel 3
## 19967 Resort Hotel 0
## 19968 Resort Hotel 0
## 19969 Resort Hotel 4
## 19970 Resort Hotel 0
## 19971 Resort Hotel 13
## 19972 Resort Hotel 0
## 19973 Resort Hotel 0
## 19974 Resort Hotel 30
## 19975 Resort Hotel 62
## 19976 Resort Hotel 30
## 19977 Resort Hotel 44
## 19978 Resort Hotel 16
## 19979 Resort Hotel 0
## 19980 Resort Hotel 0
## 19981 Resort Hotel 0
## 19982 Resort Hotel 0
## 19983 Resort Hotel 0
## 19984 Resort Hotel 0
## 19985 Resort Hotel 0
## 19986 Resort Hotel 0
## 19987 Resort Hotel 0
## 19988 Resort Hotel 0
## 19989 Resort Hotel 0
## 19990 Resort Hotel 2
## 19991 Resort Hotel 0
## 19992 Resort Hotel 6
## 19993 Resort Hotel 0
## 19994 Resort Hotel 0
## 19995 Resort Hotel 0
## 19996 Resort Hotel 0
## 19997 Resort Hotel 3
## 19998 Resort Hotel 4
## 19999 Resort Hotel 5
## 20000 Resort Hotel 5
## 20001 Resort Hotel 5
## 20002 Resort Hotel 2
## 20003 Resort Hotel 5
## 20004 Resort Hotel 0
## 20005 Resort Hotel 1
## 20006 Resort Hotel 17
## 20007 Resort Hotel 1
## 20008 Resort Hotel 1
## 20009 Resort Hotel 1
## 20010 Resort Hotel 4
## 20011 Resort Hotel 0
## 20012 Resort Hotel 0
## 20013 Resort Hotel 1
## 20014 Resort Hotel 0
## 20015 Resort Hotel 0
## 20016 Resort Hotel 1
## 20017 Resort Hotel 0
## 20018 Resort Hotel 0
## 20019 Resort Hotel 4
## 20020 Resort Hotel 7
## 20021 Resort Hotel 0
## 20022 Resort Hotel 0
## 20023 Resort Hotel 6
## 20024 Resort Hotel 54
## 20025 Resort Hotel 0
## 20026 Resort Hotel 0
## 20027 Resort Hotel 1
## 20028 Resort Hotel 0
## 20029 Resort Hotel 24
## 20030 Resort Hotel 3
## 20031 Resort Hotel 0
## 20032 Resort Hotel 0
## 20033 Resort Hotel 0
## 20034 Resort Hotel 25
## 20035 Resort Hotel 0
## 20036 Resort Hotel 8
## 20037 Resort Hotel 11
## 20038 Resort Hotel 37
## 20039 Resort Hotel 1
## 20040 Resort Hotel 5
## 20041 Resort Hotel 6
## 20042 Resort Hotel 0
## 20043 Resort Hotel 0
## 20044 Resort Hotel 2
## 20045 Resort Hotel 0
## 20046 Resort Hotel 9
## 20047 Resort Hotel 3
## 20048 Resort Hotel 3
## 20049 Resort Hotel 0
## 20050 Resort Hotel 0
## 20051 Resort Hotel 3
## 20052 Resort Hotel 3
## 20053 Resort Hotel 1
## 20054 Resort Hotel 1
## 20055 Resort Hotel 2
## 20056 Resort Hotel 7
## 20057 Resort Hotel 24
## 20058 Resort Hotel 2
## 20059 Resort Hotel 54
## 20060 Resort Hotel 0
## 20061 Resort Hotel 1
## 20062 Resort Hotel 0
## 20063 Resort Hotel 0
## 20064 Resort Hotel 124
## 20065 Resort Hotel 1
## 20066 Resort Hotel 1
## 20067 Resort Hotel 25
## 20068 Resort Hotel 14
## 20069 Resort Hotel 1
## 20070 Resort Hotel 1
## 20071 Resort Hotel 0
## 20072 Resort Hotel 1
## 20073 Resort Hotel 1
## 20074 Resort Hotel 0
## 20075 Resort Hotel 30
## 20076 Resort Hotel 20
## 20077 Resort Hotel 3
## 20078 Resort Hotel 66
## 20079 Resort Hotel 6
## 20080 Resort Hotel 8
## 20081 Resort Hotel 0
## 20082 Resort Hotel 21
## 20083 Resort Hotel 2
## 20084 Resort Hotel 0
## 20085 Resort Hotel 0
## 20086 Resort Hotel 0
## 20087 Resort Hotel 0
## 20088 Resort Hotel 0
## 20089 Resort Hotel 0
## 20090 Resort Hotel 0
## 20091 Resort Hotel 0
## 20092 Resort Hotel 0
## 20093 Resort Hotel 0
## 20094 Resort Hotel 1
## 20095 Resort Hotel 1
## 20096 Resort Hotel 0
## 20097 Resort Hotel 0
## 20098 Resort Hotel 1
## 20099 Resort Hotel 0
## 20100 Resort Hotel 3
## 20101 Resort Hotel 1
## 20102 Resort Hotel 53
## 20103 Resort Hotel 60
## 20104 Resort Hotel 42
## 20105 Resort Hotel 12
## 20106 Resort Hotel 8
## 20107 Resort Hotel 0
## 20108 Resort Hotel 9
## 20109 Resort Hotel 43
## 20110 Resort Hotel 2
## 20111 Resort Hotel 1
## 20112 Resort Hotel 2
## 20113 Resort Hotel 10
## 20114 Resort Hotel 1
## 20115 Resort Hotel 20
## 20116 Resort Hotel 15
## 20117 Resort Hotel 5
## 20118 Resort Hotel 5
## 20119 Resort Hotel 11
## 20120 Resort Hotel 19
## 20121 Resort Hotel 1
## 20122 Resort Hotel 6
## 20123 Resort Hotel 2
## 20124 Resort Hotel 16
## 20125 Resort Hotel 8
## 20126 Resort Hotel 3
## 20127 Resort Hotel 7
## 20128 Resort Hotel 3
## 20129 Resort Hotel 34
## 20130 Resort Hotel 12
## 20131 Resort Hotel 12
## 20132 Resort Hotel 11
## 20133 Resort Hotel 2
## 20134 Resort Hotel 11
## 20135 Resort Hotel 3
## 20136 Resort Hotel 0
## 20137 Resort Hotel 4
## 20138 Resort Hotel 5
## 20139 Resort Hotel 1
## 20140 Resort Hotel 1
## 20141 Resort Hotel 5
## 20142 Resort Hotel 4
## 20143 Resort Hotel 7
## 20144 Resort Hotel 7
## 20145 Resort Hotel 0
## 20146 Resort Hotel 5
## 20147 Resort Hotel 37
## 20148 Resort Hotel 1
## 20149 Resort Hotel 0
## 20150 Resort Hotel 0
## 20151 Resort Hotel 1
## 20152 Resort Hotel 0
## 20153 Resort Hotel 3
## 20154 Resort Hotel 38
## 20155 Resort Hotel 0
## 20156 Resort Hotel 0
## 20157 Resort Hotel 0
## 20158 Resort Hotel 39
## 20159 Resort Hotel 1
## 20160 Resort Hotel 0
## 20161 Resort Hotel 0
## 20162 Resort Hotel 1
## 20163 Resort Hotel 0
## 20164 Resort Hotel 4
## 20165 Resort Hotel 4
## 20166 Resort Hotel 18
## 20167 Resort Hotel 9
## 20168 Resort Hotel 5
## 20169 Resort Hotel 9
## 20170 Resort Hotel 0
## 20171 Resort Hotel 0
## 20172 Resort Hotel 3
## 20173 Resort Hotel 1
## 20174 Resort Hotel 1
## 20175 Resort Hotel 4
## 20176 Resort Hotel 1
## 20177 Resort Hotel 6
## 20178 Resort Hotel 2
## 20179 Resort Hotel 7
## 20180 Resort Hotel 4
## 20181 Resort Hotel 4
## 20182 Resort Hotel 7
## 20183 Resort Hotel 3
## 20184 Resort Hotel 1
## 20185 Resort Hotel 4
## 20186 Resort Hotel 2
## 20187 Resort Hotel 1
## 20188 Resort Hotel 0
## 20189 Resort Hotel 20
## 20190 Resort Hotel 0
## 20191 Resort Hotel 0
## 20192 Resort Hotel 0
## 20193 Resort Hotel 6
## 20194 Resort Hotel 0
## 20195 Resort Hotel 2
## 20196 Resort Hotel 0
## 20197 Resort Hotel 10
## 20198 Resort Hotel 16
## 20199 Resort Hotel 25
## 20200 Resort Hotel 25
## 20201 Resort Hotel 25
## 20202 Resort Hotel 3
## 20203 Resort Hotel 0
## 20204 Resort Hotel 0
## 20205 Resort Hotel 0
## 20206 Resort Hotel 0
## 20207 Resort Hotel 1
## 20208 Resort Hotel 16
## 20209 Resort Hotel 21
## 20210 Resort Hotel 0
## 20211 Resort Hotel 23
## 20212 Resort Hotel 23
## 20213 Resort Hotel 0
## 20214 Resort Hotel 40
## 20215 Resort Hotel 4
## 20216 Resort Hotel 6
## 20217 Resort Hotel 0
## 20218 Resort Hotel 1
## 20219 Resort Hotel 5
## 20220 Resort Hotel 16
## 20221 Resort Hotel 33
## 20222 Resort Hotel 51
## 20223 Resort Hotel 11
## 20224 Resort Hotel 1
## 20225 Resort Hotel 55
## 20226 Resort Hotel 55
## 20227 Resort Hotel 5
## 20228 Resort Hotel 5
## 20229 Resort Hotel 4
## 20230 Resort Hotel 5
## 20231 Resort Hotel 5
## 20232 Resort Hotel 2
## 20233 Resort Hotel 6
## 20234 Resort Hotel 2
## 20235 Resort Hotel 1
## 20236 Resort Hotel 0
## 20237 Resort Hotel 35
## 20238 Resort Hotel 35
## 20239 Resort Hotel 0
## 20240 Resort Hotel 0
## 20241 Resort Hotel 25
## 20242 Resort Hotel 25
## 20243 Resort Hotel 0
## 20244 Resort Hotel 0
## 20245 Resort Hotel 2
## 20246 Resort Hotel 1
## 20247 Resort Hotel 2
## 20248 Resort Hotel 2
## 20249 Resort Hotel 55
## 20250 Resort Hotel 3
## 20251 Resort Hotel 0
## 20252 Resort Hotel 0
## 20253 Resort Hotel 1
## 20254 Resort Hotel 4
## 20255 Resort Hotel 0
## 20256 Resort Hotel 7
## 20257 Resort Hotel 6
## 20258 Resort Hotel 2
## 20259 Resort Hotel 1
## 20260 Resort Hotel 0
## 20261 Resort Hotel 1
## 20262 Resort Hotel 61
## 20263 Resort Hotel 3
## 20264 Resort Hotel 3
## 20265 Resort Hotel 3
## 20266 Resort Hotel 7
## 20267 Resort Hotel 3
## 20268 Resort Hotel 3
## 20269 Resort Hotel 3
## 20270 Resort Hotel 14
## 20271 Resort Hotel 4
## 20272 Resort Hotel 1
## 20273 Resort Hotel 0
## 20274 Resort Hotel 1
## 20275 Resort Hotel 3
## 20276 Resort Hotel 32
## 20277 Resort Hotel 4
## 20278 Resort Hotel 6
## 20279 Resort Hotel 0
## 20280 Resort Hotel 6
## 20281 Resort Hotel 18
## 20282 Resort Hotel 4
## 20283 Resort Hotel 37
## 20284 Resort Hotel 37
## 20285 Resort Hotel 0
## 20286 Resort Hotel 1
## 20287 Resort Hotel 27
## 20288 Resort Hotel 0
## 20289 Resort Hotel 11
## 20290 Resort Hotel 1
## 20291 Resort Hotel 1
## 20292 Resort Hotel 7
## 20293 Resort Hotel 16
## 20294 Resort Hotel 0
## 20295 Resort Hotel 7
## 20296 Resort Hotel 2
## 20297 Resort Hotel 0
## 20298 Resort Hotel 2
## 20299 Resort Hotel 41
## 20300 Resort Hotel 12
## 20301 Resort Hotel 3
## 20302 Resort Hotel 0
## 20303 Resort Hotel 3
## 20304 Resort Hotel 10
## 20305 Resort Hotel 4
## 20306 Resort Hotel 0
## 20307 Resort Hotel 0
## 20308 Resort Hotel 0
## 20309 Resort Hotel 2
## 20310 Resort Hotel 2
## 20311 Resort Hotel 0
## 20312 Resort Hotel 2
## 20313 Resort Hotel 0
## 20314 Resort Hotel 1
## 20315 Resort Hotel 0
## 20316 Resort Hotel 17
## 20317 Resort Hotel 19
## 20318 Resort Hotel 0
## 20319 Resort Hotel 1
## 20320 Resort Hotel 11
## 20321 Resort Hotel 0
## 20322 Resort Hotel 2
## 20323 Resort Hotel 0
## 20324 Resort Hotel 1
## 20325 Resort Hotel 1
## 20326 Resort Hotel 1
## 20327 Resort Hotel 1
## 20328 Resort Hotel 0
## 20329 Resort Hotel 1
## 20330 Resort Hotel 1
## 20331 Resort Hotel 0
## 20332 Resort Hotel 2
## 20333 Resort Hotel 13
## 20334 Resort Hotel 0
## 20335 Resort Hotel 2
## 20336 Resort Hotel 2
## 20337 Resort Hotel 3
## 20338 Resort Hotel 0
## 20339 Resort Hotel 10
## 20340 Resort Hotel 10
## 20341 Resort Hotel 26
## 20342 Resort Hotel 0
## 20343 Resort Hotel 3
## 20344 Resort Hotel 153
## 20345 Resort Hotel 2
## 20346 Resort Hotel 5
## 20347 Resort Hotel 3
## 20348 Resort Hotel 17
## 20349 Resort Hotel 65
## 20350 Resort Hotel 0
## 20351 Resort Hotel 0
## 20352 Resort Hotel 0
## 20353 Resort Hotel 0
## 20354 Resort Hotel 0
## 20355 Resort Hotel 0
## 20356 Resort Hotel 2
## 20357 Resort Hotel 7
## 20358 Resort Hotel 5
## 20359 Resort Hotel 0
## 20360 Resort Hotel 2
## 20361 Resort Hotel 0
## 20362 Resort Hotel 11
## 20363 Resort Hotel 11
## 20364 Resort Hotel 6
## 20365 Resort Hotel 1
## 20366 Resort Hotel 2
## 20367 Resort Hotel 0
## 20368 Resort Hotel 1
## 20369 Resort Hotel 0
## 20370 Resort Hotel 1
## 20371 Resort Hotel 6
## 20372 Resort Hotel 1
## 20373 Resort Hotel 6
## 20374 Resort Hotel 4
## 20375 Resort Hotel 4
## 20376 Resort Hotel 0
## 20377 Resort Hotel 0
## 20378 Resort Hotel 0
## 20379 Resort Hotel 0
## 20380 Resort Hotel 0
## 20381 Resort Hotel 0
## 20382 Resort Hotel 6
## 20383 Resort Hotel 1
## 20384 Resort Hotel 0
## 20385 Resort Hotel 0
## 20386 Resort Hotel 0
## 20387 Resort Hotel 5
## 20388 Resort Hotel 2
## 20389 Resort Hotel 0
## 20390 Resort Hotel 1
## 20391 Resort Hotel 1
## 20392 Resort Hotel 0
## 20393 Resort Hotel 1
## 20394 Resort Hotel 0
## 20395 Resort Hotel 0
## 20396 Resort Hotel 4
## 20397 Resort Hotel 4
## 20398 Resort Hotel 30
## 20399 Resort Hotel 2
## 20400 Resort Hotel 3
## 20401 Resort Hotel 31
## 20402 Resort Hotel 0
## 20403 Resort Hotel 0
## 20404 Resort Hotel 0
## 20405 Resort Hotel 0
## 20406 Resort Hotel 0
## 20407 Resort Hotel 17
## 20408 Resort Hotel 7
## 20409 Resort Hotel 0
## 20410 Resort Hotel 0
## 20411 Resort Hotel 1
## 20412 Resort Hotel 1
## 20413 Resort Hotel 3
## 20414 Resort Hotel 3
## 20415 Resort Hotel 3
## 20416 Resort Hotel 0
## 20417 Resort Hotel 0
## 20418 Resort Hotel 0
## 20419 Resort Hotel 5
## 20420 Resort Hotel 1
## 20421 Resort Hotel 6
## 20422 Resort Hotel 0
## 20423 Resort Hotel 5
## 20424 Resort Hotel 6
## 20425 Resort Hotel 8
## 20426 Resort Hotel 3
## 20427 Resort Hotel 1
## 20428 Resort Hotel 3
## 20429 Resort Hotel 4
## 20430 Resort Hotel 6
## 20431 Resort Hotel 4
## 20432 Resort Hotel 2
## 20433 Resort Hotel 8
## 20434 Resort Hotel 8
## 20435 Resort Hotel 1
## 20436 Resort Hotel 1
## 20437 Resort Hotel 0
## 20438 Resort Hotel 2
## 20439 Resort Hotel 1
## 20440 Resort Hotel 16
## 20441 Resort Hotel 16
## 20442 Resort Hotel 1
## 20443 Resort Hotel 15
## 20444 Resort Hotel 0
## 20445 Resort Hotel 4
## 20446 Resort Hotel 0
## 20447 Resort Hotel 0
## 20448 Resort Hotel 159
## 20449 Resort Hotel 2
## 20450 Resort Hotel 19
## 20451 Resort Hotel 3
## 20452 Resort Hotel 303
## 20453 Resort Hotel 2
## 20454 Resort Hotel 0
## 20455 Resort Hotel 0
## 20456 Resort Hotel 1
## 20457 Resort Hotel 18
## 20458 Resort Hotel 18
## 20459 Resort Hotel 32
## 20460 Resort Hotel 10
## 20461 Resort Hotel 1
## 20462 Resort Hotel 4
## 20463 Resort Hotel 1
## 20464 Resort Hotel 106
## 20465 Resort Hotel 106
## 20466 Resort Hotel 0
## 20467 Resort Hotel 0
## 20468 Resort Hotel 0
## 20469 Resort Hotel 0
## 20470 Resort Hotel 0
## 20471 Resort Hotel 0
## 20472 Resort Hotel 16
## 20473 Resort Hotel 9
## 20474 Resort Hotel 22
## 20475 Resort Hotel 0
## 20476 Resort Hotel 14
## 20477 Resort Hotel 33
## 20478 Resort Hotel 6
## 20479 Resort Hotel 3
## 20480 Resort Hotel 1
## 20481 Resort Hotel 17
## 20482 Resort Hotel 14
## 20483 Resort Hotel 3
## 20484 Resort Hotel 3
## 20485 Resort Hotel 15
## 20486 Resort Hotel 0
## 20487 Resort Hotel 0
## 20488 Resort Hotel 5
## 20489 Resort Hotel 41
## 20490 Resort Hotel 42
## 20491 Resort Hotel 43
## 20492 Resort Hotel 42
## 20493 Resort Hotel 12
## 20494 Resort Hotel 41
## 20495 Resort Hotel 3
## 20496 Resort Hotel 26
## 20497 Resort Hotel 5
## 20498 Resort Hotel 1
## 20499 Resort Hotel 1
## 20500 Resort Hotel 1
## 20501 Resort Hotel 21
## 20502 Resort Hotel 0
## 20503 Resort Hotel 4
## 20504 Resort Hotel 59
## 20505 Resort Hotel 129
## 20506 Resort Hotel 123
## 20507 Resort Hotel 129
## 20508 Resort Hotel 0
## 20509 Resort Hotel 0
## 20510 Resort Hotel 0
## 20511 Resort Hotel 14
## 20512 Resort Hotel 1
## 20513 Resort Hotel 2
## 20514 Resort Hotel 17
## 20515 Resort Hotel 23
## 20516 Resort Hotel 0
## 20517 Resort Hotel 10
## 20518 Resort Hotel 0
## 20519 Resort Hotel 0
## 20520 Resort Hotel 2
## 20521 Resort Hotel 1
## 20522 Resort Hotel 1
## 20523 Resort Hotel 66
## 20524 Resort Hotel 67
## 20525 Resort Hotel 20
## 20526 Resort Hotel 66
## 20527 Resort Hotel 0
## 20528 Resort Hotel 0
## 20529 Resort Hotel 6
## 20530 Resort Hotel 22
## 20531 Resort Hotel 1
## 20532 Resort Hotel 39
## 20533 Resort Hotel 1
## 20534 Resort Hotel 13
## 20535 Resort Hotel 0
## 20536 Resort Hotel 4
## 20537 Resort Hotel 65
## 20538 Resort Hotel 117
## 20539 Resort Hotel 10
## 20540 Resort Hotel 0
## 20541 Resort Hotel 0
## 20542 Resort Hotel 1
## 20543 Resort Hotel 16
## 20544 Resort Hotel 13
## 20545 Resort Hotel 0
## 20546 Resort Hotel 6
## 20547 Resort Hotel 5
## 20548 Resort Hotel 4
## 20549 Resort Hotel 3
## 20550 Resort Hotel 0
## 20551 Resort Hotel 0
## 20552 Resort Hotel 0
## 20553 Resort Hotel 0
## 20554 Resort Hotel 3
## 20555 Resort Hotel 5
## 20556 Resort Hotel 1
## 20557 Resort Hotel 0
## 20558 Resort Hotel 0
## 20559 Resort Hotel 0
## 20560 Resort Hotel 92
## 20561 Resort Hotel 57
## 20562 Resort Hotel 26
## 20563 Resort Hotel 0
## 20564 Resort Hotel 0
## 20565 Resort Hotel 0
## 20566 Resort Hotel 0
## 20567 Resort Hotel 15
## 20568 Resort Hotel 81
## 20569 Resort Hotel 4
## 20570 Resort Hotel 5
## 20571 Resort Hotel 2
## 20572 Resort Hotel 2
## 20573 Resort Hotel 2
## 20574 Resort Hotel 2
## 20575 Resort Hotel 0
## 20576 Resort Hotel 0
## 20577 Resort Hotel 0
## 20578 Resort Hotel 0
## 20579 Resort Hotel 0
## 20580 Resort Hotel 0
## 20581 Resort Hotel 30
## 20582 Resort Hotel 0
## 20583 Resort Hotel 0
## 20584 Resort Hotel 1
## 20585 Resort Hotel 0
## 20586 Resort Hotel 4
## 20587 Resort Hotel 4
## 20588 Resort Hotel 17
## 20589 Resort Hotel 0
## 20590 Resort Hotel 5
## 20591 Resort Hotel 0
## 20592 Resort Hotel 0
## 20593 Resort Hotel 0
## 20594 Resort Hotel 24
## 20595 Resort Hotel 4
## 20596 Resort Hotel 0
## 20597 Resort Hotel 0
## 20598 Resort Hotel 7
## 20599 Resort Hotel 0
## 20600 Resort Hotel 21
## 20601 Resort Hotel 10
## 20602 Resort Hotel 0
## 20603 Resort Hotel 0
## 20604 Resort Hotel 0
## 20605 Resort Hotel 15
## 20606 Resort Hotel 0
## 20607 Resort Hotel 8
## 20608 Resort Hotel 6
## 20609 Resort Hotel 9
## 20610 Resort Hotel 6
## 20611 Resort Hotel 2
## 20612 Resort Hotel 11
## 20613 Resort Hotel 2
## 20614 Resort Hotel 11
## 20615 Resort Hotel 0
## 20616 Resort Hotel 7
## 20617 Resort Hotel 7
## 20618 Resort Hotel 0
## 20619 Resort Hotel 10
## 20620 Resort Hotel 11
## 20621 Resort Hotel 12
## 20622 Resort Hotel 0
## 20623 Resort Hotel 0
## 20624 Resort Hotel 0
## 20625 Resort Hotel 0
## 20626 Resort Hotel 1
## 20627 Resort Hotel 1
## 20628 Resort Hotel 5
## 20629 Resort Hotel 1
## 20630 Resort Hotel 1
## 20631 Resort Hotel 0
## 20632 Resort Hotel 3
## 20633 Resort Hotel 5
## 20634 Resort Hotel 6
## 20635 Resort Hotel 1
## 20636 Resort Hotel 9
## 20637 Resort Hotel 2
## 20638 Resort Hotel 9
## 20639 Resort Hotel 70
## 20640 Resort Hotel 4
## 20641 Resort Hotel 0
## 20642 Resort Hotel 0
## 20643 Resort Hotel 1
## 20644 Resort Hotel 0
## 20645 Resort Hotel 20
## 20646 Resort Hotel 20
## 20647 Resort Hotel 0
## 20648 Resort Hotel 0
## 20649 Resort Hotel 2
## 20650 Resort Hotel 5
## 20651 Resort Hotel 1
## 20652 Resort Hotel 0
## 20653 Resort Hotel 1
## 20654 Resort Hotel 13
## 20655 Resort Hotel 15
## 20656 Resort Hotel 25
## 20657 Resort Hotel 4
## 20658 Resort Hotel 4
## 20659 Resort Hotel 0
## 20660 Resort Hotel 12
## 20661 Resort Hotel 9
## 20662 Resort Hotel 4
## 20663 Resort Hotel 4
## 20664 Resort Hotel 0
## 20665 Resort Hotel 14
## 20666 Resort Hotel 3
## 20667 Resort Hotel 2
## 20668 Resort Hotel 1
## 20669 Resort Hotel 1
## 20670 Resort Hotel 3
## 20671 Resort Hotel 2
## 20672 Resort Hotel 2
## 20673 Resort Hotel 4
## 20674 Resort Hotel 0
## 20675 Resort Hotel 2
## 20676 Resort Hotel 3
## 20677 Resort Hotel 3
## 20678 Resort Hotel 16
## 20679 Resort Hotel 14
## 20680 Resort Hotel 16
## 20681 Resort Hotel 16
## 20682 Resort Hotel 3
## 20683 Resort Hotel 1
## 20684 Resort Hotel 13
## 20685 Resort Hotel 2
## 20686 Resort Hotel 4
## 20687 Resort Hotel 2
## 20688 Resort Hotel 21
## 20689 Resort Hotel 10
## 20690 Resort Hotel 4
## 20691 Resort Hotel 2
## 20692 Resort Hotel 9
## 20693 Resort Hotel 21
## 20694 Resort Hotel 21
## 20695 Resort Hotel 1
## 20696 Resort Hotel 0
## 20697 Resort Hotel 3
## 20698 Resort Hotel 23
## 20699 Resort Hotel 21
## 20700 Resort Hotel 10
## 20701 Resort Hotel 22
## 20702 Resort Hotel 10
## 20703 Resort Hotel 192
## 20704 Resort Hotel 0
## 20705 Resort Hotel 21
## 20706 Resort Hotel 3
## 20707 Resort Hotel 21
## 20708 Resort Hotel 10
## 20709 Resort Hotel 20
## 20710 Resort Hotel 15
## 20711 Resort Hotel 21
## 20712 Resort Hotel 53
## 20713 Resort Hotel 0
## 20714 Resort Hotel 1
## 20715 Resort Hotel 1
## 20716 Resort Hotel 1
## 20717 Resort Hotel 4
## 20718 Resort Hotel 4
## 20719 Resort Hotel 4
## 20720 Resort Hotel 3
## 20721 Resort Hotel 19
## 20722 Resort Hotel 5
## 20723 Resort Hotel 0
## 20724 Resort Hotel 21
## 20725 Resort Hotel 21
## 20726 Resort Hotel 10
## 20727 Resort Hotel 38
## 20728 Resort Hotel 7
## 20729 Resort Hotel 72
## 20730 Resort Hotel 28
## 20731 Resort Hotel 72
## 20732 Resort Hotel 52
## 20733 Resort Hotel 3
## 20734 Resort Hotel 0
## 20735 Resort Hotel 72
## 20736 Resort Hotel 4
## 20737 Resort Hotel 72
## 20738 Resort Hotel 72
## 20739 Resort Hotel 72
## 20740 Resort Hotel 72
## 20741 Resort Hotel 72
## 20742 Resort Hotel 72
## 20743 Resort Hotel 7
## 20744 Resort Hotel 72
## 20745 Resort Hotel 72
## 20746 Resort Hotel 7
## 20747 Resort Hotel 0
## 20748 Resort Hotel 72
## 20749 Resort Hotel 6
## 20750 Resort Hotel 72
## 20751 Resort Hotel 29
## 20752 Resort Hotel 29
## 20753 Resort Hotel 72
## 20754 Resort Hotel 1
## 20755 Resort Hotel 0
## 20756 Resort Hotel 2
## 20757 Resort Hotel 0
## 20758 Resort Hotel 12
## 20759 Resort Hotel 11
## 20760 Resort Hotel 4
## 20761 Resort Hotel 2
## 20762 Resort Hotel 1
## 20763 Resort Hotel 0
## 20764 Resort Hotel 0
## 20765 Resort Hotel 0
## 20766 Resort Hotel 0
## 20767 Resort Hotel 0
## 20768 Resort Hotel 1
## 20769 Resort Hotel 1
## 20770 Resort Hotel 1
## 20771 Resort Hotel 10
## 20772 Resort Hotel 6
## 20773 Resort Hotel 5
## 20774 Resort Hotel 1
## 20775 Resort Hotel 23
## 20776 Resort Hotel 23
## 20777 Resort Hotel 3
## 20778 Resort Hotel 24
## 20779 Resort Hotel 20
## 20780 Resort Hotel 26
## 20781 Resort Hotel 72
## 20782 Resort Hotel 72
## 20783 Resort Hotel 2
## 20784 Resort Hotel 1
## 20785 Resort Hotel 21
## 20786 Resort Hotel 26
## 20787 Resort Hotel 0
## 20788 Resort Hotel 21
## 20789 Resort Hotel 26
## 20790 Resort Hotel 0
## 20791 Resort Hotel 128
## 20792 Resort Hotel 2
## 20793 Resort Hotel 16
## 20794 Resort Hotel 2
## 20795 Resort Hotel 6
## 20796 Resort Hotel 2
## 20797 Resort Hotel 33
## 20798 Resort Hotel 3
## 20799 Resort Hotel 0
## 20800 Resort Hotel 0
## 20801 Resort Hotel 69
## 20802 Resort Hotel 0
## 20803 Resort Hotel 0
## 20804 Resort Hotel 0
## 20805 Resort Hotel 2
## 20806 Resort Hotel 0
## 20807 Resort Hotel 3
## 20808 Resort Hotel 23
## 20809 Resort Hotel 17
## 20810 Resort Hotel 70
## 20811 Resort Hotel 17
## 20812 Resort Hotel 0
## 20813 Resort Hotel 119
## 20814 Resort Hotel 1
## 20815 Resort Hotel 7
## 20816 Resort Hotel 0
## 20817 Resort Hotel 2
## 20818 Resort Hotel 10
## 20819 Resort Hotel 22
## 20820 Resort Hotel 1
## 20821 Resort Hotel 0
## 20822 Resort Hotel 7
## 20823 Resort Hotel 7
## 20824 Resort Hotel 7
## 20825 Resort Hotel 0
## 20826 Resort Hotel 0
## 20827 Resort Hotel 5
## 20828 Resort Hotel 7
## 20829 Resort Hotel 5
## 20830 Resort Hotel 0
## 20831 Resort Hotel 3
## 20832 Resort Hotel 0
## 20833 Resort Hotel 0
## 20834 Resort Hotel 3
## 20835 Resort Hotel 0
## 20836 Resort Hotel 92
## 20837 Resort Hotel 23
## 20838 Resort Hotel 35
## 20839 Resort Hotel 57
## 20840 Resort Hotel 6
## 20841 Resort Hotel 8
## 20842 Resort Hotel 14
## 20843 Resort Hotel 8
## 20844 Resort Hotel 48
## 20845 Resort Hotel 35
## 20846 Resort Hotel 26
## 20847 Resort Hotel 0
## 20848 Resort Hotel 0
## 20849 Resort Hotel 0
## 20850 Resort Hotel 57
## 20851 Resort Hotel 20
## 20852 Resort Hotel 27
## 20853 Resort Hotel 4
## 20854 Resort Hotel 4
## 20855 Resort Hotel 3
## 20856 Resort Hotel 2
## 20857 Resort Hotel 0
## 20858 Resort Hotel 0
## 20859 Resort Hotel 1
## 20860 Resort Hotel 22
## 20861 Resort Hotel 52
## 20862 Resort Hotel 50
## 20863 Resort Hotel 84
## 20864 Resort Hotel 2
## 20865 Resort Hotel 0
## 20866 Resort Hotel 0
## 20867 Resort Hotel 0
## 20868 Resort Hotel 15
## 20869 Resort Hotel 0
## 20870 Resort Hotel 8
## 20871 Resort Hotel 15
## 20872 Resort Hotel 22
## 20873 Resort Hotel 2
## 20874 Resort Hotel 32
## 20875 Resort Hotel 2
## 20876 Resort Hotel 2
## 20877 Resort Hotel 0
## 20878 Resort Hotel 19
## 20879 Resort Hotel 9
## 20880 Resort Hotel 0
## 20881 Resort Hotel 8
## 20882 Resort Hotel 0
## 20883 Resort Hotel 0
## 20884 Resort Hotel 0
## 20885 Resort Hotel 0
## 20886 Resort Hotel 0
## 20887 Resort Hotel 26
## 20888 Resort Hotel 2
## 20889 Resort Hotel 2
## 20890 Resort Hotel 17
## 20891 Resort Hotel 33
## 20892 Resort Hotel 1
## 20893 Resort Hotel 26
## 20894 Resort Hotel 0
## 20895 Resort Hotel 8
## 20896 Resort Hotel 4
## 20897 Resort Hotel 1
## 20898 Resort Hotel 16
## 20899 Resort Hotel 144
## 20900 Resort Hotel 23
## 20901 Resort Hotel 11
## 20902 Resort Hotel 4
## 20903 Resort Hotel 9
## 20904 Resort Hotel 1
## 20905 Resort Hotel 0
## 20906 Resort Hotel 32
## 20907 Resort Hotel 7
## 20908 Resort Hotel 7
## 20909 Resort Hotel 7
## 20910 Resort Hotel 9
## 20911 Resort Hotel 9
## 20912 Resort Hotel 0
## 20913 Resort Hotel 0
## 20914 Resort Hotel 1
## 20915 Resort Hotel 2
## 20916 Resort Hotel 3
## 20917 Resort Hotel 4
## 20918 Resort Hotel 1
## 20919 Resort Hotel 1
## 20920 Resort Hotel 1
## 20921 Resort Hotel 1
## 20922 Resort Hotel 9
## 20923 Resort Hotel 18
## 20924 Resort Hotel 3
## 20925 Resort Hotel 1
## 20926 Resort Hotel 12
## 20927 Resort Hotel 12
## 20928 Resort Hotel 0
## 20929 Resort Hotel 7
## 20930 Resort Hotel 27
## 20931 Resort Hotel 24
## 20932 Resort Hotel 7
## 20933 Resort Hotel 10
## 20934 Resort Hotel 9
## 20935 Resort Hotel 3
## 20936 Resort Hotel 13
## 20937 Resort Hotel 7
## 20938 Resort Hotel 18
## 20939 Resort Hotel 12
## 20940 Resort Hotel 4
## 20941 Resort Hotel 0
## 20942 Resort Hotel 2
## 20943 Resort Hotel 31
## 20944 Resort Hotel 4
## 20945 Resort Hotel 3
## 20946 Resort Hotel 14
## 20947 Resort Hotel 10
## 20948 Resort Hotel 2
## 20949 Resort Hotel 0
## 20950 Resort Hotel 3
## 20951 Resort Hotel 0
## 20952 Resort Hotel 1
## 20953 Resort Hotel 4
## 20954 Resort Hotel 61
## 20955 Resort Hotel 19
## 20956 Resort Hotel 2
## 20957 Resort Hotel 9
## 20958 Resort Hotel 31
## 20959 Resort Hotel 2
## 20960 Resort Hotel 3
## 20961 Resort Hotel 2
## 20962 Resort Hotel 28
## 20963 Resort Hotel 3
## 20964 Resort Hotel 8
## 20965 Resort Hotel 16
## 20966 Resort Hotel 16
## 20967 Resort Hotel 40
## 20968 Resort Hotel 10
## 20969 Resort Hotel 49
## 20970 Resort Hotel 17
## 20971 Resort Hotel 2
## 20972 Resort Hotel 1
## 20973 Resort Hotel 0
## 20974 Resort Hotel 39
## 20975 Resort Hotel 39
## 20976 Resort Hotel 1
## 20977 Resort Hotel 39
## 20978 Resort Hotel 4
## 20979 Resort Hotel 1
## 20980 Resort Hotel 0
## 20981 Resort Hotel 25
## 20982 Resort Hotel 23
## 20983 Resort Hotel 10
## 20984 Resort Hotel 0
## 20985 Resort Hotel 16
## 20986 Resort Hotel 8
## 20987 Resort Hotel 0
## 20988 Resort Hotel 1
## 20989 Resort Hotel 10
## 20990 Resort Hotel 43
## 20991 Resort Hotel 23
## 20992 Resort Hotel 10
## 20993 Resort Hotel 18
## 20994 Resort Hotel 0
## 20995 Resort Hotel 11
## 20996 Resort Hotel 23
## 20997 Resort Hotel 29
## 20998 Resort Hotel 5
## 20999 Resort Hotel 61
## 21000 Resort Hotel 1
## 21001 Resort Hotel 10
## 21002 Resort Hotel 2
## 21003 Resort Hotel 1
## 21004 Resort Hotel 16
## 21005 Resort Hotel 32
## 21006 Resort Hotel 0
## 21007 Resort Hotel 87
## 21008 Resort Hotel 3
## 21009 Resort Hotel 0
## 21010 Resort Hotel 4
## 21011 Resort Hotel 4
## 21012 Resort Hotel 4
## 21013 Resort Hotel 13
## 21014 Resort Hotel 3
## 21015 Resort Hotel 3
## 21016 Resort Hotel 3
## 21017 Resort Hotel 13
## 21018 Resort Hotel 3
## 21019 Resort Hotel 40
## 21020 Resort Hotel 37
## 21021 Resort Hotel 16
## 21022 Resort Hotel 3
## 21023 Resort Hotel 18
## 21024 Resort Hotel 3
## 21025 Resort Hotel 30
## 21026 Resort Hotel 123
## 21027 Resort Hotel 4
## 21028 Resort Hotel 5
## 21029 Resort Hotel 0
## 21030 Resort Hotel 7
## 21031 Resort Hotel 0
## 21032 Resort Hotel 9
## 21033 Resort Hotel 0
## 21034 Resort Hotel 0
## 21035 Resort Hotel 26
## 21036 Resort Hotel 1
## 21037 Resort Hotel 1
## 21038 Resort Hotel 0
## 21039 Resort Hotel 3
## 21040 Resort Hotel 5
## 21041 Resort Hotel 50
## 21042 Resort Hotel 2
## 21043 Resort Hotel 0
## 21044 Resort Hotel 83
## 21045 Resort Hotel 20
## 21046 Resort Hotel 14
## 21047 Resort Hotel 5
## 21048 Resort Hotel 0
## 21049 Resort Hotel 0
## 21050 Resort Hotel 0
## 21051 Resort Hotel 0
## 21052 Resort Hotel 0
## 21053 Resort Hotel 4
## 21054 Resort Hotel 10
## 21055 Resort Hotel 1
## 21056 Resort Hotel 0
## 21057 Resort Hotel 0
## 21058 Resort Hotel 0
## 21059 Resort Hotel 0
## 21060 Resort Hotel 0
## 21061 Resort Hotel 0
## 21062 Resort Hotel 5
## 21063 Resort Hotel 5
## 21064 Resort Hotel 1
## 21065 Resort Hotel 1
## 21066 Resort Hotel 0
## 21067 Resort Hotel 15
## 21068 Resort Hotel 1
## 21069 Resort Hotel 1
## 21070 Resort Hotel 2
## 21071 Resort Hotel 4
## 21072 Resort Hotel 13
## 21073 Resort Hotel 89
## 21074 Resort Hotel 1
## 21075 Resort Hotel 27
## 21076 Resort Hotel 40
## 21077 Resort Hotel 0
## 21078 Resort Hotel 0
## 21079 Resort Hotel 3
## 21080 Resort Hotel 10
## 21081 Resort Hotel 4
## 21082 Resort Hotel 0
## 21083 Resort Hotel 31
## 21084 Resort Hotel 31
## 21085 Resort Hotel 0
## 21086 Resort Hotel 0
## 21087 Resort Hotel 3
## 21088 Resort Hotel 0
## 21089 Resort Hotel 39
## 21090 Resort Hotel 18
## 21091 Resort Hotel 0
## 21092 Resort Hotel 0
## 21093 Resort Hotel 0
## 21094 Resort Hotel 19
## 21095 Resort Hotel 19
## 21096 Resort Hotel 0
## 21097 Resort Hotel 12
## 21098 Resort Hotel 28
## 21099 Resort Hotel 0
## 21100 Resort Hotel 28
## 21101 Resort Hotel 28
## 21102 Resort Hotel 6
## 21103 Resort Hotel 28
## 21104 Resort Hotel 28
## 21105 Resort Hotel 0
## 21106 Resort Hotel 10
## 21107 Resort Hotel 0
## 21108 Resort Hotel 0
## 21109 Resort Hotel 0
## 21110 Resort Hotel 3
## 21111 Resort Hotel 1
## 21112 Resort Hotel 7
## 21113 Resort Hotel 0
## 21114 Resort Hotel 0
## 21115 Resort Hotel 0
## 21116 Resort Hotel 0
## 21117 Resort Hotel 2
## 21118 Resort Hotel 6
## 21119 Resort Hotel 0
## 21120 Resort Hotel 1
## 21121 Resort Hotel 0
## 21122 Resort Hotel 0
## 21123 Resort Hotel 2
## 21124 Resort Hotel 2
## 21125 Resort Hotel 0
## 21126 Resort Hotel 13
## 21127 Resort Hotel 7
## 21128 Resort Hotel 6
## 21129 Resort Hotel 6
## 21130 Resort Hotel 0
## 21131 Resort Hotel 8
## 21132 Resort Hotel 33
## 21133 Resort Hotel 0
## 21134 Resort Hotel 0
## 21135 Resort Hotel 0
## 21136 Resort Hotel 1
## 21137 Resort Hotel 4
## 21138 Resort Hotel 1
## 21139 Resort Hotel 5
## 21140 Resort Hotel 5
## 21141 Resort Hotel 0
## 21142 Resort Hotel 0
## 21143 Resort Hotel 5
## 21144 Resort Hotel 71
## 21145 Resort Hotel 2
## 21146 Resort Hotel 0
## 21147 Resort Hotel 0
## 21148 Resort Hotel 29
## 21149 Resort Hotel 0
## 21150 Resort Hotel 39
## 21151 Resort Hotel 7
## 21152 Resort Hotel 29
## 21153 Resort Hotel 11
## 21154 Resort Hotel 11
## 21155 Resort Hotel 42
## 21156 Resort Hotel 4
## 21157 Resort Hotel 17
## 21158 Resort Hotel 1
## 21159 Resort Hotel 0
## 21160 Resort Hotel 35
## 21161 Resort Hotel 14
## 21162 Resort Hotel 14
## 21163 Resort Hotel 30
## 21164 Resort Hotel 6
## 21165 Resort Hotel 7
## 21166 Resort Hotel 7
## 21167 Resort Hotel 0
## 21168 Resort Hotel 24
## 21169 Resort Hotel 7
## 21170 Resort Hotel 42
## 21171 Resort Hotel 24
## 21172 Resort Hotel 0
## 21173 Resort Hotel 4
## 21174 Resort Hotel 4
## 21175 Resort Hotel 4
## 21176 Resort Hotel 4
## 21177 Resort Hotel 0
## 21178 Resort Hotel 6
## 21179 Resort Hotel 29
## 21180 Resort Hotel 0
## 21181 Resort Hotel 17
## 21182 Resort Hotel 9
## 21183 Resort Hotel 0
## 21184 Resort Hotel 1
## 21185 Resort Hotel 2
## 21186 Resort Hotel 1
## 21187 Resort Hotel 5
## 21188 Resort Hotel 1
## 21189 Resort Hotel 2
## 21190 Resort Hotel 20
## 21191 Resort Hotel 20
## 21192 Resort Hotel 14
## 21193 Resort Hotel 4
## 21194 Resort Hotel 2
## 21195 Resort Hotel 2
## 21196 Resort Hotel 3
## 21197 Resort Hotel 0
## 21198 Resort Hotel 26
## 21199 Resort Hotel 7
## 21200 Resort Hotel 25
## 21201 Resort Hotel 3
## 21202 Resort Hotel 9
## 21203 Resort Hotel 1
## 21204 Resort Hotel 1
## 21205 Resort Hotel 5
## 21206 Resort Hotel 8
## 21207 Resort Hotel 1
## 21208 Resort Hotel 3
## 21209 Resort Hotel 3
## 21210 Resort Hotel 0
## 21211 Resort Hotel 0
## 21212 Resort Hotel 1
## 21213 Resort Hotel 0
## 21214 Resort Hotel 2
## 21215 Resort Hotel 35
## 21216 Resort Hotel 0
## 21217 Resort Hotel 0
## 21218 Resort Hotel 31
## 21219 Resort Hotel 0
## 21220 Resort Hotel 37
## 21221 Resort Hotel 26
## 21222 Resort Hotel 0
## 21223 Resort Hotel 0
## 21224 Resort Hotel 2
## 21225 Resort Hotel 3
## 21226 Resort Hotel 0
## 21227 Resort Hotel 42
## 21228 Resort Hotel 0
## 21229 Resort Hotel 0
## 21230 Resort Hotel 68
## 21231 Resort Hotel 6
## 21232 Resort Hotel 5
## 21233 Resort Hotel 7
## 21234 Resort Hotel 0
## 21235 Resort Hotel 5
## 21236 Resort Hotel 4
## 21237 Resort Hotel 8
## 21238 Resort Hotel 3
## 21239 Resort Hotel 3
## 21240 Resort Hotel 0
## 21241 Resort Hotel 0
## 21242 Resort Hotel 29
## 21243 Resort Hotel 3
## 21244 Resort Hotel 29
## 21245 Resort Hotel 0
## 21246 Resort Hotel 2
## 21247 Resort Hotel 9
## 21248 Resort Hotel 0
## 21249 Resort Hotel 0
## 21250 Resort Hotel 0
## 21251 Resort Hotel 0
## 21252 Resort Hotel 0
## 21253 Resort Hotel 0
## 21254 Resort Hotel 16
## 21255 Resort Hotel 0
## 21256 Resort Hotel 0
## 21257 Resort Hotel 31
## 21258 Resort Hotel 24
## 21259 Resort Hotel 24
## 21260 Resort Hotel 1
## 21261 Resort Hotel 7
## 21262 Resort Hotel 39
## 21263 Resort Hotel 2
## 21264 Resort Hotel 13
## 21265 Resort Hotel 27
## 21266 Resort Hotel 0
## 21267 Resort Hotel 0
## 21268 Resort Hotel 4
## 21269 Resort Hotel 4
## 21270 Resort Hotel 0
## 21271 Resort Hotel 2
## 21272 Resort Hotel 6
## 21273 Resort Hotel 1
## 21274 Resort Hotel 0
## 21275 Resort Hotel 13
## 21276 Resort Hotel 36
## 21277 Resort Hotel 20
## 21278 Resort Hotel 29
## 21279 Resort Hotel 0
## 21280 Resort Hotel 0
## 21281 Resort Hotel 28
## 21282 Resort Hotel 0
## 21283 Resort Hotel 1
## 21284 Resort Hotel 0
## 21285 Resort Hotel 0
## 21286 Resort Hotel 0
## 21287 Resort Hotel 6
## 21288 Resort Hotel 6
## 21289 Resort Hotel 0
## 21290 Resort Hotel 14
## 21291 Resort Hotel 0
## 21292 Resort Hotel 0
## 21293 Resort Hotel 0
## 21294 Resort Hotel 10
## 21295 Resort Hotel 0
## 21296 Resort Hotel 0
## 21297 Resort Hotel 10
## 21298 Resort Hotel 0
## 21299 Resort Hotel 6
## 21300 Resort Hotel 12
## 21301 Resort Hotel 0
## 21302 Resort Hotel 14
## 21303 Resort Hotel 14
## 21304 Resort Hotel 14
## 21305 Resort Hotel 3
## 21306 Resort Hotel 0
## 21307 Resort Hotel 7
## 21308 Resort Hotel 0
## 21309 Resort Hotel 0
## 21310 Resort Hotel 0
## 21311 Resort Hotel 0
## 21312 Resort Hotel 0
## 21313 Resort Hotel 0
## 21314 Resort Hotel 0
## 21315 Resort Hotel 0
## 21316 Resort Hotel 0
## 21317 Resort Hotel 0
## 21318 Resort Hotel 0
## 21319 Resort Hotel 0
## 21320 Resort Hotel 42
## 21321 Resort Hotel 0
## 21322 Resort Hotel 19
## 21323 Resort Hotel 0
## 21324 Resort Hotel 0
## 21325 Resort Hotel 2
## 21326 Resort Hotel 0
## 21327 Resort Hotel 0
## 21328 Resort Hotel 0
## 21329 Resort Hotel 32
## 21330 Resort Hotel 0
## 21331 Resort Hotel 35
## 21332 Resort Hotel 8
## 21333 Resort Hotel 8
## 21334 Resort Hotel 8
## 21335 Resort Hotel 8
## 21336 Resort Hotel 0
## 21337 Resort Hotel 5
## 21338 Resort Hotel 9
## 21339 Resort Hotel 4
## 21340 Resort Hotel 2
## 21341 Resort Hotel 8
## 21342 Resort Hotel 0
## 21343 Resort Hotel 0
## 21344 Resort Hotel 0
## 21345 Resort Hotel 0
## 21346 Resort Hotel 0
## 21347 Resort Hotel 13
## 21348 Resort Hotel 0
## 21349 Resort Hotel 0
## 21350 Resort Hotel 0
## 21351 Resort Hotel 0
## 21352 Resort Hotel 30
## 21353 Resort Hotel 93
## 21354 Resort Hotel 0
## 21355 Resort Hotel 0
## 21356 Resort Hotel 47
## 21357 Resort Hotel 1
## 21358 Resort Hotel 2
## 21359 Resort Hotel 1
## 21360 Resort Hotel 33
## 21361 Resort Hotel 4
## 21362 Resort Hotel 12
## 21363 Resort Hotel 22
## 21364 Resort Hotel 11
## 21365 Resort Hotel 40
## 21366 Resort Hotel 3
## 21367 Resort Hotel 0
## 21368 Resort Hotel 2
## 21369 Resort Hotel 3
## 21370 Resort Hotel 3
## 21371 Resort Hotel 4
## 21372 Resort Hotel 45
## 21373 Resort Hotel 10
## 21374 Resort Hotel 73
## 21375 Resort Hotel 10
## 21376 Resort Hotel 0
## 21377 Resort Hotel 41
## 21378 Resort Hotel 0
## 21379 Resort Hotel 18
## 21380 Resort Hotel 1
## 21381 Resort Hotel 4
## 21382 Resort Hotel 2
## 21383 Resort Hotel 1
## 21384 Resort Hotel 30
## 21385 Resort Hotel 1
## 21386 Resort Hotel 3
## 21387 Resort Hotel 7
## 21388 Resort Hotel 9
## 21389 Resort Hotel 48
## 21390 Resort Hotel 3
## 21391 Resort Hotel 3
## 21392 Resort Hotel 10
## 21393 Resort Hotel 0
## 21394 Resort Hotel 41
## 21395 Resort Hotel 23
## 21396 Resort Hotel 10
## 21397 Resort Hotel 10
## 21398 Resort Hotel 19
## 21399 Resort Hotel 3
## 21400 Resort Hotel 6
## 21401 Resort Hotel 6
## 21402 Resort Hotel 23
## 21403 Resort Hotel 4
## 21404 Resort Hotel 33
## 21405 Resort Hotel 43
## 21406 Resort Hotel 10
## 21407 Resort Hotel 28
## 21408 Resort Hotel 38
## 21409 Resort Hotel 3
## 21410 Resort Hotel 3
## 21411 Resort Hotel 3
## 21412 Resort Hotel 3
## 21413 Resort Hotel 1
## 21414 Resort Hotel 5
## 21415 Resort Hotel 3
## 21416 Resort Hotel 3
## 21417 Resort Hotel 11
## 21418 Resort Hotel 11
## 21419 Resort Hotel 5
## 21420 Resort Hotel 6
## 21421 Resort Hotel 18
## 21422 Resort Hotel 3
## 21423 Resort Hotel 3
## 21424 Resort Hotel 3
## 21425 Resort Hotel 40
## 21426 Resort Hotel 30
## 21427 Resort Hotel 34
## 21428 Resort Hotel 0
## 21429 Resort Hotel 5
## 21430 Resort Hotel 1
## 21431 Resort Hotel 11
## 21432 Resort Hotel 5
## 21433 Resort Hotel 2
## 21434 Resort Hotel 4
## 21435 Resort Hotel 14
## 21436 Resort Hotel 4
## 21437 Resort Hotel 18
## 21438 Resort Hotel 2
## 21439 Resort Hotel 45
## 21440 Resort Hotel 45
## 21441 Resort Hotel 24
## 21442 Resort Hotel 1
## 21443 Resort Hotel 1
## 21444 Resort Hotel 16
## 21445 Resort Hotel 12
## 21446 Resort Hotel 17
## 21447 Resort Hotel 30
## 21448 Resort Hotel 4
## 21449 Resort Hotel 15
## 21450 Resort Hotel 53
## 21451 Resort Hotel 89
## 21452 Resort Hotel 16
## 21453 Resort Hotel 17
## 21454 Resort Hotel 38
## 21455 Resort Hotel 17
## 21456 Resort Hotel 16
## 21457 Resort Hotel 17
## 21458 Resort Hotel 44
## 21459 Resort Hotel 17
## 21460 Resort Hotel 35
## 21461 Resort Hotel 4
## 21462 Resort Hotel 4
## 21463 Resort Hotel 9
## 21464 Resort Hotel 10
## 21465 Resort Hotel 12
## 21466 Resort Hotel 4
## 21467 Resort Hotel 3
## 21468 Resort Hotel 9
## 21469 Resort Hotel 24
## 21470 Resort Hotel 24
## 21471 Resort Hotel 5
## 21472 Resort Hotel 7
## 21473 Resort Hotel 53
## 21474 Resort Hotel 8
## 21475 Resort Hotel 8
## 21476 Resort Hotel 42
## 21477 Resort Hotel 102
## 21478 Resort Hotel 91
## 21479 Resort Hotel 28
## 21480 Resort Hotel 0
## 21481 Resort Hotel 38
## 21482 Resort Hotel 23
## 21483 Resort Hotel 3
## 21484 Resort Hotel 5
## 21485 Resort Hotel 12
## 21486 Resort Hotel 29
## 21487 Resort Hotel 3
## 21488 Resort Hotel 0
## 21489 Resort Hotel 18
## 21490 Resort Hotel 2
## 21491 Resort Hotel 2
## 21492 Resort Hotel 0
## 21493 Resort Hotel 58
## 21494 Resort Hotel 9
## 21495 Resort Hotel 0
## 21496 Resort Hotel 0
## 21497 Resort Hotel 0
## 21498 Resort Hotel 0
## 21499 Resort Hotel 0
## 21500 Resort Hotel 0
## 21501 Resort Hotel 0
## 21502 Resort Hotel 0
## 21503 Resort Hotel 6
## 21504 Resort Hotel 0
## 21505 Resort Hotel 0
## 21506 Resort Hotel 1
## 21507 Resort Hotel 0
## 21508 Resort Hotel 1
## 21509 Resort Hotel 6
## 21510 Resort Hotel 1
## 21511 Resort Hotel 22
## 21512 Resort Hotel 0
## 21513 Resort Hotel 83
## 21514 Resort Hotel 17
## 21515 Resort Hotel 1
## 21516 Resort Hotel 38
## 21517 Resort Hotel 38
## 21518 Resort Hotel 14
## 21519 Resort Hotel 19
## 21520 Resort Hotel 88
## 21521 Resort Hotel 22
## 21522 Resort Hotel 28
## 21523 Resort Hotel 20
## 21524 Resort Hotel 42
## 21525 Resort Hotel 0
## 21526 Resort Hotel 0
## 21527 Resort Hotel 0
## 21528 Resort Hotel 1
## 21529 Resort Hotel 7
## 21530 Resort Hotel 7
## 21531 Resort Hotel 0
## 21532 Resort Hotel 6
## 21533 Resort Hotel 11
## 21534 Resort Hotel 19
## 21535 Resort Hotel 14
## 21536 Resort Hotel 38
## 21537 Resort Hotel 5
## 21538 Resort Hotel 0
## 21539 Resort Hotel 3
## 21540 Resort Hotel 0
## 21541 Resort Hotel 0
## 21542 Resort Hotel 2
## 21543 Resort Hotel 0
## 21544 Resort Hotel 0
## 21545 Resort Hotel 10
## 21546 Resort Hotel 0
## 21547 Resort Hotel 26
## 21548 Resort Hotel 1
## 21549 Resort Hotel 26
## 21550 Resort Hotel 2
## 21551 Resort Hotel 7
## 21552 Resort Hotel 0
## 21553 Resort Hotel 6
## 21554 Resort Hotel 0
## 21555 Resort Hotel 0
## 21556 Resort Hotel 17
## 21557 Resort Hotel 1
## 21558 Resort Hotel 1
## 21559 Resort Hotel 0
## 21560 Resort Hotel 1
## 21561 Resort Hotel 0
## 21562 Resort Hotel 42
## 21563 Resort Hotel 1
## 21564 Resort Hotel 0
## 21565 Resort Hotel 3
## 21566 Resort Hotel 53
## 21567 Resort Hotel 100
## 21568 Resort Hotel 14
## 21569 Resort Hotel 100
## 21570 Resort Hotel 1
## 21571 Resort Hotel 1
## 21572 Resort Hotel 1
## 21573 Resort Hotel 5
## 21574 Resort Hotel 5
## 21575 Resort Hotel 56
## 21576 Resort Hotel 10
## 21577 Resort Hotel 0
## 21578 Resort Hotel 0
## 21579 Resort Hotel 0
## 21580 Resort Hotel 36
## 21581 Resort Hotel 94
## 21582 Resort Hotel 94
## 21583 Resort Hotel 10
## 21584 Resort Hotel 13
## 21585 Resort Hotel 11
## 21586 Resort Hotel 8
## 21587 Resort Hotel 18
## 21588 Resort Hotel 5
## 21589 Resort Hotel 1
## 21590 Resort Hotel 29
## 21591 Resort Hotel 1
## 21592 Resort Hotel 29
## 21593 Resort Hotel 3
## 21594 Resort Hotel 88
## 21595 Resort Hotel 11
## 21596 Resort Hotel 8
## 21597 Resort Hotel 1
## 21598 Resort Hotel 24
## 21599 Resort Hotel 24
## 21600 Resort Hotel 18
## 21601 Resort Hotel 0
## 21602 Resort Hotel 13
## 21603 Resort Hotel 3
## 21604 Resort Hotel 3
## 21605 Resort Hotel 3
## 21606 Resort Hotel 32
## 21607 Resort Hotel 45
## 21608 Resort Hotel 41
## 21609 Resort Hotel 34
## 21610 Resort Hotel 18
## 21611 Resort Hotel 26
## 21612 Resort Hotel 7
## 21613 Resort Hotel 60
## 21614 Resort Hotel 1
## 21615 Resort Hotel 0
## 21616 Resort Hotel 1
## 21617 Resort Hotel 3
## 21618 Resort Hotel 14
## 21619 Resort Hotel 61
## 21620 Resort Hotel 8
## 21621 Resort Hotel 3
## 21622 Resort Hotel 0
## 21623 Resort Hotel 1
## 21624 Resort Hotel 7
## 21625 Resort Hotel 1
## 21626 Resort Hotel 4
## 21627 Resort Hotel 1
## 21628 Resort Hotel 1
## 21629 Resort Hotel 3
## 21630 Resort Hotel 0
## 21631 Resort Hotel 10
## 21632 Resort Hotel 3
## 21633 Resort Hotel 46
## 21634 Resort Hotel 53
## 21635 Resort Hotel 5
## 21636 Resort Hotel 5
## 21637 Resort Hotel 38
## 21638 Resort Hotel 0
## 21639 Resort Hotel 53
## 21640 Resort Hotel 23
## 21641 Resort Hotel 44
## 21642 Resort Hotel 4
## 21643 Resort Hotel 2
## 21644 Resort Hotel 5
## 21645 Resort Hotel 4
## 21646 Resort Hotel 27
## 21647 Resort Hotel 2
## 21648 Resort Hotel 16
## 21649 Resort Hotel 5
## 21650 Resort Hotel 26
## 21651 Resort Hotel 14
## 21652 Resort Hotel 45
## 21653 Resort Hotel 17
## 21654 Resort Hotel 17
## 21655 Resort Hotel 17
## 21656 Resort Hotel 41
## 21657 Resort Hotel 50
## 21658 Resort Hotel 55
## 21659 Resort Hotel 2
## 21660 Resort Hotel 1
## 21661 Resort Hotel 31
## 21662 Resort Hotel 8
## 21663 Resort Hotel 0
## 21664 Resort Hotel 41
## 21665 Resort Hotel 1
## 21666 Resort Hotel 10
## 21667 Resort Hotel 10
## 21668 Resort Hotel 4
## 21669 Resort Hotel 1
## 21670 Resort Hotel 3
## 21671 Resort Hotel 7
## 21672 Resort Hotel 164
## 21673 Resort Hotel 10
## 21674 Resort Hotel 33
## 21675 Resort Hotel 0
## 21676 Resort Hotel 22
## 21677 Resort Hotel 22
## 21678 Resort Hotel 22
## 21679 Resort Hotel 22
## 21680 Resort Hotel 45
## 21681 Resort Hotel 45
## 21682 Resort Hotel 1
## 21683 Resort Hotel 23
## 21684 Resort Hotel 2
## 21685 Resort Hotel 3
## 21686 Resort Hotel 42
## 21687 Resort Hotel 0
## 21688 Resort Hotel 3
## 21689 Resort Hotel 45
## 21690 Resort Hotel 27
## 21691 Resort Hotel 11
## 21692 Resort Hotel 1
## 21693 Resort Hotel 1
## 21694 Resort Hotel 0
## 21695 Resort Hotel 2
## 21696 Resort Hotel 0
## 21697 Resort Hotel 17
## 21698 Resort Hotel 0
## 21699 Resort Hotel 12
## 21700 Resort Hotel 5
## 21701 Resort Hotel 8
## 21702 Resort Hotel 10
## 21703 Resort Hotel 7
## 21704 Resort Hotel 1
## 21705 Resort Hotel 15
## 21706 Resort Hotel 106
## 21707 Resort Hotel 104
## 21708 Resort Hotel 67
## 21709 Resort Hotel 67
## 21710 Resort Hotel 0
## 21711 Resort Hotel 41
## 21712 Resort Hotel 19
## 21713 Resort Hotel 26
## 21714 Resort Hotel 16
## 21715 Resort Hotel 1
## 21716 Resort Hotel 9
## 21717 Resort Hotel 17
## 21718 Resort Hotel 49
## 21719 Resort Hotel 34
## 21720 Resort Hotel 49
## 21721 Resort Hotel 49
## 21722 Resort Hotel 49
## 21723 Resort Hotel 49
## 21724 Resort Hotel 0
## 21725 Resort Hotel 0
## 21726 Resort Hotel 4
## 21727 Resort Hotel 1
## 21728 Resort Hotel 0
## 21729 Resort Hotel 0
## 21730 Resort Hotel 1
## 21731 Resort Hotel 95
## 21732 Resort Hotel 3
## 21733 Resort Hotel 126
## 21734 Resort Hotel 25
## 21735 Resort Hotel 1
## 21736 Resort Hotel 0
## 21737 Resort Hotel 1
## 21738 Resort Hotel 1
## 21739 Resort Hotel 4
## 21740 Resort Hotel 0
## 21741 Resort Hotel 0
## 21742 Resort Hotel 0
## 21743 Resort Hotel 3
## 21744 Resort Hotel 41
## 21745 Resort Hotel 133
## 21746 Resort Hotel 5
## 21747 Resort Hotel 41
## 21748 Resort Hotel 6
## 21749 Resort Hotel 7
## 21750 Resort Hotel 43
## 21751 Resort Hotel 7
## 21752 Resort Hotel 31
## 21753 Resort Hotel 0
## 21754 Resort Hotel 6
## 21755 Resort Hotel 49
## 21756 Resort Hotel 0
## 21757 Resort Hotel 0
## 21758 Resort Hotel 0
## 21759 Resort Hotel 3
## 21760 Resort Hotel 10
## 21761 Resort Hotel 20
## 21762 Resort Hotel 1
## 21763 Resort Hotel 1
## 21764 Resort Hotel 7
## 21765 Resort Hotel 15
## 21766 Resort Hotel 7
## 21767 Resort Hotel 6
## 21768 Resort Hotel 8
## 21769 Resort Hotel 15
## 21770 Resort Hotel 2
## 21771 Resort Hotel 0
## 21772 Resort Hotel 6
## 21773 Resort Hotel 31
## 21774 Resort Hotel 0
## 21775 Resort Hotel 1
## 21776 Resort Hotel 21
## 21777 Resort Hotel 31
## 21778 Resort Hotel 0
## 21779 Resort Hotel 23
## 21780 Resort Hotel 43
## 21781 Resort Hotel 2
## 21782 Resort Hotel 19
## 21783 Resort Hotel 37
## 21784 Resort Hotel 108
## 21785 Resort Hotel 0
## 21786 Resort Hotel 16
## 21787 Resort Hotel 3
## 21788 Resort Hotel 2
## 21789 Resort Hotel 27
## 21790 Resort Hotel 2
## 21791 Resort Hotel 27
## 21792 Resort Hotel 36
## 21793 Resort Hotel 0
## 21794 Resort Hotel 0
## 21795 Resort Hotel 109
## 21796 Resort Hotel 6
## 21797 Resort Hotel 0
## 21798 Resort Hotel 20
## 21799 Resort Hotel 25
## 21800 Resort Hotel 46
## 21801 Resort Hotel 5
## 21802 Resort Hotel 13
## 21803 Resort Hotel 45
## 21804 Resort Hotel 4
## 21805 Resort Hotel 15
## 21806 Resort Hotel 81
## 21807 Resort Hotel 81
## 21808 Resort Hotel 0
## 21809 Resort Hotel 81
## 21810 Resort Hotel 81
## 21811 Resort Hotel 13
## 21812 Resort Hotel 81
## 21813 Resort Hotel 13
## 21814 Resort Hotel 13
## 21815 Resort Hotel 81
## 21816 Resort Hotel 34
## 21817 Resort Hotel 81
## 21818 Resort Hotel 81
## 21819 Resort Hotel 81
## 21820 Resort Hotel 81
## 21821 Resort Hotel 81
## 21822 Resort Hotel 81
## 21823 Resort Hotel 81
## 21824 Resort Hotel 81
## 21825 Resort Hotel 81
## 21826 Resort Hotel 81
## 21827 Resort Hotel 13
## 21828 Resort Hotel 12
## 21829 Resort Hotel 81
## 21830 Resort Hotel 81
## 21831 Resort Hotel 81
## 21832 Resort Hotel 28
## 21833 Resort Hotel 13
## 21834 Resort Hotel 0
## 21835 Resort Hotel 2
## 21836 Resort Hotel 46
## 21837 Resort Hotel 46
## 21838 Resort Hotel 46
## 21839 Resort Hotel 14
## 21840 Resort Hotel 46
## 21841 Resort Hotel 46
## 21842 Resort Hotel 46
## 21843 Resort Hotel 46
## 21844 Resort Hotel 46
## 21845 Resort Hotel 46
## 21846 Resort Hotel 46
## 21847 Resort Hotel 46
## 21848 Resort Hotel 46
## 21849 Resort Hotel 46
## 21850 Resort Hotel 46
## 21851 Resort Hotel 46
## 21852 Resort Hotel 24
## 21853 Resort Hotel 17
## 21854 Resort Hotel 17
## 21855 Resort Hotel 62
## 21856 Resort Hotel 63
## 21857 Resort Hotel 81
## 21858 Resort Hotel 81
## 21859 Resort Hotel 46
## 21860 Resort Hotel 1
## 21861 Resort Hotel 0
## 21862 Resort Hotel 44
## 21863 Resort Hotel 46
## 21864 Resort Hotel 0
## 21865 Resort Hotel 5
## 21866 Resort Hotel 13
## 21867 Resort Hotel 53
## 21868 Resort Hotel 13
## 21869 Resort Hotel 57
## 21870 Resort Hotel 30
## 21871 Resort Hotel 1
## 21872 Resort Hotel 1
## 21873 Resort Hotel 23
## 21874 Resort Hotel 30
## 21875 Resort Hotel 30
## 21876 Resort Hotel 3
## 21877 Resort Hotel 30
## 21878 Resort Hotel 30
## 21879 Resort Hotel 30
## 21880 Resort Hotel 30
## 21881 Resort Hotel 30
## 21882 Resort Hotel 30
## 21883 Resort Hotel 30
## 21884 Resort Hotel 30
## 21885 Resort Hotel 30
## 21886 Resort Hotel 30
## 21887 Resort Hotel 30
## 21888 Resort Hotel 30
## 21889 Resort Hotel 30
## 21890 Resort Hotel 30
## 21891 Resort Hotel 30
## 21892 Resort Hotel 30
## 21893 Resort Hotel 30
## 21894 Resort Hotel 30
## 21895 Resort Hotel 30
## 21896 Resort Hotel 30
## 21897 Resort Hotel 4
## 21898 Resort Hotel 0
## 21899 Resort Hotel 1
## 21900 Resort Hotel 23
## 21901 Resort Hotel 20
## 21902 Resort Hotel 23
## 21903 Resort Hotel 54
## 21904 Resort Hotel 4
## 21905 Resort Hotel 23
## 21906 Resort Hotel 30
## 21907 Resort Hotel 2
## 21908 Resort Hotel 2
## 21909 Resort Hotel 3
## 21910 Resort Hotel 44
## 21911 Resort Hotel 52
## 21912 Resort Hotel 6
## 21913 Resort Hotel 1
## 21914 Resort Hotel 1
## 21915 Resort Hotel 1
## 21916 Resort Hotel 1
## 21917 Resort Hotel 5
## 21918 Resort Hotel 5
## 21919 Resort Hotel 44
## 21920 Resort Hotel 37
## 21921 Resort Hotel 1
## 21922 Resort Hotel 23
## 21923 Resort Hotel 23
## 21924 Resort Hotel 30
## 21925 Resort Hotel 1
## 21926 Resort Hotel 30
## 21927 Resort Hotel 30
## 21928 Resort Hotel 30
## 21929 Resort Hotel 0
## 21930 Resort Hotel 1
## 21931 Resort Hotel 8
## 21932 Resort Hotel 10
## 21933 Resort Hotel 187
## 21934 Resort Hotel 3
## 21935 Resort Hotel 22
## 21936 Resort Hotel 2
## 21937 Resort Hotel 4
## 21938 Resort Hotel 2
## 21939 Resort Hotel 2
## 21940 Resort Hotel 1
## 21941 Resort Hotel 2
## 21942 Resort Hotel 21
## 21943 Resort Hotel 30
## 21944 Resort Hotel 0
## 21945 Resort Hotel 6
## 21946 Resort Hotel 8
## 21947 Resort Hotel 8
## 21948 Resort Hotel 1
## 21949 Resort Hotel 30
## 21950 Resort Hotel 1
## 21951 Resort Hotel 3
## 21952 Resort Hotel 3
## 21953 Resort Hotel 31
## 21954 Resort Hotel 7
## 21955 Resort Hotel 52
## 21956 Resort Hotel 97
## 21957 Resort Hotel 97
## 21958 Resort Hotel 20
## 21959 Resort Hotel 38
## 21960 Resort Hotel 30
## 21961 Resort Hotel 0
## 21962 Resort Hotel 45
## 21963 Resort Hotel 6
## 21964 Resort Hotel 13
## 21965 Resort Hotel 2
## 21966 Resort Hotel 2
## 21967 Resort Hotel 46
## 21968 Resort Hotel 4
## 21969 Resort Hotel 26
## 21970 Resort Hotel 2
## 21971 Resort Hotel 2
## 21972 Resort Hotel 0
## 21973 Resort Hotel 41
## 21974 Resort Hotel 101
## 21975 Resort Hotel 27
## 21976 Resort Hotel 24
## 21977 Resort Hotel 0
## 21978 Resort Hotel 0
## 21979 Resort Hotel 0
## 21980 Resort Hotel 1
## 21981 Resort Hotel 16
## 21982 Resort Hotel 1
## 21983 Resort Hotel 10
## 21984 Resort Hotel 12
## 21985 Resort Hotel 0
## 21986 Resort Hotel 12
## 21987 Resort Hotel 3
## 21988 Resort Hotel 112
## 21989 Resort Hotel 114
## 21990 Resort Hotel 0
## 21991 Resort Hotel 40
## 21992 Resort Hotel 40
## 21993 Resort Hotel 13
## 21994 Resort Hotel 56
## 21995 Resort Hotel 0
## 21996 Resort Hotel 63
## 21997 Resort Hotel 3
## 21998 Resort Hotel 5
## 21999 Resort Hotel 8
## 22000 Resort Hotel 1
## 22001 Resort Hotel 1
## 22002 Resort Hotel 34
## 22003 Resort Hotel 2
## 22004 Resort Hotel 0
## 22005 Resort Hotel 0
## 22006 Resort Hotel 0
## 22007 Resort Hotel 0
## 22008 Resort Hotel 4
## 22009 Resort Hotel 71
## 22010 Resort Hotel 0
## 22011 Resort Hotel 5
## 22012 Resort Hotel 9
## 22013 Resort Hotel 0
## 22014 Resort Hotel 0
## 22015 Resort Hotel 0
## 22016 Resort Hotel 0
## 22017 Resort Hotel 2
## 22018 Resort Hotel 14
## 22019 Resort Hotel 101
## 22020 Resort Hotel 1
## 22021 Resort Hotel 12
## 22022 Resort Hotel 0
## 22023 Resort Hotel 0
## 22024 Resort Hotel 39
## 22025 Resort Hotel 20
## 22026 Resort Hotel 4
## 22027 Resort Hotel 40
## 22028 Resort Hotel 3
## 22029 Resort Hotel 102
## 22030 Resort Hotel 102
## 22031 Resort Hotel 7
## 22032 Resort Hotel 36
## 22033 Resort Hotel 23
## 22034 Resort Hotel 2
## 22035 Resort Hotel 15
## 22036 Resort Hotel 0
## 22037 Resort Hotel 11
## 22038 Resort Hotel 12
## 22039 Resort Hotel 18
## 22040 Resort Hotel 0
## 22041 Resort Hotel 12
## 22042 Resort Hotel 7
## 22043 Resort Hotel 32
## 22044 Resort Hotel 23
## 22045 Resort Hotel 29
## 22046 Resort Hotel 0
## 22047 Resort Hotel 0
## 22048 Resort Hotel 0
## 22049 Resort Hotel 1
## 22050 Resort Hotel 1
## 22051 Resort Hotel 2
## 22052 Resort Hotel 4
## 22053 Resort Hotel 4
## 22054 Resort Hotel 1
## 22055 Resort Hotel 1
## 22056 Resort Hotel 1
## 22057 Resort Hotel 1
## 22058 Resort Hotel 1
## 22059 Resort Hotel 56
## 22060 Resort Hotel 1
## 22061 Resort Hotel 25
## 22062 Resort Hotel 18
## 22063 Resort Hotel 56
## 22064 Resort Hotel 47
## 22065 Resort Hotel 2
## 22066 Resort Hotel 0
## 22067 Resort Hotel 1
## 22068 Resort Hotel 0
## 22069 Resort Hotel 0
## 22070 Resort Hotel 52
## 22071 Resort Hotel 18
## 22072 Resort Hotel 1
## 22073 Resort Hotel 4
## 22074 Resort Hotel 54
## 22075 Resort Hotel 8
## 22076 Resort Hotel 2
## 22077 Resort Hotel 99
## 22078 Resort Hotel 51
## 22079 Resort Hotel 115
## 22080 Resort Hotel 36
## 22081 Resort Hotel 6
## 22082 Resort Hotel 10
## 22083 Resort Hotel 65
## 22084 Resort Hotel 65
## 22085 Resort Hotel 10
## 22086 Resort Hotel 3
## 22087 Resort Hotel 10
## 22088 Resort Hotel 36
## 22089 Resort Hotel 0
## 22090 Resort Hotel 0
## 22091 Resort Hotel 10
## 22092 Resort Hotel 10
## 22093 Resort Hotel 10
## 22094 Resort Hotel 6
## 22095 Resort Hotel 22
## 22096 Resort Hotel 36
## 22097 Resort Hotel 13
## 22098 Resort Hotel 6
## 22099 Resort Hotel 6
## 22100 Resort Hotel 4
## 22101 Resort Hotel 6
## 22102 Resort Hotel 3
## 22103 Resort Hotel 51
## 22104 Resort Hotel 0
## 22105 Resort Hotel 11
## 22106 Resort Hotel 10
## 22107 Resort Hotel 51
## 22108 Resort Hotel 51
## 22109 Resort Hotel 51
## 22110 Resort Hotel 6
## 22111 Resort Hotel 51
## 22112 Resort Hotel 51
## 22113 Resort Hotel 51
## 22114 Resort Hotel 3
## 22115 Resort Hotel 3
## 22116 Resort Hotel 51
## 22117 Resort Hotel 51
## 22118 Resort Hotel 51
## 22119 Resort Hotel 51
## 22120 Resort Hotel 51
## 22121 Resort Hotel 0
## 22122 Resort Hotel 0
## 22123 Resort Hotel 0
## 22124 Resort Hotel 7
## 22125 Resort Hotel 0
## 22126 Resort Hotel 61
## 22127 Resort Hotel 2
## 22128 Resort Hotel 5
## 22129 Resort Hotel 0
## 22130 Resort Hotel 0
## 22131 Resort Hotel 0
## 22132 Resort Hotel 53
## 22133 Resort Hotel 1
## 22134 Resort Hotel 14
## 22135 Resort Hotel 4
## 22136 Resort Hotel 106
## 22137 Resort Hotel 0
## 22138 Resort Hotel 0
## 22139 Resort Hotel 50
## 22140 Resort Hotel 12
## 22141 Resort Hotel 4
## 22142 Resort Hotel 29
## 22143 Resort Hotel 29
## 22144 Resort Hotel 4
## 22145 Resort Hotel 43
## 22146 Resort Hotel 46
## 22147 Resort Hotel 52
## 22148 Resort Hotel 0
## 22149 Resort Hotel 12
## 22150 Resort Hotel 1
## 22151 Resort Hotel 3
## 22152 Resort Hotel 57
## 22153 Resort Hotel 8
## 22154 Resort Hotel 9
## 22155 Resort Hotel 1
## 22156 Resort Hotel 0
## 22157 Resort Hotel 38
## 22158 Resort Hotel 5
## 22159 Resort Hotel 47
## 22160 Resort Hotel 21
## 22161 Resort Hotel 34
## 22162 Resort Hotel 154
## 22163 Resort Hotel 71
## 22164 Resort Hotel 71
## 22165 Resort Hotel 71
## 22166 Resort Hotel 0
## 22167 Resort Hotel 71
## 22168 Resort Hotel 2
## 22169 Resort Hotel 2
## 22170 Resort Hotel 2
## 22171 Resort Hotel 52
## 22172 Resort Hotel 0
## 22173 Resort Hotel 2
## 22174 Resort Hotel 4
## 22175 Resort Hotel 49
## 22176 Resort Hotel 49
## 22177 Resort Hotel 49
## 22178 Resort Hotel 49
## 22179 Resort Hotel 1
## 22180 Resort Hotel 14
## 22181 Resort Hotel 12
## 22182 Resort Hotel 0
## 22183 Resort Hotel 15
## 22184 Resort Hotel 17
## 22185 Resort Hotel 26
## 22186 Resort Hotel 270
## 22187 Resort Hotel 2
## 22188 Resort Hotel 14
## 22189 Resort Hotel 123
## 22190 Resort Hotel 123
## 22191 Resort Hotel 15
## 22192 Resort Hotel 38
## 22193 Resort Hotel 35
## 22194 Resort Hotel 0
## 22195 Resort Hotel 34
## 22196 Resort Hotel 270
## 22197 Resort Hotel 201
## 22198 Resort Hotel 18
## 22199 Resort Hotel 0
## 22200 Resort Hotel 2
## 22201 Resort Hotel 0
## 22202 Resort Hotel 2
## 22203 Resort Hotel 1
## 22204 Resort Hotel 0
## 22205 Resort Hotel 16
## 22206 Resort Hotel 18
## 22207 Resort Hotel 3
## 22208 Resort Hotel 10
## 22209 Resort Hotel 2
## 22210 Resort Hotel 8
## 22211 Resort Hotel 126
## 22212 Resort Hotel 5
## 22213 Resort Hotel 14
## 22214 Resort Hotel 30
## 22215 Resort Hotel 4
## 22216 Resort Hotel 24
## 22217 Resort Hotel 25
## 22218 Resort Hotel 25
## 22219 Resort Hotel 11
## 22220 Resort Hotel 28
## 22221 Resort Hotel 11
## 22222 Resort Hotel 40
## 22223 Resort Hotel 40
## 22224 Resort Hotel 12
## 22225 Resort Hotel 8
## 22226 Resort Hotel 69
## 22227 Resort Hotel 39
## 22228 Resort Hotel 74
## 22229 Resort Hotel 74
## 22230 Resort Hotel 1
## 22231 Resort Hotel 1
## 22232 Resort Hotel 7
## 22233 Resort Hotel 72
## 22234 Resort Hotel 27
## 22235 Resort Hotel 22
## 22236 Resort Hotel 6
## 22237 Resort Hotel 69
## 22238 Resort Hotel 6
## 22239 Resort Hotel 0
## 22240 Resort Hotel 76
## 22241 Resort Hotel 4
## 22242 Resort Hotel 119
## 22243 Resort Hotel 6
## 22244 Resort Hotel 5
## 22245 Resort Hotel 22
## 22246 Resort Hotel 50
## 22247 Resort Hotel 50
## 22248 Resort Hotel 4
## 22249 Resort Hotel 11
## 22250 Resort Hotel 101
## 22251 Resort Hotel 12
## 22252 Resort Hotel 0
## 22253 Resort Hotel 10
## 22254 Resort Hotel 14
## 22255 Resort Hotel 16
## 22256 Resort Hotel 8
## 22257 Resort Hotel 16
## 22258 Resort Hotel 16
## 22259 Resort Hotel 2
## 22260 Resort Hotel 46
## 22261 Resort Hotel 7
## 22262 Resort Hotel 37
## 22263 Resort Hotel 20
## 22264 Resort Hotel 10
## 22265 Resort Hotel 15
## 22266 Resort Hotel 17
## 22267 Resort Hotel 14
## 22268 Resort Hotel 11
## 22269 Resort Hotel 6
## 22270 Resort Hotel 10
## 22271 Resort Hotel 7
## 22272 Resort Hotel 5
## 22273 Resort Hotel 7
## 22274 Resort Hotel 4
## 22275 Resort Hotel 5
## 22276 Resort Hotel 17
## 22277 Resort Hotel 16
## 22278 Resort Hotel 5
## 22279 Resort Hotel 8
## 22280 Resort Hotel 27
## 22281 Resort Hotel 2
## 22282 Resort Hotel 4
## 22283 Resort Hotel 5
## 22284 Resort Hotel 76
## 22285 Resort Hotel 37
## 22286 Resort Hotel 8
## 22287 Resort Hotel 56
## 22288 Resort Hotel 36
## 22289 Resort Hotel 36
## 22290 Resort Hotel 36
## 22291 Resort Hotel 0
## 22292 Resort Hotel 22
## 22293 Resort Hotel 24
## 22294 Resort Hotel 18
## 22295 Resort Hotel 6
## 22296 Resort Hotel 67
## 22297 Resort Hotel 0
## 22298 Resort Hotel 0
## 22299 Resort Hotel 1
## 22300 Resort Hotel 1
## 22301 Resort Hotel 3
## 22302 Resort Hotel 2
## 22303 Resort Hotel 2
## 22304 Resort Hotel 1
## 22305 Resort Hotel 0
## 22306 Resort Hotel 5
## 22307 Resort Hotel 19
## 22308 Resort Hotel 18
## 22309 Resort Hotel 28
## 22310 Resort Hotel 12
## 22311 Resort Hotel 65
## 22312 Resort Hotel 63
## 22313 Resort Hotel 15
## 22314 Resort Hotel 15
## 22315 Resort Hotel 44
## 22316 Resort Hotel 0
## 22317 Resort Hotel 37
## 22318 Resort Hotel 9
## 22319 Resort Hotel 28
## 22320 Resort Hotel 28
## 22321 Resort Hotel 4
## 22322 Resort Hotel 2
## 22323 Resort Hotel 12
## 22324 Resort Hotel 25
## 22325 Resort Hotel 26
## 22326 Resort Hotel 7
## 22327 Resort Hotel 7
## 22328 Resort Hotel 4
## 22329 Resort Hotel 61
## 22330 Resort Hotel 61
## 22331 Resort Hotel 1
## 22332 Resort Hotel 60
## 22333 Resort Hotel 17
## 22334 Resort Hotel 63
## 22335 Resort Hotel 0
## 22336 Resort Hotel 8
## 22337 Resort Hotel 14
## 22338 Resort Hotel 4
## 22339 Resort Hotel 7
## 22340 Resort Hotel 7
## 22341 Resort Hotel 17
## 22342 Resort Hotel 72
## 22343 Resort Hotel 111
## 22344 Resort Hotel 1
## 22345 Resort Hotel 17
## 22346 Resort Hotel 39
## 22347 Resort Hotel 44
## 22348 Resort Hotel 64
## 22349 Resort Hotel 12
## 22350 Resort Hotel 19
## 22351 Resort Hotel 9
## 22352 Resort Hotel 52
## 22353 Resort Hotel 10
## 22354 Resort Hotel 6
## 22355 Resort Hotel 342
## 22356 Resort Hotel 23
## 22357 Resort Hotel 34
## 22358 Resort Hotel 17
## 22359 Resort Hotel 5
## 22360 Resort Hotel 12
## 22361 Resort Hotel 20
## 22362 Resort Hotel 22
## 22363 Resort Hotel 20
## 22364 Resort Hotel 6
## 22365 Resort Hotel 121
## 22366 Resort Hotel 6
## 22367 Resort Hotel 41
## 22368 Resort Hotel 50
## 22369 Resort Hotel 0
## 22370 Resort Hotel 13
## 22371 Resort Hotel 30
## 22372 Resort Hotel 34
## 22373 Resort Hotel 31
## 22374 Resort Hotel 31
## 22375 Resort Hotel 3
## 22376 Resort Hotel 35
## 22377 Resort Hotel 21
## 22378 Resort Hotel 4
## 22379 Resort Hotel 5
## 22380 Resort Hotel 5
## 22381 Resort Hotel 21
## 22382 Resort Hotel 23
## 22383 Resort Hotel 0
## 22384 Resort Hotel 55
## 22385 Resort Hotel 6
## 22386 Resort Hotel 6
## 22387 Resort Hotel 0
## 22388 Resort Hotel 15
## 22389 Resort Hotel 30
## 22390 Resort Hotel 45
## 22391 Resort Hotel 41
## 22392 Resort Hotel 16
## 22393 Resort Hotel 16
## 22394 Resort Hotel 24
## 22395 Resort Hotel 14
## 22396 Resort Hotel 14
## 22397 Resort Hotel 20
## 22398 Resort Hotel 5
## 22399 Resort Hotel 4
## 22400 Resort Hotel 21
## 22401 Resort Hotel 57
## 22402 Resort Hotel 21
## 22403 Resort Hotel 18
## 22404 Resort Hotel 18
## 22405 Resort Hotel 8
## 22406 Resort Hotel 24
## 22407 Resort Hotel 8
## 22408 Resort Hotel 12
## 22409 Resort Hotel 20
## 22410 Resort Hotel 0
## 22411 Resort Hotel 23
## 22412 Resort Hotel 13
## 22413 Resort Hotel 13
## 22414 Resort Hotel 42
## 22415 Resort Hotel 3
## 22416 Resort Hotel 0
## 22417 Resort Hotel 1
## 22418 Resort Hotel 10
## 22419 Resort Hotel 63
## 22420 Resort Hotel 48
## 22421 Resort Hotel 38
## 22422 Resort Hotel 6
## 22423 Resort Hotel 17
## 22424 Resort Hotel 64
## 22425 Resort Hotel 0
## 22426 Resort Hotel 37
## 22427 Resort Hotel 0
## 22428 Resort Hotel 0
## 22429 Resort Hotel 26
## 22430 Resort Hotel 26
## 22431 Resort Hotel 61
## 22432 Resort Hotel 126
## 22433 Resort Hotel 35
## 22434 Resort Hotel 13
## 22435 Resort Hotel 126
## 22436 Resort Hotel 10
## 22437 Resort Hotel 10
## 22438 Resort Hotel 2
## 22439 Resort Hotel 20
## 22440 Resort Hotel 3
## 22441 Resort Hotel 0
## 22442 Resort Hotel 0
## 22443 Resort Hotel 42
## 22444 Resort Hotel 45
## 22445 Resort Hotel 73
## 22446 Resort Hotel 35
## 22447 Resort Hotel 36
## 22448 Resort Hotel 128
## 22449 Resort Hotel 67
## 22450 Resort Hotel 121
## 22451 Resort Hotel 5
## 22452 Resort Hotel 36
## 22453 Resort Hotel 4
## 22454 Resort Hotel 7
## 22455 Resort Hotel 43
## 22456 Resort Hotel 69
## 22457 Resort Hotel 34
## 22458 Resort Hotel 65
## 22459 Resort Hotel 36
## 22460 Resort Hotel 9
## 22461 Resort Hotel 26
## 22462 Resort Hotel 12
## 22463 Resort Hotel 167
## 22464 Resort Hotel 3
## 22465 Resort Hotel 36
## 22466 Resort Hotel 43
## 22467 Resort Hotel 70
## 22468 Resort Hotel 33
## 22469 Resort Hotel 136
## 22470 Resort Hotel 68
## 22471 Resort Hotel 57
## 22472 Resort Hotel 62
## 22473 Resort Hotel 125
## 22474 Resort Hotel 166
## 22475 Resort Hotel 39
## 22476 Resort Hotel 53
## 22477 Resort Hotel 2
## 22478 Resort Hotel 43
## 22479 Resort Hotel 9
## 22480 Resort Hotel 101
## 22481 Resort Hotel 9
## 22482 Resort Hotel 38
## 22483 Resort Hotel 72
## 22484 Resort Hotel 94
## 22485 Resort Hotel 75
## 22486 Resort Hotel 33
## 22487 Resort Hotel 71
## 22488 Resort Hotel 5
## 22489 Resort Hotel 9
## 22490 Resort Hotel 19
## 22491 Resort Hotel 20
## 22492 Resort Hotel 52
## 22493 Resort Hotel 37
## 22494 Resort Hotel 73
## 22495 Resort Hotel 50
## 22496 Resort Hotel 11
## 22497 Resort Hotel 38
## 22498 Resort Hotel 3
## 22499 Resort Hotel 3
## 22500 Resort Hotel 40
## 22501 Resort Hotel 40
## 22502 Resort Hotel 31
## 22503 Resort Hotel 21
## 22504 Resort Hotel 3
## 22505 Resort Hotel 24
## 22506 Resort Hotel 24
## 22507 Resort Hotel 7
## 22508 Resort Hotel 68
## 22509 Resort Hotel 9
## 22510 Resort Hotel 10
## 22511 Resort Hotel 4
## 22512 Resort Hotel 36
## 22513 Resort Hotel 70
## 22514 Resort Hotel 11
## 22515 Resort Hotel 62
## 22516 Resort Hotel 76
## 22517 Resort Hotel 82
## 22518 Resort Hotel 79
## 22519 Resort Hotel 51
## 22520 Resort Hotel 4
## 22521 Resort Hotel 64
## 22522 Resort Hotel 289
## 22523 Resort Hotel 0
## 22524 Resort Hotel 25
## 22525 Resort Hotel 43
## 22526 Resort Hotel 72
## 22527 Resort Hotel 1
## 22528 Resort Hotel 1
## 22529 Resort Hotel 68
## 22530 Resort Hotel 6
## 22531 Resort Hotel 0
## 22532 Resort Hotel 12
## 22533 Resort Hotel 1
## 22534 Resort Hotel 3
## 22535 Resort Hotel 3
## 22536 Resort Hotel 1
## 22537 Resort Hotel 3
## 22538 Resort Hotel 40
## 22539 Resort Hotel 3
## 22540 Resort Hotel 0
## 22541 Resort Hotel 30
## 22542 Resort Hotel 19
## 22543 Resort Hotel 3
## 22544 Resort Hotel 1
## 22545 Resort Hotel 1
## 22546 Resort Hotel 30
## 22547 Resort Hotel 0
## 22548 Resort Hotel 6
## 22549 Resort Hotel 37
## 22550 Resort Hotel 4
## 22551 Resort Hotel 59
## 22552 Resort Hotel 28
## 22553 Resort Hotel 31
## 22554 Resort Hotel 31
## 22555 Resort Hotel 37
## 22556 Resort Hotel 39
## 22557 Resort Hotel 8
## 22558 Resort Hotel 0
## 22559 Resort Hotel 70
## 22560 Resort Hotel 0
## 22561 Resort Hotel 12
## 22562 Resort Hotel 10
## 22563 Resort Hotel 14
## 22564 Resort Hotel 1
## 22565 Resort Hotel 10
## 22566 Resort Hotel 34
## 22567 Resort Hotel 20
## 22568 Resort Hotel 16
## 22569 Resort Hotel 73
## 22570 Resort Hotel 43
## 22571 Resort Hotel 20
## 22572 Resort Hotel 3
## 22573 Resort Hotel 0
## 22574 Resort Hotel 31
## 22575 Resort Hotel 89
## 22576 Resort Hotel 1
## 22577 Resort Hotel 13
## 22578 Resort Hotel 8
## 22579 Resort Hotel 13
## 22580 Resort Hotel 2
## 22581 Resort Hotel 0
## 22582 Resort Hotel 22
## 22583 Resort Hotel 42
## 22584 Resort Hotel 10
## 22585 Resort Hotel 87
## 22586 Resort Hotel 257
## 22587 Resort Hotel 74
## 22588 Resort Hotel 74
## 22589 Resort Hotel 70
## 22590 Resort Hotel 74
## 22591 Resort Hotel 0
## 22592 Resort Hotel 0
## 22593 Resort Hotel 13
## 22594 Resort Hotel 0
## 22595 Resort Hotel 5
## 22596 Resort Hotel 40
## 22597 Resort Hotel 0
## 22598 Resort Hotel 0
## 22599 Resort Hotel 3
## 22600 Resort Hotel 0
## 22601 Resort Hotel 0
## 22602 Resort Hotel 4
## 22603 Resort Hotel 0
## 22604 Resort Hotel 9
## 22605 Resort Hotel 196
## 22606 Resort Hotel 55
## 22607 Resort Hotel 4
## 22608 Resort Hotel 0
## 22609 Resort Hotel 2
## 22610 Resort Hotel 77
## 22611 Resort Hotel 7
## 22612 Resort Hotel 1
## 22613 Resort Hotel 23
## 22614 Resort Hotel 25
## 22615 Resort Hotel 0
## 22616 Resort Hotel 2
## 22617 Resort Hotel 0
## 22618 Resort Hotel 0
## 22619 Resort Hotel 5
## 22620 Resort Hotel 0
## 22621 Resort Hotel 15
## 22622 Resort Hotel 6
## 22623 Resort Hotel 6
## 22624 Resort Hotel 6
## 22625 Resort Hotel 6
## 22626 Resort Hotel 6
## 22627 Resort Hotel 6
## 22628 Resort Hotel 6
## 22629 Resort Hotel 6
## 22630 Resort Hotel 0
## 22631 Resort Hotel 16
## 22632 Resort Hotel 3
## 22633 Resort Hotel 8
## 22634 Resort Hotel 1
## 22635 Resort Hotel 35
## 22636 Resort Hotel 77
## 22637 Resort Hotel 27
## 22638 Resort Hotel 7
## 22639 Resort Hotel 15
## 22640 Resort Hotel 1
## 22641 Resort Hotel 3
## 22642 Resort Hotel 14
## 22643 Resort Hotel 129
## 22644 Resort Hotel 13
## 22645 Resort Hotel 13
## 22646 Resort Hotel 4
## 22647 Resort Hotel 13
## 22648 Resort Hotel 1
## 22649 Resort Hotel 46
## 22650 Resort Hotel 39
## 22651 Resort Hotel 8
## 22652 Resort Hotel 17
## 22653 Resort Hotel 1
## 22654 Resort Hotel 8
## 22655 Resort Hotel 0
## 22656 Resort Hotel 126
## 22657 Resort Hotel 3
## 22658 Resort Hotel 3
## 22659 Resort Hotel 1
## 22660 Resort Hotel 42
## 22661 Resort Hotel 1
## 22662 Resort Hotel 40
## 22663 Resort Hotel 0
## 22664 Resort Hotel 31
## 22665 Resort Hotel 67
## 22666 Resort Hotel 0
## 22667 Resort Hotel 0
## 22668 Resort Hotel 5
## 22669 Resort Hotel 34
## 22670 Resort Hotel 60
## 22671 Resort Hotel 30
## 22672 Resort Hotel 2
## 22673 Resort Hotel 51
## 22674 Resort Hotel 6
## 22675 Resort Hotel 61
## 22676 Resort Hotel 81
## 22677 Resort Hotel 96
## 22678 Resort Hotel 41
## 22679 Resort Hotel 15
## 22680 Resort Hotel 18
## 22681 Resort Hotel 2
## 22682 Resort Hotel 69
## 22683 Resort Hotel 47
## 22684 Resort Hotel 101
## 22685 Resort Hotel 129
## 22686 Resort Hotel 56
## 22687 Resort Hotel 108
## 22688 Resort Hotel 108
## 22689 Resort Hotel 0
## 22690 Resort Hotel 3
## 22691 Resort Hotel 28
## 22692 Resort Hotel 2
## 22693 Resort Hotel 42
## 22694 Resort Hotel 34
## 22695 Resort Hotel 2
## 22696 Resort Hotel 2
## 22697 Resort Hotel 32
## 22698 Resort Hotel 76
## 22699 Resort Hotel 169
## 22700 Resort Hotel 169
## 22701 Resort Hotel 169
## 22702 Resort Hotel 169
## 22703 Resort Hotel 0
## 22704 Resort Hotel 0
## 22705 Resort Hotel 1
## 22706 Resort Hotel 1
## 22707 Resort Hotel 1
## 22708 Resort Hotel 40
## 22709 Resort Hotel 32
## 22710 Resort Hotel 40
## 22711 Resort Hotel 169
## 22712 Resort Hotel 80
## 22713 Resort Hotel 24
## 22714 Resort Hotel 57
## 22715 Resort Hotel 82
## 22716 Resort Hotel 77
## 22717 Resort Hotel 77
## 22718 Resort Hotel 77
## 22719 Resort Hotel 201
## 22720 Resort Hotel 169
## 22721 Resort Hotel 169
## 22722 Resort Hotel 169
## 22723 Resort Hotel 169
## 22724 Resort Hotel 169
## 22725 Resort Hotel 169
## 22726 Resort Hotel 129
## 22727 Resort Hotel 129
## 22728 Resort Hotel 168
## 22729 Resort Hotel 66
## 22730 Resort Hotel 169
## 22731 Resort Hotel 169
## 22732 Resort Hotel 169
## 22733 Resort Hotel 169
## 22734 Resort Hotel 169
## 22735 Resort Hotel 169
## 22736 Resort Hotel 24
## 22737 Resort Hotel 24
## 22738 Resort Hotel 24
## 22739 Resort Hotel 148
## 22740 Resort Hotel 148
## 22741 Resort Hotel 28
## 22742 Resort Hotel 77
## 22743 Resort Hotel 85
## 22744 Resort Hotel 124
## 22745 Resort Hotel 0
## 22746 Resort Hotel 68
## 22747 Resort Hotel 169
## 22748 Resort Hotel 169
## 22749 Resort Hotel 7
## 22750 Resort Hotel 168
## 22751 Resort Hotel 0
## 22752 Resort Hotel 41
## 22753 Resort Hotel 79
## 22754 Resort Hotel 64
## 22755 Resort Hotel 0
## 22756 Resort Hotel 3
## 22757 Resort Hotel 0
## 22758 Resort Hotel 1
## 22759 Resort Hotel 0
## 22760 Resort Hotel 0
## 22761 Resort Hotel 55
## 22762 Resort Hotel 178
## 22763 Resort Hotel 39
## 22764 Resort Hotel 0
## 22765 Resort Hotel 0
## 22766 Resort Hotel 71
## 22767 Resort Hotel 1
## 22768 Resort Hotel 28
## 22769 Resort Hotel 28
## 22770 Resort Hotel 8
## 22771 Resort Hotel 43
## 22772 Resort Hotel 25
## 22773 Resort Hotel 25
## 22774 Resort Hotel 25
## 22775 Resort Hotel 19
## 22776 Resort Hotel 4
## 22777 Resort Hotel 19
## 22778 Resort Hotel 13
## 22779 Resort Hotel 25
## 22780 Resort Hotel 0
## 22781 Resort Hotel 0
## 22782 Resort Hotel 79
## 22783 Resort Hotel 0
## 22784 Resort Hotel 2
## 22785 Resort Hotel 1
## 22786 Resort Hotel 168
## 22787 Resort Hotel 1
## 22788 Resort Hotel 3
## 22789 Resort Hotel 1
## 22790 Resort Hotel 61
## 22791 Resort Hotel 27
## 22792 Resort Hotel 27
## 22793 Resort Hotel 0
## 22794 Resort Hotel 0
## 22795 Resort Hotel 20
## 22796 Resort Hotel 1
## 22797 Resort Hotel 0
## 22798 Resort Hotel 43
## 22799 Resort Hotel 1
## 22800 Resort Hotel 1
## 22801 Resort Hotel 1
## 22802 Resort Hotel 109
## 22803 Resort Hotel 109
## 22804 Resort Hotel 22
## 22805 Resort Hotel 33
## 22806 Resort Hotel 22
## 22807 Resort Hotel 7
## 22808 Resort Hotel 5
## 22809 Resort Hotel 1
## 22810 Resort Hotel 21
## 22811 Resort Hotel 6
## 22812 Resort Hotel 1
## 22813 Resort Hotel 75
## 22814 Resort Hotel 27
## 22815 Resort Hotel 0
## 22816 Resort Hotel 0
## 22817 Resort Hotel 0
## 22818 Resort Hotel 0
## 22819 Resort Hotel 0
## 22820 Resort Hotel 81
## 22821 Resort Hotel 0
## 22822 Resort Hotel 0
## 22823 Resort Hotel 0
## 22824 Resort Hotel 60
## 22825 Resort Hotel 60
## 22826 Resort Hotel 0
## 22827 Resort Hotel 8
## 22828 Resort Hotel 72
## 22829 Resort Hotel 72
## 22830 Resort Hotel 88
## 22831 Resort Hotel 88
## 22832 Resort Hotel 76
## 22833 Resort Hotel 90
## 22834 Resort Hotel 31
## 22835 Resort Hotel 25
## 22836 Resort Hotel 48
## 22837 Resort Hotel 0
## 22838 Resort Hotel 1
## 22839 Resort Hotel 0
## 22840 Resort Hotel 2
## 22841 Resort Hotel 77
## 22842 Resort Hotel 74
## 22843 Resort Hotel 48
## 22844 Resort Hotel 3
## 22845 Resort Hotel 15
## 22846 Resort Hotel 3
## 22847 Resort Hotel 3
## 22848 Resort Hotel 3
## 22849 Resort Hotel 3
## 22850 Resort Hotel 3
## 22851 Resort Hotel 3
## 22852 Resort Hotel 2
## 22853 Resort Hotel 3
## 22854 Resort Hotel 1
## 22855 Resort Hotel 7
## 22856 Resort Hotel 0
## 22857 Resort Hotel 32
## 22858 Resort Hotel 18
## 22859 Resort Hotel 2
## 22860 Resort Hotel 1
## 22861 Resort Hotel 17
## 22862 Resort Hotel 4
## 22863 Resort Hotel 25
## 22864 Resort Hotel 180
## 22865 Resort Hotel 27
## 22866 Resort Hotel 1
## 22867 Resort Hotel 17
## 22868 Resort Hotel 23
## 22869 Resort Hotel 45
## 22870 Resort Hotel 45
## 22871 Resort Hotel 25
## 22872 Resort Hotel 11
## 22873 Resort Hotel 8
## 22874 Resort Hotel 6
## 22875 Resort Hotel 3
## 22876 Resort Hotel 24
## 22877 Resort Hotel 0
## 22878 Resort Hotel 71
## 22879 Resort Hotel 32
## 22880 Resort Hotel 2
## 22881 Resort Hotel 80
## 22882 Resort Hotel 80
## 22883 Resort Hotel 80
## 22884 Resort Hotel 80
## 22885 Resort Hotel 80
## 22886 Resort Hotel 80
## 22887 Resort Hotel 80
## 22888 Resort Hotel 80
## 22889 Resort Hotel 80
## 22890 Resort Hotel 80
## 22891 Resort Hotel 80
## 22892 Resort Hotel 80
## 22893 Resort Hotel 80
## 22894 Resort Hotel 80
## 22895 Resort Hotel 80
## 22896 Resort Hotel 80
## 22897 Resort Hotel 80
## 22898 Resort Hotel 80
## 22899 Resort Hotel 80
## 22900 Resort Hotel 80
## 22901 Resort Hotel 80
## 22902 Resort Hotel 80
## 22903 Resort Hotel 80
## 22904 Resort Hotel 80
## 22905 Resort Hotel 80
## 22906 Resort Hotel 80
## 22907 Resort Hotel 80
## 22908 Resort Hotel 31
## 22909 Resort Hotel 31
## 22910 Resort Hotel 76
## 22911 Resort Hotel 22
## 22912 Resort Hotel 9
## 22913 Resort Hotel 31
## 22914 Resort Hotel 31
## 22915 Resort Hotel 31
## 22916 Resort Hotel 44
## 22917 Resort Hotel 44
## 22918 Resort Hotel 44
## 22919 Resort Hotel 8
## 22920 Resort Hotel 16
## 22921 Resort Hotel 10
## 22922 Resort Hotel 5
## 22923 Resort Hotel 39
## 22924 Resort Hotel 3
## 22925 Resort Hotel 14
## 22926 Resort Hotel 3
## 22927 Resort Hotel 3
## 22928 Resort Hotel 3
## 22929 Resort Hotel 10
## 22930 Resort Hotel 10
## 22931 Resort Hotel 1
## 22932 Resort Hotel 1
## 22933 Resort Hotel 24
## 22934 Resort Hotel 49
## 22935 Resort Hotel 50
## 22936 Resort Hotel 15
## 22937 Resort Hotel 35
## 22938 Resort Hotel 26
## 22939 Resort Hotel 143
## 22940 Resort Hotel 27
## 22941 Resort Hotel 14
## 22942 Resort Hotel 13
## 22943 Resort Hotel 52
## 22944 Resort Hotel 0
## 22945 Resort Hotel 27
## 22946 Resort Hotel 9
## 22947 Resort Hotel 32
## 22948 Resort Hotel 24
## 22949 Resort Hotel 49
## 22950 Resort Hotel 33
## 22951 Resort Hotel 33
## 22952 Resort Hotel 81
## 22953 Resort Hotel 80
## 22954 Resort Hotel 0
## 22955 Resort Hotel 36
## 22956 Resort Hotel 3
## 22957 Resort Hotel 21
## 22958 Resort Hotel 19
## 22959 Resort Hotel 52
## 22960 Resort Hotel 19
## 22961 Resort Hotel 65
## 22962 Resort Hotel 1
## 22963 Resort Hotel 33
## 22964 Resort Hotel 55
## 22965 Resort Hotel 9
## 22966 Resort Hotel 0
## 22967 Resort Hotel 0
## 22968 Resort Hotel 13
## 22969 Resort Hotel 0
## 22970 Resort Hotel 21
## 22971 Resort Hotel 73
## 22972 Resort Hotel 1
## 22973 Resort Hotel 77
## 22974 Resort Hotel 26
## 22975 Resort Hotel 155
## 22976 Resort Hotel 5
## 22977 Resort Hotel 0
## 22978 Resort Hotel 18
## 22979 Resort Hotel 18
## 22980 Resort Hotel 3
## 22981 Resort Hotel 3
## 22982 Resort Hotel 26
## 22983 Resort Hotel 45
## 22984 Resort Hotel 14
## 22985 Resort Hotel 31
## 22986 Resort Hotel 0
## 22987 Resort Hotel 31
## 22988 Resort Hotel 29
## 22989 Resort Hotel 0
## 22990 Resort Hotel 18
## 22991 Resort Hotel 0
## 22992 Resort Hotel 31
## 22993 Resort Hotel 28
## 22994 Resort Hotel 13
## 22995 Resort Hotel 57
## 22996 Resort Hotel 83
## 22997 Resort Hotel 0
## 22998 Resort Hotel 2
## 22999 Resort Hotel 1
## 23000 Resort Hotel 0
## 23001 Resort Hotel 62
## 23002 Resort Hotel 62
## 23003 Resort Hotel 89
## 23004 Resort Hotel 89
## 23005 Resort Hotel 1
## 23006 Resort Hotel 38
## 23007 Resort Hotel 3
## 23008 Resort Hotel 57
## 23009 Resort Hotel 12
## 23010 Resort Hotel 49
## 23011 Resort Hotel 26
## 23012 Resort Hotel 25
## 23013 Resort Hotel 1
## 23014 Resort Hotel 1
## 23015 Resort Hotel 1
## 23016 Resort Hotel 36
## 23017 Resort Hotel 4
## 23018 Resort Hotel 18
## 23019 Resort Hotel 5
## 23020 Resort Hotel 3
## 23021 Resort Hotel 18
## 23022 Resort Hotel 99
## 23023 Resort Hotel 27
## 23024 Resort Hotel 27
## 23025 Resort Hotel 1
## 23026 Resort Hotel 73
## 23027 Resort Hotel 42
## 23028 Resort Hotel 0
## 23029 Resort Hotel 22
## 23030 Resort Hotel 6
## 23031 Resort Hotel 14
## 23032 Resort Hotel 27
## 23033 Resort Hotel 7
## 23034 Resort Hotel 35
## 23035 Resort Hotel 30
## 23036 Resort Hotel 50
## 23037 Resort Hotel 65
## 23038 Resort Hotel 86
## 23039 Resort Hotel 100
## 23040 Resort Hotel 114
## 23041 Resort Hotel 29
## 23042 Resort Hotel 7
## 23043 Resort Hotel 27
## 23044 Resort Hotel 2
## 23045 Resort Hotel 5
## 23046 Resort Hotel 17
## 23047 Resort Hotel 32
## 23048 Resort Hotel 10
## 23049 Resort Hotel 4
## 23050 Resort Hotel 61
## 23051 Resort Hotel 14
## 23052 Resort Hotel 17
## 23053 Resort Hotel 0
## 23054 Resort Hotel 27
## 23055 Resort Hotel 178
## 23056 Resort Hotel 0
## 23057 Resort Hotel 1
## 23058 Resort Hotel 2
## 23059 Resort Hotel 2
## 23060 Resort Hotel 83
## 23061 Resort Hotel 2
## 23062 Resort Hotel 88
## 23063 Resort Hotel 0
## 23064 Resort Hotel 0
## 23065 Resort Hotel 0
## 23066 Resort Hotel 95
## 23067 Resort Hotel 95
## 23068 Resort Hotel 30
## 23069 Resort Hotel 34
## 23070 Resort Hotel 194
## 23071 Resort Hotel 167
## 23072 Resort Hotel 6
## 23073 Resort Hotel 6
## 23074 Resort Hotel 0
## 23075 Resort Hotel 27
## 23076 Resort Hotel 75
## 23077 Resort Hotel 2
## 23078 Resort Hotel 2
## 23079 Resort Hotel 0
## 23080 Resort Hotel 6
## 23081 Resort Hotel 8
## 23082 Resort Hotel 2
## 23083 Resort Hotel 0
## 23084 Resort Hotel 64
## 23085 Resort Hotel 65
## 23086 Resort Hotel 43
## 23087 Resort Hotel 57
## 23088 Resort Hotel 104
## 23089 Resort Hotel 43
## 23090 Resort Hotel 57
## 23091 Resort Hotel 8
## 23092 Resort Hotel 11
## 23093 Resort Hotel 27
## 23094 Resort Hotel 2
## 23095 Resort Hotel 1
## 23096 Resort Hotel 2
## 23097 Resort Hotel 1
## 23098 Resort Hotel 0
## 23099 Resort Hotel 3
## 23100 Resort Hotel 3
## 23101 Resort Hotel 28
## 23102 Resort Hotel 28
## 23103 Resort Hotel 37
## 23104 Resort Hotel 34
## 23105 Resort Hotel 58
## 23106 Resort Hotel 45
## 23107 Resort Hotel 4
## 23108 Resort Hotel 194
## 23109 Resort Hotel 29
## 23110 Resort Hotel 112
## 23111 Resort Hotel 147
## 23112 Resort Hotel 5
## 23113 Resort Hotel 19
## 23114 Resort Hotel 18
## 23115 Resort Hotel 1
## 23116 Resort Hotel 4
## 23117 Resort Hotel 1
## 23118 Resort Hotel 20
## 23119 Resort Hotel 0
## 23120 Resort Hotel 0
## 23121 Resort Hotel 4
## 23122 Resort Hotel 115
## 23123 Resort Hotel 117
## 23124 Resort Hotel 45
## 23125 Resort Hotel 205
## 23126 Resort Hotel 121
## 23127 Resort Hotel 74
## 23128 Resort Hotel 20
## 23129 Resort Hotel 74
## 23130 Resort Hotel 74
## 23131 Resort Hotel 20
## 23132 Resort Hotel 20
## 23133 Resort Hotel 72
## 23134 Resort Hotel 5
## 23135 Resort Hotel 20
## 23136 Resort Hotel 74
## 23137 Resort Hotel 36
## 23138 Resort Hotel 27
## 23139 Resort Hotel 83
## 23140 Resort Hotel 54
## 23141 Resort Hotel 30
## 23142 Resort Hotel 72
## 23143 Resort Hotel 33
## 23144 Resort Hotel 228
## 23145 Resort Hotel 9
## 23146 Resort Hotel 72
## 23147 Resort Hotel 72
## 23148 Resort Hotel 72
## 23149 Resort Hotel 5
## 23150 Resort Hotel 72
## 23151 Resort Hotel 74
## 23152 Resort Hotel 72
## 23153 Resort Hotel 72
## 23154 Resort Hotel 72
## 23155 Resort Hotel 74
## 23156 Resort Hotel 72
## 23157 Resort Hotel 90
## 23158 Resort Hotel 87
## 23159 Resort Hotel 52
## 23160 Resort Hotel 87
## 23161 Resort Hotel 275
## 23162 Resort Hotel 190
## 23163 Resort Hotel 54
## 23164 Resort Hotel 61
## 23165 Resort Hotel 78
## 23166 Resort Hotel 68
## 23167 Resort Hotel 78
## 23168 Resort Hotel 277
## 23169 Resort Hotel 87
## 23170 Resort Hotel 30
## 23171 Resort Hotel 249
## 23172 Resort Hotel 284
## 23173 Resort Hotel 140
## 23174 Resort Hotel 72
## 23175 Resort Hotel 72
## 23176 Resort Hotel 39
## 23177 Resort Hotel 72
## 23178 Resort Hotel 72
## 23179 Resort Hotel 129
## 23180 Resort Hotel 8
## 23181 Resort Hotel 7
## 23182 Resort Hotel 12
## 23183 Resort Hotel 16
## 23184 Resort Hotel 0
## 23185 Resort Hotel 24
## 23186 Resort Hotel 1
## 23187 Resort Hotel 3
## 23188 Resort Hotel 11
## 23189 Resort Hotel 50
## 23190 Resort Hotel 13
## 23191 Resort Hotel 37
## 23192 Resort Hotel 7
## 23193 Resort Hotel 66
## 23194 Resort Hotel 153
## 23195 Resort Hotel 18
## 23196 Resort Hotel 23
## 23197 Resort Hotel 153
## 23198 Resort Hotel 7
## 23199 Resort Hotel 72
## 23200 Resort Hotel 86
## 23201 Resort Hotel 1
## 23202 Resort Hotel 12
## 23203 Resort Hotel 11
## 23204 Resort Hotel 51
## 23205 Resort Hotel 59
## 23206 Resort Hotel 0
## 23207 Resort Hotel 10
## 23208 Resort Hotel 3
## 23209 Resort Hotel 1
## 23210 Resort Hotel 21
## 23211 Resort Hotel 24
## 23212 Resort Hotel 74
## 23213 Resort Hotel 0
## 23214 Resort Hotel 0
## 23215 Resort Hotel 12
## 23216 Resort Hotel 34
## 23217 Resort Hotel 15
## 23218 Resort Hotel 24
## 23219 Resort Hotel 53
## 23220 Resort Hotel 2
## 23221 Resort Hotel 91
## 23222 Resort Hotel 12
## 23223 Resort Hotel 88
## 23224 Resort Hotel 9
## 23225 Resort Hotel 1
## 23226 Resort Hotel 0
## 23227 Resort Hotel 0
## 23228 Resort Hotel 1
## 23229 Resort Hotel 1
## 23230 Resort Hotel 46
## 23231 Resort Hotel 82
## 23232 Resort Hotel 8
## 23233 Resort Hotel 0
## 23234 Resort Hotel 18
## 23235 Resort Hotel 3
## 23236 Resort Hotel 0
## 23237 Resort Hotel 4
## 23238 Resort Hotel 1
## 23239 Resort Hotel 0
## 23240 Resort Hotel 0
## 23241 Resort Hotel 1
## 23242 Resort Hotel 0
## 23243 Resort Hotel 4
## 23244 Resort Hotel 86
## 23245 Resort Hotel 7
## 23246 Resort Hotel 31
## 23247 Resort Hotel 0
## 23248 Resort Hotel 0
## 23249 Resort Hotel 31
## 23250 Resort Hotel 31
## 23251 Resort Hotel 31
## 23252 Resort Hotel 31
## 23253 Resort Hotel 31
## 23254 Resort Hotel 31
## 23255 Resort Hotel 185
## 23256 Resort Hotel 32
## 23257 Resort Hotel 32
## 23258 Resort Hotel 32
## 23259 Resort Hotel 32
## 23260 Resort Hotel 32
## 23261 Resort Hotel 32
## 23262 Resort Hotel 32
## 23263 Resort Hotel 32
## 23264 Resort Hotel 32
## 23265 Resort Hotel 32
## 23266 Resort Hotel 32
## 23267 Resort Hotel 32
## 23268 Resort Hotel 1
## 23269 Resort Hotel 32
## 23270 Resort Hotel 31
## 23271 Resort Hotel 31
## 23272 Resort Hotel 0
## 23273 Resort Hotel 24
## 23274 Resort Hotel 55
## 23275 Resort Hotel 101
## 23276 Resort Hotel 31
## 23277 Resort Hotel 31
## 23278 Resort Hotel 31
## 23279 Resort Hotel 0
## 23280 Resort Hotel 0
## 23281 Resort Hotel 89
## 23282 Resort Hotel 91
## 23283 Resort Hotel 29
## 23284 Resort Hotel 9
## 23285 Resort Hotel 2
## 23286 Resort Hotel 0
## 23287 Resort Hotel 80
## 23288 Resort Hotel 1
## 23289 Resort Hotel 35
## 23290 Resort Hotel 91
## 23291 Resort Hotel 91
## 23292 Resort Hotel 82
## 23293 Resort Hotel 86
## 23294 Resort Hotel 86
## 23295 Resort Hotel 137
## 23296 Resort Hotel 2
## 23297 Resort Hotel 93
## 23298 Resort Hotel 86
## 23299 Resort Hotel 1
## 23300 Resort Hotel 1
## 23301 Resort Hotel 5
## 23302 Resort Hotel 55
## 23303 Resort Hotel 82
## 23304 Resort Hotel 82
## 23305 Resort Hotel 0
## 23306 Resort Hotel 93
## 23307 Resort Hotel 32
## 23308 Resort Hotel 33
## 23309 Resort Hotel 46
## 23310 Resort Hotel 114
## 23311 Resort Hotel 47
## 23312 Resort Hotel 47
## 23313 Resort Hotel 2
## 23314 Resort Hotel 88
## 23315 Resort Hotel 88
## 23316 Resort Hotel 28
## 23317 Resort Hotel 0
## 23318 Resort Hotel 0
## 23319 Resort Hotel 0
## 23320 Resort Hotel 4
## 23321 Resort Hotel 64
## 23322 Resort Hotel 56
## 23323 Resort Hotel 89
## 23324 Resort Hotel 162
## 23325 Resort Hotel 86
## 23326 Resort Hotel 54
## 23327 Resort Hotel 54
## 23328 Resort Hotel 18
## 23329 Resort Hotel 55
## 23330 Resort Hotel 47
## 23331 Resort Hotel 47
## 23332 Resort Hotel 39
## 23333 Resort Hotel 128
## 23334 Resort Hotel 128
## 23335 Resort Hotel 94
## 23336 Resort Hotel 96
## 23337 Resort Hotel 33
## 23338 Resort Hotel 51
## 23339 Resort Hotel 53
## 23340 Resort Hotel 0
## 23341 Resort Hotel 155
## 23342 Resort Hotel 140
## 23343 Resort Hotel 43
## 23344 Resort Hotel 40
## 23345 Resort Hotel 31
## 23346 Resort Hotel 1
## 23347 Resort Hotel 1
## 23348 Resort Hotel 0
## 23349 Resort Hotel 12
## 23350 Resort Hotel 37
## 23351 Resort Hotel 92
## 23352 Resort Hotel 59
## 23353 Resort Hotel 92
## 23354 Resort Hotel 92
## 23355 Resort Hotel 0
## 23356 Resort Hotel 139
## 23357 Resort Hotel 0
## 23358 Resort Hotel 31
## 23359 Resort Hotel 92
## 23360 Resort Hotel 42
## 23361 Resort Hotel 0
## 23362 Resort Hotel 70
## 23363 Resort Hotel 36
## 23364 Resort Hotel 78
## 23365 Resort Hotel 78
## 23366 Resort Hotel 43
## 23367 Resort Hotel 132
## 23368 Resort Hotel 6
## 23369 Resort Hotel 2
## 23370 Resort Hotel 3
## 23371 Resort Hotel 3
## 23372 Resort Hotel 0
## 23373 Resort Hotel 152
## 23374 Resort Hotel 152
## 23375 Resort Hotel 14
## 23376 Resort Hotel 14
## 23377 Resort Hotel 0
## 23378 Resort Hotel 1
## 23379 Resort Hotel 34
## 23380 Resort Hotel 2
## 23381 Resort Hotel 3
## 23382 Resort Hotel 152
## 23383 Resort Hotel 152
## 23384 Resort Hotel 1
## 23385 Resort Hotel 152
## 23386 Resort Hotel 152
## 23387 Resort Hotel 3
## 23388 Resort Hotel 3
## 23389 Resort Hotel 2
## 23390 Resort Hotel 0
## 23391 Resort Hotel 79
## 23392 Resort Hotel 79
## 23393 Resort Hotel 80
## 23394 Resort Hotel 106
## 23395 Resort Hotel 109
## 23396 Resort Hotel 92
## 23397 Resort Hotel 39
## 23398 Resort Hotel 10
## 23399 Resort Hotel 8
## 23400 Resort Hotel 105
## 23401 Resort Hotel 40
## 23402 Resort Hotel 70
## 23403 Resort Hotel 21
## 23404 Resort Hotel 35
## 23405 Resort Hotel 35
## 23406 Resort Hotel 44
## 23407 Resort Hotel 42
## 23408 Resort Hotel 58
## 23409 Resort Hotel 42
## 23410 Resort Hotel 183
## 23411 Resort Hotel 182
## 23412 Resort Hotel 37
## 23413 Resort Hotel 92
## 23414 Resort Hotel 23
## 23415 Resort Hotel 21
## 23416 Resort Hotel 19
## 23417 Resort Hotel 27
## 23418 Resort Hotel 0
## 23419 Resort Hotel 0
## 23420 Resort Hotel 49
## 23421 Resort Hotel 39
## 23422 Resort Hotel 39
## 23423 Resort Hotel 28
## 23424 Resort Hotel 1
## 23425 Resort Hotel 2
## 23426 Resort Hotel 1
## 23427 Resort Hotel 35
## 23428 Resort Hotel 35
## 23429 Resort Hotel 85
## 23430 Resort Hotel 85
## 23431 Resort Hotel 9
## 23432 Resort Hotel 85
## 23433 Resort Hotel 4
## 23434 Resort Hotel 28
## 23435 Resort Hotel 14
## 23436 Resort Hotel 9
## 23437 Resort Hotel 9
## 23438 Resort Hotel 13
## 23439 Resort Hotel 1
## 23440 Resort Hotel 98
## 23441 Resort Hotel 32
## 23442 Resort Hotel 32
## 23443 Resort Hotel 32
## 23444 Resort Hotel 32
## 23445 Resort Hotel 32
## 23446 Resort Hotel 32
## 23447 Resort Hotel 32
## 23448 Resort Hotel 32
## 23449 Resort Hotel 32
## 23450 Resort Hotel 32
## 23451 Resort Hotel 32
## 23452 Resort Hotel 32
## 23453 Resort Hotel 39
## 23454 Resort Hotel 172
## 23455 Resort Hotel 60
## 23456 Resort Hotel 0
## 23457 Resort Hotel 160
## 23458 Resort Hotel 41
## 23459 Resort Hotel 15
## 23460 Resort Hotel 51
## 23461 Resort Hotel 172
## 23462 Resort Hotel 172
## 23463 Resort Hotel 90
## 23464 Resort Hotel 172
## 23465 Resort Hotel 36
## 23466 Resort Hotel 172
## 23467 Resort Hotel 172
## 23468 Resort Hotel 172
## 23469 Resort Hotel 172
## 23470 Resort Hotel 172
## 23471 Resort Hotel 172
## 23472 Resort Hotel 190
## 23473 Resort Hotel 172
## 23474 Resort Hotel 42
## 23475 Resort Hotel 172
## 23476 Resort Hotel 172
## 23477 Resort Hotel 0
## 23478 Resort Hotel 33
## 23479 Resort Hotel 0
## 23480 Resort Hotel 36
## 23481 Resort Hotel 1
## 23482 Resort Hotel 99
## 23483 Resort Hotel 1
## 23484 Resort Hotel 172
## 23485 Resort Hotel 172
## 23486 Resort Hotel 123
## 23487 Resort Hotel 38
## 23488 Resort Hotel 13
## 23489 Resort Hotel 0
## 23490 Resort Hotel 0
## 23491 Resort Hotel 0
## 23492 Resort Hotel 0
## 23493 Resort Hotel 6
## 23494 Resort Hotel 0
## 23495 Resort Hotel 7
## 23496 Resort Hotel 6
## 23497 Resort Hotel 63
## 23498 Resort Hotel 100
## 23499 Resort Hotel 6
## 23500 Resort Hotel 29
## 23501 Resort Hotel 37
## 23502 Resort Hotel 13
## 23503 Resort Hotel 9
## 23504 Resort Hotel 6
## 23505 Resort Hotel 2
## 23506 Resort Hotel 3
## 23507 Resort Hotel 47
## 23508 Resort Hotel 6
## 23509 Resort Hotel 6
## 23510 Resort Hotel 115
## 23511 Resort Hotel 82
## 23512 Resort Hotel 73
## 23513 Resort Hotel 42
## 23514 Resort Hotel 30
## 23515 Resort Hotel 113
## 23516 Resort Hotel 113
## 23517 Resort Hotel 81
## 23518 Resort Hotel 21
## 23519 Resort Hotel 109
## 23520 Resort Hotel 109
## 23521 Resort Hotel 35
## 23522 Resort Hotel 1
## 23523 Resort Hotel 89
## 23524 Resort Hotel 5
## 23525 Resort Hotel 1
## 23526 Resort Hotel 1
## 23527 Resort Hotel 19
## 23528 Resort Hotel 0
## 23529 Resort Hotel 5
## 23530 Resort Hotel 0
## 23531 Resort Hotel 22
## 23532 Resort Hotel 2
## 23533 Resort Hotel 2
## 23534 Resort Hotel 5
## 23535 Resort Hotel 2
## 23536 Resort Hotel 71
## 23537 Resort Hotel 0
## 23538 Resort Hotel 0
## 23539 Resort Hotel 100
## 23540 Resort Hotel 1
## 23541 Resort Hotel 63
## 23542 Resort Hotel 6
## 23543 Resort Hotel 10
## 23544 Resort Hotel 32
## 23545 Resort Hotel 2
## 23546 Resort Hotel 25
## 23547 Resort Hotel 22
## 23548 Resort Hotel 41
## 23549 Resort Hotel 15
## 23550 Resort Hotel 101
## 23551 Resort Hotel 104
## 23552 Resort Hotel 6
## 23553 Resort Hotel 86
## 23554 Resort Hotel 104
## 23555 Resort Hotel 72
## 23556 Resort Hotel 95
## 23557 Resort Hotel 3
## 23558 Resort Hotel 72
## 23559 Resort Hotel 72
## 23560 Resort Hotel 72
## 23561 Resort Hotel 46
## 23562 Resort Hotel 72
## 23563 Resort Hotel 83
## 23564 Resort Hotel 15
## 23565 Resort Hotel 68
## 23566 Resort Hotel 101
## 23567 Resort Hotel 108
## 23568 Resort Hotel 7
## 23569 Resort Hotel 6
## 23570 Resort Hotel 6
## 23571 Resort Hotel 22
## 23572 Resort Hotel 5
## 23573 Resort Hotel 6
## 23574 Resort Hotel 6
## 23575 Resort Hotel 3
## 23576 Resort Hotel 6
## 23577 Resort Hotel 179
## 23578 Resort Hotel 179
## 23579 Resort Hotel 88
## 23580 Resort Hotel 0
## 23581 Resort Hotel 9
## 23582 Resort Hotel 6
## 23583 Resort Hotel 2
## 23584 Resort Hotel 9
## 23585 Resort Hotel 5
## 23586 Resort Hotel 5
## 23587 Resort Hotel 3
## 23588 Resort Hotel 42
## 23589 Resort Hotel 44
## 23590 Resort Hotel 20
## 23591 Resort Hotel 1
## 23592 Resort Hotel 1
## 23593 Resort Hotel 56
## 23594 Resort Hotel 56
## 23595 Resort Hotel 35
## 23596 Resort Hotel 6
## 23597 Resort Hotel 62
## 23598 Resort Hotel 64
## 23599 Resort Hotel 2
## 23600 Resort Hotel 5
## 23601 Resort Hotel 0
## 23602 Resort Hotel 72
## 23603 Resort Hotel 44
## 23604 Resort Hotel 7
## 23605 Resort Hotel 85
## 23606 Resort Hotel 92
## 23607 Resort Hotel 1
## 23608 Resort Hotel 10
## 23609 Resort Hotel 64
## 23610 Resort Hotel 31
## 23611 Resort Hotel 12
## 23612 Resort Hotel 12
## 23613 Resort Hotel 12
## 23614 Resort Hotel 12
## 23615 Resort Hotel 12
## 23616 Resort Hotel 12
## 23617 Resort Hotel 12
## 23618 Resort Hotel 12
## 23619 Resort Hotel 12
## 23620 Resort Hotel 12
## 23621 Resort Hotel 100
## 23622 Resort Hotel 100
## 23623 Resort Hotel 12
## 23624 Resort Hotel 12
## 23625 Resort Hotel 12
## 23626 Resort Hotel 12
## 23627 Resort Hotel 12
## 23628 Resort Hotel 12
## 23629 Resort Hotel 12
## 23630 Resort Hotel 12
## 23631 Resort Hotel 12
## 23632 Resort Hotel 12
## 23633 Resort Hotel 12
## 23634 Resort Hotel 1
## 23635 Resort Hotel 12
## 23636 Resort Hotel 132
## 23637 Resort Hotel 21
## 23638 Resort Hotel 53
## 23639 Resort Hotel 0
## 23640 Resort Hotel 26
## 23641 Resort Hotel 26
## 23642 Resort Hotel 26
## 23643 Resort Hotel 111
## 23644 Resort Hotel 111
## 23645 Resort Hotel 111
## 23646 Resort Hotel 5
## 23647 Resort Hotel 37
## 23648 Resort Hotel 84
## 23649 Resort Hotel 21
## 23650 Resort Hotel 12
## 23651 Resort Hotel 2
## 23652 Resort Hotel 5
## 23653 Resort Hotel 5
## 23654 Resort Hotel 24
## 23655 Resort Hotel 74
## 23656 Resort Hotel 44
## 23657 Resort Hotel 5
## 23658 Resort Hotel 2
## 23659 Resort Hotel 70
## 23660 Resort Hotel 39
## 23661 Resort Hotel 69
## 23662 Resort Hotel 1
## 23663 Resort Hotel 99
## 23664 Resort Hotel 101
## 23665 Resort Hotel 43
## 23666 Resort Hotel 64
## 23667 Resort Hotel 20
## 23668 Resort Hotel 100
## 23669 Resort Hotel 33
## 23670 Resort Hotel 6
## 23671 Resort Hotel 44
## 23672 Resort Hotel 14
## 23673 Resort Hotel 160
## 23674 Resort Hotel 0
## 23675 Resort Hotel 0
## 23676 Resort Hotel 14
## 23677 Resort Hotel 20
## 23678 Resort Hotel 18
## 23679 Resort Hotel 13
## 23680 Resort Hotel 18
## 23681 Resort Hotel 7
## 23682 Resort Hotel 7
## 23683 Resort Hotel 6
## 23684 Resort Hotel 124
## 23685 Resort Hotel 44
## 23686 Resort Hotel 4
## 23687 Resort Hotel 4
## 23688 Resort Hotel 0
## 23689 Resort Hotel 13
## 23690 Resort Hotel 2
## 23691 Resort Hotel 1
## 23692 Resort Hotel 197
## 23693 Resort Hotel 197
## 23694 Resort Hotel 197
## 23695 Resort Hotel 197
## 23696 Resort Hotel 197
## 23697 Resort Hotel 197
## 23698 Resort Hotel 197
## 23699 Resort Hotel 197
## 23700 Resort Hotel 197
## 23701 Resort Hotel 197
## 23702 Resort Hotel 197
## 23703 Resort Hotel 197
## 23704 Resort Hotel 197
## 23705 Resort Hotel 197
## 23706 Resort Hotel 197
## 23707 Resort Hotel 197
## 23708 Resort Hotel 197
## 23709 Resort Hotel 197
## 23710 Resort Hotel 197
## 23711 Resort Hotel 197
## 23712 Resort Hotel 197
## 23713 Resort Hotel 197
## 23714 Resort Hotel 197
## 23715 Resort Hotel 197
## 23716 Resort Hotel 197
## 23717 Resort Hotel 197
## 23718 Resort Hotel 197
## 23719 Resort Hotel 197
## 23720 Resort Hotel 197
## 23721 Resort Hotel 197
## 23722 Resort Hotel 197
## 23723 Resort Hotel 47
## 23724 Resort Hotel 47
## 23725 Resort Hotel 47
## 23726 Resort Hotel 197
## 23727 Resort Hotel 197
## 23728 Resort Hotel 47
## 23729 Resort Hotel 8
## 23730 Resort Hotel 8
## 23731 Resort Hotel 3
## 23732 Resort Hotel 3
## 23733 Resort Hotel 18
## 23734 Resort Hotel 13
## 23735 Resort Hotel 29
## 23736 Resort Hotel 61
## 23737 Resort Hotel 0
## 23738 Resort Hotel 0
## 23739 Resort Hotel 4
## 23740 Resort Hotel 4
## 23741 Resort Hotel 5
## 23742 Resort Hotel 22
## 23743 Resort Hotel 73
## 23744 Resort Hotel 2
## 23745 Resort Hotel 1
## 23746 Resort Hotel 3
## 23747 Resort Hotel 43
## 23748 Resort Hotel 0
## 23749 Resort Hotel 62
## 23750 Resort Hotel 30
## 23751 Resort Hotel 30
## 23752 Resort Hotel 7
## 23753 Resort Hotel 6
## 23754 Resort Hotel 43
## 23755 Resort Hotel 17
## 23756 Resort Hotel 23
## 23757 Resort Hotel 91
## 23758 Resort Hotel 3
## 23759 Resort Hotel 3
## 23760 Resort Hotel 17
## 23761 Resort Hotel 11
## 23762 Resort Hotel 86
## 23763 Resort Hotel 43
## 23764 Resort Hotel 23
## 23765 Resort Hotel 0
## 23766 Resort Hotel 0
## 23767 Resort Hotel 0
## 23768 Resort Hotel 0
## 23769 Resort Hotel 73
## 23770 Resort Hotel 0
## 23771 Resort Hotel 5
## 23772 Resort Hotel 0
## 23773 Resort Hotel 18
## 23774 Resort Hotel 5
## 23775 Resort Hotel 2
## 23776 Resort Hotel 112
## 23777 Resort Hotel 31
## 23778 Resort Hotel 26
## 23779 Resort Hotel 113
## 23780 Resort Hotel 13
## 23781 Resort Hotel 104
## 23782 Resort Hotel 97
## 23783 Resort Hotel 0
## 23784 Resort Hotel 11
## 23785 Resort Hotel 101
## 23786 Resort Hotel 0
## 23787 Resort Hotel 4
## 23788 Resort Hotel 7
## 23789 Resort Hotel 4
## 23790 Resort Hotel 11
## 23791 Resort Hotel 0
## 23792 Resort Hotel 0
## 23793 Resort Hotel 0
## 23794 Resort Hotel 3
## 23795 Resort Hotel 0
## 23796 Resort Hotel 0
## 23797 Resort Hotel 0
## 23798 Resort Hotel 35
## 23799 Resort Hotel 5
## 23800 Resort Hotel 5
## 23801 Resort Hotel 7
## 23802 Resort Hotel 7
## 23803 Resort Hotel 33
## 23804 Resort Hotel 70
## 23805 Resort Hotel 7
## 23806 Resort Hotel 3
## 23807 Resort Hotel 33
## 23808 Resort Hotel 33
## 23809 Resort Hotel 143
## 23810 Resort Hotel 12
## 23811 Resort Hotel 9
## 23812 Resort Hotel 78
## 23813 Resort Hotel 94
## 23814 Resort Hotel 145
## 23815 Resort Hotel 104
## 23816 Resort Hotel 152
## 23817 Resort Hotel 152
## 23818 Resort Hotel 140
## 23819 Resort Hotel 113
## 23820 Resort Hotel 12
## 23821 Resort Hotel 29
## 23822 Resort Hotel 15
## 23823 Resort Hotel 1
## 23824 Resort Hotel 1
## 23825 Resort Hotel 1
## 23826 Resort Hotel 147
## 23827 Resort Hotel 13
## 23828 Resort Hotel 7
## 23829 Resort Hotel 6
## 23830 Resort Hotel 0
## 23831 Resort Hotel 117
## 23832 Resort Hotel 35
## 23833 Resort Hotel 0
## 23834 Resort Hotel 7
## 23835 Resort Hotel 12
## 23836 Resort Hotel 6
## 23837 Resort Hotel 147
## 23838 Resort Hotel 35
## 23839 Resort Hotel 13
## 23840 Resort Hotel 294
## 23841 Resort Hotel 35
## 23842 Resort Hotel 12
## 23843 Resort Hotel 105
## 23844 Resort Hotel 137
## 23845 Resort Hotel 2
## 23846 Resort Hotel 0
## 23847 Resort Hotel 78
## 23848 Resort Hotel 78
## 23849 Resort Hotel 101
## 23850 Resort Hotel 101
## 23851 Resort Hotel 143
## 23852 Resort Hotel 35
## 23853 Resort Hotel 101
## 23854 Resort Hotel 3
## 23855 Resort Hotel 10
## 23856 Resort Hotel 74
## 23857 Resort Hotel 1
## 23858 Resort Hotel 3
## 23859 Resort Hotel 29
## 23860 Resort Hotel 1
## 23861 Resort Hotel 98
## 23862 Resort Hotel 16
## 23863 Resort Hotel 1
## 23864 Resort Hotel 1
## 23865 Resort Hotel 105
## 23866 Resort Hotel 91
## 23867 Resort Hotel 35
## 23868 Resort Hotel 35
## 23869 Resort Hotel 13
## 23870 Resort Hotel 294
## 23871 Resort Hotel 102
## 23872 Resort Hotel 16
## 23873 Resort Hotel 103
## 23874 Resort Hotel 101
## 23875 Resort Hotel 16
## 23876 Resort Hotel 16
## 23877 Resort Hotel 1
## 23878 Resort Hotel 79
## 23879 Resort Hotel 16
## 23880 Resort Hotel 16
## 23881 Resort Hotel 16
## 23882 Resort Hotel 102
## 23883 Resort Hotel 99
## 23884 Resort Hotel 101
## 23885 Resort Hotel 0
## 23886 Resort Hotel 212
## 23887 Resort Hotel 104
## 23888 Resort Hotel 40
## 23889 Resort Hotel 76
## 23890 Resort Hotel 106
## 23891 Resort Hotel 87
## 23892 Resort Hotel 101
## 23893 Resort Hotel 103
## 23894 Resort Hotel 94
## 23895 Resort Hotel 98
## 23896 Resort Hotel 98
## 23897 Resort Hotel 99
## 23898 Resort Hotel 25
## 23899 Resort Hotel 0
## 23900 Resort Hotel 140
## 23901 Resort Hotel 4
## 23902 Resort Hotel 32
## 23903 Resort Hotel 32
## 23904 Resort Hotel 3
## 23905 Resort Hotel 0
## 23906 Resort Hotel 101
## 23907 Resort Hotel 101
## 23908 Resort Hotel 78
## 23909 Resort Hotel 107
## 23910 Resort Hotel 107
## 23911 Resort Hotel 3
## 23912 Resort Hotel 75
## 23913 Resort Hotel 115
## 23914 Resort Hotel 108
## 23915 Resort Hotel 0
## 23916 Resort Hotel 117
## 23917 Resort Hotel 75
## 23918 Resort Hotel 75
## 23919 Resort Hotel 99
## 23920 Resort Hotel 33
## 23921 Resort Hotel 2
## 23922 Resort Hotel 103
## 23923 Resort Hotel 98
## 23924 Resort Hotel 3
## 23925 Resort Hotel 0
## 23926 Resort Hotel 4
## 23927 Resort Hotel 97
## 23928 Resort Hotel 109
## 23929 Resort Hotel 153
## 23930 Resort Hotel 4
## 23931 Resort Hotel 4
## 23932 Resort Hotel 159
## 23933 Resort Hotel 115
## 23934 Resort Hotel 159
## 23935 Resort Hotel 115
## 23936 Resort Hotel 159
## 23937 Resort Hotel 151
## 23938 Resort Hotel 1
## 23939 Resort Hotel 11
## 23940 Resort Hotel 2
## 23941 Resort Hotel 2
## 23942 Resort Hotel 2
## 23943 Resort Hotel 108
## 23944 Resort Hotel 102
## 23945 Resort Hotel 102
## 23946 Resort Hotel 104
## 23947 Resort Hotel 93
## 23948 Resort Hotel 93
## 23949 Resort Hotel 40
## 23950 Resort Hotel 15
## 23951 Resort Hotel 30
## 23952 Resort Hotel 21
## 23953 Resort Hotel 113
## 23954 Resort Hotel 113
## 23955 Resort Hotel 104
## 23956 Resort Hotel 159
## 23957 Resort Hotel 10
## 23958 Resort Hotel 115
## 23959 Resort Hotel 78
## 23960 Resort Hotel 32
## 23961 Resort Hotel 17
## 23962 Resort Hotel 113
## 23963 Resort Hotel 1
## 23964 Resort Hotel 1
## 23965 Resort Hotel 100
## 23966 Resort Hotel 100
## 23967 Resort Hotel 38
## 23968 Resort Hotel 38
## 23969 Resort Hotel 38
## 23970 Resort Hotel 110
## 23971 Resort Hotel 82
## 23972 Resort Hotel 103
## 23973 Resort Hotel 103
## 23974 Resort Hotel 29
## 23975 Resort Hotel 136
## 23976 Resort Hotel 78
## 23977 Resort Hotel 3
## 23978 Resort Hotel 81
## 23979 Resort Hotel 109
## 23980 Resort Hotel 27
## 23981 Resort Hotel 59
## 23982 Resort Hotel 89
## 23983 Resort Hotel 44
## 23984 Resort Hotel 101
## 23985 Resort Hotel 109
## 23986 Resort Hotel 112
## 23987 Resort Hotel 103
## 23988 Resort Hotel 28
## 23989 Resort Hotel 164
## 23990 Resort Hotel 164
## 23991 Resort Hotel 118
## 23992 Resort Hotel 99
## 23993 Resort Hotel 4
## 23994 Resort Hotel 30
## 23995 Resort Hotel 6
## 23996 Resort Hotel 39
## 23997 Resort Hotel 18
## 23998 Resort Hotel 146
## 23999 Resort Hotel 146
## 24000 Resort Hotel 146
## 24001 Resort Hotel 45
## 24002 Resort Hotel 58
## 24003 Resort Hotel 0
## 24004 Resort Hotel 103
## 24005 Resort Hotel 61
## 24006 Resort Hotel 40
## 24007 Resort Hotel 58
## 24008 Resort Hotel 58
## 24009 Resort Hotel 38
## 24010 Resort Hotel 176
## 24011 Resort Hotel 37
## 24012 Resort Hotel 0
## 24013 Resort Hotel 6
## 24014 Resort Hotel 5
## 24015 Resort Hotel 16
## 24016 Resort Hotel 46
## 24017 Resort Hotel 19
## 24018 Resort Hotel 164
## 24019 Resort Hotel 18
## 24020 Resort Hotel 82
## 24021 Resort Hotel 67
## 24022 Resort Hotel 4
## 24023 Resort Hotel 21
## 24024 Resort Hotel 21
## 24025 Resort Hotel 163
## 24026 Resort Hotel 45
## 24027 Resort Hotel 27
## 24028 Resort Hotel 98
## 24029 Resort Hotel 58
## 24030 Resort Hotel 5
## 24031 Resort Hotel 12
## 24032 Resort Hotel 36
## 24033 Resort Hotel 18
## 24034 Resort Hotel 15
## 24035 Resort Hotel 21
## 24036 Resort Hotel 92
## 24037 Resort Hotel 108
## 24038 Resort Hotel 0
## 24039 Resort Hotel 22
## 24040 Resort Hotel 22
## 24041 Resort Hotel 28
## 24042 Resort Hotel 1
## 24043 Resort Hotel 1
## 24044 Resort Hotel 1
## 24045 Resort Hotel 1
## 24046 Resort Hotel 1
## 24047 Resort Hotel 108
## 24048 Resort Hotel 104
## 24049 Resort Hotel 3
## 24050 Resort Hotel 6
## 24051 Resort Hotel 97
## 24052 Resort Hotel 0
## 24053 Resort Hotel 21
## 24054 Resort Hotel 31
## 24055 Resort Hotel 37
## 24056 Resort Hotel 121
## 24057 Resort Hotel 0
## 24058 Resort Hotel 84
## 24059 Resort Hotel 113
## 24060 Resort Hotel 26
## 24061 Resort Hotel 108
## 24062 Resort Hotel 73
## 24063 Resort Hotel 140
## 24064 Resort Hotel 46
## 24065 Resort Hotel 56
## 24066 Resort Hotel 72
## 24067 Resort Hotel 56
## 24068 Resort Hotel 107
## 24069 Resort Hotel 26
## 24070 Resort Hotel 107
## 24071 Resort Hotel 40
## 24072 Resort Hotel 107
## 24073 Resort Hotel 56
## 24074 Resort Hotel 56
## 24075 Resort Hotel 103
## 24076 Resort Hotel 39
## 24077 Resort Hotel 67
## 24078 Resort Hotel 84
## 24079 Resort Hotel 0
## 24080 Resort Hotel 115
## 24081 Resort Hotel 52
## 24082 Resort Hotel 48
## 24083 Resort Hotel 48
## 24084 Resort Hotel 59
## 24085 Resort Hotel 48
## 24086 Resort Hotel 1
## 24087 Resort Hotel 10
## 24088 Resort Hotel 6
## 24089 Resort Hotel 17
## 24090 Resort Hotel 48
## 24091 Resort Hotel 107
## 24092 Resort Hotel 52
## 24093 Resort Hotel 48
## 24094 Resort Hotel 52
## 24095 Resort Hotel 107
## 24096 Resort Hotel 48
## 24097 Resort Hotel 43
## 24098 Resort Hotel 48
## 24099 Resort Hotel 48
## 24100 Resort Hotel 31
## 24101 Resort Hotel 31
## 24102 Resort Hotel 5
## 24103 Resort Hotel 5
## 24104 Resort Hotel 5
## 24105 Resort Hotel 0
## 24106 Resort Hotel 8
## 24107 Resort Hotel 108
## 24108 Resort Hotel 54
## 24109 Resort Hotel 56
## 24110 Resort Hotel 72
## 24111 Resort Hotel 39
## 24112 Resort Hotel 38
## 24113 Resort Hotel 38
## 24114 Resort Hotel 8
## 24115 Resort Hotel 7
## 24116 Resort Hotel 236
## 24117 Resort Hotel 11
## 24118 Resort Hotel 41
## 24119 Resort Hotel 236
## 24120 Resort Hotel 0
## 24121 Resort Hotel 89
## 24122 Resort Hotel 7
## 24123 Resort Hotel 236
## 24124 Resort Hotel 11
## 24125 Resort Hotel 7
## 24126 Resort Hotel 70
## 24127 Resort Hotel 1
## 24128 Resort Hotel 6
## 24129 Resort Hotel 39
## 24130 Resort Hotel 97
## 24131 Resort Hotel 48
## 24132 Resort Hotel 92
## 24133 Resort Hotel 1
## 24134 Resort Hotel 119
## 24135 Resort Hotel 40
## 24136 Resort Hotel 119
## 24137 Resort Hotel 4
## 24138 Resort Hotel 115
## 24139 Resort Hotel 117
## 24140 Resort Hotel 87
## 24141 Resort Hotel 87
## 24142 Resort Hotel 115
## 24143 Resort Hotel 115
## 24144 Resort Hotel 110
## 24145 Resort Hotel 66
## 24146 Resort Hotel 23
## 24147 Resort Hotel 24
## 24148 Resort Hotel 24
## 24149 Resort Hotel 24
## 24150 Resort Hotel 24
## 24151 Resort Hotel 24
## 24152 Resort Hotel 24
## 24153 Resort Hotel 24
## 24154 Resort Hotel 24
## 24155 Resort Hotel 24
## 24156 Resort Hotel 24
## 24157 Resort Hotel 24
## 24158 Resort Hotel 24
## 24159 Resort Hotel 24
## 24160 Resort Hotel 24
## 24161 Resort Hotel 10
## 24162 Resort Hotel 123
## 24163 Resort Hotel 59
## 24164 Resort Hotel 468
## 24165 Resort Hotel 9
## 24166 Resort Hotel 468
## 24167 Resort Hotel 468
## 24168 Resort Hotel 468
## 24169 Resort Hotel 468
## 24170 Resort Hotel 468
## 24171 Resort Hotel 468
## 24172 Resort Hotel 468
## 24173 Resort Hotel 468
## 24174 Resort Hotel 468
## 24175 Resort Hotel 468
## 24176 Resort Hotel 52
## 24177 Resort Hotel 468
## 24178 Resort Hotel 4
## 24179 Resort Hotel 468
## 24180 Resort Hotel 468
## 24181 Resort Hotel 9
## 24182 Resort Hotel 468
## 24183 Resort Hotel 468
## 24184 Resort Hotel 9
## 24185 Resort Hotel 123
## 24186 Resort Hotel 53
## 24187 Resort Hotel 468
## 24188 Resort Hotel 163
## 24189 Resort Hotel 57
## 24190 Resort Hotel 52
## 24191 Resort Hotel 4
## 24192 Resort Hotel 59
## 24193 Resort Hotel 236
## 24194 Resort Hotel 17
## 24195 Resort Hotel 0
## 24196 Resort Hotel 236
## 24197 Resort Hotel 120
## 24198 Resort Hotel 236
## 24199 Resort Hotel 9
## 24200 Resort Hotel 236
## 24201 Resort Hotel 9
## 24202 Resort Hotel 207
## 24203 Resort Hotel 102
## 24204 Resort Hotel 101
## 24205 Resort Hotel 236
## 24206 Resort Hotel 9
## 24207 Resort Hotel 4
## 24208 Resort Hotel 30
## 24209 Resort Hotel 9
## 24210 Resort Hotel 112
## 24211 Resort Hotel 236
## 24212 Resort Hotel 11
## 24213 Resort Hotel 0
## 24214 Resort Hotel 13
## 24215 Resort Hotel 236
## 24216 Resort Hotel 11
## 24217 Resort Hotel 77
## 24218 Resort Hotel 236
## 24219 Resort Hotel 2
## 24220 Resort Hotel 79
## 24221 Resort Hotel 236
## 24222 Resort Hotel 9
## 24223 Resort Hotel 0
## 24224 Resort Hotel 1
## 24225 Resort Hotel 236
## 24226 Resort Hotel 236
## 24227 Resort Hotel 3
## 24228 Resort Hotel 113
## 24229 Resort Hotel 236
## 24230 Resort Hotel 9
## 24231 Resort Hotel 0
## 24232 Resort Hotel 236
## 24233 Resort Hotel 9
## 24234 Resort Hotel 236
## 24235 Resort Hotel 9
## 24236 Resort Hotel 236
## 24237 Resort Hotel 9
## 24238 Resort Hotel 236
## 24239 Resort Hotel 9
## 24240 Resort Hotel 236
## 24241 Resort Hotel 9
## 24242 Resort Hotel 236
## 24243 Resort Hotel 9
## 24244 Resort Hotel 110
## 24245 Resort Hotel 81
## 24246 Resort Hotel 236
## 24247 Resort Hotel 9
## 24248 Resort Hotel 236
## 24249 Resort Hotel 9
## 24250 Resort Hotel 236
## 24251 Resort Hotel 9
## 24252 Resort Hotel 109
## 24253 Resort Hotel 236
## 24254 Resort Hotel 9
## 24255 Resort Hotel 0
## 24256 Resort Hotel 236
## 24257 Resort Hotel 9
## 24258 Resort Hotel 236
## 24259 Resort Hotel 9
## 24260 Resort Hotel 236
## 24261 Resort Hotel 9
## 24262 Resort Hotel 236
## 24263 Resort Hotel 11
## 24264 Resort Hotel 236
## 24265 Resort Hotel 9
## 24266 Resort Hotel 236
## 24267 Resort Hotel 9
## 24268 Resort Hotel 236
## 24269 Resort Hotel 9
## 24270 Resort Hotel 0
## 24271 Resort Hotel 383
## 24272 Resort Hotel 386
## 24273 Resort Hotel 39
## 24274 Resort Hotel 117
## 24275 Resort Hotel 59
## 24276 Resort Hotel 0
## 24277 Resort Hotel 103
## 24278 Resort Hotel 236
## 24279 Resort Hotel 0
## 24280 Resort Hotel 236
## 24281 Resort Hotel 0
## 24282 Resort Hotel 87
## 24283 Resort Hotel 186
## 24284 Resort Hotel 235
## 24285 Resort Hotel 72
## 24286 Resort Hotel 44
## 24287 Resort Hotel 90
## 24288 Resort Hotel 111
## 24289 Resort Hotel 5
## 24290 Resort Hotel 5
## 24291 Resort Hotel 0
## 24292 Resort Hotel 383
## 24293 Resort Hotel 141
## 24294 Resort Hotel 1
## 24295 Resort Hotel 0
## 24296 Resort Hotel 6
## 24297 Resort Hotel 7
## 24298 Resort Hotel 26
## 24299 Resort Hotel 1
## 24300 Resort Hotel 1
## 24301 Resort Hotel 75
## 24302 Resort Hotel 0
## 24303 Resort Hotel 3
## 24304 Resort Hotel 90
## 24305 Resort Hotel 175
## 24306 Resort Hotel 0
## 24307 Resort Hotel 4
## 24308 Resort Hotel 1
## 24309 Resort Hotel 0
## 24310 Resort Hotel 2
## 24311 Resort Hotel 1
## 24312 Resort Hotel 0
## 24313 Resort Hotel 0
## 24314 Resort Hotel 106
## 24315 Resort Hotel 6
## 24316 Resort Hotel 12
## 24317 Resort Hotel 13
## 24318 Resort Hotel 26
## 24319 Resort Hotel 140
## 24320 Resort Hotel 175
## 24321 Resort Hotel 47
## 24322 Resort Hotel 61
## 24323 Resort Hotel 116
## 24324 Resort Hotel 1
## 24325 Resort Hotel 6
## 24326 Resort Hotel 3
## 24327 Resort Hotel 116
## 24328 Resort Hotel 92
## 24329 Resort Hotel 105
## 24330 Resort Hotel 113
## 24331 Resort Hotel 119
## 24332 Resort Hotel 3
## 24333 Resort Hotel 4
## 24334 Resort Hotel 160
## 24335 Resort Hotel 11
## 24336 Resort Hotel 7
## 24337 Resort Hotel 11
## 24338 Resort Hotel 7
## 24339 Resort Hotel 55
## 24340 Resort Hotel 140
## 24341 Resort Hotel 18
## 24342 Resort Hotel 90
## 24343 Resort Hotel 0
## 24344 Resort Hotel 138
## 24345 Resort Hotel 138
## 24346 Resort Hotel 142
## 24347 Resort Hotel 99
## 24348 Resort Hotel 124
## 24349 Resort Hotel 90
## 24350 Resort Hotel 91
## 24351 Resort Hotel 40
## 24352 Resort Hotel 40
## 24353 Resort Hotel 40
## 24354 Resort Hotel 40
## 24355 Resort Hotel 40
## 24356 Resort Hotel 40
## 24357 Resort Hotel 40
## 24358 Resort Hotel 40
## 24359 Resort Hotel 40
## 24360 Resort Hotel 84
## 24361 Resort Hotel 114
## 24362 Resort Hotel 107
## 24363 Resort Hotel 107
## 24364 Resort Hotel 114
## 24365 Resort Hotel 110
## 24366 Resort Hotel 8
## 24367 Resort Hotel 27
## 24368 Resort Hotel 121
## 24369 Resort Hotel 107
## 24370 Resort Hotel 2
## 24371 Resort Hotel 12
## 24372 Resort Hotel 12
## 24373 Resort Hotel 1
## 24374 Resort Hotel 61
## 24375 Resort Hotel 64
## 24376 Resort Hotel 64
## 24377 Resort Hotel 107
## 24378 Resort Hotel 21
## 24379 Resort Hotel 23
## 24380 Resort Hotel 34
## 24381 Resort Hotel 29
## 24382 Resort Hotel 19
## 24383 Resort Hotel 19
## 24384 Resort Hotel 19
## 24385 Resort Hotel 6
## 24386 Resort Hotel 145
## 24387 Resort Hotel 14
## 24388 Resort Hotel 108
## 24389 Resort Hotel 1
## 24390 Resort Hotel 0
## 24391 Resort Hotel 3
## 24392 Resort Hotel 99
## 24393 Resort Hotel 21
## 24394 Resort Hotel 0
## 24395 Resort Hotel 3
## 24396 Resort Hotel 1
## 24397 Resort Hotel 44
## 24398 Resort Hotel 1
## 24399 Resort Hotel 0
## 24400 Resort Hotel 5
## 24401 Resort Hotel 3
## 24402 Resort Hotel 29
## 24403 Resort Hotel 3
## 24404 Resort Hotel 0
## 24405 Resort Hotel 3
## 24406 Resort Hotel 36
## 24407 Resort Hotel 0
## 24408 Resort Hotel 0
## 24409 Resort Hotel 0
## 24410 Resort Hotel 2
## 24411 Resort Hotel 41
## 24412 Resort Hotel 112
## 24413 Resort Hotel 2
## 24414 Resort Hotel 5
## 24415 Resort Hotel 81
## 24416 Resort Hotel 123
## 24417 Resort Hotel 35
## 24418 Resort Hotel 7
## 24419 Resort Hotel 204
## 24420 Resort Hotel 3
## 24421 Resort Hotel 3
## 24422 Resort Hotel 0
## 24423 Resort Hotel 76
## 24424 Resort Hotel 25
## 24425 Resort Hotel 4
## 24426 Resort Hotel 96
## 24427 Resort Hotel 46
## 24428 Resort Hotel 48
## 24429 Resort Hotel 31
## 24430 Resort Hotel 23
## 24431 Resort Hotel 2
## 24432 Resort Hotel 3
## 24433 Resort Hotel 4
## 24434 Resort Hotel 25
## 24435 Resort Hotel 25
## 24436 Resort Hotel 33
## 24437 Resort Hotel 33
## 24438 Resort Hotel 6
## 24439 Resort Hotel 80
## 24440 Resort Hotel 0
## 24441 Resort Hotel 173
## 24442 Resort Hotel 129
## 24443 Resort Hotel 173
## 24444 Resort Hotel 173
## 24445 Resort Hotel 3
## 24446 Resort Hotel 2
## 24447 Resort Hotel 2
## 24448 Resort Hotel 6
## 24449 Resort Hotel 2
## 24450 Resort Hotel 86
## 24451 Resort Hotel 110
## 24452 Resort Hotel 117
## 24453 Resort Hotel 83
## 24454 Resort Hotel 13
## 24455 Resort Hotel 99
## 24456 Resort Hotel 60
## 24457 Resort Hotel 20
## 24458 Resort Hotel 117
## 24459 Resort Hotel 101
## 24460 Resort Hotel 73
## 24461 Resort Hotel 114
## 24462 Resort Hotel 3
## 24463 Resort Hotel 3
## 24464 Resort Hotel 5
## 24465 Resort Hotel 1
## 24466 Resort Hotel 29
## 24467 Resort Hotel 7
## 24468 Resort Hotel 122
## 24469 Resort Hotel 101
## 24470 Resort Hotel 23
## 24471 Resort Hotel 11
## 24472 Resort Hotel 4
## 24473 Resort Hotel 178
## 24474 Resort Hotel 2
## 24475 Resort Hotel 4
## 24476 Resort Hotel 5
## 24477 Resort Hotel 17
## 24478 Resort Hotel 62
## 24479 Resort Hotel 44
## 24480 Resort Hotel 2
## 24481 Resort Hotel 73
## 24482 Resort Hotel 189
## 24483 Resort Hotel 1
## 24484 Resort Hotel 165
## 24485 Resort Hotel 83
## 24486 Resort Hotel 17
## 24487 Resort Hotel 132
## 24488 Resort Hotel 36
## 24489 Resort Hotel 193
## 24490 Resort Hotel 68
## 24491 Resort Hotel 128
## 24492 Resort Hotel 0
## 24493 Resort Hotel 74
## 24494 Resort Hotel 76
## 24495 Resort Hotel 128
## 24496 Resort Hotel 129
## 24497 Resort Hotel 126
## 24498 Resort Hotel 119
## 24499 Resort Hotel 173
## 24500 Resort Hotel 143
## 24501 Resort Hotel 125
## 24502 Resort Hotel 129
## 24503 Resort Hotel 129
## 24504 Resort Hotel 92
## 24505 Resort Hotel 38
## 24506 Resort Hotel 6
## 24507 Resort Hotel 0
## 24508 Resort Hotel 2
## 24509 Resort Hotel 6
## 24510 Resort Hotel 217
## 24511 Resort Hotel 47
## 24512 Resort Hotel 47
## 24513 Resort Hotel 5
## 24514 Resort Hotel 86
## 24515 Resort Hotel 101
## 24516 Resort Hotel 2
## 24517 Resort Hotel 2
## 24518 Resort Hotel 97
## 24519 Resort Hotel 5
## 24520 Resort Hotel 80
## 24521 Resort Hotel 87
## 24522 Resort Hotel 133
## 24523 Resort Hotel 18
## 24524 Resort Hotel 0
## 24525 Resort Hotel 0
## 24526 Resort Hotel 68
## 24527 Resort Hotel 0
## 24528 Resort Hotel 0
## 24529 Resort Hotel 119
## 24530 Resort Hotel 71
## 24531 Resort Hotel 129
## 24532 Resort Hotel 106
## 24533 Resort Hotel 165
## 24534 Resort Hotel 17
## 24535 Resort Hotel 133
## 24536 Resort Hotel 68
## 24537 Resort Hotel 116
## 24538 Resort Hotel 116
## 24539 Resort Hotel 32
## 24540 Resort Hotel 18
## 24541 Resort Hotel 27
## 24542 Resort Hotel 127
## 24543 Resort Hotel 148
## 24544 Resort Hotel 132
## 24545 Resort Hotel 77
## 24546 Resort Hotel 40
## 24547 Resort Hotel 129
## 24548 Resort Hotel 127
## 24549 Resort Hotel 69
## 24550 Resort Hotel 64
## 24551 Resort Hotel 132
## 24552 Resort Hotel 66
## 24553 Resort Hotel 133
## 24554 Resort Hotel 24
## 24555 Resort Hotel 3
## 24556 Resort Hotel 17
## 24557 Resort Hotel 84
## 24558 Resort Hotel 104
## 24559 Resort Hotel 143
## 24560 Resort Hotel 101
## 24561 Resort Hotel 154
## 24562 Resort Hotel 154
## 24563 Resort Hotel 121
## 24564 Resort Hotel 114
## 24565 Resort Hotel 70
## 24566 Resort Hotel 118
## 24567 Resort Hotel 121
## 24568 Resort Hotel 127
## 24569 Resort Hotel 79
## 24570 Resort Hotel 88
## 24571 Resort Hotel 70
## 24572 Resort Hotel 121
## 24573 Resort Hotel 114
## 24574 Resort Hotel 80
## 24575 Resort Hotel 70
## 24576 Resort Hotel 121
## 24577 Resort Hotel 114
## 24578 Resort Hotel 124
## 24579 Resort Hotel 106
## 24580 Resort Hotel 69
## 24581 Resort Hotel 100
## 24582 Resort Hotel 70
## 24583 Resort Hotel 97
## 24584 Resort Hotel 142
## 24585 Resort Hotel 70
## 24586 Resort Hotel 70
## 24587 Resort Hotel 97
## 24588 Resort Hotel 70
## 24589 Resort Hotel 113
## 24590 Resort Hotel 132
## 24591 Resort Hotel 141
## 24592 Resort Hotel 70
## 24593 Resort Hotel 94
## 24594 Resort Hotel 141
## 24595 Resort Hotel 74
## 24596 Resort Hotel 36
## 24597 Resort Hotel 36
## 24598 Resort Hotel 117
## 24599 Resort Hotel 97
## 24600 Resort Hotel 49
## 24601 Resort Hotel 53
## 24602 Resort Hotel 173
## 24603 Resort Hotel 113
## 24604 Resort Hotel 49
## 24605 Resort Hotel 9
## 24606 Resort Hotel 28
## 24607 Resort Hotel 120
## 24608 Resort Hotel 117
## 24609 Resort Hotel 112
## 24610 Resort Hotel 117
## 24611 Resort Hotel 102
## 24612 Resort Hotel 114
## 24613 Resort Hotel 1
## 24614 Resort Hotel 251
## 24615 Resort Hotel 120
## 24616 Resort Hotel 48
## 24617 Resort Hotel 45
## 24618 Resort Hotel 37
## 24619 Resort Hotel 93
## 24620 Resort Hotel 52
## 24621 Resort Hotel 126
## 24622 Resort Hotel 57
## 24623 Resort Hotel 89
## 24624 Resort Hotel 14
## 24625 Resort Hotel 25
## 24626 Resort Hotel 90
## 24627 Resort Hotel 65
## 24628 Resort Hotel 1
## 24629 Resort Hotel 0
## 24630 Resort Hotel 76
## 24631 Resort Hotel 76
## 24632 Resort Hotel 64
## 24633 Resort Hotel 64
## 24634 Resort Hotel 124
## 24635 Resort Hotel 126
## 24636 Resort Hotel 147
## 24637 Resort Hotel 136
## 24638 Resort Hotel 39
## 24639 Resort Hotel 94
## 24640 Resort Hotel 10
## 24641 Resort Hotel 39
## 24642 Resort Hotel 125
## 24643 Resort Hotel 128
## 24644 Resort Hotel 183
## 24645 Resort Hotel 83
## 24646 Resort Hotel 123
## 24647 Resort Hotel 125
## 24648 Resort Hotel 176
## 24649 Resort Hotel 126
## 24650 Resort Hotel 152
## 24651 Resort Hotel 72
## 24652 Resort Hotel 4
## 24653 Resort Hotel 94
## 24654 Resort Hotel 7
## 24655 Resort Hotel 44
## 24656 Resort Hotel 71
## 24657 Resort Hotel 24
## 24658 Resort Hotel 9
## 24659 Resort Hotel 7
## 24660 Resort Hotel 3
## 24661 Resort Hotel 6
## 24662 Resort Hotel 0
## 24663 Resort Hotel 133
## 24664 Resort Hotel 104
## 24665 Resort Hotel 257
## 24666 Resort Hotel 109
## 24667 Resort Hotel 122
## 24668 Resort Hotel 3
## 24669 Resort Hotel 10
## 24670 Resort Hotel 87
## 24671 Resort Hotel 87
## 24672 Resort Hotel 223
## 24673 Resort Hotel 141
## 24674 Resort Hotel 100
## 24675 Resort Hotel 172
## 24676 Resort Hotel 0
## 24677 Resort Hotel 0
## 24678 Resort Hotel 0
## 24679 Resort Hotel 6
## 24680 Resort Hotel 3
## 24681 Resort Hotel 139
## 24682 Resort Hotel 224
## 24683 Resort Hotel 126
## 24684 Resort Hotel 4
## 24685 Resort Hotel 11
## 24686 Resort Hotel 39
## 24687 Resort Hotel 5
## 24688 Resort Hotel 42
## 24689 Resort Hotel 85
## 24690 Resort Hotel 250
## 24691 Resort Hotel 131
## 24692 Resort Hotel 95
## 24693 Resort Hotel 132
## 24694 Resort Hotel 0
## 24695 Resort Hotel 0
## 24696 Resort Hotel 132
## 24697 Resort Hotel 10
## 24698 Resort Hotel 144
## 24699 Resort Hotel 106
## 24700 Resort Hotel 136
## 24701 Resort Hotel 6
## 24702 Resort Hotel 3
## 24703 Resort Hotel 1
## 24704 Resort Hotel 59
## 24705 Resort Hotel 0
## 24706 Resort Hotel 131
## 24707 Resort Hotel 7
## 24708 Resort Hotel 0
## 24709 Resort Hotel 0
## 24710 Resort Hotel 57
## 24711 Resort Hotel 4
## 24712 Resort Hotel 5
## 24713 Resort Hotel 41
## 24714 Resort Hotel 101
## 24715 Resort Hotel 102
## 24716 Resort Hotel 7
## 24717 Resort Hotel 7
## 24718 Resort Hotel 68
## 24719 Resort Hotel 65
## 24720 Resort Hotel 0
## 24721 Resort Hotel 1
## 24722 Resort Hotel 135
## 24723 Resort Hotel 13
## 24724 Resort Hotel 0
## 24725 Resort Hotel 7
## 24726 Resort Hotel 13
## 24727 Resort Hotel 131
## 24728 Resort Hotel 0
## 24729 Resort Hotel 133
## 24730 Resort Hotel 133
## 24731 Resort Hotel 100
## 24732 Resort Hotel 2
## 24733 Resort Hotel 121
## 24734 Resort Hotel 0
## 24735 Resort Hotel 179
## 24736 Resort Hotel 179
## 24737 Resort Hotel 179
## 24738 Resort Hotel 2
## 24739 Resort Hotel 1
## 24740 Resort Hotel 45
## 24741 Resort Hotel 125
## 24742 Resort Hotel 125
## 24743 Resort Hotel 0
## 24744 Resort Hotel 2
## 24745 Resort Hotel 61
## 24746 Resort Hotel 2
## 24747 Resort Hotel 127
## 24748 Resort Hotel 1
## 24749 Resort Hotel 11
## 24750 Resort Hotel 132
## 24751 Resort Hotel 131
## 24752 Resort Hotel 4
## 24753 Resort Hotel 193
## 24754 Resort Hotel 71
## 24755 Resort Hotel 163
## 24756 Resort Hotel 136
## 24757 Resort Hotel 136
## 24758 Resort Hotel 21
## 24759 Resort Hotel 4
## 24760 Resort Hotel 15
## 24761 Resort Hotel 97
## 24762 Resort Hotel 0
## 24763 Resort Hotel 125
## 24764 Resort Hotel 141
## 24765 Resort Hotel 69
## 24766 Resort Hotel 191
## 24767 Resort Hotel 21
## 24768 Resort Hotel 0
## 24769 Resort Hotel 142
## 24770 Resort Hotel 142
## 24771 Resort Hotel 0
## 24772 Resort Hotel 62
## 24773 Resort Hotel 147
## 24774 Resort Hotel 62
## 24775 Resort Hotel 36
## 24776 Resort Hotel 0
## 24777 Resort Hotel 62
## 24778 Resort Hotel 62
## 24779 Resort Hotel 111
## 24780 Resort Hotel 62
## 24781 Resort Hotel 176
## 24782 Resort Hotel 252
## 24783 Resort Hotel 1
## 24784 Resort Hotel 37
## 24785 Resort Hotel 21
## 24786 Resort Hotel 21
## 24787 Resort Hotel 2
## 24788 Resort Hotel 104
## 24789 Resort Hotel 25
## 24790 Resort Hotel 42
## 24791 Resort Hotel 11
## 24792 Resort Hotel 165
## 24793 Resort Hotel 45
## 24794 Resort Hotel 79
## 24795 Resort Hotel 112
## 24796 Resort Hotel 118
## 24797 Resort Hotel 137
## 24798 Resort Hotel 146
## 24799 Resort Hotel 146
## 24800 Resort Hotel 0
## 24801 Resort Hotel 40
## 24802 Resort Hotel 8
## 24803 Resort Hotel 4
## 24804 Resort Hotel 137
## 24805 Resort Hotel 137
## 24806 Resort Hotel 1
## 24807 Resort Hotel 2
## 24808 Resort Hotel 63
## 24809 Resort Hotel 105
## 24810 Resort Hotel 134
## 24811 Resort Hotel 101
## 24812 Resort Hotel 124
## 24813 Resort Hotel 63
## 24814 Resort Hotel 143
## 24815 Resort Hotel 17
## 24816 Resort Hotel 133
## 24817 Resort Hotel 74
## 24818 Resort Hotel 137
## 24819 Resort Hotel 150
## 24820 Resort Hotel 133
## 24821 Resort Hotel 34
## 24822 Resort Hotel 34
## 24823 Resort Hotel 117
## 24824 Resort Hotel 143
## 24825 Resort Hotel 115
## 24826 Resort Hotel 128
## 24827 Resort Hotel 117
## 24828 Resort Hotel 0
## 24829 Resort Hotel 29
## 24830 Resort Hotel 19
## 24831 Resort Hotel 132
## 24832 Resort Hotel 132
## 24833 Resort Hotel 177
## 24834 Resort Hotel 177
## 24835 Resort Hotel 174
## 24836 Resort Hotel 108
## 24837 Resort Hotel 156
## 24838 Resort Hotel 130
## 24839 Resort Hotel 19
## 24840 Resort Hotel 14
## 24841 Resort Hotel 156
## 24842 Resort Hotel 46
## 24843 Resort Hotel 0
## 24844 Resort Hotel 128
## 24845 Resort Hotel 258
## 24846 Resort Hotel 28
## 24847 Resort Hotel 45
## 24848 Resort Hotel 210
## 24849 Resort Hotel 30
## 24850 Resort Hotel 111
## 24851 Resort Hotel 88
## 24852 Resort Hotel 143
## 24853 Resort Hotel 195
## 24854 Resort Hotel 149
## 24855 Resort Hotel 73
## 24856 Resort Hotel 16
## 24857 Resort Hotel 93
## 24858 Resort Hotel 150
## 24859 Resort Hotel 2
## 24860 Resort Hotel 8
## 24861 Resort Hotel 8
## 24862 Resort Hotel 119
## 24863 Resort Hotel 42
## 24864 Resort Hotel 108
## 24865 Resort Hotel 76
## 24866 Resort Hotel 197
## 24867 Resort Hotel 16
## 24868 Resort Hotel 189
## 24869 Resort Hotel 30
## 24870 Resort Hotel 126
## 24871 Resort Hotel 143
## 24872 Resort Hotel 0
## 24873 Resort Hotel 132
## 24874 Resort Hotel 138
## 24875 Resort Hotel 0
## 24876 Resort Hotel 146
## 24877 Resort Hotel 107
## 24878 Resort Hotel 141
## 24879 Resort Hotel 123
## 24880 Resort Hotel 141
## 24881 Resort Hotel 141
## 24882 Resort Hotel 141
## 24883 Resort Hotel 107
## 24884 Resort Hotel 35
## 24885 Resort Hotel 102
## 24886 Resort Hotel 100
## 24887 Resort Hotel 137
## 24888 Resort Hotel 4
## 24889 Resort Hotel 128
## 24890 Resort Hotel 75
## 24891 Resort Hotel 240
## 24892 Resort Hotel 133
## 24893 Resort Hotel 129
## 24894 Resort Hotel 129
## 24895 Resort Hotel 124
## 24896 Resort Hotel 124
## 24897 Resort Hotel 137
## 24898 Resort Hotel 38
## 24899 Resort Hotel 38
## 24900 Resort Hotel 116
## 24901 Resort Hotel 16
## 24902 Resort Hotel 131
## 24903 Resort Hotel 11
## 24904 Resort Hotel 117
## 24905 Resort Hotel 36
## 24906 Resort Hotel 105
## 24907 Resort Hotel 105
## 24908 Resort Hotel 38
## 24909 Resort Hotel 104
## 24910 Resort Hotel 136
## 24911 Resort Hotel 125
## 24912 Resort Hotel 111
## 24913 Resort Hotel 187
## 24914 Resort Hotel 86
## 24915 Resort Hotel 104
## 24916 Resort Hotel 97
## 24917 Resort Hotel 21
## 24918 Resort Hotel 118
## 24919 Resort Hotel 71
## 24920 Resort Hotel 86
## 24921 Resort Hotel 86
## 24922 Resort Hotel 0
## 24923 Resort Hotel 118
## 24924 Resort Hotel 143
## 24925 Resort Hotel 108
## 24926 Resort Hotel 53
## 24927 Resort Hotel 123
## 24928 Resort Hotel 133
## 24929 Resort Hotel 42
## 24930 Resort Hotel 41
## 24931 Resort Hotel 135
## 24932 Resort Hotel 38
## 24933 Resort Hotel 26
## 24934 Resort Hotel 240
## 24935 Resort Hotel 113
## 24936 Resort Hotel 9
## 24937 Resort Hotel 132
## 24938 Resort Hotel 119
## 24939 Resort Hotel 10
## 24940 Resort Hotel 129
## 24941 Resort Hotel 139
## 24942 Resort Hotel 21
## 24943 Resort Hotel 146
## 24944 Resort Hotel 142
## 24945 Resort Hotel 170
## 24946 Resort Hotel 8
## 24947 Resort Hotel 122
## 24948 Resort Hotel 155
## 24949 Resort Hotel 1
## 24950 Resort Hotel 147
## 24951 Resort Hotel 27
## 24952 Resort Hotel 142
## 24953 Resort Hotel 107
## 24954 Resort Hotel 1
## 24955 Resort Hotel 59
## 24956 Resort Hotel 59
## 24957 Resort Hotel 80
## 24958 Resort Hotel 160
## 24959 Resort Hotel 1
## 24960 Resort Hotel 132
## 24961 Resort Hotel 146
## 24962 Resort Hotel 24
## 24963 Resort Hotel 131
## 24964 Resort Hotel 242
## 24965 Resort Hotel 12
## 24966 Resort Hotel 197
## 24967 Resort Hotel 23
## 24968 Resort Hotel 197
## 24969 Resort Hotel 0
## 24970 Resort Hotel 1
## 24971 Resort Hotel 14
## 24972 Resort Hotel 27
## 24973 Resort Hotel 7
## 24974 Resort Hotel 140
## 24975 Resort Hotel 150
## 24976 Resort Hotel 134
## 24977 Resort Hotel 12
## 24978 Resort Hotel 117
## 24979 Resort Hotel 150
## 24980 Resort Hotel 5
## 24981 Resort Hotel 26
## 24982 Resort Hotel 193
## 24983 Resort Hotel 15
## 24984 Resort Hotel 15
## 24985 Resort Hotel 29
## 24986 Resort Hotel 122
## 24987 Resort Hotel 139
## 24988 Resort Hotel 15
## 24989 Resort Hotel 122
## 24990 Resort Hotel 185
## 24991 Resort Hotel 3
## 24992 Resort Hotel 143
## 24993 Resort Hotel 143
## 24994 Resort Hotel 35
## 24995 Resort Hotel 133
## 24996 Resort Hotel 4
## 24997 Resort Hotel 44
## 24998 Resort Hotel 44
## 24999 Resort Hotel 118
## 25000 Resort Hotel 96
## 25001 Resort Hotel 96
## 25002 Resort Hotel 108
## 25003 Resort Hotel 108
## 25004 Resort Hotel 159
## 25005 Resort Hotel 130
## 25006 Resort Hotel 134
## 25007 Resort Hotel 94
## 25008 Resort Hotel 94
## 25009 Resort Hotel 11
## 25010 Resort Hotel 12
## 25011 Resort Hotel 1
## 25012 Resort Hotel 20
## 25013 Resort Hotel 5
## 25014 Resort Hotel 143
## 25015 Resort Hotel 36
## 25016 Resort Hotel 124
## 25017 Resort Hotel 108
## 25018 Resort Hotel 108
## 25019 Resort Hotel 139
## 25020 Resort Hotel 139
## 25021 Resort Hotel 94
## 25022 Resort Hotel 10
## 25023 Resort Hotel 105
## 25024 Resort Hotel 94
## 25025 Resort Hotel 93
## 25026 Resort Hotel 110
## 25027 Resort Hotel 115
## 25028 Resort Hotel 94
## 25029 Resort Hotel 113
## 25030 Resort Hotel 126
## 25031 Resort Hotel 179
## 25032 Resort Hotel 94
## 25033 Resort Hotel 166
## 25034 Resort Hotel 90
## 25035 Resort Hotel 14
## 25036 Resort Hotel 13
## 25037 Resort Hotel 125
## 25038 Resort Hotel 231
## 25039 Resort Hotel 9
## 25040 Resort Hotel 1
## 25041 Resort Hotel 155
## 25042 Resort Hotel 155
## 25043 Resort Hotel 90
## 25044 Resort Hotel 107
## 25045 Resort Hotel 155
## 25046 Resort Hotel 0
## 25047 Resort Hotel 88
## 25048 Resort Hotel 159
## 25049 Resort Hotel 139
## 25050 Resort Hotel 134
## 25051 Resort Hotel 0
## 25052 Resort Hotel 5
## 25053 Resort Hotel 59
## 25054 Resort Hotel 12
## 25055 Resort Hotel 46
## 25056 Resort Hotel 109
## 25057 Resort Hotel 0
## 25058 Resort Hotel 132
## 25059 Resort Hotel 117
## 25060 Resort Hotel 6
## 25061 Resort Hotel 96
## 25062 Resort Hotel 104
## 25063 Resort Hotel 136
## 25064 Resort Hotel 96
## 25065 Resort Hotel 132
## 25066 Resort Hotel 17
## 25067 Resort Hotel 104
## 25068 Resort Hotel 14
## 25069 Resort Hotel 15
## 25070 Resort Hotel 136
## 25071 Resort Hotel 258
## 25072 Resort Hotel 11
## 25073 Resort Hotel 158
## 25074 Resort Hotel 17
## 25075 Resort Hotel 98
## 25076 Resort Hotel 97
## 25077 Resort Hotel 116
## 25078 Resort Hotel 125
## 25079 Resort Hotel 125
## 25080 Resort Hotel 0
## 25081 Resort Hotel 11
## 25082 Resort Hotel 178
## 25083 Resort Hotel 0
## 25084 Resort Hotel 8
## 25085 Resort Hotel 170
## 25086 Resort Hotel 0
## 25087 Resort Hotel 103
## 25088 Resort Hotel 107
## 25089 Resort Hotel 155
## 25090 Resort Hotel 150
## 25091 Resort Hotel 107
## 25092 Resort Hotel 108
## 25093 Resort Hotel 139
## 25094 Resort Hotel 1
## 25095 Resort Hotel 159
## 25096 Resort Hotel 142
## 25097 Resort Hotel 6
## 25098 Resort Hotel 112
## 25099 Resort Hotel 5
## 25100 Resort Hotel 27
## 25101 Resort Hotel 61
## 25102 Resort Hotel 124
## 25103 Resort Hotel 0
## 25104 Resort Hotel 134
## 25105 Resort Hotel 131
## 25106 Resort Hotel 107
## 25107 Resort Hotel 114
## 25108 Resort Hotel 2
## 25109 Resort Hotel 134
## 25110 Resort Hotel 74
## 25111 Resort Hotel 107
## 25112 Resort Hotel 134
## 25113 Resort Hotel 11
## 25114 Resort Hotel 0
## 25115 Resort Hotel 0
## 25116 Resort Hotel 0
## 25117 Resort Hotel 0
## 25118 Resort Hotel 56
## 25119 Resort Hotel 56
## 25120 Resort Hotel 36
## 25121 Resort Hotel 136
## 25122 Resort Hotel 136
## 25123 Resort Hotel 83
## 25124 Resort Hotel 90
## 25125 Resort Hotel 90
## 25126 Resort Hotel 239
## 25127 Resort Hotel 141
## 25128 Resort Hotel 98
## 25129 Resort Hotel 157
## 25130 Resort Hotel 83
## 25131 Resort Hotel 41
## 25132 Resort Hotel 120
## 25133 Resort Hotel 83
## 25134 Resort Hotel 43
## 25135 Resort Hotel 27
## 25136 Resort Hotel 7
## 25137 Resort Hotel 2
## 25138 Resort Hotel 4
## 25139 Resort Hotel 10
## 25140 Resort Hotel 15
## 25141 Resort Hotel 21
## 25142 Resort Hotel 2
## 25143 Resort Hotel 8
## 25144 Resort Hotel 5
## 25145 Resort Hotel 26
## 25146 Resort Hotel 6
## 25147 Resort Hotel 31
## 25148 Resort Hotel 73
## 25149 Resort Hotel 7
## 25150 Resort Hotel 139
## 25151 Resort Hotel 54
## 25152 Resort Hotel 3
## 25153 Resort Hotel 140
## 25154 Resort Hotel 164
## 25155 Resort Hotel 62
## 25156 Resort Hotel 191
## 25157 Resort Hotel 142
## 25158 Resort Hotel 164
## 25159 Resort Hotel 154
## 25160 Resort Hotel 177
## 25161 Resort Hotel 177
## 25162 Resort Hotel 151
## 25163 Resort Hotel 174
## 25164 Resort Hotel 174
## 25165 Resort Hotel 0
## 25166 Resort Hotel 366
## 25167 Resort Hotel 125
## 25168 Resort Hotel 0
## 25169 Resort Hotel 0
## 25170 Resort Hotel 42
## 25171 Resort Hotel 0
## 25172 Resort Hotel 177
## 25173 Resort Hotel 26
## 25174 Resort Hotel 7
## 25175 Resort Hotel 70
## 25176 Resort Hotel 71
## 25177 Resort Hotel 177
## 25178 Resort Hotel 177
## 25179 Resort Hotel 177
## 25180 Resort Hotel 57
## 25181 Resort Hotel 0
## 25182 Resort Hotel 177
## 25183 Resort Hotel 52
## 25184 Resort Hotel 179
## 25185 Resort Hotel 126
## 25186 Resort Hotel 152
## 25187 Resort Hotel 152
## 25188 Resort Hotel 182
## 25189 Resort Hotel 145
## 25190 Resort Hotel 177
## 25191 Resort Hotel 51
## 25192 Resort Hotel 1
## 25193 Resort Hotel 297
## 25194 Resort Hotel 297
## 25195 Resort Hotel 297
## 25196 Resort Hotel 32
## 25197 Resort Hotel 158
## 25198 Resort Hotel 158
## 25199 Resort Hotel 297
## 25200 Resort Hotel 297
## 25201 Resort Hotel 155
## 25202 Resort Hotel 63
## 25203 Resort Hotel 168
## 25204 Resort Hotel 168
## 25205 Resort Hotel 215
## 25206 Resort Hotel 168
## 25207 Resort Hotel 168
## 25208 Resort Hotel 168
## 25209 Resort Hotel 149
## 25210 Resort Hotel 157
## 25211 Resort Hotel 164
## 25212 Resort Hotel 85
## 25213 Resort Hotel 85
## 25214 Resort Hotel 85
## 25215 Resort Hotel 60
## 25216 Resort Hotel 123
## 25217 Resort Hotel 96
## 25218 Resort Hotel 142
## 25219 Resort Hotel 86
## 25220 Resort Hotel 90
## 25221 Resort Hotel 90
## 25222 Resort Hotel 130
## 25223 Resort Hotel 10
## 25224 Resort Hotel 10
## 25225 Resort Hotel 4
## 25226 Resort Hotel 3
## 25227 Resort Hotel 4
## 25228 Resort Hotel 98
## 25229 Resort Hotel 158
## 25230 Resort Hotel 0
## 25231 Resort Hotel 7
## 25232 Resort Hotel 7
## 25233 Resort Hotel 3
## 25234 Resort Hotel 47
## 25235 Resort Hotel 30
## 25236 Resort Hotel 8
## 25237 Resort Hotel 1
## 25238 Resort Hotel 160
## 25239 Resort Hotel 36
## 25240 Resort Hotel 169
## 25241 Resort Hotel 103
## 25242 Resort Hotel 76
## 25243 Resort Hotel 221
## 25244 Resort Hotel 222
## 25245 Resort Hotel 222
## 25246 Resort Hotel 159
## 25247 Resort Hotel 50
## 25248 Resort Hotel 43
## 25249 Resort Hotel 209
## 25250 Resort Hotel 223
## 25251 Resort Hotel 0
## 25252 Resort Hotel 50
## 25253 Resort Hotel 20
## 25254 Resort Hotel 50
## 25255 Resort Hotel 152
## 25256 Resort Hotel 16
## 25257 Resort Hotel 69
## 25258 Resort Hotel 11
## 25259 Resort Hotel 186
## 25260 Resort Hotel 0
## 25261 Resort Hotel 108
## 25262 Resort Hotel 128
## 25263 Resort Hotel 223
## 25264 Resort Hotel 140
## 25265 Resort Hotel 5
## 25266 Resort Hotel 154
## 25267 Resort Hotel 216
## 25268 Resort Hotel 152
## 25269 Resort Hotel 171
## 25270 Resort Hotel 161
## 25271 Resort Hotel 213
## 25272 Resort Hotel 2
## 25273 Resort Hotel 160
## 25274 Resort Hotel 150
## 25275 Resort Hotel 92
## 25276 Resort Hotel 73
## 25277 Resort Hotel 13
## 25278 Resort Hotel 99
## 25279 Resort Hotel 13
## 25280 Resort Hotel 294
## 25281 Resort Hotel 13
## 25282 Resort Hotel 13
## 25283 Resort Hotel 294
## 25284 Resort Hotel 5
## 25285 Resort Hotel 5
## 25286 Resort Hotel 5
## 25287 Resort Hotel 59
## 25288 Resort Hotel 0
## 25289 Resort Hotel 67
## 25290 Resort Hotel 67
## 25291 Resort Hotel 147
## 25292 Resort Hotel 13
## 25293 Resort Hotel 294
## 25294 Resort Hotel 13
## 25295 Resort Hotel 294
## 25296 Resort Hotel 57
## 25297 Resort Hotel 13
## 25298 Resort Hotel 294
## 25299 Resort Hotel 160
## 25300 Resort Hotel 57
## 25301 Resort Hotel 162
## 25302 Resort Hotel 61
## 25303 Resort Hotel 68
## 25304 Resort Hotel 66
## 25305 Resort Hotel 58
## 25306 Resort Hotel 154
## 25307 Resort Hotel 154
## 25308 Resort Hotel 162
## 25309 Resort Hotel 10
## 25310 Resort Hotel 12
## 25311 Resort Hotel 1
## 25312 Resort Hotel 127
## 25313 Resort Hotel 163
## 25314 Resort Hotel 1
## 25315 Resort Hotel 67
## 25316 Resort Hotel 116
## 25317 Resort Hotel 116
## 25318 Resort Hotel 48
## 25319 Resort Hotel 7
## 25320 Resort Hotel 48
## 25321 Resort Hotel 161
## 25322 Resort Hotel 65
## 25323 Resort Hotel 114
## 25324 Resort Hotel 161
## 25325 Resort Hotel 105
## 25326 Resort Hotel 105
## 25327 Resort Hotel 96
## 25328 Resort Hotel 107
## 25329 Resort Hotel 45
## 25330 Resort Hotel 92
## 25331 Resort Hotel 162
## 25332 Resort Hotel 265
## 25333 Resort Hotel 15
## 25334 Resort Hotel 7
## 25335 Resort Hotel 0
## 25336 Resort Hotel 153
## 25337 Resort Hotel 107
## 25338 Resort Hotel 245
## 25339 Resort Hotel 293
## 25340 Resort Hotel 247
## 25341 Resort Hotel 96
## 25342 Resort Hotel 93
## 25343 Resort Hotel 160
## 25344 Resort Hotel 90
## 25345 Resort Hotel 97
## 25346 Resort Hotel 90
## 25347 Resort Hotel 162
## 25348 Resort Hotel 155
## 25349 Resort Hotel 5
## 25350 Resort Hotel 98
## 25351 Resort Hotel 96
## 25352 Resort Hotel 100
## 25353 Resort Hotel 168
## 25354 Resort Hotel 1
## 25355 Resort Hotel 117
## 25356 Resort Hotel 0
## 25357 Resort Hotel 22
## 25358 Resort Hotel 103
## 25359 Resort Hotel 116
## 25360 Resort Hotel 0
## 25361 Resort Hotel 1
## 25362 Resort Hotel 5
## 25363 Resort Hotel 167
## 25364 Resort Hotel 52
## 25365 Resort Hotel 17
## 25366 Resort Hotel 161
## 25367 Resort Hotel 1
## 25368 Resort Hotel 146
## 25369 Resort Hotel 170
## 25370 Resort Hotel 161
## 25371 Resort Hotel 164
## 25372 Resort Hotel 194
## 25373 Resort Hotel 206
## 25374 Resort Hotel 1
## 25375 Resort Hotel 151
## 25376 Resort Hotel 3
## 25377 Resort Hotel 156
## 25378 Resort Hotel 249
## 25379 Resort Hotel 223
## 25380 Resort Hotel 155
## 25381 Resort Hotel 190
## 25382 Resort Hotel 268
## 25383 Resort Hotel 237
## 25384 Resort Hotel 180
## 25385 Resort Hotel 271
## 25386 Resort Hotel 192
## 25387 Resort Hotel 124
## 25388 Resort Hotel 0
## 25389 Resort Hotel 202
## 25390 Resort Hotel 8
## 25391 Resort Hotel 154
## 25392 Resort Hotel 322
## 25393 Resort Hotel 187
## 25394 Resort Hotel 192
## 25395 Resort Hotel 236
## 25396 Resort Hotel 211
## 25397 Resort Hotel 9
## 25398 Resort Hotel 294
## 25399 Resort Hotel 7
## 25400 Resort Hotel 100
## 25401 Resort Hotel 188
## 25402 Resort Hotel 157
## 25403 Resort Hotel 157
## 25404 Resort Hotel 10
## 25405 Resort Hotel 3
## 25406 Resort Hotel 0
## 25407 Resort Hotel 3
## 25408 Resort Hotel 3
## 25409 Resort Hotel 9
## 25410 Resort Hotel 9
## 25411 Resort Hotel 12
## 25412 Resort Hotel 5
## 25413 Resort Hotel 10
## 25414 Resort Hotel 203
## 25415 Resort Hotel 203
## 25416 Resort Hotel 170
## 25417 Resort Hotel 8
## 25418 Resort Hotel 165
## 25419 Resort Hotel 2
## 25420 Resort Hotel 181
## 25421 Resort Hotel 25
## 25422 Resort Hotel 131
## 25423 Resort Hotel 225
## 25424 Resort Hotel 22
## 25425 Resort Hotel 0
## 25426 Resort Hotel 35
## 25427 Resort Hotel 124
## 25428 Resort Hotel 0
## 25429 Resort Hotel 2
## 25430 Resort Hotel 12
## 25431 Resort Hotel 225
## 25432 Resort Hotel 2
## 25433 Resort Hotel 167
## 25434 Resort Hotel 214
## 25435 Resort Hotel 214
## 25436 Resort Hotel 5
## 25437 Resort Hotel 41
## 25438 Resort Hotel 101
## 25439 Resort Hotel 101
## 25440 Resort Hotel 162
## 25441 Resort Hotel 124
## 25442 Resort Hotel 124
## 25443 Resort Hotel 162
## 25444 Resort Hotel 161
## 25445 Resort Hotel 13
## 25446 Resort Hotel 7
## 25447 Resort Hotel 1
## 25448 Resort Hotel 10
## 25449 Resort Hotel 10
## 25450 Resort Hotel 10
## 25451 Resort Hotel 24
## 25452 Resort Hotel 22
## 25453 Resort Hotel 13
## 25454 Resort Hotel 27
## 25455 Resort Hotel 37
## 25456 Resort Hotel 21
## 25457 Resort Hotel 11
## 25458 Resort Hotel 1
## 25459 Resort Hotel 48
## 25460 Resort Hotel 2
## 25461 Resort Hotel 48
## 25462 Resort Hotel 188
## 25463 Resort Hotel 0
## 25464 Resort Hotel 7
## 25465 Resort Hotel 25
## 25466 Resort Hotel 173
## 25467 Resort Hotel 208
## 25468 Resort Hotel 170
## 25469 Resort Hotel 167
## 25470 Resort Hotel 130
## 25471 Resort Hotel 175
## 25472 Resort Hotel 136
## 25473 Resort Hotel 33
## 25474 Resort Hotel 19
## 25475 Resort Hotel 0
## 25476 Resort Hotel 166
## 25477 Resort Hotel 165
## 25478 Resort Hotel 208
## 25479 Resort Hotel 168
## 25480 Resort Hotel 3
## 25481 Resort Hotel 167
## 25482 Resort Hotel 1
## 25483 Resort Hotel 0
## 25484 Resort Hotel 203
## 25485 Resort Hotel 104
## 25486 Resort Hotel 157
## 25487 Resort Hotel 160
## 25488 Resort Hotel 157
## 25489 Resort Hotel 157
## 25490 Resort Hotel 157
## 25491 Resort Hotel 157
## 25492 Resort Hotel 157
## 25493 Resort Hotel 157
## 25494 Resort Hotel 157
## 25495 Resort Hotel 157
## 25496 Resort Hotel 157
## 25497 Resort Hotel 157
## 25498 Resort Hotel 157
## 25499 Resort Hotel 157
## 25500 Resort Hotel 332
## 25501 Resort Hotel 225
## 25502 Resort Hotel 164
## 25503 Resort Hotel 159
## 25504 Resort Hotel 157
## 25505 Resort Hotel 215
## 25506 Resort Hotel 170
## 25507 Resort Hotel 170
## 25508 Resort Hotel 17
## 25509 Resort Hotel 17
## 25510 Resort Hotel 222
## 25511 Resort Hotel 209
## 25512 Resort Hotel 163
## 25513 Resort Hotel 222
## 25514 Resort Hotel 164
## 25515 Resort Hotel 164
## 25516 Resort Hotel 0
## 25517 Resort Hotel 255
## 25518 Resort Hotel 2
## 25519 Resort Hotel 220
## 25520 Resort Hotel 6
## 25521 Resort Hotel 194
## 25522 Resort Hotel 277
## 25523 Resort Hotel 272
## 25524 Resort Hotel 21
## 25525 Resort Hotel 22
## 25526 Resort Hotel 139
## 25527 Resort Hotel 117
## 25528 Resort Hotel 182
## 25529 Resort Hotel 104
## 25530 Resort Hotel 167
## 25531 Resort Hotel 11
## 25532 Resort Hotel 0
## 25533 Resort Hotel 191
## 25534 Resort Hotel 3
## 25535 Resort Hotel 9
## 25536 Resort Hotel 219
## 25537 Resort Hotel 163
## 25538 Resort Hotel 163
## 25539 Resort Hotel 164
## 25540 Resort Hotel 174
## 25541 Resort Hotel 163
## 25542 Resort Hotel 164
## 25543 Resort Hotel 3
## 25544 Resort Hotel 4
## 25545 Resort Hotel 233
## 25546 Resort Hotel 233
## 25547 Resort Hotel 3
## 25548 Resort Hotel 248
## 25549 Resort Hotel 166
## 25550 Resort Hotel 189
## 25551 Resort Hotel 204
## 25552 Resort Hotel 98
## 25553 Resort Hotel 198
## 25554 Resort Hotel 98
## 25555 Resort Hotel 171
## 25556 Resort Hotel 156
## 25557 Resort Hotel 0
## 25558 Resort Hotel 97
## 25559 Resort Hotel 171
## 25560 Resort Hotel 128
## 25561 Resort Hotel 2
## 25562 Resort Hotel 3
## 25563 Resort Hotel 0
## 25564 Resort Hotel 169
## 25565 Resort Hotel 123
## 25566 Resort Hotel 160
## 25567 Resort Hotel 172
## 25568 Resort Hotel 172
## 25569 Resort Hotel 172
## 25570 Resort Hotel 160
## 25571 Resort Hotel 160
## 25572 Resort Hotel 60
## 25573 Resort Hotel 100
## 25574 Resort Hotel 301
## 25575 Resort Hotel 160
## 25576 Resort Hotel 100
## 25577 Resort Hotel 60
## 25578 Resort Hotel 60
## 25579 Resort Hotel 60
## 25580 Resort Hotel 60
## 25581 Resort Hotel 60
## 25582 Resort Hotel 104
## 25583 Resort Hotel 167
## 25584 Resort Hotel 167
## 25585 Resort Hotel 197
## 25586 Resort Hotel 167
## 25587 Resort Hotel 167
## 25588 Resort Hotel 10
## 25589 Resort Hotel 156
## 25590 Resort Hotel 182
## 25591 Resort Hotel 182
## 25592 Resort Hotel 182
## 25593 Resort Hotel 19
## 25594 Resort Hotel 4
## 25595 Resort Hotel 170
## 25596 Resort Hotel 170
## 25597 Resort Hotel 294
## 25598 Resort Hotel 169
## 25599 Resort Hotel 4
## 25600 Resort Hotel 9
## 25601 Resort Hotel 170
## 25602 Resort Hotel 170
## 25603 Resort Hotel 136
## 25604 Resort Hotel 8
## 25605 Resort Hotel 8
## 25606 Resort Hotel 71
## 25607 Resort Hotel 181
## 25608 Resort Hotel 167
## 25609 Resort Hotel 50
## 25610 Resort Hotel 173
## 25611 Resort Hotel 18
## 25612 Resort Hotel 0
## 25613 Resort Hotel 144
## 25614 Resort Hotel 136
## 25615 Resort Hotel 39
## 25616 Resort Hotel 2
## 25617 Resort Hotel 131
## 25618 Resort Hotel 139
## 25619 Resort Hotel 18
## 25620 Resort Hotel 229
## 25621 Resort Hotel 25
## 25622 Resort Hotel 13
## 25623 Resort Hotel 0
## 25624 Resort Hotel 304
## 25625 Resort Hotel 226
## 25626 Resort Hotel 0
## 25627 Resort Hotel 174
## 25628 Resort Hotel 206
## 25629 Resort Hotel 206
## 25630 Resort Hotel 218
## 25631 Resort Hotel 202
## 25632 Resort Hotel 188
## 25633 Resort Hotel 207
## 25634 Resort Hotel 207
## 25635 Resort Hotel 207
## 25636 Resort Hotel 9
## 25637 Resort Hotel 9
## 25638 Resort Hotel 169
## 25639 Resort Hotel 169
## 25640 Resort Hotel 9
## 25641 Resort Hotel 9
## 25642 Resort Hotel 131
## 25643 Resort Hotel 6
## 25644 Resort Hotel 3
## 25645 Resort Hotel 73
## 25646 Resort Hotel 16
## 25647 Resort Hotel 158
## 25648 Resort Hotel 174
## 25649 Resort Hotel 12
## 25650 Resort Hotel 0
## 25651 Resort Hotel 0
## 25652 Resort Hotel 0
## 25653 Resort Hotel 168
## 25654 Resort Hotel 8
## 25655 Resort Hotel 224
## 25656 Resort Hotel 167
## 25657 Resort Hotel 6
## 25658 Resort Hotel 258
## 25659 Resort Hotel 170
## 25660 Resort Hotel 168
## 25661 Resort Hotel 0
## 25662 Resort Hotel 169
## 25663 Resort Hotel 164
## 25664 Resort Hotel 162
## 25665 Resort Hotel 209
## 25666 Resort Hotel 82
## 25667 Resort Hotel 29
## 25668 Resort Hotel 17
## 25669 Resort Hotel 144
## 25670 Resort Hotel 135
## 25671 Resort Hotel 144
## 25672 Resort Hotel 0
## 25673 Resort Hotel 144
## 25674 Resort Hotel 217
## 25675 Resort Hotel 335
## 25676 Resort Hotel 0
## 25677 Resort Hotel 172
## 25678 Resort Hotel 173
## 25679 Resort Hotel 173
## 25680 Resort Hotel 160
## 25681 Resort Hotel 166
## 25682 Resort Hotel 133
## 25683 Resort Hotel 1
## 25684 Resort Hotel 17
## 25685 Resort Hotel 8
## 25686 Resort Hotel 85
## 25687 Resort Hotel 8
## 25688 Resort Hotel 17
## 25689 Resort Hotel 111
## 25690 Resort Hotel 9
## 25691 Resort Hotel 230
## 25692 Resort Hotel 177
## 25693 Resort Hotel 177
## 25694 Resort Hotel 164
## 25695 Resort Hotel 61
## 25696 Resort Hotel 61
## 25697 Resort Hotel 61
## 25698 Resort Hotel 3
## 25699 Resort Hotel 30
## 25700 Resort Hotel 130
## 25701 Resort Hotel 0
## 25702 Resort Hotel 60
## 25703 Resort Hotel 47
## 25704 Resort Hotel 176
## 25705 Resort Hotel 181
## 25706 Resort Hotel 6
## 25707 Resort Hotel 30
## 25708 Resort Hotel 9
## 25709 Resort Hotel 16
## 25710 Resort Hotel 23
## 25711 Resort Hotel 5
## 25712 Resort Hotel 2
## 25713 Resort Hotel 9
## 25714 Resort Hotel 16
## 25715 Resort Hotel 2
## 25716 Resort Hotel 5
## 25717 Resort Hotel 181
## 25718 Resort Hotel 167
## 25719 Resort Hotel 9
## 25720 Resort Hotel 85
## 25721 Resort Hotel 10
## 25722 Resort Hotel 205
## 25723 Resort Hotel 9
## 25724 Resort Hotel 171
## 25725 Resort Hotel 171
## 25726 Resort Hotel 180
## 25727 Resort Hotel 167
## 25728 Resort Hotel 226
## 25729 Resort Hotel 89
## 25730 Resort Hotel 89
## 25731 Resort Hotel 293
## 25732 Resort Hotel 0
## 25733 Resort Hotel 28
## 25734 Resort Hotel 22
## 25735 Resort Hotel 22
## 25736 Resort Hotel 10
## 25737 Resort Hotel 13
## 25738 Resort Hotel 143
## 25739 Resort Hotel 45
## 25740 Resort Hotel 9
## 25741 Resort Hotel 14
## 25742 Resort Hotel 0
## 25743 Resort Hotel 0
## 25744 Resort Hotel 208
## 25745 Resort Hotel 228
## 25746 Resort Hotel 6
## 25747 Resort Hotel 45
## 25748 Resort Hotel 12
## 25749 Resort Hotel 129
## 25750 Resort Hotel 311
## 25751 Resort Hotel 164
## 25752 Resort Hotel 167
## 25753 Resort Hotel 2
## 25754 Resort Hotel 114
## 25755 Resort Hotel 57
## 25756 Resort Hotel 120
## 25757 Resort Hotel 160
## 25758 Resort Hotel 164
## 25759 Resort Hotel 172
## 25760 Resort Hotel 30
## 25761 Resort Hotel 5
## 25762 Resort Hotel 2
## 25763 Resort Hotel 166
## 25764 Resort Hotel 2
## 25765 Resort Hotel 164
## 25766 Resort Hotel 2
## 25767 Resort Hotel 30
## 25768 Resort Hotel 143
## 25769 Resort Hotel 164
## 25770 Resort Hotel 2
## 25771 Resort Hotel 2
## 25772 Resort Hotel 21
## 25773 Resort Hotel 0
## 25774 Resort Hotel 319
## 25775 Resort Hotel 220
## 25776 Resort Hotel 10
## 25777 Resort Hotel 11
## 25778 Resort Hotel 230
## 25779 Resort Hotel 180
## 25780 Resort Hotel 180
## 25781 Resort Hotel 15
## 25782 Resort Hotel 308
## 25783 Resort Hotel 14
## 25784 Resort Hotel 13
## 25785 Resort Hotel 9
## 25786 Resort Hotel 16
## 25787 Resort Hotel 3
## 25788 Resort Hotel 192
## 25789 Resort Hotel 171
## 25790 Resort Hotel 171
## 25791 Resort Hotel 166
## 25792 Resort Hotel 166
## 25793 Resort Hotel 0
## 25794 Resort Hotel 223
## 25795 Resort Hotel 1
## 25796 Resort Hotel 232
## 25797 Resort Hotel 173
## 25798 Resort Hotel 166
## 25799 Resort Hotel 182
## 25800 Resort Hotel 182
## 25801 Resort Hotel 181
## 25802 Resort Hotel 165
## 25803 Resort Hotel 128
## 25804 Resort Hotel 0
## 25805 Resort Hotel 32
## 25806 Resort Hotel 182
## 25807 Resort Hotel 168
## 25808 Resort Hotel 4
## 25809 Resort Hotel 173
## 25810 Resort Hotel 2
## 25811 Resort Hotel 6
## 25812 Resort Hotel 177
## 25813 Resort Hotel 173
## 25814 Resort Hotel 12
## 25815 Resort Hotel 317
## 25816 Resort Hotel 183
## 25817 Resort Hotel 177
## 25818 Resort Hotel 161
## 25819 Resort Hotel 205
## 25820 Resort Hotel 0
## 25821 Resort Hotel 165
## 25822 Resort Hotel 0
## 25823 Resort Hotel 66
## 25824 Resort Hotel 6
## 25825 Resort Hotel 22
## 25826 Resort Hotel 165
## 25827 Resort Hotel 2
## 25828 Resort Hotel 171
## 25829 Resort Hotel 167
## 25830 Resort Hotel 210
## 25831 Resort Hotel 171
## 25832 Resort Hotel 164
## 25833 Resort Hotel 180
## 25834 Resort Hotel 164
## 25835 Resort Hotel 245
## 25836 Resort Hotel 191
## 25837 Resort Hotel 171
## 25838 Resort Hotel 164
## 25839 Resort Hotel 196
## 25840 Resort Hotel 171
## 25841 Resort Hotel 89
## 25842 Resort Hotel 6
## 25843 Resort Hotel 6
## 25844 Resort Hotel 5
## 25845 Resort Hotel 5
## 25846 Resort Hotel 6
## 25847 Resort Hotel 6
## 25848 Resort Hotel 0
## 25849 Resort Hotel 1
## 25850 Resort Hotel 6
## 25851 Resort Hotel 3
## 25852 Resort Hotel 12
## 25853 Resort Hotel 164
## 25854 Resort Hotel 0
## 25855 Resort Hotel 12
## 25856 Resort Hotel 204
## 25857 Resort Hotel 9
## 25858 Resort Hotel 154
## 25859 Resort Hotel 164
## 25860 Resort Hotel 351
## 25861 Resort Hotel 2
## 25862 Resort Hotel 0
## 25863 Resort Hotel 2
## 25864 Resort Hotel 137
## 25865 Resort Hotel 113
## 25866 Resort Hotel 0
## 25867 Resort Hotel 2
## 25868 Resort Hotel 1
## 25869 Resort Hotel 179
## 25870 Resort Hotel 212
## 25871 Resort Hotel 30
## 25872 Resort Hotel 220
## 25873 Resort Hotel 122
## 25874 Resort Hotel 122
## 25875 Resort Hotel 9
## 25876 Resort Hotel 177
## 25877 Resort Hotel 180
## 25878 Resort Hotel 180
## 25879 Resort Hotel 182
## 25880 Resort Hotel 258
## 25881 Resort Hotel 322
## 25882 Resort Hotel 147
## 25883 Resort Hotel 23
## 25884 Resort Hotel 178
## 25885 Resort Hotel 17
## 25886 Resort Hotel 173
## 25887 Resort Hotel 173
## 25888 Resort Hotel 154
## 25889 Resort Hotel 191
## 25890 Resort Hotel 36
## 25891 Resort Hotel 178
## 25892 Resort Hotel 148
## 25893 Resort Hotel 9
## 25894 Resort Hotel 164
## 25895 Resort Hotel 162
## 25896 Resort Hotel 125
## 25897 Resort Hotel 59
## 25898 Resort Hotel 143
## 25899 Resort Hotel 38
## 25900 Resort Hotel 0
## 25901 Resort Hotel 0
## 25902 Resort Hotel 1
## 25903 Resort Hotel 27
## 25904 Resort Hotel 173
## 25905 Resort Hotel 20
## 25906 Resort Hotel 177
## 25907 Resort Hotel 187
## 25908 Resort Hotel 187
## 25909 Resort Hotel 187
## 25910 Resort Hotel 187
## 25911 Resort Hotel 187
## 25912 Resort Hotel 129
## 25913 Resort Hotel 179
## 25914 Resort Hotel 179
## 25915 Resort Hotel 132
## 25916 Resort Hotel 201
## 25917 Resort Hotel 23
## 25918 Resort Hotel 0
## 25919 Resort Hotel 0
## 25920 Resort Hotel 25
## 25921 Resort Hotel 100
## 25922 Resort Hotel 169
## 25923 Resort Hotel 184
## 25924 Resort Hotel 147
## 25925 Resort Hotel 100
## 25926 Resort Hotel 24
## 25927 Resort Hotel 171
## 25928 Resort Hotel 169
## 25929 Resort Hotel 175
## 25930 Resort Hotel 31
## 25931 Resort Hotel 171
## 25932 Resort Hotel 1
## 25933 Resort Hotel 129
## 25934 Resort Hotel 176
## 25935 Resort Hotel 1
## 25936 Resort Hotel 285
## 25937 Resort Hotel 146
## 25938 Resort Hotel 146
## 25939 Resort Hotel 171
## 25940 Resort Hotel 10
## 25941 Resort Hotel 107
## 25942 Resort Hotel 174
## 25943 Resort Hotel 44
## 25944 Resort Hotel 6
## 25945 Resort Hotel 18
## 25946 Resort Hotel 18
## 25947 Resort Hotel 0
## 25948 Resort Hotel 2
## 25949 Resort Hotel 134
## 25950 Resort Hotel 134
## 25951 Resort Hotel 23
## 25952 Resort Hotel 165
## 25953 Resort Hotel 165
## 25954 Resort Hotel 1
## 25955 Resort Hotel 1
## 25956 Resort Hotel 148
## 25957 Resort Hotel 177
## 25958 Resort Hotel 122
## 25959 Resort Hotel 37
## 25960 Resort Hotel 1
## 25961 Resort Hotel 1
## 25962 Resort Hotel 12
## 25963 Resort Hotel 55
## 25964 Resort Hotel 1
## 25965 Resort Hotel 0
## 25966 Resort Hotel 68
## 25967 Resort Hotel 2
## 25968 Resort Hotel 185
## 25969 Resort Hotel 14
## 25970 Resort Hotel 17
## 25971 Resort Hotel 143
## 25972 Resort Hotel 177
## 25973 Resort Hotel 0
## 25974 Resort Hotel 0
## 25975 Resort Hotel 1
## 25976 Resort Hotel 167
## 25977 Resort Hotel 182
## 25978 Resort Hotel 217
## 25979 Resort Hotel 22
## 25980 Resort Hotel 114
## 25981 Resort Hotel 95
## 25982 Resort Hotel 137
## 25983 Resort Hotel 122
## 25984 Resort Hotel 227
## 25985 Resort Hotel 12
## 25986 Resort Hotel 12
## 25987 Resort Hotel 227
## 25988 Resort Hotel 227
## 25989 Resort Hotel 35
## 25990 Resort Hotel 177
## 25991 Resort Hotel 148
## 25992 Resort Hotel 19
## 25993 Resort Hotel 133
## 25994 Resort Hotel 2
## 25995 Resort Hotel 1
## 25996 Resort Hotel 4
## 25997 Resort Hotel 126
## 25998 Resort Hotel 2
## 25999 Resort Hotel 0
## 26000 Resort Hotel 45
## 26001 Resort Hotel 0
## 26002 Resort Hotel 134
## 26003 Resort Hotel 0
## 26004 Resort Hotel 33
## 26005 Resort Hotel 65
## 26006 Resort Hotel 168
## 26007 Resort Hotel 168
## 26008 Resort Hotel 20
## 26009 Resort Hotel 152
## 26010 Resort Hotel 180
## 26011 Resort Hotel 188
## 26012 Resort Hotel 180
## 26013 Resort Hotel 287
## 26014 Resort Hotel 287
## 26015 Resort Hotel 287
## 26016 Resort Hotel 287
## 26017 Resort Hotel 14
## 26018 Resort Hotel 83
## 26019 Resort Hotel 173
## 26020 Resort Hotel 16
## 26021 Resort Hotel 209
## 26022 Resort Hotel 153
## 26023 Resort Hotel 72
## 26024 Resort Hotel 39
## 26025 Resort Hotel 1
## 26026 Resort Hotel 17
## 26027 Resort Hotel 224
## 26028 Resort Hotel 0
## 26029 Resort Hotel 151
## 26030 Resort Hotel 151
## 26031 Resort Hotel 39
## 26032 Resort Hotel 0
## 26033 Resort Hotel 12
## 26034 Resort Hotel 22
## 26035 Resort Hotel 85
## 26036 Resort Hotel 165
## 26037 Resort Hotel 238
## 26038 Resort Hotel 238
## 26039 Resort Hotel 238
## 26040 Resort Hotel 169
## 26041 Resort Hotel 274
## 26042 Resort Hotel 60
## 26043 Resort Hotel 60
## 26044 Resort Hotel 25
## 26045 Resort Hotel 155
## 26046 Resort Hotel 1
## 26047 Resort Hotel 180
## 26048 Resort Hotel 161
## 26049 Resort Hotel 0
## 26050 Resort Hotel 0
## 26051 Resort Hotel 100
## 26052 Resort Hotel 0
## 26053 Resort Hotel 0
## 26054 Resort Hotel 14
## 26055 Resort Hotel 15
## 26056 Resort Hotel 34
## 26057 Resort Hotel 0
## 26058 Resort Hotel 0
## 26059 Resort Hotel 1
## 26060 Resort Hotel 124
## 26061 Resort Hotel 1
## 26062 Resort Hotel 7
## 26063 Resort Hotel 158
## 26064 Resort Hotel 80
## 26065 Resort Hotel 80
## 26066 Resort Hotel 55
## 26067 Resort Hotel 24
## 26068 Resort Hotel 55
## 26069 Resort Hotel 24
## 26070 Resort Hotel 24
## 26071 Resort Hotel 55
## 26072 Resort Hotel 186
## 26073 Resort Hotel 175
## 26074 Resort Hotel 185
## 26075 Resort Hotel 137
## 26076 Resort Hotel 179
## 26077 Resort Hotel 171
## 26078 Resort Hotel 179
## 26079 Resort Hotel 171
## 26080 Resort Hotel 26
## 26081 Resort Hotel 28
## 26082 Resort Hotel 49
## 26083 Resort Hotel 49
## 26084 Resort Hotel 158
## 26085 Resort Hotel 26
## 26086 Resort Hotel 227
## 26087 Resort Hotel 29
## 26088 Resort Hotel 12
## 26089 Resort Hotel 127
## 26090 Resort Hotel 6
## 26091 Resort Hotel 134
## 26092 Resort Hotel 0
## 26093 Resort Hotel 34
## 26094 Resort Hotel 152
## 26095 Resort Hotel 49
## 26096 Resort Hotel 0
## 26097 Resort Hotel 17
## 26098 Resort Hotel 163
## 26099 Resort Hotel 132
## 26100 Resort Hotel 72
## 26101 Resort Hotel 92
## 26102 Resort Hotel 38
## 26103 Resort Hotel 0
## 26104 Resort Hotel 1
## 26105 Resort Hotel 154
## 26106 Resort Hotel 176
## 26107 Resort Hotel 147
## 26108 Resort Hotel 132
## 26109 Resort Hotel 132
## 26110 Resort Hotel 1
## 26111 Resort Hotel 2
## 26112 Resort Hotel 81
## 26113 Resort Hotel 0
## 26114 Resort Hotel 0
## 26115 Resort Hotel 160
## 26116 Resort Hotel 160
## 26117 Resort Hotel 186
## 26118 Resort Hotel 0
## 26119 Resort Hotel 132
## 26120 Resort Hotel 0
## 26121 Resort Hotel 81
## 26122 Resort Hotel 97
## 26123 Resort Hotel 94
## 26124 Resort Hotel 68
## 26125 Resort Hotel 36
## 26126 Resort Hotel 173
## 26127 Resort Hotel 175
## 26128 Resort Hotel 122
## 26129 Resort Hotel 225
## 26130 Resort Hotel 91
## 26131 Resort Hotel 1
## 26132 Resort Hotel 15
## 26133 Resort Hotel 15
## 26134 Resort Hotel 18
## 26135 Resort Hotel 18
## 26136 Resort Hotel 145
## 26137 Resort Hotel 115
## 26138 Resort Hotel 18
## 26139 Resort Hotel 194
## 26140 Resort Hotel 166
## 26141 Resort Hotel 166
## 26142 Resort Hotel 163
## 26143 Resort Hotel 15
## 26144 Resort Hotel 1
## 26145 Resort Hotel 36
## 26146 Resort Hotel 0
## 26147 Resort Hotel 163
## 26148 Resort Hotel 3
## 26149 Resort Hotel 0
## 26150 Resort Hotel 1
## 26151 Resort Hotel 1
## 26152 Resort Hotel 49
## 26153 Resort Hotel 20
## 26154 Resort Hotel 0
## 26155 Resort Hotel 129
## 26156 Resort Hotel 187
## 26157 Resort Hotel 21
## 26158 Resort Hotel 165
## 26159 Resort Hotel 153
## 26160 Resort Hotel 144
## 26161 Resort Hotel 140
## 26162 Resort Hotel 200
## 26163 Resort Hotel 86
## 26164 Resort Hotel 1
## 26165 Resort Hotel 143
## 26166 Resort Hotel 234
## 26167 Resort Hotel 234
## 26168 Resort Hotel 2
## 26169 Resort Hotel 51
## 26170 Resort Hotel 193
## 26171 Resort Hotel 29
## 26172 Resort Hotel 177
## 26173 Resort Hotel 70
## 26174 Resort Hotel 94
## 26175 Resort Hotel 201
## 26176 Resort Hotel 133
## 26177 Resort Hotel 72
## 26178 Resort Hotel 159
## 26179 Resort Hotel 139
## 26180 Resort Hotel 236
## 26181 Resort Hotel 236
## 26182 Resort Hotel 131
## 26183 Resort Hotel 181
## 26184 Resort Hotel 85
## 26185 Resort Hotel 3
## 26186 Resort Hotel 184
## 26187 Resort Hotel 13
## 26188 Resort Hotel 3
## 26189 Resort Hotel 169
## 26190 Resort Hotel 156
## 26191 Resort Hotel 145
## 26192 Resort Hotel 156
## 26193 Resort Hotel 61
## 26194 Resort Hotel 19
## 26195 Resort Hotel 107
## 26196 Resort Hotel 139
## 26197 Resort Hotel 7
## 26198 Resort Hotel 101
## 26199 Resort Hotel 50
## 26200 Resort Hotel 11
## 26201 Resort Hotel 11
## 26202 Resort Hotel 76
## 26203 Resort Hotel 98
## 26204 Resort Hotel 4
## 26205 Resort Hotel 179
## 26206 Resort Hotel 147
## 26207 Resort Hotel 144
## 26208 Resort Hotel 51
## 26209 Resort Hotel 125
## 26210 Resort Hotel 22
## 26211 Resort Hotel 166
## 26212 Resort Hotel 166
## 26213 Resort Hotel 176
## 26214 Resort Hotel 176
## 26215 Resort Hotel 28
## 26216 Resort Hotel 104
## 26217 Resort Hotel 104
## 26218 Resort Hotel 126
## 26219 Resort Hotel 61
## 26220 Resort Hotel 18
## 26221 Resort Hotel 61
## 26222 Resort Hotel 119
## 26223 Resort Hotel 147
## 26224 Resort Hotel 29
## 26225 Resort Hotel 185
## 26226 Resort Hotel 157
## 26227 Resort Hotel 15
## 26228 Resort Hotel 157
## 26229 Resort Hotel 158
## 26230 Resort Hotel 242
## 26231 Resort Hotel 0
## 26232 Resort Hotel 38
## 26233 Resort Hotel 182
## 26234 Resort Hotel 127
## 26235 Resort Hotel 127
## 26236 Resort Hotel 230
## 26237 Resort Hotel 5
## 26238 Resort Hotel 38
## 26239 Resort Hotel 28
## 26240 Resort Hotel 174
## 26241 Resort Hotel 171
## 26242 Resort Hotel 87
## 26243 Resort Hotel 104
## 26244 Resort Hotel 144
## 26245 Resort Hotel 114
## 26246 Resort Hotel 183
## 26247 Resort Hotel 165
## 26248 Resort Hotel 158
## 26249 Resort Hotel 83
## 26250 Resort Hotel 173
## 26251 Resort Hotel 48
## 26252 Resort Hotel 48
## 26253 Resort Hotel 74
## 26254 Resort Hotel 158
## 26255 Resort Hotel 185
## 26256 Resort Hotel 71
## 26257 Resort Hotel 161
## 26258 Resort Hotel 3
## 26259 Resort Hotel 162
## 26260 Resort Hotel 176
## 26261 Resort Hotel 45
## 26262 Resort Hotel 96
## 26263 Resort Hotel 103
## 26264 Resort Hotel 45
## 26265 Resort Hotel 151
## 26266 Resort Hotel 158
## 26267 Resort Hotel 161
## 26268 Resort Hotel 16
## 26269 Resort Hotel 127
## 26270 Resort Hotel 66
## 26271 Resort Hotel 119
## 26272 Resort Hotel 84
## 26273 Resort Hotel 18
## 26274 Resort Hotel 118
## 26275 Resort Hotel 177
## 26276 Resort Hotel 345
## 26277 Resort Hotel 4
## 26278 Resort Hotel 4
## 26279 Resort Hotel 1
## 26280 Resort Hotel 106
## 26281 Resort Hotel 4
## 26282 Resort Hotel 165
## 26283 Resort Hotel 154
## 26284 Resort Hotel 1
## 26285 Resort Hotel 85
## 26286 Resort Hotel 119
## 26287 Resort Hotel 0
## 26288 Resort Hotel 246
## 26289 Resort Hotel 98
## 26290 Resort Hotel 67
## 26291 Resort Hotel 154
## 26292 Resort Hotel 18
## 26293 Resort Hotel 117
## 26294 Resort Hotel 53
## 26295 Resort Hotel 192
## 26296 Resort Hotel 154
## 26297 Resort Hotel 122
## 26298 Resort Hotel 155
## 26299 Resort Hotel 113
## 26300 Resort Hotel 19
## 26301 Resort Hotel 163
## 26302 Resort Hotel 26
## 26303 Resort Hotel 26
## 26304 Resort Hotel 158
## 26305 Resort Hotel 151
## 26306 Resort Hotel 151
## 26307 Resort Hotel 130
## 26308 Resort Hotel 142
## 26309 Resort Hotel 20
## 26310 Resort Hotel 61
## 26311 Resort Hotel 137
## 26312 Resort Hotel 150
## 26313 Resort Hotel 152
## 26314 Resort Hotel 170
## 26315 Resort Hotel 177
## 26316 Resort Hotel 190
## 26317 Resort Hotel 0
## 26318 Resort Hotel 186
## 26319 Resort Hotel 169
## 26320 Resort Hotel 0
## 26321 Resort Hotel 54
## 26322 Resort Hotel 155
## 26323 Resort Hotel 121
## 26324 Resort Hotel 197
## 26325 Resort Hotel 83
## 26326 Resort Hotel 138
## 26327 Resort Hotel 10
## 26328 Resort Hotel 76
## 26329 Resort Hotel 1
## 26330 Resort Hotel 1
## 26331 Resort Hotel 140
## 26332 Resort Hotel 140
## 26333 Resort Hotel 23
## 26334 Resort Hotel 1
## 26335 Resort Hotel 0
## 26336 Resort Hotel 234
## 26337 Resort Hotel 119
## 26338 Resort Hotel 22
## 26339 Resort Hotel 195
## 26340 Resort Hotel 138
## 26341 Resort Hotel 1
## 26342 Resort Hotel 43
## 26343 Resort Hotel 2
## 26344 Resort Hotel 147
## 26345 Resort Hotel 0
## 26346 Resort Hotel 110
## 26347 Resort Hotel 196
## 26348 Resort Hotel 164
## 26349 Resort Hotel 149
## 26350 Resort Hotel 149
## 26351 Resort Hotel 149
## 26352 Resort Hotel 222
## 26353 Resort Hotel 262
## 26354 Resort Hotel 37
## 26355 Resort Hotel 26
## 26356 Resort Hotel 132
## 26357 Resort Hotel 190
## 26358 Resort Hotel 37
## 26359 Resort Hotel 23
## 26360 Resort Hotel 122
## 26361 Resort Hotel 135
## 26362 Resort Hotel 150
## 26363 Resort Hotel 172
## 26364 Resort Hotel 172
## 26365 Resort Hotel 172
## 26366 Resort Hotel 172
## 26367 Resort Hotel 172
## 26368 Resort Hotel 242
## 26369 Resort Hotel 242
## 26370 Resort Hotel 135
## 26371 Resort Hotel 85
## 26372 Resort Hotel 66
## 26373 Resort Hotel 150
## 26374 Resort Hotel 74
## 26375 Resort Hotel 103
## 26376 Resort Hotel 151
## 26377 Resort Hotel 151
## 26378 Resort Hotel 150
## 26379 Resort Hotel 199
## 26380 Resort Hotel 199
## 26381 Resort Hotel 38
## 26382 Resort Hotel 149
## 26383 Resort Hotel 79
## 26384 Resort Hotel 153
## 26385 Resort Hotel 83
## 26386 Resort Hotel 178
## 26387 Resort Hotel 121
## 26388 Resort Hotel 136
## 26389 Resort Hotel 231
## 26390 Resort Hotel 77
## 26391 Resort Hotel 164
## 26392 Resort Hotel 178
## 26393 Resort Hotel 92
## 26394 Resort Hotel 1
## 26395 Resort Hotel 38
## 26396 Resort Hotel 1
## 26397 Resort Hotel 0
## 26398 Resort Hotel 319
## 26399 Resort Hotel 250
## 26400 Resort Hotel 112
## 26401 Resort Hotel 112
## 26402 Resort Hotel 167
## 26403 Resort Hotel 37
## 26404 Resort Hotel 8
## 26405 Resort Hotel 184
## 26406 Resort Hotel 0
## 26407 Resort Hotel 17
## 26408 Resort Hotel 156
## 26409 Resort Hotel 178
## 26410 Resort Hotel 44
## 26411 Resort Hotel 0
## 26412 Resort Hotel 16
## 26413 Resort Hotel 16
## 26414 Resort Hotel 23
## 26415 Resort Hotel 4
## 26416 Resort Hotel 124
## 26417 Resort Hotel 24
## 26418 Resort Hotel 188
## 26419 Resort Hotel 37
## 26420 Resort Hotel 32
## 26421 Resort Hotel 1
## 26422 Resort Hotel 43
## 26423 Resort Hotel 8
## 26424 Resort Hotel 6
## 26425 Resort Hotel 24
## 26426 Resort Hotel 25
## 26427 Resort Hotel 12
## 26428 Resort Hotel 143
## 26429 Resort Hotel 1
## 26430 Resort Hotel 8
## 26431 Resort Hotel 33
## 26432 Resort Hotel 24
## 26433 Resort Hotel 24
## 26434 Resort Hotel 18
## 26435 Resort Hotel 7
## 26436 Resort Hotel 0
## 26437 Resort Hotel 117
## 26438 Resort Hotel 37
## 26439 Resort Hotel 19
## 26440 Resort Hotel 0
## 26441 Resort Hotel 181
## 26442 Resort Hotel 3
## 26443 Resort Hotel 37
## 26444 Resort Hotel 27
## 26445 Resort Hotel 4
## 26446 Resort Hotel 32
## 26447 Resort Hotel 0
## 26448 Resort Hotel 4
## 26449 Resort Hotel 210
## 26450 Resort Hotel 10
## 26451 Resort Hotel 65
## 26452 Resort Hotel 65
## 26453 Resort Hotel 65
## 26454 Resort Hotel 60
## 26455 Resort Hotel 32
## 26456 Resort Hotel 6
## 26457 Resort Hotel 65
## 26458 Resort Hotel 65
## 26459 Resort Hotel 65
## 26460 Resort Hotel 55
## 26461 Resort Hotel 6
## 26462 Resort Hotel 27
## 26463 Resort Hotel 30
## 26464 Resort Hotel 2
## 26465 Resort Hotel 147
## 26466 Resort Hotel 5
## 26467 Resort Hotel 225
## 26468 Resort Hotel 3
## 26469 Resort Hotel 143
## 26470 Resort Hotel 26
## 26471 Resort Hotel 185
## 26472 Resort Hotel 41
## 26473 Resort Hotel 126
## 26474 Resort Hotel 19
## 26475 Resort Hotel 17
## 26476 Resort Hotel 1
## 26477 Resort Hotel 4
## 26478 Resort Hotel 68
## 26479 Resort Hotel 188
## 26480 Resort Hotel 4
## 26481 Resort Hotel 173
## 26482 Resort Hotel 17
## 26483 Resort Hotel 4
## 26484 Resort Hotel 2
## 26485 Resort Hotel 0
## 26486 Resort Hotel 40
## 26487 Resort Hotel 188
## 26488 Resort Hotel 12
## 26489 Resort Hotel 6
## 26490 Resort Hotel 17
## 26491 Resort Hotel 0
## 26492 Resort Hotel 181
## 26493 Resort Hotel 27
## 26494 Resort Hotel 179
## 26495 Resort Hotel 149
## 26496 Resort Hotel 160
## 26497 Resort Hotel 0
## 26498 Resort Hotel 83
## 26499 Resort Hotel 0
## 26500 Resort Hotel 183
## 26501 Resort Hotel 328
## 26502 Resort Hotel 193
## 26503 Resort Hotel 192
## 26504 Resort Hotel 143
## 26505 Resort Hotel 143
## 26506 Resort Hotel 0
## 26507 Resort Hotel 83
## 26508 Resort Hotel 83
## 26509 Resort Hotel 83
## 26510 Resort Hotel 62
## 26511 Resort Hotel 113
## 26512 Resort Hotel 113
## 26513 Resort Hotel 0
## 26514 Resort Hotel 193
## 26515 Resort Hotel 83
## 26516 Resort Hotel 60
## 26517 Resort Hotel 33
## 26518 Resort Hotel 1
## 26519 Resort Hotel 1
## 26520 Resort Hotel 338
## 26521 Resort Hotel 174
## 26522 Resort Hotel 25
## 26523 Resort Hotel 137
## 26524 Resort Hotel 188
## 26525 Resort Hotel 188
## 26526 Resort Hotel 103
## 26527 Resort Hotel 103
## 26528 Resort Hotel 58
## 26529 Resort Hotel 12
## 26530 Resort Hotel 23
## 26531 Resort Hotel 145
## 26532 Resort Hotel 147
## 26533 Resort Hotel 145
## 26534 Resort Hotel 175
## 26535 Resort Hotel 301
## 26536 Resort Hotel 32
## 26537 Resort Hotel 126
## 26538 Resort Hotel 191
## 26539 Resort Hotel 1
## 26540 Resort Hotel 1
## 26541 Resort Hotel 23
## 26542 Resort Hotel 1
## 26543 Resort Hotel 220
## 26544 Resort Hotel 161
## 26545 Resort Hotel 154
## 26546 Resort Hotel 161
## 26547 Resort Hotel 161
## 26548 Resort Hotel 1
## 26549 Resort Hotel 1
## 26550 Resort Hotel 179
## 26551 Resort Hotel 81
## 26552 Resort Hotel 179
## 26553 Resort Hotel 171
## 26554 Resort Hotel 173
## 26555 Resort Hotel 173
## 26556 Resort Hotel 136
## 26557 Resort Hotel 53
## 26558 Resort Hotel 126
## 26559 Resort Hotel 9
## 26560 Resort Hotel 159
## 26561 Resort Hotel 51
## 26562 Resort Hotel 163
## 26563 Resort Hotel 163
## 26564 Resort Hotel 185
## 26565 Resort Hotel 163
## 26566 Resort Hotel 167
## 26567 Resort Hotel 187
## 26568 Resort Hotel 187
## 26569 Resort Hotel 1
## 26570 Resort Hotel 8
## 26571 Resort Hotel 1
## 26572 Resort Hotel 0
## 26573 Resort Hotel 152
## 26574 Resort Hotel 0
## 26575 Resort Hotel 54
## 26576 Resort Hotel 342
## 26577 Resort Hotel 52
## 26578 Resort Hotel 56
## 26579 Resort Hotel 166
## 26580 Resort Hotel 59
## 26581 Resort Hotel 218
## 26582 Resort Hotel 237
## 26583 Resort Hotel 96
## 26584 Resort Hotel 197
## 26585 Resort Hotel 197
## 26586 Resort Hotel 191
## 26587 Resort Hotel 34
## 26588 Resort Hotel 170
## 26589 Resort Hotel 1
## 26590 Resort Hotel 147
## 26591 Resort Hotel 151
## 26592 Resort Hotel 151
## 26593 Resort Hotel 123
## 26594 Resort Hotel 191
## 26595 Resort Hotel 151
## 26596 Resort Hotel 189
## 26597 Resort Hotel 1
## 26598 Resort Hotel 1
## 26599 Resort Hotel 112
## 26600 Resort Hotel 121
## 26601 Resort Hotel 161
## 26602 Resort Hotel 175
## 26603 Resort Hotel 13
## 26604 Resort Hotel 162
## 26605 Resort Hotel 180
## 26606 Resort Hotel 180
## 26607 Resort Hotel 180
## 26608 Resort Hotel 11
## 26609 Resort Hotel 136
## 26610 Resort Hotel 180
## 26611 Resort Hotel 187
## 26612 Resort Hotel 2
## 26613 Resort Hotel 152
## 26614 Resort Hotel 284
## 26615 Resort Hotel 2
## 26616 Resort Hotel 12
## 26617 Resort Hotel 153
## 26618 Resort Hotel 153
## 26619 Resort Hotel 194
## 26620 Resort Hotel 140
## 26621 Resort Hotel 1
## 26622 Resort Hotel 152
## 26623 Resort Hotel 93
## 26624 Resort Hotel 93
## 26625 Resort Hotel 152
## 26626 Resort Hotel 0
## 26627 Resort Hotel 41
## 26628 Resort Hotel 0
## 26629 Resort Hotel 181
## 26630 Resort Hotel 158
## 26631 Resort Hotel 145
## 26632 Resort Hotel 57
## 26633 Resort Hotel 145
## 26634 Resort Hotel 156
## 26635 Resort Hotel 196
## 26636 Resort Hotel 88
## 26637 Resort Hotel 248
## 26638 Resort Hotel 178
## 26639 Resort Hotel 180
## 26640 Resort Hotel 6
## 26641 Resort Hotel 191
## 26642 Resort Hotel 214
## 26643 Resort Hotel 1
## 26644 Resort Hotel 117
## 26645 Resort Hotel 234
## 26646 Resort Hotel 41
## 26647 Resort Hotel 190
## 26648 Resort Hotel 42
## 26649 Resort Hotel 0
## 26650 Resort Hotel 15
## 26651 Resort Hotel 34
## 26652 Resort Hotel 16
## 26653 Resort Hotel 6
## 26654 Resort Hotel 152
## 26655 Resort Hotel 152
## 26656 Resort Hotel 37
## 26657 Resort Hotel 0
## 26658 Resort Hotel 94
## 26659 Resort Hotel 60
## 26660 Resort Hotel 2
## 26661 Resort Hotel 114
## 26662 Resort Hotel 138
## 26663 Resort Hotel 15
## 26664 Resort Hotel 15
## 26665 Resort Hotel 4
## 26666 Resort Hotel 15
## 26667 Resort Hotel 15
## 26668 Resort Hotel 4
## 26669 Resort Hotel 4
## 26670 Resort Hotel 16
## 26671 Resort Hotel 203
## 26672 Resort Hotel 9
## 26673 Resort Hotel 315
## 26674 Resort Hotel 180
## 26675 Resort Hotel 25
## 26676 Resort Hotel 192
## 26677 Resort Hotel 19
## 26678 Resort Hotel 100
## 26679 Resort Hotel 18
## 26680 Resort Hotel 111
## 26681 Resort Hotel 187
## 26682 Resort Hotel 1
## 26683 Resort Hotel 2
## 26684 Resort Hotel 214
## 26685 Resort Hotel 76
## 26686 Resort Hotel 0
## 26687 Resort Hotel 104
## 26688 Resort Hotel 200
## 26689 Resort Hotel 7
## 26690 Resort Hotel 3
## 26691 Resort Hotel 31
## 26692 Resort Hotel 174
## 26693 Resort Hotel 12
## 26694 Resort Hotel 145
## 26695 Resort Hotel 90
## 26696 Resort Hotel 90
## 26697 Resort Hotel 180
## 26698 Resort Hotel 1
## 26699 Resort Hotel 4
## 26700 Resort Hotel 177
## 26701 Resort Hotel 22
## 26702 Resort Hotel 2
## 26703 Resort Hotel 4
## 26704 Resort Hotel 174
## 26705 Resort Hotel 14
## 26706 Resort Hotel 53
## 26707 Resort Hotel 53
## 26708 Resort Hotel 180
## 26709 Resort Hotel 1
## 26710 Resort Hotel 174
## 26711 Resort Hotel 0
## 26712 Resort Hotel 3
## 26713 Resort Hotel 97
## 26714 Resort Hotel 97
## 26715 Resort Hotel 200
## 26716 Resort Hotel 1
## 26717 Resort Hotel 207
## 26718 Resort Hotel 5
## 26719 Resort Hotel 70
## 26720 Resort Hotel 180
## 26721 Resort Hotel 42
## 26722 Resort Hotel 56
## 26723 Resort Hotel 51
## 26724 Resort Hotel 56
## 26725 Resort Hotel 133
## 26726 Resort Hotel 26
## 26727 Resort Hotel 5
## 26728 Resort Hotel 12
## 26729 Resort Hotel 182
## 26730 Resort Hotel 0
## 26731 Resort Hotel 15
## 26732 Resort Hotel 154
## 26733 Resort Hotel 113
## 26734 Resort Hotel 4
## 26735 Resort Hotel 3
## 26736 Resort Hotel 14
## 26737 Resort Hotel 141
## 26738 Resort Hotel 141
## 26739 Resort Hotel 180
## 26740 Resort Hotel 180
## 26741 Resort Hotel 180
## 26742 Resort Hotel 180
## 26743 Resort Hotel 180
## 26744 Resort Hotel 235
## 26745 Resort Hotel 152
## 26746 Resort Hotel 108
## 26747 Resort Hotel 83
## 26748 Resort Hotel 45
## 26749 Resort Hotel 47
## 26750 Resort Hotel 207
## 26751 Resort Hotel 107
## 26752 Resort Hotel 207
## 26753 Resort Hotel 179
## 26754 Resort Hotel 146
## 26755 Resort Hotel 151
## 26756 Resort Hotel 187
## 26757 Resort Hotel 70
## 26758 Resort Hotel 11
## 26759 Resort Hotel 161
## 26760 Resort Hotel 132
## 26761 Resort Hotel 132
## 26762 Resort Hotel 23
## 26763 Resort Hotel 194
## 26764 Resort Hotel 9
## 26765 Resort Hotel 132
## 26766 Resort Hotel 138
## 26767 Resort Hotel 204
## 26768 Resort Hotel 204
## 26769 Resort Hotel 204
## 26770 Resort Hotel 188
## 26771 Resort Hotel 159
## 26772 Resort Hotel 197
## 26773 Resort Hotel 34
## 26774 Resort Hotel 199
## 26775 Resort Hotel 195
## 26776 Resort Hotel 195
## 26777 Resort Hotel 195
## 26778 Resort Hotel 8
## 26779 Resort Hotel 233
## 26780 Resort Hotel 151
## 26781 Resort Hotel 50
## 26782 Resort Hotel 50
## 26783 Resort Hotel 8
## 26784 Resort Hotel 50
## 26785 Resort Hotel 34
## 26786 Resort Hotel 145
## 26787 Resort Hotel 136
## 26788 Resort Hotel 83
## 26789 Resort Hotel 151
## 26790 Resort Hotel 83
## 26791 Resort Hotel 83
## 26792 Resort Hotel 151
## 26793 Resort Hotel 84
## 26794 Resort Hotel 88
## 26795 Resort Hotel 55
## 26796 Resort Hotel 200
## 26797 Resort Hotel 200
## 26798 Resort Hotel 6
## 26799 Resort Hotel 96
## 26800 Resort Hotel 72
## 26801 Resort Hotel 194
## 26802 Resort Hotel 194
## 26803 Resort Hotel 10
## 26804 Resort Hotel 52
## 26805 Resort Hotel 151
## 26806 Resort Hotel 180
## 26807 Resort Hotel 230
## 26808 Resort Hotel 200
## 26809 Resort Hotel 136
## 26810 Resort Hotel 86
## 26811 Resort Hotel 17
## 26812 Resort Hotel 17
## 26813 Resort Hotel 182
## 26814 Resort Hotel 7
## 26815 Resort Hotel 172
## 26816 Resort Hotel 206
## 26817 Resort Hotel 0
## 26818 Resort Hotel 179
## 26819 Resort Hotel 18
## 26820 Resort Hotel 226
## 26821 Resort Hotel 14
## 26822 Resort Hotel 37
## 26823 Resort Hotel 1
## 26824 Resort Hotel 0
## 26825 Resort Hotel 0
## 26826 Resort Hotel 17
## 26827 Resort Hotel 61
## 26828 Resort Hotel 5
## 26829 Resort Hotel 13
## 26830 Resort Hotel 6
## 26831 Resort Hotel 2
## 26832 Resort Hotel 35
## 26833 Resort Hotel 107
## 26834 Resort Hotel 107
## 26835 Resort Hotel 0
## 26836 Resort Hotel 13
## 26837 Resort Hotel 8
## 26838 Resort Hotel 9
## 26839 Resort Hotel 193
## 26840 Resort Hotel 3
## 26841 Resort Hotel 0
## 26842 Resort Hotel 66
## 26843 Resort Hotel 91
## 26844 Resort Hotel 91
## 26845 Resort Hotel 38
## 26846 Resort Hotel 55
## 26847 Resort Hotel 129
## 26848 Resort Hotel 44
## 26849 Resort Hotel 26
## 26850 Resort Hotel 166
## 26851 Resort Hotel 21
## 26852 Resort Hotel 135
## 26853 Resort Hotel 136
## 26854 Resort Hotel 17
## 26855 Resort Hotel 37
## 26856 Resort Hotel 89
## 26857 Resort Hotel 16
## 26858 Resort Hotel 85
## 26859 Resort Hotel 144
## 26860 Resort Hotel 85
## 26861 Resort Hotel 22
## 26862 Resort Hotel 209
## 26863 Resort Hotel 209
## 26864 Resort Hotel 14
## 26865 Resort Hotel 30
## 26866 Resort Hotel 138
## 26867 Resort Hotel 241
## 26868 Resort Hotel 2
## 26869 Resort Hotel 37
## 26870 Resort Hotel 36
## 26871 Resort Hotel 22
## 26872 Resort Hotel 205
## 26873 Resort Hotel 119
## 26874 Resort Hotel 37
## 26875 Resort Hotel 106
## 26876 Resort Hotel 194
## 26877 Resort Hotel 39
## 26878 Resort Hotel 9
## 26879 Resort Hotel 51
## 26880 Resort Hotel 184
## 26881 Resort Hotel 42
## 26882 Resort Hotel 17
## 26883 Resort Hotel 205
## 26884 Resort Hotel 45
## 26885 Resort Hotel 194
## 26886 Resort Hotel 251
## 26887 Resort Hotel 164
## 26888 Resort Hotel 157
## 26889 Resort Hotel 131
## 26890 Resort Hotel 112
## 26891 Resort Hotel 112
## 26892 Resort Hotel 164
## 26893 Resort Hotel 56
## 26894 Resort Hotel 213
## 26895 Resort Hotel 213
## 26896 Resort Hotel 10
## 26897 Resort Hotel 90
## 26898 Resort Hotel 39
## 26899 Resort Hotel 32
## 26900 Resort Hotel 147
## 26901 Resort Hotel 6
## 26902 Resort Hotel 1
## 26903 Resort Hotel 107
## 26904 Resort Hotel 78
## 26905 Resort Hotel 42
## 26906 Resort Hotel 49
## 26907 Resort Hotel 10
## 26908 Resort Hotel 184
## 26909 Resort Hotel 172
## 26910 Resort Hotel 2
## 26911 Resort Hotel 1
## 26912 Resort Hotel 1
## 26913 Resort Hotel 122
## 26914 Resort Hotel 51
## 26915 Resort Hotel 122
## 26916 Resort Hotel 207
## 26917 Resort Hotel 17
## 26918 Resort Hotel 160
## 26919 Resort Hotel 110
## 26920 Resort Hotel 97
## 26921 Resort Hotel 11
## 26922 Resort Hotel 25
## 26923 Resort Hotel 208
## 26924 Resort Hotel 194
## 26925 Resort Hotel 4
## 26926 Resort Hotel 87
## 26927 Resort Hotel 87
## 26928 Resort Hotel 87
## 26929 Resort Hotel 71
## 26930 Resort Hotel 12
## 26931 Resort Hotel 10
## 26932 Resort Hotel 17
## 26933 Resort Hotel 102
## 26934 Resort Hotel 131
## 26935 Resort Hotel 13
## 26936 Resort Hotel 131
## 26937 Resort Hotel 6
## 26938 Resort Hotel 56
## 26939 Resort Hotel 92
## 26940 Resort Hotel 133
## 26941 Resort Hotel 136
## 26942 Resort Hotel 47
## 26943 Resort Hotel 102
## 26944 Resort Hotel 57
## 26945 Resort Hotel 147
## 26946 Resort Hotel 214
## 26947 Resort Hotel 86
## 26948 Resort Hotel 71
## 26949 Resort Hotel 34
## 26950 Resort Hotel 2
## 26951 Resort Hotel 8
## 26952 Resort Hotel 110
## 26953 Resort Hotel 110
## 26954 Resort Hotel 110
## 26955 Resort Hotel 133
## 26956 Resort Hotel 65
## 26957 Resort Hotel 117
## 26958 Resort Hotel 42
## 26959 Resort Hotel 42
## 26960 Resort Hotel 42
## 26961 Resort Hotel 96
## 26962 Resort Hotel 199
## 26963 Resort Hotel 122
## 26964 Resort Hotel 83
## 26965 Resort Hotel 83
## 26966 Resort Hotel 36
## 26967 Resort Hotel 56
## 26968 Resort Hotel 203
## 26969 Resort Hotel 204
## 26970 Resort Hotel 24
## 26971 Resort Hotel 131
## 26972 Resort Hotel 69
## 26973 Resort Hotel 206
## 26974 Resort Hotel 83
## 26975 Resort Hotel 3
## 26976 Resort Hotel 43
## 26977 Resort Hotel 63
## 26978 Resort Hotel 203
## 26979 Resort Hotel 75
## 26980 Resort Hotel 17
## 26981 Resort Hotel 24
## 26982 Resort Hotel 175
## 26983 Resort Hotel 218
## 26984 Resort Hotel 210
## 26985 Resort Hotel 246
## 26986 Resort Hotel 161
## 26987 Resort Hotel 16
## 26988 Resort Hotel 165
## 26989 Resort Hotel 16
## 26990 Resort Hotel 45
## 26991 Resort Hotel 2
## 26992 Resort Hotel 1
## 26993 Resort Hotel 1
## 26994 Resort Hotel 11
## 26995 Resort Hotel 147
## 26996 Resort Hotel 20
## 26997 Resort Hotel 201
## 26998 Resort Hotel 175
## 26999 Resort Hotel 21
## 27000 Resort Hotel 185
## 27001 Resort Hotel 145
## 27002 Resort Hotel 145
## 27003 Resort Hotel 107
## 27004 Resort Hotel 145
## 27005 Resort Hotel 145
## 27006 Resort Hotel 116
## 27007 Resort Hotel 93
## 27008 Resort Hotel 57
## 27009 Resort Hotel 24
## 27010 Resort Hotel 197
## 27011 Resort Hotel 4
## 27012 Resort Hotel 207
## 27013 Resort Hotel 6
## 27014 Resort Hotel 145
## 27015 Resort Hotel 214
## 27016 Resort Hotel 108
## 27017 Resort Hotel 185
## 27018 Resort Hotel 1
## 27019 Resort Hotel 189
## 27020 Resort Hotel 211
## 27021 Resort Hotel 199
## 27022 Resort Hotel 190
## 27023 Resort Hotel 204
## 27024 Resort Hotel 259
## 27025 Resort Hotel 259
## 27026 Resort Hotel 190
## 27027 Resort Hotel 12
## 27028 Resort Hotel 178
## 27029 Resort Hotel 4
## 27030 Resort Hotel 118
## 27031 Resort Hotel 15
## 27032 Resort Hotel 49
## 27033 Resort Hotel 1
## 27034 Resort Hotel 251
## 27035 Resort Hotel 251
## 27036 Resort Hotel 59
## 27037 Resort Hotel 205
## 27038 Resort Hotel 136
## 27039 Resort Hotel 175
## 27040 Resort Hotel 5
## 27041 Resort Hotel 1
## 27042 Resort Hotel 115
## 27043 Resort Hotel 154
## 27044 Resort Hotel 16
## 27045 Resort Hotel 49
## 27046 Resort Hotel 154
## 27047 Resort Hotel 154
## 27048 Resort Hotel 17
## 27049 Resort Hotel 154
## 27050 Resort Hotel 18
## 27051 Resort Hotel 154
## 27052 Resort Hotel 211
## 27053 Resort Hotel 174
## 27054 Resort Hotel 115
## 27055 Resort Hotel 4
## 27056 Resort Hotel 169
## 27057 Resort Hotel 251
## 27058 Resort Hotel 1
## 27059 Resort Hotel 1
## 27060 Resort Hotel 89
## 27061 Resort Hotel 89
## 27062 Resort Hotel 1
## 27063 Resort Hotel 2
## 27064 Resort Hotel 140
## 27065 Resort Hotel 1
## 27066 Resort Hotel 181
## 27067 Resort Hotel 250
## 27068 Resort Hotel 20
## 27069 Resort Hotel 1
## 27070 Resort Hotel 1
## 27071 Resort Hotel 187
## 27072 Resort Hotel 0
## 27073 Resort Hotel 173
## 27074 Resort Hotel 1
## 27075 Resort Hotel 0
## 27076 Resort Hotel 11
## 27077 Resort Hotel 124
## 27078 Resort Hotel 13
## 27079 Resort Hotel 1
## 27080 Resort Hotel 4
## 27081 Resort Hotel 27
## 27082 Resort Hotel 187
## 27083 Resort Hotel 205
## 27084 Resort Hotel 212
## 27085 Resort Hotel 201
## 27086 Resort Hotel 212
## 27087 Resort Hotel 154
## 27088 Resort Hotel 25
## 27089 Resort Hotel 164
## 27090 Resort Hotel 164
## 27091 Resort Hotel 111
## 27092 Resort Hotel 14
## 27093 Resort Hotel 7
## 27094 Resort Hotel 7
## 27095 Resort Hotel 1
## 27096 Resort Hotel 2
## 27097 Resort Hotel 128
## 27098 Resort Hotel 28
## 27099 Resort Hotel 7
## 27100 Resort Hotel 99
## 27101 Resort Hotel 14
## 27102 Resort Hotel 7
## 27103 Resort Hotel 7
## 27104 Resort Hotel 7
## 27105 Resort Hotel 1
## 27106 Resort Hotel 24
## 27107 Resort Hotel 179
## 27108 Resort Hotel 162
## 27109 Resort Hotel 54
## 27110 Resort Hotel 4
## 27111 Resort Hotel 13
## 27112 Resort Hotel 13
## 27113 Resort Hotel 64
## 27114 Resort Hotel 28
## 27115 Resort Hotel 106
## 27116 Resort Hotel 52
## 27117 Resort Hotel 6
## 27118 Resort Hotel 1
## 27119 Resort Hotel 0
## 27120 Resort Hotel 6
## 27121 Resort Hotel 2
## 27122 Resort Hotel 119
## 27123 Resort Hotel 180
## 27124 Resort Hotel 27
## 27125 Resort Hotel 17
## 27126 Resort Hotel 178
## 27127 Resort Hotel 15
## 27128 Resort Hotel 216
## 27129 Resort Hotel 11
## 27130 Resort Hotel 205
## 27131 Resort Hotel 52
## 27132 Resort Hotel 3
## 27133 Resort Hotel 178
## 27134 Resort Hotel 89
## 27135 Resort Hotel 32
## 27136 Resort Hotel 186
## 27137 Resort Hotel 220
## 27138 Resort Hotel 15
## 27139 Resort Hotel 91
## 27140 Resort Hotel 194
## 27141 Resort Hotel 194
## 27142 Resort Hotel 124
## 27143 Resort Hotel 3
## 27144 Resort Hotel 17
## 27145 Resort Hotel 18
## 27146 Resort Hotel 1
## 27147 Resort Hotel 11
## 27148 Resort Hotel 26
## 27149 Resort Hotel 27
## 27150 Resort Hotel 17
## 27151 Resort Hotel 134
## 27152 Resort Hotel 98
## 27153 Resort Hotel 97
## 27154 Resort Hotel 136
## 27155 Resort Hotel 12
## 27156 Resort Hotel 19
## 27157 Resort Hotel 36
## 27158 Resort Hotel 0
## 27159 Resort Hotel 12
## 27160 Resort Hotel 223
## 27161 Resort Hotel 97
## 27162 Resort Hotel 68
## 27163 Resort Hotel 208
## 27164 Resort Hotel 113
## 27165 Resort Hotel 209
## 27166 Resort Hotel 154
## 27167 Resort Hotel 0
## 27168 Resort Hotel 108
## 27169 Resort Hotel 255
## 27170 Resort Hotel 206
## 27171 Resort Hotel 91
## 27172 Resort Hotel 91
## 27173 Resort Hotel 126
## 27174 Resort Hotel 126
## 27175 Resort Hotel 210
## 27176 Resort Hotel 205
## 27177 Resort Hotel 50
## 27178 Resort Hotel 99
## 27179 Resort Hotel 88
## 27180 Resort Hotel 117
## 27181 Resort Hotel 129
## 27182 Resort Hotel 33
## 27183 Resort Hotel 26
## 27184 Resort Hotel 79
## 27185 Resort Hotel 12
## 27186 Resort Hotel 88
## 27187 Resort Hotel 82
## 27188 Resort Hotel 79
## 27189 Resort Hotel 49
## 27190 Resort Hotel 208
## 27191 Resort Hotel 56
## 27192 Resort Hotel 56
## 27193 Resort Hotel 56
## 27194 Resort Hotel 103
## 27195 Resort Hotel 103
## 27196 Resort Hotel 0
## 27197 Resort Hotel 48
## 27198 Resort Hotel 65
## 27199 Resort Hotel 221
## 27200 Resort Hotel 167
## 27201 Resort Hotel 200
## 27202 Resort Hotel 58
## 27203 Resort Hotel 23
## 27204 Resort Hotel 49
## 27205 Resort Hotel 119
## 27206 Resort Hotel 199
## 27207 Resort Hotel 12
## 27208 Resort Hotel 13
## 27209 Resort Hotel 10
## 27210 Resort Hotel 80
## 27211 Resort Hotel 119
## 27212 Resort Hotel 12
## 27213 Resort Hotel 0
## 27214 Resort Hotel 15
## 27215 Resort Hotel 75
## 27216 Resort Hotel 75
## 27217 Resort Hotel 133
## 27218 Resort Hotel 104
## 27219 Resort Hotel 0
## 27220 Resort Hotel 0
## 27221 Resort Hotel 53
## 27222 Resort Hotel 4
## 27223 Resort Hotel 7
## 27224 Resort Hotel 139
## 27225 Resort Hotel 78
## 27226 Resort Hotel 35
## 27227 Resort Hotel 13
## 27228 Resort Hotel 10
## 27229 Resort Hotel 208
## 27230 Resort Hotel 129
## 27231 Resort Hotel 148
## 27232 Resort Hotel 125
## 27233 Resort Hotel 112
## 27234 Resort Hotel 61
## 27235 Resort Hotel 101
## 27236 Resort Hotel 205
## 27237 Resort Hotel 76
## 27238 Resort Hotel 144
## 27239 Resort Hotel 52
## 27240 Resort Hotel 89
## 27241 Resort Hotel 52
## 27242 Resort Hotel 9
## 27243 Resort Hotel 82
## 27244 Resort Hotel 0
## 27245 Resort Hotel 4
## 27246 Resort Hotel 14
## 27247 Resort Hotel 67
## 27248 Resort Hotel 85
## 27249 Resort Hotel 19
## 27250 Resort Hotel 170
## 27251 Resort Hotel 127
## 27252 Resort Hotel 0
## 27253 Resort Hotel 67
## 27254 Resort Hotel 188
## 27255 Resort Hotel 1
## 27256 Resort Hotel 115
## 27257 Resort Hotel 63
## 27258 Resort Hotel 8
## 27259 Resort Hotel 12
## 27260 Resort Hotel 72
## 27261 Resort Hotel 2
## 27262 Resort Hotel 4
## 27263 Resort Hotel 6
## 27264 Resort Hotel 169
## 27265 Resort Hotel 209
## 27266 Resort Hotel 0
## 27267 Resort Hotel 333
## 27268 Resort Hotel 98
## 27269 Resort Hotel 88
## 27270 Resort Hotel 85
## 27271 Resort Hotel 66
## 27272 Resort Hotel 67
## 27273 Resort Hotel 67
## 27274 Resort Hotel 0
## 27275 Resort Hotel 217
## 27276 Resort Hotel 1
## 27277 Resort Hotel 9
## 27278 Resort Hotel 104
## 27279 Resort Hotel 88
## 27280 Resort Hotel 68
## 27281 Resort Hotel 40
## 27282 Resort Hotel 342
## 27283 Resort Hotel 0
## 27284 Resort Hotel 60
## 27285 Resort Hotel 17
## 27286 Resort Hotel 55
## 27287 Resort Hotel 237
## 27288 Resort Hotel 191
## 27289 Resort Hotel 210
## 27290 Resort Hotel 88
## 27291 Resort Hotel 9
## 27292 Resort Hotel 14
## 27293 Resort Hotel 2
## 27294 Resort Hotel 60
## 27295 Resort Hotel 60
## 27296 Resort Hotel 99
## 27297 Resort Hotel 22
## 27298 Resort Hotel 4
## 27299 Resort Hotel 146
## 27300 Resort Hotel 116
## 27301 Resort Hotel 195
## 27302 Resort Hotel 195
## 27303 Resort Hotel 208
## 27304 Resort Hotel 0
## 27305 Resort Hotel 47
## 27306 Resort Hotel 92
## 27307 Resort Hotel 208
## 27308 Resort Hotel 148
## 27309 Resort Hotel 183
## 27310 Resort Hotel 87
## 27311 Resort Hotel 145
## 27312 Resort Hotel 214
## 27313 Resort Hotel 204
## 27314 Resort Hotel 204
## 27315 Resort Hotel 204
## 27316 Resort Hotel 204
## 27317 Resort Hotel 204
## 27318 Resort Hotel 14
## 27319 Resort Hotel 79
## 27320 Resort Hotel 100
## 27321 Resort Hotel 0
## 27322 Resort Hotel 79
## 27323 Resort Hotel 25
## 27324 Resort Hotel 158
## 27325 Resort Hotel 119
## 27326 Resort Hotel 108
## 27327 Resort Hotel 69
## 27328 Resort Hotel 175
## 27329 Resort Hotel 76
## 27330 Resort Hotel 4
## 27331 Resort Hotel 206
## 27332 Resort Hotel 20
## 27333 Resort Hotel 88
## 27334 Resort Hotel 87
## 27335 Resort Hotel 0
## 27336 Resort Hotel 22
## 27337 Resort Hotel 22
## 27338 Resort Hotel 87
## 27339 Resort Hotel 135
## 27340 Resort Hotel 215
## 27341 Resort Hotel 85
## 27342 Resort Hotel 136
## 27343 Resort Hotel 5
## 27344 Resort Hotel 0
## 27345 Resort Hotel 12
## 27346 Resort Hotel 3
## 27347 Resort Hotel 0
## 27348 Resort Hotel 111
## 27349 Resort Hotel 58
## 27350 Resort Hotel 198
## 27351 Resort Hotel 45
## 27352 Resort Hotel 0
## 27353 Resort Hotel 54
## 27354 Resort Hotel 0
## 27355 Resort Hotel 82
## 27356 Resort Hotel 193
## 27357 Resort Hotel 193
## 27358 Resort Hotel 4
## 27359 Resort Hotel 238
## 27360 Resort Hotel 187
## 27361 Resort Hotel 238
## 27362 Resort Hotel 98
## 27363 Resort Hotel 171
## 27364 Resort Hotel 42
## 27365 Resort Hotel 212
## 27366 Resort Hotel 212
## 27367 Resort Hotel 219
## 27368 Resort Hotel 184
## 27369 Resort Hotel 53
## 27370 Resort Hotel 195
## 27371 Resort Hotel 44
## 27372 Resort Hotel 173
## 27373 Resort Hotel 213
## 27374 Resort Hotel 57
## 27375 Resort Hotel 155
## 27376 Resort Hotel 2
## 27377 Resort Hotel 185
## 27378 Resort Hotel 213
## 27379 Resort Hotel 72
## 27380 Resort Hotel 205
## 27381 Resort Hotel 124
## 27382 Resort Hotel 124
## 27383 Resort Hotel 14
## 27384 Resort Hotel 188
## 27385 Resort Hotel 192
## 27386 Resort Hotel 204
## 27387 Resort Hotel 82
## 27388 Resort Hotel 14
## 27389 Resort Hotel 14
## 27390 Resort Hotel 31
## 27391 Resort Hotel 86
## 27392 Resort Hotel 6
## 27393 Resort Hotel 305
## 27394 Resort Hotel 240
## 27395 Resort Hotel 205
## 27396 Resort Hotel 127
## 27397 Resort Hotel 4
## 27398 Resort Hotel 104
## 27399 Resort Hotel 18
## 27400 Resort Hotel 7
## 27401 Resort Hotel 7
## 27402 Resort Hotel 22
## 27403 Resort Hotel 23
## 27404 Resort Hotel 64
## 27405 Resort Hotel 97
## 27406 Resort Hotel 122
## 27407 Resort Hotel 14
## 27408 Resort Hotel 14
## 27409 Resort Hotel 28
## 27410 Resort Hotel 152
## 27411 Resort Hotel 82
## 27412 Resort Hotel 82
## 27413 Resort Hotel 45
## 27414 Resort Hotel 29
## 27415 Resort Hotel 6
## 27416 Resort Hotel 6
## 27417 Resort Hotel 15
## 27418 Resort Hotel 39
## 27419 Resort Hotel 20
## 27420 Resort Hotel 232
## 27421 Resort Hotel 21
## 27422 Resort Hotel 116
## 27423 Resort Hotel 95
## 27424 Resort Hotel 27
## 27425 Resort Hotel 11
## 27426 Resort Hotel 2
## 27427 Resort Hotel 30
## 27428 Resort Hotel 39
## 27429 Resort Hotel 214
## 27430 Resort Hotel 214
## 27431 Resort Hotel 220
## 27432 Resort Hotel 44
## 27433 Resort Hotel 1
## 27434 Resort Hotel 162
## 27435 Resort Hotel 186
## 27436 Resort Hotel 32
## 27437 Resort Hotel 18
## 27438 Resort Hotel 22
## 27439 Resort Hotel 13
## 27440 Resort Hotel 136
## 27441 Resort Hotel 36
## 27442 Resort Hotel 13
## 27443 Resort Hotel 11
## 27444 Resort Hotel 11
## 27445 Resort Hotel 15
## 27446 Resort Hotel 26
## 27447 Resort Hotel 0
## 27448 Resort Hotel 31
## 27449 Resort Hotel 22
## 27450 Resort Hotel 8
## 27451 Resort Hotel 179
## 27452 Resort Hotel 104
## 27453 Resort Hotel 39
## 27454 Resort Hotel 226
## 27455 Resort Hotel 1
## 27456 Resort Hotel 272
## 27457 Resort Hotel 272
## 27458 Resort Hotel 272
## 27459 Resort Hotel 272
## 27460 Resort Hotel 272
## 27461 Resort Hotel 272
## 27462 Resort Hotel 28
## 27463 Resort Hotel 50
## 27464 Resort Hotel 41
## 27465 Resort Hotel 116
## 27466 Resort Hotel 0
## 27467 Resort Hotel 179
## 27468 Resort Hotel 41
## 27469 Resort Hotel 2
## 27470 Resort Hotel 2
## 27471 Resort Hotel 0
## 27472 Resort Hotel 205
## 27473 Resort Hotel 230
## 27474 Resort Hotel 23
## 27475 Resort Hotel 0
## 27476 Resort Hotel 35
## 27477 Resort Hotel 69
## 27478 Resort Hotel 3
## 27479 Resort Hotel 91
## 27480 Resort Hotel 36
## 27481 Resort Hotel 98
## 27482 Resort Hotel 166
## 27483 Resort Hotel 166
## 27484 Resort Hotel 38
## 27485 Resort Hotel 63
## 27486 Resort Hotel 14
## 27487 Resort Hotel 63
## 27488 Resort Hotel 63
## 27489 Resort Hotel 63
## 27490 Resort Hotel 32
## 27491 Resort Hotel 63
## 27492 Resort Hotel 7
## 27493 Resort Hotel 147
## 27494 Resort Hotel 40
## 27495 Resort Hotel 207
## 27496 Resort Hotel 6
## 27497 Resort Hotel 2
## 27498 Resort Hotel 272
## 27499 Resort Hotel 272
## 27500 Resort Hotel 17
## 27501 Resort Hotel 115
## 27502 Resort Hotel 25
## 27503 Resort Hotel 15
## 27504 Resort Hotel 32
## 27505 Resort Hotel 31
## 27506 Resort Hotel 5
## 27507 Resort Hotel 2
## 27508 Resort Hotel 0
## 27509 Resort Hotel 155
## 27510 Resort Hotel 43
## 27511 Resort Hotel 216
## 27512 Resort Hotel 189
## 27513 Resort Hotel 209
## 27514 Resort Hotel 205
## 27515 Resort Hotel 189
## 27516 Resort Hotel 5
## 27517 Resort Hotel 109
## 27518 Resort Hotel 43
## 27519 Resort Hotel 74
## 27520 Resort Hotel 3
## 27521 Resort Hotel 0
## 27522 Resort Hotel 101
## 27523 Resort Hotel 23
## 27524 Resort Hotel 205
## 27525 Resort Hotel 57
## 27526 Resort Hotel 195
## 27527 Resort Hotel 22
## 27528 Resort Hotel 3
## 27529 Resort Hotel 0
## 27530 Resort Hotel 0
## 27531 Resort Hotel 16
## 27532 Resort Hotel 24
## 27533 Resort Hotel 39
## 27534 Resort Hotel 0
## 27535 Resort Hotel 77
## 27536 Resort Hotel 11
## 27537 Resort Hotel 1
## 27538 Resort Hotel 225
## 27539 Resort Hotel 214
## 27540 Resort Hotel 22
## 27541 Resort Hotel 221
## 27542 Resort Hotel 12
## 27543 Resort Hotel 89
## 27544 Resort Hotel 214
## 27545 Resort Hotel 70
## 27546 Resort Hotel 0
## 27547 Resort Hotel 0
## 27548 Resort Hotel 52
## 27549 Resort Hotel 4
## 27550 Resort Hotel 4
## 27551 Resort Hotel 6
## 27552 Resort Hotel 6
## 27553 Resort Hotel 11
## 27554 Resort Hotel 141
## 27555 Resort Hotel 23
## 27556 Resort Hotel 0
## 27557 Resort Hotel 95
## 27558 Resort Hotel 219
## 27559 Resort Hotel 219
## 27560 Resort Hotel 219
## 27561 Resort Hotel 6
## 27562 Resort Hotel 20
## 27563 Resort Hotel 7
## 27564 Resort Hotel 0
## 27565 Resort Hotel 209
## 27566 Resort Hotel 18
## 27567 Resort Hotel 69
## 27568 Resort Hotel 69
## 27569 Resort Hotel 10
## 27570 Resort Hotel 101
## 27571 Resort Hotel 130
## 27572 Resort Hotel 226
## 27573 Resort Hotel 159
## 27574 Resort Hotel 157
## 27575 Resort Hotel 212
## 27576 Resort Hotel 185
## 27577 Resort Hotel 185
## 27578 Resort Hotel 50
## 27579 Resort Hotel 61
## 27580 Resort Hotel 33
## 27581 Resort Hotel 99
## 27582 Resort Hotel 99
## 27583 Resort Hotel 33
## 27584 Resort Hotel 107
## 27585 Resort Hotel 107
## 27586 Resort Hotel 51
## 27587 Resort Hotel 68
## 27588 Resort Hotel 106
## 27589 Resort Hotel 133
## 27590 Resort Hotel 39
## 27591 Resort Hotel 39
## 27592 Resort Hotel 208
## 27593 Resort Hotel 183
## 27594 Resort Hotel 155
## 27595 Resort Hotel 103
## 27596 Resort Hotel 55
## 27597 Resort Hotel 8
## 27598 Resort Hotel 11
## 27599 Resort Hotel 5
## 27600 Resort Hotel 161
## 27601 Resort Hotel 1
## 27602 Resort Hotel 2
## 27603 Resort Hotel 1
## 27604 Resort Hotel 207
## 27605 Resort Hotel 6
## 27606 Resort Hotel 160
## 27607 Resort Hotel 132
## 27608 Resort Hotel 0
## 27609 Resort Hotel 212
## 27610 Resort Hotel 212
## 27611 Resort Hotel 27
## 27612 Resort Hotel 1
## 27613 Resort Hotel 16
## 27614 Resort Hotel 171
## 27615 Resort Hotel 171
## 27616 Resort Hotel 9
## 27617 Resort Hotel 49
## 27618 Resort Hotel 84
## 27619 Resort Hotel 55
## 27620 Resort Hotel 84
## 27621 Resort Hotel 84
## 27622 Resort Hotel 36
## 27623 Resort Hotel 1
## 27624 Resort Hotel 6
## 27625 Resort Hotel 6
## 27626 Resort Hotel 0
## 27627 Resort Hotel 154
## 27628 Resort Hotel 357
## 27629 Resort Hotel 2
## 27630 Resort Hotel 0
## 27631 Resort Hotel 228
## 27632 Resort Hotel 24
## 27633 Resort Hotel 6
## 27634 Resort Hotel 6
## 27635 Resort Hotel 221
## 27636 Resort Hotel 190
## 27637 Resort Hotel 50
## 27638 Resort Hotel 167
## 27639 Resort Hotel 177
## 27640 Resort Hotel 228
## 27641 Resort Hotel 107
## 27642 Resort Hotel 158
## 27643 Resort Hotel 14
## 27644 Resort Hotel 14
## 27645 Resort Hotel 5
## 27646 Resort Hotel 177
## 27647 Resort Hotel 177
## 27648 Resort Hotel 173
## 27649 Resort Hotel 176
## 27650 Resort Hotel 176
## 27651 Resort Hotel 21
## 27652 Resort Hotel 188
## 27653 Resort Hotel 27
## 27654 Resort Hotel 256
## 27655 Resort Hotel 61
## 27656 Resort Hotel 211
## 27657 Resort Hotel 211
## 27658 Resort Hotel 211
## 27659 Resort Hotel 4
## 27660 Resort Hotel 185
## 27661 Resort Hotel 185
## 27662 Resort Hotel 237
## 27663 Resort Hotel 207
## 27664 Resort Hotel 170
## 27665 Resort Hotel 40
## 27666 Resort Hotel 189
## 27667 Resort Hotel 229
## 27668 Resort Hotel 211
## 27669 Resort Hotel 0
## 27670 Resort Hotel 1
## 27671 Resort Hotel 276
## 27672 Resort Hotel 34
## 27673 Resort Hotel 220
## 27674 Resort Hotel 1
## 27675 Resort Hotel 210
## 27676 Resort Hotel 210
## 27677 Resort Hotel 230
## 27678 Resort Hotel 222
## 27679 Resort Hotel 0
## 27680 Resort Hotel 195
## 27681 Resort Hotel 0
## 27682 Resort Hotel 0
## 27683 Resort Hotel 15
## 27684 Resort Hotel 24
## 27685 Resort Hotel 228
## 27686 Resort Hotel 52
## 27687 Resort Hotel 1
## 27688 Resort Hotel 1
## 27689 Resort Hotel 5
## 27690 Resort Hotel 226
## 27691 Resort Hotel 218
## 27692 Resort Hotel 95
## 27693 Resort Hotel 214
## 27694 Resort Hotel 34
## 27695 Resort Hotel 1
## 27696 Resort Hotel 210
## 27697 Resort Hotel 218
## 27698 Resort Hotel 227
## 27699 Resort Hotel 16
## 27700 Resort Hotel 12
## 27701 Resort Hotel 180
## 27702 Resort Hotel 180
## 27703 Resort Hotel 151
## 27704 Resort Hotel 2
## 27705 Resort Hotel 20
## 27706 Resort Hotel 186
## 27707 Resort Hotel 227
## 27708 Resort Hotel 16
## 27709 Resort Hotel 16
## 27710 Resort Hotel 279
## 27711 Resort Hotel 14
## 27712 Resort Hotel 0
## 27713 Resort Hotel 279
## 27714 Resort Hotel 211
## 27715 Resort Hotel 241
## 27716 Resort Hotel 223
## 27717 Resort Hotel 237
## 27718 Resort Hotel 210
## 27719 Resort Hotel 170
## 27720 Resort Hotel 2
## 27721 Resort Hotel 231
## 27722 Resort Hotel 231
## 27723 Resort Hotel 3
## 27724 Resort Hotel 262
## 27725 Resort Hotel 232
## 27726 Resort Hotel 266
## 27727 Resort Hotel 160
## 27728 Resort Hotel 248
## 27729 Resort Hotel 264
## 27730 Resort Hotel 241
## 27731 Resort Hotel 0
## 27732 Resort Hotel 19
## 27733 Resort Hotel 11
## 27734 Resort Hotel 177
## 27735 Resort Hotel 3
## 27736 Resort Hotel 177
## 27737 Resort Hotel 16
## 27738 Resort Hotel 150
## 27739 Resort Hotel 237
## 27740 Resort Hotel 6
## 27741 Resort Hotel 259
## 27742 Resort Hotel 229
## 27743 Resort Hotel 247
## 27744 Resort Hotel 231
## 27745 Resort Hotel 232
## 27746 Resort Hotel 232
## 27747 Resort Hotel 226
## 27748 Resort Hotel 231
## 27749 Resort Hotel 59
## 27750 Resort Hotel 250
## 27751 Resort Hotel 3
## 27752 Resort Hotel 0
## 27753 Resort Hotel 0
## 27754 Resort Hotel 4
## 27755 Resort Hotel 222
## 27756 Resort Hotel 0
## 27757 Resort Hotel 6
## 27758 Resort Hotel 8
## 27759 Resort Hotel 252
## 27760 Resort Hotel 222
## 27761 Resort Hotel 247
## 27762 Resort Hotel 7
## 27763 Resort Hotel 24
## 27764 Resort Hotel 171
## 27765 Resort Hotel 171
## 27766 Resort Hotel 225
## 27767 Resort Hotel 406
## 27768 Resort Hotel 234
## 27769 Resort Hotel 25
## 27770 Resort Hotel 0
## 27771 Resort Hotel 94
## 27772 Resort Hotel 240
## 27773 Resort Hotel 238
## 27774 Resort Hotel 252
## 27775 Resort Hotel 229
## 27776 Resort Hotel 226
## 27777 Resort Hotel 226
## 27778 Resort Hotel 136
## 27779 Resort Hotel 136
## 27780 Resort Hotel 54
## 27781 Resort Hotel 10
## 27782 Resort Hotel 226
## 27783 Resort Hotel 174
## 27784 Resort Hotel 227
## 27785 Resort Hotel 35
## 27786 Resort Hotel 52
## 27787 Resort Hotel 242
## 27788 Resort Hotel 242
## 27789 Resort Hotel 10
## 27790 Resort Hotel 165
## 27791 Resort Hotel 171
## 27792 Resort Hotel 42
## 27793 Resort Hotel 19
## 27794 Resort Hotel 150
## 27795 Resort Hotel 139
## 27796 Resort Hotel 292
## 27797 Resort Hotel 1
## 27798 Resort Hotel 29
## 27799 Resort Hotel 13
## 27800 Resort Hotel 3
## 27801 Resort Hotel 1
## 27802 Resort Hotel 3
## 27803 Resort Hotel 139
## 27804 Resort Hotel 138
## 27805 Resort Hotel 8
## 27806 Resort Hotel 205
## 27807 Resort Hotel 13
## 27808 Resort Hotel 283
## 27809 Resort Hotel 287
## 27810 Resort Hotel 227
## 27811 Resort Hotel 287
## 27812 Resort Hotel 287
## 27813 Resort Hotel 287
## 27814 Resort Hotel 173
## 27815 Resort Hotel 234
## 27816 Resort Hotel 173
## 27817 Resort Hotel 287
## 27818 Resort Hotel 284
## 27819 Resort Hotel 234
## 27820 Resort Hotel 234
## 27821 Resort Hotel 234
## 27822 Resort Hotel 234
## 27823 Resort Hotel 284
## 27824 Resort Hotel 115
## 27825 Resort Hotel 7
## 27826 Resort Hotel 139
## 27827 Resort Hotel 139
## 27828 Resort Hotel 154
## 27829 Resort Hotel 248
## 27830 Resort Hotel 193
## 27831 Resort Hotel 187
## 27832 Resort Hotel 10
## 27833 Resort Hotel 33
## 27834 Resort Hotel 168
## 27835 Resort Hotel 231
## 27836 Resort Hotel 37
## 27837 Resort Hotel 11
## 27838 Resort Hotel 9
## 27839 Resort Hotel 89
## 27840 Resort Hotel 190
## 27841 Resort Hotel 237
## 27842 Resort Hotel 291
## 27843 Resort Hotel 223
## 27844 Resort Hotel 228
## 27845 Resort Hotel 245
## 27846 Resort Hotel 245
## 27847 Resort Hotel 245
## 27848 Resort Hotel 1
## 27849 Resort Hotel 245
## 27850 Resort Hotel 245
## 27851 Resort Hotel 15
## 27852 Resort Hotel 12
## 27853 Resort Hotel 15
## 27854 Resort Hotel 236
## 27855 Resort Hotel 232
## 27856 Resort Hotel 232
## 27857 Resort Hotel 232
## 27858 Resort Hotel 18
## 27859 Resort Hotel 142
## 27860 Resort Hotel 142
## 27861 Resort Hotel 6
## 27862 Resort Hotel 196
## 27863 Resort Hotel 197
## 27864 Resort Hotel 195
## 27865 Resort Hotel 245
## 27866 Resort Hotel 5
## 27867 Resort Hotel 234
## 27868 Resort Hotel 231
## 27869 Resort Hotel 214
## 27870 Resort Hotel 301
## 27871 Resort Hotel 230
## 27872 Resort Hotel 329
## 27873 Resort Hotel 4
## 27874 Resort Hotel 260
## 27875 Resort Hotel 231
## 27876 Resort Hotel 110
## 27877 Resort Hotel 174
## 27878 Resort Hotel 154
## 27879 Resort Hotel 32
## 27880 Resort Hotel 63
## 27881 Resort Hotel 32
## 27882 Resort Hotel 32
## 27883 Resort Hotel 32
## 27884 Resort Hotel 34
## 27885 Resort Hotel 34
## 27886 Resort Hotel 34
## 27887 Resort Hotel 7
## 27888 Resort Hotel 7
## 27889 Resort Hotel 7
## 27890 Resort Hotel 54
## 27891 Resort Hotel 71
## 27892 Resort Hotel 31
## 27893 Resort Hotel 4
## 27894 Resort Hotel 0
## 27895 Resort Hotel 84
## 27896 Resort Hotel 339
## 27897 Resort Hotel 30
## 27898 Resort Hotel 0
## 27899 Resort Hotel 3
## 27900 Resort Hotel 116
## 27901 Resort Hotel 4
## 27902 Resort Hotel 0
## 27903 Resort Hotel 7
## 27904 Resort Hotel 52
## 27905 Resort Hotel 223
## 27906 Resort Hotel 230
## 27907 Resort Hotel 223
## 27908 Resort Hotel 189
## 27909 Resort Hotel 53
## 27910 Resort Hotel 157
## 27911 Resort Hotel 223
## 27912 Resort Hotel 262
## 27913 Resort Hotel 263
## 27914 Resort Hotel 230
## 27915 Resort Hotel 35
## 27916 Resort Hotel 9
## 27917 Resort Hotel 30
## 27918 Resort Hotel 33
## 27919 Resort Hotel 35
## 27920 Resort Hotel 223
## 27921 Resort Hotel 61
## 27922 Resort Hotel 59
## 27923 Resort Hotel 52
## 27924 Resort Hotel 8
## 27925 Resort Hotel 52
## 27926 Resort Hotel 225
## 27927 Resort Hotel 10
## 27928 Resort Hotel 247
## 27929 Resort Hotel 188
## 27930 Resort Hotel 33
## 27931 Resort Hotel 5
## 27932 Resort Hotel 2
## 27933 Resort Hotel 5
## 27934 Resort Hotel 225
## 27935 Resort Hotel 15
## 27936 Resort Hotel 36
## 27937 Resort Hotel 0
## 27938 Resort Hotel 28
## 27939 Resort Hotel 28
## 27940 Resort Hotel 194
## 27941 Resort Hotel 4
## 27942 Resort Hotel 28
## 27943 Resort Hotel 229
## 27944 Resort Hotel 209
## 27945 Resort Hotel 0
## 27946 Resort Hotel 9
## 27947 Resort Hotel 223
## 27948 Resort Hotel 26
## 27949 Resort Hotel 8
## 27950 Resort Hotel 51
## 27951 Resort Hotel 89
## 27952 Resort Hotel 71
## 27953 Resort Hotel 10
## 27954 Resort Hotel 10
## 27955 Resort Hotel 26
## 27956 Resort Hotel 6
## 27957 Resort Hotel 0
## 27958 Resort Hotel 223
## 27959 Resort Hotel 2
## 27960 Resort Hotel 194
## 27961 Resort Hotel 12
## 27962 Resort Hotel 252
## 27963 Resort Hotel 240
## 27964 Resort Hotel 7
## 27965 Resort Hotel 163
## 27966 Resort Hotel 126
## 27967 Resort Hotel 1
## 27968 Resort Hotel 12
## 27969 Resort Hotel 0
## 27970 Resort Hotel 9
## 27971 Resort Hotel 19
## 27972 Resort Hotel 129
## 27973 Resort Hotel 165
## 27974 Resort Hotel 72
## 27975 Resort Hotel 115
## 27976 Resort Hotel 56
## 27977 Resort Hotel 109
## 27978 Resort Hotel 302
## 27979 Resort Hotel 135
## 27980 Resort Hotel 205
## 27981 Resort Hotel 250
## 27982 Resort Hotel 1
## 27983 Resort Hotel 1
## 27984 Resort Hotel 244
## 27985 Resort Hotel 7
## 27986 Resort Hotel 132
## 27987 Resort Hotel 138
## 27988 Resort Hotel 213
## 27989 Resort Hotel 211
## 27990 Resort Hotel 211
## 27991 Resort Hotel 220
## 27992 Resort Hotel 236
## 27993 Resort Hotel 131
## 27994 Resort Hotel 336
## 27995 Resort Hotel 250
## 27996 Resort Hotel 233
## 27997 Resort Hotel 336
## 27998 Resort Hotel 0
## 27999 Resort Hotel 336
## 28000 Resort Hotel 336
## 28001 Resort Hotel 336
## 28002 Resort Hotel 336
## 28003 Resort Hotel 336
## 28004 Resort Hotel 336
## 28005 Resort Hotel 336
## 28006 Resort Hotel 336
## 28007 Resort Hotel 336
## 28008 Resort Hotel 336
## 28009 Resort Hotel 8
## 28010 Resort Hotel 251
## 28011 Resort Hotel 251
## 28012 Resort Hotel 251
## 28013 Resort Hotel 251
## 28014 Resort Hotel 336
## 28015 Resort Hotel 336
## 28016 Resort Hotel 10
## 28017 Resort Hotel 4
## 28018 Resort Hotel 334
## 28019 Resort Hotel 4
## 28020 Resort Hotel 327
## 28021 Resort Hotel 251
## 28022 Resort Hotel 327
## 28023 Resort Hotel 210
## 28024 Resort Hotel 327
## 28025 Resort Hotel 327
## 28026 Resort Hotel 244
## 28027 Resort Hotel 148
## 28028 Resort Hotel 214
## 28029 Resort Hotel 16
## 28030 Resort Hotel 327
## 28031 Resort Hotel 145
## 28032 Resort Hotel 2
## 28033 Resort Hotel 9
## 28034 Resort Hotel 9
## 28035 Resort Hotel 9
## 28036 Resort Hotel 236
## 28037 Resort Hotel 336
## 28038 Resort Hotel 9
## 28039 Resort Hotel 9
## 28040 Resort Hotel 336
## 28041 Resort Hotel 9
## 28042 Resort Hotel 9
## 28043 Resort Hotel 336
## 28044 Resort Hotel 9
## 28045 Resort Hotel 336
## 28046 Resort Hotel 336
## 28047 Resort Hotel 336
## 28048 Resort Hotel 336
## 28049 Resort Hotel 336
## 28050 Resort Hotel 233
## 28051 Resort Hotel 233
## 28052 Resort Hotel 9
## 28053 Resort Hotel 9
## 28054 Resort Hotel 336
## 28055 Resort Hotel 227
## 28056 Resort Hotel 9
## 28057 Resort Hotel 9
## 28058 Resort Hotel 0
## 28059 Resort Hotel 11
## 28060 Resort Hotel 234
## 28061 Resort Hotel 0
## 28062 Resort Hotel 9
## 28063 Resort Hotel 46
## 28064 Resort Hotel 227
## 28065 Resort Hotel 227
## 28066 Resort Hotel 227
## 28067 Resort Hotel 336
## 28068 Resort Hotel 336
## 28069 Resort Hotel 336
## 28070 Resort Hotel 336
## 28071 Resort Hotel 336
## 28072 Resort Hotel 336
## 28073 Resort Hotel 9
## 28074 Resort Hotel 0
## 28075 Resort Hotel 336
## 28076 Resort Hotel 336
## 28077 Resort Hotel 1
## 28078 Resort Hotel 10
## 28079 Resort Hotel 336
## 28080 Resort Hotel 246
## 28081 Resort Hotel 5
## 28082 Resort Hotel 0
## 28083 Resort Hotel 0
## 28084 Resort Hotel 226
## 28085 Resort Hotel 66
## 28086 Resort Hotel 1
## 28087 Resort Hotel 102
## 28088 Resort Hotel 42
## 28089 Resort Hotel 59
## 28090 Resort Hotel 27
## 28091 Resort Hotel 5
## 28092 Resort Hotel 7
## 28093 Resort Hotel 5
## 28094 Resort Hotel 168
## 28095 Resort Hotel 55
## 28096 Resort Hotel 213
## 28097 Resort Hotel 9
## 28098 Resort Hotel 35
## 28099 Resort Hotel 46
## 28100 Resort Hotel 48
## 28101 Resort Hotel 251
## 28102 Resort Hotel 8
## 28103 Resort Hotel 248
## 28104 Resort Hotel 191
## 28105 Resort Hotel 54
## 28106 Resort Hotel 54
## 28107 Resort Hotel 1
## 28108 Resort Hotel 1
## 28109 Resort Hotel 7
## 28110 Resort Hotel 348
## 28111 Resort Hotel 174
## 28112 Resort Hotel 77
## 28113 Resort Hotel 39
## 28114 Resort Hotel 6
## 28115 Resort Hotel 245
## 28116 Resort Hotel 61
## 28117 Resort Hotel 245
## 28118 Resort Hotel 280
## 28119 Resort Hotel 280
## 28120 Resort Hotel 15
## 28121 Resort Hotel 280
## 28122 Resort Hotel 55
## 28123 Resort Hotel 0
## 28124 Resort Hotel 1
## 28125 Resort Hotel 6
## 28126 Resort Hotel 40
## 28127 Resort Hotel 29
## 28128 Resort Hotel 45
## 28129 Resort Hotel 47
## 28130 Resort Hotel 90
## 28131 Resort Hotel 76
## 28132 Resort Hotel 19
## 28133 Resort Hotel 12
## 28134 Resort Hotel 67
## 28135 Resort Hotel 30
## 28136 Resort Hotel 78
## 28137 Resort Hotel 6
## 28138 Resort Hotel 48
## 28139 Resort Hotel 58
## 28140 Resort Hotel 3
## 28141 Resort Hotel 230
## 28142 Resort Hotel 230
## 28143 Resort Hotel 297
## 28144 Resort Hotel 297
## 28145 Resort Hotel 136
## 28146 Resort Hotel 237
## 28147 Resort Hotel 243
## 28148 Resort Hotel 232
## 28149 Resort Hotel 77
## 28150 Resort Hotel 9
## 28151 Resort Hotel 12
## 28152 Resort Hotel 7
## 28153 Resort Hotel 1
## 28154 Resort Hotel 5
## 28155 Resort Hotel 422
## 28156 Resort Hotel 152
## 28157 Resort Hotel 51
## 28158 Resort Hotel 51
## 28159 Resort Hotel 51
## 28160 Resort Hotel 192
## 28161 Resort Hotel 172
## 28162 Resort Hotel 280
## 28163 Resort Hotel 12
## 28164 Resort Hotel 132
## 28165 Resort Hotel 132
## 28166 Resort Hotel 298
## 28167 Resort Hotel 246
## 28168 Resort Hotel 183
## 28169 Resort Hotel 239
## 28170 Resort Hotel 233
## 28171 Resort Hotel 126
## 28172 Resort Hotel 171
## 28173 Resort Hotel 253
## 28174 Resort Hotel 141
## 28175 Resort Hotel 141
## 28176 Resort Hotel 41
## 28177 Resort Hotel 41
## 28178 Resort Hotel 96
## 28179 Resort Hotel 0
## 28180 Resort Hotel 15
## 28181 Resort Hotel 144
## 28182 Resort Hotel 10
## 28183 Resort Hotel 18
## 28184 Resort Hotel 178
## 28185 Resort Hotel 174
## 28186 Resort Hotel 49
## 28187 Resort Hotel 168
## 28188 Resort Hotel 159
## 28189 Resort Hotel 159
## 28190 Resort Hotel 156
## 28191 Resort Hotel 162
## 28192 Resort Hotel 24
## 28193 Resort Hotel 238
## 28194 Resort Hotel 253
## 28195 Resort Hotel 45
## 28196 Resort Hotel 247
## 28197 Resort Hotel 24
## 28198 Resort Hotel 147
## 28199 Resort Hotel 174
## 28200 Resort Hotel 174
## 28201 Resort Hotel 174
## 28202 Resort Hotel 174
## 28203 Resort Hotel 336
## 28204 Resort Hotel 233
## 28205 Resort Hotel 131
## 28206 Resort Hotel 157
## 28207 Resort Hotel 233
## 28208 Resort Hotel 238
## 28209 Resort Hotel 238
## 28210 Resort Hotel 247
## 28211 Resort Hotel 247
## 28212 Resort Hotel 0
## 28213 Resort Hotel 171
## 28214 Resort Hotel 171
## 28215 Resort Hotel 4
## 28216 Resort Hotel 199
## 28217 Resort Hotel 8
## 28218 Resort Hotel 13
## 28219 Resort Hotel 16
## 28220 Resort Hotel 16
## 28221 Resort Hotel 0
## 28222 Resort Hotel 160
## 28223 Resort Hotel 5
## 28224 Resort Hotel 20
## 28225 Resort Hotel 10
## 28226 Resort Hotel 248
## 28227 Resort Hotel 248
## 28228 Resort Hotel 248
## 28229 Resort Hotel 248
## 28230 Resort Hotel 13
## 28231 Resort Hotel 192
## 28232 Resort Hotel 234
## 28233 Resort Hotel 326
## 28234 Resort Hotel 250
## 28235 Resort Hotel 297
## 28236 Resort Hotel 1
## 28237 Resort Hotel 6
## 28238 Resort Hotel 6
## 28239 Resort Hotel 7
## 28240 Resort Hotel 1
## 28241 Resort Hotel 0
## 28242 Resort Hotel 249
## 28243 Resort Hotel 203
## 28244 Resort Hotel 1
## 28245 Resort Hotel 127
## 28246 Resort Hotel 0
## 28247 Resort Hotel 0
## 28248 Resort Hotel 37
## 28249 Resort Hotel 37
## 28250 Resort Hotel 53
## 28251 Resort Hotel 172
## 28252 Resort Hotel 172
## 28253 Resort Hotel 109
## 28254 Resort Hotel 17
## 28255 Resort Hotel 156
## 28256 Resort Hotel 12
## 28257 Resort Hotel 170
## 28258 Resort Hotel 19
## 28259 Resort Hotel 156
## 28260 Resort Hotel 5
## 28261 Resort Hotel 280
## 28262 Resort Hotel 217
## 28263 Resort Hotel 217
## 28264 Resort Hotel 203
## 28265 Resort Hotel 285
## 28266 Resort Hotel 155
## 28267 Resort Hotel 63
## 28268 Resort Hotel 61
## 28269 Resort Hotel 0
## 28270 Resort Hotel 252
## 28271 Resort Hotel 0
## 28272 Resort Hotel 285
## 28273 Resort Hotel 285
## 28274 Resort Hotel 285
## 28275 Resort Hotel 285
## 28276 Resort Hotel 285
## 28277 Resort Hotel 285
## 28278 Resort Hotel 285
## 28279 Resort Hotel 285
## 28280 Resort Hotel 285
## 28281 Resort Hotel 285
## 28282 Resort Hotel 285
## 28283 Resort Hotel 285
## 28284 Resort Hotel 285
## 28285 Resort Hotel 285
## 28286 Resort Hotel 285
## 28287 Resort Hotel 168
## 28288 Resort Hotel 285
## 28289 Resort Hotel 278
## 28290 Resort Hotel 243
## 28291 Resort Hotel 0
## 28292 Resort Hotel 22
## 28293 Resort Hotel 165
## 28294 Resort Hotel 28
## 28295 Resort Hotel 196
## 28296 Resort Hotel 217
## 28297 Resort Hotel 186
## 28298 Resort Hotel 186
## 28299 Resort Hotel 186
## 28300 Resort Hotel 195
## 28301 Resort Hotel 237
## 28302 Resort Hotel 237
## 28303 Resort Hotel 237
## 28304 Resort Hotel 13
## 28305 Resort Hotel 59
## 28306 Resort Hotel 195
## 28307 Resort Hotel 195
## 28308 Resort Hotel 255
## 28309 Resort Hotel 195
## 28310 Resort Hotel 271
## 28311 Resort Hotel 166
## 28312 Resort Hotel 5
## 28313 Resort Hotel 240
## 28314 Resort Hotel 240
## 28315 Resort Hotel 158
## 28316 Resort Hotel 13
## 28317 Resort Hotel 16
## 28318 Resort Hotel 5
## 28319 Resort Hotel 78
## 28320 Resort Hotel 225
## 28321 Resort Hotel 13
## 28322 Resort Hotel 13
## 28323 Resort Hotel 60
## 28324 Resort Hotel 3
## 28325 Resort Hotel 0
## 28326 Resort Hotel 98
## 28327 Resort Hotel 195
## 28328 Resort Hotel 26
## 28329 Resort Hotel 0
## 28330 Resort Hotel 22
## 28331 Resort Hotel 297
## 28332 Resort Hotel 27
## 28333 Resort Hotel 153
## 28334 Resort Hotel 445
## 28335 Resort Hotel 91
## 28336 Resort Hotel 305
## 28337 Resort Hotel 265
## 28338 Resort Hotel 78
## 28339 Resort Hotel 146
## 28340 Resort Hotel 146
## 28341 Resort Hotel 221
## 28342 Resort Hotel 146
## 28343 Resort Hotel 146
## 28344 Resort Hotel 146
## 28345 Resort Hotel 146
## 28346 Resort Hotel 286
## 28347 Resort Hotel 40
## 28348 Resort Hotel 137
## 28349 Resort Hotel 117
## 28350 Resort Hotel 3
## 28351 Resort Hotel 151
## 28352 Resort Hotel 151
## 28353 Resort Hotel 121
## 28354 Resort Hotel 29
## 28355 Resort Hotel 235
## 28356 Resort Hotel 3
## 28357 Resort Hotel 14
## 28358 Resort Hotel 246
## 28359 Resort Hotel 18
## 28360 Resort Hotel 236
## 28361 Resort Hotel 193
## 28362 Resort Hotel 8
## 28363 Resort Hotel 8
## 28364 Resort Hotel 8
## 28365 Resort Hotel 128
## 28366 Resort Hotel 0
## 28367 Resort Hotel 58
## 28368 Resort Hotel 258
## 28369 Resort Hotel 269
## 28370 Resort Hotel 146
## 28371 Resort Hotel 248
## 28372 Resort Hotel 6
## 28373 Resort Hotel 12
## 28374 Resort Hotel 4
## 28375 Resort Hotel 0
## 28376 Resort Hotel 195
## 28377 Resort Hotel 219
## 28378 Resort Hotel 126
## 28379 Resort Hotel 220
## 28380 Resort Hotel 15
## 28381 Resort Hotel 18
## 28382 Resort Hotel 265
## 28383 Resort Hotel 164
## 28384 Resort Hotel 100
## 28385 Resort Hotel 94
## 28386 Resort Hotel 198
## 28387 Resort Hotel 113
## 28388 Resort Hotel 198
## 28389 Resort Hotel 198
## 28390 Resort Hotel 5
## 28391 Resort Hotel 220
## 28392 Resort Hotel 22
## 28393 Resort Hotel 3
## 28394 Resort Hotel 4
## 28395 Resort Hotel 128
## 28396 Resort Hotel 3
## 28397 Resort Hotel 4
## 28398 Resort Hotel 96
## 28399 Resort Hotel 96
## 28400 Resort Hotel 96
## 28401 Resort Hotel 133
## 28402 Resort Hotel 46
## 28403 Resort Hotel 10
## 28404 Resort Hotel 255
## 28405 Resort Hotel 107
## 28406 Resort Hotel 96
## 28407 Resort Hotel 59
## 28408 Resort Hotel 12
## 28409 Resort Hotel 12
## 28410 Resort Hotel 3
## 28411 Resort Hotel 175
## 28412 Resort Hotel 155
## 28413 Resort Hotel 21
## 28414 Resort Hotel 28
## 28415 Resort Hotel 296
## 28416 Resort Hotel 542
## 28417 Resort Hotel 542
## 28418 Resort Hotel 152
## 28419 Resort Hotel 542
## 28420 Resort Hotel 542
## 28421 Resort Hotel 445
## 28422 Resort Hotel 445
## 28423 Resort Hotel 542
## 28424 Resort Hotel 542
## 28425 Resort Hotel 542
## 28426 Resort Hotel 542
## 28427 Resort Hotel 542
## 28428 Resort Hotel 542
## 28429 Resort Hotel 241
## 28430 Resort Hotel 241
## 28431 Resort Hotel 153
## 28432 Resort Hotel 542
## 28433 Resort Hotel 542
## 28434 Resort Hotel 542
## 28435 Resort Hotel 221
## 28436 Resort Hotel 79
## 28437 Resort Hotel 14
## 28438 Resort Hotel 214
## 28439 Resort Hotel 2
## 28440 Resort Hotel 0
## 28441 Resort Hotel 289
## 28442 Resort Hotel 8
## 28443 Resort Hotel 179
## 28444 Resort Hotel 192
## 28445 Resort Hotel 19
## 28446 Resort Hotel 215
## 28447 Resort Hotel 207
## 28448 Resort Hotel 4
## 28449 Resort Hotel 0
## 28450 Resort Hotel 180
## 28451 Resort Hotel 43
## 28452 Resort Hotel 107
## 28453 Resort Hotel 43
## 28454 Resort Hotel 62
## 28455 Resort Hotel 0
## 28456 Resort Hotel 214
## 28457 Resort Hotel 172
## 28458 Resort Hotel 159
## 28459 Resort Hotel 8
## 28460 Resort Hotel 159
## 28461 Resort Hotel 0
## 28462 Resort Hotel 29
## 28463 Resort Hotel 237
## 28464 Resort Hotel 0
## 28465 Resort Hotel 0
## 28466 Resort Hotel 70
## 28467 Resort Hotel 2
## 28468 Resort Hotel 172
## 28469 Resort Hotel 0
## 28470 Resort Hotel 162
## 28471 Resort Hotel 342
## 28472 Resort Hotel 1
## 28473 Resort Hotel 1
## 28474 Resort Hotel 342
## 28475 Resort Hotel 4
## 28476 Resort Hotel 342
## 28477 Resort Hotel 342
## 28478 Resort Hotel 0
## 28479 Resort Hotel 0
## 28480 Resort Hotel 342
## 28481 Resort Hotel 0
## 28482 Resort Hotel 0
## 28483 Resort Hotel 342
## 28484 Resort Hotel 342
## 28485 Resort Hotel 0
## 28486 Resort Hotel 51
## 28487 Resort Hotel 202
## 28488 Resort Hotel 28
## 28489 Resort Hotel 18
## 28490 Resort Hotel 0
## 28491 Resort Hotel 172
## 28492 Resort Hotel 0
## 28493 Resort Hotel 254
## 28494 Resort Hotel 0
## 28495 Resort Hotel 19
## 28496 Resort Hotel 0
## 28497 Resort Hotel 239
## 28498 Resort Hotel 6
## 28499 Resort Hotel 342
## 28500 Resort Hotel 342
## 28501 Resort Hotel 13
## 28502 Resort Hotel 19
## 28503 Resort Hotel 342
## 28504 Resort Hotel 250
## 28505 Resort Hotel 342
## 28506 Resort Hotel 154
## 28507 Resort Hotel 146
## 28508 Resort Hotel 60
## 28509 Resort Hotel 87
## 28510 Resort Hotel 13
## 28511 Resort Hotel 48
## 28512 Resort Hotel 202
## 28513 Resort Hotel 39
## 28514 Resort Hotel 232
## 28515 Resort Hotel 57
## 28516 Resort Hotel 245
## 28517 Resort Hotel 245
## 28518 Resort Hotel 245
## 28519 Resort Hotel 245
## 28520 Resort Hotel 245
## 28521 Resort Hotel 245
## 28522 Resort Hotel 245
## 28523 Resort Hotel 245
## 28524 Resort Hotel 152
## 28525 Resort Hotel 152
## 28526 Resort Hotel 245
## 28527 Resort Hotel 245
## 28528 Resort Hotel 245
## 28529 Resort Hotel 266
## 28530 Resort Hotel 0
## 28531 Resort Hotel 296
## 28532 Resort Hotel 210
## 28533 Resort Hotel 152
## 28534 Resort Hotel 245
## 28535 Resort Hotel 143
## 28536 Resort Hotel 35
## 28537 Resort Hotel 3
## 28538 Resort Hotel 208
## 28539 Resort Hotel 152
## 28540 Resort Hotel 245
## 28541 Resort Hotel 152
## 28542 Resort Hotel 118
## 28543 Resort Hotel 245
## 28544 Resort Hotel 5
## 28545 Resort Hotel 152
## 28546 Resort Hotel 0
## 28547 Resort Hotel 159
## 28548 Resort Hotel 58
## 28549 Resort Hotel 163
## 28550 Resort Hotel 9
## 28551 Resort Hotel 10
## 28552 Resort Hotel 8
## 28553 Resort Hotel 8
## 28554 Resort Hotel 0
## 28555 Resort Hotel 142
## 28556 Resort Hotel 22
## 28557 Resort Hotel 2
## 28558 Resort Hotel 0
## 28559 Resort Hotel 14
## 28560 Resort Hotel 50
## 28561 Resort Hotel 25
## 28562 Resort Hotel 162
## 28563 Resort Hotel 11
## 28564 Resort Hotel 11
## 28565 Resort Hotel 24
## 28566 Resort Hotel 63
## 28567 Resort Hotel 136
## 28568 Resort Hotel 166
## 28569 Resort Hotel 145
## 28570 Resort Hotel 166
## 28571 Resort Hotel 166
## 28572 Resort Hotel 166
## 28573 Resort Hotel 0
## 28574 Resort Hotel 1
## 28575 Resort Hotel 25
## 28576 Resort Hotel 165
## 28577 Resort Hotel 94
## 28578 Resort Hotel 94
## 28579 Resort Hotel 25
## 28580 Resort Hotel 64
## 28581 Resort Hotel 165
## 28582 Resort Hotel 14
## 28583 Resort Hotel 59
## 28584 Resort Hotel 1
## 28585 Resort Hotel 8
## 28586 Resort Hotel 68
## 28587 Resort Hotel 0
## 28588 Resort Hotel 70
## 28589 Resort Hotel 64
## 28590 Resort Hotel 46
## 28591 Resort Hotel 0
## 28592 Resort Hotel 0
## 28593 Resort Hotel 245
## 28594 Resort Hotel 32
## 28595 Resort Hotel 142
## 28596 Resort Hotel 184
## 28597 Resort Hotel 46
## 28598 Resort Hotel 315
## 28599 Resort Hotel 135
## 28600 Resort Hotel 228
## 28601 Resort Hotel 118
## 28602 Resort Hotel 177
## 28603 Resort Hotel 57
## 28604 Resort Hotel 150
## 28605 Resort Hotel 3
## 28606 Resort Hotel 129
## 28607 Resort Hotel 179
## 28608 Resort Hotel 128
## 28609 Resort Hotel 41
## 28610 Resort Hotel 183
## 28611 Resort Hotel 146
## 28612 Resort Hotel 45
## 28613 Resort Hotel 55
## 28614 Resort Hotel 261
## 28615 Resort Hotel 261
## 28616 Resort Hotel 261
## 28617 Resort Hotel 261
## 28618 Resort Hotel 261
## 28619 Resort Hotel 261
## 28620 Resort Hotel 261
## 28621 Resort Hotel 261
## 28622 Resort Hotel 261
## 28623 Resort Hotel 261
## 28624 Resort Hotel 261
## 28625 Resort Hotel 261
## 28626 Resort Hotel 261
## 28627 Resort Hotel 261
## 28628 Resort Hotel 161
## 28629 Resort Hotel 67
## 28630 Resort Hotel 31
## 28631 Resort Hotel 30
## 28632 Resort Hotel 60
## 28633 Resort Hotel 60
## 28634 Resort Hotel 163
## 28635 Resort Hotel 41
## 28636 Resort Hotel 38
## 28637 Resort Hotel 78
## 28638 Resort Hotel 188
## 28639 Resort Hotel 7
## 28640 Resort Hotel 220
## 28641 Resort Hotel 220
## 28642 Resort Hotel 7
## 28643 Resort Hotel 7
## 28644 Resort Hotel 7
## 28645 Resort Hotel 383
## 28646 Resort Hotel 11
## 28647 Resort Hotel 383
## 28648 Resort Hotel 12
## 28649 Resort Hotel 8
## 28650 Resort Hotel 383
## 28651 Resort Hotel 11
## 28652 Resort Hotel 3
## 28653 Resort Hotel 3
## 28654 Resort Hotel 0
## 28655 Resort Hotel 383
## 28656 Resort Hotel 11
## 28657 Resort Hotel 383
## 28658 Resort Hotel 11
## 28659 Resort Hotel 383
## 28660 Resort Hotel 11
## 28661 Resort Hotel 12
## 28662 Resort Hotel 32
## 28663 Resort Hotel 0
## 28664 Resort Hotel 48
## 28665 Resort Hotel 1
## 28666 Resort Hotel 383
## 28667 Resort Hotel 11
## 28668 Resort Hotel 17
## 28669 Resort Hotel 172
## 28670 Resort Hotel 172
## 28671 Resort Hotel 383
## 28672 Resort Hotel 11
## 28673 Resort Hotel 0
## 28674 Resort Hotel 16
## 28675 Resort Hotel 51
## 28676 Resort Hotel 81
## 28677 Resort Hotel 55
## 28678 Resort Hotel 15
## 28679 Resort Hotel 131
## 28680 Resort Hotel 18
## 28681 Resort Hotel 383
## 28682 Resort Hotel 383
## 28683 Resort Hotel 11
## 28684 Resort Hotel 14
## 28685 Resort Hotel 131
## 28686 Resort Hotel 18
## 28687 Resort Hotel 383
## 28688 Resort Hotel 11
## 28689 Resort Hotel 383
## 28690 Resort Hotel 383
## 28691 Resort Hotel 7
## 28692 Resort Hotel 383
## 28693 Resort Hotel 11
## 28694 Resort Hotel 384
## 28695 Resort Hotel 11
## 28696 Resort Hotel 383
## 28697 Resort Hotel 11
## 28698 Resort Hotel 383
## 28699 Resort Hotel 11
## 28700 Resort Hotel 383
## 28701 Resort Hotel 11
## 28702 Resort Hotel 383
## 28703 Resort Hotel 11
## 28704 Resort Hotel 7
## 28705 Resort Hotel 8
## 28706 Resort Hotel 167
## 28707 Resort Hotel 58
## 28708 Resort Hotel 7
## 28709 Resort Hotel 11
## 28710 Resort Hotel 0
## 28711 Resort Hotel 8
## 28712 Resort Hotel 8
## 28713 Resort Hotel 125
## 28714 Resort Hotel 11
## 28715 Resort Hotel 7
## 28716 Resort Hotel 7
## 28717 Resort Hotel 8
## 28718 Resort Hotel 8
## 28719 Resort Hotel 7
## 28720 Resort Hotel 8
## 28721 Resort Hotel 8
## 28722 Resort Hotel 100
## 28723 Resort Hotel 223
## 28724 Resort Hotel 223
## 28725 Resort Hotel 61
## 28726 Resort Hotel 5
## 28727 Resort Hotel 11
## 28728 Resort Hotel 243
## 28729 Resort Hotel 210
## 28730 Resort Hotel 210
## 28731 Resort Hotel 0
## 28732 Resort Hotel 8
## 28733 Resort Hotel 8
## 28734 Resort Hotel 17
## 28735 Resort Hotel 8
## 28736 Resort Hotel 8
## 28737 Resort Hotel 7
## 28738 Resort Hotel 7
## 28739 Resort Hotel 66
## 28740 Resort Hotel 7
## 28741 Resort Hotel 383
## 28742 Resort Hotel 5
## 28743 Resort Hotel 37
## 28744 Resort Hotel 215
## 28745 Resort Hotel 13
## 28746 Resort Hotel 16
## 28747 Resort Hotel 18
## 28748 Resort Hotel 7
## 28749 Resort Hotel 131
## 28750 Resort Hotel 18
## 28751 Resort Hotel 30
## 28752 Resort Hotel 18
## 28753 Resort Hotel 30
## 28754 Resort Hotel 18
## 28755 Resort Hotel 7
## 28756 Resort Hotel 16
## 28757 Resort Hotel 8
## 28758 Resort Hotel 131
## 28759 Resort Hotel 18
## 28760 Resort Hotel 30
## 28761 Resort Hotel 18
## 28762 Resort Hotel 131
## 28763 Resort Hotel 131
## 28764 Resort Hotel 0
## 28765 Resort Hotel 7
## 28766 Resort Hotel 131
## 28767 Resort Hotel 18
## 28768 Resort Hotel 30
## 28769 Resort Hotel 18
## 28770 Resort Hotel 131
## 28771 Resort Hotel 18
## 28772 Resort Hotel 10
## 28773 Resort Hotel 16
## 28774 Resort Hotel 3
## 28775 Resort Hotel 1
## 28776 Resort Hotel 45
## 28777 Resort Hotel 0
## 28778 Resort Hotel 139
## 28779 Resort Hotel 1
## 28780 Resort Hotel 0
## 28781 Resort Hotel 178
## 28782 Resort Hotel 32
## 28783 Resort Hotel 32
## 28784 Resort Hotel 0
## 28785 Resort Hotel 58
## 28786 Resort Hotel 4
## 28787 Resort Hotel 0
## 28788 Resort Hotel 4
## 28789 Resort Hotel 4
## 28790 Resort Hotel 185
## 28791 Resort Hotel 27
## 28792 Resort Hotel 158
## 28793 Resort Hotel 0
## 28794 Resort Hotel 162
## 28795 Resort Hotel 131
## 28796 Resort Hotel 162
## 28797 Resort Hotel 243
## 28798 Resort Hotel 243
## 28799 Resort Hotel 131
## 28800 Resort Hotel 18
## 28801 Resort Hotel 16
## 28802 Resort Hotel 60
## 28803 Resort Hotel 243
## 28804 Resort Hotel 16
## 28805 Resort Hotel 18
## 28806 Resort Hotel 185
## 28807 Resort Hotel 16
## 28808 Resort Hotel 18
## 28809 Resort Hotel 162
## 28810 Resort Hotel 131
## 28811 Resort Hotel 18
## 28812 Resort Hotel 16
## 28813 Resort Hotel 18
## 28814 Resort Hotel 162
## 28815 Resort Hotel 243
## 28816 Resort Hotel 243
## 28817 Resort Hotel 243
## 28818 Resort Hotel 0
## 28819 Resort Hotel 243
## 28820 Resort Hotel 140
## 28821 Resort Hotel 16
## 28822 Resort Hotel 14
## 28823 Resort Hotel 16
## 28824 Resort Hotel 14
## 28825 Resort Hotel 243
## 28826 Resort Hotel 243
## 28827 Resort Hotel 243
## 28828 Resort Hotel 98
## 28829 Resort Hotel 138
## 28830 Resort Hotel 3
## 28831 Resort Hotel 3
## 28832 Resort Hotel 0
## 28833 Resort Hotel 12
## 28834 Resort Hotel 121
## 28835 Resort Hotel 14
## 28836 Resort Hotel 8
## 28837 Resort Hotel 198
## 28838 Resort Hotel 13
## 28839 Resort Hotel 364
## 28840 Resort Hotel 33
## 28841 Resort Hotel 18
## 28842 Resort Hotel 1
## 28843 Resort Hotel 9
## 28844 Resort Hotel 0
## 28845 Resort Hotel 0
## 28846 Resort Hotel 0
## 28847 Resort Hotel 36
## 28848 Resort Hotel 4
## 28849 Resort Hotel 11
## 28850 Resort Hotel 57
## 28851 Resort Hotel 1
## 28852 Resort Hotel 5
## 28853 Resort Hotel 29
## 28854 Resort Hotel 29
## 28855 Resort Hotel 63
## 28856 Resort Hotel 44
## 28857 Resort Hotel 2
## 28858 Resort Hotel 1
## 28859 Resort Hotel 1
## 28860 Resort Hotel 56
## 28861 Resort Hotel 173
## 28862 Resort Hotel 173
## 28863 Resort Hotel 4
## 28864 Resort Hotel 179
## 28865 Resort Hotel 6
## 28866 Resort Hotel 0
## 28867 Resort Hotel 18
## 28868 Resort Hotel 50
## 28869 Resort Hotel 4
## 28870 Resort Hotel 133
## 28871 Resort Hotel 4
## 28872 Resort Hotel 32
## 28873 Resort Hotel 0
## 28874 Resort Hotel 341
## 28875 Resort Hotel 74
## 28876 Resort Hotel 1
## 28877 Resort Hotel 1
## 28878 Resort Hotel 5
## 28879 Resort Hotel 1
## 28880 Resort Hotel 5
## 28881 Resort Hotel 252
## 28882 Resort Hotel 230
## 28883 Resort Hotel 365
## 28884 Resort Hotel 235
## 28885 Resort Hotel 230
## 28886 Resort Hotel 365
## 28887 Resort Hotel 235
## 28888 Resort Hotel 158
## 28889 Resort Hotel 164
## 28890 Resort Hotel 1
## 28891 Resort Hotel 1
## 28892 Resort Hotel 4
## 28893 Resort Hotel 1
## 28894 Resort Hotel 3
## 28895 Resort Hotel 11
## 28896 Resort Hotel 1
## 28897 Resort Hotel 178
## 28898 Resort Hotel 4
## 28899 Resort Hotel 0
## 28900 Resort Hotel 0
## 28901 Resort Hotel 60
## 28902 Resort Hotel 18
## 28903 Resort Hotel 33
## 28904 Resort Hotel 70
## 28905 Resort Hotel 0
## 28906 Resort Hotel 0
## 28907 Resort Hotel 33
## 28908 Resort Hotel 196
## 28909 Resort Hotel 267
## 28910 Resort Hotel 267
## 28911 Resort Hotel 0
## 28912 Resort Hotel 1
## 28913 Resort Hotel 231
## 28914 Resort Hotel 231
## 28915 Resort Hotel 231
## 28916 Resort Hotel 231
## 28917 Resort Hotel 231
## 28918 Resort Hotel 231
## 28919 Resort Hotel 231
## 28920 Resort Hotel 231
## 28921 Resort Hotel 231
## 28922 Resort Hotel 231
## 28923 Resort Hotel 231
## 28924 Resort Hotel 214
## 28925 Resort Hotel 0
## 28926 Resort Hotel 363
## 28927 Resort Hotel 12
## 28928 Resort Hotel 12
## 28929 Resort Hotel 364
## 28930 Resort Hotel 364
## 28931 Resort Hotel 108
## 28932 Resort Hotel 150
## 28933 Resort Hotel 364
## 28934 Resort Hotel 364
## 28935 Resort Hotel 364
## 28936 Resort Hotel 364
## 28937 Resort Hotel 337
## 28938 Resort Hotel 337
## 28939 Resort Hotel 364
## 28940 Resort Hotel 364
## 28941 Resort Hotel 0
## 28942 Resort Hotel 23
## 28943 Resort Hotel 364
## 28944 Resort Hotel 2
## 28945 Resort Hotel 363
## 28946 Resort Hotel 5
## 28947 Resort Hotel 364
## 28948 Resort Hotel 364
## 28949 Resort Hotel 270
## 28950 Resort Hotel 270
## 28951 Resort Hotel 364
## 28952 Resort Hotel 364
## 28953 Resort Hotel 364
## 28954 Resort Hotel 364
## 28955 Resort Hotel 13
## 28956 Resort Hotel 364
## 28957 Resort Hotel 364
## 28958 Resort Hotel 364
## 28959 Resort Hotel 364
## 28960 Resort Hotel 364
## 28961 Resort Hotel 364
## 28962 Resort Hotel 239
## 28963 Resort Hotel 68
## 28964 Resort Hotel 12
## 28965 Resort Hotel 31
## 28966 Resort Hotel 364
## 28967 Resort Hotel 365
## 28968 Resort Hotel 5
## 28969 Resort Hotel 363
## 28970 Resort Hotel 2
## 28971 Resort Hotel 364
## 28972 Resort Hotel 365
## 28973 Resort Hotel 270
## 28974 Resort Hotel 365
## 28975 Resort Hotel 189
## 28976 Resort Hotel 364
## 28977 Resort Hotel 365
## 28978 Resort Hotel 2
## 28979 Resort Hotel 364
## 28980 Resort Hotel 231
## 28981 Resort Hotel 7
## 28982 Resort Hotel 235
## 28983 Resort Hotel 297
## 28984 Resort Hotel 271
## 28985 Resort Hotel 5
## 28986 Resort Hotel 2
## 28987 Resort Hotel 29
## 28988 Resort Hotel 363
## 28989 Resort Hotel 339
## 28990 Resort Hotel 339
## 28991 Resort Hotel 339
## 28992 Resort Hotel 339
## 28993 Resort Hotel 339
## 28994 Resort Hotel 339
## 28995 Resort Hotel 338
## 28996 Resort Hotel 4
## 28997 Resort Hotel 0
## 28998 Resort Hotel 318
## 28999 Resort Hotel 3
## 29000 Resort Hotel 7
## 29001 Resort Hotel 12
## 29002 Resort Hotel 0
## 29003 Resort Hotel 11
## 29004 Resort Hotel 1
## 29005 Resort Hotel 1
## 29006 Resort Hotel 4
## 29007 Resort Hotel 364
## 29008 Resort Hotel 364
## 29009 Resort Hotel 13
## 29010 Resort Hotel 4
## 29011 Resort Hotel 6
## 29012 Resort Hotel 69
## 29013 Resort Hotel 47
## 29014 Resort Hotel 47
## 29015 Resort Hotel 47
## 29016 Resort Hotel 47
## 29017 Resort Hotel 47
## 29018 Resort Hotel 47
## 29019 Resort Hotel 47
## 29020 Resort Hotel 47
## 29021 Resort Hotel 47
## 29022 Resort Hotel 47
## 29023 Resort Hotel 47
## 29024 Resort Hotel 47
## 29025 Resort Hotel 2
## 29026 Resort Hotel 1
## 29027 Resort Hotel 30
## 29028 Resort Hotel 47
## 29029 Resort Hotel 47
## 29030 Resort Hotel 14
## 29031 Resort Hotel 22
## 29032 Resort Hotel 22
## 29033 Resort Hotel 1
## 29034 Resort Hotel 6
## 29035 Resort Hotel 22
## 29036 Resort Hotel 22
## 29037 Resort Hotel 27
## 29038 Resort Hotel 27
## 29039 Resort Hotel 27
## 29040 Resort Hotel 6
## 29041 Resort Hotel 1
## 29042 Resort Hotel 214
## 29043 Resort Hotel 159
## 29044 Resort Hotel 214
## 29045 Resort Hotel 19
## 29046 Resort Hotel 26
## 29047 Resort Hotel 138
## 29048 Resort Hotel 216
## 29049 Resort Hotel 364
## 29050 Resort Hotel 6
## 29051 Resort Hotel 2
## 29052 Resort Hotel 2
## 29053 Resort Hotel 159
## 29054 Resort Hotel 5
## 29055 Resort Hotel 2
## 29056 Resort Hotel 5
## 29057 Resort Hotel 159
## 29058 Resort Hotel 159
## 29059 Resort Hotel 159
## 29060 Resort Hotel 201
## 29061 Resort Hotel 159
## 29062 Resort Hotel 72
## 29063 Resort Hotel 159
## 29064 Resort Hotel 5
## 29065 Resort Hotel 5
## 29066 Resort Hotel 3
## 29067 Resort Hotel 1
## 29068 Resort Hotel 28
## 29069 Resort Hotel 0
## 29070 Resort Hotel 0
## 29071 Resort Hotel 10
## 29072 Resort Hotel 25
## 29073 Resort Hotel 0
## 29074 Resort Hotel 28
## 29075 Resort Hotel 28
## 29076 Resort Hotel 28
## 29077 Resort Hotel 28
## 29078 Resort Hotel 1
## 29079 Resort Hotel 25
## 29080 Resort Hotel 219
## 29081 Resort Hotel 138
## 29082 Resort Hotel 9
## 29083 Resort Hotel 219
## 29084 Resort Hotel 219
## 29085 Resort Hotel 12
## 29086 Resort Hotel 2
## 29087 Resort Hotel 219
## 29088 Resort Hotel 159
## 29089 Resort Hotel 0
## 29090 Resort Hotel 219
## 29091 Resort Hotel 56
## 29092 Resort Hotel 68
## 29093 Resort Hotel 10
## 29094 Resort Hotel 216
## 29095 Resort Hotel 46
## 29096 Resort Hotel 188
## 29097 Resort Hotel 50
## 29098 Resort Hotel 158
## 29099 Resort Hotel 172
## 29100 Resort Hotel 214
## 29101 Resort Hotel 8
## 29102 Resort Hotel 0
## 29103 Resort Hotel 301
## 29104 Resort Hotel 173
## 29105 Resort Hotel 178
## 29106 Resort Hotel 301
## 29107 Resort Hotel 2
## 29108 Resort Hotel 80
## 29109 Resort Hotel 30
## 29110 Resort Hotel 2
## 29111 Resort Hotel 13
## 29112 Resort Hotel 186
## 29113 Resort Hotel 178
## 29114 Resort Hotel 178
## 29115 Resort Hotel 7
## 29116 Resort Hotel 37
## 29117 Resort Hotel 18
## 29118 Resort Hotel 14
## 29119 Resort Hotel 249
## 29120 Resort Hotel 259
## 29121 Resort Hotel 259
## 29122 Resort Hotel 52
## 29123 Resort Hotel 57
## 29124 Resort Hotel 3
## 29125 Resort Hotel 3
## 29126 Resort Hotel 176
## 29127 Resort Hotel 3
## 29128 Resort Hotel 14
## 29129 Resort Hotel 6
## 29130 Resort Hotel 5
## 29131 Resort Hotel 3
## 29132 Resort Hotel 1
## 29133 Resort Hotel 0
## 29134 Resort Hotel 0
## 29135 Resort Hotel 23
## 29136 Resort Hotel 64
## 29137 Resort Hotel 71
## 29138 Resort Hotel 6
## 29139 Resort Hotel 18
## 29140 Resort Hotel 240
## 29141 Resort Hotel 7
## 29142 Resort Hotel 26
## 29143 Resort Hotel 359
## 29144 Resort Hotel 214
## 29145 Resort Hotel 1
## 29146 Resort Hotel 61
## 29147 Resort Hotel 20
## 29148 Resort Hotel 170
## 29149 Resort Hotel 72
## 29150 Resort Hotel 0
## 29151 Resort Hotel 124
## 29152 Resort Hotel 43
## 29153 Resort Hotel 43
## 29154 Resort Hotel 0
## 29155 Resort Hotel 124
## 29156 Resort Hotel 91
## 29157 Resort Hotel 1
## 29158 Resort Hotel 1
## 29159 Resort Hotel 77
## 29160 Resort Hotel 100
## 29161 Resort Hotel 100
## 29162 Resort Hotel 30
## 29163 Resort Hotel 0
## 29164 Resort Hotel 15
## 29165 Resort Hotel 111
## 29166 Resort Hotel 14
## 29167 Resort Hotel 0
## 29168 Resort Hotel 11
## 29169 Resort Hotel 0
## 29170 Resort Hotel 163
## 29171 Resort Hotel 150
## 29172 Resort Hotel 132
## 29173 Resort Hotel 132
## 29174 Resort Hotel 386
## 29175 Resort Hotel 386
## 29176 Resort Hotel 386
## 29177 Resort Hotel 36
## 29178 Resort Hotel 386
## 29179 Resort Hotel 386
## 29180 Resort Hotel 386
## 29181 Resort Hotel 38
## 29182 Resort Hotel 36
## 29183 Resort Hotel 386
## 29184 Resort Hotel 386
## 29185 Resort Hotel 386
## 29186 Resort Hotel 205
## 29187 Resort Hotel 386
## 29188 Resort Hotel 0
## 29189 Resort Hotel 159
## 29190 Resort Hotel 386
## 29191 Resort Hotel 244
## 29192 Resort Hotel 244
## 29193 Resort Hotel 25
## 29194 Resort Hotel 36
## 29195 Resort Hotel 0
## 29196 Resort Hotel 386
## 29197 Resort Hotel 39
## 29198 Resort Hotel 390
## 29199 Resort Hotel 9
## 29200 Resort Hotel 2
## 29201 Resort Hotel 3
## 29202 Resort Hotel 0
## 29203 Resort Hotel 255
## 29204 Resort Hotel 386
## 29205 Resort Hotel 13
## 29206 Resort Hotel 15
## 29207 Resort Hotel 53
## 29208 Resort Hotel 11
## 29209 Resort Hotel 41
## 29210 Resort Hotel 15
## 29211 Resort Hotel 5
## 29212 Resort Hotel 0
## 29213 Resort Hotel 386
## 29214 Resort Hotel 36
## 29215 Resort Hotel 39
## 29216 Resort Hotel 36
## 29217 Resort Hotel 39
## 29218 Resort Hotel 36
## 29219 Resort Hotel 39
## 29220 Resort Hotel 9
## 29221 Resort Hotel 389
## 29222 Resort Hotel 389
## 29223 Resort Hotel 77
## 29224 Resort Hotel 386
## 29225 Resort Hotel 386
## 29226 Resort Hotel 386
## 29227 Resort Hotel 386
## 29228 Resort Hotel 386
## 29229 Resort Hotel 386
## 29230 Resort Hotel 386
## 29231 Resort Hotel 386
## 29232 Resort Hotel 386
## 29233 Resort Hotel 386
## 29234 Resort Hotel 386
## 29235 Resort Hotel 386
## 29236 Resort Hotel 386
## 29237 Resort Hotel 386
## 29238 Resort Hotel 386
## 29239 Resort Hotel 386
## 29240 Resort Hotel 386
## 29241 Resort Hotel 386
## 29242 Resort Hotel 386
## 29243 Resort Hotel 386
## 29244 Resort Hotel 386
## 29245 Resort Hotel 61
## 29246 Resort Hotel 386
## 29247 Resort Hotel 62
## 29248 Resort Hotel 36
## 29249 Resort Hotel 36
## 29250 Resort Hotel 1
## 29251 Resort Hotel 386
## 29252 Resort Hotel 10
## 29253 Resort Hotel 173
## 29254 Resort Hotel 173
## 29255 Resort Hotel 385
## 29256 Resort Hotel 107
## 29257 Resort Hotel 105
## 29258 Resort Hotel 386
## 29259 Resort Hotel 36
## 29260 Resort Hotel 386
## 29261 Resort Hotel 77
## 29262 Resort Hotel 134
## 29263 Resort Hotel 220
## 29264 Resort Hotel 189
## 29265 Resort Hotel 111
## 29266 Resort Hotel 189
## 29267 Resort Hotel 386
## 29268 Resort Hotel 386
## 29269 Resort Hotel 1
## 29270 Resort Hotel 386
## 29271 Resort Hotel 386
## 29272 Resort Hotel 222
## 29273 Resort Hotel 221
## 29274 Resort Hotel 101
## 29275 Resort Hotel 95
## 29276 Resort Hotel 5
## 29277 Resort Hotel 180
## 29278 Resort Hotel 386
## 29279 Resort Hotel 386
## 29280 Resort Hotel 386
## 29281 Resort Hotel 66
## 29282 Resort Hotel 125
## 29283 Resort Hotel 386
## 29284 Resort Hotel 4
## 29285 Resort Hotel 3
## 29286 Resort Hotel 6
## 29287 Resort Hotel 4
## 29288 Resort Hotel 4
## 29289 Resort Hotel 92
## 29290 Resort Hotel 0
## 29291 Resort Hotel 3
## 29292 Resort Hotel 169
## 29293 Resort Hotel 7
## 29294 Resort Hotel 386
## 29295 Resort Hotel 0
## 29296 Resort Hotel 0
## 29297 Resort Hotel 0
## 29298 Resort Hotel 161
## 29299 Resort Hotel 161
## 29300 Resort Hotel 3
## 29301 Resort Hotel 0
## 29302 Resort Hotel 0
## 29303 Resort Hotel 124
## 29304 Resort Hotel 124
## 29305 Resort Hotel 80
## 29306 Resort Hotel 123
## 29307 Resort Hotel 123
## 29308 Resort Hotel 123
## 29309 Resort Hotel 123
## 29310 Resort Hotel 122
## 29311 Resort Hotel 1
## 29312 Resort Hotel 0
## 29313 Resort Hotel 13
## 29314 Resort Hotel 37
## 29315 Resort Hotel 23
## 29316 Resort Hotel 124
## 29317 Resort Hotel 12
## 29318 Resort Hotel 124
## 29319 Resort Hotel 124
## 29320 Resort Hotel 124
## 29321 Resort Hotel 124
## 29322 Resort Hotel 123
## 29323 Resort Hotel 124
## 29324 Resort Hotel 11
## 29325 Resort Hotel 11
## 29326 Resort Hotel 1
## 29327 Resort Hotel 0
## 29328 Resort Hotel 166
## 29329 Resort Hotel 163
## 29330 Resort Hotel 24
## 29331 Resort Hotel 32
## 29332 Resort Hotel 131
## 29333 Resort Hotel 23
## 29334 Resort Hotel 123
## 29335 Resort Hotel 37
## 29336 Resort Hotel 2
## 29337 Resort Hotel 123
## 29338 Resort Hotel 66
## 29339 Resort Hotel 66
## 29340 Resort Hotel 156
## 29341 Resort Hotel 156
## 29342 Resort Hotel 176
## 29343 Resort Hotel 103
## 29344 Resort Hotel 185
## 29345 Resort Hotel 65
## 29346 Resort Hotel 2
## 29347 Resort Hotel 216
## 29348 Resort Hotel 63
## 29349 Resort Hotel 386
## 29350 Resort Hotel 216
## 29351 Resort Hotel 386
## 29352 Resort Hotel 22
## 29353 Resort Hotel 14
## 29354 Resort Hotel 29
## 29355 Resort Hotel 7
## 29356 Resort Hotel 7
## 29357 Resort Hotel 7
## 29358 Resort Hotel 7
## 29359 Resort Hotel 0
## 29360 Resort Hotel 8
## 29361 Resort Hotel 8
## 29362 Resort Hotel 42
## 29363 Resort Hotel 6
## 29364 Resort Hotel 6
## 29365 Resort Hotel 5
## 29366 Resort Hotel 11
## 29367 Resort Hotel 85
## 29368 Resort Hotel 85
## 29369 Resort Hotel 19
## 29370 Resort Hotel 129
## 29371 Resort Hotel 18
## 29372 Resort Hotel 72
## 29373 Resort Hotel 190
## 29374 Resort Hotel 190
## 29375 Resort Hotel 18
## 29376 Resort Hotel 49
## 29377 Resort Hotel 4
## 29378 Resort Hotel 38
## 29379 Resort Hotel 58
## 29380 Resort Hotel 0
## 29381 Resort Hotel 34
## 29382 Resort Hotel 386
## 29383 Resort Hotel 98
## 29384 Resort Hotel 166
## 29385 Resort Hotel 166
## 29386 Resort Hotel 0
## 29387 Resort Hotel 281
## 29388 Resort Hotel 34
## 29389 Resort Hotel 39
## 29390 Resort Hotel 31
## 29391 Resort Hotel 0
## 29392 Resort Hotel 1
## 29393 Resort Hotel 38
## 29394 Resort Hotel 4
## 29395 Resort Hotel 4
## 29396 Resort Hotel 116
## 29397 Resort Hotel 116
## 29398 Resort Hotel 323
## 29399 Resort Hotel 323
## 29400 Resort Hotel 8
## 29401 Resort Hotel 8
## 29402 Resort Hotel 8
## 29403 Resort Hotel 29
## 29404 Resort Hotel 28
## 29405 Resort Hotel 20
## 29406 Resort Hotel 5
## 29407 Resort Hotel 3
## 29408 Resort Hotel 121
## 29409 Resort Hotel 2
## 29410 Resort Hotel 362
## 29411 Resort Hotel 60
## 29412 Resort Hotel 151
## 29413 Resort Hotel 2
## 29414 Resort Hotel 240
## 29415 Resort Hotel 32
## 29416 Resort Hotel 52
## 29417 Resort Hotel 17
## 29418 Resort Hotel 0
## 29419 Resort Hotel 0
## 29420 Resort Hotel 0
## 29421 Resort Hotel 2
## 29422 Resort Hotel 76
## 29423 Resort Hotel 240
## 29424 Resort Hotel 0
## 29425 Resort Hotel 66
## 29426 Resort Hotel 39
## 29427 Resort Hotel 139
## 29428 Resort Hotel 223
## 29429 Resort Hotel 240
## 29430 Resort Hotel 19
## 29431 Resort Hotel 21
## 29432 Resort Hotel 5
## 29433 Resort Hotel 1
## 29434 Resort Hotel 11
## 29435 Resort Hotel 156
## 29436 Resort Hotel 0
## 29437 Resort Hotel 0
## 29438 Resort Hotel 0
## 29439 Resort Hotel 10
## 29440 Resort Hotel 91
## 29441 Resort Hotel 64
## 29442 Resort Hotel 208
## 29443 Resort Hotel 3
## 29444 Resort Hotel 194
## 29445 Resort Hotel 0
## 29446 Resort Hotel 8
## 29447 Resort Hotel 1
## 29448 Resort Hotel 0
## 29449 Resort Hotel 93
## 29450 Resort Hotel 81
## 29451 Resort Hotel 115
## 29452 Resort Hotel 18
## 29453 Resort Hotel 22
## 29454 Resort Hotel 115
## 29455 Resort Hotel 28
## 29456 Resort Hotel 129
## 29457 Resort Hotel 52
## 29458 Resort Hotel 37
## 29459 Resort Hotel 7
## 29460 Resort Hotel 1
## 29461 Resort Hotel 63
## 29462 Resort Hotel 255
## 29463 Resort Hotel 29
## 29464 Resort Hotel 27
## 29465 Resort Hotel 255
## 29466 Resort Hotel 0
## 29467 Resort Hotel 290
## 29468 Resort Hotel 216
## 29469 Resort Hotel 10
## 29470 Resort Hotel 10
## 29471 Resort Hotel 255
## 29472 Resort Hotel 37
## 29473 Resort Hotel 47
## 29474 Resort Hotel 56
## 29475 Resort Hotel 115
## 29476 Resort Hotel 1
## 29477 Resort Hotel 218
## 29478 Resort Hotel 0
## 29479 Resort Hotel 0
## 29480 Resort Hotel 0
## 29481 Resort Hotel 8
## 29482 Resort Hotel 2
## 29483 Resort Hotel 12
## 29484 Resort Hotel 82
## 29485 Resort Hotel 82
## 29486 Resort Hotel 0
## 29487 Resort Hotel 43
## 29488 Resort Hotel 39
## 29489 Resort Hotel 2
## 29490 Resort Hotel 44
## 29491 Resort Hotel 118
## 29492 Resort Hotel 118
## 29493 Resort Hotel 20
## 29494 Resort Hotel 14
## 29495 Resort Hotel 38
## 29496 Resort Hotel 0
## 29497 Resort Hotel 234
## 29498 Resort Hotel 16
## 29499 Resort Hotel 87
## 29500 Resort Hotel 17
## 29501 Resort Hotel 226
## 29502 Resort Hotel 17
## 29503 Resort Hotel 47
## 29504 Resort Hotel 37
## 29505 Resort Hotel 131
## 29506 Resort Hotel 234
## 29507 Resort Hotel 17
## 29508 Resort Hotel 35
## 29509 Resort Hotel 145
## 29510 Resort Hotel 39
## 29511 Resort Hotel 21
## 29512 Resort Hotel 92
## 29513 Resort Hotel 146
## 29514 Resort Hotel 55
## 29515 Resort Hotel 20
## 29516 Resort Hotel 4
## 29517 Resort Hotel 10
## 29518 Resort Hotel 20
## 29519 Resort Hotel 18
## 29520 Resort Hotel 17
## 29521 Resort Hotel 0
## 29522 Resort Hotel 11
## 29523 Resort Hotel 10
## 29524 Resort Hotel 0
## 29525 Resort Hotel 136
## 29526 Resort Hotel 0
## 29527 Resort Hotel 0
## 29528 Resort Hotel 2
## 29529 Resort Hotel 8
## 29530 Resort Hotel 28
## 29531 Resort Hotel 138
## 29532 Resort Hotel 138
## 29533 Resort Hotel 19
## 29534 Resort Hotel 138
## 29535 Resort Hotel 0
## 29536 Resort Hotel 20
## 29537 Resort Hotel 16
## 29538 Resort Hotel 1
## 29539 Resort Hotel 178
## 29540 Resort Hotel 13
## 29541 Resort Hotel 10
## 29542 Resort Hotel 7
## 29543 Resort Hotel 10
## 29544 Resort Hotel 115
## 29545 Resort Hotel 92
## 29546 Resort Hotel 133
## 29547 Resort Hotel 92
## 29548 Resort Hotel 45
## 29549 Resort Hotel 17
## 29550 Resort Hotel 61
## 29551 Resort Hotel 23
## 29552 Resort Hotel 17
## 29553 Resort Hotel 17
## 29554 Resort Hotel 129
## 29555 Resort Hotel 62
## 29556 Resort Hotel 33
## 29557 Resort Hotel 11
## 29558 Resort Hotel 0
## 29559 Resort Hotel 35
## 29560 Resort Hotel 33
## 29561 Resort Hotel 1
## 29562 Resort Hotel 17
## 29563 Resort Hotel 36
## 29564 Resort Hotel 9
## 29565 Resort Hotel 170
## 29566 Resort Hotel 154
## 29567 Resort Hotel 5
## 29568 Resort Hotel 22
## 29569 Resort Hotel 5
## 29570 Resort Hotel 5
## 29571 Resort Hotel 30
## 29572 Resort Hotel 69
## 29573 Resort Hotel 69
## 29574 Resort Hotel 1
## 29575 Resort Hotel 33
## 29576 Resort Hotel 33
## 29577 Resort Hotel 17
## 29578 Resort Hotel 159
## 29579 Resort Hotel 2
## 29580 Resort Hotel 6
## 29581 Resort Hotel 47
## 29582 Resort Hotel 34
## 29583 Resort Hotel 187
## 29584 Resort Hotel 187
## 29585 Resort Hotel 187
## 29586 Resort Hotel 48
## 29587 Resort Hotel 123
## 29588 Resort Hotel 32
## 29589 Resort Hotel 1
## 29590 Resort Hotel 0
## 29591 Resort Hotel 38
## 29592 Resort Hotel 2
## 29593 Resort Hotel 46
## 29594 Resort Hotel 160
## 29595 Resort Hotel 0
## 29596 Resort Hotel 14
## 29597 Resort Hotel 14
## 29598 Resort Hotel 51
## 29599 Resort Hotel 21
## 29600 Resort Hotel 6
## 29601 Resort Hotel 6
## 29602 Resort Hotel 0
## 29603 Resort Hotel 1
## 29604 Resort Hotel 160
## 29605 Resort Hotel 236
## 29606 Resort Hotel 10
## 29607 Resort Hotel 0
## 29608 Resort Hotel 42
## 29609 Resort Hotel 1
## 29610 Resort Hotel 1
## 29611 Resort Hotel 42
## 29612 Resort Hotel 0
## 29613 Resort Hotel 2
## 29614 Resort Hotel 50
## 29615 Resort Hotel 50
## 29616 Resort Hotel 10
## 29617 Resort Hotel 83
## 29618 Resort Hotel 141
## 29619 Resort Hotel 93
## 29620 Resort Hotel 38
## 29621 Resort Hotel 13
## 29622 Resort Hotel 89
## 29623 Resort Hotel 89
## 29624 Resort Hotel 0
## 29625 Resort Hotel 2
## 29626 Resort Hotel 137
## 29627 Resort Hotel 149
## 29628 Resort Hotel 121
## 29629 Resort Hotel 121
## 29630 Resort Hotel 21
## 29631 Resort Hotel 77
## 29632 Resort Hotel 77
## 29633 Resort Hotel 6
## 29634 Resort Hotel 43
## 29635 Resort Hotel 43
## 29636 Resort Hotel 195
## 29637 Resort Hotel 81
## 29638 Resort Hotel 141
## 29639 Resort Hotel 160
## 29640 Resort Hotel 193
## 29641 Resort Hotel 0
## 29642 Resort Hotel 39
## 29643 Resort Hotel 90
## 29644 Resort Hotel 0
## 29645 Resort Hotel 18
## 29646 Resort Hotel 46
## 29647 Resort Hotel 18
## 29648 Resort Hotel 72
## 29649 Resort Hotel 94
## 29650 Resort Hotel 2
## 29651 Resort Hotel 43
## 29652 Resort Hotel 7
## 29653 Resort Hotel 46
## 29654 Resort Hotel 3
## 29655 Resort Hotel 33
## 29656 Resort Hotel 43
## 29657 Resort Hotel 40
## 29658 Resort Hotel 84
## 29659 Resort Hotel 6
## 29660 Resort Hotel 6
## 29661 Resort Hotel 3
## 29662 Resort Hotel 0
## 29663 Resort Hotel 32
## 29664 Resort Hotel 90
## 29665 Resort Hotel 4
## 29666 Resort Hotel 39
## 29667 Resort Hotel 39
## 29668 Resort Hotel 141
## 29669 Resort Hotel 66
## 29670 Resort Hotel 43
## 29671 Resort Hotel 43
## 29672 Resort Hotel 162
## 29673 Resort Hotel 3
## 29674 Resort Hotel 1
## 29675 Resort Hotel 54
## 29676 Resort Hotel 54
## 29677 Resort Hotel 54
## 29678 Resort Hotel 35
## 29679 Resort Hotel 0
## 29680 Resort Hotel 30
## 29681 Resort Hotel 85
## 29682 Resort Hotel 110
## 29683 Resort Hotel 34
## 29684 Resort Hotel 61
## 29685 Resort Hotel 1
## 29686 Resort Hotel 28
## 29687 Resort Hotel 36
## 29688 Resort Hotel 39
## 29689 Resort Hotel 39
## 29690 Resort Hotel 46
## 29691 Resort Hotel 46
## 29692 Resort Hotel 38
## 29693 Resort Hotel 10
## 29694 Resort Hotel 8
## 29695 Resort Hotel 3
## 29696 Resort Hotel 8
## 29697 Resort Hotel 7
## 29698 Resort Hotel 7
## 29699 Resort Hotel 40
## 29700 Resort Hotel 40
## 29701 Resort Hotel 292
## 29702 Resort Hotel 69
## 29703 Resort Hotel 7
## 29704 Resort Hotel 13
## 29705 Resort Hotel 7
## 29706 Resort Hotel 7
## 29707 Resort Hotel 45
## 29708 Resort Hotel 13
## 29709 Resort Hotel 292
## 29710 Resort Hotel 292
## 29711 Resort Hotel 292
## 29712 Resort Hotel 292
## 29713 Resort Hotel 292
## 29714 Resort Hotel 13
## 29715 Resort Hotel 13
## 29716 Resort Hotel 292
## 29717 Resort Hotel 47
## 29718 Resort Hotel 32
## 29719 Resort Hotel 31
## 29720 Resort Hotel 0
## 29721 Resort Hotel 0
## 29722 Resort Hotel 3
## 29723 Resort Hotel 292
## 29724 Resort Hotel 31
## 29725 Resort Hotel 89
## 29726 Resort Hotel 28
## 29727 Resort Hotel 89
## 29728 Resort Hotel 89
## 29729 Resort Hotel 18
## 29730 Resort Hotel 228
## 29731 Resort Hotel 48
## 29732 Resort Hotel 31
## 29733 Resort Hotel 3
## 29734 Resort Hotel 31
## 29735 Resort Hotel 69
## 29736 Resort Hotel 69
## 29737 Resort Hotel 43
## 29738 Resort Hotel 33
## 29739 Resort Hotel 43
## 29740 Resort Hotel 75
## 29741 Resort Hotel 78
## 29742 Resort Hotel 146
## 29743 Resort Hotel 226
## 29744 Resort Hotel 89
## 29745 Resort Hotel 190
## 29746 Resort Hotel 200
## 29747 Resort Hotel 190
## 29748 Resort Hotel 147
## 29749 Resort Hotel 9
## 29750 Resort Hotel 99
## 29751 Resort Hotel 30
## 29752 Resort Hotel 0
## 29753 Resort Hotel 39
## 29754 Resort Hotel 88
## 29755 Resort Hotel 6
## 29756 Resort Hotel 6
## 29757 Resort Hotel 1
## 29758 Resort Hotel 181
## 29759 Resort Hotel 17
## 29760 Resort Hotel 181
## 29761 Resort Hotel 50
## 29762 Resort Hotel 28
## 29763 Resort Hotel 36
## 29764 Resort Hotel 0
## 29765 Resort Hotel 43
## 29766 Resort Hotel 62
## 29767 Resort Hotel 7
## 29768 Resort Hotel 8
## 29769 Resort Hotel 96
## 29770 Resort Hotel 158
## 29771 Resort Hotel 142
## 29772 Resort Hotel 19
## 29773 Resort Hotel 26
## 29774 Resort Hotel 69
## 29775 Resort Hotel 142
## 29776 Resort Hotel 34
## 29777 Resort Hotel 35
## 29778 Resort Hotel 35
## 29779 Resort Hotel 196
## 29780 Resort Hotel 226
## 29781 Resort Hotel 111
## 29782 Resort Hotel 111
## 29783 Resort Hotel 8
## 29784 Resort Hotel 54
## 29785 Resort Hotel 6
## 29786 Resort Hotel 53
## 29787 Resort Hotel 3
## 29788 Resort Hotel 37
## 29789 Resort Hotel 1
## 29790 Resort Hotel 1
## 29791 Resort Hotel 157
## 29792 Resort Hotel 108
## 29793 Resort Hotel 1
## 29794 Resort Hotel 36
## 29795 Resort Hotel 36
## 29796 Resort Hotel 1
## 29797 Resort Hotel 42
## 29798 Resort Hotel 2
## 29799 Resort Hotel 40
## 29800 Resort Hotel 201
## 29801 Resort Hotel 0
## 29802 Resort Hotel 0
## 29803 Resort Hotel 3
## 29804 Resort Hotel 142
## 29805 Resort Hotel 17
## 29806 Resort Hotel 17
## 29807 Resort Hotel 2
## 29808 Resort Hotel 17
## 29809 Resort Hotel 6
## 29810 Resort Hotel 36
## 29811 Resort Hotel 8
## 29812 Resort Hotel 82
## 29813 Resort Hotel 1
## 29814 Resort Hotel 86
## 29815 Resort Hotel 22
## 29816 Resort Hotel 7
## 29817 Resort Hotel 7
## 29818 Resort Hotel 11
## 29819 Resort Hotel 55
## 29820 Resort Hotel 29
## 29821 Resort Hotel 29
## 29822 Resort Hotel 29
## 29823 Resort Hotel 29
## 29824 Resort Hotel 29
## 29825 Resort Hotel 9
## 29826 Resort Hotel 21
## 29827 Resort Hotel 3
## 29828 Resort Hotel 70
## 29829 Resort Hotel 70
## 29830 Resort Hotel 35
## 29831 Resort Hotel 48
## 29832 Resort Hotel 45
## 29833 Resort Hotel 34
## 29834 Resort Hotel 8
## 29835 Resort Hotel 80
## 29836 Resort Hotel 30
## 29837 Resort Hotel 80
## 29838 Resort Hotel 35
## 29839 Resort Hotel 54
## 29840 Resort Hotel 33
## 29841 Resort Hotel 28
## 29842 Resort Hotel 41
## 29843 Resort Hotel 2
## 29844 Resort Hotel 32
## 29845 Resort Hotel 84
## 29846 Resort Hotel 2
## 29847 Resort Hotel 40
## 29848 Resort Hotel 49
## 29849 Resort Hotel 84
## 29850 Resort Hotel 84
## 29851 Resort Hotel 10
## 29852 Resort Hotel 31
## 29853 Resort Hotel 10
## 29854 Resort Hotel 28
## 29855 Resort Hotel 43
## 29856 Resort Hotel 26
## 29857 Resort Hotel 2
## 29858 Resort Hotel 35
## 29859 Resort Hotel 95
## 29860 Resort Hotel 40
## 29861 Resort Hotel 13
## 29862 Resort Hotel 21
## 29863 Resort Hotel 4
## 29864 Resort Hotel 43
## 29865 Resort Hotel 43
## 29866 Resort Hotel 0
## 29867 Resort Hotel 36
## 29868 Resort Hotel 7
## 29869 Resort Hotel 7
## 29870 Resort Hotel 27
## 29871 Resort Hotel 11
## 29872 Resort Hotel 5
## 29873 Resort Hotel 5
## 29874 Resort Hotel 45
## 29875 Resort Hotel 1
## 29876 Resort Hotel 46
## 29877 Resort Hotel 57
## 29878 Resort Hotel 37
## 29879 Resort Hotel 17
## 29880 Resort Hotel 79
## 29881 Resort Hotel 3
## 29882 Resort Hotel 5
## 29883 Resort Hotel 32
## 29884 Resort Hotel 69
## 29885 Resort Hotel 0
## 29886 Resort Hotel 0
## 29887 Resort Hotel 40
## 29888 Resort Hotel 105
## 29889 Resort Hotel 96
## 29890 Resort Hotel 91
## 29891 Resort Hotel 43
## 29892 Resort Hotel 0
## 29893 Resort Hotel 74
## 29894 Resort Hotel 57
## 29895 Resort Hotel 57
## 29896 Resort Hotel 46
## 29897 Resort Hotel 164
## 29898 Resort Hotel 26
## 29899 Resort Hotel 6
## 29900 Resort Hotel 89
## 29901 Resort Hotel 26
## 29902 Resort Hotel 45
## 29903 Resort Hotel 49
## 29904 Resort Hotel 1
## 29905 Resort Hotel 28
## 29906 Resort Hotel 48
## 29907 Resort Hotel 47
## 29908 Resort Hotel 6
## 29909 Resort Hotel 51
## 29910 Resort Hotel 7
## 29911 Resort Hotel 3
## 29912 Resort Hotel 3
## 29913 Resort Hotel 1
## 29914 Resort Hotel 5
## 29915 Resort Hotel 41
## 29916 Resort Hotel 0
## 29917 Resort Hotel 0
## 29918 Resort Hotel 0
## 29919 Resort Hotel 0
## 29920 Resort Hotel 42
## 29921 Resort Hotel 0
## 29922 Resort Hotel 45
## 29923 Resort Hotel 22
## 29924 Resort Hotel 22
## 29925 Resort Hotel 49
## 29926 Resort Hotel 70
## 29927 Resort Hotel 56
## 29928 Resort Hotel 6
## 29929 Resort Hotel 73
## 29930 Resort Hotel 55
## 29931 Resort Hotel 12
## 29932 Resort Hotel 48
## 29933 Resort Hotel 93
## 29934 Resort Hotel 66
## 29935 Resort Hotel 253
## 29936 Resort Hotel 59
## 29937 Resort Hotel 74
## 29938 Resort Hotel 10
## 29939 Resort Hotel 22
## 29940 Resort Hotel 74
## 29941 Resort Hotel 85
## 29942 Resort Hotel 41
## 29943 Resort Hotel 78
## 29944 Resort Hotel 7
## 29945 Resort Hotel 6
## 29946 Resort Hotel 4
## 29947 Resort Hotel 2
## 29948 Resort Hotel 6
## 29949 Resort Hotel 9
## 29950 Resort Hotel 24
## 29951 Resort Hotel 14
## 29952 Resort Hotel 1
## 29953 Resort Hotel 47
## 29954 Resort Hotel 9
## 29955 Resort Hotel 30
## 29956 Resort Hotel 4
## 29957 Resort Hotel 6
## 29958 Resort Hotel 18
## 29959 Resort Hotel 4
## 29960 Resort Hotel 11
## 29961 Resort Hotel 150
## 29962 Resort Hotel 26
## 29963 Resort Hotel 50
## 29964 Resort Hotel 28
## 29965 Resort Hotel 0
## 29966 Resort Hotel 21
## 29967 Resort Hotel 36
## 29968 Resort Hotel 20
## 29969 Resort Hotel 21
## 29970 Resort Hotel 0
## 29971 Resort Hotel 42
## 29972 Resort Hotel 117
## 29973 Resort Hotel 2
## 29974 Resort Hotel 2
## 29975 Resort Hotel 53
## 29976 Resort Hotel 53
## 29977 Resort Hotel 65
## 29978 Resort Hotel 53
## 29979 Resort Hotel 198
## 29980 Resort Hotel 36
## 29981 Resort Hotel 39
## 29982 Resort Hotel 0
## 29983 Resort Hotel 9
## 29984 Resort Hotel 29
## 29985 Resort Hotel 60
## 29986 Resort Hotel 43
## 29987 Resort Hotel 3
## 29988 Resort Hotel 263
## 29989 Resort Hotel 49
## 29990 Resort Hotel 70
## 29991 Resort Hotel 12
## 29992 Resort Hotel 17
## 29993 Resort Hotel 104
## 29994 Resort Hotel 29
## 29995 Resort Hotel 41
## 29996 Resort Hotel 104
## 29997 Resort Hotel 51
## 29998 Resort Hotel 104
## 29999 Resort Hotel 46
## 30000 Resort Hotel 65
## 30001 Resort Hotel 92
## 30002 Resort Hotel 92
## 30003 Resort Hotel 31
## 30004 Resort Hotel 95
## 30005 Resort Hotel 92
## 30006 Resort Hotel 25
## 30007 Resort Hotel 31
## 30008 Resort Hotel 2
## 30009 Resort Hotel 48
## 30010 Resort Hotel 99
## 30011 Resort Hotel 47
## 30012 Resort Hotel 44
## 30013 Resort Hotel 60
## 30014 Resort Hotel 43
## 30015 Resort Hotel 191
## 30016 Resort Hotel 0
## 30017 Resort Hotel 40
## 30018 Resort Hotel 44
## 30019 Resort Hotel 26
## 30020 Resort Hotel 67
## 30021 Resort Hotel 42
## 30022 Resort Hotel 34
## 30023 Resort Hotel 43
## 30024 Resort Hotel 20
## 30025 Resort Hotel 12
## 30026 Resort Hotel 12
## 30027 Resort Hotel 13
## 30028 Resort Hotel 50
## 30029 Resort Hotel 95
## 30030 Resort Hotel 40
## 30031 Resort Hotel 40
## 30032 Resort Hotel 110
## 30033 Resort Hotel 110
## 30034 Resort Hotel 27
## 30035 Resort Hotel 27
## 30036 Resort Hotel 29
## 30037 Resort Hotel 27
## 30038 Resort Hotel 67
## 30039 Resort Hotel 62
## 30040 Resort Hotel 28
## 30041 Resort Hotel 121
## 30042 Resort Hotel 48
## 30043 Resort Hotel 43
## 30044 Resort Hotel 24
## 30045 Resort Hotel 0
## 30046 Resort Hotel 148
## 30047 Resort Hotel 230
## 30048 Resort Hotel 22
## 30049 Resort Hotel 35
## 30050 Resort Hotel 73
## 30051 Resort Hotel 35
## 30052 Resort Hotel 39
## 30053 Resort Hotel 36
## 30054 Resort Hotel 36
## 30055 Resort Hotel 35
## 30056 Resort Hotel 0
## 30057 Resort Hotel 5
## 30058 Resort Hotel 17
## 30059 Resort Hotel 73
## 30060 Resort Hotel 4
## 30061 Resort Hotel 28
## 30062 Resort Hotel 51
## 30063 Resort Hotel 5
## 30064 Resort Hotel 52
## 30065 Resort Hotel 12
## 30066 Resort Hotel 73
## 30067 Resort Hotel 73
## 30068 Resort Hotel 73
## 30069 Resort Hotel 69
## 30070 Resort Hotel 27
## 30071 Resort Hotel 47
## 30072 Resort Hotel 37
## 30073 Resort Hotel 52
## 30074 Resort Hotel 15
## 30075 Resort Hotel 19
## 30076 Resort Hotel 65
## 30077 Resort Hotel 35
## 30078 Resort Hotel 0
## 30079 Resort Hotel 0
## 30080 Resort Hotel 26
## 30081 Resort Hotel 69
## 30082 Resort Hotel 16
## 30083 Resort Hotel 34
## 30084 Resort Hotel 14
## 30085 Resort Hotel 0
## 30086 Resort Hotel 20
## 30087 Resort Hotel 25
## 30088 Resort Hotel 92
## 30089 Resort Hotel 49
## 30090 Resort Hotel 152
## 30091 Resort Hotel 36
## 30092 Resort Hotel 19
## 30093 Resort Hotel 32
## 30094 Resort Hotel 11
## 30095 Resort Hotel 1
## 30096 Resort Hotel 50
## 30097 Resort Hotel 50
## 30098 Resort Hotel 123
## 30099 Resort Hotel 41
## 30100 Resort Hotel 57
## 30101 Resort Hotel 57
## 30102 Resort Hotel 167
## 30103 Resort Hotel 30
## 30104 Resort Hotel 19
## 30105 Resort Hotel 2
## 30106 Resort Hotel 9
## 30107 Resort Hotel 4
## 30108 Resort Hotel 19
## 30109 Resort Hotel 34
## 30110 Resort Hotel 50
## 30111 Resort Hotel 101
## 30112 Resort Hotel 104
## 30113 Resort Hotel 45
## 30114 Resort Hotel 26
## 30115 Resort Hotel 4
## 30116 Resort Hotel 6
## 30117 Resort Hotel 4
## 30118 Resort Hotel 6
## 30119 Resort Hotel 3
## 30120 Resort Hotel 3
## 30121 Resort Hotel 210
## 30122 Resort Hotel 29
## 30123 Resort Hotel 19
## 30124 Resort Hotel 39
## 30125 Resort Hotel 68
## 30126 Resort Hotel 158
## 30127 Resort Hotel 39
## 30128 Resort Hotel 0
## 30129 Resort Hotel 0
## 30130 Resort Hotel 0
## 30131 Resort Hotel 0
## 30132 Resort Hotel 53
## 30133 Resort Hotel 0
## 30134 Resort Hotel 10
## 30135 Resort Hotel 1
## 30136 Resort Hotel 14
## 30137 Resort Hotel 0
## 30138 Resort Hotel 20
## 30139 Resort Hotel 1
## 30140 Resort Hotel 44
## 30141 Resort Hotel 50
## 30142 Resort Hotel 50
## 30143 Resort Hotel 50
## 30144 Resort Hotel 39
## 30145 Resort Hotel 52
## 30146 Resort Hotel 50
## 30147 Resort Hotel 103
## 30148 Resort Hotel 25
## 30149 Resort Hotel 69
## 30150 Resort Hotel 224
## 30151 Resort Hotel 97
## 30152 Resort Hotel 1
## 30153 Resort Hotel 0
## 30154 Resort Hotel 52
## 30155 Resort Hotel 52
## 30156 Resort Hotel 53
## 30157 Resort Hotel 29
## 30158 Resort Hotel 0
## 30159 Resort Hotel 5
## 30160 Resort Hotel 4
## 30161 Resort Hotel 3
## 30162 Resort Hotel 0
## 30163 Resort Hotel 35
## 30164 Resort Hotel 8
## 30165 Resort Hotel 21
## 30166 Resort Hotel 0
## 30167 Resort Hotel 11
## 30168 Resort Hotel 21
## 30169 Resort Hotel 29
## 30170 Resort Hotel 29
## 30171 Resort Hotel 202
## 30172 Resort Hotel 202
## 30173 Resort Hotel 0
## 30174 Resort Hotel 29
## 30175 Resort Hotel 29
## 30176 Resort Hotel 1
## 30177 Resort Hotel 3
## 30178 Resort Hotel 164
## 30179 Resort Hotel 0
## 30180 Resort Hotel 0
## 30181 Resort Hotel 45
## 30182 Resort Hotel 1
## 30183 Resort Hotel 85
## 30184 Resort Hotel 1
## 30185 Resort Hotel 0
## 30186 Resort Hotel 1
## 30187 Resort Hotel 29
## 30188 Resort Hotel 2
## 30189 Resort Hotel 160
## 30190 Resort Hotel 55
## 30191 Resort Hotel 4
## 30192 Resort Hotel 0
## 30193 Resort Hotel 1
## 30194 Resort Hotel 33
## 30195 Resort Hotel 0
## 30196 Resort Hotel 1
## 30197 Resort Hotel 1
## 30198 Resort Hotel 1
## 30199 Resort Hotel 97
## 30200 Resort Hotel 0
## 30201 Resort Hotel 0
## 30202 Resort Hotel 52
## 30203 Resort Hotel 54
## 30204 Resort Hotel 98
## 30205 Resort Hotel 3
## 30206 Resort Hotel 80
## 30207 Resort Hotel 11
## 30208 Resort Hotel 3
## 30209 Resort Hotel 3
## 30210 Resort Hotel 0
## 30211 Resort Hotel 52
## 30212 Resort Hotel 85
## 30213 Resort Hotel 51
## 30214 Resort Hotel 15
## 30215 Resort Hotel 44
## 30216 Resort Hotel 13
## 30217 Resort Hotel 7
## 30218 Resort Hotel 15
## 30219 Resort Hotel 50
## 30220 Resort Hotel 44
## 30221 Resort Hotel 1
## 30222 Resort Hotel 34
## 30223 Resort Hotel 34
## 30224 Resort Hotel 36
## 30225 Resort Hotel 80
## 30226 Resort Hotel 19
## 30227 Resort Hotel 1
## 30228 Resort Hotel 0
## 30229 Resort Hotel 19
## 30230 Resort Hotel 39
## 30231 Resort Hotel 19
## 30232 Resort Hotel 19
## 30233 Resort Hotel 115
## 30234 Resort Hotel 19
## 30235 Resort Hotel 63
## 30236 Resort Hotel 19
## 30237 Resort Hotel 0
## 30238 Resort Hotel 34
## 30239 Resort Hotel 3
## 30240 Resort Hotel 0
## 30241 Resort Hotel 21
## 30242 Resort Hotel 28
## 30243 Resort Hotel 8
## 30244 Resort Hotel 4
## 30245 Resort Hotel 12
## 30246 Resort Hotel 35
## 30247 Resort Hotel 0
## 30248 Resort Hotel 14
## 30249 Resort Hotel 14
## 30250 Resort Hotel 11
## 30251 Resort Hotel 0
## 30252 Resort Hotel 18
## 30253 Resort Hotel 6
## 30254 Resort Hotel 52
## 30255 Resort Hotel 0
## 30256 Resort Hotel 2
## 30257 Resort Hotel 119
## 30258 Resort Hotel 182
## 30259 Resort Hotel 6
## 30260 Resort Hotel 32
## 30261 Resort Hotel 8
## 30262 Resort Hotel 0
## 30263 Resort Hotel 37
## 30264 Resort Hotel 2
## 30265 Resort Hotel 109
## 30266 Resort Hotel 132
## 30267 Resort Hotel 47
## 30268 Resort Hotel 53
## 30269 Resort Hotel 44
## 30270 Resort Hotel 37
## 30271 Resort Hotel 19
## 30272 Resort Hotel 19
## 30273 Resort Hotel 32
## 30274 Resort Hotel 40
## 30275 Resort Hotel 97
## 30276 Resort Hotel 23
## 30277 Resort Hotel 41
## 30278 Resort Hotel 113
## 30279 Resort Hotel 0
## 30280 Resort Hotel 0
## 30281 Resort Hotel 41
## 30282 Resort Hotel 153
## 30283 Resort Hotel 0
## 30284 Resort Hotel 37
## 30285 Resort Hotel 37
## 30286 Resort Hotel 1
## 30287 Resort Hotel 5
## 30288 Resort Hotel 12
## 30289 Resort Hotel 47
## 30290 Resort Hotel 11
## 30291 Resort Hotel 56
## 30292 Resort Hotel 56
## 30293 Resort Hotel 19
## 30294 Resort Hotel 0
## 30295 Resort Hotel 0
## 30296 Resort Hotel 1
## 30297 Resort Hotel 49
## 30298 Resort Hotel 40
## 30299 Resort Hotel 131
## 30300 Resort Hotel 133
## 30301 Resort Hotel 27
## 30302 Resort Hotel 55
## 30303 Resort Hotel 55
## 30304 Resort Hotel 83
## 30305 Resort Hotel 83
## 30306 Resort Hotel 57
## 30307 Resort Hotel 47
## 30308 Resort Hotel 46
## 30309 Resort Hotel 33
## 30310 Resort Hotel 33
## 30311 Resort Hotel 33
## 30312 Resort Hotel 9
## 30313 Resort Hotel 17
## 30314 Resort Hotel 1
## 30315 Resort Hotel 95
## 30316 Resort Hotel 52
## 30317 Resort Hotel 40
## 30318 Resort Hotel 15
## 30319 Resort Hotel 38
## 30320 Resort Hotel 46
## 30321 Resort Hotel 27
## 30322 Resort Hotel 52
## 30323 Resort Hotel 3
## 30324 Resort Hotel 33
## 30325 Resort Hotel 17
## 30326 Resort Hotel 17
## 30327 Resort Hotel 82
## 30328 Resort Hotel 34
## 30329 Resort Hotel 34
## 30330 Resort Hotel 6
## 30331 Resort Hotel 23
## 30332 Resort Hotel 18
## 30333 Resort Hotel 26
## 30334 Resort Hotel 12
## 30335 Resort Hotel 7
## 30336 Resort Hotel 14
## 30337 Resort Hotel 14
## 30338 Resort Hotel 8
## 30339 Resort Hotel 40
## 30340 Resort Hotel 12
## 30341 Resort Hotel 4
## 30342 Resort Hotel 10
## 30343 Resort Hotel 43
## 30344 Resort Hotel 3
## 30345 Resort Hotel 0
## 30346 Resort Hotel 1
## 30347 Resort Hotel 1
## 30348 Resort Hotel 2
## 30349 Resort Hotel 15
## 30350 Resort Hotel 7
## 30351 Resort Hotel 38
## 30352 Resort Hotel 73
## 30353 Resort Hotel 94
## 30354 Resort Hotel 4
## 30355 Resort Hotel 5
## 30356 Resort Hotel 116
## 30357 Resort Hotel 10
## 30358 Resort Hotel 7
## 30359 Resort Hotel 1
## 30360 Resort Hotel 26
## 30361 Resort Hotel 123
## 30362 Resort Hotel 3
## 30363 Resort Hotel 11
## 30364 Resort Hotel 61
## 30365 Resort Hotel 4
## 30366 Resort Hotel 71
## 30367 Resort Hotel 35
## 30368 Resort Hotel 11
## 30369 Resort Hotel 3
## 30370 Resort Hotel 1
## 30371 Resort Hotel 3
## 30372 Resort Hotel 1
## 30373 Resort Hotel 2
## 30374 Resort Hotel 72
## 30375 Resort Hotel 65
## 30376 Resort Hotel 15
## 30377 Resort Hotel 23
## 30378 Resort Hotel 14
## 30379 Resort Hotel 14
## 30380 Resort Hotel 14
## 30381 Resort Hotel 2
## 30382 Resort Hotel 67
## 30383 Resort Hotel 79
## 30384 Resort Hotel 29
## 30385 Resort Hotel 67
## 30386 Resort Hotel 67
## 30387 Resort Hotel 67
## 30388 Resort Hotel 67
## 30389 Resort Hotel 15
## 30390 Resort Hotel 67
## 30391 Resort Hotel 67
## 30392 Resort Hotel 67
## 30393 Resort Hotel 115
## 30394 Resort Hotel 49
## 30395 Resort Hotel 67
## 30396 Resort Hotel 67
## 30397 Resort Hotel 67
## 30398 Resort Hotel 23
## 30399 Resort Hotel 0
## 30400 Resort Hotel 37
## 30401 Resort Hotel 0
## 30402 Resort Hotel 0
## 30403 Resort Hotel 115
## 30404 Resort Hotel 115
## 30405 Resort Hotel 97
## 30406 Resort Hotel 10
## 30407 Resort Hotel 40
## 30408 Resort Hotel 115
## 30409 Resort Hotel 115
## 30410 Resort Hotel 115
## 30411 Resort Hotel 47
## 30412 Resort Hotel 116
## 30413 Resort Hotel 183
## 30414 Resort Hotel 80
## 30415 Resort Hotel 115
## 30416 Resort Hotel 115
## 30417 Resort Hotel 0
## 30418 Resort Hotel 10
## 30419 Resort Hotel 115
## 30420 Resort Hotel 104
## 30421 Resort Hotel 10
## 30422 Resort Hotel 4
## 30423 Resort Hotel 20
## 30424 Resort Hotel 59
## 30425 Resort Hotel 80
## 30426 Resort Hotel 90
## 30427 Resort Hotel 116
## 30428 Resort Hotel 34
## 30429 Resort Hotel 36
## 30430 Resort Hotel 9
## 30431 Resort Hotel 48
## 30432 Resort Hotel 38
## 30433 Resort Hotel 22
## 30434 Resort Hotel 53
## 30435 Resort Hotel 4
## 30436 Resort Hotel 49
## 30437 Resort Hotel 49
## 30438 Resort Hotel 0
## 30439 Resort Hotel 0
## 30440 Resort Hotel 7
## 30441 Resort Hotel 95
## 30442 Resort Hotel 56
## 30443 Resort Hotel 1
## 30444 Resort Hotel 0
## 30445 Resort Hotel 64
## 30446 Resort Hotel 315
## 30447 Resort Hotel 64
## 30448 Resort Hotel 50
## 30449 Resort Hotel 24
## 30450 Resort Hotel 36
## 30451 Resort Hotel 4
## 30452 Resort Hotel 1
## 30453 Resort Hotel 0
## 30454 Resort Hotel 34
## 30455 Resort Hotel 115
## 30456 Resort Hotel 3
## 30457 Resort Hotel 3
## 30458 Resort Hotel 9
## 30459 Resort Hotel 33
## 30460 Resort Hotel 6
## 30461 Resort Hotel 14
## 30462 Resort Hotel 18
## 30463 Resort Hotel 2
## 30464 Resort Hotel 45
## 30465 Resort Hotel 28
## 30466 Resort Hotel 2
## 30467 Resort Hotel 58
## 30468 Resort Hotel 58
## 30469 Resort Hotel 13
## 30470 Resort Hotel 58
## 30471 Resort Hotel 0
## 30472 Resort Hotel 0
## 30473 Resort Hotel 0
## 30474 Resort Hotel 15
## 30475 Resort Hotel 0
## 30476 Resort Hotel 2
## 30477 Resort Hotel 0
## 30478 Resort Hotel 6
## 30479 Resort Hotel 9
## 30480 Resort Hotel 2
## 30481 Resort Hotel 54
## 30482 Resort Hotel 47
## 30483 Resort Hotel 33
## 30484 Resort Hotel 33
## 30485 Resort Hotel 18
## 30486 Resort Hotel 116
## 30487 Resort Hotel 25
## 30488 Resort Hotel 7
## 30489 Resort Hotel 25
## 30490 Resort Hotel 93
## 30491 Resort Hotel 0
## 30492 Resort Hotel 2
## 30493 Resort Hotel 13
## 30494 Resort Hotel 15
## 30495 Resort Hotel 6
## 30496 Resort Hotel 2
## 30497 Resort Hotel 2
## 30498 Resort Hotel 5
## 30499 Resort Hotel 5
## 30500 Resort Hotel 5
## 30501 Resort Hotel 34
## 30502 Resort Hotel 50
## 30503 Resort Hotel 1
## 30504 Resort Hotel 61
## 30505 Resort Hotel 60
## 30506 Resort Hotel 0
## 30507 Resort Hotel 0
## 30508 Resort Hotel 0
## 30509 Resort Hotel 43
## 30510 Resort Hotel 0
## 30511 Resort Hotel 1
## 30512 Resort Hotel 51
## 30513 Resort Hotel 9
## 30514 Resort Hotel 3
## 30515 Resort Hotel 10
## 30516 Resort Hotel 87
## 30517 Resort Hotel 58
## 30518 Resort Hotel 1
## 30519 Resort Hotel 1
## 30520 Resort Hotel 1
## 30521 Resort Hotel 24
## 30522 Resort Hotel 30
## 30523 Resort Hotel 16
## 30524 Resort Hotel 32
## 30525 Resort Hotel 47
## 30526 Resort Hotel 1
## 30527 Resort Hotel 0
## 30528 Resort Hotel 84
## 30529 Resort Hotel 55
## 30530 Resort Hotel 30
## 30531 Resort Hotel 31
## 30532 Resort Hotel 4
## 30533 Resort Hotel 4
## 30534 Resort Hotel 29
## 30535 Resort Hotel 0
## 30536 Resort Hotel 18
## 30537 Resort Hotel 47
## 30538 Resort Hotel 0
## 30539 Resort Hotel 0
## 30540 Resort Hotel 67
## 30541 Resort Hotel 11
## 30542 Resort Hotel 0
## 30543 Resort Hotel 31
## 30544 Resort Hotel 67
## 30545 Resort Hotel 151
## 30546 Resort Hotel 45
## 30547 Resort Hotel 0
## 30548 Resort Hotel 6
## 30549 Resort Hotel 52
## 30550 Resort Hotel 35
## 30551 Resort Hotel 133
## 30552 Resort Hotel 133
## 30553 Resort Hotel 133
## 30554 Resort Hotel 25
## 30555 Resort Hotel 47
## 30556 Resort Hotel 47
## 30557 Resort Hotel 47
## 30558 Resort Hotel 11
## 30559 Resort Hotel 9
## 30560 Resort Hotel 15
## 30561 Resort Hotel 15
## 30562 Resort Hotel 1
## 30563 Resort Hotel 57
## 30564 Resort Hotel 17
## 30565 Resort Hotel 17
## 30566 Resort Hotel 8
## 30567 Resort Hotel 8
## 30568 Resort Hotel 17
## 30569 Resort Hotel 17
## 30570 Resort Hotel 5
## 30571 Resort Hotel 9
## 30572 Resort Hotel 45
## 30573 Resort Hotel 45
## 30574 Resort Hotel 45
## 30575 Resort Hotel 4
## 30576 Resort Hotel 20
## 30577 Resort Hotel 3
## 30578 Resort Hotel 34
## 30579 Resort Hotel 2
## 30580 Resort Hotel 0
## 30581 Resort Hotel 16
## 30582 Resort Hotel 0
## 30583 Resort Hotel 0
## 30584 Resort Hotel 31
## 30585 Resort Hotel 1
## 30586 Resort Hotel 23
## 30587 Resort Hotel 33
## 30588 Resort Hotel 0
## 30589 Resort Hotel 81
## 30590 Resort Hotel 1
## 30591 Resort Hotel 1
## 30592 Resort Hotel 13
## 30593 Resort Hotel 5
## 30594 Resort Hotel 17
## 30595 Resort Hotel 12
## 30596 Resort Hotel 47
## 30597 Resort Hotel 26
## 30598 Resort Hotel 58
## 30599 Resort Hotel 69
## 30600 Resort Hotel 2
## 30601 Resort Hotel 2
## 30602 Resort Hotel 2
## 30603 Resort Hotel 66
## 30604 Resort Hotel 0
## 30605 Resort Hotel 0
## 30606 Resort Hotel 11
## 30607 Resort Hotel 146
## 30608 Resort Hotel 115
## 30609 Resort Hotel 4
## 30610 Resort Hotel 53
## 30611 Resort Hotel 19
## 30612 Resort Hotel 3
## 30613 Resort Hotel 41
## 30614 Resort Hotel 28
## 30615 Resort Hotel 1
## 30616 Resort Hotel 4
## 30617 Resort Hotel 11
## 30618 Resort Hotel 11
## 30619 Resort Hotel 7
## 30620 Resort Hotel 2
## 30621 Resort Hotel 0
## 30622 Resort Hotel 66
## 30623 Resort Hotel 5
## 30624 Resort Hotel 3
## 30625 Resort Hotel 3
## 30626 Resort Hotel 0
## 30627 Resort Hotel 4
## 30628 Resort Hotel 73
## 30629 Resort Hotel 1
## 30630 Resort Hotel 1
## 30631 Resort Hotel 4
## 30632 Resort Hotel 0
## 30633 Resort Hotel 0
## 30634 Resort Hotel 0
## 30635 Resort Hotel 45
## 30636 Resort Hotel 0
## 30637 Resort Hotel 16
## 30638 Resort Hotel 0
## 30639 Resort Hotel 76
## 30640 Resort Hotel 1
## 30641 Resort Hotel 64
## 30642 Resort Hotel 25
## 30643 Resort Hotel 68
## 30644 Resort Hotel 7
## 30645 Resort Hotel 0
## 30646 Resort Hotel 0
## 30647 Resort Hotel 21
## 30648 Resort Hotel 21
## 30649 Resort Hotel 21
## 30650 Resort Hotel 21
## 30651 Resort Hotel 0
## 30652 Resort Hotel 21
## 30653 Resort Hotel 21
## 30654 Resort Hotel 21
## 30655 Resort Hotel 21
## 30656 Resort Hotel 21
## 30657 Resort Hotel 21
## 30658 Resort Hotel 1
## 30659 Resort Hotel 64
## 30660 Resort Hotel 0
## 30661 Resort Hotel 30
## 30662 Resort Hotel 0
## 30663 Resort Hotel 0
## 30664 Resort Hotel 1
## 30665 Resort Hotel 58
## 30666 Resort Hotel 0
## 30667 Resort Hotel 23
## 30668 Resort Hotel 8
## 30669 Resort Hotel 14
## 30670 Resort Hotel 22
## 30671 Resort Hotel 1
## 30672 Resort Hotel 12
## 30673 Resort Hotel 22
## 30674 Resort Hotel 76
## 30675 Resort Hotel 76
## 30676 Resort Hotel 117
## 30677 Resort Hotel 0
## 30678 Resort Hotel 76
## 30679 Resort Hotel 76
## 30680 Resort Hotel 76
## 30681 Resort Hotel 27
## 30682 Resort Hotel 0
## 30683 Resort Hotel 76
## 30684 Resort Hotel 0
## 30685 Resort Hotel 0
## 30686 Resort Hotel 10
## 30687 Resort Hotel 12
## 30688 Resort Hotel 0
## 30689 Resort Hotel 19
## 30690 Resort Hotel 31
## 30691 Resort Hotel 0
## 30692 Resort Hotel 33
## 30693 Resort Hotel 120
## 30694 Resort Hotel 59
## 30695 Resort Hotel 1
## 30696 Resort Hotel 28
## 30697 Resort Hotel 29
## 30698 Resort Hotel 19
## 30699 Resort Hotel 54
## 30700 Resort Hotel 0
## 30701 Resort Hotel 8
## 30702 Resort Hotel 54
## 30703 Resort Hotel 0
## 30704 Resort Hotel 0
## 30705 Resort Hotel 0
## 30706 Resort Hotel 0
## 30707 Resort Hotel 6
## 30708 Resort Hotel 7
## 30709 Resort Hotel 0
## 30710 Resort Hotel 0
## 30711 Resort Hotel 0
## 30712 Resort Hotel 23
## 30713 Resort Hotel 51
## 30714 Resort Hotel 51
## 30715 Resort Hotel 33
## 30716 Resort Hotel 15
## 30717 Resort Hotel 20
## 30718 Resort Hotel 20
## 30719 Resort Hotel 8
## 30720 Resort Hotel 70
## 30721 Resort Hotel 68
## 30722 Resort Hotel 2
## 30723 Resort Hotel 2
## 30724 Resort Hotel 5
## 30725 Resort Hotel 0
## 30726 Resort Hotel 29
## 30727 Resort Hotel 38
## 30728 Resort Hotel 4
## 30729 Resort Hotel 4
## 30730 Resort Hotel 4
## 30731 Resort Hotel 0
## 30732 Resort Hotel 13
## 30733 Resort Hotel 23
## 30734 Resort Hotel 0
## 30735 Resort Hotel 1
## 30736 Resort Hotel 1
## 30737 Resort Hotel 7
## 30738 Resort Hotel 10
## 30739 Resort Hotel 3
## 30740 Resort Hotel 1
## 30741 Resort Hotel 62
## 30742 Resort Hotel 5
## 30743 Resort Hotel 38
## 30744 Resort Hotel 40
## 30745 Resort Hotel 86
## 30746 Resort Hotel 140
## 30747 Resort Hotel 0
## 30748 Resort Hotel 3
## 30749 Resort Hotel 69
## 30750 Resort Hotel 117
## 30751 Resort Hotel 1
## 30752 Resort Hotel 0
## 30753 Resort Hotel 128
## 30754 Resort Hotel 128
## 30755 Resort Hotel 5
## 30756 Resort Hotel 128
## 30757 Resort Hotel 0
## 30758 Resort Hotel 10
## 30759 Resort Hotel 10
## 30760 Resort Hotel 128
## 30761 Resort Hotel 128
## 30762 Resort Hotel 10
## 30763 Resort Hotel 10
## 30764 Resort Hotel 128
## 30765 Resort Hotel 4
## 30766 Resort Hotel 128
## 30767 Resort Hotel 10
## 30768 Resort Hotel 128
## 30769 Resort Hotel 10
## 30770 Resort Hotel 10
## 30771 Resort Hotel 128
## 30772 Resort Hotel 128
## 30773 Resort Hotel 37
## 30774 Resort Hotel 128
## 30775 Resort Hotel 128
## 30776 Resort Hotel 10
## 30777 Resort Hotel 37
## 30778 Resort Hotel 10
## 30779 Resort Hotel 128
## 30780 Resort Hotel 128
## 30781 Resort Hotel 128
## 30782 Resort Hotel 10
## 30783 Resort Hotel 141
## 30784 Resort Hotel 128
## 30785 Resort Hotel 0
## 30786 Resort Hotel 11
## 30787 Resort Hotel 22
## 30788 Resort Hotel 40
## 30789 Resort Hotel 84
## 30790 Resort Hotel 29
## 30791 Resort Hotel 29
## 30792 Resort Hotel 0
## 30793 Resort Hotel 19
## 30794 Resort Hotel 80
## 30795 Resort Hotel 80
## 30796 Resort Hotel 2
## 30797 Resort Hotel 1
## 30798 Resort Hotel 80
## 30799 Resort Hotel 0
## 30800 Resort Hotel 80
## 30801 Resort Hotel 80
## 30802 Resort Hotel 22
## 30803 Resort Hotel 1
## 30804 Resort Hotel 80
## 30805 Resort Hotel 66
## 30806 Resort Hotel 80
## 30807 Resort Hotel 1
## 30808 Resort Hotel 80
## 30809 Resort Hotel 3
## 30810 Resort Hotel 1
## 30811 Resort Hotel 8
## 30812 Resort Hotel 25
## 30813 Resort Hotel 60
## 30814 Resort Hotel 1
## 30815 Resort Hotel 25
## 30816 Resort Hotel 80
## 30817 Resort Hotel 80
## 30818 Resort Hotel 80
## 30819 Resort Hotel 80
## 30820 Resort Hotel 80
## 30821 Resort Hotel 80
## 30822 Resort Hotel 80
## 30823 Resort Hotel 18
## 30824 Resort Hotel 1
## 30825 Resort Hotel 4
## 30826 Resort Hotel 11
## 30827 Resort Hotel 26
## 30828 Resort Hotel 0
## 30829 Resort Hotel 37
## 30830 Resort Hotel 0
## 30831 Resort Hotel 21
## 30832 Resort Hotel 7
## 30833 Resort Hotel 21
## 30834 Resort Hotel 20
## 30835 Resort Hotel 31
## 30836 Resort Hotel 0
## 30837 Resort Hotel 1
## 30838 Resort Hotel 294
## 30839 Resort Hotel 13
## 30840 Resort Hotel 24
## 30841 Resort Hotel 56
## 30842 Resort Hotel 40
## 30843 Resort Hotel 22
## 30844 Resort Hotel 168
## 30845 Resort Hotel 67
## 30846 Resort Hotel 72
## 30847 Resort Hotel 6
## 30848 Resort Hotel 3
## 30849 Resort Hotel 74
## 30850 Resort Hotel 63
## 30851 Resort Hotel 2
## 30852 Resort Hotel 50
## 30853 Resort Hotel 0
## 30854 Resort Hotel 6
## 30855 Resort Hotel 11
## 30856 Resort Hotel 0
## 30857 Resort Hotel 28
## 30858 Resort Hotel 1
## 30859 Resort Hotel 1
## 30860 Resort Hotel 17
## 30861 Resort Hotel 4
## 30862 Resort Hotel 9
## 30863 Resort Hotel 32
## 30864 Resort Hotel 92
## 30865 Resort Hotel 11
## 30866 Resort Hotel 0
## 30867 Resort Hotel 0
## 30868 Resort Hotel 14
## 30869 Resort Hotel 14
## 30870 Resort Hotel 14
## 30871 Resort Hotel 14
## 30872 Resort Hotel 3
## 30873 Resort Hotel 6
## 30874 Resort Hotel 5
## 30875 Resort Hotel 3
## 30876 Resort Hotel 14
## 30877 Resort Hotel 14
## 30878 Resort Hotel 14
## 30879 Resort Hotel 14
## 30880 Resort Hotel 14
## 30881 Resort Hotel 14
## 30882 Resort Hotel 14
## 30883 Resort Hotel 14
## 30884 Resort Hotel 14
## 30885 Resort Hotel 14
## 30886 Resort Hotel 14
## 30887 Resort Hotel 14
## 30888 Resort Hotel 14
## 30889 Resort Hotel 14
## 30890 Resort Hotel 14
## 30891 Resort Hotel 14
## 30892 Resort Hotel 14
## 30893 Resort Hotel 14
## 30894 Resort Hotel 14
## 30895 Resort Hotel 14
## 30896 Resort Hotel 14
## 30897 Resort Hotel 14
## 30898 Resort Hotel 14
## 30899 Resort Hotel 80
## 30900 Resort Hotel 40
## 30901 Resort Hotel 40
## 30902 Resort Hotel 40
## 30903 Resort Hotel 40
## 30904 Resort Hotel 1
## 30905 Resort Hotel 0
## 30906 Resort Hotel 0
## 30907 Resort Hotel 40
## 30908 Resort Hotel 33
## 30909 Resort Hotel 3
## 30910 Resort Hotel 40
## 30911 Resort Hotel 17
## 30912 Resort Hotel 7
## 30913 Resort Hotel 9
## 30914 Resort Hotel 3
## 30915 Resort Hotel 27
## 30916 Resort Hotel 26
## 30917 Resort Hotel 40
## 30918 Resort Hotel 21
## 30919 Resort Hotel 21
## 30920 Resort Hotel 40
## 30921 Resort Hotel 49
## 30922 Resort Hotel 0
## 30923 Resort Hotel 174
## 30924 Resort Hotel 73
## 30925 Resort Hotel 33
## 30926 Resort Hotel 26
## 30927 Resort Hotel 28
## 30928 Resort Hotel 17
## 30929 Resort Hotel 3
## 30930 Resort Hotel 10
## 30931 Resort Hotel 50
## 30932 Resort Hotel 0
## 30933 Resort Hotel 0
## 30934 Resort Hotel 17
## 30935 Resort Hotel 16
## 30936 Resort Hotel 14
## 30937 Resort Hotel 48
## 30938 Resort Hotel 1
## 30939 Resort Hotel 5
## 30940 Resort Hotel 154
## 30941 Resort Hotel 32
## 30942 Resort Hotel 1
## 30943 Resort Hotel 1
## 30944 Resort Hotel 16
## 30945 Resort Hotel 16
## 30946 Resort Hotel 16
## 30947 Resort Hotel 203
## 30948 Resort Hotel 102
## 30949 Resort Hotel 24
## 30950 Resort Hotel 130
## 30951 Resort Hotel 232
## 30952 Resort Hotel 72
## 30953 Resort Hotel 62
## 30954 Resort Hotel 34
## 30955 Resort Hotel 34
## 30956 Resort Hotel 1
## 30957 Resort Hotel 1
## 30958 Resort Hotel 34
## 30959 Resort Hotel 9
## 30960 Resort Hotel 67
## 30961 Resort Hotel 62
## 30962 Resort Hotel 33
## 30963 Resort Hotel 168
## 30964 Resort Hotel 87
## 30965 Resort Hotel 87
## 30966 Resort Hotel 87
## 30967 Resort Hotel 35
## 30968 Resort Hotel 14
## 30969 Resort Hotel 234
## 30970 Resort Hotel 22
## 30971 Resort Hotel 82
## 30972 Resort Hotel 1
## 30973 Resort Hotel 5
## 30974 Resort Hotel 22
## 30975 Resort Hotel 1
## 30976 Resort Hotel 22
## 30977 Resort Hotel 22
## 30978 Resort Hotel 35
## 30979 Resort Hotel 66
## 30980 Resort Hotel 22
## 30981 Resort Hotel 22
## 30982 Resort Hotel 22
## 30983 Resort Hotel 22
## 30984 Resort Hotel 22
## 30985 Resort Hotel 22
## 30986 Resort Hotel 22
## 30987 Resort Hotel 22
## 30988 Resort Hotel 22
## 30989 Resort Hotel 22
## 30990 Resort Hotel 22
## 30991 Resort Hotel 22
## 30992 Resort Hotel 5
## 30993 Resort Hotel 1
## 30994 Resort Hotel 82
## 30995 Resort Hotel 82
## 30996 Resort Hotel 82
## 30997 Resort Hotel 22
## 30998 Resort Hotel 22
## 30999 Resort Hotel 82
## 31000 Resort Hotel 82
## 31001 Resort Hotel 0
## 31002 Resort Hotel 20
## 31003 Resort Hotel 3
## 31004 Resort Hotel 17
## 31005 Resort Hotel 1
## 31006 Resort Hotel 1
## 31007 Resort Hotel 72
## 31008 Resort Hotel 35
## 31009 Resort Hotel 35
## 31010 Resort Hotel 4
## 31011 Resort Hotel 72
## 31012 Resort Hotel 0
## 31013 Resort Hotel 49
## 31014 Resort Hotel 3
## 31015 Resort Hotel 35
## 31016 Resort Hotel 3
## 31017 Resort Hotel 44
## 31018 Resort Hotel 1
## 31019 Resort Hotel 2
## 31020 Resort Hotel 0
## 31021 Resort Hotel 115
## 31022 Resort Hotel 2
## 31023 Resort Hotel 57
## 31024 Resort Hotel 61
## 31025 Resort Hotel 57
## 31026 Resort Hotel 128
## 31027 Resort Hotel 128
## 31028 Resort Hotel 4
## 31029 Resort Hotel 5
## 31030 Resort Hotel 9
## 31031 Resort Hotel 6
## 31032 Resort Hotel 6
## 31033 Resort Hotel 25
## 31034 Resort Hotel 25
## 31035 Resort Hotel 25
## 31036 Resort Hotel 17
## 31037 Resort Hotel 25
## 31038 Resort Hotel 52
## 31039 Resort Hotel 82
## 31040 Resort Hotel 82
## 31041 Resort Hotel 2
## 31042 Resort Hotel 0
## 31043 Resort Hotel 80
## 31044 Resort Hotel 34
## 31045 Resort Hotel 1
## 31046 Resort Hotel 1
## 31047 Resort Hotel 5
## 31048 Resort Hotel 34
## 31049 Resort Hotel 8
## 31050 Resort Hotel 4
## 31051 Resort Hotel 51
## 31052 Resort Hotel 155
## 31053 Resort Hotel 37
## 31054 Resort Hotel 34
## 31055 Resort Hotel 60
## 31056 Resort Hotel 4
## 31057 Resort Hotel 22
## 31058 Resort Hotel 0
## 31059 Resort Hotel 2
## 31060 Resort Hotel 0
## 31061 Resort Hotel 0
## 31062 Resort Hotel 12
## 31063 Resort Hotel 1
## 31064 Resort Hotel 0
## 31065 Resort Hotel 0
## 31066 Resort Hotel 0
## 31067 Resort Hotel 0
## 31068 Resort Hotel 3
## 31069 Resort Hotel 82
## 31070 Resort Hotel 43
## 31071 Resort Hotel 53
## 31072 Resort Hotel 1
## 31073 Resort Hotel 0
## 31074 Resort Hotel 0
## 31075 Resort Hotel 7
## 31076 Resort Hotel 64
## 31077 Resort Hotel 9
## 31078 Resort Hotel 9
## 31079 Resort Hotel 14
## 31080 Resort Hotel 14
## 31081 Resort Hotel 14
## 31082 Resort Hotel 7
## 31083 Resort Hotel 0
## 31084 Resort Hotel 0
## 31085 Resort Hotel 1
## 31086 Resort Hotel 0
## 31087 Resort Hotel 33
## 31088 Resort Hotel 36
## 31089 Resort Hotel 11
## 31090 Resort Hotel 36
## 31091 Resort Hotel 5
## 31092 Resort Hotel 5
## 31093 Resort Hotel 0
## 31094 Resort Hotel 15
## 31095 Resort Hotel 0
## 31096 Resort Hotel 0
## 31097 Resort Hotel 20
## 31098 Resort Hotel 0
## 31099 Resort Hotel 6
## 31100 Resort Hotel 1
## 31101 Resort Hotel 1
## 31102 Resort Hotel 83
## 31103 Resort Hotel 8
## 31104 Resort Hotel 0
## 31105 Resort Hotel 1
## 31106 Resort Hotel 0
## 31107 Resort Hotel 2
## 31108 Resort Hotel 12
## 31109 Resort Hotel 5
## 31110 Resort Hotel 5
## 31111 Resort Hotel 0
## 31112 Resort Hotel 79
## 31113 Resort Hotel 7
## 31114 Resort Hotel 7
## 31115 Resort Hotel 5
## 31116 Resort Hotel 0
## 31117 Resort Hotel 0
## 31118 Resort Hotel 1
## 31119 Resort Hotel 7
## 31120 Resort Hotel 2
## 31121 Resort Hotel 12
## 31122 Resort Hotel 13
## 31123 Resort Hotel 2
## 31124 Resort Hotel 56
## 31125 Resort Hotel 10
## 31126 Resort Hotel 186
## 31127 Resort Hotel 1
## 31128 Resort Hotel 47
## 31129 Resort Hotel 6
## 31130 Resort Hotel 0
## 31131 Resort Hotel 47
## 31132 Resort Hotel 6
## 31133 Resort Hotel 47
## 31134 Resort Hotel 40
## 31135 Resort Hotel 6
## 31136 Resort Hotel 1
## 31137 Resort Hotel 0
## 31138 Resort Hotel 2
## 31139 Resort Hotel 2
## 31140 Resort Hotel 1
## 31141 Resort Hotel 0
## 31142 Resort Hotel 1
## 31143 Resort Hotel 54
## 31144 Resort Hotel 50
## 31145 Resort Hotel 1
## 31146 Resort Hotel 21
## 31147 Resort Hotel 7
## 31148 Resort Hotel 67
## 31149 Resort Hotel 8
## 31150 Resort Hotel 0
## 31151 Resort Hotel 18
## 31152 Resort Hotel 8
## 31153 Resort Hotel 9
## 31154 Resort Hotel 10
## 31155 Resort Hotel 71
## 31156 Resort Hotel 254
## 31157 Resort Hotel 16
## 31158 Resort Hotel 16
## 31159 Resort Hotel 41
## 31160 Resort Hotel 2
## 31161 Resort Hotel 32
## 31162 Resort Hotel 2
## 31163 Resort Hotel 81
## 31164 Resort Hotel 16
## 31165 Resort Hotel 0
## 31166 Resort Hotel 5
## 31167 Resort Hotel 59
## 31168 Resort Hotel 0
## 31169 Resort Hotel 27
## 31170 Resort Hotel 101
## 31171 Resort Hotel 101
## 31172 Resort Hotel 65
## 31173 Resort Hotel 26
## 31174 Resort Hotel 77
## 31175 Resort Hotel 1
## 31176 Resort Hotel 87
## 31177 Resort Hotel 29
## 31178 Resort Hotel 86
## 31179 Resort Hotel 1
## 31180 Resort Hotel 1
## 31181 Resort Hotel 1
## 31182 Resort Hotel 1
## 31183 Resort Hotel 1
## 31184 Resort Hotel 50
## 31185 Resort Hotel 0
## 31186 Resort Hotel 162
## 31187 Resort Hotel 3
## 31188 Resort Hotel 9
## 31189 Resort Hotel 30
## 31190 Resort Hotel 1
## 31191 Resort Hotel 1
## 31192 Resort Hotel 3
## 31193 Resort Hotel 1
## 31194 Resort Hotel 3
## 31195 Resort Hotel 3
## 31196 Resort Hotel 98
## 31197 Resort Hotel 4
## 31198 Resort Hotel 19
## 31199 Resort Hotel 19
## 31200 Resort Hotel 19
## 31201 Resort Hotel 30
## 31202 Resort Hotel 28
## 31203 Resort Hotel 25
## 31204 Resort Hotel 31
## 31205 Resort Hotel 6
## 31206 Resort Hotel 4
## 31207 Resort Hotel 8
## 31208 Resort Hotel 4
## 31209 Resort Hotel 1
## 31210 Resort Hotel 46
## 31211 Resort Hotel 11
## 31212 Resort Hotel 52
## 31213 Resort Hotel 46
## 31214 Resort Hotel 18
## 31215 Resort Hotel 10
## 31216 Resort Hotel 5
## 31217 Resort Hotel 5
## 31218 Resort Hotel 22
## 31219 Resort Hotel 2
## 31220 Resort Hotel 24
## 31221 Resort Hotel 1
## 31222 Resort Hotel 0
## 31223 Resort Hotel 28
## 31224 Resort Hotel 68
## 31225 Resort Hotel 68
## 31226 Resort Hotel 8
## 31227 Resort Hotel 9
## 31228 Resort Hotel 42
## 31229 Resort Hotel 3
## 31230 Resort Hotel 29
## 31231 Resort Hotel 0
## 31232 Resort Hotel 9
## 31233 Resort Hotel 13
## 31234 Resort Hotel 52
## 31235 Resort Hotel 5
## 31236 Resort Hotel 0
## 31237 Resort Hotel 9
## 31238 Resort Hotel 3
## 31239 Resort Hotel 2
## 31240 Resort Hotel 0
## 31241 Resort Hotel 0
## 31242 Resort Hotel 0
## 31243 Resort Hotel 1
## 31244 Resort Hotel 2
## 31245 Resort Hotel 1
## 31246 Resort Hotel 65
## 31247 Resort Hotel 8
## 31248 Resort Hotel 1
## 31249 Resort Hotel 103
## 31250 Resort Hotel 0
## 31251 Resort Hotel 0
## 31252 Resort Hotel 60
## 31253 Resort Hotel 1
## 31254 Resort Hotel 77
## 31255 Resort Hotel 79
## 31256 Resort Hotel 7
## 31257 Resort Hotel 7
## 31258 Resort Hotel 0
## 31259 Resort Hotel 35
## 31260 Resort Hotel 1
## 31261 Resort Hotel 1
## 31262 Resort Hotel 99
## 31263 Resort Hotel 7
## 31264 Resort Hotel 0
## 31265 Resort Hotel 0
## 31266 Resort Hotel 8
## 31267 Resort Hotel 0
## 31268 Resort Hotel 15
## 31269 Resort Hotel 1
## 31270 Resort Hotel 0
## 31271 Resort Hotel 0
## 31272 Resort Hotel 109
## 31273 Resort Hotel 5
## 31274 Resort Hotel 2
## 31275 Resort Hotel 49
## 31276 Resort Hotel 117
## 31277 Resort Hotel 6
## 31278 Resort Hotel 0
## 31279 Resort Hotel 0
## 31280 Resort Hotel 35
## 31281 Resort Hotel 0
## 31282 Resort Hotel 9
## 31283 Resort Hotel 2
## 31284 Resort Hotel 16
## 31285 Resort Hotel 17
## 31286 Resort Hotel 66
## 31287 Resort Hotel 15
## 31288 Resort Hotel 5
## 31289 Resort Hotel 13
## 31290 Resort Hotel 60
## 31291 Resort Hotel 58
## 31292 Resort Hotel 150
## 31293 Resort Hotel 154
## 31294 Resort Hotel 2
## 31295 Resort Hotel 1
## 31296 Resort Hotel 15
## 31297 Resort Hotel 20
## 31298 Resort Hotel 23
## 31299 Resort Hotel 2
## 31300 Resort Hotel 3
## 31301 Resort Hotel 0
## 31302 Resort Hotel 17
## 31303 Resort Hotel 24
## 31304 Resort Hotel 7
## 31305 Resort Hotel 5
## 31306 Resort Hotel 3
## 31307 Resort Hotel 4
## 31308 Resort Hotel 2
## 31309 Resort Hotel 90
## 31310 Resort Hotel 55
## 31311 Resort Hotel 3
## 31312 Resort Hotel 103
## 31313 Resort Hotel 71
## 31314 Resort Hotel 8
## 31315 Resort Hotel 88
## 31316 Resort Hotel 0
## 31317 Resort Hotel 26
## 31318 Resort Hotel 94
## 31319 Resort Hotel 1
## 31320 Resort Hotel 71
## 31321 Resort Hotel 1
## 31322 Resort Hotel 5
## 31323 Resort Hotel 3
## 31324 Resort Hotel 54
## 31325 Resort Hotel 54
## 31326 Resort Hotel 3
## 31327 Resort Hotel 3
## 31328 Resort Hotel 83
## 31329 Resort Hotel 83
## 31330 Resort Hotel 83
## 31331 Resort Hotel 83
## 31332 Resort Hotel 83
## 31333 Resort Hotel 83
## 31334 Resort Hotel 77
## 31335 Resort Hotel 118
## 31336 Resort Hotel 118
## 31337 Resort Hotel 7
## 31338 Resort Hotel 0
## 31339 Resort Hotel 1
## 31340 Resort Hotel 223
## 31341 Resort Hotel 5
## 31342 Resort Hotel 19
## 31343 Resort Hotel 2
## 31344 Resort Hotel 69
## 31345 Resort Hotel 73
## 31346 Resort Hotel 1
## 31347 Resort Hotel 89
## 31348 Resort Hotel 37
## 31349 Resort Hotel 0
## 31350 Resort Hotel 64
## 31351 Resort Hotel 9
## 31352 Resort Hotel 38
## 31353 Resort Hotel 95
## 31354 Resort Hotel 54
## 31355 Resort Hotel 54
## 31356 Resort Hotel 18
## 31357 Resort Hotel 54
## 31358 Resort Hotel 109
## 31359 Resort Hotel 109
## 31360 Resort Hotel 80
## 31361 Resort Hotel 152
## 31362 Resort Hotel 10
## 31363 Resort Hotel 102
## 31364 Resort Hotel 102
## 31365 Resort Hotel 124
## 31366 Resort Hotel 71
## 31367 Resort Hotel 49
## 31368 Resort Hotel 25
## 31369 Resort Hotel 36
## 31370 Resort Hotel 3
## 31371 Resort Hotel 199
## 31372 Resort Hotel 199
## 31373 Resort Hotel 1
## 31374 Resort Hotel 124
## 31375 Resort Hotel 6
## 31376 Resort Hotel 0
## 31377 Resort Hotel 128
## 31378 Resort Hotel 128
## 31379 Resort Hotel 99
## 31380 Resort Hotel 105
## 31381 Resort Hotel 105
## 31382 Resort Hotel 102
## 31383 Resort Hotel 7
## 31384 Resort Hotel 16
## 31385 Resort Hotel 0
## 31386 Resort Hotel 156
## 31387 Resort Hotel 156
## 31388 Resort Hotel 156
## 31389 Resort Hotel 61
## 31390 Resort Hotel 61
## 31391 Resort Hotel 2
## 31392 Resort Hotel 44
## 31393 Resort Hotel 44
## 31394 Resort Hotel 73
## 31395 Resort Hotel 47
## 31396 Resort Hotel 32
## 31397 Resort Hotel 73
## 31398 Resort Hotel 2
## 31399 Resort Hotel 59
## 31400 Resort Hotel 33
## 31401 Resort Hotel 223
## 31402 Resort Hotel 223
## 31403 Resort Hotel 215
## 31404 Resort Hotel 98
## 31405 Resort Hotel 148
## 31406 Resort Hotel 57
## 31407 Resort Hotel 156
## 31408 Resort Hotel 90
## 31409 Resort Hotel 36
## 31410 Resort Hotel 123
## 31411 Resort Hotel 78
## 31412 Resort Hotel 0
## 31413 Resort Hotel 155
## 31414 Resort Hotel 29
## 31415 Resort Hotel 117
## 31416 Resort Hotel 2
## 31417 Resort Hotel 2
## 31418 Resort Hotel 35
## 31419 Resort Hotel 35
## 31420 Resort Hotel 35
## 31421 Resort Hotel 41
## 31422 Resort Hotel 36
## 31423 Resort Hotel 60
## 31424 Resort Hotel 1
## 31425 Resort Hotel 0
## 31426 Resort Hotel 29
## 31427 Resort Hotel 10
## 31428 Resort Hotel 18
## 31429 Resort Hotel 163
## 31430 Resort Hotel 185
## 31431 Resort Hotel 191
## 31432 Resort Hotel 164
## 31433 Resort Hotel 94
## 31434 Resort Hotel 89
## 31435 Resort Hotel 120
## 31436 Resort Hotel 76
## 31437 Resort Hotel 239
## 31438 Resort Hotel 254
## 31439 Resort Hotel 131
## 31440 Resort Hotel 15
## 31441 Resort Hotel 18
## 31442 Resort Hotel 0
## 31443 Resort Hotel 16
## 31444 Resort Hotel 0
## 31445 Resort Hotel 208
## 31446 Resort Hotel 103
## 31447 Resort Hotel 51
## 31448 Resort Hotel 39
## 31449 Resort Hotel 47
## 31450 Resort Hotel 47
## 31451 Resort Hotel 29
## 31452 Resort Hotel 29
## 31453 Resort Hotel 67
## 31454 Resort Hotel 67
## 31455 Resort Hotel 191
## 31456 Resort Hotel 62
## 31457 Resort Hotel 61
## 31458 Resort Hotel 61
## 31459 Resort Hotel 61
## 31460 Resort Hotel 61
## 31461 Resort Hotel 61
## 31462 Resort Hotel 254
## 31463 Resort Hotel 3
## 31464 Resort Hotel 31
## 31465 Resort Hotel 61
## 31466 Resort Hotel 61
## 31467 Resort Hotel 12
## 31468 Resort Hotel 12
## 31469 Resort Hotel 79
## 31470 Resort Hotel 120
## 31471 Resort Hotel 10
## 31472 Resort Hotel 79
## 31473 Resort Hotel 0
## 31474 Resort Hotel 66
## 31475 Resort Hotel 151
## 31476 Resort Hotel 128
## 31477 Resort Hotel 128
## 31478 Resort Hotel 42
## 31479 Resort Hotel 87
## 31480 Resort Hotel 39
## 31481 Resort Hotel 69
## 31482 Resort Hotel 69
## 31483 Resort Hotel 7
## 31484 Resort Hotel 96
## 31485 Resort Hotel 101
## 31486 Resort Hotel 191
## 31487 Resort Hotel 87
## 31488 Resort Hotel 17
## 31489 Resort Hotel 120
## 31490 Resort Hotel 120
## 31491 Resort Hotel 120
## 31492 Resort Hotel 30
## 31493 Resort Hotel 16
## 31494 Resort Hotel 120
## 31495 Resort Hotel 31
## 31496 Resort Hotel 1
## 31497 Resort Hotel 120
## 31498 Resort Hotel 80
## 31499 Resort Hotel 80
## 31500 Resort Hotel 79
## 31501 Resort Hotel 31
## 31502 Resort Hotel 94
## 31503 Resort Hotel 81
## 31504 Resort Hotel 63
## 31505 Resort Hotel 67
## 31506 Resort Hotel 32
## 31507 Resort Hotel 1
## 31508 Resort Hotel 0
## 31509 Resort Hotel 28
## 31510 Resort Hotel 23
## 31511 Resort Hotel 1
## 31512 Resort Hotel 2
## 31513 Resort Hotel 1
## 31514 Resort Hotel 3
## 31515 Resort Hotel 0
## 31516 Resort Hotel 85
## 31517 Resort Hotel 85
## 31518 Resort Hotel 78
## 31519 Resort Hotel 79
## 31520 Resort Hotel 160
## 31521 Resort Hotel 131
## 31522 Resort Hotel 68
## 31523 Resort Hotel 96
## 31524 Resort Hotel 336
## 31525 Resort Hotel 63
## 31526 Resort Hotel 92
## 31527 Resort Hotel 92
## 31528 Resort Hotel 2
## 31529 Resort Hotel 187
## 31530 Resort Hotel 67
## 31531 Resort Hotel 11
## 31532 Resort Hotel 13
## 31533 Resort Hotel 18
## 31534 Resort Hotel 142
## 31535 Resort Hotel 142
## 31536 Resort Hotel 98
## 31537 Resort Hotel 6
## 31538 Resort Hotel 62
## 31539 Resort Hotel 63
## 31540 Resort Hotel 41
## 31541 Resort Hotel 12
## 31542 Resort Hotel 136
## 31543 Resort Hotel 126
## 31544 Resort Hotel 66
## 31545 Resort Hotel 71
## 31546 Resort Hotel 66
## 31547 Resort Hotel 71
## 31548 Resort Hotel 66
## 31549 Resort Hotel 69
## 31550 Resort Hotel 52
## 31551 Resort Hotel 52
## 31552 Resort Hotel 236
## 31553 Resort Hotel 225
## 31554 Resort Hotel 0
## 31555 Resort Hotel 61
## 31556 Resort Hotel 14
## 31557 Resort Hotel 31
## 31558 Resort Hotel 31
## 31559 Resort Hotel 0
## 31560 Resort Hotel 31
## 31561 Resort Hotel 31
## 31562 Resort Hotel 128
## 31563 Resort Hotel 31
## 31564 Resort Hotel 31
## 31565 Resort Hotel 45
## 31566 Resort Hotel 31
## 31567 Resort Hotel 31
## 31568 Resort Hotel 62
## 31569 Resort Hotel 128
## 31570 Resort Hotel 10
## 31571 Resort Hotel 31
## 31572 Resort Hotel 45
## 31573 Resort Hotel 31
## 31574 Resort Hotel 157
## 31575 Resort Hotel 157
## 31576 Resort Hotel 140
## 31577 Resort Hotel 4
## 31578 Resort Hotel 128
## 31579 Resort Hotel 31
## 31580 Resort Hotel 31
## 31581 Resort Hotel 31
## 31582 Resort Hotel 31
## 31583 Resort Hotel 59
## 31584 Resort Hotel 59
## 31585 Resort Hotel 1
## 31586 Resort Hotel 45
## 31587 Resort Hotel 45
## 31588 Resort Hotel 46
## 31589 Resort Hotel 171
## 31590 Resort Hotel 73
## 31591 Resort Hotel 55
## 31592 Resort Hotel 31
## 31593 Resort Hotel 31
## 31594 Resort Hotel 31
## 31595 Resort Hotel 31
## 31596 Resort Hotel 1
## 31597 Resort Hotel 99
## 31598 Resort Hotel 196
## 31599 Resort Hotel 350
## 31600 Resort Hotel 196
## 31601 Resort Hotel 196
## 31602 Resort Hotel 196
## 31603 Resort Hotel 196
## 31604 Resort Hotel 196
## 31605 Resort Hotel 196
## 31606 Resort Hotel 196
## 31607 Resort Hotel 196
## 31608 Resort Hotel 196
## 31609 Resort Hotel 196
## 31610 Resort Hotel 198
## 31611 Resort Hotel 196
## 31612 Resort Hotel 196
## 31613 Resort Hotel 196
## 31614 Resort Hotel 196
## 31615 Resort Hotel 10
## 31616 Resort Hotel 10
## 31617 Resort Hotel 196
## 31618 Resort Hotel 196
## 31619 Resort Hotel 105
## 31620 Resort Hotel 71
## 31621 Resort Hotel 110
## 31622 Resort Hotel 105
## 31623 Resort Hotel 66
## 31624 Resort Hotel 66
## 31625 Resort Hotel 165
## 31626 Resort Hotel 129
## 31627 Resort Hotel 58
## 31628 Resort Hotel 116
## 31629 Resort Hotel 54
## 31630 Resort Hotel 116
## 31631 Resort Hotel 178
## 31632 Resort Hotel 22
## 31633 Resort Hotel 100
## 31634 Resort Hotel 0
## 31635 Resort Hotel 53
## 31636 Resort Hotel 73
## 31637 Resort Hotel 157
## 31638 Resort Hotel 102
## 31639 Resort Hotel 62
## 31640 Resort Hotel 62
## 31641 Resort Hotel 78
## 31642 Resort Hotel 78
## 31643 Resort Hotel 95
## 31644 Resort Hotel 98
## 31645 Resort Hotel 1
## 31646 Resort Hotel 123
## 31647 Resort Hotel 72
## 31648 Resort Hotel 71
## 31649 Resort Hotel 62
## 31650 Resort Hotel 2
## 31651 Resort Hotel 5
## 31652 Resort Hotel 0
## 31653 Resort Hotel 1
## 31654 Resort Hotel 136
## 31655 Resort Hotel 9
## 31656 Resort Hotel 56
## 31657 Resort Hotel 251
## 31658 Resort Hotel 294
## 31659 Resort Hotel 78
## 31660 Resort Hotel 269
## 31661 Resort Hotel 0
## 31662 Resort Hotel 78
## 31663 Resort Hotel 0
## 31664 Resort Hotel 1
## 31665 Resort Hotel 98
## 31666 Resort Hotel 98
## 31667 Resort Hotel 103
## 31668 Resort Hotel 0
## 31669 Resort Hotel 15
## 31670 Resort Hotel 214
## 31671 Resort Hotel 97
## 31672 Resort Hotel 97
## 31673 Resort Hotel 231
## 31674 Resort Hotel 127
## 31675 Resort Hotel 4
## 31676 Resort Hotel 1
## 31677 Resort Hotel 170
## 31678 Resort Hotel 170
## 31679 Resort Hotel 0
## 31680 Resort Hotel 0
## 31681 Resort Hotel 8
## 31682 Resort Hotel 60
## 31683 Resort Hotel 0
## 31684 Resort Hotel 0
## 31685 Resort Hotel 0
## 31686 Resort Hotel 0
## 31687 Resort Hotel 0
## 31688 Resort Hotel 0
## 31689 Resort Hotel 0
## 31690 Resort Hotel 12
## 31691 Resort Hotel 6
## 31692 Resort Hotel 219
## 31693 Resort Hotel 77
## 31694 Resort Hotel 77
## 31695 Resort Hotel 29
## 31696 Resort Hotel 31
## 31697 Resort Hotel 91
## 31698 Resort Hotel 91
## 31699 Resort Hotel 186
## 31700 Resort Hotel 55
## 31701 Resort Hotel 97
## 31702 Resort Hotel 68
## 31703 Resort Hotel 61
## 31704 Resort Hotel 97
## 31705 Resort Hotel 97
## 31706 Resort Hotel 61
## 31707 Resort Hotel 68
## 31708 Resort Hotel 23
## 31709 Resort Hotel 101
## 31710 Resort Hotel 33
## 31711 Resort Hotel 0
## 31712 Resort Hotel 0
## 31713 Resort Hotel 2
## 31714 Resort Hotel 1
## 31715 Resort Hotel 14
## 31716 Resort Hotel 10
## 31717 Resort Hotel 1
## 31718 Resort Hotel 0
## 31719 Resort Hotel 45
## 31720 Resort Hotel 9
## 31721 Resort Hotel 224
## 31722 Resort Hotel 224
## 31723 Resort Hotel 0
## 31724 Resort Hotel 12
## 31725 Resort Hotel 145
## 31726 Resort Hotel 77
## 31727 Resort Hotel 77
## 31728 Resort Hotel 77
## 31729 Resort Hotel 0
## 31730 Resort Hotel 0
## 31731 Resort Hotel 105
## 31732 Resort Hotel 105
## 31733 Resort Hotel 0
## 31734 Resort Hotel 68
## 31735 Resort Hotel 1
## 31736 Resort Hotel 93
## 31737 Resort Hotel 4
## 31738 Resort Hotel 1
## 31739 Resort Hotel 0
## 31740 Resort Hotel 42
## 31741 Resort Hotel 45
## 31742 Resort Hotel 0
## 31743 Resort Hotel 1
## 31744 Resort Hotel 1
## 31745 Resort Hotel 1
## 31746 Resort Hotel 2
## 31747 Resort Hotel 1
## 31748 Resort Hotel 1
## 31749 Resort Hotel 1
## 31750 Resort Hotel 1
## 31751 Resort Hotel 4
## 31752 Resort Hotel 1
## 31753 Resort Hotel 0
## 31754 Resort Hotel 0
## 31755 Resort Hotel 0
## 31756 Resort Hotel 153
## 31757 Resort Hotel 1
## 31758 Resort Hotel 76
## 31759 Resort Hotel 5
## 31760 Resort Hotel 5
## 31761 Resort Hotel 141
## 31762 Resort Hotel 0
## 31763 Resort Hotel 154
## 31764 Resort Hotel 237
## 31765 Resort Hotel 237
## 31766 Resort Hotel 31
## 31767 Resort Hotel 0
## 31768 Resort Hotel 0
## 31769 Resort Hotel 0
## 31770 Resort Hotel 0
## 31771 Resort Hotel 0
## 31772 Resort Hotel 0
## 31773 Resort Hotel 1
## 31774 Resort Hotel 0
## 31775 Resort Hotel 78
## 31776 Resort Hotel 43
## 31777 Resort Hotel 2
## 31778 Resort Hotel 1
## 31779 Resort Hotel 8
## 31780 Resort Hotel 43
## 31781 Resort Hotel 205
## 31782 Resort Hotel 1
## 31783 Resort Hotel 1
## 31784 Resort Hotel 1
## 31785 Resort Hotel 2
## 31786 Resort Hotel 5
## 31787 Resort Hotel 0
## 31788 Resort Hotel 0
## 31789 Resort Hotel 4
## 31790 Resort Hotel 7
## 31791 Resort Hotel 6
## 31792 Resort Hotel 1
## 31793 Resort Hotel 0
## 31794 Resort Hotel 101
## 31795 Resort Hotel 21
## 31796 Resort Hotel 0
## 31797 Resort Hotel 54
## 31798 Resort Hotel 34
## 31799 Resort Hotel 26
## 31800 Resort Hotel 26
## 31801 Resort Hotel 5
## 31802 Resort Hotel 0
## 31803 Resort Hotel 0
## 31804 Resort Hotel 0
## 31805 Resort Hotel 244
## 31806 Resort Hotel 325
## 31807 Resort Hotel 5
## 31808 Resort Hotel 73
## 31809 Resort Hotel 0
## 31810 Resort Hotel 124
## 31811 Resort Hotel 1
## 31812 Resort Hotel 20
## 31813 Resort Hotel 123
## 31814 Resort Hotel 105
## 31815 Resort Hotel 42
## 31816 Resort Hotel 3
## 31817 Resort Hotel 3
## 31818 Resort Hotel 45
## 31819 Resort Hotel 15
## 31820 Resort Hotel 3
## 31821 Resort Hotel 132
## 31822 Resort Hotel 34
## 31823 Resort Hotel 0
## 31824 Resort Hotel 29
## 31825 Resort Hotel 121
## 31826 Resort Hotel 181
## 31827 Resort Hotel 68
## 31828 Resort Hotel 68
## 31829 Resort Hotel 3
## 31830 Resort Hotel 3
## 31831 Resort Hotel 1
## 31832 Resort Hotel 18
## 31833 Resort Hotel 1
## 31834 Resort Hotel 1
## 31835 Resort Hotel 1
## 31836 Resort Hotel 1
## 31837 Resort Hotel 0
## 31838 Resort Hotel 24
## 31839 Resort Hotel 0
## 31840 Resort Hotel 15
## 31841 Resort Hotel 15
## 31842 Resort Hotel 14
## 31843 Resort Hotel 2
## 31844 Resort Hotel 2
## 31845 Resort Hotel 0
## 31846 Resort Hotel 50
## 31847 Resort Hotel 1
## 31848 Resort Hotel 3
## 31849 Resort Hotel 1
## 31850 Resort Hotel 36
## 31851 Resort Hotel 4
## 31852 Resort Hotel 36
## 31853 Resort Hotel 2
## 31854 Resort Hotel 20
## 31855 Resort Hotel 20
## 31856 Resort Hotel 1
## 31857 Resort Hotel 1
## 31858 Resort Hotel 0
## 31859 Resort Hotel 0
## 31860 Resort Hotel 1
## 31861 Resort Hotel 70
## 31862 Resort Hotel 2
## 31863 Resort Hotel 39
## 31864 Resort Hotel 60
## 31865 Resort Hotel 95
## 31866 Resort Hotel 95
## 31867 Resort Hotel 19
## 31868 Resort Hotel 0
## 31869 Resort Hotel 3
## 31870 Resort Hotel 3
## 31871 Resort Hotel 1
## 31872 Resort Hotel 1
## 31873 Resort Hotel 114
## 31874 Resort Hotel 141
## 31875 Resort Hotel 154
## 31876 Resort Hotel 0
## 31877 Resort Hotel 119
## 31878 Resort Hotel 47
## 31879 Resort Hotel 0
## 31880 Resort Hotel 0
## 31881 Resort Hotel 0
## 31882 Resort Hotel 2
## 31883 Resort Hotel 24
## 31884 Resort Hotel 24
## 31885 Resort Hotel 186
## 31886 Resort Hotel 26
## 31887 Resort Hotel 0
## 31888 Resort Hotel 76
## 31889 Resort Hotel 0
## 31890 Resort Hotel 91
## 31891 Resort Hotel 218
## 31892 Resort Hotel 7
## 31893 Resort Hotel 35
## 31894 Resort Hotel 26
## 31895 Resort Hotel 60
## 31896 Resort Hotel 26
## 31897 Resort Hotel 147
## 31898 Resort Hotel 20
## 31899 Resort Hotel 19
## 31900 Resort Hotel 5
## 31901 Resort Hotel 5
## 31902 Resort Hotel 1
## 31903 Resort Hotel 0
## 31904 Resort Hotel 5
## 31905 Resort Hotel 4
## 31906 Resort Hotel 14
## 31907 Resort Hotel 26
## 31908 Resort Hotel 1
## 31909 Resort Hotel 5
## 31910 Resort Hotel 0
## 31911 Resort Hotel 10
## 31912 Resort Hotel 94
## 31913 Resort Hotel 56
## 31914 Resort Hotel 1
## 31915 Resort Hotel 190
## 31916 Resort Hotel 170
## 31917 Resort Hotel 0
## 31918 Resort Hotel 2
## 31919 Resort Hotel 14
## 31920 Resort Hotel 14
## 31921 Resort Hotel 0
## 31922 Resort Hotel 0
## 31923 Resort Hotel 74
## 31924 Resort Hotel 81
## 31925 Resort Hotel 74
## 31926 Resort Hotel 81
## 31927 Resort Hotel 74
## 31928 Resort Hotel 81
## 31929 Resort Hotel 0
## 31930 Resort Hotel 0
## 31931 Resort Hotel 0
## 31932 Resort Hotel 23
## 31933 Resort Hotel 3
## 31934 Resort Hotel 0
## 31935 Resort Hotel 23
## 31936 Resort Hotel 23
## 31937 Resort Hotel 0
## 31938 Resort Hotel 0
## 31939 Resort Hotel 68
## 31940 Resort Hotel 0
## 31941 Resort Hotel 2
## 31942 Resort Hotel 5
## 31943 Resort Hotel 11
## 31944 Resort Hotel 1
## 31945 Resort Hotel 2
## 31946 Resort Hotel 1
## 31947 Resort Hotel 1
## 31948 Resort Hotel 1
## 31949 Resort Hotel 1
## 31950 Resort Hotel 1
## 31951 Resort Hotel 2
## 31952 Resort Hotel 1
## 31953 Resort Hotel 0
## 31954 Resort Hotel 0
## 31955 Resort Hotel 0
## 31956 Resort Hotel 0
## 31957 Resort Hotel 0
## 31958 Resort Hotel 6
## 31959 Resort Hotel 6
## 31960 Resort Hotel 6
## 31961 Resort Hotel 7
## 31962 Resort Hotel 6
## 31963 Resort Hotel 6
## 31964 Resort Hotel 6
## 31965 Resort Hotel 6
## 31966 Resort Hotel 0
## 31967 Resort Hotel 1
## 31968 Resort Hotel 0
## 31969 Resort Hotel 85
## 31970 Resort Hotel 6
## 31971 Resort Hotel 3
## 31972 Resort Hotel 74
## 31973 Resort Hotel 11
## 31974 Resort Hotel 11
## 31975 Resort Hotel 0
## 31976 Resort Hotel 3
## 31977 Resort Hotel 61
## 31978 Resort Hotel 24
## 31979 Resort Hotel 4
## 31980 Resort Hotel 4
## 31981 Resort Hotel 4
## 31982 Resort Hotel 33
## 31983 Resort Hotel 72
## 31984 Resort Hotel 8
## 31985 Resort Hotel 13
## 31986 Resort Hotel 148
## 31987 Resort Hotel 58
## 31988 Resort Hotel 0
## 31989 Resort Hotel 55
## 31990 Resort Hotel 12
## 31991 Resort Hotel 22
## 31992 Resort Hotel 66
## 31993 Resort Hotel 66
## 31994 Resort Hotel 259
## 31995 Resort Hotel 1
## 31996 Resort Hotel 1
## 31997 Resort Hotel 90
## 31998 Resort Hotel 66
## 31999 Resort Hotel 72
## 32000 Resort Hotel 12
## 32001 Resort Hotel 4
## 32002 Resort Hotel 2
## 32003 Resort Hotel 1
## 32004 Resort Hotel 2
## 32005 Resort Hotel 0
## 32006 Resort Hotel 0
## 32007 Resort Hotel 52
## 32008 Resort Hotel 52
## 32009 Resort Hotel 10
## 32010 Resort Hotel 4
## 32011 Resort Hotel 4
## 32012 Resort Hotel 0
## 32013 Resort Hotel 0
## 32014 Resort Hotel 4
## 32015 Resort Hotel 4
## 32016 Resort Hotel 4
## 32017 Resort Hotel 4
## 32018 Resort Hotel 8
## 32019 Resort Hotel 4
## 32020 Resort Hotel 4
## 32021 Resort Hotel 4
## 32022 Resort Hotel 4
## 32023 Resort Hotel 4
## 32024 Resort Hotel 4
## 32025 Resort Hotel 4
## 32026 Resort Hotel 4
## 32027 Resort Hotel 4
## 32028 Resort Hotel 4
## 32029 Resort Hotel 4
## 32030 Resort Hotel 4
## 32031 Resort Hotel 4
## 32032 Resort Hotel 4
## 32033 Resort Hotel 4
## 32034 Resort Hotel 4
## 32035 Resort Hotel 4
## 32036 Resort Hotel 0
## 32037 Resort Hotel 0
## 32038 Resort Hotel 0
## 32039 Resort Hotel 0
## 32040 Resort Hotel 74
## 32041 Resort Hotel 88
## 32042 Resort Hotel 6
## 32043 Resort Hotel 3
## 32044 Resort Hotel 0
## 32045 Resort Hotel 8
## 32046 Resort Hotel 3
## 32047 Resort Hotel 1
## 32048 Resort Hotel 92
## 32049 Resort Hotel 6
## 32050 Resort Hotel 6
## 32051 Resort Hotel 4
## 32052 Resort Hotel 5
## 32053 Resort Hotel 0
## 32054 Resort Hotel 1
## 32055 Resort Hotel 1
## 32056 Resort Hotel 30
## 32057 Resort Hotel 1
## 32058 Resort Hotel 10
## 32059 Resort Hotel 0
## 32060 Resort Hotel 2
## 32061 Resort Hotel 3
## 32062 Resort Hotel 10
## 32063 Resort Hotel 56
## 32064 Resort Hotel 0
## 32065 Resort Hotel 2
## 32066 Resort Hotel 10
## 32067 Resort Hotel 5
## 32068 Resort Hotel 4
## 32069 Resort Hotel 3
## 32070 Resort Hotel 3
## 32071 Resort Hotel 62
## 32072 Resort Hotel 0
## 32073 Resort Hotel 3
## 32074 Resort Hotel 32
## 32075 Resort Hotel 48
## 32076 Resort Hotel 142
## 32077 Resort Hotel 17
## 32078 Resort Hotel 77
## 32079 Resort Hotel 11
## 32080 Resort Hotel 0
## 32081 Resort Hotel 0
## 32082 Resort Hotel 0
## 32083 Resort Hotel 3
## 32084 Resort Hotel 5
## 32085 Resort Hotel 2
## 32086 Resort Hotel 0
## 32087 Resort Hotel 160
## 32088 Resort Hotel 160
## 32089 Resort Hotel 5
## 32090 Resort Hotel 0
## 32091 Resort Hotel 18
## 32092 Resort Hotel 28
## 32093 Resort Hotel 34
## 32094 Resort Hotel 87
## 32095 Resort Hotel 57
## 32096 Resort Hotel 3
## 32097 Resort Hotel 33
## 32098 Resort Hotel 266
## 32099 Resort Hotel 266
## 32100 Resort Hotel 2
## 32101 Resort Hotel 127
## 32102 Resort Hotel 4
## 32103 Resort Hotel 25
## 32104 Resort Hotel 0
## 32105 Resort Hotel 0
## 32106 Resort Hotel 3
## 32107 Resort Hotel 2
## 32108 Resort Hotel 1
## 32109 Resort Hotel 39
## 32110 Resort Hotel 1
## 32111 Resort Hotel 122
## 32112 Resort Hotel 40
## 32113 Resort Hotel 3
## 32114 Resort Hotel 3
## 32115 Resort Hotel 41
## 32116 Resort Hotel 2
## 32117 Resort Hotel 35
## 32118 Resort Hotel 4
## 32119 Resort Hotel 41
## 32120 Resort Hotel 41
## 32121 Resort Hotel 41
## 32122 Resort Hotel 41
## 32123 Resort Hotel 3
## 32124 Resort Hotel 0
## 32125 Resort Hotel 40
## 32126 Resort Hotel 40
## 32127 Resort Hotel 4
## 32128 Resort Hotel 1
## 32129 Resort Hotel 1
## 32130 Resort Hotel 0
## 32131 Resort Hotel 40
## 32132 Resort Hotel 40
## 32133 Resort Hotel 3
## 32134 Resort Hotel 9
## 32135 Resort Hotel 5
## 32136 Resort Hotel 3
## 32137 Resort Hotel 35
## 32138 Resort Hotel 0
## 32139 Resort Hotel 4
## 32140 Resort Hotel 2
## 32141 Resort Hotel 40
## 32142 Resort Hotel 40
## 32143 Resort Hotel 0
## 32144 Resort Hotel 2
## 32145 Resort Hotel 40
## 32146 Resort Hotel 40
## 32147 Resort Hotel 40
## 32148 Resort Hotel 0
## 32149 Resort Hotel 0
## 32150 Resort Hotel 1
## 32151 Resort Hotel 7
## 32152 Resort Hotel 0
## 32153 Resort Hotel 0
## 32154 Resort Hotel 0
## 32155 Resort Hotel 0
## 32156 Resort Hotel 0
## 32157 Resort Hotel 40
## 32158 Resort Hotel 108
## 32159 Resort Hotel 40
## 32160 Resort Hotel 40
## 32161 Resort Hotel 40
## 32162 Resort Hotel 40
## 32163 Resort Hotel 10
## 32164 Resort Hotel 1
## 32165 Resort Hotel 40
## 32166 Resort Hotel 40
## 32167 Resort Hotel 40
## 32168 Resort Hotel 0
## 32169 Resort Hotel 2
## 32170 Resort Hotel 0
## 32171 Resort Hotel 40
## 32172 Resort Hotel 40
## 32173 Resort Hotel 0
## 32174 Resort Hotel 40
## 32175 Resort Hotel 40
## 32176 Resort Hotel 40
## 32177 Resort Hotel 40
## 32178 Resort Hotel 40
## 32179 Resort Hotel 27
## 32180 Resort Hotel 40
## 32181 Resort Hotel 40
## 32182 Resort Hotel 40
## 32183 Resort Hotel 40
## 32184 Resort Hotel 40
## 32185 Resort Hotel 40
## 32186 Resort Hotel 40
## 32187 Resort Hotel 40
## 32188 Resort Hotel 40
## 32189 Resort Hotel 40
## 32190 Resort Hotel 40
## 32191 Resort Hotel 40
## 32192 Resort Hotel 40
## 32193 Resort Hotel 40
## 32194 Resort Hotel 40
## 32195 Resort Hotel 40
## 32196 Resort Hotel 40
## 32197 Resort Hotel 40
## 32198 Resort Hotel 4
## 32199 Resort Hotel 40
## 32200 Resort Hotel 40
## 32201 Resort Hotel 40
## 32202 Resort Hotel 40
## 32203 Resort Hotel 40
## 32204 Resort Hotel 40
## 32205 Resort Hotel 40
## 32206 Resort Hotel 40
## 32207 Resort Hotel 40
## 32208 Resort Hotel 40
## 32209 Resort Hotel 40
## 32210 Resort Hotel 40
## 32211 Resort Hotel 40
## 32212 Resort Hotel 40
## 32213 Resort Hotel 40
## 32214 Resort Hotel 40
## 32215 Resort Hotel 40
## 32216 Resort Hotel 40
## 32217 Resort Hotel 40
## 32218 Resort Hotel 40
## 32219 Resort Hotel 40
## 32220 Resort Hotel 40
## 32221 Resort Hotel 40
## 32222 Resort Hotel 40
## 32223 Resort Hotel 40
## 32224 Resort Hotel 40
## 32225 Resort Hotel 40
## 32226 Resort Hotel 40
## 32227 Resort Hotel 40
## 32228 Resort Hotel 40
## 32229 Resort Hotel 40
## 32230 Resort Hotel 0
## 32231 Resort Hotel 40
## 32232 Resort Hotel 40
## 32233 Resort Hotel 40
## 32234 Resort Hotel 40
## 32235 Resort Hotel 40
## 32236 Resort Hotel 40
## 32237 Resort Hotel 40
## 32238 Resort Hotel 41
## 32239 Resort Hotel 40
## 32240 Resort Hotel 4
## 32241 Resort Hotel 40
## 32242 Resort Hotel 40
## 32243 Resort Hotel 40
## 32244 Resort Hotel 40
## 32245 Resort Hotel 40
## 32246 Resort Hotel 40
## 32247 Resort Hotel 40
## 32248 Resort Hotel 40
## 32249 Resort Hotel 1
## 32250 Resort Hotel 3
## 32251 Resort Hotel 109
## 32252 Resort Hotel 96
## 32253 Resort Hotel 0
## 32254 Resort Hotel 3
## 32255 Resort Hotel 2
## 32256 Resort Hotel 3
## 32257 Resort Hotel 0
## 32258 Resort Hotel 0
## 32259 Resort Hotel 3
## 32260 Resort Hotel 3
## 32261 Resort Hotel 3
## 32262 Resort Hotel 0
## 32263 Resort Hotel 0
## 32264 Resort Hotel 64
## 32265 Resort Hotel 39
## 32266 Resort Hotel 75
## 32267 Resort Hotel 26
## 32268 Resort Hotel 84
## 32269 Resort Hotel 0
## 32270 Resort Hotel 1
## 32271 Resort Hotel 0
## 32272 Resort Hotel 0
## 32273 Resort Hotel 3
## 32274 Resort Hotel 0
## 32275 Resort Hotel 1
## 32276 Resort Hotel 1
## 32277 Resort Hotel 0
## 32278 Resort Hotel 119
## 32279 Resort Hotel 31
## 32280 Resort Hotel 2
## 32281 Resort Hotel 0
## 32282 Resort Hotel 17
## 32283 Resort Hotel 0
## 32284 Resort Hotel 5
## 32285 Resort Hotel 27
## 32286 Resort Hotel 27
## 32287 Resort Hotel 118
## 32288 Resort Hotel 98
## 32289 Resort Hotel 107
## 32290 Resort Hotel 6
## 32291 Resort Hotel 6
## 32292 Resort Hotel 9
## 32293 Resort Hotel 0
## 32294 Resort Hotel 1
## 32295 Resort Hotel 0
## 32296 Resort Hotel 1
## 32297 Resort Hotel 0
## 32298 Resort Hotel 1
## 32299 Resort Hotel 0
## 32300 Resort Hotel 4
## 32301 Resort Hotel 0
## 32302 Resort Hotel 1
## 32303 Resort Hotel 2
## 32304 Resort Hotel 5
## 32305 Resort Hotel 2
## 32306 Resort Hotel 0
## 32307 Resort Hotel 4
## 32308 Resort Hotel 2
## 32309 Resort Hotel 2
## 32310 Resort Hotel 4
## 32311 Resort Hotel 15
## 32312 Resort Hotel 56
## 32313 Resort Hotel 1
## 32314 Resort Hotel 0
## 32315 Resort Hotel 65
## 32316 Resort Hotel 2
## 32317 Resort Hotel 0
## 32318 Resort Hotel 0
## 32319 Resort Hotel 0
## 32320 Resort Hotel 0
## 32321 Resort Hotel 1
## 32322 Resort Hotel 1
## 32323 Resort Hotel 36
## 32324 Resort Hotel 37
## 32325 Resort Hotel 121
## 32326 Resort Hotel 117
## 32327 Resort Hotel 9
## 32328 Resort Hotel 5
## 32329 Resort Hotel 6
## 32330 Resort Hotel 11
## 32331 Resort Hotel 0
## 32332 Resort Hotel 93
## 32333 Resort Hotel 93
## 32334 Resort Hotel 91
## 32335 Resort Hotel 19
## 32336 Resort Hotel 3
## 32337 Resort Hotel 7
## 32338 Resort Hotel 0
## 32339 Resort Hotel 204
## 32340 Resort Hotel 13
## 32341 Resort Hotel 12
## 32342 Resort Hotel 4
## 32343 Resort Hotel 64
## 32344 Resort Hotel 64
## 32345 Resort Hotel 39
## 32346 Resort Hotel 116
## 32347 Resort Hotel 3
## 32348 Resort Hotel 7
## 32349 Resort Hotel 7
## 32350 Resort Hotel 0
## 32351 Resort Hotel 2
## 32352 Resort Hotel 7
## 32353 Resort Hotel 4
## 32354 Resort Hotel 1
## 32355 Resort Hotel 3
## 32356 Resort Hotel 7
## 32357 Resort Hotel 6
## 32358 Resort Hotel 57
## 32359 Resort Hotel 0
## 32360 Resort Hotel 83
## 32361 Resort Hotel 7
## 32362 Resort Hotel 2
## 32363 Resort Hotel 6
## 32364 Resort Hotel 1
## 32365 Resort Hotel 8
## 32366 Resort Hotel 135
## 32367 Resort Hotel 8
## 32368 Resort Hotel 1
## 32369 Resort Hotel 0
## 32370 Resort Hotel 14
## 32371 Resort Hotel 0
## 32372 Resort Hotel 19
## 32373 Resort Hotel 1
## 32374 Resort Hotel 29
## 32375 Resort Hotel 29
## 32376 Resort Hotel 4
## 32377 Resort Hotel 0
## 32378 Resort Hotel 8
## 32379 Resort Hotel 14
## 32380 Resort Hotel 135
## 32381 Resort Hotel 123
## 32382 Resort Hotel 5
## 32383 Resort Hotel 6
## 32384 Resort Hotel 4
## 32385 Resort Hotel 2
## 32386 Resort Hotel 6
## 32387 Resort Hotel 49
## 32388 Resort Hotel 8
## 32389 Resort Hotel 2
## 32390 Resort Hotel 0
## 32391 Resort Hotel 35
## 32392 Resort Hotel 72
## 32393 Resort Hotel 56
## 32394 Resort Hotel 0
## 32395 Resort Hotel 22
## 32396 Resort Hotel 122
## 32397 Resort Hotel 0
## 32398 Resort Hotel 1
## 32399 Resort Hotel 1
## 32400 Resort Hotel 1
## 32401 Resort Hotel 8
## 32402 Resort Hotel 0
## 32403 Resort Hotel 0
## 32404 Resort Hotel 0
## 32405 Resort Hotel 13
## 32406 Resort Hotel 6
## 32407 Resort Hotel 23
## 32408 Resort Hotel 8
## 32409 Resort Hotel 5
## 32410 Resort Hotel 9
## 32411 Resort Hotel 16
## 32412 Resort Hotel 17
## 32413 Resort Hotel 0
## 32414 Resort Hotel 1
## 32415 Resort Hotel 6
## 32416 Resort Hotel 37
## 32417 Resort Hotel 5
## 32418 Resort Hotel 37
## 32419 Resort Hotel 2
## 32420 Resort Hotel 85
## 32421 Resort Hotel 6
## 32422 Resort Hotel 13
## 32423 Resort Hotel 0
## 32424 Resort Hotel 1
## 32425 Resort Hotel 1
## 32426 Resort Hotel 37
## 32427 Resort Hotel 0
## 32428 Resort Hotel 0
## 32429 Resort Hotel 27
## 32430 Resort Hotel 11
## 32431 Resort Hotel 9
## 32432 Resort Hotel 23
## 32433 Resort Hotel 26
## 32434 Resort Hotel 0
## 32435 Resort Hotel 2
## 32436 Resort Hotel 1
## 32437 Resort Hotel 4
## 32438 Resort Hotel 0
## 32439 Resort Hotel 2
## 32440 Resort Hotel 6
## 32441 Resort Hotel 1
## 32442 Resort Hotel 0
## 32443 Resort Hotel 10
## 32444 Resort Hotel 3
## 32445 Resort Hotel 13
## 32446 Resort Hotel 1
## 32447 Resort Hotel 36
## 32448 Resort Hotel 0
## 32449 Resort Hotel 0
## 32450 Resort Hotel 0
## 32451 Resort Hotel 3
## 32452 Resort Hotel 1
## 32453 Resort Hotel 2
## 32454 Resort Hotel 2
## 32455 Resort Hotel 0
## 32456 Resort Hotel 0
## 32457 Resort Hotel 9
## 32458 Resort Hotel 2
## 32459 Resort Hotel 0
## 32460 Resort Hotel 4
## 32461 Resort Hotel 43
## 32462 Resort Hotel 14
## 32463 Resort Hotel 0
## 32464 Resort Hotel 0
## 32465 Resort Hotel 23
## 32466 Resort Hotel 5
## 32467 Resort Hotel 132
## 32468 Resort Hotel 5
## 32469 Resort Hotel 51
## 32470 Resort Hotel 3
## 32471 Resort Hotel 27
## 32472 Resort Hotel 6
## 32473 Resort Hotel 3
## 32474 Resort Hotel 0
## 32475 Resort Hotel 56
## 32476 Resort Hotel 0
## 32477 Resort Hotel 6
## 32478 Resort Hotel 1
## 32479 Resort Hotel 0
## 32480 Resort Hotel 11
## 32481 Resort Hotel 3
## 32482 Resort Hotel 4
## 32483 Resort Hotel 2
## 32484 Resort Hotel 48
## 32485 Resort Hotel 17
## 32486 Resort Hotel 0
## 32487 Resort Hotel 5
## 32488 Resort Hotel 121
## 32489 Resort Hotel 4
## 32490 Resort Hotel 4
## 32491 Resort Hotel 24
## 32492 Resort Hotel 1
## 32493 Resort Hotel 21
## 32494 Resort Hotel 21
## 32495 Resort Hotel 5
## 32496 Resort Hotel 4
## 32497 Resort Hotel 7
## 32498 Resort Hotel 1
## 32499 Resort Hotel 4
## 32500 Resort Hotel 17
## 32501 Resort Hotel 4
## 32502 Resort Hotel 112
## 32503 Resort Hotel 0
## 32504 Resort Hotel 1
## 32505 Resort Hotel 121
## 32506 Resort Hotel 121
## 32507 Resort Hotel 0
## 32508 Resort Hotel 15
## 32509 Resort Hotel 121
## 32510 Resort Hotel 121
## 32511 Resort Hotel 1
## 32512 Resort Hotel 17
## 32513 Resort Hotel 58
## 32514 Resort Hotel 16
## 32515 Resort Hotel 1
## 32516 Resort Hotel 35
## 32517 Resort Hotel 2
## 32518 Resort Hotel 88
## 32519 Resort Hotel 125
## 32520 Resort Hotel 1
## 32521 Resort Hotel 0
## 32522 Resort Hotel 121
## 32523 Resort Hotel 121
## 32524 Resort Hotel 24
## 32525 Resort Hotel 1
## 32526 Resort Hotel 17
## 32527 Resort Hotel 18
## 32528 Resort Hotel 0
## 32529 Resort Hotel 2
## 32530 Resort Hotel 3
## 32531 Resort Hotel 26
## 32532 Resort Hotel 0
## 32533 Resort Hotel 0
## 32534 Resort Hotel 16
## 32535 Resort Hotel 18
## 32536 Resort Hotel 0
## 32537 Resort Hotel 18
## 32538 Resort Hotel 0
## 32539 Resort Hotel 28
## 32540 Resort Hotel 18
## 32541 Resort Hotel 0
## 32542 Resort Hotel 0
## 32543 Resort Hotel 2
## 32544 Resort Hotel 18
## 32545 Resort Hotel 9
## 32546 Resort Hotel 48
## 32547 Resort Hotel 5
## 32548 Resort Hotel 9
## 32549 Resort Hotel 4
## 32550 Resort Hotel 24
## 32551 Resort Hotel 0
## 32552 Resort Hotel 4
## 32553 Resort Hotel 17
## 32554 Resort Hotel 17
## 32555 Resort Hotel 17
## 32556 Resort Hotel 0
## 32557 Resort Hotel 0
## 32558 Resort Hotel 56
## 32559 Resort Hotel 17
## 32560 Resort Hotel 15
## 32561 Resort Hotel 20
## 32562 Resort Hotel 3
## 32563 Resort Hotel 0
## 32564 Resort Hotel 11
## 32565 Resort Hotel 43
## 32566 Resort Hotel 16
## 32567 Resort Hotel 16
## 32568 Resort Hotel 3
## 32569 Resort Hotel 3
## 32570 Resort Hotel 0
## 32571 Resort Hotel 16
## 32572 Resort Hotel 16
## 32573 Resort Hotel 74
## 32574 Resort Hotel 2
## 32575 Resort Hotel 46
## 32576 Resort Hotel 16
## 32577 Resort Hotel 1
## 32578 Resort Hotel 0
## 32579 Resort Hotel 74
## 32580 Resort Hotel 2
## 32581 Resort Hotel 34
## 32582 Resort Hotel 16
## 32583 Resort Hotel 43
## 32584 Resort Hotel 14
## 32585 Resort Hotel 7
## 32586 Resort Hotel 63
## 32587 Resort Hotel 16
## 32588 Resort Hotel 4
## 32589 Resort Hotel 0
## 32590 Resort Hotel 1
## 32591 Resort Hotel 3
## 32592 Resort Hotel 3
## 32593 Resort Hotel 3
## 32594 Resort Hotel 3
## 32595 Resort Hotel 3
## 32596 Resort Hotel 4
## 32597 Resort Hotel 0
## 32598 Resort Hotel 18
## 32599 Resort Hotel 18
## 32600 Resort Hotel 1
## 32601 Resort Hotel 43
## 32602 Resort Hotel 0
## 32603 Resort Hotel 0
## 32604 Resort Hotel 0
## 32605 Resort Hotel 43
## 32606 Resort Hotel 0
## 32607 Resort Hotel 0
## 32608 Resort Hotel 43
## 32609 Resort Hotel 3
## 32610 Resort Hotel 3
## 32611 Resort Hotel 3
## 32612 Resort Hotel 0
## 32613 Resort Hotel 2
## 32614 Resort Hotel 0
## 32615 Resort Hotel 2
## 32616 Resort Hotel 0
## 32617 Resort Hotel 1
## 32618 Resort Hotel 1
## 32619 Resort Hotel 0
## 32620 Resort Hotel 8
## 32621 Resort Hotel 3
## 32622 Resort Hotel 112
## 32623 Resort Hotel 58
## 32624 Resort Hotel 126
## 32625 Resort Hotel 1
## 32626 Resort Hotel 4
## 32627 Resort Hotel 309
## 32628 Resort Hotel 12
## 32629 Resort Hotel 0
## 32630 Resort Hotel 0
## 32631 Resort Hotel 3
## 32632 Resort Hotel 0
## 32633 Resort Hotel 4
## 32634 Resort Hotel 5
## 32635 Resort Hotel 4
## 32636 Resort Hotel 97
## 32637 Resort Hotel 47
## 32638 Resort Hotel 4
## 32639 Resort Hotel 84
## 32640 Resort Hotel 1
## 32641 Resort Hotel 2
## 32642 Resort Hotel 18
## 32643 Resort Hotel 8
## 32644 Resort Hotel 1
## 32645 Resort Hotel 6
## 32646 Resort Hotel 11
## 32647 Resort Hotel 1
## 32648 Resort Hotel 4
## 32649 Resort Hotel 0
## 32650 Resort Hotel 1
## 32651 Resort Hotel 0
## 32652 Resort Hotel 1
## 32653 Resort Hotel 0
## 32654 Resort Hotel 30
## 32655 Resort Hotel 6
## 32656 Resort Hotel 0
## 32657 Resort Hotel 6
## 32658 Resort Hotel 5
## 32659 Resort Hotel 48
## 32660 Resort Hotel 0
## 32661 Resort Hotel 69
## 32662 Resort Hotel 11
## 32663 Resort Hotel 0
## 32664 Resort Hotel 202
## 32665 Resort Hotel 27
## 32666 Resort Hotel 0
## 32667 Resort Hotel 80
## 32668 Resort Hotel 128
## 32669 Resort Hotel 4
## 32670 Resort Hotel 45
## 32671 Resort Hotel 19
## 32672 Resort Hotel 24
## 32673 Resort Hotel 36
## 32674 Resort Hotel 43
## 32675 Resort Hotel 27
## 32676 Resort Hotel 0
## 32677 Resort Hotel 11
## 32678 Resort Hotel 11
## 32679 Resort Hotel 11
## 32680 Resort Hotel 45
## 32681 Resort Hotel 0
## 32682 Resort Hotel 0
## 32683 Resort Hotel 0
## 32684 Resort Hotel 0
## 32685 Resort Hotel 0
## 32686 Resort Hotel 0
## 32687 Resort Hotel 4
## 32688 Resort Hotel 0
## 32689 Resort Hotel 1
## 32690 Resort Hotel 0
## 32691 Resort Hotel 1
## 32692 Resort Hotel 1
## 32693 Resort Hotel 1
## 32694 Resort Hotel 7
## 32695 Resort Hotel 1
## 32696 Resort Hotel 1
## 32697 Resort Hotel 5
## 32698 Resort Hotel 0
## 32699 Resort Hotel 1
## 32700 Resort Hotel 1
## 32701 Resort Hotel 11
## 32702 Resort Hotel 8
## 32703 Resort Hotel 8
## 32704 Resort Hotel 1
## 32705 Resort Hotel 1
## 32706 Resort Hotel 1
## 32707 Resort Hotel 49
## 32708 Resort Hotel 0
## 32709 Resort Hotel 3
## 32710 Resort Hotel 5
## 32711 Resort Hotel 0
## 32712 Resort Hotel 0
## 32713 Resort Hotel 1
## 32714 Resort Hotel 0
## 32715 Resort Hotel 0
## 32716 Resort Hotel 0
## 32717 Resort Hotel 3
## 32718 Resort Hotel 0
## 32719 Resort Hotel 11
## 32720 Resort Hotel 157
## 32721 Resort Hotel 0
## 32722 Resort Hotel 2
## 32723 Resort Hotel 10
## 32724 Resort Hotel 2
## 32725 Resort Hotel 11
## 32726 Resort Hotel 41
## 32727 Resort Hotel 177
## 32728 Resort Hotel 39
## 32729 Resort Hotel 4
## 32730 Resort Hotel 177
## 32731 Resort Hotel 4
## 32732 Resort Hotel 10
## 32733 Resort Hotel 20
## 32734 Resort Hotel 1
## 32735 Resort Hotel 31
## 32736 Resort Hotel 31
## 32737 Resort Hotel 1
## 32738 Resort Hotel 0
## 32739 Resort Hotel 1
## 32740 Resort Hotel 2
## 32741 Resort Hotel 15
## 32742 Resort Hotel 3
## 32743 Resort Hotel 1
## 32744 Resort Hotel 10
## 32745 Resort Hotel 3
## 32746 Resort Hotel 0
## 32747 Resort Hotel 67
## 32748 Resort Hotel 67
## 32749 Resort Hotel 1
## 32750 Resort Hotel 1
## 32751 Resort Hotel 56
## 32752 Resort Hotel 3
## 32753 Resort Hotel 0
## 32754 Resort Hotel 131
## 32755 Resort Hotel 81
## 32756 Resort Hotel 81
## 32757 Resort Hotel 81
## 32758 Resort Hotel 13
## 32759 Resort Hotel 3
## 32760 Resort Hotel 3
## 32761 Resort Hotel 132
## 32762 Resort Hotel 71
## 32763 Resort Hotel 12
## 32764 Resort Hotel 2
## 32765 Resort Hotel 2
## 32766 Resort Hotel 1
## 32767 Resort Hotel 27
## 32768 Resort Hotel 27
## 32769 Resort Hotel 3
## 32770 Resort Hotel 8
## 32771 Resort Hotel 0
## 32772 Resort Hotel 0
## 32773 Resort Hotel 2
## 32774 Resort Hotel 4
## 32775 Resort Hotel 2
## 32776 Resort Hotel 4
## 32777 Resort Hotel 0
## 32778 Resort Hotel 0
## 32779 Resort Hotel 0
## 32780 Resort Hotel 1
## 32781 Resort Hotel 1
## 32782 Resort Hotel 1
## 32783 Resort Hotel 10
## 32784 Resort Hotel 54
## 32785 Resort Hotel 0
## 32786 Resort Hotel 1
## 32787 Resort Hotel 10
## 32788 Resort Hotel 10
## 32789 Resort Hotel 15
## 32790 Resort Hotel 158
## 32791 Resort Hotel 10
## 32792 Resort Hotel 17
## 32793 Resort Hotel 0
## 32794 Resort Hotel 11
## 32795 Resort Hotel 4
## 32796 Resort Hotel 1
## 32797 Resort Hotel 0
## 32798 Resort Hotel 18
## 32799 Resort Hotel 23
## 32800 Resort Hotel 8
## 32801 Resort Hotel 70
## 32802 Resort Hotel 0
## 32803 Resort Hotel 3
## 32804 Resort Hotel 36
## 32805 Resort Hotel 80
## 32806 Resort Hotel 80
## 32807 Resort Hotel 0
## 32808 Resort Hotel 36
## 32809 Resort Hotel 80
## 32810 Resort Hotel 80
## 32811 Resort Hotel 80
## 32812 Resort Hotel 36
## 32813 Resort Hotel 29
## 32814 Resort Hotel 80
## 32815 Resort Hotel 80
## 32816 Resort Hotel 80
## 32817 Resort Hotel 54
## 32818 Resort Hotel 0
## 32819 Resort Hotel 0
## 32820 Resort Hotel 36
## 32821 Resort Hotel 20
## 32822 Resort Hotel 6
## 32823 Resort Hotel 67
## 32824 Resort Hotel 9
## 32825 Resort Hotel 3
## 32826 Resort Hotel 4
## 32827 Resort Hotel 17
## 32828 Resort Hotel 46
## 32829 Resort Hotel 145
## 32830 Resort Hotel 0
## 32831 Resort Hotel 159
## 32832 Resort Hotel 159
## 32833 Resort Hotel 159
## 32834 Resort Hotel 0
## 32835 Resort Hotel 3
## 32836 Resort Hotel 20
## 32837 Resort Hotel 17
## 32838 Resort Hotel 17
## 32839 Resort Hotel 52
## 32840 Resort Hotel 0
## 32841 Resort Hotel 1
## 32842 Resort Hotel 1
## 32843 Resort Hotel 1
## 32844 Resort Hotel 1
## 32845 Resort Hotel 1
## 32846 Resort Hotel 10
## 32847 Resort Hotel 27
## 32848 Resort Hotel 19
## 32849 Resort Hotel 1
## 32850 Resort Hotel 1
## 32851 Resort Hotel 0
## 32852 Resort Hotel 0
## 32853 Resort Hotel 14
## 32854 Resort Hotel 0
## 32855 Resort Hotel 0
## 32856 Resort Hotel 0
## 32857 Resort Hotel 0
## 32858 Resort Hotel 10
## 32859 Resort Hotel 10
## 32860 Resort Hotel 10
## 32861 Resort Hotel 10
## 32862 Resort Hotel 10
## 32863 Resort Hotel 10
## 32864 Resort Hotel 14
## 32865 Resort Hotel 10
## 32866 Resort Hotel 10
## 32867 Resort Hotel 10
## 32868 Resort Hotel 10
## 32869 Resort Hotel 10
## 32870 Resort Hotel 10
## 32871 Resort Hotel 10
## 32872 Resort Hotel 10
## 32873 Resort Hotel 0
## 32874 Resort Hotel 1
## 32875 Resort Hotel 4
## 32876 Resort Hotel 14
## 32877 Resort Hotel 2
## 32878 Resort Hotel 0
## 32879 Resort Hotel 140
## 32880 Resort Hotel 21
## 32881 Resort Hotel 36
## 32882 Resort Hotel 36
## 32883 Resort Hotel 9
## 32884 Resort Hotel 9
## 32885 Resort Hotel 23
## 32886 Resort Hotel 10
## 32887 Resort Hotel 10
## 32888 Resort Hotel 10
## 32889 Resort Hotel 10
## 32890 Resort Hotel 10
## 32891 Resort Hotel 10
## 32892 Resort Hotel 2
## 32893 Resort Hotel 10
## 32894 Resort Hotel 31
## 32895 Resort Hotel 8
## 32896 Resort Hotel 0
## 32897 Resort Hotel 0
## 32898 Resort Hotel 0
## 32899 Resort Hotel 19
## 32900 Resort Hotel 19
## 32901 Resort Hotel 6
## 32902 Resort Hotel 160
## 32903 Resort Hotel 8
## 32904 Resort Hotel 0
## 32905 Resort Hotel 0
## 32906 Resort Hotel 1
## 32907 Resort Hotel 0
## 32908 Resort Hotel 1
## 32909 Resort Hotel 1
## 32910 Resort Hotel 1
## 32911 Resort Hotel 1
## 32912 Resort Hotel 15
## 32913 Resort Hotel 32
## 32914 Resort Hotel 6
## 32915 Resort Hotel 6
## 32916 Resort Hotel 1
## 32917 Resort Hotel 0
## 32918 Resort Hotel 111
## 32919 Resort Hotel 21
## 32920 Resort Hotel 6
## 32921 Resort Hotel 1
## 32922 Resort Hotel 7
## 32923 Resort Hotel 7
## 32924 Resort Hotel 1
## 32925 Resort Hotel 7
## 32926 Resort Hotel 6
## 32927 Resort Hotel 10
## 32928 Resort Hotel 4
## 32929 Resort Hotel 1
## 32930 Resort Hotel 0
## 32931 Resort Hotel 0
## 32932 Resort Hotel 1
## 32933 Resort Hotel 2
## 32934 Resort Hotel 0
## 32935 Resort Hotel 1
## 32936 Resort Hotel 0
## 32937 Resort Hotel 0
## 32938 Resort Hotel 1
## 32939 Resort Hotel 0
## 32940 Resort Hotel 0
## 32941 Resort Hotel 6
## 32942 Resort Hotel 20
## 32943 Resort Hotel 2
## 32944 Resort Hotel 2
## 32945 Resort Hotel 3
## 32946 Resort Hotel 7
## 32947 Resort Hotel 140
## 32948 Resort Hotel 14
## 32949 Resort Hotel 20
## 32950 Resort Hotel 109
## 32951 Resort Hotel 87
## 32952 Resort Hotel 16
## 32953 Resort Hotel 216
## 32954 Resort Hotel 9
## 32955 Resort Hotel 53
## 32956 Resort Hotel 3
## 32957 Resort Hotel 0
## 32958 Resort Hotel 24
## 32959 Resort Hotel 62
## 32960 Resort Hotel 125
## 32961 Resort Hotel 9
## 32962 Resort Hotel 0
## 32963 Resort Hotel 0
## 32964 Resort Hotel 0
## 32965 Resort Hotel 2
## 32966 Resort Hotel 6
## 32967 Resort Hotel 2
## 32968 Resort Hotel 0
## 32969 Resort Hotel 2
## 32970 Resort Hotel 142
## 32971 Resort Hotel 3
## 32972 Resort Hotel 25
## 32973 Resort Hotel 53
## 32974 Resort Hotel 1
## 32975 Resort Hotel 14
## 32976 Resort Hotel 0
## 32977 Resort Hotel 33
## 32978 Resort Hotel 13
## 32979 Resort Hotel 66
## 32980 Resort Hotel 0
## 32981 Resort Hotel 37
## 32982 Resort Hotel 1
## 32983 Resort Hotel 16
## 32984 Resort Hotel 11
## 32985 Resort Hotel 3
## 32986 Resort Hotel 23
## 32987 Resort Hotel 3
## 32988 Resort Hotel 80
## 32989 Resort Hotel 19
## 32990 Resort Hotel 0
## 32991 Resort Hotel 11
## 32992 Resort Hotel 9
## 32993 Resort Hotel 2
## 32994 Resort Hotel 8
## 32995 Resort Hotel 112
## 32996 Resort Hotel 5
## 32997 Resort Hotel 4
## 32998 Resort Hotel 24
## 32999 Resort Hotel 0
## 33000 Resort Hotel 37
## 33001 Resort Hotel 9
## 33002 Resort Hotel 23
## 33003 Resort Hotel 18
## 33004 Resort Hotel 0
## 33005 Resort Hotel 0
## 33006 Resort Hotel 32
## 33007 Resort Hotel 0
## 33008 Resort Hotel 33
## 33009 Resort Hotel 1
## 33010 Resort Hotel 6
## 33011 Resort Hotel 15
## 33012 Resort Hotel 19
## 33013 Resort Hotel 19
## 33014 Resort Hotel 4
## 33015 Resort Hotel 0
## 33016 Resort Hotel 1
## 33017 Resort Hotel 1
## 33018 Resort Hotel 14
## 33019 Resort Hotel 2
## 33020 Resort Hotel 2
## 33021 Resort Hotel 2
## 33022 Resort Hotel 2
## 33023 Resort Hotel 2
## 33024 Resort Hotel 2
## 33025 Resort Hotel 14
## 33026 Resort Hotel 14
## 33027 Resort Hotel 5
## 33028 Resort Hotel 2
## 33029 Resort Hotel 23
## 33030 Resort Hotel 23
## 33031 Resort Hotel 5
## 33032 Resort Hotel 3
## 33033 Resort Hotel 5
## 33034 Resort Hotel 4
## 33035 Resort Hotel 19
## 33036 Resort Hotel 7
## 33037 Resort Hotel 38
## 33038 Resort Hotel 2
## 33039 Resort Hotel 1
## 33040 Resort Hotel 65
## 33041 Resort Hotel 26
## 33042 Resort Hotel 17
## 33043 Resort Hotel 31
## 33044 Resort Hotel 4
## 33045 Resort Hotel 1
## 33046 Resort Hotel 0
## 33047 Resort Hotel 109
## 33048 Resort Hotel 10
## 33049 Resort Hotel 32
## 33050 Resort Hotel 13
## 33051 Resort Hotel 47
## 33052 Resort Hotel 47
## 33053 Resort Hotel 5
## 33054 Resort Hotel 5
## 33055 Resort Hotel 16
## 33056 Resort Hotel 11
## 33057 Resort Hotel 122
## 33058 Resort Hotel 32
## 33059 Resort Hotel 22
## 33060 Resort Hotel 0
## 33061 Resort Hotel 63
## 33062 Resort Hotel 1
## 33063 Resort Hotel 63
## 33064 Resort Hotel 18
## 33065 Resort Hotel 18
## 33066 Resort Hotel 16
## 33067 Resort Hotel 24
## 33068 Resort Hotel 9
## 33069 Resort Hotel 0
## 33070 Resort Hotel 5
## 33071 Resort Hotel 133
## 33072 Resort Hotel 15
## 33073 Resort Hotel 15
## 33074 Resort Hotel 8
## 33075 Resort Hotel 0
## 33076 Resort Hotel 0
## 33077 Resort Hotel 5
## 33078 Resort Hotel 1
## 33079 Resort Hotel 8
## 33080 Resort Hotel 93
## 33081 Resort Hotel 1
## 33082 Resort Hotel 0
## 33083 Resort Hotel 21
## 33084 Resort Hotel 0
## 33085 Resort Hotel 4
## 33086 Resort Hotel 10
## 33087 Resort Hotel 19
## 33088 Resort Hotel 4
## 33089 Resort Hotel 5
## 33090 Resort Hotel 1
## 33091 Resort Hotel 121
## 33092 Resort Hotel 20
## 33093 Resort Hotel 98
## 33094 Resort Hotel 0
## 33095 Resort Hotel 0
## 33096 Resort Hotel 0
## 33097 Resort Hotel 0
## 33098 Resort Hotel 1
## 33099 Resort Hotel 43
## 33100 Resort Hotel 17
## 33101 Resort Hotel 16
## 33102 Resort Hotel 25
## 33103 Resort Hotel 9
## 33104 Resort Hotel 26
## 33105 Resort Hotel 0
## 33106 Resort Hotel 0
## 33107 Resort Hotel 0
## 33108 Resort Hotel 0
## 33109 Resort Hotel 8
## 33110 Resort Hotel 0
## 33111 Resort Hotel 14
## 33112 Resort Hotel 1
## 33113 Resort Hotel 6
## 33114 Resort Hotel 7
## 33115 Resort Hotel 129
## 33116 Resort Hotel 38
## 33117 Resort Hotel 19
## 33118 Resort Hotel 44
## 33119 Resort Hotel 158
## 33120 Resort Hotel 18
## 33121 Resort Hotel 33
## 33122 Resort Hotel 6
## 33123 Resort Hotel 10
## 33124 Resort Hotel 7
## 33125 Resort Hotel 11
## 33126 Resort Hotel 19
## 33127 Resort Hotel 0
## 33128 Resort Hotel 0
## 33129 Resort Hotel 30
## 33130 Resort Hotel 110
## 33131 Resort Hotel 1
## 33132 Resort Hotel 35
## 33133 Resort Hotel 9
## 33134 Resort Hotel 6
## 33135 Resort Hotel 8
## 33136 Resort Hotel 0
## 33137 Resort Hotel 5
## 33138 Resort Hotel 17
## 33139 Resort Hotel 27
## 33140 Resort Hotel 6
## 33141 Resort Hotel 158
## 33142 Resort Hotel 1
## 33143 Resort Hotel 5
## 33144 Resort Hotel 75
## 33145 Resort Hotel 53
## 33146 Resort Hotel 75
## 33147 Resort Hotel 2
## 33148 Resort Hotel 2
## 33149 Resort Hotel 3
## 33150 Resort Hotel 1
## 33151 Resort Hotel 0
## 33152 Resort Hotel 9
## 33153 Resort Hotel 10
## 33154 Resort Hotel 3
## 33155 Resort Hotel 10
## 33156 Resort Hotel 17
## 33157 Resort Hotel 94
## 33158 Resort Hotel 29
## 33159 Resort Hotel 94
## 33160 Resort Hotel 31
## 33161 Resort Hotel 31
## 33162 Resort Hotel 0
## 33163 Resort Hotel 1
## 33164 Resort Hotel 5
## 33165 Resort Hotel 6
## 33166 Resort Hotel 94
## 33167 Resort Hotel 94
## 33168 Resort Hotel 2
## 33169 Resort Hotel 94
## 33170 Resort Hotel 44
## 33171 Resort Hotel 94
## 33172 Resort Hotel 136
## 33173 Resort Hotel 94
## 33174 Resort Hotel 94
## 33175 Resort Hotel 94
## 33176 Resort Hotel 3
## 33177 Resort Hotel 94
## 33178 Resort Hotel 3
## 33179 Resort Hotel 207
## 33180 Resort Hotel 94
## 33181 Resort Hotel 94
## 33182 Resort Hotel 94
## 33183 Resort Hotel 94
## 33184 Resort Hotel 70
## 33185 Resort Hotel 207
## 33186 Resort Hotel 94
## 33187 Resort Hotel 94
## 33188 Resort Hotel 94
## 33189 Resort Hotel 207
## 33190 Resort Hotel 207
## 33191 Resort Hotel 214
## 33192 Resort Hotel 94
## 33193 Resort Hotel 94
## 33194 Resort Hotel 94
## 33195 Resort Hotel 13
## 33196 Resort Hotel 94
## 33197 Resort Hotel 204
## 33198 Resort Hotel 94
## 33199 Resort Hotel 94
## 33200 Resort Hotel 94
## 33201 Resort Hotel 94
## 33202 Resort Hotel 94
## 33203 Resort Hotel 94
## 33204 Resort Hotel 94
## 33205 Resort Hotel 94
## 33206 Resort Hotel 94
## 33207 Resort Hotel 94
## 33208 Resort Hotel 183
## 33209 Resort Hotel 32
## 33210 Resort Hotel 94
## 33211 Resort Hotel 207
## 33212 Resort Hotel 94
## 33213 Resort Hotel 22
## 33214 Resort Hotel 22
## 33215 Resort Hotel 245
## 33216 Resort Hotel 245
## 33217 Resort Hotel 29
## 33218 Resort Hotel 19
## 33219 Resort Hotel 19
## 33220 Resort Hotel 12
## 33221 Resort Hotel 353
## 33222 Resort Hotel 63
## 33223 Resort Hotel 84
## 33224 Resort Hotel 69
## 33225 Resort Hotel 3
## 33226 Resort Hotel 18
## 33227 Resort Hotel 82
## 33228 Resort Hotel 27
## 33229 Resort Hotel 89
## 33230 Resort Hotel 0
## 33231 Resort Hotel 0
## 33232 Resort Hotel 19
## 33233 Resort Hotel 1
## 33234 Resort Hotel 19
## 33235 Resort Hotel 192
## 33236 Resort Hotel 10
## 33237 Resort Hotel 11
## 33238 Resort Hotel 30
## 33239 Resort Hotel 89
## 33240 Resort Hotel 5
## 33241 Resort Hotel 17
## 33242 Resort Hotel 34
## 33243 Resort Hotel 138
## 33244 Resort Hotel 88
## 33245 Resort Hotel 1
## 33246 Resort Hotel 96
## 33247 Resort Hotel 38
## 33248 Resort Hotel 83
## 33249 Resort Hotel 0
## 33250 Resort Hotel 2
## 33251 Resort Hotel 11
## 33252 Resort Hotel 0
## 33253 Resort Hotel 6
## 33254 Resort Hotel 26
## 33255 Resort Hotel 16
## 33256 Resort Hotel 24
## 33257 Resort Hotel 24
## 33258 Resort Hotel 35
## 33259 Resort Hotel 84
## 33260 Resort Hotel 3
## 33261 Resort Hotel 23
## 33262 Resort Hotel 24
## 33263 Resort Hotel 2
## 33264 Resort Hotel 10
## 33265 Resort Hotel 10
## 33266 Resort Hotel 2
## 33267 Resort Hotel 24
## 33268 Resort Hotel 1
## 33269 Resort Hotel 1
## 33270 Resort Hotel 47
## 33271 Resort Hotel 26
## 33272 Resort Hotel 6
## 33273 Resort Hotel 7
## 33274 Resort Hotel 36
## 33275 Resort Hotel 23
## 33276 Resort Hotel 22
## 33277 Resort Hotel 83
## 33278 Resort Hotel 1
## 33279 Resort Hotel 5
## 33280 Resort Hotel 1
## 33281 Resort Hotel 5
## 33282 Resort Hotel 5
## 33283 Resort Hotel 11
## 33284 Resort Hotel 0
## 33285 Resort Hotel 0
## 33286 Resort Hotel 24
## 33287 Resort Hotel 2
## 33288 Resort Hotel 7
## 33289 Resort Hotel 0
## 33290 Resort Hotel 8
## 33291 Resort Hotel 30
## 33292 Resort Hotel 16
## 33293 Resort Hotel 16
## 33294 Resort Hotel 20
## 33295 Resort Hotel 73
## 33296 Resort Hotel 73
## 33297 Resort Hotel 73
## 33298 Resort Hotel 73
## 33299 Resort Hotel 73
## 33300 Resort Hotel 16
## 33301 Resort Hotel 15
## 33302 Resort Hotel 74
## 33303 Resort Hotel 0
## 33304 Resort Hotel 71
## 33305 Resort Hotel 73
## 33306 Resort Hotel 73
## 33307 Resort Hotel 16
## 33308 Resort Hotel 73
## 33309 Resort Hotel 73
## 33310 Resort Hotel 73
## 33311 Resort Hotel 29
## 33312 Resort Hotel 73
## 33313 Resort Hotel 24
## 33314 Resort Hotel 73
## 33315 Resort Hotel 15
## 33316 Resort Hotel 15
## 33317 Resort Hotel 24
## 33318 Resort Hotel 73
## 33319 Resort Hotel 0
## 33320 Resort Hotel 12
## 33321 Resort Hotel 17
## 33322 Resort Hotel 16
## 33323 Resort Hotel 73
## 33324 Resort Hotel 73
## 33325 Resort Hotel 16
## 33326 Resort Hotel 0
## 33327 Resort Hotel 0
## 33328 Resort Hotel 0
## 33329 Resort Hotel 0
## 33330 Resort Hotel 18
## 33331 Resort Hotel 10
## 33332 Resort Hotel 0
## 33333 Resort Hotel 31
## 33334 Resort Hotel 23
## 33335 Resort Hotel 61
## 33336 Resort Hotel 106
## 33337 Resort Hotel 22
## 33338 Resort Hotel 22
## 33339 Resort Hotel 31
## 33340 Resort Hotel 8
## 33341 Resort Hotel 73
## 33342 Resort Hotel 73
## 33343 Resort Hotel 73
## 33344 Resort Hotel 3
## 33345 Resort Hotel 3
## 33346 Resort Hotel 29
## 33347 Resort Hotel 16
## 33348 Resort Hotel 4
## 33349 Resort Hotel 24
## 33350 Resort Hotel 24
## 33351 Resort Hotel 30
## 33352 Resort Hotel 16
## 33353 Resort Hotel 30
## 33354 Resort Hotel 30
## 33355 Resort Hotel 34
## 33356 Resort Hotel 0
## 33357 Resort Hotel 0
## 33358 Resort Hotel 2
## 33359 Resort Hotel 0
## 33360 Resort Hotel 18
## 33361 Resort Hotel 18
## 33362 Resort Hotel 0
## 33363 Resort Hotel 4
## 33364 Resort Hotel 3
## 33365 Resort Hotel 2
## 33366 Resort Hotel 21
## 33367 Resort Hotel 15
## 33368 Resort Hotel 35
## 33369 Resort Hotel 2
## 33370 Resort Hotel 73
## 33371 Resort Hotel 32
## 33372 Resort Hotel 145
## 33373 Resort Hotel 65
## 33374 Resort Hotel 16
## 33375 Resort Hotel 16
## 33376 Resort Hotel 22
## 33377 Resort Hotel 26
## 33378 Resort Hotel 15
## 33379 Resort Hotel 73
## 33380 Resort Hotel 0
## 33381 Resort Hotel 82
## 33382 Resort Hotel 31
## 33383 Resort Hotel 31
## 33384 Resort Hotel 1
## 33385 Resort Hotel 13
## 33386 Resort Hotel 2
## 33387 Resort Hotel 5
## 33388 Resort Hotel 0
## 33389 Resort Hotel 0
## 33390 Resort Hotel 4
## 33391 Resort Hotel 0
## 33392 Resort Hotel 16
## 33393 Resort Hotel 15
## 33394 Resort Hotel 6
## 33395 Resort Hotel 19
## 33396 Resort Hotel 0
## 33397 Resort Hotel 0
## 33398 Resort Hotel 0
## 33399 Resort Hotel 0
## 33400 Resort Hotel 0
## 33401 Resort Hotel 41
## 33402 Resort Hotel 41
## 33403 Resort Hotel 150
## 33404 Resort Hotel 150
## 33405 Resort Hotel 6
## 33406 Resort Hotel 5
## 33407 Resort Hotel 21
## 33408 Resort Hotel 12
## 33409 Resort Hotel 0
## 33410 Resort Hotel 66
## 33411 Resort Hotel 5
## 33412 Resort Hotel 0
## 33413 Resort Hotel 36
## 33414 Resort Hotel 11
## 33415 Resort Hotel 143
## 33416 Resort Hotel 37
## 33417 Resort Hotel 37
## 33418 Resort Hotel 0
## 33419 Resort Hotel 0
## 33420 Resort Hotel 1
## 33421 Resort Hotel 117
## 33422 Resort Hotel 5
## 33423 Resort Hotel 5
## 33424 Resort Hotel 0
## 33425 Resort Hotel 0
## 33426 Resort Hotel 0
## 33427 Resort Hotel 134
## 33428 Resort Hotel 23
## 33429 Resort Hotel 11
## 33430 Resort Hotel 0
## 33431 Resort Hotel 1
## 33432 Resort Hotel 1
## 33433 Resort Hotel 26
## 33434 Resort Hotel 9
## 33435 Resort Hotel 20
## 33436 Resort Hotel 44
## 33437 Resort Hotel 3
## 33438 Resort Hotel 0
## 33439 Resort Hotel 0
## 33440 Resort Hotel 0
## 33441 Resort Hotel 115
## 33442 Resort Hotel 4
## 33443 Resort Hotel 24
## 33444 Resort Hotel 33
## 33445 Resort Hotel 149
## 33446 Resort Hotel 69
## 33447 Resort Hotel 79
## 33448 Resort Hotel 69
## 33449 Resort Hotel 69
## 33450 Resort Hotel 69
## 33451 Resort Hotel 28
## 33452 Resort Hotel 18
## 33453 Resort Hotel 182
## 33454 Resort Hotel 0
## 33455 Resort Hotel 6
## 33456 Resort Hotel 5
## 33457 Resort Hotel 1
## 33458 Resort Hotel 178
## 33459 Resort Hotel 17
## 33460 Resort Hotel 225
## 33461 Resort Hotel 19
## 33462 Resort Hotel 8
## 33463 Resort Hotel 6
## 33464 Resort Hotel 48
## 33465 Resort Hotel 36
## 33466 Resort Hotel 64
## 33467 Resort Hotel 0
## 33468 Resort Hotel 0
## 33469 Resort Hotel 1
## 33470 Resort Hotel 100
## 33471 Resort Hotel 41
## 33472 Resort Hotel 0
## 33473 Resort Hotel 0
## 33474 Resort Hotel 60
## 33475 Resort Hotel 60
## 33476 Resort Hotel 7
## 33477 Resort Hotel 183
## 33478 Resort Hotel 183
## 33479 Resort Hotel 116
## 33480 Resort Hotel 272
## 33481 Resort Hotel 2
## 33482 Resort Hotel 6
## 33483 Resort Hotel 20
## 33484 Resort Hotel 20
## 33485 Resort Hotel 22
## 33486 Resort Hotel 22
## 33487 Resort Hotel 2
## 33488 Resort Hotel 22
## 33489 Resort Hotel 22
## 33490 Resort Hotel 6
## 33491 Resort Hotel 2
## 33492 Resort Hotel 22
## 33493 Resort Hotel 2
## 33494 Resort Hotel 6
## 33495 Resort Hotel 22
## 33496 Resort Hotel 22
## 33497 Resort Hotel 22
## 33498 Resort Hotel 22
## 33499 Resort Hotel 22
## 33500 Resort Hotel 22
## 33501 Resort Hotel 9
## 33502 Resort Hotel 22
## 33503 Resort Hotel 2
## 33504 Resort Hotel 22
## 33505 Resort Hotel 152
## 33506 Resort Hotel 28
## 33507 Resort Hotel 42
## 33508 Resort Hotel 17
## 33509 Resort Hotel 26
## 33510 Resort Hotel 2
## 33511 Resort Hotel 22
## 33512 Resort Hotel 316
## 33513 Resort Hotel 22
## 33514 Resort Hotel 40
## 33515 Resort Hotel 6
## 33516 Resort Hotel 6
## 33517 Resort Hotel 2
## 33518 Resort Hotel 22
## 33519 Resort Hotel 125
## 33520 Resort Hotel 2
## 33521 Resort Hotel 42
## 33522 Resort Hotel 4
## 33523 Resort Hotel 0
## 33524 Resort Hotel 0
## 33525 Resort Hotel 11
## 33526 Resort Hotel 138
## 33527 Resort Hotel 37
## 33528 Resort Hotel 139
## 33529 Resort Hotel 70
## 33530 Resort Hotel 70
## 33531 Resort Hotel 70
## 33532 Resort Hotel 21
## 33533 Resort Hotel 21
## 33534 Resort Hotel 29
## 33535 Resort Hotel 119
## 33536 Resort Hotel 70
## 33537 Resort Hotel 24
## 33538 Resort Hotel 21
## 33539 Resort Hotel 29
## 33540 Resort Hotel 70
## 33541 Resort Hotel 50
## 33542 Resort Hotel 110
## 33543 Resort Hotel 78
## 33544 Resort Hotel 70
## 33545 Resort Hotel 37
## 33546 Resort Hotel 21
## 33547 Resort Hotel 21
## 33548 Resort Hotel 70
## 33549 Resort Hotel 70
## 33550 Resort Hotel 111
## 33551 Resort Hotel 20
## 33552 Resort Hotel 139
## 33553 Resort Hotel 25
## 33554 Resort Hotel 0
## 33555 Resort Hotel 0
## 33556 Resort Hotel 19
## 33557 Resort Hotel 10
## 33558 Resort Hotel 70
## 33559 Resort Hotel 36
## 33560 Resort Hotel 3
## 33561 Resort Hotel 70
## 33562 Resort Hotel 27
## 33563 Resort Hotel 70
## 33564 Resort Hotel 65
## 33565 Resort Hotel 88
## 33566 Resort Hotel 43
## 33567 Resort Hotel 166
## 33568 Resort Hotel 25
## 33569 Resort Hotel 16
## 33570 Resort Hotel 29
## 33571 Resort Hotel 77
## 33572 Resort Hotel 3
## 33573 Resort Hotel 17
## 33574 Resort Hotel 121
## 33575 Resort Hotel 18
## 33576 Resort Hotel 88
## 33577 Resort Hotel 16
## 33578 Resort Hotel 27
## 33579 Resort Hotel 32
## 33580 Resort Hotel 48
## 33581 Resort Hotel 55
## 33582 Resort Hotel 55
## 33583 Resort Hotel 62
## 33584 Resort Hotel 62
## 33585 Resort Hotel 2
## 33586 Resort Hotel 3
## 33587 Resort Hotel 88
## 33588 Resort Hotel 88
## 33589 Resort Hotel 32
## 33590 Resort Hotel 32
## 33591 Resort Hotel 3
## 33592 Resort Hotel 13
## 33593 Resort Hotel 2
## 33594 Resort Hotel 19
## 33595 Resort Hotel 0
## 33596 Resort Hotel 18
## 33597 Resort Hotel 19
## 33598 Resort Hotel 0
## 33599 Resort Hotel 1
## 33600 Resort Hotel 16
## 33601 Resort Hotel 2
## 33602 Resort Hotel 16
## 33603 Resort Hotel 47
## 33604 Resort Hotel 25
## 33605 Resort Hotel 25
## 33606 Resort Hotel 25
## 33607 Resort Hotel 25
## 33608 Resort Hotel 6
## 33609 Resort Hotel 48
## 33610 Resort Hotel 25
## 33611 Resort Hotel 51
## 33612 Resort Hotel 0
## 33613 Resort Hotel 0
## 33614 Resort Hotel 3
## 33615 Resort Hotel 119
## 33616 Resort Hotel 119
## 33617 Resort Hotel 119
## 33618 Resort Hotel 64
## 33619 Resort Hotel 28
## 33620 Resort Hotel 47
## 33621 Resort Hotel 88
## 33622 Resort Hotel 22
## 33623 Resort Hotel 22
## 33624 Resort Hotel 22
## 33625 Resort Hotel 10
## 33626 Resort Hotel 29
## 33627 Resort Hotel 14
## 33628 Resort Hotel 153
## 33629 Resort Hotel 0
## 33630 Resort Hotel 0
## 33631 Resort Hotel 0
## 33632 Resort Hotel 18
## 33633 Resort Hotel 0
## 33634 Resort Hotel 1
## 33635 Resort Hotel 18
## 33636 Resort Hotel 4
## 33637 Resort Hotel 65
## 33638 Resort Hotel 7
## 33639 Resort Hotel 26
## 33640 Resort Hotel 0
## 33641 Resort Hotel 17
## 33642 Resort Hotel 26
## 33643 Resort Hotel 36
## 33644 Resort Hotel 26
## 33645 Resort Hotel 20
## 33646 Resort Hotel 1
## 33647 Resort Hotel 11
## 33648 Resort Hotel 69
## 33649 Resort Hotel 26
## 33650 Resort Hotel 6
## 33651 Resort Hotel 10
## 33652 Resort Hotel 7
## 33653 Resort Hotel 10
## 33654 Resort Hotel 8
## 33655 Resort Hotel 13
## 33656 Resort Hotel 21
## 33657 Resort Hotel 138
## 33658 Resort Hotel 87
## 33659 Resort Hotel 12
## 33660 Resort Hotel 80
## 33661 Resort Hotel 1
## 33662 Resort Hotel 119
## 33663 Resort Hotel 46
## 33664 Resort Hotel 3
## 33665 Resort Hotel 3
## 33666 Resort Hotel 119
## 33667 Resort Hotel 0
## 33668 Resort Hotel 15
## 33669 Resort Hotel 10
## 33670 Resort Hotel 109
## 33671 Resort Hotel 4
## 33672 Resort Hotel 32
## 33673 Resort Hotel 0
## 33674 Resort Hotel 12
## 33675 Resort Hotel 9
## 33676 Resort Hotel 18
## 33677 Resort Hotel 50
## 33678 Resort Hotel 49
## 33679 Resort Hotel 8
## 33680 Resort Hotel 91
## 33681 Resort Hotel 2
## 33682 Resort Hotel 32
## 33683 Resort Hotel 10
## 33684 Resort Hotel 15
## 33685 Resort Hotel 26
## 33686 Resort Hotel 26
## 33687 Resort Hotel 27
## 33688 Resort Hotel 81
## 33689 Resort Hotel 34
## 33690 Resort Hotel 7
## 33691 Resort Hotel 37
## 33692 Resort Hotel 11
## 33693 Resort Hotel 23
## 33694 Resort Hotel 0
## 33695 Resort Hotel 0
## 33696 Resort Hotel 61
## 33697 Resort Hotel 113
## 33698 Resort Hotel 3
## 33699 Resort Hotel 48
## 33700 Resort Hotel 27
## 33701 Resort Hotel 67
## 33702 Resort Hotel 27
## 33703 Resort Hotel 32
## 33704 Resort Hotel 2
## 33705 Resort Hotel 1
## 33706 Resort Hotel 0
## 33707 Resort Hotel 0
## 33708 Resort Hotel 0
## 33709 Resort Hotel 12
## 33710 Resort Hotel 13
## 33711 Resort Hotel 81
## 33712 Resort Hotel 37
## 33713 Resort Hotel 97
## 33714 Resort Hotel 14
## 33715 Resort Hotel 4
## 33716 Resort Hotel 0
## 33717 Resort Hotel 1
## 33718 Resort Hotel 0
## 33719 Resort Hotel 93
## 33720 Resort Hotel 5
## 33721 Resort Hotel 0
## 33722 Resort Hotel 37
## 33723 Resort Hotel 50
## 33724 Resort Hotel 41
## 33725 Resort Hotel 40
## 33726 Resort Hotel 0
## 33727 Resort Hotel 20
## 33728 Resort Hotel 0
## 33729 Resort Hotel 6
## 33730 Resort Hotel 6
## 33731 Resort Hotel 6
## 33732 Resort Hotel 13
## 33733 Resort Hotel 0
## 33734 Resort Hotel 20
## 33735 Resort Hotel 0
## 33736 Resort Hotel 3
## 33737 Resort Hotel 34
## 33738 Resort Hotel 26
## 33739 Resort Hotel 33
## 33740 Resort Hotel 0
## 33741 Resort Hotel 53
## 33742 Resort Hotel 28
## 33743 Resort Hotel 4
## 33744 Resort Hotel 4
## 33745 Resort Hotel 0
## 33746 Resort Hotel 0
## 33747 Resort Hotel 3
## 33748 Resort Hotel 9
## 33749 Resort Hotel 53
## 33750 Resort Hotel 0
## 33751 Resort Hotel 0
## 33752 Resort Hotel 28
## 33753 Resort Hotel 36
## 33754 Resort Hotel 0
## 33755 Resort Hotel 33
## 33756 Resort Hotel 7
## 33757 Resort Hotel 0
## 33758 Resort Hotel 1
## 33759 Resort Hotel 0
## 33760 Resort Hotel 0
## 33761 Resort Hotel 40
## 33762 Resort Hotel 0
## 33763 Resort Hotel 28
## 33764 Resort Hotel 126
## 33765 Resort Hotel 61
## 33766 Resort Hotel 0
## 33767 Resort Hotel 5
## 33768 Resort Hotel 1
## 33769 Resort Hotel 1
## 33770 Resort Hotel 101
## 33771 Resort Hotel 27
## 33772 Resort Hotel 0
## 33773 Resort Hotel 0
## 33774 Resort Hotel 1
## 33775 Resort Hotel 7
## 33776 Resort Hotel 9
## 33777 Resort Hotel 17
## 33778 Resort Hotel 16
## 33779 Resort Hotel 1
## 33780 Resort Hotel 1
## 33781 Resort Hotel 150
## 33782 Resort Hotel 98
## 33783 Resort Hotel 7
## 33784 Resort Hotel 91
## 33785 Resort Hotel 78
## 33786 Resort Hotel 69
## 33787 Resort Hotel 0
## 33788 Resort Hotel 0
## 33789 Resort Hotel 0
## 33790 Resort Hotel 0
## 33791 Resort Hotel 4
## 33792 Resort Hotel 0
## 33793 Resort Hotel 7
## 33794 Resort Hotel 7
## 33795 Resort Hotel 7
## 33796 Resort Hotel 7
## 33797 Resort Hotel 7
## 33798 Resort Hotel 7
## 33799 Resort Hotel 7
## 33800 Resort Hotel 7
## 33801 Resort Hotel 7
## 33802 Resort Hotel 7
## 33803 Resort Hotel 7
## 33804 Resort Hotel 7
## 33805 Resort Hotel 7
## 33806 Resort Hotel 6
## 33807 Resort Hotel 7
## 33808 Resort Hotel 7
## 33809 Resort Hotel 7
## 33810 Resort Hotel 0
## 33811 Resort Hotel 1
## 33812 Resort Hotel 6
## 33813 Resort Hotel 7
## 33814 Resort Hotel 163
## 33815 Resort Hotel 7
## 33816 Resort Hotel 163
## 33817 Resort Hotel 1
## 33818 Resort Hotel 120
## 33819 Resort Hotel 11
## 33820 Resort Hotel 0
## 33821 Resort Hotel 0
## 33822 Resort Hotel 1
## 33823 Resort Hotel 0
## 33824 Resort Hotel 7
## 33825 Resort Hotel 7
## 33826 Resort Hotel 0
## 33827 Resort Hotel 307
## 33828 Resort Hotel 0
## 33829 Resort Hotel 307
## 33830 Resort Hotel 53
## 33831 Resort Hotel 7
## 33832 Resort Hotel 0
## 33833 Resort Hotel 3
## 33834 Resort Hotel 146
## 33835 Resort Hotel 0
## 33836 Resort Hotel 1
## 33837 Resort Hotel 2
## 33838 Resort Hotel 138
## 33839 Resort Hotel 138
## 33840 Resort Hotel 138
## 33841 Resort Hotel 112
## 33842 Resort Hotel 4
## 33843 Resort Hotel 3
## 33844 Resort Hotel 128
## 33845 Resort Hotel 128
## 33846 Resort Hotel 6
## 33847 Resort Hotel 7
## 33848 Resort Hotel 7
## 33849 Resort Hotel 7
## 33850 Resort Hotel 7
## 33851 Resort Hotel 7
## 33852 Resort Hotel 7
## 33853 Resort Hotel 7
## 33854 Resort Hotel 7
## 33855 Resort Hotel 7
## 33856 Resort Hotel 7
## 33857 Resort Hotel 7
## 33858 Resort Hotel 7
## 33859 Resort Hotel 56
## 33860 Resort Hotel 8
## 33861 Resort Hotel 7
## 33862 Resort Hotel 6
## 33863 Resort Hotel 7
## 33864 Resort Hotel 7
## 33865 Resort Hotel 7
## 33866 Resort Hotel 7
## 33867 Resort Hotel 7
## 33868 Resort Hotel 7
## 33869 Resort Hotel 7
## 33870 Resort Hotel 7
## 33871 Resort Hotel 7
## 33872 Resort Hotel 7
## 33873 Resort Hotel 6
## 33874 Resort Hotel 5
## 33875 Resort Hotel 7
## 33876 Resort Hotel 7
## 33877 Resort Hotel 7
## 33878 Resort Hotel 7
## 33879 Resort Hotel 6
## 33880 Resort Hotel 0
## 33881 Resort Hotel 7
## 33882 Resort Hotel 6
## 33883 Resort Hotel 6
## 33884 Resort Hotel 7
## 33885 Resort Hotel 56
## 33886 Resort Hotel 7
## 33887 Resort Hotel 17
## 33888 Resort Hotel 7
## 33889 Resort Hotel 14
## 33890 Resort Hotel 7
## 33891 Resort Hotel 1
## 33892 Resort Hotel 7
## 33893 Resort Hotel 7
## 33894 Resort Hotel 192
## 33895 Resort Hotel 7
## 33896 Resort Hotel 7
## 33897 Resort Hotel 196
## 33898 Resort Hotel 7
## 33899 Resort Hotel 7
## 33900 Resort Hotel 7
## 33901 Resort Hotel 7
## 33902 Resort Hotel 7
## 33903 Resort Hotel 7
## 33904 Resort Hotel 7
## 33905 Resort Hotel 7
## 33906 Resort Hotel 7
## 33907 Resort Hotel 39
## 33908 Resort Hotel 7
## 33909 Resort Hotel 7
## 33910 Resort Hotel 34
## 33911 Resort Hotel 7
## 33912 Resort Hotel 125
## 33913 Resort Hotel 7
## 33914 Resort Hotel 7
## 33915 Resort Hotel 7
## 33916 Resort Hotel 7
## 33917 Resort Hotel 7
## 33918 Resort Hotel 192
## 33919 Resort Hotel 39
## 33920 Resort Hotel 7
## 33921 Resort Hotel 7
## 33922 Resort Hotel 7
## 33923 Resort Hotel 7
## 33924 Resort Hotel 39
## 33925 Resort Hotel 71
## 33926 Resort Hotel 0
## 33927 Resort Hotel 38
## 33928 Resort Hotel 16
## 33929 Resort Hotel 2
## 33930 Resort Hotel 5
## 33931 Resort Hotel 7
## 33932 Resort Hotel 33
## 33933 Resort Hotel 1
## 33934 Resort Hotel 0
## 33935 Resort Hotel 7
## 33936 Resort Hotel 7
## 33937 Resort Hotel 13
## 33938 Resort Hotel 0
## 33939 Resort Hotel 0
## 33940 Resort Hotel 0
## 33941 Resort Hotel 11
## 33942 Resort Hotel 1
## 33943 Resort Hotel 11
## 33944 Resort Hotel 40
## 33945 Resort Hotel 155
## 33946 Resort Hotel 0
## 33947 Resort Hotel 0
## 33948 Resort Hotel 161
## 33949 Resort Hotel 0
## 33950 Resort Hotel 1
## 33951 Resort Hotel 4
## 33952 Resort Hotel 1
## 33953 Resort Hotel 105
## 33954 Resort Hotel 0
## 33955 Resort Hotel 7
## 33956 Resort Hotel 25
## 33957 Resort Hotel 1
## 33958 Resort Hotel 1
## 33959 Resort Hotel 2
## 33960 Resort Hotel 1
## 33961 Resort Hotel 1
## 33962 Resort Hotel 201
## 33963 Resort Hotel 5
## 33964 Resort Hotel 0
## 33965 Resort Hotel 8
## 33966 Resort Hotel 6
## 33967 Resort Hotel 1
## 33968 Resort Hotel 11
## 33969 Resort Hotel 20
## 33970 Resort Hotel 12
## 33971 Resort Hotel 0
## 33972 Resort Hotel 1
## 33973 Resort Hotel 145
## 33974 Resort Hotel 124
## 33975 Resort Hotel 5
## 33976 Resort Hotel 110
## 33977 Resort Hotel 191
## 33978 Resort Hotel 191
## 33979 Resort Hotel 145
## 33980 Resort Hotel 0
## 33981 Resort Hotel 0
## 33982 Resort Hotel 14
## 33983 Resort Hotel 1
## 33984 Resort Hotel 0
## 33985 Resort Hotel 3
## 33986 Resort Hotel 6
## 33987 Resort Hotel 18
## 33988 Resort Hotel 200
## 33989 Resort Hotel 50
## 33990 Resort Hotel 2
## 33991 Resort Hotel 48
## 33992 Resort Hotel 2
## 33993 Resort Hotel 70
## 33994 Resort Hotel 63
## 33995 Resort Hotel 5
## 33996 Resort Hotel 154
## 33997 Resort Hotel 1
## 33998 Resort Hotel 0
## 33999 Resort Hotel 32
## 34000 Resort Hotel 35
## 34001 Resort Hotel 35
## 34002 Resort Hotel 3
## 34003 Resort Hotel 107
## 34004 Resort Hotel 107
## 34005 Resort Hotel 107
## 34006 Resort Hotel 107
## 34007 Resort Hotel 107
## 34008 Resort Hotel 107
## 34009 Resort Hotel 107
## 34010 Resort Hotel 107
## 34011 Resort Hotel 107
## 34012 Resort Hotel 107
## 34013 Resort Hotel 107
## 34014 Resort Hotel 107
## 34015 Resort Hotel 107
## 34016 Resort Hotel 107
## 34017 Resort Hotel 107
## 34018 Resort Hotel 107
## 34019 Resort Hotel 77
## 34020 Resort Hotel 65
## 34021 Resort Hotel 19
## 34022 Resort Hotel 1
## 34023 Resort Hotel 0
## 34024 Resort Hotel 19
## 34025 Resort Hotel 126
## 34026 Resort Hotel 19
## 34027 Resort Hotel 112
## 34028 Resort Hotel 19
## 34029 Resort Hotel 19
## 34030 Resort Hotel 1
## 34031 Resort Hotel 211
## 34032 Resort Hotel 3
## 34033 Resort Hotel 3
## 34034 Resort Hotel 27
## 34035 Resort Hotel 29
## 34036 Resort Hotel 14
## 34037 Resort Hotel 15
## 34038 Resort Hotel 19
## 34039 Resort Hotel 126
## 34040 Resort Hotel 19
## 34041 Resort Hotel 41
## 34042 Resort Hotel 0
## 34043 Resort Hotel 216
## 34044 Resort Hotel 9
## 34045 Resort Hotel 9
## 34046 Resort Hotel 2
## 34047 Resort Hotel 117
## 34048 Resort Hotel 48
## 34049 Resort Hotel 312
## 34050 Resort Hotel 312
## 34051 Resort Hotel 312
## 34052 Resort Hotel 312
## 34053 Resort Hotel 312
## 34054 Resort Hotel 312
## 34055 Resort Hotel 171
## 34056 Resort Hotel 171
## 34057 Resort Hotel 171
## 34058 Resort Hotel 171
## 34059 Resort Hotel 171
## 34060 Resort Hotel 171
## 34061 Resort Hotel 53
## 34062 Resort Hotel 53
## 34063 Resort Hotel 53
## 34064 Resort Hotel 53
## 34065 Resort Hotel 53
## 34066 Resort Hotel 53
## 34067 Resort Hotel 312
## 34068 Resort Hotel 53
## 34069 Resort Hotel 312
## 34070 Resort Hotel 312
## 34071 Resort Hotel 1
## 34072 Resort Hotel 143
## 34073 Resort Hotel 17
## 34074 Resort Hotel 17
## 34075 Resort Hotel 115
## 34076 Resort Hotel 115
## 34077 Resort Hotel 8
## 34078 Resort Hotel 115
## 34079 Resort Hotel 179
## 34080 Resort Hotel 28
## 34081 Resort Hotel 75
## 34082 Resort Hotel 195
## 34083 Resort Hotel 169
## 34084 Resort Hotel 9
## 34085 Resort Hotel 169
## 34086 Resort Hotel 2
## 34087 Resort Hotel 70
## 34088 Resort Hotel 8
## 34089 Resort Hotel 13
## 34090 Resort Hotel 4
## 34091 Resort Hotel 1
## 34092 Resort Hotel 1
## 34093 Resort Hotel 1
## 34094 Resort Hotel 2
## 34095 Resort Hotel 0
## 34096 Resort Hotel 30
## 34097 Resort Hotel 49
## 34098 Resort Hotel 43
## 34099 Resort Hotel 4
## 34100 Resort Hotel 2
## 34101 Resort Hotel 32
## 34102 Resort Hotel 0
## 34103 Resort Hotel 0
## 34104 Resort Hotel 195
## 34105 Resort Hotel 99
## 34106 Resort Hotel 274
## 34107 Resort Hotel 274
## 34108 Resort Hotel 274
## 34109 Resort Hotel 274
## 34110 Resort Hotel 274
## 34111 Resort Hotel 274
## 34112 Resort Hotel 274
## 34113 Resort Hotel 1
## 34114 Resort Hotel 31
## 34115 Resort Hotel 31
## 34116 Resort Hotel 2
## 34117 Resort Hotel 220
## 34118 Resort Hotel 39
## 34119 Resort Hotel 15
## 34120 Resort Hotel 29
## 34121 Resort Hotel 89
## 34122 Resort Hotel 0
## 34123 Resort Hotel 172
## 34124 Resort Hotel 89
## 34125 Resort Hotel 110
## 34126 Resort Hotel 134
## 34127 Resort Hotel 134
## 34128 Resort Hotel 134
## 34129 Resort Hotel 112
## 34130 Resort Hotel 112
## 34131 Resort Hotel 110
## 34132 Resort Hotel 112
## 34133 Resort Hotel 112
## 34134 Resort Hotel 110
## 34135 Resort Hotel 112
## 34136 Resort Hotel 112
## 34137 Resort Hotel 110
## 34138 Resort Hotel 112
## 34139 Resort Hotel 112
## 34140 Resort Hotel 112
## 34141 Resort Hotel 112
## 34142 Resort Hotel 9
## 34143 Resort Hotel 146
## 34144 Resort Hotel 112
## 34145 Resort Hotel 10
## 34146 Resort Hotel 112
## 34147 Resort Hotel 167
## 34148 Resort Hotel 0
## 34149 Resort Hotel 8
## 34150 Resort Hotel 37
## 34151 Resort Hotel 0
## 34152 Resort Hotel 159
## 34153 Resort Hotel 201
## 34154 Resort Hotel 195
## 34155 Resort Hotel 176
## 34156 Resort Hotel 10
## 34157 Resort Hotel 195
## 34158 Resort Hotel 5
## 34159 Resort Hotel 201
## 34160 Resort Hotel 56
## 34161 Resort Hotel 189
## 34162 Resort Hotel 195
## 34163 Resort Hotel 195
## 34164 Resort Hotel 195
## 34165 Resort Hotel 195
## 34166 Resort Hotel 195
## 34167 Resort Hotel 195
## 34168 Resort Hotel 195
## 34169 Resort Hotel 195
## 34170 Resort Hotel 1
## 34171 Resort Hotel 0
## 34172 Resort Hotel 226
## 34173 Resort Hotel 226
## 34174 Resort Hotel 67
## 34175 Resort Hotel 4
## 34176 Resort Hotel 8
## 34177 Resort Hotel 97
## 34178 Resort Hotel 112
## 34179 Resort Hotel 1
## 34180 Resort Hotel 0
## 34181 Resort Hotel 0
## 34182 Resort Hotel 4
## 34183 Resort Hotel 0
## 34184 Resort Hotel 3
## 34185 Resort Hotel 3
## 34186 Resort Hotel 1
## 34187 Resort Hotel 22
## 34188 Resort Hotel 0
## 34189 Resort Hotel 34
## 34190 Resort Hotel 1
## 34191 Resort Hotel 3
## 34192 Resort Hotel 3
## 34193 Resort Hotel 2
## 34194 Resort Hotel 11
## 34195 Resort Hotel 1
## 34196 Resort Hotel 138
## 34197 Resort Hotel 12
## 34198 Resort Hotel 14
## 34199 Resort Hotel 11
## 34200 Resort Hotel 24
## 34201 Resort Hotel 27
## 34202 Resort Hotel 24
## 34203 Resort Hotel 27
## 34204 Resort Hotel 115
## 34205 Resort Hotel 26
## 34206 Resort Hotel 24
## 34207 Resort Hotel 0
## 34208 Resort Hotel 12
## 34209 Resort Hotel 20
## 34210 Resort Hotel 0
## 34211 Resort Hotel 2
## 34212 Resort Hotel 60
## 34213 Resort Hotel 246
## 34214 Resort Hotel 26
## 34215 Resort Hotel 2
## 34216 Resort Hotel 2
## 34217 Resort Hotel 155
## 34218 Resort Hotel 355
## 34219 Resort Hotel 62
## 34220 Resort Hotel 30
## 34221 Resort Hotel 74
## 34222 Resort Hotel 29
## 34223 Resort Hotel 112
## 34224 Resort Hotel 112
## 34225 Resort Hotel 112
## 34226 Resort Hotel 125
## 34227 Resort Hotel 131
## 34228 Resort Hotel 140
## 34229 Resort Hotel 140
## 34230 Resort Hotel 127
## 34231 Resort Hotel 4
## 34232 Resort Hotel 7
## 34233 Resort Hotel 112
## 34234 Resort Hotel 88
## 34235 Resort Hotel 112
## 34236 Resort Hotel 57
## 34237 Resort Hotel 339
## 34238 Resort Hotel 339
## 34239 Resort Hotel 339
## 34240 Resort Hotel 339
## 34241 Resort Hotel 339
## 34242 Resort Hotel 112
## 34243 Resort Hotel 339
## 34244 Resort Hotel 339
## 34245 Resort Hotel 339
## 34246 Resort Hotel 57
## 34247 Resort Hotel 120
## 34248 Resort Hotel 339
## 34249 Resort Hotel 202
## 34250 Resort Hotel 339
## 34251 Resort Hotel 112
## 34252 Resort Hotel 46
## 34253 Resort Hotel 339
## 34254 Resort Hotel 339
## 34255 Resort Hotel 339
## 34256 Resort Hotel 339
## 34257 Resort Hotel 112
## 34258 Resort Hotel 112
## 34259 Resort Hotel 112
## 34260 Resort Hotel 46
## 34261 Resort Hotel 112
## 34262 Resort Hotel 52
## 34263 Resort Hotel 50
## 34264 Resort Hotel 112
## 34265 Resort Hotel 46
## 34266 Resort Hotel 15
## 34267 Resort Hotel 15
## 34268 Resort Hotel 88
## 34269 Resort Hotel 186
## 34270 Resort Hotel 88
## 34271 Resort Hotel 0
## 34272 Resort Hotel 148
## 34273 Resort Hotel 148
## 34274 Resort Hotel 88
## 34275 Resort Hotel 88
## 34276 Resort Hotel 180
## 34277 Resort Hotel 0
## 34278 Resort Hotel 186
## 34279 Resort Hotel 88
## 34280 Resort Hotel 88
## 34281 Resort Hotel 112
## 34282 Resort Hotel 12
## 34283 Resort Hotel 26
## 34284 Resort Hotel 175
## 34285 Resort Hotel 21
## 34286 Resort Hotel 26
## 34287 Resort Hotel 26
## 34288 Resort Hotel 31
## 34289 Resort Hotel 241
## 34290 Resort Hotel 125
## 34291 Resort Hotel 66
## 34292 Resort Hotel 2
## 34293 Resort Hotel 2
## 34294 Resort Hotel 26
## 34295 Resort Hotel 144
## 34296 Resort Hotel 3
## 34297 Resort Hotel 1
## 34298 Resort Hotel 26
## 34299 Resort Hotel 3
## 34300 Resort Hotel 26
## 34301 Resort Hotel 1
## 34302 Resort Hotel 6
## 34303 Resort Hotel 21
## 34304 Resort Hotel 2
## 34305 Resort Hotel 1
## 34306 Resort Hotel 8
## 34307 Resort Hotel 26
## 34308 Resort Hotel 313
## 34309 Resort Hotel 26
## 34310 Resort Hotel 126
## 34311 Resort Hotel 23
## 34312 Resort Hotel 126
## 34313 Resort Hotel 138
## 34314 Resort Hotel 26
## 34315 Resort Hotel 2
## 34316 Resort Hotel 26
## 34317 Resort Hotel 25
## 34318 Resort Hotel 207
## 34319 Resort Hotel 4
## 34320 Resort Hotel 4
## 34321 Resort Hotel 207
## 34322 Resort Hotel 207
## 34323 Resort Hotel 0
## 34324 Resort Hotel 0
## 34325 Resort Hotel 0
## 34326 Resort Hotel 0
## 34327 Resort Hotel 68
## 34328 Resort Hotel 2
## 34329 Resort Hotel 89
## 34330 Resort Hotel 9
## 34331 Resort Hotel 2
## 34332 Resort Hotel 0
## 34333 Resort Hotel 0
## 34334 Resort Hotel 207
## 34335 Resort Hotel 13
## 34336 Resort Hotel 12
## 34337 Resort Hotel 0
## 34338 Resort Hotel 3
## 34339 Resort Hotel 0
## 34340 Resort Hotel 0
## 34341 Resort Hotel 0
## 34342 Resort Hotel 280
## 34343 Resort Hotel 131
## 34344 Resort Hotel 219
## 34345 Resort Hotel 219
## 34346 Resort Hotel 205
## 34347 Resort Hotel 15
## 34348 Resort Hotel 295
## 34349 Resort Hotel 295
## 34350 Resort Hotel 24
## 34351 Resort Hotel 126
## 34352 Resort Hotel 0
## 34353 Resort Hotel 4
## 34354 Resort Hotel 0
## 34355 Resort Hotel 3
## 34356 Resort Hotel 33
## 34357 Resort Hotel 67
## 34358 Resort Hotel 18
## 34359 Resort Hotel 15
## 34360 Resort Hotel 19
## 34361 Resort Hotel 19
## 34362 Resort Hotel 16
## 34363 Resort Hotel 16
## 34364 Resort Hotel 1
## 34365 Resort Hotel 337
## 34366 Resort Hotel 168
## 34367 Resort Hotel 181
## 34368 Resort Hotel 181
## 34369 Resort Hotel 181
## 34370 Resort Hotel 96
## 34371 Resort Hotel 16
## 34372 Resort Hotel 181
## 34373 Resort Hotel 5
## 34374 Resort Hotel 96
## 34375 Resort Hotel 16
## 34376 Resort Hotel 96
## 34377 Resort Hotel 96
## 34378 Resort Hotel 116
## 34379 Resort Hotel 116
## 34380 Resort Hotel 41
## 34381 Resort Hotel 41
## 34382 Resort Hotel 41
## 34383 Resort Hotel 5
## 34384 Resort Hotel 34
## 34385 Resort Hotel 96
## 34386 Resort Hotel 0
## 34387 Resort Hotel 117
## 34388 Resort Hotel 124
## 34389 Resort Hotel 65
## 34390 Resort Hotel 65
## 34391 Resort Hotel 96
## 34392 Resort Hotel 96
## 34393 Resort Hotel 96
## 34394 Resort Hotel 96
## 34395 Resort Hotel 96
## 34396 Resort Hotel 96
## 34397 Resort Hotel 96
## 34398 Resort Hotel 96
## 34399 Resort Hotel 8
## 34400 Resort Hotel 96
## 34401 Resort Hotel 96
## 34402 Resort Hotel 96
## 34403 Resort Hotel 96
## 34404 Resort Hotel 96
## 34405 Resort Hotel 96
## 34406 Resort Hotel 6
## 34407 Resort Hotel 28
## 34408 Resort Hotel 2
## 34409 Resort Hotel 7
## 34410 Resort Hotel 0
## 34411 Resort Hotel 23
## 34412 Resort Hotel 1
## 34413 Resort Hotel 9
## 34414 Resort Hotel 34
## 34415 Resort Hotel 34
## 34416 Resort Hotel 0
## 34417 Resort Hotel 0
## 34418 Resort Hotel 137
## 34419 Resort Hotel 156
## 34420 Resort Hotel 1
## 34421 Resort Hotel 0
## 34422 Resort Hotel 232
## 34423 Resort Hotel 30
## 34424 Resort Hotel 45
## 34425 Resort Hotel 15
## 34426 Resort Hotel 47
## 34427 Resort Hotel 47
## 34428 Resort Hotel 47
## 34429 Resort Hotel 46
## 34430 Resort Hotel 15
## 34431 Resort Hotel 47
## 34432 Resort Hotel 160
## 34433 Resort Hotel 47
## 34434 Resort Hotel 73
## 34435 Resort Hotel 192
## 34436 Resort Hotel 31
## 34437 Resort Hotel 78
## 34438 Resort Hotel 1
## 34439 Resort Hotel 41
## 34440 Resort Hotel 15
## 34441 Resort Hotel 84
## 34442 Resort Hotel 61
## 34443 Resort Hotel 84
## 34444 Resort Hotel 84
## 34445 Resort Hotel 181
## 34446 Resort Hotel 84
## 34447 Resort Hotel 84
## 34448 Resort Hotel 181
## 34449 Resort Hotel 181
## 34450 Resort Hotel 84
## 34451 Resort Hotel 9
## 34452 Resort Hotel 96
## 34453 Resort Hotel 84
## 34454 Resort Hotel 84
## 34455 Resort Hotel 63
## 34456 Resort Hotel 84
## 34457 Resort Hotel 96
## 34458 Resort Hotel 181
## 34459 Resort Hotel 26
## 34460 Resort Hotel 96
## 34461 Resort Hotel 96
## 34462 Resort Hotel 96
## 34463 Resort Hotel 96
## 34464 Resort Hotel 96
## 34465 Resort Hotel 152
## 34466 Resort Hotel 96
## 34467 Resort Hotel 96
## 34468 Resort Hotel 96
## 34469 Resort Hotel 96
## 34470 Resort Hotel 156
## 34471 Resort Hotel 156
## 34472 Resort Hotel 73
## 34473 Resort Hotel 29
## 34474 Resort Hotel 23
## 34475 Resort Hotel 10
## 34476 Resort Hotel 145
## 34477 Resort Hotel 2
## 34478 Resort Hotel 11
## 34479 Resort Hotel 43
## 34480 Resort Hotel 3
## 34481 Resort Hotel 3
## 34482 Resort Hotel 43
## 34483 Resort Hotel 13
## 34484 Resort Hotel 43
## 34485 Resort Hotel 31
## 34486 Resort Hotel 96
## 34487 Resort Hotel 29
## 34488 Resort Hotel 237
## 34489 Resort Hotel 65
## 34490 Resort Hotel 65
## 34491 Resort Hotel 12
## 34492 Resort Hotel 166
## 34493 Resort Hotel 166
## 34494 Resort Hotel 31
## 34495 Resort Hotel 31
## 34496 Resort Hotel 31
## 34497 Resort Hotel 31
## 34498 Resort Hotel 18
## 34499 Resort Hotel 31
## 34500 Resort Hotel 31
## 34501 Resort Hotel 31
## 34502 Resort Hotel 143
## 34503 Resort Hotel 31
## 34504 Resort Hotel 192
## 34505 Resort Hotel 12
## 34506 Resort Hotel 326
## 34507 Resort Hotel 44
## 34508 Resort Hotel 73
## 34509 Resort Hotel 73
## 34510 Resort Hotel 313
## 34511 Resort Hotel 241
## 34512 Resort Hotel 241
## 34513 Resort Hotel 241
## 34514 Resort Hotel 241
## 34515 Resort Hotel 284
## 34516 Resort Hotel 241
## 34517 Resort Hotel 241
## 34518 Resort Hotel 241
## 34519 Resort Hotel 241
## 34520 Resort Hotel 241
## 34521 Resort Hotel 241
## 34522 Resort Hotel 241
## 34523 Resort Hotel 241
## 34524 Resort Hotel 241
## 34525 Resort Hotel 207
## 34526 Resort Hotel 7
## 34527 Resort Hotel 45
## 34528 Resort Hotel 15
## 34529 Resort Hotel 15
## 34530 Resort Hotel 150
## 34531 Resort Hotel 40
## 34532 Resort Hotel 152
## 34533 Resort Hotel 133
## 34534 Resort Hotel 23
## 34535 Resort Hotel 8
## 34536 Resort Hotel 0
## 34537 Resort Hotel 35
## 34538 Resort Hotel 1
## 34539 Resort Hotel 120
## 34540 Resort Hotel 120
## 34541 Resort Hotel 3
## 34542 Resort Hotel 39
## 34543 Resort Hotel 0
## 34544 Resort Hotel 0
## 34545 Resort Hotel 38
## 34546 Resort Hotel 226
## 34547 Resort Hotel 226
## 34548 Resort Hotel 152
## 34549 Resort Hotel 214
## 34550 Resort Hotel 152
## 34551 Resort Hotel 0
## 34552 Resort Hotel 225
## 34553 Resort Hotel 226
## 34554 Resort Hotel 141
## 34555 Resort Hotel 22
## 34556 Resort Hotel 22
## 34557 Resort Hotel 226
## 34558 Resort Hotel 214
## 34559 Resort Hotel 226
## 34560 Resort Hotel 226
## 34561 Resort Hotel 226
## 34562 Resort Hotel 54
## 34563 Resort Hotel 226
## 34564 Resort Hotel 226
## 34565 Resort Hotel 167
## 34566 Resort Hotel 226
## 34567 Resort Hotel 1
## 34568 Resort Hotel 226
## 34569 Resort Hotel 140
## 34570 Resort Hotel 24
## 34571 Resort Hotel 48
## 34572 Resort Hotel 48
## 34573 Resort Hotel 163
## 34574 Resort Hotel 49
## 34575 Resort Hotel 338
## 34576 Resort Hotel 0
## 34577 Resort Hotel 33
## 34578 Resort Hotel 4
## 34579 Resort Hotel 1
## 34580 Resort Hotel 4
## 34581 Resort Hotel 48
## 34582 Resort Hotel 45
## 34583 Resort Hotel 41
## 34584 Resort Hotel 48
## 34585 Resort Hotel 0
## 34586 Resort Hotel 42
## 34587 Resort Hotel 41
## 34588 Resort Hotel 152
## 34589 Resort Hotel 41
## 34590 Resort Hotel 27
## 34591 Resort Hotel 152
## 34592 Resort Hotel 48
## 34593 Resort Hotel 149
## 34594 Resort Hotel 162
## 34595 Resort Hotel 48
## 34596 Resort Hotel 0
## 34597 Resort Hotel 41
## 34598 Resort Hotel 48
## 34599 Resort Hotel 48
## 34600 Resort Hotel 48
## 34601 Resort Hotel 48
## 34602 Resort Hotel 48
## 34603 Resort Hotel 68
## 34604 Resort Hotel 68
## 34605 Resort Hotel 18
## 34606 Resort Hotel 119
## 34607 Resort Hotel 75
## 34608 Resort Hotel 0
## 34609 Resort Hotel 2
## 34610 Resort Hotel 7
## 34611 Resort Hotel 65
## 34612 Resort Hotel 53
## 34613 Resort Hotel 0
## 34614 Resort Hotel 214
## 34615 Resort Hotel 242
## 34616 Resort Hotel 214
## 34617 Resort Hotel 0
## 34618 Resort Hotel 0
## 34619 Resort Hotel 214
## 34620 Resort Hotel 214
## 34621 Resort Hotel 214
## 34622 Resort Hotel 214
## 34623 Resort Hotel 214
## 34624 Resort Hotel 32
## 34625 Resort Hotel 77
## 34626 Resort Hotel 7
## 34627 Resort Hotel 74
## 34628 Resort Hotel 214
## 34629 Resort Hotel 29
## 34630 Resort Hotel 220
## 34631 Resort Hotel 69
## 34632 Resort Hotel 23
## 34633 Resort Hotel 57
## 34634 Resort Hotel 220
## 34635 Resort Hotel 39
## 34636 Resort Hotel 0
## 34637 Resort Hotel 0
## 34638 Resort Hotel 0
## 34639 Resort Hotel 1
## 34640 Resort Hotel 2
## 34641 Resort Hotel 1
## 34642 Resort Hotel 214
## 34643 Resort Hotel 157
## 34644 Resort Hotel 214
## 34645 Resort Hotel 10
## 34646 Resort Hotel 10
## 34647 Resort Hotel 214
## 34648 Resort Hotel 149
## 34649 Resort Hotel 146
## 34650 Resort Hotel 146
## 34651 Resort Hotel 146
## 34652 Resort Hotel 64
## 34653 Resort Hotel 146
## 34654 Resort Hotel 146
## 34655 Resort Hotel 0
## 34656 Resort Hotel 2
## 34657 Resort Hotel 0
## 34658 Resort Hotel 0
## 34659 Resort Hotel 0
## 34660 Resort Hotel 2
## 34661 Resort Hotel 1
## 34662 Resort Hotel 1
## 34663 Resort Hotel 64
## 34664 Resort Hotel 25
## 34665 Resort Hotel 2
## 34666 Resort Hotel 139
## 34667 Resort Hotel 71
## 34668 Resort Hotel 166
## 34669 Resort Hotel 15
## 34670 Resort Hotel 9
## 34671 Resort Hotel 9
## 34672 Resort Hotel 9
## 34673 Resort Hotel 90
## 34674 Resort Hotel 103
## 34675 Resort Hotel 90
## 34676 Resort Hotel 115
## 34677 Resort Hotel 28
## 34678 Resort Hotel 17
## 34679 Resort Hotel 6
## 34680 Resort Hotel 28
## 34681 Resort Hotel 112
## 34682 Resort Hotel 113
## 34683 Resort Hotel 74
## 34684 Resort Hotel 86
## 34685 Resort Hotel 86
## 34686 Resort Hotel 64
## 34687 Resort Hotel 29
## 34688 Resort Hotel 7
## 34689 Resort Hotel 12
## 34690 Resort Hotel 38
## 34691 Resort Hotel 7
## 34692 Resort Hotel 26
## 34693 Resort Hotel 29
## 34694 Resort Hotel 26
## 34695 Resort Hotel 25
## 34696 Resort Hotel 28
## 34697 Resort Hotel 23
## 34698 Resort Hotel 32
## 34699 Resort Hotel 8
## 34700 Resort Hotel 222
## 34701 Resort Hotel 71
## 34702 Resort Hotel 0
## 34703 Resort Hotel 1
## 34704 Resort Hotel 38
## 34705 Resort Hotel 0
## 34706 Resort Hotel 0
## 34707 Resort Hotel 0
## 34708 Resort Hotel 0
## 34709 Resort Hotel 22
## 34710 Resort Hotel 11
## 34711 Resort Hotel 5
## 34712 Resort Hotel 122
## 34713 Resort Hotel 38
## 34714 Resort Hotel 151
## 34715 Resort Hotel 250
## 34716 Resort Hotel 229
## 34717 Resort Hotel 85
## 34718 Resort Hotel 70
## 34719 Resort Hotel 62
## 34720 Resort Hotel 66
## 34721 Resort Hotel 62
## 34722 Resort Hotel 52
## 34723 Resort Hotel 52
## 34724 Resort Hotel 0
## 34725 Resort Hotel 9
## 34726 Resort Hotel 20
## 34727 Resort Hotel 63
## 34728 Resort Hotel 170
## 34729 Resort Hotel 5
## 34730 Resort Hotel 72
## 34731 Resort Hotel 92
## 34732 Resort Hotel 256
## 34733 Resort Hotel 61
## 34734 Resort Hotel 66
## 34735 Resort Hotel 19
## 34736 Resort Hotel 60
## 34737 Resort Hotel 57
## 34738 Resort Hotel 2
## 34739 Resort Hotel 56
## 34740 Resort Hotel 32
## 34741 Resort Hotel 173
## 34742 Resort Hotel 121
## 34743 Resort Hotel 20
## 34744 Resort Hotel 25
## 34745 Resort Hotel 159
## 34746 Resort Hotel 159
## 34747 Resort Hotel 159
## 34748 Resort Hotel 159
## 34749 Resort Hotel 159
## 34750 Resort Hotel 159
## 34751 Resort Hotel 29
## 34752 Resort Hotel 142
## 34753 Resort Hotel 30
## 34754 Resort Hotel 103
## 34755 Resort Hotel 165
## 34756 Resort Hotel 165
## 34757 Resort Hotel 3
## 34758 Resort Hotel 3
## 34759 Resort Hotel 0
## 34760 Resort Hotel 42
## 34761 Resort Hotel 42
## 34762 Resort Hotel 83
## 34763 Resort Hotel 150
## 34764 Resort Hotel 26
## 34765 Resort Hotel 27
## 34766 Resort Hotel 47
## 34767 Resort Hotel 37
## 34768 Resort Hotel 22
## 34769 Resort Hotel 98
## 34770 Resort Hotel 62
## 34771 Resort Hotel 24
## 34772 Resort Hotel 26
## 34773 Resort Hotel 27
## 34774 Resort Hotel 7
## 34775 Resort Hotel 3
## 34776 Resort Hotel 18
## 34777 Resort Hotel 211
## 34778 Resort Hotel 19
## 34779 Resort Hotel 159
## 34780 Resort Hotel 40
## 34781 Resort Hotel 155
## 34782 Resort Hotel 67
## 34783 Resort Hotel 30
## 34784 Resort Hotel 149
## 34785 Resort Hotel 155
## 34786 Resort Hotel 25
## 34787 Resort Hotel 0
## 34788 Resort Hotel 69
## 34789 Resort Hotel 1
## 34790 Resort Hotel 1
## 34791 Resort Hotel 4
## 34792 Resort Hotel 89
## 34793 Resort Hotel 20
## 34794 Resort Hotel 8
## 34795 Resort Hotel 60
## 34796 Resort Hotel 76
## 34797 Resort Hotel 49
## 34798 Resort Hotel 14
## 34799 Resort Hotel 152
## 34800 Resort Hotel 20
## 34801 Resort Hotel 35
## 34802 Resort Hotel 0
## 34803 Resort Hotel 3
## 34804 Resort Hotel 11
## 34805 Resort Hotel 32
## 34806 Resort Hotel 38
## 34807 Resort Hotel 0
## 34808 Resort Hotel 29
## 34809 Resort Hotel 33
## 34810 Resort Hotel 1
## 34811 Resort Hotel 54
## 34812 Resort Hotel 9
## 34813 Resort Hotel 15
## 34814 Resort Hotel 42
## 34815 Resort Hotel 107
## 34816 Resort Hotel 27
## 34817 Resort Hotel 37
## 34818 Resort Hotel 5
## 34819 Resort Hotel 74
## 34820 Resort Hotel 45
## 34821 Resort Hotel 31
## 34822 Resort Hotel 39
## 34823 Resort Hotel 37
## 34824 Resort Hotel 35
## 34825 Resort Hotel 167
## 34826 Resort Hotel 57
## 34827 Resort Hotel 47
## 34828 Resort Hotel 31
## 34829 Resort Hotel 29
## 34830 Resort Hotel 1
## 34831 Resort Hotel 48
## 34832 Resort Hotel 38
## 34833 Resort Hotel 34
## 34834 Resort Hotel 25
## 34835 Resort Hotel 105
## 34836 Resort Hotel 3
## 34837 Resort Hotel 10
## 34838 Resort Hotel 26
## 34839 Resort Hotel 194
## 34840 Resort Hotel 80
## 34841 Resort Hotel 1
## 34842 Resort Hotel 1
## 34843 Resort Hotel 153
## 34844 Resort Hotel 61
## 34845 Resort Hotel 27
## 34846 Resort Hotel 33
## 34847 Resort Hotel 66
## 34848 Resort Hotel 1
## 34849 Resort Hotel 15
## 34850 Resort Hotel 15
## 34851 Resort Hotel 56
## 34852 Resort Hotel 54
## 34853 Resort Hotel 15
## 34854 Resort Hotel 15
## 34855 Resort Hotel 15
## 34856 Resort Hotel 15
## 34857 Resort Hotel 15
## 34858 Resort Hotel 15
## 34859 Resort Hotel 15
## 34860 Resort Hotel 15
## 34861 Resort Hotel 15
## 34862 Resort Hotel 15
## 34863 Resort Hotel 15
## 34864 Resort Hotel 15
## 34865 Resort Hotel 15
## 34866 Resort Hotel 15
## 34867 Resort Hotel 56
## 34868 Resort Hotel 26
## 34869 Resort Hotel 73
## 34870 Resort Hotel 26
## 34871 Resort Hotel 170
## 34872 Resort Hotel 81
## 34873 Resort Hotel 12
## 34874 Resort Hotel 33
## 34875 Resort Hotel 57
## 34876 Resort Hotel 56
## 34877 Resort Hotel 56
## 34878 Resort Hotel 58
## 34879 Resort Hotel 57
## 34880 Resort Hotel 70
## 34881 Resort Hotel 137
## 34882 Resort Hotel 30
## 34883 Resort Hotel 265
## 34884 Resort Hotel 265
## 34885 Resort Hotel 264
## 34886 Resort Hotel 265
## 34887 Resort Hotel 25
## 34888 Resort Hotel 0
## 34889 Resort Hotel 9
## 34890 Resort Hotel 61
## 34891 Resort Hotel 4
## 34892 Resort Hotel 5
## 34893 Resort Hotel 1
## 34894 Resort Hotel 170
## 34895 Resort Hotel 63
## 34896 Resort Hotel 4
## 34897 Resort Hotel 5
## 34898 Resort Hotel 15
## 34899 Resort Hotel 150
## 34900 Resort Hotel 152
## 34901 Resort Hotel 152
## 34902 Resort Hotel 152
## 34903 Resort Hotel 152
## 34904 Resort Hotel 151
## 34905 Resort Hotel 152
## 34906 Resort Hotel 152
## 34907 Resort Hotel 152
## 34908 Resort Hotel 151
## 34909 Resort Hotel 152
## 34910 Resort Hotel 0
## 34911 Resort Hotel 152
## 34912 Resort Hotel 152
## 34913 Resort Hotel 152
## 34914 Resort Hotel 152
## 34915 Resort Hotel 152
## 34916 Resort Hotel 152
## 34917 Resort Hotel 152
## 34918 Resort Hotel 152
## 34919 Resort Hotel 152
## 34920 Resort Hotel 152
## 34921 Resort Hotel 152
## 34922 Resort Hotel 152
## 34923 Resort Hotel 78
## 34924 Resort Hotel 152
## 34925 Resort Hotel 152
## 34926 Resort Hotel 152
## 34927 Resort Hotel 152
## 34928 Resort Hotel 152
## 34929 Resort Hotel 8
## 34930 Resort Hotel 152
## 34931 Resort Hotel 78
## 34932 Resort Hotel 152
## 34933 Resort Hotel 152
## 34934 Resort Hotel 14
## 34935 Resort Hotel 0
## 34936 Resort Hotel 17
## 34937 Resort Hotel 152
## 34938 Resort Hotel 252
## 34939 Resort Hotel 209
## 34940 Resort Hotel 2
## 34941 Resort Hotel 1
## 34942 Resort Hotel 1
## 34943 Resort Hotel 20
## 34944 Resort Hotel 199
## 34945 Resort Hotel 55
## 34946 Resort Hotel 152
## 34947 Resort Hotel 63
## 34948 Resort Hotel 4
## 34949 Resort Hotel 9
## 34950 Resort Hotel 3
## 34951 Resort Hotel 152
## 34952 Resort Hotel 0
## 34953 Resort Hotel 73
## 34954 Resort Hotel 0
## 34955 Resort Hotel 30
## 34956 Resort Hotel 152
## 34957 Resort Hotel 152
## 34958 Resort Hotel 2
## 34959 Resort Hotel 2
## 34960 Resort Hotel 153
## 34961 Resort Hotel 152
## 34962 Resort Hotel 152
## 34963 Resort Hotel 152
## 34964 Resort Hotel 152
## 34965 Resort Hotel 152
## 34966 Resort Hotel 1
## 34967 Resort Hotel 1
## 34968 Resort Hotel 9
## 34969 Resort Hotel 150
## 34970 Resort Hotel 152
## 34971 Resort Hotel 63
## 34972 Resort Hotel 64
## 34973 Resort Hotel 152
## 34974 Resort Hotel 152
## 34975 Resort Hotel 152
## 34976 Resort Hotel 152
## 34977 Resort Hotel 152
## 34978 Resort Hotel 152
## 34979 Resort Hotel 152
## 34980 Resort Hotel 125
## 34981 Resort Hotel 152
## 34982 Resort Hotel 152
## 34983 Resort Hotel 152
## 34984 Resort Hotel 1
## 34985 Resort Hotel 83
## 34986 Resort Hotel 125
## 34987 Resort Hotel 152
## 34988 Resort Hotel 72
## 34989 Resort Hotel 152
## 34990 Resort Hotel 72
## 34991 Resort Hotel 7
## 34992 Resort Hotel 152
## 34993 Resort Hotel 152
## 34994 Resort Hotel 33
## 34995 Resort Hotel 205
## 34996 Resort Hotel 205
## 34997 Resort Hotel 152
## 34998 Resort Hotel 38
## 34999 Resort Hotel 207
## 35000 Resort Hotel 152
## 35001 Resort Hotel 152
## 35002 Resort Hotel 208
## 35003 Resort Hotel 30
## 35004 Resort Hotel 214
## 35005 Resort Hotel 20
## 35006 Resort Hotel 152
## 35007 Resort Hotel 29
## 35008 Resort Hotel 151
## 35009 Resort Hotel 36
## 35010 Resort Hotel 152
## 35011 Resort Hotel 152
## 35012 Resort Hotel 112
## 35013 Resort Hotel 29
## 35014 Resort Hotel 40
## 35015 Resort Hotel 240
## 35016 Resort Hotel 0
## 35017 Resort Hotel 10
## 35018 Resort Hotel 48
## 35019 Resort Hotel 16
## 35020 Resort Hotel 11
## 35021 Resort Hotel 0
## 35022 Resort Hotel 0
## 35023 Resort Hotel 13
## 35024 Resort Hotel 8
## 35025 Resort Hotel 1
## 35026 Resort Hotel 35
## 35027 Resort Hotel 0
## 35028 Resort Hotel 25
## 35029 Resort Hotel 4
## 35030 Resort Hotel 3
## 35031 Resort Hotel 152
## 35032 Resort Hotel 30
## 35033 Resort Hotel 152
## 35034 Resort Hotel 13
## 35035 Resort Hotel 14
## 35036 Resort Hotel 14
## 35037 Resort Hotel 13
## 35038 Resort Hotel 7
## 35039 Resort Hotel 7
## 35040 Resort Hotel 110
## 35041 Resort Hotel 39
## 35042 Resort Hotel 68
## 35043 Resort Hotel 24
## 35044 Resort Hotel 155
## 35045 Resort Hotel 53
## 35046 Resort Hotel 11
## 35047 Resort Hotel 11
## 35048 Resort Hotel 5
## 35049 Resort Hotel 42
## 35050 Resort Hotel 180
## 35051 Resort Hotel 21
## 35052 Resort Hotel 36
## 35053 Resort Hotel 13
## 35054 Resort Hotel 39
## 35055 Resort Hotel 53
## 35056 Resort Hotel 3
## 35057 Resort Hotel 21
## 35058 Resort Hotel 14
## 35059 Resort Hotel 4
## 35060 Resort Hotel 80
## 35061 Resort Hotel 47
## 35062 Resort Hotel 4
## 35063 Resort Hotel 4
## 35064 Resort Hotel 7
## 35065 Resort Hotel 7
## 35066 Resort Hotel 61
## 35067 Resort Hotel 42
## 35068 Resort Hotel 63
## 35069 Resort Hotel 2
## 35070 Resort Hotel 49
## 35071 Resort Hotel 5
## 35072 Resort Hotel 14
## 35073 Resort Hotel 62
## 35074 Resort Hotel 62
## 35075 Resort Hotel 10
## 35076 Resort Hotel 200
## 35077 Resort Hotel 200
## 35078 Resort Hotel 200
## 35079 Resort Hotel 45
## 35080 Resort Hotel 22
## 35081 Resort Hotel 22
## 35082 Resort Hotel 129
## 35083 Resort Hotel 211
## 35084 Resort Hotel 211
## 35085 Resort Hotel 58
## 35086 Resort Hotel 58
## 35087 Resort Hotel 150
## 35088 Resort Hotel 3
## 35089 Resort Hotel 211
## 35090 Resort Hotel 29
## 35091 Resort Hotel 11
## 35092 Resort Hotel 9
## 35093 Resort Hotel 13
## 35094 Resort Hotel 16
## 35095 Resort Hotel 18
## 35096 Resort Hotel 2
## 35097 Resort Hotel 40
## 35098 Resort Hotel 12
## 35099 Resort Hotel 12
## 35100 Resort Hotel 19
## 35101 Resort Hotel 2
## 35102 Resort Hotel 13
## 35103 Resort Hotel 133
## 35104 Resort Hotel 17
## 35105 Resort Hotel 3
## 35106 Resort Hotel 6
## 35107 Resort Hotel 185
## 35108 Resort Hotel 1
## 35109 Resort Hotel 53
## 35110 Resort Hotel 10
## 35111 Resort Hotel 64
## 35112 Resort Hotel 0
## 35113 Resort Hotel 56
## 35114 Resort Hotel 276
## 35115 Resort Hotel 48
## 35116 Resort Hotel 84
## 35117 Resort Hotel 90
## 35118 Resort Hotel 166
## 35119 Resort Hotel 166
## 35120 Resort Hotel 50
## 35121 Resort Hotel 70
## 35122 Resort Hotel 87
## 35123 Resort Hotel 53
## 35124 Resort Hotel 49
## 35125 Resort Hotel 23
## 35126 Resort Hotel 62
## 35127 Resort Hotel 62
## 35128 Resort Hotel 24
## 35129 Resort Hotel 32
## 35130 Resort Hotel 31
## 35131 Resort Hotel 39
## 35132 Resort Hotel 38
## 35133 Resort Hotel 198
## 35134 Resort Hotel 198
## 35135 Resort Hotel 0
## 35136 Resort Hotel 44
## 35137 Resort Hotel 53
## 35138 Resort Hotel 82
## 35139 Resort Hotel 21
## 35140 Resort Hotel 71
## 35141 Resort Hotel 26
## 35142 Resort Hotel 88
## 35143 Resort Hotel 44
## 35144 Resort Hotel 10
## 35145 Resort Hotel 68
## 35146 Resort Hotel 28
## 35147 Resort Hotel 0
## 35148 Resort Hotel 72
## 35149 Resort Hotel 4
## 35150 Resort Hotel 49
## 35151 Resort Hotel 108
## 35152 Resort Hotel 28
## 35153 Resort Hotel 5
## 35154 Resort Hotel 36
## 35155 Resort Hotel 72
## 35156 Resort Hotel 48
## 35157 Resort Hotel 351
## 35158 Resort Hotel 351
## 35159 Resort Hotel 59
## 35160 Resort Hotel 351
## 35161 Resort Hotel 351
## 35162 Resort Hotel 351
## 35163 Resort Hotel 351
## 35164 Resort Hotel 72
## 35165 Resort Hotel 72
## 35166 Resort Hotel 351
## 35167 Resort Hotel 351
## 35168 Resort Hotel 72
## 35169 Resort Hotel 351
## 35170 Resort Hotel 351
## 35171 Resort Hotel 46
## 35172 Resort Hotel 351
## 35173 Resort Hotel 351
## 35174 Resort Hotel 17
## 35175 Resort Hotel 351
## 35176 Resort Hotel 42
## 35177 Resort Hotel 42
## 35178 Resort Hotel 23
## 35179 Resort Hotel 142
## 35180 Resort Hotel 142
## 35181 Resort Hotel 49
## 35182 Resort Hotel 61
## 35183 Resort Hotel 44
## 35184 Resort Hotel 74
## 35185 Resort Hotel 74
## 35186 Resort Hotel 7
## 35187 Resort Hotel 31
## 35188 Resort Hotel 34
## 35189 Resort Hotel 74
## 35190 Resort Hotel 85
## 35191 Resort Hotel 96
## 35192 Resort Hotel 22
## 35193 Resort Hotel 66
## 35194 Resort Hotel 153
## 35195 Resort Hotel 77
## 35196 Resort Hotel 67
## 35197 Resort Hotel 23
## 35198 Resort Hotel 116
## 35199 Resort Hotel 18
## 35200 Resort Hotel 153
## 35201 Resort Hotel 17
## 35202 Resort Hotel 41
## 35203 Resort Hotel 34
## 35204 Resort Hotel 157
## 35205 Resort Hotel 80
## 35206 Resort Hotel 37
## 35207 Resort Hotel 31
## 35208 Resort Hotel 28
## 35209 Resort Hotel 134
## 35210 Resort Hotel 40
## 35211 Resort Hotel 16
## 35212 Resort Hotel 52
## 35213 Resort Hotel 5
## 35214 Resort Hotel 11
## 35215 Resort Hotel 124
## 35216 Resort Hotel 36
## 35217 Resort Hotel 89
## 35218 Resort Hotel 89
## 35219 Resort Hotel 73
## 35220 Resort Hotel 10
## 35221 Resort Hotel 65
## 35222 Resort Hotel 124
## 35223 Resort Hotel 124
## 35224 Resort Hotel 124
## 35225 Resort Hotel 39
## 35226 Resort Hotel 6
## 35227 Resort Hotel 67
## 35228 Resort Hotel 156
## 35229 Resort Hotel 34
## 35230 Resort Hotel 156
## 35231 Resort Hotel 52
## 35232 Resort Hotel 88
## 35233 Resort Hotel 58
## 35234 Resort Hotel 92
## 35235 Resort Hotel 237
## 35236 Resort Hotel 267
## 35237 Resort Hotel 267
## 35238 Resort Hotel 77
## 35239 Resort Hotel 77
## 35240 Resort Hotel 41
## 35241 Resort Hotel 222
## 35242 Resort Hotel 87
## 35243 Resort Hotel 13
## 35244 Resort Hotel 8
## 35245 Resort Hotel 32
## 35246 Resort Hotel 42
## 35247 Resort Hotel 4
## 35248 Resort Hotel 4
## 35249 Resort Hotel 18
## 35250 Resort Hotel 2
## 35251 Resort Hotel 0
## 35252 Resort Hotel 76
## 35253 Resort Hotel 3
## 35254 Resort Hotel 18
## 35255 Resort Hotel 1
## 35256 Resort Hotel 32
## 35257 Resort Hotel 30
## 35258 Resort Hotel 4
## 35259 Resort Hotel 15
## 35260 Resort Hotel 34
## 35261 Resort Hotel 12
## 35262 Resort Hotel 38
## 35263 Resort Hotel 65
## 35264 Resort Hotel 65
## 35265 Resort Hotel 10
## 35266 Resort Hotel 10
## 35267 Resort Hotel 0
## 35268 Resort Hotel 110
## 35269 Resort Hotel 68
## 35270 Resort Hotel 72
## 35271 Resort Hotel 6
## 35272 Resort Hotel 86
## 35273 Resort Hotel 4
## 35274 Resort Hotel 108
## 35275 Resort Hotel 72
## 35276 Resort Hotel 17
## 35277 Resort Hotel 7
## 35278 Resort Hotel 9
## 35279 Resort Hotel 73
## 35280 Resort Hotel 73
## 35281 Resort Hotel 73
## 35282 Resort Hotel 156
## 35283 Resort Hotel 156
## 35284 Resort Hotel 84
## 35285 Resort Hotel 32
## 35286 Resort Hotel 4
## 35287 Resort Hotel 7
## 35288 Resort Hotel 67
## 35289 Resort Hotel 67
## 35290 Resort Hotel 28
## 35291 Resort Hotel 28
## 35292 Resort Hotel 7
## 35293 Resort Hotel 17
## 35294 Resort Hotel 17
## 35295 Resort Hotel 88
## 35296 Resort Hotel 14
## 35297 Resort Hotel 2
## 35298 Resort Hotel 28
## 35299 Resort Hotel 7
## 35300 Resort Hotel 212
## 35301 Resort Hotel 67
## 35302 Resort Hotel 0
## 35303 Resort Hotel 61
## 35304 Resort Hotel 0
## 35305 Resort Hotel 69
## 35306 Resort Hotel 180
## 35307 Resort Hotel 198
## 35308 Resort Hotel 0
## 35309 Resort Hotel 75
## 35310 Resort Hotel 0
## 35311 Resort Hotel 172
## 35312 Resort Hotel 85
## 35313 Resort Hotel 85
## 35314 Resort Hotel 11
## 35315 Resort Hotel 0
## 35316 Resort Hotel 3
## 35317 Resort Hotel 216
## 35318 Resort Hotel 216
## 35319 Resort Hotel 22
## 35320 Resort Hotel 67
## 35321 Resort Hotel 0
## 35322 Resort Hotel 86
## 35323 Resort Hotel 89
## 35324 Resort Hotel 164
## 35325 Resort Hotel 171
## 35326 Resort Hotel 9
## 35327 Resort Hotel 73
## 35328 Resort Hotel 76
## 35329 Resort Hotel 80
## 35330 Resort Hotel 63
## 35331 Resort Hotel 7
## 35332 Resort Hotel 126
## 35333 Resort Hotel 126
## 35334 Resort Hotel 12
## 35335 Resort Hotel 5
## 35336 Resort Hotel 12
## 35337 Resort Hotel 126
## 35338 Resort Hotel 27
## 35339 Resort Hotel 5
## 35340 Resort Hotel 5
## 35341 Resort Hotel 5
## 35342 Resort Hotel 5
## 35343 Resort Hotel 192
## 35344 Resort Hotel 1
## 35345 Resort Hotel 126
## 35346 Resort Hotel 4
## 35347 Resort Hotel 60
## 35348 Resort Hotel 5
## 35349 Resort Hotel 100
## 35350 Resort Hotel 1
## 35351 Resort Hotel 1
## 35352 Resort Hotel 1
## 35353 Resort Hotel 0
## 35354 Resort Hotel 0
## 35355 Resort Hotel 1
## 35356 Resort Hotel 1
## 35357 Resort Hotel 0
## 35358 Resort Hotel 128
## 35359 Resort Hotel 128
## 35360 Resort Hotel 0
## 35361 Resort Hotel 142
## 35362 Resort Hotel 27
## 35363 Resort Hotel 60
## 35364 Resort Hotel 33
## 35365 Resort Hotel 26
## 35366 Resort Hotel 27
## 35367 Resort Hotel 254
## 35368 Resort Hotel 100
## 35369 Resort Hotel 20
## 35370 Resort Hotel 0
## 35371 Resort Hotel 167
## 35372 Resort Hotel 31
## 35373 Resort Hotel 67
## 35374 Resort Hotel 0
## 35375 Resort Hotel 1
## 35376 Resort Hotel 75
## 35377 Resort Hotel 95
## 35378 Resort Hotel 130
## 35379 Resort Hotel 72
## 35380 Resort Hotel 60
## 35381 Resort Hotel 83
## 35382 Resort Hotel 2
## 35383 Resort Hotel 10
## 35384 Resort Hotel 14
## 35385 Resort Hotel 94
## 35386 Resort Hotel 6
## 35387 Resort Hotel 2
## 35388 Resort Hotel 4
## 35389 Resort Hotel 11
## 35390 Resort Hotel 174
## 35391 Resort Hotel 174
## 35392 Resort Hotel 47
## 35393 Resort Hotel 34
## 35394 Resort Hotel 8
## 35395 Resort Hotel 111
## 35396 Resort Hotel 137
## 35397 Resort Hotel 8
## 35398 Resort Hotel 1
## 35399 Resort Hotel 87
## 35400 Resort Hotel 22
## 35401 Resort Hotel 0
## 35402 Resort Hotel 74
## 35403 Resort Hotel 30
## 35404 Resort Hotel 0
## 35405 Resort Hotel 23
## 35406 Resort Hotel 24
## 35407 Resort Hotel 23
## 35408 Resort Hotel 32
## 35409 Resort Hotel 95
## 35410 Resort Hotel 63
## 35411 Resort Hotel 63
## 35412 Resort Hotel 63
## 35413 Resort Hotel 23
## 35414 Resort Hotel 30
## 35415 Resort Hotel 108
## 35416 Resort Hotel 30
## 35417 Resort Hotel 29
## 35418 Resort Hotel 0
## 35419 Resort Hotel 8
## 35420 Resort Hotel 232
## 35421 Resort Hotel 108
## 35422 Resort Hotel 66
## 35423 Resort Hotel 1
## 35424 Resort Hotel 91
## 35425 Resort Hotel 206
## 35426 Resort Hotel 98
## 35427 Resort Hotel 2
## 35428 Resort Hotel 73
## 35429 Resort Hotel 4
## 35430 Resort Hotel 6
## 35431 Resort Hotel 98
## 35432 Resort Hotel 84
## 35433 Resort Hotel 8
## 35434 Resort Hotel 124
## 35435 Resort Hotel 58
## 35436 Resort Hotel 128
## 35437 Resort Hotel 131
## 35438 Resort Hotel 128
## 35439 Resort Hotel 76
## 35440 Resort Hotel 128
## 35441 Resort Hotel 123
## 35442 Resort Hotel 131
## 35443 Resort Hotel 47
## 35444 Resort Hotel 0
## 35445 Resort Hotel 6
## 35446 Resort Hotel 49
## 35447 Resort Hotel 25
## 35448 Resort Hotel 150
## 35449 Resort Hotel 23
## 35450 Resort Hotel 12
## 35451 Resort Hotel 0
## 35452 Resort Hotel 153
## 35453 Resort Hotel 3
## 35454 Resort Hotel 63
## 35455 Resort Hotel 65
## 35456 Resort Hotel 95
## 35457 Resort Hotel 21
## 35458 Resort Hotel 131
## 35459 Resort Hotel 131
## 35460 Resort Hotel 57
## 35461 Resort Hotel 52
## 35462 Resort Hotel 47
## 35463 Resort Hotel 124
## 35464 Resort Hotel 177
## 35465 Resort Hotel 131
## 35466 Resort Hotel 0
## 35467 Resort Hotel 131
## 35468 Resort Hotel 131
## 35469 Resort Hotel 48
## 35470 Resort Hotel 131
## 35471 Resort Hotel 131
## 35472 Resort Hotel 131
## 35473 Resort Hotel 138
## 35474 Resort Hotel 124
## 35475 Resort Hotel 84
## 35476 Resort Hotel 84
## 35477 Resort Hotel 63
## 35478 Resort Hotel 63
## 35479 Resort Hotel 85
## 35480 Resort Hotel 62
## 35481 Resort Hotel 62
## 35482 Resort Hotel 62
## 35483 Resort Hotel 76
## 35484 Resort Hotel 23
## 35485 Resort Hotel 84
## 35486 Resort Hotel 1
## 35487 Resort Hotel 84
## 35488 Resort Hotel 84
## 35489 Resort Hotel 84
## 35490 Resort Hotel 84
## 35491 Resort Hotel 2
## 35492 Resort Hotel 62
## 35493 Resort Hotel 168
## 35494 Resort Hotel 168
## 35495 Resort Hotel 62
## 35496 Resort Hotel 0
## 35497 Resort Hotel 168
## 35498 Resort Hotel 47
## 35499 Resort Hotel 168
## 35500 Resort Hotel 168
## 35501 Resort Hotel 42
## 35502 Resort Hotel 61
## 35503 Resort Hotel 0
## 35504 Resort Hotel 108
## 35505 Resort Hotel 64
## 35506 Resort Hotel 1
## 35507 Resort Hotel 74
## 35508 Resort Hotel 1
## 35509 Resort Hotel 140
## 35510 Resort Hotel 140
## 35511 Resort Hotel 267
## 35512 Resort Hotel 4
## 35513 Resort Hotel 75
## 35514 Resort Hotel 63
## 35515 Resort Hotel 0
## 35516 Resort Hotel 61
## 35517 Resort Hotel 61
## 35518 Resort Hotel 212
## 35519 Resort Hotel 4
## 35520 Resort Hotel 4
## 35521 Resort Hotel 200
## 35522 Resort Hotel 60
## 35523 Resort Hotel 142
## 35524 Resort Hotel 184
## 35525 Resort Hotel 184
## 35526 Resort Hotel 0
## 35527 Resort Hotel 0
## 35528 Resort Hotel 1
## 35529 Resort Hotel 198
## 35530 Resort Hotel 0
## 35531 Resort Hotel 60
## 35532 Resort Hotel 60
## 35533 Resort Hotel 80
## 35534 Resort Hotel 203
## 35535 Resort Hotel 237
## 35536 Resort Hotel 204
## 35537 Resort Hotel 203
## 35538 Resort Hotel 203
## 35539 Resort Hotel 203
## 35540 Resort Hotel 203
## 35541 Resort Hotel 203
## 35542 Resort Hotel 203
## 35543 Resort Hotel 203
## 35544 Resort Hotel 203
## 35545 Resort Hotel 203
## 35546 Resort Hotel 203
## 35547 Resort Hotel 203
## 35548 Resort Hotel 203
## 35549 Resort Hotel 203
## 35550 Resort Hotel 203
## 35551 Resort Hotel 109
## 35552 Resort Hotel 109
## 35553 Resort Hotel 109
## 35554 Resort Hotel 109
## 35555 Resort Hotel 109
## 35556 Resort Hotel 109
## 35557 Resort Hotel 109
## 35558 Resort Hotel 73
## 35559 Resort Hotel 12
## 35560 Resort Hotel 4
## 35561 Resort Hotel 168
## 35562 Resort Hotel 28
## 35563 Resort Hotel 104
## 35564 Resort Hotel 99
## 35565 Resort Hotel 106
## 35566 Resort Hotel 105
## 35567 Resort Hotel 31
## 35568 Resort Hotel 92
## 35569 Resort Hotel 82
## 35570 Resort Hotel 71
## 35571 Resort Hotel 71
## 35572 Resort Hotel 3
## 35573 Resort Hotel 6
## 35574 Resort Hotel 5
## 35575 Resort Hotel 76
## 35576 Resort Hotel 195
## 35577 Resort Hotel 6
## 35578 Resort Hotel 250
## 35579 Resort Hotel 250
## 35580 Resort Hotel 12
## 35581 Resort Hotel 93
## 35582 Resort Hotel 93
## 35583 Resort Hotel 4
## 35584 Resort Hotel 85
## 35585 Resort Hotel 222
## 35586 Resort Hotel 26
## 35587 Resort Hotel 24
## 35588 Resort Hotel 0
## 35589 Resort Hotel 0
## 35590 Resort Hotel 0
## 35591 Resort Hotel 1
## 35592 Resort Hotel 24
## 35593 Resort Hotel 3
## 35594 Resort Hotel 31
## 35595 Resort Hotel 106
## 35596 Resort Hotel 31
## 35597 Resort Hotel 23
## 35598 Resort Hotel 31
## 35599 Resort Hotel 31
## 35600 Resort Hotel 6
## 35601 Resort Hotel 7
## 35602 Resort Hotel 31
## 35603 Resort Hotel 31
## 35604 Resort Hotel 31
## 35605 Resort Hotel 31
## 35606 Resort Hotel 31
## 35607 Resort Hotel 31
## 35608 Resort Hotel 31
## 35609 Resort Hotel 31
## 35610 Resort Hotel 6
## 35611 Resort Hotel 7
## 35612 Resort Hotel 31
## 35613 Resort Hotel 185
## 35614 Resort Hotel 31
## 35615 Resort Hotel 158
## 35616 Resort Hotel 31
## 35617 Resort Hotel 31
## 35618 Resort Hotel 276
## 35619 Resort Hotel 44
## 35620 Resort Hotel 1
## 35621 Resort Hotel 1
## 35622 Resort Hotel 1
## 35623 Resort Hotel 36
## 35624 Resort Hotel 276
## 35625 Resort Hotel 23
## 35626 Resort Hotel 276
## 35627 Resort Hotel 23
## 35628 Resort Hotel 0
## 35629 Resort Hotel 252
## 35630 Resort Hotel 252
## 35631 Resort Hotel 252
## 35632 Resort Hotel 252
## 35633 Resort Hotel 252
## 35634 Resort Hotel 23
## 35635 Resort Hotel 239
## 35636 Resort Hotel 0
## 35637 Resort Hotel 0
## 35638 Resort Hotel 0
## 35639 Resort Hotel 252
## 35640 Resort Hotel 252
## 35641 Resort Hotel 276
## 35642 Resort Hotel 0
## 35643 Resort Hotel 252
## 35644 Resort Hotel 128
## 35645 Resort Hotel 252
## 35646 Resort Hotel 252
## 35647 Resort Hotel 288
## 35648 Resort Hotel 288
## 35649 Resort Hotel 234
## 35650 Resort Hotel 252
## 35651 Resort Hotel 252
## 35652 Resort Hotel 208
## 35653 Resort Hotel 252
## 35654 Resort Hotel 185
## 35655 Resort Hotel 252
## 35656 Resort Hotel 239
## 35657 Resort Hotel 234
## 35658 Resort Hotel 252
## 35659 Resort Hotel 252
## 35660 Resort Hotel 234
## 35661 Resort Hotel 129
## 35662 Resort Hotel 290
## 35663 Resort Hotel 276
## 35664 Resort Hotel 252
## 35665 Resort Hotel 276
## 35666 Resort Hotel 239
## 35667 Resort Hotel 234
## 35668 Resort Hotel 276
## 35669 Resort Hotel 0
## 35670 Resort Hotel 252
## 35671 Resort Hotel 276
## 35672 Resort Hotel 276
## 35673 Resort Hotel 23
## 35674 Resort Hotel 0
## 35675 Resort Hotel 106
## 35676 Resort Hotel 276
## 35677 Resort Hotel 276
## 35678 Resort Hotel 276
## 35679 Resort Hotel 281
## 35680 Resort Hotel 276
## 35681 Resort Hotel 208
## 35682 Resort Hotel 276
## 35683 Resort Hotel 276
## 35684 Resort Hotel 208
## 35685 Resort Hotel 276
## 35686 Resort Hotel 23
## 35687 Resort Hotel 290
## 35688 Resort Hotel 38
## 35689 Resort Hotel 72
## 35690 Resort Hotel 253
## 35691 Resort Hotel 253
## 35692 Resort Hotel 253
## 35693 Resort Hotel 253
## 35694 Resort Hotel 317
## 35695 Resort Hotel 253
## 35696 Resort Hotel 253
## 35697 Resort Hotel 253
## 35698 Resort Hotel 253
## 35699 Resort Hotel 253
## 35700 Resort Hotel 253
## 35701 Resort Hotel 253
## 35702 Resort Hotel 253
## 35703 Resort Hotel 253
## 35704 Resort Hotel 317
## 35705 Resort Hotel 253
## 35706 Resort Hotel 8
## 35707 Resort Hotel 253
## 35708 Resort Hotel 317
## 35709 Resort Hotel 8
## 35710 Resort Hotel 8
## 35711 Resort Hotel 30
## 35712 Resort Hotel 144
## 35713 Resort Hotel 3
## 35714 Resort Hotel 3
## 35715 Resort Hotel 94
## 35716 Resort Hotel 82
## 35717 Resort Hotel 11
## 35718 Resort Hotel 15
## 35719 Resort Hotel 31
## 35720 Resort Hotel 2
## 35721 Resort Hotel 3
## 35722 Resort Hotel 83
## 35723 Resort Hotel 157
## 35724 Resort Hotel 6
## 35725 Resort Hotel 28
## 35726 Resort Hotel 16
## 35727 Resort Hotel 23
## 35728 Resort Hotel 19
## 35729 Resort Hotel 105
## 35730 Resort Hotel 68
## 35731 Resort Hotel 5
## 35732 Resort Hotel 5
## 35733 Resort Hotel 70
## 35734 Resort Hotel 28
## 35735 Resort Hotel 9
## 35736 Resort Hotel 1
## 35737 Resort Hotel 30
## 35738 Resort Hotel 132
## 35739 Resort Hotel 0
## 35740 Resort Hotel 9
## 35741 Resort Hotel 51
## 35742 Resort Hotel 27
## 35743 Resort Hotel 43
## 35744 Resort Hotel 6
## 35745 Resort Hotel 97
## 35746 Resort Hotel 24
## 35747 Resort Hotel 110
## 35748 Resort Hotel 24
## 35749 Resort Hotel 6
## 35750 Resort Hotel 58
## 35751 Resort Hotel 58
## 35752 Resort Hotel 4
## 35753 Resort Hotel 16
## 35754 Resort Hotel 75
## 35755 Resort Hotel 0
## 35756 Resort Hotel 0
## 35757 Resort Hotel 76
## 35758 Resort Hotel 76
## 35759 Resort Hotel 2
## 35760 Resort Hotel 3
## 35761 Resort Hotel 52
## 35762 Resort Hotel 96
## 35763 Resort Hotel 96
## 35764 Resort Hotel 96
## 35765 Resort Hotel 19
## 35766 Resort Hotel 14
## 35767 Resort Hotel 1
## 35768 Resort Hotel 10
## 35769 Resort Hotel 4
## 35770 Resort Hotel 47
## 35771 Resort Hotel 2
## 35772 Resort Hotel 9
## 35773 Resort Hotel 27
## 35774 Resort Hotel 11
## 35775 Resort Hotel 221
## 35776 Resort Hotel 5
## 35777 Resort Hotel 0
## 35778 Resort Hotel 259
## 35779 Resort Hotel 27
## 35780 Resort Hotel 0
## 35781 Resort Hotel 5
## 35782 Resort Hotel 1
## 35783 Resort Hotel 12
## 35784 Resort Hotel 26
## 35785 Resort Hotel 0
## 35786 Resort Hotel 0
## 35787 Resort Hotel 24
## 35788 Resort Hotel 1
## 35789 Resort Hotel 46
## 35790 Resort Hotel 46
## 35791 Resort Hotel 88
## 35792 Resort Hotel 204
## 35793 Resort Hotel 204
## 35794 Resort Hotel 111
## 35795 Resort Hotel 204
## 35796 Resort Hotel 100
## 35797 Resort Hotel 100
## 35798 Resort Hotel 100
## 35799 Resort Hotel 100
## 35800 Resort Hotel 100
## 35801 Resort Hotel 100
## 35802 Resort Hotel 100
## 35803 Resort Hotel 100
## 35804 Resort Hotel 100
## 35805 Resort Hotel 100
## 35806 Resort Hotel 100
## 35807 Resort Hotel 100
## 35808 Resort Hotel 100
## 35809 Resort Hotel 221
## 35810 Resort Hotel 100
## 35811 Resort Hotel 100
## 35812 Resort Hotel 100
## 35813 Resort Hotel 100
## 35814 Resort Hotel 100
## 35815 Resort Hotel 5
## 35816 Resort Hotel 89
## 35817 Resort Hotel 3
## 35818 Resort Hotel 12
## 35819 Resort Hotel 38
## 35820 Resort Hotel 3
## 35821 Resort Hotel 0
## 35822 Resort Hotel 57
## 35823 Resort Hotel 5
## 35824 Resort Hotel 5
## 35825 Resort Hotel 215
## 35826 Resort Hotel 3
## 35827 Resort Hotel 7
## 35828 Resort Hotel 74
## 35829 Resort Hotel 74
## 35830 Resort Hotel 7
## 35831 Resort Hotel 4
## 35832 Resort Hotel 4
## 35833 Resort Hotel 112
## 35834 Resort Hotel 112
## 35835 Resort Hotel 20
## 35836 Resort Hotel 55
## 35837 Resort Hotel 11
## 35838 Resort Hotel 1
## 35839 Resort Hotel 53
## 35840 Resort Hotel 28
## 35841 Resort Hotel 15
## 35842 Resort Hotel 110
## 35843 Resort Hotel 126
## 35844 Resort Hotel 16
## 35845 Resort Hotel 60
## 35846 Resort Hotel 60
## 35847 Resort Hotel 5
## 35848 Resort Hotel 4
## 35849 Resort Hotel 0
## 35850 Resort Hotel 168
## 35851 Resort Hotel 4
## 35852 Resort Hotel 46
## 35853 Resort Hotel 59
## 35854 Resort Hotel 42
## 35855 Resort Hotel 72
## 35856 Resort Hotel 2
## 35857 Resort Hotel 22
## 35858 Resort Hotel 179
## 35859 Resort Hotel 4
## 35860 Resort Hotel 98
## 35861 Resort Hotel 25
## 35862 Resort Hotel 6
## 35863 Resort Hotel 0
## 35864 Resort Hotel 131
## 35865 Resort Hotel 129
## 35866 Resort Hotel 99
## 35867 Resort Hotel 195
## 35868 Resort Hotel 126
## 35869 Resort Hotel 126
## 35870 Resort Hotel 0
## 35871 Resort Hotel 6
## 35872 Resort Hotel 4
## 35873 Resort Hotel 0
## 35874 Resort Hotel 2
## 35875 Resort Hotel 134
## 35876 Resort Hotel 134
## 35877 Resort Hotel 134
## 35878 Resort Hotel 13
## 35879 Resort Hotel 27
## 35880 Resort Hotel 3
## 35881 Resort Hotel 118
## 35882 Resort Hotel 91
## 35883 Resort Hotel 0
## 35884 Resort Hotel 1
## 35885 Resort Hotel 225
## 35886 Resort Hotel 84
## 35887 Resort Hotel 104
## 35888 Resort Hotel 41
## 35889 Resort Hotel 126
## 35890 Resort Hotel 71
## 35891 Resort Hotel 0
## 35892 Resort Hotel 0
## 35893 Resort Hotel 56
## 35894 Resort Hotel 0
## 35895 Resort Hotel 96
## 35896 Resort Hotel 3
## 35897 Resort Hotel 6
## 35898 Resort Hotel 12
## 35899 Resort Hotel 76
## 35900 Resort Hotel 77
## 35901 Resort Hotel 151
## 35902 Resort Hotel 181
## 35903 Resort Hotel 181
## 35904 Resort Hotel 86
## 35905 Resort Hotel 202
## 35906 Resort Hotel 202
## 35907 Resort Hotel 202
## 35908 Resort Hotel 202
## 35909 Resort Hotel 202
## 35910 Resort Hotel 202
## 35911 Resort Hotel 202
## 35912 Resort Hotel 202
## 35913 Resort Hotel 218
## 35914 Resort Hotel 220
## 35915 Resort Hotel 218
## 35916 Resort Hotel 220
## 35917 Resort Hotel 218
## 35918 Resort Hotel 220
## 35919 Resort Hotel 79
## 35920 Resort Hotel 300
## 35921 Resort Hotel 50
## 35922 Resort Hotel 0
## 35923 Resort Hotel 50
## 35924 Resort Hotel 1
## 35925 Resort Hotel 62
## 35926 Resort Hotel 87
## 35927 Resort Hotel 202
## 35928 Resort Hotel 10
## 35929 Resort Hotel 14
## 35930 Resort Hotel 6
## 35931 Resort Hotel 178
## 35932 Resort Hotel 68
## 35933 Resort Hotel 43
## 35934 Resort Hotel 43
## 35935 Resort Hotel 102
## 35936 Resort Hotel 9
## 35937 Resort Hotel 95
## 35938 Resort Hotel 74
## 35939 Resort Hotel 95
## 35940 Resort Hotel 85
## 35941 Resort Hotel 88
## 35942 Resort Hotel 81
## 35943 Resort Hotel 95
## 35944 Resort Hotel 53
## 35945 Resort Hotel 74
## 35946 Resort Hotel 97
## 35947 Resort Hotel 121
## 35948 Resort Hotel 113
## 35949 Resort Hotel 100
## 35950 Resort Hotel 113
## 35951 Resort Hotel 175
## 35952 Resort Hotel 207
## 35953 Resort Hotel 26
## 35954 Resort Hotel 159
## 35955 Resort Hotel 102
## 35956 Resort Hotel 39
## 35957 Resort Hotel 133
## 35958 Resort Hotel 194
## 35959 Resort Hotel 285
## 35960 Resort Hotel 285
## 35961 Resort Hotel 96
## 35962 Resort Hotel 5
## 35963 Resort Hotel 0
## 35964 Resort Hotel 12
## 35965 Resort Hotel 0
## 35966 Resort Hotel 6
## 35967 Resort Hotel 0
## 35968 Resort Hotel 0
## 35969 Resort Hotel 173
## 35970 Resort Hotel 104
## 35971 Resort Hotel 36
## 35972 Resort Hotel 37
## 35973 Resort Hotel 160
## 35974 Resort Hotel 261
## 35975 Resort Hotel 261
## 35976 Resort Hotel 261
## 35977 Resort Hotel 261
## 35978 Resort Hotel 261
## 35979 Resort Hotel 261
## 35980 Resort Hotel 261
## 35981 Resort Hotel 8
## 35982 Resort Hotel 221
## 35983 Resort Hotel 221
## 35984 Resort Hotel 221
## 35985 Resort Hotel 191
## 35986 Resort Hotel 191
## 35987 Resort Hotel 191
## 35988 Resort Hotel 191
## 35989 Resort Hotel 23
## 35990 Resort Hotel 221
## 35991 Resort Hotel 221
## 35992 Resort Hotel 221
## 35993 Resort Hotel 199
## 35994 Resort Hotel 16
## 35995 Resort Hotel 221
## 35996 Resort Hotel 191
## 35997 Resort Hotel 6
## 35998 Resort Hotel 6
## 35999 Resort Hotel 70
## 36000 Resort Hotel 11
## 36001 Resort Hotel 191
## 36002 Resort Hotel 191
## 36003 Resort Hotel 191
## 36004 Resort Hotel 4
## 36005 Resort Hotel 90
## 36006 Resort Hotel 7
## 36007 Resort Hotel 99
## 36008 Resort Hotel 9
## 36009 Resort Hotel 0
## 36010 Resort Hotel 68
## 36011 Resort Hotel 70
## 36012 Resort Hotel 222
## 36013 Resort Hotel 70
## 36014 Resort Hotel 0
## 36015 Resort Hotel 7
## 36016 Resort Hotel 36
## 36017 Resort Hotel 21
## 36018 Resort Hotel 1
## 36019 Resort Hotel 1
## 36020 Resort Hotel 11
## 36021 Resort Hotel 52
## 36022 Resort Hotel 5
## 36023 Resort Hotel 116
## 36024 Resort Hotel 0
## 36025 Resort Hotel 3
## 36026 Resort Hotel 111
## 36027 Resort Hotel 88
## 36028 Resort Hotel 111
## 36029 Resort Hotel 32
## 36030 Resort Hotel 4
## 36031 Resort Hotel 0
## 36032 Resort Hotel 76
## 36033 Resort Hotel 42
## 36034 Resort Hotel 2
## 36035 Resort Hotel 248
## 36036 Resort Hotel 2
## 36037 Resort Hotel 248
## 36038 Resort Hotel 248
## 36039 Resort Hotel 248
## 36040 Resort Hotel 248
## 36041 Resort Hotel 248
## 36042 Resort Hotel 248
## 36043 Resort Hotel 2
## 36044 Resort Hotel 2
## 36045 Resort Hotel 116
## 36046 Resort Hotel 248
## 36047 Resort Hotel 1
## 36048 Resort Hotel 198
## 36049 Resort Hotel 198
## 36050 Resort Hotel 198
## 36051 Resort Hotel 0
## 36052 Resort Hotel 0
## 36053 Resort Hotel 7
## 36054 Resort Hotel 239
## 36055 Resort Hotel 104
## 36056 Resort Hotel 0
## 36057 Resort Hotel 2
## 36058 Resort Hotel 207
## 36059 Resort Hotel 244
## 36060 Resort Hotel 11
## 36061 Resort Hotel 0
## 36062 Resort Hotel 79
## 36063 Resort Hotel 7
## 36064 Resort Hotel 3
## 36065 Resort Hotel 217
## 36066 Resort Hotel 156
## 36067 Resort Hotel 115
## 36068 Resort Hotel 95
## 36069 Resort Hotel 237
## 36070 Resort Hotel 179
## 36071 Resort Hotel 179
## 36072 Resort Hotel 211
## 36073 Resort Hotel 96
## 36074 Resort Hotel 70
## 36075 Resort Hotel 1
## 36076 Resort Hotel 36
## 36077 Resort Hotel 70
## 36078 Resort Hotel 0
## 36079 Resort Hotel 84
## 36080 Resort Hotel 84
## 36081 Resort Hotel 69
## 36082 Resort Hotel 72
## 36083 Resort Hotel 35
## 36084 Resort Hotel 4
## 36085 Resort Hotel 2
## 36086 Resort Hotel 113
## 36087 Resort Hotel 96
## 36088 Resort Hotel 41
## 36089 Resort Hotel 5
## 36090 Resort Hotel 77
## 36091 Resort Hotel 41
## 36092 Resort Hotel 0
## 36093 Resort Hotel 1
## 36094 Resort Hotel 85
## 36095 Resort Hotel 85
## 36096 Resort Hotel 82
## 36097 Resort Hotel 14
## 36098 Resort Hotel 3
## 36099 Resort Hotel 82
## 36100 Resort Hotel 82
## 36101 Resort Hotel 9
## 36102 Resort Hotel 95
## 36103 Resort Hotel 0
## 36104 Resort Hotel 115
## 36105 Resort Hotel 5
## 36106 Resort Hotel 0
## 36107 Resort Hotel 88
## 36108 Resort Hotel 117
## 36109 Resort Hotel 16
## 36110 Resort Hotel 0
## 36111 Resort Hotel 46
## 36112 Resort Hotel 11
## 36113 Resort Hotel 0
## 36114 Resort Hotel 117
## 36115 Resort Hotel 114
## 36116 Resort Hotel 10
## 36117 Resort Hotel 272
## 36118 Resort Hotel 272
## 36119 Resort Hotel 72
## 36120 Resort Hotel 6
## 36121 Resort Hotel 6
## 36122 Resort Hotel 272
## 36123 Resort Hotel 272
## 36124 Resort Hotel 72
## 36125 Resort Hotel 120
## 36126 Resort Hotel 7
## 36127 Resort Hotel 114
## 36128 Resort Hotel 213
## 36129 Resort Hotel 88
## 36130 Resort Hotel 47
## 36131 Resort Hotel 27
## 36132 Resort Hotel 32
## 36133 Resort Hotel 248
## 36134 Resort Hotel 117
## 36135 Resort Hotel 8
## 36136 Resort Hotel 143
## 36137 Resort Hotel 82
## 36138 Resort Hotel 82
## 36139 Resort Hotel 82
## 36140 Resort Hotel 79
## 36141 Resort Hotel 51
## 36142 Resort Hotel 111
## 36143 Resort Hotel 116
## 36144 Resort Hotel 199
## 36145 Resort Hotel 7
## 36146 Resort Hotel 7
## 36147 Resort Hotel 0
## 36148 Resort Hotel 0
## 36149 Resort Hotel 172
## 36150 Resort Hotel 172
## 36151 Resort Hotel 0
## 36152 Resort Hotel 101
## 36153 Resort Hotel 11
## 36154 Resort Hotel 314
## 36155 Resort Hotel 15
## 36156 Resort Hotel 245
## 36157 Resort Hotel 86
## 36158 Resort Hotel 88
## 36159 Resort Hotel 8
## 36160 Resort Hotel 26
## 36161 Resort Hotel 5
## 36162 Resort Hotel 2
## 36163 Resort Hotel 33
## 36164 Resort Hotel 257
## 36165 Resort Hotel 257
## 36166 Resort Hotel 257
## 36167 Resort Hotel 302
## 36168 Resort Hotel 257
## 36169 Resort Hotel 302
## 36170 Resort Hotel 302
## 36171 Resort Hotel 257
## 36172 Resort Hotel 302
## 36173 Resort Hotel 32
## 36174 Resort Hotel 257
## 36175 Resort Hotel 257
## 36176 Resort Hotel 257
## 36177 Resort Hotel 231
## 36178 Resort Hotel 257
## 36179 Resort Hotel 257
## 36180 Resort Hotel 302
## 36181 Resort Hotel 257
## 36182 Resort Hotel 231
## 36183 Resort Hotel 257
## 36184 Resort Hotel 302
## 36185 Resort Hotel 231
## 36186 Resort Hotel 302
## 36187 Resort Hotel 84
## 36188 Resort Hotel 302
## 36189 Resort Hotel 257
## 36190 Resort Hotel 257
## 36191 Resort Hotel 257
## 36192 Resort Hotel 257
## 36193 Resort Hotel 257
## 36194 Resort Hotel 302
## 36195 Resort Hotel 0
## 36196 Resort Hotel 257
## 36197 Resort Hotel 0
## 36198 Resort Hotel 2
## 36199 Resort Hotel 0
## 36200 Resort Hotel 29
## 36201 Resort Hotel 0
## 36202 Resort Hotel 1
## 36203 Resort Hotel 27
## 36204 Resort Hotel 4
## 36205 Resort Hotel 118
## 36206 Resort Hotel 4
## 36207 Resort Hotel 0
## 36208 Resort Hotel 0
## 36209 Resort Hotel 83
## 36210 Resort Hotel 48
## 36211 Resort Hotel 82
## 36212 Resort Hotel 93
## 36213 Resort Hotel 256
## 36214 Resort Hotel 93
## 36215 Resort Hotel 296
## 36216 Resort Hotel 296
## 36217 Resort Hotel 101
## 36218 Resort Hotel 116
## 36219 Resort Hotel 266
## 36220 Resort Hotel 42
## 36221 Resort Hotel 42
## 36222 Resort Hotel 102
## 36223 Resort Hotel 35
## 36224 Resort Hotel 116
## 36225 Resort Hotel 116
## 36226 Resort Hotel 35
## 36227 Resort Hotel 116
## 36228 Resort Hotel 35
## 36229 Resort Hotel 116
## 36230 Resort Hotel 116
## 36231 Resort Hotel 116
## 36232 Resort Hotel 15
## 36233 Resort Hotel 0
## 36234 Resort Hotel 228
## 36235 Resort Hotel 0
## 36236 Resort Hotel 116
## 36237 Resort Hotel 90
## 36238 Resort Hotel 7
## 36239 Resort Hotel 90
## 36240 Resort Hotel 82
## 36241 Resort Hotel 6
## 36242 Resort Hotel 96
## 36243 Resort Hotel 7
## 36244 Resort Hotel 113
## 36245 Resort Hotel 193
## 36246 Resort Hotel 193
## 36247 Resort Hotel 8
## 36248 Resort Hotel 217
## 36249 Resort Hotel 156
## 36250 Resort Hotel 217
## 36251 Resort Hotel 156
## 36252 Resort Hotel 218
## 36253 Resort Hotel 156
## 36254 Resort Hotel 156
## 36255 Resort Hotel 273
## 36256 Resort Hotel 156
## 36257 Resort Hotel 156
## 36258 Resort Hotel 156
## 36259 Resort Hotel 156
## 36260 Resort Hotel 36
## 36261 Resort Hotel 156
## 36262 Resort Hotel 217
## 36263 Resort Hotel 156
## 36264 Resort Hotel 156
## 36265 Resort Hotel 156
## 36266 Resort Hotel 94
## 36267 Resort Hotel 156
## 36268 Resort Hotel 156
## 36269 Resort Hotel 156
## 36270 Resort Hotel 156
## 36271 Resort Hotel 156
## 36272 Resort Hotel 156
## 36273 Resort Hotel 156
## 36274 Resort Hotel 156
## 36275 Resort Hotel 156
## 36276 Resort Hotel 156
## 36277 Resort Hotel 156
## 36278 Resort Hotel 156
## 36279 Resort Hotel 156
## 36280 Resort Hotel 30
## 36281 Resort Hotel 51
## 36282 Resort Hotel 156
## 36283 Resort Hotel 13
## 36284 Resort Hotel 45
## 36285 Resort Hotel 10
## 36286 Resort Hotel 25
## 36287 Resort Hotel 26
## 36288 Resort Hotel 242
## 36289 Resort Hotel 0
## 36290 Resort Hotel 2
## 36291 Resort Hotel 63
## 36292 Resort Hotel 313
## 36293 Resort Hotel 16
## 36294 Resort Hotel 319
## 36295 Resort Hotel 6
## 36296 Resort Hotel 110
## 36297 Resort Hotel 17
## 36298 Resort Hotel 2
## 36299 Resort Hotel 0
## 36300 Resort Hotel 0
## 36301 Resort Hotel 90
## 36302 Resort Hotel 2
## 36303 Resort Hotel 3
## 36304 Resort Hotel 3
## 36305 Resort Hotel 12
## 36306 Resort Hotel 3
## 36307 Resort Hotel 0
## 36308 Resort Hotel 0
## 36309 Resort Hotel 6
## 36310 Resort Hotel 250
## 36311 Resort Hotel 2
## 36312 Resort Hotel 9
## 36313 Resort Hotel 2
## 36314 Resort Hotel 0
## 36315 Resort Hotel 13
## 36316 Resort Hotel 0
## 36317 Resort Hotel 110
## 36318 Resort Hotel 7
## 36319 Resort Hotel 1
## 36320 Resort Hotel 112
## 36321 Resort Hotel 112
## 36322 Resort Hotel 1
## 36323 Resort Hotel 10
## 36324 Resort Hotel 1
## 36325 Resort Hotel 4
## 36326 Resort Hotel 118
## 36327 Resort Hotel 29
## 36328 Resort Hotel 6
## 36329 Resort Hotel 5
## 36330 Resort Hotel 5
## 36331 Resort Hotel 118
## 36332 Resort Hotel 118
## 36333 Resort Hotel 118
## 36334 Resort Hotel 82
## 36335 Resort Hotel 215
## 36336 Resort Hotel 82
## 36337 Resort Hotel 13
## 36338 Resort Hotel 125
## 36339 Resort Hotel 5
## 36340 Resort Hotel 82
## 36341 Resort Hotel 8
## 36342 Resort Hotel 3
## 36343 Resort Hotel 140
## 36344 Resort Hotel 241
## 36345 Resort Hotel 21
## 36346 Resort Hotel 20
## 36347 Resort Hotel 8
## 36348 Resort Hotel 351
## 36349 Resort Hotel 86
## 36350 Resort Hotel 8
## 36351 Resort Hotel 177
## 36352 Resort Hotel 113
## 36353 Resort Hotel 13
## 36354 Resort Hotel 35
## 36355 Resort Hotel 1
## 36356 Resort Hotel 126
## 36357 Resort Hotel 5
## 36358 Resort Hotel 1
## 36359 Resort Hotel 0
## 36360 Resort Hotel 1
## 36361 Resort Hotel 12
## 36362 Resort Hotel 3
## 36363 Resort Hotel 16
## 36364 Resort Hotel 80
## 36365 Resort Hotel 75
## 36366 Resort Hotel 37
## 36367 Resort Hotel 0
## 36368 Resort Hotel 247
## 36369 Resort Hotel 105
## 36370 Resort Hotel 234
## 36371 Resort Hotel 121
## 36372 Resort Hotel 212
## 36373 Resort Hotel 260
## 36374 Resort Hotel 230
## 36375 Resort Hotel 121
## 36376 Resort Hotel 225
## 36377 Resort Hotel 272
## 36378 Resort Hotel 6
## 36379 Resort Hotel 121
## 36380 Resort Hotel 238
## 36381 Resort Hotel 32
## 36382 Resort Hotel 17
## 36383 Resort Hotel 12
## 36384 Resort Hotel 113
## 36385 Resort Hotel 58
## 36386 Resort Hotel 106
## 36387 Resort Hotel 3
## 36388 Resort Hotel 115
## 36389 Resort Hotel 21
## 36390 Resort Hotel 94
## 36391 Resort Hotel 3
## 36392 Resort Hotel 152
## 36393 Resort Hotel 125
## 36394 Resort Hotel 234
## 36395 Resort Hotel 27
## 36396 Resort Hotel 119
## 36397 Resort Hotel 119
## 36398 Resort Hotel 105
## 36399 Resort Hotel 193
## 36400 Resort Hotel 193
## 36401 Resort Hotel 193
## 36402 Resort Hotel 263
## 36403 Resort Hotel 88
## 36404 Resort Hotel 135
## 36405 Resort Hotel 89
## 36406 Resort Hotel 150
## 36407 Resort Hotel 228
## 36408 Resort Hotel 26
## 36409 Resort Hotel 117
## 36410 Resort Hotel 221
## 36411 Resort Hotel 30
## 36412 Resort Hotel 5
## 36413 Resort Hotel 244
## 36414 Resort Hotel 81
## 36415 Resort Hotel 128
## 36416 Resort Hotel 66
## 36417 Resort Hotel 66
## 36418 Resort Hotel 326
## 36419 Resort Hotel 297
## 36420 Resort Hotel 16
## 36421 Resort Hotel 8
## 36422 Resort Hotel 120
## 36423 Resort Hotel 247
## 36424 Resort Hotel 114
## 36425 Resort Hotel 35
## 36426 Resort Hotel 16
## 36427 Resort Hotel 103
## 36428 Resort Hotel 13
## 36429 Resort Hotel 289
## 36430 Resort Hotel 361
## 36431 Resort Hotel 361
## 36432 Resort Hotel 89
## 36433 Resort Hotel 89
## 36434 Resort Hotel 81
## 36435 Resort Hotel 85
## 36436 Resort Hotel 103
## 36437 Resort Hotel 107
## 36438 Resort Hotel 93
## 36439 Resort Hotel 262
## 36440 Resort Hotel 12
## 36441 Resort Hotel 5
## 36442 Resort Hotel 9
## 36443 Resort Hotel 9
## 36444 Resort Hotel 66
## 36445 Resort Hotel 67
## 36446 Resort Hotel 0
## 36447 Resort Hotel 124
## 36448 Resort Hotel 2
## 36449 Resort Hotel 2
## 36450 Resort Hotel 2
## 36451 Resort Hotel 13
## 36452 Resort Hotel 20
## 36453 Resort Hotel 68
## 36454 Resort Hotel 1
## 36455 Resort Hotel 128
## 36456 Resort Hotel 3
## 36457 Resort Hotel 223
## 36458 Resort Hotel 1
## 36459 Resort Hotel 59
## 36460 Resort Hotel 93
## 36461 Resort Hotel 0
## 36462 Resort Hotel 193
## 36463 Resort Hotel 292
## 36464 Resort Hotel 117
## 36465 Resort Hotel 117
## 36466 Resort Hotel 120
## 36467 Resort Hotel 120
## 36468 Resort Hotel 163
## 36469 Resort Hotel 0
## 36470 Resort Hotel 103
## 36471 Resort Hotel 7
## 36472 Resort Hotel 83
## 36473 Resort Hotel 7
## 36474 Resort Hotel 153
## 36475 Resort Hotel 3
## 36476 Resort Hotel 3
## 36477 Resort Hotel 286
## 36478 Resort Hotel 26
## 36479 Resort Hotel 286
## 36480 Resort Hotel 286
## 36481 Resort Hotel 67
## 36482 Resort Hotel 0
## 36483 Resort Hotel 286
## 36484 Resort Hotel 83
## 36485 Resort Hotel 0
## 36486 Resort Hotel 59
## 36487 Resort Hotel 94
## 36488 Resort Hotel 3
## 36489 Resort Hotel 275
## 36490 Resort Hotel 74
## 36491 Resort Hotel 208
## 36492 Resort Hotel 112
## 36493 Resort Hotel 243
## 36494 Resort Hotel 205
## 36495 Resort Hotel 205
## 36496 Resort Hotel 130
## 36497 Resort Hotel 329
## 36498 Resort Hotel 126
## 36499 Resort Hotel 181
## 36500 Resort Hotel 118
## 36501 Resort Hotel 118
## 36502 Resort Hotel 208
## 36503 Resort Hotel 200
## 36504 Resort Hotel 5
## 36505 Resort Hotel 147
## 36506 Resort Hotel 97
## 36507 Resort Hotel 104
## 36508 Resort Hotel 118
## 36509 Resort Hotel 118
## 36510 Resort Hotel 104
## 36511 Resort Hotel 118
## 36512 Resort Hotel 118
## 36513 Resort Hotel 7
## 36514 Resort Hotel 108
## 36515 Resort Hotel 0
## 36516 Resort Hotel 222
## 36517 Resort Hotel 126
## 36518 Resort Hotel 4
## 36519 Resort Hotel 219
## 36520 Resort Hotel 195
## 36521 Resort Hotel 154
## 36522 Resort Hotel 0
## 36523 Resort Hotel 118
## 36524 Resort Hotel 213
## 36525 Resort Hotel 126
## 36526 Resort Hotel 62
## 36527 Resort Hotel 89
## 36528 Resort Hotel 103
## 36529 Resort Hotel 98
## 36530 Resort Hotel 303
## 36531 Resort Hotel 87
## 36532 Resort Hotel 130
## 36533 Resort Hotel 72
## 36534 Resort Hotel 72
## 36535 Resort Hotel 302
## 36536 Resort Hotel 194
## 36537 Resort Hotel 142
## 36538 Resort Hotel 95
## 36539 Resort Hotel 127
## 36540 Resort Hotel 79
## 36541 Resort Hotel 95
## 36542 Resort Hotel 95
## 36543 Resort Hotel 15
## 36544 Resort Hotel 11
## 36545 Resort Hotel 18
## 36546 Resort Hotel 0
## 36547 Resort Hotel 25
## 36548 Resort Hotel 1
## 36549 Resort Hotel 68
## 36550 Resort Hotel 0
## 36551 Resort Hotel 2
## 36552 Resort Hotel 8
## 36553 Resort Hotel 1
## 36554 Resort Hotel 25
## 36555 Resort Hotel 33
## 36556 Resort Hotel 153
## 36557 Resort Hotel 133
## 36558 Resort Hotel 98
## 36559 Resort Hotel 105
## 36560 Resort Hotel 0
## 36561 Resort Hotel 11
## 36562 Resort Hotel 107
## 36563 Resort Hotel 168
## 36564 Resort Hotel 1
## 36565 Resort Hotel 255
## 36566 Resort Hotel 9
## 36567 Resort Hotel 87
## 36568 Resort Hotel 3
## 36569 Resort Hotel 239
## 36570 Resort Hotel 131
## 36571 Resort Hotel 93
## 36572 Resort Hotel 2
## 36573 Resort Hotel 5
## 36574 Resort Hotel 33
## 36575 Resort Hotel 5
## 36576 Resort Hotel 93
## 36577 Resort Hotel 93
## 36578 Resort Hotel 101
## 36579 Resort Hotel 26
## 36580 Resort Hotel 283
## 36581 Resort Hotel 358
## 36582 Resort Hotel 110
## 36583 Resort Hotel 128
## 36584 Resort Hotel 219
## 36585 Resort Hotel 128
## 36586 Resort Hotel 132
## 36587 Resort Hotel 117
## 36588 Resort Hotel 114
## 36589 Resort Hotel 42
## 36590 Resort Hotel 105
## 36591 Resort Hotel 104
## 36592 Resort Hotel 117
## 36593 Resort Hotel 105
## 36594 Resort Hotel 13
## 36595 Resort Hotel 114
## 36596 Resort Hotel 128
## 36597 Resort Hotel 128
## 36598 Resort Hotel 91
## 36599 Resort Hotel 287
## 36600 Resort Hotel 99
## 36601 Resort Hotel 192
## 36602 Resort Hotel 26
## 36603 Resort Hotel 26
## 36604 Resort Hotel 6
## 36605 Resort Hotel 6
## 36606 Resort Hotel 56
## 36607 Resort Hotel 14
## 36608 Resort Hotel 2
## 36609 Resort Hotel 0
## 36610 Resort Hotel 11
## 36611 Resort Hotel 0
## 36612 Resort Hotel 2
## 36613 Resort Hotel 0
## 36614 Resort Hotel 0
## 36615 Resort Hotel 72
## 36616 Resort Hotel 98
## 36617 Resort Hotel 72
## 36618 Resort Hotel 220
## 36619 Resort Hotel 47
## 36620 Resort Hotel 203
## 36621 Resort Hotel 203
## 36622 Resort Hotel 150
## 36623 Resort Hotel 12
## 36624 Resort Hotel 2
## 36625 Resort Hotel 12
## 36626 Resort Hotel 77
## 36627 Resort Hotel 13
## 36628 Resort Hotel 2
## 36629 Resort Hotel 17
## 36630 Resort Hotel 352
## 36631 Resort Hotel 216
## 36632 Resort Hotel 19
## 36633 Resort Hotel 7
## 36634 Resort Hotel 7
## 36635 Resort Hotel 7
## 36636 Resort Hotel 7
## 36637 Resort Hotel 7
## 36638 Resort Hotel 8
## 36639 Resort Hotel 3
## 36640 Resort Hotel 11
## 36641 Resort Hotel 18
## 36642 Resort Hotel 2
## 36643 Resort Hotel 156
## 36644 Resort Hotel 134
## 36645 Resort Hotel 114
## 36646 Resort Hotel 114
## 36647 Resort Hotel 114
## 36648 Resort Hotel 54
## 36649 Resort Hotel 238
## 36650 Resort Hotel 334
## 36651 Resort Hotel 238
## 36652 Resort Hotel 159
## 36653 Resort Hotel 352
## 36654 Resort Hotel 25
## 36655 Resort Hotel 99
## 36656 Resort Hotel 267
## 36657 Resort Hotel 166
## 36658 Resort Hotel 142
## 36659 Resort Hotel 159
## 36660 Resort Hotel 353
## 36661 Resort Hotel 47
## 36662 Resort Hotel 203
## 36663 Resort Hotel 48
## 36664 Resort Hotel 203
## 36665 Resort Hotel 120
## 36666 Resort Hotel 221
## 36667 Resort Hotel 278
## 36668 Resort Hotel 278
## 36669 Resort Hotel 72
## 36670 Resort Hotel 186
## 36671 Resort Hotel 129
## 36672 Resort Hotel 98
## 36673 Resort Hotel 243
## 36674 Resort Hotel 114
## 36675 Resort Hotel 99
## 36676 Resort Hotel 203
## 36677 Resort Hotel 16
## 36678 Resort Hotel 0
## 36679 Resort Hotel 52
## 36680 Resort Hotel 106
## 36681 Resort Hotel 10
## 36682 Resort Hotel 2
## 36683 Resort Hotel 14
## 36684 Resort Hotel 50
## 36685 Resort Hotel 0
## 36686 Resort Hotel 110
## 36687 Resort Hotel 110
## 36688 Resort Hotel 6
## 36689 Resort Hotel 162
## 36690 Resort Hotel 11
## 36691 Resort Hotel 24
## 36692 Resort Hotel 77
## 36693 Resort Hotel 13
## 36694 Resort Hotel 251
## 36695 Resort Hotel 251
## 36696 Resort Hotel 45
## 36697 Resort Hotel 71
## 36698 Resort Hotel 141
## 36699 Resort Hotel 161
## 36700 Resort Hotel 11
## 36701 Resort Hotel 14
## 36702 Resort Hotel 142
## 36703 Resort Hotel 19
## 36704 Resort Hotel 31
## 36705 Resort Hotel 121
## 36706 Resort Hotel 33
## 36707 Resort Hotel 1
## 36708 Resort Hotel 10
## 36709 Resort Hotel 203
## 36710 Resort Hotel 270
## 36711 Resort Hotel 203
## 36712 Resort Hotel 203
## 36713 Resort Hotel 203
## 36714 Resort Hotel 203
## 36715 Resort Hotel 63
## 36716 Resort Hotel 203
## 36717 Resort Hotel 388
## 36718 Resort Hotel 203
## 36719 Resort Hotel 203
## 36720 Resort Hotel 223
## 36721 Resort Hotel 388
## 36722 Resort Hotel 203
## 36723 Resort Hotel 388
## 36724 Resort Hotel 289
## 36725 Resort Hotel 388
## 36726 Resort Hotel 203
## 36727 Resort Hotel 203
## 36728 Resort Hotel 388
## 36729 Resort Hotel 388
## 36730 Resort Hotel 388
## 36731 Resort Hotel 203
## 36732 Resort Hotel 388
## 36733 Resort Hotel 0
## 36734 Resort Hotel 388
## 36735 Resort Hotel 388
## 36736 Resort Hotel 388
## 36737 Resort Hotel 388
## 36738 Resort Hotel 388
## 36739 Resort Hotel 388
## 36740 Resort Hotel 388
## 36741 Resort Hotel 388
## 36742 Resort Hotel 388
## 36743 Resort Hotel 388
## 36744 Resort Hotel 388
## 36745 Resort Hotel 175
## 36746 Resort Hotel 175
## 36747 Resort Hotel 203
## 36748 Resort Hotel 17
## 36749 Resort Hotel 77
## 36750 Resort Hotel 21
## 36751 Resort Hotel 203
## 36752 Resort Hotel 2
## 36753 Resort Hotel 203
## 36754 Resort Hotel 3
## 36755 Resort Hotel 203
## 36756 Resort Hotel 302
## 36757 Resort Hotel 2
## 36758 Resort Hotel 102
## 36759 Resort Hotel 203
## 36760 Resort Hotel 0
## 36761 Resort Hotel 203
## 36762 Resort Hotel 203
## 36763 Resort Hotel 37
## 36764 Resort Hotel 2
## 36765 Resort Hotel 200
## 36766 Resort Hotel 200
## 36767 Resort Hotel 200
## 36768 Resort Hotel 200
## 36769 Resort Hotel 1
## 36770 Resort Hotel 130
## 36771 Resort Hotel 203
## 36772 Resort Hotel 107
## 36773 Resort Hotel 107
## 36774 Resort Hotel 203
## 36775 Resort Hotel 203
## 36776 Resort Hotel 203
## 36777 Resort Hotel 16
## 36778 Resort Hotel 99
## 36779 Resort Hotel 203
## 36780 Resort Hotel 2
## 36781 Resort Hotel 203
## 36782 Resort Hotel 202
## 36783 Resort Hotel 203
## 36784 Resort Hotel 138
## 36785 Resort Hotel 203
## 36786 Resort Hotel 202
## 36787 Resort Hotel 307
## 36788 Resort Hotel 206
## 36789 Resort Hotel 307
## 36790 Resort Hotel 309
## 36791 Resort Hotel 164
## 36792 Resort Hotel 1
## 36793 Resort Hotel 14
## 36794 Resort Hotel 2
## 36795 Resort Hotel 129
## 36796 Resort Hotel 9
## 36797 Resort Hotel 274
## 36798 Resort Hotel 274
## 36799 Resort Hotel 39
## 36800 Resort Hotel 1
## 36801 Resort Hotel 196
## 36802 Resort Hotel 10
## 36803 Resort Hotel 61
## 36804 Resort Hotel 227
## 36805 Resort Hotel 203
## 36806 Resort Hotel 38
## 36807 Resort Hotel 18
## 36808 Resort Hotel 38
## 36809 Resort Hotel 11
## 36810 Resort Hotel 0
## 36811 Resort Hotel 388
## 36812 Resort Hotel 319
## 36813 Resort Hotel 9
## 36814 Resort Hotel 203
## 36815 Resort Hotel 203
## 36816 Resort Hotel 203
## 36817 Resort Hotel 203
## 36818 Resort Hotel 131
## 36819 Resort Hotel 203
## 36820 Resort Hotel 272
## 36821 Resort Hotel 128
## 36822 Resort Hotel 4
## 36823 Resort Hotel 151
## 36824 Resort Hotel 204
## 36825 Resort Hotel 211
## 36826 Resort Hotel 2
## 36827 Resort Hotel 0
## 36828 Resort Hotel 1
## 36829 Resort Hotel 5
## 36830 Resort Hotel 345
## 36831 Resort Hotel 40
## 36832 Resort Hotel 40
## 36833 Resort Hotel 40
## 36834 Resort Hotel 40
## 36835 Resort Hotel 17
## 36836 Resort Hotel 337
## 36837 Resort Hotel 1
## 36838 Resort Hotel 258
## 36839 Resort Hotel 7
## 36840 Resort Hotel 123
## 36841 Resort Hotel 21
## 36842 Resort Hotel 201
## 36843 Resort Hotel 300
## 36844 Resort Hotel 345
## 36845 Resort Hotel 68
## 36846 Resort Hotel 77
## 36847 Resort Hotel 1
## 36848 Resort Hotel 1
## 36849 Resort Hotel 270
## 36850 Resort Hotel 116
## 36851 Resort Hotel 65
## 36852 Resort Hotel 4
## 36853 Resort Hotel 32
## 36854 Resort Hotel 338
## 36855 Resort Hotel 116
## 36856 Resort Hotel 112
## 36857 Resort Hotel 1
## 36858 Resort Hotel 36
## 36859 Resort Hotel 5
## 36860 Resort Hotel 184
## 36861 Resort Hotel 352
## 36862 Resort Hotel 203
## 36863 Resort Hotel 314
## 36864 Resort Hotel 337
## 36865 Resort Hotel 310
## 36866 Resort Hotel 192
## 36867 Resort Hotel 309
## 36868 Resort Hotel 309
## 36869 Resort Hotel 309
## 36870 Resort Hotel 305
## 36871 Resort Hotel 301
## 36872 Resort Hotel 303
## 36873 Resort Hotel 306
## 36874 Resort Hotel 314
## 36875 Resort Hotel 4
## 36876 Resort Hotel 1
## 36877 Resort Hotel 34
## 36878 Resort Hotel 154
## 36879 Resort Hotel 280
## 36880 Resort Hotel 139
## 36881 Resort Hotel 203
## 36882 Resort Hotel 203
## 36883 Resort Hotel 203
## 36884 Resort Hotel 203
## 36885 Resort Hotel 14
## 36886 Resort Hotel 1
## 36887 Resort Hotel 1
## 36888 Resort Hotel 170
## 36889 Resort Hotel 174
## 36890 Resort Hotel 330
## 36891 Resort Hotel 120
## 36892 Resort Hotel 202
## 36893 Resort Hotel 124
## 36894 Resort Hotel 207
## 36895 Resort Hotel 0
## 36896 Resort Hotel 95
## 36897 Resort Hotel 124
## 36898 Resort Hotel 172
## 36899 Resort Hotel 353
## 36900 Resort Hotel 117
## 36901 Resort Hotel 164
## 36902 Resort Hotel 124
## 36903 Resort Hotel 138
## 36904 Resort Hotel 1
## 36905 Resort Hotel 203
## 36906 Resort Hotel 138
## 36907 Resort Hotel 352
## 36908 Resort Hotel 42
## 36909 Resort Hotel 167
## 36910 Resort Hotel 3
## 36911 Resort Hotel 135
## 36912 Resort Hotel 352
## 36913 Resort Hotel 203
## 36914 Resort Hotel 352
## 36915 Resort Hotel 353
## 36916 Resort Hotel 199
## 36917 Resort Hotel 159
## 36918 Resort Hotel 73
## 36919 Resort Hotel 212
## 36920 Resort Hotel 333
## 36921 Resort Hotel 124
## 36922 Resort Hotel 44
## 36923 Resort Hotel 44
## 36924 Resort Hotel 34
## 36925 Resort Hotel 71
## 36926 Resort Hotel 39
## 36927 Resort Hotel 79
## 36928 Resort Hotel 40
## 36929 Resort Hotel 61
## 36930 Resort Hotel 5
## 36931 Resort Hotel 1
## 36932 Resort Hotel 2
## 36933 Resort Hotel 1
## 36934 Resort Hotel 10
## 36935 Resort Hotel 2
## 36936 Resort Hotel 1
## 36937 Resort Hotel 25
## 36938 Resort Hotel 71
## 36939 Resort Hotel 6
## 36940 Resort Hotel 135
## 36941 Resort Hotel 135
## 36942 Resort Hotel 137
## 36943 Resort Hotel 351
## 36944 Resort Hotel 12
## 36945 Resort Hotel 2
## 36946 Resort Hotel 192
## 36947 Resort Hotel 3
## 36948 Resort Hotel 1
## 36949 Resort Hotel 2
## 36950 Resort Hotel 277
## 36951 Resort Hotel 7
## 36952 Resort Hotel 5
## 36953 Resort Hotel 230
## 36954 Resort Hotel 107
## 36955 Resort Hotel 230
## 36956 Resort Hotel 1
## 36957 Resort Hotel 122
## 36958 Resort Hotel 10
## 36959 Resort Hotel 137
## 36960 Resort Hotel 137
## 36961 Resort Hotel 2
## 36962 Resort Hotel 1
## 36963 Resort Hotel 1
## 36964 Resort Hotel 19
## 36965 Resort Hotel 6
## 36966 Resort Hotel 132
## 36967 Resort Hotel 9
## 36968 Resort Hotel 7
## 36969 Resort Hotel 15
## 36970 Resort Hotel 1
## 36971 Resort Hotel 1
## 36972 Resort Hotel 7
## 36973 Resort Hotel 19
## 36974 Resort Hotel 158
## 36975 Resort Hotel 191
## 36976 Resort Hotel 6
## 36977 Resort Hotel 14
## 36978 Resort Hotel 46
## 36979 Resort Hotel 1
## 36980 Resort Hotel 1
## 36981 Resort Hotel 4
## 36982 Resort Hotel 2
## 36983 Resort Hotel 2
## 36984 Resort Hotel 62
## 36985 Resort Hotel 0
## 36986 Resort Hotel 0
## 36987 Resort Hotel 7
## 36988 Resort Hotel 9
## 36989 Resort Hotel 2
## 36990 Resort Hotel 91
## 36991 Resort Hotel 29
## 36992 Resort Hotel 29
## 36993 Resort Hotel 29
## 36994 Resort Hotel 50
## 36995 Resort Hotel 0
## 36996 Resort Hotel 91
## 36997 Resort Hotel 119
## 36998 Resort Hotel 119
## 36999 Resort Hotel 131
## 37000 Resort Hotel 130
## 37001 Resort Hotel 118
## 37002 Resort Hotel 0
## 37003 Resort Hotel 67
## 37004 Resort Hotel 116
## 37005 Resort Hotel 116
## 37006 Resort Hotel 78
## 37007 Resort Hotel 83
## 37008 Resort Hotel 0
## 37009 Resort Hotel 1
## 37010 Resort Hotel 76
## 37011 Resort Hotel 223
## 37012 Resort Hotel 25
## 37013 Resort Hotel 122
## 37014 Resort Hotel 159
## 37015 Resort Hotel 19
## 37016 Resort Hotel 14
## 37017 Resort Hotel 11
## 37018 Resort Hotel 48
## 37019 Resort Hotel 128
## 37020 Resort Hotel 21
## 37021 Resort Hotel 110
## 37022 Resort Hotel 23
## 37023 Resort Hotel 330
## 37024 Resort Hotel 1
## 37025 Resort Hotel 60
## 37026 Resort Hotel 335
## 37027 Resort Hotel 0
## 37028 Resort Hotel 268
## 37029 Resort Hotel 268
## 37030 Resort Hotel 115
## 37031 Resort Hotel 56
## 37032 Resort Hotel 1
## 37033 Resort Hotel 223
## 37034 Resort Hotel 130
## 37035 Resort Hotel 0
## 37036 Resort Hotel 131
## 37037 Resort Hotel 131
## 37038 Resort Hotel 321
## 37039 Resort Hotel 0
## 37040 Resort Hotel 105
## 37041 Resort Hotel 109
## 37042 Resort Hotel 136
## 37043 Resort Hotel 136
## 37044 Resort Hotel 37
## 37045 Resort Hotel 125
## 37046 Resort Hotel 270
## 37047 Resort Hotel 140
## 37048 Resort Hotel 86
## 37049 Resort Hotel 1
## 37050 Resort Hotel 130
## 37051 Resort Hotel 213
## 37052 Resort Hotel 321
## 37053 Resort Hotel 105
## 37054 Resort Hotel 0
## 37055 Resort Hotel 136
## 37056 Resort Hotel 15
## 37057 Resort Hotel 1
## 37058 Resort Hotel 273
## 37059 Resort Hotel 123
## 37060 Resort Hotel 85
## 37061 Resort Hotel 1
## 37062 Resort Hotel 4
## 37063 Resort Hotel 126
## 37064 Resort Hotel 14
## 37065 Resort Hotel 32
## 37066 Resort Hotel 184
## 37067 Resort Hotel 184
## 37068 Resort Hotel 264
## 37069 Resort Hotel 125
## 37070 Resort Hotel 312
## 37071 Resort Hotel 312
## 37072 Resort Hotel 14
## 37073 Resort Hotel 79
## 37074 Resort Hotel 70
## 37075 Resort Hotel 16
## 37076 Resort Hotel 16
## 37077 Resort Hotel 27
## 37078 Resort Hotel 158
## 37079 Resort Hotel 76
## 37080 Resort Hotel 258
## 37081 Resort Hotel 241
## 37082 Resort Hotel 79
## 37083 Resort Hotel 231
## 37084 Resort Hotel 241
## 37085 Resort Hotel 241
## 37086 Resort Hotel 4
## 37087 Resort Hotel 4
## 37088 Resort Hotel 13
## 37089 Resort Hotel 13
## 37090 Resort Hotel 69
## 37091 Resort Hotel 69
## 37092 Resort Hotel 83
## 37093 Resort Hotel 190
## 37094 Resort Hotel 0
## 37095 Resort Hotel 0
## 37096 Resort Hotel 251
## 37097 Resort Hotel 251
## 37098 Resort Hotel 251
## 37099 Resort Hotel 297
## 37100 Resort Hotel 251
## 37101 Resort Hotel 177
## 37102 Resort Hotel 251
## 37103 Resort Hotel 59
## 37104 Resort Hotel 251
## 37105 Resort Hotel 2
## 37106 Resort Hotel 90
## 37107 Resort Hotel 246
## 37108 Resort Hotel 297
## 37109 Resort Hotel 297
## 37110 Resort Hotel 21
## 37111 Resort Hotel 36
## 37112 Resort Hotel 124
## 37113 Resort Hotel 138
## 37114 Resort Hotel 4
## 37115 Resort Hotel 57
## 37116 Resort Hotel 165
## 37117 Resort Hotel 165
## 37118 Resort Hotel 44
## 37119 Resort Hotel 44
## 37120 Resort Hotel 66
## 37121 Resort Hotel 183
## 37122 Resort Hotel 183
## 37123 Resort Hotel 183
## 37124 Resort Hotel 183
## 37125 Resort Hotel 180
## 37126 Resort Hotel 379
## 37127 Resort Hotel 183
## 37128 Resort Hotel 183
## 37129 Resort Hotel 183
## 37130 Resort Hotel 324
## 37131 Resort Hotel 83
## 37132 Resort Hotel 165
## 37133 Resort Hotel 294
## 37134 Resort Hotel 213
## 37135 Resort Hotel 281
## 37136 Resort Hotel 205
## 37137 Resort Hotel 17
## 37138 Resort Hotel 1
## 37139 Resort Hotel 127
## 37140 Resort Hotel 191
## 37141 Resort Hotel 216
## 37142 Resort Hotel 181
## 37143 Resort Hotel 205
## 37144 Resort Hotel 205
## 37145 Resort Hotel 50
## 37146 Resort Hotel 142
## 37147 Resort Hotel 313
## 37148 Resort Hotel 2
## 37149 Resort Hotel 56
## 37150 Resort Hotel 4
## 37151 Resort Hotel 67
## 37152 Resort Hotel 2
## 37153 Resort Hotel 0
## 37154 Resort Hotel 342
## 37155 Resort Hotel 0
## 37156 Resort Hotel 322
## 37157 Resort Hotel 274
## 37158 Resort Hotel 264
## 37159 Resort Hotel 21
## 37160 Resort Hotel 2
## 37161 Resort Hotel 40
## 37162 Resort Hotel 128
## 37163 Resort Hotel 322
## 37164 Resort Hotel 318
## 37165 Resort Hotel 2
## 37166 Resort Hotel 146
## 37167 Resort Hotel 295
## 37168 Resort Hotel 141
## 37169 Resort Hotel 148
## 37170 Resort Hotel 41
## 37171 Resort Hotel 261
## 37172 Resort Hotel 320
## 37173 Resort Hotel 67
## 37174 Resort Hotel 23
## 37175 Resort Hotel 113
## 37176 Resort Hotel 320
## 37177 Resort Hotel 24
## 37178 Resort Hotel 1
## 37179 Resort Hotel 319
## 37180 Resort Hotel 320
## 37181 Resort Hotel 254
## 37182 Resort Hotel 241
## 37183 Resort Hotel 275
## 37184 Resort Hotel 275
## 37185 Resort Hotel 0
## 37186 Resort Hotel 322
## 37187 Resort Hotel 320
## 37188 Resort Hotel 176
## 37189 Resort Hotel 24
## 37190 Resort Hotel 1
## 37191 Resort Hotel 23
## 37192 Resort Hotel 320
## 37193 Resort Hotel 289
## 37194 Resort Hotel 319
## 37195 Resort Hotel 320
## 37196 Resort Hotel 319
## 37197 Resort Hotel 319
## 37198 Resort Hotel 28
## 37199 Resort Hotel 1
## 37200 Resort Hotel 320
## 37201 Resort Hotel 0
## 37202 Resort Hotel 321
## 37203 Resort Hotel 320
## 37204 Resort Hotel 320
## 37205 Resort Hotel 320
## 37206 Resort Hotel 41
## 37207 Resort Hotel 319
## 37208 Resort Hotel 24
## 37209 Resort Hotel 1
## 37210 Resort Hotel 296
## 37211 Resort Hotel 247
## 37212 Resort Hotel 131
## 37213 Resort Hotel 131
## 37214 Resort Hotel 277
## 37215 Resort Hotel 137
## 37216 Resort Hotel 96
## 37217 Resort Hotel 327
## 37218 Resort Hotel 159
## 37219 Resort Hotel 159
## 37220 Resort Hotel 159
## 37221 Resort Hotel 159
## 37222 Resort Hotel 145
## 37223 Resort Hotel 0
## 37224 Resort Hotel 115
## 37225 Resort Hotel 89
## 37226 Resort Hotel 0
## 37227 Resort Hotel 26
## 37228 Resort Hotel 16
## 37229 Resort Hotel 129
## 37230 Resort Hotel 14
## 37231 Resort Hotel 7
## 37232 Resort Hotel 19
## 37233 Resort Hotel 3
## 37234 Resort Hotel 2
## 37235 Resort Hotel 0
## 37236 Resort Hotel 22
## 37237 Resort Hotel 24
## 37238 Resort Hotel 24
## 37239 Resort Hotel 18
## 37240 Resort Hotel 4
## 37241 Resort Hotel 66
## 37242 Resort Hotel 45
## 37243 Resort Hotel 45
## 37244 Resort Hotel 300
## 37245 Resort Hotel 33
## 37246 Resort Hotel 33
## 37247 Resort Hotel 23
## 37248 Resort Hotel 45
## 37249 Resort Hotel 58
## 37250 Resort Hotel 320
## 37251 Resort Hotel 10
## 37252 Resort Hotel 39
## 37253 Resort Hotel 129
## 37254 Resort Hotel 21
## 37255 Resort Hotel 21
## 37256 Resort Hotel 3
## 37257 Resort Hotel 237
## 37258 Resort Hotel 32
## 37259 Resort Hotel 32
## 37260 Resort Hotel 290
## 37261 Resort Hotel 290
## 37262 Resort Hotel 166
## 37263 Resort Hotel 108
## 37264 Resort Hotel 18
## 37265 Resort Hotel 18
## 37266 Resort Hotel 41
## 37267 Resort Hotel 27
## 37268 Resort Hotel 33
## 37269 Resort Hotel 85
## 37270 Resort Hotel 38
## 37271 Resort Hotel 42
## 37272 Resort Hotel 2
## 37273 Resort Hotel 0
## 37274 Resort Hotel 15
## 37275 Resort Hotel 344
## 37276 Resort Hotel 23
## 37277 Resort Hotel 321
## 37278 Resort Hotel 23
## 37279 Resort Hotel 61
## 37280 Resort Hotel 65
## 37281 Resort Hotel 75
## 37282 Resort Hotel 321
## 37283 Resort Hotel 20
## 37284 Resort Hotel 16
## 37285 Resort Hotel 19
## 37286 Resort Hotel 38
## 37287 Resort Hotel 32
## 37288 Resort Hotel 168
## 37289 Resort Hotel 228
## 37290 Resort Hotel 117
## 37291 Resort Hotel 210
## 37292 Resort Hotel 84
## 37293 Resort Hotel 291
## 37294 Resort Hotel 300
## 37295 Resort Hotel 210
## 37296 Resort Hotel 8
## 37297 Resort Hotel 259
## 37298 Resort Hotel 21
## 37299 Resort Hotel 101
## 37300 Resort Hotel 15
## 37301 Resort Hotel 157
## 37302 Resort Hotel 8
## 37303 Resort Hotel 1
## 37304 Resort Hotel 111
## 37305 Resort Hotel 248
## 37306 Resort Hotel 0
## 37307 Resort Hotel 0
## 37308 Resort Hotel 26
## 37309 Resort Hotel 79
## 37310 Resort Hotel 1
## 37311 Resort Hotel 0
## 37312 Resort Hotel 169
## 37313 Resort Hotel 3
## 37314 Resort Hotel 3
## 37315 Resort Hotel 3
## 37316 Resort Hotel 3
## 37317 Resort Hotel 159
## 37318 Resort Hotel 310
## 37319 Resort Hotel 236
## 37320 Resort Hotel 100
## 37321 Resort Hotel 21
## 37322 Resort Hotel 104
## 37323 Resort Hotel 247
## 37324 Resort Hotel 79
## 37325 Resort Hotel 137
## 37326 Resort Hotel 5
## 37327 Resort Hotel 310
## 37328 Resort Hotel 82
## 37329 Resort Hotel 21
## 37330 Resort Hotel 149
## 37331 Resort Hotel 3
## 37332 Resort Hotel 82
## 37333 Resort Hotel 188
## 37334 Resort Hotel 255
## 37335 Resort Hotel 330
## 37336 Resort Hotel 255
## 37337 Resort Hotel 330
## 37338 Resort Hotel 330
## 37339 Resort Hotel 285
## 37340 Resort Hotel 232
## 37341 Resort Hotel 128
## 37342 Resort Hotel 18
## 37343 Resort Hotel 148
## 37344 Resort Hotel 0
## 37345 Resort Hotel 97
## 37346 Resort Hotel 131
## 37347 Resort Hotel 7
## 37348 Resort Hotel 131
## 37349 Resort Hotel 131
## 37350 Resort Hotel 146
## 37351 Resort Hotel 147
## 37352 Resort Hotel 146
## 37353 Resort Hotel 103
## 37354 Resort Hotel 114
## 37355 Resort Hotel 128
## 37356 Resort Hotel 128
## 37357 Resort Hotel 143
## 37358 Resort Hotel 94
## 37359 Resort Hotel 135
## 37360 Resort Hotel 0
## 37361 Resort Hotel 210
## 37362 Resort Hotel 146
## 37363 Resort Hotel 201
## 37364 Resort Hotel 13
## 37365 Resort Hotel 19
## 37366 Resort Hotel 11
## 37367 Resort Hotel 0
## 37368 Resort Hotel 0
## 37369 Resort Hotel 0
## 37370 Resort Hotel 6
## 37371 Resort Hotel 0
## 37372 Resort Hotel 27
## 37373 Resort Hotel 164
## 37374 Resort Hotel 202
## 37375 Resort Hotel 138
## 37376 Resort Hotel 27
## 37377 Resort Hotel 287
## 37378 Resort Hotel 287
## 37379 Resort Hotel 190
## 37380 Resort Hotel 0
## 37381 Resort Hotel 6
## 37382 Resort Hotel 85
## 37383 Resort Hotel 169
## 37384 Resort Hotel 140
## 37385 Resort Hotel 85
## 37386 Resort Hotel 80
## 37387 Resort Hotel 139
## 37388 Resort Hotel 2
## 37389 Resort Hotel 140
## 37390 Resort Hotel 140
## 37391 Resort Hotel 244
## 37392 Resort Hotel 204
## 37393 Resort Hotel 4
## 37394 Resort Hotel 132
## 37395 Resort Hotel 253
## 37396 Resort Hotel 106
## 37397 Resort Hotel 71
## 37398 Resort Hotel 36
## 37399 Resort Hotel 268
## 37400 Resort Hotel 159
## 37401 Resort Hotel 61
## 37402 Resort Hotel 82
## 37403 Resort Hotel 320
## 37404 Resort Hotel 130
## 37405 Resort Hotel 312
## 37406 Resort Hotel 0
## 37407 Resort Hotel 10
## 37408 Resort Hotel 3
## 37409 Resort Hotel 114
## 37410 Resort Hotel 114
## 37411 Resort Hotel 114
## 37412 Resort Hotel 233
## 37413 Resort Hotel 136
## 37414 Resort Hotel 0
## 37415 Resort Hotel 182
## 37416 Resort Hotel 242
## 37417 Resort Hotel 288
## 37418 Resort Hotel 40
## 37419 Resort Hotel 125
## 37420 Resort Hotel 17
## 37421 Resort Hotel 146
## 37422 Resort Hotel 146
## 37423 Resort Hotel 146
## 37424 Resort Hotel 1
## 37425 Resort Hotel 150
## 37426 Resort Hotel 13
## 37427 Resort Hotel 241
## 37428 Resort Hotel 347
## 37429 Resort Hotel 254
## 37430 Resort Hotel 221
## 37431 Resort Hotel 267
## 37432 Resort Hotel 220
## 37433 Resort Hotel 220
## 37434 Resort Hotel 236
## 37435 Resort Hotel 236
## 37436 Resort Hotel 11
## 37437 Resort Hotel 25
## 37438 Resort Hotel 257
## 37439 Resort Hotel 119
## 37440 Resort Hotel 162
## 37441 Resort Hotel 12
## 37442 Resort Hotel 2
## 37443 Resort Hotel 119
## 37444 Resort Hotel 1
## 37445 Resort Hotel 95
## 37446 Resort Hotel 236
## 37447 Resort Hotel 14
## 37448 Resort Hotel 102
## 37449 Resort Hotel 273
## 37450 Resort Hotel 1
## 37451 Resort Hotel 43
## 37452 Resort Hotel 0
## 37453 Resort Hotel 236
## 37454 Resort Hotel 36
## 37455 Resort Hotel 265
## 37456 Resort Hotel 265
## 37457 Resort Hotel 49
## 37458 Resort Hotel 4
## 37459 Resort Hotel 0
## 37460 Resort Hotel 1
## 37461 Resort Hotel 0
## 37462 Resort Hotel 174
## 37463 Resort Hotel 5
## 37464 Resort Hotel 1
## 37465 Resort Hotel 124
## 37466 Resort Hotel 5
## 37467 Resort Hotel 1
## 37468 Resort Hotel 252
## 37469 Resort Hotel 348
## 37470 Resort Hotel 88
## 37471 Resort Hotel 259
## 37472 Resort Hotel 208
## 37473 Resort Hotel 13
## 37474 Resort Hotel 208
## 37475 Resort Hotel 23
## 37476 Resort Hotel 0
## 37477 Resort Hotel 0
## 37478 Resort Hotel 7
## 37479 Resort Hotel 33
## 37480 Resort Hotel 28
## 37481 Resort Hotel 334
## 37482 Resort Hotel 2
## 37483 Resort Hotel 25
## 37484 Resort Hotel 73
## 37485 Resort Hotel 101
## 37486 Resort Hotel 348
## 37487 Resort Hotel 7
## 37488 Resort Hotel 145
## 37489 Resort Hotel 145
## 37490 Resort Hotel 268
## 37491 Resort Hotel 140
## 37492 Resort Hotel 150
## 37493 Resort Hotel 222
## 37494 Resort Hotel 124
## 37495 Resort Hotel 91
## 37496 Resort Hotel 287
## 37497 Resort Hotel 287
## 37498 Resort Hotel 7
## 37499 Resort Hotel 157
## 37500 Resort Hotel 1
## 37501 Resort Hotel 11
## 37502 Resort Hotel 123
## 37503 Resort Hotel 284
## 37504 Resort Hotel 179
## 37505 Resort Hotel 195
## 37506 Resort Hotel 0
## 37507 Resort Hotel 232
## 37508 Resort Hotel 22
## 37509 Resort Hotel 162
## 37510 Resort Hotel 232
## 37511 Resort Hotel 135
## 37512 Resort Hotel 143
## 37513 Resort Hotel 90
## 37514 Resort Hotel 261
## 37515 Resort Hotel 181
## 37516 Resort Hotel 155
## 37517 Resort Hotel 330
## 37518 Resort Hotel 136
## 37519 Resort Hotel 202
## 37520 Resort Hotel 152
## 37521 Resort Hotel 201
## 37522 Resort Hotel 144
## 37523 Resort Hotel 22
## 37524 Resort Hotel 13
## 37525 Resort Hotel 116
## 37526 Resort Hotel 104
## 37527 Resort Hotel 47
## 37528 Resort Hotel 225
## 37529 Resort Hotel 121
## 37530 Resort Hotel 236
## 37531 Resort Hotel 86
## 37532 Resort Hotel 236
## 37533 Resort Hotel 33
## 37534 Resort Hotel 19
## 37535 Resort Hotel 122
## 37536 Resort Hotel 145
## 37537 Resort Hotel 167
## 37538 Resort Hotel 145
## 37539 Resort Hotel 134
## 37540 Resort Hotel 21
## 37541 Resort Hotel 126
## 37542 Resort Hotel 41
## 37543 Resort Hotel 139
## 37544 Resort Hotel 206
## 37545 Resort Hotel 213
## 37546 Resort Hotel 157
## 37547 Resort Hotel 245
## 37548 Resort Hotel 159
## 37549 Resort Hotel 192
## 37550 Resort Hotel 143
## 37551 Resort Hotel 159
## 37552 Resort Hotel 224
## 37553 Resort Hotel 159
## 37554 Resort Hotel 307
## 37555 Resort Hotel 158
## 37556 Resort Hotel 105
## 37557 Resort Hotel 217
## 37558 Resort Hotel 217
## 37559 Resort Hotel 39
## 37560 Resort Hotel 29
## 37561 Resort Hotel 136
## 37562 Resort Hotel 258
## 37563 Resort Hotel 138
## 37564 Resort Hotel 188
## 37565 Resort Hotel 145
## 37566 Resort Hotel 185
## 37567 Resort Hotel 194
## 37568 Resort Hotel 131
## 37569 Resort Hotel 105
## 37570 Resort Hotel 147
## 37571 Resort Hotel 18
## 37572 Resort Hotel 145
## 37573 Resort Hotel 256
## 37574 Resort Hotel 287
## 37575 Resort Hotel 75
## 37576 Resort Hotel 242
## 37577 Resort Hotel 146
## 37578 Resort Hotel 171
## 37579 Resort Hotel 163
## 37580 Resort Hotel 161
## 37581 Resort Hotel 0
## 37582 Resort Hotel 129
## 37583 Resort Hotel 339
## 37584 Resort Hotel 143
## 37585 Resort Hotel 143
## 37586 Resort Hotel 81
## 37587 Resort Hotel 224
## 37588 Resort Hotel 282
## 37589 Resort Hotel 282
## 37590 Resort Hotel 256
## 37591 Resort Hotel 125
## 37592 Resort Hotel 13
## 37593 Resort Hotel 190
## 37594 Resort Hotel 158
## 37595 Resort Hotel 139
## 37596 Resort Hotel 339
## 37597 Resort Hotel 1
## 37598 Resort Hotel 0
## 37599 Resort Hotel 2
## 37600 Resort Hotel 57
## 37601 Resort Hotel 57
## 37602 Resort Hotel 33
## 37603 Resort Hotel 33
## 37604 Resort Hotel 132
## 37605 Resort Hotel 176
## 37606 Resort Hotel 275
## 37607 Resort Hotel 257
## 37608 Resort Hotel 45
## 37609 Resort Hotel 133
## 37610 Resort Hotel 10
## 37611 Resort Hotel 123
## 37612 Resort Hotel 0
## 37613 Resort Hotel 156
## 37614 Resort Hotel 223
## 37615 Resort Hotel 223
## 37616 Resort Hotel 137
## 37617 Resort Hotel 154
## 37618 Resort Hotel 280
## 37619 Resort Hotel 75
## 37620 Resort Hotel 0
## 37621 Resort Hotel 1
## 37622 Resort Hotel 0
## 37623 Resort Hotel 0
## 37624 Resort Hotel 127
## 37625 Resort Hotel 32
## 37626 Resort Hotel 205
## 37627 Resort Hotel 26
## 37628 Resort Hotel 331
## 37629 Resort Hotel 133
## 37630 Resort Hotel 218
## 37631 Resort Hotel 149
## 37632 Resort Hotel 257
## 37633 Resort Hotel 182
## 37634 Resort Hotel 117
## 37635 Resort Hotel 4
## 37636 Resort Hotel 239
## 37637 Resort Hotel 239
## 37638 Resort Hotel 239
## 37639 Resort Hotel 239
## 37640 Resort Hotel 2
## 37641 Resort Hotel 239
## 37642 Resort Hotel 154
## 37643 Resort Hotel 78
## 37644 Resort Hotel 26
## 37645 Resort Hotel 247
## 37646 Resort Hotel 236
## 37647 Resort Hotel 16
## 37648 Resort Hotel 116
## 37649 Resort Hotel 28
## 37650 Resort Hotel 333
## 37651 Resort Hotel 152
## 37652 Resort Hotel 88
## 37653 Resort Hotel 129
## 37654 Resort Hotel 152
## 37655 Resort Hotel 97
## 37656 Resort Hotel 225
## 37657 Resort Hotel 23
## 37658 Resort Hotel 27
## 37659 Resort Hotel 9
## 37660 Resort Hotel 136
## 37661 Resort Hotel 241
## 37662 Resort Hotel 2
## 37663 Resort Hotel 65
## 37664 Resort Hotel 136
## 37665 Resort Hotel 12
## 37666 Resort Hotel 4
## 37667 Resort Hotel 4
## 37668 Resort Hotel 4
## 37669 Resort Hotel 9
## 37670 Resort Hotel 19
## 37671 Resort Hotel 134
## 37672 Resort Hotel 35
## 37673 Resort Hotel 25
## 37674 Resort Hotel 1
## 37675 Resort Hotel 128
## 37676 Resort Hotel 224
## 37677 Resort Hotel 6
## 37678 Resort Hotel 7
## 37679 Resort Hotel 6
## 37680 Resort Hotel 82
## 37681 Resort Hotel 27
## 37682 Resort Hotel 319
## 37683 Resort Hotel 150
## 37684 Resort Hotel 318
## 37685 Resort Hotel 318
## 37686 Resort Hotel 25
## 37687 Resort Hotel 6
## 37688 Resort Hotel 124
## 37689 Resort Hotel 124
## 37690 Resort Hotel 35
## 37691 Resort Hotel 242
## 37692 Resort Hotel 136
## 37693 Resort Hotel 328
## 37694 Resort Hotel 328
## 37695 Resort Hotel 120
## 37696 Resort Hotel 27
## 37697 Resort Hotel 247
## 37698 Resort Hotel 1
## 37699 Resort Hotel 23
## 37700 Resort Hotel 262
## 37701 Resort Hotel 2
## 37702 Resort Hotel 9
## 37703 Resort Hotel 0
## 37704 Resort Hotel 247
## 37705 Resort Hotel 247
## 37706 Resort Hotel 247
## 37707 Resort Hotel 2
## 37708 Resort Hotel 5
## 37709 Resort Hotel 207
## 37710 Resort Hotel 19
## 37711 Resort Hotel 132
## 37712 Resort Hotel 11
## 37713 Resort Hotel 20
## 37714 Resort Hotel 0
## 37715 Resort Hotel 0
## 37716 Resort Hotel 223
## 37717 Resort Hotel 332
## 37718 Resort Hotel 157
## 37719 Resort Hotel 273
## 37720 Resort Hotel 198
## 37721 Resort Hotel 294
## 37722 Resort Hotel 253
## 37723 Resort Hotel 264
## 37724 Resort Hotel 112
## 37725 Resort Hotel 250
## 37726 Resort Hotel 246
## 37727 Resort Hotel 218
## 37728 Resort Hotel 21
## 37729 Resort Hotel 15
## 37730 Resort Hotel 10
## 37731 Resort Hotel 321
## 37732 Resort Hotel 245
## 37733 Resort Hotel 253
## 37734 Resort Hotel 110
## 37735 Resort Hotel 275
## 37736 Resort Hotel 323
## 37737 Resort Hotel 326
## 37738 Resort Hotel 325
## 37739 Resort Hotel 43
## 37740 Resort Hotel 104
## 37741 Resort Hotel 6
## 37742 Resort Hotel 326
## 37743 Resort Hotel 37
## 37744 Resort Hotel 20
## 37745 Resort Hotel 327
## 37746 Resort Hotel 327
## 37747 Resort Hotel 307
## 37748 Resort Hotel 3
## 37749 Resort Hotel 1
## 37750 Resort Hotel 222
## 37751 Resort Hotel 222
## 37752 Resort Hotel 12
## 37753 Resort Hotel 64
## 37754 Resort Hotel 277
## 37755 Resort Hotel 44
## 37756 Resort Hotel 337
## 37757 Resort Hotel 292
## 37758 Resort Hotel 186
## 37759 Resort Hotel 255
## 37760 Resort Hotel 344
## 37761 Resort Hotel 238
## 37762 Resort Hotel 284
## 37763 Resort Hotel 307
## 37764 Resort Hotel 331
## 37765 Resort Hotel 337
## 37766 Resort Hotel 121
## 37767 Resort Hotel 259
## 37768 Resort Hotel 325
## 37769 Resort Hotel 225
## 37770 Resort Hotel 93
## 37771 Resort Hotel 115
## 37772 Resort Hotel 259
## 37773 Resort Hotel 260
## 37774 Resort Hotel 322
## 37775 Resort Hotel 299
## 37776 Resort Hotel 251
## 37777 Resort Hotel 45
## 37778 Resort Hotel 251
## 37779 Resort Hotel 251
## 37780 Resort Hotel 7
## 37781 Resort Hotel 251
## 37782 Resort Hotel 251
## 37783 Resort Hotel 251
## 37784 Resort Hotel 251
## 37785 Resort Hotel 251
## 37786 Resort Hotel 251
## 37787 Resort Hotel 251
## 37788 Resort Hotel 251
## 37789 Resort Hotel 251
## 37790 Resort Hotel 251
## 37791 Resort Hotel 251
## 37792 Resort Hotel 251
## 37793 Resort Hotel 7
## 37794 Resort Hotel 251
## 37795 Resort Hotel 251
## 37796 Resort Hotel 251
## 37797 Resort Hotel 251
## 37798 Resort Hotel 251
## 37799 Resort Hotel 8
## 37800 Resort Hotel 251
## 37801 Resort Hotel 251
## 37802 Resort Hotel 251
## 37803 Resort Hotel 251
## 37804 Resort Hotel 0
## 37805 Resort Hotel 156
## 37806 Resort Hotel 0
## 37807 Resort Hotel 2
## 37808 Resort Hotel 279
## 37809 Resort Hotel 105
## 37810 Resort Hotel 335
## 37811 Resort Hotel 91
## 37812 Resort Hotel 2
## 37813 Resort Hotel 2
## 37814 Resort Hotel 123
## 37815 Resort Hotel 0
## 37816 Resort Hotel 12
## 37817 Resort Hotel 12
## 37818 Resort Hotel 308
## 37819 Resort Hotel 274
## 37820 Resort Hotel 288
## 37821 Resort Hotel 274
## 37822 Resort Hotel 251
## 37823 Resort Hotel 284
## 37824 Resort Hotel 0
## 37825 Resort Hotel 244
## 37826 Resort Hotel 249
## 37827 Resort Hotel 282
## 37828 Resort Hotel 43
## 37829 Resort Hotel 170
## 37830 Resort Hotel 46
## 37831 Resort Hotel 46
## 37832 Resort Hotel 314
## 37833 Resort Hotel 282
## 37834 Resort Hotel 282
## 37835 Resort Hotel 122
## 37836 Resort Hotel 0
## 37837 Resort Hotel 255
## 37838 Resort Hotel 318
## 37839 Resort Hotel 282
## 37840 Resort Hotel 117
## 37841 Resort Hotel 282
## 37842 Resort Hotel 282
## 37843 Resort Hotel 148
## 37844 Resort Hotel 326
## 37845 Resort Hotel 9
## 37846 Resort Hotel 21
## 37847 Resort Hotel 295
## 37848 Resort Hotel 84
## 37849 Resort Hotel 138
## 37850 Resort Hotel 86
## 37851 Resort Hotel 86
## 37852 Resort Hotel 1
## 37853 Resort Hotel 128
## 37854 Resort Hotel 7
## 37855 Resort Hotel 84
## 37856 Resort Hotel 20
## 37857 Resort Hotel 9
## 37858 Resort Hotel 86
## 37859 Resort Hotel 17
## 37860 Resort Hotel 1
## 37861 Resort Hotel 4
## 37862 Resort Hotel 124
## 37863 Resort Hotel 0
## 37864 Resort Hotel 272
## 37865 Resort Hotel 324
## 37866 Resort Hotel 87
## 37867 Resort Hotel 17
## 37868 Resort Hotel 86
## 37869 Resort Hotel 14
## 37870 Resort Hotel 86
## 37871 Resort Hotel 1
## 37872 Resort Hotel 112
## 37873 Resort Hotel 20
## 37874 Resort Hotel 274
## 37875 Resort Hotel 226
## 37876 Resort Hotel 1
## 37877 Resort Hotel 112
## 37878 Resort Hotel 112
## 37879 Resort Hotel 44
## 37880 Resort Hotel 44
## 37881 Resort Hotel 152
## 37882 Resort Hotel 44
## 37883 Resort Hotel 44
## 37884 Resort Hotel 347
## 37885 Resort Hotel 270
## 37886 Resort Hotel 299
## 37887 Resort Hotel 268
## 37888 Resort Hotel 19
## 37889 Resort Hotel 1
## 37890 Resort Hotel 127
## 37891 Resort Hotel 17
## 37892 Resort Hotel 7
## 37893 Resort Hotel 2
## 37894 Resort Hotel 28
## 37895 Resort Hotel 139
## 37896 Resort Hotel 0
## 37897 Resort Hotel 2
## 37898 Resort Hotel 5
## 37899 Resort Hotel 274
## 37900 Resort Hotel 4
## 37901 Resort Hotel 328
## 37902 Resort Hotel 315
## 37903 Resort Hotel 45
## 37904 Resort Hotel 160
## 37905 Resort Hotel 171
## 37906 Resort Hotel 0
## 37907 Resort Hotel 154
## 37908 Resort Hotel 86
## 37909 Resort Hotel 271
## 37910 Resort Hotel 146
## 37911 Resort Hotel 318
## 37912 Resort Hotel 306
## 37913 Resort Hotel 110
## 37914 Resort Hotel 310
## 37915 Resort Hotel 326
## 37916 Resort Hotel 128
## 37917 Resort Hotel 207
## 37918 Resort Hotel 151
## 37919 Resort Hotel 178
## 37920 Resort Hotel 121
## 37921 Resort Hotel 128
## 37922 Resort Hotel 151
## 37923 Resort Hotel 12
## 37924 Resort Hotel 8
## 37925 Resort Hotel 1
## 37926 Resort Hotel 178
## 37927 Resort Hotel 152
## 37928 Resort Hotel 36
## 37929 Resort Hotel 265
## 37930 Resort Hotel 326
## 37931 Resort Hotel 6
## 37932 Resort Hotel 13
## 37933 Resort Hotel 47
## 37934 Resort Hotel 158
## 37935 Resort Hotel 151
## 37936 Resort Hotel 0
## 37937 Resort Hotel 0
## 37938 Resort Hotel 258
## 37939 Resort Hotel 212
## 37940 Resort Hotel 176
## 37941 Resort Hotel 169
## 37942 Resort Hotel 232
## 37943 Resort Hotel 278
## 37944 Resort Hotel 282
## 37945 Resort Hotel 283
## 37946 Resort Hotel 293
## 37947 Resort Hotel 289
## 37948 Resort Hotel 244
## 37949 Resort Hotel 1
## 37950 Resort Hotel 27
## 37951 Resort Hotel 24
## 37952 Resort Hotel 1
## 37953 Resort Hotel 227
## 37954 Resort Hotel 161
## 37955 Resort Hotel 24
## 37956 Resort Hotel 25
## 37957 Resort Hotel 1
## 37958 Resort Hotel 81
## 37959 Resort Hotel 220
## 37960 Resort Hotel 220
## 37961 Resort Hotel 220
## 37962 Resort Hotel 253
## 37963 Resort Hotel 327
## 37964 Resort Hotel 258
## 37965 Resort Hotel 51
## 37966 Resort Hotel 90
## 37967 Resort Hotel 50
## 37968 Resort Hotel 82
## 37969 Resort Hotel 261
## 37970 Resort Hotel 47
## 37971 Resort Hotel 133
## 37972 Resort Hotel 159
## 37973 Resort Hotel 165
## 37974 Resort Hotel 165
## 37975 Resort Hotel 276
## 37976 Resort Hotel 114
## 37977 Resort Hotel 114
## 37978 Resort Hotel 317
## 37979 Resort Hotel 257
## 37980 Resort Hotel 198
## 37981 Resort Hotel 97
## 37982 Resort Hotel 342
## 37983 Resort Hotel 342
## 37984 Resort Hotel 48
## 37985 Resort Hotel 11
## 37986 Resort Hotel 273
## 37987 Resort Hotel 47
## 37988 Resort Hotel 50
## 37989 Resort Hotel 235
## 37990 Resort Hotel 207
## 37991 Resort Hotel 171
## 37992 Resort Hotel 220
## 37993 Resort Hotel 122
## 37994 Resort Hotel 122
## 37995 Resort Hotel 57
## 37996 Resort Hotel 177
## 37997 Resort Hotel 0
## 37998 Resort Hotel 234
## 37999 Resort Hotel 248
## 38000 Resort Hotel 0
## 38001 Resort Hotel 0
## 38002 Resort Hotel 118
## 38003 Resort Hotel 0
## 38004 Resort Hotel 0
## 38005 Resort Hotel 0
## 38006 Resort Hotel 1
## 38007 Resort Hotel 0
## 38008 Resort Hotel 193
## 38009 Resort Hotel 263
## 38010 Resort Hotel 303
## 38011 Resort Hotel 270
## 38012 Resort Hotel 62
## 38013 Resort Hotel 173
## 38014 Resort Hotel 173
## 38015 Resort Hotel 234
## 38016 Resort Hotel 275
## 38017 Resort Hotel 166
## 38018 Resort Hotel 165
## 38019 Resort Hotel 200
## 38020 Resort Hotel 172
## 38021 Resort Hotel 172
## 38022 Resort Hotel 29
## 38023 Resort Hotel 5
## 38024 Resort Hotel 72
## 38025 Resort Hotel 170
## 38026 Resort Hotel 181
## 38027 Resort Hotel 5
## 38028 Resort Hotel 8
## 38029 Resort Hotel 207
## 38030 Resort Hotel 0
## 38031 Resort Hotel 244
## 38032 Resort Hotel 241
## 38033 Resort Hotel 52
## 38034 Resort Hotel 327
## 38035 Resort Hotel 244
## 38036 Resort Hotel 306
## 38037 Resort Hotel 288
## 38038 Resort Hotel 0
## 38039 Resort Hotel 121
## 38040 Resort Hotel 1
## 38041 Resort Hotel 313
## 38042 Resort Hotel 313
## 38043 Resort Hotel 313
## 38044 Resort Hotel 6
## 38045 Resort Hotel 57
## 38046 Resort Hotel 164
## 38047 Resort Hotel 261
## 38048 Resort Hotel 239
## 38049 Resort Hotel 239
## 38050 Resort Hotel 251
## 38051 Resort Hotel 60
## 38052 Resort Hotel 0
## 38053 Resort Hotel 177
## 38054 Resort Hotel 80
## 38055 Resort Hotel 185
## 38056 Resort Hotel 0
## 38057 Resort Hotel 327
## 38058 Resort Hotel 8
## 38059 Resort Hotel 45
## 38060 Resort Hotel 1
## 38061 Resort Hotel 164
## 38062 Resort Hotel 70
## 38063 Resort Hotel 164
## 38064 Resort Hotel 166
## 38065 Resort Hotel 270
## 38066 Resort Hotel 131
## 38067 Resort Hotel 283
## 38068 Resort Hotel 293
## 38069 Resort Hotel 11
## 38070 Resort Hotel 324
## 38071 Resort Hotel 248
## 38072 Resort Hotel 241
## 38073 Resort Hotel 185
## 38074 Resort Hotel 178
## 38075 Resort Hotel 259
## 38076 Resort Hotel 11
## 38077 Resort Hotel 170
## 38078 Resort Hotel 149
## 38079 Resort Hotel 270
## 38080 Resort Hotel 111
## 38081 Resort Hotel 270
## 38082 Resort Hotel 159
## 38083 Resort Hotel 10
## 38084 Resort Hotel 303
## 38085 Resort Hotel 159
## 38086 Resort Hotel 122
## 38087 Resort Hotel 8
## 38088 Resort Hotel 6
## 38089 Resort Hotel 191
## 38090 Resort Hotel 165
## 38091 Resort Hotel 165
## 38092 Resort Hotel 3
## 38093 Resort Hotel 15
## 38094 Resort Hotel 253
## 38095 Resort Hotel 205
## 38096 Resort Hotel 253
## 38097 Resort Hotel 253
## 38098 Resort Hotel 233
## 38099 Resort Hotel 204
## 38100 Resort Hotel 1
## 38101 Resort Hotel 1
## 38102 Resort Hotel 205
## 38103 Resort Hotel 205
## 38104 Resort Hotel 158
## 38105 Resort Hotel 19
## 38106 Resort Hotel 4
## 38107 Resort Hotel 25
## 38108 Resort Hotel 99
## 38109 Resort Hotel 4
## 38110 Resort Hotel 324
## 38111 Resort Hotel 233
## 38112 Resort Hotel 0
## 38113 Resort Hotel 13
## 38114 Resort Hotel 253
## 38115 Resort Hotel 52
## 38116 Resort Hotel 253
## 38117 Resort Hotel 233
## 38118 Resort Hotel 205
## 38119 Resort Hotel 177
## 38120 Resort Hotel 52
## 38121 Resort Hotel 291
## 38122 Resort Hotel 310
## 38123 Resort Hotel 169
## 38124 Resort Hotel 226
## 38125 Resort Hotel 177
## 38126 Resort Hotel 174
## 38127 Resort Hotel 336
## 38128 Resort Hotel 3
## 38129 Resort Hotel 2
## 38130 Resort Hotel 334
## 38131 Resort Hotel 81
## 38132 Resort Hotel 310
## 38133 Resort Hotel 9
## 38134 Resort Hotel 0
## 38135 Resort Hotel 11
## 38136 Resort Hotel 11
## 38137 Resort Hotel 157
## 38138 Resort Hotel 148
## 38139 Resort Hotel 24
## 38140 Resort Hotel 350
## 38141 Resort Hotel 181
## 38142 Resort Hotel 2
## 38143 Resort Hotel 177
## 38144 Resort Hotel 171
## 38145 Resort Hotel 272
## 38146 Resort Hotel 272
## 38147 Resort Hotel 61
## 38148 Resort Hotel 61
## 38149 Resort Hotel 159
## 38150 Resort Hotel 1
## 38151 Resort Hotel 177
## 38152 Resort Hotel 272
## 38153 Resort Hotel 272
## 38154 Resort Hotel 310
## 38155 Resort Hotel 154
## 38156 Resort Hotel 24
## 38157 Resort Hotel 10
## 38158 Resort Hotel 131
## 38159 Resort Hotel 204
## 38160 Resort Hotel 52
## 38161 Resort Hotel 55
## 38162 Resort Hotel 3
## 38163 Resort Hotel 3
## 38164 Resort Hotel 130
## 38165 Resort Hotel 130
## 38166 Resort Hotel 130
## 38167 Resort Hotel 130
## 38168 Resort Hotel 130
## 38169 Resort Hotel 130
## 38170 Resort Hotel 130
## 38171 Resort Hotel 130
## 38172 Resort Hotel 130
## 38173 Resort Hotel 130
## 38174 Resort Hotel 130
## 38175 Resort Hotel 130
## 38176 Resort Hotel 252
## 38177 Resort Hotel 4
## 38178 Resort Hotel 166
## 38179 Resort Hotel 106
## 38180 Resort Hotel 200
## 38181 Resort Hotel 243
## 38182 Resort Hotel 13
## 38183 Resort Hotel 173
## 38184 Resort Hotel 173
## 38185 Resort Hotel 173
## 38186 Resort Hotel 46
## 38187 Resort Hotel 6
## 38188 Resort Hotel 179
## 38189 Resort Hotel 264
## 38190 Resort Hotel 307
## 38191 Resort Hotel 307
## 38192 Resort Hotel 300
## 38193 Resort Hotel 130
## 38194 Resort Hotel 300
## 38195 Resort Hotel 130
## 38196 Resort Hotel 55
## 38197 Resort Hotel 226
## 38198 Resort Hotel 5
## 38199 Resort Hotel 125
## 38200 Resort Hotel 160
## 38201 Resort Hotel 160
## 38202 Resort Hotel 216
## 38203 Resort Hotel 159
## 38204 Resort Hotel 278
## 38205 Resort Hotel 168
## 38206 Resort Hotel 153
## 38207 Resort Hotel 131
## 38208 Resort Hotel 3
## 38209 Resort Hotel 12
## 38210 Resort Hotel 1
## 38211 Resort Hotel 14
## 38212 Resort Hotel 47
## 38213 Resort Hotel 27
## 38214 Resort Hotel 47
## 38215 Resort Hotel 27
## 38216 Resort Hotel 12
## 38217 Resort Hotel 266
## 38218 Resort Hotel 87
## 38219 Resort Hotel 0
## 38220 Resort Hotel 192
## 38221 Resort Hotel 18
## 38222 Resort Hotel 121
## 38223 Resort Hotel 2
## 38224 Resort Hotel 327
## 38225 Resort Hotel 144
## 38226 Resort Hotel 335
## 38227 Resort Hotel 0
## 38228 Resort Hotel 3
## 38229 Resort Hotel 3
## 38230 Resort Hotel 0
## 38231 Resort Hotel 0
## 38232 Resort Hotel 14
## 38233 Resort Hotel 10
## 38234 Resort Hotel 182
## 38235 Resort Hotel 182
## 38236 Resort Hotel 182
## 38237 Resort Hotel 316
## 38238 Resort Hotel 328
## 38239 Resort Hotel 0
## 38240 Resort Hotel 328
## 38241 Resort Hotel 272
## 38242 Resort Hotel 153
## 38243 Resort Hotel 149
## 38244 Resort Hotel 5
## 38245 Resort Hotel 5
## 38246 Resort Hotel 5
## 38247 Resort Hotel 152
## 38248 Resort Hotel 152
## 38249 Resort Hotel 152
## 38250 Resort Hotel 167
## 38251 Resort Hotel 272
## 38252 Resort Hotel 153
## 38253 Resort Hotel 176
## 38254 Resort Hotel 149
## 38255 Resort Hotel 0
## 38256 Resort Hotel 193
## 38257 Resort Hotel 3
## 38258 Resort Hotel 163
## 38259 Resort Hotel 153
## 38260 Resort Hotel 205
## 38261 Resort Hotel 192
## 38262 Resort Hotel 212
## 38263 Resort Hotel 102
## 38264 Resort Hotel 152
## 38265 Resort Hotel 212
## 38266 Resort Hotel 151
## 38267 Resort Hotel 176
## 38268 Resort Hotel 0
## 38269 Resort Hotel 0
## 38270 Resort Hotel 182
## 38271 Resort Hotel 166
## 38272 Resort Hotel 97
## 38273 Resort Hotel 256
## 38274 Resort Hotel 335
## 38275 Resort Hotel 311
## 38276 Resort Hotel 311
## 38277 Resort Hotel 183
## 38278 Resort Hotel 152
## 38279 Resort Hotel 166
## 38280 Resort Hotel 164
## 38281 Resort Hotel 30
## 38282 Resort Hotel 7
## 38283 Resort Hotel 0
## 38284 Resort Hotel 158
## 38285 Resort Hotel 155
## 38286 Resort Hotel 21
## 38287 Resort Hotel 98
## 38288 Resort Hotel 5
## 38289 Resort Hotel 98
## 38290 Resort Hotel 148
## 38291 Resort Hotel 94
## 38292 Resort Hotel 1
## 38293 Resort Hotel 19
## 38294 Resort Hotel 21
## 38295 Resort Hotel 13
## 38296 Resort Hotel 1
## 38297 Resort Hotel 4
## 38298 Resort Hotel 11
## 38299 Resort Hotel 33
## 38300 Resort Hotel 160
## 38301 Resort Hotel 0
## 38302 Resort Hotel 160
## 38303 Resort Hotel 0
## 38304 Resort Hotel 0
## 38305 Resort Hotel 148
## 38306 Resort Hotel 0
## 38307 Resort Hotel 0
## 38308 Resort Hotel 4
## 38309 Resort Hotel 1
## 38310 Resort Hotel 217
## 38311 Resort Hotel 161
## 38312 Resort Hotel 6
## 38313 Resort Hotel 165
## 38314 Resort Hotel 66
## 38315 Resort Hotel 59
## 38316 Resort Hotel 99
## 38317 Resort Hotel 27
## 38318 Resort Hotel 4
## 38319 Resort Hotel 37
## 38320 Resort Hotel 148
## 38321 Resort Hotel 148
## 38322 Resort Hotel 0
## 38323 Resort Hotel 183
## 38324 Resort Hotel 153
## 38325 Resort Hotel 9
## 38326 Resort Hotel 194
## 38327 Resort Hotel 229
## 38328 Resort Hotel 1
## 38329 Resort Hotel 132
## 38330 Resort Hotel 132
## 38331 Resort Hotel 149
## 38332 Resort Hotel 149
## 38333 Resort Hotel 7
## 38334 Resort Hotel 170
## 38335 Resort Hotel 25
## 38336 Resort Hotel 28
## 38337 Resort Hotel 142
## 38338 Resort Hotel 0
## 38339 Resort Hotel 21
## 38340 Resort Hotel 4
## 38341 Resort Hotel 165
## 38342 Resort Hotel 31
## 38343 Resort Hotel 132
## 38344 Resort Hotel 164
## 38345 Resort Hotel 128
## 38346 Resort Hotel 82
## 38347 Resort Hotel 271
## 38348 Resort Hotel 126
## 38349 Resort Hotel 168
## 38350 Resort Hotel 159
## 38351 Resort Hotel 42
## 38352 Resort Hotel 0
## 38353 Resort Hotel 130
## 38354 Resort Hotel 312
## 38355 Resort Hotel 312
## 38356 Resort Hotel 152
## 38357 Resort Hotel 135
## 38358 Resort Hotel 155
## 38359 Resort Hotel 13
## 38360 Resort Hotel 89
## 38361 Resort Hotel 152
## 38362 Resort Hotel 63
## 38363 Resort Hotel 140
## 38364 Resort Hotel 132
## 38365 Resort Hotel 155
## 38366 Resort Hotel 0
## 38367 Resort Hotel 195
## 38368 Resort Hotel 1
## 38369 Resort Hotel 25
## 38370 Resort Hotel 27
## 38371 Resort Hotel 5
## 38372 Resort Hotel 0
## 38373 Resort Hotel 23
## 38374 Resort Hotel 18
## 38375 Resort Hotel 93
## 38376 Resort Hotel 5
## 38377 Resort Hotel 112
## 38378 Resort Hotel 104
## 38379 Resort Hotel 0
## 38380 Resort Hotel 2
## 38381 Resort Hotel 91
## 38382 Resort Hotel 150
## 38383 Resort Hotel 349
## 38384 Resort Hotel 66
## 38385 Resort Hotel 152
## 38386 Resort Hotel 145
## 38387 Resort Hotel 1
## 38388 Resort Hotel 39
## 38389 Resort Hotel 0
## 38390 Resort Hotel 0
## 38391 Resort Hotel 27
## 38392 Resort Hotel 0
## 38393 Resort Hotel 145
## 38394 Resort Hotel 9
## 38395 Resort Hotel 0
## 38396 Resort Hotel 0
## 38397 Resort Hotel 0
## 38398 Resort Hotel 0
## 38399 Resort Hotel 195
## 38400 Resort Hotel 206
## 38401 Resort Hotel 151
## 38402 Resort Hotel 136
## 38403 Resort Hotel 0
## 38404 Resort Hotel 139
## 38405 Resort Hotel 129
## 38406 Resort Hotel 120
## 38407 Resort Hotel 43
## 38408 Resort Hotel 41
## 38409 Resort Hotel 4
## 38410 Resort Hotel 0
## 38411 Resort Hotel 104
## 38412 Resort Hotel 3
## 38413 Resort Hotel 0
## 38414 Resort Hotel 103
## 38415 Resort Hotel 180
## 38416 Resort Hotel 235
## 38417 Resort Hotel 224
## 38418 Resort Hotel 2
## 38419 Resort Hotel 33
## 38420 Resort Hotel 46
## 38421 Resort Hotel 110
## 38422 Resort Hotel 3
## 38423 Resort Hotel 3
## 38424 Resort Hotel 127
## 38425 Resort Hotel 110
## 38426 Resort Hotel 212
## 38427 Resort Hotel 110
## 38428 Resort Hotel 0
## 38429 Resort Hotel 160
## 38430 Resort Hotel 114
## 38431 Resort Hotel 0
## 38432 Resort Hotel 0
## 38433 Resort Hotel 151
## 38434 Resort Hotel 118
## 38435 Resort Hotel 63
## 38436 Resort Hotel 3
## 38437 Resort Hotel 3
## 38438 Resort Hotel 57
## 38439 Resort Hotel 241
## 38440 Resort Hotel 184
## 38441 Resort Hotel 62
## 38442 Resort Hotel 33
## 38443 Resort Hotel 152
## 38444 Resort Hotel 152
## 38445 Resort Hotel 27
## 38446 Resort Hotel 82
## 38447 Resort Hotel 2
## 38448 Resort Hotel 1
## 38449 Resort Hotel 0
## 38450 Resort Hotel 106
## 38451 Resort Hotel 0
## 38452 Resort Hotel 0
## 38453 Resort Hotel 1
## 38454 Resort Hotel 1
## 38455 Resort Hotel 126
## 38456 Resort Hotel 96
## 38457 Resort Hotel 8
## 38458 Resort Hotel 12
## 38459 Resort Hotel 11
## 38460 Resort Hotel 156
## 38461 Resort Hotel 159
## 38462 Resort Hotel 153
## 38463 Resort Hotel 152
## 38464 Resort Hotel 39
## 38465 Resort Hotel 39
## 38466 Resort Hotel 5
## 38467 Resort Hotel 0
## 38468 Resort Hotel 25
## 38469 Resort Hotel 80
## 38470 Resort Hotel 80
## 38471 Resort Hotel 185
## 38472 Resort Hotel 90
## 38473 Resort Hotel 90
## 38474 Resort Hotel 283
## 38475 Resort Hotel 124
## 38476 Resort Hotel 202
## 38477 Resort Hotel 154
## 38478 Resort Hotel 0
## 38479 Resort Hotel 0
## 38480 Resort Hotel 0
## 38481 Resort Hotel 0
## 38482 Resort Hotel 118
## 38483 Resort Hotel 118
## 38484 Resort Hotel 316
## 38485 Resort Hotel 154
## 38486 Resort Hotel 144
## 38487 Resort Hotel 2
## 38488 Resort Hotel 114
## 38489 Resort Hotel 154
## 38490 Resort Hotel 345
## 38491 Resort Hotel 68
## 38492 Resort Hotel 184
## 38493 Resort Hotel 199
## 38494 Resort Hotel 32
## 38495 Resort Hotel 165
## 38496 Resort Hotel 240
## 38497 Resort Hotel 37
## 38498 Resort Hotel 68
## 38499 Resort Hotel 174
## 38500 Resort Hotel 102
## 38501 Resort Hotel 158
## 38502 Resort Hotel 158
## 38503 Resort Hotel 114
## 38504 Resort Hotel 0
## 38505 Resort Hotel 162
## 38506 Resort Hotel 0
## 38507 Resort Hotel 35
## 38508 Resort Hotel 158
## 38509 Resort Hotel 152
## 38510 Resort Hotel 0
## 38511 Resort Hotel 82
## 38512 Resort Hotel 4
## 38513 Resort Hotel 4
## 38514 Resort Hotel 25
## 38515 Resort Hotel 5
## 38516 Resort Hotel 235
## 38517 Resort Hotel 131
## 38518 Resort Hotel 108
## 38519 Resort Hotel 180
## 38520 Resort Hotel 143
## 38521 Resort Hotel 2
## 38522 Resort Hotel 9
## 38523 Resort Hotel 87
## 38524 Resort Hotel 197
## 38525 Resort Hotel 21
## 38526 Resort Hotel 145
## 38527 Resort Hotel 141
## 38528 Resort Hotel 1
## 38529 Resort Hotel 163
## 38530 Resort Hotel 119
## 38531 Resort Hotel 152
## 38532 Resort Hotel 187
## 38533 Resort Hotel 6
## 38534 Resort Hotel 6
## 38535 Resort Hotel 336
## 38536 Resort Hotel 152
## 38537 Resort Hotel 69
## 38538 Resort Hotel 68
## 38539 Resort Hotel 192
## 38540 Resort Hotel 1
## 38541 Resort Hotel 113
## 38542 Resort Hotel 112
## 38543 Resort Hotel 115
## 38544 Resort Hotel 127
## 38545 Resort Hotel 160
## 38546 Resort Hotel 178
## 38547 Resort Hotel 178
## 38548 Resort Hotel 72
## 38549 Resort Hotel 121
## 38550 Resort Hotel 15
## 38551 Resort Hotel 6
## 38552 Resort Hotel 1
## 38553 Resort Hotel 0
## 38554 Resort Hotel 99
## 38555 Resort Hotel 77
## 38556 Resort Hotel 5
## 38557 Resort Hotel 108
## 38558 Resort Hotel 108
## 38559 Resort Hotel 183
## 38560 Resort Hotel 147
## 38561 Resort Hotel 318
## 38562 Resort Hotel 44
## 38563 Resort Hotel 133
## 38564 Resort Hotel 196
## 38565 Resort Hotel 194
## 38566 Resort Hotel 268
## 38567 Resort Hotel 268
## 38568 Resort Hotel 169
## 38569 Resort Hotel 169
## 38570 Resort Hotel 111
## 38571 Resort Hotel 17
## 38572 Resort Hotel 6
## 38573 Resort Hotel 153
## 38574 Resort Hotel 117
## 38575 Resort Hotel 114
## 38576 Resort Hotel 3
## 38577 Resort Hotel 53
## 38578 Resort Hotel 50
## 38579 Resort Hotel 145
## 38580 Resort Hotel 188
## 38581 Resort Hotel 193
## 38582 Resort Hotel 1
## 38583 Resort Hotel 193
## 38584 Resort Hotel 2
## 38585 Resort Hotel 9
## 38586 Resort Hotel 111
## 38587 Resort Hotel 39
## 38588 Resort Hotel 6
## 38589 Resort Hotel 4
## 38590 Resort Hotel 6
## 38591 Resort Hotel 20
## 38592 Resort Hotel 69
## 38593 Resort Hotel 69
## 38594 Resort Hotel 0
## 38595 Resort Hotel 9
## 38596 Resort Hotel 109
## 38597 Resort Hotel 120
## 38598 Resort Hotel 0
## 38599 Resort Hotel 178
## 38600 Resort Hotel 207
## 38601 Resort Hotel 2
## 38602 Resort Hotel 150
## 38603 Resort Hotel 152
## 38604 Resort Hotel 116
## 38605 Resort Hotel 116
## 38606 Resort Hotel 104
## 38607 Resort Hotel 61
## 38608 Resort Hotel 99
## 38609 Resort Hotel 115
## 38610 Resort Hotel 111
## 38611 Resort Hotel 17
## 38612 Resort Hotel 255
## 38613 Resort Hotel 91
## 38614 Resort Hotel 182
## 38615 Resort Hotel 207
## 38616 Resort Hotel 141
## 38617 Resort Hotel 179
## 38618 Resort Hotel 1
## 38619 Resort Hotel 8
## 38620 Resort Hotel 172
## 38621 Resort Hotel 136
## 38622 Resort Hotel 102
## 38623 Resort Hotel 14
## 38624 Resort Hotel 0
## 38625 Resort Hotel 130
## 38626 Resort Hotel 14
## 38627 Resort Hotel 52
## 38628 Resort Hotel 1
## 38629 Resort Hotel 47
## 38630 Resort Hotel 155
## 38631 Resort Hotel 117
## 38632 Resort Hotel 167
## 38633 Resort Hotel 8
## 38634 Resort Hotel 154
## 38635 Resort Hotel 189
## 38636 Resort Hotel 115
## 38637 Resort Hotel 213
## 38638 Resort Hotel 213
## 38639 Resort Hotel 119
## 38640 Resort Hotel 58
## 38641 Resort Hotel 13
## 38642 Resort Hotel 0
## 38643 Resort Hotel 192
## 38644 Resort Hotel 192
## 38645 Resort Hotel 172
## 38646 Resort Hotel 172
## 38647 Resort Hotel 19
## 38648 Resort Hotel 30
## 38649 Resort Hotel 150
## 38650 Resort Hotel 161
## 38651 Resort Hotel 30
## 38652 Resort Hotel 161
## 38653 Resort Hotel 115
## 38654 Resort Hotel 187
## 38655 Resort Hotel 22
## 38656 Resort Hotel 22
## 38657 Resort Hotel 11
## 38658 Resort Hotel 9
## 38659 Resort Hotel 18
## 38660 Resort Hotel 20
## 38661 Resort Hotel 62
## 38662 Resort Hotel 189
## 38663 Resort Hotel 325
## 38664 Resort Hotel 323
## 38665 Resort Hotel 0
## 38666 Resort Hotel 220
## 38667 Resort Hotel 125
## 38668 Resort Hotel 166
## 38669 Resort Hotel 94
## 38670 Resort Hotel 5
## 38671 Resort Hotel 325
## 38672 Resort Hotel 23
## 38673 Resort Hotel 72
## 38674 Resort Hotel 49
## 38675 Resort Hotel 108
## 38676 Resort Hotel 215
## 38677 Resort Hotel 159
## 38678 Resort Hotel 128
## 38679 Resort Hotel 144
## 38680 Resort Hotel 160
## 38681 Resort Hotel 142
## 38682 Resort Hotel 295
## 38683 Resort Hotel 349
## 38684 Resort Hotel 80
## 38685 Resort Hotel 16
## 38686 Resort Hotel 145
## 38687 Resort Hotel 80
## 38688 Resort Hotel 359
## 38689 Resort Hotel 154
## 38690 Resort Hotel 116
## 38691 Resort Hotel 275
## 38692 Resort Hotel 125
## 38693 Resort Hotel 125
## 38694 Resort Hotel 210
## 38695 Resort Hotel 210
## 38696 Resort Hotel 210
## 38697 Resort Hotel 210
## 38698 Resort Hotel 210
## 38699 Resort Hotel 180
## 38700 Resort Hotel 6
## 38701 Resort Hotel 2
## 38702 Resort Hotel 164
## 38703 Resort Hotel 181
## 38704 Resort Hotel 183
## 38705 Resort Hotel 181
## 38706 Resort Hotel 180
## 38707 Resort Hotel 221
## 38708 Resort Hotel 200
## 38709 Resort Hotel 80
## 38710 Resort Hotel 4
## 38711 Resort Hotel 180
## 38712 Resort Hotel 26
## 38713 Resort Hotel 23
## 38714 Resort Hotel 0
## 38715 Resort Hotel 189
## 38716 Resort Hotel 216
## 38717 Resort Hotel 155
## 38718 Resort Hotel 115
## 38719 Resort Hotel 26
## 38720 Resort Hotel 2
## 38721 Resort Hotel 98
## 38722 Resort Hotel 189
## 38723 Resort Hotel 189
## 38724 Resort Hotel 108
## 38725 Resort Hotel 345
## 38726 Resort Hotel 332
## 38727 Resort Hotel 226
## 38728 Resort Hotel 37
## 38729 Resort Hotel 194
## 38730 Resort Hotel 5
## 38731 Resort Hotel 59
## 38732 Resort Hotel 166
## 38733 Resort Hotel 26
## 38734 Resort Hotel 0
## 38735 Resort Hotel 179
## 38736 Resort Hotel 140
## 38737 Resort Hotel 305
## 38738 Resort Hotel 258
## 38739 Resort Hotel 194
## 38740 Resort Hotel 8
## 38741 Resort Hotel 43
## 38742 Resort Hotel 0
## 38743 Resort Hotel 121
## 38744 Resort Hotel 296
## 38745 Resort Hotel 23
## 38746 Resort Hotel 162
## 38747 Resort Hotel 219
## 38748 Resort Hotel 117
## 38749 Resort Hotel 163
## 38750 Resort Hotel 33
## 38751 Resort Hotel 85
## 38752 Resort Hotel 28
## 38753 Resort Hotel 112
## 38754 Resort Hotel 195
## 38755 Resort Hotel 140
## 38756 Resort Hotel 130
## 38757 Resort Hotel 163
## 38758 Resort Hotel 18
## 38759 Resort Hotel 4
## 38760 Resort Hotel 149
## 38761 Resort Hotel 176
## 38762 Resort Hotel 126
## 38763 Resort Hotel 149
## 38764 Resort Hotel 131
## 38765 Resort Hotel 163
## 38766 Resort Hotel 154
## 38767 Resort Hotel 115
## 38768 Resort Hotel 115
## 38769 Resort Hotel 15
## 38770 Resort Hotel 51
## 38771 Resort Hotel 345
## 38772 Resort Hotel 142
## 38773 Resort Hotel 0
## 38774 Resort Hotel 0
## 38775 Resort Hotel 0
## 38776 Resort Hotel 7
## 38777 Resort Hotel 0
## 38778 Resort Hotel 0
## 38779 Resort Hotel 177
## 38780 Resort Hotel 177
## 38781 Resort Hotel 167
## 38782 Resort Hotel 167
## 38783 Resort Hotel 10
## 38784 Resort Hotel 167
## 38785 Resort Hotel 27
## 38786 Resort Hotel 48
## 38787 Resort Hotel 27
## 38788 Resort Hotel 188
## 38789 Resort Hotel 47
## 38790 Resort Hotel 143
## 38791 Resort Hotel 160
## 38792 Resort Hotel 165
## 38793 Resort Hotel 151
## 38794 Resort Hotel 30
## 38795 Resort Hotel 150
## 38796 Resort Hotel 18
## 38797 Resort Hotel 27
## 38798 Resort Hotel 19
## 38799 Resort Hotel 19
## 38800 Resort Hotel 83
## 38801 Resort Hotel 149
## 38802 Resort Hotel 176
## 38803 Resort Hotel 122
## 38804 Resort Hotel 19
## 38805 Resort Hotel 18
## 38806 Resort Hotel 11
## 38807 Resort Hotel 2
## 38808 Resort Hotel 4
## 38809 Resort Hotel 17
## 38810 Resort Hotel 198
## 38811 Resort Hotel 0
## 38812 Resort Hotel 0
## 38813 Resort Hotel 206
## 38814 Resort Hotel 0
## 38815 Resort Hotel 177
## 38816 Resort Hotel 30
## 38817 Resort Hotel 181
## 38818 Resort Hotel 181
## 38819 Resort Hotel 175
## 38820 Resort Hotel 14
## 38821 Resort Hotel 46
## 38822 Resort Hotel 14
## 38823 Resort Hotel 18
## 38824 Resort Hotel 82
## 38825 Resort Hotel 82
## 38826 Resort Hotel 50
## 38827 Resort Hotel 195
## 38828 Resort Hotel 156
## 38829 Resort Hotel 157
## 38830 Resort Hotel 28
## 38831 Resort Hotel 192
## 38832 Resort Hotel 114
## 38833 Resort Hotel 179
## 38834 Resort Hotel 32
## 38835 Resort Hotel 18
## 38836 Resort Hotel 52
## 38837 Resort Hotel 143
## 38838 Resort Hotel 143
## 38839 Resort Hotel 143
## 38840 Resort Hotel 161
## 38841 Resort Hotel 161
## 38842 Resort Hotel 5
## 38843 Resort Hotel 0
## 38844 Resort Hotel 12
## 38845 Resort Hotel 72
## 38846 Resort Hotel 4
## 38847 Resort Hotel 25
## 38848 Resort Hotel 1
## 38849 Resort Hotel 8
## 38850 Resort Hotel 170
## 38851 Resort Hotel 195
## 38852 Resort Hotel 151
## 38853 Resort Hotel 0
## 38854 Resort Hotel 280
## 38855 Resort Hotel 0
## 38856 Resort Hotel 171
## 38857 Resort Hotel 171
## 38858 Resort Hotel 171
## 38859 Resort Hotel 6
## 38860 Resort Hotel 223
## 38861 Resort Hotel 62
## 38862 Resort Hotel 44
## 38863 Resort Hotel 281
## 38864 Resort Hotel 31
## 38865 Resort Hotel 16
## 38866 Resort Hotel 231
## 38867 Resort Hotel 45
## 38868 Resort Hotel 276
## 38869 Resort Hotel 318
## 38870 Resort Hotel 231
## 38871 Resort Hotel 0
## 38872 Resort Hotel 276
## 38873 Resort Hotel 1
## 38874 Resort Hotel 266
## 38875 Resort Hotel 266
## 38876 Resort Hotel 19
## 38877 Resort Hotel 32
## 38878 Resort Hotel 115
## 38879 Resort Hotel 25
## 38880 Resort Hotel 9
## 38881 Resort Hotel 199
## 38882 Resort Hotel 1
## 38883 Resort Hotel 17
## 38884 Resort Hotel 17
## 38885 Resort Hotel 335
## 38886 Resort Hotel 335
## 38887 Resort Hotel 124
## 38888 Resort Hotel 124
## 38889 Resort Hotel 124
## 38890 Resort Hotel 4
## 38891 Resort Hotel 24
## 38892 Resort Hotel 281
## 38893 Resort Hotel 176
## 38894 Resort Hotel 139
## 38895 Resort Hotel 120
## 38896 Resort Hotel 52
## 38897 Resort Hotel 58
## 38898 Resort Hotel 58
## 38899 Resort Hotel 125
## 38900 Resort Hotel 126
## 38901 Resort Hotel 197
## 38902 Resort Hotel 0
## 38903 Resort Hotel 7
## 38904 Resort Hotel 22
## 38905 Resort Hotel 178
## 38906 Resort Hotel 23
## 38907 Resort Hotel 27
## 38908 Resort Hotel 51
## 38909 Resort Hotel 201
## 38910 Resort Hotel 197
## 38911 Resort Hotel 60
## 38912 Resort Hotel 1
## 38913 Resort Hotel 62
## 38914 Resort Hotel 175
## 38915 Resort Hotel 175
## 38916 Resort Hotel 108
## 38917 Resort Hotel 256
## 38918 Resort Hotel 43
## 38919 Resort Hotel 25
## 38920 Resort Hotel 25
## 38921 Resort Hotel 256
## 38922 Resort Hotel 118
## 38923 Resort Hotel 166
## 38924 Resort Hotel 185
## 38925 Resort Hotel 124
## 38926 Resort Hotel 1
## 38927 Resort Hotel 185
## 38928 Resort Hotel 74
## 38929 Resort Hotel 181
## 38930 Resort Hotel 262
## 38931 Resort Hotel 226
## 38932 Resort Hotel 188
## 38933 Resort Hotel 76
## 38934 Resort Hotel 76
## 38935 Resort Hotel 76
## 38936 Resort Hotel 287
## 38937 Resort Hotel 31
## 38938 Resort Hotel 229
## 38939 Resort Hotel 229
## 38940 Resort Hotel 180
## 38941 Resort Hotel 187
## 38942 Resort Hotel 124
## 38943 Resort Hotel 77
## 38944 Resort Hotel 63
## 38945 Resort Hotel 5
## 38946 Resort Hotel 5
## 38947 Resort Hotel 182
## 38948 Resort Hotel 60
## 38949 Resort Hotel 5
## 38950 Resort Hotel 95
## 38951 Resort Hotel 29
## 38952 Resort Hotel 321
## 38953 Resort Hotel 178
## 38954 Resort Hotel 169
## 38955 Resort Hotel 178
## 38956 Resort Hotel 6
## 38957 Resort Hotel 97
## 38958 Resort Hotel 230
## 38959 Resort Hotel 87
## 38960 Resort Hotel 178
## 38961 Resort Hotel 169
## 38962 Resort Hotel 114
## 38963 Resort Hotel 169
## 38964 Resort Hotel 40
## 38965 Resort Hotel 230
## 38966 Resort Hotel 48
## 38967 Resort Hotel 230
## 38968 Resort Hotel 0
## 38969 Resort Hotel 193
## 38970 Resort Hotel 169
## 38971 Resort Hotel 188
## 38972 Resort Hotel 112
## 38973 Resort Hotel 169
## 38974 Resort Hotel 207
## 38975 Resort Hotel 183
## 38976 Resort Hotel 379
## 38977 Resort Hotel 186
## 38978 Resort Hotel 163
## 38979 Resort Hotel 64
## 38980 Resort Hotel 201
## 38981 Resort Hotel 201
## 38982 Resort Hotel 9
## 38983 Resort Hotel 9
## 38984 Resort Hotel 117
## 38985 Resort Hotel 147
## 38986 Resort Hotel 49
## 38987 Resort Hotel 0
## 38988 Resort Hotel 166
## 38989 Resort Hotel 0
## 38990 Resort Hotel 53
## 38991 Resort Hotel 59
## 38992 Resort Hotel 188
## 38993 Resort Hotel 10
## 38994 Resort Hotel 161
## 38995 Resort Hotel 131
## 38996 Resort Hotel 69
## 38997 Resort Hotel 34
## 38998 Resort Hotel 34
## 38999 Resort Hotel 29
## 39000 Resort Hotel 186
## 39001 Resort Hotel 22
## 39002 Resort Hotel 173
## 39003 Resort Hotel 98
## 39004 Resort Hotel 62
## 39005 Resort Hotel 62
## 39006 Resort Hotel 246
## 39007 Resort Hotel 1
## 39008 Resort Hotel 187
## 39009 Resort Hotel 170
## 39010 Resort Hotel 55
## 39011 Resort Hotel 14
## 39012 Resort Hotel 1
## 39013 Resort Hotel 256
## 39014 Resort Hotel 300
## 39015 Resort Hotel 300
## 39016 Resort Hotel 300
## 39017 Resort Hotel 300
## 39018 Resort Hotel 201
## 39019 Resort Hotel 201
## 39020 Resort Hotel 4
## 39021 Resort Hotel 173
## 39022 Resort Hotel 3
## 39023 Resort Hotel 300
## 39024 Resort Hotel 45
## 39025 Resort Hotel 209
## 39026 Resort Hotel 5
## 39027 Resort Hotel 354
## 39028 Resort Hotel 231
## 39029 Resort Hotel 191
## 39030 Resort Hotel 10
## 39031 Resort Hotel 174
## 39032 Resort Hotel 174
## 39033 Resort Hotel 174
## 39034 Resort Hotel 182
## 39035 Resort Hotel 174
## 39036 Resort Hotel 0
## 39037 Resort Hotel 0
## 39038 Resort Hotel 40
## 39039 Resort Hotel 129
## 39040 Resort Hotel 40
## 39041 Resort Hotel 122
## 39042 Resort Hotel 26
## 39043 Resort Hotel 23
## 39044 Resort Hotel 41
## 39045 Resort Hotel 173
## 39046 Resort Hotel 33
## 39047 Resort Hotel 1
## 39048 Resort Hotel 3
## 39049 Resort Hotel 3
## 39050 Resort Hotel 17
## 39051 Resort Hotel 3
## 39052 Resort Hotel 3
## 39053 Resort Hotel 3
## 39054 Resort Hotel 161
## 39055 Resort Hotel 0
## 39056 Resort Hotel 0
## 39057 Resort Hotel 0
## 39058 Resort Hotel 0
## 39059 Resort Hotel 206
## 39060 Resort Hotel 206
## 39061 Resort Hotel 24
## 39062 Resort Hotel 211
## 39063 Resort Hotel 153
## 39064 Resort Hotel 211
## 39065 Resort Hotel 211
## 39066 Resort Hotel 185
## 39067 Resort Hotel 100
## 39068 Resort Hotel 2
## 39069 Resort Hotel 91
## 39070 Resort Hotel 0
## 39071 Resort Hotel 24
## 39072 Resort Hotel 12
## 39073 Resort Hotel 26
## 39074 Resort Hotel 351
## 39075 Resort Hotel 16
## 39076 Resort Hotel 113
## 39077 Resort Hotel 11
## 39078 Resort Hotel 3
## 39079 Resort Hotel 25
## 39080 Resort Hotel 155
## 39081 Resort Hotel 26
## 39082 Resort Hotel 26
## 39083 Resort Hotel 0
## 39084 Resort Hotel 19
## 39085 Resort Hotel 182
## 39086 Resort Hotel 12
## 39087 Resort Hotel 15
## 39088 Resort Hotel 4
## 39089 Resort Hotel 1
## 39090 Resort Hotel 4
## 39091 Resort Hotel 87
## 39092 Resort Hotel 17
## 39093 Resort Hotel 17
## 39094 Resort Hotel 17
## 39095 Resort Hotel 1
## 39096 Resort Hotel 5
## 39097 Resort Hotel 1
## 39098 Resort Hotel 2
## 39099 Resort Hotel 191
## 39100 Resort Hotel 43
## 39101 Resort Hotel 138
## 39102 Resort Hotel 150
## 39103 Resort Hotel 27
## 39104 Resort Hotel 96
## 39105 Resort Hotel 3
## 39106 Resort Hotel 171
## 39107 Resort Hotel 22
## 39108 Resort Hotel 22
## 39109 Resort Hotel 19
## 39110 Resort Hotel 202
## 39111 Resort Hotel 11
## 39112 Resort Hotel 187
## 39113 Resort Hotel 280
## 39114 Resort Hotel 280
## 39115 Resort Hotel 23
## 39116 Resort Hotel 27
## 39117 Resort Hotel 36
## 39118 Resort Hotel 191
## 39119 Resort Hotel 26
## 39120 Resort Hotel 11
## 39121 Resort Hotel 38
## 39122 Resort Hotel 106
## 39123 Resort Hotel 109
## 39124 Resort Hotel 1
## 39125 Resort Hotel 191
## 39126 Resort Hotel 162
## 39127 Resort Hotel 235
## 39128 Resort Hotel 9
## 39129 Resort Hotel 173
## 39130 Resort Hotel 231
## 39131 Resort Hotel 336
## 39132 Resort Hotel 231
## 39133 Resort Hotel 6
## 39134 Resort Hotel 204
## 39135 Resort Hotel 220
## 39136 Resort Hotel 102
## 39137 Resort Hotel 263
## 39138 Resort Hotel 165
## 39139 Resort Hotel 51
## 39140 Resort Hotel 165
## 39141 Resort Hotel 21
## 39142 Resort Hotel 85
## 39143 Resort Hotel 91
## 39144 Resort Hotel 102
## 39145 Resort Hotel 14
## 39146 Resort Hotel 1
## 39147 Resort Hotel 97
## 39148 Resort Hotel 217
## 39149 Resort Hotel 177
## 39150 Resort Hotel 8
## 39151 Resort Hotel 1
## 39152 Resort Hotel 2
## 39153 Resort Hotel 23
## 39154 Resort Hotel 43
## 39155 Resort Hotel 24
## 39156 Resort Hotel 31
## 39157 Resort Hotel 143
## 39158 Resort Hotel 121
## 39159 Resort Hotel 38
## 39160 Resort Hotel 326
## 39161 Resort Hotel 326
## 39162 Resort Hotel 163
## 39163 Resort Hotel 192
## 39164 Resort Hotel 3
## 39165 Resort Hotel 212
## 39166 Resort Hotel 122
## 39167 Resort Hotel 134
## 39168 Resort Hotel 179
## 39169 Resort Hotel 183
## 39170 Resort Hotel 183
## 39171 Resort Hotel 32
## 39172 Resort Hotel 15
## 39173 Resort Hotel 5
## 39174 Resort Hotel 95
## 39175 Resort Hotel 240
## 39176 Resort Hotel 199
## 39177 Resort Hotel 0
## 39178 Resort Hotel 40
## 39179 Resort Hotel 2
## 39180 Resort Hotel 195
## 39181 Resort Hotel 180
## 39182 Resort Hotel 240
## 39183 Resort Hotel 240
## 39184 Resort Hotel 171
## 39185 Resort Hotel 174
## 39186 Resort Hotel 121
## 39187 Resort Hotel 121
## 39188 Resort Hotel 121
## 39189 Resort Hotel 3
## 39190 Resort Hotel 1
## 39191 Resort Hotel 27
## 39192 Resort Hotel 27
## 39193 Resort Hotel 17
## 39194 Resort Hotel 119
## 39195 Resort Hotel 307
## 39196 Resort Hotel 301
## 39197 Resort Hotel 301
## 39198 Resort Hotel 48
## 39199 Resort Hotel 48
## 39200 Resort Hotel 229
## 39201 Resort Hotel 322
## 39202 Resort Hotel 0
## 39203 Resort Hotel 131
## 39204 Resort Hotel 42
## 39205 Resort Hotel 42
## 39206 Resort Hotel 0
## 39207 Resort Hotel 208
## 39208 Resort Hotel 2
## 39209 Resort Hotel 2
## 39210 Resort Hotel 25
## 39211 Resort Hotel 43
## 39212 Resort Hotel 49
## 39213 Resort Hotel 3
## 39214 Resort Hotel 305
## 39215 Resort Hotel 183
## 39216 Resort Hotel 183
## 39217 Resort Hotel 264
## 39218 Resort Hotel 207
## 39219 Resort Hotel 218
## 39220 Resort Hotel 218
## 39221 Resort Hotel 204
## 39222 Resort Hotel 152
## 39223 Resort Hotel 163
## 39224 Resort Hotel 157
## 39225 Resort Hotel 14
## 39226 Resort Hotel 166
## 39227 Resort Hotel 31
## 39228 Resort Hotel 167
## 39229 Resort Hotel 104
## 39230 Resort Hotel 33
## 39231 Resort Hotel 187
## 39232 Resort Hotel 174
## 39233 Resort Hotel 253
## 39234 Resort Hotel 190
## 39235 Resort Hotel 190
## 39236 Resort Hotel 93
## 39237 Resort Hotel 173
## 39238 Resort Hotel 174
## 39239 Resort Hotel 24
## 39240 Resort Hotel 36
## 39241 Resort Hotel 3
## 39242 Resort Hotel 15
## 39243 Resort Hotel 214
## 39244 Resort Hotel 33
## 39245 Resort Hotel 164
## 39246 Resort Hotel 32
## 39247 Resort Hotel 0
## 39248 Resort Hotel 23
## 39249 Resort Hotel 12
## 39250 Resort Hotel 269
## 39251 Resort Hotel 46
## 39252 Resort Hotel 46
## 39253 Resort Hotel 128
## 39254 Resort Hotel 331
## 39255 Resort Hotel 51
## 39256 Resort Hotel 233
## 39257 Resort Hotel 233
## 39258 Resort Hotel 22
## 39259 Resort Hotel 176
## 39260 Resort Hotel 153
## 39261 Resort Hotel 189
## 39262 Resort Hotel 189
## 39263 Resort Hotel 38
## 39264 Resort Hotel 188
## 39265 Resort Hotel 62
## 39266 Resort Hotel 262
## 39267 Resort Hotel 0
## 39268 Resort Hotel 188
## 39269 Resort Hotel 255
## 39270 Resort Hotel 176
## 39271 Resort Hotel 38
## 39272 Resort Hotel 291
## 39273 Resort Hotel 291
## 39274 Resort Hotel 188
## 39275 Resort Hotel 136
## 39276 Resort Hotel 185
## 39277 Resort Hotel 25
## 39278 Resort Hotel 84
## 39279 Resort Hotel 5
## 39280 Resort Hotel 191
## 39281 Resort Hotel 30
## 39282 Resort Hotel 3
## 39283 Resort Hotel 194
## 39284 Resort Hotel 33
## 39285 Resort Hotel 176
## 39286 Resort Hotel 314
## 39287 Resort Hotel 327
## 39288 Resort Hotel 1
## 39289 Resort Hotel 89
## 39290 Resort Hotel 286
## 39291 Resort Hotel 286
## 39292 Resort Hotel 116
## 39293 Resort Hotel 27
## 39294 Resort Hotel 184
## 39295 Resort Hotel 15
## 39296 Resort Hotel 137
## 39297 Resort Hotel 3
## 39298 Resort Hotel 84
## 39299 Resort Hotel 191
## 39300 Resort Hotel 256
## 39301 Resort Hotel 43
## 39302 Resort Hotel 195
## 39303 Resort Hotel 11
## 39304 Resort Hotel 87
## 39305 Resort Hotel 28
## 39306 Resort Hotel 239
## 39307 Resort Hotel 0
## 39308 Resort Hotel 257
## 39309 Resort Hotel 11
## 39310 Resort Hotel 37
## 39311 Resort Hotel 0
## 39312 Resort Hotel 45
## 39313 Resort Hotel 45
## 39314 Resort Hotel 12
## 39315 Resort Hotel 26
## 39316 Resort Hotel 59
## 39317 Resort Hotel 1
## 39318 Resort Hotel 190
## 39319 Resort Hotel 0
## 39320 Resort Hotel 43
## 39321 Resort Hotel 119
## 39322 Resort Hotel 132
## 39323 Resort Hotel 132
## 39324 Resort Hotel 132
## 39325 Resort Hotel 20
## 39326 Resort Hotel 20
## 39327 Resort Hotel 33
## 39328 Resort Hotel 43
## 39329 Resort Hotel 60
## 39330 Resort Hotel 60
## 39331 Resort Hotel 197
## 39332 Resort Hotel 209
## 39333 Resort Hotel 214
## 39334 Resort Hotel 5
## 39335 Resort Hotel 0
## 39336 Resort Hotel 190
## 39337 Resort Hotel 49
## 39338 Resort Hotel 191
## 39339 Resort Hotel 155
## 39340 Resort Hotel 155
## 39341 Resort Hotel 155
## 39342 Resort Hotel 0
## 39343 Resort Hotel 105
## 39344 Resort Hotel 286
## 39345 Resort Hotel 172
## 39346 Resort Hotel 0
## 39347 Resort Hotel 177
## 39348 Resort Hotel 0
## 39349 Resort Hotel 286
## 39350 Resort Hotel 67
## 39351 Resort Hotel 280
## 39352 Resort Hotel 1
## 39353 Resort Hotel 2
## 39354 Resort Hotel 1
## 39355 Resort Hotel 307
## 39356 Resort Hotel 1
## 39357 Resort Hotel 255
## 39358 Resort Hotel 219
## 39359 Resort Hotel 0
## 39360 Resort Hotel 0
## 39361 Resort Hotel 0
## 39362 Resort Hotel 0
## 39363 Resort Hotel 6
## 39364 Resort Hotel 39
## 39365 Resort Hotel 0
## 39366 Resort Hotel 201
## 39367 Resort Hotel 201
## 39368 Resort Hotel 116
## 39369 Resort Hotel 194
## 39370 Resort Hotel 1
## 39371 Resort Hotel 121
## 39372 Resort Hotel 220
## 39373 Resort Hotel 0
## 39374 Resort Hotel 1
## 39375 Resort Hotel 208
## 39376 Resort Hotel 254
## 39377 Resort Hotel 201
## 39378 Resort Hotel 204
## 39379 Resort Hotel 66
## 39380 Resort Hotel 195
## 39381 Resort Hotel 160
## 39382 Resort Hotel 220
## 39383 Resort Hotel 273
## 39384 Resort Hotel 273
## 39385 Resort Hotel 188
## 39386 Resort Hotel 78
## 39387 Resort Hotel 78
## 39388 Resort Hotel 197
## 39389 Resort Hotel 197
## 39390 Resort Hotel 197
## 39391 Resort Hotel 197
## 39392 Resort Hotel 26
## 39393 Resort Hotel 315
## 39394 Resort Hotel 97
## 39395 Resort Hotel 97
## 39396 Resort Hotel 44
## 39397 Resort Hotel 44
## 39398 Resort Hotel 85
## 39399 Resort Hotel 85
## 39400 Resort Hotel 212
## 39401 Resort Hotel 212
## 39402 Resort Hotel 212
## 39403 Resort Hotel 217
## 39404 Resort Hotel 226
## 39405 Resort Hotel 173
## 39406 Resort Hotel 174
## 39407 Resort Hotel 174
## 39408 Resort Hotel 1
## 39409 Resort Hotel 207
## 39410 Resort Hotel 5
## 39411 Resort Hotel 1
## 39412 Resort Hotel 28
## 39413 Resort Hotel 256
## 39414 Resort Hotel 256
## 39415 Resort Hotel 218
## 39416 Resort Hotel 201
## 39417 Resort Hotel 250
## 39418 Resort Hotel 250
## 39419 Resort Hotel 14
## 39420 Resort Hotel 0
## 39421 Resort Hotel 20
## 39422 Resort Hotel 207
## 39423 Resort Hotel 215
## 39424 Resort Hotel 215
## 39425 Resort Hotel 10
## 39426 Resort Hotel 26
## 39427 Resort Hotel 10
## 39428 Resort Hotel 6
## 39429 Resort Hotel 210
## 39430 Resort Hotel 210
## 39431 Resort Hotel 183
## 39432 Resort Hotel 2
## 39433 Resort Hotel 2
## 39434 Resort Hotel 223
## 39435 Resort Hotel 5
## 39436 Resort Hotel 301
## 39437 Resort Hotel 6
## 39438 Resort Hotel 224
## 39439 Resort Hotel 320
## 39440 Resort Hotel 77
## 39441 Resort Hotel 140
## 39442 Resort Hotel 1
## 39443 Resort Hotel 192
## 39444 Resort Hotel 20
## 39445 Resort Hotel 2
## 39446 Resort Hotel 140
## 39447 Resort Hotel 35
## 39448 Resort Hotel 33
## 39449 Resort Hotel 189
## 39450 Resort Hotel 15
## 39451 Resort Hotel 17
## 39452 Resort Hotel 140
## 39453 Resort Hotel 40
## 39454 Resort Hotel 77
## 39455 Resort Hotel 23
## 39456 Resort Hotel 96
## 39457 Resort Hotel 96
## 39458 Resort Hotel 11
## 39459 Resort Hotel 223
## 39460 Resort Hotel 17
## 39461 Resort Hotel 1
## 39462 Resort Hotel 50
## 39463 Resort Hotel 45
## 39464 Resort Hotel 19
## 39465 Resort Hotel 36
## 39466 Resort Hotel 163
## 39467 Resort Hotel 6
## 39468 Resort Hotel 56
## 39469 Resort Hotel 57
## 39470 Resort Hotel 56
## 39471 Resort Hotel 57
## 39472 Resort Hotel 192
## 39473 Resort Hotel 254
## 39474 Resort Hotel 50
## 39475 Resort Hotel 38
## 39476 Resort Hotel 200
## 39477 Resort Hotel 197
## 39478 Resort Hotel 205
## 39479 Resort Hotel 365
## 39480 Resort Hotel 0
## 39481 Resort Hotel 188
## 39482 Resort Hotel 11
## 39483 Resort Hotel 59
## 39484 Resort Hotel 324
## 39485 Resort Hotel 4
## 39486 Resort Hotel 207
## 39487 Resort Hotel 24
## 39488 Resort Hotel 24
## 39489 Resort Hotel 3
## 39490 Resort Hotel 215
## 39491 Resort Hotel 0
## 39492 Resort Hotel 264
## 39493 Resort Hotel 32
## 39494 Resort Hotel 70
## 39495 Resort Hotel 164
## 39496 Resort Hotel 29
## 39497 Resort Hotel 32
## 39498 Resort Hotel 193
## 39499 Resort Hotel 338
## 39500 Resort Hotel 94
## 39501 Resort Hotel 223
## 39502 Resort Hotel 176
## 39503 Resort Hotel 201
## 39504 Resort Hotel 156
## 39505 Resort Hotel 168
## 39506 Resort Hotel 156
## 39507 Resort Hotel 43
## 39508 Resort Hotel 206
## 39509 Resort Hotel 206
## 39510 Resort Hotel 63
## 39511 Resort Hotel 32
## 39512 Resort Hotel 88
## 39513 Resort Hotel 176
## 39514 Resort Hotel 242
## 39515 Resort Hotel 25
## 39516 Resort Hotel 192
## 39517 Resort Hotel 280
## 39518 Resort Hotel 24
## 39519 Resort Hotel 21
## 39520 Resort Hotel 2
## 39521 Resort Hotel 13
## 39522 Resort Hotel 25
## 39523 Resort Hotel 69
## 39524 Resort Hotel 163
## 39525 Resort Hotel 163
## 39526 Resort Hotel 178
## 39527 Resort Hotel 2
## 39528 Resort Hotel 0
## 39529 Resort Hotel 53
## 39530 Resort Hotel 188
## 39531 Resort Hotel 3
## 39532 Resort Hotel 60
## 39533 Resort Hotel 1
## 39534 Resort Hotel 194
## 39535 Resort Hotel 194
## 39536 Resort Hotel 67
## 39537 Resort Hotel 367
## 39538 Resort Hotel 0
## 39539 Resort Hotel 309
## 39540 Resort Hotel 182
## 39541 Resort Hotel 166
## 39542 Resort Hotel 194
## 39543 Resort Hotel 12
## 39544 Resort Hotel 64
## 39545 Resort Hotel 103
## 39546 Resort Hotel 8
## 39547 Resort Hotel 8
## 39548 Resort Hotel 1
## 39549 Resort Hotel 3
## 39550 Resort Hotel 212
## 39551 Resort Hotel 212
## 39552 Resort Hotel 7
## 39553 Resort Hotel 202
## 39554 Resort Hotel 202
## 39555 Resort Hotel 16
## 39556 Resort Hotel 197
## 39557 Resort Hotel 194
## 39558 Resort Hotel 33
## 39559 Resort Hotel 256
## 39560 Resort Hotel 25
## 39561 Resort Hotel 59
## 39562 Resort Hotel 87
## 39563 Resort Hotel 28
## 39564 Resort Hotel 70
## 39565 Resort Hotel 227
## 39566 Resort Hotel 189
## 39567 Resort Hotel 227
## 39568 Resort Hotel 20
## 39569 Resort Hotel 104
## 39570 Resort Hotel 4
## 39571 Resort Hotel 118
## 39572 Resort Hotel 274
## 39573 Resort Hotel 227
## 39574 Resort Hotel 8
## 39575 Resort Hotel 7
## 39576 Resort Hotel 227
## 39577 Resort Hotel 29
## 39578 Resort Hotel 3
## 39579 Resort Hotel 21
## 39580 Resort Hotel 76
## 39581 Resort Hotel 238
## 39582 Resort Hotel 69
## 39583 Resort Hotel 27
## 39584 Resort Hotel 226
## 39585 Resort Hotel 19
## 39586 Resort Hotel 4
## 39587 Resort Hotel 1
## 39588 Resort Hotel 249
## 39589 Resort Hotel 5
## 39590 Resort Hotel 24
## 39591 Resort Hotel 30
## 39592 Resort Hotel 194
## 39593 Resort Hotel 144
## 39594 Resort Hotel 185
## 39595 Resort Hotel 0
## 39596 Resort Hotel 13
## 39597 Resort Hotel 38
## 39598 Resort Hotel 150
## 39599 Resort Hotel 217
## 39600 Resort Hotel 217
## 39601 Resort Hotel 4
## 39602 Resort Hotel 203
## 39603 Resort Hotel 19
## 39604 Resort Hotel 3
## 39605 Resort Hotel 183
## 39606 Resort Hotel 9
## 39607 Resort Hotel 160
## 39608 Resort Hotel 160
## 39609 Resort Hotel 22
## 39610 Resort Hotel 0
## 39611 Resort Hotel 330
## 39612 Resort Hotel 199
## 39613 Resort Hotel 13
## 39614 Resort Hotel 45
## 39615 Resort Hotel 217
## 39616 Resort Hotel 12
## 39617 Resort Hotel 186
## 39618 Resort Hotel 186
## 39619 Resort Hotel 189
## 39620 Resort Hotel 189
## 39621 Resort Hotel 223
## 39622 Resort Hotel 290
## 39623 Resort Hotel 342
## 39624 Resort Hotel 342
## 39625 Resort Hotel 12
## 39626 Resort Hotel 199
## 39627 Resort Hotel 94
## 39628 Resort Hotel 189
## 39629 Resort Hotel 0
## 39630 Resort Hotel 211
## 39631 Resort Hotel 82
## 39632 Resort Hotel 295
## 39633 Resort Hotel 79
## 39634 Resort Hotel 247
## 39635 Resort Hotel 247
## 39636 Resort Hotel 18
## 39637 Resort Hotel 172
## 39638 Resort Hotel 1
## 39639 Resort Hotel 172
## 39640 Resort Hotel 37
## 39641 Resort Hotel 7
## 39642 Resort Hotel 3
## 39643 Resort Hotel 19
## 39644 Resort Hotel 1
## 39645 Resort Hotel 16
## 39646 Resort Hotel 155
## 39647 Resort Hotel 258
## 39648 Resort Hotel 4
## 39649 Resort Hotel 272
## 39650 Resort Hotel 75
## 39651 Resort Hotel 119
## 39652 Resort Hotel 184
## 39653 Resort Hotel 23
## 39654 Resort Hotel 178
## 39655 Resort Hotel 1
## 39656 Resort Hotel 18
## 39657 Resort Hotel 244
## 39658 Resort Hotel 81
## 39659 Resort Hotel 134
## 39660 Resort Hotel 187
## 39661 Resort Hotel 178
## 39662 Resort Hotel 188
## 39663 Resort Hotel 13
## 39664 Resort Hotel 197
## 39665 Resort Hotel 160
## 39666 Resort Hotel 288
## 39667 Resort Hotel 105
## 39668 Resort Hotel 12
## 39669 Resort Hotel 20
## 39670 Resort Hotel 169
## 39671 Resort Hotel 169
## 39672 Resort Hotel 65
## 39673 Resort Hotel 127
## 39674 Resort Hotel 150
## 39675 Resort Hotel 124
## 39676 Resort Hotel 177
## 39677 Resort Hotel 191
## 39678 Resort Hotel 10
## 39679 Resort Hotel 199
## 39680 Resort Hotel 218
## 39681 Resort Hotel 84
## 39682 Resort Hotel 47
## 39683 Resort Hotel 21
## 39684 Resort Hotel 42
## 39685 Resort Hotel 55
## 39686 Resort Hotel 62
## 39687 Resort Hotel 146
## 39688 Resort Hotel 10
## 39689 Resort Hotel 204
## 39690 Resort Hotel 125
## 39691 Resort Hotel 64
## 39692 Resort Hotel 64
## 39693 Resort Hotel 209
## 39694 Resort Hotel 210
## 39695 Resort Hotel 181
## 39696 Resort Hotel 169
## 39697 Resort Hotel 157
## 39698 Resort Hotel 157
## 39699 Resort Hotel 17
## 39700 Resort Hotel 0
## 39701 Resort Hotel 210
## 39702 Resort Hotel 210
## 39703 Resort Hotel 0
## 39704 Resort Hotel 0
## 39705 Resort Hotel 212
## 39706 Resort Hotel 203
## 39707 Resort Hotel 203
## 39708 Resort Hotel 203
## 39709 Resort Hotel 7
## 39710 Resort Hotel 1
## 39711 Resort Hotel 215
## 39712 Resort Hotel 215
## 39713 Resort Hotel 235
## 39714 Resort Hotel 83
## 39715 Resort Hotel 83
## 39716 Resort Hotel 0
## 39717 Resort Hotel 122
## 39718 Resort Hotel 144
## 39719 Resort Hotel 1
## 39720 Resort Hotel 0
## 39721 Resort Hotel 207
## 39722 Resort Hotel 324
## 39723 Resort Hotel 315
## 39724 Resort Hotel 71
## 39725 Resort Hotel 327
## 39726 Resort Hotel 134
## 39727 Resort Hotel 134
## 39728 Resort Hotel 48
## 39729 Resort Hotel 62
## 39730 Resort Hotel 29
## 39731 Resort Hotel 7
## 39732 Resort Hotel 296
## 39733 Resort Hotel 42
## 39734 Resort Hotel 0
## 39735 Resort Hotel 2
## 39736 Resort Hotel 83
## 39737 Resort Hotel 33
## 39738 Resort Hotel 12
## 39739 Resort Hotel 129
## 39740 Resort Hotel 58
## 39741 Resort Hotel 26
## 39742 Resort Hotel 306
## 39743 Resort Hotel 2
## 39744 Resort Hotel 263
## 39745 Resort Hotel 220
## 39746 Resort Hotel 220
## 39747 Resort Hotel 227
## 39748 Resort Hotel 4
## 39749 Resort Hotel 31
## 39750 Resort Hotel 23
## 39751 Resort Hotel 5
## 39752 Resort Hotel 0
## 39753 Resort Hotel 4
## 39754 Resort Hotel 200
## 39755 Resort Hotel 204
## 39756 Resort Hotel 177
## 39757 Resort Hotel 0
## 39758 Resort Hotel 12
## 39759 Resort Hotel 60
## 39760 Resort Hotel 64
## 39761 Resort Hotel 191
## 39762 Resort Hotel 0
## 39763 Resort Hotel 11
## 39764 Resort Hotel 49
## 39765 Resort Hotel 221
## 39766 Resort Hotel 154
## 39767 Resort Hotel 126
## 39768 Resort Hotel 136
## 39769 Resort Hotel 199
## 39770 Resort Hotel 218
## 39771 Resort Hotel 140
## 39772 Resort Hotel 20
## 39773 Resort Hotel 189
## 39774 Resort Hotel 220
## 39775 Resort Hotel 220
## 39776 Resort Hotel 220
## 39777 Resort Hotel 220
## 39778 Resort Hotel 58
## 39779 Resort Hotel 0
## 39780 Resort Hotel 0
## 39781 Resort Hotel 30
## 39782 Resort Hotel 220
## 39783 Resort Hotel 2
## 39784 Resort Hotel 2
## 39785 Resort Hotel 13
## 39786 Resort Hotel 30
## 39787 Resort Hotel 22
## 39788 Resort Hotel 22
## 39789 Resort Hotel 261
## 39790 Resort Hotel 25
## 39791 Resort Hotel 34
## 39792 Resort Hotel 0
## 39793 Resort Hotel 225
## 39794 Resort Hotel 315
## 39795 Resort Hotel 33
## 39796 Resort Hotel 27
## 39797 Resort Hotel 203
## 39798 Resort Hotel 0
## 39799 Resort Hotel 6
## 39800 Resort Hotel 36
## 39801 Resort Hotel 17
## 39802 Resort Hotel 102
## 39803 Resort Hotel 5
## 39804 Resort Hotel 43
## 39805 Resort Hotel 3
## 39806 Resort Hotel 3
## 39807 Resort Hotel 3
## 39808 Resort Hotel 34
## 39809 Resort Hotel 92
## 39810 Resort Hotel 39
## 39811 Resort Hotel 0
## 39812 Resort Hotel 250
## 39813 Resort Hotel 204
## 39814 Resort Hotel 126
## 39815 Resort Hotel 204
## 39816 Resort Hotel 23
## 39817 Resort Hotel 10
## 39818 Resort Hotel 1
## 39819 Resort Hotel 204
## 39820 Resort Hotel 34
## 39821 Resort Hotel 9
## 39822 Resort Hotel 184
## 39823 Resort Hotel 184
## 39824 Resort Hotel 184
## 39825 Resort Hotel 21
## 39826 Resort Hotel 191
## 39827 Resort Hotel 191
## 39828 Resort Hotel 228
## 39829 Resort Hotel 228
## 39830 Resort Hotel 41
## 39831 Resort Hotel 202
## 39832 Resort Hotel 76
## 39833 Resort Hotel 163
## 39834 Resort Hotel 26
## 39835 Resort Hotel 155
## 39836 Resort Hotel 85
## 39837 Resort Hotel 40
## 39838 Resort Hotel 125
## 39839 Resort Hotel 125
## 39840 Resort Hotel 106
## 39841 Resort Hotel 26
## 39842 Resort Hotel 28
## 39843 Resort Hotel 73
## 39844 Resort Hotel 165
## 39845 Resort Hotel 268
## 39846 Resort Hotel 69
## 39847 Resort Hotel 47
## 39848 Resort Hotel 6
## 39849 Resort Hotel 23
## 39850 Resort Hotel 31
## 39851 Resort Hotel 228
## 39852 Resort Hotel 64
## 39853 Resort Hotel 0
## 39854 Resort Hotel 148
## 39855 Resort Hotel 99
## 39856 Resort Hotel 176
## 39857 Resort Hotel 176
## 39858 Resort Hotel 269
## 39859 Resort Hotel 3
## 39860 Resort Hotel 112
## 39861 Resort Hotel 112
## 39862 Resort Hotel 14
## 39863 Resort Hotel 14
## 39864 Resort Hotel 172
## 39865 Resort Hotel 0
## 39866 Resort Hotel 8
## 39867 Resort Hotel 308
## 39868 Resort Hotel 308
## 39869 Resort Hotel 407
## 39870 Resort Hotel 407
## 39871 Resort Hotel 81
## 39872 Resort Hotel 155
## 39873 Resort Hotel 162
## 39874 Resort Hotel 211
## 39875 Resort Hotel 191
## 39876 Resort Hotel 29
## 39877 Resort Hotel 155
## 39878 Resort Hotel 162
## 39879 Resort Hotel 0
## 39880 Resort Hotel 34
## 39881 Resort Hotel 59
## 39882 Resort Hotel 7
## 39883 Resort Hotel 28
## 39884 Resort Hotel 4
## 39885 Resort Hotel 123
## 39886 Resort Hotel 185
## 39887 Resort Hotel 229
## 39888 Resort Hotel 26
## 39889 Resort Hotel 12
## 39890 Resort Hotel 66
## 39891 Resort Hotel 56
## 39892 Resort Hotel 56
## 39893 Resort Hotel 56
## 39894 Resort Hotel 56
## 39895 Resort Hotel 5
## 39896 Resort Hotel 10
## 39897 Resort Hotel 59
## 39898 Resort Hotel 28
## 39899 Resort Hotel 34
## 39900 Resort Hotel 56
## 39901 Resort Hotel 0
## 39902 Resort Hotel 169
## 39903 Resort Hotel 23
## 39904 Resort Hotel 238
## 39905 Resort Hotel 172
## 39906 Resort Hotel 3
## 39907 Resort Hotel 8
## 39908 Resort Hotel 19
## 39909 Resort Hotel 19
## 39910 Resort Hotel 21
## 39911 Resort Hotel 4
## 39912 Resort Hotel 50
## 39913 Resort Hotel 108
## 39914 Resort Hotel 190
## 39915 Resort Hotel 31
## 39916 Resort Hotel 1
## 39917 Resort Hotel 3
## 39918 Resort Hotel 43
## 39919 Resort Hotel 82
## 39920 Resort Hotel 42
## 39921 Resort Hotel 128
## 39922 Resort Hotel 37
## 39923 Resort Hotel 21
## 39924 Resort Hotel 74
## 39925 Resort Hotel 222
## 39926 Resort Hotel 5
## 39927 Resort Hotel 5
## 39928 Resort Hotel 142
## 39929 Resort Hotel 162
## 39930 Resort Hotel 142
## 39931 Resort Hotel 277
## 39932 Resort Hotel 0
## 39933 Resort Hotel 115
## 39934 Resort Hotel 115
## 39935 Resort Hotel 75
## 39936 Resort Hotel 30
## 39937 Resort Hotel 236
## 39938 Resort Hotel 30
## 39939 Resort Hotel 0
## 39940 Resort Hotel 30
## 39941 Resort Hotel 128
## 39942 Resort Hotel 184
## 39943 Resort Hotel 184
## 39944 Resort Hotel 37
## 39945 Resort Hotel 10
## 39946 Resort Hotel 45
## 39947 Resort Hotel 59
## 39948 Resort Hotel 50
## 39949 Resort Hotel 217
## 39950 Resort Hotel 217
## 39951 Resort Hotel 40
## 39952 Resort Hotel 142
## 39953 Resort Hotel 6
## 39954 Resort Hotel 1
## 39955 Resort Hotel 26
## 39956 Resort Hotel 140
## 39957 Resort Hotel 81
## 39958 Resort Hotel 63
## 39959 Resort Hotel 38
## 39960 Resort Hotel 151
## 39961 Resort Hotel 178
## 39962 Resort Hotel 95
## 39963 Resort Hotel 2
## 39964 Resort Hotel 202
## 39965 Resort Hotel 51
## 39966 Resort Hotel 202
## 39967 Resort Hotel 46
## 39968 Resort Hotel 126
## 39969 Resort Hotel 171
## 39970 Resort Hotel 171
## 39971 Resort Hotel 2
## 39972 Resort Hotel 2
## 39973 Resort Hotel 3
## 39974 Resort Hotel 95
## 39975 Resort Hotel 17
## 39976 Resort Hotel 17
## 39977 Resort Hotel 193
## 39978 Resort Hotel 15
## 39979 Resort Hotel 15
## 39980 Resort Hotel 111
## 39981 Resort Hotel 97
## 39982 Resort Hotel 97
## 39983 Resort Hotel 13
## 39984 Resort Hotel 18
## 39985 Resort Hotel 43
## 39986 Resort Hotel 19
## 39987 Resort Hotel 9
## 39988 Resort Hotel 161
## 39989 Resort Hotel 61
## 39990 Resort Hotel 34
## 39991 Resort Hotel 7
## 39992 Resort Hotel 42
## 39993 Resort Hotel 153
## 39994 Resort Hotel 153
## 39995 Resort Hotel 153
## 39996 Resort Hotel 6
## 39997 Resort Hotel 73
## 39998 Resort Hotel 27
## 39999 Resort Hotel 34
## 40000 Resort Hotel 137
## 40001 Resort Hotel 19
## 40002 Resort Hotel 229
## 40003 Resort Hotel 97
## 40004 Resort Hotel 51
## 40005 Resort Hotel 64
## 40006 Resort Hotel 6
## 40007 Resort Hotel 117
## 40008 Resort Hotel 33
## 40009 Resort Hotel 292
## 40010 Resort Hotel 21
## 40011 Resort Hotel 293
## 40012 Resort Hotel 30
## 40013 Resort Hotel 48
## 40014 Resort Hotel 137
## 40015 Resort Hotel 0
## 40016 Resort Hotel 30
## 40017 Resort Hotel 87
## 40018 Resort Hotel 191
## 40019 Resort Hotel 58
## 40020 Resort Hotel 172
## 40021 Resort Hotel 20
## 40022 Resort Hotel 50
## 40023 Resort Hotel 25
## 40024 Resort Hotel 88
## 40025 Resort Hotel 41
## 40026 Resort Hotel 161
## 40027 Resort Hotel 206
## 40028 Resort Hotel 138
## 40029 Resort Hotel 43
## 40030 Resort Hotel 151
## 40031 Resort Hotel 135
## 40032 Resort Hotel 301
## 40033 Resort Hotel 21
## 40034 Resort Hotel 379
## 40035 Resort Hotel 279
## 40036 Resort Hotel 21
## 40037 Resort Hotel 279
## 40038 Resort Hotel 379
## 40039 Resort Hotel 191
## 40040 Resort Hotel 108
## 40041 Resort Hotel 194
## 40042 Resort Hotel 227
## 40043 Resort Hotel 210
## 40044 Resort Hotel 227
## 40045 Resort Hotel 270
## 40046 Resort Hotel 210
## 40047 Resort Hotel 208
## 40048 Resort Hotel 214
## 40049 Resort Hotel 239
## 40050 Resort Hotel 217
## 40051 Resort Hotel 173
## 40052 Resort Hotel 264
## 40053 Resort Hotel 207
## 40054 Resort Hotel 269
## 40055 Resort Hotel 169
## 40056 Resort Hotel 212
## 40057 Resort Hotel 169
## 40058 Resort Hotel 204
## 40059 Resort Hotel 211
## 40060 Resort Hotel 161
## 40061 City Hotel 6
## 40062 City Hotel 88
## 40063 City Hotel 65
## 40064 City Hotel 92
## 40065 City Hotel 100
## 40066 City Hotel 79
## 40067 City Hotel 3
## 40068 City Hotel 63
## 40069 City Hotel 62
## 40070 City Hotel 62
## 40071 City Hotel 43
## 40072 City Hotel 43
## 40073 City Hotel 43
## 40074 City Hotel 4
## 40075 City Hotel 43
## 40076 City Hotel 43
## 40077 City Hotel 43
## 40078 City Hotel 43
## 40079 City Hotel 43
## 40080 City Hotel 43
## 40081 City Hotel 43
## 40082 City Hotel 97
## 40083 City Hotel 43
## 40084 City Hotel 43
## 40085 City Hotel 80
## 40086 City Hotel 60
## 40087 City Hotel 106
## 40088 City Hotel 68
## 40089 City Hotel 92
## 40090 City Hotel 18
## 40091 City Hotel 71
## 40092 City Hotel 85
## 40093 City Hotel 92
## 40094 City Hotel 75
## 40095 City Hotel 92
## 40096 City Hotel 89
## 40097 City Hotel 100
## 40098 City Hotel 83
## 40099 City Hotel 72
## 40100 City Hotel 111
## 40101 City Hotel 86
## 40102 City Hotel 73
## 40103 City Hotel 92
## 40104 City Hotel 55
## 40105 City Hotel 69
## 40106 City Hotel 76
## 40107 City Hotel 76
## 40108 City Hotel 79
## 40109 City Hotel 61
## 40110 City Hotel 55
## 40111 City Hotel 63
## 40112 City Hotel 63
## 40113 City Hotel 77
## 40114 City Hotel 54
## 40115 City Hotel 90
## 40116 City Hotel 90
## 40117 City Hotel 117
## 40118 City Hotel 6
## 40119 City Hotel 105
## 40120 City Hotel 51
## 40121 City Hotel 97
## 40122 City Hotel 72
## 40123 City Hotel 72
## 40124 City Hotel 61
## 40125 City Hotel 63
## 40126 City Hotel 24
## 40127 City Hotel 89
## 40128 City Hotel 92
## 40129 City Hotel 84
## 40130 City Hotel 65
## 40131 City Hotel 85
## 40132 City Hotel 115
## 40133 City Hotel 67
## 40134 City Hotel 87
## 40135 City Hotel 87
## 40136 City Hotel 71
## 40137 City Hotel 3
## 40138 City Hotel 71
## 40139 City Hotel 3
## 40140 City Hotel 109
## 40141 City Hotel 96
## 40142 City Hotel 96
## 40143 City Hotel 65
## 40144 City Hotel 114
## 40145 City Hotel 96
## 40146 City Hotel 96
## 40147 City Hotel 3
## 40148 City Hotel 61
## 40149 City Hotel 96
## 40150 City Hotel 96
## 40151 City Hotel 3
## 40152 City Hotel 96
## 40153 City Hotel 96
## 40154 City Hotel 96
## 40155 City Hotel 96
## 40156 City Hotel 3
## 40157 City Hotel 96
## 40158 City Hotel 96
## 40159 City Hotel 96
## 40160 City Hotel 96
## 40161 City Hotel 96
## 40162 City Hotel 61
## 40163 City Hotel 3
## 40164 City Hotel 66
## 40165 City Hotel 96
## 40166 City Hotel 96
## 40167 City Hotel 96
## 40168 City Hotel 96
## 40169 City Hotel 96
## 40170 City Hotel 114
## 40171 City Hotel 96
## 40172 City Hotel 96
## 40173 City Hotel 3
## 40174 City Hotel 96
## 40175 City Hotel 96
## 40176 City Hotel 96
## 40177 City Hotel 69
## 40178 City Hotel 59
## 40179 City Hotel 96
## 40180 City Hotel 60
## 40181 City Hotel 122
## 40182 City Hotel 60
## 40183 City Hotel 60
## 40184 City Hotel 60
## 40185 City Hotel 122
## 40186 City Hotel 60
## 40187 City Hotel 123
## 40188 City Hotel 60
## 40189 City Hotel 73
## 40190 City Hotel 77
## 40191 City Hotel 123
## 40192 City Hotel 94
## 40193 City Hotel 120
## 40194 City Hotel 94
## 40195 City Hotel 0
## 40196 City Hotel 79
## 40197 City Hotel 92
## 40198 City Hotel 92
## 40199 City Hotel 125
## 40200 City Hotel 0
## 40201 City Hotel 62
## 40202 City Hotel 109
## 40203 City Hotel 109
## 40204 City Hotel 109
## 40205 City Hotel 80
## 40206 City Hotel 122
## 40207 City Hotel 82
## 40208 City Hotel 82
## 40209 City Hotel 107
## 40210 City Hotel 18
## 40211 City Hotel 18
## 40212 City Hotel 18
## 40213 City Hotel 18
## 40214 City Hotel 18
## 40215 City Hotel 18
## 40216 City Hotel 18
## 40217 City Hotel 18
## 40218 City Hotel 18
## 40219 City Hotel 18
## 40220 City Hotel 18
## 40221 City Hotel 18
## 40222 City Hotel 18
## 40223 City Hotel 18
## 40224 City Hotel 18
## 40225 City Hotel 18
## 40226 City Hotel 18
## 40227 City Hotel 18
## 40228 City Hotel 18
## 40229 City Hotel 18
## 40230 City Hotel 18
## 40231 City Hotel 103
## 40232 City Hotel 103
## 40233 City Hotel 103
## 40234 City Hotel 103
## 40235 City Hotel 103
## 40236 City Hotel 103
## 40237 City Hotel 103
## 40238 City Hotel 103
## 40239 City Hotel 103
## 40240 City Hotel 103
## 40241 City Hotel 103
## 40242 City Hotel 103
## 40243 City Hotel 103
## 40244 City Hotel 103
## 40245 City Hotel 103
## 40246 City Hotel 103
## 40247 City Hotel 103
## 40248 City Hotel 103
## 40249 City Hotel 103
## 40250 City Hotel 103
## 40251 City Hotel 103
## 40252 City Hotel 103
## 40253 City Hotel 103
## 40254 City Hotel 103
## 40255 City Hotel 12
## 40256 City Hotel 12
## 40257 City Hotel 12
## 40258 City Hotel 12
## 40259 City Hotel 12
## 40260 City Hotel 12
## 40261 City Hotel 88
## 40262 City Hotel 12
## 40263 City Hotel 12
## 40264 City Hotel 12
## 40265 City Hotel 12
## 40266 City Hotel 12
## 40267 City Hotel 12
## 40268 City Hotel 12
## 40269 City Hotel 12
## 40270 City Hotel 12
## 40271 City Hotel 12
## 40272 City Hotel 12
## 40273 City Hotel 12
## 40274 City Hotel 12
## 40275 City Hotel 12
## 40276 City Hotel 12
## 40277 City Hotel 12
## 40278 City Hotel 12
## 40279 City Hotel 12
## 40280 City Hotel 12
## 40281 City Hotel 12
## 40282 City Hotel 12
## 40283 City Hotel 12
## 40284 City Hotel 12
## 40285 City Hotel 12
## 40286 City Hotel 12
## 40287 City Hotel 118
## 40288 City Hotel 82
## 40289 City Hotel 82
## 40290 City Hotel 96
## 40291 City Hotel 108
## 40292 City Hotel 119
## 40293 City Hotel 119
## 40294 City Hotel 90
## 40295 City Hotel 62
## 40296 City Hotel 67
## 40297 City Hotel 106
## 40298 City Hotel 20
## 40299 City Hotel 20
## 40300 City Hotel 20
## 40301 City Hotel 22
## 40302 City Hotel 22
## 40303 City Hotel 20
## 40304 City Hotel 20
## 40305 City Hotel 22
## 40306 City Hotel 22
## 40307 City Hotel 20
## 40308 City Hotel 20
## 40309 City Hotel 22
## 40310 City Hotel 20
## 40311 City Hotel 20
## 40312 City Hotel 20
## 40313 City Hotel 20
## 40314 City Hotel 20
## 40315 City Hotel 20
## 40316 City Hotel 22
## 40317 City Hotel 22
## 40318 City Hotel 20
## 40319 City Hotel 20
## 40320 City Hotel 20
## 40321 City Hotel 22
## 40322 City Hotel 22
## 40323 City Hotel 22
## 40324 City Hotel 20
## 40325 City Hotel 20
## 40326 City Hotel 20
## 40327 City Hotel 20
## 40328 City Hotel 20
## 40329 City Hotel 20
## 40330 City Hotel 20
## 40331 City Hotel 20
## 40332 City Hotel 99
## 40333 City Hotel 112
## 40334 City Hotel 69
## 40335 City Hotel 96
## 40336 City Hotel 72
## 40337 City Hotel 69
## 40338 City Hotel 69
## 40339 City Hotel 22
## 40340 City Hotel 20
## 40341 City Hotel 20
## 40342 City Hotel 20
## 40343 City Hotel 22
## 40344 City Hotel 111
## 40345 City Hotel 20
## 40346 City Hotel 20
## 40347 City Hotel 22
## 40348 City Hotel 93
## 40349 City Hotel 132
## 40350 City Hotel 132
## 40351 City Hotel 132
## 40352 City Hotel 132
## 40353 City Hotel 132
## 40354 City Hotel 132
## 40355 City Hotel 132
## 40356 City Hotel 132
## 40357 City Hotel 132
## 40358 City Hotel 132
## 40359 City Hotel 132
## 40360 City Hotel 132
## 40361 City Hotel 132
## 40362 City Hotel 132
## 40363 City Hotel 132
## 40364 City Hotel 132
## 40365 City Hotel 132
## 40366 City Hotel 132
## 40367 City Hotel 132
## 40368 City Hotel 132
## 40369 City Hotel 132
## 40370 City Hotel 132
## 40371 City Hotel 132
## 40372 City Hotel 132
## 40373 City Hotel 132
## 40374 City Hotel 132
## 40375 City Hotel 110
## 40376 City Hotel 132
## 40377 City Hotel 132
## 40378 City Hotel 132
## 40379 City Hotel 132
## 40380 City Hotel 132
## 40381 City Hotel 132
## 40382 City Hotel 110
## 40383 City Hotel 132
## 40384 City Hotel 132
## 40385 City Hotel 132
## 40386 City Hotel 132
## 40387 City Hotel 96
## 40388 City Hotel 132
## 40389 City Hotel 2
## 40390 City Hotel 132
## 40391 City Hotel 132
## 40392 City Hotel 2
## 40393 City Hotel 132
## 40394 City Hotel 85
## 40395 City Hotel 0
## 40396 City Hotel 0
## 40397 City Hotel 0
## 40398 City Hotel 0
## 40399 City Hotel 0
## 40400 City Hotel 15
## 40401 City Hotel 84
## 40402 City Hotel 0
## 40403 City Hotel 15
## 40404 City Hotel 84
## 40405 City Hotel 98
## 40406 City Hotel 124
## 40407 City Hotel 110
## 40408 City Hotel 110
## 40409 City Hotel 16
## 40410 City Hotel 16
## 40411 City Hotel 110
## 40412 City Hotel 110
## 40413 City Hotel 110
## 40414 City Hotel 110
## 40415 City Hotel 16
## 40416 City Hotel 110
## 40417 City Hotel 110
## 40418 City Hotel 110
## 40419 City Hotel 110
## 40420 City Hotel 110
## 40421 City Hotel 110
## 40422 City Hotel 110
## 40423 City Hotel 16
## 40424 City Hotel 110
## 40425 City Hotel 110
## 40426 City Hotel 110
## 40427 City Hotel 110
## 40428 City Hotel 110
## 40429 City Hotel 110
## 40430 City Hotel 16
## 40431 City Hotel 16
## 40432 City Hotel 110
## 40433 City Hotel 16
## 40434 City Hotel 16
## 40435 City Hotel 110
## 40436 City Hotel 110
## 40437 City Hotel 16
## 40438 City Hotel 16
## 40439 City Hotel 110
## 40440 City Hotel 110
## 40441 City Hotel 19
## 40442 City Hotel 19
## 40443 City Hotel 19
## 40444 City Hotel 19
## 40445 City Hotel 19
## 40446 City Hotel 19
## 40447 City Hotel 19
## 40448 City Hotel 19
## 40449 City Hotel 19
## 40450 City Hotel 19
## 40451 City Hotel 19
## 40452 City Hotel 19
## 40453 City Hotel 19
## 40454 City Hotel 2
## 40455 City Hotel 19
## 40456 City Hotel 16
## 40457 City Hotel 19
## 40458 City Hotel 19
## 40459 City Hotel 19
## 40460 City Hotel 19
## 40461 City Hotel 19
## 40462 City Hotel 19
## 40463 City Hotel 19
## 40464 City Hotel 19
## 40465 City Hotel 19
## 40466 City Hotel 19
## 40467 City Hotel 19
## 40468 City Hotel 19
## 40469 City Hotel 19
## 40470 City Hotel 19
## 40471 City Hotel 19
## 40472 City Hotel 19
## 40473 City Hotel 125
## 40474 City Hotel 0
## 40475 City Hotel 81
## 40476 City Hotel 5
## 40477 City Hotel 87
## 40478 City Hotel 27
## 40479 City Hotel 25
## 40480 City Hotel 25
## 40481 City Hotel 25
## 40482 City Hotel 25
## 40483 City Hotel 27
## 40484 City Hotel 27
## 40485 City Hotel 25
## 40486 City Hotel 25
## 40487 City Hotel 25
## 40488 City Hotel 27
## 40489 City Hotel 27
## 40490 City Hotel 25
## 40491 City Hotel 25
## 40492 City Hotel 25
## 40493 City Hotel 25
## 40494 City Hotel 25
## 40495 City Hotel 25
## 40496 City Hotel 27
## 40497 City Hotel 27
## 40498 City Hotel 89
## 40499 City Hotel 25
## 40500 City Hotel 25
## 40501 City Hotel 25
## 40502 City Hotel 25
## 40503 City Hotel 25
## 40504 City Hotel 27
## 40505 City Hotel 27
## 40506 City Hotel 27
## 40507 City Hotel 27
## 40508 City Hotel 25
## 40509 City Hotel 27
## 40510 City Hotel 27
## 40511 City Hotel 27
## 40512 City Hotel 25
## 40513 City Hotel 25
## 40514 City Hotel 25
## 40515 City Hotel 25
## 40516 City Hotel 25
## 40517 City Hotel 27
## 40518 City Hotel 25
## 40519 City Hotel 25
## 40520 City Hotel 25
## 40521 City Hotel 27
## 40522 City Hotel 27
## 40523 City Hotel 25
## 40524 City Hotel 25
## 40525 City Hotel 27
## 40526 City Hotel 126
## 40527 City Hotel 0
## 40528 City Hotel 0
## 40529 City Hotel 126
## 40530 City Hotel 81
## 40531 City Hotel 114
## 40532 City Hotel 74
## 40533 City Hotel 74
## 40534 City Hotel 0
## 40535 City Hotel 0
## 40536 City Hotel 1
## 40537 City Hotel 0
## 40538 City Hotel 0
## 40539 City Hotel 75
## 40540 City Hotel 69
## 40541 City Hotel 64
## 40542 City Hotel 2
## 40543 City Hotel 0
## 40544 City Hotel 122
## 40545 City Hotel 138
## 40546 City Hotel 122
## 40547 City Hotel 106
## 40548 City Hotel 115
## 40549 City Hotel 102
## 40550 City Hotel 2
## 40551 City Hotel 85
## 40552 City Hotel 115
## 40553 City Hotel 92
## 40554 City Hotel 100
## 40555 City Hotel 0
## 40556 City Hotel 78
## 40557 City Hotel 80
## 40558 City Hotel 80
## 40559 City Hotel 80
## 40560 City Hotel 130
## 40561 City Hotel 0
## 40562 City Hotel 117
## 40563 City Hotel 117
## 40564 City Hotel 117
## 40565 City Hotel 117
## 40566 City Hotel 130
## 40567 City Hotel 117
## 40568 City Hotel 117
## 40569 City Hotel 117
## 40570 City Hotel 117
## 40571 City Hotel 117
## 40572 City Hotel 130
## 40573 City Hotel 117
## 40574 City Hotel 117
## 40575 City Hotel 2
## 40576 City Hotel 117
## 40577 City Hotel 117
## 40578 City Hotel 117
## 40579 City Hotel 117
## 40580 City Hotel 117
## 40581 City Hotel 2
## 40582 City Hotel 117
## 40583 City Hotel 117
## 40584 City Hotel 117
## 40585 City Hotel 117
## 40586 City Hotel 117
## 40587 City Hotel 117
## 40588 City Hotel 117
## 40589 City Hotel 2
## 40590 City Hotel 117
## 40591 City Hotel 117
## 40592 City Hotel 4
## 40593 City Hotel 135
## 40594 City Hotel 94
## 40595 City Hotel 2
## 40596 City Hotel 83
## 40597 City Hotel 0
## 40598 City Hotel 6
## 40599 City Hotel 0
## 40600 City Hotel 6
## 40601 City Hotel 2
## 40602 City Hotel 76
## 40603 City Hotel 84
## 40604 City Hotel 7
## 40605 City Hotel 76
## 40606 City Hotel 28
## 40607 City Hotel 28
## 40608 City Hotel 28
## 40609 City Hotel 28
## 40610 City Hotel 28
## 40611 City Hotel 28
## 40612 City Hotel 28
## 40613 City Hotel 28
## 40614 City Hotel 28
## 40615 City Hotel 28
## 40616 City Hotel 28
## 40617 City Hotel 28
## 40618 City Hotel 28
## 40619 City Hotel 28
## 40620 City Hotel 28
## 40621 City Hotel 28
## 40622 City Hotel 28
## 40623 City Hotel 28
## 40624 City Hotel 28
## 40625 City Hotel 28
## 40626 City Hotel 28
## 40627 City Hotel 28
## 40628 City Hotel 3
## 40629 City Hotel 28
## 40630 City Hotel 28
## 40631 City Hotel 28
## 40632 City Hotel 28
## 40633 City Hotel 28
## 40634 City Hotel 28
## 40635 City Hotel 28
## 40636 City Hotel 111
## 40637 City Hotel 81
## 40638 City Hotel 77
## 40639 City Hotel 28
## 40640 City Hotel 28
## 40641 City Hotel 0
## 40642 City Hotel 0
## 40643 City Hotel 0
## 40644 City Hotel 0
## 40645 City Hotel 0
## 40646 City Hotel 0
## 40647 City Hotel 1
## 40648 City Hotel 1
## 40649 City Hotel 34
## 40650 City Hotel 34
## 40651 City Hotel 34
## 40652 City Hotel 34
## 40653 City Hotel 34
## 40654 City Hotel 0
## 40655 City Hotel 0
## 40656 City Hotel 1
## 40657 City Hotel 1
## 40658 City Hotel 0
## 40659 City Hotel 1
## 40660 City Hotel 1
## 40661 City Hotel 0
## 40662 City Hotel 34
## 40663 City Hotel 34
## 40664 City Hotel 34
## 40665 City Hotel 34
## 40666 City Hotel 34
## 40667 City Hotel 141
## 40668 City Hotel 1
## 40669 City Hotel 0
## 40670 City Hotel 34
## 40671 City Hotel 34
## 40672 City Hotel 34
## 40673 City Hotel 34
## 40674 City Hotel 34
## 40675 City Hotel 34
## 40676 City Hotel 34
## 40677 City Hotel 34
## 40678 City Hotel 34
## 40679 City Hotel 34
## 40680 City Hotel 1
## 40681 City Hotel 1
## 40682 City Hotel 1
## 40683 City Hotel 34
## 40684 City Hotel 34
## 40685 City Hotel 34
## 40686 City Hotel 34
## 40687 City Hotel 119
## 40688 City Hotel 34
## 40689 City Hotel 34
## 40690 City Hotel 34
## 40691 City Hotel 12
## 40692 City Hotel 12
## 40693 City Hotel 12
## 40694 City Hotel 12
## 40695 City Hotel 135
## 40696 City Hotel 12
## 40697 City Hotel 12
## 40698 City Hotel 1
## 40699 City Hotel 12
## 40700 City Hotel 12
## 40701 City Hotel 12
## 40702 City Hotel 12
## 40703 City Hotel 12
## 40704 City Hotel 12
## 40705 City Hotel 12
## 40706 City Hotel 12
## 40707 City Hotel 12
## 40708 City Hotel 7
## 40709 City Hotel 12
## 40710 City Hotel 12
## 40711 City Hotel 0
## 40712 City Hotel 12
## 40713 City Hotel 12
## 40714 City Hotel 12
## 40715 City Hotel 12
## 40716 City Hotel 12
## 40717 City Hotel 7
## 40718 City Hotel 12
## 40719 City Hotel 12
## 40720 City Hotel 135
## 40721 City Hotel 12
## 40722 City Hotel 12
## 40723 City Hotel 12
## 40724 City Hotel 12
## 40725 City Hotel 1
## 40726 City Hotel 1
## 40727 City Hotel 12
## 40728 City Hotel 12
## 40729 City Hotel 33
## 40730 City Hotel 33
## 40731 City Hotel 0
## 40732 City Hotel 0
## 40733 City Hotel 83
## 40734 City Hotel 83
## 40735 City Hotel 34
## 40736 City Hotel 34
## 40737 City Hotel 34
## 40738 City Hotel 34
## 40739 City Hotel 6
## 40740 City Hotel 0
## 40741 City Hotel 0
## 40742 City Hotel 0
## 40743 City Hotel 0
## 40744 City Hotel 0
## 40745 City Hotel 0
## 40746 City Hotel 0
## 40747 City Hotel 0
## 40748 City Hotel 0
## 40749 City Hotel 0
## 40750 City Hotel 0
## 40751 City Hotel 0
## 40752 City Hotel 101
## 40753 City Hotel 0
## 40754 City Hotel 84
## 40755 City Hotel 92
## 40756 City Hotel 92
## 40757 City Hotel 1
## 40758 City Hotel 1
## 40759 City Hotel 0
## 40760 City Hotel 13
## 40761 City Hotel 11
## 40762 City Hotel 0
## 40763 City Hotel 3
## 40764 City Hotel 0
## 40765 City Hotel 36
## 40766 City Hotel 36
## 40767 City Hotel 36
## 40768 City Hotel 13
## 40769 City Hotel 13
## 40770 City Hotel 1
## 40771 City Hotel 36
## 40772 City Hotel 36
## 40773 City Hotel 0
## 40774 City Hotel 36
## 40775 City Hotel 36
## 40776 City Hotel 36
## 40777 City Hotel 1
## 40778 City Hotel 0
## 40779 City Hotel 36
## 40780 City Hotel 0
## 40781 City Hotel 36
## 40782 City Hotel 36
## 40783 City Hotel 36
## 40784 City Hotel 36
## 40785 City Hotel 36
## 40786 City Hotel 36
## 40787 City Hotel 36
## 40788 City Hotel 36
## 40789 City Hotel 36
## 40790 City Hotel 0
## 40791 City Hotel 36
## 40792 City Hotel 1
## 40793 City Hotel 36
## 40794 City Hotel 36
## 40795 City Hotel 36
## 40796 City Hotel 36
## 40797 City Hotel 36
## 40798 City Hotel 36
## 40799 City Hotel 36
## 40800 City Hotel 36
## 40801 City Hotel 36
## 40802 City Hotel 0
## 40803 City Hotel 0
## 40804 City Hotel 36
## 40805 City Hotel 36
## 40806 City Hotel 36
## 40807 City Hotel 1
## 40808 City Hotel 1
## 40809 City Hotel 0
## 40810 City Hotel 112
## 40811 City Hotel 125
## 40812 City Hotel 2
## 40813 City Hotel 141
## 40814 City Hotel 0
## 40815 City Hotel 92
## 40816 City Hotel 92
## 40817 City Hotel 1
## 40818 City Hotel 1
## 40819 City Hotel 0
## 40820 City Hotel 0
## 40821 City Hotel 0
## 40822 City Hotel 0
## 40823 City Hotel 1
## 40824 City Hotel 128
## 40825 City Hotel 0
## 40826 City Hotel 1
## 40827 City Hotel 1
## 40828 City Hotel 128
## 40829 City Hotel 0
## 40830 City Hotel 124
## 40831 City Hotel 124
## 40832 City Hotel 124
## 40833 City Hotel 124
## 40834 City Hotel 30
## 40835 City Hotel 30
## 40836 City Hotel 4
## 40837 City Hotel 124
## 40838 City Hotel 124
## 40839 City Hotel 0
## 40840 City Hotel 1
## 40841 City Hotel 0
## 40842 City Hotel 103
## 40843 City Hotel 1
## 40844 City Hotel 30
## 40845 City Hotel 124
## 40846 City Hotel 30
## 40847 City Hotel 30
## 40848 City Hotel 0
## 40849 City Hotel 4
## 40850 City Hotel 4
## 40851 City Hotel 124
## 40852 City Hotel 124
## 40853 City Hotel 124
## 40854 City Hotel 124
## 40855 City Hotel 124
## 40856 City Hotel 30
## 40857 City Hotel 124
## 40858 City Hotel 124
## 40859 City Hotel 30
## 40860 City Hotel 4
## 40861 City Hotel 30
## 40862 City Hotel 124
## 40863 City Hotel 124
## 40864 City Hotel 30
## 40865 City Hotel 0
## 40866 City Hotel 124
## 40867 City Hotel 124
## 40868 City Hotel 124
## 40869 City Hotel 124
## 40870 City Hotel 124
## 40871 City Hotel 30
## 40872 City Hotel 124
## 40873 City Hotel 124
## 40874 City Hotel 124
## 40875 City Hotel 124
## 40876 City Hotel 16
## 40877 City Hotel 16
## 40878 City Hotel 16
## 40879 City Hotel 16
## 40880 City Hotel 16
## 40881 City Hotel 1
## 40882 City Hotel 16
## 40883 City Hotel 16
## 40884 City Hotel 16
## 40885 City Hotel 16
## 40886 City Hotel 16
## 40887 City Hotel 16
## 40888 City Hotel 16
## 40889 City Hotel 16
## 40890 City Hotel 16
## 40891 City Hotel 16
## 40892 City Hotel 16
## 40893 City Hotel 1
## 40894 City Hotel 16
## 40895 City Hotel 16
## 40896 City Hotel 16
## 40897 City Hotel 16
## 40898 City Hotel 16
## 40899 City Hotel 16
## 40900 City Hotel 16
## 40901 City Hotel 16
## 40902 City Hotel 16
## 40903 City Hotel 16
## 40904 City Hotel 16
## 40905 City Hotel 16
## 40906 City Hotel 16
## 40907 City Hotel 16
## 40908 City Hotel 16
## 40909 City Hotel 0
## 40910 City Hotel 1
## 40911 City Hotel 1
## 40912 City Hotel 1
## 40913 City Hotel 1
## 40914 City Hotel 109
## 40915 City Hotel 107
## 40916 City Hotel 123
## 40917 City Hotel 2
## 40918 City Hotel 2
## 40919 City Hotel 1
## 40920 City Hotel 4
## 40921 City Hotel 0
## 40922 City Hotel 2
## 40923 City Hotel 0
## 40924 City Hotel 2
## 40925 City Hotel 2
## 40926 City Hotel 1
## 40927 City Hotel 0
## 40928 City Hotel 0
## 40929 City Hotel 1
## 40930 City Hotel 0
## 40931 City Hotel 0
## 40932 City Hotel 145
## 40933 City Hotel 142
## 40934 City Hotel 3
## 40935 City Hotel 120
## 40936 City Hotel 87
## 40937 City Hotel 3
## 40938 City Hotel 1
## 40939 City Hotel 0
## 40940 City Hotel 0
## 40941 City Hotel 0
## 40942 City Hotel 0
## 40943 City Hotel 39
## 40944 City Hotel 39
## 40945 City Hotel 39
## 40946 City Hotel 39
## 40947 City Hotel 1
## 40948 City Hotel 0
## 40949 City Hotel 3
## 40950 City Hotel 39
## 40951 City Hotel 39
## 40952 City Hotel 1
## 40953 City Hotel 1
## 40954 City Hotel 1
## 40955 City Hotel 2
## 40956 City Hotel 39
## 40957 City Hotel 39
## 40958 City Hotel 39
## 40959 City Hotel 39
## 40960 City Hotel 2
## 40961 City Hotel 39
## 40962 City Hotel 39
## 40963 City Hotel 2
## 40964 City Hotel 39
## 40965 City Hotel 39
## 40966 City Hotel 39
## 40967 City Hotel 1
## 40968 City Hotel 39
## 40969 City Hotel 39
## 40970 City Hotel 39
## 40971 City Hotel 39
## 40972 City Hotel 39
## 40973 City Hotel 3
## 40974 City Hotel 4
## 40975 City Hotel 1
## 40976 City Hotel 39
## 40977 City Hotel 39
## 40978 City Hotel 39
## 40979 City Hotel 2
## 40980 City Hotel 39
## 40981 City Hotel 39
## 40982 City Hotel 39
## 40983 City Hotel 0
## 40984 City Hotel 1
## 40985 City Hotel 1
## 40986 City Hotel 3
## 40987 City Hotel 39
## 40988 City Hotel 39
## 40989 City Hotel 39
## 40990 City Hotel 0
## 40991 City Hotel 121
## 40992 City Hotel 105
## 40993 City Hotel 3
## 40994 City Hotel 5
## 40995 City Hotel 1
## 40996 City Hotel 0
## 40997 City Hotel 3
## 40998 City Hotel 1
## 40999 City Hotel 3
## 41000 City Hotel 147
## 41001 City Hotel 0
## 41002 City Hotel 1
## 41003 City Hotel 1
## 41004 City Hotel 0
## 41005 City Hotel 0
## 41006 City Hotel 0
## 41007 City Hotel 5
## 41008 City Hotel 5
## 41009 City Hotel 0
## 41010 City Hotel 6
## 41011 City Hotel 0
## 41012 City Hotel 5
## 41013 City Hotel 6
## 41014 City Hotel 5
## 41015 City Hotel 0
## 41016 City Hotel 39
## 41017 City Hotel 39
## 41018 City Hotel 0
## 41019 City Hotel 1
## 41020 City Hotel 140
## 41021 City Hotel 0
## 41022 City Hotel 0
## 41023 City Hotel 1
## 41024 City Hotel 0
## 41025 City Hotel 1
## 41026 City Hotel 0
## 41027 City Hotel 0
## 41028 City Hotel 0
## 41029 City Hotel 0
## 41030 City Hotel 0
## 41031 City Hotel 0
## 41032 City Hotel 1
## 41033 City Hotel 1
## 41034 City Hotel 97
## 41035 City Hotel 2
## 41036 City Hotel 0
## 41037 City Hotel 2
## 41038 City Hotel 0
## 41039 City Hotel 0
## 41040 City Hotel 3
## 41041 City Hotel 0
## 41042 City Hotel 0
## 41043 City Hotel 0
## 41044 City Hotel 2
## 41045 City Hotel 85
## 41046 City Hotel 3
## 41047 City Hotel 1
## 41048 City Hotel 3
## 41049 City Hotel 104
## 41050 City Hotel 1
## 41051 City Hotel 1
## 41052 City Hotel 147
## 41053 City Hotel 0
## 41054 City Hotel 104
## 41055 City Hotel 1
## 41056 City Hotel 0
## 41057 City Hotel 0
## 41058 City Hotel 1
## 41059 City Hotel 1
## 41060 City Hotel 0
## 41061 City Hotel 2
## 41062 City Hotel 4
## 41063 City Hotel 4
## 41064 City Hotel 89
## 41065 City Hotel 1
## 41066 City Hotel 1
## 41067 City Hotel 5
## 41068 City Hotel 0
## 41069 City Hotel 0
## 41070 City Hotel 3
## 41071 City Hotel 0
## 41072 City Hotel 0
## 41073 City Hotel 0
## 41074 City Hotel 0
## 41075 City Hotel 0
## 41076 City Hotel 0
## 41077 City Hotel 107
## 41078 City Hotel 107
## 41079 City Hotel 0
## 41080 City Hotel 0
## 41081 City Hotel 107
## 41082 City Hotel 6
## 41083 City Hotel 107
## 41084 City Hotel 107
## 41085 City Hotel 1
## 41086 City Hotel 5
## 41087 City Hotel 41
## 41088 City Hotel 0
## 41089 City Hotel 0
## 41090 City Hotel 2
## 41091 City Hotel 41
## 41092 City Hotel 41
## 41093 City Hotel 41
## 41094 City Hotel 41
## 41095 City Hotel 41
## 41096 City Hotel 2
## 41097 City Hotel 41
## 41098 City Hotel 41
## 41099 City Hotel 41
## 41100 City Hotel 41
## 41101 City Hotel 41
## 41102 City Hotel 1
## 41103 City Hotel 41
## 41104 City Hotel 41
## 41105 City Hotel 41
## 41106 City Hotel 41
## 41107 City Hotel 41
## 41108 City Hotel 41
## 41109 City Hotel 41
## 41110 City Hotel 41
## 41111 City Hotel 41
## 41112 City Hotel 41
## 41113 City Hotel 123
## 41114 City Hotel 41
## 41115 City Hotel 41
## 41116 City Hotel 4
## 41117 City Hotel 41
## 41118 City Hotel 41
## 41119 City Hotel 41
## 41120 City Hotel 1
## 41121 City Hotel 41
## 41122 City Hotel 41
## 41123 City Hotel 41
## 41124 City Hotel 41
## 41125 City Hotel 0
## 41126 City Hotel 0
## 41127 City Hotel 0
## 41128 City Hotel 2
## 41129 City Hotel 1
## 41130 City Hotel 7
## 41131 City Hotel 6
## 41132 City Hotel 6
## 41133 City Hotel 4
## 41134 City Hotel 1
## 41135 City Hotel 6
## 41136 City Hotel 0
## 41137 City Hotel 0
## 41138 City Hotel 3
## 41139 City Hotel 2
## 41140 City Hotel 0
## 41141 City Hotel 0
## 41142 City Hotel 2
## 41143 City Hotel 0
## 41144 City Hotel 0
## 41145 City Hotel 0
## 41146 City Hotel 0
## 41147 City Hotel 119
## 41148 City Hotel 134
## 41149 City Hotel 150
## 41150 City Hotel 8
## 41151 City Hotel 119
## 41152 City Hotel 5
## 41153 City Hotel 3
## 41154 City Hotel 8
## 41155 City Hotel 0
## 41156 City Hotel 0
## 41157 City Hotel 16
## 41158 City Hotel 87
## 41159 City Hotel 3
## 41160 City Hotel 142
## 41161 City Hotel 8
## 41162 City Hotel 106
## 41163 City Hotel 87
## 41164 City Hotel 87
## 41165 City Hotel 39
## 41166 City Hotel 39
## 41167 City Hotel 39
## 41168 City Hotel 39
## 41169 City Hotel 39
## 41170 City Hotel 39
## 41171 City Hotel 39
## 41172 City Hotel 39
## 41173 City Hotel 39
## 41174 City Hotel 39
## 41175 City Hotel 39
## 41176 City Hotel 39
## 41177 City Hotel 1
## 41178 City Hotel 0
## 41179 City Hotel 0
## 41180 City Hotel 39
## 41181 City Hotel 39
## 41182 City Hotel 39
## 41183 City Hotel 39
## 41184 City Hotel 39
## 41185 City Hotel 39
## 41186 City Hotel 39
## 41187 City Hotel 87
## 41188 City Hotel 39
## 41189 City Hotel 39
## 41190 City Hotel 39
## 41191 City Hotel 39
## 41192 City Hotel 39
## 41193 City Hotel 39
## 41194 City Hotel 39
## 41195 City Hotel 39
## 41196 City Hotel 39
## 41197 City Hotel 39
## 41198 City Hotel 0
## 41199 City Hotel 0
## 41200 City Hotel 0
## 41201 City Hotel 39
## 41202 City Hotel 39
## 41203 City Hotel 39
## 41204 City Hotel 39
## 41205 City Hotel 39
## 41206 City Hotel 0
## 41207 City Hotel 0
## 41208 City Hotel 0
## 41209 City Hotel 0
## 41210 City Hotel 39
## 41211 City Hotel 39
## 41212 City Hotel 39
## 41213 City Hotel 39
## 41214 City Hotel 39
## 41215 City Hotel 39
## 41216 City Hotel 39
## 41217 City Hotel 8
## 41218 City Hotel 0
## 41219 City Hotel 0
## 41220 City Hotel 39
## 41221 City Hotel 39
## 41222 City Hotel 39
## 41223 City Hotel 39
## 41224 City Hotel 39
## 41225 City Hotel 39
## 41226 City Hotel 39
## 41227 City Hotel 39
## 41228 City Hotel 39
## 41229 City Hotel 39
## 41230 City Hotel 39
## 41231 City Hotel 39
## 41232 City Hotel 39
## 41233 City Hotel 0
## 41234 City Hotel 39
## 41235 City Hotel 39
## 41236 City Hotel 39
## 41237 City Hotel 39
## 41238 City Hotel 39
## 41239 City Hotel 39
## 41240 City Hotel 39
## 41241 City Hotel 39
## 41242 City Hotel 39
## 41243 City Hotel 39
## 41244 City Hotel 39
## 41245 City Hotel 39
## 41246 City Hotel 39
## 41247 City Hotel 39
## 41248 City Hotel 39
## 41249 City Hotel 39
## 41250 City Hotel 39
## 41251 City Hotel 39
## 41252 City Hotel 39
## 41253 City Hotel 39
## 41254 City Hotel 39
## 41255 City Hotel 39
## 41256 City Hotel 39
## 41257 City Hotel 39
## 41258 City Hotel 39
## 41259 City Hotel 39
## 41260 City Hotel 39
## 41261 City Hotel 39
## 41262 City Hotel 39
## 41263 City Hotel 0
## 41264 City Hotel 0
## 41265 City Hotel 0
## 41266 City Hotel 39
## 41267 City Hotel 39
## 41268 City Hotel 39
## 41269 City Hotel 39
## 41270 City Hotel 39
## 41271 City Hotel 39
## 41272 City Hotel 39
## 41273 City Hotel 39
## 41274 City Hotel 39
## 41275 City Hotel 39
## 41276 City Hotel 39
## 41277 City Hotel 39
## 41278 City Hotel 0
## 41279 City Hotel 0
## 41280 City Hotel 0
## 41281 City Hotel 0
## 41282 City Hotel 39
## 41283 City Hotel 39
## 41284 City Hotel 39
## 41285 City Hotel 39
## 41286 City Hotel 39
## 41287 City Hotel 39
## 41288 City Hotel 0
## 41289 City Hotel 0
## 41290 City Hotel 0
## 41291 City Hotel 0
## 41292 City Hotel 0
## 41293 City Hotel 39
## 41294 City Hotel 39
## 41295 City Hotel 39
## 41296 City Hotel 39
## 41297 City Hotel 39
## 41298 City Hotel 0
## 41299 City Hotel 0
## 41300 City Hotel 39
## 41301 City Hotel 39
## 41302 City Hotel 39
## 41303 City Hotel 39
## 41304 City Hotel 39
## 41305 City Hotel 39
## 41306 City Hotel 39
## 41307 City Hotel 39
## 41308 City Hotel 39
## 41309 City Hotel 39
## 41310 City Hotel 39
## 41311 City Hotel 39
## 41312 City Hotel 0
## 41313 City Hotel 0
## 41314 City Hotel 88
## 41315 City Hotel 39
## 41316 City Hotel 39
## 41317 City Hotel 39
## 41318 City Hotel 39
## 41319 City Hotel 39
## 41320 City Hotel 39
## 41321 City Hotel 39
## 41322 City Hotel 39
## 41323 City Hotel 39
## 41324 City Hotel 39
## 41325 City Hotel 39
## 41326 City Hotel 39
## 41327 City Hotel 39
## 41328 City Hotel 39
## 41329 City Hotel 39
## 41330 City Hotel 39
## 41331 City Hotel 39
## 41332 City Hotel 39
## 41333 City Hotel 39
## 41334 City Hotel 39
## 41335 City Hotel 39
## 41336 City Hotel 39
## 41337 City Hotel 0
## 41338 City Hotel 0
## 41339 City Hotel 6
## 41340 City Hotel 3
## 41341 City Hotel 4
## 41342 City Hotel 150
## 41343 City Hotel 1
## 41344 City Hotel 6
## 41345 City Hotel 1
## 41346 City Hotel 133
## 41347 City Hotel 119
## 41348 City Hotel 6
## 41349 City Hotel 6
## 41350 City Hotel 6
## 41351 City Hotel 4
## 41352 City Hotel 10
## 41353 City Hotel 4
## 41354 City Hotel 0
## 41355 City Hotel 4
## 41356 City Hotel 4
## 41357 City Hotel 5
## 41358 City Hotel 5
## 41359 City Hotel 16
## 41360 City Hotel 5
## 41361 City Hotel 40
## 41362 City Hotel 40
## 41363 City Hotel 40
## 41364 City Hotel 40
## 41365 City Hotel 40
## 41366 City Hotel 40
## 41367 City Hotel 40
## 41368 City Hotel 40
## 41369 City Hotel 40
## 41370 City Hotel 40
## 41371 City Hotel 5
## 41372 City Hotel 40
## 41373 City Hotel 40
## 41374 City Hotel 2
## 41375 City Hotel 40
## 41376 City Hotel 40
## 41377 City Hotel 145
## 41378 City Hotel 40
## 41379 City Hotel 40
## 41380 City Hotel 40
## 41381 City Hotel 40
## 41382 City Hotel 40
## 41383 City Hotel 40
## 41384 City Hotel 40
## 41385 City Hotel 40
## 41386 City Hotel 40
## 41387 City Hotel 40
## 41388 City Hotel 40
## 41389 City Hotel 40
## 41390 City Hotel 7
## 41391 City Hotel 8
## 41392 City Hotel 93
## 41393 City Hotel 93
## 41394 City Hotel 8
## 41395 City Hotel 40
## 41396 City Hotel 40
## 41397 City Hotel 40
## 41398 City Hotel 40
## 41399 City Hotel 40
## 41400 City Hotel 131
## 41401 City Hotel 131
## 41402 City Hotel 131
## 41403 City Hotel 131
## 41404 City Hotel 5
## 41405 City Hotel 131
## 41406 City Hotel 131
## 41407 City Hotel 131
## 41408 City Hotel 131
## 41409 City Hotel 131
## 41410 City Hotel 2
## 41411 City Hotel 131
## 41412 City Hotel 5
## 41413 City Hotel 5
## 41414 City Hotel 131
## 41415 City Hotel 131
## 41416 City Hotel 131
## 41417 City Hotel 131
## 41418 City Hotel 131
## 41419 City Hotel 131
## 41420 City Hotel 2
## 41421 City Hotel 1
## 41422 City Hotel 11
## 41423 City Hotel 131
## 41424 City Hotel 9
## 41425 City Hotel 131
## 41426 City Hotel 131
## 41427 City Hotel 131
## 41428 City Hotel 0
## 41429 City Hotel 131
## 41430 City Hotel 131
## 41431 City Hotel 5
## 41432 City Hotel 5
## 41433 City Hotel 2
## 41434 City Hotel 11
## 41435 City Hotel 131
## 41436 City Hotel 131
## 41437 City Hotel 131
## 41438 City Hotel 5
## 41439 City Hotel 8
## 41440 City Hotel 12
## 41441 City Hotel 5
## 41442 City Hotel 8
## 41443 City Hotel 6
## 41444 City Hotel 5
## 41445 City Hotel 137
## 41446 City Hotel 3
## 41447 City Hotel 3
## 41448 City Hotel 0
## 41449 City Hotel 1
## 41450 City Hotel 5
## 41451 City Hotel 6
## 41452 City Hotel 3
## 41453 City Hotel 6
## 41454 City Hotel 127
## 41455 City Hotel 1
## 41456 City Hotel 5
## 41457 City Hotel 5
## 41458 City Hotel 6
## 41459 City Hotel 5
## 41460 City Hotel 90
## 41461 City Hotel 6
## 41462 City Hotel 0
## 41463 City Hotel 0
## 41464 City Hotel 0
## 41465 City Hotel 0
## 41466 City Hotel 0
## 41467 City Hotel 0
## 41468 City Hotel 0
## 41469 City Hotel 46
## 41470 City Hotel 46
## 41471 City Hotel 46
## 41472 City Hotel 46
## 41473 City Hotel 46
## 41474 City Hotel 46
## 41475 City Hotel 46
## 41476 City Hotel 46
## 41477 City Hotel 46
## 41478 City Hotel 46
## 41479 City Hotel 46
## 41480 City Hotel 46
## 41481 City Hotel 46
## 41482 City Hotel 46
## 41483 City Hotel 46
## 41484 City Hotel 46
## 41485 City Hotel 46
## 41486 City Hotel 4
## 41487 City Hotel 5
## 41488 City Hotel 46
## 41489 City Hotel 92
## 41490 City Hotel 7
## 41491 City Hotel 4
## 41492 City Hotel 46
## 41493 City Hotel 46
## 41494 City Hotel 46
## 41495 City Hotel 46
## 41496 City Hotel 3
## 41497 City Hotel 2
## 41498 City Hotel 6
## 41499 City Hotel 4
## 41500 City Hotel 6
## 41501 City Hotel 7
## 41502 City Hotel 9
## 41503 City Hotel 112
## 41504 City Hotel 3
## 41505 City Hotel 9
## 41506 City Hotel 3
## 41507 City Hotel 2
## 41508 City Hotel 7
## 41509 City Hotel 46
## 41510 City Hotel 3
## 41511 City Hotel 4
## 41512 City Hotel 4
## 41513 City Hotel 2
## 41514 City Hotel 4
## 41515 City Hotel 3
## 41516 City Hotel 10
## 41517 City Hotel 137
## 41518 City Hotel 3
## 41519 City Hotel 11
## 41520 City Hotel 5
## 41521 City Hotel 3
## 41522 City Hotel 4
## 41523 City Hotel 6
## 41524 City Hotel 5
## 41525 City Hotel 3
## 41526 City Hotel 4
## 41527 City Hotel 4
## 41528 City Hotel 3
## 41529 City Hotel 0
## 41530 City Hotel 46
## 41531 City Hotel 46
## 41532 City Hotel 46
## 41533 City Hotel 46
## 41534 City Hotel 46
## 41535 City Hotel 46
## 41536 City Hotel 46
## 41537 City Hotel 46
## 41538 City Hotel 5
## 41539 City Hotel 1
## 41540 City Hotel 0
## 41541 City Hotel 1
## 41542 City Hotel 0
## 41543 City Hotel 0
## 41544 City Hotel 0
## 41545 City Hotel 1
## 41546 City Hotel 1
## 41547 City Hotel 0
## 41548 City Hotel 0
## 41549 City Hotel 0
## 41550 City Hotel 1
## 41551 City Hotel 0
## 41552 City Hotel 0
## 41553 City Hotel 4
## 41554 City Hotel 1
## 41555 City Hotel 47
## 41556 City Hotel 14
## 41557 City Hotel 12
## 41558 City Hotel 11
## 41559 City Hotel 11
## 41560 City Hotel 11
## 41561 City Hotel 12
## 41562 City Hotel 11
## 41563 City Hotel 7
## 41564 City Hotel 1
## 41565 City Hotel 4
## 41566 City Hotel 15
## 41567 City Hotel 6
## 41568 City Hotel 7
## 41569 City Hotel 7
## 41570 City Hotel 10
## 41571 City Hotel 8
## 41572 City Hotel 10
## 41573 City Hotel 14
## 41574 City Hotel 8
## 41575 City Hotel 4
## 41576 City Hotel 5
## 41577 City Hotel 13
## 41578 City Hotel 3
## 41579 City Hotel 11
## 41580 City Hotel 47
## 41581 City Hotel 13
## 41582 City Hotel 1
## 41583 City Hotel 4
## 41584 City Hotel 6
## 41585 City Hotel 6
## 41586 City Hotel 8
## 41587 City Hotel 104
## 41588 City Hotel 6
## 41589 City Hotel 10
## 41590 City Hotel 6
## 41591 City Hotel 1
## 41592 City Hotel 11
## 41593 City Hotel 12
## 41594 City Hotel 6
## 41595 City Hotel 8
## 41596 City Hotel 9
## 41597 City Hotel 97
## 41598 City Hotel 135
## 41599 City Hotel 6
## 41600 City Hotel 9
## 41601 City Hotel 7
## 41602 City Hotel 7
## 41603 City Hotel 2
## 41604 City Hotel 4
## 41605 City Hotel 1
## 41606 City Hotel 4
## 41607 City Hotel 7
## 41608 City Hotel 0
## 41609 City Hotel 0
## 41610 City Hotel 4
## 41611 City Hotel 9
## 41612 City Hotel 2
## 41613 City Hotel 5
## 41614 City Hotel 7
## 41615 City Hotel 6
## 41616 City Hotel 8
## 41617 City Hotel 9
## 41618 City Hotel 2
## 41619 City Hotel 0
## 41620 City Hotel 0
## 41621 City Hotel 0
## 41622 City Hotel 97
## 41623 City Hotel 0
## 41624 City Hotel 0
## 41625 City Hotel 0
## 41626 City Hotel 5
## 41627 City Hotel 5
## 41628 City Hotel 10
## 41629 City Hotel 0
## 41630 City Hotel 1
## 41631 City Hotel 0
## 41632 City Hotel 118
## 41633 City Hotel 134
## 41634 City Hotel 0
## 41635 City Hotel 1
## 41636 City Hotel 0
## 41637 City Hotel 7
## 41638 City Hotel 10
## 41639 City Hotel 3
## 41640 City Hotel 9
## 41641 City Hotel 10
## 41642 City Hotel 1
## 41643 City Hotel 1
## 41644 City Hotel 1
## 41645 City Hotel 2
## 41646 City Hotel 12
## 41647 City Hotel 13
## 41648 City Hotel 13
## 41649 City Hotel 10
## 41650 City Hotel 7
## 41651 City Hotel 10
## 41652 City Hotel 10
## 41653 City Hotel 6
## 41654 City Hotel 120
## 41655 City Hotel 120
## 41656 City Hotel 0
## 41657 City Hotel 5
## 41658 City Hotel 3
## 41659 City Hotel 0
## 41660 City Hotel 22
## 41661 City Hotel 0
## 41662 City Hotel 22
## 41663 City Hotel 10
## 41664 City Hotel 2
## 41665 City Hotel 2
## 41666 City Hotel 4
## 41667 City Hotel 2
## 41668 City Hotel 4
## 41669 City Hotel 3
## 41670 City Hotel 102
## 41671 City Hotel 107
## 41672 City Hotel 10
## 41673 City Hotel 2
## 41674 City Hotel 0
## 41675 City Hotel 1
## 41676 City Hotel 0
## 41677 City Hotel 3
## 41678 City Hotel 11
## 41679 City Hotel 11
## 41680 City Hotel 10
## 41681 City Hotel 0
## 41682 City Hotel 9
## 41683 City Hotel 0
## 41684 City Hotel 2
## 41685 City Hotel 43
## 41686 City Hotel 2
## 41687 City Hotel 43
## 41688 City Hotel 2
## 41689 City Hotel 43
## 41690 City Hotel 151
## 41691 City Hotel 151
## 41692 City Hotel 9
## 41693 City Hotel 99
## 41694 City Hotel 8
## 41695 City Hotel 14
## 41696 City Hotel 6
## 41697 City Hotel 138
## 41698 City Hotel 138
## 41699 City Hotel 3
## 41700 City Hotel 17
## 41701 City Hotel 44
## 41702 City Hotel 138
## 41703 City Hotel 138
## 41704 City Hotel 138
## 41705 City Hotel 138
## 41706 City Hotel 138
## 41707 City Hotel 138
## 41708 City Hotel 138
## 41709 City Hotel 18
## 41710 City Hotel 117
## 41711 City Hotel 18
## 41712 City Hotel 10
## 41713 City Hotel 12
## 41714 City Hotel 0
## 41715 City Hotel 0
## 41716 City Hotel 113
## 41717 City Hotel 4
## 41718 City Hotel 113
## 41719 City Hotel 5
## 41720 City Hotel 0
## 41721 City Hotel 5
## 41722 City Hotel 3
## 41723 City Hotel 44
## 41724 City Hotel 138
## 41725 City Hotel 138
## 41726 City Hotel 138
## 41727 City Hotel 138
## 41728 City Hotel 44
## 41729 City Hotel 3
## 41730 City Hotel 138
## 41731 City Hotel 138
## 41732 City Hotel 138
## 41733 City Hotel 17
## 41734 City Hotel 44
## 41735 City Hotel 138
## 41736 City Hotel 138
## 41737 City Hotel 1
## 41738 City Hotel 3
## 41739 City Hotel 138
## 41740 City Hotel 138
## 41741 City Hotel 44
## 41742 City Hotel 44
## 41743 City Hotel 138
## 41744 City Hotel 0
## 41745 City Hotel 138
## 41746 City Hotel 138
## 41747 City Hotel 44
## 41748 City Hotel 138
## 41749 City Hotel 138
## 41750 City Hotel 0
## 41751 City Hotel 1
## 41752 City Hotel 11
## 41753 City Hotel 96
## 41754 City Hotel 103
## 41755 City Hotel 6
## 41756 City Hotel 3
## 41757 City Hotel 10
## 41758 City Hotel 0
## 41759 City Hotel 0
## 41760 City Hotel 15
## 41761 City Hotel 3
## 41762 City Hotel 9
## 41763 City Hotel 1
## 41764 City Hotel 4
## 41765 City Hotel 4
## 41766 City Hotel 11
## 41767 City Hotel 12
## 41768 City Hotel 12
## 41769 City Hotel 6
## 41770 City Hotel 4
## 41771 City Hotel 9
## 41772 City Hotel 9
## 41773 City Hotel 4
## 41774 City Hotel 90
## 41775 City Hotel 90
## 41776 City Hotel 0
## 41777 City Hotel 11
## 41778 City Hotel 4
## 41779 City Hotel 53
## 41780 City Hotel 53
## 41781 City Hotel 53
## 41782 City Hotel 53
## 41783 City Hotel 53
## 41784 City Hotel 13
## 41785 City Hotel 53
## 41786 City Hotel 53
## 41787 City Hotel 53
## 41788 City Hotel 53
## 41789 City Hotel 53
## 41790 City Hotel 53
## 41791 City Hotel 53
## 41792 City Hotel 53
## 41793 City Hotel 53
## 41794 City Hotel 53
## 41795 City Hotel 53
## 41796 City Hotel 53
## 41797 City Hotel 53
## 41798 City Hotel 53
## 41799 City Hotel 53
## 41800 City Hotel 53
## 41801 City Hotel 53
## 41802 City Hotel 53
## 41803 City Hotel 53
## 41804 City Hotel 53
## 41805 City Hotel 53
## 41806 City Hotel 53
## 41807 City Hotel 53
## 41808 City Hotel 53
## 41809 City Hotel 53
## 41810 City Hotel 6
## 41811 City Hotel 7
## 41812 City Hotel 13
## 41813 City Hotel 108
## 41814 City Hotel 5
## 41815 City Hotel 14
## 41816 City Hotel 11
## 41817 City Hotel 5
## 41818 City Hotel 10
## 41819 City Hotel 10
## 41820 City Hotel 11
## 41821 City Hotel 11
## 41822 City Hotel 10
## 41823 City Hotel 0
## 41824 City Hotel 50
## 41825 City Hotel 50
## 41826 City Hotel 50
## 41827 City Hotel 50
## 41828 City Hotel 4
## 41829 City Hotel 50
## 41830 City Hotel 50
## 41831 City Hotel 50
## 41832 City Hotel 50
## 41833 City Hotel 50
## 41834 City Hotel 4
## 41835 City Hotel 4
## 41836 City Hotel 50
## 41837 City Hotel 50
## 41838 City Hotel 4
## 41839 City Hotel 50
## 41840 City Hotel 4
## 41841 City Hotel 50
## 41842 City Hotel 50
## 41843 City Hotel 50
## 41844 City Hotel 50
## 41845 City Hotel 50
## 41846 City Hotel 50
## 41847 City Hotel 4
## 41848 City Hotel 50
## 41849 City Hotel 50
## 41850 City Hotel 50
## 41851 City Hotel 50
## 41852 City Hotel 50
## 41853 City Hotel 50
## 41854 City Hotel 50
## 41855 City Hotel 50
## 41856 City Hotel 10
## 41857 City Hotel 4
## 41858 City Hotel 4
## 41859 City Hotel 4
## 41860 City Hotel 4
## 41861 City Hotel 50
## 41862 City Hotel 50
## 41863 City Hotel 5
## 41864 City Hotel 1
## 41865 City Hotel 4
## 41866 City Hotel 0
## 41867 City Hotel 0
## 41868 City Hotel 0
## 41869 City Hotel 0
## 41870 City Hotel 0
## 41871 City Hotel 13
## 41872 City Hotel 11
## 41873 City Hotel 0
## 41874 City Hotel 1
## 41875 City Hotel 12
## 41876 City Hotel 50
## 41877 City Hotel 50
## 41878 City Hotel 4
## 41879 City Hotel 4
## 41880 City Hotel 50
## 41881 City Hotel 6
## 41882 City Hotel 1
## 41883 City Hotel 2
## 41884 City Hotel 1
## 41885 City Hotel 2
## 41886 City Hotel 1
## 41887 City Hotel 0
## 41888 City Hotel 0
## 41889 City Hotel 2
## 41890 City Hotel 55
## 41891 City Hotel 55
## 41892 City Hotel 55
## 41893 City Hotel 8
## 41894 City Hotel 55
## 41895 City Hotel 55
## 41896 City Hotel 55
## 41897 City Hotel 55
## 41898 City Hotel 55
## 41899 City Hotel 55
## 41900 City Hotel 55
## 41901 City Hotel 55
## 41902 City Hotel 55
## 41903 City Hotel 55
## 41904 City Hotel 2
## 41905 City Hotel 55
## 41906 City Hotel 55
## 41907 City Hotel 55
## 41908 City Hotel 55
## 41909 City Hotel 55
## 41910 City Hotel 0
## 41911 City Hotel 55
## 41912 City Hotel 55
## 41913 City Hotel 2
## 41914 City Hotel 55
## 41915 City Hotel 5
## 41916 City Hotel 2
## 41917 City Hotel 55
## 41918 City Hotel 55
## 41919 City Hotel 55
## 41920 City Hotel 55
## 41921 City Hotel 55
## 41922 City Hotel 55
## 41923 City Hotel 55
## 41924 City Hotel 55
## 41925 City Hotel 55
## 41926 City Hotel 7
## 41927 City Hotel 55
## 41928 City Hotel 1
## 41929 City Hotel 18
## 41930 City Hotel 8
## 41931 City Hotel 118
## 41932 City Hotel 7
## 41933 City Hotel 14
## 41934 City Hotel 118
## 41935 City Hotel 118
## 41936 City Hotel 1
## 41937 City Hotel 13
## 41938 City Hotel 0
## 41939 City Hotel 1
## 41940 City Hotel 8
## 41941 City Hotel 15
## 41942 City Hotel 15
## 41943 City Hotel 2
## 41944 City Hotel 4
## 41945 City Hotel 17
## 41946 City Hotel 12
## 41947 City Hotel 17
## 41948 City Hotel 13
## 41949 City Hotel 15
## 41950 City Hotel 119
## 41951 City Hotel 0
## 41952 City Hotel 10
## 41953 City Hotel 15
## 41954 City Hotel 24
## 41955 City Hotel 10
## 41956 City Hotel 15
## 41957 City Hotel 0
## 41958 City Hotel 11
## 41959 City Hotel 11
## 41960 City Hotel 2
## 41961 City Hotel 11
## 41962 City Hotel 11
## 41963 City Hotel 162
## 41964 City Hotel 1
## 41965 City Hotel 11
## 41966 City Hotel 148
## 41967 City Hotel 8
## 41968 City Hotel 4
## 41969 City Hotel 17
## 41970 City Hotel 3
## 41971 City Hotel 10
## 41972 City Hotel 11
## 41973 City Hotel 1
## 41974 City Hotel 12
## 41975 City Hotel 17
## 41976 City Hotel 3
## 41977 City Hotel 11
## 41978 City Hotel 17
## 41979 City Hotel 0
## 41980 City Hotel 3
## 41981 City Hotel 16
## 41982 City Hotel 0
## 41983 City Hotel 15
## 41984 City Hotel 15
## 41985 City Hotel 15
## 41986 City Hotel 16
## 41987 City Hotel 145
## 41988 City Hotel 145
## 41989 City Hotel 145
## 41990 City Hotel 12
## 41991 City Hotel 145
## 41992 City Hotel 145
## 41993 City Hotel 145
## 41994 City Hotel 145
## 41995 City Hotel 145
## 41996 City Hotel 145
## 41997 City Hotel 1
## 41998 City Hotel 145
## 41999 City Hotel 145
## 42000 City Hotel 145
## 42001 City Hotel 145
## 42002 City Hotel 145
## 42003 City Hotel 145
## 42004 City Hotel 145
## 42005 City Hotel 145
## 42006 City Hotel 145
## 42007 City Hotel 145
## 42008 City Hotel 145
## 42009 City Hotel 10
## 42010 City Hotel 145
## 42011 City Hotel 1
## 42012 City Hotel 145
## 42013 City Hotel 145
## 42014 City Hotel 145
## 42015 City Hotel 145
## 42016 City Hotel 0
## 42017 City Hotel 5
## 42018 City Hotel 10
## 42019 City Hotel 149
## 42020 City Hotel 17
## 42021 City Hotel 17
## 42022 City Hotel 0
## 42023 City Hotel 18
## 42024 City Hotel 14
## 42025 City Hotel 0
## 42026 City Hotel 12
## 42027 City Hotel 2
## 42028 City Hotel 2
## 42029 City Hotel 12
## 42030 City Hotel 12
## 42031 City Hotel 12
## 42032 City Hotel 2
## 42033 City Hotel 2
## 42034 City Hotel 2
## 42035 City Hotel 104
## 42036 City Hotel 104
## 42037 City Hotel 104
## 42038 City Hotel 104
## 42039 City Hotel 104
## 42040 City Hotel 104
## 42041 City Hotel 104
## 42042 City Hotel 104
## 42043 City Hotel 104
## 42044 City Hotel 104
## 42045 City Hotel 104
## 42046 City Hotel 104
## 42047 City Hotel 104
## 42048 City Hotel 104
## 42049 City Hotel 104
## 42050 City Hotel 104
## 42051 City Hotel 104
## 42052 City Hotel 104
## 42053 City Hotel 104
## 42054 City Hotel 104
## 42055 City Hotel 104
## 42056 City Hotel 104
## 42057 City Hotel 104
## 42058 City Hotel 104
## 42059 City Hotel 104
## 42060 City Hotel 104
## 42061 City Hotel 104
## 42062 City Hotel 104
## 42063 City Hotel 104
## 42064 City Hotel 104
## 42065 City Hotel 104
## 42066 City Hotel 104
## 42067 City Hotel 104
## 42068 City Hotel 104
## 42069 City Hotel 104
## 42070 City Hotel 104
## 42071 City Hotel 104
## 42072 City Hotel 104
## 42073 City Hotel 104
## 42074 City Hotel 104
## 42075 City Hotel 1
## 42076 City Hotel 6
## 42077 City Hotel 13
## 42078 City Hotel 6
## 42079 City Hotel 18
## 42080 City Hotel 5
## 42081 City Hotel 0
## 42082 City Hotel 4
## 42083 City Hotel 0
## 42084 City Hotel 0
## 42085 City Hotel 0
## 42086 City Hotel 0
## 42087 City Hotel 145
## 42088 City Hotel 145
## 42089 City Hotel 145
## 42090 City Hotel 145
## 42091 City Hotel 0
## 42092 City Hotel 7
## 42093 City Hotel 145
## 42094 City Hotel 145
## 42095 City Hotel 145
## 42096 City Hotel 7
## 42097 City Hotel 7
## 42098 City Hotel 7
## 42099 City Hotel 7
## 42100 City Hotel 145
## 42101 City Hotel 145
## 42102 City Hotel 145
## 42103 City Hotel 7
## 42104 City Hotel 7
## 42105 City Hotel 7
## 42106 City Hotel 145
## 42107 City Hotel 0
## 42108 City Hotel 145
## 42109 City Hotel 12
## 42110 City Hotel 7
## 42111 City Hotel 145
## 42112 City Hotel 0
## 42113 City Hotel 7
## 42114 City Hotel 145
## 42115 City Hotel 145
## 42116 City Hotel 3
## 42117 City Hotel 0
## 42118 City Hotel 0
## 42119 City Hotel 5
## 42120 City Hotel 13
## 42121 City Hotel 21
## 42122 City Hotel 5
## 42123 City Hotel 18
## 42124 City Hotel 5
## 42125 City Hotel 3
## 42126 City Hotel 19
## 42127 City Hotel 1
## 42128 City Hotel 23
## 42129 City Hotel 27
## 42130 City Hotel 9
## 42131 City Hotel 13
## 42132 City Hotel 9
## 42133 City Hotel 9
## 42134 City Hotel 21
## 42135 City Hotel 7
## 42136 City Hotel 10
## 42137 City Hotel 21
## 42138 City Hotel 16
## 42139 City Hotel 1
## 42140 City Hotel 8
## 42141 City Hotel 0
## 42142 City Hotel 1
## 42143 City Hotel 1
## 42144 City Hotel 1
## 42145 City Hotel 1
## 42146 City Hotel 12
## 42147 City Hotel 21
## 42148 City Hotel 0
## 42149 City Hotel 15
## 42150 City Hotel 7
## 42151 City Hotel 22
## 42152 City Hotel 22
## 42153 City Hotel 20
## 42154 City Hotel 20
## 42155 City Hotel 20
## 42156 City Hotel 24
## 42157 City Hotel 96
## 42158 City Hotel 6
## 42159 City Hotel 17
## 42160 City Hotel 8
## 42161 City Hotel 5
## 42162 City Hotel 0
## 42163 City Hotel 8
## 42164 City Hotel 1
## 42165 City Hotel 111
## 42166 City Hotel 8
## 42167 City Hotel 22
## 42168 City Hotel 8
## 42169 City Hotel 12
## 42170 City Hotel 0
## 42171 City Hotel 4
## 42172 City Hotel 1
## 42173 City Hotel 4
## 42174 City Hotel 23
## 42175 City Hotel 2
## 42176 City Hotel 6
## 42177 City Hotel 20
## 42178 City Hotel 53
## 42179 City Hotel 14
## 42180 City Hotel 55
## 42181 City Hotel 14
## 42182 City Hotel 5
## 42183 City Hotel 5
## 42184 City Hotel 1
## 42185 City Hotel 37
## 42186 City Hotel 1
## 42187 City Hotel 4
## 42188 City Hotel 21
## 42189 City Hotel 23
## 42190 City Hotel 5
## 42191 City Hotel 0
## 42192 City Hotel 18
## 42193 City Hotel 63
## 42194 City Hotel 63
## 42195 City Hotel 63
## 42196 City Hotel 79
## 42197 City Hotel 49
## 42198 City Hotel 63
## 42199 City Hotel 63
## 42200 City Hotel 63
## 42201 City Hotel 18
## 42202 City Hotel 63
## 42203 City Hotel 63
## 42204 City Hotel 49
## 42205 City Hotel 63
## 42206 City Hotel 63
## 42207 City Hotel 16
## 42208 City Hotel 18
## 42209 City Hotel 63
## 42210 City Hotel 63
## 42211 City Hotel 20
## 42212 City Hotel 9
## 42213 City Hotel 16
## 42214 City Hotel 20
## 42215 City Hotel 19
## 42216 City Hotel 10
## 42217 City Hotel 1
## 42218 City Hotel 0
## 42219 City Hotel 0
## 42220 City Hotel 0
## 42221 City Hotel 1
## 42222 City Hotel 6
## 42223 City Hotel 2
## 42224 City Hotel 21
## 42225 City Hotel 3
## 42226 City Hotel 5
## 42227 City Hotel 5
## 42228 City Hotel 22
## 42229 City Hotel 1
## 42230 City Hotel 8
## 42231 City Hotel 97
## 42232 City Hotel 8
## 42233 City Hotel 80
## 42234 City Hotel 10
## 42235 City Hotel 21
## 42236 City Hotel 0
## 42237 City Hotel 1
## 42238 City Hotel 5
## 42239 City Hotel 8
## 42240 City Hotel 8
## 42241 City Hotel 16
## 42242 City Hotel 27
## 42243 City Hotel 13
## 42244 City Hotel 80
## 42245 City Hotel 10
## 42246 City Hotel 21
## 42247 City Hotel 28
## 42248 City Hotel 9
## 42249 City Hotel 28
## 42250 City Hotel 10
## 42251 City Hotel 6
## 42252 City Hotel 1
## 42253 City Hotel 3
## 42254 City Hotel 41
## 42255 City Hotel 0
## 42256 City Hotel 23
## 42257 City Hotel 41
## 42258 City Hotel 41
## 42259 City Hotel 41
## 42260 City Hotel 14
## 42261 City Hotel 6
## 42262 City Hotel 41
## 42263 City Hotel 63
## 42264 City Hotel 63
## 42265 City Hotel 0
## 42266 City Hotel 63
## 42267 City Hotel 63
## 42268 City Hotel 8
## 42269 City Hotel 18
## 42270 City Hotel 63
## 42271 City Hotel 63
## 42272 City Hotel 63
## 42273 City Hotel 63
## 42274 City Hotel 3
## 42275 City Hotel 63
## 42276 City Hotel 63
## 42277 City Hotel 63
## 42278 City Hotel 63
## 42279 City Hotel 63
## 42280 City Hotel 63
## 42281 City Hotel 63
## 42282 City Hotel 11
## 42283 City Hotel 4
## 42284 City Hotel 63
## 42285 City Hotel 63
## 42286 City Hotel 63
## 42287 City Hotel 63
## 42288 City Hotel 63
## 42289 City Hotel 63
## 42290 City Hotel 63
## 42291 City Hotel 63
## 42292 City Hotel 1
## 42293 City Hotel 106
## 42294 City Hotel 63
## 42295 City Hotel 63
## 42296 City Hotel 11
## 42297 City Hotel 3
## 42298 City Hotel 162
## 42299 City Hotel 16
## 42300 City Hotel 23
## 42301 City Hotel 41
## 42302 City Hotel 1
## 42303 City Hotel 41
## 42304 City Hotel 0
## 42305 City Hotel 41
## 42306 City Hotel 162
## 42307 City Hotel 9
## 42308 City Hotel 1
## 42309 City Hotel 14
## 42310 City Hotel 23
## 42311 City Hotel 21
## 42312 City Hotel 39
## 42313 City Hotel 14
## 42314 City Hotel 28
## 42315 City Hotel 22
## 42316 City Hotel 162
## 42317 City Hotel 22
## 42318 City Hotel 22
## 42319 City Hotel 60
## 42320 City Hotel 22
## 42321 City Hotel 13
## 42322 City Hotel 14
## 42323 City Hotel 22
## 42324 City Hotel 14
## 42325 City Hotel 69
## 42326 City Hotel 69
## 42327 City Hotel 22
## 42328 City Hotel 82
## 42329 City Hotel 10
## 42330 City Hotel 12
## 42331 City Hotel 3
## 42332 City Hotel 0
## 42333 City Hotel 0
## 42334 City Hotel 10
## 42335 City Hotel 0
## 42336 City Hotel 2
## 42337 City Hotel 0
## 42338 City Hotel 5
## 42339 City Hotel 0
## 42340 City Hotel 25
## 42341 City Hotel 82
## 42342 City Hotel 9
## 42343 City Hotel 7
## 42344 City Hotel 65
## 42345 City Hotel 65
## 42346 City Hotel 65
## 42347 City Hotel 16
## 42348 City Hotel 15
## 42349 City Hotel 65
## 42350 City Hotel 65
## 42351 City Hotel 65
## 42352 City Hotel 65
## 42353 City Hotel 65
## 42354 City Hotel 65
## 42355 City Hotel 26
## 42356 City Hotel 65
## 42357 City Hotel 65
## 42358 City Hotel 65
## 42359 City Hotel 65
## 42360 City Hotel 65
## 42361 City Hotel 65
## 42362 City Hotel 65
## 42363 City Hotel 26
## 42364 City Hotel 16
## 42365 City Hotel 65
## 42366 City Hotel 65
## 42367 City Hotel 65
## 42368 City Hotel 65
## 42369 City Hotel 16
## 42370 City Hotel 65
## 42371 City Hotel 65
## 42372 City Hotel 65
## 42373 City Hotel 65
## 42374 City Hotel 65
## 42375 City Hotel 65
## 42376 City Hotel 14
## 42377 City Hotel 18
## 42378 City Hotel 65
## 42379 City Hotel 21
## 42380 City Hotel 65
## 42381 City Hotel 65
## 42382 City Hotel 65
## 42383 City Hotel 65
## 42384 City Hotel 47
## 42385 City Hotel 19
## 42386 City Hotel 21
## 42387 City Hotel 16
## 42388 City Hotel 32
## 42389 City Hotel 26
## 42390 City Hotel 32
## 42391 City Hotel 17
## 42392 City Hotel 16
## 42393 City Hotel 23
## 42394 City Hotel 16
## 42395 City Hotel 4
## 42396 City Hotel 61
## 42397 City Hotel 61
## 42398 City Hotel 3
## 42399 City Hotel 3
## 42400 City Hotel 61
## 42401 City Hotel 61
## 42402 City Hotel 61
## 42403 City Hotel 61
## 42404 City Hotel 21
## 42405 City Hotel 61
## 42406 City Hotel 61
## 42407 City Hotel 61
## 42408 City Hotel 3
## 42409 City Hotel 61
## 42410 City Hotel 61
## 42411 City Hotel 61
## 42412 City Hotel 61
## 42413 City Hotel 30
## 42414 City Hotel 4
## 42415 City Hotel 61
## 42416 City Hotel 61
## 42417 City Hotel 61
## 42418 City Hotel 21
## 42419 City Hotel 3
## 42420 City Hotel 3
## 42421 City Hotel 3
## 42422 City Hotel 2
## 42423 City Hotel 61
## 42424 City Hotel 61
## 42425 City Hotel 3
## 42426 City Hotel 61
## 42427 City Hotel 61
## 42428 City Hotel 61
## 42429 City Hotel 61
## 42430 City Hotel 4
## 42431 City Hotel 61
## 42432 City Hotel 61
## 42433 City Hotel 61
## 42434 City Hotel 3
## 42435 City Hotel 61
## 42436 City Hotel 61
## 42437 City Hotel 3
## 42438 City Hotel 3
## 42439 City Hotel 2
## 42440 City Hotel 10
## 42441 City Hotel 10
## 42442 City Hotel 10
## 42443 City Hotel 16
## 42444 City Hotel 26
## 42445 City Hotel 22
## 42446 City Hotel 14
## 42447 City Hotel 61
## 42448 City Hotel 61
## 42449 City Hotel 61
## 42450 City Hotel 61
## 42451 City Hotel 72
## 42452 City Hotel 1
## 42453 City Hotel 1
## 42454 City Hotel 55
## 42455 City Hotel 55
## 42456 City Hotel 55
## 42457 City Hotel 55
## 42458 City Hotel 55
## 42459 City Hotel 63
## 42460 City Hotel 22
## 42461 City Hotel 55
## 42462 City Hotel 55
## 42463 City Hotel 55
## 42464 City Hotel 55
## 42465 City Hotel 55
## 42466 City Hotel 55
## 42467 City Hotel 1
## 42468 City Hotel 55
## 42469 City Hotel 55
## 42470 City Hotel 55
## 42471 City Hotel 55
## 42472 City Hotel 55
## 42473 City Hotel 55
## 42474 City Hotel 1
## 42475 City Hotel 1
## 42476 City Hotel 55
## 42477 City Hotel 55
## 42478 City Hotel 55
## 42479 City Hotel 55
## 42480 City Hotel 55
## 42481 City Hotel 55
## 42482 City Hotel 55
## 42483 City Hotel 55
## 42484 City Hotel 1
## 42485 City Hotel 1
## 42486 City Hotel 55
## 42487 City Hotel 55
## 42488 City Hotel 55
## 42489 City Hotel 55
## 42490 City Hotel 55
## 42491 City Hotel 55
## 42492 City Hotel 55
## 42493 City Hotel 55
## 42494 City Hotel 55
## 42495 City Hotel 55
## 42496 City Hotel 1
## 42497 City Hotel 55
## 42498 City Hotel 55
## 42499 City Hotel 55
## 42500 City Hotel 55
## 42501 City Hotel 55
## 42502 City Hotel 55
## 42503 City Hotel 55
## 42504 City Hotel 1
## 42505 City Hotel 0
## 42506 City Hotel 55
## 42507 City Hotel 55
## 42508 City Hotel 1
## 42509 City Hotel 1
## 42510 City Hotel 55
## 42511 City Hotel 55
## 42512 City Hotel 55
## 42513 City Hotel 55
## 42514 City Hotel 55
## 42515 City Hotel 55
## 42516 City Hotel 55
## 42517 City Hotel 55
## 42518 City Hotel 55
## 42519 City Hotel 55
## 42520 City Hotel 55
## 42521 City Hotel 55
## 42522 City Hotel 55
## 42523 City Hotel 55
## 42524 City Hotel 55
## 42525 City Hotel 55
## 42526 City Hotel 55
## 42527 City Hotel 55
## 42528 City Hotel 55
## 42529 City Hotel 55
## 42530 City Hotel 67
## 42531 City Hotel 69
## 42532 City Hotel 1
## 42533 City Hotel 67
## 42534 City Hotel 67
## 42535 City Hotel 23
## 42536 City Hotel 23
## 42537 City Hotel 15
## 42538 City Hotel 81
## 42539 City Hotel 2
## 42540 City Hotel 6
## 42541 City Hotel 1
## 42542 City Hotel 4
## 42543 City Hotel 0
## 42544 City Hotel 1
## 42545 City Hotel 0
## 42546 City Hotel 0
## 42547 City Hotel 28
## 42548 City Hotel 7
## 42549 City Hotel 3
## 42550 City Hotel 0
## 42551 City Hotel 32
## 42552 City Hotel 6
## 42553 City Hotel 0
## 42554 City Hotel 9
## 42555 City Hotel 0
## 42556 City Hotel 0
## 42557 City Hotel 4
## 42558 City Hotel 3
## 42559 City Hotel 0
## 42560 City Hotel 52
## 42561 City Hotel 10
## 42562 City Hotel 14
## 42563 City Hotel 0
## 42564 City Hotel 13
## 42565 City Hotel 24
## 42566 City Hotel 9
## 42567 City Hotel 9
## 42568 City Hotel 0
## 42569 City Hotel 0
## 42570 City Hotel 0
## 42571 City Hotel 7
## 42572 City Hotel 0
## 42573 City Hotel 5
## 42574 City Hotel 3
## 42575 City Hotel 16
## 42576 City Hotel 28
## 42577 City Hotel 18
## 42578 City Hotel 10
## 42579 City Hotel 0
## 42580 City Hotel 14
## 42581 City Hotel 3
## 42582 City Hotel 5
## 42583 City Hotel 9
## 42584 City Hotel 3
## 42585 City Hotel 0
## 42586 City Hotel 4
## 42587 City Hotel 5
## 42588 City Hotel 6
## 42589 City Hotel 6
## 42590 City Hotel 14
## 42591 City Hotel 10
## 42592 City Hotel 0
## 42593 City Hotel 9
## 42594 City Hotel 3
## 42595 City Hotel 0
## 42596 City Hotel 21
## 42597 City Hotel 14
## 42598 City Hotel 13
## 42599 City Hotel 23
## 42600 City Hotel 18
## 42601 City Hotel 1
## 42602 City Hotel 0
## 42603 City Hotel 0
## 42604 City Hotel 0
## 42605 City Hotel 0
## 42606 City Hotel 0
## 42607 City Hotel 0
## 42608 City Hotel 26
## 42609 City Hotel 0
## 42610 City Hotel 0
## 42611 City Hotel 0
## 42612 City Hotel 0
## 42613 City Hotel 1
## 42614 City Hotel 8
## 42615 City Hotel 0
## 42616 City Hotel 1
## 42617 City Hotel 8
## 42618 City Hotel 0
## 42619 City Hotel 7
## 42620 City Hotel 5
## 42621 City Hotel 8
## 42622 City Hotel 11
## 42623 City Hotel 7
## 42624 City Hotel 0
## 42625 City Hotel 14
## 42626 City Hotel 173
## 42627 City Hotel 15
## 42628 City Hotel 15
## 42629 City Hotel 15
## 42630 City Hotel 5
## 42631 City Hotel 4
## 42632 City Hotel 3
## 42633 City Hotel 11
## 42634 City Hotel 0
## 42635 City Hotel 5
## 42636 City Hotel 0
## 42637 City Hotel 0
## 42638 City Hotel 0
## 42639 City Hotel 22
## 42640 City Hotel 0
## 42641 City Hotel 0
## 42642 City Hotel 10
## 42643 City Hotel 11
## 42644 City Hotel 0
## 42645 City Hotel 45
## 42646 City Hotel 164
## 42647 City Hotel 13
## 42648 City Hotel 7
## 42649 City Hotel 15
## 42650 City Hotel 4
## 42651 City Hotel 42
## 42652 City Hotel 5
## 42653 City Hotel 8
## 42654 City Hotel 2
## 42655 City Hotel 69
## 42656 City Hotel 69
## 42657 City Hotel 1
## 42658 City Hotel 1
## 42659 City Hotel 16
## 42660 City Hotel 86
## 42661 City Hotel 86
## 42662 City Hotel 86
## 42663 City Hotel 85
## 42664 City Hotel 69
## 42665 City Hotel 69
## 42666 City Hotel 0
## 42667 City Hotel 5
## 42668 City Hotel 0
## 42669 City Hotel 0
## 42670 City Hotel 103
## 42671 City Hotel 8
## 42672 City Hotel 2
## 42673 City Hotel 0
## 42674 City Hotel 12
## 42675 City Hotel 69
## 42676 City Hotel 69
## 42677 City Hotel 85
## 42678 City Hotel 85
## 42679 City Hotel 86
## 42680 City Hotel 86
## 42681 City Hotel 69
## 42682 City Hotel 69
## 42683 City Hotel 69
## 42684 City Hotel 86
## 42685 City Hotel 86
## 42686 City Hotel 86
## 42687 City Hotel 55
## 42688 City Hotel 69
## 42689 City Hotel 69
## 42690 City Hotel 69
## 42691 City Hotel 69
## 42692 City Hotel 86
## 42693 City Hotel 15
## 42694 City Hotel 86
## 42695 City Hotel 85
## 42696 City Hotel 69
## 42697 City Hotel 69
## 42698 City Hotel 69
## 42699 City Hotel 1
## 42700 City Hotel 1
## 42701 City Hotel 5
## 42702 City Hotel 86
## 42703 City Hotel 86
## 42704 City Hotel 86
## 42705 City Hotel 85
## 42706 City Hotel 86
## 42707 City Hotel 86
## 42708 City Hotel 69
## 42709 City Hotel 69
## 42710 City Hotel 1
## 42711 City Hotel 1
## 42712 City Hotel 12
## 42713 City Hotel 69
## 42714 City Hotel 69
## 42715 City Hotel 86
## 42716 City Hotel 86
## 42717 City Hotel 86
## 42718 City Hotel 69
## 42719 City Hotel 69
## 42720 City Hotel 69
## 42721 City Hotel 107
## 42722 City Hotel 86
## 42723 City Hotel 86
## 42724 City Hotel 69
## 42725 City Hotel 69
## 42726 City Hotel 69
## 42727 City Hotel 86
## 42728 City Hotel 85
## 42729 City Hotel 85
## 42730 City Hotel 1
## 42731 City Hotel 86
## 42732 City Hotel 86
## 42733 City Hotel 85
## 42734 City Hotel 69
## 42735 City Hotel 69
## 42736 City Hotel 71
## 42737 City Hotel 86
## 42738 City Hotel 86
## 42739 City Hotel 69
## 42740 City Hotel 69
## 42741 City Hotel 69
## 42742 City Hotel 86
## 42743 City Hotel 86
## 42744 City Hotel 86
## 42745 City Hotel 71
## 42746 City Hotel 1
## 42747 City Hotel 86
## 42748 City Hotel 86
## 42749 City Hotel 2
## 42750 City Hotel 16
## 42751 City Hotel 0
## 42752 City Hotel 11
## 42753 City Hotel 0
## 42754 City Hotel 16
## 42755 City Hotel 1
## 42756 City Hotel 1
## 42757 City Hotel 14
## 42758 City Hotel 15
## 42759 City Hotel 18
## 42760 City Hotel 15
## 42761 City Hotel 8
## 42762 City Hotel 3
## 42763 City Hotel 1
## 42764 City Hotel 16
## 42765 City Hotel 1
## 42766 City Hotel 6
## 42767 City Hotel 2
## 42768 City Hotel 6
## 42769 City Hotel 87
## 42770 City Hotel 6
## 42771 City Hotel 2
## 42772 City Hotel 9
## 42773 City Hotel 6
## 42774 City Hotel 2
## 42775 City Hotel 9
## 42776 City Hotel 44
## 42777 City Hotel 44
## 42778 City Hotel 44
## 42779 City Hotel 44
## 42780 City Hotel 44
## 42781 City Hotel 0
## 42782 City Hotel 28
## 42783 City Hotel 44
## 42784 City Hotel 2
## 42785 City Hotel 12
## 42786 City Hotel 44
## 42787 City Hotel 44
## 42788 City Hotel 44
## 42789 City Hotel 44
## 42790 City Hotel 44
## 42791 City Hotel 44
## 42792 City Hotel 44
## 42793 City Hotel 44
## 42794 City Hotel 44
## 42795 City Hotel 17
## 42796 City Hotel 44
## 42797 City Hotel 44
## 42798 City Hotel 44
## 42799 City Hotel 44
## 42800 City Hotel 44
## 42801 City Hotel 44
## 42802 City Hotel 44
## 42803 City Hotel 44
## 42804 City Hotel 58
## 42805 City Hotel 17
## 42806 City Hotel 5
## 42807 City Hotel 2
## 42808 City Hotel 6
## 42809 City Hotel 3
## 42810 City Hotel 16
## 42811 City Hotel 2
## 42812 City Hotel 14
## 42813 City Hotel 17
## 42814 City Hotel 44
## 42815 City Hotel 44
## 42816 City Hotel 5
## 42817 City Hotel 34
## 42818 City Hotel 3
## 42819 City Hotel 24
## 42820 City Hotel 21
## 42821 City Hotel 21
## 42822 City Hotel 9
## 42823 City Hotel 23
## 42824 City Hotel 6
## 42825 City Hotel 22
## 42826 City Hotel 115
## 42827 City Hotel 15
## 42828 City Hotel 48
## 42829 City Hotel 168
## 42830 City Hotel 168
## 42831 City Hotel 168
## 42832 City Hotel 168
## 42833 City Hotel 168
## 42834 City Hotel 87
## 42835 City Hotel 87
## 42836 City Hotel 72
## 42837 City Hotel 72
## 42838 City Hotel 168
## 42839 City Hotel 148
## 42840 City Hotel 8
## 42841 City Hotel 8
## 42842 City Hotel 48
## 42843 City Hotel 48
## 42844 City Hotel 48
## 42845 City Hotel 31
## 42846 City Hotel 168
## 42847 City Hotel 48
## 42848 City Hotel 48
## 42849 City Hotel 48
## 42850 City Hotel 48
## 42851 City Hotel 48
## 42852 City Hotel 48
## 42853 City Hotel 48
## 42854 City Hotel 72
## 42855 City Hotel 168
## 42856 City Hotel 168
## 42857 City Hotel 168
## 42858 City Hotel 168
## 42859 City Hotel 168
## 42860 City Hotel 41
## 42861 City Hotel 32
## 42862 City Hotel 148
## 42863 City Hotel 72
## 42864 City Hotel 168
## 42865 City Hotel 168
## 42866 City Hotel 168
## 42867 City Hotel 168
## 42868 City Hotel 72
## 42869 City Hotel 72
## 42870 City Hotel 87
## 42871 City Hotel 87
## 42872 City Hotel 0
## 42873 City Hotel 72
## 42874 City Hotel 168
## 42875 City Hotel 168
## 42876 City Hotel 168
## 42877 City Hotel 10
## 42878 City Hotel 11
## 42879 City Hotel 58
## 42880 City Hotel 72
## 42881 City Hotel 168
## 42882 City Hotel 168
## 42883 City Hotel 0
## 42884 City Hotel 168
## 42885 City Hotel 168
## 42886 City Hotel 168
## 42887 City Hotel 72
## 42888 City Hotel 168
## 42889 City Hotel 168
## 42890 City Hotel 168
## 42891 City Hotel 168
## 42892 City Hotel 87
## 42893 City Hotel 87
## 42894 City Hotel 72
## 42895 City Hotel 168
## 42896 City Hotel 168
## 42897 City Hotel 168
## 42898 City Hotel 8
## 42899 City Hotel 16
## 42900 City Hotel 48
## 42901 City Hotel 38
## 42902 City Hotel 6
## 42903 City Hotel 18
## 42904 City Hotel 175
## 42905 City Hotel 15
## 42906 City Hotel 46
## 42907 City Hotel 28
## 42908 City Hotel 28
## 42909 City Hotel 9
## 42910 City Hotel 17
## 42911 City Hotel 72
## 42912 City Hotel 72
## 42913 City Hotel 168
## 42914 City Hotel 168
## 42915 City Hotel 168
## 42916 City Hotel 168
## 42917 City Hotel 168
## 42918 City Hotel 17
## 42919 City Hotel 9
## 42920 City Hotel 2
## 42921 City Hotel 87
## 42922 City Hotel 72
## 42923 City Hotel 168
## 42924 City Hotel 168
## 42925 City Hotel 2
## 42926 City Hotel 17
## 42927 City Hotel 9
## 42928 City Hotel 48
## 42929 City Hotel 48
## 42930 City Hotel 87
## 42931 City Hotel 87
## 42932 City Hotel 48
## 42933 City Hotel 48
## 42934 City Hotel 87
## 42935 City Hotel 4
## 42936 City Hotel 48
## 42937 City Hotel 11
## 42938 City Hotel 48
## 42939 City Hotel 13
## 42940 City Hotel 0
## 42941 City Hotel 9
## 42942 City Hotel 17
## 42943 City Hotel 48
## 42944 City Hotel 48
## 42945 City Hotel 87
## 42946 City Hotel 168
## 42947 City Hotel 168
## 42948 City Hotel 72
## 42949 City Hotel 72
## 42950 City Hotel 3
## 42951 City Hotel 72
## 42952 City Hotel 168
## 42953 City Hotel 168
## 42954 City Hotel 168
## 42955 City Hotel 168
## 42956 City Hotel 168
## 42957 City Hotel 87
## 42958 City Hotel 87
## 42959 City Hotel 148
## 42960 City Hotel 72
## 42961 City Hotel 168
## 42962 City Hotel 168
## 42963 City Hotel 168
## 42964 City Hotel 10
## 42965 City Hotel 0
## 42966 City Hotel 87
## 42967 City Hotel 168
## 42968 City Hotel 168
## 42969 City Hotel 168
## 42970 City Hotel 7
## 42971 City Hotel 8
## 42972 City Hotel 3
## 42973 City Hotel 170
## 42974 City Hotel 170
## 42975 City Hotel 11
## 42976 City Hotel 29
## 42977 City Hotel 170
## 42978 City Hotel 26
## 42979 City Hotel 4
## 42980 City Hotel 65
## 42981 City Hotel 65
## 42982 City Hotel 65
## 42983 City Hotel 65
## 42984 City Hotel 65
## 42985 City Hotel 28
## 42986 City Hotel 65
## 42987 City Hotel 65
## 42988 City Hotel 65
## 42989 City Hotel 26
## 42990 City Hotel 12
## 42991 City Hotel 65
## 42992 City Hotel 44
## 42993 City Hotel 9
## 42994 City Hotel 65
## 42995 City Hotel 68
## 42996 City Hotel 68
## 42997 City Hotel 68
## 42998 City Hotel 68
## 42999 City Hotel 60
## 43000 City Hotel 68
## 43001 City Hotel 68
## 43002 City Hotel 68
## 43003 City Hotel 68
## 43004 City Hotel 68
## 43005 City Hotel 68
## 43006 City Hotel 68
## 43007 City Hotel 68
## 43008 City Hotel 68
## 43009 City Hotel 68
## 43010 City Hotel 68
## 43011 City Hotel 68
## 43012 City Hotel 68
## 43013 City Hotel 68
## 43014 City Hotel 68
## 43015 City Hotel 68
## 43016 City Hotel 68
## 43017 City Hotel 92
## 43018 City Hotel 68
## 43019 City Hotel 68
## 43020 City Hotel 68
## 43021 City Hotel 68
## 43022 City Hotel 68
## 43023 City Hotel 68
## 43024 City Hotel 68
## 43025 City Hotel 68
## 43026 City Hotel 68
## 43027 City Hotel 60
## 43028 City Hotel 7
## 43029 City Hotel 30
## 43030 City Hotel 9
## 43031 City Hotel 68
## 43032 City Hotel 10
## 43033 City Hotel 68
## 43034 City Hotel 12
## 43035 City Hotel 21
## 43036 City Hotel 30
## 43037 City Hotel 30
## 43038 City Hotel 90
## 43039 City Hotel 16
## 43040 City Hotel 4
## 43041 City Hotel 16
## 43042 City Hotel 11
## 43043 City Hotel 30
## 43044 City Hotel 34
## 43045 City Hotel 39
## 43046 City Hotel 13
## 43047 City Hotel 18
## 43048 City Hotel 25
## 43049 City Hotel 13
## 43050 City Hotel 19
## 43051 City Hotel 13
## 43052 City Hotel 6
## 43053 City Hotel 40
## 43054 City Hotel 40
## 43055 City Hotel 34
## 43056 City Hotel 76
## 43057 City Hotel 78
## 43058 City Hotel 11
## 43059 City Hotel 6
## 43060 City Hotel 18
## 43061 City Hotel 18
## 43062 City Hotel 35
## 43063 City Hotel 5
## 43064 City Hotel 33
## 43065 City Hotel 135
## 43066 City Hotel 135
## 43067 City Hotel 19
## 43068 City Hotel 14
## 43069 City Hotel 135
## 43070 City Hotel 135
## 43071 City Hotel 135
## 43072 City Hotel 135
## 43073 City Hotel 135
## 43074 City Hotel 135
## 43075 City Hotel 12
## 43076 City Hotel 135
## 43077 City Hotel 20
## 43078 City Hotel 135
## 43079 City Hotel 17
## 43080 City Hotel 135
## 43081 City Hotel 135
## 43082 City Hotel 7
## 43083 City Hotel 6
## 43084 City Hotel 135
## 43085 City Hotel 135
## 43086 City Hotel 6
## 43087 City Hotel 20
## 43088 City Hotel 25
## 43089 City Hotel 38
## 43090 City Hotel 23
## 43091 City Hotel 14
## 43092 City Hotel 30
## 43093 City Hotel 13
## 43094 City Hotel 12
## 43095 City Hotel 20
## 43096 City Hotel 14
## 43097 City Hotel 17
## 43098 City Hotel 38
## 43099 City Hotel 35
## 43100 City Hotel 8
## 43101 City Hotel 29
## 43102 City Hotel 18
## 43103 City Hotel 61
## 43104 City Hotel 34
## 43105 City Hotel 61
## 43106 City Hotel 34
## 43107 City Hotel 14
## 43108 City Hotel 8
## 43109 City Hotel 0
## 43110 City Hotel 54
## 43111 City Hotel 74
## 43112 City Hotel 14
## 43113 City Hotel 42
## 43114 City Hotel 33
## 43115 City Hotel 29
## 43116 City Hotel 29
## 43117 City Hotel 31
## 43118 City Hotel 7
## 43119 City Hotel 14
## 43120 City Hotel 22
## 43121 City Hotel 10
## 43122 City Hotel 33
## 43123 City Hotel 14
## 43124 City Hotel 24
## 43125 City Hotel 87
## 43126 City Hotel 25
## 43127 City Hotel 14
## 43128 City Hotel 14
## 43129 City Hotel 11
## 43130 City Hotel 18
## 43131 City Hotel 14
## 43132 City Hotel 20
## 43133 City Hotel 14
## 43134 City Hotel 6
## 43135 City Hotel 28
## 43136 City Hotel 76
## 43137 City Hotel 14
## 43138 City Hotel 14
## 43139 City Hotel 14
## 43140 City Hotel 42
## 43141 City Hotel 87
## 43142 City Hotel 28
## 43143 City Hotel 14
## 43144 City Hotel 26
## 43145 City Hotel 12
## 43146 City Hotel 12
## 43147 City Hotel 14
## 43148 City Hotel 20
## 43149 City Hotel 76
## 43150 City Hotel 32
## 43151 City Hotel 13
## 43152 City Hotel 27
## 43153 City Hotel 30
## 43154 City Hotel 76
## 43155 City Hotel 76
## 43156 City Hotel 13
## 43157 City Hotel 37
## 43158 City Hotel 76
## 43159 City Hotel 76
## 43160 City Hotel 76
## 43161 City Hotel 76
## 43162 City Hotel 37
## 43163 City Hotel 37
## 43164 City Hotel 37
## 43165 City Hotel 76
## 43166 City Hotel 76
## 43167 City Hotel 8
## 43168 City Hotel 76
## 43169 City Hotel 76
## 43170 City Hotel 76
## 43171 City Hotel 76
## 43172 City Hotel 76
## 43173 City Hotel 76
## 43174 City Hotel 14
## 43175 City Hotel 15
## 43176 City Hotel 13
## 43177 City Hotel 13
## 43178 City Hotel 19
## 43179 City Hotel 15
## 43180 City Hotel 7
## 43181 City Hotel 76
## 43182 City Hotel 76
## 43183 City Hotel 76
## 43184 City Hotel 37
## 43185 City Hotel 37
## 43186 City Hotel 27
## 43187 City Hotel 30
## 43188 City Hotel 76
## 43189 City Hotel 76
## 43190 City Hotel 12
## 43191 City Hotel 76
## 43192 City Hotel 33
## 43193 City Hotel 76
## 43194 City Hotel 76
## 43195 City Hotel 76
## 43196 City Hotel 76
## 43197 City Hotel 76
## 43198 City Hotel 76
## 43199 City Hotel 76
## 43200 City Hotel 37
## 43201 City Hotel 37
## 43202 City Hotel 72
## 43203 City Hotel 76
## 43204 City Hotel 76
## 43205 City Hotel 15
## 43206 City Hotel 22
## 43207 City Hotel 7
## 43208 City Hotel 76
## 43209 City Hotel 76
## 43210 City Hotel 21
## 43211 City Hotel 167
## 43212 City Hotel 16
## 43213 City Hotel 22
## 43214 City Hotel 105
## 43215 City Hotel 166
## 43216 City Hotel 56
## 43217 City Hotel 23
## 43218 City Hotel 16
## 43219 City Hotel 42
## 43220 City Hotel 112
## 43221 City Hotel 44
## 43222 City Hotel 152
## 43223 City Hotel 22
## 43224 City Hotel 81
## 43225 City Hotel 155
## 43226 City Hotel 51
## 43227 City Hotel 76
## 43228 City Hotel 43
## 43229 City Hotel 15
## 43230 City Hotel 12
## 43231 City Hotel 19
## 43232 City Hotel 1
## 43233 City Hotel 16
## 43234 City Hotel 13
## 43235 City Hotel 12
## 43236 City Hotel 10
## 43237 City Hotel 15
## 43238 City Hotel 15
## 43239 City Hotel 15
## 43240 City Hotel 23
## 43241 City Hotel 56
## 43242 City Hotel 56
## 43243 City Hotel 44
## 43244 City Hotel 14
## 43245 City Hotel 14
## 43246 City Hotel 56
## 43247 City Hotel 56
## 43248 City Hotel 17
## 43249 City Hotel 56
## 43250 City Hotel 56
## 43251 City Hotel 56
## 43252 City Hotel 56
## 43253 City Hotel 17
## 43254 City Hotel 56
## 43255 City Hotel 56
## 43256 City Hotel 56
## 43257 City Hotel 56
## 43258 City Hotel 56
## 43259 City Hotel 56
## 43260 City Hotel 56
## 43261 City Hotel 56
## 43262 City Hotel 56
## 43263 City Hotel 14
## 43264 City Hotel 56
## 43265 City Hotel 56
## 43266 City Hotel 56
## 43267 City Hotel 56
## 43268 City Hotel 56
## 43269 City Hotel 56
## 43270 City Hotel 14
## 43271 City Hotel 14
## 43272 City Hotel 162
## 43273 City Hotel 26
## 43274 City Hotel 162
## 43275 City Hotel 162
## 43276 City Hotel 162
## 43277 City Hotel 24
## 43278 City Hotel 162
## 43279 City Hotel 162
## 43280 City Hotel 162
## 43281 City Hotel 162
## 43282 City Hotel 162
## 43283 City Hotel 162
## 43284 City Hotel 162
## 43285 City Hotel 27
## 43286 City Hotel 42
## 43287 City Hotel 162
## 43288 City Hotel 162
## 43289 City Hotel 162
## 43290 City Hotel 97
## 43291 City Hotel 162
## 43292 City Hotel 162
## 43293 City Hotel 56
## 43294 City Hotel 162
## 43295 City Hotel 162
## 43296 City Hotel 16
## 43297 City Hotel 24
## 43298 City Hotel 22
## 43299 City Hotel 26
## 43300 City Hotel 22
## 43301 City Hotel 24
## 43302 City Hotel 22
## 43303 City Hotel 14
## 43304 City Hotel 29
## 43305 City Hotel 56
## 43306 City Hotel 36
## 43307 City Hotel 72
## 43308 City Hotel 72
## 43309 City Hotel 0
## 43310 City Hotel 74
## 43311 City Hotel 72
## 43312 City Hotel 72
## 43313 City Hotel 72
## 43314 City Hotel 72
## 43315 City Hotel 72
## 43316 City Hotel 72
## 43317 City Hotel 72
## 43318 City Hotel 79
## 43319 City Hotel 72
## 43320 City Hotel 72
## 43321 City Hotel 72
## 43322 City Hotel 72
## 43323 City Hotel 72
## 43324 City Hotel 0
## 43325 City Hotel 36
## 43326 City Hotel 72
## 43327 City Hotel 72
## 43328 City Hotel 72
## 43329 City Hotel 72
## 43330 City Hotel 46
## 43331 City Hotel 72
## 43332 City Hotel 72
## 43333 City Hotel 74
## 43334 City Hotel 74
## 43335 City Hotel 74
## 43336 City Hotel 74
## 43337 City Hotel 22
## 43338 City Hotel 74
## 43339 City Hotel 74
## 43340 City Hotel 74
## 43341 City Hotel 74
## 43342 City Hotel 74
## 43343 City Hotel 74
## 43344 City Hotel 74
## 43345 City Hotel 74
## 43346 City Hotel 74
## 43347 City Hotel 74
## 43348 City Hotel 74
## 43349 City Hotel 74
## 43350 City Hotel 74
## 43351 City Hotel 74
## 43352 City Hotel 74
## 43353 City Hotel 74
## 43354 City Hotel 74
## 43355 City Hotel 74
## 43356 City Hotel 74
## 43357 City Hotel 74
## 43358 City Hotel 74
## 43359 City Hotel 74
## 43360 City Hotel 74
## 43361 City Hotel 74
## 43362 City Hotel 74
## 43363 City Hotel 74
## 43364 City Hotel 74
## 43365 City Hotel 74
## 43366 City Hotel 74
## 43367 City Hotel 74
## 43368 City Hotel 27
## 43369 City Hotel 74
## 43370 City Hotel 74
## 43371 City Hotel 74
## 43372 City Hotel 74
## 43373 City Hotel 74
## 43374 City Hotel 74
## 43375 City Hotel 74
## 43376 City Hotel 74
## 43377 City Hotel 74
## 43378 City Hotel 74
## 43379 City Hotel 74
## 43380 City Hotel 74
## 43381 City Hotel 74
## 43382 City Hotel 74
## 43383 City Hotel 74
## 43384 City Hotel 74
## 43385 City Hotel 74
## 43386 City Hotel 27
## 43387 City Hotel 35
## 43388 City Hotel 74
## 43389 City Hotel 74
## 43390 City Hotel 74
## 43391 City Hotel 74
## 43392 City Hotel 74
## 43393 City Hotel 74
## 43394 City Hotel 74
## 43395 City Hotel 74
## 43396 City Hotel 74
## 43397 City Hotel 74
## 43398 City Hotel 27
## 43399 City Hotel 74
## 43400 City Hotel 74
## 43401 City Hotel 74
## 43402 City Hotel 74
## 43403 City Hotel 74
## 43404 City Hotel 74
## 43405 City Hotel 74
## 43406 City Hotel 74
## 43407 City Hotel 74
## 43408 City Hotel 74
## 43409 City Hotel 22
## 43410 City Hotel 74
## 43411 City Hotel 74
## 43412 City Hotel 74
## 43413 City Hotel 74
## 43414 City Hotel 74
## 43415 City Hotel 74
## 43416 City Hotel 74
## 43417 City Hotel 74
## 43418 City Hotel 74
## 43419 City Hotel 74
## 43420 City Hotel 74
## 43421 City Hotel 74
## 43422 City Hotel 74
## 43423 City Hotel 74
## 43424 City Hotel 74
## 43425 City Hotel 74
## 43426 City Hotel 74
## 43427 City Hotel 74
## 43428 City Hotel 74
## 43429 City Hotel 74
## 43430 City Hotel 74
## 43431 City Hotel 74
## 43432 City Hotel 74
## 43433 City Hotel 74
## 43434 City Hotel 74
## 43435 City Hotel 74
## 43436 City Hotel 74
## 43437 City Hotel 74
## 43438 City Hotel 74
## 43439 City Hotel 74
## 43440 City Hotel 74
## 43441 City Hotel 74
## 43442 City Hotel 74
## 43443 City Hotel 74
## 43444 City Hotel 74
## 43445 City Hotel 74
## 43446 City Hotel 74
## 43447 City Hotel 74
## 43448 City Hotel 74
## 43449 City Hotel 74
## 43450 City Hotel 74
## 43451 City Hotel 74
## 43452 City Hotel 74
## 43453 City Hotel 74
## 43454 City Hotel 74
## 43455 City Hotel 74
## 43456 City Hotel 74
## 43457 City Hotel 74
## 43458 City Hotel 74
## 43459 City Hotel 74
## 43460 City Hotel 74
## 43461 City Hotel 74
## 43462 City Hotel 74
## 43463 City Hotel 74
## 43464 City Hotel 74
## 43465 City Hotel 74
## 43466 City Hotel 74
## 43467 City Hotel 74
## 43468 City Hotel 74
## 43469 City Hotel 74
## 43470 City Hotel 74
## 43471 City Hotel 74
## 43472 City Hotel 74
## 43473 City Hotel 74
## 43474 City Hotel 49
## 43475 City Hotel 22
## 43476 City Hotel 24
## 43477 City Hotel 116
## 43478 City Hotel 27
## 43479 City Hotel 87
## 43480 City Hotel 95
## 43481 City Hotel 27
## 43482 City Hotel 24
## 43483 City Hotel 116
## 43484 City Hotel 87
## 43485 City Hotel 25
## 43486 City Hotel 87
## 43487 City Hotel 87
## 43488 City Hotel 95
## 43489 City Hotel 27
## 43490 City Hotel 116
## 43491 City Hotel 77
## 43492 City Hotel 32
## 43493 City Hotel 49
## 43494 City Hotel 27
## 43495 City Hotel 10
## 43496 City Hotel 17
## 43497 City Hotel 45
## 43498 City Hotel 74
## 43499 City Hotel 74
## 43500 City Hotel 74
## 43501 City Hotel 74
## 43502 City Hotel 74
## 43503 City Hotel 74
## 43504 City Hotel 71
## 43505 City Hotel 16
## 43506 City Hotel 41
## 43507 City Hotel 19
## 43508 City Hotel 24
## 43509 City Hotel 19
## 43510 City Hotel 114
## 43511 City Hotel 22
## 43512 City Hotel 24
## 43513 City Hotel 24
## 43514 City Hotel 24
## 43515 City Hotel 42
## 43516 City Hotel 40
## 43517 City Hotel 108
## 43518 City Hotel 42
## 43519 City Hotel 75
## 43520 City Hotel 75
## 43521 City Hotel 75
## 43522 City Hotel 75
## 43523 City Hotel 11
## 43524 City Hotel 75
## 43525 City Hotel 75
## 43526 City Hotel 75
## 43527 City Hotel 75
## 43528 City Hotel 75
## 43529 City Hotel 75
## 43530 City Hotel 75
## 43531 City Hotel 75
## 43532 City Hotel 75
## 43533 City Hotel 75
## 43534 City Hotel 75
## 43535 City Hotel 75
## 43536 City Hotel 40
## 43537 City Hotel 75
## 43538 City Hotel 75
## 43539 City Hotel 75
## 43540 City Hotel 75
## 43541 City Hotel 75
## 43542 City Hotel 75
## 43543 City Hotel 75
## 43544 City Hotel 75
## 43545 City Hotel 75
## 43546 City Hotel 75
## 43547 City Hotel 75
## 43548 City Hotel 75
## 43549 City Hotel 75
## 43550 City Hotel 75
## 43551 City Hotel 75
## 43552 City Hotel 72
## 43553 City Hotel 26
## 43554 City Hotel 25
## 43555 City Hotel 82
## 43556 City Hotel 28
## 43557 City Hotel 57
## 43558 City Hotel 28
## 43559 City Hotel 141
## 43560 City Hotel 141
## 43561 City Hotel 141
## 43562 City Hotel 141
## 43563 City Hotel 141
## 43564 City Hotel 141
## 43565 City Hotel 141
## 43566 City Hotel 141
## 43567 City Hotel 141
## 43568 City Hotel 141
## 43569 City Hotel 141
## 43570 City Hotel 141
## 43571 City Hotel 141
## 43572 City Hotel 13
## 43573 City Hotel 59
## 43574 City Hotel 17
## 43575 City Hotel 12
## 43576 City Hotel 17
## 43577 City Hotel 22
## 43578 City Hotel 141
## 43579 City Hotel 179
## 43580 City Hotel 141
## 43581 City Hotel 19
## 43582 City Hotel 15
## 43583 City Hotel 37
## 43584 City Hotel 37
## 43585 City Hotel 23
## 43586 City Hotel 37
## 43587 City Hotel 13
## 43588 City Hotel 62
## 43589 City Hotel 13
## 43590 City Hotel 20
## 43591 City Hotel 13
## 43592 City Hotel 66
## 43593 City Hotel 15
## 43594 City Hotel 11
## 43595 City Hotel 24
## 43596 City Hotel 27
## 43597 City Hotel 60
## 43598 City Hotel 60
## 43599 City Hotel 60
## 43600 City Hotel 19
## 43601 City Hotel 21
## 43602 City Hotel 60
## 43603 City Hotel 60
## 43604 City Hotel 60
## 43605 City Hotel 19
## 43606 City Hotel 19
## 43607 City Hotel 60
## 43608 City Hotel 60
## 43609 City Hotel 16
## 43610 City Hotel 19
## 43611 City Hotel 60
## 43612 City Hotel 60
## 43613 City Hotel 60
## 43614 City Hotel 21
## 43615 City Hotel 19
## 43616 City Hotel 60
## 43617 City Hotel 60
## 43618 City Hotel 60
## 43619 City Hotel 44
## 43620 City Hotel 60
## 43621 City Hotel 60
## 43622 City Hotel 60
## 43623 City Hotel 60
## 43624 City Hotel 60
## 43625 City Hotel 60
## 43626 City Hotel 60
## 43627 City Hotel 60
## 43628 City Hotel 60
## 43629 City Hotel 60
## 43630 City Hotel 60
## 43631 City Hotel 14
## 43632 City Hotel 93
## 43633 City Hotel 0
## 43634 City Hotel 12
## 43635 City Hotel 27
## 43636 City Hotel 38
## 43637 City Hotel 42
## 43638 City Hotel 37
## 43639 City Hotel 17
## 43640 City Hotel 25
## 43641 City Hotel 19
## 43642 City Hotel 16
## 43643 City Hotel 37
## 43644 City Hotel 98
## 43645 City Hotel 30
## 43646 City Hotel 28
## 43647 City Hotel 20
## 43648 City Hotel 26
## 43649 City Hotel 49
## 43650 City Hotel 49
## 43651 City Hotel 47
## 43652 City Hotel 70
## 43653 City Hotel 69
## 43654 City Hotel 69
## 43655 City Hotel 27
## 43656 City Hotel 69
## 43657 City Hotel 69
## 43658 City Hotel 69
## 43659 City Hotel 69
## 43660 City Hotel 69
## 43661 City Hotel 20
## 43662 City Hotel 71
## 43663 City Hotel 71
## 43664 City Hotel 71
## 43665 City Hotel 18
## 43666 City Hotel 71
## 43667 City Hotel 71
## 43668 City Hotel 24
## 43669 City Hotel 25
## 43670 City Hotel 71
## 43671 City Hotel 13
## 43672 City Hotel 71
## 43673 City Hotel 77
## 43674 City Hotel 28
## 43675 City Hotel 27
## 43676 City Hotel 62
## 43677 City Hotel 27
## 43678 City Hotel 34
## 43679 City Hotel 3
## 43680 City Hotel 83
## 43681 City Hotel 47
## 43682 City Hotel 83
## 43683 City Hotel 83
## 43684 City Hotel 83
## 43685 City Hotel 83
## 43686 City Hotel 83
## 43687 City Hotel 83
## 43688 City Hotel 83
## 43689 City Hotel 83
## 43690 City Hotel 83
## 43691 City Hotel 83
## 43692 City Hotel 83
## 43693 City Hotel 83
## 43694 City Hotel 83
## 43695 City Hotel 83
## 43696 City Hotel 83
## 43697 City Hotel 83
## 43698 City Hotel 83
## 43699 City Hotel 83
## 43700 City Hotel 83
## 43701 City Hotel 83
## 43702 City Hotel 83
## 43703 City Hotel 83
## 43704 City Hotel 83
## 43705 City Hotel 83
## 43706 City Hotel 83
## 43707 City Hotel 83
## 43708 City Hotel 83
## 43709 City Hotel 83
## 43710 City Hotel 83
## 43711 City Hotel 83
## 43712 City Hotel 34
## 43713 City Hotel 34
## 43714 City Hotel 34
## 43715 City Hotel 34
## 43716 City Hotel 34
## 43717 City Hotel 34
## 43718 City Hotel 34
## 43719 City Hotel 34
## 43720 City Hotel 34
## 43721 City Hotel 34
## 43722 City Hotel 34
## 43723 City Hotel 34
## 43724 City Hotel 34
## 43725 City Hotel 34
## 43726 City Hotel 34
## 43727 City Hotel 34
## 43728 City Hotel 34
## 43729 City Hotel 34
## 43730 City Hotel 34
## 43731 City Hotel 34
## 43732 City Hotel 34
## 43733 City Hotel 34
## 43734 City Hotel 32
## 43735 City Hotel 34
## 43736 City Hotel 34
## 43737 City Hotel 34
## 43738 City Hotel 34
## 43739 City Hotel 34
## 43740 City Hotel 34
## 43741 City Hotel 39
## 43742 City Hotel 27
## 43743 City Hotel 50
## 43744 City Hotel 1
## 43745 City Hotel 42
## 43746 City Hotel 86
## 43747 City Hotel 86
## 43748 City Hotel 86
## 43749 City Hotel 86
## 43750 City Hotel 29
## 43751 City Hotel 86
## 43752 City Hotel 86
## 43753 City Hotel 86
## 43754 City Hotel 30
## 43755 City Hotel 86
## 43756 City Hotel 86
## 43757 City Hotel 86
## 43758 City Hotel 86
## 43759 City Hotel 42
## 43760 City Hotel 86
## 43761 City Hotel 86
## 43762 City Hotel 86
## 43763 City Hotel 86
## 43764 City Hotel 86
## 43765 City Hotel 86
## 43766 City Hotel 86
## 43767 City Hotel 86
## 43768 City Hotel 86
## 43769 City Hotel 86
## 43770 City Hotel 86
## 43771 City Hotel 86
## 43772 City Hotel 86
## 43773 City Hotel 86
## 43774 City Hotel 86
## 43775 City Hotel 86
## 43776 City Hotel 86
## 43777 City Hotel 86
## 43778 City Hotel 86
## 43779 City Hotel 86
## 43780 City Hotel 86
## 43781 City Hotel 86
## 43782 City Hotel 86
## 43783 City Hotel 86
## 43784 City Hotel 86
## 43785 City Hotel 86
## 43786 City Hotel 86
## 43787 City Hotel 86
## 43788 City Hotel 86
## 43789 City Hotel 86
## 43790 City Hotel 86
## 43791 City Hotel 51
## 43792 City Hotel 26
## 43793 City Hotel 63
## 43794 City Hotel 29
## 43795 City Hotel 29
## 43796 City Hotel 29
## 43797 City Hotel 56
## 43798 City Hotel 2
## 43799 City Hotel 64
## 43800 City Hotel 31
## 43801 City Hotel 20
## 43802 City Hotel 56
## 43803 City Hotel 77
## 43804 City Hotel 56
## 43805 City Hotel 56
## 43806 City Hotel 56
## 43807 City Hotel 56
## 43808 City Hotel 56
## 43809 City Hotel 56
## 43810 City Hotel 56
## 43811 City Hotel 56
## 43812 City Hotel 56
## 43813 City Hotel 56
## 43814 City Hotel 56
## 43815 City Hotel 56
## 43816 City Hotel 56
## 43817 City Hotel 56
## 43818 City Hotel 56
## 43819 City Hotel 56
## 43820 City Hotel 56
## 43821 City Hotel 56
## 43822 City Hotel 56
## 43823 City Hotel 56
## 43824 City Hotel 56
## 43825 City Hotel 56
## 43826 City Hotel 56
## 43827 City Hotel 192
## 43828 City Hotel 192
## 43829 City Hotel 87
## 43830 City Hotel 87
## 43831 City Hotel 87
## 43832 City Hotel 87
## 43833 City Hotel 87
## 43834 City Hotel 56
## 43835 City Hotel 56
## 43836 City Hotel 56
## 43837 City Hotel 35
## 43838 City Hotel 87
## 43839 City Hotel 87
## 43840 City Hotel 192
## 43841 City Hotel 87
## 43842 City Hotel 87
## 43843 City Hotel 87
## 43844 City Hotel 87
## 43845 City Hotel 87
## 43846 City Hotel 87
## 43847 City Hotel 65
## 43848 City Hotel 87
## 43849 City Hotel 87
## 43850 City Hotel 87
## 43851 City Hotel 87
## 43852 City Hotel 192
## 43853 City Hotel 192
## 43854 City Hotel 35
## 43855 City Hotel 87
## 43856 City Hotel 87
## 43857 City Hotel 87
## 43858 City Hotel 87
## 43859 City Hotel 87
## 43860 City Hotel 87
## 43861 City Hotel 192
## 43862 City Hotel 192
## 43863 City Hotel 87
## 43864 City Hotel 87
## 43865 City Hotel 87
## 43866 City Hotel 87
## 43867 City Hotel 192
## 43868 City Hotel 192
## 43869 City Hotel 35
## 43870 City Hotel 35
## 43871 City Hotel 87
## 43872 City Hotel 87
## 43873 City Hotel 87
## 43874 City Hotel 87
## 43875 City Hotel 87
## 43876 City Hotel 87
## 43877 City Hotel 192
## 43878 City Hotel 87
## 43879 City Hotel 192
## 43880 City Hotel 192
## 43881 City Hotel 192
## 43882 City Hotel 192
## 43883 City Hotel 87
## 43884 City Hotel 87
## 43885 City Hotel 87
## 43886 City Hotel 35
## 43887 City Hotel 87
## 43888 City Hotel 87
## 43889 City Hotel 87
## 43890 City Hotel 87
## 43891 City Hotel 87
## 43892 City Hotel 87
## 43893 City Hotel 87
## 43894 City Hotel 192
## 43895 City Hotel 65
## 43896 City Hotel 35
## 43897 City Hotel 87
## 43898 City Hotel 87
## 43899 City Hotel 87
## 43900 City Hotel 87
## 43901 City Hotel 87
## 43902 City Hotel 87
## 43903 City Hotel 192
## 43904 City Hotel 65
## 43905 City Hotel 87
## 43906 City Hotel 87
## 43907 City Hotel 87
## 43908 City Hotel 87
## 43909 City Hotel 87
## 43910 City Hotel 35
## 43911 City Hotel 35
## 43912 City Hotel 35
## 43913 City Hotel 35
## 43914 City Hotel 87
## 43915 City Hotel 87
## 43916 City Hotel 87
## 43917 City Hotel 87
## 43918 City Hotel 87
## 43919 City Hotel 35
## 43920 City Hotel 87
## 43921 City Hotel 87
## 43922 City Hotel 87
## 43923 City Hotel 87
## 43924 City Hotel 192
## 43925 City Hotel 192
## 43926 City Hotel 65
## 43927 City Hotel 87
## 43928 City Hotel 192
## 43929 City Hotel 23
## 43930 City Hotel 35
## 43931 City Hotel 88
## 43932 City Hotel 88
## 43933 City Hotel 88
## 43934 City Hotel 88
## 43935 City Hotel 88
## 43936 City Hotel 88
## 43937 City Hotel 88
## 43938 City Hotel 88
## 43939 City Hotel 88
## 43940 City Hotel 88
## 43941 City Hotel 88
## 43942 City Hotel 88
## 43943 City Hotel 88
## 43944 City Hotel 88
## 43945 City Hotel 88
## 43946 City Hotel 88
## 43947 City Hotel 88
## 43948 City Hotel 88
## 43949 City Hotel 18
## 43950 City Hotel 88
## 43951 City Hotel 65
## 43952 City Hotel 88
## 43953 City Hotel 88
## 43954 City Hotel 88
## 43955 City Hotel 88
## 43956 City Hotel 88
## 43957 City Hotel 88
## 43958 City Hotel 88
## 43959 City Hotel 88
## 43960 City Hotel 88
## 43961 City Hotel 88
## 43962 City Hotel 88
## 43963 City Hotel 88
## 43964 City Hotel 88
## 43965 City Hotel 88
## 43966 City Hotel 88
## 43967 City Hotel 88
## 43968 City Hotel 88
## 43969 City Hotel 88
## 43970 City Hotel 88
## 43971 City Hotel 33
## 43972 City Hotel 53
## 43973 City Hotel 33
## 43974 City Hotel 35
## 43975 City Hotel 35
## 43976 City Hotel 89
## 43977 City Hotel 89
## 43978 City Hotel 89
## 43979 City Hotel 89
## 43980 City Hotel 89
## 43981 City Hotel 89
## 43982 City Hotel 89
## 43983 City Hotel 169
## 43984 City Hotel 62
## 43985 City Hotel 90
## 43986 City Hotel 90
## 43987 City Hotel 90
## 43988 City Hotel 90
## 43989 City Hotel 90
## 43990 City Hotel 96
## 43991 City Hotel 96
## 43992 City Hotel 96
## 43993 City Hotel 96
## 43994 City Hotel 96
## 43995 City Hotel 96
## 43996 City Hotel 193
## 43997 City Hotel 27
## 43998 City Hotel 19
## 43999 City Hotel 4
## 44000 City Hotel 39
## 44001 City Hotel 68
## 44002 City Hotel 68
## 44003 City Hotel 68
## 44004 City Hotel 68
## 44005 City Hotel 68
## 44006 City Hotel 68
## 44007 City Hotel 68
## 44008 City Hotel 68
## 44009 City Hotel 68
## 44010 City Hotel 68
## 44011 City Hotel 68
## 44012 City Hotel 68
## 44013 City Hotel 68
## 44014 City Hotel 68
## 44015 City Hotel 68
## 44016 City Hotel 68
## 44017 City Hotel 68
## 44018 City Hotel 68
## 44019 City Hotel 68
## 44020 City Hotel 68
## 44021 City Hotel 68
## 44022 City Hotel 68
## 44023 City Hotel 68
## 44024 City Hotel 68
## 44025 City Hotel 68
## 44026 City Hotel 28
## 44027 City Hotel 28
## 44028 City Hotel 21
## 44029 City Hotel 35
## 44030 City Hotel 20
## 44031 City Hotel 20
## 44032 City Hotel 0
## 44033 City Hotel 92
## 44034 City Hotel 83
## 44035 City Hotel 83
## 44036 City Hotel 83
## 44037 City Hotel 92
## 44038 City Hotel 92
## 44039 City Hotel 83
## 44040 City Hotel 92
## 44041 City Hotel 92
## 44042 City Hotel 92
## 44043 City Hotel 92
## 44044 City Hotel 83
## 44045 City Hotel 78
## 44046 City Hotel 92
## 44047 City Hotel 92
## 44048 City Hotel 92
## 44049 City Hotel 83
## 44050 City Hotel 83
## 44051 City Hotel 83
## 44052 City Hotel 92
## 44053 City Hotel 92
## 44054 City Hotel 92
## 44055 City Hotel 83
## 44056 City Hotel 83
## 44057 City Hotel 92
## 44058 City Hotel 92
## 44059 City Hotel 83
## 44060 City Hotel 83
## 44061 City Hotel 92
## 44062 City Hotel 92
## 44063 City Hotel 92
## 44064 City Hotel 83
## 44065 City Hotel 42
## 44066 City Hotel 83
## 44067 City Hotel 92
## 44068 City Hotel 92
## 44069 City Hotel 92
## 44070 City Hotel 83
## 44071 City Hotel 92
## 44072 City Hotel 92
## 44073 City Hotel 92
## 44074 City Hotel 83
## 44075 City Hotel 92
## 44076 City Hotel 92
## 44077 City Hotel 69
## 44078 City Hotel 4
## 44079 City Hotel 83
## 44080 City Hotel 83
## 44081 City Hotel 92
## 44082 City Hotel 92
## 44083 City Hotel 92
## 44084 City Hotel 92
## 44085 City Hotel 83
## 44086 City Hotel 92
## 44087 City Hotel 92
## 44088 City Hotel 92
## 44089 City Hotel 30
## 44090 City Hotel 30
## 44091 City Hotel 27
## 44092 City Hotel 27
## 44093 City Hotel 30
## 44094 City Hotel 30
## 44095 City Hotel 27
## 44096 City Hotel 27
## 44097 City Hotel 30
## 44098 City Hotel 30
## 44099 City Hotel 27
## 44100 City Hotel 27
## 44101 City Hotel 30
## 44102 City Hotel 30
## 44103 City Hotel 30
## 44104 City Hotel 27
## 44105 City Hotel 27
## 44106 City Hotel 27
## 44107 City Hotel 27
## 44108 City Hotel 30
## 44109 City Hotel 27
## 44110 City Hotel 30
## 44111 City Hotel 27
## 44112 City Hotel 27
## 44113 City Hotel 21
## 44114 City Hotel 30
## 44115 City Hotel 27
## 44116 City Hotel 27
## 44117 City Hotel 28
## 44118 City Hotel 27
## 44119 City Hotel 27
## 44120 City Hotel 29
## 44121 City Hotel 30
## 44122 City Hotel 30
## 44123 City Hotel 30
## 44124 City Hotel 27
## 44125 City Hotel 27
## 44126 City Hotel 29
## 44127 City Hotel 30
## 44128 City Hotel 30
## 44129 City Hotel 27
## 44130 City Hotel 27
## 44131 City Hotel 30
## 44132 City Hotel 30
## 44133 City Hotel 85
## 44134 City Hotel 27
## 44135 City Hotel 30
## 44136 City Hotel 23
## 44137 City Hotel 85
## 44138 City Hotel 85
## 44139 City Hotel 85
## 44140 City Hotel 85
## 44141 City Hotel 85
## 44142 City Hotel 23
## 44143 City Hotel 152
## 44144 City Hotel 40
## 44145 City Hotel 51
## 44146 City Hotel 85
## 44147 City Hotel 41
## 44148 City Hotel 22
## 44149 City Hotel 33
## 44150 City Hotel 33
## 44151 City Hotel 33
## 44152 City Hotel 22
## 44153 City Hotel 48
## 44154 City Hotel 47
## 44155 City Hotel 47
## 44156 City Hotel 3
## 44157 City Hotel 38
## 44158 City Hotel 48
## 44159 City Hotel 64
## 44160 City Hotel 199
## 44161 City Hotel 65
## 44162 City Hotel 164
## 44163 City Hotel 24
## 44164 City Hotel 31
## 44165 City Hotel 164
## 44166 City Hotel 164
## 44167 City Hotel 164
## 44168 City Hotel 164
## 44169 City Hotel 164
## 44170 City Hotel 164
## 44171 City Hotel 164
## 44172 City Hotel 164
## 44173 City Hotel 164
## 44174 City Hotel 164
## 44175 City Hotel 164
## 44176 City Hotel 164
## 44177 City Hotel 164
## 44178 City Hotel 164
## 44179 City Hotel 164
## 44180 City Hotel 164
## 44181 City Hotel 164
## 44182 City Hotel 164
## 44183 City Hotel 164
## 44184 City Hotel 164
## 44185 City Hotel 164
## 44186 City Hotel 164
## 44187 City Hotel 65
## 44188 City Hotel 164
## 44189 City Hotel 164
## 44190 City Hotel 164
## 44191 City Hotel 164
## 44192 City Hotel 164
## 44193 City Hotel 164
## 44194 City Hotel 164
## 44195 City Hotel 164
## 44196 City Hotel 164
## 44197 City Hotel 164
## 44198 City Hotel 164
## 44199 City Hotel 164
## 44200 City Hotel 164
## 44201 City Hotel 164
## 44202 City Hotel 48
## 44203 City Hotel 164
## 44204 City Hotel 164
## 44205 City Hotel 164
## 44206 City Hotel 164
## 44207 City Hotel 164
## 44208 City Hotel 164
## 44209 City Hotel 164
## 44210 City Hotel 164
## 44211 City Hotel 164
## 44212 City Hotel 164
## 44213 City Hotel 164
## 44214 City Hotel 164
## 44215 City Hotel 164
## 44216 City Hotel 164
## 44217 City Hotel 164
## 44218 City Hotel 164
## 44219 City Hotel 65
## 44220 City Hotel 164
## 44221 City Hotel 164
## 44222 City Hotel 164
## 44223 City Hotel 164
## 44224 City Hotel 164
## 44225 City Hotel 164
## 44226 City Hotel 164
## 44227 City Hotel 164
## 44228 City Hotel 164
## 44229 City Hotel 164
## 44230 City Hotel 164
## 44231 City Hotel 164
## 44232 City Hotel 164
## 44233 City Hotel 164
## 44234 City Hotel 164
## 44235 City Hotel 164
## 44236 City Hotel 164
## 44237 City Hotel 164
## 44238 City Hotel 164
## 44239 City Hotel 164
## 44240 City Hotel 164
## 44241 City Hotel 164
## 44242 City Hotel 164
## 44243 City Hotel 164
## 44244 City Hotel 164
## 44245 City Hotel 164
## 44246 City Hotel 164
## 44247 City Hotel 164
## 44248 City Hotel 164
## 44249 City Hotel 164
## 44250 City Hotel 65
## 44251 City Hotel 65
## 44252 City Hotel 164
## 44253 City Hotel 65
## 44254 City Hotel 65
## 44255 City Hotel 164
## 44256 City Hotel 164
## 44257 City Hotel 164
## 44258 City Hotel 164
## 44259 City Hotel 164
## 44260 City Hotel 164
## 44261 City Hotel 164
## 44262 City Hotel 164
## 44263 City Hotel 164
## 44264 City Hotel 164
## 44265 City Hotel 164
## 44266 City Hotel 164
## 44267 City Hotel 164
## 44268 City Hotel 164
## 44269 City Hotel 164
## 44270 City Hotel 48
## 44271 City Hotel 48
## 44272 City Hotel 204
## 44273 City Hotel 200
## 44274 City Hotel 204
## 44275 City Hotel 125
## 44276 City Hotel 30
## 44277 City Hotel 91
## 44278 City Hotel 43
## 44279 City Hotel 198
## 44280 City Hotel 198
## 44281 City Hotel 198
## 44282 City Hotel 198
## 44283 City Hotel 198
## 44284 City Hotel 198
## 44285 City Hotel 198
## 44286 City Hotel 198
## 44287 City Hotel 198
## 44288 City Hotel 198
## 44289 City Hotel 198
## 44290 City Hotel 198
## 44291 City Hotel 86
## 44292 City Hotel 86
## 44293 City Hotel 86
## 44294 City Hotel 86
## 44295 City Hotel 86
## 44296 City Hotel 86
## 44297 City Hotel 86
## 44298 City Hotel 86
## 44299 City Hotel 54
## 44300 City Hotel 86
## 44301 City Hotel 86
## 44302 City Hotel 89
## 44303 City Hotel 89
## 44304 City Hotel 89
## 44305 City Hotel 89
## 44306 City Hotel 89
## 44307 City Hotel 89
## 44308 City Hotel 89
## 44309 City Hotel 89
## 44310 City Hotel 89
## 44311 City Hotel 89
## 44312 City Hotel 89
## 44313 City Hotel 89
## 44314 City Hotel 89
## 44315 City Hotel 89
## 44316 City Hotel 89
## 44317 City Hotel 89
## 44318 City Hotel 89
## 44319 City Hotel 89
## 44320 City Hotel 89
## 44321 City Hotel 89
## 44322 City Hotel 89
## 44323 City Hotel 89
## 44324 City Hotel 89
## 44325 City Hotel 89
## 44326 City Hotel 89
## 44327 City Hotel 89
## 44328 City Hotel 89
## 44329 City Hotel 89
## 44330 City Hotel 89
## 44331 City Hotel 89
## 44332 City Hotel 89
## 44333 City Hotel 54
## 44334 City Hotel 54
## 44335 City Hotel 31
## 44336 City Hotel 69
## 44337 City Hotel 61
## 44338 City Hotel 61
## 44339 City Hotel 61
## 44340 City Hotel 61
## 44341 City Hotel 61
## 44342 City Hotel 27
## 44343 City Hotel 61
## 44344 City Hotel 61
## 44345 City Hotel 61
## 44346 City Hotel 61
## 44347 City Hotel 61
## 44348 City Hotel 61
## 44349 City Hotel 61
## 44350 City Hotel 61
## 44351 City Hotel 61
## 44352 City Hotel 61
## 44353 City Hotel 61
## 44354 City Hotel 61
## 44355 City Hotel 29
## 44356 City Hotel 61
## 44357 City Hotel 61
## 44358 City Hotel 61
## 44359 City Hotel 61
## 44360 City Hotel 61
## 44361 City Hotel 61
## 44362 City Hotel 61
## 44363 City Hotel 61
## 44364 City Hotel 61
## 44365 City Hotel 27
## 44366 City Hotel 31
## 44367 City Hotel 25
## 44368 City Hotel 26
## 44369 City Hotel 25
## 44370 City Hotel 29
## 44371 City Hotel 34
## 44372 City Hotel 39
## 44373 City Hotel 26
## 44374 City Hotel 32
## 44375 City Hotel 54
## 44376 City Hotel 0
## 44377 City Hotel 28
## 44378 City Hotel 40
## 44379 City Hotel 40
## 44380 City Hotel 88
## 44381 City Hotel 88
## 44382 City Hotel 88
## 44383 City Hotel 88
## 44384 City Hotel 88
## 44385 City Hotel 40
## 44386 City Hotel 40
## 44387 City Hotel 88
## 44388 City Hotel 88
## 44389 City Hotel 40
## 44390 City Hotel 88
## 44391 City Hotel 28
## 44392 City Hotel 88
## 44393 City Hotel 88
## 44394 City Hotel 88
## 44395 City Hotel 28
## 44396 City Hotel 88
## 44397 City Hotel 33
## 44398 City Hotel 40
## 44399 City Hotel 88
## 44400 City Hotel 88
## 44401 City Hotel 88
## 44402 City Hotel 88
## 44403 City Hotel 40
## 44404 City Hotel 40
## 44405 City Hotel 88
## 44406 City Hotel 158
## 44407 City Hotel 88
## 44408 City Hotel 88
## 44409 City Hotel 40
## 44410 City Hotel 40
## 44411 City Hotel 31
## 44412 City Hotel 40
## 44413 City Hotel 97
## 44414 City Hotel 97
## 44415 City Hotel 97
## 44416 City Hotel 97
## 44417 City Hotel 97
## 44418 City Hotel 97
## 44419 City Hotel 97
## 44420 City Hotel 97
## 44421 City Hotel 97
## 44422 City Hotel 97
## 44423 City Hotel 97
## 44424 City Hotel 32
## 44425 City Hotel 97
## 44426 City Hotel 97
## 44427 City Hotel 97
## 44428 City Hotel 97
## 44429 City Hotel 97
## 44430 City Hotel 97
## 44431 City Hotel 97
## 44432 City Hotel 97
## 44433 City Hotel 97
## 44434 City Hotel 97
## 44435 City Hotel 97
## 44436 City Hotel 97
## 44437 City Hotel 97
## 44438 City Hotel 97
## 44439 City Hotel 97
## 44440 City Hotel 97
## 44441 City Hotel 97
## 44442 City Hotel 97
## 44443 City Hotel 97
## 44444 City Hotel 97
## 44445 City Hotel 97
## 44446 City Hotel 97
## 44447 City Hotel 97
## 44448 City Hotel 97
## 44449 City Hotel 97
## 44450 City Hotel 111
## 44451 City Hotel 97
## 44452 City Hotel 97
## 44453 City Hotel 97
## 44454 City Hotel 97
## 44455 City Hotel 97
## 44456 City Hotel 97
## 44457 City Hotel 97
## 44458 City Hotel 97
## 44459 City Hotel 97
## 44460 City Hotel 97
## 44461 City Hotel 97
## 44462 City Hotel 97
## 44463 City Hotel 97
## 44464 City Hotel 97
## 44465 City Hotel 97
## 44466 City Hotel 97
## 44467 City Hotel 97
## 44468 City Hotel 97
## 44469 City Hotel 97
## 44470 City Hotel 97
## 44471 City Hotel 97
## 44472 City Hotel 97
## 44473 City Hotel 32
## 44474 City Hotel 40
## 44475 City Hotel 97
## 44476 City Hotel 97
## 44477 City Hotel 97
## 44478 City Hotel 97
## 44479 City Hotel 32
## 44480 City Hotel 27
## 44481 City Hotel 30
## 44482 City Hotel 26
## 44483 City Hotel 42
## 44484 City Hotel 104
## 44485 City Hotel 104
## 44486 City Hotel 104
## 44487 City Hotel 104
## 44488 City Hotel 104
## 44489 City Hotel 104
## 44490 City Hotel 34
## 44491 City Hotel 41
## 44492 City Hotel 36
## 44493 City Hotel 32
## 44494 City Hotel 81
## 44495 City Hotel 38
## 44496 City Hotel 34
## 44497 City Hotel 41
## 44498 City Hotel 62
## 44499 City Hotel 33
## 44500 City Hotel 32
## 44501 City Hotel 33
## 44502 City Hotel 92
## 44503 City Hotel 60
## 44504 City Hotel 33
## 44505 City Hotel 35
## 44506 City Hotel 97
## 44507 City Hotel 97
## 44508 City Hotel 97
## 44509 City Hotel 97
## 44510 City Hotel 97
## 44511 City Hotel 97
## 44512 City Hotel 97
## 44513 City Hotel 97
## 44514 City Hotel 97
## 44515 City Hotel 97
## 44516 City Hotel 97
## 44517 City Hotel 97
## 44518 City Hotel 35
## 44519 City Hotel 97
## 44520 City Hotel 97
## 44521 City Hotel 97
## 44522 City Hotel 97
## 44523 City Hotel 97
## 44524 City Hotel 97
## 44525 City Hotel 97
## 44526 City Hotel 97
## 44527 City Hotel 97
## 44528 City Hotel 97
## 44529 City Hotel 97
## 44530 City Hotel 97
## 44531 City Hotel 97
## 44532 City Hotel 97
## 44533 City Hotel 97
## 44534 City Hotel 97
## 44535 City Hotel 97
## 44536 City Hotel 97
## 44537 City Hotel 97
## 44538 City Hotel 40
## 44539 City Hotel 30
## 44540 City Hotel 34
## 44541 City Hotel 92
## 44542 City Hotel 92
## 44543 City Hotel 92
## 44544 City Hotel 92
## 44545 City Hotel 135
## 44546 City Hotel 93
## 44547 City Hotel 92
## 44548 City Hotel 92
## 44549 City Hotel 92
## 44550 City Hotel 93
## 44551 City Hotel 92
## 44552 City Hotel 93
## 44553 City Hotel 74
## 44554 City Hotel 92
## 44555 City Hotel 92
## 44556 City Hotel 3
## 44557 City Hotel 92
## 44558 City Hotel 92
## 44559 City Hotel 92
## 44560 City Hotel 92
## 44561 City Hotel 93
## 44562 City Hotel 34
## 44563 City Hotel 34
## 44564 City Hotel 30
## 44565 City Hotel 34
## 44566 City Hotel 33
## 44567 City Hotel 28
## 44568 City Hotel 30
## 44569 City Hotel 34
## 44570 City Hotel 35
## 44571 City Hotel 65
## 44572 City Hotel 65
## 44573 City Hotel 210
## 44574 City Hotel 210
## 44575 City Hotel 210
## 44576 City Hotel 210
## 44577 City Hotel 210
## 44578 City Hotel 210
## 44579 City Hotel 210
## 44580 City Hotel 210
## 44581 City Hotel 210
## 44582 City Hotel 210
## 44583 City Hotel 210
## 44584 City Hotel 210
## 44585 City Hotel 71
## 44586 City Hotel 210
## 44587 City Hotel 210
## 44588 City Hotel 210
## 44589 City Hotel 210
## 44590 City Hotel 210
## 44591 City Hotel 210
## 44592 City Hotel 210
## 44593 City Hotel 210
## 44594 City Hotel 210
## 44595 City Hotel 210
## 44596 City Hotel 210
## 44597 City Hotel 210
## 44598 City Hotel 210
## 44599 City Hotel 210
## 44600 City Hotel 210
## 44601 City Hotel 210
## 44602 City Hotel 210
## 44603 City Hotel 210
## 44604 City Hotel 210
## 44605 City Hotel 210
## 44606 City Hotel 62
## 44607 City Hotel 210
## 44608 City Hotel 210
## 44609 City Hotel 210
## 44610 City Hotel 210
## 44611 City Hotel 210
## 44612 City Hotel 59
## 44613 City Hotel 35
## 44614 City Hotel 35
## 44615 City Hotel 62
## 44616 City Hotel 65
## 44617 City Hotel 65
## 44618 City Hotel 62
## 44619 City Hotel 62
## 44620 City Hotel 62
## 44621 City Hotel 62
## 44622 City Hotel 80
## 44623 City Hotel 80
## 44624 City Hotel 80
## 44625 City Hotel 80
## 44626 City Hotel 50
## 44627 City Hotel 50
## 44628 City Hotel 80
## 44629 City Hotel 80
## 44630 City Hotel 80
## 44631 City Hotel 50
## 44632 City Hotel 50
## 44633 City Hotel 80
## 44634 City Hotel 80
## 44635 City Hotel 80
## 44636 City Hotel 50
## 44637 City Hotel 50
## 44638 City Hotel 80
## 44639 City Hotel 80
## 44640 City Hotel 80
## 44641 City Hotel 50
## 44642 City Hotel 50
## 44643 City Hotel 48
## 44644 City Hotel 80
## 44645 City Hotel 58
## 44646 City Hotel 80
## 44647 City Hotel 80
## 44648 City Hotel 80
## 44649 City Hotel 80
## 44650 City Hotel 80
## 44651 City Hotel 80
## 44652 City Hotel 80
## 44653 City Hotel 50
## 44654 City Hotel 50
## 44655 City Hotel 50
## 44656 City Hotel 50
## 44657 City Hotel 80
## 44658 City Hotel 80
## 44659 City Hotel 80
## 44660 City Hotel 80
## 44661 City Hotel 60
## 44662 City Hotel 80
## 44663 City Hotel 80
## 44664 City Hotel 55
## 44665 City Hotel 50
## 44666 City Hotel 66
## 44667 City Hotel 66
## 44668 City Hotel 66
## 44669 City Hotel 66
## 44670 City Hotel 66
## 44671 City Hotel 66
## 44672 City Hotel 66
## 44673 City Hotel 76
## 44674 City Hotel 66
## 44675 City Hotel 66
## 44676 City Hotel 53
## 44677 City Hotel 156
## 44678 City Hotel 66
## 44679 City Hotel 66
## 44680 City Hotel 66
## 44681 City Hotel 66
## 44682 City Hotel 66
## 44683 City Hotel 66
## 44684 City Hotel 66
## 44685 City Hotel 66
## 44686 City Hotel 204
## 44687 City Hotel 204
## 44688 City Hotel 170
## 44689 City Hotel 204
## 44690 City Hotel 204
## 44691 City Hotel 204
## 44692 City Hotel 204
## 44693 City Hotel 66
## 44694 City Hotel 66
## 44695 City Hotel 66
## 44696 City Hotel 98
## 44697 City Hotel 66
## 44698 City Hotel 66
## 44699 City Hotel 66
## 44700 City Hotel 66
## 44701 City Hotel 66
## 44702 City Hotel 204
## 44703 City Hotel 204
## 44704 City Hotel 204
## 44705 City Hotel 204
## 44706 City Hotel 204
## 44707 City Hotel 204
## 44708 City Hotel 204
## 44709 City Hotel 204
## 44710 City Hotel 204
## 44711 City Hotel 56
## 44712 City Hotel 56
## 44713 City Hotel 56
## 44714 City Hotel 46
## 44715 City Hotel 79
## 44716 City Hotel 79
## 44717 City Hotel 79
## 44718 City Hotel 79
## 44719 City Hotel 79
## 44720 City Hotel 174
## 44721 City Hotel 174
## 44722 City Hotel 79
## 44723 City Hotel 79
## 44724 City Hotel 79
## 44725 City Hotel 174
## 44726 City Hotel 174
## 44727 City Hotel 174
## 44728 City Hotel 79
## 44729 City Hotel 79
## 44730 City Hotel 174
## 44731 City Hotel 174
## 44732 City Hotel 174
## 44733 City Hotel 174
## 44734 City Hotel 174
## 44735 City Hotel 174
## 44736 City Hotel 79
## 44737 City Hotel 79
## 44738 City Hotel 79
## 44739 City Hotel 79
## 44740 City Hotel 79
## 44741 City Hotel 79
## 44742 City Hotel 79
## 44743 City Hotel 174
## 44744 City Hotel 174
## 44745 City Hotel 174
## 44746 City Hotel 79
## 44747 City Hotel 79
## 44748 City Hotel 79
## 44749 City Hotel 79
## 44750 City Hotel 79
## 44751 City Hotel 79
## 44752 City Hotel 174
## 44753 City Hotel 63
## 44754 City Hotel 79
## 44755 City Hotel 79
## 44756 City Hotel 79
## 44757 City Hotel 174
## 44758 City Hotel 174
## 44759 City Hotel 174
## 44760 City Hotel 79
## 44761 City Hotel 79
## 44762 City Hotel 79
## 44763 City Hotel 174
## 44764 City Hotel 174
## 44765 City Hotel 174
## 44766 City Hotel 79
## 44767 City Hotel 79
## 44768 City Hotel 174
## 44769 City Hotel 174
## 44770 City Hotel 99
## 44771 City Hotel 57
## 44772 City Hotel 99
## 44773 City Hotel 57
## 44774 City Hotel 99
## 44775 City Hotel 57
## 44776 City Hotel 58
## 44777 City Hotel 63
## 44778 City Hotel 51
## 44779 City Hotel 41
## 44780 City Hotel 34
## 44781 City Hotel 0
## 44782 City Hotel 34
## 44783 City Hotel 68
## 44784 City Hotel 68
## 44785 City Hotel 73
## 44786 City Hotel 73
## 44787 City Hotel 34
## 44788 City Hotel 0
## 44789 City Hotel 34
## 44790 City Hotel 60
## 44791 City Hotel 60
## 44792 City Hotel 60
## 44793 City Hotel 60
## 44794 City Hotel 60
## 44795 City Hotel 60
## 44796 City Hotel 60
## 44797 City Hotel 60
## 44798 City Hotel 105
## 44799 City Hotel 105
## 44800 City Hotel 34
## 44801 City Hotel 44
## 44802 City Hotel 105
## 44803 City Hotel 105
## 44804 City Hotel 105
## 44805 City Hotel 105
## 44806 City Hotel 105
## 44807 City Hotel 39
## 44808 City Hotel 105
## 44809 City Hotel 105
## 44810 City Hotel 2
## 44811 City Hotel 34
## 44812 City Hotel 105
## 44813 City Hotel 105
## 44814 City Hotel 105
## 44815 City Hotel 34
## 44816 City Hotel 105
## 44817 City Hotel 105
## 44818 City Hotel 105
## 44819 City Hotel 105
## 44820 City Hotel 105
## 44821 City Hotel 105
## 44822 City Hotel 39
## 44823 City Hotel 51
## 44824 City Hotel 60
## 44825 City Hotel 166
## 44826 City Hotel 60
## 44827 City Hotel 60
## 44828 City Hotel 60
## 44829 City Hotel 60
## 44830 City Hotel 184
## 44831 City Hotel 60
## 44832 City Hotel 166
## 44833 City Hotel 60
## 44834 City Hotel 60
## 44835 City Hotel 60
## 44836 City Hotel 60
## 44837 City Hotel 53
## 44838 City Hotel 60
## 44839 City Hotel 60
## 44840 City Hotel 43
## 44841 City Hotel 43
## 44842 City Hotel 38
## 44843 City Hotel 43
## 44844 City Hotel 43
## 44845 City Hotel 43
## 44846 City Hotel 43
## 44847 City Hotel 43
## 44848 City Hotel 43
## 44849 City Hotel 43
## 44850 City Hotel 34
## 44851 City Hotel 36
## 44852 City Hotel 76
## 44853 City Hotel 36
## 44854 City Hotel 36
## 44855 City Hotel 36
## 44856 City Hotel 36
## 44857 City Hotel 36
## 44858 City Hotel 36
## 44859 City Hotel 36
## 44860 City Hotel 36
## 44861 City Hotel 36
## 44862 City Hotel 36
## 44863 City Hotel 34
## 44864 City Hotel 36
## 44865 City Hotel 36
## 44866 City Hotel 36
## 44867 City Hotel 42
## 44868 City Hotel 36
## 44869 City Hotel 36
## 44870 City Hotel 36
## 44871 City Hotel 36
## 44872 City Hotel 36
## 44873 City Hotel 36
## 44874 City Hotel 36
## 44875 City Hotel 36
## 44876 City Hotel 36
## 44877 City Hotel 36
## 44878 City Hotel 43
## 44879 City Hotel 61
## 44880 City Hotel 47
## 44881 City Hotel 40
## 44882 City Hotel 63
## 44883 City Hotel 41
## 44884 City Hotel 41
## 44885 City Hotel 65
## 44886 City Hotel 77
## 44887 City Hotel 48
## 44888 City Hotel 0
## 44889 City Hotel 63
## 44890 City Hotel 59
## 44891 City Hotel 44
## 44892 City Hotel 193
## 44893 City Hotel 193
## 44894 City Hotel 193
## 44895 City Hotel 193
## 44896 City Hotel 193
## 44897 City Hotel 193
## 44898 City Hotel 193
## 44899 City Hotel 193
## 44900 City Hotel 193
## 44901 City Hotel 56
## 44902 City Hotel 193
## 44903 City Hotel 193
## 44904 City Hotel 193
## 44905 City Hotel 193
## 44906 City Hotel 193
## 44907 City Hotel 43
## 44908 City Hotel 100
## 44909 City Hotel 59
## 44910 City Hotel 59
## 44911 City Hotel 125
## 44912 City Hotel 173
## 44913 City Hotel 59
## 44914 City Hotel 100
## 44915 City Hotel 100
## 44916 City Hotel 180
## 44917 City Hotel 100
## 44918 City Hotel 100
## 44919 City Hotel 100
## 44920 City Hotel 180
## 44921 City Hotel 180
## 44922 City Hotel 180
## 44923 City Hotel 180
## 44924 City Hotel 180
## 44925 City Hotel 100
## 44926 City Hotel 100
## 44927 City Hotel 65
## 44928 City Hotel 180
## 44929 City Hotel 100
## 44930 City Hotel 100
## 44931 City Hotel 100
## 44932 City Hotel 100
## 44933 City Hotel 180
## 44934 City Hotel 180
## 44935 City Hotel 100
## 44936 City Hotel 100
## 44937 City Hotel 180
## 44938 City Hotel 180
## 44939 City Hotel 180
## 44940 City Hotel 100
## 44941 City Hotel 180
## 44942 City Hotel 180
## 44943 City Hotel 180
## 44944 City Hotel 180
## 44945 City Hotel 100
## 44946 City Hotel 180
## 44947 City Hotel 180
## 44948 City Hotel 100
## 44949 City Hotel 100
## 44950 City Hotel 180
## 44951 City Hotel 102
## 44952 City Hotel 180
## 44953 City Hotel 180
## 44954 City Hotel 100
## 44955 City Hotel 100
## 44956 City Hotel 180
## 44957 City Hotel 102
## 44958 City Hotel 102
## 44959 City Hotel 102
## 44960 City Hotel 102
## 44961 City Hotel 102
## 44962 City Hotel 102
## 44963 City Hotel 102
## 44964 City Hotel 102
## 44965 City Hotel 102
## 44966 City Hotel 180
## 44967 City Hotel 100
## 44968 City Hotel 102
## 44969 City Hotel 102
## 44970 City Hotel 102
## 44971 City Hotel 102
## 44972 City Hotel 102
## 44973 City Hotel 102
## 44974 City Hotel 102
## 44975 City Hotel 102
## 44976 City Hotel 102
## 44977 City Hotel 102
## 44978 City Hotel 102
## 44979 City Hotel 102
## 44980 City Hotel 102
## 44981 City Hotel 102
## 44982 City Hotel 102
## 44983 City Hotel 102
## 44984 City Hotel 102
## 44985 City Hotel 102
## 44986 City Hotel 102
## 44987 City Hotel 102
## 44988 City Hotel 102
## 44989 City Hotel 102
## 44990 City Hotel 102
## 44991 City Hotel 102
## 44992 City Hotel 102
## 44993 City Hotel 102
## 44994 City Hotel 102
## 44995 City Hotel 102
## 44996 City Hotel 102
## 44997 City Hotel 102
## 44998 City Hotel 102
## 44999 City Hotel 102
## 45000 City Hotel 102
## 45001 City Hotel 102
## 45002 City Hotel 102
## 45003 City Hotel 102
## 45004 City Hotel 102
## 45005 City Hotel 102
## 45006 City Hotel 102
## 45007 City Hotel 102
## 45008 City Hotel 102
## 45009 City Hotel 102
## 45010 City Hotel 102
## 45011 City Hotel 102
## 45012 City Hotel 102
## 45013 City Hotel 102
## 45014 City Hotel 102
## 45015 City Hotel 102
## 45016 City Hotel 102
## 45017 City Hotel 102
## 45018 City Hotel 102
## 45019 City Hotel 102
## 45020 City Hotel 102
## 45021 City Hotel 102
## 45022 City Hotel 102
## 45023 City Hotel 102
## 45024 City Hotel 102
## 45025 City Hotel 102
## 45026 City Hotel 102
## 45027 City Hotel 102
## 45028 City Hotel 102
## 45029 City Hotel 102
## 45030 City Hotel 102
## 45031 City Hotel 102
## 45032 City Hotel 102
## 45033 City Hotel 102
## 45034 City Hotel 102
## 45035 City Hotel 102
## 45036 City Hotel 102
## 45037 City Hotel 102
## 45038 City Hotel 102
## 45039 City Hotel 102
## 45040 City Hotel 102
## 45041 City Hotel 102
## 45042 City Hotel 102
## 45043 City Hotel 102
## 45044 City Hotel 102
## 45045 City Hotel 102
## 45046 City Hotel 102
## 45047 City Hotel 102
## 45048 City Hotel 102
## 45049 City Hotel 102
## 45050 City Hotel 102
## 45051 City Hotel 102
## 45052 City Hotel 102
## 45053 City Hotel 39
## 45054 City Hotel 102
## 45055 City Hotel 102
## 45056 City Hotel 102
## 45057 City Hotel 102
## 45058 City Hotel 102
## 45059 City Hotel 102
## 45060 City Hotel 102
## 45061 City Hotel 102
## 45062 City Hotel 102
## 45063 City Hotel 102
## 45064 City Hotel 102
## 45065 City Hotel 102
## 45066 City Hotel 102
## 45067 City Hotel 102
## 45068 City Hotel 102
## 45069 City Hotel 102
## 45070 City Hotel 62
## 45071 City Hotel 102
## 45072 City Hotel 102
## 45073 City Hotel 102
## 45074 City Hotel 102
## 45075 City Hotel 102
## 45076 City Hotel 102
## 45077 City Hotel 102
## 45078 City Hotel 102
## 45079 City Hotel 102
## 45080 City Hotel 102
## 45081 City Hotel 102
## 45082 City Hotel 102
## 45083 City Hotel 102
## 45084 City Hotel 102
## 45085 City Hotel 102
## 45086 City Hotel 102
## 45087 City Hotel 102
## 45088 City Hotel 102
## 45089 City Hotel 102
## 45090 City Hotel 102
## 45091 City Hotel 102
## 45092 City Hotel 102
## 45093 City Hotel 102
## 45094 City Hotel 102
## 45095 City Hotel 102
## 45096 City Hotel 102
## 45097 City Hotel 102
## 45098 City Hotel 102
## 45099 City Hotel 102
## 45100 City Hotel 102
## 45101 City Hotel 102
## 45102 City Hotel 102
## 45103 City Hotel 102
## 45104 City Hotel 102
## 45105 City Hotel 102
## 45106 City Hotel 102
## 45107 City Hotel 102
## 45108 City Hotel 41
## 45109 City Hotel 41
## 45110 City Hotel 84
## 45111 City Hotel 84
## 45112 City Hotel 41
## 45113 City Hotel 41
## 45114 City Hotel 41
## 45115 City Hotel 147
## 45116 City Hotel 84
## 45117 City Hotel 41
## 45118 City Hotel 118
## 45119 City Hotel 41
## 45120 City Hotel 84
## 45121 City Hotel 84
## 45122 City Hotel 45
## 45123 City Hotel 60
## 45124 City Hotel 45
## 45125 City Hotel 43
## 45126 City Hotel 47
## 45127 City Hotel 74
## 45128 City Hotel 195
## 45129 City Hotel 38
## 45130 City Hotel 68
## 45131 City Hotel 184
## 45132 City Hotel 184
## 45133 City Hotel 43
## 45134 City Hotel 39
## 45135 City Hotel 204
## 45136 City Hotel 50
## 45137 City Hotel 50
## 45138 City Hotel 41
## 45139 City Hotel 41
## 45140 City Hotel 48
## 45141 City Hotel 42
## 45142 City Hotel 216
## 45143 City Hotel 216
## 45144 City Hotel 91
## 45145 City Hotel 41
## 45146 City Hotel 40
## 45147 City Hotel 65
## 45148 City Hotel 216
## 45149 City Hotel 216
## 45150 City Hotel 97
## 45151 City Hotel 41
## 45152 City Hotel 97
## 45153 City Hotel 48
## 45154 City Hotel 47
## 45155 City Hotel 40
## 45156 City Hotel 48
## 45157 City Hotel 66
## 45158 City Hotel 47
## 45159 City Hotel 48
## 45160 City Hotel 66
## 45161 City Hotel 61
## 45162 City Hotel 61
## 45163 City Hotel 63
## 45164 City Hotel 62
## 45165 City Hotel 40
## 45166 City Hotel 45
## 45167 City Hotel 45
## 45168 City Hotel 47
## 45169 City Hotel 47
## 45170 City Hotel 75
## 45171 City Hotel 64
## 45172 City Hotel 125
## 45173 City Hotel 75
## 45174 City Hotel 67
## 45175 City Hotel 50
## 45176 City Hotel 56
## 45177 City Hotel 56
## 45178 City Hotel 56
## 45179 City Hotel 51
## 45180 City Hotel 56
## 45181 City Hotel 46
## 45182 City Hotel 72
## 45183 City Hotel 43
## 45184 City Hotel 70
## 45185 City Hotel 47
## 45186 City Hotel 57
## 45187 City Hotel 70
## 45188 City Hotel 45
## 45189 City Hotel 65
## 45190 City Hotel 45
## 45191 City Hotel 45
## 45192 City Hotel 73
## 45193 City Hotel 70
## 45194 City Hotel 76
## 45195 City Hotel 45
## 45196 City Hotel 48
## 45197 City Hotel 52
## 45198 City Hotel 45
## 45199 City Hotel 52
## 45200 City Hotel 52
## 45201 City Hotel 85
## 45202 City Hotel 48
## 45203 City Hotel 49
## 45204 City Hotel 50
## 45205 City Hotel 50
## 45206 City Hotel 50
## 45207 City Hotel 50
## 45208 City Hotel 50
## 45209 City Hotel 50
## 45210 City Hotel 50
## 45211 City Hotel 50
## 45212 City Hotel 50
## 45213 City Hotel 50
## 45214 City Hotel 50
## 45215 City Hotel 50
## 45216 City Hotel 50
## 45217 City Hotel 50
## 45218 City Hotel 61
## 45219 City Hotel 50
## 45220 City Hotel 50
## 45221 City Hotel 50
## 45222 City Hotel 50
## 45223 City Hotel 50
## 45224 City Hotel 50
## 45225 City Hotel 50
## 45226 City Hotel 50
## 45227 City Hotel 50
## 45228 City Hotel 50
## 45229 City Hotel 50
## 45230 City Hotel 50
## 45231 City Hotel 50
## 45232 City Hotel 50
## 45233 City Hotel 50
## 45234 City Hotel 61
## 45235 City Hotel 50
## 45236 City Hotel 50
## 45237 City Hotel 50
## 45238 City Hotel 50
## 45239 City Hotel 50
## 45240 City Hotel 50
## 45241 City Hotel 50
## 45242 City Hotel 50
## 45243 City Hotel 50
## 45244 City Hotel 50
## 45245 City Hotel 50
## 45246 City Hotel 50
## 45247 City Hotel 50
## 45248 City Hotel 50
## 45249 City Hotel 50
## 45250 City Hotel 50
## 45251 City Hotel 71
## 45252 City Hotel 45
## 45253 City Hotel 45
## 45254 City Hotel 81
## 45255 City Hotel 69
## 45256 City Hotel 69
## 45257 City Hotel 69
## 45258 City Hotel 69
## 45259 City Hotel 69
## 45260 City Hotel 69
## 45261 City Hotel 69
## 45262 City Hotel 69
## 45263 City Hotel 69
## 45264 City Hotel 69
## 45265 City Hotel 69
## 45266 City Hotel 69
## 45267 City Hotel 69
## 45268 City Hotel 69
## 45269 City Hotel 69
## 45270 City Hotel 69
## 45271 City Hotel 69
## 45272 City Hotel 69
## 45273 City Hotel 69
## 45274 City Hotel 48
## 45275 City Hotel 69
## 45276 City Hotel 69
## 45277 City Hotel 69
## 45278 City Hotel 69
## 45279 City Hotel 69
## 45280 City Hotel 69
## 45281 City Hotel 69
## 45282 City Hotel 69
## 45283 City Hotel 69
## 45284 City Hotel 69
## 45285 City Hotel 69
## 45286 City Hotel 69
## 45287 City Hotel 69
## 45288 City Hotel 69
## 45289 City Hotel 69
## 45290 City Hotel 69
## 45291 City Hotel 69
## 45292 City Hotel 69
## 45293 City Hotel 69
## 45294 City Hotel 69
## 45295 City Hotel 69
## 45296 City Hotel 69
## 45297 City Hotel 69
## 45298 City Hotel 69
## 45299 City Hotel 69
## 45300 City Hotel 69
## 45301 City Hotel 69
## 45302 City Hotel 69
## 45303 City Hotel 69
## 45304 City Hotel 69
## 45305 City Hotel 69
## 45306 City Hotel 69
## 45307 City Hotel 69
## 45308 City Hotel 69
## 45309 City Hotel 69
## 45310 City Hotel 69
## 45311 City Hotel 69
## 45312 City Hotel 69
## 45313 City Hotel 69
## 45314 City Hotel 69
## 45315 City Hotel 69
## 45316 City Hotel 69
## 45317 City Hotel 69
## 45318 City Hotel 69
## 45319 City Hotel 69
## 45320 City Hotel 69
## 45321 City Hotel 69
## 45322 City Hotel 69
## 45323 City Hotel 69
## 45324 City Hotel 69
## 45325 City Hotel 69
## 45326 City Hotel 69
## 45327 City Hotel 69
## 45328 City Hotel 69
## 45329 City Hotel 69
## 45330 City Hotel 69
## 45331 City Hotel 69
## 45332 City Hotel 60
## 45333 City Hotel 81
## 45334 City Hotel 48
## 45335 City Hotel 132
## 45336 City Hotel 48
## 45337 City Hotel 60
## 45338 City Hotel 47
## 45339 City Hotel 90
## 45340 City Hotel 60
## 45341 City Hotel 47
## 45342 City Hotel 122
## 45343 City Hotel 81
## 45344 City Hotel 132
## 45345 City Hotel 48
## 45346 City Hotel 61
## 45347 City Hotel 61
## 45348 City Hotel 61
## 45349 City Hotel 35
## 45350 City Hotel 61
## 45351 City Hotel 61
## 45352 City Hotel 35
## 45353 City Hotel 61
## 45354 City Hotel 35
## 45355 City Hotel 61
## 45356 City Hotel 61
## 45357 City Hotel 35
## 45358 City Hotel 35
## 45359 City Hotel 53
## 45360 City Hotel 73
## 45361 City Hotel 116
## 45362 City Hotel 61
## 45363 City Hotel 63
## 45364 City Hotel 63
## 45365 City Hotel 41
## 45366 City Hotel 41
## 45367 City Hotel 57
## 45368 City Hotel 74
## 45369 City Hotel 65
## 45370 City Hotel 61
## 45371 City Hotel 72
## 45372 City Hotel 72
## 45373 City Hotel 72
## 45374 City Hotel 72
## 45375 City Hotel 72
## 45376 City Hotel 72
## 45377 City Hotel 72
## 45378 City Hotel 72
## 45379 City Hotel 72
## 45380 City Hotel 72
## 45381 City Hotel 72
## 45382 City Hotel 72
## 45383 City Hotel 72
## 45384 City Hotel 72
## 45385 City Hotel 72
## 45386 City Hotel 72
## 45387 City Hotel 72
## 45388 City Hotel 72
## 45389 City Hotel 72
## 45390 City Hotel 72
## 45391 City Hotel 72
## 45392 City Hotel 72
## 45393 City Hotel 72
## 45394 City Hotel 72
## 45395 City Hotel 72
## 45396 City Hotel 72
## 45397 City Hotel 72
## 45398 City Hotel 57
## 45399 City Hotel 72
## 45400 City Hotel 72
## 45401 City Hotel 72
## 45402 City Hotel 72
## 45403 City Hotel 72
## 45404 City Hotel 72
## 45405 City Hotel 72
## 45406 City Hotel 72
## 45407 City Hotel 72
## 45408 City Hotel 72
## 45409 City Hotel 72
## 45410 City Hotel 72
## 45411 City Hotel 72
## 45412 City Hotel 72
## 45413 City Hotel 72
## 45414 City Hotel 72
## 45415 City Hotel 72
## 45416 City Hotel 72
## 45417 City Hotel 72
## 45418 City Hotel 72
## 45419 City Hotel 72
## 45420 City Hotel 72
## 45421 City Hotel 72
## 45422 City Hotel 72
## 45423 City Hotel 72
## 45424 City Hotel 72
## 45425 City Hotel 72
## 45426 City Hotel 72
## 45427 City Hotel 72
## 45428 City Hotel 72
## 45429 City Hotel 72
## 45430 City Hotel 72
## 45431 City Hotel 72
## 45432 City Hotel 72
## 45433 City Hotel 72
## 45434 City Hotel 72
## 45435 City Hotel 72
## 45436 City Hotel 72
## 45437 City Hotel 72
## 45438 City Hotel 72
## 45439 City Hotel 72
## 45440 City Hotel 72
## 45441 City Hotel 72
## 45442 City Hotel 72
## 45443 City Hotel 72
## 45444 City Hotel 72
## 45445 City Hotel 72
## 45446 City Hotel 72
## 45447 City Hotel 51
## 45448 City Hotel 55
## 45449 City Hotel 62
## 45450 City Hotel 59
## 45451 City Hotel 59
## 45452 City Hotel 59
## 45453 City Hotel 59
## 45454 City Hotel 59
## 45455 City Hotel 59
## 45456 City Hotel 59
## 45457 City Hotel 59
## 45458 City Hotel 59
## 45459 City Hotel 59
## 45460 City Hotel 59
## 45461 City Hotel 59
## 45462 City Hotel 65
## 45463 City Hotel 152
## 45464 City Hotel 58
## 45465 City Hotel 58
## 45466 City Hotel 64
## 45467 City Hotel 58
## 45468 City Hotel 64
## 45469 City Hotel 99
## 45470 City Hotel 99
## 45471 City Hotel 99
## 45472 City Hotel 99
## 45473 City Hotel 99
## 45474 City Hotel 99
## 45475 City Hotel 99
## 45476 City Hotel 99
## 45477 City Hotel 99
## 45478 City Hotel 99
## 45479 City Hotel 99
## 45480 City Hotel 99
## 45481 City Hotel 99
## 45482 City Hotel 99
## 45483 City Hotel 99
## 45484 City Hotel 99
## 45485 City Hotel 99
## 45486 City Hotel 99
## 45487 City Hotel 99
## 45488 City Hotel 99
## 45489 City Hotel 99
## 45490 City Hotel 99
## 45491 City Hotel 99
## 45492 City Hotel 99
## 45493 City Hotel 99
## 45494 City Hotel 54
## 45495 City Hotel 100
## 45496 City Hotel 100
## 45497 City Hotel 100
## 45498 City Hotel 100
## 45499 City Hotel 100
## 45500 City Hotel 100
## 45501 City Hotel 100
## 45502 City Hotel 100
## 45503 City Hotel 100
## 45504 City Hotel 100
## 45505 City Hotel 100
## 45506 City Hotel 100
## 45507 City Hotel 100
## 45508 City Hotel 100
## 45509 City Hotel 100
## 45510 City Hotel 100
## 45511 City Hotel 100
## 45512 City Hotel 100
## 45513 City Hotel 100
## 45514 City Hotel 100
## 45515 City Hotel 100
## 45516 City Hotel 100
## 45517 City Hotel 100
## 45518 City Hotel 100
## 45519 City Hotel 100
## 45520 City Hotel 100
## 45521 City Hotel 100
## 45522 City Hotel 100
## 45523 City Hotel 100
## 45524 City Hotel 100
## 45525 City Hotel 100
## 45526 City Hotel 75
## 45527 City Hotel 88
## 45528 City Hotel 78
## 45529 City Hotel 67
## 45530 City Hotel 67
## 45531 City Hotel 76
## 45532 City Hotel 62
## 45533 City Hotel 80
## 45534 City Hotel 80
## 45535 City Hotel 80
## 45536 City Hotel 80
## 45537 City Hotel 80
## 45538 City Hotel 80
## 45539 City Hotel 80
## 45540 City Hotel 80
## 45541 City Hotel 80
## 45542 City Hotel 80
## 45543 City Hotel 82
## 45544 City Hotel 156
## 45545 City Hotel 82
## 45546 City Hotel 80
## 45547 City Hotel 123
## 45548 City Hotel 123
## 45549 City Hotel 123
## 45550 City Hotel 123
## 45551 City Hotel 56
## 45552 City Hotel 123
## 45553 City Hotel 123
## 45554 City Hotel 123
## 45555 City Hotel 123
## 45556 City Hotel 56
## 45557 City Hotel 123
## 45558 City Hotel 123
## 45559 City Hotel 123
## 45560 City Hotel 123
## 45561 City Hotel 123
## 45562 City Hotel 123
## 45563 City Hotel 123
## 45564 City Hotel 123
## 45565 City Hotel 123
## 45566 City Hotel 86
## 45567 City Hotel 85
## 45568 City Hotel 233
## 45569 City Hotel 233
## 45570 City Hotel 85
## 45571 City Hotel 85
## 45572 City Hotel 233
## 45573 City Hotel 85
## 45574 City Hotel 233
## 45575 City Hotel 85
## 45576 City Hotel 85
## 45577 City Hotel 233
## 45578 City Hotel 233
## 45579 City Hotel 233
## 45580 City Hotel 233
## 45581 City Hotel 233
## 45582 City Hotel 233
## 45583 City Hotel 85
## 45584 City Hotel 233
## 45585 City Hotel 85
## 45586 City Hotel 85
## 45587 City Hotel 233
## 45588 City Hotel 85
## 45589 City Hotel 76
## 45590 City Hotel 63
## 45591 City Hotel 55
## 45592 City Hotel 67
## 45593 City Hotel 63
## 45594 City Hotel 92
## 45595 City Hotel 92
## 45596 City Hotel 77
## 45597 City Hotel 66
## 45598 City Hotel 67
## 45599 City Hotel 67
## 45600 City Hotel 79
## 45601 City Hotel 79
## 45602 City Hotel 79
## 45603 City Hotel 79
## 45604 City Hotel 79
## 45605 City Hotel 79
## 45606 City Hotel 72
## 45607 City Hotel 79
## 45608 City Hotel 79
## 45609 City Hotel 79
## 45610 City Hotel 79
## 45611 City Hotel 79
## 45612 City Hotel 79
## 45613 City Hotel 79
## 45614 City Hotel 79
## 45615 City Hotel 79
## 45616 City Hotel 79
## 45617 City Hotel 79
## 45618 City Hotel 79
## 45619 City Hotel 79
## 45620 City Hotel 0
## 45621 City Hotel 80
## 45622 City Hotel 212
## 45623 City Hotel 69
## 45624 City Hotel 75
## 45625 City Hotel 75
## 45626 City Hotel 77
## 45627 City Hotel 94
## 45628 City Hotel 89
## 45629 City Hotel 89
## 45630 City Hotel 74
## 45631 City Hotel 89
## 45632 City Hotel 139
## 45633 City Hotel 139
## 45634 City Hotel 139
## 45635 City Hotel 140
## 45636 City Hotel 140
## 45637 City Hotel 140
## 45638 City Hotel 140
## 45639 City Hotel 140
## 45640 City Hotel 140
## 45641 City Hotel 140
## 45642 City Hotel 140
## 45643 City Hotel 140
## 45644 City Hotel 140
## 45645 City Hotel 140
## 45646 City Hotel 140
## 45647 City Hotel 140
## 45648 City Hotel 140
## 45649 City Hotel 140
## 45650 City Hotel 140
## 45651 City Hotel 140
## 45652 City Hotel 140
## 45653 City Hotel 140
## 45654 City Hotel 140
## 45655 City Hotel 140
## 45656 City Hotel 140
## 45657 City Hotel 140
## 45658 City Hotel 140
## 45659 City Hotel 140
## 45660 City Hotel 140
## 45661 City Hotel 140
## 45662 City Hotel 140
## 45663 City Hotel 140
## 45664 City Hotel 140
## 45665 City Hotel 140
## 45666 City Hotel 140
## 45667 City Hotel 140
## 45668 City Hotel 140
## 45669 City Hotel 140
## 45670 City Hotel 140
## 45671 City Hotel 140
## 45672 City Hotel 140
## 45673 City Hotel 140
## 45674 City Hotel 140
## 45675 City Hotel 140
## 45676 City Hotel 140
## 45677 City Hotel 140
## 45678 City Hotel 140
## 45679 City Hotel 140
## 45680 City Hotel 140
## 45681 City Hotel 140
## 45682 City Hotel 140
## 45683 City Hotel 140
## 45684 City Hotel 140
## 45685 City Hotel 140
## 45686 City Hotel 140
## 45687 City Hotel 140
## 45688 City Hotel 140
## 45689 City Hotel 140
## 45690 City Hotel 140
## 45691 City Hotel 140
## 45692 City Hotel 140
## 45693 City Hotel 140
## 45694 City Hotel 140
## 45695 City Hotel 140
## 45696 City Hotel 140
## 45697 City Hotel 140
## 45698 City Hotel 79
## 45699 City Hotel 140
## 45700 City Hotel 140
## 45701 City Hotel 140
## 45702 City Hotel 140
## 45703 City Hotel 140
## 45704 City Hotel 140
## 45705 City Hotel 140
## 45706 City Hotel 140
## 45707 City Hotel 140
## 45708 City Hotel 140
## 45709 City Hotel 140
## 45710 City Hotel 140
## 45711 City Hotel 79
## 45712 City Hotel 140
## 45713 City Hotel 140
## 45714 City Hotel 72
## 45715 City Hotel 76
## 45716 City Hotel 76
## 45717 City Hotel 80
## 45718 City Hotel 90
## 45719 City Hotel 80
## 45720 City Hotel 87
## 45721 City Hotel 86
## 45722 City Hotel 95
## 45723 City Hotel 82
## 45724 City Hotel 96
## 45725 City Hotel 96
## 45726 City Hotel 96
## 45727 City Hotel 96
## 45728 City Hotel 96
## 45729 City Hotel 242
## 45730 City Hotel 98
## 45731 City Hotel 98
## 45732 City Hotel 98
## 45733 City Hotel 98
## 45734 City Hotel 98
## 45735 City Hotel 98
## 45736 City Hotel 98
## 45737 City Hotel 98
## 45738 City Hotel 98
## 45739 City Hotel 89
## 45740 City Hotel 98
## 45741 City Hotel 98
## 45742 City Hotel 98
## 45743 City Hotel 98
## 45744 City Hotel 98
## 45745 City Hotel 98
## 45746 City Hotel 98
## 45747 City Hotel 94
## 45748 City Hotel 98
## 45749 City Hotel 98
## 45750 City Hotel 98
## 45751 City Hotel 98
## 45752 City Hotel 98
## 45753 City Hotel 89
## 45754 City Hotel 89
## 45755 City Hotel 98
## 45756 City Hotel 98
## 45757 City Hotel 98
## 45758 City Hotel 98
## 45759 City Hotel 98
## 45760 City Hotel 98
## 45761 City Hotel 98
## 45762 City Hotel 98
## 45763 City Hotel 98
## 45764 City Hotel 98
## 45765 City Hotel 98
## 45766 City Hotel 94
## 45767 City Hotel 89
## 45768 City Hotel 98
## 45769 City Hotel 98
## 45770 City Hotel 98
## 45771 City Hotel 98
## 45772 City Hotel 98
## 45773 City Hotel 98
## 45774 City Hotel 98
## 45775 City Hotel 98
## 45776 City Hotel 98
## 45777 City Hotel 98
## 45778 City Hotel 98
## 45779 City Hotel 98
## 45780 City Hotel 98
## 45781 City Hotel 98
## 45782 City Hotel 98
## 45783 City Hotel 98
## 45784 City Hotel 98
## 45785 City Hotel 98
## 45786 City Hotel 98
## 45787 City Hotel 98
## 45788 City Hotel 98
## 45789 City Hotel 98
## 45790 City Hotel 98
## 45791 City Hotel 98
## 45792 City Hotel 94
## 45793 City Hotel 89
## 45794 City Hotel 98
## 45795 City Hotel 98
## 45796 City Hotel 98
## 45797 City Hotel 98
## 45798 City Hotel 98
## 45799 City Hotel 98
## 45800 City Hotel 98
## 45801 City Hotel 98
## 45802 City Hotel 89
## 45803 City Hotel 98
## 45804 City Hotel 98
## 45805 City Hotel 98
## 45806 City Hotel 98
## 45807 City Hotel 98
## 45808 City Hotel 98
## 45809 City Hotel 98
## 45810 City Hotel 98
## 45811 City Hotel 98
## 45812 City Hotel 98
## 45813 City Hotel 98
## 45814 City Hotel 98
## 45815 City Hotel 98
## 45816 City Hotel 89
## 45817 City Hotel 98
## 45818 City Hotel 98
## 45819 City Hotel 89
## 45820 City Hotel 98
## 45821 City Hotel 98
## 45822 City Hotel 98
## 45823 City Hotel 98
## 45824 City Hotel 98
## 45825 City Hotel 98
## 45826 City Hotel 98
## 45827 City Hotel 98
## 45828 City Hotel 98
## 45829 City Hotel 98
## 45830 City Hotel 98
## 45831 City Hotel 98
## 45832 City Hotel 98
## 45833 City Hotel 98
## 45834 City Hotel 98
## 45835 City Hotel 98
## 45836 City Hotel 98
## 45837 City Hotel 98
## 45838 City Hotel 98
## 45839 City Hotel 98
## 45840 City Hotel 98
## 45841 City Hotel 98
## 45842 City Hotel 98
## 45843 City Hotel 98
## 45844 City Hotel 98
## 45845 City Hotel 98
## 45846 City Hotel 98
## 45847 City Hotel 98
## 45848 City Hotel 98
## 45849 City Hotel 98
## 45850 City Hotel 98
## 45851 City Hotel 98
## 45852 City Hotel 98
## 45853 City Hotel 98
## 45854 City Hotel 98
## 45855 City Hotel 98
## 45856 City Hotel 98
## 45857 City Hotel 98
## 45858 City Hotel 98
## 45859 City Hotel 98
## 45860 City Hotel 98
## 45861 City Hotel 98
## 45862 City Hotel 98
## 45863 City Hotel 98
## 45864 City Hotel 98
## 45865 City Hotel 98
## 45866 City Hotel 98
## 45867 City Hotel 98
## 45868 City Hotel 98
## 45869 City Hotel 98
## 45870 City Hotel 98
## 45871 City Hotel 98
## 45872 City Hotel 98
## 45873 City Hotel 98
## 45874 City Hotel 98
## 45875 City Hotel 98
## 45876 City Hotel 98
## 45877 City Hotel 98
## 45878 City Hotel 98
## 45879 City Hotel 98
## 45880 City Hotel 98
## 45881 City Hotel 98
## 45882 City Hotel 98
## 45883 City Hotel 98
## 45884 City Hotel 99
## 45885 City Hotel 0
## 45886 City Hotel 124
## 45887 City Hotel 0
## 45888 City Hotel 90
## 45889 City Hotel 77
## 45890 City Hotel 92
## 45891 City Hotel 92
## 45892 City Hotel 105
## 45893 City Hotel 105
## 45894 City Hotel 92
## 45895 City Hotel 84
## 45896 City Hotel 95
## 45897 City Hotel 84
## 45898 City Hotel 84
## 45899 City Hotel 84
## 45900 City Hotel 84
## 45901 City Hotel 84
## 45902 City Hotel 84
## 45903 City Hotel 84
## 45904 City Hotel 84
## 45905 City Hotel 84
## 45906 City Hotel 84
## 45907 City Hotel 84
## 45908 City Hotel 84
## 45909 City Hotel 84
## 45910 City Hotel 84
## 45911 City Hotel 84
## 45912 City Hotel 84
## 45913 City Hotel 84
## 45914 City Hotel 84
## 45915 City Hotel 84
## 45916 City Hotel 84
## 45917 City Hotel 84
## 45918 City Hotel 84
## 45919 City Hotel 84
## 45920 City Hotel 84
## 45921 City Hotel 84
## 45922 City Hotel 84
## 45923 City Hotel 84
## 45924 City Hotel 84
## 45925 City Hotel 84
## 45926 City Hotel 84
## 45927 City Hotel 84
## 45928 City Hotel 84
## 45929 City Hotel 84
## 45930 City Hotel 105
## 45931 City Hotel 84
## 45932 City Hotel 84
## 45933 City Hotel 84
## 45934 City Hotel 84
## 45935 City Hotel 84
## 45936 City Hotel 84
## 45937 City Hotel 84
## 45938 City Hotel 84
## 45939 City Hotel 84
## 45940 City Hotel 84
## 45941 City Hotel 84
## 45942 City Hotel 96
## 45943 City Hotel 89
## 45944 City Hotel 89
## 45945 City Hotel 208
## 45946 City Hotel 81
## 45947 City Hotel 89
## 45948 City Hotel 114
## 45949 City Hotel 208
## 45950 City Hotel 92
## 45951 City Hotel 0
## 45952 City Hotel 139
## 45953 City Hotel 94
## 45954 City Hotel 94
## 45955 City Hotel 104
## 45956 City Hotel 104
## 45957 City Hotel 104
## 45958 City Hotel 104
## 45959 City Hotel 104
## 45960 City Hotel 104
## 45961 City Hotel 104
## 45962 City Hotel 104
## 45963 City Hotel 104
## 45964 City Hotel 94
## 45965 City Hotel 104
## 45966 City Hotel 104
## 45967 City Hotel 104
## 45968 City Hotel 104
## 45969 City Hotel 104
## 45970 City Hotel 104
## 45971 City Hotel 93
## 45972 City Hotel 93
## 45973 City Hotel 104
## 45974 City Hotel 111
## 45975 City Hotel 3
## 45976 City Hotel 88
## 45977 City Hotel 88
## 45978 City Hotel 94
## 45979 City Hotel 94
## 45980 City Hotel 134
## 45981 City Hotel 134
## 45982 City Hotel 134
## 45983 City Hotel 134
## 45984 City Hotel 15
## 45985 City Hotel 134
## 45986 City Hotel 134
## 45987 City Hotel 134
## 45988 City Hotel 134
## 45989 City Hotel 15
## 45990 City Hotel 134
## 45991 City Hotel 134
## 45992 City Hotel 134
## 45993 City Hotel 134
## 45994 City Hotel 134
## 45995 City Hotel 134
## 45996 City Hotel 134
## 45997 City Hotel 134
## 45998 City Hotel 90
## 45999 City Hotel 134
## 46000 City Hotel 134
## 46001 City Hotel 134
## 46002 City Hotel 106
## 46003 City Hotel 112
## 46004 City Hotel 134
## 46005 City Hotel 134
## 46006 City Hotel 134
## 46007 City Hotel 134
## 46008 City Hotel 134
## 46009 City Hotel 134
## 46010 City Hotel 95
## 46011 City Hotel 95
## 46012 City Hotel 2
## 46013 City Hotel 135
## 46014 City Hotel 135
## 46015 City Hotel 135
## 46016 City Hotel 135
## 46017 City Hotel 198
## 46018 City Hotel 135
## 46019 City Hotel 198
## 46020 City Hotel 198
## 46021 City Hotel 135
## 46022 City Hotel 3
## 46023 City Hotel 135
## 46024 City Hotel 135
## 46025 City Hotel 198
## 46026 City Hotel 135
## 46027 City Hotel 198
## 46028 City Hotel 198
## 46029 City Hotel 198
## 46030 City Hotel 198
## 46031 City Hotel 135
## 46032 City Hotel 135
## 46033 City Hotel 198
## 46034 City Hotel 198
## 46035 City Hotel 198
## 46036 City Hotel 198
## 46037 City Hotel 135
## 46038 City Hotel 135
## 46039 City Hotel 135
## 46040 City Hotel 135
## 46041 City Hotel 99
## 46042 City Hotel 135
## 46043 City Hotel 135
## 46044 City Hotel 198
## 46045 City Hotel 198
## 46046 City Hotel 3
## 46047 City Hotel 135
## 46048 City Hotel 135
## 46049 City Hotel 135
## 46050 City Hotel 135
## 46051 City Hotel 198
## 46052 City Hotel 102
## 46053 City Hotel 135
## 46054 City Hotel 198
## 46055 City Hotel 198
## 46056 City Hotel 135
## 46057 City Hotel 135
## 46058 City Hotel 135
## 46059 City Hotel 135
## 46060 City Hotel 198
## 46061 City Hotel 198
## 46062 City Hotel 198
## 46063 City Hotel 135
## 46064 City Hotel 135
## 46065 City Hotel 198
## 46066 City Hotel 198
## 46067 City Hotel 135
## 46068 City Hotel 198
## 46069 City Hotel 198
## 46070 City Hotel 135
## 46071 City Hotel 135
## 46072 City Hotel 198
## 46073 City Hotel 198
## 46074 City Hotel 96
## 46075 City Hotel 5
## 46076 City Hotel 101
## 46077 City Hotel 4
## 46078 City Hotel 110
## 46079 City Hotel 106
## 46080 City Hotel 106
## 46081 City Hotel 106
## 46082 City Hotel 106
## 46083 City Hotel 106
## 46084 City Hotel 106
## 46085 City Hotel 106
## 46086 City Hotel 106
## 46087 City Hotel 106
## 46088 City Hotel 106
## 46089 City Hotel 106
## 46090 City Hotel 106
## 46091 City Hotel 106
## 46092 City Hotel 106
## 46093 City Hotel 106
## 46094 City Hotel 106
## 46095 City Hotel 106
## 46096 City Hotel 106
## 46097 City Hotel 106
## 46098 City Hotel 106
## 46099 City Hotel 106
## 46100 City Hotel 106
## 46101 City Hotel 106
## 46102 City Hotel 106
## 46103 City Hotel 110
## 46104 City Hotel 110
## 46105 City Hotel 110
## 46106 City Hotel 110
## 46107 City Hotel 110
## 46108 City Hotel 110
## 46109 City Hotel 110
## 46110 City Hotel 110
## 46111 City Hotel 110
## 46112 City Hotel 110
## 46113 City Hotel 110
## 46114 City Hotel 110
## 46115 City Hotel 110
## 46116 City Hotel 110
## 46117 City Hotel 110
## 46118 City Hotel 110
## 46119 City Hotel 1
## 46120 City Hotel 10
## 46121 City Hotel 2
## 46122 City Hotel 98
## 46123 City Hotel 2
## 46124 City Hotel 4
## 46125 City Hotel 125
## 46126 City Hotel 98
## 46127 City Hotel 118
## 46128 City Hotel 100
## 46129 City Hotel 100
## 46130 City Hotel 100
## 46131 City Hotel 100
## 46132 City Hotel 100
## 46133 City Hotel 6
## 46134 City Hotel 8
## 46135 City Hotel 11
## 46136 City Hotel 1
## 46137 City Hotel 3
## 46138 City Hotel 8
## 46139 City Hotel 99
## 46140 City Hotel 2
## 46141 City Hotel 11
## 46142 City Hotel 1
## 46143 City Hotel 6
## 46144 City Hotel 2
## 46145 City Hotel 8
## 46146 City Hotel 2
## 46147 City Hotel 6
## 46148 City Hotel 6
## 46149 City Hotel 124
## 46150 City Hotel 8
## 46151 City Hotel 6
## 46152 City Hotel 6
## 46153 City Hotel 2
## 46154 City Hotel 9
## 46155 City Hotel 17
## 46156 City Hotel 3
## 46157 City Hotel 2
## 46158 City Hotel 6
## 46159 City Hotel 7
## 46160 City Hotel 107
## 46161 City Hotel 0
## 46162 City Hotel 3
## 46163 City Hotel 5
## 46164 City Hotel 4
## 46165 City Hotel 1
## 46166 City Hotel 1
## 46167 City Hotel 8
## 46168 City Hotel 4
## 46169 City Hotel 102
## 46170 City Hotel 5
## 46171 City Hotel 6
## 46172 City Hotel 132
## 46173 City Hotel 132
## 46174 City Hotel 7
## 46175 City Hotel 10
## 46176 City Hotel 0
## 46177 City Hotel 0
## 46178 City Hotel 4
## 46179 City Hotel 108
## 46180 City Hotel 108
## 46181 City Hotel 0
## 46182 City Hotel 3
## 46183 City Hotel 19
## 46184 City Hotel 19
## 46185 City Hotel 15
## 46186 City Hotel 1
## 46187 City Hotel 1
## 46188 City Hotel 10
## 46189 City Hotel 125
## 46190 City Hotel 10
## 46191 City Hotel 2
## 46192 City Hotel 107
## 46193 City Hotel 7
## 46194 City Hotel 0
## 46195 City Hotel 2
## 46196 City Hotel 12
## 46197 City Hotel 12
## 46198 City Hotel 5
## 46199 City Hotel 2
## 46200 City Hotel 115
## 46201 City Hotel 22
## 46202 City Hotel 11
## 46203 City Hotel 125
## 46204 City Hotel 17
## 46205 City Hotel 17
## 46206 City Hotel 11
## 46207 City Hotel 4
## 46208 City Hotel 12
## 46209 City Hotel 9
## 46210 City Hotel 1
## 46211 City Hotel 3
## 46212 City Hotel 19
## 46213 City Hotel 19
## 46214 City Hotel 10
## 46215 City Hotel 18
## 46216 City Hotel 8
## 46217 City Hotel 119
## 46218 City Hotel 11
## 46219 City Hotel 22
## 46220 City Hotel 119
## 46221 City Hotel 7
## 46222 City Hotel 14
## 46223 City Hotel 14
## 46224 City Hotel 14
## 46225 City Hotel 14
## 46226 City Hotel 0
## 46227 City Hotel 10
## 46228 City Hotel 37
## 46229 City Hotel 5
## 46230 City Hotel 8
## 46231 City Hotel 13
## 46232 City Hotel 4
## 46233 City Hotel 13
## 46234 City Hotel 22
## 46235 City Hotel 1
## 46236 City Hotel 15
## 46237 City Hotel 8
## 46238 City Hotel 21
## 46239 City Hotel 9
## 46240 City Hotel 3
## 46241 City Hotel 8
## 46242 City Hotel 11
## 46243 City Hotel 0
## 46244 City Hotel 14
## 46245 City Hotel 14
## 46246 City Hotel 14
## 46247 City Hotel 14
## 46248 City Hotel 21
## 46249 City Hotel 121
## 46250 City Hotel 5
## 46251 City Hotel 17
## 46252 City Hotel 17
## 46253 City Hotel 0
## 46254 City Hotel 12
## 46255 City Hotel 0
## 46256 City Hotel 21
## 46257 City Hotel 1
## 46258 City Hotel 21
## 46259 City Hotel 20
## 46260 City Hotel 20
## 46261 City Hotel 17
## 46262 City Hotel 10
## 46263 City Hotel 133
## 46264 City Hotel 6
## 46265 City Hotel 1
## 46266 City Hotel 124
## 46267 City Hotel 118
## 46268 City Hotel 114
## 46269 City Hotel 118
## 46270 City Hotel 17
## 46271 City Hotel 119
## 46272 City Hotel 2
## 46273 City Hotel 118
## 46274 City Hotel 0
## 46275 City Hotel 5
## 46276 City Hotel 2
## 46277 City Hotel 2
## 46278 City Hotel 120
## 46279 City Hotel 7
## 46280 City Hotel 119
## 46281 City Hotel 0
## 46282 City Hotel 146
## 46283 City Hotel 146
## 46284 City Hotel 7
## 46285 City Hotel 146
## 46286 City Hotel 146
## 46287 City Hotel 146
## 46288 City Hotel 146
## 46289 City Hotel 146
## 46290 City Hotel 144
## 46291 City Hotel 146
## 46292 City Hotel 146
## 46293 City Hotel 146
## 46294 City Hotel 140
## 46295 City Hotel 8
## 46296 City Hotel 146
## 46297 City Hotel 146
## 46298 City Hotel 147
## 46299 City Hotel 146
## 46300 City Hotel 120
## 46301 City Hotel 123
## 46302 City Hotel 144
## 46303 City Hotel 146
## 46304 City Hotel 146
## 46305 City Hotel 159
## 46306 City Hotel 159
## 46307 City Hotel 159
## 46308 City Hotel 159
## 46309 City Hotel 116
## 46310 City Hotel 22
## 46311 City Hotel 208
## 46312 City Hotel 159
## 46313 City Hotel 197
## 46314 City Hotel 140
## 46315 City Hotel 140
## 46316 City Hotel 140
## 46317 City Hotel 140
## 46318 City Hotel 140
## 46319 City Hotel 140
## 46320 City Hotel 140
## 46321 City Hotel 140
## 46322 City Hotel 140
## 46323 City Hotel 140
## 46324 City Hotel 140
## 46325 City Hotel 140
## 46326 City Hotel 140
## 46327 City Hotel 140
## 46328 City Hotel 140
## 46329 City Hotel 140
## 46330 City Hotel 140
## 46331 City Hotel 140
## 46332 City Hotel 129
## 46333 City Hotel 140
## 46334 City Hotel 140
## 46335 City Hotel 140
## 46336 City Hotel 140
## 46337 City Hotel 22
## 46338 City Hotel 140
## 46339 City Hotel 140
## 46340 City Hotel 140
## 46341 City Hotel 1
## 46342 City Hotel 0
## 46343 City Hotel 1
## 46344 City Hotel 4
## 46345 City Hotel 160
## 46346 City Hotel 160
## 46347 City Hotel 15
## 46348 City Hotel 160
## 46349 City Hotel 1
## 46350 City Hotel 160
## 46351 City Hotel 160
## 46352 City Hotel 160
## 46353 City Hotel 160
## 46354 City Hotel 160
## 46355 City Hotel 160
## 46356 City Hotel 1
## 46357 City Hotel 160
## 46358 City Hotel 160
## 46359 City Hotel 160
## 46360 City Hotel 160
## 46361 City Hotel 160
## 46362 City Hotel 160
## 46363 City Hotel 9
## 46364 City Hotel 11
## 46365 City Hotel 1
## 46366 City Hotel 0
## 46367 City Hotel 148
## 46368 City Hotel 148
## 46369 City Hotel 148
## 46370 City Hotel 11
## 46371 City Hotel 148
## 46372 City Hotel 148
## 46373 City Hotel 148
## 46374 City Hotel 148
## 46375 City Hotel 148
## 46376 City Hotel 148
## 46377 City Hotel 148
## 46378 City Hotel 148
## 46379 City Hotel 148
## 46380 City Hotel 148
## 46381 City Hotel 148
## 46382 City Hotel 148
## 46383 City Hotel 148
## 46384 City Hotel 15
## 46385 City Hotel 148
## 46386 City Hotel 148
## 46387 City Hotel 148
## 46388 City Hotel 148
## 46389 City Hotel 12
## 46390 City Hotel 1
## 46391 City Hotel 1
## 46392 City Hotel 0
## 46393 City Hotel 1
## 46394 City Hotel 0
## 46395 City Hotel 1
## 46396 City Hotel 22
## 46397 City Hotel 4
## 46398 City Hotel 0
## 46399 City Hotel 2
## 46400 City Hotel 6
## 46401 City Hotel 1
## 46402 City Hotel 1
## 46403 City Hotel 148
## 46404 City Hotel 148
## 46405 City Hotel 148
## 46406 City Hotel 148
## 46407 City Hotel 148
## 46408 City Hotel 148
## 46409 City Hotel 148
## 46410 City Hotel 148
## 46411 City Hotel 148
## 46412 City Hotel 148
## 46413 City Hotel 2
## 46414 City Hotel 148
## 46415 City Hotel 148
## 46416 City Hotel 148
## 46417 City Hotel 148
## 46418 City Hotel 28
## 46419 City Hotel 148
## 46420 City Hotel 7
## 46421 City Hotel 4
## 46422 City Hotel 119
## 46423 City Hotel 0
## 46424 City Hotel 0
## 46425 City Hotel 19
## 46426 City Hotel 30
## 46427 City Hotel 17
## 46428 City Hotel 19
## 46429 City Hotel 19
## 46430 City Hotel 18
## 46431 City Hotel 22
## 46432 City Hotel 25
## 46433 City Hotel 0
## 46434 City Hotel 0
## 46435 City Hotel 18
## 46436 City Hotel 7
## 46437 City Hotel 1
## 46438 City Hotel 4
## 46439 City Hotel 6
## 46440 City Hotel 4
## 46441 City Hotel 0
## 46442 City Hotel 150
## 46443 City Hotel 1
## 46444 City Hotel 150
## 46445 City Hotel 150
## 46446 City Hotel 150
## 46447 City Hotel 150
## 46448 City Hotel 150
## 46449 City Hotel 11
## 46450 City Hotel 10
## 46451 City Hotel 8
## 46452 City Hotel 150
## 46453 City Hotel 1
## 46454 City Hotel 150
## 46455 City Hotel 150
## 46456 City Hotel 150
## 46457 City Hotel 150
## 46458 City Hotel 1
## 46459 City Hotel 1
## 46460 City Hotel 150
## 46461 City Hotel 150
## 46462 City Hotel 150
## 46463 City Hotel 150
## 46464 City Hotel 150
## 46465 City Hotel 150
## 46466 City Hotel 150
## 46467 City Hotel 150
## 46468 City Hotel 150
## 46469 City Hotel 150
## 46470 City Hotel 8
## 46471 City Hotel 150
## 46472 City Hotel 150
## 46473 City Hotel 150
## 46474 City Hotel 150
## 46475 City Hotel 12
## 46476 City Hotel 4
## 46477 City Hotel 3
## 46478 City Hotel 2
## 46479 City Hotel 8
## 46480 City Hotel 2
## 46481 City Hotel 0
## 46482 City Hotel 1
## 46483 City Hotel 2
## 46484 City Hotel 2
## 46485 City Hotel 145
## 46486 City Hotel 0
## 46487 City Hotel 2
## 46488 City Hotel 1
## 46489 City Hotel 30
## 46490 City Hotel 0
## 46491 City Hotel 31
## 46492 City Hotel 2
## 46493 City Hotel 145
## 46494 City Hotel 145
## 46495 City Hotel 1
## 46496 City Hotel 145
## 46497 City Hotel 145
## 46498 City Hotel 145
## 46499 City Hotel 145
## 46500 City Hotel 145
## 46501 City Hotel 145
## 46502 City Hotel 145
## 46503 City Hotel 145
## 46504 City Hotel 145
## 46505 City Hotel 145
## 46506 City Hotel 145
## 46507 City Hotel 145
## 46508 City Hotel 2
## 46509 City Hotel 3
## 46510 City Hotel 1
## 46511 City Hotel 29
## 46512 City Hotel 9
## 46513 City Hotel 0
## 46514 City Hotel 1
## 46515 City Hotel 0
## 46516 City Hotel 0
## 46517 City Hotel 9
## 46518 City Hotel 2
## 46519 City Hotel 4
## 46520 City Hotel 1
## 46521 City Hotel 1
## 46522 City Hotel 2
## 46523 City Hotel 1
## 46524 City Hotel 1
## 46525 City Hotel 7
## 46526 City Hotel 9
## 46527 City Hotel 7
## 46528 City Hotel 28
## 46529 City Hotel 2
## 46530 City Hotel 1
## 46531 City Hotel 28
## 46532 City Hotel 28
## 46533 City Hotel 0
## 46534 City Hotel 3
## 46535 City Hotel 0
## 46536 City Hotel 0
## 46537 City Hotel 33
## 46538 City Hotel 1
## 46539 City Hotel 3
## 46540 City Hotel 4
## 46541 City Hotel 1
## 46542 City Hotel 0
## 46543 City Hotel 0
## 46544 City Hotel 0
## 46545 City Hotel 0
## 46546 City Hotel 1
## 46547 City Hotel 33
## 46548 City Hotel 0
## 46549 City Hotel 24
## 46550 City Hotel 24
## 46551 City Hotel 0
## 46552 City Hotel 34
## 46553 City Hotel 24
## 46554 City Hotel 2
## 46555 City Hotel 4
## 46556 City Hotel 24
## 46557 City Hotel 1
## 46558 City Hotel 0
## 46559 City Hotel 0
## 46560 City Hotel 0
## 46561 City Hotel 5
## 46562 City Hotel 2
## 46563 City Hotel 6
## 46564 City Hotel 2
## 46565 City Hotel 2
## 46566 City Hotel 6
## 46567 City Hotel 23
## 46568 City Hotel 12
## 46569 City Hotel 1
## 46570 City Hotel 14
## 46571 City Hotel 12
## 46572 City Hotel 2
## 46573 City Hotel 1
## 46574 City Hotel 126
## 46575 City Hotel 7
## 46576 City Hotel 8
## 46577 City Hotel 29
## 46578 City Hotel 29
## 46579 City Hotel 1
## 46580 City Hotel 3
## 46581 City Hotel 3
## 46582 City Hotel 4
## 46583 City Hotel 1
## 46584 City Hotel 3
## 46585 City Hotel 4
## 46586 City Hotel 4
## 46587 City Hotel 5
## 46588 City Hotel 2
## 46589 City Hotel 17
## 46590 City Hotel 3
## 46591 City Hotel 3
## 46592 City Hotel 2
## 46593 City Hotel 22
## 46594 City Hotel 18
## 46595 City Hotel 26
## 46596 City Hotel 29
## 46597 City Hotel 3
## 46598 City Hotel 27
## 46599 City Hotel 4
## 46600 City Hotel 4
## 46601 City Hotel 4
## 46602 City Hotel 4
## 46603 City Hotel 18
## 46604 City Hotel 12
## 46605 City Hotel 7
## 46606 City Hotel 79
## 46607 City Hotel 5
## 46608 City Hotel 9
## 46609 City Hotel 8
## 46610 City Hotel 6
## 46611 City Hotel 4
## 46612 City Hotel 12
## 46613 City Hotel 23
## 46614 City Hotel 23
## 46615 City Hotel 5
## 46616 City Hotel 7
## 46617 City Hotel 12
## 46618 City Hotel 0
## 46619 City Hotel 6
## 46620 City Hotel 37
## 46621 City Hotel 8
## 46622 City Hotel 6
## 46623 City Hotel 18
## 46624 City Hotel 11
## 46625 City Hotel 6
## 46626 City Hotel 33
## 46627 City Hotel 36
## 46628 City Hotel 24
## 46629 City Hotel 9
## 46630 City Hotel 16
## 46631 City Hotel 8
## 46632 City Hotel 6
## 46633 City Hotel 6
## 46634 City Hotel 4
## 46635 City Hotel 35
## 46636 City Hotel 8
## 46637 City Hotel 17
## 46638 City Hotel 17
## 46639 City Hotel 9
## 46640 City Hotel 7
## 46641 City Hotel 1
## 46642 City Hotel 4
## 46643 City Hotel 1
## 46644 City Hotel 10
## 46645 City Hotel 9
## 46646 City Hotel 9
## 46647 City Hotel 40
## 46648 City Hotel 43
## 46649 City Hotel 40
## 46650 City Hotel 40
## 46651 City Hotel 40
## 46652 City Hotel 43
## 46653 City Hotel 43
## 46654 City Hotel 43
## 46655 City Hotel 43
## 46656 City Hotel 40
## 46657 City Hotel 43
## 46658 City Hotel 40
## 46659 City Hotel 38
## 46660 City Hotel 10
## 46661 City Hotel 40
## 46662 City Hotel 18
## 46663 City Hotel 18
## 46664 City Hotel 18
## 46665 City Hotel 12
## 46666 City Hotel 10
## 46667 City Hotel 14
## 46668 City Hotel 10
## 46669 City Hotel 11
## 46670 City Hotel 30
## 46671 City Hotel 9
## 46672 City Hotel 11
## 46673 City Hotel 13
## 46674 City Hotel 12
## 46675 City Hotel 30
## 46676 City Hotel 12
## 46677 City Hotel 14
## 46678 City Hotel 10
## 46679 City Hotel 9
## 46680 City Hotel 18
## 46681 City Hotel 9
## 46682 City Hotel 16
## 46683 City Hotel 12
## 46684 City Hotel 38
## 46685 City Hotel 11
## 46686 City Hotel 9
## 46687 City Hotel 43
## 46688 City Hotel 12
## 46689 City Hotel 11
## 46690 City Hotel 12
## 46691 City Hotel 18
## 46692 City Hotel 18
## 46693 City Hotel 18
## 46694 City Hotel 24
## 46695 City Hotel 10
## 46696 City Hotel 1
## 46697 City Hotel 31
## 46698 City Hotel 32
## 46699 City Hotel 13
## 46700 City Hotel 42
## 46701 City Hotel 18
## 46702 City Hotel 28
## 46703 City Hotel 2
## 46704 City Hotel 13
## 46705 City Hotel 41
## 46706 City Hotel 92
## 46707 City Hotel 4
## 46708 City Hotel 42
## 46709 City Hotel 34
## 46710 City Hotel 7
## 46711 City Hotel 42
## 46712 City Hotel 11
## 46713 City Hotel 18
## 46714 City Hotel 12
## 46715 City Hotel 8
## 46716 City Hotel 12
## 46717 City Hotel 9
## 46718 City Hotel 7
## 46719 City Hotel 149
## 46720 City Hotel 149
## 46721 City Hotel 10
## 46722 City Hotel 38
## 46723 City Hotel 10
## 46724 City Hotel 0
## 46725 City Hotel 20
## 46726 City Hotel 9
## 46727 City Hotel 9
## 46728 City Hotel 42
## 46729 City Hotel 39
## 46730 City Hotel 11
## 46731 City Hotel 9
## 46732 City Hotel 10
## 46733 City Hotel 16
## 46734 City Hotel 2
## 46735 City Hotel 0
## 46736 City Hotel 16
## 46737 City Hotel 28
## 46738 City Hotel 15
## 46739 City Hotel 150
## 46740 City Hotel 16
## 46741 City Hotel 16
## 46742 City Hotel 0
## 46743 City Hotel 150
## 46744 City Hotel 18
## 46745 City Hotel 150
## 46746 City Hotel 150
## 46747 City Hotel 14
## 46748 City Hotel 27
## 46749 City Hotel 151
## 46750 City Hotel 1
## 46751 City Hotel 0
## 46752 City Hotel 151
## 46753 City Hotel 151
## 46754 City Hotel 151
## 46755 City Hotel 151
## 46756 City Hotel 151
## 46757 City Hotel 12
## 46758 City Hotel 151
## 46759 City Hotel 151
## 46760 City Hotel 151
## 46761 City Hotel 36
## 46762 City Hotel 151
## 46763 City Hotel 151
## 46764 City Hotel 151
## 46765 City Hotel 151
## 46766 City Hotel 151
## 46767 City Hotel 151
## 46768 City Hotel 151
## 46769 City Hotel 151
## 46770 City Hotel 151
## 46771 City Hotel 151
## 46772 City Hotel 151
## 46773 City Hotel 151
## 46774 City Hotel 151
## 46775 City Hotel 151
## 46776 City Hotel 151
## 46777 City Hotel 151
## 46778 City Hotel 14
## 46779 City Hotel 151
## 46780 City Hotel 151
## 46781 City Hotel 151
## 46782 City Hotel 151
## 46783 City Hotel 151
## 46784 City Hotel 151
## 46785 City Hotel 151
## 46786 City Hotel 151
## 46787 City Hotel 151
## 46788 City Hotel 151
## 46789 City Hotel 151
## 46790 City Hotel 151
## 46791 City Hotel 151
## 46792 City Hotel 151
## 46793 City Hotel 12
## 46794 City Hotel 151
## 46795 City Hotel 151
## 46796 City Hotel 151
## 46797 City Hotel 151
## 46798 City Hotel 31
## 46799 City Hotel 151
## 46800 City Hotel 151
## 46801 City Hotel 151
## 46802 City Hotel 1
## 46803 City Hotel 151
## 46804 City Hotel 151
## 46805 City Hotel 151
## 46806 City Hotel 151
## 46807 City Hotel 151
## 46808 City Hotel 151
## 46809 City Hotel 151
## 46810 City Hotel 151
## 46811 City Hotel 151
## 46812 City Hotel 151
## 46813 City Hotel 151
## 46814 City Hotel 151
## 46815 City Hotel 151
## 46816 City Hotel 151
## 46817 City Hotel 151
## 46818 City Hotel 151
## 46819 City Hotel 151
## 46820 City Hotel 151
## 46821 City Hotel 151
## 46822 City Hotel 151
## 46823 City Hotel 151
## 46824 City Hotel 151
## 46825 City Hotel 151
## 46826 City Hotel 151
## 46827 City Hotel 151
## 46828 City Hotel 151
## 46829 City Hotel 43
## 46830 City Hotel 27
## 46831 City Hotel 48
## 46832 City Hotel 4
## 46833 City Hotel 152
## 46834 City Hotel 152
## 46835 City Hotel 1
## 46836 City Hotel 13
## 46837 City Hotel 13
## 46838 City Hotel 41
## 46839 City Hotel 18
## 46840 City Hotel 13
## 46841 City Hotel 13
## 46842 City Hotel 9
## 46843 City Hotel 14
## 46844 City Hotel 47
## 46845 City Hotel 15
## 46846 City Hotel 19
## 46847 City Hotel 0
## 46848 City Hotel 1
## 46849 City Hotel 19
## 46850 City Hotel 1
## 46851 City Hotel 17
## 46852 City Hotel 18
## 46853 City Hotel 20
## 46854 City Hotel 18
## 46855 City Hotel 18
## 46856 City Hotel 15
## 46857 City Hotel 0
## 46858 City Hotel 1
## 46859 City Hotel 11
## 46860 City Hotel 20
## 46861 City Hotel 20
## 46862 City Hotel 33
## 46863 City Hotel 38
## 46864 City Hotel 12
## 46865 City Hotel 16
## 46866 City Hotel 4
## 46867 City Hotel 12
## 46868 City Hotel 15
## 46869 City Hotel 40
## 46870 City Hotel 46
## 46871 City Hotel 34
## 46872 City Hotel 9
## 46873 City Hotel 17
## 46874 City Hotel 17
## 46875 City Hotel 38
## 46876 City Hotel 27
## 46877 City Hotel 23
## 46878 City Hotel 17
## 46879 City Hotel 45
## 46880 City Hotel 45
## 46881 City Hotel 45
## 46882 City Hotel 45
## 46883 City Hotel 15
## 46884 City Hotel 20
## 46885 City Hotel 17
## 46886 City Hotel 1
## 46887 City Hotel 29
## 46888 City Hotel 16
## 46889 City Hotel 20
## 46890 City Hotel 20
## 46891 City Hotel 50
## 46892 City Hotel 49
## 46893 City Hotel 50
## 46894 City Hotel 17
## 46895 City Hotel 33
## 46896 City Hotel 33
## 46897 City Hotel 33
## 46898 City Hotel 33
## 46899 City Hotel 33
## 46900 City Hotel 33
## 46901 City Hotel 28
## 46902 City Hotel 41
## 46903 City Hotel 20
## 46904 City Hotel 0
## 46905 City Hotel 55
## 46906 City Hotel 16
## 46907 City Hotel 4
## 46908 City Hotel 15
## 46909 City Hotel 22
## 46910 City Hotel 17
## 46911 City Hotel 4
## 46912 City Hotel 19
## 46913 City Hotel 11
## 46914 City Hotel 11
## 46915 City Hotel 15
## 46916 City Hotel 29
## 46917 City Hotel 18
## 46918 City Hotel 18
## 46919 City Hotel 116
## 46920 City Hotel 12
## 46921 City Hotel 9
## 46922 City Hotel 14
## 46923 City Hotel 58
## 46924 City Hotel 58
## 46925 City Hotel 58
## 46926 City Hotel 36
## 46927 City Hotel 58
## 46928 City Hotel 39
## 46929 City Hotel 26
## 46930 City Hotel 173
## 46931 City Hotel 11
## 46932 City Hotel 10
## 46933 City Hotel 10
## 46934 City Hotel 0
## 46935 City Hotel 8
## 46936 City Hotel 36
## 46937 City Hotel 59
## 46938 City Hotel 86
## 46939 City Hotel 30
## 46940 City Hotel 37
## 46941 City Hotel 23
## 46942 City Hotel 9
## 46943 City Hotel 22
## 46944 City Hotel 14
## 46945 City Hotel 15
## 46946 City Hotel 9
## 46947 City Hotel 9
## 46948 City Hotel 1
## 46949 City Hotel 1
## 46950 City Hotel 1
## 46951 City Hotel 1
## 46952 City Hotel 1
## 46953 City Hotel 25
## 46954 City Hotel 27
## 46955 City Hotel 20
## 46956 City Hotel 23
## 46957 City Hotel 24
## 46958 City Hotel 50
## 46959 City Hotel 24
## 46960 City Hotel 35
## 46961 City Hotel 36
## 46962 City Hotel 55
## 46963 City Hotel 12
## 46964 City Hotel 44
## 46965 City Hotel 18
## 46966 City Hotel 17
## 46967 City Hotel 34
## 46968 City Hotel 26
## 46969 City Hotel 18
## 46970 City Hotel 29
## 46971 City Hotel 16
## 46972 City Hotel 20
## 46973 City Hotel 47
## 46974 City Hotel 47
## 46975 City Hotel 10
## 46976 City Hotel 24
## 46977 City Hotel 30
## 46978 City Hotel 28
## 46979 City Hotel 30
## 46980 City Hotel 24
## 46981 City Hotel 47
## 46982 City Hotel 16
## 46983 City Hotel 47
## 46984 City Hotel 29
## 46985 City Hotel 34
## 46986 City Hotel 33
## 46987 City Hotel 27
## 46988 City Hotel 55
## 46989 City Hotel 19
## 46990 City Hotel 18
## 46991 City Hotel 11
## 46992 City Hotel 28
## 46993 City Hotel 12
## 46994 City Hotel 39
## 46995 City Hotel 26
## 46996 City Hotel 2
## 46997 City Hotel 4
## 46998 City Hotel 0
## 46999 City Hotel 30
## 47000 City Hotel 27
## 47001 City Hotel 6
## 47002 City Hotel 12
## 47003 City Hotel 57
## 47004 City Hotel 42
## 47005 City Hotel 24
## 47006 City Hotel 29
## 47007 City Hotel 42
## 47008 City Hotel 20
## 47009 City Hotel 31
## 47010 City Hotel 31
## 47011 City Hotel 28
## 47012 City Hotel 14
## 47013 City Hotel 1
## 47014 City Hotel 13
## 47015 City Hotel 0
## 47016 City Hotel 28
## 47017 City Hotel 29
## 47018 City Hotel 76
## 47019 City Hotel 31
## 47020 City Hotel 31
## 47021 City Hotel 58
## 47022 City Hotel 33
## 47023 City Hotel 22
## 47024 City Hotel 41
## 47025 City Hotel 9
## 47026 City Hotel 31
## 47027 City Hotel 8
## 47028 City Hotel 6
## 47029 City Hotel 37
## 47030 City Hotel 63
## 47031 City Hotel 52
## 47032 City Hotel 53
## 47033 City Hotel 13
## 47034 City Hotel 31
## 47035 City Hotel 0
## 47036 City Hotel 31
## 47037 City Hotel 0
## 47038 City Hotel 9
## 47039 City Hotel 32
## 47040 City Hotel 6
## 47041 City Hotel 31
## 47042 City Hotel 38
## 47043 City Hotel 29
## 47044 City Hotel 8
## 47045 City Hotel 31
## 47046 City Hotel 8
## 47047 City Hotel 43
## 47048 City Hotel 60
## 47049 City Hotel 33
## 47050 City Hotel 12
## 47051 City Hotel 55
## 47052 City Hotel 7
## 47053 City Hotel 32
## 47054 City Hotel 43
## 47055 City Hotel 30
## 47056 City Hotel 4
## 47057 City Hotel 4
## 47058 City Hotel 32
## 47059 City Hotel 41
## 47060 City Hotel 13
## 47061 City Hotel 28
## 47062 City Hotel 16
## 47063 City Hotel 28
## 47064 City Hotel 29
## 47065 City Hotel 12
## 47066 City Hotel 32
## 47067 City Hotel 12
## 47068 City Hotel 21
## 47069 City Hotel 48
## 47070 City Hotel 0
## 47071 City Hotel 32
## 47072 City Hotel 12
## 47073 City Hotel 32
## 47074 City Hotel 15
## 47075 City Hotel 35
## 47076 City Hotel 33
## 47077 City Hotel 85
## 47078 City Hotel 16
## 47079 City Hotel 27
## 47080 City Hotel 37
## 47081 City Hotel 32
## 47082 City Hotel 31
## 47083 City Hotel 24
## 47084 City Hotel 31
## 47085 City Hotel 31
## 47086 City Hotel 45
## 47087 City Hotel 34
## 47088 City Hotel 49
## 47089 City Hotel 31
## 47090 City Hotel 59
## 47091 City Hotel 38
## 47092 City Hotel 58
## 47093 City Hotel 45
## 47094 City Hotel 4
## 47095 City Hotel 17
## 47096 City Hotel 3
## 47097 City Hotel 12
## 47098 City Hotel 12
## 47099 City Hotel 12
## 47100 City Hotel 12
## 47101 City Hotel 31
## 47102 City Hotel 3
## 47103 City Hotel 47
## 47104 City Hotel 12
## 47105 City Hotel 35
## 47106 City Hotel 33
## 47107 City Hotel 14
## 47108 City Hotel 35
## 47109 City Hotel 46
## 47110 City Hotel 46
## 47111 City Hotel 46
## 47112 City Hotel 27
## 47113 City Hotel 33
## 47114 City Hotel 39
## 47115 City Hotel 57
## 47116 City Hotel 26
## 47117 City Hotel 44
## 47118 City Hotel 57
## 47119 City Hotel 56
## 47120 City Hotel 31
## 47121 City Hotel 33
## 47122 City Hotel 44
## 47123 City Hotel 37
## 47124 City Hotel 34
## 47125 City Hotel 33
## 47126 City Hotel 54
## 47127 City Hotel 34
## 47128 City Hotel 20
## 47129 City Hotel 20
## 47130 City Hotel 1
## 47131 City Hotel 1
## 47132 City Hotel 17
## 47133 City Hotel 41
## 47134 City Hotel 64
## 47135 City Hotel 1
## 47136 City Hotel 1
## 47137 City Hotel 66
## 47138 City Hotel 34
## 47139 City Hotel 45
## 47140 City Hotel 35
## 47141 City Hotel 35
## 47142 City Hotel 3
## 47143 City Hotel 0
## 47144 City Hotel 0
## 47145 City Hotel 34
## 47146 City Hotel 119
## 47147 City Hotel 119
## 47148 City Hotel 39
## 47149 City Hotel 35
## 47150 City Hotel 23
## 47151 City Hotel 20
## 47152 City Hotel 10
## 47153 City Hotel 37
## 47154 City Hotel 7
## 47155 City Hotel 26
## 47156 City Hotel 29
## 47157 City Hotel 21
## 47158 City Hotel 21
## 47159 City Hotel 21
## 47160 City Hotel 2
## 47161 City Hotel 48
## 47162 City Hotel 37
## 47163 City Hotel 70
## 47164 City Hotel 5
## 47165 City Hotel 57
## 47166 City Hotel 2
## 47167 City Hotel 1
## 47168 City Hotel 35
## 47169 City Hotel 50
## 47170 City Hotel 24
## 47171 City Hotel 7
## 47172 City Hotel 40
## 47173 City Hotel 41
## 47174 City Hotel 35
## 47175 City Hotel 44
## 47176 City Hotel 40
## 47177 City Hotel 70
## 47178 City Hotel 39
## 47179 City Hotel 38
## 47180 City Hotel 14
## 47181 City Hotel 0
## 47182 City Hotel 35
## 47183 City Hotel 15
## 47184 City Hotel 15
## 47185 City Hotel 44
## 47186 City Hotel 15
## 47187 City Hotel 9
## 47188 City Hotel 15
## 47189 City Hotel 15
## 47190 City Hotel 5
## 47191 City Hotel 12
## 47192 City Hotel 15
## 47193 City Hotel 7
## 47194 City Hotel 15
## 47195 City Hotel 15
## 47196 City Hotel 20
## 47197 City Hotel 50
## 47198 City Hotel 35
## 47199 City Hotel 19
## 47200 City Hotel 15
## 47201 City Hotel 40
## 47202 City Hotel 37
## 47203 City Hotel 42
## 47204 City Hotel 9
## 47205 City Hotel 17
## 47206 City Hotel 6
## 47207 City Hotel 37
## 47208 City Hotel 30
## 47209 City Hotel 23
## 47210 City Hotel 23
## 47211 City Hotel 41
## 47212 City Hotel 41
## 47213 City Hotel 18
## 47214 City Hotel 19
## 47215 City Hotel 23
## 47216 City Hotel 64
## 47217 City Hotel 17
## 47218 City Hotel 64
## 47219 City Hotel 38
## 47220 City Hotel 154
## 47221 City Hotel 22
## 47222 City Hotel 37
## 47223 City Hotel 4
## 47224 City Hotel 9
## 47225 City Hotel 5
## 47226 City Hotel 4
## 47227 City Hotel 28
## 47228 City Hotel 17
## 47229 City Hotel 38
## 47230 City Hotel 159
## 47231 City Hotel 36
## 47232 City Hotel 37
## 47233 City Hotel 2
## 47234 City Hotel 159
## 47235 City Hotel 85
## 47236 City Hotel 30
## 47237 City Hotel 4
## 47238 City Hotel 25
## 47239 City Hotel 159
## 47240 City Hotel 2
## 47241 City Hotel 39
## 47242 City Hotel 46
## 47243 City Hotel 30
## 47244 City Hotel 0
## 47245 City Hotel 21
## 47246 City Hotel 35
## 47247 City Hotel 68
## 47248 City Hotel 0
## 47249 City Hotel 0
## 47250 City Hotel 21
## 47251 City Hotel 68
## 47252 City Hotel 11
## 47253 City Hotel 39
## 47254 City Hotel 0
## 47255 City Hotel 0
## 47256 City Hotel 5
## 47257 City Hotel 60
## 47258 City Hotel 67
## 47259 City Hotel 38
## 47260 City Hotel 67
## 47261 City Hotel 39
## 47262 City Hotel 38
## 47263 City Hotel 10
## 47264 City Hotel 38
## 47265 City Hotel 11
## 47266 City Hotel 4
## 47267 City Hotel 1
## 47268 City Hotel 1
## 47269 City Hotel 1
## 47270 City Hotel 1
## 47271 City Hotel 2
## 47272 City Hotel 2
## 47273 City Hotel 2
## 47274 City Hotel 2
## 47275 City Hotel 2
## 47276 City Hotel 43
## 47277 City Hotel 20
## 47278 City Hotel 2
## 47279 City Hotel 54
## 47280 City Hotel 2
## 47281 City Hotel 40
## 47282 City Hotel 17
## 47283 City Hotel 25
## 47284 City Hotel 2
## 47285 City Hotel 2
## 47286 City Hotel 42
## 47287 City Hotel 40
## 47288 City Hotel 33
## 47289 City Hotel 3
## 47290 City Hotel 38
## 47291 City Hotel 62
## 47292 City Hotel 62
## 47293 City Hotel 39
## 47294 City Hotel 6
## 47295 City Hotel 8
## 47296 City Hotel 7
## 47297 City Hotel 4
## 47298 City Hotel 63
## 47299 City Hotel 62
## 47300 City Hotel 19
## 47301 City Hotel 71
## 47302 City Hotel 6
## 47303 City Hotel 0
## 47304 City Hotel 40
## 47305 City Hotel 15
## 47306 City Hotel 15
## 47307 City Hotel 25
## 47308 City Hotel 63
## 47309 City Hotel 3
## 47310 City Hotel 17
## 47311 City Hotel 3
## 47312 City Hotel 44
## 47313 City Hotel 44
## 47314 City Hotel 44
## 47315 City Hotel 43
## 47316 City Hotel 71
## 47317 City Hotel 44
## 47318 City Hotel 44
## 47319 City Hotel 44
## 47320 City Hotel 44
## 47321 City Hotel 44
## 47322 City Hotel 44
## 47323 City Hotel 44
## 47324 City Hotel 44
## 47325 City Hotel 44
## 47326 City Hotel 44
## 47327 City Hotel 44
## 47328 City Hotel 44
## 47329 City Hotel 44
## 47330 City Hotel 44
## 47331 City Hotel 44
## 47332 City Hotel 44
## 47333 City Hotel 44
## 47334 City Hotel 44
## 47335 City Hotel 44
## 47336 City Hotel 44
## 47337 City Hotel 44
## 47338 City Hotel 44
## 47339 City Hotel 44
## 47340 City Hotel 44
## 47341 City Hotel 44
## 47342 City Hotel 44
## 47343 City Hotel 44
## 47344 City Hotel 44
## 47345 City Hotel 44
## 47346 City Hotel 44
## 47347 City Hotel 44
## 47348 City Hotel 44
## 47349 City Hotel 44
## 47350 City Hotel 44
## 47351 City Hotel 44
## 47352 City Hotel 44
## 47353 City Hotel 44
## 47354 City Hotel 44
## 47355 City Hotel 44
## 47356 City Hotel 44
## 47357 City Hotel 44
## 47358 City Hotel 44
## 47359 City Hotel 44
## 47360 City Hotel 44
## 47361 City Hotel 44
## 47362 City Hotel 44
## 47363 City Hotel 44
## 47364 City Hotel 44
## 47365 City Hotel 10
## 47366 City Hotel 44
## 47367 City Hotel 44
## 47368 City Hotel 44
## 47369 City Hotel 44
## 47370 City Hotel 16
## 47371 City Hotel 74
## 47372 City Hotel 0
## 47373 City Hotel 14
## 47374 City Hotel 14
## 47375 City Hotel 46
## 47376 City Hotel 52
## 47377 City Hotel 76
## 47378 City Hotel 45
## 47379 City Hotel 70
## 47380 City Hotel 43
## 47381 City Hotel 47
## 47382 City Hotel 45
## 47383 City Hotel 62
## 47384 City Hotel 42
## 47385 City Hotel 42
## 47386 City Hotel 63
## 47387 City Hotel 42
## 47388 City Hotel 4
## 47389 City Hotel 4
## 47390 City Hotel 99
## 47391 City Hotel 4
## 47392 City Hotel 99
## 47393 City Hotel 8
## 47394 City Hotel 8
## 47395 City Hotel 45
## 47396 City Hotel 26
## 47397 City Hotel 29
## 47398 City Hotel 52
## 47399 City Hotel 47
## 47400 City Hotel 77
## 47401 City Hotel 18
## 47402 City Hotel 48
## 47403 City Hotel 44
## 47404 City Hotel 17
## 47405 City Hotel 34
## 47406 City Hotel 34
## 47407 City Hotel 17
## 47408 City Hotel 130
## 47409 City Hotel 47
## 47410 City Hotel 130
## 47411 City Hotel 24
## 47412 City Hotel 47
## 47413 City Hotel 53
## 47414 City Hotel 31
## 47415 City Hotel 48
## 47416 City Hotel 27
## 47417 City Hotel 47
## 47418 City Hotel 31
## 47419 City Hotel 47
## 47420 City Hotel 49
## 47421 City Hotel 47
## 47422 City Hotel 53
## 47423 City Hotel 53
## 47424 City Hotel 38
## 47425 City Hotel 30
## 47426 City Hotel 29
## 47427 City Hotel 5
## 47428 City Hotel 37
## 47429 City Hotel 23
## 47430 City Hotel 19
## 47431 City Hotel 3
## 47432 City Hotel 7
## 47433 City Hotel 73
## 47434 City Hotel 19
## 47435 City Hotel 73
## 47436 City Hotel 9
## 47437 City Hotel 76
## 47438 City Hotel 9
## 47439 City Hotel 9
## 47440 City Hotel 39
## 47441 City Hotel 23
## 47442 City Hotel 49
## 47443 City Hotel 64
## 47444 City Hotel 50
## 47445 City Hotel 48
## 47446 City Hotel 48
## 47447 City Hotel 1
## 47448 City Hotel 7
## 47449 City Hotel 17
## 47450 City Hotel 55
## 47451 City Hotel 38
## 47452 City Hotel 24
## 47453 City Hotel 37
## 47454 City Hotel 6
## 47455 City Hotel 8
## 47456 City Hotel 49
## 47457 City Hotel 49
## 47458 City Hotel 50
## 47459 City Hotel 50
## 47460 City Hotel 67
## 47461 City Hotel 18
## 47462 City Hotel 50
## 47463 City Hotel 50
## 47464 City Hotel 12
## 47465 City Hotel 12
## 47466 City Hotel 13
## 47467 City Hotel 4
## 47468 City Hotel 48
## 47469 City Hotel 4
## 47470 City Hotel 49
## 47471 City Hotel 71
## 47472 City Hotel 43
## 47473 City Hotel 111
## 47474 City Hotel 5
## 47475 City Hotel 44
## 47476 City Hotel 9
## 47477 City Hotel 24
## 47478 City Hotel 55
## 47479 City Hotel 77
## 47480 City Hotel 77
## 47481 City Hotel 77
## 47482 City Hotel 77
## 47483 City Hotel 77
## 47484 City Hotel 77
## 47485 City Hotel 77
## 47486 City Hotel 77
## 47487 City Hotel 77
## 47488 City Hotel 77
## 47489 City Hotel 77
## 47490 City Hotel 77
## 47491 City Hotel 77
## 47492 City Hotel 77
## 47493 City Hotel 77
## 47494 City Hotel 80
## 47495 City Hotel 77
## 47496 City Hotel 77
## 47497 City Hotel 77
## 47498 City Hotel 77
## 47499 City Hotel 77
## 47500 City Hotel 34
## 47501 City Hotel 45
## 47502 City Hotel 53
## 47503 City Hotel 18
## 47504 City Hotel 18
## 47505 City Hotel 40
## 47506 City Hotel 18
## 47507 City Hotel 24
## 47508 City Hotel 48
## 47509 City Hotel 23
## 47510 City Hotel 3
## 47511 City Hotel 21
## 47512 City Hotel 21
## 47513 City Hotel 38
## 47514 City Hotel 0
## 47515 City Hotel 30
## 47516 City Hotel 10
## 47517 City Hotel 34
## 47518 City Hotel 51
## 47519 City Hotel 19
## 47520 City Hotel 52
## 47521 City Hotel 51
## 47522 City Hotel 4
## 47523 City Hotel 44
## 47524 City Hotel 0
## 47525 City Hotel 0
## 47526 City Hotel 0
## 47527 City Hotel 51
## 47528 City Hotel 56
## 47529 City Hotel 6
## 47530 City Hotel 70
## 47531 City Hotel 55
## 47532 City Hotel 54
## 47533 City Hotel 6
## 47534 City Hotel 16
## 47535 City Hotel 31
## 47536 City Hotel 51
## 47537 City Hotel 32
## 47538 City Hotel 52
## 47539 City Hotel 7
## 47540 City Hotel 50
## 47541 City Hotel 12
## 47542 City Hotel 54
## 47543 City Hotel 24
## 47544 City Hotel 36
## 47545 City Hotel 35
## 47546 City Hotel 60
## 47547 City Hotel 35
## 47548 City Hotel 16
## 47549 City Hotel 55
## 47550 City Hotel 68
## 47551 City Hotel 52
## 47552 City Hotel 28
## 47553 City Hotel 10
## 47554 City Hotel 62
## 47555 City Hotel 43
## 47556 City Hotel 18
## 47557 City Hotel 1
## 47558 City Hotel 0
## 47559 City Hotel 39
## 47560 City Hotel 0
## 47561 City Hotel 37
## 47562 City Hotel 9
## 47563 City Hotel 39
## 47564 City Hotel 53
## 47565 City Hotel 21
## 47566 City Hotel 54
## 47567 City Hotel 66
## 47568 City Hotel 115
## 47569 City Hotel 65
## 47570 City Hotel 115
## 47571 City Hotel 115
## 47572 City Hotel 57
## 47573 City Hotel 53
## 47574 City Hotel 57
## 47575 City Hotel 16
## 47576 City Hotel 16
## 47577 City Hotel 16
## 47578 City Hotel 115
## 47579 City Hotel 81
## 47580 City Hotel 115
## 47581 City Hotel 3
## 47582 City Hotel 3
## 47583 City Hotel 115
## 47584 City Hotel 16
## 47585 City Hotel 16
## 47586 City Hotel 1
## 47587 City Hotel 1
## 47588 City Hotel 1
## 47589 City Hotel 1
## 47590 City Hotel 1
## 47591 City Hotel 1
## 47592 City Hotel 116
## 47593 City Hotel 54
## 47594 City Hotel 53
## 47595 City Hotel 43
## 47596 City Hotel 116
## 47597 City Hotel 116
## 47598 City Hotel 116
## 47599 City Hotel 116
## 47600 City Hotel 116
## 47601 City Hotel 116
## 47602 City Hotel 116
## 47603 City Hotel 116
## 47604 City Hotel 1
## 47605 City Hotel 1
## 47606 City Hotel 1
## 47607 City Hotel 1
## 47608 City Hotel 1
## 47609 City Hotel 1
## 47610 City Hotel 1
## 47611 City Hotel 1
## 47612 City Hotel 1
## 47613 City Hotel 1
## 47614 City Hotel 1
## 47615 City Hotel 1
## 47616 City Hotel 1
## 47617 City Hotel 116
## 47618 City Hotel 1
## 47619 City Hotel 1
## 47620 City Hotel 1
## 47621 City Hotel 1
## 47622 City Hotel 116
## 47623 City Hotel 116
## 47624 City Hotel 116
## 47625 City Hotel 116
## 47626 City Hotel 1
## 47627 City Hotel 1
## 47628 City Hotel 1
## 47629 City Hotel 1
## 47630 City Hotel 1
## 47631 City Hotel 1
## 47632 City Hotel 116
## 47633 City Hotel 116
## 47634 City Hotel 1
## 47635 City Hotel 1
## 47636 City Hotel 1
## 47637 City Hotel 1
## 47638 City Hotel 116
## 47639 City Hotel 116
## 47640 City Hotel 116
## 47641 City Hotel 116
## 47642 City Hotel 1
## 47643 City Hotel 116
## 47644 City Hotel 116
## 47645 City Hotel 116
## 47646 City Hotel 1
## 47647 City Hotel 1
## 47648 City Hotel 1
## 47649 City Hotel 1
## 47650 City Hotel 1
## 47651 City Hotel 116
## 47652 City Hotel 116
## 47653 City Hotel 116
## 47654 City Hotel 116
## 47655 City Hotel 116
## 47656 City Hotel 1
## 47657 City Hotel 1
## 47658 City Hotel 1
## 47659 City Hotel 1
## 47660 City Hotel 1
## 47661 City Hotel 116
## 47662 City Hotel 116
## 47663 City Hotel 1
## 47664 City Hotel 1
## 47665 City Hotel 1
## 47666 City Hotel 1
## 47667 City Hotel 1
## 47668 City Hotel 116
## 47669 City Hotel 1
## 47670 City Hotel 116
## 47671 City Hotel 116
## 47672 City Hotel 116
## 47673 City Hotel 1
## 47674 City Hotel 1
## 47675 City Hotel 1
## 47676 City Hotel 1
## 47677 City Hotel 1
## 47678 City Hotel 1
## 47679 City Hotel 116
## 47680 City Hotel 116
## 47681 City Hotel 1
## 47682 City Hotel 1
## 47683 City Hotel 1
## 47684 City Hotel 1
## 47685 City Hotel 1
## 47686 City Hotel 1
## 47687 City Hotel 1
## 47688 City Hotel 1
## 47689 City Hotel 1
## 47690 City Hotel 138
## 47691 City Hotel 116
## 47692 City Hotel 116
## 47693 City Hotel 116
## 47694 City Hotel 116
## 47695 City Hotel 116
## 47696 City Hotel 116
## 47697 City Hotel 116
## 47698 City Hotel 116
## 47699 City Hotel 116
## 47700 City Hotel 54
## 47701 City Hotel 8
## 47702 City Hotel 116
## 47703 City Hotel 1
## 47704 City Hotel 17
## 47705 City Hotel 116
## 47706 City Hotel 50
## 47707 City Hotel 57
## 47708 City Hotel 61
## 47709 City Hotel 21
## 47710 City Hotel 88
## 47711 City Hotel 13
## 47712 City Hotel 35
## 47713 City Hotel 58
## 47714 City Hotel 88
## 47715 City Hotel 31
## 47716 City Hotel 0
## 47717 City Hotel 43
## 47718 City Hotel 37
## 47719 City Hotel 55
## 47720 City Hotel 8
## 47721 City Hotel 5
## 47722 City Hotel 40
## 47723 City Hotel 54
## 47724 City Hotel 17
## 47725 City Hotel 54
## 47726 City Hotel 67
## 47727 City Hotel 54
## 47728 City Hotel 37
## 47729 City Hotel 55
## 47730 City Hotel 49
## 47731 City Hotel 58
## 47732 City Hotel 78
## 47733 City Hotel 12
## 47734 City Hotel 6
## 47735 City Hotel 0
## 47736 City Hotel 8
## 47737 City Hotel 35
## 47738 City Hotel 3
## 47739 City Hotel 8
## 47740 City Hotel 9
## 47741 City Hotel 35
## 47742 City Hotel 54
## 47743 City Hotel 7
## 47744 City Hotel 8
## 47745 City Hotel 55
## 47746 City Hotel 7
## 47747 City Hotel 8
## 47748 City Hotel 59
## 47749 City Hotel 12
## 47750 City Hotel 48
## 47751 City Hotel 33
## 47752 City Hotel 33
## 47753 City Hotel 29
## 47754 City Hotel 29
## 47755 City Hotel 29
## 47756 City Hotel 19
## 47757 City Hotel 70
## 47758 City Hotel 68
## 47759 City Hotel 1
## 47760 City Hotel 44
## 47761 City Hotel 46
## 47762 City Hotel 84
## 47763 City Hotel 6
## 47764 City Hotel 16
## 47765 City Hotel 66
## 47766 City Hotel 52
## 47767 City Hotel 89
## 47768 City Hotel 60
## 47769 City Hotel 16
## 47770 City Hotel 45
## 47771 City Hotel 80
## 47772 City Hotel 81
## 47773 City Hotel 22
## 47774 City Hotel 16
## 47775 City Hotel 6
## 47776 City Hotel 71
## 47777 City Hotel 11
## 47778 City Hotel 39
## 47779 City Hotel 74
## 47780 City Hotel 46
## 47781 City Hotel 35
## 47782 City Hotel 65
## 47783 City Hotel 11
## 47784 City Hotel 70
## 47785 City Hotel 12
## 47786 City Hotel 31
## 47787 City Hotel 62
## 47788 City Hotel 61
## 47789 City Hotel 21
## 47790 City Hotel 21
## 47791 City Hotel 21
## 47792 City Hotel 21
## 47793 City Hotel 21
## 47794 City Hotel 15
## 47795 City Hotel 46
## 47796 City Hotel 58
## 47797 City Hotel 61
## 47798 City Hotel 29
## 47799 City Hotel 58
## 47800 City Hotel 19
## 47801 City Hotel 71
## 47802 City Hotel 79
## 47803 City Hotel 15
## 47804 City Hotel 58
## 47805 City Hotel 46
## 47806 City Hotel 39
## 47807 City Hotel 46
## 47808 City Hotel 39
## 47809 City Hotel 14
## 47810 City Hotel 73
## 47811 City Hotel 61
## 47812 City Hotel 62
## 47813 City Hotel 19
## 47814 City Hotel 49
## 47815 City Hotel 62
## 47816 City Hotel 29
## 47817 City Hotel 62
## 47818 City Hotel 7
## 47819 City Hotel 8
## 47820 City Hotel 14
## 47821 City Hotel 14
## 47822 City Hotel 17
## 47823 City Hotel 38
## 47824 City Hotel 21
## 47825 City Hotel 21
## 47826 City Hotel 21
## 47827 City Hotel 52
## 47828 City Hotel 4
## 47829 City Hotel 16
## 47830 City Hotel 35
## 47831 City Hotel 67
## 47832 City Hotel 66
## 47833 City Hotel 80
## 47834 City Hotel 28
## 47835 City Hotel 48
## 47836 City Hotel 63
## 47837 City Hotel 63
## 47838 City Hotel 31
## 47839 City Hotel 63
## 47840 City Hotel 9
## 47841 City Hotel 42
## 47842 City Hotel 4
## 47843 City Hotel 50
## 47844 City Hotel 81
## 47845 City Hotel 64
## 47846 City Hotel 50
## 47847 City Hotel 31
## 47848 City Hotel 40
## 47849 City Hotel 60
## 47850 City Hotel 50
## 47851 City Hotel 60
## 47852 City Hotel 12
## 47853 City Hotel 10
## 47854 City Hotel 29
## 47855 City Hotel 20
## 47856 City Hotel 53
## 47857 City Hotel 20
## 47858 City Hotel 64
## 47859 City Hotel 77
## 47860 City Hotel 42
## 47861 City Hotel 90
## 47862 City Hotel 90
## 47863 City Hotel 90
## 47864 City Hotel 39
## 47865 City Hotel 60
## 47866 City Hotel 56
## 47867 City Hotel 21
## 47868 City Hotel 21
## 47869 City Hotel 83
## 47870 City Hotel 10
## 47871 City Hotel 5
## 47872 City Hotel 12
## 47873 City Hotel 80
## 47874 City Hotel 11
## 47875 City Hotel 49
## 47876 City Hotel 48
## 47877 City Hotel 49
## 47878 City Hotel 35
## 47879 City Hotel 92
## 47880 City Hotel 1
## 47881 City Hotel 48
## 47882 City Hotel 76
## 47883 City Hotel 93
## 47884 City Hotel 45
## 47885 City Hotel 3
## 47886 City Hotel 90
## 47887 City Hotel 62
## 47888 City Hotel 3
## 47889 City Hotel 7
## 47890 City Hotel 16
## 47891 City Hotel 45
## 47892 City Hotel 15
## 47893 City Hotel 0
## 47894 City Hotel 5
## 47895 City Hotel 17
## 47896 City Hotel 31
## 47897 City Hotel 38
## 47898 City Hotel 72
## 47899 City Hotel 16
## 47900 City Hotel 80
## 47901 City Hotel 63
## 47902 City Hotel 49
## 47903 City Hotel 43
## 47904 City Hotel 35
## 47905 City Hotel 36
## 47906 City Hotel 25
## 47907 City Hotel 2
## 47908 City Hotel 31
## 47909 City Hotel 2
## 47910 City Hotel 1
## 47911 City Hotel 59
## 47912 City Hotel 70
## 47913 City Hotel 30
## 47914 City Hotel 81
## 47915 City Hotel 94
## 47916 City Hotel 8
## 47917 City Hotel 19
## 47918 City Hotel 66
## 47919 City Hotel 29
## 47920 City Hotel 52
## 47921 City Hotel 36
## 47922 City Hotel 62
## 47923 City Hotel 52
## 47924 City Hotel 21
## 47925 City Hotel 87
## 47926 City Hotel 64
## 47927 City Hotel 35
## 47928 City Hotel 51
## 47929 City Hotel 60
## 47930 City Hotel 0
## 47931 City Hotel 36
## 47932 City Hotel 65
## 47933 City Hotel 36
## 47934 City Hotel 35
## 47935 City Hotel 2
## 47936 City Hotel 6
## 47937 City Hotel 67
## 47938 City Hotel 67
## 47939 City Hotel 64
## 47940 City Hotel 86
## 47941 City Hotel 47
## 47942 City Hotel 61
## 47943 City Hotel 74
## 47944 City Hotel 67
## 47945 City Hotel 64
## 47946 City Hotel 30
## 47947 City Hotel 60
## 47948 City Hotel 59
## 47949 City Hotel 39
## 47950 City Hotel 68
## 47951 City Hotel 67
## 47952 City Hotel 69
## 47953 City Hotel 67
## 47954 City Hotel 23
## 47955 City Hotel 39
## 47956 City Hotel 67
## 47957 City Hotel 15
## 47958 City Hotel 27
## 47959 City Hotel 34
## 47960 City Hotel 64
## 47961 City Hotel 39
## 47962 City Hotel 17
## 47963 City Hotel 6
## 47964 City Hotel 68
## 47965 City Hotel 45
## 47966 City Hotel 65
## 47967 City Hotel 39
## 47968 City Hotel 68
## 47969 City Hotel 17
## 47970 City Hotel 45
## 47971 City Hotel 68
## 47972 City Hotel 6
## 47973 City Hotel 51
## 47974 City Hotel 64
## 47975 City Hotel 4
## 47976 City Hotel 39
## 47977 City Hotel 17
## 47978 City Hotel 133
## 47979 City Hotel 74
## 47980 City Hotel 8
## 47981 City Hotel 24
## 47982 City Hotel 36
## 47983 City Hotel 87
## 47984 City Hotel 8
## 47985 City Hotel 57
## 47986 City Hotel 34
## 47987 City Hotel 38
## 47988 City Hotel 69
## 47989 City Hotel 31
## 47990 City Hotel 5
## 47991 City Hotel 57
## 47992 City Hotel 62
## 47993 City Hotel 67
## 47994 City Hotel 64
## 47995 City Hotel 40
## 47996 City Hotel 50
## 47997 City Hotel 37
## 47998 City Hotel 50
## 47999 City Hotel 38
## 48000 City Hotel 50
## 48001 City Hotel 51
## 48002 City Hotel 64
## 48003 City Hotel 7
## 48004 City Hotel 75
## 48005 City Hotel 75
## 48006 City Hotel 69
## 48007 City Hotel 69
## 48008 City Hotel 45
## 48009 City Hotel 36
## 48010 City Hotel 97
## 48011 City Hotel 69
## 48012 City Hotel 29
## 48013 City Hotel 23
## 48014 City Hotel 83
## 48015 City Hotel 70
## 48016 City Hotel 15
## 48017 City Hotel 70
## 48018 City Hotel 15
## 48019 City Hotel 31
## 48020 City Hotel 64
## 48021 City Hotel 56
## 48022 City Hotel 99
## 48023 City Hotel 44
## 48024 City Hotel 71
## 48025 City Hotel 83
## 48026 City Hotel 79
## 48027 City Hotel 97
## 48028 City Hotel 84
## 48029 City Hotel 6
## 48030 City Hotel 10
## 48031 City Hotel 10
## 48032 City Hotel 67
## 48033 City Hotel 6
## 48034 City Hotel 70
## 48035 City Hotel 68
## 48036 City Hotel 44
## 48037 City Hotel 67
## 48038 City Hotel 46
## 48039 City Hotel 59
## 48040 City Hotel 33
## 48041 City Hotel 69
## 48042 City Hotel 71
## 48043 City Hotel 72
## 48044 City Hotel 15
## 48045 City Hotel 66
## 48046 City Hotel 46
## 48047 City Hotel 49
## 48048 City Hotel 43
## 48049 City Hotel 3
## 48050 City Hotel 75
## 48051 City Hotel 35
## 48052 City Hotel 76
## 48053 City Hotel 72
## 48054 City Hotel 33
## 48055 City Hotel 72
## 48056 City Hotel 71
## 48057 City Hotel 37
## 48058 City Hotel 42
## 48059 City Hotel 68
## 48060 City Hotel 41
## 48061 City Hotel 75
## 48062 City Hotel 55
## 48063 City Hotel 101
## 48064 City Hotel 99
## 48065 City Hotel 93
## 48066 City Hotel 80
## 48067 City Hotel 99
## 48068 City Hotel 56
## 48069 City Hotel 18
## 48070 City Hotel 18
## 48071 City Hotel 18
## 48072 City Hotel 48
## 48073 City Hotel 46
## 48074 City Hotel 106
## 48075 City Hotel 17
## 48076 City Hotel 72
## 48077 City Hotel 72
## 48078 City Hotel 35
## 48079 City Hotel 47
## 48080 City Hotel 35
## 48081 City Hotel 47
## 48082 City Hotel 72
## 48083 City Hotel 66
## 48084 City Hotel 9
## 48085 City Hotel 11
## 48086 City Hotel 81
## 48087 City Hotel 54
## 48088 City Hotel 98
## 48089 City Hotel 100
## 48090 City Hotel 70
## 48091 City Hotel 72
## 48092 City Hotel 69
## 48093 City Hotel 73
## 48094 City Hotel 55
## 48095 City Hotel 77
## 48096 City Hotel 86
## 48097 City Hotel 49
## 48098 City Hotel 73
## 48099 City Hotel 47
## 48100 City Hotel 48
## 48101 City Hotel 99
## 48102 City Hotel 17
## 48103 City Hotel 10
## 48104 City Hotel 17
## 48105 City Hotel 45
## 48106 City Hotel 71
## 48107 City Hotel 71
## 48108 City Hotel 21
## 48109 City Hotel 75
## 48110 City Hotel 17
## 48111 City Hotel 3
## 48112 City Hotel 73
## 48113 City Hotel 18
## 48114 City Hotel 46
## 48115 City Hotel 17
## 48116 City Hotel 54
## 48117 City Hotel 75
## 48118 City Hotel 75
## 48119 City Hotel 75
## 48120 City Hotel 54
## 48121 City Hotel 75
## 48122 City Hotel 76
## 48123 City Hotel 100
## 48124 City Hotel 61
## 48125 City Hotel 49
## 48126 City Hotel 71
## 48127 City Hotel 75
## 48128 City Hotel 75
## 48129 City Hotel 10
## 48130 City Hotel 59
## 48131 City Hotel 75
## 48132 City Hotel 75
## 48133 City Hotel 17
## 48134 City Hotel 75
## 48135 City Hotel 75
## 48136 City Hotel 75
## 48137 City Hotel 54
## 48138 City Hotel 75
## 48139 City Hotel 80
## 48140 City Hotel 54
## 48141 City Hotel 75
## 48142 City Hotel 75
## 48143 City Hotel 71
## 48144 City Hotel 75
## 48145 City Hotel 75
## 48146 City Hotel 75
## 48147 City Hotel 75
## 48148 City Hotel 75
## 48149 City Hotel 85
## 48150 City Hotel 73
## 48151 City Hotel 93
## 48152 City Hotel 15
## 48153 City Hotel 98
## 48154 City Hotel 95
## 48155 City Hotel 73
## 48156 City Hotel 85
## 48157 City Hotel 42
## 48158 City Hotel 88
## 48159 City Hotel 25
## 48160 City Hotel 4
## 48161 City Hotel 73
## 48162 City Hotel 76
## 48163 City Hotel 91
## 48164 City Hotel 91
## 48165 City Hotel 28
## 48166 City Hotel 91
## 48167 City Hotel 91
## 48168 City Hotel 91
## 48169 City Hotel 18
## 48170 City Hotel 47
## 48171 City Hotel 91
## 48172 City Hotel 91
## 48173 City Hotel 19
## 48174 City Hotel 91
## 48175 City Hotel 91
## 48176 City Hotel 103
## 48177 City Hotel 91
## 48178 City Hotel 91
## 48179 City Hotel 91
## 48180 City Hotel 91
## 48181 City Hotel 46
## 48182 City Hotel 65
## 48183 City Hotel 91
## 48184 City Hotel 115
## 48185 City Hotel 16
## 48186 City Hotel 101
## 48187 City Hotel 91
## 48188 City Hotel 91
## 48189 City Hotel 34
## 48190 City Hotel 91
## 48191 City Hotel 91
## 48192 City Hotel 91
## 48193 City Hotel 91
## 48194 City Hotel 91
## 48195 City Hotel 92
## 48196 City Hotel 16
## 48197 City Hotel 11
## 48198 City Hotel 10
## 48199 City Hotel 19
## 48200 City Hotel 91
## 48201 City Hotel 91
## 48202 City Hotel 54
## 48203 City Hotel 103
## 48204 City Hotel 38
## 48205 City Hotel 199
## 48206 City Hotel 90
## 48207 City Hotel 101
## 48208 City Hotel 71
## 48209 City Hotel 94
## 48210 City Hotel 54
## 48211 City Hotel 42
## 48212 City Hotel 18
## 48213 City Hotel 76
## 48214 City Hotel 92
## 48215 City Hotel 76
## 48216 City Hotel 72
## 48217 City Hotel 8
## 48218 City Hotel 44
## 48219 City Hotel 82
## 48220 City Hotel 46
## 48221 City Hotel 47
## 48222 City Hotel 38
## 48223 City Hotel 83
## 48224 City Hotel 5
## 48225 City Hotel 72
## 48226 City Hotel 85
## 48227 City Hotel 72
## 48228 City Hotel 17
## 48229 City Hotel 18
## 48230 City Hotel 62
## 48231 City Hotel 45
## 48232 City Hotel 5
## 48233 City Hotel 5
## 48234 City Hotel 75
## 48235 City Hotel 393
## 48236 City Hotel 393
## 48237 City Hotel 393
## 48238 City Hotel 393
## 48239 City Hotel 0
## 48240 City Hotel 83
## 48241 City Hotel 393
## 48242 City Hotel 393
## 48243 City Hotel 393
## 48244 City Hotel 393
## 48245 City Hotel 45
## 48246 City Hotel 18
## 48247 City Hotel 393
## 48248 City Hotel 393
## 48249 City Hotel 393
## 48250 City Hotel 393
## 48251 City Hotel 5
## 48252 City Hotel 393
## 48253 City Hotel 393
## 48254 City Hotel 18
## 48255 City Hotel 393
## 48256 City Hotel 393
## 48257 City Hotel 393
## 48258 City Hotel 393
## 48259 City Hotel 393
## 48260 City Hotel 393
## 48261 City Hotel 52
## 48262 City Hotel 76
## 48263 City Hotel 108
## 48264 City Hotel 393
## 48265 City Hotel 5
## 48266 City Hotel 393
## 48267 City Hotel 393
## 48268 City Hotel 393
## 48269 City Hotel 393
## 48270 City Hotel 393
## 48271 City Hotel 393
## 48272 City Hotel 393
## 48273 City Hotel 5
## 48274 City Hotel 67
## 48275 City Hotel 393
## 48276 City Hotel 393
## 48277 City Hotel 38
## 48278 City Hotel 94
## 48279 City Hotel 45
## 48280 City Hotel 56
## 48281 City Hotel 73
## 48282 City Hotel 75
## 48283 City Hotel 127
## 48284 City Hotel 127
## 48285 City Hotel 2
## 48286 City Hotel 56
## 48287 City Hotel 40
## 48288 City Hotel 39
## 48289 City Hotel 87
## 48290 City Hotel 42
## 48291 City Hotel 60
## 48292 City Hotel 60
## 48293 City Hotel 60
## 48294 City Hotel 42
## 48295 City Hotel 42
## 48296 City Hotel 60
## 48297 City Hotel 86
## 48298 City Hotel 42
## 48299 City Hotel 60
## 48300 City Hotel 42
## 48301 City Hotel 60
## 48302 City Hotel 60
## 48303 City Hotel 60
## 48304 City Hotel 42
## 48305 City Hotel 47
## 48306 City Hotel 87
## 48307 City Hotel 42
## 48308 City Hotel 60
## 48309 City Hotel 60
## 48310 City Hotel 60
## 48311 City Hotel 60
## 48312 City Hotel 77
## 48313 City Hotel 60
## 48314 City Hotel 60
## 48315 City Hotel 86
## 48316 City Hotel 65
## 48317 City Hotel 60
## 48318 City Hotel 74
## 48319 City Hotel 90
## 48320 City Hotel 76
## 48321 City Hotel 53
## 48322 City Hotel 88
## 48323 City Hotel 65
## 48324 City Hotel 105
## 48325 City Hotel 105
## 48326 City Hotel 83
## 48327 City Hotel 78
## 48328 City Hotel 78
## 48329 City Hotel 90
## 48330 City Hotel 0
## 48331 City Hotel 75
## 48332 City Hotel 22
## 48333 City Hotel 75
## 48334 City Hotel 22
## 48335 City Hotel 4
## 48336 City Hotel 46
## 48337 City Hotel 42
## 48338 City Hotel 79
## 48339 City Hotel 38
## 48340 City Hotel 79
## 48341 City Hotel 57
## 48342 City Hotel 79
## 48343 City Hotel 48
## 48344 City Hotel 83
## 48345 City Hotel 51
## 48346 City Hotel 46
## 48347 City Hotel 58
## 48348 City Hotel 49
## 48349 City Hotel 91
## 48350 City Hotel 76
## 48351 City Hotel 78
## 48352 City Hotel 89
## 48353 City Hotel 103
## 48354 City Hotel 89
## 48355 City Hotel 89
## 48356 City Hotel 22
## 48357 City Hotel 105
## 48358 City Hotel 0
## 48359 City Hotel 1
## 48360 City Hotel 0
## 48361 City Hotel 7
## 48362 City Hotel 32
## 48363 City Hotel 40
## 48364 City Hotel 6
## 48365 City Hotel 45
## 48366 City Hotel 6
## 48367 City Hotel 251
## 48368 City Hotel 251
## 48369 City Hotel 251
## 48370 City Hotel 251
## 48371 City Hotel 251
## 48372 City Hotel 251
## 48373 City Hotel 251
## 48374 City Hotel 27
## 48375 City Hotel 251
## 48376 City Hotel 251
## 48377 City Hotel 251
## 48378 City Hotel 55
## 48379 City Hotel 52
## 48380 City Hotel 251
## 48381 City Hotel 251
## 48382 City Hotel 251
## 48383 City Hotel 251
## 48384 City Hotel 251
## 48385 City Hotel 251
## 48386 City Hotel 251
## 48387 City Hotel 251
## 48388 City Hotel 251
## 48389 City Hotel 55
## 48390 City Hotel 251
## 48391 City Hotel 251
## 48392 City Hotel 251
## 48393 City Hotel 251
## 48394 City Hotel 251
## 48395 City Hotel 42
## 48396 City Hotel 43
## 48397 City Hotel 251
## 48398 City Hotel 251
## 48399 City Hotel 251
## 48400 City Hotel 251
## 48401 City Hotel 251
## 48402 City Hotel 34
## 48403 City Hotel 27
## 48404 City Hotel 251
## 48405 City Hotel 251
## 48406 City Hotel 251
## 48407 City Hotel 251
## 48408 City Hotel 251
## 48409 City Hotel 251
## 48410 City Hotel 251
## 48411 City Hotel 251
## 48412 City Hotel 251
## 48413 City Hotel 27
## 48414 City Hotel 64
## 48415 City Hotel 5
## 48416 City Hotel 77
## 48417 City Hotel 77
## 48418 City Hotel 77
## 48419 City Hotel 8
## 48420 City Hotel 77
## 48421 City Hotel 31
## 48422 City Hotel 7
## 48423 City Hotel 34
## 48424 City Hotel 31
## 48425 City Hotel 5
## 48426 City Hotel 45
## 48427 City Hotel 49
## 48428 City Hotel 99
## 48429 City Hotel 99
## 48430 City Hotel 3
## 48431 City Hotel 61
## 48432 City Hotel 5
## 48433 City Hotel 45
## 48434 City Hotel 38
## 48435 City Hotel 49
## 48436 City Hotel 39
## 48437 City Hotel 95
## 48438 City Hotel 95
## 48439 City Hotel 21
## 48440 City Hotel 103
## 48441 City Hotel 95
## 48442 City Hotel 40
## 48443 City Hotel 40
## 48444 City Hotel 86
## 48445 City Hotel 97
## 48446 City Hotel 82
## 48447 City Hotel 88
## 48448 City Hotel 40
## 48449 City Hotel 40
## 48450 City Hotel 77
## 48451 City Hotel 10
## 48452 City Hotel 81
## 48453 City Hotel 37
## 48454 City Hotel 36
## 48455 City Hotel 108
## 48456 City Hotel 107
## 48457 City Hotel 36
## 48458 City Hotel 81
## 48459 City Hotel 36
## 48460 City Hotel 50
## 48461 City Hotel 24
## 48462 City Hotel 36
## 48463 City Hotel 58
## 48464 City Hotel 36
## 48465 City Hotel 46
## 48466 City Hotel 38
## 48467 City Hotel 33
## 48468 City Hotel 33
## 48469 City Hotel 4
## 48470 City Hotel 31
## 48471 City Hotel 33
## 48472 City Hotel 76
## 48473 City Hotel 32
## 48474 City Hotel 99
## 48475 City Hotel 35
## 48476 City Hotel 99
## 48477 City Hotel 38
## 48478 City Hotel 78
## 48479 City Hotel 36
## 48480 City Hotel 38
## 48481 City Hotel 74
## 48482 City Hotel 99
## 48483 City Hotel 33
## 48484 City Hotel 37
## 48485 City Hotel 3
## 48486 City Hotel 12
## 48487 City Hotel 106
## 48488 City Hotel 87
## 48489 City Hotel 8
## 48490 City Hotel 78
## 48491 City Hotel 34
## 48492 City Hotel 87
## 48493 City Hotel 87
## 48494 City Hotel 79
## 48495 City Hotel 84
## 48496 City Hotel 96
## 48497 City Hotel 34
## 48498 City Hotel 157
## 48499 City Hotel 79
## 48500 City Hotel 97
## 48501 City Hotel 96
## 48502 City Hotel 79
## 48503 City Hotel 97
## 48504 City Hotel 81
## 48505 City Hotel 83
## 48506 City Hotel 108
## 48507 City Hotel 85
## 48508 City Hotel 85
## 48509 City Hotel 108
## 48510 City Hotel 85
## 48511 City Hotel 106
## 48512 City Hotel 83
## 48513 City Hotel 84
## 48514 City Hotel 82
## 48515 City Hotel 82
## 48516 City Hotel 35
## 48517 City Hotel 37
## 48518 City Hotel 41
## 48519 City Hotel 37
## 48520 City Hotel 37
## 48521 City Hotel 41
## 48522 City Hotel 34
## 48523 City Hotel 32
## 48524 City Hotel 35
## 48525 City Hotel 80
## 48526 City Hotel 76
## 48527 City Hotel 161
## 48528 City Hotel 161
## 48529 City Hotel 161
## 48530 City Hotel 94
## 48531 City Hotel 161
## 48532 City Hotel 87
## 48533 City Hotel 78
## 48534 City Hotel 78
## 48535 City Hotel 78
## 48536 City Hotel 78
## 48537 City Hotel 161
## 48538 City Hotel 161
## 48539 City Hotel 161
## 48540 City Hotel 161
## 48541 City Hotel 161
## 48542 City Hotel 90
## 48543 City Hotel 86
## 48544 City Hotel 80
## 48545 City Hotel 78
## 48546 City Hotel 78
## 48547 City Hotel 16
## 48548 City Hotel 161
## 48549 City Hotel 161
## 48550 City Hotel 161
## 48551 City Hotel 161
## 48552 City Hotel 78
## 48553 City Hotel 78
## 48554 City Hotel 83
## 48555 City Hotel 161
## 48556 City Hotel 161
## 48557 City Hotel 161
## 48558 City Hotel 78
## 48559 City Hotel 78
## 48560 City Hotel 78
## 48561 City Hotel 78
## 48562 City Hotel 35
## 48563 City Hotel 161
## 48564 City Hotel 161
## 48565 City Hotel 161
## 48566 City Hotel 161
## 48567 City Hotel 78
## 48568 City Hotel 161
## 48569 City Hotel 161
## 48570 City Hotel 161
## 48571 City Hotel 78
## 48572 City Hotel 78
## 48573 City Hotel 161
## 48574 City Hotel 161
## 48575 City Hotel 161
## 48576 City Hotel 161
## 48577 City Hotel 89
## 48578 City Hotel 100
## 48579 City Hotel 83
## 48580 City Hotel 82
## 48581 City Hotel 40
## 48582 City Hotel 174
## 48583 City Hotel 161
## 48584 City Hotel 161
## 48585 City Hotel 161
## 48586 City Hotel 80
## 48587 City Hotel 78
## 48588 City Hotel 161
## 48589 City Hotel 136
## 48590 City Hotel 93
## 48591 City Hotel 161
## 48592 City Hotel 161
## 48593 City Hotel 161
## 48594 City Hotel 90
## 48595 City Hotel 83
## 48596 City Hotel 78
## 48597 City Hotel 80
## 48598 City Hotel 78
## 48599 City Hotel 78
## 48600 City Hotel 161
## 48601 City Hotel 161
## 48602 City Hotel 161
## 48603 City Hotel 161
## 48604 City Hotel 161
## 48605 City Hotel 161
## 48606 City Hotel 161
## 48607 City Hotel 161
## 48608 City Hotel 36
## 48609 City Hotel 161
## 48610 City Hotel 161
## 48611 City Hotel 161
## 48612 City Hotel 161
## 48613 City Hotel 161
## 48614 City Hotel 78
## 48615 City Hotel 78
## 48616 City Hotel 89
## 48617 City Hotel 8
## 48618 City Hotel 43
## 48619 City Hotel 80
## 48620 City Hotel 116
## 48621 City Hotel 90
## 48622 City Hotel 116
## 48623 City Hotel 81
## 48624 City Hotel 81
## 48625 City Hotel 7
## 48626 City Hotel 81
## 48627 City Hotel 0
## 48628 City Hotel 81
## 48629 City Hotel 81
## 48630 City Hotel 81
## 48631 City Hotel 34
## 48632 City Hotel 81
## 48633 City Hotel 80
## 48634 City Hotel 39
## 48635 City Hotel 35
## 48636 City Hotel 80
## 48637 City Hotel 81
## 48638 City Hotel 41
## 48639 City Hotel 43
## 48640 City Hotel 78
## 48641 City Hotel 42
## 48642 City Hotel 14
## 48643 City Hotel 72
## 48644 City Hotel 32
## 48645 City Hotel 79
## 48646 City Hotel 72
## 48647 City Hotel 72
## 48648 City Hotel 72
## 48649 City Hotel 31
## 48650 City Hotel 72
## 48651 City Hotel 72
## 48652 City Hotel 72
## 48653 City Hotel 72
## 48654 City Hotel 33
## 48655 City Hotel 72
## 48656 City Hotel 72
## 48657 City Hotel 100
## 48658 City Hotel 67
## 48659 City Hotel 67
## 48660 City Hotel 92
## 48661 City Hotel 67
## 48662 City Hotel 92
## 48663 City Hotel 92
## 48664 City Hotel 92
## 48665 City Hotel 9
## 48666 City Hotel 92
## 48667 City Hotel 92
## 48668 City Hotel 67
## 48669 City Hotel 67
## 48670 City Hotel 67
## 48671 City Hotel 92
## 48672 City Hotel 92
## 48673 City Hotel 92
## 48674 City Hotel 92
## 48675 City Hotel 8
## 48676 City Hotel 17
## 48677 City Hotel 92
## 48678 City Hotel 13
## 48679 City Hotel 10
## 48680 City Hotel 81
## 48681 City Hotel 19
## 48682 City Hotel 23
## 48683 City Hotel 76
## 48684 City Hotel 86
## 48685 City Hotel 77
## 48686 City Hotel 5
## 48687 City Hotel 1
## 48688 City Hotel 28
## 48689 City Hotel 81
## 48690 City Hotel 42
## 48691 City Hotel 122
## 48692 City Hotel 84
## 48693 City Hotel 40
## 48694 City Hotel 109
## 48695 City Hotel 125
## 48696 City Hotel 73
## 48697 City Hotel 120
## 48698 City Hotel 44
## 48699 City Hotel 120
## 48700 City Hotel 6
## 48701 City Hotel 82
## 48702 City Hotel 5
## 48703 City Hotel 70
## 48704 City Hotel 95
## 48705 City Hotel 58
## 48706 City Hotel 54
## 48707 City Hotel 63
## 48708 City Hotel 63
## 48709 City Hotel 63
## 48710 City Hotel 12
## 48711 City Hotel 47
## 48712 City Hotel 85
## 48713 City Hotel 52
## 48714 City Hotel 45
## 48715 City Hotel 64
## 48716 City Hotel 50
## 48717 City Hotel 7
## 48718 City Hotel 50
## 48719 City Hotel 50
## 48720 City Hotel 79
## 48721 City Hotel 84
## 48722 City Hotel 58
## 48723 City Hotel 26
## 48724 City Hotel 85
## 48725 City Hotel 56
## 48726 City Hotel 85
## 48727 City Hotel 182
## 48728 City Hotel 1
## 48729 City Hotel 10
## 48730 City Hotel 50
## 48731 City Hotel 51
## 48732 City Hotel 60
## 48733 City Hotel 1
## 48734 City Hotel 11
## 48735 City Hotel 56
## 48736 City Hotel 24
## 48737 City Hotel 84
## 48738 City Hotel 82
## 48739 City Hotel 86
## 48740 City Hotel 25
## 48741 City Hotel 46
## 48742 City Hotel 57
## 48743 City Hotel 85
## 48744 City Hotel 113
## 48745 City Hotel 85
## 48746 City Hotel 85
## 48747 City Hotel 49
## 48748 City Hotel 113
## 48749 City Hotel 74
## 48750 City Hotel 53
## 48751 City Hotel 84
## 48752 City Hotel 68
## 48753 City Hotel 112
## 48754 City Hotel 112
## 48755 City Hotel 112
## 48756 City Hotel 112
## 48757 City Hotel 112
## 48758 City Hotel 112
## 48759 City Hotel 112
## 48760 City Hotel 112
## 48761 City Hotel 112
## 48762 City Hotel 112
## 48763 City Hotel 112
## 48764 City Hotel 112
## 48765 City Hotel 112
## 48766 City Hotel 112
## 48767 City Hotel 112
## 48768 City Hotel 112
## 48769 City Hotel 112
## 48770 City Hotel 112
## 48771 City Hotel 112
## 48772 City Hotel 112
## 48773 City Hotel 123
## 48774 City Hotel 29
## 48775 City Hotel 123
## 48776 City Hotel 123
## 48777 City Hotel 108
## 48778 City Hotel 89
## 48779 City Hotel 61
## 48780 City Hotel 58
## 48781 City Hotel 92
## 48782 City Hotel 69
## 48783 City Hotel 75
## 48784 City Hotel 57
## 48785 City Hotel 49
## 48786 City Hotel 92
## 48787 City Hotel 57
## 48788 City Hotel 12
## 48789 City Hotel 12
## 48790 City Hotel 87
## 48791 City Hotel 12
## 48792 City Hotel 74
## 48793 City Hotel 79
## 48794 City Hotel 88
## 48795 City Hotel 3
## 48796 City Hotel 14
## 48797 City Hotel 80
## 48798 City Hotel 12
## 48799 City Hotel 17
## 48800 City Hotel 10
## 48801 City Hotel 267
## 48802 City Hotel 9
## 48803 City Hotel 267
## 48804 City Hotel 55
## 48805 City Hotel 17
## 48806 City Hotel 88
## 48807 City Hotel 267
## 48808 City Hotel 267
## 48809 City Hotel 267
## 48810 City Hotel 267
## 48811 City Hotel 267
## 48812 City Hotel 267
## 48813 City Hotel 267
## 48814 City Hotel 20
## 48815 City Hotel 30
## 48816 City Hotel 267
## 48817 City Hotel 267
## 48818 City Hotel 267
## 48819 City Hotel 267
## 48820 City Hotel 267
## 48821 City Hotel 267
## 48822 City Hotel 267
## 48823 City Hotel 267
## 48824 City Hotel 267
## 48825 City Hotel 267
## 48826 City Hotel 267
## 48827 City Hotel 30
## 48828 City Hotel 30
## 48829 City Hotel 267
## 48830 City Hotel 267
## 48831 City Hotel 267
## 48832 City Hotel 267
## 48833 City Hotel 30
## 48834 City Hotel 267
## 48835 City Hotel 30
## 48836 City Hotel 267
## 48837 City Hotel 267
## 48838 City Hotel 267
## 48839 City Hotel 267
## 48840 City Hotel 267
## 48841 City Hotel 267
## 48842 City Hotel 267
## 48843 City Hotel 173
## 48844 City Hotel 30
## 48845 City Hotel 58
## 48846 City Hotel 76
## 48847 City Hotel 113
## 48848 City Hotel 173
## 48849 City Hotel 60
## 48850 City Hotel 90
## 48851 City Hotel 173
## 48852 City Hotel 58
## 48853 City Hotel 113
## 48854 City Hotel 77
## 48855 City Hotel 65
## 48856 City Hotel 50
## 48857 City Hotel 86
## 48858 City Hotel 42
## 48859 City Hotel 86
## 48860 City Hotel 50
## 48861 City Hotel 32
## 48862 City Hotel 86
## 48863 City Hotel 86
## 48864 City Hotel 92
## 48865 City Hotel 22
## 48866 City Hotel 37
## 48867 City Hotel 37
## 48868 City Hotel 21
## 48869 City Hotel 88
## 48870 City Hotel 85
## 48871 City Hotel 46
## 48872 City Hotel 93
## 48873 City Hotel 4
## 48874 City Hotel 3
## 48875 City Hotel 65
## 48876 City Hotel 83
## 48877 City Hotel 85
## 48878 City Hotel 71
## 48879 City Hotel 36
## 48880 City Hotel 82
## 48881 City Hotel 89
## 48882 City Hotel 90
## 48883 City Hotel 60
## 48884 City Hotel 57
## 48885 City Hotel 77
## 48886 City Hotel 40
## 48887 City Hotel 84
## 48888 City Hotel 32
## 48889 City Hotel 60
## 48890 City Hotel 57
## 48891 City Hotel 40
## 48892 City Hotel 91
## 48893 City Hotel 18
## 48894 City Hotel 91
## 48895 City Hotel 93
## 48896 City Hotel 68
## 48897 City Hotel 68
## 48898 City Hotel 48
## 48899 City Hotel 75
## 48900 City Hotel 50
## 48901 City Hotel 109
## 48902 City Hotel 111
## 48903 City Hotel 64
## 48904 City Hotel 31
## 48905 City Hotel 0
## 48906 City Hotel 53
## 48907 City Hotel 20
## 48908 City Hotel 53
## 48909 City Hotel 50
## 48910 City Hotel 97
## 48911 City Hotel 5
## 48912 City Hotel 1
## 48913 City Hotel 53
## 48914 City Hotel 79
## 48915 City Hotel 66
## 48916 City Hotel 79
## 48917 City Hotel 43
## 48918 City Hotel 57
## 48919 City Hotel 44
## 48920 City Hotel 66
## 48921 City Hotel 17
## 48922 City Hotel 88
## 48923 City Hotel 102
## 48924 City Hotel 66
## 48925 City Hotel 70
## 48926 City Hotel 86
## 48927 City Hotel 66
## 48928 City Hotel 86
## 48929 City Hotel 92
## 48930 City Hotel 30
## 48931 City Hotel 69
## 48932 City Hotel 88
## 48933 City Hotel 91
## 48934 City Hotel 13
## 48935 City Hotel 62
## 48936 City Hotel 104
## 48937 City Hotel 102
## 48938 City Hotel 91
## 48939 City Hotel 99
## 48940 City Hotel 109
## 48941 City Hotel 108
## 48942 City Hotel 89
## 48943 City Hotel 50
## 48944 City Hotel 76
## 48945 City Hotel 37
## 48946 City Hotel 17
## 48947 City Hotel 18
## 48948 City Hotel 80
## 48949 City Hotel 14
## 48950 City Hotel 7
## 48951 City Hotel 118
## 48952 City Hotel 72
## 48953 City Hotel 0
## 48954 City Hotel 88
## 48955 City Hotel 73
## 48956 City Hotel 73
## 48957 City Hotel 67
## 48958 City Hotel 72
## 48959 City Hotel 73
## 48960 City Hotel 67
## 48961 City Hotel 72
## 48962 City Hotel 73
## 48963 City Hotel 118
## 48964 City Hotel 95
## 48965 City Hotel 73
## 48966 City Hotel 87
## 48967 City Hotel 104
## 48968 City Hotel 91
## 48969 City Hotel 88
## 48970 City Hotel 87
## 48971 City Hotel 109
## 48972 City Hotel 81
## 48973 City Hotel 91
## 48974 City Hotel 90
## 48975 City Hotel 91
## 48976 City Hotel 79
## 48977 City Hotel 71
## 48978 City Hotel 6
## 48979 City Hotel 44
## 48980 City Hotel 46
## 48981 City Hotel 41
## 48982 City Hotel 48
## 48983 City Hotel 20
## 48984 City Hotel 92
## 48985 City Hotel 101
## 48986 City Hotel 101
## 48987 City Hotel 101
## 48988 City Hotel 102
## 48989 City Hotel 91
## 48990 City Hotel 101
## 48991 City Hotel 91
## 48992 City Hotel 101
## 48993 City Hotel 101
## 48994 City Hotel 101
## 48995 City Hotel 91
## 48996 City Hotel 91
## 48997 City Hotel 91
## 48998 City Hotel 68
## 48999 City Hotel 101
## 49000 City Hotel 101
## 49001 City Hotel 91
## 49002 City Hotel 91
## 49003 City Hotel 91
## 49004 City Hotel 101
## 49005 City Hotel 101
## 49006 City Hotel 101
## 49007 City Hotel 101
## 49008 City Hotel 147
## 49009 City Hotel 91
## 49010 City Hotel 147
## 49011 City Hotel 111
## 49012 City Hotel 113
## 49013 City Hotel 50
## 49014 City Hotel 5
## 49015 City Hotel 111
## 49016 City Hotel 91
## 49017 City Hotel 93
## 49018 City Hotel 89
## 49019 City Hotel 90
## 49020 City Hotel 67
## 49021 City Hotel 34
## 49022 City Hotel 5
## 49023 City Hotel 5
## 49024 City Hotel 5
## 49025 City Hotel 14
## 49026 City Hotel 79
## 49027 City Hotel 113
## 49028 City Hotel 104
## 49029 City Hotel 104
## 49030 City Hotel 104
## 49031 City Hotel 104
## 49032 City Hotel 104
## 49033 City Hotel 104
## 49034 City Hotel 104
## 49035 City Hotel 104
## 49036 City Hotel 104
## 49037 City Hotel 104
## 49038 City Hotel 95
## 49039 City Hotel 104
## 49040 City Hotel 104
## 49041 City Hotel 104
## 49042 City Hotel 104
## 49043 City Hotel 104
## 49044 City Hotel 104
## 49045 City Hotel 107
## 49046 City Hotel 8
## 49047 City Hotel 104
## 49048 City Hotel 99
## 49049 City Hotel 16
## 49050 City Hotel 94
## 49051 City Hotel 42
## 49052 City Hotel 78
## 49053 City Hotel 120
## 49054 City Hotel 120
## 49055 City Hotel 95
## 49056 City Hotel 57
## 49057 City Hotel 103
## 49058 City Hotel 100
## 49059 City Hotel 68
## 49060 City Hotel 105
## 49061 City Hotel 105
## 49062 City Hotel 105
## 49063 City Hotel 105
## 49064 City Hotel 105
## 49065 City Hotel 105
## 49066 City Hotel 105
## 49067 City Hotel 105
## 49068 City Hotel 105
## 49069 City Hotel 105
## 49070 City Hotel 105
## 49071 City Hotel 105
## 49072 City Hotel 105
## 49073 City Hotel 105
## 49074 City Hotel 105
## 49075 City Hotel 105
## 49076 City Hotel 105
## 49077 City Hotel 105
## 49078 City Hotel 105
## 49079 City Hotel 105
## 49080 City Hotel 55
## 49081 City Hotel 105
## 49082 City Hotel 105
## 49083 City Hotel 105
## 49084 City Hotel 105
## 49085 City Hotel 105
## 49086 City Hotel 105
## 49087 City Hotel 105
## 49088 City Hotel 105
## 49089 City Hotel 105
## 49090 City Hotel 105
## 49091 City Hotel 105
## 49092 City Hotel 105
## 49093 City Hotel 105
## 49094 City Hotel 105
## 49095 City Hotel 55
## 49096 City Hotel 55
## 49097 City Hotel 55
## 49098 City Hotel 40
## 49099 City Hotel 105
## 49100 City Hotel 105
## 49101 City Hotel 105
## 49102 City Hotel 105
## 49103 City Hotel 105
## 49104 City Hotel 105
## 49105 City Hotel 105
## 49106 City Hotel 105
## 49107 City Hotel 105
## 49108 City Hotel 105
## 49109 City Hotel 105
## 49110 City Hotel 105
## 49111 City Hotel 105
## 49112 City Hotel 105
## 49113 City Hotel 105
## 49114 City Hotel 105
## 49115 City Hotel 105
## 49116 City Hotel 55
## 49117 City Hotel 4
## 49118 City Hotel 105
## 49119 City Hotel 105
## 49120 City Hotel 105
## 49121 City Hotel 105
## 49122 City Hotel 105
## 49123 City Hotel 105
## 49124 City Hotel 105
## 49125 City Hotel 105
## 49126 City Hotel 105
## 49127 City Hotel 105
## 49128 City Hotel 105
## 49129 City Hotel 55
## 49130 City Hotel 92
## 49131 City Hotel 105
## 49132 City Hotel 105
## 49133 City Hotel 105
## 49134 City Hotel 105
## 49135 City Hotel 105
## 49136 City Hotel 132
## 49137 City Hotel 25
## 49138 City Hotel 55
## 49139 City Hotel 74
## 49140 City Hotel 74
## 49141 City Hotel 93
## 49142 City Hotel 93
## 49143 City Hotel 101
## 49144 City Hotel 62
## 49145 City Hotel 17
## 49146 City Hotel 86
## 49147 City Hotel 29
## 49148 City Hotel 91
## 49149 City Hotel 92
## 49150 City Hotel 91
## 49151 City Hotel 103
## 49152 City Hotel 117
## 49153 City Hotel 82
## 49154 City Hotel 15
## 49155 City Hotel 97
## 49156 City Hotel 45
## 49157 City Hotel 274
## 49158 City Hotel 274
## 49159 City Hotel 52
## 49160 City Hotel 10
## 49161 City Hotel 274
## 49162 City Hotel 274
## 49163 City Hotel 274
## 49164 City Hotel 274
## 49165 City Hotel 274
## 49166 City Hotel 274
## 49167 City Hotel 274
## 49168 City Hotel 274
## 49169 City Hotel 274
## 49170 City Hotel 274
## 49171 City Hotel 274
## 49172 City Hotel 274
## 49173 City Hotel 274
## 49174 City Hotel 274
## 49175 City Hotel 274
## 49176 City Hotel 274
## 49177 City Hotel 88
## 49178 City Hotel 274
## 49179 City Hotel 274
## 49180 City Hotel 274
## 49181 City Hotel 274
## 49182 City Hotel 274
## 49183 City Hotel 274
## 49184 City Hotel 274
## 49185 City Hotel 274
## 49186 City Hotel 73
## 49187 City Hotel 274
## 49188 City Hotel 274
## 49189 City Hotel 9
## 49190 City Hotel 88
## 49191 City Hotel 274
## 49192 City Hotel 274
## 49193 City Hotel 274
## 49194 City Hotel 274
## 49195 City Hotel 85
## 49196 City Hotel 85
## 49197 City Hotel 14
## 49198 City Hotel 10
## 49199 City Hotel 14
## 49200 City Hotel 92
## 49201 City Hotel 85
## 49202 City Hotel 69
## 49203 City Hotel 65
## 49204 City Hotel 79
## 49205 City Hotel 16
## 49206 City Hotel 14
## 49207 City Hotel 14
## 49208 City Hotel 73
## 49209 City Hotel 16
## 49210 City Hotel 14
## 49211 City Hotel 120
## 49212 City Hotel 94
## 49213 City Hotel 3
## 49214 City Hotel 0
## 49215 City Hotel 3
## 49216 City Hotel 96
## 49217 City Hotel 103
## 49218 City Hotel 74
## 49219 City Hotel 78
## 49220 City Hotel 55
## 49221 City Hotel 9
## 49222 City Hotel 18
## 49223 City Hotel 78
## 49224 City Hotel 97
## 49225 City Hotel 115
## 49226 City Hotel 99
## 49227 City Hotel 98
## 49228 City Hotel 115
## 49229 City Hotel 115
## 49230 City Hotel 78
## 49231 City Hotel 97
## 49232 City Hotel 115
## 49233 City Hotel 115
## 49234 City Hotel 112
## 49235 City Hotel 10
## 49236 City Hotel 99
## 49237 City Hotel 11
## 49238 City Hotel 115
## 49239 City Hotel 115
## 49240 City Hotel 6
## 49241 City Hotel 115
## 49242 City Hotel 50
## 49243 City Hotel 141
## 49244 City Hotel 94
## 49245 City Hotel 8
## 49246 City Hotel 65
## 49247 City Hotel 94
## 49248 City Hotel 84
## 49249 City Hotel 99
## 49250 City Hotel 96
## 49251 City Hotel 96
## 49252 City Hotel 6
## 49253 City Hotel 104
## 49254 City Hotel 63
## 49255 City Hotel 60
## 49256 City Hotel 120
## 49257 City Hotel 96
## 49258 City Hotel 81
## 49259 City Hotel 268
## 49260 City Hotel 96
## 49261 City Hotel 268
## 49262 City Hotel 268
## 49263 City Hotel 268
## 49264 City Hotel 16
## 49265 City Hotel 173
## 49266 City Hotel 268
## 49267 City Hotel 268
## 49268 City Hotel 100
## 49269 City Hotel 56
## 49270 City Hotel 77
## 49271 City Hotel 9
## 49272 City Hotel 268
## 49273 City Hotel 268
## 49274 City Hotel 268
## 49275 City Hotel 268
## 49276 City Hotel 112
## 49277 City Hotel 67
## 49278 City Hotel 20
## 49279 City Hotel 87
## 49280 City Hotel 190
## 49281 City Hotel 134
## 49282 City Hotel 101
## 49283 City Hotel 150
## 49284 City Hotel 128
## 49285 City Hotel 98
## 49286 City Hotel 110
## 49287 City Hotel 110
## 49288 City Hotel 150
## 49289 City Hotel 98
## 49290 City Hotel 73
## 49291 City Hotel 110
## 49292 City Hotel 110
## 49293 City Hotel 19
## 49294 City Hotel 23
## 49295 City Hotel 101
## 49296 City Hotel 7
## 49297 City Hotel 60
## 49298 City Hotel 96
## 49299 City Hotel 7
## 49300 City Hotel 101
## 49301 City Hotel 81
## 49302 City Hotel 68
## 49303 City Hotel 18
## 49304 City Hotel 80
## 49305 City Hotel 36
## 49306 City Hotel 80
## 49307 City Hotel 80
## 49308 City Hotel 0
## 49309 City Hotel 96
## 49310 City Hotel 86
## 49311 City Hotel 80
## 49312 City Hotel 91
## 49313 City Hotel 80
## 49314 City Hotel 23
## 49315 City Hotel 26
## 49316 City Hotel 49
## 49317 City Hotel 96
## 49318 City Hotel 80
## 49319 City Hotel 4
## 49320 City Hotel 110
## 49321 City Hotel 0
## 49322 City Hotel 26
## 49323 City Hotel 96
## 49324 City Hotel 24
## 49325 City Hotel 44
## 49326 City Hotel 54
## 49327 City Hotel 44
## 49328 City Hotel 118
## 49329 City Hotel 45
## 49330 City Hotel 99
## 49331 City Hotel 45
## 49332 City Hotel 63
## 49333 City Hotel 99
## 49334 City Hotel 23
## 49335 City Hotel 5
## 49336 City Hotel 24
## 49337 City Hotel 32
## 49338 City Hotel 103
## 49339 City Hotel 0
## 49340 City Hotel 9
## 49341 City Hotel 13
## 49342 City Hotel 47
## 49343 City Hotel 21
## 49344 City Hotel 37
## 49345 City Hotel 64
## 49346 City Hotel 48
## 49347 City Hotel 112
## 49348 City Hotel 101
## 49349 City Hotel 75
## 49350 City Hotel 48
## 49351 City Hotel 95
## 49352 City Hotel 57
## 49353 City Hotel 57
## 49354 City Hotel 101
## 49355 City Hotel 129
## 49356 City Hotel 50
## 49357 City Hotel 67
## 49358 City Hotel 99
## 49359 City Hotel 24
## 49360 City Hotel 24
## 49361 City Hotel 61
## 49362 City Hotel 50
## 49363 City Hotel 50
## 49364 City Hotel 0
## 49365 City Hotel 48
## 49366 City Hotel 27
## 49367 City Hotel 19
## 49368 City Hotel 75
## 49369 City Hotel 147
## 49370 City Hotel 104
## 49371 City Hotel 92
## 49372 City Hotel 47
## 49373 City Hotel 1
## 49374 City Hotel 47
## 49375 City Hotel 47
## 49376 City Hotel 34
## 49377 City Hotel 34
## 49378 City Hotel 47
## 49379 City Hotel 0
## 49380 City Hotel 47
## 49381 City Hotel 47
## 49382 City Hotel 47
## 49383 City Hotel 47
## 49384 City Hotel 55
## 49385 City Hotel 34
## 49386 City Hotel 47
## 49387 City Hotel 47
## 49388 City Hotel 27
## 49389 City Hotel 29
## 49390 City Hotel 80
## 49391 City Hotel 72
## 49392 City Hotel 15
## 49393 City Hotel 100
## 49394 City Hotel 197
## 49395 City Hotel 64
## 49396 City Hotel 65
## 49397 City Hotel 52
## 49398 City Hotel 29
## 49399 City Hotel 197
## 49400 City Hotel 158
## 49401 City Hotel 76
## 49402 City Hotel 78
## 49403 City Hotel 120
## 49404 City Hotel 123
## 49405 City Hotel 125
## 49406 City Hotel 9
## 49407 City Hotel 90
## 49408 City Hotel 78
## 49409 City Hotel 124
## 49410 City Hotel 101
## 49411 City Hotel 101
## 49412 City Hotel 1
## 49413 City Hotel 84
## 49414 City Hotel 26
## 49415 City Hotel 1
## 49416 City Hotel 138
## 49417 City Hotel 58
## 49418 City Hotel 58
## 49419 City Hotel 21
## 49420 City Hotel 99
## 49421 City Hotel 101
## 49422 City Hotel 32
## 49423 City Hotel 108
## 49424 City Hotel 32
## 49425 City Hotel 11
## 49426 City Hotel 44
## 49427 City Hotel 90
## 49428 City Hotel 118
## 49429 City Hotel 30
## 49430 City Hotel 63
## 49431 City Hotel 30
## 49432 City Hotel 100
## 49433 City Hotel 50
## 49434 City Hotel 85
## 49435 City Hotel 85
## 49436 City Hotel 8
## 49437 City Hotel 87
## 49438 City Hotel 31
## 49439 City Hotel 13
## 49440 City Hotel 281
## 49441 City Hotel 281
## 49442 City Hotel 281
## 49443 City Hotel 281
## 49444 City Hotel 281
## 49445 City Hotel 17
## 49446 City Hotel 281
## 49447 City Hotel 281
## 49448 City Hotel 281
## 49449 City Hotel 51
## 49450 City Hotel 281
## 49451 City Hotel 281
## 49452 City Hotel 281
## 49453 City Hotel 13
## 49454 City Hotel 87
## 49455 City Hotel 16
## 49456 City Hotel 31
## 49457 City Hotel 77
## 49458 City Hotel 281
## 49459 City Hotel 281
## 49460 City Hotel 281
## 49461 City Hotel 281
## 49462 City Hotel 281
## 49463 City Hotel 281
## 49464 City Hotel 281
## 49465 City Hotel 281
## 49466 City Hotel 281
## 49467 City Hotel 281
## 49468 City Hotel 281
## 49469 City Hotel 281
## 49470 City Hotel 30
## 49471 City Hotel 281
## 49472 City Hotel 281
## 49473 City Hotel 281
## 49474 City Hotel 281
## 49475 City Hotel 281
## 49476 City Hotel 281
## 49477 City Hotel 281
## 49478 City Hotel 18
## 49479 City Hotel 281
## 49480 City Hotel 126
## 49481 City Hotel 126
## 49482 City Hotel 126
## 49483 City Hotel 281
## 49484 City Hotel 126
## 49485 City Hotel 126
## 49486 City Hotel 126
## 49487 City Hotel 94
## 49488 City Hotel 101
## 49489 City Hotel 126
## 49490 City Hotel 126
## 49491 City Hotel 126
## 49492 City Hotel 126
## 49493 City Hotel 126
## 49494 City Hotel 126
## 49495 City Hotel 126
## 49496 City Hotel 107
## 49497 City Hotel 101
## 49498 City Hotel 101
## 49499 City Hotel 101
## 49500 City Hotel 126
## 49501 City Hotel 126
## 49502 City Hotel 126
## 49503 City Hotel 86
## 49504 City Hotel 101
## 49505 City Hotel 101
## 49506 City Hotel 126
## 49507 City Hotel 126
## 49508 City Hotel 126
## 49509 City Hotel 108
## 49510 City Hotel 101
## 49511 City Hotel 126
## 49512 City Hotel 126
## 49513 City Hotel 126
## 49514 City Hotel 126
## 49515 City Hotel 126
## 49516 City Hotel 126
## 49517 City Hotel 72
## 49518 City Hotel 87
## 49519 City Hotel 101
## 49520 City Hotel 126
## 49521 City Hotel 126
## 49522 City Hotel 78
## 49523 City Hotel 8
## 49524 City Hotel 101
## 49525 City Hotel 101
## 49526 City Hotel 126
## 49527 City Hotel 101
## 49528 City Hotel 94
## 49529 City Hotel 34
## 49530 City Hotel 101
## 49531 City Hotel 101
## 49532 City Hotel 126
## 49533 City Hotel 126
## 49534 City Hotel 126
## 49535 City Hotel 126
## 49536 City Hotel 101
## 49537 City Hotel 126
## 49538 City Hotel 126
## 49539 City Hotel 126
## 49540 City Hotel 74
## 49541 City Hotel 126
## 49542 City Hotel 126
## 49543 City Hotel 126
## 49544 City Hotel 88
## 49545 City Hotel 70
## 49546 City Hotel 19
## 49547 City Hotel 32
## 49548 City Hotel 31
## 49549 City Hotel 102
## 49550 City Hotel 68
## 49551 City Hotel 75
## 49552 City Hotel 101
## 49553 City Hotel 101
## 49554 City Hotel 29
## 49555 City Hotel 82
## 49556 City Hotel 124
## 49557 City Hotel 19
## 49558 City Hotel 17
## 49559 City Hotel 65
## 49560 City Hotel 69
## 49561 City Hotel 119
## 49562 City Hotel 122
## 49563 City Hotel 81
## 49564 City Hotel 26
## 49565 City Hotel 3
## 49566 City Hotel 116
## 49567 City Hotel 154
## 49568 City Hotel 122
## 49569 City Hotel 119
## 49570 City Hotel 4
## 49571 City Hotel 119
## 49572 City Hotel 122
## 49573 City Hotel 14
## 49574 City Hotel 17
## 49575 City Hotel 26
## 49576 City Hotel 26
## 49577 City Hotel 122
## 49578 City Hotel 122
## 49579 City Hotel 119
## 49580 City Hotel 122
## 49581 City Hotel 26
## 49582 City Hotel 122
## 49583 City Hotel 122
## 49584 City Hotel 59
## 49585 City Hotel 31
## 49586 City Hotel 119
## 49587 City Hotel 113
## 49588 City Hotel 15
## 49589 City Hotel 85
## 49590 City Hotel 15
## 49591 City Hotel 18
## 49592 City Hotel 61
## 49593 City Hotel 4
## 49594 City Hotel 18
## 49595 City Hotel 15
## 49596 City Hotel 104
## 49597 City Hotel 104
## 49598 City Hotel 104
## 49599 City Hotel 75
## 49600 City Hotel 107
## 49601 City Hotel 104
## 49602 City Hotel 104
## 49603 City Hotel 188
## 49604 City Hotel 136
## 49605 City Hotel 25
## 49606 City Hotel 108
## 49607 City Hotel 27
## 49608 City Hotel 90
## 49609 City Hotel 19
## 49610 City Hotel 27
## 49611 City Hotel 29
## 49612 City Hotel 95
## 49613 City Hotel 127
## 49614 City Hotel 101
## 49615 City Hotel 1
## 49616 City Hotel 72
## 49617 City Hotel 118
## 49618 City Hotel 1
## 49619 City Hotel 65
## 49620 City Hotel 6
## 49621 City Hotel 6
## 49622 City Hotel 6
## 49623 City Hotel 54
## 49624 City Hotel 131
## 49625 City Hotel 6
## 49626 City Hotel 14
## 49627 City Hotel 118
## 49628 City Hotel 53
## 49629 City Hotel 57
## 49630 City Hotel 89
## 49631 City Hotel 0
## 49632 City Hotel 62
## 49633 City Hotel 89
## 49634 City Hotel 14
## 49635 City Hotel 109
## 49636 City Hotel 77
## 49637 City Hotel 70
## 49638 City Hotel 94
## 49639 City Hotel 82
## 49640 City Hotel 109
## 49641 City Hotel 108
## 49642 City Hotel 22
## 49643 City Hotel 108
## 49644 City Hotel 76
## 49645 City Hotel 131
## 49646 City Hotel 111
## 49647 City Hotel 127
## 49648 City Hotel 82
## 49649 City Hotel 10
## 49650 City Hotel 32
## 49651 City Hotel 130
## 49652 City Hotel 137
## 49653 City Hotel 32
## 49654 City Hotel 10
## 49655 City Hotel 56
## 49656 City Hotel 40
## 49657 City Hotel 275
## 49658 City Hotel 275
## 49659 City Hotel 275
## 49660 City Hotel 275
## 49661 City Hotel 275
## 49662 City Hotel 275
## 49663 City Hotel 9
## 49664 City Hotel 27
## 49665 City Hotel 275
## 49666 City Hotel 275
## 49667 City Hotel 275
## 49668 City Hotel 275
## 49669 City Hotel 275
## 49670 City Hotel 275
## 49671 City Hotel 275
## 49672 City Hotel 275
## 49673 City Hotel 28
## 49674 City Hotel 36
## 49675 City Hotel 275
## 49676 City Hotel 275
## 49677 City Hotel 275
## 49678 City Hotel 275
## 49679 City Hotel 275
## 49680 City Hotel 275
## 49681 City Hotel 275
## 49682 City Hotel 275
## 49683 City Hotel 275
## 49684 City Hotel 275
## 49685 City Hotel 275
## 49686 City Hotel 275
## 49687 City Hotel 275
## 49688 City Hotel 275
## 49689 City Hotel 34
## 49690 City Hotel 14
## 49691 City Hotel 45
## 49692 City Hotel 32
## 49693 City Hotel 105
## 49694 City Hotel 35
## 49695 City Hotel 28
## 49696 City Hotel 28
## 49697 City Hotel 79
## 49698 City Hotel 105
## 49699 City Hotel 116
## 49700 City Hotel 3
## 49701 City Hotel 35
## 49702 City Hotel 134
## 49703 City Hotel 160
## 49704 City Hotel 106
## 49705 City Hotel 99
## 49706 City Hotel 103
## 49707 City Hotel 117
## 49708 City Hotel 95
## 49709 City Hotel 28
## 49710 City Hotel 33
## 49711 City Hotel 106
## 49712 City Hotel 57
## 49713 City Hotel 77
## 49714 City Hotel 54
## 49715 City Hotel 5
## 49716 City Hotel 7
## 49717 City Hotel 54
## 49718 City Hotel 72
## 49719 City Hotel 28
## 49720 City Hotel 47
## 49721 City Hotel 57
## 49722 City Hotel 23
## 49723 City Hotel 18
## 49724 City Hotel 95
## 49725 City Hotel 90
## 49726 City Hotel 104
## 49727 City Hotel 64
## 49728 City Hotel 109
## 49729 City Hotel 122
## 49730 City Hotel 101
## 49731 City Hotel 105
## 49732 City Hotel 104
## 49733 City Hotel 137
## 49734 City Hotel 122
## 49735 City Hotel 14
## 49736 City Hotel 104
## 49737 City Hotel 105
## 49738 City Hotel 130
## 49739 City Hotel 127
## 49740 City Hotel 56
## 49741 City Hotel 104
## 49742 City Hotel 111
## 49743 City Hotel 33
## 49744 City Hotel 112
## 49745 City Hotel 108
## 49746 City Hotel 14
## 49747 City Hotel 59
## 49748 City Hotel 9
## 49749 City Hotel 22
## 49750 City Hotel 9
## 49751 City Hotel 103
## 49752 City Hotel 103
## 49753 City Hotel 103
## 49754 City Hotel 103
## 49755 City Hotel 1
## 49756 City Hotel 103
## 49757 City Hotel 103
## 49758 City Hotel 103
## 49759 City Hotel 103
## 49760 City Hotel 103
## 49761 City Hotel 103
## 49762 City Hotel 103
## 49763 City Hotel 103
## 49764 City Hotel 103
## 49765 City Hotel 103
## 49766 City Hotel 103
## 49767 City Hotel 103
## 49768 City Hotel 103
## 49769 City Hotel 103
## 49770 City Hotel 103
## 49771 City Hotel 103
## 49772 City Hotel 103
## 49773 City Hotel 103
## 49774 City Hotel 103
## 49775 City Hotel 103
## 49776 City Hotel 103
## 49777 City Hotel 103
## 49778 City Hotel 103
## 49779 City Hotel 103
## 49780 City Hotel 103
## 49781 City Hotel 103
## 49782 City Hotel 103
## 49783 City Hotel 103
## 49784 City Hotel 103
## 49785 City Hotel 92
## 49786 City Hotel 103
## 49787 City Hotel 103
## 49788 City Hotel 103
## 49789 City Hotel 103
## 49790 City Hotel 103
## 49791 City Hotel 103
## 49792 City Hotel 103
## 49793 City Hotel 103
## 49794 City Hotel 1
## 49795 City Hotel 103
## 49796 City Hotel 103
## 49797 City Hotel 103
## 49798 City Hotel 103
## 49799 City Hotel 103
## 49800 City Hotel 103
## 49801 City Hotel 103
## 49802 City Hotel 103
## 49803 City Hotel 88
## 49804 City Hotel 103
## 49805 City Hotel 104
## 49806 City Hotel 29
## 49807 City Hotel 85
## 49808 City Hotel 130
## 49809 City Hotel 109
## 49810 City Hotel 126
## 49811 City Hotel 70
## 49812 City Hotel 110
## 49813 City Hotel 95
## 49814 City Hotel 27
## 49815 City Hotel 110
## 49816 City Hotel 110
## 49817 City Hotel 7
## 49818 City Hotel 270
## 49819 City Hotel 270
## 49820 City Hotel 270
## 49821 City Hotel 270
## 49822 City Hotel 265
## 49823 City Hotel 265
## 49824 City Hotel 265
## 49825 City Hotel 265
## 49826 City Hotel 270
## 49827 City Hotel 270
## 49828 City Hotel 270
## 49829 City Hotel 265
## 49830 City Hotel 265
## 49831 City Hotel 265
## 49832 City Hotel 138
## 49833 City Hotel 270
## 49834 City Hotel 265
## 49835 City Hotel 265
## 49836 City Hotel 265
## 49837 City Hotel 265
## 49838 City Hotel 265
## 49839 City Hotel 265
## 49840 City Hotel 270
## 49841 City Hotel 270
## 49842 City Hotel 117
## 49843 City Hotel 270
## 49844 City Hotel 265
## 49845 City Hotel 265
## 49846 City Hotel 265
## 49847 City Hotel 270
## 49848 City Hotel 270
## 49849 City Hotel 270
## 49850 City Hotel 270
## 49851 City Hotel 265
## 49852 City Hotel 265
## 49853 City Hotel 265
## 49854 City Hotel 265
## 49855 City Hotel 270
## 49856 City Hotel 270
## 49857 City Hotel 265
## 49858 City Hotel 265
## 49859 City Hotel 265
## 49860 City Hotel 265
## 49861 City Hotel 265
## 49862 City Hotel 270
## 49863 City Hotel 270
## 49864 City Hotel 270
## 49865 City Hotel 270
## 49866 City Hotel 5
## 49867 City Hotel 95
## 49868 City Hotel 110
## 49869 City Hotel 86
## 49870 City Hotel 95
## 49871 City Hotel 95
## 49872 City Hotel 16
## 49873 City Hotel 270
## 49874 City Hotel 270
## 49875 City Hotel 265
## 49876 City Hotel 265
## 49877 City Hotel 265
## 49878 City Hotel 265
## 49879 City Hotel 64
## 49880 City Hotel 270
## 49881 City Hotel 270
## 49882 City Hotel 270
## 49883 City Hotel 270
## 49884 City Hotel 270
## 49885 City Hotel 270
## 49886 City Hotel 270
## 49887 City Hotel 265
## 49888 City Hotel 265
## 49889 City Hotel 265
## 49890 City Hotel 265
## 49891 City Hotel 265
## 49892 City Hotel 265
## 49893 City Hotel 265
## 49894 City Hotel 265
## 49895 City Hotel 270
## 49896 City Hotel 270
## 49897 City Hotel 270
## 49898 City Hotel 270
## 49899 City Hotel 270
## 49900 City Hotel 270
## 49901 City Hotel 270
## 49902 City Hotel 270
## 49903 City Hotel 265
## 49904 City Hotel 265
## 49905 City Hotel 265
## 49906 City Hotel 265
## 49907 City Hotel 270
## 49908 City Hotel 270
## 49909 City Hotel 270
## 49910 City Hotel 270
## 49911 City Hotel 265
## 49912 City Hotel 265
## 49913 City Hotel 265
## 49914 City Hotel 265
## 49915 City Hotel 265
## 49916 City Hotel 270
## 49917 City Hotel 270
## 49918 City Hotel 270
## 49919 City Hotel 265
## 49920 City Hotel 265
## 49921 City Hotel 265
## 49922 City Hotel 265
## 49923 City Hotel 39
## 49924 City Hotel 39
## 49925 City Hotel 109
## 49926 City Hotel 10
## 49927 City Hotel 136
## 49928 City Hotel 41
## 49929 City Hotel 8
## 49930 City Hotel 103
## 49931 City Hotel 288
## 49932 City Hotel 2
## 49933 City Hotel 68
## 49934 City Hotel 288
## 49935 City Hotel 41
## 49936 City Hotel 288
## 49937 City Hotel 288
## 49938 City Hotel 288
## 49939 City Hotel 288
## 49940 City Hotel 288
## 49941 City Hotel 288
## 49942 City Hotel 288
## 49943 City Hotel 52
## 49944 City Hotel 288
## 49945 City Hotel 288
## 49946 City Hotel 288
## 49947 City Hotel 288
## 49948 City Hotel 288
## 49949 City Hotel 288
## 49950 City Hotel 288
## 49951 City Hotel 288
## 49952 City Hotel 288
## 49953 City Hotel 288
## 49954 City Hotel 288
## 49955 City Hotel 24
## 49956 City Hotel 288
## 49957 City Hotel 288
## 49958 City Hotel 288
## 49959 City Hotel 288
## 49960 City Hotel 288
## 49961 City Hotel 43
## 49962 City Hotel 288
## 49963 City Hotel 288
## 49964 City Hotel 5
## 49965 City Hotel 288
## 49966 City Hotel 288
## 49967 City Hotel 288
## 49968 City Hotel 288
## 49969 City Hotel 288
## 49970 City Hotel 63
## 49971 City Hotel 41
## 49972 City Hotel 137
## 49973 City Hotel 38
## 49974 City Hotel 123
## 49975 City Hotel 58
## 49976 City Hotel 38
## 49977 City Hotel 56
## 49978 City Hotel 57
## 49979 City Hotel 16
## 49980 City Hotel 15
## 49981 City Hotel 18
## 49982 City Hotel 66
## 49983 City Hotel 7
## 49984 City Hotel 70
## 49985 City Hotel 57
## 49986 City Hotel 40
## 49987 City Hotel 58
## 49988 City Hotel 70
## 49989 City Hotel 70
## 49990 City Hotel 168
## 49991 City Hotel 168
## 49992 City Hotel 168
## 49993 City Hotel 168
## 49994 City Hotel 58
## 49995 City Hotel 59
## 49996 City Hotel 168
## 49997 City Hotel 61
## 49998 City Hotel 168
## 49999 City Hotel 168
## [ reached 'max' / getOption("max.print") -- omitted 69391 rows ]
hotels %>%
select(-agent)
## hotel is_canceled lead_time arrival_date_year arrival_date_month
## 1 Resort Hotel 0 342 2015 July
## 2 Resort Hotel 0 737 2015 July
## 3 Resort Hotel 0 7 2015 July
## 4 Resort Hotel 0 13 2015 July
## 5 Resort Hotel 0 14 2015 July
## 6 Resort Hotel 0 14 2015 July
## 7 Resort Hotel 0 0 2015 July
## 8 Resort Hotel 0 9 2015 July
## 9 Resort Hotel 1 85 2015 July
## 10 Resort Hotel 1 75 2015 July
## 11 Resort Hotel 1 23 2015 July
## 12 Resort Hotel 0 35 2015 July
## 13 Resort Hotel 0 68 2015 July
## 14 Resort Hotel 0 18 2015 July
## 15 Resort Hotel 0 37 2015 July
## 16 Resort Hotel 0 68 2015 July
## 17 Resort Hotel 0 37 2015 July
## 18 Resort Hotel 0 12 2015 July
## 19 Resort Hotel 0 0 2015 July
## 20 Resort Hotel 0 7 2015 July
## 21 Resort Hotel 0 37 2015 July
## 22 Resort Hotel 0 72 2015 July
## 23 Resort Hotel 0 72 2015 July
## 24 Resort Hotel 0 72 2015 July
## 25 Resort Hotel 0 127 2015 July
## 26 Resort Hotel 0 78 2015 July
## 27 Resort Hotel 0 48 2015 July
## 28 Resort Hotel 1 60 2015 July
## 29 Resort Hotel 0 77 2015 July
## 30 Resort Hotel 0 99 2015 July
## 31 Resort Hotel 0 118 2015 July
## 32 Resort Hotel 0 95 2015 July
## 33 Resort Hotel 1 96 2015 July
## 34 Resort Hotel 0 69 2015 July
## 35 Resort Hotel 1 45 2015 July
## 36 Resort Hotel 1 40 2015 July
## 37 Resort Hotel 0 15 2015 July
## 38 Resort Hotel 0 36 2015 July
## 39 Resort Hotel 1 43 2015 July
## 40 Resort Hotel 0 70 2015 July
## 41 Resort Hotel 1 45 2015 July
## 42 Resort Hotel 0 45 2015 July
## 43 Resort Hotel 0 16 2015 July
## 44 Resort Hotel 0 70 2015 July
## 45 Resort Hotel 0 107 2015 July
## 46 Resort Hotel 1 47 2015 July
## 47 Resort Hotel 0 96 2015 July
## 48 Resort Hotel 0 113 2015 July
## 49 Resort Hotel 0 90 2015 July
## 50 Resort Hotel 0 50 2015 July
## 51 Resort Hotel 0 113 2015 July
## 52 Resort Hotel 0 93 2015 July
## 53 Resort Hotel 0 76 2015 July
## 54 Resort Hotel 0 3 2015 July
## 55 Resort Hotel 0 1 2015 July
## 56 Resort Hotel 0 1 2015 July
## 57 Resort Hotel 0 0 2015 July
## 58 Resort Hotel 0 0 2015 July
## 59 Resort Hotel 0 0 2015 July
## 60 Resort Hotel 0 14 2015 July
## 61 Resort Hotel 0 10 2015 July
## 62 Resort Hotel 0 5 2015 July
## 63 Resort Hotel 0 17 2015 July
## 64 Resort Hotel 0 93 2015 July
## 65 Resort Hotel 1 3 2015 July
## 66 Resort Hotel 0 10 2015 July
## 67 Resort Hotel 0 3 2015 July
## 68 Resort Hotel 0 51 2015 July
## 69 Resort Hotel 1 71 2015 July
## 70 Resort Hotel 1 63 2015 July
## 71 Resort Hotel 1 62 2015 July
## 72 Resort Hotel 1 101 2015 July
## 73 Resort Hotel 0 2 2015 July
## 74 Resort Hotel 0 15 2015 July
## 75 Resort Hotel 1 51 2015 July
## 76 Resort Hotel 0 3 2015 July
## 77 Resort Hotel 1 48 2015 July
## 78 Resort Hotel 0 2 2015 July
## 79 Resort Hotel 0 72 2015 July
## 80 Resort Hotel 0 81 2015 July
## 81 Resort Hotel 0 99 2015 July
## 82 Resort Hotel 1 368 2015 July
## 83 Resort Hotel 0 364 2015 July
## 84 Resort Hotel 1 81 2015 July
## 85 Resort Hotel 0 99 2015 July
## 86 Resort Hotel 0 324 2015 July
## 87 Resort Hotel 0 69 2015 July
## 88 Resort Hotel 1 79 2015 July
## 89 Resort Hotel 0 12 2015 July
## 90 Resort Hotel 0 9 2015 July
## 91 Resort Hotel 0 1 2015 July
## 92 Resort Hotel 0 21 2015 July
## 93 Resort Hotel 0 9 2015 July
## 94 Resort Hotel 0 109 2015 July
## 95 Resort Hotel 1 109 2015 July
## 96 Resort Hotel 1 72 2015 July
## 97 Resort Hotel 1 63 2015 July
## 98 Resort Hotel 0 63 2015 July
## 99 Resort Hotel 0 101 2015 July
## 100 Resort Hotel 0 102 2015 July
## 101 Resort Hotel 0 4 2015 July
## 102 Resort Hotel 0 98 2015 July
## 103 Resort Hotel 0 92 2015 July
## 104 Resort Hotel 0 95 2015 July
## 105 Resort Hotel 0 102 2015 July
## 106 Resort Hotel 1 26 2015 July
## 107 Resort Hotel 1 73 2015 July
## 108 Resort Hotel 1 102 2015 July
## 109 Resort Hotel 0 115 2015 July
## 110 Resort Hotel 0 102 2015 July
## 111 Resort Hotel 0 86 2015 July
## 112 Resort Hotel 0 78 2015 July
## 113 Resort Hotel 0 52 2015 July
## 114 Resort Hotel 0 29 2015 July
## 115 Resort Hotel 1 101 2015 July
## 116 Resort Hotel 0 109 2015 July
## 117 Resort Hotel 0 92 2015 July
## 118 Resort Hotel 0 92 2015 July
## 119 Resort Hotel 0 79 2015 July
## 120 Resort Hotel 0 2 2015 July
## 121 Resort Hotel 0 30 2015 July
## 122 Resort Hotel 1 51 2015 July
## 123 Resort Hotel 1 36 2015 July
## 124 Resort Hotel 1 73 2015 July
## 125 Resort Hotel 1 33 2015 July
## 126 Resort Hotel 0 32 2015 July
## 127 Resort Hotel 0 8 2015 July
## 128 Resort Hotel 0 100 2015 July
## 129 Resort Hotel 0 1 2015 July
## 130 Resort Hotel 0 100 2015 July
## 131 Resort Hotel 0 100 2015 July
## 132 Resort Hotel 0 9 2015 July
## 133 Resort Hotel 1 5 2015 July
## 134 Resort Hotel 0 0 2015 July
## 135 Resort Hotel 0 9 2015 July
## 136 Resort Hotel 0 2 2015 July
## 137 Resort Hotel 0 2 2015 July
## 138 Resort Hotel 0 9 2015 July
## 139 Resort Hotel 1 5 2015 July
## 140 Resort Hotel 0 2 2015 July
## 141 Resort Hotel 0 44 2015 July
## 142 Resort Hotel 0 80 2015 July
## 143 Resort Hotel 0 97 2015 July
## 144 Resort Hotel 0 109 2015 July
## 145 Resort Hotel 0 30 2015 July
## 146 Resort Hotel 0 64 2015 July
## 147 Resort Hotel 0 39 2015 July
## 148 Resort Hotel 0 90 2015 July
## 149 Resort Hotel 1 34 2015 July
## 150 Resort Hotel 1 93 2015 July
## 151 Resort Hotel 0 97 2015 July
## 152 Resort Hotel 0 29 2015 July
## 153 Resort Hotel 1 101 2015 July
## 154 Resort Hotel 0 27 2015 July
## 155 Resort Hotel 0 8 2015 July
## 156 Resort Hotel 0 82 2015 July
## 157 Resort Hotel 0 94 2015 July
## 158 Resort Hotel 0 110 2015 July
## 159 Resort Hotel 0 96 2015 July
## 160 Resort Hotel 0 79 2015 July
## 161 Resort Hotel 0 115 2015 July
## 162 Resort Hotel 0 111 2015 July
## 163 Resort Hotel 0 51 2015 July
## 164 Resort Hotel 0 94 2015 July
## 165 Resort Hotel 0 81 2015 July
## 166 Resort Hotel 0 84 2015 July
## 167 Resort Hotel 0 51 2015 July
## 168 Resort Hotel 0 111 2015 July
## 169 Resort Hotel 0 0 2015 July
## 170 Resort Hotel 0 2 2015 July
## 171 Resort Hotel 0 7 2015 July
## 172 Resort Hotel 0 98 2015 July
## 173 Resort Hotel 0 95 2015 July
## 174 Resort Hotel 1 48 2015 July
## 175 Resort Hotel 0 66 2015 July
## 176 Resort Hotel 0 104 2015 July
## 177 Resort Hotel 0 28 2015 July
## 178 Resort Hotel 0 34 2015 July
## 179 Resort Hotel 0 98 2015 July
## 180 Resort Hotel 0 104 2015 July
## 181 Resort Hotel 0 68 2015 July
## 182 Resort Hotel 1 86 2015 July
## 183 Resort Hotel 0 258 2015 July
## 184 Resort Hotel 0 111 2015 July
## 185 Resort Hotel 1 94 2015 July
## 186 Resort Hotel 0 112 2015 July
## 187 Resort Hotel 0 100 2015 July
## 188 Resort Hotel 0 33 2015 July
## 189 Resort Hotel 0 97 2015 July
## 190 Resort Hotel 0 80 2015 July
## 191 Resort Hotel 0 90 2015 July
## 192 Resort Hotel 0 111 2015 July
## 193 Resort Hotel 0 65 2015 July
## 194 Resort Hotel 1 67 2015 July
## 195 Resort Hotel 0 55 2015 July
## 196 Resort Hotel 0 21 2015 July
## 197 Resort Hotel 0 8 2015 July
## 198 Resort Hotel 0 8 2015 July
## 199 Resort Hotel 0 0 2015 July
## 200 Resort Hotel 0 0 2015 July
## 201 Resort Hotel 0 0 2015 July
## 202 Resort Hotel 0 8 2015 July
## 203 Resort Hotel 0 66 2015 July
## 204 Resort Hotel 0 88 2015 July
## 205 Resort Hotel 0 0 2015 July
## 206 Resort Hotel 1 43 2015 July
## 207 Resort Hotel 1 88 2015 July
## 208 Resort Hotel 0 54 2015 July
## 209 Resort Hotel 1 292 2015 July
## 210 Resort Hotel 0 112 2015 July
## 211 Resort Hotel 0 68 2015 July
## 212 Resort Hotel 0 7 2015 July
## 213 Resort Hotel 0 1 2015 July
## 214 Resort Hotel 1 113 2015 July
## 215 Resort Hotel 0 5 2015 July
## 216 Resort Hotel 0 83 2015 July
## 217 Resort Hotel 1 105 2015 July
## 218 Resort Hotel 0 0 2015 July
## 219 Resort Hotel 1 1 2015 July
## 220 Resort Hotel 1 1 2015 July
## 221 Resort Hotel 0 1 2015 July
## 222 Resort Hotel 1 102 2015 July
## 223 Resort Hotel 0 113 2015 July
## 224 Resort Hotel 1 280 2015 July
## 225 Resort Hotel 0 96 2015 July
## 226 Resort Hotel 0 394 2015 July
## 227 Resort Hotel 0 33 2015 July
## 228 Resort Hotel 0 82 2015 July
## 229 Resort Hotel 0 100 2015 July
## 230 Resort Hotel 0 100 2015 July
## 231 Resort Hotel 0 17 2015 July
## 232 Resort Hotel 0 68 2015 July
## 233 Resort Hotel 0 12 2015 July
## 234 Resort Hotel 1 77 2015 July
## 235 Resort Hotel 1 24 2015 July
## 236 Resort Hotel 1 44 2015 July
## 237 Resort Hotel 0 78 2015 July
## 238 Resort Hotel 1 17 2015 July
## 239 Resort Hotel 1 103 2015 July
## 240 Resort Hotel 0 16 2015 July
## 241 Resort Hotel 0 14 2015 July
## 242 Resort Hotel 0 77 2015 July
## 243 Resort Hotel 0 90 2015 July
## 244 Resort Hotel 0 90 2015 July
## 245 Resort Hotel 0 90 2015 July
## 246 Resort Hotel 0 366 2015 July
## 247 Resort Hotel 0 249 2015 July
## 248 Resort Hotel 1 69 2015 July
## 249 Resort Hotel 0 10 2015 July
## 250 Resort Hotel 0 22 2015 July
## 251 Resort Hotel 0 91 2015 July
## 252 Resort Hotel 0 23 2015 July
## 253 Resort Hotel 0 11 2015 July
## 254 Resort Hotel 0 3 2015 July
## 255 Resort Hotel 0 13 2015 July
## 256 Resort Hotel 0 108 2015 July
## 257 Resort Hotel 0 91 2015 July
## 258 Resort Hotel 0 37 2015 July
## 259 Resort Hotel 0 21 2015 July
## 260 Resort Hotel 0 106 2015 July
## 261 Resort Hotel 0 30 2015 July
## 262 Resort Hotel 0 30 2015 July
## 263 Resort Hotel 1 51 2015 July
## 264 Resort Hotel 0 79 2015 July
## 265 Resort Hotel 0 21 2015 July
## 266 Resort Hotel 0 35 2015 July
## 267 Resort Hotel 0 78 2015 July
## 268 Resort Hotel 0 31 2015 July
## 269 Resort Hotel 0 78 2015 July
## 270 Resort Hotel 0 78 2015 July
## 271 Resort Hotel 0 44 2015 July
## 272 Resort Hotel 0 34 2015 July
## 273 Resort Hotel 0 87 2015 July
## 274 Resort Hotel 0 11 2015 July
## 275 Resort Hotel 0 115 2015 July
## 276 Resort Hotel 0 86 2015 July
## 277 Resort Hotel 0 41 2015 July
## 278 Resort Hotel 0 32 2015 July
## 279 Resort Hotel 0 34 2015 July
## 280 Resort Hotel 0 34 2015 July
## 281 Resort Hotel 1 100 2015 July
## 282 Resort Hotel 0 44 2015 July
## 283 Resort Hotel 0 304 2015 July
## 284 Resort Hotel 1 36 2015 July
## 285 Resort Hotel 0 117 2015 July
## 286 Resort Hotel 0 70 2015 July
## 287 Resort Hotel 0 110 2015 July
## 288 Resort Hotel 1 109 2015 July
## 289 Resort Hotel 0 33 2015 July
## 290 Resort Hotel 0 33 2015 July
## 291 Resort Hotel 0 33 2015 July
## 292 Resort Hotel 0 0 2015 July
## 293 Resort Hotel 0 0 2015 July
## 294 Resort Hotel 0 0 2015 July
## 295 Resort Hotel 0 0 2015 July
## 296 Resort Hotel 0 84 2015 July
## 297 Resort Hotel 0 71 2015 July
## 298 Resort Hotel 0 16 2015 July
## 299 Resort Hotel 0 54 2015 July
## 300 Resort Hotel 0 8 2015 July
## 301 Resort Hotel 0 36 2015 July
## 302 Resort Hotel 0 40 2015 July
## 303 Resort Hotel 1 59 2015 July
## 304 Resort Hotel 0 79 2015 July
## 305 Resort Hotel 0 32 2015 July
## 306 Resort Hotel 0 110 2015 July
## 307 Resort Hotel 0 33 2015 July
## 308 Resort Hotel 0 53 2015 July
## 309 Resort Hotel 0 2 2015 July
## 310 Resort Hotel 0 8 2015 July
## 311 Resort Hotel 1 72 2015 July
## 312 Resort Hotel 0 12 2015 July
## 313 Resort Hotel 0 48 2015 July
## 314 Resort Hotel 0 90 2015 July
## 315 Resort Hotel 0 34 2015 July
## 316 Resort Hotel 1 58 2015 July
## 317 Resort Hotel 0 59 2015 July
## 318 Resort Hotel 0 90 2015 July
## 319 Resort Hotel 0 116 2015 July
## 320 Resort Hotel 0 31 2015 July
## 321 Resort Hotel 1 51 2015 July
## 322 Resort Hotel 0 48 2015 July
## 323 Resort Hotel 0 59 2015 July
## 324 Resort Hotel 1 97 2015 July
## 325 Resort Hotel 0 12 2015 July
## 326 Resort Hotel 0 64 2015 July
## 327 Resort Hotel 0 31 2015 July
## 328 Resort Hotel 0 59 2015 July
## 329 Resort Hotel 1 55 2015 July
## 330 Resort Hotel 0 81 2015 July
## 331 Resort Hotel 0 1 2015 July
## 332 Resort Hotel 0 34 2015 July
## 333 Resort Hotel 0 13 2015 July
## 334 Resort Hotel 0 40 2015 July
## 335 Resort Hotel 0 1 2015 July
## 336 Resort Hotel 0 34 2015 July
## 337 Resort Hotel 0 88 2015 July
## 338 Resort Hotel 0 9 2015 July
## 339 Resort Hotel 1 24 2015 July
## 340 Resort Hotel 0 97 2015 July
## 341 Resort Hotel 0 60 2015 July
## 342 Resort Hotel 0 100 2015 July
## 343 Resort Hotel 0 50 2015 July
## 344 Resort Hotel 1 47 2015 July
## 345 Resort Hotel 0 8 2015 July
## 346 Resort Hotel 0 34 2015 July
## 347 Resort Hotel 0 47 2015 July
## 348 Resort Hotel 0 115 2015 July
## 349 Resort Hotel 1 79 2015 July
## 350 Resort Hotel 0 91 2015 July
## 351 Resort Hotel 0 98 2015 July
## 352 Resort Hotel 0 109 2015 July
## 353 Resort Hotel 0 0 2015 July
## 354 Resort Hotel 0 98 2015 July
## 355 Resort Hotel 0 0 2015 July
## 356 Resort Hotel 0 9 2015 July
## 357 Resort Hotel 0 62 2015 July
## 358 Resort Hotel 1 45 2015 July
## 359 Resort Hotel 0 42 2015 July
## 360 Resort Hotel 0 54 2015 July
## 361 Resort Hotel 0 51 2015 July
## 362 Resort Hotel 0 54 2015 July
## 363 Resort Hotel 0 58 2015 July
## 364 Resort Hotel 0 0 2015 July
## 365 Resort Hotel 1 60 2015 July
## 366 Resort Hotel 1 321 2015 July
## 367 Resort Hotel 0 40 2015 July
## 368 Resort Hotel 1 51 2015 July
## 369 Resort Hotel 0 38 2015 July
## 370 Resort Hotel 1 75 2015 July
## 371 Resort Hotel 0 101 2015 July
## 372 Resort Hotel 1 42 2015 July
## 373 Resort Hotel 0 40 2015 July
## 374 Resort Hotel 0 109 2015 July
## 375 Resort Hotel 1 81 2015 July
## 376 Resort Hotel 1 98 2015 July
## 377 Resort Hotel 0 32 2015 July
## 378 Resort Hotel 0 72 2015 July
## 379 Resort Hotel 0 115 2015 July
## 380 Resort Hotel 0 118 2015 July
## 381 Resort Hotel 0 81 2015 July
## 382 Resort Hotel 1 95 2015 July
## 383 Resort Hotel 0 16 2015 July
## 384 Resort Hotel 0 56 2015 July
## 385 Resort Hotel 0 88 2015 July
## 386 Resort Hotel 0 41 2015 July
## 387 Resort Hotel 1 40 2015 July
## 388 Resort Hotel 0 1 2015 July
## 389 Resort Hotel 0 1 2015 July
## 390 Resort Hotel 0 1 2015 July
## 391 Resort Hotel 1 76 2015 July
## 392 Resort Hotel 0 0 2015 July
## 393 Resort Hotel 0 49 2015 July
## 394 Resort Hotel 0 76 2015 July
## 395 Resort Hotel 0 73 2015 July
## 396 Resort Hotel 0 73 2015 July
## 397 Resort Hotel 0 317 2015 July
## 398 Resort Hotel 1 112 2015 July
## 399 Resort Hotel 0 6 2015 July
## 400 Resort Hotel 0 8 2015 July
## 401 Resort Hotel 1 96 2015 July
## 402 Resort Hotel 1 96 2015 July
## 403 Resort Hotel 0 99 2015 July
## 404 Resort Hotel 0 66 2015 July
## 405 Resort Hotel 0 38 2015 July
## 406 Resort Hotel 0 38 2015 July
## 407 Resort Hotel 0 113 2015 July
## 408 Resort Hotel 0 0 2015 July
## 409 Resort Hotel 1 62 2015 July
## 410 Resort Hotel 1 39 2015 July
## 411 Resort Hotel 0 37 2015 July
## 412 Resort Hotel 1 58 2015 July
## 413 Resort Hotel 0 37 2015 July
## 414 Resort Hotel 0 57 2015 July
## 415 Resort Hotel 0 57 2015 July
## 416 Resort Hotel 0 57 2015 July
## 417 Resort Hotel 0 57 2015 July
## 418 Resort Hotel 0 57 2015 July
## 419 Resort Hotel 0 83 2015 July
## 420 Resort Hotel 0 57 2015 July
## 421 Resort Hotel 0 57 2015 July
## 422 Resort Hotel 1 57 2015 July
## 423 Resort Hotel 0 57 2015 July
## 424 Resort Hotel 0 57 2015 July
## 425 Resort Hotel 0 57 2015 July
## 426 Resort Hotel 0 57 2015 July
## 427 Resort Hotel 0 57 2015 July
## 428 Resort Hotel 0 57 2015 July
## 429 Resort Hotel 0 57 2015 July
## 430 Resort Hotel 0 57 2015 July
## 431 Resort Hotel 0 57 2015 July
## 432 Resort Hotel 0 57 2015 July
## 433 Resort Hotel 0 57 2015 July
## 434 Resort Hotel 0 57 2015 July
## 435 Resort Hotel 1 66 2015 July
## 436 Resort Hotel 0 13 2015 July
## 437 Resort Hotel 0 50 2015 July
## 438 Resort Hotel 1 48 2015 July
## 439 Resort Hotel 1 0 2015 July
## 440 Resort Hotel 0 7 2015 July
## 441 Resort Hotel 0 0 2015 July
## 442 Resort Hotel 1 66 2015 July
## 443 Resort Hotel 0 13 2015 July
## 444 Resort Hotel 0 66 2015 July
## 445 Resort Hotel 0 10 2015 July
## 446 Resort Hotel 1 10 2015 July
## 447 Resort Hotel 1 58 2015 July
## 448 Resort Hotel 1 17 2015 July
## 449 Resort Hotel 0 19 2015 July
## 450 Resort Hotel 0 10 2015 July
## 451 Resort Hotel 1 12 2015 July
## 452 Resort Hotel 0 10 2015 July
## 453 Resort Hotel 0 63 2015 July
## 454 Resort Hotel 1 35 2015 July
## 455 Resort Hotel 0 113 2015 July
## 456 Resort Hotel 1 35 2015 July
## 457 Resort Hotel 0 68 2015 July
## 458 Resort Hotel 0 113 2015 July
## 459 Resort Hotel 0 21 2015 July
## 460 Resort Hotel 0 6 2015 July
## 461 Resort Hotel 0 7 2015 July
## 462 Resort Hotel 0 17 2015 July
## 463 Resort Hotel 0 1 2015 July
## 464 Resort Hotel 0 2 2015 July
## 465 Resort Hotel 1 15 2015 July
## 466 Resort Hotel 1 7 2015 July
## 467 Resort Hotel 0 11 2015 July
## 468 Resort Hotel 1 6 2015 July
## 469 Resort Hotel 0 1 2015 July
## 470 Resort Hotel 0 1 2015 July
## 471 Resort Hotel 0 48 2015 July
## 472 Resort Hotel 0 15 2015 July
## 473 Resort Hotel 1 3 2015 July
## 474 Resort Hotel 1 23 2015 July
## 475 Resort Hotel 0 53 2015 July
## 476 Resort Hotel 0 53 2015 July
## 477 Resort Hotel 0 94 2015 July
## 478 Resort Hotel 0 64 2015 July
## 479 Resort Hotel 0 53 2015 July
## 480 Resort Hotel 0 53 2015 July
## 481 Resort Hotel 0 64 2015 July
## 482 Resort Hotel 0 53 2015 July
## 483 Resort Hotel 0 24 2015 July
## 484 Resort Hotel 0 24 2015 July
## 485 Resort Hotel 0 23 2015 July
## 486 Resort Hotel 0 53 2015 July
## 487 Resort Hotel 1 23 2015 July
## 488 Resort Hotel 0 90 2015 July
## 489 Resort Hotel 0 79 2015 July
## 490 Resort Hotel 0 43 2015 July
## 491 Resort Hotel 0 90 2015 July
## 492 Resort Hotel 0 65 2015 July
## 493 Resort Hotel 0 65 2015 July
## 494 Resort Hotel 0 99 2015 July
## 495 Resort Hotel 0 25 2015 July
## 496 Resort Hotel 0 92 2015 July
## 497 Resort Hotel 0 91 2015 July
## 498 Resort Hotel 0 38 2015 July
## 499 Resort Hotel 0 6 2015 July
## 500 Resort Hotel 0 38 2015 July
## 501 Resort Hotel 0 13 2015 July
## 502 Resort Hotel 1 32 2015 July
## 503 Resort Hotel 0 315 2015 July
## 504 Resort Hotel 0 8 2015 July
## 505 Resort Hotel 1 0 2015 July
## 506 Resort Hotel 0 91 2015 July
## 507 Resort Hotel 0 3 2015 July
## 508 Resort Hotel 0 9 2015 July
## 509 Resort Hotel 0 19 2015 July
## 510 Resort Hotel 0 25 2015 July
## 511 Resort Hotel 0 108 2015 July
## 512 Resort Hotel 1 37 2015 July
## 513 Resort Hotel 0 45 2015 July
## 514 Resort Hotel 0 64 2015 July
## 515 Resort Hotel 0 44 2015 July
## 516 Resort Hotel 0 26 2015 July
## 517 Resort Hotel 1 96 2015 July
## 518 Resort Hotel 1 123 2015 July
## 519 Resort Hotel 1 42 2015 July
## 520 Resort Hotel 0 59 2015 July
## 521 Resort Hotel 0 28 2015 July
## 522 Resort Hotel 0 106 2015 July
## 523 Resort Hotel 0 1 2015 July
## 524 Resort Hotel 0 0 2015 July
## 525 Resort Hotel 0 4 2015 July
## 526 Resort Hotel 0 3 2015 July
## 527 Resort Hotel 0 73 2015 July
## 528 Resort Hotel 0 44 2015 July
## 529 Resort Hotel 0 95 2015 July
## 530 Resort Hotel 0 94 2015 July
## 531 Resort Hotel 1 40 2015 July
## 532 Resort Hotel 0 64 2015 July
## 533 Resort Hotel 0 64 2015 July
## 534 Resort Hotel 0 94 2015 July
## 535 Resort Hotel 0 57 2015 July
## 536 Resort Hotel 1 60 2015 July
## 537 Resort Hotel 0 57 2015 July
## 538 Resort Hotel 0 87 2015 July
## 539 Resort Hotel 0 0 2015 July
## 540 Resort Hotel 0 0 2015 July
## 541 Resort Hotel 0 6 2015 July
## 542 Resort Hotel 0 0 2015 July
## 543 Resort Hotel 0 19 2015 July
## 544 Resort Hotel 0 4 2015 July
## 545 Resort Hotel 1 59 2015 July
## 546 Resort Hotel 0 44 2015 July
## 547 Resort Hotel 1 37 2015 July
## 548 Resort Hotel 0 66 2015 July
## 549 Resort Hotel 1 38 2015 July
## 550 Resort Hotel 1 62 2015 July
## 551 Resort Hotel 0 41 2015 July
## 552 Resort Hotel 1 60 2015 July
## 553 Resort Hotel 0 104 2015 July
## 554 Resort Hotel 1 62 2015 July
## 555 Resort Hotel 0 117 2015 July
## 556 Resort Hotel 1 31 2015 July
## 557 Resort Hotel 0 34 2015 July
## 558 Resort Hotel 0 47 2015 July
## 559 Resort Hotel 1 24 2015 July
## 560 Resort Hotel 1 104 2015 July
## 561 Resort Hotel 0 104 2015 July
## 562 Resort Hotel 0 32 2015 July
## 563 Resort Hotel 1 47 2015 July
## 564 Resort Hotel 0 29 2015 July
## 565 Resort Hotel 0 30 2015 July
## 566 Resort Hotel 0 123 2015 July
## 567 Resort Hotel 0 14 2015 July
## 568 Resort Hotel 1 118 2015 July
## 569 Resort Hotel 0 0 2015 July
## 570 Resort Hotel 0 0 2015 July
## 571 Resort Hotel 0 79 2015 July
## 572 Resort Hotel 0 63 2015 July
## 573 Resort Hotel 0 68 2015 July
## 574 Resort Hotel 0 96 2015 July
## 575 Resort Hotel 1 41 2015 July
## 576 Resort Hotel 0 46 2015 July
## 577 Resort Hotel 1 41 2015 July
## 578 Resort Hotel 1 60 2015 July
## 579 Resort Hotel 0 41 2015 July
## 580 Resort Hotel 1 69 2015 July
## 581 Resort Hotel 1 41 2015 July
## 582 Resort Hotel 0 52 2015 July
## 583 Resort Hotel 1 41 2015 July
## 584 Resort Hotel 0 89 2015 July
## 585 Resort Hotel 1 28 2015 July
## 586 Resort Hotel 0 65 2015 July
## 587 Resort Hotel 0 82 2015 July
## 588 Resort Hotel 0 42 2015 July
## 589 Resort Hotel 0 62 2015 July
## 590 Resort Hotel 1 86 2015 July
## 591 Resort Hotel 1 118 2015 July
## 592 Resort Hotel 0 28 2015 July
## 593 Resort Hotel 1 52 2015 July
## 594 Resort Hotel 1 49 2015 July
## 595 Resort Hotel 0 39 2015 July
## 596 Resort Hotel 0 39 2015 July
## 597 Resort Hotel 0 39 2015 July
## 598 Resort Hotel 1 7 2015 July
## 599 Resort Hotel 1 7 2015 July
## 600 Resort Hotel 1 42 2015 July
## 601 Resort Hotel 0 5 2015 July
## 602 Resort Hotel 1 81 2015 July
## 603 Resort Hotel 1 63 2015 July
## 604 Resort Hotel 0 61 2015 July
## 605 Resort Hotel 0 8 2015 July
## 606 Resort Hotel 0 89 2015 July
## 607 Resort Hotel 0 57 2015 July
## 608 Resort Hotel 0 102 2015 July
## 609 Resort Hotel 0 108 2015 July
## 610 Resort Hotel 0 28 2015 July
## 611 Resort Hotel 0 29 2015 July
## 612 Resort Hotel 0 0 2015 July
## 613 Resort Hotel 1 96 2015 July
## 614 Resort Hotel 1 44 2015 July
## 615 Resort Hotel 0 44 2015 July
## 616 Resort Hotel 1 44 2015 July
## 617 Resort Hotel 1 44 2015 July
## 618 Resort Hotel 1 41 2015 July
## 619 Resort Hotel 0 16 2015 July
## 620 Resort Hotel 0 73 2015 July
## 621 Resort Hotel 0 3 2015 July
## 622 Resort Hotel 0 0 2015 July
## 623 Resort Hotel 1 55 2015 July
## 624 Resort Hotel 0 33 2015 July
## 625 Resort Hotel 1 19 2015 July
## 626 Resort Hotel 1 55 2015 July
## 627 Resort Hotel 0 33 2015 July
## 628 Resort Hotel 1 19 2015 July
## 629 Resort Hotel 1 19 2015 July
## 630 Resort Hotel 0 117 2015 July
## 631 Resort Hotel 1 72 2015 July
## 632 Resort Hotel 1 19 2015 July
## 633 Resort Hotel 0 34 2015 July
## 634 Resort Hotel 0 9 2015 July
## 635 Resort Hotel 0 8 2015 July
## 636 Resort Hotel 1 36 2015 July
## 637 Resort Hotel 0 22 2015 July
## 638 Resort Hotel 0 22 2015 July
## 639 Resort Hotel 0 22 2015 July
## 640 Resort Hotel 0 36 2015 July
## 641 Resort Hotel 0 22 2015 July
## 642 Resort Hotel 1 22 2015 July
## 643 Resort Hotel 0 18 2015 July
## 644 Resort Hotel 0 8 2015 July
## 645 Resort Hotel 1 67 2015 July
## 646 Resort Hotel 1 105 2015 July
## 647 Resort Hotel 0 1 2015 July
## 648 Resort Hotel 1 67 2015 July
## 649 Resort Hotel 0 39 2015 July
## 650 Resort Hotel 1 45 2015 July
## 651 Resort Hotel 1 45 2015 July
## 652 Resort Hotel 0 14 2015 July
## 653 Resort Hotel 1 53 2015 July
## 654 Resort Hotel 0 28 2015 July
## 655 Resort Hotel 0 55 2015 July
## 656 Resort Hotel 0 55 2015 July
## 657 Resort Hotel 0 25 2015 July
## 658 Resort Hotel 1 43 2015 July
## 659 Resort Hotel 1 109 2015 July
## 660 Resort Hotel 1 62 2015 July
## 661 Resort Hotel 0 25 2015 July
## 662 Resort Hotel 0 43 2015 July
## 663 Resort Hotel 0 35 2015 July
## 664 Resort Hotel 1 42 2015 July
## 665 Resort Hotel 1 312 2015 July
## 666 Resort Hotel 0 30 2015 July
## 667 Resort Hotel 0 47 2015 July
## 668 Resort Hotel 0 40 2015 July
## 669 Resort Hotel 0 11 2015 July
## 670 Resort Hotel 0 39 2015 July
## 671 Resort Hotel 1 39 2015 July
## 672 Resort Hotel 0 1 2015 July
## 673 Resort Hotel 1 12 2015 July
## 674 Resort Hotel 1 16 2015 July
## 675 Resort Hotel 1 16 2015 July
## 676 Resort Hotel 0 12 2015 July
## 677 Resort Hotel 0 51 2015 July
## 678 Resort Hotel 0 67 2015 July
## 679 Resort Hotel 0 52 2015 July
## 680 Resort Hotel 0 25 2015 July
## 681 Resort Hotel 0 94 2015 July
## 682 Resort Hotel 1 54 2015 July
## 683 Resort Hotel 0 33 2015 July
## 684 Resort Hotel 0 47 2015 July
## 685 Resort Hotel 0 43 2015 July
## 686 Resort Hotel 1 87 2015 July
## 687 Resort Hotel 0 54 2015 July
## 688 Resort Hotel 0 32 2015 July
## 689 Resort Hotel 1 29 2015 July
## 690 Resort Hotel 1 96 2015 July
## 691 Resort Hotel 1 100 2015 July
## 692 Resort Hotel 0 54 2015 July
## 693 Resort Hotel 0 75 2015 July
## 694 Resort Hotel 0 31 2015 July
## 695 Resort Hotel 1 25 2015 July
## 696 Resort Hotel 0 61 2015 July
## 697 Resort Hotel 0 60 2015 July
## 698 Resort Hotel 1 31 2015 July
## 699 Resort Hotel 1 107 2015 July
## 700 Resort Hotel 1 31 2015 July
## 701 Resort Hotel 0 115 2015 July
## 702 Resort Hotel 0 59 2015 July
## 703 Resort Hotel 1 85 2015 July
## 704 Resort Hotel 0 0 2015 July
## 705 Resort Hotel 1 299 2015 July
## 706 Resort Hotel 0 50 2015 July
## 707 Resort Hotel 1 50 2015 July
## 708 Resort Hotel 1 88 2015 July
## 709 Resort Hotel 1 116 2015 July
## 710 Resort Hotel 0 47 2015 July
## 711 Resort Hotel 0 48 2015 July
## 712 Resort Hotel 1 54 2015 July
## 713 Resort Hotel 1 33 2015 July
## 714 Resort Hotel 0 73 2015 July
## 715 Resort Hotel 1 54 2015 July
## 716 Resort Hotel 1 33 2015 July
## 717 Resort Hotel 0 38 2015 July
## 718 Resort Hotel 0 34 2015 July
## 719 Resort Hotel 0 130 2015 July
## 720 Resort Hotel 1 39 2015 July
## 721 Resort Hotel 1 39 2015 July
## 722 Resort Hotel 0 45 2015 July
## 723 Resort Hotel 0 31 2015 July
## 724 Resort Hotel 1 48 2015 July
## 725 Resort Hotel 0 59 2015 July
## 726 Resort Hotel 1 48 2015 July
## 727 Resort Hotel 1 48 2015 July
## 728 Resort Hotel 1 48 2015 July
## 729 Resort Hotel 0 48 2015 July
## 730 Resort Hotel 0 96 2015 July
## 731 Resort Hotel 0 51 2015 July
## 732 Resort Hotel 0 96 2015 July
## 733 Resort Hotel 1 41 2015 July
## 734 Resort Hotel 0 6 2015 July
## 735 Resort Hotel 0 27 2015 July
## 736 Resort Hotel 0 28 2015 July
## 737 Resort Hotel 0 30 2015 July
## 738 Resort Hotel 0 45 2015 July
## 739 Resort Hotel 0 52 2015 July
## 740 Resort Hotel 0 31 2015 July
## 741 Resort Hotel 1 74 2015 July
## 742 Resort Hotel 0 31 2015 July
## 743 Resort Hotel 1 87 2015 July
## 744 Resort Hotel 0 48 2015 July
## 745 Resort Hotel 1 41 2015 July
## 746 Resort Hotel 0 35 2015 July
## 747 Resort Hotel 0 28 2015 July
## 748 Resort Hotel 0 77 2015 July
## 749 Resort Hotel 1 33 2015 July
## 750 Resort Hotel 0 30 2015 July
## 751 Resort Hotel 1 34 2015 July
## 752 Resort Hotel 1 298 2015 July
## 753 Resort Hotel 0 35 2015 July
## 754 Resort Hotel 0 40 2015 July
## 755 Resort Hotel 1 101 2015 July
## 756 Resort Hotel 1 101 2015 July
## 757 Resort Hotel 1 101 2015 July
## 758 Resort Hotel 1 101 2015 July
## 759 Resort Hotel 0 38 2015 July
## 760 Resort Hotel 0 76 2015 July
## 761 Resort Hotel 0 70 2015 July
## 762 Resort Hotel 0 70 2015 July
## 763 Resort Hotel 0 68 2015 July
## 764 Resort Hotel 1 63 2015 July
## 765 Resort Hotel 1 11 2015 July
## 766 Resort Hotel 0 32 2015 July
## 767 Resort Hotel 0 29 2015 July
## 768 Resort Hotel 0 47 2015 July
## 769 Resort Hotel 0 50 2015 July
## 770 Resort Hotel 1 29 2015 July
## 771 Resort Hotel 0 36 2015 July
## 772 Resort Hotel 0 49 2015 July
## 773 Resort Hotel 1 70 2015 July
## 774 Resort Hotel 0 110 2015 July
## 775 Resort Hotel 0 8 2015 July
## 776 Resort Hotel 1 119 2015 July
## 777 Resort Hotel 0 30 2015 July
## 778 Resort Hotel 1 29 2015 July
## 779 Resort Hotel 0 71 2015 July
## 780 Resort Hotel 1 37 2015 July
## 781 Resort Hotel 1 40 2015 July
## 782 Resort Hotel 0 37 2015 July
## 783 Resort Hotel 0 0 2015 July
## 784 Resort Hotel 1 37 2015 July
## 785 Resort Hotel 0 37 2015 July
## 786 Resort Hotel 0 97 2015 July
## 787 Resort Hotel 1 71 2015 July
## 788 Resort Hotel 1 118 2015 July
## 789 Resort Hotel 0 102 2015 July
## 790 Resort Hotel 1 54 2015 July
## 791 Resort Hotel 1 58 2015 July
## 792 Resort Hotel 0 34 2015 July
## 793 Resort Hotel 1 105 2015 July
## 794 Resort Hotel 1 47 2015 July
## 795 Resort Hotel 1 15 2015 July
## 796 Resort Hotel 0 37 2015 July
## 797 Resort Hotel 1 0 2015 July
## 798 Resort Hotel 1 8 2015 July
## 799 Resort Hotel 0 17 2015 July
## 800 Resort Hotel 0 3 2015 July
## 801 Resort Hotel 1 30 2015 July
## 802 Resort Hotel 1 31 2015 July
## 803 Resort Hotel 1 66 2015 July
## 804 Resort Hotel 0 52 2015 July
## 805 Resort Hotel 0 20 2015 July
## 806 Resort Hotel 1 30 2015 July
## 807 Resort Hotel 1 31 2015 July
## 808 Resort Hotel 1 62 2015 July
## 809 Resort Hotel 1 65 2015 July
## 810 Resort Hotel 1 64 2015 July
## 811 Resort Hotel 0 77 2015 July
## 812 Resort Hotel 0 75 2015 July
## 813 Resort Hotel 0 75 2015 July
## 814 Resort Hotel 1 62 2015 July
## 815 Resort Hotel 0 42 2015 July
## 816 Resort Hotel 0 46 2015 July
## 817 Resort Hotel 0 0 2015 July
## 818 Resort Hotel 1 25 2015 July
## 819 Resort Hotel 1 16 2015 July
## 820 Resort Hotel 1 16 2015 July
## 821 Resort Hotel 0 16 2015 July
## 822 Resort Hotel 1 4 2015 July
## 823 Resort Hotel 0 4 2015 July
## 824 Resort Hotel 1 25 2015 July
## 825 Resort Hotel 1 83 2015 July
## 826 Resort Hotel 0 4 2015 July
## 827 Resort Hotel 1 56 2015 July
## 828 Resort Hotel 1 32 2015 July
## 829 Resort Hotel 0 32 2015 July
## 830 Resort Hotel 0 0 2015 July
## 831 Resort Hotel 1 18 2015 July
## 832 Resort Hotel 1 23 2015 July
## 833 Resort Hotel 1 39 2015 July
## 834 Resort Hotel 1 18 2015 July
## 835 Resort Hotel 1 18 2015 July
## 836 Resort Hotel 1 23 2015 July
## 837 Resort Hotel 0 286 2015 July
## 838 Resort Hotel 0 72 2015 July
## 839 Resort Hotel 1 136 2015 July
## 840 Resort Hotel 0 58 2015 July
## 841 Resort Hotel 0 80 2015 July
## 842 Resort Hotel 0 113 2015 July
## 843 Resort Hotel 0 129 2015 August
## 844 Resort Hotel 1 84 2015 August
## 845 Resort Hotel 1 84 2015 August
## 846 Resort Hotel 1 89 2015 August
## 847 Resort Hotel 1 10 2015 August
## 848 Resort Hotel 1 80 2015 August
## 849 Resort Hotel 1 10 2015 August
## 850 Resort Hotel 1 10 2015 August
## 851 Resort Hotel 1 24 2015 August
## 852 Resort Hotel 0 1 2015 August
## 853 Resort Hotel 1 9 2015 August
## 854 Resort Hotel 1 3 2015 August
## 855 Resort Hotel 0 3 2015 August
## 856 Resort Hotel 1 124 2015 August
## 857 Resort Hotel 1 74 2015 August
## 858 Resort Hotel 1 82 2015 August
## 859 Resort Hotel 1 91 2015 August
## 860 Resort Hotel 1 77 2015 August
## 861 Resort Hotel 1 130 2015 August
## 862 Resort Hotel 1 91 2015 August
## 863 Resort Hotel 0 79 2015 August
## 864 Resort Hotel 1 130 2015 August
## 865 Resort Hotel 0 66 2015 August
## 866 Resort Hotel 1 53 2015 August
## 867 Resort Hotel 1 80 2015 August
## 868 Resort Hotel 1 77 2015 August
## 869 Resort Hotel 1 57 2015 August
## 870 Resort Hotel 0 11 2015 August
## 871 Resort Hotel 1 25 2015 August
## 872 Resort Hotel 1 2 2015 August
## 873 Resort Hotel 1 36 2015 August
## 874 Resort Hotel 1 36 2015 August
## 875 Resort Hotel 0 115 2015 August
## 876 Resort Hotel 0 95 2015 August
## 877 Resort Hotel 0 67 2015 August
## 878 Resort Hotel 0 60 2015 August
## 879 Resort Hotel 0 34 2015 August
## 880 Resort Hotel 0 78 2015 August
## 881 Resort Hotel 0 93 2015 August
## 882 Resort Hotel 1 327 2015 August
## 883 Resort Hotel 0 21 2015 August
## 884 Resort Hotel 0 0 2015 August
## 885 Resort Hotel 1 47 2015 August
## 886 Resort Hotel 1 81 2015 August
## 887 Resort Hotel 1 52 2015 August
## 888 Resort Hotel 1 13 2015 August
## 889 Resort Hotel 0 83 2015 August
## 890 Resort Hotel 1 131 2015 August
## 891 Resort Hotel 0 460 2015 August
## 892 Resort Hotel 1 82 2015 August
## 893 Resort Hotel 1 61 2015 August
## 894 Resort Hotel 0 94 2015 August
## 895 Resort Hotel 0 1 2015 August
## 896 Resort Hotel 0 0 2015 August
## 897 Resort Hotel 1 36 2015 August
## 898 Resort Hotel 1 61 2015 August
## 899 Resort Hotel 0 13 2015 August
## 900 Resort Hotel 0 13 2015 August
## 901 Resort Hotel 1 15 2015 August
## 902 Resort Hotel 0 14 2015 August
## 903 Resort Hotel 1 13 2015 August
## 904 Resort Hotel 0 140 2015 August
## 905 Resort Hotel 0 6 2015 August
## 906 Resort Hotel 0 140 2015 August
## 907 Resort Hotel 0 81 2015 August
## 908 Resort Hotel 0 1 2015 August
## 909 Resort Hotel 0 65 2015 August
## 910 Resort Hotel 1 0 2015 August
## 911 Resort Hotel 0 2 2015 August
## 912 Resort Hotel 0 0 2015 August
## 913 Resort Hotel 1 114 2015 August
## 914 Resort Hotel 1 111 2015 August
## 915 Resort Hotel 0 44 2015 August
## 916 Resort Hotel 0 139 2015 August
## 917 Resort Hotel 1 57 2015 August
## 918 Resort Hotel 1 16 2015 August
## 919 Resort Hotel 0 139 2015 August
## 920 Resort Hotel 0 84 2015 August
## 921 Resort Hotel 1 117 2015 August
## 922 Resort Hotel 1 69 2015 August
## 923 Resort Hotel 0 2 2015 August
## 924 Resort Hotel 1 118 2015 August
## 925 Resort Hotel 0 129 2015 August
## 926 Resort Hotel 0 9 2015 August
## 927 Resort Hotel 0 52 2015 August
## 928 Resort Hotel 0 65 2015 August
## 929 Resort Hotel 0 7 2015 August
## 930 Resort Hotel 1 28 2015 August
## 931 Resort Hotel 0 3 2015 August
## 932 Resort Hotel 0 87 2015 August
## 933 Resort Hotel 0 51 2015 August
## 934 Resort Hotel 0 136 2015 August
## 935 Resort Hotel 0 4 2015 August
## 936 Resort Hotel 0 1 2015 August
## 937 Resort Hotel 1 49 2015 August
## 938 Resort Hotel 0 4 2015 August
## 939 Resort Hotel 1 45 2015 August
## 940 Resort Hotel 0 6 2015 August
## 941 Resort Hotel 0 4 2015 August
## 942 Resort Hotel 1 53 2015 August
## 943 Resort Hotel 0 52 2015 August
## 944 Resort Hotel 1 4 2015 August
## 945 Resort Hotel 0 98 2015 August
## 946 Resort Hotel 1 46 2015 August
## 947 Resort Hotel 1 122 2015 August
## 948 Resort Hotel 0 83 2015 August
## 949 Resort Hotel 0 16 2015 August
## 950 Resort Hotel 1 43 2015 August
## 951 Resort Hotel 1 73 2015 August
## 952 Resort Hotel 0 116 2015 August
## 953 Resort Hotel 1 113 2015 August
## 954 Resort Hotel 1 113 2015 August
## 955 Resort Hotel 0 51 2015 August
## 956 Resort Hotel 0 65 2015 August
## 957 Resort Hotel 0 0 2015 August
## 958 Resort Hotel 1 87 2015 August
## 959 Resort Hotel 1 106 2015 August
## 960 Resort Hotel 0 5 2015 August
## 961 Resort Hotel 0 98 2015 August
## 962 Resort Hotel 1 78 2015 August
## 963 Resort Hotel 0 4 2015 August
## 964 Resort Hotel 0 5 2015 August
## 965 Resort Hotel 0 3 2015 August
## 966 Resort Hotel 0 85 2015 August
## 967 Resort Hotel 1 137 2015 August
## 968 Resort Hotel 1 67 2015 August
## 969 Resort Hotel 1 54 2015 August
## 970 Resort Hotel 1 87 2015 August
## 971 Resort Hotel 1 54 2015 August
## 972 Resort Hotel 0 12 2015 August
## 973 Resort Hotel 1 60 2015 August
## 974 Resort Hotel 0 75 2015 August
## 975 Resort Hotel 1 54 2015 August
## 976 Resort Hotel 0 126 2015 August
## 977 Resort Hotel 1 54 2015 August
## 978 Resort Hotel 1 84 2015 August
## 979 Resort Hotel 1 106 2015 August
## 980 Resort Hotel 0 136 2015 August
## 981 Resort Hotel 0 98 2015 August
## 982 Resort Hotel 1 91 2015 August
## 983 Resort Hotel 1 58 2015 August
## 984 Resort Hotel 0 61 2015 August
## 985 Resort Hotel 0 0 2015 August
## 986 Resort Hotel 0 5 2015 August
## 987 Resort Hotel 0 2 2015 August
## 988 Resort Hotel 1 9 2015 August
## 989 Resort Hotel 1 10 2015 August
## 990 Resort Hotel 0 62 2015 August
## 991 Resort Hotel 0 34 2015 August
## 992 Resort Hotel 0 82 2015 August
## 993 Resort Hotel 1 65 2015 August
## 994 Resort Hotel 1 129 2015 August
## 995 Resort Hotel 0 55 2015 August
## 996 Resort Hotel 1 122 2015 August
## 997 Resort Hotel 1 41 2015 August
## 998 Resort Hotel 1 41 2015 August
## 999 Resort Hotel 0 81 2015 August
## 1000 Resort Hotel 0 59 2015 August
## 1001 Resort Hotel 0 72 2015 August
## 1002 Resort Hotel 1 68 2015 August
## 1003 Resort Hotel 0 81 2015 August
## 1004 Resort Hotel 1 72 2015 August
## 1005 Resort Hotel 0 68 2015 August
## 1006 Resort Hotel 1 127 2015 August
## 1007 Resort Hotel 1 127 2015 August
## 1008 Resort Hotel 0 5 2015 August
## 1009 Resort Hotel 0 68 2015 August
## 1010 Resort Hotel 1 47 2015 August
## 1011 Resort Hotel 0 19 2015 August
## 1012 Resort Hotel 1 72 2015 August
## 1013 Resort Hotel 0 30 2015 August
## 1014 Resort Hotel 1 139 2015 August
## 1015 Resort Hotel 0 112 2015 August
## 1016 Resort Hotel 1 63 2015 August
## 1017 Resort Hotel 0 35 2015 August
## 1018 Resort Hotel 1 75 2015 August
## 1019 Resort Hotel 0 136 2015 August
## 1020 Resort Hotel 0 35 2015 August
## 1021 Resort Hotel 1 63 2015 August
## 1022 Resort Hotel 1 77 2015 August
## 1023 Resort Hotel 0 62 2015 August
## 1024 Resort Hotel 1 95 2015 August
## 1025 Resort Hotel 1 101 2015 August
## 1026 Resort Hotel 1 38 2015 August
## 1027 Resort Hotel 1 60 2015 August
## 1028 Resort Hotel 1 60 2015 August
## 1029 Resort Hotel 0 76 2015 August
## 1030 Resort Hotel 0 90 2015 August
## 1031 Resort Hotel 0 90 2015 August
## 1032 Resort Hotel 1 87 2015 August
## 1033 Resort Hotel 1 31 2015 August
## 1034 Resort Hotel 1 74 2015 August
## 1035 Resort Hotel 1 120 2015 August
## 1036 Resort Hotel 1 120 2015 August
## 1037 Resort Hotel 1 120 2015 August
## 1038 Resort Hotel 1 116 2015 August
## 1039 Resort Hotel 1 83 2015 August
## 1040 Resort Hotel 0 80 2015 August
## 1041 Resort Hotel 1 27 2015 August
## 1042 Resort Hotel 1 78 2015 August
## 1043 Resort Hotel 1 117 2015 August
## 1044 Resort Hotel 0 70 2015 August
## 1045 Resort Hotel 1 85 2015 August
## 1046 Resort Hotel 1 117 2015 August
## 1047 Resort Hotel 1 22 2015 August
## 1048 Resort Hotel 1 34 2015 August
## 1049 Resort Hotel 0 68 2015 August
## 1050 Resort Hotel 1 69 2015 August
## 1051 Resort Hotel 1 85 2015 August
## 1052 Resort Hotel 1 102 2015 August
## 1053 Resort Hotel 0 31 2015 August
## 1054 Resort Hotel 0 49 2015 August
## 1055 Resort Hotel 0 84 2015 August
## 1056 Resort Hotel 1 102 2015 August
## 1057 Resort Hotel 0 66 2015 August
## 1058 Resort Hotel 1 80 2015 August
## 1059 Resort Hotel 1 85 2015 August
## 1060 Resort Hotel 1 33 2015 August
## 1061 Resort Hotel 1 1 2015 August
## 1062 Resort Hotel 0 33 2015 August
## 1063 Resort Hotel 0 47 2015 August
## 1064 Resort Hotel 1 2 2015 August
## 1065 Resort Hotel 1 22 2015 August
## 1066 Resort Hotel 1 22 2015 August
## 1067 Resort Hotel 1 55 2015 August
## 1068 Resort Hotel 1 68 2015 August
## 1069 Resort Hotel 1 128 2015 August
## 1070 Resort Hotel 0 128 2015 August
## 1071 Resort Hotel 0 128 2015 August
## 1072 Resort Hotel 0 78 2015 August
## 1073 Resort Hotel 1 85 2015 August
## 1074 Resort Hotel 0 0 2015 August
## 1075 Resort Hotel 0 9 2015 August
## 1076 Resort Hotel 0 1 2015 August
## 1077 Resort Hotel 1 9 2015 August
## 1078 Resort Hotel 1 120 2015 August
## 1079 Resort Hotel 1 72 2015 August
## 1080 Resort Hotel 0 23 2015 August
## 1081 Resort Hotel 1 8 2015 August
## 1082 Resort Hotel 0 47 2015 August
## 1083 Resort Hotel 1 8 2015 August
## 1084 Resort Hotel 0 135 2015 August
## 1085 Resort Hotel 0 76 2015 August
## 1086 Resort Hotel 1 15 2015 August
## 1087 Resort Hotel 1 23 2015 August
## 1088 Resort Hotel 0 87 2015 August
## 1089 Resort Hotel 0 19 2015 August
## 1090 Resort Hotel 0 21 2015 August
## 1091 Resort Hotel 0 19 2015 August
## 1092 Resort Hotel 1 23 2015 August
## 1093 Resort Hotel 1 89 2015 August
## 1094 Resort Hotel 0 51 2015 August
## 1095 Resort Hotel 0 0 2015 August
## 1096 Resort Hotel 0 0 2015 August
## 1097 Resort Hotel 0 0 2015 August
## 1098 Resort Hotel 0 0 2015 August
## 1099 Resort Hotel 0 0 2015 August
## 1100 Resort Hotel 0 38 2015 August
## 1101 Resort Hotel 0 21 2015 August
## 1102 Resort Hotel 1 34 2015 August
## 1103 Resort Hotel 1 51 2015 August
## 1104 Resort Hotel 0 38 2015 August
## 1105 Resort Hotel 0 0 2015 August
## 1106 Resort Hotel 1 84 2015 August
## 1107 Resort Hotel 1 63 2015 August
## 1108 Resort Hotel 0 7 2015 August
## 1109 Resort Hotel 1 91 2015 August
## 1110 Resort Hotel 0 81 2015 August
## 1111 Resort Hotel 0 6 2015 August
## 1112 Resort Hotel 1 64 2015 August
## 1113 Resort Hotel 0 52 2015 August
## 1114 Resort Hotel 1 22 2015 August
## 1115 Resort Hotel 0 150 2015 August
## 1116 Resort Hotel 0 64 2015 August
## 1117 Resort Hotel 1 22 2015 August
## 1118 Resort Hotel 0 3 2015 August
## 1119 Resort Hotel 0 68 2015 August
## 1120 Resort Hotel 0 35 2015 August
## 1121 Resort Hotel 0 2 2015 August
## 1122 Resort Hotel 0 68 2015 August
## 1123 Resort Hotel 1 11 2015 August
## 1124 Resort Hotel 1 80 2015 August
## 1125 Resort Hotel 1 80 2015 August
## 1126 Resort Hotel 0 72 2015 August
## 1127 Resort Hotel 1 80 2015 August
## 1128 Resort Hotel 0 77 2015 August
## 1129 Resort Hotel 1 80 2015 August
## 1130 Resort Hotel 0 31 2015 August
## 1131 Resort Hotel 1 77 2015 August
## 1132 Resort Hotel 0 93 2015 August
## 1133 Resort Hotel 0 31 2015 August
## 1134 Resort Hotel 0 89 2015 August
## 1135 Resort Hotel 1 68 2015 August
## 1136 Resort Hotel 1 72 2015 August
## 1137 Resort Hotel 0 65 2015 August
## 1138 Resort Hotel 1 71 2015 August
## 1139 Resort Hotel 1 65 2015 August
## 1140 Resort Hotel 0 89 2015 August
## 1141 Resort Hotel 1 98 2015 August
## 1142 Resort Hotel 0 26 2015 August
## 1143 Resort Hotel 1 67 2015 August
## 1144 Resort Hotel 1 54 2015 August
## 1145 Resort Hotel 0 75 2015 August
## 1146 Resort Hotel 1 78 2015 August
## 1147 Resort Hotel 1 53 2015 August
## 1148 Resort Hotel 1 65 2015 August
## 1149 Resort Hotel 0 84 2015 August
## 1150 Resort Hotel 1 47 2015 August
## 1151 Resort Hotel 0 37 2015 August
## 1152 Resort Hotel 0 37 2015 August
## 1153 Resort Hotel 1 4 2015 August
## 1154 Resort Hotel 0 37 2015 August
## 1155 Resort Hotel 0 37 2015 August
## 1156 Resort Hotel 1 12 2015 August
## 1157 Resort Hotel 0 0 2015 August
## 1158 Resort Hotel 0 37 2015 August
## 1159 Resort Hotel 0 37 2015 August
## 1160 Resort Hotel 0 2 2015 August
## 1161 Resort Hotel 1 12 2015 August
## 1162 Resort Hotel 1 12 2015 August
## 1163 Resort Hotel 1 11 2015 August
## 1164 Resort Hotel 1 143 2015 August
## 1165 Resort Hotel 1 99 2015 August
## 1166 Resort Hotel 1 22 2015 August
## 1167 Resort Hotel 1 15 2015 August
## 1168 Resort Hotel 1 15 2015 August
## 1169 Resort Hotel 1 66 2015 August
## 1170 Resort Hotel 1 55 2015 August
## 1171 Resort Hotel 1 66 2015 August
## 1172 Resort Hotel 1 79 2015 August
## 1173 Resort Hotel 1 66 2015 August
## 1174 Resort Hotel 0 95 2015 August
## 1175 Resort Hotel 1 151 2015 August
## 1176 Resort Hotel 1 54 2015 August
## 1177 Resort Hotel 1 122 2015 August
## 1178 Resort Hotel 1 132 2015 August
## 1179 Resort Hotel 0 58 2015 August
## 1180 Resort Hotel 1 98 2015 August
## 1181 Resort Hotel 1 126 2015 August
## 1182 Resort Hotel 1 97 2015 August
## 1183 Resort Hotel 0 96 2015 August
## 1184 Resort Hotel 0 125 2015 August
## 1185 Resort Hotel 0 80 2015 August
## 1186 Resort Hotel 1 110 2015 August
## 1187 Resort Hotel 1 157 2015 August
## 1188 Resort Hotel 1 108 2015 August
## 1189 Resort Hotel 0 74 2015 August
## 1190 Resort Hotel 0 79 2015 August
## 1191 Resort Hotel 1 79 2015 August
## 1192 Resort Hotel 1 116 2015 August
## 1193 Resort Hotel 0 80 2015 August
## 1194 Resort Hotel 1 116 2015 August
## 1195 Resort Hotel 1 93 2015 August
## 1196 Resort Hotel 1 87 2015 August
## 1197 Resort Hotel 1 13 2015 August
## 1198 Resort Hotel 1 56 2015 August
## 1199 Resort Hotel 1 1 2015 August
## 1200 Resort Hotel 0 13 2015 August
## 1201 Resort Hotel 0 13 2015 August
## 1202 Resort Hotel 1 56 2015 August
## 1203 Resort Hotel 1 81 2015 August
## 1204 Resort Hotel 1 24 2015 August
## 1205 Resort Hotel 0 57 2015 August
## 1206 Resort Hotel 0 74 2015 August
## 1207 Resort Hotel 0 126 2015 August
## 1208 Resort Hotel 0 126 2015 August
## 1209 Resort Hotel 0 126 2015 August
## 1210 Resort Hotel 1 147 2015 August
## 1211 Resort Hotel 0 68 2015 August
## 1212 Resort Hotel 0 57 2015 August
## 1213 Resort Hotel 0 10 2015 August
## 1214 Resort Hotel 0 92 2015 August
## 1215 Resort Hotel 0 92 2015 August
## 1216 Resort Hotel 0 33 2015 August
## 1217 Resort Hotel 0 1 2015 August
## 1218 Resort Hotel 0 91 2015 August
## 1219 Resort Hotel 1 33 2015 August
## 1220 Resort Hotel 0 16 2015 August
## 1221 Resort Hotel 0 128 2015 August
## 1222 Resort Hotel 0 61 2015 August
## 1223 Resort Hotel 1 23 2015 August
## 1224 Resort Hotel 1 23 2015 August
## 1225 Resort Hotel 1 29 2015 August
## 1226 Resort Hotel 1 98 2015 August
## 1227 Resort Hotel 1 23 2015 August
## 1228 Resort Hotel 0 98 2015 August
## 1229 Resort Hotel 0 138 2015 August
## 1230 Resort Hotel 1 82 2015 August
## 1231 Resort Hotel 0 10 2015 August
## 1232 Resort Hotel 1 100 2015 August
## 1233 Resort Hotel 0 10 2015 August
## 1234 Resort Hotel 0 0 2015 August
## 1235 Resort Hotel 0 65 2015 August
## 1236 Resort Hotel 0 64 2015 August
## 1237 Resort Hotel 1 56 2015 August
## 1238 Resort Hotel 1 94 2015 August
## 1239 Resort Hotel 1 58 2015 August
## 1240 Resort Hotel 0 80 2015 August
## 1241 Resort Hotel 0 40 2015 August
## 1242 Resort Hotel 0 102 2015 August
## 1243 Resort Hotel 0 16 2015 August
## 1244 Resort Hotel 0 24 2015 August
## 1245 Resort Hotel 0 24 2015 August
## 1246 Resort Hotel 1 18 2015 August
## 1247 Resort Hotel 1 95 2015 August
## 1248 Resort Hotel 1 36 2015 August
## 1249 Resort Hotel 0 16 2015 August
## 1250 Resort Hotel 0 50 2015 August
## 1251 Resort Hotel 0 76 2015 August
## 1252 Resort Hotel 0 112 2015 August
## 1253 Resort Hotel 0 16 2015 August
## 1254 Resort Hotel 0 51 2015 August
## 1255 Resort Hotel 0 13 2015 August
## 1256 Resort Hotel 1 22 2015 August
## 1257 Resort Hotel 0 32 2015 August
## 1258 Resort Hotel 0 51 2015 August
## 1259 Resort Hotel 0 65 2015 August
## 1260 Resort Hotel 1 63 2015 August
## 1261 Resort Hotel 0 35 2015 August
## 1262 Resort Hotel 0 37 2015 August
## 1263 Resort Hotel 0 35 2015 August
## 1264 Resort Hotel 1 71 2015 August
## 1265 Resort Hotel 0 71 2015 August
## 1266 Resort Hotel 0 77 2015 August
## 1267 Resort Hotel 0 0 2015 August
## 1268 Resort Hotel 1 21 2015 August
## 1269 Resort Hotel 1 87 2015 August
## 1270 Resort Hotel 0 54 2015 August
## 1271 Resort Hotel 1 156 2015 August
## 1272 Resort Hotel 0 46 2015 August
## 1273 Resort Hotel 0 46 2015 August
## 1274 Resort Hotel 1 72 2015 August
## 1275 Resort Hotel 0 85 2015 August
## 1276 Resort Hotel 0 36 2015 August
## 1277 Resort Hotel 0 65 2015 August
## 1278 Resort Hotel 1 68 2015 August
## 1279 Resort Hotel 0 46 2015 August
## 1280 Resort Hotel 0 22 2015 August
## 1281 Resort Hotel 0 12 2015 August
## 1282 Resort Hotel 1 42 2015 August
## 1283 Resort Hotel 0 72 2015 August
## 1284 Resort Hotel 1 112 2015 August
## 1285 Resort Hotel 0 85 2015 August
## 1286 Resort Hotel 0 102 2015 August
## 1287 Resort Hotel 1 80 2015 August
## 1288 Resort Hotel 1 72 2015 August
## 1289 Resort Hotel 0 151 2015 August
## 1290 Resort Hotel 1 99 2015 August
## 1291 Resort Hotel 0 151 2015 August
## 1292 Resort Hotel 0 66 2015 August
## 1293 Resort Hotel 1 44 2015 August
## 1294 Resort Hotel 0 46 2015 August
## 1295 Resort Hotel 0 70 2015 August
## 1296 Resort Hotel 0 92 2015 August
## 1297 Resort Hotel 0 6 2015 August
## 1298 Resort Hotel 1 23 2015 August
## 1299 Resort Hotel 1 79 2015 August
## 1300 Resort Hotel 1 41 2015 August
## 1301 Resort Hotel 1 58 2015 August
## 1302 Resort Hotel 0 62 2015 August
## 1303 Resort Hotel 1 83 2015 August
## 1304 Resort Hotel 0 82 2015 August
## 1305 Resort Hotel 0 69 2015 August
## 1306 Resort Hotel 1 64 2015 August
## 1307 Resort Hotel 1 116 2015 August
## 1308 Resort Hotel 0 20 2015 August
## 1309 Resort Hotel 0 132 2015 August
## 1310 Resort Hotel 1 33 2015 August
## 1311 Resort Hotel 0 62 2015 August
## 1312 Resort Hotel 1 127 2015 August
## 1313 Resort Hotel 1 78 2015 August
## 1314 Resort Hotel 1 29 2015 August
## 1315 Resort Hotel 1 78 2015 August
## 1316 Resort Hotel 1 31 2015 August
## 1317 Resort Hotel 1 9 2015 August
## 1318 Resort Hotel 0 59 2015 August
## 1319 Resort Hotel 0 40 2015 August
## 1320 Resort Hotel 0 0 2015 August
## 1321 Resort Hotel 0 30 2015 August
## 1322 Resort Hotel 0 0 2015 August
## 1323 Resort Hotel 1 35 2015 August
## 1324 Resort Hotel 0 84 2015 August
## 1325 Resort Hotel 1 25 2015 August
## 1326 Resort Hotel 0 103 2015 August
## 1327 Resort Hotel 1 35 2015 August
## 1328 Resort Hotel 1 26 2015 August
## 1329 Resort Hotel 1 55 2015 August
## 1330 Resort Hotel 0 76 2015 August
## 1331 Resort Hotel 1 102 2015 August
## 1332 Resort Hotel 0 58 2015 August
## 1333 Resort Hotel 0 11 2015 August
## 1334 Resort Hotel 1 33 2015 August
## 1335 Resort Hotel 0 11 2015 August
## 1336 Resort Hotel 1 61 2015 August
## 1337 Resort Hotel 1 89 2015 August
## 1338 Resort Hotel 1 89 2015 August
## 1339 Resort Hotel 0 37 2015 August
## 1340 Resort Hotel 1 70 2015 August
## 1341 Resort Hotel 1 54 2015 August
## 1342 Resort Hotel 0 69 2015 August
## 1343 Resort Hotel 1 71 2015 August
## 1344 Resort Hotel 1 49 2015 August
## 1345 Resort Hotel 1 50 2015 August
## 1346 Resort Hotel 1 74 2015 August
## 1347 Resort Hotel 1 74 2015 August
## 1348 Resort Hotel 1 118 2015 August
## 1349 Resort Hotel 1 42 2015 August
## 1350 Resort Hotel 1 77 2015 August
## 1351 Resort Hotel 1 84 2015 August
## 1352 Resort Hotel 0 43 2015 August
## 1353 Resort Hotel 1 73 2015 August
## 1354 Resort Hotel 1 73 2015 August
## 1355 Resort Hotel 0 21 2015 August
## 1356 Resort Hotel 0 0 2015 August
## 1357 Resort Hotel 0 2 2015 August
## 1358 Resort Hotel 1 2 2015 August
## 1359 Resort Hotel 0 0 2015 August
## 1360 Resort Hotel 0 76 2015 August
## 1361 Resort Hotel 1 41 2015 August
## 1362 Resort Hotel 1 41 2015 August
## 1363 Resort Hotel 1 44 2015 August
## 1364 Resort Hotel 1 93 2015 August
## 1365 Resort Hotel 1 106 2015 August
## 1366 Resort Hotel 0 57 2015 August
## 1367 Resort Hotel 1 29 2015 August
## 1368 Resort Hotel 0 1 2015 August
## 1369 Resort Hotel 0 41 2015 August
## 1370 Resort Hotel 0 90 2015 August
## 1371 Resort Hotel 1 57 2015 August
## 1372 Resort Hotel 1 57 2015 August
## 1373 Resort Hotel 1 41 2015 August
## 1374 Resort Hotel 1 61 2015 August
## 1375 Resort Hotel 0 49 2015 August
## 1376 Resort Hotel 1 57 2015 August
## 1377 Resort Hotel 1 31 2015 August
## 1378 Resort Hotel 1 62 2015 August
## 1379 Resort Hotel 0 43 2015 August
## 1380 Resort Hotel 0 27 2015 August
## 1381 Resort Hotel 1 106 2015 August
## 1382 Resort Hotel 0 45 2015 August
## 1383 Resort Hotel 1 106 2015 August
## 1384 Resort Hotel 1 108 2015 August
## 1385 Resort Hotel 0 49 2015 August
## 1386 Resort Hotel 0 10 2015 August
## 1387 Resort Hotel 1 108 2015 August
## 1388 Resort Hotel 0 30 2015 August
## 1389 Resort Hotel 1 164 2015 August
## 1390 Resort Hotel 1 164 2015 August
## 1391 Resort Hotel 1 164 2015 August
## 1392 Resort Hotel 0 0 2015 August
## 1393 Resort Hotel 1 46 2015 August
## 1394 Resort Hotel 0 31 2015 August
## 1395 Resort Hotel 0 34 2015 August
## 1396 Resort Hotel 1 66 2015 August
## 1397 Resort Hotel 0 4 2015 August
## 1398 Resort Hotel 0 23 2015 August
## 1399 Resort Hotel 0 31 2015 August
## 1400 Resort Hotel 0 32 2015 August
## 1401 Resort Hotel 1 42 2015 August
## 1402 Resort Hotel 0 30 2015 August
## 1403 Resort Hotel 1 30 2015 August
## 1404 Resort Hotel 0 10 2015 August
## 1405 Resort Hotel 0 11 2015 August
## 1406 Resort Hotel 0 11 2015 August
## 1407 Resort Hotel 0 8 2015 August
## 1408 Resort Hotel 0 39 2015 August
## 1409 Resort Hotel 0 4 2015 August
## 1410 Resort Hotel 0 34 2015 August
## 1411 Resort Hotel 1 55 2015 August
## 1412 Resort Hotel 0 25 2015 August
## 1413 Resort Hotel 0 106 2015 August
## 1414 Resort Hotel 0 30 2015 August
## 1415 Resort Hotel 1 1 2015 August
## 1416 Resort Hotel 1 22 2015 August
## 1417 Resort Hotel 1 42 2015 August
## 1418 Resort Hotel 0 67 2015 August
## 1419 Resort Hotel 1 35 2015 August
## 1420 Resort Hotel 0 21 2015 August
## 1421 Resort Hotel 0 50 2015 August
## 1422 Resort Hotel 0 28 2015 August
## 1423 Resort Hotel 0 30 2015 August
## 1424 Resort Hotel 0 127 2015 August
## 1425 Resort Hotel 1 29 2015 August
## 1426 Resort Hotel 0 66 2015 August
## 1427 Resort Hotel 1 59 2015 August
## 1428 Resort Hotel 0 28 2015 August
## 1429 Resort Hotel 1 59 2015 August
## 1430 Resort Hotel 0 0 2015 August
## 1431 Resort Hotel 0 47 2015 August
## 1432 Resort Hotel 0 47 2015 August
## 1433 Resort Hotel 0 47 2015 August
## 1434 Resort Hotel 0 57 2015 August
## 1435 Resort Hotel 0 1 2015 August
## 1436 Resort Hotel 0 4 2015 August
## 1437 Resort Hotel 1 32 2015 August
## 1438 Resort Hotel 1 24 2015 August
## 1439 Resort Hotel 0 11 2015 August
## 1440 Resort Hotel 0 136 2015 August
## 1441 Resort Hotel 0 2 2015 August
## 1442 Resort Hotel 1 54 2015 August
## 1443 Resort Hotel 1 87 2015 August
## 1444 Resort Hotel 1 98 2015 August
## 1445 Resort Hotel 0 9 2015 August
## 1446 Resort Hotel 0 2 2015 August
## 1447 Resort Hotel 0 11 2015 August
## 1448 Resort Hotel 0 11 2015 August
## 1449 Resort Hotel 1 69 2015 August
## 1450 Resort Hotel 0 37 2015 August
## 1451 Resort Hotel 0 103 2015 August
## 1452 Resort Hotel 0 5 2015 August
## 1453 Resort Hotel 0 34 2015 August
## 1454 Resort Hotel 0 44 2015 August
## 1455 Resort Hotel 0 83 2015 August
## 1456 Resort Hotel 0 83 2015 August
## 1457 Resort Hotel 1 72 2015 August
## 1458 Resort Hotel 1 143 2015 August
## 1459 Resort Hotel 1 47 2015 August
## 1460 Resort Hotel 1 104 2015 August
## 1461 Resort Hotel 0 25 2015 August
## 1462 Resort Hotel 0 82 2015 August
## 1463 Resort Hotel 1 104 2015 August
## 1464 Resort Hotel 1 346 2015 August
## 1465 Resort Hotel 0 0 2015 August
## 1466 Resort Hotel 0 35 2015 August
## 1467 Resort Hotel 0 34 2015 August
## 1468 Resort Hotel 0 83 2015 August
## 1469 Resort Hotel 0 41 2015 August
## 1470 Resort Hotel 0 26 2015 August
## 1471 Resort Hotel 1 143 2015 August
## 1472 Resort Hotel 0 26 2015 August
## 1473 Resort Hotel 1 0 2015 August
## 1474 Resort Hotel 1 42 2015 August
## 1475 Resort Hotel 0 6 2015 August
## 1476 Resort Hotel 0 28 2015 August
## 1477 Resort Hotel 0 26 2015 August
## 1478 Resort Hotel 0 10 2015 August
## 1479 Resort Hotel 0 59 2015 August
## 1480 Resort Hotel 1 159 2015 August
## 1481 Resort Hotel 1 124 2015 August
## 1482 Resort Hotel 1 60 2015 August
## 1483 Resort Hotel 0 26 2015 August
## 1484 Resort Hotel 0 160 2015 August
## 1485 Resort Hotel 0 68 2015 August
## 1486 Resort Hotel 1 38 2015 September
## 1487 Resort Hotel 1 47 2015 September
## 1488 Resort Hotel 0 48 2015 September
## 1489 Resort Hotel 0 48 2015 September
## 1490 Resort Hotel 0 27 2015 September
## 1491 Resort Hotel 1 71 2015 September
## 1492 Resort Hotel 1 85 2015 September
## 1493 Resort Hotel 1 132 2015 September
## 1494 Resort Hotel 0 50 2015 September
## 1495 Resort Hotel 0 122 2015 September
## 1496 Resort Hotel 0 64 2015 September
## 1497 Resort Hotel 0 48 2015 September
## 1498 Resort Hotel 0 0 2015 September
## 1499 Resort Hotel 1 14 2015 September
## 1500 Resort Hotel 0 5 2015 September
## 1501 Resort Hotel 1 161 2015 September
## 1502 Resort Hotel 0 62 2015 September
## 1503 Resort Hotel 1 161 2015 September
## 1504 Resort Hotel 0 333 2015 September
## 1505 Resort Hotel 0 27 2015 September
## 1506 Resort Hotel 1 73 2015 September
## 1507 Resort Hotel 0 123 2015 September
## 1508 Resort Hotel 1 27 2015 September
## 1509 Resort Hotel 1 97 2015 September
## 1510 Resort Hotel 0 73 2015 September
## 1511 Resort Hotel 1 97 2015 September
## 1512 Resort Hotel 0 27 2015 September
## 1513 Resort Hotel 0 27 2015 September
## 1514 Resort Hotel 1 27 2015 September
## 1515 Resort Hotel 0 140 2015 September
## 1516 Resort Hotel 0 62 2015 September
## 1517 Resort Hotel 0 381 2015 September
## 1518 Resort Hotel 0 0 2015 September
## 1519 Resort Hotel 1 149 2015 September
## 1520 Resort Hotel 1 1 2015 September
## 1521 Resort Hotel 1 149 2015 September
## 1522 Resort Hotel 0 4 2015 September
## 1523 Resort Hotel 0 104 2015 September
## 1524 Resort Hotel 0 104 2015 September
## 1525 Resort Hotel 0 68 2015 September
## 1526 Resort Hotel 1 4 2015 September
## 1527 Resort Hotel 1 71 2015 September
## 1528 Resort Hotel 1 149 2015 September
## 1529 Resort Hotel 0 1 2015 September
## 1530 Resort Hotel 0 55 2015 September
## 1531 Resort Hotel 0 154 2015 September
## 1532 Resort Hotel 0 154 2015 September
## 1533 Resort Hotel 0 57 2015 September
## 1534 Resort Hotel 0 154 2015 September
## 1535 Resort Hotel 0 29 2015 September
## 1536 Resort Hotel 0 154 2015 September
## 1537 Resort Hotel 0 154 2015 September
## 1538 Resort Hotel 0 154 2015 September
## 1539 Resort Hotel 0 6 2015 September
## 1540 Resort Hotel 1 304 2015 September
## 1541 Resort Hotel 0 29 2015 September
## 1542 Resort Hotel 0 29 2015 September
## 1543 Resort Hotel 0 29 2015 September
## 1544 Resort Hotel 0 29 2015 September
## 1545 Resort Hotel 0 297 2015 September
## 1546 Resort Hotel 1 297 2015 September
## 1547 Resort Hotel 0 52 2015 September
## 1548 Resort Hotel 0 92 2015 September
## 1549 Resort Hotel 0 52 2015 September
## 1550 Resort Hotel 0 56 2015 September
## 1551 Resort Hotel 0 65 2015 September
## 1552 Resort Hotel 0 50 2015 September
## 1553 Resort Hotel 0 163 2015 September
## 1554 Resort Hotel 1 48 2015 September
## 1555 Resort Hotel 0 327 2015 September
## 1556 Resort Hotel 0 0 2015 September
## 1557 Resort Hotel 1 1 2015 September
## 1558 Resort Hotel 0 1 2015 September
## 1559 Resort Hotel 0 0 2015 September
## 1560 Resort Hotel 0 14 2015 September
## 1561 Resort Hotel 0 88 2015 September
## 1562 Resort Hotel 1 105 2015 September
## 1563 Resort Hotel 0 0 2015 September
## 1564 Resort Hotel 1 77 2015 September
## 1565 Resort Hotel 0 15 2015 September
## 1566 Resort Hotel 1 29 2015 September
## 1567 Resort Hotel 0 28 2015 September
## 1568 Resort Hotel 1 23 2015 September
## 1569 Resort Hotel 0 28 2015 September
## 1570 Resort Hotel 0 3 2015 September
## 1571 Resort Hotel 1 28 2015 September
## 1572 Resort Hotel 0 0 2015 September
## 1573 Resort Hotel 0 4 2015 September
## 1574 Resort Hotel 0 63 2015 September
## 1575 Resort Hotel 0 67 2015 September
## 1576 Resort Hotel 1 29 2015 September
## 1577 Resort Hotel 0 73 2015 September
## 1578 Resort Hotel 0 51 2015 September
## 1579 Resort Hotel 0 150 2015 September
## 1580 Resort Hotel 0 23 2015 September
## 1581 Resort Hotel 0 67 2015 September
## 1582 Resort Hotel 1 30 2015 September
## 1583 Resort Hotel 1 15 2015 September
## 1584 Resort Hotel 0 68 2015 September
## 1585 Resort Hotel 0 47 2015 September
## 1586 Resort Hotel 0 47 2015 September
## 1587 Resort Hotel 1 74 2015 September
## 1588 Resort Hotel 1 333 2015 September
## 1589 Resort Hotel 0 26 2015 September
## 1590 Resort Hotel 0 25 2015 September
## 1591 Resort Hotel 0 71 2015 September
## 1592 Resort Hotel 1 314 2015 September
## 1593 Resort Hotel 0 54 2015 September
## 1594 Resort Hotel 1 74 2015 September
## 1595 Resort Hotel 0 74 2015 September
## 1596 Resort Hotel 0 26 2015 September
## 1597 Resort Hotel 1 94 2015 September
## 1598 Resort Hotel 1 54 2015 September
## 1599 Resort Hotel 0 52 2015 September
## 1600 Resort Hotel 0 47 2015 September
## 1601 Resort Hotel 1 74 2015 September
## 1602 Resort Hotel 1 1 2015 September
## 1603 Resort Hotel 1 50 2015 September
## 1604 Resort Hotel 1 155 2015 September
## 1605 Resort Hotel 1 323 2015 September
## 1606 Resort Hotel 1 323 2015 September
## 1607 Resort Hotel 0 340 2015 September
## 1608 Resort Hotel 0 103 2015 September
## 1609 Resort Hotel 0 356 2015 September
## 1610 Resort Hotel 0 5 2015 September
## 1611 Resort Hotel 0 40 2015 September
## 1612 Resort Hotel 1 116 2015 September
## 1613 Resort Hotel 0 74 2015 September
## 1614 Resort Hotel 0 25 2015 September
## 1615 Resort Hotel 1 32 2015 September
## 1616 Resort Hotel 1 12 2015 September
## 1617 Resort Hotel 1 26 2015 September
## 1618 Resort Hotel 1 73 2015 September
## 1619 Resort Hotel 1 26 2015 September
## 1620 Resort Hotel 1 27 2015 September
## 1621 Resort Hotel 0 110 2015 September
## 1622 Resort Hotel 1 75 2015 September
## 1623 Resort Hotel 0 61 2015 September
## 1624 Resort Hotel 1 60 2015 September
## 1625 Resort Hotel 1 61 2015 September
## 1626 Resort Hotel 0 57 2015 September
## 1627 Resort Hotel 0 61 2015 September
## 1628 Resort Hotel 0 47 2015 September
## 1629 Resort Hotel 0 30 2015 September
## 1630 Resort Hotel 0 59 2015 September
## 1631 Resort Hotel 0 78 2015 September
## 1632 Resort Hotel 1 142 2015 September
## 1633 Resort Hotel 0 94 2015 September
## 1634 Resort Hotel 0 69 2015 September
## 1635 Resort Hotel 0 78 2015 September
## 1636 Resort Hotel 0 115 2015 September
## 1637 Resort Hotel 0 128 2015 September
## 1638 Resort Hotel 1 90 2015 September
## 1639 Resort Hotel 0 328 2015 September
## 1640 Resort Hotel 1 136 2015 September
## 1641 Resort Hotel 0 143 2015 September
## 1642 Resort Hotel 0 90 2015 September
## 1643 Resort Hotel 0 144 2015 September
## 1644 Resort Hotel 1 336 2015 September
## 1645 Resort Hotel 0 90 2015 September
## 1646 Resort Hotel 0 35 2015 September
## 1647 Resort Hotel 0 4 2015 September
## 1648 Resort Hotel 1 55 2015 September
## 1649 Resort Hotel 0 0 2015 September
## 1650 Resort Hotel 0 2 2015 September
## 1651 Resort Hotel 0 112 2015 September
## 1652 Resort Hotel 1 105 2015 September
## 1653 Resort Hotel 1 109 2015 September
## 1654 Resort Hotel 1 40 2015 September
## 1655 Resort Hotel 1 75 2015 September
## 1656 Resort Hotel 0 30 2015 September
## 1657 Resort Hotel 1 144 2015 September
## 1658 Resort Hotel 0 248 2015 September
## 1659 Resort Hotel 0 0 2015 September
## 1660 Resort Hotel 1 302 2015 September
## 1661 Resort Hotel 1 302 2015 September
## 1662 Resort Hotel 1 302 2015 September
## 1663 Resort Hotel 1 61 2015 September
## 1664 Resort Hotel 1 12 2015 September
## 1665 Resort Hotel 1 47 2015 September
## 1666 Resort Hotel 0 11 2015 September
## 1667 Resort Hotel 0 117 2015 September
## 1668 Resort Hotel 0 160 2015 September
## 1669 Resort Hotel 0 175 2015 September
## 1670 Resort Hotel 0 71 2015 September
## 1671 Resort Hotel 1 344 2015 September
## 1672 Resort Hotel 0 12 2015 September
## 1673 Resort Hotel 0 382 2015 September
## 1674 Resort Hotel 1 0 2015 September
## 1675 Resort Hotel 0 0 2015 September
## 1676 Resort Hotel 0 28 2015 September
## 1677 Resort Hotel 0 58 2015 September
## 1678 Resort Hotel 1 0 2015 September
## 1679 Resort Hotel 1 20 2015 September
## 1680 Resort Hotel 0 48 2015 September
## 1681 Resort Hotel 0 2 2015 September
## 1682 Resort Hotel 0 0 2015 September
## 1683 Resort Hotel 0 137 2015 September
## 1684 Resort Hotel 1 1 2015 September
## 1685 Resort Hotel 0 130 2015 September
## 1686 Resort Hotel 0 130 2015 September
## 1687 Resort Hotel 0 118 2015 September
## 1688 Resort Hotel 0 146 2015 September
## 1689 Resort Hotel 1 159 2015 September
## 1690 Resort Hotel 1 78 2015 September
## 1691 Resort Hotel 1 159 2015 September
## 1692 Resort Hotel 0 49 2015 September
## 1693 Resort Hotel 0 1 2015 September
## 1694 Resort Hotel 0 31 2015 September
## 1695 Resort Hotel 1 114 2015 September
## 1696 Resort Hotel 0 170 2015 September
## 1697 Resort Hotel 1 27 2015 September
## 1698 Resort Hotel 0 166 2015 September
## 1699 Resort Hotel 1 114 2015 September
## 1700 Resort Hotel 1 114 2015 September
## 1701 Resort Hotel 0 108 2015 September
## 1702 Resort Hotel 0 82 2015 September
## 1703 Resort Hotel 0 113 2015 September
## 1704 Resort Hotel 1 94 2015 September
## 1705 Resort Hotel 0 0 2015 September
## 1706 Resort Hotel 0 3 2015 September
## 1707 Resort Hotel 0 12 2015 September
## 1708 Resort Hotel 1 132 2015 September
## 1709 Resort Hotel 0 12 2015 September
## 1710 Resort Hotel 1 56 2015 September
## 1711 Resort Hotel 0 140 2015 September
## 1712 Resort Hotel 1 147 2015 September
## 1713 Resort Hotel 0 140 2015 September
## 1714 Resort Hotel 0 97 2015 September
## 1715 Resort Hotel 0 160 2015 September
## 1716 Resort Hotel 0 91 2015 September
## 1717 Resort Hotel 0 111 2015 September
## 1718 Resort Hotel 1 80 2015 September
## 1719 Resort Hotel 1 114 2015 September
## 1720 Resort Hotel 0 90 2015 September
## 1721 Resort Hotel 0 338 2015 September
## 1722 Resort Hotel 0 167 2015 September
## 1723 Resort Hotel 0 2 2015 September
## 1724 Resort Hotel 0 0 2015 September
## 1725 Resort Hotel 0 73 2015 September
## 1726 Resort Hotel 0 0 2015 September
## 1727 Resort Hotel 0 63 2015 September
## 1728 Resort Hotel 0 3 2015 September
## 1729 Resort Hotel 0 8 2015 September
## 1730 Resort Hotel 0 1 2015 September
## 1731 Resort Hotel 0 70 2015 September
## 1732 Resort Hotel 0 4 2015 September
## 1733 Resort Hotel 0 157 2015 September
## 1734 Resort Hotel 0 1 2015 September
## 1735 Resort Hotel 0 1 2015 September
## 1736 Resort Hotel 0 8 2015 September
## 1737 Resort Hotel 0 102 2015 September
## 1738 Resort Hotel 1 310 2015 September
## 1739 Resort Hotel 0 11 2015 September
## 1740 Resort Hotel 1 148 2015 September
## 1741 Resort Hotel 0 165 2015 September
## 1742 Resort Hotel 1 101 2015 September
## 1743 Resort Hotel 1 101 2015 September
## 1744 Resort Hotel 0 9 2015 September
## 1745 Resort Hotel 1 172 2015 September
## 1746 Resort Hotel 1 171 2015 September
## 1747 Resort Hotel 0 143 2015 September
## 1748 Resort Hotel 1 145 2015 September
## 1749 Resort Hotel 1 121 2015 September
## 1750 Resort Hotel 0 0 2015 September
## 1751 Resort Hotel 0 96 2015 September
## 1752 Resort Hotel 0 136 2015 September
## 1753 Resort Hotel 1 340 2015 September
## 1754 Resort Hotel 0 2 2015 September
## 1755 Resort Hotel 0 170 2015 September
## 1756 Resort Hotel 0 149 2015 September
## 1757 Resort Hotel 0 0 2015 September
## 1758 Resort Hotel 1 127 2015 September
## 1759 Resort Hotel 1 149 2015 September
## 1760 Resort Hotel 0 19 2015 September
## 1761 Resort Hotel 1 12 2015 September
## 1762 Resort Hotel 1 178 2015 September
## 1763 Resort Hotel 0 12 2015 September
## 1764 Resort Hotel 1 178 2015 September
## 1765 Resort Hotel 0 26 2015 September
## 1766 Resort Hotel 0 2 2015 September
## 1767 Resort Hotel 1 10 2015 September
## 1768 Resort Hotel 1 120 2015 September
## 1769 Resort Hotel 1 123 2015 September
## 1770 Resort Hotel 0 137 2015 September
## 1771 Resort Hotel 0 104 2015 September
## 1772 Resort Hotel 0 172 2015 September
## 1773 Resort Hotel 0 305 2015 September
## 1774 Resort Hotel 0 83 2015 September
## 1775 Resort Hotel 0 173 2015 September
## 1776 Resort Hotel 1 94 2015 September
## 1777 Resort Hotel 0 118 2015 September
## 1778 Resort Hotel 0 156 2015 September
## 1779 Resort Hotel 0 21 2015 September
## 1780 Resort Hotel 1 17 2015 September
## 1781 Resort Hotel 0 128 2015 September
## 1782 Resort Hotel 0 34 2015 September
## 1783 Resort Hotel 0 19 2015 September
## 1784 Resort Hotel 1 108 2015 September
## 1785 Resort Hotel 0 25 2015 September
## 1786 Resort Hotel 0 107 2015 September
## 1787 Resort Hotel 0 11 2015 September
## 1788 Resort Hotel 1 94 2015 September
## 1789 Resort Hotel 0 83 2015 September
## 1790 Resort Hotel 0 84 2015 September
## 1791 Resort Hotel 0 135 2015 September
## 1792 Resort Hotel 0 11 2015 September
## 1793 Resort Hotel 0 5 2015 September
## 1794 Resort Hotel 1 175 2015 September
## 1795 Resort Hotel 1 105 2015 September
## 1796 Resort Hotel 0 99 2015 September
## 1797 Resort Hotel 1 81 2015 September
## 1798 Resort Hotel 0 152 2015 September
## 1799 Resort Hotel 1 103 2015 September
## 1800 Resort Hotel 1 96 2015 September
## 1801 Resort Hotel 1 81 2015 September
## 1802 Resort Hotel 0 124 2015 September
## 1803 Resort Hotel 0 354 2015 September
## 1804 Resort Hotel 1 116 2015 September
## 1805 Resort Hotel 0 119 2015 September
## 1806 Resort Hotel 0 1 2015 September
## 1807 Resort Hotel 0 0 2015 September
## 1808 Resort Hotel 0 5 2015 September
## 1809 Resort Hotel 0 0 2015 September
## 1810 Resort Hotel 0 46 2015 September
## 1811 Resort Hotel 0 0 2015 September
## 1812 Resort Hotel 0 0 2015 September
## 1813 Resort Hotel 0 0 2015 September
## 1814 Resort Hotel 0 6 2015 September
## 1815 Resort Hotel 0 44 2015 September
## 1816 Resort Hotel 0 42 2015 September
## 1817 Resort Hotel 1 64 2015 September
## 1818 Resort Hotel 0 65 2015 September
## 1819 Resort Hotel 0 93 2015 September
## 1820 Resort Hotel 0 72 2015 September
## 1821 Resort Hotel 0 42 2015 September
## 1822 Resort Hotel 1 65 2015 September
## 1823 Resort Hotel 1 121 2015 September
## 1824 Resort Hotel 0 104 2015 September
## 1825 Resort Hotel 0 1 2015 September
## 1826 Resort Hotel 0 56 2015 September
## 1827 Resort Hotel 0 114 2015 September
## 1828 Resort Hotel 0 85 2015 September
## 1829 Resort Hotel 1 65 2015 September
## 1830 Resort Hotel 0 85 2015 September
## 1831 Resort Hotel 1 95 2015 September
## 1832 Resort Hotel 1 97 2015 September
## 1833 Resort Hotel 1 97 2015 September
## 1834 Resort Hotel 0 6 2015 September
## 1835 Resort Hotel 0 78 2015 September
## 1836 Resort Hotel 0 1 2015 September
## 1837 Resort Hotel 0 50 2015 September
## 1838 Resort Hotel 0 0 2015 September
## 1839 Resort Hotel 1 105 2015 September
## 1840 Resort Hotel 0 110 2015 September
## 1841 Resort Hotel 0 110 2015 September
## 1842 Resort Hotel 0 110 2015 September
## 1843 Resort Hotel 0 110 2015 September
## 1844 Resort Hotel 0 110 2015 September
## 1845 Resort Hotel 0 138 2015 September
## 1846 Resort Hotel 1 89 2015 September
## 1847 Resort Hotel 1 62 2015 September
## 1848 Resort Hotel 0 110 2015 September
## 1849 Resort Hotel 0 110 2015 September
## 1850 Resort Hotel 1 76 2015 September
## 1851 Resort Hotel 0 87 2015 September
## 1852 Resort Hotel 1 35 2015 September
## 1853 Resort Hotel 0 104 2015 September
## 1854 Resort Hotel 0 66 2015 September
## 1855 Resort Hotel 0 34 2015 September
## 1856 Resort Hotel 0 131 2015 September
## 1857 Resort Hotel 0 167 2015 September
## 1858 Resort Hotel 0 7 2015 September
## 1859 Resort Hotel 0 7 2015 September
## 1860 Resort Hotel 0 71 2015 September
## 1861 Resort Hotel 1 101 2015 September
## 1862 Resort Hotel 0 48 2015 September
## 1863 Resort Hotel 0 99 2015 September
## 1864 Resort Hotel 1 102 2015 September
## 1865 Resort Hotel 1 32 2015 September
## 1866 Resort Hotel 0 71 2015 September
## 1867 Resort Hotel 1 102 2015 September
## 1868 Resort Hotel 0 127 2015 September
## 1869 Resort Hotel 0 119 2015 September
## 1870 Resort Hotel 1 77 2015 September
## 1871 Resort Hotel 0 79 2015 September
## 1872 Resort Hotel 0 4 2015 September
## 1873 Resort Hotel 0 65 2015 September
## 1874 Resort Hotel 0 61 2015 September
## 1875 Resort Hotel 1 36 2015 September
## 1876 Resort Hotel 1 124 2015 September
## 1877 Resort Hotel 0 33 2015 September
## 1878 Resort Hotel 1 68 2015 September
## 1879 Resort Hotel 0 99 2015 September
## 1880 Resort Hotel 0 99 2015 September
## 1881 Resort Hotel 0 85 2015 September
## 1882 Resort Hotel 0 110 2015 September
## 1883 Resort Hotel 0 75 2015 September
## 1884 Resort Hotel 0 33 2015 September
## 1885 Resort Hotel 1 347 2015 September
## 1886 Resort Hotel 1 65 2015 September
## 1887 Resort Hotel 0 35 2015 September
## 1888 Resort Hotel 0 87 2015 September
## 1889 Resort Hotel 0 128 2015 September
## 1890 Resort Hotel 0 87 2015 September
## 1891 Resort Hotel 1 92 2015 September
## 1892 Resort Hotel 1 114 2015 September
## 1893 Resort Hotel 0 65 2015 September
## 1894 Resort Hotel 1 106 2015 September
## 1895 Resort Hotel 0 83 2015 September
## 1896 Resort Hotel 1 158 2015 September
## 1897 Resort Hotel 0 86 2015 September
## 1898 Resort Hotel 0 103 2015 September
## 1899 Resort Hotel 1 158 2015 September
## 1900 Resort Hotel 0 125 2015 September
## 1901 Resort Hotel 1 4 2015 September
## 1902 Resort Hotel 0 131 2015 September
## 1903 Resort Hotel 0 125 2015 September
## 1904 Resort Hotel 0 93 2015 September
## 1905 Resort Hotel 1 185 2015 September
## 1906 Resort Hotel 1 34 2015 September
## 1907 Resort Hotel 1 12 2015 September
## 1908 Resort Hotel 0 130 2015 September
## 1909 Resort Hotel 1 185 2015 September
## 1910 Resort Hotel 1 185 2015 September
## 1911 Resort Hotel 1 33 2015 September
## 1912 Resort Hotel 1 185 2015 September
## 1913 Resort Hotel 0 121 2015 September
## 1914 Resort Hotel 1 58 2015 September
## 1915 Resort Hotel 0 185 2015 September
## 1916 Resort Hotel 0 128 2015 September
## 1917 Resort Hotel 0 111 2015 September
## 1918 Resort Hotel 1 349 2015 September
## 1919 Resort Hotel 1 73 2015 September
## 1920 Resort Hotel 1 61 2015 September
## 1921 Resort Hotel 0 94 2015 September
## 1922 Resort Hotel 0 96 2015 September
## 1923 Resort Hotel 0 109 2015 September
## 1924 Resort Hotel 0 65 2015 September
## 1925 Resort Hotel 0 124 2015 September
## 1926 Resort Hotel 0 84 2015 September
## 1927 Resort Hotel 0 95 2015 September
## 1928 Resort Hotel 0 90 2015 September
## 1929 Resort Hotel 0 90 2015 September
## 1930 Resort Hotel 0 112 2015 September
## 1931 Resort Hotel 0 130 2015 September
## 1932 Resort Hotel 0 78 2015 September
## 1933 Resort Hotel 1 36 2015 September
## 1934 Resort Hotel 1 159 2015 September
## 1935 Resort Hotel 1 75 2015 September
## 1936 Resort Hotel 0 158 2015 September
## 1937 Resort Hotel 0 108 2015 September
## 1938 Resort Hotel 0 158 2015 September
## 1939 Resort Hotel 0 70 2015 September
## 1940 Resort Hotel 1 1 2015 September
## 1941 Resort Hotel 0 76 2015 September
## 1942 Resort Hotel 1 183 2015 September
## 1943 Resort Hotel 0 21 2015 September
## 1944 Resort Hotel 0 21 2015 September
## 1945 Resort Hotel 0 21 2015 September
## 1946 Resort Hotel 1 21 2015 September
## 1947 Resort Hotel 1 21 2015 September
## 1948 Resort Hotel 0 34 2015 September
## 1949 Resort Hotel 0 119 2015 September
## 1950 Resort Hotel 1 6 2015 September
## 1951 Resort Hotel 1 6 2015 September
## 1952 Resort Hotel 0 8 2015 September
## 1953 Resort Hotel 1 68 2015 September
## 1954 Resort Hotel 1 68 2015 September
## 1955 Resort Hotel 0 137 2015 September
## 1956 Resort Hotel 0 154 2015 September
## 1957 Resort Hotel 0 76 2015 September
## 1958 Resort Hotel 0 21 2015 September
## 1959 Resort Hotel 0 71 2015 September
## 1960 Resort Hotel 0 36 2015 September
## 1961 Resort Hotel 0 64 2015 September
## 1962 Resort Hotel 0 29 2015 September
## 1963 Resort Hotel 1 352 2015 September
## 1964 Resort Hotel 0 76 2015 September
## 1965 Resort Hotel 0 76 2015 September
## 1966 Resort Hotel 0 75 2015 September
## 1967 Resort Hotel 0 115 2015 September
## 1968 Resort Hotel 0 84 2015 September
## 1969 Resort Hotel 0 77 2015 September
## 1970 Resort Hotel 1 7 2015 September
## 1971 Resort Hotel 0 0 2015 September
## 1972 Resort Hotel 0 16 2015 September
## 1973 Resort Hotel 0 2 2015 September
## 1974 Resort Hotel 0 16 2015 September
## 1975 Resort Hotel 0 0 2015 September
## 1976 Resort Hotel 0 9 2015 September
## 1977 Resort Hotel 0 8 2015 September
## 1978 Resort Hotel 1 109 2015 September
## 1979 Resort Hotel 0 9 2015 September
## 1980 Resort Hotel 0 8 2015 September
## 1981 Resort Hotel 1 60 2015 September
## 1982 Resort Hotel 0 79 2015 September
## 1983 Resort Hotel 0 79 2015 September
## 1984 Resort Hotel 1 67 2015 September
## 1985 Resort Hotel 1 74 2015 September
## 1986 Resort Hotel 0 119 2015 September
## 1987 Resort Hotel 0 51 2015 September
## 1988 Resort Hotel 0 106 2015 September
## 1989 Resort Hotel 0 119 2015 September
## 1990 Resort Hotel 1 74 2015 September
## 1991 Resort Hotel 0 39 2015 September
## 1992 Resort Hotel 0 1 2015 September
## 1993 Resort Hotel 1 37 2015 September
## 1994 Resort Hotel 1 37 2015 September
## 1995 Resort Hotel 0 10 2015 September
## 1996 Resort Hotel 1 75 2015 September
## 1997 Resort Hotel 1 59 2015 September
## 1998 Resort Hotel 1 61 2015 September
## 1999 Resort Hotel 1 61 2015 September
## 2000 Resort Hotel 1 61 2015 September
## 2001 Resort Hotel 0 44 2015 September
## 2002 Resort Hotel 0 47 2015 September
## 2003 Resort Hotel 0 64 2015 September
## 2004 Resort Hotel 1 354 2015 September
## 2005 Resort Hotel 0 98 2015 September
## 2006 Resort Hotel 0 136 2015 September
## 2007 Resort Hotel 0 116 2015 September
## 2008 Resort Hotel 1 54 2015 September
## 2009 Resort Hotel 0 41 2015 September
## 2010 Resort Hotel 0 11 2015 September
## 2011 Resort Hotel 0 32 2015 September
## 2012 Resort Hotel 1 73 2015 September
## 2013 Resort Hotel 0 53 2015 September
## 2014 Resort Hotel 0 100 2015 September
## 2015 Resort Hotel 0 73 2015 September
## 2016 Resort Hotel 0 177 2015 September
## 2017 Resort Hotel 0 51 2015 September
## 2018 Resort Hotel 1 81 2015 September
## 2019 Resort Hotel 0 47 2015 September
## 2020 Resort Hotel 1 81 2015 September
## 2021 Resort Hotel 0 163 2015 September
## 2022 Resort Hotel 0 59 2015 September
## 2023 Resort Hotel 1 55 2015 September
## 2024 Resort Hotel 0 97 2015 September
## 2025 Resort Hotel 0 85 2015 September
## 2026 Resort Hotel 0 177 2015 September
## 2027 Resort Hotel 0 0 2015 September
## 2028 Resort Hotel 0 0 2015 September
## 2029 Resort Hotel 1 80 2015 September
## 2030 Resort Hotel 1 77 2015 September
## 2031 Resort Hotel 0 69 2015 September
## 2032 Resort Hotel 1 80 2015 September
## 2033 Resort Hotel 1 77 2015 September
## 2034 Resort Hotel 0 56 2015 September
## 2035 Resort Hotel 1 77 2015 September
## 2036 Resort Hotel 1 80 2015 September
## 2037 Resort Hotel 1 80 2015 September
## 2038 Resort Hotel 1 98 2015 September
## 2039 Resort Hotel 1 56 2015 September
## 2040 Resort Hotel 0 60 2015 September
## 2041 Resort Hotel 0 77 2015 September
## 2042 Resort Hotel 0 53 2015 September
## 2043 Resort Hotel 0 72 2015 September
## 2044 Resort Hotel 1 119 2015 September
## 2045 Resort Hotel 0 164 2015 September
## 2046 Resort Hotel 1 64 2015 September
## 2047 Resort Hotel 1 89 2015 September
## 2048 Resort Hotel 1 57 2015 September
## 2049 Resort Hotel 0 54 2015 September
## 2050 Resort Hotel 0 172 2015 September
## 2051 Resort Hotel 0 60 2015 September
## 2052 Resort Hotel 1 13 2015 September
## 2053 Resort Hotel 0 165 2015 September
## 2054 Resort Hotel 1 57 2015 September
## 2055 Resort Hotel 0 55 2015 September
## 2056 Resort Hotel 1 76 2015 September
## 2057 Resort Hotel 0 81 2015 September
## 2058 Resort Hotel 1 76 2015 September
## 2059 Resort Hotel 0 96 2015 September
## 2060 Resort Hotel 0 61 2015 September
## 2061 Resort Hotel 0 19 2015 September
## 2062 Resort Hotel 0 50 2015 September
## 2063 Resort Hotel 0 0 2015 September
## 2064 Resort Hotel 0 2 2015 September
## 2065 Resort Hotel 0 2 2015 September
## 2066 Resort Hotel 0 2 2015 September
## 2067 Resort Hotel 0 55 2015 September
## 2068 Resort Hotel 0 56 2015 September
## 2069 Resort Hotel 0 2 2015 September
## 2070 Resort Hotel 0 2 2015 September
## 2071 Resort Hotel 0 55 2015 September
## 2072 Resort Hotel 0 55 2015 September
## 2073 Resort Hotel 1 55 2015 September
## 2074 Resort Hotel 1 2 2015 September
## 2075 Resort Hotel 0 54 2015 September
## 2076 Resort Hotel 1 142 2015 September
## 2077 Resort Hotel 0 51 2015 September
## 2078 Resort Hotel 0 49 2015 September
## 2079 Resort Hotel 0 93 2015 September
## 2080 Resort Hotel 0 48 2015 September
## 2081 Resort Hotel 1 68 2015 September
## 2082 Resort Hotel 0 92 2015 September
## 2083 Resort Hotel 0 97 2015 September
## 2084 Resort Hotel 0 48 2015 September
## 2085 Resort Hotel 0 58 2015 September
## 2086 Resort Hotel 1 70 2015 September
## 2087 Resort Hotel 0 41 2015 September
## 2088 Resort Hotel 0 0 2015 October
## 2089 Resort Hotel 1 63 2015 October
## 2090 Resort Hotel 0 44 2015 October
## 2091 Resort Hotel 0 19 2015 October
## 2092 Resort Hotel 0 57 2015 October
## 2093 Resort Hotel 0 24 2015 October
## 2094 Resort Hotel 0 22 2015 October
## 2095 Resort Hotel 0 51 2015 October
## 2096 Resort Hotel 0 23 2015 October
## 2097 Resort Hotel 0 79 2015 October
## 2098 Resort Hotel 0 48 2015 October
## 2099 Resort Hotel 0 51 2015 October
## 2100 Resort Hotel 0 78 2015 October
## 2101 Resort Hotel 0 24 2015 October
## 2102 Resort Hotel 0 45 2015 October
## 2103 Resort Hotel 1 24 2015 October
## 2104 Resort Hotel 0 44 2015 October
## 2105 Resort Hotel 0 78 2015 October
## 2106 Resort Hotel 0 45 2015 October
## 2107 Resort Hotel 0 115 2015 October
## 2108 Resort Hotel 0 50 2015 October
## 2109 Resort Hotel 0 45 2015 October
## 2110 Resort Hotel 1 103 2015 October
## 2111 Resort Hotel 0 145 2015 October
## 2112 Resort Hotel 0 113 2015 October
## 2113 Resort Hotel 0 102 2015 October
## 2114 Resort Hotel 0 113 2015 October
## 2115 Resort Hotel 0 0 2015 October
## 2116 Resort Hotel 1 29 2015 October
## 2117 Resort Hotel 1 115 2015 October
## 2118 Resort Hotel 0 73 2015 October
## 2119 Resort Hotel 0 115 2015 October
## 2120 Resort Hotel 0 115 2015 October
## 2121 Resort Hotel 0 20 2015 October
## 2122 Resort Hotel 0 56 2015 October
## 2123 Resort Hotel 0 50 2015 October
## 2124 Resort Hotel 0 20 2015 October
## 2125 Resort Hotel 0 53 2015 October
## 2126 Resort Hotel 0 46 2015 October
## 2127 Resort Hotel 1 23 2015 October
## 2128 Resort Hotel 0 63 2015 October
## 2129 Resort Hotel 0 200 2015 October
## 2130 Resort Hotel 0 56 2015 October
## 2131 Resort Hotel 0 49 2015 October
## 2132 Resort Hotel 0 56 2015 October
## 2133 Resort Hotel 0 0 2015 October
## 2134 Resort Hotel 1 87 2015 October
## 2135 Resort Hotel 1 87 2015 October
## 2136 Resort Hotel 1 87 2015 October
## 2137 Resort Hotel 1 87 2015 October
## 2138 Resort Hotel 0 114 2015 October
## 2139 Resort Hotel 0 1 2015 October
## 2140 Resort Hotel 0 5 2015 October
## 2141 Resort Hotel 0 1 2015 October
## 2142 Resort Hotel 1 87 2015 October
## 2143 Resort Hotel 1 87 2015 October
## 2144 Resort Hotel 1 4 2015 October
## 2145 Resort Hotel 1 4 2015 October
## 2146 Resort Hotel 0 192 2015 October
## 2147 Resort Hotel 0 192 2015 October
## 2148 Resort Hotel 0 192 2015 October
## 2149 Resort Hotel 0 39 2015 October
## 2150 Resort Hotel 0 25 2015 October
## 2151 Resort Hotel 1 192 2015 October
## 2152 Resort Hotel 0 192 2015 October
## 2153 Resort Hotel 0 53 2015 October
## 2154 Resort Hotel 1 21 2015 October
## 2155 Resort Hotel 0 19 2015 October
## 2156 Resort Hotel 0 10 2015 October
## 2157 Resort Hotel 0 61 2015 October
## 2158 Resort Hotel 1 72 2015 October
## 2159 Resort Hotel 0 70 2015 October
## 2160 Resort Hotel 0 46 2015 October
## 2161 Resort Hotel 0 38 2015 October
## 2162 Resort Hotel 0 53 2015 October
## 2163 Resort Hotel 0 51 2015 October
## 2164 Resort Hotel 0 124 2015 October
## 2165 Resort Hotel 1 361 2015 October
## 2166 Resort Hotel 0 25 2015 October
## 2167 Resort Hotel 1 49 2015 October
## 2168 Resort Hotel 0 53 2015 October
## 2169 Resort Hotel 0 14 2015 October
## 2170 Resort Hotel 0 163 2015 October
## 2171 Resort Hotel 0 2 2015 October
## 2172 Resort Hotel 0 1 2015 October
## 2173 Resort Hotel 0 0 2015 October
## 2174 Resort Hotel 1 338 2015 October
## 2175 Resort Hotel 0 0 2015 October
## 2176 Resort Hotel 1 34 2015 October
## 2177 Resort Hotel 1 34 2015 October
## 2178 Resort Hotel 0 81 2015 October
## 2179 Resort Hotel 0 26 2015 October
## 2180 Resort Hotel 0 75 2015 October
## 2181 Resort Hotel 0 54 2015 October
## 2182 Resort Hotel 1 170 2015 October
## 2183 Resort Hotel 1 170 2015 October
## 2184 Resort Hotel 1 170 2015 October
## 2185 Resort Hotel 1 170 2015 October
## 2186 Resort Hotel 1 170 2015 October
## 2187 Resort Hotel 1 170 2015 October
## 2188 Resort Hotel 1 170 2015 October
## 2189 Resort Hotel 1 170 2015 October
## 2190 Resort Hotel 1 170 2015 October
## 2191 Resort Hotel 1 170 2015 October
## 2192 Resort Hotel 1 170 2015 October
## 2193 Resort Hotel 1 170 2015 October
## 2194 Resort Hotel 0 69 2015 October
## 2195 Resort Hotel 0 69 2015 October
## 2196 Resort Hotel 1 38 2015 October
## 2197 Resort Hotel 0 90 2015 October
## 2198 Resort Hotel 0 111 2015 October
## 2199 Resort Hotel 0 18 2015 October
## 2200 Resort Hotel 0 7 2015 October
## 2201 Resort Hotel 0 1 2015 October
## 2202 Resort Hotel 0 69 2015 October
## 2203 Resort Hotel 1 7 2015 October
## 2204 Resort Hotel 0 10 2015 October
## 2205 Resort Hotel 0 55 2015 October
## 2206 Resort Hotel 0 10 2015 October
## 2207 Resort Hotel 0 52 2015 October
## 2208 Resort Hotel 0 14 2015 October
## 2209 Resort Hotel 0 17 2015 October
## 2210 Resort Hotel 1 74 2015 October
## 2211 Resort Hotel 1 74 2015 October
## 2212 Resort Hotel 1 74 2015 October
## 2213 Resort Hotel 1 74 2015 October
## 2214 Resort Hotel 0 207 2015 October
## 2215 Resort Hotel 1 102 2015 October
## 2216 Resort Hotel 1 1 2015 October
## 2217 Resort Hotel 1 1 2015 October
## 2218 Resort Hotel 1 1 2015 October
## 2219 Resort Hotel 0 0 2015 October
## 2220 Resort Hotel 1 43 2015 October
## 2221 Resort Hotel 0 70 2015 October
## 2222 Resort Hotel 0 0 2015 October
## 2223 Resort Hotel 1 91 2015 October
## 2224 Resort Hotel 1 1 2015 October
## 2225 Resort Hotel 0 1 2015 October
## 2226 Resort Hotel 0 43 2015 October
## 2227 Resort Hotel 0 3 2015 October
## 2228 Resort Hotel 0 31 2015 October
## 2229 Resort Hotel 1 328 2015 October
## 2230 Resort Hotel 1 328 2015 October
## 2231 Resort Hotel 0 87 2015 October
## 2232 Resort Hotel 1 328 2015 October
## 2233 Resort Hotel 0 84 2015 October
## 2234 Resort Hotel 0 123 2015 October
## 2235 Resort Hotel 1 4 2015 October
## 2236 Resort Hotel 0 13 2015 October
## 2237 Resort Hotel 1 4 2015 October
## 2238 Resort Hotel 1 4 2015 October
## 2239 Resort Hotel 1 4 2015 October
## 2240 Resort Hotel 0 33 2015 October
## 2241 Resort Hotel 0 13 2015 October
## 2242 Resort Hotel 0 21 2015 October
## 2243 Resort Hotel 0 0 2015 October
## 2244 Resort Hotel 0 2 2015 October
## 2245 Resort Hotel 0 6 2015 October
## 2246 Resort Hotel 0 78 2015 October
## 2247 Resort Hotel 0 21 2015 October
## 2248 Resort Hotel 0 175 2015 October
## 2249 Resort Hotel 0 158 2015 October
## 2250 Resort Hotel 0 11 2015 October
## 2251 Resort Hotel 0 158 2015 October
## 2252 Resort Hotel 1 16 2015 October
## 2253 Resort Hotel 0 174 2015 October
## 2254 Resort Hotel 0 174 2015 October
## 2255 Resort Hotel 1 21 2015 October
## 2256 Resort Hotel 0 13 2015 October
## 2257 Resort Hotel 0 3 2015 October
## 2258 Resort Hotel 0 3 2015 October
## 2259 Resort Hotel 1 22 2015 October
## 2260 Resort Hotel 0 3 2015 October
## 2261 Resort Hotel 0 33 2015 October
## 2262 Resort Hotel 0 3 2015 October
## 2263 Resort Hotel 0 44 2015 October
## 2264 Resort Hotel 0 77 2015 October
## 2265 Resort Hotel 0 10 2015 October
## 2266 Resort Hotel 0 44 2015 October
## 2267 Resort Hotel 0 76 2015 October
## 2268 Resort Hotel 0 71 2015 October
## 2269 Resort Hotel 0 9 2015 October
## 2270 Resort Hotel 0 33 2015 October
## 2271 Resort Hotel 0 3 2015 October
## 2272 Resort Hotel 0 77 2015 October
## 2273 Resort Hotel 0 59 2015 October
## 2274 Resort Hotel 0 77 2015 October
## 2275 Resort Hotel 1 77 2015 October
## 2276 Resort Hotel 0 3 2015 October
## 2277 Resort Hotel 0 71 2015 October
## 2278 Resort Hotel 0 29 2015 October
## 2279 Resort Hotel 0 10 2015 October
## 2280 Resort Hotel 1 330 2015 October
## 2281 Resort Hotel 0 22 2015 October
## 2282 Resort Hotel 0 132 2015 October
## 2283 Resort Hotel 0 10 2015 October
## 2284 Resort Hotel 0 94 2015 October
## 2285 Resort Hotel 1 94 2015 October
## 2286 Resort Hotel 0 128 2015 October
## 2287 Resort Hotel 0 1 2015 October
## 2288 Resort Hotel 0 16 2015 October
## 2289 Resort Hotel 0 1 2015 October
## 2290 Resort Hotel 1 134 2015 October
## 2291 Resort Hotel 0 77 2015 October
## 2292 Resort Hotel 0 77 2015 October
## 2293 Resort Hotel 0 34 2015 October
## 2294 Resort Hotel 0 4 2015 October
## 2295 Resort Hotel 1 78 2015 October
## 2296 Resort Hotel 1 77 2015 October
## 2297 Resort Hotel 0 77 2015 October
## 2298 Resort Hotel 1 78 2015 October
## 2299 Resort Hotel 1 78 2015 October
## 2300 Resort Hotel 1 78 2015 October
## 2301 Resort Hotel 1 78 2015 October
## 2302 Resort Hotel 1 78 2015 October
## 2303 Resort Hotel 1 78 2015 October
## 2304 Resort Hotel 0 63 2015 October
## 2305 Resort Hotel 1 78 2015 October
## 2306 Resort Hotel 1 78 2015 October
## 2307 Resort Hotel 0 8 2015 October
## 2308 Resort Hotel 0 4 2015 October
## 2309 Resort Hotel 0 77 2015 October
## 2310 Resort Hotel 0 67 2015 October
## 2311 Resort Hotel 0 21 2015 October
## 2312 Resort Hotel 0 13 2015 October
## 2313 Resort Hotel 1 78 2015 October
## 2314 Resort Hotel 1 78 2015 October
## 2315 Resort Hotel 1 78 2015 October
## 2316 Resort Hotel 1 78 2015 October
## 2317 Resort Hotel 1 78 2015 October
## 2318 Resort Hotel 1 78 2015 October
## 2319 Resort Hotel 1 78 2015 October
## 2320 Resort Hotel 1 78 2015 October
## 2321 Resort Hotel 1 78 2015 October
## 2322 Resort Hotel 1 78 2015 October
## 2323 Resort Hotel 1 78 2015 October
## 2324 Resort Hotel 1 78 2015 October
## 2325 Resort Hotel 1 78 2015 October
## 2326 Resort Hotel 0 63 2015 October
## 2327 Resort Hotel 0 9 2015 October
## 2328 Resort Hotel 0 3 2015 October
## 2329 Resort Hotel 1 78 2015 October
## 2330 Resort Hotel 1 78 2015 October
## 2331 Resort Hotel 1 78 2015 October
## 2332 Resort Hotel 0 63 2015 October
## 2333 Resort Hotel 0 14 2015 October
## 2334 Resort Hotel 0 8 2015 October
## 2335 Resort Hotel 0 25 2015 October
## 2336 Resort Hotel 1 78 2015 October
## 2337 Resort Hotel 1 78 2015 October
## 2338 Resort Hotel 1 78 2015 October
## 2339 Resort Hotel 1 78 2015 October
## 2340 Resort Hotel 0 22 2015 October
## 2341 Resort Hotel 0 0 2015 October
## 2342 Resort Hotel 0 22 2015 October
## 2343 Resort Hotel 0 10 2015 October
## 2344 Resort Hotel 0 4 2015 October
## 2345 Resort Hotel 0 7 2015 October
## 2346 Resort Hotel 0 350 2015 October
## 2347 Resort Hotel 1 2 2015 October
## 2348 Resort Hotel 0 11 2015 October
## 2349 Resort Hotel 0 11 2015 October
## 2350 Resort Hotel 0 5 2015 October
## 2351 Resort Hotel 1 35 2015 October
## 2352 Resort Hotel 0 12 2015 October
## 2353 Resort Hotel 0 4 2015 October
## 2354 Resort Hotel 0 5 2015 October
## 2355 Resort Hotel 0 12 2015 October
## 2356 Resort Hotel 1 21 2015 October
## 2357 Resort Hotel 0 11 2015 October
## 2358 Resort Hotel 0 4 2015 October
## 2359 Resort Hotel 0 5 2015 October
## 2360 Resort Hotel 0 19 2015 October
## 2361 Resort Hotel 0 5 2015 October
## 2362 Resort Hotel 0 4 2015 October
## 2363 Resort Hotel 0 4 2015 October
## 2364 Resort Hotel 0 5 2015 October
## 2365 Resort Hotel 0 12 2015 October
## 2366 Resort Hotel 0 16 2015 October
## 2367 Resort Hotel 1 21 2015 October
## 2368 Resort Hotel 0 0 2015 October
## 2369 Resort Hotel 1 143 2015 October
## 2370 Resort Hotel 1 143 2015 October
## 2371 Resort Hotel 1 143 2015 October
## 2372 Resort Hotel 1 143 2015 October
## 2373 Resort Hotel 1 143 2015 October
## 2374 Resort Hotel 1 143 2015 October
## 2375 Resort Hotel 1 143 2015 October
## 2376 Resort Hotel 1 143 2015 October
## 2377 Resort Hotel 1 143 2015 October
## 2378 Resort Hotel 1 143 2015 October
## 2379 Resort Hotel 1 368 2015 October
## 2380 Resort Hotel 1 143 2015 October
## 2381 Resort Hotel 1 143 2015 October
## 2382 Resort Hotel 1 143 2015 October
## 2383 Resort Hotel 1 143 2015 October
## 2384 Resort Hotel 0 78 2015 October
## 2385 Resort Hotel 0 78 2015 October
## 2386 Resort Hotel 0 2 2015 October
## 2387 Resort Hotel 0 2 2015 October
## 2388 Resort Hotel 0 2 2015 October
## 2389 Resort Hotel 0 39 2015 October
## 2390 Resort Hotel 1 46 2015 October
## 2391 Resort Hotel 0 0 2015 October
## 2392 Resort Hotel 0 9 2015 October
## 2393 Resort Hotel 0 6 2015 October
## 2394 Resort Hotel 0 5 2015 October
## 2395 Resort Hotel 0 2 2015 October
## 2396 Resort Hotel 0 1 2015 October
## 2397 Resort Hotel 1 99 2015 October
## 2398 Resort Hotel 0 1 2015 October
## 2399 Resort Hotel 1 87 2015 October
## 2400 Resort Hotel 1 12 2015 October
## 2401 Resort Hotel 0 41 2015 October
## 2402 Resort Hotel 1 102 2015 October
## 2403 Resort Hotel 1 87 2015 October
## 2404 Resort Hotel 0 83 2015 October
## 2405 Resort Hotel 0 13 2015 October
## 2406 Resort Hotel 0 5 2015 October
## 2407 Resort Hotel 0 5 2015 October
## 2408 Resort Hotel 0 5 2015 October
## 2409 Resort Hotel 0 0 2015 October
## 2410 Resort Hotel 0 0 2015 October
## 2411 Resort Hotel 0 13 2015 October
## 2412 Resort Hotel 0 13 2015 October
## 2413 Resort Hotel 0 20 2015 October
## 2414 Resort Hotel 0 0 2015 October
## 2415 Resort Hotel 0 2 2015 October
## 2416 Resort Hotel 0 4 2015 October
## 2417 Resort Hotel 0 6 2015 October
## 2418 Resort Hotel 1 334 2015 October
## 2419 Resort Hotel 1 334 2015 October
## 2420 Resort Hotel 1 334 2015 October
## 2421 Resort Hotel 0 283 2015 October
## 2422 Resort Hotel 0 19 2015 October
## 2423 Resort Hotel 0 1 2015 October
## 2424 Resort Hotel 0 1 2015 October
## 2425 Resort Hotel 0 0 2015 October
## 2426 Resort Hotel 0 17 2015 October
## 2427 Resort Hotel 0 0 2015 October
## 2428 Resort Hotel 0 0 2015 October
## 2429 Resort Hotel 1 21 2015 October
## 2430 Resort Hotel 0 56 2015 October
## 2431 Resort Hotel 0 73 2015 October
## 2432 Resort Hotel 0 32 2015 October
## 2433 Resort Hotel 0 1 2015 October
## 2434 Resort Hotel 0 2 2015 October
## 2435 Resort Hotel 0 0 2015 October
## 2436 Resort Hotel 0 1 2015 October
## 2437 Resort Hotel 0 0 2015 October
## 2438 Resort Hotel 0 2 2015 October
## 2439 Resort Hotel 0 106 2015 October
## 2440 Resort Hotel 0 7 2015 October
## 2441 Resort Hotel 0 7 2015 October
## 2442 Resort Hotel 0 27 2015 October
## 2443 Resort Hotel 0 150 2015 October
## 2444 Resort Hotel 0 153 2015 October
## 2445 Resort Hotel 0 153 2015 October
## 2446 Resort Hotel 0 153 2015 October
## 2447 Resort Hotel 0 0 2015 October
## 2448 Resort Hotel 0 8 2015 October
## 2449 Resort Hotel 0 1 2015 October
## 2450 Resort Hotel 0 8 2015 October
## 2451 Resort Hotel 0 130 2015 October
## 2452 Resort Hotel 0 88 2015 October
## 2453 Resort Hotel 0 88 2015 October
## 2454 Resort Hotel 0 0 2015 October
## 2455 Resort Hotel 0 25 2015 October
## 2456 Resort Hotel 0 2 2015 October
## 2457 Resort Hotel 1 9 2015 October
## 2458 Resort Hotel 0 136 2015 October
## 2459 Resort Hotel 0 95 2015 October
## 2460 Resort Hotel 1 50 2015 October
## 2461 Resort Hotel 0 9 2015 October
## 2462 Resort Hotel 1 37 2015 October
## 2463 Resort Hotel 1 37 2015 October
## 2464 Resort Hotel 1 73 2015 October
## 2465 Resort Hotel 0 17 2015 October
## 2466 Resort Hotel 0 74 2015 October
## 2467 Resort Hotel 1 92 2015 October
## 2468 Resort Hotel 0 47 2015 October
## 2469 Resort Hotel 0 41 2015 October
## 2470 Resort Hotel 1 72 2015 October
## 2471 Resort Hotel 1 82 2015 October
## 2472 Resort Hotel 0 86 2015 October
## 2473 Resort Hotel 0 68 2015 October
## 2474 Resort Hotel 0 80 2015 October
## 2475 Resort Hotel 1 119 2015 October
## 2476 Resort Hotel 1 119 2015 October
## 2477 Resort Hotel 0 5 2015 October
## 2478 Resort Hotel 0 0 2015 October
## 2479 Resort Hotel 0 7 2015 October
## 2480 Resort Hotel 0 7 2015 October
## 2481 Resort Hotel 0 0 2015 October
## 2482 Resort Hotel 0 7 2015 October
## 2483 Resort Hotel 0 10 2015 October
## 2484 Resort Hotel 0 34 2015 October
## 2485 Resort Hotel 0 10 2015 October
## 2486 Resort Hotel 0 73 2015 October
## 2487 Resort Hotel 0 47 2015 October
## 2488 Resort Hotel 0 47 2015 October
## 2489 Resort Hotel 0 47 2015 October
## 2490 Resort Hotel 0 5 2015 October
## 2491 Resort Hotel 0 47 2015 October
## 2492 Resort Hotel 0 47 2015 October
## 2493 Resort Hotel 0 47 2015 October
## 2494 Resort Hotel 0 47 2015 October
## 2495 Resort Hotel 0 47 2015 October
## 2496 Resort Hotel 1 33 2015 October
## 2497 Resort Hotel 0 47 2015 October
## 2498 Resort Hotel 0 47 2015 October
## 2499 Resort Hotel 0 47 2015 October
## 2500 Resort Hotel 0 47 2015 October
## 2501 Resort Hotel 0 47 2015 October
## 2502 Resort Hotel 0 47 2015 October
## 2503 Resort Hotel 0 47 2015 October
## 2504 Resort Hotel 0 47 2015 October
## 2505 Resort Hotel 0 47 2015 October
## 2506 Resort Hotel 0 124 2015 October
## 2507 Resort Hotel 0 47 2015 October
## 2508 Resort Hotel 0 47 2015 October
## 2509 Resort Hotel 0 47 2015 October
## 2510 Resort Hotel 0 3 2015 October
## 2511 Resort Hotel 0 47 2015 October
## 2512 Resort Hotel 0 86 2015 October
## 2513 Resort Hotel 0 69 2015 October
## 2514 Resort Hotel 0 75 2015 October
## 2515 Resort Hotel 0 118 2015 October
## 2516 Resort Hotel 1 125 2015 October
## 2517 Resort Hotel 0 60 2015 October
## 2518 Resort Hotel 0 0 2015 October
## 2519 Resort Hotel 0 0 2015 October
## 2520 Resort Hotel 0 0 2015 October
## 2521 Resort Hotel 0 99 2015 October
## 2522 Resort Hotel 0 12 2015 October
## 2523 Resort Hotel 0 75 2015 October
## 2524 Resort Hotel 0 22 2015 October
## 2525 Resort Hotel 1 106 2015 October
## 2526 Resort Hotel 0 40 2015 October
## 2527 Resort Hotel 0 108 2015 October
## 2528 Resort Hotel 0 75 2015 October
## 2529 Resort Hotel 0 75 2015 October
## 2530 Resort Hotel 1 197 2015 October
## 2531 Resort Hotel 0 0 2015 October
## 2532 Resort Hotel 0 121 2015 October
## 2533 Resort Hotel 1 1 2015 October
## 2534 Resort Hotel 1 19 2015 October
## 2535 Resort Hotel 1 28 2015 October
## 2536 Resort Hotel 1 92 2015 October
## 2537 Resort Hotel 1 28 2015 October
## 2538 Resort Hotel 0 19 2015 October
## 2539 Resort Hotel 0 28 2015 October
## 2540 Resort Hotel 1 19 2015 October
## 2541 Resort Hotel 0 83 2015 October
## 2542 Resort Hotel 0 40 2015 October
## 2543 Resort Hotel 0 83 2015 October
## 2544 Resort Hotel 0 54 2015 October
## 2545 Resort Hotel 0 86 2015 October
## 2546 Resort Hotel 1 145 2015 October
## 2547 Resort Hotel 1 120 2015 October
## 2548 Resort Hotel 1 118 2015 October
## 2549 Resort Hotel 1 107 2015 October
## 2550 Resort Hotel 0 34 2015 October
## 2551 Resort Hotel 0 48 2015 October
## 2552 Resort Hotel 0 92 2015 October
## 2553 Resort Hotel 0 160 2015 October
## 2554 Resort Hotel 0 21 2015 October
## 2555 Resort Hotel 1 107 2015 October
## 2556 Resort Hotel 0 21 2015 October
## 2557 Resort Hotel 1 30 2015 October
## 2558 Resort Hotel 0 92 2015 October
## 2559 Resort Hotel 0 24 2015 October
## 2560 Resort Hotel 0 36 2015 October
## 2561 Resort Hotel 0 24 2015 October
## 2562 Resort Hotel 0 47 2015 October
## 2563 Resort Hotel 0 21 2015 October
## 2564 Resort Hotel 0 21 2015 October
## 2565 Resort Hotel 0 0 2015 October
## 2566 Resort Hotel 1 3 2015 October
## 2567 Resort Hotel 0 133 2015 October
## 2568 Resort Hotel 1 122 2015 October
## 2569 Resort Hotel 0 122 2015 October
## 2570 Resort Hotel 0 92 2015 October
## 2571 Resort Hotel 1 64 2015 October
## 2572 Resort Hotel 0 120 2015 October
## 2573 Resort Hotel 0 122 2015 October
## 2574 Resort Hotel 0 122 2015 October
## 2575 Resort Hotel 0 122 2015 October
## 2576 Resort Hotel 0 122 2015 October
## 2577 Resort Hotel 0 19 2015 October
## 2578 Resort Hotel 0 24 2015 October
## 2579 Resort Hotel 0 21 2015 October
## 2580 Resort Hotel 0 21 2015 October
## 2581 Resort Hotel 0 52 2015 October
## 2582 Resort Hotel 0 61 2015 October
## 2583 Resort Hotel 0 24 2015 October
## 2584 Resort Hotel 0 24 2015 October
## 2585 Resort Hotel 0 24 2015 October
## 2586 Resort Hotel 1 29 2015 October
## 2587 Resort Hotel 1 22 2015 October
## 2588 Resort Hotel 0 24 2015 October
## 2589 Resort Hotel 0 29 2015 October
## 2590 Resort Hotel 0 4 2015 October
## 2591 Resort Hotel 0 10 2015 October
## 2592 Resort Hotel 0 0 2015 October
## 2593 Resort Hotel 0 1 2015 October
## 2594 Resort Hotel 0 30 2015 October
## 2595 Resort Hotel 0 29 2015 October
## 2596 Resort Hotel 0 11 2015 October
## 2597 Resort Hotel 0 29 2015 October
## 2598 Resort Hotel 0 0 2015 October
## 2599 Resort Hotel 0 3 2015 October
## 2600 Resort Hotel 0 29 2015 October
## 2601 Resort Hotel 0 0 2015 October
## 2602 Resort Hotel 0 93 2015 October
## 2603 Resort Hotel 0 39 2015 October
## 2604 Resort Hotel 0 93 2015 October
## 2605 Resort Hotel 0 119 2015 October
## 2606 Resort Hotel 0 119 2015 October
## 2607 Resort Hotel 0 73 2015 October
## 2608 Resort Hotel 0 51 2015 October
## 2609 Resort Hotel 1 165 2015 October
## 2610 Resort Hotel 1 165 2015 October
## 2611 Resort Hotel 0 27 2015 October
## 2612 Resort Hotel 1 165 2015 October
## 2613 Resort Hotel 1 165 2015 October
## 2614 Resort Hotel 1 52 2015 October
## 2615 Resort Hotel 0 22 2015 October
## 2616 Resort Hotel 0 72 2015 October
## 2617 Resort Hotel 0 23 2015 October
## 2618 Resort Hotel 0 13 2015 October
## 2619 Resort Hotel 0 39 2015 October
## 2620 Resort Hotel 0 163 2015 October
## 2621 Resort Hotel 0 30 2015 October
## 2622 Resort Hotel 1 7 2015 October
## 2623 Resort Hotel 0 11 2015 October
## 2624 Resort Hotel 1 111 2015 October
## 2625 Resort Hotel 0 0 2015 October
## 2626 Resort Hotel 1 148 2015 October
## 2627 Resort Hotel 1 148 2015 October
## 2628 Resort Hotel 1 148 2015 October
## 2629 Resort Hotel 1 148 2015 October
## 2630 Resort Hotel 1 148 2015 October
## 2631 Resort Hotel 1 148 2015 October
## 2632 Resort Hotel 1 148 2015 October
## 2633 Resort Hotel 1 148 2015 October
## 2634 Resort Hotel 1 148 2015 October
## 2635 Resort Hotel 1 148 2015 October
## 2636 Resort Hotel 1 148 2015 October
## 2637 Resort Hotel 1 148 2015 October
## 2638 Resort Hotel 1 148 2015 October
## 2639 Resort Hotel 1 148 2015 October
## 2640 Resort Hotel 1 148 2015 October
## 2641 Resort Hotel 1 148 2015 October
## 2642 Resort Hotel 1 148 2015 October
## 2643 Resort Hotel 1 148 2015 October
## 2644 Resort Hotel 1 53 2015 October
## 2645 Resort Hotel 1 148 2015 October
## 2646 Resort Hotel 1 148 2015 October
## 2647 Resort Hotel 1 148 2015 October
## 2648 Resort Hotel 1 148 2015 October
## 2649 Resort Hotel 1 148 2015 October
## 2650 Resort Hotel 1 148 2015 October
## 2651 Resort Hotel 1 53 2015 October
## 2652 Resort Hotel 1 148 2015 October
## 2653 Resort Hotel 1 148 2015 October
## 2654 Resort Hotel 1 148 2015 October
## 2655 Resort Hotel 1 148 2015 October
## 2656 Resort Hotel 1 148 2015 October
## 2657 Resort Hotel 1 148 2015 October
## 2658 Resort Hotel 1 148 2015 October
## 2659 Resort Hotel 1 148 2015 October
## 2660 Resort Hotel 1 148 2015 October
## 2661 Resort Hotel 1 148 2015 October
## 2662 Resort Hotel 1 148 2015 October
## 2663 Resort Hotel 1 99 2015 October
## 2664 Resort Hotel 0 3 2015 October
## 2665 Resort Hotel 1 4 2015 October
## 2666 Resort Hotel 0 9 2015 October
## 2667 Resort Hotel 1 9 2015 October
## 2668 Resort Hotel 1 4 2015 October
## 2669 Resort Hotel 0 50 2015 October
## 2670 Resort Hotel 0 5 2015 October
## 2671 Resort Hotel 0 98 2015 October
## 2672 Resort Hotel 1 110 2015 October
## 2673 Resort Hotel 0 96 2015 October
## 2674 Resort Hotel 1 40 2015 October
## 2675 Resort Hotel 1 40 2015 October
## 2676 Resort Hotel 0 50 2015 October
## 2677 Resort Hotel 0 120 2015 October
## 2678 Resort Hotel 0 9 2015 October
## 2679 Resort Hotel 0 28 2015 October
## 2680 Resort Hotel 1 148 2015 October
## 2681 Resort Hotel 1 148 2015 October
## 2682 Resort Hotel 1 148 2015 October
## 2683 Resort Hotel 1 148 2015 October
## 2684 Resort Hotel 1 148 2015 October
## 2685 Resort Hotel 0 1 2015 October
## 2686 Resort Hotel 1 16 2015 October
## 2687 Resort Hotel 0 115 2015 October
## 2688 Resort Hotel 0 62 2015 October
## 2689 Resort Hotel 0 68 2015 October
## 2690 Resort Hotel 0 62 2015 October
## 2691 Resort Hotel 0 9 2015 October
## 2692 Resort Hotel 0 35 2015 October
## 2693 Resort Hotel 0 1 2015 October
## 2694 Resort Hotel 1 51 2015 October
## 2695 Resort Hotel 1 25 2015 October
## 2696 Resort Hotel 0 60 2015 October
## 2697 Resort Hotel 1 27 2015 October
## 2698 Resort Hotel 0 24 2015 October
## 2699 Resort Hotel 1 114 2015 October
## 2700 Resort Hotel 1 114 2015 October
## 2701 Resort Hotel 1 114 2015 October
## 2702 Resort Hotel 1 114 2015 October
## 2703 Resort Hotel 1 114 2015 October
## 2704 Resort Hotel 0 3 2015 October
## 2705 Resort Hotel 0 0 2015 October
## 2706 Resort Hotel 0 0 2015 October
## 2707 Resort Hotel 0 0 2015 October
## 2708 Resort Hotel 0 0 2015 October
## 2709 Resort Hotel 1 0 2015 October
## 2710 Resort Hotel 0 3 2015 October
## 2711 Resort Hotel 0 10 2015 October
## 2712 Resort Hotel 0 0 2015 October
## 2713 Resort Hotel 0 0 2015 October
## 2714 Resort Hotel 0 10 2015 October
## 2715 Resort Hotel 0 1 2015 October
## 2716 Resort Hotel 0 34 2015 October
## 2717 Resort Hotel 0 42 2015 October
## 2718 Resort Hotel 0 3 2015 October
## 2719 Resort Hotel 0 61 2015 October
## 2720 Resort Hotel 0 0 2015 October
## 2721 Resort Hotel 0 2 2015 October
## 2722 Resort Hotel 0 19 2015 October
## 2723 Resort Hotel 0 0 2015 October
## 2724 Resort Hotel 0 49 2015 October
## 2725 Resort Hotel 0 49 2015 October
## 2726 Resort Hotel 0 49 2015 October
## 2727 Resort Hotel 0 49 2015 October
## 2728 Resort Hotel 0 0 2015 October
## 2729 Resort Hotel 0 2 2015 October
## 2730 Resort Hotel 0 1 2015 October
## 2731 Resort Hotel 0 1 2015 October
## 2732 Resort Hotel 0 2 2015 October
## 2733 Resort Hotel 0 2 2015 October
## 2734 Resort Hotel 0 3 2015 October
## 2735 Resort Hotel 1 7 2015 October
## 2736 Resort Hotel 0 3 2015 October
## 2737 Resort Hotel 0 2 2015 October
## 2738 Resort Hotel 0 3 2015 October
## 2739 Resort Hotel 0 153 2015 October
## 2740 Resort Hotel 0 153 2015 October
## 2741 Resort Hotel 1 63 2015 October
## 2742 Resort Hotel 0 153 2015 October
## 2743 Resort Hotel 0 1 2015 October
## 2744 Resort Hotel 0 2 2015 October
## 2745 Resort Hotel 0 16 2015 October
## 2746 Resort Hotel 0 1 2015 October
## 2747 Resort Hotel 0 154 2015 October
## 2748 Resort Hotel 0 154 2015 October
## 2749 Resort Hotel 0 25 2015 October
## 2750 Resort Hotel 0 3 2015 October
## 2751 Resort Hotel 0 154 2015 October
## 2752 Resort Hotel 0 13 2015 October
## 2753 Resort Hotel 0 6 2015 October
## 2754 Resort Hotel 0 1 2015 October
## 2755 Resort Hotel 0 3 2015 October
## 2756 Resort Hotel 0 3 2015 October
## 2757 Resort Hotel 0 4 2015 October
## 2758 Resort Hotel 0 11 2015 October
## 2759 Resort Hotel 0 11 2015 October
## 2760 Resort Hotel 0 154 2015 October
## 2761 Resort Hotel 0 4 2015 October
## 2762 Resort Hotel 0 45 2015 October
## 2763 Resort Hotel 0 11 2015 October
## 2764 Resort Hotel 0 7 2015 October
## 2765 Resort Hotel 0 85 2015 October
## 2766 Resort Hotel 0 4 2015 October
## 2767 Resort Hotel 0 10 2015 October
## 2768 Resort Hotel 0 12 2015 October
## 2769 Resort Hotel 0 5 2015 October
## 2770 Resort Hotel 1 155 2015 October
## 2771 Resort Hotel 1 155 2015 October
## 2772 Resort Hotel 0 155 2015 October
## 2773 Resort Hotel 1 155 2015 October
## 2774 Resort Hotel 0 155 2015 October
## 2775 Resort Hotel 1 155 2015 October
## 2776 Resort Hotel 1 155 2015 October
## 2777 Resort Hotel 0 4 2015 October
## 2778 Resort Hotel 0 4 2015 October
## 2779 Resort Hotel 0 0 2015 October
## 2780 Resort Hotel 0 3 2015 October
## 2781 Resort Hotel 0 8 2015 October
## 2782 Resort Hotel 0 0 2015 October
## 2783 Resort Hotel 1 155 2015 October
## 2784 Resort Hotel 1 155 2015 October
## 2785 Resort Hotel 1 155 2015 October
## 2786 Resort Hotel 1 155 2015 October
## 2787 Resort Hotel 0 1 2015 October
## 2788 Resort Hotel 1 155 2015 October
## 2789 Resort Hotel 0 155 2015 October
## 2790 Resort Hotel 1 155 2015 October
## 2791 Resort Hotel 1 155 2015 October
## 2792 Resort Hotel 0 155 2015 October
## 2793 Resort Hotel 1 155 2015 October
## 2794 Resort Hotel 0 155 2015 October
## 2795 Resort Hotel 1 155 2015 October
## 2796 Resort Hotel 1 155 2015 October
## 2797 Resort Hotel 0 4 2015 October
## 2798 Resort Hotel 0 3 2015 October
## 2799 Resort Hotel 0 4 2015 October
## 2800 Resort Hotel 1 3 2015 October
## 2801 Resort Hotel 0 54 2015 October
## 2802 Resort Hotel 0 3 2015 October
## 2803 Resort Hotel 0 1 2015 October
## 2804 Resort Hotel 0 0 2015 October
## 2805 Resort Hotel 0 155 2015 October
## 2806 Resort Hotel 0 155 2015 October
## 2807 Resort Hotel 1 155 2015 October
## 2808 Resort Hotel 0 0 2015 October
## 2809 Resort Hotel 0 155 2015 October
## 2810 Resort Hotel 0 155 2015 October
## 2811 Resort Hotel 0 155 2015 October
## 2812 Resort Hotel 1 155 2015 October
## 2813 Resort Hotel 1 155 2015 October
## 2814 Resort Hotel 1 155 2015 October
## 2815 Resort Hotel 1 155 2015 October
## 2816 Resort Hotel 1 155 2015 October
## 2817 Resort Hotel 1 1 2015 October
## 2818 Resort Hotel 0 2 2015 October
## 2819 Resort Hotel 1 74 2015 October
## 2820 Resort Hotel 0 2 2015 October
## 2821 Resort Hotel 1 11 2015 October
## 2822 Resort Hotel 0 12 2015 October
## 2823 Resort Hotel 0 155 2015 October
## 2824 Resort Hotel 0 0 2015 October
## 2825 Resort Hotel 0 155 2015 October
## 2826 Resort Hotel 0 0 2015 October
## 2827 Resort Hotel 1 75 2015 October
## 2828 Resort Hotel 1 128 2015 October
## 2829 Resort Hotel 1 128 2015 October
## 2830 Resort Hotel 1 51 2015 October
## 2831 Resort Hotel 0 25 2015 October
## 2832 Resort Hotel 1 81 2015 October
## 2833 Resort Hotel 0 39 2015 October
## 2834 Resort Hotel 1 58 2015 October
## 2835 Resort Hotel 0 5 2015 October
## 2836 Resort Hotel 1 33 2015 November
## 2837 Resort Hotel 1 1 2015 November
## 2838 Resort Hotel 0 4 2015 November
## 2839 Resort Hotel 0 5 2015 November
## 2840 Resort Hotel 0 1 2015 November
## 2841 Resort Hotel 1 33 2015 November
## 2842 Resort Hotel 0 76 2015 November
## 2843 Resort Hotel 1 171 2015 November
## 2844 Resort Hotel 0 146 2015 November
## 2845 Resort Hotel 0 83 2015 November
## 2846 Resort Hotel 0 39 2015 November
## 2847 Resort Hotel 0 24 2015 November
## 2848 Resort Hotel 0 1 2015 November
## 2849 Resort Hotel 0 0 2015 November
## 2850 Resort Hotel 0 20 2015 November
## 2851 Resort Hotel 0 20 2015 November
## 2852 Resort Hotel 0 21 2015 November
## 2853 Resort Hotel 1 31 2015 November
## 2854 Resort Hotel 1 31 2015 November
## 2855 Resort Hotel 1 31 2015 November
## 2856 Resort Hotel 1 31 2015 November
## 2857 Resort Hotel 1 31 2015 November
## 2858 Resort Hotel 1 31 2015 November
## 2859 Resort Hotel 1 31 2015 November
## 2860 Resort Hotel 0 36 2015 November
## 2861 Resort Hotel 0 5 2015 November
## 2862 Resort Hotel 0 5 2015 November
## 2863 Resort Hotel 0 0 2015 November
## 2864 Resort Hotel 0 0 2015 November
## 2865 Resort Hotel 0 7 2015 November
## 2866 Resort Hotel 0 0 2015 November
## 2867 Resort Hotel 1 6 2015 November
## 2868 Resort Hotel 0 24 2015 November
## 2869 Resort Hotel 0 6 2015 November
## 2870 Resort Hotel 0 26 2015 November
## 2871 Resort Hotel 0 3 2015 November
## 2872 Resort Hotel 1 26 2015 November
## 2873 Resort Hotel 0 49 2015 November
## 2874 Resort Hotel 0 25 2015 November
## 2875 Resort Hotel 1 26 2015 November
## 2876 Resort Hotel 0 6 2015 November
## 2877 Resort Hotel 0 8 2015 November
## 2878 Resort Hotel 0 24 2015 November
## 2879 Resort Hotel 0 24 2015 November
## 2880 Resort Hotel 0 24 2015 November
## 2881 Resort Hotel 0 24 2015 November
## 2882 Resort Hotel 0 24 2015 November
## 2883 Resort Hotel 0 24 2015 November
## 2884 Resort Hotel 0 24 2015 November
## 2885 Resort Hotel 0 24 2015 November
## 2886 Resort Hotel 0 1 2015 November
## 2887 Resort Hotel 0 2 2015 November
## 2888 Resort Hotel 0 2 2015 November
## 2889 Resort Hotel 0 0 2015 November
## 2890 Resort Hotel 1 50 2015 November
## 2891 Resort Hotel 1 25 2015 November
## 2892 Resort Hotel 1 25 2015 November
## 2893 Resort Hotel 0 33 2015 November
## 2894 Resort Hotel 0 0 2015 November
## 2895 Resort Hotel 0 0 2015 November
## 2896 Resort Hotel 0 0 2015 November
## 2897 Resort Hotel 0 28 2015 November
## 2898 Resort Hotel 0 28 2015 November
## 2899 Resort Hotel 0 34 2015 November
## 2900 Resort Hotel 0 65 2015 November
## 2901 Resort Hotel 0 34 2015 November
## 2902 Resort Hotel 0 11 2015 November
## 2903 Resort Hotel 0 1 2015 November
## 2904 Resort Hotel 0 4 2015 November
## 2905 Resort Hotel 0 0 2015 November
## 2906 Resort Hotel 0 15 2015 November
## 2907 Resort Hotel 0 0 2015 November
## 2908 Resort Hotel 0 38 2015 November
## 2909 Resort Hotel 0 0 2015 November
## 2910 Resort Hotel 0 91 2015 November
## 2911 Resort Hotel 1 123 2015 November
## 2912 Resort Hotel 1 123 2015 November
## 2913 Resort Hotel 0 27 2015 November
## 2914 Resort Hotel 0 35 2015 November
## 2915 Resort Hotel 0 35 2015 November
## 2916 Resort Hotel 0 35 2015 November
## 2917 Resort Hotel 0 35 2015 November
## 2918 Resort Hotel 0 27 2015 November
## 2919 Resort Hotel 0 35 2015 November
## 2920 Resort Hotel 0 54 2015 November
## 2921 Resort Hotel 0 0 2015 November
## 2922 Resort Hotel 0 25 2015 November
## 2923 Resort Hotel 1 18 2015 November
## 2924 Resort Hotel 1 30 2015 November
## 2925 Resort Hotel 0 0 2015 November
## 2926 Resort Hotel 1 19 2015 November
## 2927 Resort Hotel 1 30 2015 November
## 2928 Resort Hotel 0 4 2015 November
## 2929 Resort Hotel 0 0 2015 November
## 2930 Resort Hotel 0 4 2015 November
## 2931 Resort Hotel 0 18 2015 November
## 2932 Resort Hotel 0 18 2015 November
## 2933 Resort Hotel 0 51 2015 November
## 2934 Resort Hotel 0 54 2015 November
## 2935 Resort Hotel 1 36 2015 November
## 2936 Resort Hotel 1 36 2015 November
## 2937 Resort Hotel 1 36 2015 November
## 2938 Resort Hotel 1 241 2015 November
## 2939 Resort Hotel 0 36 2015 November
## 2940 Resort Hotel 1 172 2015 November
## 2941 Resort Hotel 0 171 2015 November
## 2942 Resort Hotel 1 36 2015 November
## 2943 Resort Hotel 0 36 2015 November
## 2944 Resort Hotel 1 36 2015 November
## 2945 Resort Hotel 1 36 2015 November
## 2946 Resort Hotel 0 36 2015 November
## 2947 Resort Hotel 0 28 2015 November
## 2948 Resort Hotel 0 36 2015 November
## 2949 Resort Hotel 1 36 2015 November
## 2950 Resort Hotel 1 36 2015 November
## 2951 Resort Hotel 0 36 2015 November
## 2952 Resort Hotel 1 36 2015 November
## 2953 Resort Hotel 1 36 2015 November
## 2954 Resort Hotel 0 36 2015 November
## 2955 Resort Hotel 0 36 2015 November
## 2956 Resort Hotel 1 172 2015 November
## 2957 Resort Hotel 1 241 2015 November
## 2958 Resort Hotel 0 96 2015 November
## 2959 Resort Hotel 1 13 2015 November
## 2960 Resort Hotel 0 11 2015 November
## 2961 Resort Hotel 1 15 2015 November
## 2962 Resort Hotel 1 193 2015 November
## 2963 Resort Hotel 0 0 2015 November
## 2964 Resort Hotel 0 10 2015 November
## 2965 Resort Hotel 0 17 2015 November
## 2966 Resort Hotel 0 37 2015 November
## 2967 Resort Hotel 0 37 2015 November
## 2968 Resort Hotel 0 17 2015 November
## 2969 Resort Hotel 0 29 2015 November
## 2970 Resort Hotel 0 37 2015 November
## 2971 Resort Hotel 0 37 2015 November
## 2972 Resort Hotel 1 37 2015 November
## 2973 Resort Hotel 1 10 2015 November
## 2974 Resort Hotel 0 89 2015 November
## 2975 Resort Hotel 0 3 2015 November
## 2976 Resort Hotel 0 3 2015 November
## 2977 Resort Hotel 0 5 2015 November
## 2978 Resort Hotel 0 0 2015 November
## 2979 Resort Hotel 1 0 2015 November
## 2980 Resort Hotel 0 0 2015 November
## 2981 Resort Hotel 0 11 2015 November
## 2982 Resort Hotel 0 14 2015 November
## 2983 Resort Hotel 0 2 2015 November
## 2984 Resort Hotel 1 38 2015 November
## 2985 Resort Hotel 1 38 2015 November
## 2986 Resort Hotel 0 79 2015 November
## 2987 Resort Hotel 0 79 2015 November
## 2988 Resort Hotel 0 49 2015 November
## 2989 Resort Hotel 1 30 2015 November
## 2990 Resort Hotel 0 164 2015 November
## 2991 Resort Hotel 0 50 2015 November
## 2992 Resort Hotel 0 0 2015 November
## 2993 Resort Hotel 1 39 2015 November
## 2994 Resort Hotel 1 39 2015 November
## 2995 Resort Hotel 1 39 2015 November
## 2996 Resort Hotel 1 42 2015 November
## 2997 Resort Hotel 1 39 2015 November
## 2998 Resort Hotel 0 36 2015 November
## 2999 Resort Hotel 0 0 2015 November
## 3000 Resort Hotel 0 6 2015 November
## 3001 Resort Hotel 1 40 2015 November
## 3002 Resort Hotel 1 40 2015 November
## 3003 Resort Hotel 0 32 2015 November
## 3004 Resort Hotel 1 40 2015 November
## 3005 Resort Hotel 1 40 2015 November
## 3006 Resort Hotel 1 40 2015 November
## 3007 Resort Hotel 1 56 2015 November
## 3008 Resort Hotel 0 60 2015 November
## 3009 Resort Hotel 0 166 2015 November
## 3010 Resort Hotel 0 0 2015 November
## 3011 Resort Hotel 1 40 2015 November
## 3012 Resort Hotel 1 37 2015 November
## 3013 Resort Hotel 0 53 2015 November
## 3014 Resort Hotel 0 60 2015 November
## 3015 Resort Hotel 0 61 2015 November
## 3016 Resort Hotel 0 40 2015 November
## 3017 Resort Hotel 1 40 2015 November
## 3018 Resort Hotel 1 40 2015 November
## 3019 Resort Hotel 1 40 2015 November
## 3020 Resort Hotel 0 56 2015 November
## 3021 Resort Hotel 1 32 2015 November
## 3022 Resort Hotel 0 32 2015 November
## 3023 Resort Hotel 0 166 2015 November
## 3024 Resort Hotel 1 40 2015 November
## 3025 Resort Hotel 1 40 2015 November
## 3026 Resort Hotel 1 40 2015 November
## 3027 Resort Hotel 0 56 2015 November
## 3028 Resort Hotel 1 56 2015 November
## 3029 Resort Hotel 0 60 2015 November
## 3030 Resort Hotel 1 37 2015 November
## 3031 Resort Hotel 0 39 2015 November
## 3032 Resort Hotel 0 103 2015 November
## 3033 Resort Hotel 0 32 2015 November
## 3034 Resort Hotel 1 55 2015 November
## 3035 Resort Hotel 0 49 2015 November
## 3036 Resort Hotel 1 41 2015 November
## 3037 Resort Hotel 1 41 2015 November
## 3038 Resort Hotel 0 33 2015 November
## 3039 Resort Hotel 1 41 2015 November
## 3040 Resort Hotel 1 41 2015 November
## 3041 Resort Hotel 1 41 2015 November
## 3042 Resort Hotel 1 41 2015 November
## 3043 Resort Hotel 1 41 2015 November
## 3044 Resort Hotel 0 41 2015 November
## 3045 Resort Hotel 0 33 2015 November
## 3046 Resort Hotel 0 70 2015 November
## 3047 Resort Hotel 0 33 2015 November
## 3048 Resort Hotel 0 21 2015 November
## 3049 Resort Hotel 0 33 2015 November
## 3050 Resort Hotel 0 21 2015 November
## 3051 Resort Hotel 1 33 2015 November
## 3052 Resort Hotel 0 33 2015 November
## 3053 Resort Hotel 1 41 2015 November
## 3054 Resort Hotel 1 41 2015 November
## 3055 Resort Hotel 1 41 2015 November
## 3056 Resort Hotel 0 49 2015 November
## 3057 Resort Hotel 0 2 2015 November
## 3058 Resort Hotel 1 3 2015 November
## 3059 Resort Hotel 0 33 2015 November
## 3060 Resort Hotel 0 3 2015 November
## 3061 Resort Hotel 0 2 2015 November
## 3062 Resort Hotel 0 21 2015 November
## 3063 Resort Hotel 0 33 2015 November
## 3064 Resort Hotel 0 82 2015 November
## 3065 Resort Hotel 1 41 2015 November
## 3066 Resort Hotel 1 41 2015 November
## 3067 Resort Hotel 1 41 2015 November
## 3068 Resort Hotel 1 41 2015 November
## 3069 Resort Hotel 0 33 2015 November
## 3070 Resort Hotel 0 42 2015 November
## 3071 Resort Hotel 0 42 2015 November
## 3072 Resort Hotel 0 2 2015 November
## 3073 Resort Hotel 0 1 2015 November
## 3074 Resort Hotel 1 43 2015 November
## 3075 Resort Hotel 0 31 2015 November
## 3076 Resort Hotel 0 3 2015 November
## 3077 Resort Hotel 1 44 2015 November
## 3078 Resort Hotel 0 2 2015 November
## 3079 Resort Hotel 0 15 2015 November
## 3080 Resort Hotel 1 121 2015 November
## 3081 Resort Hotel 1 38 2015 November
## 3082 Resort Hotel 0 5 2015 November
## 3083 Resort Hotel 1 54 2015 November
## 3084 Resort Hotel 0 94 2015 November
## 3085 Resort Hotel 0 10 2015 November
## 3086 Resort Hotel 0 79 2015 November
## 3087 Resort Hotel 1 53 2015 November
## 3088 Resort Hotel 1 60 2015 November
## 3089 Resort Hotel 1 125 2015 November
## 3090 Resort Hotel 0 74 2015 November
## 3091 Resort Hotel 0 74 2015 November
## 3092 Resort Hotel 0 0 2015 November
## 3093 Resort Hotel 1 27 2015 November
## 3094 Resort Hotel 1 27 2015 November
## 3095 Resort Hotel 1 27 2015 November
## 3096 Resort Hotel 1 73 2015 November
## 3097 Resort Hotel 1 80 2015 November
## 3098 Resort Hotel 1 74 2015 November
## 3099 Resort Hotel 1 42 2015 November
## 3100 Resort Hotel 1 97 2015 November
## 3101 Resort Hotel 0 0 2015 November
## 3102 Resort Hotel 0 28 2015 November
## 3103 Resort Hotel 0 46 2015 November
## 3104 Resort Hotel 1 134 2015 November
## 3105 Resort Hotel 0 16 2015 November
## 3106 Resort Hotel 0 193 2015 November
## 3107 Resort Hotel 0 105 2015 November
## 3108 Resort Hotel 0 105 2015 November
## 3109 Resort Hotel 0 105 2015 November
## 3110 Resort Hotel 1 62 2015 November
## 3111 Resort Hotel 0 62 2015 November
## 3112 Resort Hotel 0 105 2015 November
## 3113 Resort Hotel 0 105 2015 November
## 3114 Resort Hotel 0 105 2015 November
## 3115 Resort Hotel 0 62 2015 November
## 3116 Resort Hotel 0 105 2015 November
## 3117 Resort Hotel 0 105 2015 November
## 3118 Resort Hotel 0 105 2015 November
## 3119 Resort Hotel 0 105 2015 November
## 3120 Resort Hotel 0 105 2015 November
## 3121 Resort Hotel 0 105 2015 November
## 3122 Resort Hotel 0 105 2015 November
## 3123 Resort Hotel 0 12 2015 November
## 3124 Resort Hotel 0 105 2015 November
## 3125 Resort Hotel 0 105 2015 November
## 3126 Resort Hotel 0 105 2015 November
## 3127 Resort Hotel 0 62 2015 November
## 3128 Resort Hotel 0 62 2015 November
## 3129 Resort Hotel 0 105 2015 November
## 3130 Resort Hotel 1 12 2015 November
## 3131 Resort Hotel 0 62 2015 November
## 3132 Resort Hotel 0 105 2015 November
## 3133 Resort Hotel 0 105 2015 November
## 3134 Resort Hotel 0 163 2015 November
## 3135 Resort Hotel 0 10 2015 November
## 3136 Resort Hotel 0 19 2015 November
## 3137 Resort Hotel 1 31 2015 November
## 3138 Resort Hotel 0 45 2015 November
## 3139 Resort Hotel 0 16 2015 November
## 3140 Resort Hotel 0 50 2015 November
## 3141 Resort Hotel 1 121 2015 November
## 3142 Resort Hotel 0 50 2015 November
## 3143 Resort Hotel 1 120 2015 November
## 3144 Resort Hotel 0 36 2015 November
## 3145 Resort Hotel 0 36 2015 November
## 3146 Resort Hotel 0 36 2015 November
## 3147 Resort Hotel 1 36 2015 November
## 3148 Resort Hotel 1 122 2015 November
## 3149 Resort Hotel 1 122 2015 November
## 3150 Resort Hotel 0 36 2015 November
## 3151 Resort Hotel 0 36 2015 November
## 3152 Resort Hotel 0 36 2015 November
## 3153 Resort Hotel 0 39 2015 November
## 3154 Resort Hotel 1 122 2015 November
## 3155 Resort Hotel 1 122 2015 November
## 3156 Resort Hotel 0 36 2015 November
## 3157 Resort Hotel 1 36 2015 November
## 3158 Resort Hotel 1 36 2015 November
## 3159 Resort Hotel 1 235 2015 November
## 3160 Resort Hotel 1 122 2015 November
## 3161 Resort Hotel 1 122 2015 November
## 3162 Resort Hotel 0 36 2015 November
## 3163 Resort Hotel 0 36 2015 November
## 3164 Resort Hotel 1 36 2015 November
## 3165 Resort Hotel 0 8 2015 November
## 3166 Resort Hotel 1 36 2015 November
## 3167 Resort Hotel 0 36 2015 November
## 3168 Resort Hotel 0 36 2015 November
## 3169 Resort Hotel 1 122 2015 November
## 3170 Resort Hotel 1 122 2015 November
## 3171 Resort Hotel 1 122 2015 November
## 3172 Resort Hotel 1 73 2015 November
## 3173 Resort Hotel 0 36 2015 November
## 3174 Resort Hotel 0 36 2015 November
## 3175 Resort Hotel 1 36 2015 November
## 3176 Resort Hotel 1 36 2015 November
## 3177 Resort Hotel 1 122 2015 November
## 3178 Resort Hotel 1 36 2015 November
## 3179 Resort Hotel 0 36 2015 November
## 3180 Resort Hotel 1 36 2015 November
## 3181 Resort Hotel 1 123 2015 November
## 3182 Resort Hotel 0 36 2015 November
## 3183 Resort Hotel 1 129 2015 November
## 3184 Resort Hotel 0 24 2015 November
## 3185 Resort Hotel 0 24 2015 November
## 3186 Resort Hotel 0 24 2015 November
## 3187 Resort Hotel 0 78 2015 November
## 3188 Resort Hotel 0 78 2015 November
## 3189 Resort Hotel 0 78 2015 November
## 3190 Resort Hotel 0 78 2015 November
## 3191 Resort Hotel 0 78 2015 November
## 3192 Resort Hotel 0 78 2015 November
## 3193 Resort Hotel 0 78 2015 November
## 3194 Resort Hotel 0 24 2015 November
## 3195 Resort Hotel 0 24 2015 November
## 3196 Resort Hotel 0 24 2015 November
## 3197 Resort Hotel 0 15 2015 November
## 3198 Resort Hotel 0 78 2015 November
## 3199 Resort Hotel 0 78 2015 November
## 3200 Resort Hotel 0 78 2015 November
## 3201 Resort Hotel 0 78 2015 November
## 3202 Resort Hotel 0 78 2015 November
## 3203 Resort Hotel 0 78 2015 November
## 3204 Resort Hotel 0 24 2015 November
## 3205 Resort Hotel 0 24 2015 November
## 3206 Resort Hotel 0 44 2015 November
## 3207 Resort Hotel 0 15 2015 November
## 3208 Resort Hotel 0 124 2015 November
## 3209 Resort Hotel 0 44 2015 November
## 3210 Resort Hotel 0 78 2015 November
## 3211 Resort Hotel 0 78 2015 November
## 3212 Resort Hotel 0 78 2015 November
## 3213 Resort Hotel 0 24 2015 November
## 3214 Resort Hotel 0 24 2015 November
## 3215 Resort Hotel 0 78 2015 November
## 3216 Resort Hotel 0 78 2015 November
## 3217 Resort Hotel 0 78 2015 November
## 3218 Resort Hotel 0 15 2015 November
## 3219 Resort Hotel 0 78 2015 November
## 3220 Resort Hotel 0 78 2015 November
## 3221 Resort Hotel 0 78 2015 November
## 3222 Resort Hotel 0 33 2015 November
## 3223 Resort Hotel 0 15 2015 November
## 3224 Resort Hotel 0 15 2015 November
## 3225 Resort Hotel 0 24 2015 November
## arrival_date_week_number arrival_date_day_of_month stays_in_weekend_nights
## 1 27 1 0
## 2 27 1 0
## 3 27 1 0
## 4 27 1 0
## 5 27 1 0
## 6 27 1 0
## 7 27 1 0
## 8 27 1 0
## 9 27 1 0
## 10 27 1 0
## 11 27 1 0
## 12 27 1 0
## 13 27 1 0
## 14 27 1 0
## 15 27 1 0
## 16 27 1 0
## 17 27 1 0
## 18 27 1 0
## 19 27 1 0
## 20 27 1 0
## 21 27 1 1
## 22 27 1 2
## 23 27 1 2
## 24 27 1 2
## 25 27 1 2
## 26 27 1 2
## 27 27 1 2
## 28 27 1 2
## 29 27 1 2
## 30 27 1 2
## 31 27 1 4
## 32 27 1 4
## 33 27 1 2
## 34 27 2 2
## 35 27 2 1
## 36 27 2 1
## 37 27 2 1
## 38 27 2 1
## 39 27 2 1
## 40 27 2 2
## 41 27 2 2
## 42 27 2 2
## 43 27 2 2
## 44 27 2 2
## 45 27 2 2
## 46 27 2 2
## 47 27 2 2
## 48 27 2 2
## 49 27 2 2
## 50 27 2 2
## 51 27 2 2
## 52 27 2 3
## 53 27 2 4
## 54 27 2 0
## 55 27 2 0
## 56 27 2 0
## 57 27 2 0
## 58 27 2 0
## 59 27 2 0
## 60 27 2 0
## 61 27 2 0
## 62 27 2 0
## 63 27 2 0
## 64 27 2 0
## 65 27 2 0
## 66 27 3 0
## 67 27 3 0
## 68 27 3 0
## 69 27 3 0
## 70 27 3 0
## 71 27 3 0
## 72 27 3 0
## 73 27 3 0
## 74 27 3 0
## 75 27 3 0
## 76 27 3 1
## 77 27 3 1
## 78 27 3 2
## 79 27 3 2
## 80 27 3 2
## 81 27 3 2
## 82 27 3 3
## 83 27 3 3
## 84 27 3 3
## 85 27 3 3
## 86 27 3 4
## 87 27 3 4
## 88 27 3 6
## 89 27 3 0
## 90 27 3 0
## 91 27 3 0
## 92 27 3 0
## 93 27 3 0
## 94 27 3 0
## 95 27 3 0
## 96 27 3 0
## 97 27 3 2
## 98 27 3 2
## 99 27 3 2
## 100 27 3 2
## 101 27 4 2
## 102 27 4 2
## 103 27 4 2
## 104 27 4 2
## 105 27 4 2
## 106 27 4 2
## 107 27 4 2
## 108 27 4 2
## 109 27 4 2
## 110 27 4 2
## 111 27 4 2
## 112 27 4 2
## 113 27 4 2
## 114 27 4 2
## 115 27 4 2
## 116 27 4 2
## 117 27 4 4
## 118 27 4 4
## 119 27 4 4
## 120 27 4 0
## 121 27 4 0
## 122 27 4 0
## 123 27 4 0
## 124 27 4 0
## 125 27 4 0
## 126 27 4 0
## 127 27 4 0
## 128 27 4 1
## 129 27 4 1
## 130 27 4 1
## 131 27 4 1
## 132 28 5 1
## 133 28 5 1
## 134 28 5 1
## 135 28 5 1
## 136 28 5 1
## 137 28 5 1
## 138 28 5 1
## 139 28 5 1
## 140 28 5 1
## 141 28 5 2
## 142 28 5 2
## 143 28 5 2
## 144 28 5 2
## 145 28 5 2
## 146 28 5 2
## 147 28 5 2
## 148 28 5 2
## 149 28 5 2
## 150 28 5 2
## 151 28 5 2
## 152 28 5 2
## 153 28 5 2
## 154 28 5 2
## 155 28 5 4
## 156 28 5 4
## 157 28 5 4
## 158 28 5 4
## 159 28 5 4
## 160 28 5 4
## 161 28 6 1
## 162 28 6 1
## 163 28 6 1
## 164 28 6 1
## 165 28 6 1
## 166 28 6 1
## 167 28 6 1
## 168 28 6 0
## 169 28 6 0
## 170 28 6 1
## 171 28 6 1
## 172 28 6 1
## 173 28 6 1
## 174 28 6 1
## 175 28 6 1
## 176 28 6 1
## 177 28 6 1
## 178 28 6 1
## 179 28 6 1
## 180 28 6 1
## 181 28 6 2
## 182 28 6 2
## 183 28 6 2
## 184 28 6 3
## 185 28 6 3
## 186 28 6 3
## 187 28 6 3
## 188 28 6 3
## 189 28 6 3
## 190 28 6 3
## 191 28 6 4
## 192 28 6 4
## 193 28 6 2
## 194 28 7 0
## 195 28 7 0
## 196 28 7 0
## 197 28 7 0
## 198 28 7 0
## 199 28 7 0
## 200 28 7 0
## 201 28 7 0
## 202 28 7 0
## 203 28 7 0
## 204 28 7 0
## 205 28 7 0
## 206 28 7 0
## 207 28 7 2
## 208 28 7 2
## 209 28 7 2
## 210 28 7 4
## 211 28 8 0
## 212 28 8 0
## 213 28 8 0
## 214 28 8 0
## 215 28 8 0
## 216 28 8 0
## 217 28 8 0
## 218 28 8 0
## 219 28 8 0
## 220 28 8 0
## 221 28 8 0
## 222 28 8 1
## 223 28 8 2
## 224 28 8 2
## 225 28 8 2
## 226 28 8 2
## 227 28 8 2
## 228 28 8 2
## 229 28 8 2
## 230 28 8 2
## 231 28 9 0
## 232 28 9 0
## 233 28 9 0
## 234 28 9 0
## 235 28 9 0
## 236 28 9 0
## 237 28 9 0
## 238 28 9 1
## 239 28 9 1
## 240 28 9 1
## 241 28 9 2
## 242 28 9 2
## 243 28 9 2
## 244 28 9 2
## 245 28 9 2
## 246 28 9 2
## 247 28 9 2
## 248 28 9 2
## 249 28 10 0
## 250 28 10 0
## 251 28 10 0
## 252 28 10 0
## 253 28 10 0
## 254 28 10 0
## 255 28 10 0
## 256 28 10 0
## 257 28 10 0
## 258 28 10 1
## 259 28 10 1
## 260 28 10 1
## 261 28 10 2
## 262 28 10 2
## 263 28 10 2
## 264 28 10 2
## 265 28 10 2
## 266 28 10 2
## 267 28 10 2
## 268 28 10 2
## 269 28 10 2
## 270 28 10 2
## 271 28 10 2
## 272 28 10 2
## 273 28 10 2
## 274 28 10 2
## 275 28 10 2
## 276 28 10 3
## 277 28 10 4
## 278 28 10 4
## 279 28 10 2
## 280 28 10 2
## 281 28 11 2
## 282 28 11 2
## 283 28 11 2
## 284 28 11 2
## 285 28 11 2
## 286 28 11 2
## 287 28 11 2
## 288 28 11 2
## 289 28 11 2
## 290 28 11 2
## 291 28 11 2
## 292 28 11 0
## 293 28 11 0
## 294 28 11 0
## 295 28 11 0
## 296 28 11 1
## 297 28 11 1
## 298 28 11 1
## 299 28 11 2
## 300 28 11 2
## 301 28 11 2
## 302 28 11 2
## 303 28 11 2
## 304 28 11 2
## 305 28 11 4
## 306 28 11 2
## 307 28 11 2
## 308 29 12 1
## 309 29 12 1
## 310 29 12 2
## 311 29 12 2
## 312 29 12 2
## 313 29 12 2
## 314 29 12 2
## 315 29 12 2
## 316 29 12 2
## 317 29 12 2
## 318 29 12 2
## 319 29 12 2
## 320 29 12 2
## 321 29 12 2
## 322 29 12 2
## 323 29 12 2
## 324 29 12 3
## 325 29 12 4
## 326 29 12 4
## 327 29 12 4
## 328 29 12 4
## 329 29 12 4
## 330 29 12 2
## 331 29 12 1
## 332 29 12 2
## 333 29 12 2
## 334 29 12 2
## 335 29 12 2
## 336 29 12 2
## 337 29 12 2
## 338 29 12 2
## 339 29 12 2
## 340 29 12 2
## 341 29 12 2
## 342 29 12 2
## 343 29 12 2
## 344 29 12 2
## 345 29 12 2
## 346 29 12 2
## 347 29 13 2
## 348 29 13 2
## 349 29 13 2
## 350 29 13 2
## 351 29 13 1
## 352 29 13 1
## 353 29 13 1
## 354 29 13 1
## 355 29 13 1
## 356 29 13 1
## 357 29 13 1
## 358 29 13 1
## 359 29 13 1
## 360 29 13 1
## 361 29 13 1
## 362 29 13 1
## 363 29 13 1
## 364 29 13 1
## 365 29 13 1
## 366 29 13 1
## 367 29 13 1
## 368 29 13 1
## 369 29 13 1
## 370 29 13 1
## 371 29 13 1
## 372 29 13 1
## 373 29 13 1
## 374 29 13 1
## 375 29 13 1
## 376 29 13 1
## 377 29 13 1
## 378 29 13 1
## 379 29 13 2
## 380 29 13 2
## 381 29 13 2
## 382 29 13 2
## 383 29 13 1
## 384 29 13 1
## 385 29 13 3
## 386 29 13 3
## 387 29 14 0
## 388 29 14 0
## 389 29 14 0
## 390 29 14 0
## 391 29 14 0
## 392 29 14 0
## 393 29 14 0
## 394 29 14 0
## 395 29 14 1
## 396 29 14 1
## 397 29 14 1
## 398 29 14 2
## 399 29 14 2
## 400 29 14 2
## 401 29 14 2
## 402 29 14 2
## 403 29 14 2
## 404 29 14 2
## 405 29 14 4
## 406 29 14 4
## 407 29 14 4
## 408 29 14 0
## 409 29 15 0
## 410 29 15 0
## 411 29 15 2
## 412 29 15 2
## 413 29 15 2
## 414 29 15 0
## 415 29 15 0
## 416 29 15 0
## 417 29 15 0
## 418 29 15 0
## 419 29 15 2
## 420 29 15 0
## 421 29 15 0
## 422 29 15 0
## 423 29 15 0
## 424 29 15 0
## 425 29 15 0
## 426 29 15 0
## 427 29 15 0
## 428 29 15 0
## 429 29 15 0
## 430 29 15 0
## 431 29 15 0
## 432 29 15 0
## 433 29 15 0
## 434 29 15 0
## 435 29 16 0
## 436 29 16 0
## 437 29 16 0
## 438 29 16 0
## 439 29 16 0
## 440 29 16 0
## 441 29 16 0
## 442 29 16 0
## 443 29 16 0
## 444 29 16 0
## 445 29 16 0
## 446 29 16 0
## 447 29 16 0
## 448 29 16 0
## 449 29 16 0
## 450 29 16 2
## 451 29 16 2
## 452 29 16 2
## 453 29 16 1
## 454 29 16 1
## 455 29 16 2
## 456 29 16 2
## 457 29 16 2
## 458 29 16 2
## 459 29 16 4
## 460 29 17 0
## 461 29 17 0
## 462 29 17 0
## 463 29 17 0
## 464 29 17 0
## 465 29 17 0
## 466 29 17 0
## 467 29 17 0
## 468 29 17 0
## 469 29 17 0
## 470 29 17 0
## 471 29 17 0
## 472 29 17 0
## 473 29 17 0
## 474 29 17 1
## 475 29 17 2
## 476 29 17 2
## 477 29 17 2
## 478 29 17 2
## 479 29 17 2
## 480 29 17 2
## 481 29 17 2
## 482 29 17 2
## 483 29 17 2
## 484 29 17 2
## 485 29 17 2
## 486 29 17 2
## 487 29 17 2
## 488 29 17 2
## 489 29 17 2
## 490 29 17 2
## 491 29 17 2
## 492 29 17 2
## 493 29 17 2
## 494 29 17 2
## 495 29 17 3
## 496 29 17 1
## 497 29 17 1
## 498 29 17 1
## 499 29 17 1
## 500 29 17 1
## 501 29 17 1
## 502 29 17 1
## 503 29 17 1
## 504 29 17 1
## 505 29 17 0
## 506 29 17 1
## 507 29 17 1
## 508 29 17 2
## 509 29 18 2
## 510 29 18 2
## 511 29 18 2
## 512 29 18 2
## 513 29 18 2
## 514 29 18 2
## 515 29 18 2
## 516 29 18 2
## 517 29 18 2
## 518 29 18 2
## 519 29 18 2
## 520 29 18 2
## 521 29 18 2
## 522 29 18 2
## 523 29 18 0
## 524 29 18 0
## 525 29 18 1
## 526 29 18 2
## 527 29 18 2
## 528 29 18 2
## 529 29 18 2
## 530 29 18 2
## 531 29 18 2
## 532 29 18 2
## 533 29 18 2
## 534 29 18 2
## 535 29 18 2
## 536 29 18 2
## 537 29 18 2
## 538 29 18 4
## 539 30 19 1
## 540 30 19 1
## 541 30 19 1
## 542 30 19 1
## 543 30 19 1
## 544 30 19 2
## 545 30 19 2
## 546 30 19 2
## 547 30 19 2
## 548 30 19 2
## 549 30 19 2
## 550 30 19 2
## 551 30 19 2
## 552 30 19 2
## 553 30 19 2
## 554 30 19 2
## 555 30 19 2
## 556 30 19 2
## 557 30 19 2
## 558 30 19 2
## 559 30 19 2
## 560 30 19 2
## 561 30 19 2
## 562 30 19 2
## 563 30 19 3
## 564 30 19 4
## 565 30 19 4
## 566 30 19 2
## 567 30 20 1
## 568 30 20 1
## 569 30 20 0
## 570 30 20 0
## 571 30 20 1
## 572 30 20 1
## 573 30 20 1
## 574 30 20 1
## 575 30 20 1
## 576 30 20 1
## 577 30 20 1
## 578 30 20 1
## 579 30 20 1
## 580 30 20 1
## 581 30 20 1
## 582 30 20 1
## 583 30 20 1
## 584 30 20 2
## 585 30 20 2
## 586 30 20 2
## 587 30 20 2
## 588 30 20 2
## 589 30 20 2
## 590 30 20 2
## 591 30 20 2
## 592 30 20 2
## 593 30 20 3
## 594 30 20 3
## 595 30 20 3
## 596 30 20 3
## 597 30 20 3
## 598 30 20 3
## 599 30 20 3
## 600 30 21 0
## 601 30 21 0
## 602 30 21 0
## 603 30 21 0
## 604 30 21 0
## 605 30 21 0
## 606 30 21 1
## 607 30 21 2
## 608 30 21 2
## 609 30 21 2
## 610 30 21 2
## 611 30 21 2
## 612 30 22 0
## 613 30 22 0
## 614 30 22 0
## 615 30 22 0
## 616 30 22 0
## 617 30 22 0
## 618 30 22 1
## 619 30 23 0
## 620 30 23 0
## 621 30 23 0
## 622 30 23 0
## 623 30 23 0
## 624 30 23 0
## 625 30 23 0
## 626 30 23 0
## 627 30 23 0
## 628 30 23 1
## 629 30 23 1
## 630 30 23 2
## 631 30 23 2
## 632 30 23 1
## 633 30 23 2
## 634 30 24 0
## 635 30 24 0
## 636 30 24 0
## 637 30 24 0
## 638 30 24 0
## 639 30 24 0
## 640 30 24 0
## 641 30 24 0
## 642 30 24 0
## 643 30 24 0
## 644 30 24 0
## 645 30 24 0
## 646 30 24 0
## 647 30 24 1
## 648 30 24 0
## 649 30 24 0
## 650 30 24 1
## 651 30 24 2
## 652 30 24 2
## 653 30 24 2
## 654 30 24 2
## 655 30 24 2
## 656 30 24 2
## 657 30 24 2
## 658 30 24 2
## 659 30 24 2
## 660 30 24 2
## 661 30 24 2
## 662 30 24 2
## 663 30 24 3
## 664 30 24 3
## 665 30 24 4
## 666 30 25 0
## 667 30 25 2
## 668 30 25 0
## 669 30 25 0
## 670 30 25 0
## 671 30 25 0
## 672 30 25 1
## 673 30 25 1
## 674 30 25 1
## 675 30 25 1
## 676 30 25 1
## 677 30 25 2
## 678 30 25 2
## 679 30 25 2
## 680 30 25 2
## 681 30 25 2
## 682 30 25 2
## 683 30 25 2
## 684 30 25 2
## 685 30 25 2
## 686 30 25 2
## 687 30 25 2
## 688 30 25 2
## 689 30 25 2
## 690 30 25 2
## 691 30 25 2
## 692 30 25 2
## 693 30 25 2
## 694 30 25 2
## 695 30 25 2
## 696 30 25 2
## 697 30 25 2
## 698 30 25 3
## 699 30 25 3
## 700 30 25 3
## 701 30 25 4
## 702 30 25 4
## 703 30 25 4
## 704 30 25 2
## 705 30 25 2
## 706 30 25 2
## 707 30 25 2
## 708 31 26 2
## 709 31 26 2
## 710 31 26 2
## 711 31 26 2
## 712 31 26 2
## 713 31 26 2
## 714 31 26 2
## 715 31 26 2
## 716 31 26 2
## 717 31 26 2
## 718 31 26 2
## 719 31 26 2
## 720 31 26 3
## 721 31 26 3
## 722 31 26 2
## 723 31 27 0
## 724 31 27 1
## 725 31 27 1
## 726 31 27 1
## 727 31 27 1
## 728 31 27 1
## 729 31 27 1
## 730 31 27 1
## 731 31 27 1
## 732 31 27 1
## 733 31 27 1
## 734 31 27 1
## 735 31 27 1
## 736 31 27 1
## 737 31 27 1
## 738 31 27 1
## 739 31 27 1
## 740 31 27 1
## 741 31 27 1
## 742 31 27 1
## 743 31 27 1
## 744 31 27 1
## 745 31 27 1
## 746 31 27 1
## 747 31 27 1
## 748 31 27 1
## 749 31 27 1
## 750 31 27 1
## 751 31 27 1
## 752 31 27 1
## 753 31 27 1
## 754 31 27 1
## 755 31 27 2
## 756 31 27 2
## 757 31 27 2
## 758 31 27 2
## 759 31 27 2
## 760 31 27 2
## 761 31 28 0
## 762 31 28 0
## 763 31 28 0
## 764 31 28 0
## 765 31 28 0
## 766 31 28 0
## 767 31 28 0
## 768 31 28 0
## 769 31 28 0
## 770 31 28 0
## 771 31 28 0
## 772 31 28 1
## 773 31 28 2
## 774 31 28 2
## 775 31 29 0
## 776 31 29 0
## 777 31 29 0
## 778 31 29 1
## 779 31 29 1
## 780 31 29 1
## 781 31 29 1
## 782 31 29 1
## 783 31 29 0
## 784 31 29 1
## 785 31 29 1
## 786 31 29 1
## 787 31 29 1
## 788 31 29 1
## 789 31 29 2
## 790 31 29 2
## 791 31 29 2
## 792 31 29 2
## 793 31 29 2
## 794 31 29 2
## 795 31 30 0
## 796 31 30 0
## 797 31 30 0
## 798 31 30 0
## 799 31 30 0
## 800 31 30 0
## 801 31 30 0
## 802 31 30 0
## 803 31 30 0
## 804 31 30 0
## 805 31 30 1
## 806 31 30 0
## 807 31 30 0
## 808 31 30 1
## 809 31 30 1
## 810 31 30 2
## 811 31 30 2
## 812 31 30 2
## 813 31 30 2
## 814 31 30 2
## 815 31 31 0
## 816 31 31 0
## 817 31 31 0
## 818 31 31 0
## 819 31 31 0
## 820 31 31 0
## 821 31 31 0
## 822 31 31 0
## 823 31 31 0
## 824 31 31 0
## 825 31 31 0
## 826 31 31 0
## 827 31 31 0
## 828 31 31 0
## 829 31 31 0
## 830 31 31 0
## 831 31 31 1
## 832 31 31 1
## 833 31 31 1
## 834 31 31 1
## 835 31 31 1
## 836 31 31 1
## 837 31 31 2
## 838 31 31 2
## 839 31 31 2
## 840 31 31 2
## 841 31 31 2
## 842 31 31 3
## 843 31 1 1
## 844 31 1 2
## 845 31 1 2
## 846 31 1 0
## 847 31 1 0
## 848 31 1 0
## 849 31 1 0
## 850 31 1 0
## 851 31 1 0
## 852 31 1 0
## 853 31 1 0
## 854 31 1 2
## 855 31 1 2
## 856 31 1 2
## 857 31 1 2
## 858 31 1 2
## 859 31 1 2
## 860 31 1 2
## 861 31 1 2
## 862 31 1 2
## 863 31 1 2
## 864 31 1 2
## 865 31 1 2
## 866 31 1 3
## 867 31 1 4
## 868 31 1 4
## 869 31 1 4
## 870 31 1 4
## 871 32 2 1
## 872 32 2 2
## 873 32 2 2
## 874 32 2 2
## 875 32 2 2
## 876 32 2 2
## 877 32 2 2
## 878 32 2 2
## 879 32 2 2
## 880 32 2 4
## 881 32 2 2
## 882 32 2 4
## 883 32 3 0
## 884 32 3 1
## 885 32 3 1
## 886 32 3 1
## 887 32 3 1
## 888 32 3 1
## 889 32 3 2
## 890 32 3 2
## 891 32 3 2
## 892 32 3 2
## 893 32 3 2
## 894 32 4 0
## 895 32 4 0
## 896 32 4 0
## 897 32 4 0
## 898 32 4 0
## 899 32 4 0
## 900 32 4 0
## 901 32 4 0
## 902 32 4 0
## 903 32 4 1
## 904 32 4 2
## 905 32 4 2
## 906 32 4 2
## 907 32 4 2
## 908 32 5 0
## 909 32 5 0
## 910 32 5 0
## 911 32 5 0
## 912 32 5 0
## 913 32 5 0
## 914 32 5 0
## 915 32 5 0
## 916 32 5 0
## 917 32 5 1
## 918 32 5 1
## 919 32 5 0
## 920 32 5 2
## 921 32 5 2
## 922 32 6 0
## 923 32 6 0
## 924 32 6 0
## 925 32 6 0
## 926 32 6 0
## 927 32 6 1
## 928 32 6 2
## 929 32 6 2
## 930 32 6 1
## 931 32 6 2
## 932 32 6 2
## 933 32 6 2
## 934 32 6 2
## 935 32 7 0
## 936 32 7 0
## 937 32 7 0
## 938 32 7 0
## 939 32 7 0
## 940 32 7 0
## 941 32 7 0
## 942 32 7 1
## 943 32 7 1
## 944 32 7 2
## 945 32 7 2
## 946 32 7 2
## 947 32 7 2
## 948 32 7 2
## 949 32 7 2
## 950 32 7 2
## 951 32 7 2
## 952 32 7 2
## 953 32 7 2
## 954 32 7 2
## 955 32 7 2
## 956 32 7 2
## 957 32 8 0
## 958 32 8 0
## 959 32 8 1
## 960 32 8 1
## 961 32 8 1
## 962 32 8 1
## 963 32 8 2
## 964 32 8 2
## 965 32 8 2
## 966 32 8 2
## 967 32 8 2
## 968 32 8 2
## 969 32 8 2
## 970 32 8 2
## 971 32 8 2
## 972 32 8 2
## 973 32 8 2
## 974 32 8 2
## 975 32 8 2
## 976 32 8 2
## 977 32 8 2
## 978 32 8 2
## 979 32 8 2
## 980 32 8 2
## 981 32 8 2
## 982 32 8 2
## 983 32 8 2
## 984 32 8 4
## 985 33 9 1
## 986 33 9 1
## 987 33 9 1
## 988 33 9 2
## 989 33 9 2
## 990 33 9 2
## 991 33 9 2
## 992 33 9 2
## 993 33 9 2
## 994 33 9 2
## 995 33 9 2
## 996 33 9 2
## 997 33 9 2
## 998 33 9 2
## 999 33 9 2
## 1000 33 9 2
## 1001 33 9 2
## 1002 33 9 2
## 1003 33 9 2
## 1004 33 9 2
## 1005 33 9 2
## 1006 33 9 4
## 1007 33 9 4
## 1008 33 10 0
## 1009 33 10 1
## 1010 33 10 1
## 1011 33 10 1
## 1012 33 10 1
## 1013 33 10 1
## 1014 33 10 1
## 1015 33 10 1
## 1016 33 10 1
## 1017 33 10 1
## 1018 33 10 1
## 1019 33 10 1
## 1020 33 10 1
## 1021 33 10 1
## 1022 33 10 1
## 1023 33 10 2
## 1024 33 10 2
## 1025 33 10 2
## 1026 33 10 2
## 1027 33 10 3
## 1028 33 10 3
## 1029 33 10 3
## 1030 33 11 0
## 1031 33 11 0
## 1032 33 11 0
## 1033 33 11 0
## 1034 33 11 0
## 1035 33 11 0
## 1036 33 11 0
## 1037 33 11 0
## 1038 33 11 0
## 1039 33 11 0
## 1040 33 11 0
## 1041 33 11 0
## 1042 33 11 0
## 1043 33 11 0
## 1044 33 11 0
## 1045 33 11 0
## 1046 33 11 0
## 1047 33 11 1
## 1048 33 11 2
## 1049 33 11 2
## 1050 33 11 2
## 1051 33 11 0
## 1052 33 11 0
## 1053 33 11 2
## 1054 33 11 2
## 1055 33 11 2
## 1056 33 11 2
## 1057 33 11 2
## 1058 33 11 2
## 1059 33 11 2
## 1060 33 12 0
## 1061 33 12 0
## 1062 33 12 0
## 1063 33 12 0
## 1064 33 12 0
## 1065 33 12 0
## 1066 33 12 0
## 1067 33 12 2
## 1068 33 12 2
## 1069 33 12 2
## 1070 33 12 2
## 1071 33 12 2
## 1072 33 12 1
## 1073 33 12 4
## 1074 33 13 0
## 1075 33 13 0
## 1076 33 13 0
## 1077 33 13 0
## 1078 33 13 0
## 1079 33 13 0
## 1080 33 13 0
## 1081 33 13 0
## 1082 33 13 0
## 1083 33 13 0
## 1084 33 13 1
## 1085 33 13 1
## 1086 33 13 2
## 1087 33 13 2
## 1088 33 13 2
## 1089 33 13 2
## 1090 33 13 2
## 1091 33 13 2
## 1092 33 13 2
## 1093 33 13 2
## 1094 33 14 0
## 1095 33 14 0
## 1096 33 14 0
## 1097 33 14 0
## 1098 33 14 0
## 1099 33 14 0
## 1100 33 14 0
## 1101 33 14 0
## 1102 33 14 0
## 1103 33 14 0
## 1104 33 14 0
## 1105 33 14 1
## 1106 33 14 2
## 1107 33 14 2
## 1108 33 14 2
## 1109 33 14 2
## 1110 33 14 2
## 1111 33 14 2
## 1112 33 14 2
## 1113 33 14 2
## 1114 33 14 2
## 1115 33 14 2
## 1116 33 14 2
## 1117 33 14 2
## 1118 33 15 1
## 1119 33 15 2
## 1120 33 15 2
## 1121 33 15 2
## 1122 33 15 2
## 1123 33 15 2
## 1124 33 15 2
## 1125 33 15 2
## 1126 33 15 2
## 1127 33 15 2
## 1128 33 15 2
## 1129 33 15 2
## 1130 33 15 2
## 1131 33 15 2
## 1132 33 15 2
## 1133 33 15 2
## 1134 33 15 2
## 1135 33 15 2
## 1136 33 15 2
## 1137 33 15 2
## 1138 33 15 2
## 1139 33 15 2
## 1140 33 15 2
## 1141 33 15 2
## 1142 33 15 2
## 1143 33 15 2
## 1144 33 15 2
## 1145 33 15 2
## 1146 33 15 2
## 1147 33 15 2
## 1148 33 15 2
## 1149 33 15 4
## 1150 33 15 6
## 1151 34 16 1
## 1152 34 16 1
## 1153 34 16 1
## 1154 34 16 1
## 1155 34 16 1
## 1156 34 16 1
## 1157 34 16 1
## 1158 34 16 1
## 1159 34 16 1
## 1160 34 16 1
## 1161 34 16 1
## 1162 34 16 1
## 1163 34 16 1
## 1164 34 16 2
## 1165 34 16 2
## 1166 34 16 2
## 1167 34 16 2
## 1168 34 16 2
## 1169 34 16 2
## 1170 34 16 2
## 1171 34 16 2
## 1172 34 16 2
## 1173 34 16 3
## 1174 34 16 4
## 1175 34 16 4
## 1176 34 16 4
## 1177 34 16 4
## 1178 34 17 1
## 1179 34 17 1
## 1180 34 17 1
## 1181 34 17 1
## 1182 34 17 1
## 1183 34 17 1
## 1184 34 17 2
## 1185 34 17 2
## 1186 34 17 2
## 1187 34 17 2
## 1188 34 17 2
## 1189 34 17 2
## 1190 34 17 2
## 1191 34 17 2
## 1192 34 17 2
## 1193 34 17 2
## 1194 34 17 2
## 1195 34 17 3
## 1196 34 17 3
## 1197 34 18 0
## 1198 34 18 0
## 1199 34 18 0
## 1200 34 18 0
## 1201 34 18 0
## 1202 34 18 0
## 1203 34 18 0
## 1204 34 18 0
## 1205 34 18 1
## 1206 34 18 1
## 1207 34 18 1
## 1208 34 18 1
## 1209 34 18 1
## 1210 34 18 0
## 1211 34 18 2
## 1212 34 18 2
## 1213 34 18 2
## 1214 34 18 2
## 1215 34 18 2
## 1216 34 19 0
## 1217 34 19 0
## 1218 34 19 0
## 1219 34 19 0
## 1220 34 19 0
## 1221 34 19 1
## 1222 34 19 1
## 1223 34 19 2
## 1224 34 19 2
## 1225 34 19 0
## 1226 34 19 1
## 1227 34 19 2
## 1228 34 19 2
## 1229 34 19 2
## 1230 34 19 2
## 1231 34 20 0
## 1232 34 20 0
## 1233 34 20 0
## 1234 34 20 0
## 1235 34 20 0
## 1236 34 20 2
## 1237 34 20 2
## 1238 34 20 2
## 1239 34 20 2
## 1240 34 20 2
## 1241 34 20 2
## 1242 34 21 0
## 1243 34 21 0
## 1244 34 21 0
## 1245 34 21 0
## 1246 34 21 0
## 1247 34 21 1
## 1248 34 21 1
## 1249 34 21 2
## 1250 34 21 2
## 1251 34 21 2
## 1252 34 21 2
## 1253 34 21 2
## 1254 34 21 2
## 1255 34 21 2
## 1256 34 21 2
## 1257 34 21 2
## 1258 34 21 2
## 1259 34 21 2
## 1260 34 21 2
## 1261 34 21 2
## 1262 34 21 2
## 1263 34 21 2
## 1264 34 21 2
## 1265 34 21 2
## 1266 34 21 3
## 1267 34 22 0
## 1268 34 22 0
## 1269 34 22 0
## 1270 34 22 2
## 1271 34 22 2
## 1272 34 22 2
## 1273 34 22 2
## 1274 34 22 2
## 1275 34 22 2
## 1276 34 22 2
## 1277 34 22 2
## 1278 34 22 2
## 1279 34 22 2
## 1280 34 22 2
## 1281 34 22 2
## 1282 34 22 2
## 1283 34 22 2
## 1284 34 22 2
## 1285 34 22 2
## 1286 34 22 2
## 1287 34 22 3
## 1288 34 22 4
## 1289 34 22 2
## 1290 34 22 2
## 1291 34 22 2
## 1292 34 22 2
## 1293 34 22 2
## 1294 34 22 2
## 1295 34 22 2
## 1296 35 23 2
## 1297 35 23 2
## 1298 35 23 2
## 1299 35 23 2
## 1300 35 23 2
## 1301 35 23 2
## 1302 35 23 2
## 1303 35 23 2
## 1304 35 23 2
## 1305 35 23 2
## 1306 35 23 2
## 1307 35 23 2
## 1308 35 23 2
## 1309 35 23 2
## 1310 35 23 2
## 1311 35 23 2
## 1312 35 23 2
## 1313 35 23 2
## 1314 35 23 2
## 1315 35 23 2
## 1316 35 23 4
## 1317 35 23 4
## 1318 35 23 4
## 1319 35 24 1
## 1320 35 24 1
## 1321 35 24 1
## 1322 35 24 1
## 1323 35 24 1
## 1324 35 24 1
## 1325 35 24 1
## 1326 35 24 1
## 1327 35 24 1
## 1328 35 24 1
## 1329 35 24 1
## 1330 35 24 1
## 1331 35 24 1
## 1332 35 24 1
## 1333 35 24 1
## 1334 35 24 1
## 1335 35 24 1
## 1336 35 24 1
## 1337 35 24 3
## 1338 35 24 3
## 1339 35 24 3
## 1340 35 24 2
## 1341 35 24 2
## 1342 35 25 0
## 1343 35 25 0
## 1344 35 25 0
## 1345 35 25 0
## 1346 35 25 0
## 1347 35 25 1
## 1348 35 25 2
## 1349 35 25 2
## 1350 35 25 2
## 1351 35 25 2
## 1352 35 25 2
## 1353 35 25 0
## 1354 35 25 0
## 1355 35 26 0
## 1356 35 26 0
## 1357 35 26 0
## 1358 35 26 0
## 1359 35 26 0
## 1360 35 26 0
## 1361 35 26 0
## 1362 35 26 0
## 1363 35 26 0
## 1364 35 26 1
## 1365 35 26 2
## 1366 35 26 2
## 1367 35 27 0
## 1368 35 27 0
## 1369 35 27 0
## 1370 35 27 0
## 1371 35 27 0
## 1372 35 27 1
## 1373 35 27 1
## 1374 35 27 1
## 1375 35 27 1
## 1376 35 27 1
## 1377 35 27 2
## 1378 35 27 2
## 1379 35 27 2
## 1380 35 27 2
## 1381 35 27 2
## 1382 35 27 2
## 1383 35 27 2
## 1384 35 27 2
## 1385 35 27 2
## 1386 35 27 2
## 1387 35 27 2
## 1388 35 28 0
## 1389 35 28 0
## 1390 35 28 0
## 1391 35 28 0
## 1392 35 28 0
## 1393 35 28 0
## 1394 35 28 0
## 1395 35 28 0
## 1396 35 28 0
## 1397 35 28 0
## 1398 35 28 0
## 1399 35 28 0
## 1400 35 28 1
## 1401 35 28 1
## 1402 35 28 1
## 1403 35 28 1
## 1404 35 28 1
## 1405 35 28 1
## 1406 35 28 1
## 1407 35 28 1
## 1408 35 28 1
## 1409 35 28 0
## 1410 35 28 0
## 1411 35 28 0
## 1412 35 28 2
## 1413 35 28 2
## 1414 35 28 2
## 1415 35 28 2
## 1416 35 28 2
## 1417 35 28 2
## 1418 35 28 2
## 1419 35 28 2
## 1420 35 28 2
## 1421 35 28 2
## 1422 35 28 2
## 1423 35 28 2
## 1424 35 28 2
## 1425 35 28 2
## 1426 35 28 2
## 1427 35 28 2
## 1428 35 28 2
## 1429 35 29 1
## 1430 35 29 1
## 1431 35 29 1
## 1432 35 29 2
## 1433 35 29 2
## 1434 35 29 0
## 1435 35 29 2
## 1436 35 29 2
## 1437 35 29 2
## 1438 35 29 2
## 1439 35 29 2
## 1440 35 29 2
## 1441 35 29 2
## 1442 35 29 2
## 1443 35 29 2
## 1444 35 29 2
## 1445 35 29 2
## 1446 36 30 1
## 1447 36 30 2
## 1448 36 30 2
## 1449 36 30 2
## 1450 36 30 2
## 1451 36 30 2
## 1452 36 30 2
## 1453 36 30 2
## 1454 36 30 2
## 1455 36 30 2
## 1456 36 30 2
## 1457 36 30 2
## 1458 36 30 2
## 1459 36 30 2
## 1460 36 30 2
## 1461 36 30 2
## 1462 36 30 2
## 1463 36 30 2
## 1464 36 30 4
## 1465 36 31 1
## 1466 36 31 1
## 1467 36 31 1
## 1468 36 31 1
## 1469 36 31 1
## 1470 36 31 1
## 1471 36 31 1
## 1472 36 31 1
## 1473 36 31 1
## 1474 36 31 1
## 1475 36 31 1
## 1476 36 31 1
## 1477 36 31 1
## 1478 36 31 1
## 1479 36 31 1
## 1480 36 31 1
## 1481 36 31 1
## 1482 36 31 1
## 1483 36 31 2
## 1484 36 31 3
## 1485 36 31 3
## 1486 36 1 0
## 1487 36 1 0
## 1488 36 1 0
## 1489 36 1 0
## 1490 36 1 0
## 1491 36 1 0
## 1492 36 1 0
## 1493 36 1 0
## 1494 36 1 0
## 1495 36 1 0
## 1496 36 1 0
## 1497 36 1 0
## 1498 36 1 0
## 1499 36 1 0
## 1500 36 1 0
## 1501 36 1 0
## 1502 36 1 0
## 1503 36 1 0
## 1504 36 1 1
## 1505 36 1 2
## 1506 36 1 2
## 1507 36 1 2
## 1508 36 1 2
## 1509 36 1 2
## 1510 36 1 2
## 1511 36 1 2
## 1512 36 1 2
## 1513 36 1 2
## 1514 36 1 2
## 1515 36 1 2
## 1516 36 1 2
## 1517 36 1 4
## 1518 36 2 0
## 1519 36 2 0
## 1520 36 2 0
## 1521 36 2 0
## 1522 36 2 0
## 1523 36 2 1
## 1524 36 2 1
## 1525 36 2 2
## 1526 36 2 2
## 1527 36 2 2
## 1528 36 2 2
## 1529 36 3 0
## 1530 36 3 0
## 1531 36 3 0
## 1532 36 3 0
## 1533 36 3 0
## 1534 36 3 0
## 1535 36 3 0
## 1536 36 3 0
## 1537 36 3 0
## 1538 36 3 0
## 1539 36 3 0
## 1540 36 3 0
## 1541 36 3 1
## 1542 36 3 1
## 1543 36 3 1
## 1544 36 3 1
## 1545 36 3 1
## 1546 36 3 1
## 1547 36 3 2
## 1548 36 3 2
## 1549 36 3 2
## 1550 36 3 2
## 1551 36 3 2
## 1552 36 3 2
## 1553 36 3 2
## 1554 36 3 2
## 1555 36 3 4
## 1556 36 4 0
## 1557 36 4 0
## 1558 36 4 0
## 1559 36 4 0
## 1560 36 4 0
## 1561 36 4 0
## 1562 36 4 0
## 1563 36 4 0
## 1564 36 4 0
## 1565 36 4 0
## 1566 36 4 1
## 1567 36 4 1
## 1568 36 4 1
## 1569 36 4 1
## 1570 36 4 1
## 1571 36 4 1
## 1572 36 4 2
## 1573 36 4 2
## 1574 36 4 2
## 1575 36 4 2
## 1576 36 4 2
## 1577 36 4 2
## 1578 36 4 3
## 1579 36 4 3
## 1580 36 4 2
## 1581 36 4 2
## 1582 36 5 0
## 1583 36 5 1
## 1584 36 5 2
## 1585 36 5 2
## 1586 36 5 2
## 1587 36 5 2
## 1588 36 5 2
## 1589 36 5 2
## 1590 36 5 1
## 1591 36 5 2
## 1592 36 5 2
## 1593 36 5 2
## 1594 36 5 2
## 1595 36 5 2
## 1596 36 5 2
## 1597 36 5 2
## 1598 36 5 2
## 1599 36 5 2
## 1600 36 5 2
## 1601 36 5 2
## 1602 36 5 2
## 1603 36 5 2
## 1604 36 5 3
## 1605 36 5 4
## 1606 36 5 4
## 1607 36 5 4
## 1608 36 5 4
## 1609 36 5 4
## 1610 37 6 0
## 1611 37 6 2
## 1612 37 6 2
## 1613 37 6 2
## 1614 37 6 2
## 1615 37 6 1
## 1616 37 6 1
## 1617 37 6 2
## 1618 37 6 2
## 1619 37 6 2
## 1620 37 6 2
## 1621 37 6 2
## 1622 37 6 2
## 1623 37 6 2
## 1624 37 6 2
## 1625 37 6 2
## 1626 37 6 2
## 1627 37 6 2
## 1628 37 6 2
## 1629 37 6 2
## 1630 37 6 2
## 1631 37 6 2
## 1632 37 6 2
## 1633 37 6 2
## 1634 37 6 2
## 1635 37 6 2
## 1636 37 6 2
## 1637 37 6 2
## 1638 37 6 3
## 1639 37 6 4
## 1640 37 6 2
## 1641 37 6 4
## 1642 37 6 4
## 1643 37 6 4
## 1644 37 7 1
## 1645 37 7 1
## 1646 37 7 1
## 1647 37 7 1
## 1648 37 7 1
## 1649 37 7 1
## 1650 37 7 1
## 1651 37 7 1
## 1652 37 7 1
## 1653 37 7 1
## 1654 37 7 2
## 1655 37 7 2
## 1656 37 7 13
## 1657 37 7 3
## 1658 37 7 3
## 1659 37 8 0
## 1660 37 8 0
## 1661 37 8 0
## 1662 37 8 0
## 1663 37 8 0
## 1664 37 8 0
## 1665 37 8 0
## 1666 37 8 0
## 1667 37 8 2
## 1668 37 8 2
## 1669 37 8 2
## 1670 37 8 2
## 1671 37 8 4
## 1672 37 8 2
## 1673 37 8 4
## 1674 37 9 0
## 1675 37 9 0
## 1676 37 9 0
## 1677 37 9 0
## 1678 37 9 0
## 1679 37 9 0
## 1680 37 9 0
## 1681 37 9 0
## 1682 37 9 0
## 1683 37 9 0
## 1684 37 9 1
## 1685 37 9 2
## 1686 37 9 2
## 1687 37 9 2
## 1688 37 9 2
## 1689 37 9 2
## 1690 37 9 2
## 1691 37 9 2
## 1692 37 9 1
## 1693 37 9 1
## 1694 37 10 0
## 1695 37 10 1
## 1696 37 10 1
## 1697 37 10 1
## 1698 37 10 1
## 1699 37 10 1
## 1700 37 10 1
## 1701 37 10 2
## 1702 37 10 2
## 1703 37 10 2
## 1704 37 10 2
## 1705 37 10 0
## 1706 37 10 0
## 1707 37 10 0
## 1708 37 10 0
## 1709 37 10 0
## 1710 37 10 0
## 1711 37 10 2
## 1712 37 10 2
## 1713 37 10 2
## 1714 37 10 2
## 1715 37 10 2
## 1716 37 10 2
## 1717 37 10 2
## 1718 37 10 1
## 1719 37 10 1
## 1720 37 10 2
## 1721 37 10 2
## 1722 37 10 4
## 1723 37 11 0
## 1724 37 11 0
## 1725 37 11 0
## 1726 37 11 0
## 1727 37 11 0
## 1728 37 11 0
## 1729 37 11 0
## 1730 37 11 0
## 1731 37 11 0
## 1732 37 11 0
## 1733 37 11 1
## 1734 37 11 1
## 1735 37 11 1
## 1736 37 11 2
## 1737 37 11 2
## 1738 37 11 2
## 1739 37 11 2
## 1740 37 11 2
## 1741 37 11 3
## 1742 37 12 0
## 1743 37 12 0
## 1744 37 12 2
## 1745 37 12 2
## 1746 37 12 2
## 1747 37 12 2
## 1748 37 12 2
## 1749 37 12 2
## 1750 37 12 2
## 1751 37 12 2
## 1752 37 12 2
## 1753 37 12 2
## 1754 37 12 2
## 1755 37 12 6
## 1756 37 12 2
## 1757 38 13 1
## 1758 38 13 2
## 1759 38 13 2
## 1760 38 13 2
## 1761 38 13 2
## 1762 38 13 2
## 1763 38 13 2
## 1764 38 13 2
## 1765 38 13 2
## 1766 38 13 2
## 1767 38 13 2
## 1768 38 13 2
## 1769 38 13 2
## 1770 38 13 2
## 1771 38 13 2
## 1772 38 13 3
## 1773 38 13 4
## 1774 38 13 4
## 1775 38 13 4
## 1776 38 13 4
## 1777 38 13 4
## 1778 38 14 1
## 1779 38 14 1
## 1780 38 14 1
## 1781 38 14 1
## 1782 38 14 1
## 1783 38 14 1
## 1784 38 14 1
## 1785 38 14 1
## 1786 38 14 1
## 1787 38 14 1
## 1788 38 14 1
## 1789 38 14 3
## 1790 38 14 4
## 1791 38 14 8
## 1792 38 14 1
## 1793 38 15 0
## 1794 38 15 0
## 1795 38 15 0
## 1796 38 15 0
## 1797 38 15 0
## 1798 38 15 1
## 1799 38 15 2
## 1800 38 15 2
## 1801 38 15 0
## 1802 38 15 2
## 1803 38 15 4
## 1804 38 15 4
## 1805 38 15 4
## 1806 38 16 0
## 1807 38 16 0
## 1808 38 16 0
## 1809 38 16 0
## 1810 38 16 0
## 1811 38 16 0
## 1812 38 16 0
## 1813 38 16 0
## 1814 38 16 0
## 1815 38 16 0
## 1816 38 16 0
## 1817 38 16 0
## 1818 38 16 0
## 1819 38 16 0
## 1820 38 16 0
## 1821 38 16 0
## 1822 38 16 0
## 1823 38 16 0
## 1824 38 16 1
## 1825 38 16 0
## 1826 38 16 1
## 1827 38 16 2
## 1828 38 16 2
## 1829 38 16 2
## 1830 38 16 2
## 1831 38 16 4
## 1832 38 16 2
## 1833 38 16 2
## 1834 38 17 0
## 1835 38 17 0
## 1836 38 17 0
## 1837 38 17 0
## 1838 38 17 0
## 1839 38 17 0
## 1840 38 17 1
## 1841 38 17 1
## 1842 38 17 1
## 1843 38 17 1
## 1844 38 17 1
## 1845 38 17 2
## 1846 38 17 2
## 1847 38 17 2
## 1848 38 17 1
## 1849 38 17 1
## 1850 38 17 2
## 1851 38 17 2
## 1852 38 17 2
## 1853 38 17 2
## 1854 38 17 2
## 1855 38 17 2
## 1856 38 17 4
## 1857 38 17 4
## 1858 38 18 0
## 1859 38 18 0
## 1860 38 18 1
## 1861 38 18 1
## 1862 38 18 1
## 1863 38 18 1
## 1864 38 18 1
## 1865 38 18 2
## 1866 38 18 2
## 1867 38 18 2
## 1868 38 18 2
## 1869 38 18 2
## 1870 38 18 2
## 1871 38 18 3
## 1872 38 19 1
## 1873 38 19 2
## 1874 38 19 2
## 1875 38 19 2
## 1876 38 19 2
## 1877 38 19 2
## 1878 38 19 2
## 1879 38 19 2
## 1880 38 19 2
## 1881 38 19 2
## 1882 38 19 2
## 1883 38 19 2
## 1884 38 19 2
## 1885 38 19 2
## 1886 38 19 2
## 1887 38 19 2
## 1888 38 19 4
## 1889 38 19 4
## 1890 38 19 4
## 1891 38 19 4
## 1892 39 20 2
## 1893 39 20 2
## 1894 39 20 2
## 1895 39 20 2
## 1896 39 20 2
## 1897 39 20 2
## 1898 39 20 2
## 1899 39 20 2
## 1900 39 20 2
## 1901 39 20 4
## 1902 39 20 4
## 1903 39 20 4
## 1904 39 20 4
## 1905 39 21 1
## 1906 39 21 1
## 1907 39 21 1
## 1908 39 21 1
## 1909 39 21 1
## 1910 39 21 1
## 1911 39 21 1
## 1912 39 21 1
## 1913 39 21 1
## 1914 39 21 1
## 1915 39 21 1
## 1916 39 21 1
## 1917 39 21 1
## 1918 39 21 1
## 1919 39 21 1
## 1920 39 21 1
## 1921 39 21 2
## 1922 39 21 2
## 1923 39 21 2
## 1924 39 21 2
## 1925 39 21 2
## 1926 39 21 2
## 1927 39 21 3
## 1928 39 21 3
## 1929 39 21 3
## 1930 39 21 3
## 1931 39 21 3
## 1932 39 22 0
## 1933 39 22 0
## 1934 39 22 0
## 1935 39 22 2
## 1936 39 22 2
## 1937 39 22 2
## 1938 39 22 2
## 1939 39 22 2
## 1940 39 22 0
## 1941 39 22 2
## 1942 39 22 2
## 1943 39 23 0
## 1944 39 23 0
## 1945 39 23 0
## 1946 39 23 0
## 1947 39 23 0
## 1948 39 23 0
## 1949 39 23 0
## 1950 39 23 0
## 1951 39 23 0
## 1952 39 23 1
## 1953 39 23 0
## 1954 39 23 0
## 1955 39 23 2
## 1956 39 23 2
## 1957 39 23 2
## 1958 39 24 0
## 1959 39 24 0
## 1960 39 24 0
## 1961 39 24 0
## 1962 39 24 0
## 1963 39 24 1
## 1964 39 24 2
## 1965 39 24 2
## 1966 39 24 2
## 1967 39 24 2
## 1968 39 24 2
## 1969 39 24 4
## 1970 39 25 0
## 1971 39 25 0
## 1972 39 25 0
## 1973 39 25 0
## 1974 39 25 0
## 1975 39 25 0
## 1976 39 25 0
## 1977 39 25 0
## 1978 39 25 0
## 1979 39 25 0
## 1980 39 25 0
## 1981 39 25 2
## 1982 39 25 2
## 1983 39 25 2
## 1984 39 25 2
## 1985 39 25 2
## 1986 39 25 2
## 1987 39 25 2
## 1988 39 25 2
## 1989 39 25 2
## 1990 39 25 2
## 1991 39 26 0
## 1992 39 26 1
## 1993 39 26 1
## 1994 39 26 1
## 1995 39 26 1
## 1996 39 26 1
## 1997 39 26 1
## 1998 39 26 2
## 1999 39 26 2
## 2000 39 26 2
## 2001 39 26 2
## 2002 39 26 2
## 2003 39 26 2
## 2004 39 26 2
## 2005 39 26 2
## 2006 39 26 2
## 2007 39 26 2
## 2008 39 26 2
## 2009 40 27 2
## 2010 40 27 1
## 2011 40 27 1
## 2012 40 27 2
## 2013 40 27 2
## 2014 40 27 2
## 2015 40 27 2
## 2016 40 27 2
## 2017 40 27 2
## 2018 40 27 2
## 2019 40 27 2
## 2020 40 27 2
## 2021 40 27 2
## 2022 40 27 2
## 2023 40 27 3
## 2024 40 27 4
## 2025 40 27 4
## 2026 40 27 4
## 2027 40 28 1
## 2028 40 28 1
## 2029 40 28 1
## 2030 40 28 1
## 2031 40 28 1
## 2032 40 28 1
## 2033 40 28 1
## 2034 40 28 1
## 2035 40 28 1
## 2036 40 28 1
## 2037 40 28 1
## 2038 40 28 1
## 2039 40 28 2
## 2040 40 28 2
## 2041 40 28 2
## 2042 40 28 2
## 2043 40 28 3
## 2044 40 28 1
## 2045 40 28 3
## 2046 40 29 0
## 2047 40 29 1
## 2048 40 29 2
## 2049 40 29 2
## 2050 40 29 2
## 2051 40 29 0
## 2052 40 29 2
## 2053 40 29 2
## 2054 40 29 2
## 2055 40 29 2
## 2056 40 29 2
## 2057 40 29 2
## 2058 40 29 2
## 2059 40 29 2
## 2060 40 29 2
## 2061 40 30 0
## 2062 40 30 0
## 2063 40 30 0
## 2064 40 30 0
## 2065 40 30 0
## 2066 40 30 0
## 2067 40 30 0
## 2068 40 30 0
## 2069 40 30 0
## 2070 40 30 0
## 2071 40 30 0
## 2072 40 30 0
## 2073 40 30 0
## 2074 40 30 0
## 2075 40 30 2
## 2076 40 30 2
## 2077 40 30 2
## 2078 40 30 2
## 2079 40 30 2
## 2080 40 30 2
## 2081 40 30 2
## 2082 40 30 2
## 2083 40 30 2
## 2084 40 30 2
## 2085 40 30 2
## 2086 40 30 2
## 2087 40 30 4
## 2088 40 1 0
## 2089 40 1 0
## 2090 40 1 0
## 2091 40 1 0
## 2092 40 1 0
## 2093 40 1 0
## 2094 40 1 1
## 2095 40 1 1
## 2096 40 1 1
## 2097 40 1 2
## 2098 40 1 2
## 2099 40 1 2
## 2100 40 1 2
## 2101 40 1 2
## 2102 40 1 2
## 2103 40 1 2
## 2104 40 1 2
## 2105 40 1 2
## 2106 40 1 2
## 2107 40 1 2
## 2108 40 1 2
## 2109 40 1 2
## 2110 40 1 2
## 2111 40 1 2
## 2112 40 2 0
## 2113 40 2 0
## 2114 40 2 0
## 2115 40 2 0
## 2116 40 2 1
## 2117 40 2 2
## 2118 40 2 2
## 2119 40 2 2
## 2120 40 2 2
## 2121 40 2 2
## 2122 40 2 2
## 2123 40 2 2
## 2124 40 2 2
## 2125 40 2 2
## 2126 40 2 2
## 2127 40 2 2
## 2128 40 2 2
## 2129 40 2 2
## 2130 40 2 2
## 2131 40 2 2
## 2132 40 2 2
## 2133 40 3 0
## 2134 40 3 0
## 2135 40 3 0
## 2136 40 3 0
## 2137 40 3 0
## 2138 40 3 0
## 2139 40 3 0
## 2140 40 3 0
## 2141 40 3 0
## 2142 40 3 0
## 2143 40 3 0
## 2144 40 3 1
## 2145 40 3 1
## 2146 40 3 2
## 2147 40 3 2
## 2148 40 3 2
## 2149 40 3 2
## 2150 40 3 2
## 2151 40 3 2
## 2152 40 3 2
## 2153 40 3 2
## 2154 40 3 2
## 2155 40 3 2
## 2156 40 3 2
## 2157 40 3 2
## 2158 40 3 2
## 2159 40 3 2
## 2160 40 3 2
## 2161 40 3 2
## 2162 40 3 2
## 2163 40 3 2
## 2164 40 3 2
## 2165 40 3 2
## 2166 40 3 2
## 2167 40 3 2
## 2168 40 3 2
## 2169 40 3 2
## 2170 40 3 2
## 2171 41 4 1
## 2172 41 4 1
## 2173 41 4 2
## 2174 41 4 2
## 2175 41 4 2
## 2176 41 4 2
## 2177 41 4 2
## 2178 41 4 2
## 2179 41 4 2
## 2180 41 4 4
## 2181 41 4 4
## 2182 41 4 4
## 2183 41 4 4
## 2184 41 4 4
## 2185 41 4 4
## 2186 41 4 4
## 2187 41 4 4
## 2188 41 4 4
## 2189 41 4 4
## 2190 41 4 4
## 2191 41 4 4
## 2192 41 4 4
## 2193 41 4 4
## 2194 41 4 2
## 2195 41 4 2
## 2196 41 4 2
## 2197 41 4 4
## 2198 41 4 2
## 2199 41 4 2
## 2200 41 5 1
## 2201 41 5 1
## 2202 41 5 1
## 2203 41 5 1
## 2204 41 5 1
## 2205 41 5 1
## 2206 41 5 1
## 2207 41 5 2
## 2208 41 5 2
## 2209 41 5 2
## 2210 41 5 3
## 2211 41 5 3
## 2212 41 5 3
## 2213 41 5 3
## 2214 41 5 3
## 2215 41 5 3
## 2216 41 6 0
## 2217 41 6 0
## 2218 41 6 0
## 2219 41 6 0
## 2220 41 6 0
## 2221 41 6 0
## 2222 41 6 0
## 2223 41 6 0
## 2224 41 6 0
## 2225 41 6 0
## 2226 41 6 0
## 2227 41 6 0
## 2228 41 6 1
## 2229 41 6 2
## 2230 41 6 2
## 2231 41 6 2
## 2232 41 6 2
## 2233 41 6 2
## 2234 41 6 2
## 2235 41 7 0
## 2236 41 7 0
## 2237 41 7 0
## 2238 41 7 0
## 2239 41 7 0
## 2240 41 7 0
## 2241 41 7 0
## 2242 41 7 0
## 2243 41 7 0
## 2244 41 7 0
## 2245 41 7 0
## 2246 41 7 0
## 2247 41 7 0
## 2248 41 7 2
## 2249 41 7 2
## 2250 41 7 2
## 2251 41 7 2
## 2252 41 7 2
## 2253 41 7 2
## 2254 41 7 2
## 2255 41 8 0
## 2256 41 8 0
## 2257 41 8 0
## 2258 41 8 0
## 2259 41 8 0
## 2260 41 8 0
## 2261 41 8 0
## 2262 41 8 0
## 2263 41 8 0
## 2264 41 8 0
## 2265 41 8 0
## 2266 41 8 0
## 2267 41 8 0
## 2268 41 8 0
## 2269 41 8 0
## 2270 41 8 0
## 2271 41 8 0
## 2272 41 8 0
## 2273 41 8 0
## 2274 41 8 0
## 2275 41 8 0
## 2276 41 8 0
## 2277 41 8 0
## 2278 41 8 1
## 2279 41 8 2
## 2280 41 8 2
## 2281 41 8 2
## 2282 41 8 1
## 2283 41 8 2
## 2284 41 8 2
## 2285 41 8 2
## 2286 41 8 4
## 2287 41 9 0
## 2288 41 9 0
## 2289 41 9 0
## 2290 41 9 0
## 2291 41 9 0
## 2292 41 9 0
## 2293 41 9 0
## 2294 41 9 0
## 2295 41 9 0
## 2296 41 9 0
## 2297 41 9 0
## 2298 41 9 1
## 2299 41 9 1
## 2300 41 9 1
## 2301 41 9 1
## 2302 41 9 1
## 2303 41 9 1
## 2304 41 9 1
## 2305 41 9 1
## 2306 41 9 1
## 2307 41 9 1
## 2308 41 9 1
## 2309 41 9 0
## 2310 41 9 0
## 2311 41 9 1
## 2312 41 9 1
## 2313 41 9 1
## 2314 41 9 1
## 2315 41 9 1
## 2316 41 9 1
## 2317 41 9 1
## 2318 41 9 1
## 2319 41 9 1
## 2320 41 9 1
## 2321 41 9 1
## 2322 41 9 1
## 2323 41 9 1
## 2324 41 9 1
## 2325 41 9 1
## 2326 41 9 1
## 2327 41 9 1
## 2328 41 9 1
## 2329 41 9 1
## 2330 41 9 1
## 2331 41 9 1
## 2332 41 9 1
## 2333 41 9 1
## 2334 41 9 1
## 2335 41 9 1
## 2336 41 9 1
## 2337 41 9 1
## 2338 41 9 1
## 2339 41 9 1
## 2340 41 9 2
## 2341 41 9 2
## 2342 41 9 2
## 2343 41 9 2
## 2344 41 9 2
## 2345 41 9 2
## 2346 41 9 2
## 2347 41 10 0
## 2348 41 10 0
## 2349 41 10 0
## 2350 41 10 0
## 2351 41 10 0
## 2352 41 10 1
## 2353 41 10 1
## 2354 41 10 1
## 2355 41 10 1
## 2356 41 10 1
## 2357 41 10 1
## 2358 41 10 1
## 2359 41 10 1
## 2360 41 10 1
## 2361 41 10 1
## 2362 41 10 1
## 2363 41 10 1
## 2364 41 10 1
## 2365 41 10 1
## 2366 41 10 1
## 2367 41 10 1
## 2368 41 10 1
## 2369 41 10 2
## 2370 41 10 2
## 2371 41 10 2
## 2372 41 10 2
## 2373 41 10 2
## 2374 41 10 2
## 2375 41 10 2
## 2376 41 10 2
## 2377 41 10 2
## 2378 41 10 2
## 2379 41 10 2
## 2380 41 10 2
## 2381 41 10 2
## 2382 41 10 2
## 2383 41 10 2
## 2384 41 10 3
## 2385 41 10 6
## 2386 42 11 1
## 2387 42 11 1
## 2388 42 11 1
## 2389 42 11 1
## 2390 42 11 1
## 2391 42 11 1
## 2392 42 11 1
## 2393 42 11 2
## 2394 42 11 2
## 2395 42 11 2
## 2396 42 11 2
## 2397 42 11 1
## 2398 42 11 1
## 2399 42 11 2
## 2400 42 11 2
## 2401 42 11 2
## 2402 42 11 2
## 2403 42 11 2
## 2404 42 11 2
## 2405 42 11 2
## 2406 42 11 2
## 2407 42 11 2
## 2408 42 11 4
## 2409 42 12 0
## 2410 42 12 0
## 2411 42 12 1
## 2412 42 12 1
## 2413 42 12 1
## 2414 42 12 1
## 2415 42 12 1
## 2416 42 12 1
## 2417 42 12 1
## 2418 42 12 2
## 2419 42 12 2
## 2420 42 12 2
## 2421 42 12 2
## 2422 42 12 3
## 2423 42 13 0
## 2424 42 13 0
## 2425 42 13 0
## 2426 42 13 0
## 2427 42 13 0
## 2428 42 13 0
## 2429 42 13 0
## 2430 42 13 2
## 2431 42 13 2
## 2432 42 14 0
## 2433 42 14 0
## 2434 42 14 0
## 2435 42 14 0
## 2436 42 14 0
## 2437 42 14 0
## 2438 42 14 0
## 2439 42 14 2
## 2440 42 15 0
## 2441 42 15 0
## 2442 42 15 1
## 2443 42 15 2
## 2444 42 16 0
## 2445 42 16 0
## 2446 42 16 0
## 2447 42 16 0
## 2448 42 16 0
## 2449 42 16 0
## 2450 42 16 0
## 2451 42 16 0
## 2452 42 16 1
## 2453 42 16 1
## 2454 42 16 2
## 2455 42 16 2
## 2456 42 17 0
## 2457 42 17 1
## 2458 42 17 2
## 2459 42 17 2
## 2460 43 18 1
## 2461 43 18 2
## 2462 43 18 2
## 2463 43 18 2
## 2464 43 18 2
## 2465 43 18 2
## 2466 43 18 2
## 2467 43 18 2
## 2468 43 18 2
## 2469 43 18 2
## 2470 43 18 2
## 2471 43 18 2
## 2472 43 18 2
## 2473 43 18 4
## 2474 43 18 4
## 2475 43 19 1
## 2476 43 19 1
## 2477 43 19 1
## 2478 43 19 1
## 2479 43 19 1
## 2480 43 19 1
## 2481 43 19 1
## 2482 43 19 1
## 2483 43 19 1
## 2484 43 19 1
## 2485 43 19 1
## 2486 43 19 1
## 2487 43 19 1
## 2488 43 19 1
## 2489 43 19 1
## 2490 43 19 1
## 2491 43 19 1
## 2492 43 19 1
## 2493 43 19 1
## 2494 43 19 1
## 2495 43 19 1
## 2496 43 19 1
## 2497 43 19 1
## 2498 43 19 1
## 2499 43 19 1
## 2500 43 19 1
## 2501 43 19 1
## 2502 43 19 1
## 2503 43 19 1
## 2504 43 19 1
## 2505 43 19 1
## 2506 43 19 1
## 2507 43 19 1
## 2508 43 19 1
## 2509 43 19 1
## 2510 43 19 1
## 2511 43 19 1
## 2512 43 19 2
## 2513 43 19 2
## 2514 43 19 3
## 2515 43 19 3
## 2516 43 19 3
## 2517 43 19 5
## 2518 43 20 0
## 2519 43 20 0
## 2520 43 20 0
## 2521 43 20 0
## 2522 43 20 0
## 2523 43 20 0
## 2524 43 20 0
## 2525 43 20 0
## 2526 43 20 2
## 2527 43 20 2
## 2528 43 20 2
## 2529 43 20 2
## 2530 43 20 2
## 2531 43 21 0
## 2532 43 21 0
## 2533 43 21 0
## 2534 43 21 0
## 2535 43 21 0
## 2536 43 21 0
## 2537 43 21 0
## 2538 43 21 0
## 2539 43 21 0
## 2540 43 21 0
## 2541 43 21 0
## 2542 43 21 0
## 2543 43 21 0
## 2544 43 21 0
## 2545 43 21 0
## 2546 43 21 1
## 2547 43 21 2
## 2548 43 21 2
## 2549 43 21 2
## 2550 43 21 2
## 2551 43 21 2
## 2552 43 21 2
## 2553 43 21 2
## 2554 43 21 2
## 2555 43 21 2
## 2556 43 21 2
## 2557 43 21 0
## 2558 43 22 1
## 2559 43 22 1
## 2560 43 22 1
## 2561 43 22 2
## 2562 43 22 2
## 2563 43 22 2
## 2564 43 22 2
## 2565 43 22 2
## 2566 43 22 2
## 2567 43 22 2
## 2568 43 22 1
## 2569 43 22 1
## 2570 43 22 1
## 2571 43 22 1
## 2572 43 22 1
## 2573 43 22 1
## 2574 43 22 1
## 2575 43 22 1
## 2576 43 22 1
## 2577 43 22 1
## 2578 43 22 1
## 2579 43 22 2
## 2580 43 22 2
## 2581 43 22 2
## 2582 43 22 0
## 2583 43 22 0
## 2584 43 22 0
## 2585 43 22 0
## 2586 43 22 0
## 2587 43 22 0
## 2588 43 22 0
## 2589 43 22 1
## 2590 43 23 0
## 2591 43 23 0
## 2592 43 23 0
## 2593 43 23 0
## 2594 43 23 0
## 2595 43 23 0
## 2596 43 23 0
## 2597 43 23 0
## 2598 43 23 0
## 2599 43 23 0
## 2600 43 23 0
## 2601 43 23 1
## 2602 43 23 2
## 2603 43 23 2
## 2604 43 23 2
## 2605 43 23 2
## 2606 43 23 2
## 2607 43 23 2
## 2608 43 23 2
## 2609 43 23 2
## 2610 43 23 2
## 2611 43 23 2
## 2612 43 23 2
## 2613 43 23 2
## 2614 43 23 2
## 2615 43 23 2
## 2616 43 23 4
## 2617 43 23 4
## 2618 43 23 0
## 2619 43 23 0
## 2620 43 23 1
## 2621 43 23 1
## 2622 43 23 0
## 2623 43 23 0
## 2624 43 23 1
## 2625 43 24 0
## 2626 43 24 0
## 2627 43 24 0
## 2628 43 24 0
## 2629 43 24 0
## 2630 43 24 0
## 2631 43 24 0
## 2632 43 24 0
## 2633 43 24 0
## 2634 43 24 0
## 2635 43 24 0
## 2636 43 24 0
## 2637 43 24 0
## 2638 43 24 0
## 2639 43 24 0
## 2640 43 24 0
## 2641 43 24 0
## 2642 43 24 0
## 2643 43 24 0
## 2644 43 24 0
## 2645 43 24 0
## 2646 43 24 0
## 2647 43 24 0
## 2648 43 24 0
## 2649 43 24 0
## 2650 43 24 0
## 2651 43 24 0
## 2652 43 24 0
## 2653 43 24 0
## 2654 43 24 0
## 2655 43 24 0
## 2656 43 24 0
## 2657 43 24 0
## 2658 43 24 0
## 2659 43 24 0
## 2660 43 24 0
## 2661 43 24 0
## 2662 43 24 0
## 2663 43 24 1
## 2664 43 24 1
## 2665 43 24 2
## 2666 43 24 2
## 2667 43 24 2
## 2668 43 24 2
## 2669 43 24 2
## 2670 43 24 2
## 2671 43 24 2
## 2672 43 24 1
## 2673 43 24 2
## 2674 43 24 2
## 2675 43 24 2
## 2676 43 24 2
## 2677 43 24 4
## 2678 43 24 4
## 2679 43 24 0
## 2680 43 24 0
## 2681 43 24 0
## 2682 43 24 0
## 2683 43 24 0
## 2684 43 24 0
## 2685 43 24 0
## 2686 44 25 2
## 2687 44 25 2
## 2688 44 25 2
## 2689 44 25 2
## 2690 44 25 2
## 2691 44 25 3
## 2692 44 26 0
## 2693 44 26 1
## 2694 44 26 1
## 2695 44 26 1
## 2696 44 26 1
## 2697 44 26 5
## 2698 44 26 7
## 2699 44 26 7
## 2700 44 26 7
## 2701 44 26 7
## 2702 44 26 7
## 2703 44 26 7
## 2704 44 27 0
## 2705 44 27 0
## 2706 44 27 0
## 2707 44 27 0
## 2708 44 27 0
## 2709 44 27 0
## 2710 44 27 0
## 2711 44 27 0
## 2712 44 27 0
## 2713 44 27 0
## 2714 44 27 0
## 2715 44 27 0
## 2716 44 27 0
## 2717 44 27 0
## 2718 44 27 2
## 2719 44 27 2
## 2720 44 28 0
## 2721 44 28 0
## 2722 44 28 0
## 2723 44 28 0
## 2724 44 28 2
## 2725 44 28 2
## 2726 44 28 2
## 2727 44 28 2
## 2728 44 28 0
## 2729 44 28 0
## 2730 44 29 0
## 2731 44 29 0
## 2732 44 29 0
## 2733 44 29 0
## 2734 44 29 0
## 2735 44 29 0
## 2736 44 29 0
## 2737 44 29 0
## 2738 44 29 0
## 2739 44 29 0
## 2740 44 29 1
## 2741 44 29 3
## 2742 44 29 2
## 2743 44 30 0
## 2744 44 30 0
## 2745 44 30 0
## 2746 44 30 0
## 2747 44 30 0
## 2748 44 30 0
## 2749 44 30 0
## 2750 44 30 0
## 2751 44 30 0
## 2752 44 30 0
## 2753 44 30 1
## 2754 44 30 0
## 2755 44 30 0
## 2756 44 30 0
## 2757 44 30 1
## 2758 44 30 1
## 2759 44 30 1
## 2760 44 30 1
## 2761 44 30 1
## 2762 44 30 1
## 2763 44 30 1
## 2764 44 30 2
## 2765 44 30 2
## 2766 44 30 2
## 2767 44 31 0
## 2768 44 31 0
## 2769 44 31 0
## 2770 44 31 0
## 2771 44 31 0
## 2772 44 31 0
## 2773 44 31 0
## 2774 44 31 0
## 2775 44 31 0
## 2776 44 31 0
## 2777 44 31 0
## 2778 44 31 0
## 2779 44 31 0
## 2780 44 31 0
## 2781 44 31 0
## 2782 44 31 0
## 2783 44 31 0
## 2784 44 31 0
## 2785 44 31 0
## 2786 44 31 0
## 2787 44 31 0
## 2788 44 31 0
## 2789 44 31 0
## 2790 44 31 0
## 2791 44 31 0
## 2792 44 31 0
## 2793 44 31 0
## 2794 44 31 0
## 2795 44 31 0
## 2796 44 31 0
## 2797 44 31 0
## 2798 44 31 0
## 2799 44 31 0
## 2800 44 31 0
## 2801 44 31 0
## 2802 44 31 0
## 2803 44 31 0
## 2804 44 31 0
## 2805 44 31 0
## 2806 44 31 0
## 2807 44 31 0
## 2808 44 31 0
## 2809 44 31 0
## 2810 44 31 0
## 2811 44 31 0
## 2812 44 31 0
## 2813 44 31 0
## 2814 44 31 0
## 2815 44 31 0
## 2816 44 31 0
## 2817 44 31 0
## 2818 44 31 0
## 2819 44 31 1
## 2820 44 31 1
## 2821 44 31 1
## 2822 44 31 1
## 2823 44 31 1
## 2824 44 31 1
## 2825 44 31 1
## 2826 44 31 2
## 2827 44 31 2
## 2828 44 31 2
## 2829 44 31 2
## 2830 44 31 2
## 2831 44 31 2
## 2832 44 31 2
## 2833 44 31 2
## 2834 44 31 2
## 2835 44 31 2
## 2836 45 1 1
## 2837 45 1 1
## 2838 45 1 1
## 2839 45 1 1
## 2840 45 1 1
## 2841 45 1 1
## 2842 45 1 2
## 2843 45 1 3
## 2844 45 1 4
## 2845 45 2 1
## 2846 45 2 1
## 2847 45 2 1
## 2848 45 2 1
## 2849 45 2 1
## 2850 45 2 2
## 2851 45 2 2
## 2852 45 2 2
## 2853 45 2 5
## 2854 45 2 5
## 2855 45 2 5
## 2856 45 2 5
## 2857 45 2 5
## 2858 45 2 5
## 2859 45 2 5
## 2860 45 3 0
## 2861 45 3 0
## 2862 45 3 0
## 2863 45 3 0
## 2864 45 3 0
## 2865 45 3 0
## 2866 45 3 0
## 2867 45 3 0
## 2868 45 3 0
## 2869 45 3 0
## 2870 45 3 0
## 2871 45 3 0
## 2872 45 3 0
## 2873 45 3 0
## 2874 45 3 0
## 2875 45 3 0
## 2876 45 3 2
## 2877 45 3 0
## 2878 45 3 2
## 2879 45 3 3
## 2880 45 3 3
## 2881 45 3 3
## 2882 45 3 3
## 2883 45 3 3
## 2884 45 3 3
## 2885 45 3 3
## 2886 45 4 0
## 2887 45 4 0
## 2888 45 4 0
## 2889 45 4 0
## 2890 45 4 1
## 2891 45 4 2
## 2892 45 4 2
## 2893 45 4 2
## 2894 45 5 0
## 2895 45 5 0
## 2896 45 5 0
## 2897 45 5 2
## 2898 45 5 2
## 2899 45 5 2
## 2900 45 5 2
## 2901 45 5 2
## 2902 45 6 0
## 2903 45 6 0
## 2904 45 6 0
## 2905 45 6 0
## 2906 45 6 0
## 2907 45 6 0
## 2908 45 6 0
## 2909 45 6 0
## 2910 45 6 2
## 2911 45 6 2
## 2912 45 6 2
## 2913 45 6 2
## 2914 45 6 4
## 2915 45 6 4
## 2916 45 6 4
## 2917 45 6 4
## 2918 45 6 2
## 2919 45 6 2
## 2920 45 7 0
## 2921 45 7 0
## 2922 45 7 0
## 2923 45 7 0
## 2924 45 7 0
## 2925 45 7 0
## 2926 45 7 0
## 2927 45 7 0
## 2928 45 7 0
## 2929 45 7 1
## 2930 45 7 2
## 2931 45 7 2
## 2932 45 7 2
## 2933 45 7 2
## 2934 45 7 2
## 2935 45 7 2
## 2936 45 7 2
## 2937 45 7 2
## 2938 45 7 2
## 2939 45 7 2
## 2940 45 7 2
## 2941 45 7 2
## 2942 45 7 2
## 2943 45 7 2
## 2944 45 7 2
## 2945 45 7 2
## 2946 45 7 2
## 2947 45 7 2
## 2948 45 7 2
## 2949 45 7 2
## 2950 45 7 2
## 2951 45 7 2
## 2952 45 7 2
## 2953 45 7 2
## 2954 45 7 2
## 2955 45 7 2
## 2956 45 7 2
## 2957 45 7 2
## 2958 45 7 4
## 2959 46 8 2
## 2960 46 8 2
## 2961 46 8 2
## 2962 46 8 2
## 2963 46 8 2
## 2964 46 8 2
## 2965 46 8 2
## 2966 46 8 2
## 2967 46 8 2
## 2968 46 8 2
## 2969 46 8 2
## 2970 46 8 2
## 2971 46 8 2
## 2972 46 8 2
## 2973 46 8 4
## 2974 46 9 0
## 2975 46 9 1
## 2976 46 9 1
## 2977 46 9 1
## 2978 46 9 1
## 2979 46 9 1
## 2980 46 9 1
## 2981 46 9 1
## 2982 46 9 1
## 2983 46 9 1
## 2984 46 9 1
## 2985 46 9 1
## 2986 46 9 1
## 2987 46 9 1
## 2988 46 9 1
## 2989 46 9 2
## 2990 46 9 2
## 2991 46 10 0
## 2992 46 10 0
## 2993 46 10 0
## 2994 46 10 0
## 2995 46 10 0
## 2996 46 10 0
## 2997 46 10 0
## 2998 46 10 0
## 2999 46 11 0
## 3000 46 11 0
## 3001 46 11 0
## 3002 46 11 0
## 3003 46 11 0
## 3004 46 11 0
## 3005 46 11 0
## 3006 46 11 0
## 3007 46 11 0
## 3008 46 11 0
## 3009 46 11 0
## 3010 46 11 0
## 3011 46 11 0
## 3012 46 11 0
## 3013 46 11 0
## 3014 46 11 0
## 3015 46 11 0
## 3016 46 11 0
## 3017 46 11 0
## 3018 46 11 0
## 3019 46 11 0
## 3020 46 11 0
## 3021 46 11 0
## 3022 46 11 0
## 3023 46 11 0
## 3024 46 11 0
## 3025 46 11 0
## 3026 46 11 0
## 3027 46 11 0
## 3028 46 11 0
## 3029 46 11 0
## 3030 46 11 0
## 3031 46 11 1
## 3032 46 11 1
## 3033 46 11 0
## 3034 46 11 0
## 3035 46 12 0
## 3036 46 12 0
## 3037 46 12 0
## 3038 46 12 0
## 3039 46 12 0
## 3040 46 12 0
## 3041 46 12 0
## 3042 46 12 0
## 3043 46 12 0
## 3044 46 12 0
## 3045 46 12 0
## 3046 46 12 0
## 3047 46 12 0
## 3048 46 12 0
## 3049 46 12 0
## 3050 46 12 0
## 3051 46 12 0
## 3052 46 12 0
## 3053 46 12 0
## 3054 46 12 0
## 3055 46 12 0
## 3056 46 12 0
## 3057 46 12 0
## 3058 46 12 0
## 3059 46 12 0
## 3060 46 12 0
## 3061 46 12 0
## 3062 46 12 0
## 3063 46 12 0
## 3064 46 12 1
## 3065 46 12 1
## 3066 46 12 1
## 3067 46 12 1
## 3068 46 12 1
## 3069 46 12 0
## 3070 46 13 0
## 3071 46 13 0
## 3072 46 13 0
## 3073 46 13 0
## 3074 46 13 0
## 3075 46 13 0
## 3076 46 13 0
## 3077 46 13 0
## 3078 46 13 0
## 3079 46 13 0
## 3080 46 14 2
## 3081 46 14 2
## 3082 46 14 2
## 3083 46 14 2
## 3084 46 14 2
## 3085 47 15 2
## 3086 47 15 2
## 3087 47 15 3
## 3088 47 15 4
## 3089 47 15 2
## 3090 47 16 0
## 3091 47 16 0
## 3092 47 16 0
## 3093 47 16 1
## 3094 47 16 1
## 3095 47 16 1
## 3096 47 16 1
## 3097 47 16 1
## 3098 47 16 1
## 3099 47 16 3
## 3100 47 16 6
## 3101 47 17 0
## 3102 47 17 0
## 3103 47 17 0
## 3104 47 17 2
## 3105 47 18 0
## 3106 47 18 0
## 3107 47 18 2
## 3108 47 18 2
## 3109 47 18 2
## 3110 47 18 2
## 3111 47 18 2
## 3112 47 18 2
## 3113 47 18 2
## 3114 47 18 2
## 3115 47 18 2
## 3116 47 18 2
## 3117 47 18 2
## 3118 47 18 2
## 3119 47 18 2
## 3120 47 18 2
## 3121 47 18 2
## 3122 47 18 2
## 3123 47 18 2
## 3124 47 18 2
## 3125 47 18 2
## 3126 47 18 2
## 3127 47 18 2
## 3128 47 18 2
## 3129 47 18 2
## 3130 47 18 2
## 3131 47 18 2
## 3132 47 18 2
## 3133 47 18 2
## 3134 47 18 2
## 3135 47 19 0
## 3136 47 19 0
## 3137 47 19 0
## 3138 47 19 0
## 3139 47 19 1
## 3140 47 19 1
## 3141 47 19 1
## 3142 47 19 1
## 3143 47 19 4
## 3144 47 20 0
## 3145 47 20 0
## 3146 47 20 0
## 3147 47 20 0
## 3148 47 20 0
## 3149 47 20 0
## 3150 47 20 0
## 3151 47 20 0
## 3152 47 20 0
## 3153 47 20 0
## 3154 47 20 0
## 3155 47 20 0
## 3156 47 20 0
## 3157 47 20 0
## 3158 47 20 0
## 3159 47 20 0
## 3160 47 20 0
## 3161 47 20 0
## 3162 47 20 0
## 3163 47 20 0
## 3164 47 20 0
## 3165 47 20 0
## 3166 47 20 0
## 3167 47 20 0
## 3168 47 20 0
## 3169 47 20 0
## 3170 47 20 0
## 3171 47 20 0
## 3172 47 20 0
## 3173 47 20 0
## 3174 47 20 0
## 3175 47 20 0
## 3176 47 20 0
## 3177 47 20 0
## 3178 47 20 0
## 3179 47 20 0
## 3180 47 20 0
## 3181 47 20 1
## 3182 47 20 1
## 3183 47 20 1
## 3184 47 21 0
## 3185 47 21 0
## 3186 47 21 0
## 3187 47 21 0
## 3188 47 21 0
## 3189 47 21 0
## 3190 47 21 0
## 3191 47 21 0
## 3192 47 21 0
## 3193 47 21 0
## 3194 47 21 0
## 3195 47 21 0
## 3196 47 21 0
## 3197 47 21 0
## 3198 47 21 0
## 3199 47 21 0
## 3200 47 21 0
## 3201 47 21 0
## 3202 47 21 0
## 3203 47 21 0
## 3204 47 21 0
## 3205 47 21 0
## 3206 47 21 0
## 3207 47 21 0
## 3208 47 21 0
## 3209 47 21 0
## 3210 47 21 0
## 3211 47 21 0
## 3212 47 21 0
## 3213 47 21 0
## 3214 47 21 0
## 3215 47 21 0
## 3216 47 21 0
## 3217 47 21 0
## 3218 47 21 0
## 3219 47 21 0
## 3220 47 21 0
## 3221 47 21 0
## 3222 47 21 0
## 3223 47 21 0
## 3224 47 21 0
## 3225 47 21 0
## stays_in_week_nights adults children babies meal country
## 1 0 2 0 0 BB PRT
## 2 0 2 0 0 BB PRT
## 3 1 1 0 0 BB GBR
## 4 1 1 0 0 BB GBR
## 5 2 2 0 0 BB GBR
## 6 2 2 0 0 BB GBR
## 7 2 2 0 0 BB PRT
## 8 2 2 0 0 FB PRT
## 9 3 2 0 0 BB PRT
## 10 3 2 0 0 HB PRT
## 11 4 2 0 0 BB PRT
## 12 4 2 0 0 HB PRT
## 13 4 2 0 0 BB USA
## 14 4 2 1 0 HB ESP
## 15 4 2 0 0 BB PRT
## 16 4 2 0 0 BB IRL
## 17 4 2 0 0 BB PRT
## 18 1 2 0 0 BB IRL
## 19 1 2 0 0 BB FRA
## 20 4 2 0 0 BB GBR
## 21 4 1 0 0 BB GBR
## 22 4 2 0 0 BB PRT
## 23 4 2 0 0 BB PRT
## 24 4 2 0 0 BB PRT
## 25 5 2 0 0 HB GBR
## 26 5 2 0 0 BB PRT
## 27 5 2 0 0 BB IRL
## 28 5 2 0 0 BB PRT
## 29 5 2 0 0 BB PRT
## 30 5 2 0 0 BB PRT
## 31 10 1 0 0 BB NULL
## 32 11 2 0 0 BB GBR
## 33 8 2 0 0 BB PRT
## 34 4 2 0 0 BB IRL
## 35 3 3 0 0 BB PRT
## 36 3 3 0 0 BB PRT
## 37 3 2 0 0 BB ESP
## 38 3 3 0 0 BB PRT
## 39 3 3 0 0 BB PRT
## 40 3 2 0 0 HB ROU
## 41 3 2 0 0 BB PRT
## 42 3 2 0 0 BB IRL
## 43 3 2 0 0 BB ESP
## 44 3 2 0 0 HB ROU
## 45 5 2 0 0 BB PRT
## 46 5 2 2 0 BB PRT
## 47 5 2 0 0 BB ESP
## 48 5 2 0 0 BB NOR
## 49 5 2 0 0 HB GBR
## 50 5 2 0 0 HB IRL
## 51 5 2 0 0 BB NOR
## 52 8 2 0 0 BB IRL
## 53 10 2 0 0 BB OMN
## 54 1 2 0 0 BB ESP
## 55 1 2 0 0 BB ARG
## 56 1 2 2 0 BB ESP
## 57 1 2 0 0 BB PRT
## 58 1 2 0 0 BB PRT
## 59 1 2 0 0 BB PRT
## 60 2 2 0 0 BB USA
## 61 2 2 0 0 BB PRT
## 62 2 2 0 0 BB IRL
## 63 3 2 0 0 BB ESP
## 64 3 2 0 0 BB IRL
## 65 3 2 0 0 HB PRT
## 66 2 2 2 0 BB USA
## 67 2 2 0 0 BB ESP
## 68 2 2 0 0 BB POL
## 69 2 3 0 0 BB PRT
## 70 2 2 0 0 BB PRT
## 71 2 2 0 0 BB PRT
## 72 2 2 0 0 BB PRT
## 73 2 2 0 0 HB PRT
## 74 2 2 0 0 BB ESP
## 75 2 3 0 0 BB PRT
## 76 2 2 0 0 BB ESP
## 77 2 2 0 0 BB PRT
## 78 2 1 0 0 BB PRT
## 79 2 2 0 0 BB DEU
## 80 6 3 0 0 BB PRT
## 81 7 2 0 0 BB FRA
## 82 7 2 0 0 BB PRT
## 83 7 2 0 0 BB GBR
## 84 7 2 0 0 HB PRT
## 85 7 2 0 0 HB GBR
## 86 10 2 0 0 HB GBR
## 87 10 2 0 0 BB GBR
## 88 15 2 1 0 BB PRT
## 89 1 2 0 0 BB GBR
## 90 1 2 0 0 BB PRT
## 91 1 2 0 0 BB ESP
## 92 1 2 0 0 BB PRT
## 93 1 2 0 0 BB USA
## 94 1 2 0 0 BB BEL
## 95 2 2 0 0 BB PRT
## 96 2 2 0 0 BB PRT
## 97 5 2 0 0 BB PRT
## 98 5 3 0 0 HB ESP
## 99 5 2 1 0 BB PRT
## 100 5 2 0 0 BB DEU
## 101 1 2 0 0 BB ESP
## 102 1 2 0 0 BB FRA
## 103 4 1 2 0 BB FRA
## 104 4 2 0 0 BB PRT
## 105 5 2 0 0 BB PRT
## 106 5 2 2 0 BB PRT
## 107 5 3 0 0 HB PRT
## 108 5 2 0 0 BB PRT
## 109 5 2 0 0 BB PRT
## 110 5 2 0 1 BB PRT
## 111 5 2 0 0 BB CHE
## 112 5 2 0 1 HB PRT
## 113 5 2 0 0 BB GBR
## 114 6 3 0 0 BB PRT
## 115 6 2 0 0 BB PRT
## 116 6 2 0 0 BB PRT
## 117 6 2 0 0 BB GBR
## 118 6 2 0 0 BB PRT
## 119 6 2 1 0 HB PRT
## 120 1 2 2 0 BB PRT
## 121 1 2 0 0 BB PRT
## 122 1 1 0 0 HB PRT
## 123 1 1 0 0 BB PRT
## 124 1 2 0 0 BB PRT
## 125 1 2 0 0 BB PRT
## 126 1 4 0 0 FB PRT
## 127 1 2 0 0 BB ESP
## 128 1 2 0 0 BB FRA
## 129 1 2 0 0 BB PRT
## 130 1 2 0 0 BB FRA
## 131 1 2 0 0 BB FRA
## 132 0 2 0 0 BB ESP
## 133 0 2 0 0 BB PRT
## 134 0 2 0 0 BB ESP
## 135 0 1 0 0 BB DEU
## 136 0 1 0 0 BB PRT
## 137 0 2 0 0 BB PRT
## 138 0 1 0 0 BB DEU
## 139 0 2 0 0 BB PRT
## 140 0 2 0 0 BB PRT
## 141 0 3 0 0 HB PRT
## 142 0 2 0 0 BB FRA
## 143 2 2 0 0 BB ESP
## 144 3 2 1 0 BB CN
## 145 3 2 0 0 BB ESP
## 146 3 2 0 0 BB PRT
## 147 4 2 0 0 BB ESP
## 148 4 2 0 0 BB PRT
## 149 4 2 2 0 BB PRT
## 150 5 2 0 0 HB PRT
## 151 5 2 2 0 HB PRT
## 152 5 2 0 0 BB IRL
## 153 5 2 0 0 HB PRT
## 154 5 2 0 0 BB ESP
## 155 5 2 2 0 BB CHE
## 156 6 2 0 0 BB PRT
## 157 6 3 0 0 BB PRT
## 158 7 2 0 0 BB GBR
## 159 10 1 0 0 HB GBR
## 160 10 2 0 0 HB GBR
## 161 4 2 2 0 BB PRT
## 162 3 2 0 0 BB PRT
## 163 3 2 0 0 BB USA
## 164 3 3 0 0 BB CN
## 165 3 2 2 0 HB CHE
## 166 3 2 0 1 BB PRT
## 167 3 3 0 0 BB USA
## 168 0 2 0 0 BB PRT
## 169 0 1 0 0 BB PRT
## 170 0 2 1 0 BB PRT
## 171 1 2 0 0 BB PRT
## 172 1 2 0 0 BB USA
## 173 2 2 0 0 BB GRC
## 174 3 2 0 0 HB PRT
## 175 3 2 0 0 HB PRT
## 176 3 2 0 0 BB PRT
## 177 4 2 0 0 BB PRT
## 178 4 2 0 0 HB PRT
## 179 5 2 0 0 HB ESP
## 180 5 2 0 0 BB PRT
## 181 5 2 2 0 HB PRT
## 182 5 1 0 0 HB PRT
## 183 5 2 0 0 BB GBR
## 184 5 2 0 0 HB PRT
## 185 7 2 0 0 BB PRT
## 186 7 2 0 0 BB GBR
## 187 7 2 0 0 BB GBR
## 188 7 2 0 0 HB PRT
## 189 7 2 0 0 HB GBR
## 190 8 1 0 0 BB FRA
## 191 10 2 0 0 BB ITA
## 192 10 2 0 0 BB GBR
## 193 5 2 0 0 BB PRT
## 194 2 2 0 0 BB PRT
## 195 3 2 0 0 BB ESP
## 196 3 2 1 0 HB PRT
## 197 0 2 0 0 BB PRT
## 198 0 2 0 0 BB PRT
## 199 1 1 0 0 BB GBR
## 200 1 3 0 0 HB PRT
## 201 1 1 0 0 BB GBR
## 202 4 3 2 0 BB ESP
## 203 4 2 0 0 BB PRT
## 204 4 3 0 0 HB USA
## 205 4 2 0 0 BB NLD
## 206 5 2 0 0 HB PRT
## 207 5 2 0 0 HB PRT
## 208 5 2 0 0 BB IRL
## 209 5 2 0 0 BB PRT
## 210 10 2 0 0 HB IRL
## 211 3 2 0 0 BB GBR
## 212 4 2 0 0 BB PRT
## 213 4 2 0 0 BB ESP
## 214 4 2 0 0 BB PRT
## 215 4 2 0 0 BB ESP
## 216 4 2 0 0 BB PRT
## 217 4 2 0 0 BB PRT
## 218 1 1 0 0 BB PRT
## 219 1 2 0 0 BB PRT
## 220 1 2 0 0 BB PRT
## 221 2 2 0 0 BB CHE
## 222 4 2 0 0 BB PRT
## 223 4 2 0 0 BB PRT
## 224 5 2 1 0 HB PRT
## 225 5 2 0 0 BB GBR
## 226 5 2 0 0 HB GBR
## 227 5 2 0 0 HB PRT
## 228 6 3 0 0 BB IRL
## 229 7 3 0 0 BB DNK
## 230 7 2 0 0 BB DNK
## 231 1 2 2 0 BB PRT
## 232 2 3 0 0 BB ARG
## 233 2 2 2 0 BB PRT
## 234 3 2 0 0 BB PRT
## 235 3 2 2 0 BB PRT
## 236 3 2 2 0 BB PRT
## 237 3 2 0 1 BB PRT
## 238 3 2 0 0 BB PRT
## 239 3 2 0 0 BB PRT
## 240 3 1 0 0 BB RUS
## 241 3 2 0 0 BB SWE
## 242 3 2 0 0 BB POL
## 243 5 2 0 0 BB FRA
## 244 5 2 0 0 BB GBR
## 245 5 2 0 0 BB GBR
## 246 5 2 0 0 HB GBR
## 247 5 2 0 0 HB PRT
## 248 6 2 0 0 HB PRT
## 249 1 2 0 0 BB USA
## 250 2 2 0 0 BB PRT
## 251 2 2 0 0 BB PRT
## 252 2 2 0 0 BB PRT
## 253 2 2 0 0 BB PRT
## 254 2 2 0 0 BB PRT
## 255 2 2 1 0 HB PRT
## 256 2 2 0 0 BB PRT
## 257 2 2 0 0 BB PRT
## 258 2 2 0 0 BB GBR
## 259 2 2 0 0 BB AUS
## 260 2 2 0 0 BB GBR
## 261 2 2 0 0 FB PRT
## 262 2 2 0 0 FB PRT
## 263 3 2 0 0 BB PRT
## 264 3 2 0 0 BB POL
## 265 3 2 0 2 HB PRT
## 266 3 2 2 0 BB EST
## 267 5 2 0 0 HB PRT
## 268 5 2 0 0 HB PRT
## 269 5 2 0 0 HB PRT
## 270 5 2 0 0 HB PRT
## 271 5 1 0 0 HB RUS
## 272 5 2 1 0 HB GBR
## 273 5 2 1 1 FB PRT
## 274 6 3 1 0 BB PRT
## 275 7 2 0 0 BB IRL
## 276 7 2 0 0 BB PRT
## 277 7 2 0 1 BB GBR
## 278 9 2 0 0 BB DNK
## 279 5 2 1 0 HB GBR
## 280 5 2 0 0 HB GBR
## 281 3 2 1 0 HB PRT
## 282 3 2 0 0 BB ESP
## 283 4 2 0 1 BB PRT
## 284 4 2 0 0 BB PRT
## 285 4 3 0 0 HB PRT
## 286 4 2 0 0 BB ESP
## 287 5 2 0 0 BB PRT
## 288 5 2 0 0 BB PRT
## 289 2 2 0 0 BB GBR
## 290 2 2 0 0 BB PRT
## 291 2 2 0 0 BB CZE
## 292 1 1 0 0 BB GBR
## 293 1 2 0 0 HB DEU
## 294 1 2 0 0 BB ESP
## 295 1 2 0 0 BB ESP
## 296 1 2 0 0 HB PRT
## 297 1 2 0 0 BB ESP
## 298 1 2 0 0 BB ROU
## 299 1 2 0 0 BB PRT
## 300 1 2 0 0 BB ESP
## 301 5 2 0 0 BB PRT
## 302 5 2 0 0 HB PRT
## 303 6 2 0 0 BB PRT
## 304 6 2 2 0 HB PRT
## 305 6 2 0 0 HB PRT
## 306 5 2 0 0 BB PRT
## 307 5 2 0 0 BB PRT
## 308 0 2 2 0 BB CN
## 309 0 2 0 0 BB PRT
## 310 4 2 1 0 BB PRT
## 311 4 2 0 0 BB PRT
## 312 5 2 0 0 BB GBR
## 313 5 2 0 0 BB BRA
## 314 5 2 0 0 FB PRT
## 315 5 2 0 1 HB ESP
## 316 5 3 1 0 BB PRT
## 317 5 2 0 0 BB GBR
## 318 5 2 0 1 FB PRT
## 319 5 2 0 0 BB PRT
## 320 5 2 0 0 BB GBR
## 321 5 2 0 0 HB PRT
## 322 5 2 0 0 BB GBR
## 323 5 2 0 0 BB ESP
## 324 5 2 0 0 BB PRT
## 325 5 2 0 0 HB FRA
## 326 5 2 0 0 BB PRT
## 327 7 2 0 0 BB GBR
## 328 7 2 0 0 HB GBR
## 329 10 2 10 0 BB PRT
## 330 5 2 0 0 BB GBR
## 331 0 2 0 0 BB PRT
## 332 0 2 2 0 BB BEL
## 333 0 2 0 0 BB ESP
## 334 0 2 0 0 BB FRA
## 335 0 2 0 0 BB ESP
## 336 0 2 0 0 BB BEL
## 337 1 2 0 0 BB ITA
## 338 1 2 0 0 BB ESP
## 339 1 2 0 0 HB PRT
## 340 2 2 0 0 BB FRA
## 341 2 2 0 1 BB FIN
## 342 2 2 2 0 BB CN
## 343 3 2 0 0 BB ESP
## 344 3 2 0 0 BB PRT
## 345 3 2 2 0 BB IRL
## 346 3 2 0 0 HB ESP
## 347 5 2 0 0 BB ESP
## 348 5 2 0 1 HB PRT
## 349 5 2 0 0 BB PRT
## 350 5 2 0 0 BB GBR
## 351 1 2 0 0 BB ESP
## 352 1 2 0 0 BB ESP
## 353 1 2 0 0 BB AUS
## 354 1 2 0 0 BB ESP
## 355 1 4 0 0 BB PRT
## 356 1 2 0 0 HB ESP
## 357 1 2 0 0 BB ESP
## 358 1 2 0 0 BB PRT
## 359 2 2 0 0 BB USA
## 360 2 2 0 0 BB PRT
## 361 2 2 0 0 HB ESP
## 362 2 2 0 0 BB PRT
## 363 2 2 0 0 HB ESP
## 364 3 1 0 0 BB PRT
## 365 4 2 0 0 BB PRT
## 366 4 2 0 0 HB PRT
## 367 4 2 0 0 BB ESP
## 368 4 2 0 0 BB PRT
## 369 4 2 0 0 BB PRT
## 370 4 2 0 0 HB PRT
## 371 4 2 0 0 BB PRT
## 372 4 2 0 0 BB PRT
## 373 4 2 0 0 BB ESP
## 374 4 3 0 0 HB PRT
## 375 5 2 0 0 BB PRT
## 376 5 2 0 0 HB PRT
## 377 5 1 0 0 HB PRT
## 378 5 2 0 0 BB FRA
## 379 5 2 0 0 HB PRT
## 380 5 2 0 0 FB PRT
## 381 5 2 1 0 HB ESP
## 382 5 2 0 0 BB PRT
## 383 0 2 0 0 BB ROU
## 384 3 2 0 0 HB ESP
## 385 5 2 0 0 BB FIN
## 386 6 2 0 0 BB GBR
## 387 1 2 0 0 BB PRT
## 388 1 1 0 0 BB PRT
## 389 1 2 0 0 BB PRT
## 390 2 2 0 0 BB PRT
## 391 4 2 0 0 BB PRT
## 392 4 2 0 0 BB ESP
## 393 5 2 0 0 BB POL
## 394 5 2 0 0 BB PRT
## 395 5 2 0 0 HB PRT
## 396 5 2 1 0 HB PRT
## 397 5 2 2 0 HB PRT
## 398 5 1 0 0 BB PRT
## 399 5 2 0 0 HB ESP
## 400 5 2 0 0 HB ESP
## 401 7 2 0 0 BB PRT
## 402 7 2 0 0 BB PRT
## 403 7 2 0 0 BB IRL
## 404 9 2 0 0 BB IRL
## 405 10 2 0 0 HB SWE
## 406 10 2 0 0 HB SWE
## 407 11 3 0 0 BB PRT
## 408 1 1 0 0 BB PRT
## 409 3 2 0 0 HB PRT
## 410 3 2 0 0 BB PRT
## 411 4 2 0 0 HB POL
## 412 5 2 0 0 BB PRT
## 413 6 2 2 0 BB GBR
## 414 2 2 0 0 FB PRT
## 415 2 2 0 0 FB PRT
## 416 2 2 0 0 FB PRT
## 417 2 2 0 0 FB PRT
## 418 2 2 0 0 FB PRT
## 419 7 2 2 0 BB GBR
## 420 2 2 0 0 FB PRT
## 421 2 1 0 0 FB PRT
## 422 2 2 0 0 FB PRT
## 423 2 2 0 0 FB PRT
## 424 2 3 0 0 FB PRT
## 425 2 1 0 0 FB PRT
## 426 2 2 0 0 FB PRT
## 427 2 2 0 0 FB PRT
## 428 2 3 0 0 FB PRT
## 429 2 1 0 0 FB PRT
## 430 2 2 0 0 FB PRT
## 431 2 2 0 0 FB PRT
## 432 2 2 0 0 FB PRT
## 433 2 2 0 0 FB PRT
## 434 2 2 0 0 FB PRT
## 435 2 2 2 0 BB PRT
## 436 2 2 0 0 BB DNK
## 437 1 2 0 0 BB FIN
## 438 1 1 0 0 BB PRT
## 439 1 2 0 0 BB PRT
## 440 1 2 2 0 BB USA
## 441 2 2 2 0 BB PRT
## 442 2 2 0 0 BB PRT
## 443 2 2 1 0 BB PRT
## 444 2 2 0 0 BB DNK
## 445 3 2 0 0 BB ESP
## 446 3 2 0 0 BB PRT
## 447 3 2 0 0 HB PRT
## 448 3 2 0 0 HB PRT
## 449 3 2 0 0 BB ESP
## 450 3 2 0 0 BB IRL
## 451 3 2 0 0 BB PRT
## 452 3 1 0 0 BB IRL
## 453 3 2 0 0 BB PRT
## 454 3 2 0 0 BB PRT
## 455 4 2 0 0 HB PRT
## 456 4 2 0 0 BB PRT
## 457 5 2 0 0 HB GBR
## 458 6 2 0 0 BB PRT
## 459 10 1 0 0 HB PRT
## 460 0 2 0 0 BB PRT
## 461 2 2 0 0 BB PRT
## 462 2 2 0 0 BB PRT
## 463 2 2 0 0 BB PRT
## 464 2 2 0 0 BB PRT
## 465 2 2 0 0 BB PRT
## 466 2 2 0 0 BB PRT
## 467 2 2 0 0 BB ESP
## 468 2 2 0 0 BB PRT
## 469 2 2 0 0 BB PRT
## 470 2 2 0 0 BB ESP
## 471 2 2 0 0 BB PRT
## 472 2 2 0 0 BB PRT
## 473 2 1 0 0 BB PRT
## 474 2 2 0 0 BB PRT
## 475 3 2 0 0 BB PRT
## 476 3 2 1 0 BB PRT
## 477 3 2 0 0 BB ESP
## 478 3 1 0 0 BB PRT
## 479 3 2 0 0 BB PRT
## 480 3 1 0 0 BB PRT
## 481 3 1 0 0 BB PRT
## 482 3 2 0 0 BB PRT
## 483 3 3 1 0 BB PRT
## 484 4 2 0 0 BB PRT
## 485 5 2 2 0 BB ESP
## 486 5 2 0 0 BB IRL
## 487 5 2 2 0 BB PRT
## 488 5 2 0 0 HB PRT
## 489 5 2 0 0 BB PRT
## 490 5 2 0 0 BB GBR
## 491 5 2 0 0 HB PRT
## 492 6 2 0 0 HB ESP
## 493 6 2 0 0 HB ESP
## 494 6 3 0 0 BB FRA
## 495 7 2 0 0 HB ESP
## 496 2 2 0 0 BB MOZ
## 497 2 2 1 0 BB BWA
## 498 2 2 1 0 HB PRT
## 499 2 2 0 0 BB GBR
## 500 2 2 0 0 BB ESP
## 501 2 2 0 0 BB DEU
## 502 2 2 0 0 BB PRT
## 503 2 2 0 0 BB IRL
## 504 2 2 0 0 BB GBR
## 505 1 2 0 0 BB PRT
## 506 2 2 1 0 BB MOZ
## 507 2 2 0 0 BB ESP
## 508 2 3 0 0 BB PRT
## 509 1 2 0 0 BB ESP
## 510 4 2 0 0 BB PRT
## 511 4 2 1 0 HB LUX
## 512 4 2 2 0 HB PRT
## 513 5 2 0 0 HB PRT
## 514 5 2 0 0 BB PRT
## 515 2 2 0 0 BB PRT
## 516 2 2 0 0 BB PRT
## 517 2 2 0 0 HB PRT
## 518 2 2 0 1 BB PRT
## 519 3 2 2 0 BB PRT
## 520 3 2 0 0 BB PRT
## 521 3 2 0 0 BB GBR
## 522 3 2 1 1 BB PRT
## 523 1 2 0 0 BB PRT
## 524 1 2 2 0 FB PRT
## 525 1 1 2 0 BB PRT
## 526 1 1 0 0 BB CN
## 527 5 2 1 0 FB PRT
## 528 5 2 0 0 HB ESP
## 529 5 2 0 0 FB PRT
## 530 5 2 0 0 BB PRT
## 531 5 2 0 0 HB PRT
## 532 5 2 0 0 BB PRT
## 533 5 2 0 0 BB PRT
## 534 5 2 0 0 BB PRT
## 535 6 2 0 0 HB ESP
## 536 6 2 0 0 HB PRT
## 537 6 2 0 0 HB ESP
## 538 10 2 0 0 BB IRL
## 539 0 2 0 0 BB PRT
## 540 0 2 0 0 BB PRT
## 541 0 2 0 0 BB NLD
## 542 0 2 0 0 BB PRT
## 543 0 2 0 0 BB PRT
## 544 0 2 0 0 BB PRT
## 545 1 2 0 0 BB PRT
## 546 2 2 0 0 BB PRT
## 547 2 2 0 0 BB PRT
## 548 3 2 0 0 BB PRT
## 549 4 1 0 0 BB PRT
## 550 5 2 0 0 HB PRT
## 551 5 2 2 0 HB ESP
## 552 5 2 0 0 BB PRT
## 553 5 2 0 0 BB GBR
## 554 5 2 0 0 HB PRT
## 555 5 2 0 0 BB RUS
## 556 5 2 0 0 BB PRT
## 557 5 2 0 0 BB IRL
## 558 4 2 1 0 BB PRT
## 559 4 2 2 0 BB PRT
## 560 4 2 0 0 BB PRT
## 561 5 2 0 0 BB GBR
## 562 5 2 0 0 BB IRL
## 563 5 2 2 0 BB PRT
## 564 6 2 0 0 BB GBR
## 565 10 2 0 0 BB GBR
## 566 4 2 0 1 BB ESP
## 567 0 1 0 0 BB PRT
## 568 2 2 2 0 BB PRT
## 569 0 1 0 0 BB PRT
## 570 0 2 0 0 BB PRT
## 571 3 2 0 1 BB PRT
## 572 3 2 0 0 BB PRT
## 573 3 2 0 0 BB POL
## 574 3 2 0 0 HB PRT
## 575 3 2 0 0 BB PRT
## 576 3 2 0 0 BB NOR
## 577 3 2 0 0 BB PRT
## 578 4 2 2 0 BB PRT
## 579 4 2 0 0 BB ESP
## 580 4 2 0 0 BB PRT
## 581 5 2 2 0 BB PRT
## 582 5 2 0 0 HB PRT
## 583 5 2 0 0 BB PRT
## 584 5 2 0 0 BB GBR
## 585 5 2 1 0 FB PRT
## 586 5 2 2 0 BB GBR
## 587 5 2 0 1 HB PRT
## 588 5 2 0 0 FB ESP
## 589 5 2 0 0 HB ESP
## 590 5 2 1 0 HB PRT
## 591 5 2 0 0 BB PRT
## 592 5 2 1 0 FB PRT
## 593 6 2 0 0 HB PRT
## 594 6 2 0 0 FB PRT
## 595 7 2 1 0 HB PRT
## 596 7 2 0 0 HB PRT
## 597 7 2 0 0 HB PRT
## 598 8 2 0 0 HB PRT
## 599 8 2 0 0 HB PRT
## 600 2 2 0 0 BB PRT
## 601 2 1 0 0 BB PRT
## 602 3 2 0 0 BB PRT
## 603 4 2 2 0 BB PRT
## 604 4 2 0 0 BB PRT
## 605 5 3 0 0 BB PRT
## 606 5 3 0 0 BB PRT
## 607 5 2 0 0 HB IRL
## 608 5 3 0 0 BB CHE
## 609 6 2 0 0 BB PRT
## 610 7 2 1 0 BB IRL
## 611 8 2 0 0 BB GBR
## 612 1 2 0 0 BB ESP
## 613 4 2 0 0 BB PRT
## 614 4 2 0 0 BB PRT
## 615 4 2 1 0 HB FRA
## 616 4 2 2 0 BB PRT
## 617 4 2 0 0 BB PRT
## 618 4 2 0 0 BB PRT
## 619 0 2 2 0 BB PRT
## 620 0 2 0 0 BB PRT
## 621 1 2 0 0 BB PRT
## 622 1 2 0 0 BB PRT
## 623 1 1 0 0 BB PRT
## 624 3 2 0 0 HB ESP
## 625 3 2 0 0 BB PRT
## 626 3 2 0 0 BB PRT
## 627 3 2 0 0 HB ESP
## 628 3 2 2 0 BB PRT
## 629 3 2 0 0 BB PRT
## 630 3 2 0 0 BB CN
## 631 4 2 0 0 BB PRT
## 632 3 2 0 0 BB PRT
## 633 6 3 0 0 HB ROU
## 634 2 2 0 0 BB ESP
## 635 2 2 0 0 BB BRA
## 636 1 2 0 0 BB PRT
## 637 2 2 0 0 BB ESP
## 638 2 2 0 0 BB ESP
## 639 2 2 0 0 BB ESP
## 640 2 2 0 0 BB PRT
## 641 2 2 0 0 BB ESP
## 642 2 2 2 0 BB PRT
## 643 2 2 0 0 BB ESP
## 644 2 2 0 0 BB BRA
## 645 2 2 0 0 BB PRT
## 646 2 2 0 0 BB PRT
## 647 2 3 0 0 BB RUS
## 648 2 2 0 0 BB PRT
## 649 2 2 0 0 BB ESP
## 650 2 2 0 0 BB PRT
## 651 2 2 0 0 BB PRT
## 652 2 2 0 0 BB SVN
## 653 2 2 0 0 BB PRT
## 654 2 2 0 0 BB ALB
## 655 3 2 0 0 BB GBR
## 656 3 2 0 0 BB GBR
## 657 5 2 0 0 BB PRT
## 658 5 2 0 0 FB PRT
## 659 5 2 0 0 HB PRT
## 660 6 2 2 0 BB PRT
## 661 6 2 0 0 BB PRT
## 662 7 2 0 0 HB ESP
## 663 7 2 0 0 BB GBR
## 664 7 2 0 0 BB PRT
## 665 10 3 0 0 BB PRT
## 666 0 2 1 0 HB PRT
## 667 1 2 0 0 HB PRT
## 668 1 2 0 0 BB ESP
## 669 1 2 0 0 BB ESP
## 670 1 2 0 0 BB ESP
## 671 1 2 0 0 BB PRT
## 672 1 2 0 0 BB PRT
## 673 1 2 0 0 BB PRT
## 674 1 2 0 0 BB PRT
## 675 1 2 0 0 BB PRT
## 676 1 2 0 0 BB ESP
## 677 1 2 0 0 HB PRT
## 678 2 2 0 0 BB GBR
## 679 3 2 0 0 HB PRT
## 680 3 2 1 0 HB ESP
## 681 3 2 0 0 BB ESP
## 682 3 2 0 0 BB PRT
## 683 3 2 2 0 HB PRT
## 684 3 2 2 0 HB PRT
## 685 4 2 0 0 BB IRL
## 686 4 2 0 0 BB PRT
## 687 5 2 0 0 HB PRT
## 688 5 2 0 0 BB PRT
## 689 5 2 0 0 BB PRT
## 690 5 2 0 0 HB PRT
## 691 5 2 0 0 BB PRT
## 692 5 2 0 0 HB PRT
## 693 5 2 0 0 HB PRT
## 694 5 2 0 0 BB PRT
## 695 6 1 0 0 BB PRT
## 696 6 3 0 0 HB GBR
## 697 6 2 0 0 HB GBR
## 698 6 2 0 0 BB PRT
## 699 6 1 0 0 BB PRT
## 700 6 2 0 0 BB PRT
## 701 6 2 0 0 BB PRT
## 702 8 2 0 0 BB IRL
## 703 10 2 0 0 BB PRT
## 704 5 2 0 0 BB PRT
## 705 5 2 1 0 BB PRT
## 706 5 3 0 0 BB PRT
## 707 5 2 0 0 BB PRT
## 708 2 2 0 0 BB PRT
## 709 3 2 0 0 BB PRT
## 710 1 2 0 0 BB ESP
## 711 1 2 0 0 BB CN
## 712 4 2 1 0 BB PRT
## 713 4 2 0 0 BB PRT
## 714 3 3 0 0 HB PRT
## 715 4 2 1 0 BB PRT
## 716 4 2 0 0 BB PRT
## 717 5 2 2 0 HB ESP
## 718 0 2 0 0 BB RUS
## 719 5 2 0 0 HB PRT
## 720 5 2 0 0 HB PRT
## 721 5 2 0 0 HB PRT
## 722 5 2 0 0 BB GBR
## 723 0 2 0 0 BB PRT
## 724 1 2 2 0 BB PRT
## 725 1 2 0 0 BB PRT
## 726 1 2 2 0 BB PRT
## 727 1 1 0 0 HB PRT
## 728 1 2 0 0 HB PRT
## 729 2 2 0 0 BB PRT
## 730 2 2 0 0 HB PRT
## 731 2 2 0 0 BB ESP
## 732 2 2 0 0 HB PRT
## 733 3 2 0 0 BB PRT
## 734 3 2 0 0 BB ESP
## 735 3 2 0 0 BB PRT
## 736 3 2 0 0 HB ESP
## 737 3 2 0 0 BB PRT
## 738 3 2 0 0 BB ESP
## 739 3 2 1 0 HB PRT
## 740 3 2 0 0 HB ESP
## 741 3 2 0 0 BB PRT
## 742 3 2 0 0 BB PRT
## 743 3 2 0 0 BB PRT
## 744 3 2 1 0 BB PRT
## 745 3 2 0 0 BB PRT
## 746 3 2 0 0 HB PRT
## 747 4 2 0 0 BB PRT
## 748 4 2 0 0 BB PRT
## 749 4 2 0 0 BB PRT
## 750 4 2 0 0 BB PRT
## 751 4 2 0 0 HB PRT
## 752 5 3 0 0 HB PRT
## 753 5 2 0 0 HB ESP
## 754 5 2 0 0 BB PRT
## 755 5 2 0 0 BB PRT
## 756 5 2 0 0 BB PRT
## 757 5 2 0 0 BB PRT
## 758 5 2 0 0 BB PRT
## 759 5 2 0 0 BB GBR
## 760 5 2 0 0 BB GBR
## 761 1 2 1 0 BB GBR
## 762 1 2 1 0 BB USA
## 763 2 2 0 0 BB PRT
## 764 3 2 2 0 BB PRT
## 765 3 2 0 0 BB PRT
## 766 4 2 0 0 BB ESP
## 767 4 2 0 0 BB RUS
## 768 4 2 0 0 BB PRT
## 769 5 2 0 0 BB PRT
## 770 5 2 0 0 BB PRT
## 771 5 2 0 0 BB ESP
## 772 5 2 0 0 BB NOR
## 773 6 2 0 0 BB PRT
## 774 8 2 0 0 BB USA
## 775 0 2 0 0 HB PRT
## 776 4 2 0 0 BB PRT
## 777 4 2 0 0 BB PRT
## 778 4 2 0 0 BB PRT
## 779 4 2 0 0 BB GBR
## 780 4 2 0 0 HB PRT
## 781 4 3 0 0 HB PRT
## 782 4 2 0 0 HB PRT
## 783 1 2 2 0 BB PRT
## 784 4 2 0 0 HB PRT
## 785 4 2 0 0 HB PRT
## 786 4 2 0 0 BB GBR
## 787 4 2 0 0 BB PRT
## 788 4 2 0 0 HB PRT
## 789 5 2 0 0 BB GBR
## 790 5 2 0 0 BB PRT
## 791 5 2 0 0 BB PRT
## 792 4 2 0 0 BB GBR
## 793 5 2 0 0 BB PRT
## 794 6 2 0 0 BB PRT
## 795 1 2 0 0 BB PRT
## 796 1 1 0 0 BB ESP
## 797 1 1 0 0 BB PRT
## 798 1 2 0 0 BB PRT
## 799 2 2 0 0 BB GBR
## 800 3 3 1 0 HB PRT
## 801 3 2 0 0 BB PRT
## 802 3 2 0 0 BB PRT
## 803 3 2 0 0 BB PRT
## 804 3 2 2 0 FB ESP
## 805 3 2 1 0 BB BRA
## 806 3 2 0 0 BB PRT
## 807 3 2 0 0 BB PRT
## 808 3 2 0 0 BB PRT
## 809 3 2 0 0 BB PRT
## 810 3 2 0 0 BB PRT
## 811 7 2 0 0 HB PRT
## 812 7 2 0 0 BB CHE
## 813 7 2 0 0 BB CHE
## 814 5 2 0 0 BB PRT
## 815 0 1 0 0 BB PRT
## 816 0 2 0 0 HB PRT
## 817 1 2 2 0 BB PRT
## 818 1 2 0 0 BB PRT
## 819 1 2 0 0 BB PRT
## 820 1 2 0 0 BB PRT
## 821 2 1 0 0 BB PRT
## 822 2 2 0 0 BB PRT
## 823 2 2 0 0 BB PRT
## 824 2 2 0 0 BB PRT
## 825 2 2 0 0 BB PRT
## 826 2 2 0 0 BB PRT
## 827 2 2 0 0 BB PRT
## 828 2 2 0 0 BB PRT
## 829 2 2 2 0 BB PRT
## 830 2 2 0 0 HB PRT
## 831 2 2 0 0 BB PRT
## 832 2 2 0 0 BB PRT
## 833 2 2 0 0 BB PRT
## 834 2 2 0 0 BB PRT
## 835 2 2 0 0 BB PRT
## 836 2 2 0 0 BB PRT
## 837 2 1 0 0 BB IRL
## 838 2 2 2 0 BB PRT
## 839 2 2 0 0 BB PRT
## 840 3 1 0 0 BB NLD
## 841 4 2 0 0 BB BEL
## 842 7 2 0 0 BB IRL
## 843 1 2 0 0 BB PRT
## 844 1 2 0 0 HB PRT
## 845 1 2 0 0 HB PRT
## 846 1 2 0 0 BB PRT
## 847 1 2 0 0 BB PRT
## 848 1 2 0 0 BB PRT
## 849 1 2 0 0 BB PRT
## 850 1 2 0 0 BB PRT
## 851 1 2 2 0 BB PRT
## 852 1 2 0 0 BB PRT
## 853 1 2 0 0 BB PRT
## 854 3 2 2 0 HB PRT
## 855 5 2 0 0 BB ESP
## 856 4 2 0 0 BB PRT
## 857 5 2 2 0 BB PRT
## 858 5 2 2 0 BB PRT
## 859 5 2 0 0 HB PRT
## 860 5 2 0 0 HB PRT
## 861 5 2 0 0 BB PRT
## 862 5 2 1 0 HB PRT
## 863 5 3 0 0 HB PRT
## 864 6 2 0 0 BB PRT
## 865 6 2 0 0 HB PRT
## 866 6 2 0 0 HB PRT
## 867 6 2 2 0 BB PRT
## 868 6 2 1 0 BB PRT
## 869 10 2 2 0 BB PRT
## 870 10 1 0 0 BB PRT
## 871 0 2 0 0 BB PRT
## 872 0 2 0 0 BB PRT
## 873 3 2 0 0 BB PRT
## 874 3 2 0 0 BB PRT
## 875 5 3 0 0 HB PRT
## 876 4 2 1 0 HB PRT
## 877 4 2 0 0 BB PRT
## 878 5 2 0 0 HB PRT
## 879 5 2 0 0 BB ESP
## 880 5 2 0 0 BB IRL
## 881 5 2 0 0 FB PRT
## 882 10 2 0 0 BB PRT
## 883 0 2 2 0 BB PRT
## 884 0 2 0 0 BB PRT
## 885 1 2 0 0 HB PRT
## 886 3 2 0 0 BB PRT
## 887 4 2 0 0 BB PRT
## 888 4 2 2 0 BB PRT
## 889 5 2 0 0 BB IRL
## 890 5 2 0 1 HB PRT
## 891 5 1 0 0 HB GBR
## 892 5 2 0 0 BB PRT
## 893 5 2 0 0 BB PRT
## 894 0 2 0 0 BB PRT
## 895 0 2 0 0 BB PRT
## 896 1 2 0 0 BB PRT
## 897 3 1 0 0 BB PRT
## 898 3 2 0 0 BB PRT
## 899 4 2 0 1 HB PRT
## 900 4 2 0 0 HB PRT
## 901 4 2 0 0 BB PRT
## 902 5 2 0 0 HB ESP
## 903 5 2 0 0 BB PRT
## 904 5 2 0 0 BB ESP
## 905 5 2 0 0 BB ESP
## 906 5 2 0 0 BB PRT
## 907 8 2 0 0 HB RUS
## 908 0 3 0 0 BB PRT
## 909 0 2 0 0 HB PRT
## 910 1 2 0 0 BB PRT
## 911 1 2 0 0 BB ESP
## 912 1 2 0 0 BB PRT
## 913 3 2 0 0 HB PRT
## 914 4 2 0 0 BB PRT
## 915 4 2 0 0 BB ESP
## 916 4 2 0 0 BB PRT
## 917 4 2 0 0 BB PRT
## 918 4 2 0 0 HB PRT
## 919 4 3 0 0 BB PRT
## 920 5 2 0 1 HB PRT
## 921 6 2 0 0 HB PRT
## 922 1 1 0 0 BB PRT
## 923 1 2 0 0 BB FRA
## 924 3 2 0 0 BB PRT
## 925 3 2 0 0 BB PRT
## 926 3 2 2 0 HB ESP
## 927 3 2 0 0 BB PRT
## 928 3 2 0 0 HB GBR
## 929 3 2 0 0 HB PRT
## 930 3 3 0 0 BB PRT
## 931 4 2 0 0 BB ROU
## 932 6 2 0 0 BB RUS
## 933 6 2 0 0 BB ESP
## 934 8 3 1 0 BB IRL
## 935 0 2 0 0 BB PRT
## 936 1 2 0 0 BB PRT
## 937 2 2 2 0 BB PRT
## 938 2 2 1 0 BB IND
## 939 2 2 0 0 BB PRT
## 940 2 2 0 0 BB PRT
## 941 2 2 0 0 BB GBR
## 942 2 2 0 0 BB PRT
## 943 2 2 0 0 BB PRT
## 944 2 2 2 0 BB PRT
## 945 2 2 0 0 BB PRT
## 946 2 2 0 0 BB PRT
## 947 2 2 0 0 HB PRT
## 948 2 2 0 0 BB ESP
## 949 3 2 0 0 BB IRL
## 950 4 2 0 0 HB PRT
## 951 5 2 2 0 BB PRT
## 952 5 2 1 1 BB PRT
## 953 5 2 0 0 HB PRT
## 954 5 2 0 0 HB PRT
## 955 5 2 0 0 HB PRT
## 956 7 2 0 0 BB NLD
## 957 1 2 0 0 BB CHN
## 958 1 2 0 0 BB PRT
## 959 1 2 0 0 BB PRT
## 960 1 2 0 0 BB CHE
## 961 1 2 0 0 HB ESP
## 962 1 2 2 0 BB PRT
## 963 1 2 0 0 BB PRT
## 964 1 2 0 0 BB USA
## 965 2 2 0 0 HB ESP
## 966 2 2 0 0 HB FRA
## 967 2 2 0 0 BB PRT
## 968 4 2 0 0 HB PRT
## 969 5 2 0 0 HB PRT
## 970 5 2 0 0 BB PRT
## 971 5 2 0 0 HB PRT
## 972 5 2 2 0 BB PRT
## 973 5 2 2 0 BB PRT
## 974 5 2 2 0 FB PRT
## 975 5 2 0 0 HB PRT
## 976 5 2 0 1 HB PRT
## 977 5 2 0 0 HB PRT
## 978 5 2 0 0 BB PRT
## 979 5 2 0 0 HB PRT
## 980 5 2 0 0 BB IRL
## 981 5 2 0 0 HB PRT
## 982 5 2 0 0 BB PRT
## 983 6 1 0 0 BB PRT
## 984 9 2 0 0 BB FRA
## 985 0 2 0 0 BB PRT
## 986 0 2 0 0 BB PRT
## 987 0 2 0 0 BB PRT
## 988 0 2 1 0 BB PRT
## 989 0 2 0 0 BB PRT
## 990 1 2 0 0 BB FRA
## 991 2 2 0 0 BB USA
## 992 2 2 0 0 BB CN
## 993 3 2 0 0 BB PRT
## 994 3 1 0 0 BB PRT
## 995 4 2 0 0 HB MEX
## 996 4 2 0 0 HB PRT
## 997 4 2 0 0 BB PRT
## 998 4 2 0 0 BB PRT
## 999 4 2 1 1 FB ESP
## 1000 5 2 0 0 BB GBR
## 1001 5 2 0 0 HB PRT
## 1002 5 2 2 0 BB PRT
## 1003 5 2 0 0 HB GBR
## 1004 5 2 0 0 BB PRT
## 1005 5 2 0 0 BB GBR
## 1006 10 2 0 0 HB PRT
## 1007 10 1 0 0 HB PRT
## 1008 0 2 0 0 HB PRT
## 1009 2 2 1 0 HB PRT
## 1010 2 2 0 0 BB PRT
## 1011 2 2 0 0 BB RUS
## 1012 1 2 0 0 BB PRT
## 1013 2 2 0 0 BB USA
## 1014 4 2 0 0 BB PRT
## 1015 4 2 0 0 BB ESP
## 1016 4 2 0 0 HB PRT
## 1017 5 2 0 0 BB ESP
## 1018 5 2 0 0 HB PRT
## 1019 5 2 0 0 BB PRT
## 1020 5 2 0 0 BB PRT
## 1021 5 2 1 0 BB PRT
## 1022 5 2 0 0 BB PRT
## 1023 5 2 2 0 BB PRT
## 1024 5 4 0 0 BB PRT
## 1025 5 2 0 1 HB PRT
## 1026 5 2 0 0 BB PRT
## 1027 5 2 0 0 BB PRT
## 1028 5 2 0 0 BB PRT
## 1029 8 2 0 0 HB IRL
## 1030 0 2 0 0 BB PRT
## 1031 0 2 0 0 BB PRT
## 1032 2 2 0 0 BB PRT
## 1033 2 2 0 0 BB PRT
## 1034 2 2 0 0 BB PRT
## 1035 3 2 0 0 BB PRT
## 1036 3 2 0 0 BB PRT
## 1037 3 1 0 0 BB PRT
## 1038 4 2 0 0 BB PRT
## 1039 4 2 0 0 BB PRT
## 1040 4 2 0 0 BB IRL
## 1041 4 1 1 0 BB PRT
## 1042 5 2 0 0 BB PRT
## 1043 5 2 0 0 HB PRT
## 1044 5 2 0 0 BB PRT
## 1045 5 3 0 0 BB PRT
## 1046 5 2 0 0 HB PRT
## 1047 5 2 0 0 HB PRT
## 1048 5 2 0 0 HB PRT
## 1049 5 2 0 0 HB RUS
## 1050 5 2 0 0 HB PRT
## 1051 5 2 0 0 BB PRT
## 1052 5 2 0 0 BB PRT
## 1053 5 2 0 0 BB PRT
## 1054 8 2 1 0 FB PRT
## 1055 8 2 1 0 BB IRL
## 1056 10 2 0 0 HB PRT
## 1057 10 2 2 0 BB GBR
## 1058 5 2 0 0 BB PRT
## 1059 5 2 0 0 BB PRT
## 1060 1 1 0 0 BB PRT
## 1061 1 2 0 1 BB PRT
## 1062 1 2 0 0 BB PRT
## 1063 3 2 0 0 HB FRA
## 1064 3 2 0 0 BB PRT
## 1065 4 2 0 0 BB PRT
## 1066 4 2 0 0 BB PRT
## 1067 5 2 0 0 BB PRT
## 1068 6 2 0 0 BB PRT
## 1069 8 1 0 0 BB PRT
## 1070 8 2 0 0 BB FRA
## 1071 8 2 0 0 BB FRA
## 1072 4 2 0 0 BB PRT
## 1073 10 2 0 0 BB PRT
## 1074 1 2 0 0 BB FRA
## 1075 1 2 0 0 BB CN
## 1076 1 3 0 0 BB IRL
## 1077 1 2 0 0 BB PRT
## 1078 2 2 0 0 BB PRT
## 1079 3 2 0 0 BB PRT
## 1080 3 2 0 0 BB ESP
## 1081 3 2 0 0 BB PRT
## 1082 3 2 1 1 HB RUS
## 1083 3 2 0 0 BB PRT
## 1084 3 2 0 0 HB ESP
## 1085 3 2 0 0 BB GBR
## 1086 3 2 0 0 BB PRT
## 1087 3 2 0 0 BB PRT
## 1088 3 2 0 0 BB ESP
## 1089 3 1 0 0 HB PRT
## 1090 3 2 1 0 BB PRT
## 1091 3 2 0 1 HB PRT
## 1092 3 1 0 0 BB PRT
## 1093 5 2 0 0 BB PRT
## 1094 0 2 0 0 BB PRT
## 1095 1 2 2 0 BB CHE
## 1096 1 2 0 0 BB PRT
## 1097 1 2 0 0 BB PRT
## 1098 1 2 0 0 BB PRT
## 1099 1 2 0 0 BB CHN
## 1100 2 3 0 0 HB ESP
## 1101 2 2 0 0 BB ESP
## 1102 2 2 2 0 BB PRT
## 1103 2 2 0 0 HB PRT
## 1104 2 2 0 0 HB ESP
## 1105 2 3 0 0 BB PRT
## 1106 2 2 0 0 HB PRT
## 1107 2 2 0 0 HB PRT
## 1108 2 2 0 0 BB PRT
## 1109 2 2 0 0 HB PRT
## 1110 3 2 0 0 BB PRT
## 1111 3 2 0 0 BB ESP
## 1112 5 3 0 0 HB PRT
## 1113 5 2 1 0 HB PRT
## 1114 5 2 0 0 HB PRT
## 1115 5 2 0 0 BB NLD
## 1116 5 2 0 0 BB NLD
## 1117 5 2 2 0 HB PRT
## 1118 1 2 0 0 BB PRT
## 1119 2 2 0 0 HB PRT
## 1120 2 2 0 0 HB PRT
## 1121 2 2 2 0 BB USA
## 1122 2 2 0 0 HB PRT
## 1123 3 2 0 0 BB PRT
## 1124 3 2 0 1 HB PRT
## 1125 3 3 0 0 HB PRT
## 1126 3 3 0 0 BB ESP
## 1127 3 2 0 0 HB PRT
## 1128 3 2 0 0 HB PRT
## 1129 3 2 0 0 HB PRT
## 1130 4 2 0 0 FB PRT
## 1131 4 3 0 0 FB PRT
## 1132 4 2 0 0 BB ESP
## 1133 4 2 0 0 FB PRT
## 1134 5 3 0 0 BB PRT
## 1135 5 2 0 0 HB PRT
## 1136 5 2 0 0 HB PRT
## 1137 5 2 0 0 BB PRT
## 1138 5 2 0 0 HB PRT
## 1139 5 2 0 0 HB PRT
## 1140 5 2 1 0 BB PRT
## 1141 5 2 0 0 BB PRT
## 1142 5 2 0 0 BB PRT
## 1143 5 2 0 0 HB PRT
## 1144 5 3 1 0 BB PRT
## 1145 5 2 0 0 BB IRL
## 1146 6 2 0 0 HB PRT
## 1147 6 2 1 0 HB PRT
## 1148 5 2 0 0 HB PRT
## 1149 10 2 0 0 BB PRT
## 1150 12 2 0 0 BB PRT
## 1151 0 1 0 0 BB PRT
## 1152 0 1 0 0 BB PRT
## 1153 0 2 0 0 BB PRT
## 1154 0 1 0 0 BB PRT
## 1155 0 1 0 0 BB PRT
## 1156 0 2 0 0 BB PRT
## 1157 0 2 0 0 BB GBR
## 1158 0 1 0 0 BB PRT
## 1159 0 1 0 0 BB PRT
## 1160 0 2 0 0 BB BRA
## 1161 0 2 0 0 BB PRT
## 1162 0 2 0 0 BB PRT
## 1163 0 2 0 0 BB PRT
## 1164 0 2 0 0 BB PRT
## 1165 1 2 0 0 BB PRT
## 1166 2 2 0 0 BB PRT
## 1167 2 2 0 0 BB PRT
## 1168 2 2 0 0 BB PRT
## 1169 5 2 0 0 BB PRT
## 1170 5 2 1 0 HB PRT
## 1171 5 2 0 0 BB PRT
## 1172 5 2 0 0 BB PRT
## 1173 5 2 0 0 BB PRT
## 1174 5 2 2 0 BB PRT
## 1175 6 2 0 0 BB PRT
## 1176 10 2 2 0 BB PRT
## 1177 10 2 0 0 BB PRT
## 1178 4 2 0 0 BB PRT
## 1179 4 2 0 0 BB PRT
## 1180 3 2 0 0 HB PRT
## 1181 4 3 0 0 HB PRT
## 1182 4 3 0 0 HB PRT
## 1183 5 2 0 0 BB PRT
## 1184 5 2 1 0 FB PRT
## 1185 5 2 0 0 HB GBR
## 1186 5 2 0 0 BB PRT
## 1187 5 2 1 0 BB PRT
## 1188 5 2 0 0 HB PRT
## 1189 5 2 0 0 BB IRL
## 1190 5 2 0 0 HB PRT
## 1191 5 1 0 0 HB PRT
## 1192 5 2 0 0 HB PRT
## 1193 5 2 0 0 HB PRT
## 1194 5 2 0 0 HB PRT
## 1195 5 2 0 1 BB PRT
## 1196 7 2 0 0 BB PRT
## 1197 3 2 0 0 HB PRT
## 1198 3 2 0 0 HB PRT
## 1199 1 2 0 0 BB PRT
## 1200 1 2 0 0 BB PRT
## 1201 3 2 0 0 BB PRT
## 1202 3 2 0 0 HB PRT
## 1203 5 2 0 0 HB PRT
## 1204 5 2 0 0 BB PRT
## 1205 5 2 2 0 HB PRT
## 1206 5 2 1 0 BB CN
## 1207 5 2 2 0 BB PRT
## 1208 5 2 0 0 BB PRT
## 1209 5 2 0 0 BB PRT
## 1210 5 2 0 0 BB PRT
## 1211 5 3 0 0 HB PRT
## 1212 5 2 2 0 BB GBR
## 1213 5 2 1 0 BB PRT
## 1214 8 2 0 0 BB IRL
## 1215 8 2 2 0 BB IRL
## 1216 0 3 0 0 HB PRT
## 1217 1 3 0 0 BB ESP
## 1218 4 2 0 0 HB ESP
## 1219 4 2 1 0 HB PRT
## 1220 4 2 0 0 BB IRL
## 1221 4 2 0 0 BB POL
## 1222 4 3 0 0 HB ESP
## 1223 5 1 0 0 HB PRT
## 1224 5 2 0 0 HB PRT
## 1225 4 2 0 0 BB PRT
## 1226 4 2 0 0 BB PRT
## 1227 5 2 0 0 HB PRT
## 1228 7 2 0 0 BB GBR
## 1229 7 2 0 0 HB PRT
## 1230 7 2 0 0 HB PRT
## 1231 0 2 0 0 BB PRT
## 1232 2 2 0 0 HB PRT
## 1233 0 2 0 0 BB PRT
## 1234 1 1 0 0 BB USA
## 1235 3 2 0 0 BB GBR
## 1236 4 3 1 0 HB MAR
## 1237 4 3 0 0 HB PRT
## 1238 5 2 0 0 BB PRT
## 1239 5 2 0 0 HB PRT
## 1240 7 2 0 0 BB RUS
## 1241 3 2 0 0 BB PRT
## 1242 2 2 0 0 BB GBR
## 1243 2 2 0 0 BB ESP
## 1244 2 2 0 0 BB ESP
## 1245 2 2 0 0 BB ESP
## 1246 2 2 0 0 BB PRT
## 1247 2 1 0 1 BB PRT
## 1248 2 2 0 0 BB PRT
## 1249 2 2 0 0 BB PRT
## 1250 3 2 0 0 BB IRL
## 1251 3 2 0 0 BB FRA
## 1252 3 2 0 0 BB FRA
## 1253 3 2 0 0 BB PRT
## 1254 4 2 0 0 HB ESP
## 1255 4 2 0 0 FB PRT
## 1256 4 2 0 0 BB PRT
## 1257 4 2 0 0 BB CHE
## 1258 4 3 0 0 HB ESP
## 1259 5 2 0 0 HB IRL
## 1260 5 2 0 0 BB PRT
## 1261 5 3 0 0 HB ESP
## 1262 5 2 0 0 HB ESP
## 1263 5 2 0 0 BB IRL
## 1264 7 2 0 0 BB PRT
## 1265 7 2 0 0 BB IRL
## 1266 7 2 0 0 BB IRL
## 1267 1 2 1 0 BB PRT
## 1268 1 2 0 0 BB PRT
## 1269 1 2 0 0 BB PRT
## 1270 4 2 0 0 HB PRT
## 1271 5 2 0 0 BB PRT
## 1272 5 2 0 0 HB PRT
## 1273 5 2 0 0 HB PRT
## 1274 5 2 0 0 BB PRT
## 1275 5 2 0 0 BB PRT
## 1276 5 2 0 0 HB ESP
## 1277 5 3 0 0 HB PRT
## 1278 5 2 0 0 HB PRT
## 1279 5 2 1 0 HB PRT
## 1280 5 2 0 0 BB PRT
## 1281 5 2 0 0 BB PRT
## 1282 5 2 0 0 HB PRT
## 1283 5 2 0 0 HB PRT
## 1284 5 2 0 0 HB PRT
## 1285 5 2 0 0 BB PRT
## 1286 6 2 1 0 HB PRT
## 1287 6 2 0 0 BB PRT
## 1288 6 2 0 0 BB PRT
## 1289 2 2 0 0 BB PRT
## 1290 2 2 0 0 HB PRT
## 1291 3 2 0 0 BB PRT
## 1292 3 2 1 0 BB PRT
## 1293 4 2 0 0 BB PRT
## 1294 4 2 1 0 HB PRT
## 1295 4 2 2 0 HB PRT
## 1296 1 2 0 0 HB ESP
## 1297 2 2 0 0 BB ESP
## 1298 2 2 0 0 BB PRT
## 1299 3 3 1 0 HB PRT
## 1300 3 2 0 0 BB PRT
## 1301 3 2 0 0 BB PRT
## 1302 3 2 0 0 BB ESP
## 1303 3 2 2 0 BB PRT
## 1304 3 3 1 0 BB PRT
## 1305 3 1 0 0 BB FRA
## 1306 4 2 0 0 HB PRT
## 1307 4 2 0 0 HB PRT
## 1308 5 2 0 0 HB IRL
## 1309 5 2 0 0 HB PRT
## 1310 5 2 0 0 BB PRT
## 1311 5 2 0 0 BB IRL
## 1312 5 2 0 1 HB PRT
## 1313 5 2 0 0 BB PRT
## 1314 4 2 0 0 BB PRT
## 1315 5 2 0 0 BB PRT
## 1316 6 1 0 0 BB PRT
## 1317 6 1 1 0 HB PRT
## 1318 10 2 2 0 BB GBR
## 1319 0 1 0 0 BB PRT
## 1320 0 2 0 0 BB PRT
## 1321 0 3 0 0 BB PRT
## 1322 0 2 0 0 BB PRT
## 1323 1 2 0 0 BB PRT
## 1324 1 2 0 0 BB ESP
## 1325 1 2 0 0 BB PRT
## 1326 1 2 0 0 BB PRT
## 1327 2 2 0 0 BB PRT
## 1328 2 2 0 0 BB PRT
## 1329 3 2 0 0 BB PRT
## 1330 3 2 0 0 BB POL
## 1331 4 3 0 0 HB PRT
## 1332 4 2 2 0 FB PRT
## 1333 4 2 0 1 BB PRT
## 1334 4 2 0 0 HB PRT
## 1335 4 1 1 0 BB PRT
## 1336 5 1 0 0 BB PRT
## 1337 6 1 0 0 BB PRT
## 1338 6 2 0 0 BB PRT
## 1339 7 2 0 0 BB GBR
## 1340 5 2 1 1 FB PRT
## 1341 5 3 0 0 BB PRT
## 1342 3 2 0 0 BB ROU
## 1343 3 2 0 0 BB PRT
## 1344 3 2 0 0 HB PRT
## 1345 5 2 0 1 HB PRT
## 1346 5 2 0 0 BB PRT
## 1347 5 2 0 0 BB PRT
## 1348 6 2 0 0 HB PRT
## 1349 6 1 0 0 BB PRT
## 1350 7 2 0 0 BB PRT
## 1351 7 2 0 0 HB PRT
## 1352 8 2 2 0 BB ROU
## 1353 1 2 0 0 BB PRT
## 1354 1 1 0 0 BB PRT
## 1355 0 2 0 0 BB PRT
## 1356 1 2 2 0 BB ESP
## 1357 1 2 0 0 BB PRT
## 1358 1 2 0 0 BB PRT
## 1359 1 2 0 0 BB PRT
## 1360 4 2 0 0 BB IRL
## 1361 4 2 0 0 BB PRT
## 1362 4 2 0 0 BB PRT
## 1363 4 2 0 0 BB PRT
## 1364 4 2 0 0 BB PRT
## 1365 7 2 2 0 BB PRT
## 1366 9 2 0 0 BB PRT
## 1367 1 2 0 0 BB PRT
## 1368 1 2 0 0 BB PRT
## 1369 2 2 0 0 BB PRT
## 1370 3 2 0 0 BB IRL
## 1371 3 2 0 1 HB PRT
## 1372 3 2 0 1 HB PRT
## 1373 3 2 0 0 BB PRT
## 1374 3 2 0 0 BB PRT
## 1375 3 2 0 0 BB ESP
## 1376 3 2 0 1 HB PRT
## 1377 3 2 0 0 HB PRT
## 1378 3 2 0 0 HB PRT
## 1379 4 2 0 0 BB ESP
## 1380 4 2 0 0 BB NLD
## 1381 5 2 0 0 BB PRT
## 1382 5 2 0 0 BB IRL
## 1383 5 2 0 0 BB PRT
## 1384 5 2 0 0 BB PRT
## 1385 5 2 0 0 BB IRL
## 1386 5 2 1 0 BB GBR
## 1387 5 2 0 0 BB PRT
## 1388 1 2 0 0 BB ESP
## 1389 1 2 0 0 BB PRT
## 1390 1 2 0 0 BB PRT
## 1391 1 2 1 0 BB PRT
## 1392 2 2 0 0 BB PRT
## 1393 2 2 0 0 BB PRT
## 1394 2 3 0 0 BB BRA
## 1395 2 2 0 0 BB PRT
## 1396 2 2 0 0 BB PRT
## 1397 2 2 1 0 HB PRT
## 1398 2 2 0 0 FB ESP
## 1399 2 2 2 0 BB BRA
## 1400 2 2 0 0 BB MAR
## 1401 2 2 2 0 BB PRT
## 1402 2 2 0 0 HB PRT
## 1403 2 2 0 0 HB PRT
## 1404 2 2 0 0 BB PRT
## 1405 2 2 0 0 BB PRT
## 1406 2 2 1 0 BB PRT
## 1407 2 2 0 0 BB CN
## 1408 2 2 0 0 BB PRT
## 1409 1 2 0 0 BB PRT
## 1410 2 2 0 1 BB PRT
## 1411 2 2 0 0 HB PRT
## 1412 2 2 0 0 FB FRA
## 1413 2 2 0 0 BB PRT
## 1414 3 2 0 0 BB RUS
## 1415 3 2 0 0 BB PRT
## 1416 4 2 0 0 BB PRT
## 1417 4 2 1 0 HB PRT
## 1418 4 2 0 0 BB IRL
## 1419 4 2 2 0 BB PRT
## 1420 4 2 0 0 HB PRT
## 1421 5 2 0 0 BB ROU
## 1422 5 2 0 0 HB ESP
## 1423 5 2 0 0 BB GBR
## 1424 3 2 0 0 BB PRT
## 1425 5 2 2 0 BB PRT
## 1426 5 2 0 0 BB GBR
## 1427 7 2 0 0 BB PRT
## 1428 3 2 0 0 BB PRT
## 1429 1 2 0 0 BB PRT
## 1430 1 2 0 0 BB ESP
## 1431 1 2 0 0 BB PRT
## 1432 1 1 0 0 BB BRA
## 1433 1 2 0 0 BB PRT
## 1434 1 2 0 0 HB PRT
## 1435 2 2 0 0 HB PRT
## 1436 2 2 0 0 BB PRT
## 1437 3 2 0 0 BB PRT
## 1438 3 2 0 0 HB PRT
## 1439 3 2 0 0 HB PRT
## 1440 3 2 0 0 BB PRT
## 1441 4 3 0 0 BB PRT
## 1442 4 2 0 0 BB PRT
## 1443 5 2 0 0 BB PRT
## 1444 6 2 0 0 BB PRT
## 1445 5 2 0 0 BB PRT
## 1446 0 2 0 0 BB PRT
## 1447 0 2 0 1 BB PRT
## 1448 0 2 0 0 BB PRT
## 1449 1 2 0 0 BB PRT
## 1450 1 2 0 0 HB NLD
## 1451 1 2 0 0 BB GBR
## 1452 2 2 0 0 BB GBR
## 1453 2 2 0 0 BB GBR
## 1454 3 2 0 0 BB IRL
## 1455 4 2 0 0 BB ROU
## 1456 4 2 0 0 BB ROU
## 1457 4 2 0 0 HB PRT
## 1458 5 2 2 0 BB PRT
## 1459 5 1 0 0 BB PRT
## 1460 5 2 0 0 HB PRT
## 1461 5 2 0 0 HB PRT
## 1462 5 2 0 0 BB FRA
## 1463 5 2 0 0 HB PRT
## 1464 8 2 0 0 BB PRT
## 1465 0 2 0 0 BB SWE
## 1466 1 3 0 0 BB PRT
## 1467 1 2 0 0 HB ITA
## 1468 1 1 0 0 BB BEL
## 1469 2 2 0 0 BB ESP
## 1470 2 2 0 0 BB FRA
## 1471 2 2 0 0 BB PRT
## 1472 2 2 0 0 BB SVN
## 1473 2 2 0 0 BB PRT
## 1474 2 2 1 0 BB PRT
## 1475 2 2 0 0 BB ESP
## 1476 2 2 0 1 BB ESP
## 1477 3 2 2 0 HB PRT
## 1478 3 2 0 0 BB PRT
## 1479 3 2 0 0 HB PRT
## 1480 4 2 0 0 BB PRT
## 1481 5 2 0 0 BB PRT
## 1482 5 2 0 0 BB PRT
## 1483 5 2 0 0 BB NLD
## 1484 7 2 0 0 BB IRL
## 1485 8 2 0 0 BB IRL
## 1486 2 2 1 1 BB PRT
## 1487 2 2 0 0 BB PRT
## 1488 3 2 0 0 HB PRT
## 1489 3 2 0 0 HB ESP
## 1490 3 2 1 0 HB PRT
## 1491 3 2 0 0 HB PRT
## 1492 4 2 0 0 BB PRT
## 1493 4 2 0 0 BB PRT
## 1494 4 2 2 0 BB PRT
## 1495 4 2 0 0 HB PRT
## 1496 4 2 0 0 BB PRT
## 1497 4 2 0 0 FB PRT
## 1498 5 2 0 0 HB PRT
## 1499 2 2 0 0 BB PRT
## 1500 2 2 0 0 BB PRT
## 1501 5 2 0 0 BB PRT
## 1502 5 2 0 0 HB PRT
## 1503 5 2 0 0 BB PRT
## 1504 5 1 0 0 BB PRT
## 1505 5 2 0 0 BB ESP
## 1506 5 2 0 0 BB PRT
## 1507 5 1 0 0 BB GBR
## 1508 5 2 0 0 BB PRT
## 1509 5 2 0 0 BB PRT
## 1510 5 2 0 0 BB GBR
## 1511 6 2 0 0 BB PRT
## 1512 6 2 2 0 BB ESP
## 1513 6 2 0 0 BB ESP
## 1514 6 2 0 0 HB PRT
## 1515 8 2 0 0 HB PRT
## 1516 10 2 0 0 BB UKR
## 1517 10 2 0 0 BB GBR
## 1518 1 1 0 0 BB PRT
## 1519 2 2 0 0 HB PRT
## 1520 2 2 0 0 BB PRT
## 1521 2 2 0 0 HB PRT
## 1522 4 2 0 0 BB USA
## 1523 4 2 0 0 BB GBR
## 1524 4 2 0 0 BB GBR
## 1525 5 3 0 0 HB PRT
## 1526 5 2 0 0 BB IRL
## 1527 5 2 2 0 BB PRT
## 1528 6 2 2 0 BB PRT
## 1529 2 2 0 0 BB ESP
## 1530 3 2 0 0 BB PRT
## 1531 3 2 0 0 BB ITA
## 1532 3 2 0 0 BB SMR
## 1533 1 2 0 0 BB ESP
## 1534 3 2 0 0 BB ITA
## 1535 3 2 1 0 HB PRT
## 1536 3 1 0 0 BB ITA
## 1537 3 2 0 0 BB ITA
## 1538 3 2 0 0 BB PRT
## 1539 3 2 0 0 BB FRA
## 1540 3 40 0 0 BB PRT
## 1541 3 2 0 0 BB PRT
## 1542 3 2 0 0 HB PRT
## 1543 3 2 0 0 BB ESP
## 1544 3 2 1 0 BB PRT
## 1545 3 2 0 0 BB IRL
## 1546 3 2 0 0 BB PRT
## 1547 7 2 0 0 BB PRT
## 1548 7 2 0 0 BB ESP
## 1549 7 2 1 0 HB PRT
## 1550 8 2 0 0 BB GBR
## 1551 8 2 0 0 BB IRL
## 1552 5 2 0 0 BB GBR
## 1553 5 2 0 0 BB ESP
## 1554 8 2 2 0 BB PRT
## 1555 10 2 0 0 BB GBR
## 1556 1 2 0 0 BB ITA
## 1557 1 2 0 0 BB PRT
## 1558 1 2 0 0 BB FRA
## 1559 1 2 0 0 BB ESP
## 1560 2 3 0 0 BB IRL
## 1561 2 2 0 0 HB ESP
## 1562 2 2 0 0 BB PRT
## 1563 2 2 0 0 BB ESP
## 1564 2 2 0 0 BB PRT
## 1565 2 2 0 0 BB PRT
## 1566 2 2 0 0 BB PRT
## 1567 2 1 0 0 BB PRT
## 1568 2 2 0 0 HB PRT
## 1569 2 2 0 0 BB DEU
## 1570 2 2 0 0 BB ESP
## 1571 2 1 0 0 BB PRT
## 1572 2 3 0 0 BB PRT
## 1573 2 2 0 0 HB PRT
## 1574 3 2 0 0 BB ESP
## 1575 3 2 0 0 BB CHE
## 1576 6 2 0 0 BB PRT
## 1577 7 2 2 0 BB GBR
## 1578 7 2 0 0 HB ESP
## 1579 7 2 0 0 HB CHE
## 1580 4 2 0 0 BB PRT
## 1581 5 2 0 0 BB GBR
## 1582 1 2 0 0 FB PRT
## 1583 1 1 2 0 BB PRT
## 1584 4 2 0 0 BB PRT
## 1585 4 2 0 0 FB PRT
## 1586 4 2 0 0 FB PRT
## 1587 4 2 0 0 HB PRT
## 1588 5 26 0 0 BB PRT
## 1589 5 2 0 0 BB GBR
## 1590 1 2 0 0 BB USA
## 1591 2 2 0 0 BB PRT
## 1592 5 2 1 0 HB PRT
## 1593 5 2 0 0 BB CN
## 1594 5 2 0 0 BB PRT
## 1595 5 2 0 0 HB GBR
## 1596 5 2 0 0 BB GBR
## 1597 5 2 0 0 BB PRT
## 1598 5 2 0 0 BB PRT
## 1599 5 2 0 0 FB ESP
## 1600 5 2 0 0 BB GBR
## 1601 5 2 0 0 BB PRT
## 1602 6 2 2 0 BB PRT
## 1603 6 2 0 0 BB PRT
## 1604 6 2 2 0 HB PRT
## 1605 6 2 0 0 BB PRT
## 1606 6 2 0 0 BB PRT
## 1607 6 2 0 0 BB SWE
## 1608 10 2 0 0 BB DEU
## 1609 10 2 0 0 BB GBR
## 1610 0 1 2 0 BB PRT
## 1611 0 2 0 0 HB PRT
## 1612 0 2 0 0 BB PRT
## 1613 1 2 0 0 BB PRT
## 1614 2 2 0 0 BB ESP
## 1615 0 2 0 0 HB PRT
## 1616 0 2 0 0 BB PRT
## 1617 3 2 0 0 BB PRT
## 1618 3 2 0 0 BB PRT
## 1619 3 2 0 1 BB PRT
## 1620 3 2 0 0 BB PRT
## 1621 3 2 0 0 BB ESP
## 1622 3 1 0 0 BB PRT
## 1623 4 2 0 0 BB ESP
## 1624 4 2 0 0 BB PRT
## 1625 4 2 0 0 BB PRT
## 1626 4 2 0 0 BB PRT
## 1627 4 3 0 0 BB ESP
## 1628 4 2 0 0 BB GBR
## 1629 5 2 0 0 BB IRL
## 1630 5 2 0 0 HB GBR
## 1631 5 3 0 0 HB PRT
## 1632 5 2 0 0 BB PRT
## 1633 5 2 0 0 BB PRT
## 1634 5 2 0 1 BB PRT
## 1635 5 2 0 0 HB PRT
## 1636 5 2 0 0 HB GBR
## 1637 5 2 0 0 BB IRL
## 1638 5 2 0 0 BB PRT
## 1639 6 2 0 0 BB GBR
## 1640 5 1 0 0 HB PRT
## 1641 6 2 0 0 HB DEU
## 1642 7 2 2 0 BB IRL
## 1643 10 2 0 0 BB GBR
## 1644 2 50 0 0 BB PRT
## 1645 3 2 0 0 BB ESP
## 1646 3 2 0 0 HB PRT
## 1647 4 2 0 0 HB PRT
## 1648 4 2 0 0 BB PRT
## 1649 4 2 0 0 BB PRT
## 1650 4 2 0 1 HB PRT
## 1651 5 2 0 0 BB IRL
## 1652 5 2 0 0 BB PRT
## 1653 5 2 0 0 BB PRT
## 1654 5 1 0 0 BB PRT
## 1655 5 2 0 0 BB PRT
## 1656 33 2 0 0 SC ESP
## 1657 7 2 0 0 BB PRT
## 1658 7 2 0 0 HB GBR
## 1659 2 2 0 0 BB PRT
## 1660 3 2 0 0 BB PRT
## 1661 3 2 0 0 BB PRT
## 1662 3 2 0 0 BB PRT
## 1663 4 2 0 0 BB PRT
## 1664 4 2 0 0 BB PRT
## 1665 4 2 0 0 BB PRT
## 1666 4 2 0 0 BB PRT
## 1667 5 2 0 0 HB GBR
## 1668 5 2 0 0 HB GBR
## 1669 5 2 0 0 HB GBR
## 1670 6 2 0 0 BB GBR
## 1671 10 2 0 0 BB PRT
## 1672 5 2 0 0 BB PRT
## 1673 10 2 0 0 BB GBR
## 1674 1 1 0 0 BB PRT
## 1675 1 2 0 0 BB ESP
## 1676 1 1 0 0 BB PRT
## 1677 1 2 0 0 BB CHE
## 1678 1 2 0 0 BB PRT
## 1679 2 2 0 0 BB PRT
## 1680 2 2 0 0 BB ESP
## 1681 3 2 0 0 BB PRT
## 1682 1 1 0 0 BB PRT
## 1683 3 1 0 0 BB PRT
## 1684 4 2 0 0 BB PRT
## 1685 4 1 0 0 BB LVA
## 1686 4 1 0 0 BB LVA
## 1687 5 2 0 0 BB GBR
## 1688 5 2 0 0 HB DEU
## 1689 7 2 0 1 BB PRT
## 1690 7 2 0 0 BB PRT
## 1691 7 2 0 0 BB PRT
## 1692 4 1 0 0 BB RUS
## 1693 4 2 0 0 HB GBR
## 1694 3 2 0 0 BB BEL
## 1695 3 2 0 0 BB PRT
## 1696 3 2 0 0 BB GBR
## 1697 3 2 0 0 BB PRT
## 1698 3 2 0 0 BB PRT
## 1699 3 2 0 0 BB PRT
## 1700 3 2 0 0 BB PRT
## 1701 3 2 0 0 BB RUS
## 1702 3 2 0 0 HB GBR
## 1703 5 2 0 0 BB IRL
## 1704 5 2 0 0 BB PRT
## 1705 1 2 0 0 BB GBR
## 1706 1 1 0 0 BB PRT
## 1707 2 3 0 0 BB PRT
## 1708 2 2 0 0 BB PRT
## 1709 2 2 0 1 BB PRI
## 1710 3 2 2 0 BB PRT
## 1711 5 2 1 0 HB SRB
## 1712 5 2 0 0 BB PRT
## 1713 5 2 0 0 HB DEU
## 1714 5 2 0 0 HB GBR
## 1715 5 2 0 0 BB GBR
## 1716 5 2 0 0 BB GBR
## 1717 7 2 0 0 HB GBR
## 1718 3 1 0 0 BB PRT
## 1719 3 2 0 0 BB PRT
## 1720 8 2 0 0 BB FRA
## 1721 8 2 0 0 BB GBR
## 1722 10 2 0 0 BB IRL
## 1723 1 1 0 0 BB SWE
## 1724 1 2 0 0 BB FRA
## 1725 1 2 0 0 BB DEU
## 1726 1 2 0 0 BB ESP
## 1727 1 2 0 0 BB POL
## 1728 1 1 0 0 BB GBR
## 1729 2 2 0 0 BB PRT
## 1730 2 2 0 0 BB ESP
## 1731 2 2 0 0 BB FRA
## 1732 2 2 0 0 BB PRT
## 1733 2 3 0 0 BB GBR
## 1734 2 2 2 0 BB BRA
## 1735 2 2 0 0 BB PRT
## 1736 3 2 0 0 BB FRA
## 1737 5 2 0 0 BB GBR
## 1738 5 2 0 0 BB PRT
## 1739 5 2 0 0 BB GBR
## 1740 5 2 0 0 HB PRT
## 1741 7 2 0 0 BB GBR
## 1742 1 1 0 0 BB PRT
## 1743 1 2 2 0 BB PRT
## 1744 2 2 0 0 BB ESP
## 1745 2 2 0 0 BB PRT
## 1746 2 1 0 0 BB PRT
## 1747 4 2 0 0 BB BRA
## 1748 4 2 0 0 HB PRT
## 1749 4 2 0 0 BB PRT
## 1750 5 1 0 0 HB DEU
## 1751 5 2 0 0 BB PRT
## 1752 5 2 0 0 BB GBR
## 1753 5 26 0 0 BB PRT
## 1754 5 2 0 0 BB IRL
## 1755 12 2 0 0 HB SWE
## 1756 5 2 0 0 BB DEU
## 1757 0 2 0 0 BB IRL
## 1758 0 2 0 0 BB PRT
## 1759 1 2 0 0 BB PRT
## 1760 2 2 0 0 HB DEU
## 1761 2 2 0 0 BB PRT
## 1762 2 2 0 0 BB PRT
## 1763 2 2 0 0 BB ESP
## 1764 2 2 0 0 BB PRT
## 1765 3 2 0 0 BB PRT
## 1766 3 2 0 0 BB PRT
## 1767 3 2 0 0 BB PRT
## 1768 3 2 0 0 BB PRT
## 1769 4 2 0 0 BB ESP
## 1770 5 2 0 0 BB GBR
## 1771 5 2 0 0 BB GBR
## 1772 5 2 0 0 BB IRL
## 1773 7 2 0 0 BB IRL
## 1774 8 2 0 1 BB PRT
## 1775 8 2 0 0 BB GBR
## 1776 10 2 0 0 BB PRT
## 1777 10 2 0 0 BB GBR
## 1778 1 1 0 0 BB NLD
## 1779 2 2 0 0 BB GBR
## 1780 2 2 0 0 BB PRT
## 1781 4 2 0 0 BB PRT
## 1782 4 2 0 0 HB PRT
## 1783 4 2 0 0 HB PRT
## 1784 4 2 0 0 BB PRT
## 1785 4 2 0 0 HB PRT
## 1786 5 2 0 0 BB GBR
## 1787 5 2 0 0 BB GBR
## 1788 5 2 0 0 BB PRT
## 1789 5 2 0 0 BB IRL
## 1790 10 2 0 0 HB NLD
## 1791 20 2 0 0 HB GBR
## 1792 2 2 2 0 BB IND
## 1793 1 2 0 0 BB PRT
## 1794 4 1 0 0 BB PRT
## 1795 4 2 0 0 BB PRT
## 1796 5 2 0 0 BB IRL
## 1797 5 2 0 0 BB PRT
## 1798 5 2 0 0 BB POL
## 1799 5 2 0 0 BB PRT
## 1800 5 2 0 0 BB PRT
## 1801 5 2 0 0 BB PRT
## 1802 7 2 0 0 BB GBR
## 1803 10 2 0 0 BB PRT
## 1804 11 2 0 0 BB PRT
## 1805 10 2 0 0 BB GBR
## 1806 1 2 0 0 BB FRA
## 1807 1 2 0 0 BB NLD
## 1808 1 2 0 0 BB BEL
## 1809 1 2 0 0 BB ESP
## 1810 1 2 0 0 BB CHE
## 1811 1 2 0 0 BB PRT
## 1812 1 1 0 0 BB PRT
## 1813 1 1 0 0 BB ESP
## 1814 2 1 0 0 BB PRT
## 1815 2 2 0 0 BB FRA
## 1816 3 2 0 0 BB ESP
## 1817 3 2 2 0 BB PRT
## 1818 3 2 0 0 HB PRT
## 1819 3 2 2 0 BB FRA
## 1820 3 2 0 0 BB ESP
## 1821 3 2 0 0 BB PRT
## 1822 4 2 0 0 BB PRT
## 1823 4 2 0 0 BB PRT
## 1824 4 2 0 0 BB CHL
## 1825 4 2 0 0 BB ESP
## 1826 4 2 0 0 BB RUS
## 1827 5 2 0 0 HB GBR
## 1828 5 2 0 0 BB IRL
## 1829 4 2 0 0 BB PRT
## 1830 5 2 0 0 BB IRL
## 1831 10 2 0 0 BB PRT
## 1832 5 2 0 0 BB PRT
## 1833 5 2 0 0 BB PRT
## 1834 1 2 0 0 BB ESP
## 1835 2 2 0 0 BB BRA
## 1836 0 2 0 0 BB PRT
## 1837 1 2 0 0 BB EST
## 1838 1 2 0 0 BB PRT
## 1839 2 2 0 0 BB PRT
## 1840 3 1 0 0 BB NLD
## 1841 3 1 0 0 BB NLD
## 1842 3 1 0 0 BB NLD
## 1843 3 1 0 0 BB NLD
## 1844 3 1 0 0 BB NLD
## 1845 3 2 0 0 BB GBR
## 1846 3 2 0 0 BB PRT
## 1847 3 2 0 0 BB PRT
## 1848 3 1 0 0 BB NLD
## 1849 3 1 0 0 BB NLD
## 1850 5 2 0 0 BB PRT
## 1851 5 2 0 0 BB GBR
## 1852 5 2 0 0 BB PRT
## 1853 5 2 0 0 BB GBR
## 1854 5 2 0 0 BB CHN
## 1855 5 2 0 0 BB GBR
## 1856 10 2 0 0 BB GBR
## 1857 10 2 0 0 BB GBR
## 1858 2 2 0 0 BB PRT
## 1859 2 2 0 0 BB PRT
## 1860 2 2 0 0 BB ESP
## 1861 2 2 0 0 BB PRT
## 1862 2 2 0 0 BB CHE
## 1863 2 2 0 0 BB GBR
## 1864 2 2 0 0 BB PRT
## 1865 2 2 0 0 BB PRT
## 1866 3 2 0 1 HB ESP
## 1867 4 2 0 0 BB PRT
## 1868 5 2 0 0 BB NLD
## 1869 5 2 0 0 HB LVA
## 1870 7 2 0 0 BB PRT
## 1871 7 2 0 0 BB GBR
## 1872 1 1 0 0 HB FRA
## 1873 2 2 0 0 BB PRT
## 1874 2 2 0 0 BB ITA
## 1875 2 2 0 0 HB PRT
## 1876 3 2 0 0 BB PRT
## 1877 3 2 0 0 BB GBR
## 1878 3 2 0 0 BB PRT
## 1879 3 2 0 0 HB PRT
## 1880 5 2 0 0 BB IRL
## 1881 5 2 0 0 HB GBR
## 1882 5 2 0 0 BB GBR
## 1883 5 3 0 0 BB GBR
## 1884 5 2 0 0 HB GBR
## 1885 5 26 0 0 BB PRT
## 1886 5 2 0 0 BB PRT
## 1887 5 2 0 0 BB GBR
## 1888 6 2 0 0 BB IRL
## 1889 6 2 0 0 HB GBR
## 1890 6 2 0 0 BB IRL
## 1891 10 2 2 0 BB PRT
## 1892 2 2 0 0 BB PRT
## 1893 2 2 0 0 BB IRL
## 1894 4 2 2 0 HB PRT
## 1895 5 2 0 0 HB ESP
## 1896 5 2 0 0 BB PRT
## 1897 5 2 0 0 BB GBR
## 1898 5 2 0 0 BB IRL
## 1899 5 2 0 0 BB PRT
## 1900 5 2 0 0 BB GBR
## 1901 6 3 0 0 BB PRT
## 1902 7 2 0 0 BB GBR
## 1903 7 2 0 0 HB GBR
## 1904 7 2 0 0 BB GBR
## 1905 1 2 0 0 HB PRT
## 1906 1 1 0 0 HB PRT
## 1907 1 1 0 0 HB PRT
## 1908 1 2 0 0 BB PRT
## 1909 1 2 0 0 HB PRT
## 1910 1 2 0 0 HB PRT
## 1911 1 2 0 0 HB PRT
## 1912 1 2 0 0 HB PRT
## 1913 1 2 0 0 BB PRT
## 1914 1 2 0 0 HB PRT
## 1915 1 2 0 0 HB FRA
## 1916 2 2 0 0 BB IRL
## 1917 2 2 0 0 BB NLD
## 1918 3 27 0 0 HB PRT
## 1919 4 1 0 0 BB PRT
## 1920 5 2 0 0 BB PRT
## 1921 5 2 0 0 BB GBR
## 1922 5 2 0 0 BB CN
## 1923 5 2 0 0 BB GBR
## 1924 5 2 0 0 BB GBR
## 1925 5 2 0 0 BB FRA
## 1926 5 2 0 0 HB GBR
## 1927 6 2 0 0 BB GBR
## 1928 7 2 0 0 HB GBR
## 1929 7 2 0 0 HB GBR
## 1930 7 2 0 0 BB PRT
## 1931 8 2 0 0 BB NLD
## 1932 2 2 0 0 BB BRA
## 1933 4 2 0 0 BB PRT
## 1934 5 2 0 0 BB PRT
## 1935 5 2 0 0 BB PRT
## 1936 5 2 0 0 BB IRL
## 1937 5 2 0 0 BB NLD
## 1938 5 2 0 0 BB IRL
## 1939 5 2 0 0 BB IRL
## 1940 3 2 0 0 BB DEU
## 1941 6 2 0 0 BB GBR
## 1942 8 2 0 0 BB IRL
## 1943 1 2 0 0 HB DEU
## 1944 1 2 0 0 BB PRT
## 1945 1 2 0 0 HB DEU
## 1946 1 2 0 0 BB PRT
## 1947 1 2 0 0 BB PRT
## 1948 2 2 0 0 BB POL
## 1949 2 2 0 0 BB USA
## 1950 2 1 0 0 BB PRT
## 1951 2 1 0 0 BB PRT
## 1952 4 2 0 0 BB ITA
## 1953 4 2 0 0 BB PRT
## 1954 4 2 0 0 BB PRT
## 1955 5 2 0 0 BB IRL
## 1956 6 3 0 0 BB IRL
## 1957 7 2 0 0 BB POL
## 1958 3 2 0 0 BB PRT
## 1959 2 2 0 0 BB GBR
## 1960 2 2 0 0 BB ESP
## 1961 3 2 0 0 BB FRA
## 1962 1 2 0 0 HB PRT
## 1963 3 27 0 0 HB PRT
## 1964 3 2 0 0 BB ITA
## 1965 3 2 0 0 BB PRT
## 1966 5 2 0 0 BB GBR
## 1967 5 2 0 0 BB IRL
## 1968 8 2 0 0 BB GBR
## 1969 10 2 0 0 BB GBR
## 1970 1 3 0 0 BB PRT
## 1971 1 2 0 0 BB PRT
## 1972 1 1 0 0 SC PRT
## 1973 1 2 2 0 BB PRT
## 1974 1 1 0 0 SC PRT
## 1975 1 2 0 0 BB ESP
## 1976 2 2 0 0 BB ESP
## 1977 2 2 0 0 HB ESP
## 1978 2 2 0 0 BB PRT
## 1979 2 2 0 0 BB PRT
## 1980 2 2 0 0 HB ESP
## 1981 3 2 0 0 BB PRT
## 1982 3 2 0 0 BB IRL
## 1983 3 2 0 0 BB IRL
## 1984 4 2 0 0 HB PRT
## 1985 5 2 0 0 BB PRT
## 1986 5 2 0 0 BB GBR
## 1987 5 2 0 0 BB IRL
## 1988 5 2 0 0 BB GBR
## 1989 6 2 0 0 BB GBR
## 1990 5 2 0 0 BB PRT
## 1991 1 2 0 0 BB PRT
## 1992 1 2 0 0 BB ESP
## 1993 1 2 0 0 BB PRT
## 1994 1 2 1 0 BB PRT
## 1995 1 2 0 0 BB GBR
## 1996 1 2 0 0 BB PRT
## 1997 1 2 0 0 HB PRT
## 1998 1 2 0 0 BB PRT
## 1999 1 2 0 0 BB PRT
## 2000 1 2 0 0 BB PRT
## 2001 1 2 0 0 BB GBR
## 2002 3 2 0 0 BB NLD
## 2003 4 2 0 0 BB IRL
## 2004 5 26 0 0 BB PRT
## 2005 5 2 0 0 BB PRT
## 2006 5 2 0 0 BB CN
## 2007 5 2 0 0 BB GBR
## 2008 6 2 0 0 BB PRT
## 2009 2 2 0 0 BB CN
## 2010 0 2 0 0 BB DEU
## 2011 0 2 0 0 BB DEU
## 2012 1 2 0 0 BB PRT
## 2013 3 2 0 0 BB GBR
## 2014 5 2 0 0 BB GBR
## 2015 5 2 0 0 HB GBR
## 2016 5 2 0 0 BB GBR
## 2017 5 2 0 0 BB GBR
## 2018 5 2 0 0 BB PRT
## 2019 5 2 0 0 HB IRL
## 2020 5 2 0 0 BB PRT
## 2021 5 2 0 0 BB GBR
## 2022 5 2 0 0 HB IRL
## 2023 5 2 0 0 BB PRT
## 2024 6 2 0 0 HB IRL
## 2025 8 2 0 0 BB IRL
## 2026 10 1 0 0 HB GBR
## 2027 0 1 0 0 BB GBR
## 2028 1 2 0 0 BB FRA
## 2029 3 2 0 0 BB PRT
## 2030 3 2 0 0 BB PRT
## 2031 3 1 0 0 BB LVA
## 2032 3 2 0 0 BB PRT
## 2033 3 2 0 0 BB PRT
## 2034 3 2 0 0 BB GBR
## 2035 3 2 0 0 BB PRT
## 2036 3 1 0 0 BB PRT
## 2037 3 2 0 0 BB PRT
## 2038 3 2 0 0 HB PRT
## 2039 5 2 0 0 HB PRT
## 2040 5 2 0 0 HB GBR
## 2041 5 2 0 0 HB POL
## 2042 5 2 0 0 HB AUT
## 2043 5 2 0 0 BB ESP
## 2044 4 2 0 0 BB PRT
## 2045 9 2 0 0 BB POL
## 2046 5 1 0 0 BB PRT
## 2047 5 2 0 0 BB PRT
## 2048 5 1 0 0 HB PRT
## 2049 5 2 0 0 BB IRL
## 2050 5 2 0 0 BB IRL
## 2051 4 2 0 0 BB GBR
## 2052 5 2 0 0 FB PRT
## 2053 5 2 0 0 BB IRL
## 2054 5 1 0 0 HB PRT
## 2055 5 2 0 0 BB GBR
## 2056 6 2 0 0 BB PRT
## 2057 6 2 0 0 BB IRL
## 2058 6 2 0 0 BB PRT
## 2059 7 2 0 0 BB IRL
## 2060 10 2 0 0 HB BLR
## 2061 1 2 0 0 BB PRT
## 2062 1 1 1 0 BB PRT
## 2063 1 2 0 0 BB DEU
## 2064 2 2 0 0 BB PRT
## 2065 3 1 0 0 HB FRA
## 2066 3 1 0 0 HB FRA
## 2067 3 2 0 0 HB FRA
## 2068 3 2 0 0 BB LTU
## 2069 3 1 0 0 HB FRA
## 2070 3 1 0 0 HB FRA
## 2071 3 2 0 0 HB FRA
## 2072 3 2 0 0 HB FRA
## 2073 3 1 0 0 HB PRT
## 2074 3 1 0 0 HB PRT
## 2075 4 2 0 0 BB PRT
## 2076 4 2 0 0 BB PRT
## 2077 4 2 0 1 HB PRT
## 2078 5 2 0 0 BB FRA
## 2079 5 2 0 0 HB GBR
## 2080 5 2 0 0 BB IRL
## 2081 5 2 0 0 BB PRT
## 2082 5 2 0 0 BB DEU
## 2083 5 2 0 0 BB ROU
## 2084 5 2 0 0 BB PRT
## 2085 5 2 0 0 BB GBR
## 2086 5 2 0 0 BB PRT
## 2087 10 1 0 0 BB GBR
## 2088 1 3 0 0 BB LUX
## 2089 2 2 0 0 BB PRT
## 2090 3 2 1 0 HB PRT
## 2091 3 2 0 0 BB FRA
## 2092 3 1 0 0 BB NLD
## 2093 3 1 0 0 BB FRA
## 2094 3 2 0 0 BB FRA
## 2095 3 2 0 0 BB FRA
## 2096 3 2 0 0 BB FRA
## 2097 3 2 0 0 BB IRL
## 2098 3 2 0 0 HB BEL
## 2099 3 1 1 0 BB PRT
## 2100 5 2 0 0 HB GBR
## 2101 5 2 0 0 BB ESP
## 2102 5 2 0 0 HB GBR
## 2103 5 1 0 0 BB PRT
## 2104 5 2 0 0 HB GBR
## 2105 5 2 0 0 BB GBR
## 2106 5 2 0 0 BB IRL
## 2107 5 2 0 0 BB GBR
## 2108 5 2 0 0 HB GBR
## 2109 5 2 0 0 BB IRL
## 2110 5 2 0 0 BB PRT
## 2111 5 2 0 0 BB GBR
## 2112 2 2 0 0 BB ARG
## 2113 2 2 0 0 BB PRT
## 2114 2 2 0 0 BB ARG
## 2115 2 2 0 0 BB ESP
## 2116 2 2 1 0 BB PRT
## 2117 2 2 2 0 BB PRT
## 2118 2 2 0 0 BB IRL
## 2119 2 2 0 0 BB IRL
## 2120 3 2 2 0 BB IRL
## 2121 5 2 0 0 BB LVA
## 2122 5 1 0 0 HB NLD
## 2123 5 2 0 0 BB IRL
## 2124 5 2 0 0 BB LVA
## 2125 5 2 0 0 BB NLD
## 2126 5 2 0 0 BB NLD
## 2127 5 2 0 0 BB PRT
## 2128 5 1 0 0 HB GBR
## 2129 5 2 0 0 HB IRL
## 2130 6 2 0 0 BB NLD
## 2131 6 2 0 0 BB LUX
## 2132 6 2 0 0 BB NLD
## 2133 1 1 0 0 BB AUT
## 2134 1 2 0 0 BB PRT
## 2135 1 2 0 0 BB PRT
## 2136 1 2 0 0 BB PRT
## 2137 1 2 0 0 BB PRT
## 2138 1 1 0 0 BB GBR
## 2139 1 1 0 0 BB DEU
## 2140 1 2 0 0 BB PRT
## 2141 1 2 0 0 BB PRT
## 2142 1 2 0 0 BB PRT
## 2143 1 2 0 0 BB PRT
## 2144 1 2 0 0 BB PRT
## 2145 1 2 0 0 BB PRT
## 2146 2 1 0 0 BB GBR
## 2147 2 1 0 0 BB GBR
## 2148 2 1 0 0 BB GBR
## 2149 2 2 0 0 HB IRL
## 2150 2 1 0 0 BB OMN
## 2151 2 1 0 0 BB PRT
## 2152 2 1 0 0 BB GBR
## 2153 2 2 0 0 BB IRL
## 2154 3 2 0 0 BB PRT
## 2155 5 2 0 0 BB BEL
## 2156 1 2 0 0 BB ESP
## 2157 1 2 0 0 HB PRT
## 2158 2 2 0 0 BB PRT
## 2159 5 2 0 0 BB DEU
## 2160 5 2 0 0 BB PRT
## 2161 5 2 0 0 BB GBR
## 2162 5 2 0 0 BB GBR
## 2163 5 2 0 0 BB GBR
## 2164 5 2 0 0 BB IRL
## 2165 5 26 0 0 BB PRT
## 2166 5 2 0 0 BB GBR
## 2167 5 2 0 0 BB PRT
## 2168 5 2 0 0 BB GBR
## 2169 5 2 0 0 BB IRL
## 2170 5 2 0 0 BB FRA
## 2171 0 2 0 0 HB DEU
## 2172 0 1 0 0 BB PRT
## 2173 0 2 0 0 BB TUR
## 2174 0 55 0 0 HB PRT
## 2175 0 2 0 0 BB TUR
## 2176 2 2 2 0 BB PRT
## 2177 2 2 0 0 BB PRT
## 2178 5 2 0 0 BB IRL
## 2179 5 2 0 0 BB GBR
## 2180 6 2 0 0 BB IRL
## 2181 7 2 0 0 HB GBR
## 2182 8 2 0 0 BB CN
## 2183 8 2 0 0 BB CN
## 2184 8 2 0 0 BB CN
## 2185 8 2 0 0 BB CN
## 2186 8 2 0 0 BB CN
## 2187 8 2 0 0 BB CN
## 2188 8 2 0 0 BB CN
## 2189 8 2 0 0 BB CN
## 2190 8 2 0 0 BB CN
## 2191 8 2 0 0 BB CN
## 2192 8 2 0 0 BB CN
## 2193 8 2 0 0 BB CN
## 2194 3 2 0 0 BB IRL
## 2195 3 2 0 0 BB IRL
## 2196 3 2 2 0 BB PRT
## 2197 10 2 0 0 BB PRT
## 2198 4 2 0 0 BB GBR
## 2199 4 2 0 0 BB IRL
## 2200 0 2 0 0 BB ESP
## 2201 1 2 0 0 BB BEL
## 2202 1 2 0 0 HB USA
## 2203 0 2 0 0 BB PRT
## 2204 3 2 0 0 BB PRT
## 2205 3 2 0 0 BB GBR
## 2206 3 2 0 1 BB PRT
## 2207 5 2 0 0 BB PRT
## 2208 5 2 0 1 BB GBR
## 2209 5 2 0 0 BB CHE
## 2210 6 2 0 0 HB PRT
## 2211 6 2 0 0 HB PRT
## 2212 6 2 0 0 HB PRT
## 2213 6 2 0 0 HB PRT
## 2214 7 2 0 0 HB GBR
## 2215 9 2 0 0 BB PRT
## 2216 1 1 0 0 BB PRT
## 2217 1 1 0 0 BB PRT
## 2218 1 1 0 0 BB PRT
## 2219 0 2 0 0 BB PRT
## 2220 1 1 0 0 BB PRT
## 2221 1 2 0 0 BB MEX
## 2222 2 2 0 0 BB CHE
## 2223 2 2 2 0 BB PRT
## 2224 3 2 0 0 BB PRT
## 2225 3 0 0 0 SC PRT
## 2226 4 2 0 0 BB IRL
## 2227 2 2 0 0 BB PRT
## 2228 5 2 2 0 BB ZAF
## 2229 5 20 0 0 BB PRT
## 2230 5 6 0 0 BB PRT
## 2231 5 2 0 0 HB POL
## 2232 5 5 0 0 BB PRT
## 2233 5 2 0 0 HB POL
## 2234 5 2 0 0 BB GBR
## 2235 1 1 0 0 BB PRT
## 2236 1 1 0 0 BB PRT
## 2237 1 1 0 0 BB PRT
## 2238 1 1 0 0 BB PRT
## 2239 1 1 0 0 BB PRT
## 2240 2 2 0 0 BB DEU
## 2241 2 2 0 0 FB PRT
## 2242 2 1 0 0 BB IRL
## 2243 1 3 0 0 BB AGO
## 2244 1 2 0 0 BB PRT
## 2245 1 2 0 0 BB PRT
## 2246 4 2 0 0 BB PRT
## 2247 2 1 0 0 BB NLD
## 2248 5 2 0 0 BB BEL
## 2249 5 2 0 0 BB GBR
## 2250 5 2 0 0 BB GBR
## 2251 5 2 0 0 BB GBR
## 2252 5 2 0 0 BB PRT
## 2253 5 1 0 0 HB PRT
## 2254 5 1 0 0 HB DEU
## 2255 1 1 0 0 BB PRT
## 2256 1 1 0 0 BB ESP
## 2257 1 2 0 0 BB PRT
## 2258 1 2 0 0 BB PRT
## 2259 1 1 0 0 BB PRT
## 2260 1 2 0 0 BB PRT
## 2261 3 2 1 0 BB PRT
## 2262 3 2 0 0 BB ESP
## 2263 3 2 0 0 BB PRT
## 2264 3 2 0 0 BB PRT
## 2265 3 2 0 0 BB FRA
## 2266 3 2 0 0 BB PRT
## 2267 3 2 0 0 BB PRT
## 2268 3 1 0 0 BB PRT
## 2269 3 2 0 0 BB PRT
## 2270 3 2 0 0 BB PRT
## 2271 3 2 0 0 BB ESP
## 2272 3 2 1 0 BB PRT
## 2273 3 2 0 0 BB PRT
## 2274 3 2 0 0 BB PRT
## 2275 3 2 2 0 BB PRT
## 2276 3 2 0 0 BB PRT
## 2277 3 2 1 0 BB PRT
## 2278 3 2 0 0 BB DEU
## 2279 5 1 0 0 BB IRL
## 2280 5 1 0 0 HB PRT
## 2281 5 2 0 0 BB GBR
## 2282 3 2 0 0 BB IRL
## 2283 5 2 0 0 BB GBR
## 2284 5 2 0 0 BB IRL
## 2285 7 2 0 0 BB PRT
## 2286 8 2 0 0 BB GBR
## 2287 1 1 0 0 BB PRT
## 2288 1 1 0 0 BB PRT
## 2289 1 2 0 0 BB PRT
## 2290 2 2 0 0 BB PRT
## 2291 2 2 0 1 BB PRT
## 2292 2 1 0 0 BB PRT
## 2293 2 2 1 0 BB PRT
## 2294 2 2 0 0 BB IRL
## 2295 2 1 0 0 BB PRT
## 2296 2 2 0 0 BB PRT
## 2297 2 2 0 0 BB PRT
## 2298 2 2 0 0 FB ESP
## 2299 2 2 0 0 FB ESP
## 2300 2 2 0 0 FB ESP
## 2301 2 2 0 0 FB ESP
## 2302 2 2 0 0 FB ESP
## 2303 2 2 0 0 FB ESP
## 2304 2 2 0 0 BB ESP
## 2305 2 2 0 0 FB ESP
## 2306 2 2 0 0 FB ESP
## 2307 2 2 0 0 BB ESP
## 2308 2 2 1 0 BB ESP
## 2309 2 2 1 0 BB PRT
## 2310 2 2 1 0 BB PRT
## 2311 2 2 0 0 BB ESP
## 2312 2 2 0 0 HB ESP
## 2313 2 2 0 0 FB ESP
## 2314 2 2 0 0 FB ESP
## 2315 2 2 0 0 FB ESP
## 2316 2 2 0 0 FB ESP
## 2317 2 2 0 0 FB ESP
## 2318 2 2 0 0 FB ESP
## 2319 2 2 0 0 FB ESP
## 2320 2 2 0 0 FB ESP
## 2321 2 2 0 0 FB ESP
## 2322 2 2 0 0 FB ESP
## 2323 2 2 0 0 FB ESP
## 2324 2 2 0 0 FB ESP
## 2325 2 2 0 0 FB ESP
## 2326 2 2 1 0 BB ESP
## 2327 2 2 0 0 BB ESP
## 2328 2 2 0 0 BB DEU
## 2329 2 2 0 0 FB ESP
## 2330 2 2 0 0 FB ESP
## 2331 2 2 0 0 FB ESP
## 2332 2 2 0 0 BB ESP
## 2333 2 2 0 0 HB ESP
## 2334 2 1 0 0 BB IRL
## 2335 2 2 0 0 BB ESP
## 2336 2 2 0 0 FB ESP
## 2337 2 2 0 0 FB ESP
## 2338 2 2 0 0 FB ESP
## 2339 2 2 0 0 FB ESP
## 2340 2 2 0 0 BB PRT
## 2341 2 2 0 0 BB ISR
## 2342 2 2 0 0 BB PRT
## 2343 2 2 0 0 BB ESP
## 2344 3 2 0 0 BB GBR
## 2345 3 2 0 0 BB ESP
## 2346 5 2 0 0 HB LTU
## 2347 1 2 0 0 BB PRT
## 2348 1 2 0 0 BB PRT
## 2349 1 2 0 0 BB PRT
## 2350 1 2 0 0 BB ESP
## 2351 1 2 1 0 BB PRT
## 2352 1 2 0 0 BB ESP
## 2353 1 2 0 0 HB ESP
## 2354 1 2 0 0 HB ESP
## 2355 1 2 1 0 BB ESP
## 2356 1 2 0 0 BB PRT
## 2357 1 2 0 0 HB ESP
## 2358 1 2 2 0 BB CHL
## 2359 1 2 0 0 BB GBR
## 2360 1 2 2 0 BB ESP
## 2361 1 2 0 0 BB ESP
## 2362 1 2 1 0 BB ESP
## 2363 1 2 0 0 HB ESP
## 2364 1 2 0 0 HB ESP
## 2365 1 2 0 0 BB ESP
## 2366 1 2 0 0 BB ESP
## 2367 1 2 0 0 BB PRT
## 2368 1 2 0 0 BB ESP
## 2369 5 2 0 0 BB PRT
## 2370 5 2 0 0 BB PRT
## 2371 5 2 0 0 BB PRT
## 2372 5 2 0 0 BB PRT
## 2373 5 2 0 0 BB PRT
## 2374 5 2 0 0 BB PRT
## 2375 5 2 0 0 BB PRT
## 2376 5 2 0 0 BB PRT
## 2377 5 2 0 0 BB PRT
## 2378 5 2 0 0 BB PRT
## 2379 5 1 0 0 BB PRT
## 2380 5 2 0 0 BB PRT
## 2381 5 2 0 0 BB PRT
## 2382 5 2 0 0 BB PRT
## 2383 2 2 0 0 HB PRT
## 2384 6 2 0 0 BB GBR
## 2385 15 2 0 0 HB BEL
## 2386 0 2 0 0 BB ESP
## 2387 0 2 0 0 BB ESP
## 2388 0 2 0 0 BB ESP
## 2389 0 2 0 0 BB PRT
## 2390 0 2 0 0 BB PRT
## 2391 0 2 0 0 BB ESP
## 2392 0 2 0 0 BB PRT
## 2393 0 2 0 0 BB PRT
## 2394 0 2 0 0 BB PRT
## 2395 0 1 0 0 BB PRT
## 2396 0 2 0 0 BB ESP
## 2397 0 2 0 0 BB PRT
## 2398 0 2 0 0 BB ESP
## 2399 2 1 0 0 BB PRT
## 2400 2 2 0 0 BB PRT
## 2401 2 2 0 0 BB GBR
## 2402 2 2 0 0 BB PRT
## 2403 2 1 0 0 BB PRT
## 2404 3 2 0 0 BB RUS
## 2405 3 2 0 0 BB GBR
## 2406 5 1 0 0 BB GBR
## 2407 5 2 0 0 HB PRT
## 2408 5 1 0 0 SC PRT
## 2409 0 2 0 0 BB PRT
## 2410 0 0 0 0 SC PRT
## 2411 0 2 0 0 BB PRT
## 2412 0 2 0 0 BB PRT
## 2413 0 2 0 0 BB PRT
## 2414 1 1 0 0 BB PRT
## 2415 1 2 0 0 BB ESP
## 2416 1 1 0 0 BB PRT
## 2417 5 2 0 0 BB GBR
## 2418 5 10 0 0 BB PRT
## 2419 5 20 0 0 BB PRT
## 2420 5 5 0 0 BB PRT
## 2421 5 2 0 0 BB FRA
## 2422 5 2 2 0 BB GBR
## 2423 1 1 0 0 BB PRT
## 2424 1 2 0 0 BB GBR
## 2425 1 1 0 0 BB PRT
## 2426 1 2 0 0 BB ESP
## 2427 1 2 0 0 BB PRT
## 2428 2 1 0 0 BB PRT
## 2429 3 2 2 0 BB PRT
## 2430 5 2 2 0 BB IRL
## 2431 6 2 0 0 BB GBR
## 2432 1 2 0 0 HB FRA
## 2433 1 1 0 0 BB PRT
## 2434 1 1 0 0 BB NLD
## 2435 1 2 0 0 BB PRT
## 2436 1 1 0 0 BB ESP
## 2437 1 2 0 0 BB ESP
## 2438 1 1 0 0 BB NLD
## 2439 6 2 0 0 BB GBR
## 2440 0 2 0 0 BB GBR
## 2441 3 1 0 0 BB GBR
## 2442 3 2 1 0 BB GBR
## 2443 4 2 0 0 BB GBR
## 2444 0 2 0 0 BB PRT
## 2445 0 2 0 0 BB PRT
## 2446 0 2 0 0 BB PRT
## 2447 1 2 0 0 BB DEU
## 2448 1 2 0 0 BB PRT
## 2449 1 1 0 0 HB PRT
## 2450 2 2 0 0 BB GBR
## 2451 2 2 0 0 BB USA
## 2452 2 1 0 0 BB GBR
## 2453 2 2 0 0 BB GBR
## 2454 2 2 0 0 BB PRT
## 2455 5 2 0 0 BB GBR
## 2456 1 2 0 0 BB PRT
## 2457 1 2 0 0 BB PRT
## 2458 5 2 0 0 BB GBR
## 2459 6 2 0 0 BB PRT
## 2460 0 2 0 0 BB ESP
## 2461 2 2 0 0 HB GBR
## 2462 3 2 0 0 BB PRT
## 2463 3 2 0 0 BB PRT
## 2464 3 2 0 0 BB PRT
## 2465 5 2 0 0 BB GBR
## 2466 5 2 2 0 BB GBR
## 2467 5 2 0 0 HB PRT
## 2468 5 2 1 0 BB GBR
## 2469 5 2 0 0 BB GBR
## 2470 5 2 0 0 BB PRT
## 2471 5 2 0 0 BB PRT
## 2472 5 2 0 0 BB GBR
## 2473 6 2 0 0 BB IRL
## 2474 5 2 0 0 BB IRL
## 2475 0 2 0 0 BB PRT
## 2476 0 2 0 0 BB PRT
## 2477 0 1 0 0 BB PRT
## 2478 1 2 0 0 BB ESP
## 2479 1 2 0 0 BB PRT
## 2480 1 2 0 0 BB PRT
## 2481 0 2 0 0 BB PRT
## 2482 1 1 0 0 BB PRT
## 2483 2 2 0 0 HB ESP
## 2484 2 2 0 0 BB ESP
## 2485 2 2 0 0 HB ESP
## 2486 3 2 0 0 BB GBR
## 2487 4 2 0 0 HB ESP
## 2488 4 2 0 0 HB ESP
## 2489 4 2 0 0 HB ESP
## 2490 4 1 0 0 HB ESP
## 2491 4 2 0 0 HB ESP
## 2492 4 2 0 0 HB ESP
## 2493 4 2 0 0 HB ESP
## 2494 4 2 0 0 HB ESP
## 2495 4 2 0 0 HB ESP
## 2496 4 2 0 0 BB PRT
## 2497 4 2 0 0 HB ESP
## 2498 4 2 0 0 HB ESP
## 2499 4 2 0 0 HB ESP
## 2500 4 2 0 0 HB ESP
## 2501 4 2 0 0 HB ESP
## 2502 4 2 0 0 HB ESP
## 2503 4 2 0 0 HB ESP
## 2504 4 2 0 0 HB ESP
## 2505 4 2 0 0 HB ESP
## 2506 4 2 0 0 BB IRL
## 2507 4 2 0 0 HB ESP
## 2508 4 2 0 0 HB ESP
## 2509 4 2 0 0 HB PRT
## 2510 4 1 0 0 HB ESP
## 2511 4 2 0 0 HB ESP
## 2512 5 2 0 0 HB GBR
## 2513 5 2 0 0 BB GBR
## 2514 5 2 0 0 BB ESP
## 2515 8 2 0 0 HB GBR
## 2516 8 2 0 0 BB PRT
## 2517 12 2 0 0 HB GBR
## 2518 1 2 0 0 BB ESP
## 2519 1 2 0 0 BB ESP
## 2520 1 2 0 0 BB PRT
## 2521 2 2 0 0 BB FRA
## 2522 2 1 0 0 BB ESP
## 2523 5 3 0 0 BB GBR
## 2524 5 3 0 0 BB IRL
## 2525 5 2 2 0 BB PRT
## 2526 5 3 0 0 HB GBR
## 2527 5 2 0 0 BB GBR
## 2528 7 2 0 0 BB GBR
## 2529 8 1 0 0 BB DEU
## 2530 9 1 0 0 BB PRT
## 2531 0 1 0 0 BB PRT
## 2532 0 1 0 0 BB PRT
## 2533 1 1 0 0 BB PRT
## 2534 2 2 0 0 BB PRT
## 2535 2 2 0 0 BB PRT
## 2536 2 2 2 0 BB PRT
## 2537 2 2 0 0 BB PRT
## 2538 2 2 0 0 HB FRA
## 2539 2 2 0 0 HB FRA
## 2540 2 1 0 0 HB PRT
## 2541 3 2 0 0 BB PRT
## 2542 3 2 0 0 BB IND
## 2543 3 2 0 0 BB PRT
## 2544 4 2 0 0 BB GBR
## 2545 4 2 0 0 BB ESP
## 2546 4 2 0 0 BB PRT
## 2547 4 2 1 0 BB PRT
## 2548 4 2 1 0 BB PRT
## 2549 5 2 0 0 BB PRT
## 2550 5 2 0 0 BB LUX
## 2551 5 2 0 0 HB FRA
## 2552 5 2 0 0 BB GBR
## 2553 5 1 0 0 BB FIN
## 2554 5 2 0 0 HB GBR
## 2555 5 2 0 0 BB PRT
## 2556 5 2 0 0 BB FRA
## 2557 4 2 0 0 BB PRT
## 2558 3 2 0 0 BB CYM
## 2559 3 2 0 0 BB GBR
## 2560 3 2 0 0 BB GBR
## 2561 3 2 0 0 BB BEL
## 2562 5 2 0 0 HB GBR
## 2563 5 2 0 0 BB GBR
## 2564 5 2 0 0 BB GBR
## 2565 5 2 0 0 BB GBR
## 2566 5 2 0 0 BB PRT
## 2567 5 2 0 0 BB GBR
## 2568 3 1 0 0 BB PRT
## 2569 3 2 0 0 BB ESP
## 2570 3 1 0 0 BB GBR
## 2571 3 2 0 0 BB PRT
## 2572 3 2 0 0 BB GBR
## 2573 3 2 0 0 BB ESP
## 2574 3 1 0 0 BB ESP
## 2575 3 2 0 0 BB ESP
## 2576 3 2 0 0 BB ESP
## 2577 3 2 0 0 BB FRA
## 2578 3 1 0 0 BB BEL
## 2579 5 2 0 0 BB GBR
## 2580 5 2 0 0 BB GBR
## 2581 5 2 0 0 HB GBR
## 2582 3 2 2 0 BB ESP
## 2583 3 2 0 0 BB BEL
## 2584 3 2 0 0 BB BEL
## 2585 3 2 0 0 BB BEL
## 2586 3 2 0 0 BB PRT
## 2587 3 1 0 0 BB PRT
## 2588 3 2 0 0 BB BEL
## 2589 3 2 0 0 BB PRT
## 2590 1 2 0 0 BB PRT
## 2591 1 2 0 0 BB ESP
## 2592 1 2 0 0 BB PRT
## 2593 2 2 0 0 BB PRT
## 2594 2 2 0 0 BB PRT
## 2595 2 2 0 0 BB PRT
## 2596 2 1 0 0 BB ESP
## 2597 2 2 0 0 BB ESP
## 2598 2 2 0 0 BB PRT
## 2599 2 2 0 0 BB PRT
## 2600 2 2 0 0 BB PRT
## 2601 2 2 0 0 BB PRT
## 2602 2 2 0 0 BB GBR
## 2603 2 2 0 0 BB IRL
## 2604 2 2 0 0 BB GBR
## 2605 3 2 0 0 BB GBR
## 2606 3 2 0 0 BB GBR
## 2607 4 2 0 0 BB IRL
## 2608 5 2 0 0 HB GBR
## 2609 5 1 0 0 BB PRT
## 2610 5 2 0 0 BB PRT
## 2611 5 2 0 0 BB ESP
## 2612 5 2 0 0 BB PRT
## 2613 5 1 0 0 BB PRT
## 2614 5 2 0 0 HB PRT
## 2615 5 3 0 0 HB GBR
## 2616 7 2 0 0 BB GBR
## 2617 11 1 0 0 BB FIN
## 2618 2 2 0 0 BB PRT
## 2619 2 2 0 0 HB ESP
## 2620 2 1 0 0 BB GBR
## 2621 2 2 0 0 BB PRT
## 2622 2 2 1 0 BB PRT
## 2623 2 2 0 0 BB ESP
## 2624 2 2 0 0 BB PRT
## 2625 1 1 0 0 BB PRT
## 2626 1 2 0 0 BB PRT
## 2627 1 2 0 0 BB PRT
## 2628 1 1 0 0 BB PRT
## 2629 1 1 0 0 BB PRT
## 2630 1 1 0 0 BB PRT
## 2631 1 2 0 0 BB PRT
## 2632 1 2 0 0 BB PRT
## 2633 1 2 0 0 BB PRT
## 2634 1 1 0 0 BB PRT
## 2635 1 1 0 0 BB PRT
## 2636 1 2 0 0 BB PRT
## 2637 1 2 0 0 BB PRT
## 2638 1 1 0 0 BB PRT
## 2639 1 1 0 0 BB PRT
## 2640 1 2 0 0 BB PRT
## 2641 1 2 0 0 BB PRT
## 2642 1 1 0 0 BB PRT
## 2643 1 1 0 0 BB PRT
## 2644 1 2 0 0 BB PRT
## 2645 1 2 0 0 BB PRT
## 2646 1 2 0 0 BB PRT
## 2647 1 2 0 0 BB PRT
## 2648 1 1 0 0 BB PRT
## 2649 1 1 0 0 BB PRT
## 2650 1 1 0 0 BB PRT
## 2651 1 2 0 0 BB PRT
## 2652 1 2 0 0 BB PRT
## 2653 1 2 0 0 BB PRT
## 2654 1 2 0 0 BB PRT
## 2655 1 1 0 0 BB PRT
## 2656 1 1 0 0 BB PRT
## 2657 1 2 0 0 BB PRT
## 2658 1 2 0 0 BB PRT
## 2659 1 2 0 0 BB PRT
## 2660 1 1 0 0 BB PRT
## 2661 1 1 0 0 BB PRT
## 2662 1 1 0 0 BB PRT
## 2663 1 2 0 0 BB PRT
## 2664 1 2 0 0 BB GBR
## 2665 1 2 0 0 BB PRT
## 2666 1 2 0 0 BB PRT
## 2667 1 2 0 0 BB PRT
## 2668 1 2 0 0 BB PRT
## 2669 2 2 0 0 BB GBR
## 2670 2 2 0 0 BB GBR
## 2671 3 2 0 0 BB IRL
## 2672 1 2 0 0 BB PRT
## 2673 4 2 2 0 BB ZMB
## 2674 5 2 0 0 BB PRT
## 2675 5 2 0 0 BB PRT
## 2676 5 2 0 0 BB GBR
## 2677 6 2 0 0 BB IRL
## 2678 7 2 0 0 BB CHE
## 2679 1 2 0 0 BB PRT
## 2680 1 2 0 0 BB PRT
## 2681 1 2 0 0 BB PRT
## 2682 1 1 0 0 BB PRT
## 2683 1 1 0 0 BB PRT
## 2684 1 1 0 0 BB PRT
## 2685 1 2 0 0 BB PRT
## 2686 3 2 2 0 BB PRT
## 2687 4 2 0 0 BB IRL
## 2688 4 1 1 0 BB GBR
## 2689 5 2 0 0 HB GBR
## 2690 5 2 0 0 BB DEU
## 2691 5 2 1 0 BB IRL
## 2692 0 2 0 0 BB PRT
## 2693 0 2 0 0 BB PRT
## 2694 2 2 0 0 BB PRT
## 2695 2 2 0 0 BB PRT
## 2696 4 2 0 0 BB IRL
## 2697 14 1 0 0 BB PRT
## 2698 15 1 0 0 BB AUT
## 2699 16 1 0 0 BB PRT
## 2700 16 1 0 0 BB PRT
## 2701 16 1 0 0 BB PRT
## 2702 16 1 0 0 BB PRT
## 2703 16 1 0 0 BB PRT
## 2704 1 2 0 0 BB PRT
## 2705 1 1 0 0 BB PRT
## 2706 1 2 0 0 BB NLD
## 2707 1 2 0 0 BB PRT
## 2708 1 1 0 0 BB PRT
## 2709 1 2 0 0 BB PRT
## 2710 2 2 0 0 BB AUT
## 2711 2 2 0 0 HB ESP
## 2712 2 2 0 0 BB AUS
## 2713 2 2 0 0 BB ESP
## 2714 2 2 0 0 HB ESP
## 2715 3 1 0 0 BB PRT
## 2716 4 2 0 0 BB IRL
## 2717 4 2 0 0 BB POL
## 2718 5 2 0 0 HB FIN
## 2719 5 2 1 0 BB PRT
## 2720 1 2 0 0 BB PRT
## 2721 1 1 0 0 BB PRT
## 2722 1 2 0 0 HB PRT
## 2723 1 1 0 0 BB PRT
## 2724 5 1 0 0 HB CHE
## 2725 5 1 0 0 HB FRA
## 2726 5 1 0 0 HB CHE
## 2727 5 1 0 0 HB CHE
## 2728 1 1 0 0 BB DEU
## 2729 2 1 0 0 BB PRT
## 2730 1 2 0 0 BB PRT
## 2731 1 1 0 0 BB PRT
## 2732 2 1 0 0 BB USA
## 2733 2 2 0 0 BB PRT
## 2734 1 2 0 0 BB PRT
## 2735 1 1 0 0 BB PRT
## 2736 3 2 0 0 BB PRT
## 2737 3 2 0 0 BB PRT
## 2738 3 2 0 0 BB PRT
## 2739 3 2 0 0 BB PRT
## 2740 3 2 0 0 BB PRT
## 2741 8 2 0 0 BB PRT
## 2742 3 2 0 0 BB PRT
## 2743 1 1 0 0 BB PRT
## 2744 1 2 0 0 BB ESP
## 2745 1 2 0 0 BB PRT
## 2746 2 2 0 0 BB PRT
## 2747 2 2 0 0 BB PRT
## 2748 2 2 0 0 BB PRT
## 2749 2 2 0 0 BB USA
## 2750 2 2 0 0 BB PRT
## 2751 2 2 0 0 BB PRT
## 2752 2 2 0 1 BB PRT
## 2753 2 2 0 0 BB ESP
## 2754 0 1 0 0 BB PRT
## 2755 2 2 0 0 BB PRT
## 2756 2 2 0 0 BB PRT
## 2757 2 2 0 0 BB ESP
## 2758 2 2 0 0 BB ESP
## 2759 2 2 0 0 BB ESP
## 2760 2 2 0 0 BB PRT
## 2761 2 1 0 0 BB PRT
## 2762 2 2 0 0 BB CN
## 2763 2 2 0 0 BB ESP
## 2764 2 2 0 0 BB CPV
## 2765 5 2 0 0 BB BEL
## 2766 6 2 0 0 BB GBR
## 2767 0 1 0 0 BB PRT
## 2768 1 2 0 0 BB PRT
## 2769 1 2 0 0 BB PRT
## 2770 1 2 0 0 BB PRT
## 2771 1 2 0 0 BB PRT
## 2772 1 2 0 0 BB CHE
## 2773 1 2 0 0 BB PRT
## 2774 1 2 0 0 BB PRT
## 2775 1 2 0 0 BB PRT
## 2776 1 2 0 0 BB PRT
## 2777 1 1 0 0 BB PRT
## 2778 1 2 0 0 BB PRT
## 2779 1 2 0 0 BB ESP
## 2780 1 2 0 0 BB PRT
## 2781 1 2 0 0 BB PRT
## 2782 1 2 1 0 BB PRT
## 2783 1 1 0 0 BB PRT
## 2784 1 2 0 0 BB PRT
## 2785 1 2 0 0 BB PRT
## 2786 1 2 0 0 BB PRT
## 2787 1 2 1 0 BB ESP
## 2788 1 2 0 0 BB PRT
## 2789 1 2 0 0 BB PRT
## 2790 1 2 0 0 BB PRT
## 2791 1 2 0 0 BB PRT
## 2792 1 2 0 0 BB PRT
## 2793 1 1 0 0 BB PRT
## 2794 1 2 0 0 BB PRT
## 2795 1 2 0 0 BB PRT
## 2796 1 2 0 0 BB PRT
## 2797 1 2 0 0 BB PRT
## 2798 1 1 0 0 BB PRT
## 2799 1 1 0 0 BB PRT
## 2800 1 2 0 0 BB PRT
## 2801 1 2 0 0 BB USA
## 2802 1 1 0 0 BB PRT
## 2803 1 2 0 0 BB PRT
## 2804 1 2 0 0 BB PRT
## 2805 1 2 0 0 BB PRT
## 2806 1 2 0 0 BB PRT
## 2807 1 2 0 0 BB PRT
## 2808 1 2 0 0 BB PRT
## 2809 1 2 0 0 BB PRT
## 2810 1 1 0 0 BB PRT
## 2811 1 2 0 0 BB PRT
## 2812 1 2 0 0 BB PRT
## 2813 1 2 0 0 BB PRT
## 2814 1 2 0 0 BB PRT
## 2815 1 2 0 0 BB PRT
## 2816 1 2 0 0 BB PRT
## 2817 1 2 0 0 BB PRT
## 2818 1 2 0 0 HB PRT
## 2819 1 2 0 0 BB PRT
## 2820 1 3 1 0 BB GBR
## 2821 1 2 0 0 BB PRT
## 2822 1 1 0 0 BB PRT
## 2823 1 1 0 0 BB PRT
## 2824 1 2 0 0 BB ESP
## 2825 1 2 0 0 BB PRT
## 2826 1 2 0 0 BB FRA
## 2827 2 2 0 0 HB PRT
## 2828 2 2 0 0 BB PRT
## 2829 2 2 0 0 BB PRT
## 2830 3 2 0 0 BB PRT
## 2831 4 2 0 0 BB PRT
## 2832 5 2 0 0 BB PRT
## 2833 5 2 0 0 BB GBR
## 2834 5 2 0 0 BB PRT
## 2835 5 2 0 0 BB GBR
## 2836 0 1 0 0 BB PRT
## 2837 0 2 0 0 BB PRT
## 2838 0 1 0 0 BB PRT
## 2839 0 2 0 0 HB ESP
## 2840 0 2 0 0 BB ESP
## 2841 0 1 0 0 BB PRT
## 2842 3 2 0 0 HB GBR
## 2843 5 2 0 0 BB PRT
## 2844 5 2 0 0 BB GBR
## 2845 4 2 0 0 HB GBR
## 2846 4 2 0 0 BB IRL
## 2847 4 2 0 0 BB ESP
## 2848 2 2 0 0 BB DEU
## 2849 5 2 0 0 BB GBR
## 2850 5 2 0 1 BB POL
## 2851 5 2 0 1 BB POL
## 2852 5 2 0 0 BB FIN
## 2853 11 1 0 0 BB PRT
## 2854 11 1 0 0 BB PRT
## 2855 11 1 0 0 BB PRT
## 2856 11 1 0 0 BB PRT
## 2857 11 1 0 0 BB PRT
## 2858 11 1 0 0 BB PRT
## 2859 11 1 0 0 BB PRT
## 2860 0 2 0 0 BB PRT
## 2861 1 1 0 0 BB FRA
## 2862 1 2 0 0 BB FRA
## 2863 1 1 0 0 BB PRT
## 2864 1 1 0 0 BB PRT
## 2865 1 2 0 0 BB PRT
## 2866 2 1 0 0 BB PRT
## 2867 3 2 0 0 BB PRT
## 2868 3 2 0 0 BB ESP
## 2869 3 2 0 0 BB PRT
## 2870 4 2 0 0 BB PRT
## 2871 4 2 2 0 BB BEL
## 2872 4 2 0 0 BB PRT
## 2873 4 1 0 0 BB PRT
## 2874 4 1 0 0 BB BEL
## 2875 4 1 0 0 BB PRT
## 2876 5 3 0 0 BB NLD
## 2877 2 2 0 0 BB ESP
## 2878 10 1 0 0 BB PRT
## 2879 10 2 0 0 BB ITA
## 2880 10 2 0 0 BB ITA
## 2881 10 2 0 0 BB ESP
## 2882 10 1 0 0 BB ITA
## 2883 10 2 0 0 BB ITA
## 2884 10 1 0 0 BB FRA
## 2885 10 1 0 0 BB FRA
## 2886 1 1 0 0 BB PRT
## 2887 1 2 0 0 BB PRT
## 2888 2 1 0 0 BB PRT
## 2889 2 1 0 0 BB PRT
## 2890 4 2 0 0 BB PRT
## 2891 9 2 0 0 BB PRT
## 2892 9 1 0 0 BB PRT
## 2893 9 1 0 0 BB PRT
## 2894 1 1 0 0 BB PRT
## 2895 1 1 0 0 BB PRT
## 2896 1 1 0 0 BB PRT
## 2897 4 2 0 0 HB ESP
## 2898 4 2 0 0 HB ESP
## 2899 8 1 0 0 BB PRT
## 2900 8 2 0 0 BB GBR
## 2901 8 2 0 0 BB PRT
## 2902 1 1 0 0 BB USA
## 2903 1 1 0 0 BB PRT
## 2904 1 1 0 0 HB ESP
## 2905 1 2 1 0 HB PRT
## 2906 2 2 0 0 BB ZWE
## 2907 2 2 0 0 BB ESP
## 2908 2 2 0 0 BB ESP
## 2909 2 2 1 0 HB GBR
## 2910 2 2 0 0 BB GBR
## 2911 2 2 0 0 BB PRT
## 2912 2 2 0 0 BB PRT
## 2913 7 1 0 0 BB FRA
## 2914 7 1 0 0 BB AUT
## 2915 7 1 0 0 BB AUT
## 2916 7 1 0 0 BB AUT
## 2917 7 1 0 0 BB AUT
## 2918 7 1 0 0 BB FRA
## 2919 7 1 0 0 BB AUT
## 2920 0 2 0 0 BB PRT
## 2921 1 2 0 0 BB PRT
## 2922 1 2 0 1 BB PRT
## 2923 1 2 1 0 BB PRT
## 2924 1 2 0 1 BB PRT
## 2925 1 2 0 0 BB ESP
## 2926 1 2 1 0 BB PRT
## 2927 1 2 0 1 BB PRT
## 2928 1 2 0 0 BB PRT
## 2929 1 2 0 0 HB ESP
## 2930 1 2 0 0 HB ESP
## 2931 3 1 0 0 BB DZA
## 2932 3 1 0 0 BB DZA
## 2933 5 2 0 0 BB FIN
## 2934 5 2 0 0 BB IRL
## 2935 6 1 0 0 BB PRT
## 2936 6 1 0 0 BB PRT
## 2937 6 1 0 0 BB PRT
## 2938 6 2 0 0 HB PRT
## 2939 6 1 0 0 BB DEU
## 2940 6 2 0 0 BB PRT
## 2941 6 2 0 0 BB RUS
## 2942 6 1 0 0 BB PRT
## 2943 6 1 0 0 BB DEU
## 2944 6 1 0 0 BB PRT
## 2945 6 1 0 0 BB PRT
## 2946 6 1 0 0 BB BEL
## 2947 6 1 0 0 BB CZE
## 2948 6 1 0 0 BB GBR
## 2949 6 1 0 0 BB PRT
## 2950 6 1 0 0 BB PRT
## 2951 6 1 0 0 BB DEU
## 2952 6 1 0 0 BB PRT
## 2953 6 1 0 0 BB PRT
## 2954 6 1 0 0 BB DEU
## 2955 6 1 0 0 BB AUT
## 2956 6 1 0 0 BB PRT
## 2957 6 2 0 0 HB PRT
## 2958 6 2 0 0 BB GBR
## 2959 0 1 0 0 HB PRT
## 2960 0 2 0 0 HB ESP
## 2961 0 1 0 0 HB PRT
## 2962 4 2 0 0 HB PRT
## 2963 4 2 0 0 BB ESP
## 2964 4 1 0 0 BB GBR
## 2965 5 2 0 0 BB FRA
## 2966 5 2 0 0 BB PRT
## 2967 5 1 0 0 BB PRT
## 2968 5 2 0 0 BB FRA
## 2969 5 2 0 0 BB BRA
## 2970 5 1 0 0 BB PRT
## 2971 5 2 0 0 BB PRT
## 2972 5 1 0 0 BB PRT
## 2973 8 2 0 0 BB PRT
## 2974 0 2 0 0 BB PRT
## 2975 0 1 0 0 BB PRT
## 2976 0 1 0 0 BB PRT
## 2977 0 1 0 0 BB ESP
## 2978 1 3 1 0 BB PRT
## 2979 0 1 0 0 BB PRT
## 2980 0 2 0 0 BB PRT
## 2981 2 2 0 0 HB ESP
## 2982 3 1 0 0 BB PRT
## 2983 3 2 0 0 HB ESP
## 2984 5 1 0 0 BB PRT
## 2985 5 1 0 0 BB PRT
## 2986 5 2 0 0 BB PRT
## 2987 5 2 0 0 BB PRT
## 2988 3 2 0 0 BB FRA
## 2989 5 2 0 0 BB PRT
## 2990 5 2 0 0 HB FRA
## 2991 2 2 0 0 HB GBR
## 2992 2 1 0 0 BB PRT
## 2993 5 1 0 0 BB PRT
## 2994 5 1 0 0 BB PRT
## 2995 5 1 0 0 BB PRT
## 2996 5 2 0 0 BB PRT
## 2997 5 1 0 0 BB PRT
## 2998 5 2 1 0 BB ESP
## 2999 1 2 0 0 BB PRT
## 3000 1 1 0 0 BB PRT
## 3001 4 1 0 0 BB PRT
## 3002 4 1 0 0 BB PRT
## 3003 4 1 0 0 BB ESP
## 3004 4 1 0 0 BB PRT
## 3005 4 1 0 0 BB PRT
## 3006 4 1 0 0 BB PRT
## 3007 4 1 0 0 BB PRT
## 3008 4 1 0 0 BB GBR
## 3009 4 1 0 0 BB DEU
## 3010 4 2 0 0 BB CHE
## 3011 4 1 0 0 BB PRT
## 3012 4 2 0 0 BB PRT
## 3013 4 1 0 0 BB GBR
## 3014 4 1 0 0 BB GBR
## 3015 4 2 0 0 BB PRT
## 3016 4 1 0 0 BB PRT
## 3017 4 1 0 0 BB PRT
## 3018 4 1 0 0 BB PRT
## 3019 4 1 0 0 BB PRT
## 3020 4 1 0 0 BB GBR
## 3021 4 1 0 0 BB PRT
## 3022 4 2 0 0 BB ESP
## 3023 4 1 0 0 BB DEU
## 3024 4 1 0 0 BB PRT
## 3025 4 1 0 0 BB PRT
## 3026 4 1 0 0 BB PRT
## 3027 4 1 0 0 BB GBR
## 3028 4 1 0 0 BB PRT
## 3029 4 1 0 0 BB GBR
## 3030 4 2 1 0 BB PRT
## 3031 4 2 0 0 BB DEU
## 3032 4 2 0 0 BB DEU
## 3033 3 1 0 0 BB DEU
## 3034 3 2 0 0 BB PRT
## 3035 2 2 0 0 BB SWE
## 3036 2 1 0 0 BB PRT
## 3037 2 1 0 0 BB PRT
## 3038 2 1 0 0 BB PRT
## 3039 2 1 0 0 BB PRT
## 3040 2 1 0 0 BB PRT
## 3041 2 1 0 0 BB PRT
## 3042 2 1 0 0 BB PRT
## 3043 2 1 0 0 BB PRT
## 3044 3 2 0 0 BB AUT
## 3045 3 1 0 0 BB FRA
## 3046 3 2 0 0 BB ITA
## 3047 3 1 0 0 BB FRA
## 3048 3 1 0 0 BB FRA
## 3049 3 1 0 0 BB FRA
## 3050 3 1 0 0 BB PRT
## 3051 3 1 0 0 BB PRT
## 3052 3 1 0 0 BB FRA
## 3053 2 1 0 0 BB PRT
## 3054 2 1 0 0 BB PRT
## 3055 2 1 0 0 BB PRT
## 3056 2 2 0 0 BB GBR
## 3057 3 2 0 0 BB RUS
## 3058 3 1 0 0 BB PRT
## 3059 3 1 0 0 BB FRA
## 3060 3 2 2 0 BB RUS
## 3061 3 2 0 0 BB RUS
## 3062 3 2 0 0 BB NLD
## 3063 3 1 0 0 BB FRA
## 3064 3 2 0 0 BB CHE
## 3065 3 1 0 0 BB PRT
## 3066 3 1 0 0 BB PRT
## 3067 3 1 0 0 BB PRT
## 3068 3 2 0 0 BB PRT
## 3069 2 1 0 0 BB ESP
## 3070 0 2 0 0 BB PRT
## 3071 0 1 0 0 BB PRT
## 3072 1 2 0 0 BB PRT
## 3073 1 2 0 0 BB ITA
## 3074 2 2 0 0 BB PRT
## 3075 2 2 0 0 BB PRT
## 3076 1 2 0 0 BB PRT
## 3077 2 2 1 0 BB PRT
## 3078 2 1 0 0 BB PRT
## 3079 2 2 0 0 BB ITA
## 3080 1 2 0 0 BB PRT
## 3081 1 2 0 0 BB PRT
## 3082 2 2 0 0 BB GBR
## 3083 5 2 0 0 BB PRT
## 3084 6 2 0 0 BB GBR
## 3085 0 2 0 0 BB GBR
## 3086 5 2 0 0 HB GBR
## 3087 5 2 0 0 HB PRT
## 3088 10 2 0 0 BB PRT
## 3089 4 2 0 0 BB PRT
## 3090 0 2 0 0 BB PRT
## 3091 0 2 0 0 BB PRT
## 3092 0 2 1 0 BB PRT
## 3093 2 1 0 0 BB ITA
## 3094 2 2 0 0 BB ITA
## 3095 2 2 0 0 BB ITA
## 3096 3 1 0 0 BB PRT
## 3097 3 2 0 1 BB PRT
## 3098 3 2 0 0 BB PRT
## 3099 7 1 0 0 BB PRT
## 3100 15 2 0 0 BB PRT
## 3101 0 2 0 1 BB PRT
## 3102 2 2 0 0 BB FRA
## 3103 4 2 0 0 BB GBR
## 3104 6 2 0 0 HB PRT
## 3105 2 1 0 0 BB PRT
## 3106 3 1 0 0 BB NOR
## 3107 4 2 0 0 Undefined ESP
## 3108 4 2 0 0 Undefined ESP
## 3109 4 2 0 0 Undefined ESP
## 3110 4 2 0 0 HB PRT
## 3111 4 2 0 0 Undefined ESP
## 3112 4 2 0 0 Undefined ESP
## 3113 4 2 0 0 Undefined ESP
## 3114 4 2 0 0 Undefined ESP
## 3115 4 1 0 0 Undefined ESP
## 3116 4 2 0 0 Undefined ESP
## 3117 4 2 0 0 Undefined ESP
## 3118 4 2 0 0 Undefined ESP
## 3119 4 2 0 0 Undefined PRT
## 3120 4 2 0 0 Undefined ESP
## 3121 4 1 0 0 Undefined ESP
## 3122 4 2 0 0 Undefined ESP
## 3123 4 2 0 0 Undefined ESP
## 3124 4 2 0 0 Undefined ESP
## 3125 4 2 0 0 Undefined ESP
## 3126 4 2 0 0 Undefined ESP
## 3127 4 2 0 0 Undefined ESP
## 3128 4 2 0 0 Undefined ESP
## 3129 4 2 0 0 Undefined ESP
## 3130 4 2 0 0 FB PRT
## 3131 4 2 0 0 Undefined ESP
## 3132 4 2 0 0 Undefined ESP
## 3133 4 2 0 0 Undefined ESP
## 3134 5 2 0 0 BB GBR
## 3135 2 2 1 0 BB POL
## 3136 3 2 0 0 BB DEU
## 3137 3 1 0 0 BB PRT
## 3138 3 2 0 0 HB FRA
## 3139 3 2 2 0 BB FRA
## 3140 3 2 0 0 HB NLD
## 3141 3 2 0 0 BB PRT
## 3142 3 2 0 0 HB NLD
## 3143 10 2 0 0 HB PRT
## 3144 2 2 0 0 FB ESP
## 3145 2 2 0 0 FB ESP
## 3146 2 2 0 0 FB ESP
## 3147 2 2 0 0 FB PRT
## 3148 2 2 0 0 BB PRT
## 3149 2 2 0 0 BB PRT
## 3150 2 2 0 0 FB ESP
## 3151 2 2 0 0 FB ESP
## 3152 2 1 0 0 FB ESP
## 3153 2 2 0 0 BB BRA
## 3154 2 2 0 0 BB PRT
## 3155 2 2 0 0 BB PRT
## 3156 2 2 0 0 FB ESP
## 3157 2 2 0 0 FB PRT
## 3158 2 2 0 0 FB PRT
## 3159 1 2 0 0 BB PRT
## 3160 2 2 0 0 BB PRT
## 3161 2 2 0 0 BB PRT
## 3162 2 2 0 0 FB ESP
## 3163 2 2 0 0 FB ESP
## 3164 2 2 0 0 FB PRT
## 3165 2 2 0 0 BB PRT
## 3166 2 2 0 0 FB PRT
## 3167 2 2 0 0 FB ESP
## 3168 2 2 0 0 FB ESP
## 3169 2 2 0 0 BB PRT
## 3170 2 2 0 0 BB PRT
## 3171 2 2 0 0 BB PRT
## 3172 2 2 0 0 BB PRT
## 3173 2 2 0 0 FB ESP
## 3174 2 2 0 0 FB ESP
## 3175 2 2 0 0 FB PRT
## 3176 2 2 0 0 FB PRT
## 3177 2 2 0 0 BB PRT
## 3178 2 2 0 0 FB PRT
## 3179 2 1 0 0 FB ESP
## 3180 2 2 0 0 FB PRT
## 3181 2 2 0 0 HB PRT
## 3182 2 0 0 0 SC ESP
## 3183 2 1 0 0 HB PRT
## 3184 1 2 0 0 BB PRT
## 3185 1 2 0 0 BB PRT
## 3186 1 2 0 1 BB PRT
## 3187 1 2 0 0 BB PRT
## 3188 1 2 0 0 BB PRT
## 3189 1 2 0 0 BB PRT
## 3190 1 2 0 0 BB PRT
## 3191 1 2 0 0 BB PRT
## 3192 1 2 0 0 BB PRT
## 3193 1 2 0 0 BB PRT
## 3194 1 2 1 0 BB PRT
## 3195 1 2 0 0 BB PRT
## 3196 1 2 0 0 BB PRT
## 3197 1 2 2 0 BB PRT
## 3198 1 2 0 0 BB PRT
## 3199 1 2 0 0 BB PRT
## 3200 1 2 0 0 BB PRT
## 3201 1 2 0 0 BB PRT
## 3202 1 2 0 0 BB PRT
## 3203 1 2 0 0 BB PRT
## 3204 1 2 0 0 BB PRT
## 3205 1 2 0 0 BB PRT
## 3206 1 2 0 1 HB PRT
## 3207 1 2 2 0 BB PRT
## 3208 1 2 0 0 HB GBR
## 3209 1 2 0 0 HB PRT
## 3210 1 2 0 0 BB PRT
## 3211 1 2 0 0 BB PRT
## 3212 1 2 0 0 BB PRT
## 3213 1 2 0 0 BB PRT
## 3214 1 2 0 1 BB PRT
## 3215 1 2 0 0 BB PRT
## 3216 1 2 0 0 BB PRT
## 3217 1 2 0 0 BB PRT
## 3218 1 2 1 0 BB PRT
## 3219 1 2 0 0 BB PRT
## 3220 1 2 0 0 BB PRT
## 3221 1 2 0 0 BB PRT
## 3222 1 2 0 0 HB PRT
## 3223 1 2 2 0 BB PRT
## 3224 1 2 0 1 BB PRT
## 3225 1 2 0 0 BB PRT
## market_segment distribution_channel is_repeated_guest
## 1 Direct Direct 0
## 2 Direct Direct 0
## 3 Direct Direct 0
## 4 Corporate Corporate 0
## 5 Online TA TA/TO 0
## 6 Online TA TA/TO 0
## 7 Direct Direct 0
## 8 Direct Direct 0
## 9 Online TA TA/TO 0
## 10 Offline TA/TO TA/TO 0
## 11 Online TA TA/TO 0
## 12 Online TA TA/TO 0
## 13 Online TA TA/TO 0
## 14 Online TA TA/TO 0
## 15 Online TA TA/TO 0
## 16 Online TA TA/TO 0
## 17 Offline TA/TO TA/TO 0
## 18 Online TA TA/TO 0
## 19 Corporate Corporate 0
## 20 Direct Direct 0
## 21 Online TA TA/TO 0
## 22 Direct Direct 0
## 23 Direct Direct 0
## 24 Direct Direct 0
## 25 Offline TA/TO TA/TO 0
## 26 Offline TA/TO TA/TO 0
## 27 Offline TA/TO TA/TO 0
## 28 Online TA TA/TO 0
## 29 Online TA TA/TO 0
## 30 Online TA TA/TO 0
## 31 Direct Direct 0
## 32 Offline TA/TO TA/TO 0
## 33 Direct Direct 0
## 34 Offline TA/TO TA/TO 0
## 35 Online TA TA/TO 0
## 36 Online TA TA/TO 0
## 37 Online TA TA/TO 0
## 38 Online TA TA/TO 0
## 39 Online TA TA/TO 0
## 40 Direct Direct 0
## 41 Online TA TA/TO 0
## 42 Offline TA/TO TA/TO 0
## 43 Direct Direct 0
## 44 Direct Direct 0
## 45 Online TA TA/TO 0
## 46 Online TA TA/TO 0
## 47 Offline TA/TO TA/TO 0
## 48 Offline TA/TO TA/TO 0
## 49 Offline TA/TO TA/TO 0
## 50 Online TA TA/TO 0
## 51 Offline TA/TO TA/TO 0
## 52 Offline TA/TO TA/TO 0
## 53 Offline TA/TO TA/TO 0
## 54 Online TA TA/TO 0
## 55 Online TA TA/TO 0
## 56 Direct Direct 0
## 57 Direct Direct 0
## 58 Online TA TA/TO 0
## 59 Direct Direct 0
## 60 Online TA TA/TO 0
## 61 Online TA TA/TO 0
## 62 Online TA TA/TO 0
## 63 Direct Direct 0
## 64 Offline TA/TO TA/TO 0
## 65 Online TA TA/TO 0
## 66 Online TA TA/TO 0
## 67 Online TA TA/TO 0
## 68 Online TA TA/TO 0
## 69 Offline TA/TO TA/TO 0
## 70 Online TA TA/TO 0
## 71 Online TA TA/TO 0
## 72 Online TA TA/TO 0
## 73 Offline TA/TO TA/TO 0
## 74 Online TA TA/TO 0
## 75 Online TA TA/TO 0
## 76 Online TA TA/TO 0
## 77 Online TA TA/TO 0
## 78 Online TA TA/TO 0
## 79 Offline TA/TO TA/TO 0
## 80 Offline TA/TO TA/TO 0
## 81 Offline TA/TO TA/TO 0
## 82 Offline TA/TO TA/TO 0
## 83 Offline TA/TO TA/TO 0
## 84 Direct Direct 0
## 85 Offline TA/TO TA/TO 0
## 86 Offline TA/TO TA/TO 0
## 87 Online TA TA/TO 0
## 88 Offline TA/TO TA/TO 0
## 89 Online TA TA/TO 0
## 90 Online TA TA/TO 0
## 91 Online TA TA/TO 0
## 92 Online TA TA/TO 0
## 93 Online TA TA/TO 0
## 94 Online TA TA/TO 0
## 95 Online TA TA/TO 0
## 96 Online TA TA/TO 0
## 97 Online TA TA/TO 0
## 98 Offline TA/TO TA/TO 0
## 99 Online TA TA/TO 0
## 100 Direct Direct 0
## 101 Direct Direct 0
## 102 Offline TA/TO TA/TO 0
## 103 Offline TA/TO TA/TO 0
## 104 Online TA TA/TO 0
## 105 Online TA TA/TO 0
## 106 Online TA TA/TO 0
## 107 Direct Direct 0
## 108 Online TA TA/TO 0
## 109 Offline TA/TO TA/TO 0
## 110 Online TA TA/TO 0
## 111 Online TA TA/TO 0
## 112 Online TA TA/TO 0
## 113 Online TA TA/TO 0
## 114 Online TA TA/TO 0
## 115 Online TA TA/TO 0
## 116 Online TA TA/TO 0
## 117 Offline TA/TO TA/TO 0
## 118 Offline TA/TO TA/TO 0
## 119 Direct Direct 0
## 120 Online TA TA/TO 0
## 121 Offline TA/TO TA/TO 0
## 122 Online TA TA/TO 0
## 123 Direct Direct 0
## 124 Online TA TA/TO 0
## 125 Online TA TA/TO 0
## 126 Complementary Direct 0
## 127 Online TA TA/TO 0
## 128 Online TA TA/TO 0
## 129 Online TA TA/TO 0
## 130 Online TA TA/TO 0
## 131 Online TA TA/TO 0
## 132 Online TA TA/TO 0
## 133 Online TA TA/TO 0
## 134 Online TA TA/TO 0
## 135 Online TA TA/TO 0
## 136 Online TA TA/TO 0
## 137 Online TA TA/TO 0
## 138 Online TA TA/TO 0
## 139 Online TA TA/TO 0
## 140 Direct Direct 0
## 141 Online TA TA/TO 0
## 142 Online TA TA/TO 0
## 143 Online TA TA/TO 0
## 144 Offline TA/TO TA/TO 0
## 145 Online TA TA/TO 0
## 146 Online TA TA/TO 0
## 147 Online TA TA/TO 0
## 148 Online TA TA/TO 0
## 149 Online TA TA/TO 0
## 150 Offline TA/TO TA/TO 0
## 151 Direct Direct 0
## 152 Online TA TA/TO 0
## 153 Online TA TA/TO 0
## 154 Offline TA/TO TA/TO 0
## 155 Online TA TA/TO 0
## 156 Offline TA/TO TA/TO 0
## 157 Direct Direct 0
## 158 Offline TA/TO TA/TO 0
## 159 Offline TA/TO TA/TO 0
## 160 Offline TA/TO TA/TO 0
## 161 Online TA TA/TO 0
## 162 Online TA TA/TO 0
## 163 Online TA TA/TO 0
## 164 Offline TA/TO TA/TO 0
## 165 Direct Direct 0
## 166 Online TA TA/TO 0
## 167 Online TA TA/TO 0
## 168 Online TA TA/TO 0
## 169 Direct Direct 0
## 170 Direct Direct 0
## 171 Online TA TA/TO 0
## 172 Online TA TA/TO 0
## 173 Online TA TA/TO 0
## 174 Online TA TA/TO 0
## 175 Offline TA/TO TA/TO 0
## 176 Online TA TA/TO 0
## 177 Online TA TA/TO 0
## 178 Direct Direct 0
## 179 Online TA TA/TO 0
## 180 Online TA TA/TO 0
## 181 Online TA TA/TO 0
## 182 Offline TA/TO TA/TO 0
## 183 Offline TA/TO TA/TO 0
## 184 Online TA TA/TO 0
## 185 Online TA TA/TO 0
## 186 Offline TA/TO TA/TO 0
## 187 Offline TA/TO TA/TO 0
## 188 Direct Direct 0
## 189 Offline TA/TO TA/TO 0
## 190 Direct Direct 0
## 191 Offline TA/TO TA/TO 0
## 192 Offline TA/TO TA/TO 0
## 193 Offline TA/TO TA/TO 0
## 194 Online TA TA/TO 0
## 195 Online TA TA/TO 0
## 196 Direct Direct 0
## 197 Direct Direct 0
## 198 Online TA TA/TO 0
## 199 Online TA TA/TO 0
## 200 Direct Direct 0
## 201 Online TA TA/TO 0
## 202 Online TA TA/TO 0
## 203 Online TA TA/TO 0
## 204 Offline TA/TO TA/TO 0
## 205 Direct Direct 0
## 206 Offline TA/TO TA/TO 0
## 207 Online TA TA/TO 0
## 208 Offline TA/TO TA/TO 0
## 209 Offline TA/TO TA/TO 0
## 210 Offline TA/TO TA/TO 0
## 211 Online TA TA/TO 0
## 212 Online TA TA/TO 0
## 213 Online TA TA/TO 0
## 214 Online TA TA/TO 0
## 215 Online TA TA/TO 0
## 216 Offline TA/TO TA/TO 0
## 217 Online TA TA/TO 0
## 218 Offline TA/TO TA/TO 0
## 219 Corporate Corporate 0
## 220 Corporate Corporate 0
## 221 Corporate Corporate 0
## 222 Direct Direct 0
## 223 Direct Direct 0
## 224 Offline TA/TO TA/TO 0
## 225 Online TA TA/TO 0
## 226 Offline TA/TO TA/TO 0
## 227 Online TA TA/TO 0
## 228 Direct Direct 0
## 229 Online TA TA/TO 0
## 230 Online TA TA/TO 0
## 231 Online TA TA/TO 0
## 232 Direct Direct 0
## 233 Direct Direct 0
## 234 Direct Direct 0
## 235 Online TA TA/TO 0
## 236 Online TA TA/TO 0
## 237 Online TA TA/TO 0
## 238 Online TA TA/TO 0
## 239 Online TA TA/TO 0
## 240 Direct Direct 0
## 241 Online TA TA/TO 0
## 242 Offline TA/TO TA/TO 0
## 243 Offline TA/TO TA/TO 0
## 244 Offline TA/TO TA/TO 0
## 245 Offline TA/TO TA/TO 0
## 246 Offline TA/TO TA/TO 0
## 247 Online TA TA/TO 0
## 248 Online TA TA/TO 0
## 249 Direct Direct 0
## 250 Online TA TA/TO 0
## 251 Online TA TA/TO 0
## 252 Online TA TA/TO 0
## 253 Online TA TA/TO 0
## 254 Online TA TA/TO 0
## 255 Online TA TA/TO 0
## 256 Online TA TA/TO 0
## 257 Online TA TA/TO 0
## 258 Online TA TA/TO 0
## 259 Direct Direct 0
## 260 Online TA TA/TO 0
## 261 Direct Direct 0
## 262 Direct Direct 0
## 263 Online TA TA/TO 0
## 264 Online TA TA/TO 0
## 265 Direct Direct 0
## 266 Online TA TA/TO 0
## 267 Online TA TA/TO 0
## 268 Direct Direct 0
## 269 Online TA TA/TO 0
## 270 Online TA TA/TO 0
## 271 Offline TA/TO TA/TO 0
## 272 Online TA TA/TO 0
## 273 Offline TA/TO TA/TO 0
## 274 Direct Direct 0
## 275 Online TA TA/TO 0
## 276 Online TA TA/TO 0
## 277 Online TA TA/TO 0
## 278 Online TA TA/TO 0
## 279 Online TA TA/TO 0
## 280 Online TA TA/TO 0
## 281 Offline TA/TO TA/TO 0
## 282 Online TA TA/TO 0
## 283 Direct TA/TO 0
## 284 Online TA TA/TO 0
## 285 Offline TA/TO TA/TO 0
## 286 Online TA TA/TO 0
## 287 Direct Direct 0
## 288 Online TA TA/TO 0
## 289 Online TA TA/TO 0
## 290 Online TA TA/TO 0
## 291 Online TA TA/TO 0
## 292 Direct Direct 0
## 293 Online TA TA/TO 0
## 294 Direct Direct 0
## 295 Online TA TA/TO 0
## 296 Corporate Corporate 0
## 297 Offline TA/TO TA/TO 0
## 298 Online TA TA/TO 0
## 299 Online TA TA/TO 0
## 300 Online TA TA/TO 0
## 301 Offline TA/TO TA/TO 0
## 302 Online TA TA/TO 0
## 303 Online TA TA/TO 0
## 304 Direct Direct 0
## 305 Online TA TA/TO 0
## 306 Direct Direct 0
## 307 Online TA TA/TO 0
## 308 Online TA TA/TO 0
## 309 Online TA TA/TO 0
## 310 Online TA TA/TO 0
## 311 Online TA TA/TO 0
## 312 Online TA TA/TO 0
## 313 Offline TA/TO TA/TO 0
## 314 Offline TA/TO TA/TO 0
## 315 Offline TA/TO TA/TO 0
## 316 Direct Direct 0
## 317 Offline TA/TO TA/TO 0
## 318 Offline TA/TO TA/TO 0
## 319 Offline TA/TO TA/TO 0
## 320 Offline TA/TO TA/TO 0
## 321 Online TA TA/TO 0
## 322 Offline TA/TO TA/TO 0
## 323 Online TA TA/TO 0
## 324 Online TA TA/TO 0
## 325 Online TA TA/TO 0
## 326 Online TA TA/TO 0
## 327 Offline TA/TO TA/TO 0
## 328 Offline TA/TO TA/TO 0
## 329 Offline TA/TO TA/TO 0
## 330 Offline TA/TO TA/TO 0
## 331 Online TA TA/TO 0
## 332 Online TA TA/TO 0
## 333 Online TA TA/TO 0
## 334 Online TA TA/TO 0
## 335 Online TA TA/TO 0
## 336 Online TA TA/TO 0
## 337 Offline TA/TO TA/TO 0
## 338 Online TA TA/TO 0
## 339 Online TA TA/TO 0
## 340 Offline TA/TO TA/TO 0
## 341 Online TA TA/TO 0
## 342 Direct Direct 0
## 343 Offline TA/TO TA/TO 0
## 344 Online TA TA/TO 0
## 345 Online TA TA/TO 0
## 346 Online TA TA/TO 0
## 347 Online TA TA/TO 0
## 348 Offline TA/TO TA/TO 0
## 349 Online TA TA/TO 0
## 350 Online TA TA/TO 0
## 351 Online TA TA/TO 0
## 352 Online TA TA/TO 0
## 353 Online TA TA/TO 0
## 354 Online TA TA/TO 0
## 355 Direct Direct 0
## 356 Online TA TA/TO 0
## 357 Online TA TA/TO 0
## 358 Online TA TA/TO 0
## 359 Online TA TA/TO 0
## 360 Online TA TA/TO 0
## 361 Online TA TA/TO 0
## 362 Online TA TA/TO 0
## 363 Direct Direct 0
## 364 Corporate Corporate 0
## 365 Offline TA/TO TA/TO 0
## 366 Direct TA/TO 0
## 367 Direct Direct 0
## 368 Offline TA/TO TA/TO 0
## 369 Direct Direct 0
## 370 Online TA TA/TO 0
## 371 Online TA TA/TO 0
## 372 Online TA TA/TO 0
## 373 Direct Direct 0
## 374 Direct Direct 0
## 375 Online TA TA/TO 0
## 376 Online TA TA/TO 0
## 377 Offline TA/TO TA/TO 0
## 378 Online TA TA/TO 0
## 379 Offline TA/TO TA/TO 0
## 380 Direct Direct 0
## 381 Direct Direct 0
## 382 Online TA TA/TO 0
## 383 Online TA TA/TO 0
## 384 Online TA TA/TO 0
## 385 Offline TA/TO TA/TO 0
## 386 Online TA TA/TO 0
## 387 Offline TA/TO TA/TO 0
## 388 Corporate Corporate 0
## 389 Online TA TA/TO 0
## 390 Online TA TA/TO 0
## 391 Online TA TA/TO 0
## 392 Online TA TA/TO 0
## 393 Online TA TA/TO 0
## 394 Direct Direct 0
## 395 Direct Direct 0
## 396 Direct Direct 0
## 397 Direct TA/TO 0
## 398 Online TA TA/TO 0
## 399 Online TA TA/TO 0
## 400 Online TA TA/TO 0
## 401 Offline TA/TO TA/TO 0
## 402 Online TA TA/TO 0
## 403 Direct Direct 0
## 404 Online TA TA/TO 0
## 405 Online TA TA/TO 0
## 406 Online TA TA/TO 0
## 407 Direct Direct 0
## 408 Corporate Corporate 0
## 409 Offline TA/TO TA/TO 0
## 410 Online TA TA/TO 0
## 411 Online TA TA/TO 0
## 412 Online TA TA/TO 0
## 413 Online TA TA/TO 0
## 414 Groups Direct 0
## 415 Groups Direct 0
## 416 Groups Direct 0
## 417 Groups Direct 0
## 418 Groups Direct 0
## 419 Online TA TA/TO 0
## 420 Groups Direct 0
## 421 Groups Direct 0
## 422 Groups Direct 0
## 423 Groups Direct 0
## 424 Groups Direct 0
## 425 Groups Direct 0
## 426 Groups Direct 0
## 427 Groups Direct 0
## 428 Groups Direct 0
## 429 Groups Direct 0
## 430 Groups Direct 0
## 431 Groups Direct 0
## 432 Groups Direct 0
## 433 Groups Direct 0
## 434 Groups Direct 0
## 435 Online TA TA/TO 0
## 436 Online TA TA/TO 0
## 437 Online TA TA/TO 0
## 438 Direct Direct 0
## 439 Online TA TA/TO 0
## 440 Online TA TA/TO 0
## 441 Direct Direct 0
## 442 Online TA TA/TO 0
## 443 Online TA TA/TO 0
## 444 Online TA TA/TO 0
## 445 Direct Direct 0
## 446 Direct Direct 0
## 447 Online TA TA/TO 0
## 448 Online TA TA/TO 0
## 449 Online TA TA/TO 0
## 450 Direct Direct 0
## 451 Direct Direct 0
## 452 Direct Direct 0
## 453 Online TA TA/TO 0
## 454 Online TA TA/TO 0
## 455 Online TA TA/TO 0
## 456 Online TA TA/TO 0
## 457 Offline TA/TO TA/TO 0
## 458 Offline TA/TO TA/TO 0
## 459 Direct Direct 0
## 460 Online TA TA/TO 0
## 461 Direct Direct 0
## 462 Online TA TA/TO 0
## 463 Online TA TA/TO 0
## 464 Offline TA/TO TA/TO 0
## 465 Online TA TA/TO 0
## 466 Direct Direct 0
## 467 Online TA TA/TO 0
## 468 Online TA TA/TO 0
## 469 Direct Direct 0
## 470 Direct Direct 0
## 471 Offline TA/TO TA/TO 0
## 472 Online TA TA/TO 0
## 473 Offline TA/TO TA/TO 0
## 474 Online TA TA/TO 0
## 475 Offline TA/TO TA/TO 0
## 476 Offline TA/TO TA/TO 0
## 477 Direct Direct 0
## 478 Offline TA/TO TA/TO 0
## 479 Offline TA/TO TA/TO 0
## 480 Offline TA/TO TA/TO 0
## 481 Offline TA/TO TA/TO 0
## 482 Offline TA/TO TA/TO 0
## 483 Direct Direct 0
## 484 Online TA TA/TO 0
## 485 Direct Direct 0
## 486 Online TA TA/TO 0
## 487 Direct Direct 0
## 488 Online TA TA/TO 0
## 489 Online TA TA/TO 0
## 490 Offline TA/TO TA/TO 0
## 491 Online TA TA/TO 0
## 492 Online TA TA/TO 0
## 493 Online TA TA/TO 0
## 494 Direct Direct 0
## 495 Direct Direct 0
## 496 Online TA TA/TO 0
## 497 Online TA TA/TO 0
## 498 Online TA TA/TO 0
## 499 Offline TA/TO TA/TO 0
## 500 Online TA TA/TO 0
## 501 Online TA TA/TO 0
## 502 Online TA TA/TO 0
## 503 Offline TA/TO TA/TO 0
## 504 Online TA TA/TO 0
## 505 Direct Direct 0
## 506 Online TA TA/TO 0
## 507 Online TA TA/TO 0
## 508 Direct Direct 0
## 509 Online TA TA/TO 0
## 510 Direct Direct 0
## 511 Online TA TA/TO 0
## 512 Online TA TA/TO 0
## 513 Online TA TA/TO 0
## 514 Direct Direct 0
## 515 Direct Direct 0
## 516 Online TA TA/TO 0
## 517 Online TA TA/TO 0
## 518 Online TA TA/TO 0
## 519 Online TA TA/TO 0
## 520 Offline TA/TO TA/TO 0
## 521 Online TA TA/TO 0
## 522 Direct Direct 0
## 523 Direct Direct 0
## 524 Direct Direct 0
## 525 Online TA TA/TO 0
## 526 Direct Direct 0
## 527 Direct Direct 0
## 528 Online TA TA/TO 0
## 529 Offline TA/TO TA/TO 0
## 530 Direct Direct 0
## 531 Offline TA/TO TA/TO 0
## 532 Direct Direct 0
## 533 Direct Direct 0
## 534 Direct Direct 0
## 535 Offline TA/TO TA/TO 0
## 536 Online TA TA/TO 0
## 537 Offline TA/TO TA/TO 0
## 538 Online TA TA/TO 0
## 539 Direct Direct 0
## 540 Online TA TA/TO 0
## 541 Direct Direct 0
## 542 Online TA TA/TO 0
## 543 Online TA TA/TO 0
## 544 Online TA TA/TO 0
## 545 Online TA TA/TO 0
## 546 Direct Direct 0
## 547 Online TA TA/TO 0
## 548 Direct Direct 0
## 549 Offline TA/TO TA/TO 0
## 550 Offline TA/TO TA/TO 0
## 551 Online TA TA/TO 0
## 552 Online TA TA/TO 0
## 553 Offline TA/TO TA/TO 0
## 554 Offline TA/TO TA/TO 0
## 555 Online TA TA/TO 0
## 556 Online TA TA/TO 0
## 557 Offline TA/TO TA/TO 0
## 558 Online TA TA/TO 0
## 559 Online TA TA/TO 0
## 560 Online TA TA/TO 0
## 561 Offline TA/TO TA/TO 0
## 562 Offline TA/TO TA/TO 0
## 563 Online TA TA/TO 0
## 564 Offline TA/TO TA/TO 0
## 565 Offline TA/TO TA/TO 0
## 566 Online TA TA/TO 0
## 567 Offline TA/TO TA/TO 0
## 568 Online TA TA/TO 0
## 569 Offline TA/TO TA/TO 0
## 570 Online TA TA/TO 0
## 571 Online TA TA/TO 0
## 572 Online TA TA/TO 0
## 573 Online TA TA/TO 0
## 574 Direct Direct 0
## 575 Online TA TA/TO 0
## 576 Online TA TA/TO 0
## 577 Online TA TA/TO 0
## 578 Online TA TA/TO 0
## 579 Offline TA/TO TA/TO 0
## 580 Online TA TA/TO 0
## 581 Online TA TA/TO 0
## 582 Direct Direct 0
## 583 Online TA TA/TO 0
## 584 Offline TA/TO TA/TO 0
## 585 Direct Direct 0
## 586 Online TA TA/TO 0
## 587 Online TA TA/TO 0
## 588 Offline TA/TO TA/TO 0
## 589 Online TA TA/TO 0
## 590 Direct Direct 0
## 591 Online TA TA/TO 0
## 592 Offline TA/TO TA/TO 0
## 593 Offline TA/TO TA/TO 0
## 594 Offline TA/TO TA/TO 0
## 595 Offline TA/TO TA/TO 0
## 596 Offline TA/TO TA/TO 0
## 597 Offline TA/TO TA/TO 0
## 598 Offline TA/TO TA/TO 0
## 599 Offline TA/TO TA/TO 0
## 600 Online TA TA/TO 0
## 601 Corporate Corporate 0
## 602 Online TA TA/TO 0
## 603 Online TA TA/TO 0
## 604 Online TA TA/TO 0
## 605 Direct Direct 0
## 606 Direct Direct 0
## 607 Online TA TA/TO 0
## 608 Offline TA/TO TA/TO 0
## 609 Online TA TA/TO 0
## 610 Direct Direct 0
## 611 Online TA TA/TO 0
## 612 Direct Direct 0
## 613 Online TA TA/TO 0
## 614 Online TA TA/TO 0
## 615 Online TA TA/TO 0
## 616 Online TA TA/TO 0
## 617 Online TA TA/TO 0
## 618 Online TA TA/TO 0
## 619 Online TA TA/TO 0
## 620 Online TA TA/TO 0
## 621 Online TA TA/TO 0
## 622 Direct Direct 0
## 623 Direct Direct 0
## 624 Online TA TA/TO 0
## 625 Online TA TA/TO 0
## 626 Online TA TA/TO 0
## 627 Online TA TA/TO 0
## 628 Online TA TA/TO 0
## 629 Direct Direct 0
## 630 Offline TA/TO TA/TO 0
## 631 Online TA TA/TO 0
## 632 Online TA TA/TO 0
## 633 Offline TA/TO TA/TO 0
## 634 Online TA TA/TO 0
## 635 Online TA TA/TO 0
## 636 Direct Direct 0
## 637 Online TA TA/TO 0
## 638 Online TA TA/TO 0
## 639 Online TA TA/TO 0
## 640 Online TA TA/TO 0
## 641 Online TA TA/TO 0
## 642 Online TA TA/TO 0
## 643 Direct Direct 0
## 644 Online TA TA/TO 0
## 645 Online TA TA/TO 0
## 646 Offline TA/TO TA/TO 0
## 647 Online TA TA/TO 0
## 648 Online TA TA/TO 0
## 649 Offline TA/TO TA/TO 0
## 650 Online TA TA/TO 0
## 651 Online TA TA/TO 0
## 652 Online TA TA/TO 0
## 653 Online TA TA/TO 0
## 654 Offline TA/TO TA/TO 0
## 655 Online TA TA/TO 0
## 656 Online TA TA/TO 0
## 657 Direct Direct 0
## 658 Offline TA/TO TA/TO 0
## 659 Online TA TA/TO 0
## 660 Online TA TA/TO 0
## 661 Direct TA/TO 0
## 662 Online TA TA/TO 0
## 663 Offline TA/TO TA/TO 0
## 664 Offline TA/TO TA/TO 0
## 665 Offline TA/TO TA/TO 0
## 666 Online TA TA/TO 0
## 667 Offline TA/TO TA/TO 0
## 668 Offline TA/TO TA/TO 0
## 669 Online TA TA/TO 0
## 670 Offline TA/TO TA/TO 0
## 671 Online TA TA/TO 0
## 672 Direct Direct 0
## 673 Online TA TA/TO 0
## 674 Online TA TA/TO 0
## 675 Direct Direct 0
## 676 Online TA TA/TO 0
## 677 Offline TA/TO TA/TO 0
## 678 Online TA TA/TO 0
## 679 Offline TA/TO TA/TO 0
## 680 Online TA TA/TO 0
## 681 Online TA TA/TO 0
## 682 Online TA TA/TO 0
## 683 Online TA TA/TO 0
## 684 Direct Direct 0
## 685 Direct Direct 0
## 686 Online TA TA/TO 0
## 687 Online TA TA/TO 0
## 688 Online TA TA/TO 0
## 689 Online TA TA/TO 0
## 690 Online TA TA/TO 0
## 691 Online TA TA/TO 0
## 692 Online TA TA/TO 0
## 693 Online TA TA/TO 0
## 694 Offline TA/TO TA/TO 0
## 695 Direct Direct 0
## 696 Online TA TA/TO 0
## 697 Online TA TA/TO 0
## 698 Online TA TA/TO 0
## 699 Online TA TA/TO 0
## 700 Online TA TA/TO 0
## 701 Online TA TA/TO 0
## 702 Offline TA/TO TA/TO 0
## 703 Offline TA/TO TA/TO 0
## 704 Online TA TA/TO 0
## 705 Online TA TA/TO 0
## 706 Direct Direct 0
## 707 Online TA TA/TO 0
## 708 Online TA TA/TO 0
## 709 Online TA TA/TO 0
## 710 Online TA TA/TO 0
## 711 Online TA TA/TO 0
## 712 Online TA TA/TO 0
## 713 Offline TA/TO TA/TO 0
## 714 Direct Direct 0
## 715 Online TA TA/TO 0
## 716 Offline TA/TO TA/TO 0
## 717 Direct Direct 0
## 718 Online TA TA/TO 0
## 719 Direct Direct 0
## 720 Offline TA/TO TA/TO 0
## 721 Offline TA/TO TA/TO 0
## 722 Offline TA/TO TA/TO 0
## 723 Online TA TA/TO 0
## 724 Online TA TA/TO 0
## 725 Online TA TA/TO 0
## 726 Online TA TA/TO 0
## 727 Online TA TA/TO 0
## 728 Online TA TA/TO 0
## 729 Online TA TA/TO 0
## 730 Online TA TA/TO 0
## 731 Direct Direct 0
## 732 Online TA TA/TO 0
## 733 Online TA TA/TO 0
## 734 Direct Direct 0
## 735 Online TA TA/TO 0
## 736 Offline TA/TO TA/TO 0
## 737 Online TA TA/TO 0
## 738 Offline TA/TO TA/TO 0
## 739 Direct Direct 0
## 740 Direct Direct 0
## 741 Offline TA/TO TA/TO 0
## 742 Offline TA/TO TA/TO 0
## 743 Online TA TA/TO 0
## 744 Online TA TA/TO 0
## 745 Online TA TA/TO 0
## 746 Offline TA/TO TA/TO 0
## 747 Online TA TA/TO 0
## 748 Online TA TA/TO 0
## 749 Online TA TA/TO 0
## 750 Offline TA/TO TA/TO 0
## 751 Online TA TA/TO 0
## 752 Offline TA/TO TA/TO 0
## 753 Online TA TA/TO 0
## 754 Online TA TA/TO 0
## 755 Online TA TA/TO 0
## 756 Online TA TA/TO 0
## 757 Online TA TA/TO 0
## 758 Online TA TA/TO 0
## 759 Offline TA/TO TA/TO 0
## 760 Online TA TA/TO 0
## 761 Online TA TA/TO 0
## 762 Online TA TA/TO 0
## 763 Online TA TA/TO 0
## 764 Online TA TA/TO 0
## 765 Online TA TA/TO 0
## 766 Offline TA/TO TA/TO 0
## 767 Offline TA/TO TA/TO 0
## 768 Direct Direct 0
## 769 Online TA TA/TO 0
## 770 Online TA TA/TO 0
## 771 Direct Direct 0
## 772 Online TA TA/TO 0
## 773 Offline TA/TO TA/TO 0
## 774 Offline TA/TO TA/TO 0
## 775 Offline TA/TO TA/TO 0
## 776 Online TA TA/TO 0
## 777 Online TA TA/TO 0
## 778 Online TA TA/TO 0
## 779 Online TA TA/TO 0
## 780 Offline TA/TO TA/TO 0
## 781 Direct Direct 0
## 782 Direct Direct 0
## 783 Direct Direct 0
## 784 Offline TA/TO TA/TO 0
## 785 Direct Direct 0
## 786 Online TA TA/TO 0
## 787 Online TA TA/TO 0
## 788 Online TA TA/TO 0
## 789 Offline TA/TO TA/TO 0
## 790 Online TA TA/TO 0
## 791 Online TA TA/TO 0
## 792 Online TA TA/TO 0
## 793 Offline TA/TO TA/TO 0
## 794 Online TA TA/TO 0
## 795 Online TA TA/TO 0
## 796 Offline TA/TO TA/TO 0
## 797 Corporate Corporate 0
## 798 Online TA TA/TO 0
## 799 Online TA TA/TO 0
## 800 Direct Direct 0
## 801 Online TA TA/TO 0
## 802 Online TA TA/TO 0
## 803 Online TA TA/TO 0
## 804 Offline TA/TO TA/TO 0
## 805 Online TA TA/TO 0
## 806 Online TA TA/TO 0
## 807 Online TA TA/TO 0
## 808 Online TA TA/TO 0
## 809 Online TA TA/TO 0
## 810 Online TA TA/TO 0
## 811 Direct Direct 0
## 812 Offline TA/TO TA/TO 0
## 813 Offline TA/TO TA/TO 0
## 814 Direct Direct 0
## 815 Offline TA/TO TA/TO 0
## 816 Online TA TA/TO 0
## 817 Direct Direct 0
## 818 Online TA TA/TO 0
## 819 Online TA TA/TO 0
## 820 Online TA TA/TO 0
## 821 Direct Direct 0
## 822 Online TA TA/TO 0
## 823 Online TA TA/TO 0
## 824 Online TA TA/TO 0
## 825 Online TA TA/TO 0
## 826 Online TA TA/TO 0
## 827 Online TA TA/TO 0
## 828 Online TA TA/TO 0
## 829 Online TA TA/TO 0
## 830 Online TA TA/TO 0
## 831 Online TA TA/TO 0
## 832 Direct Direct 0
## 833 Online TA TA/TO 0
## 834 Online TA TA/TO 0
## 835 Online TA TA/TO 0
## 836 Online TA TA/TO 0
## 837 Direct Direct 0
## 838 Online TA TA/TO 0
## 839 Online TA TA/TO 0
## 840 Online TA TA/TO 0
## 841 Online TA TA/TO 0
## 842 Offline TA/TO TA/TO 0
## 843 Offline TA/TO TA/TO 0
## 844 Offline TA/TO TA/TO 0
## 845 Offline TA/TO TA/TO 0
## 846 Direct Direct 0
## 847 Direct Direct 0
## 848 Online TA TA/TO 0
## 849 Direct Direct 0
## 850 Direct Direct 0
## 851 Online TA TA/TO 0
## 852 Online TA TA/TO 0
## 853 Online TA TA/TO 0
## 854 Direct Direct 0
## 855 Online TA TA/TO 0
## 856 Online TA TA/TO 0
## 857 Direct Direct 0
## 858 Online TA TA/TO 0
## 859 Online TA TA/TO 0
## 860 Online TA TA/TO 0
## 861 Online TA TA/TO 0
## 862 Online TA TA/TO 0
## 863 Direct Direct 0
## 864 Offline TA/TO TA/TO 0
## 865 Online TA TA/TO 0
## 866 Online TA TA/TO 0
## 867 Online TA TA/TO 0
## 868 Online TA TA/TO 0
## 869 Online TA TA/TO 0
## 870 Offline TA/TO TA/TO 0
## 871 Online TA TA/TO 0
## 872 Online TA TA/TO 0
## 873 Online TA TA/TO 0
## 874 Online TA TA/TO 0
## 875 Offline TA/TO TA/TO 0
## 876 Direct Direct 0
## 877 Direct Direct 0
## 878 Direct Direct 0
## 879 Direct Direct 0
## 880 Offline TA/TO TA/TO 0
## 881 Offline TA/TO TA/TO 0
## 882 Offline TA/TO TA/TO 0
## 883 Direct Direct 0
## 884 Online TA TA/TO 0
## 885 Online TA TA/TO 0
## 886 Offline TA/TO TA/TO 0
## 887 Online TA TA/TO 0
## 888 Offline TA/TO TA/TO 0
## 889 Online TA TA/TO 0
## 890 Offline TA/TO TA/TO 0
## 891 Offline TA/TO TA/TO 0
## 892 Online TA TA/TO 0
## 893 Online TA TA/TO 0
## 894 Online TA TA/TO 0
## 895 Online TA TA/TO 0
## 896 Direct Direct 0
## 897 Direct Direct 0
## 898 Online TA TA/TO 0
## 899 Direct Direct 0
## 900 Direct Direct 0
## 901 Online TA TA/TO 0
## 902 Online TA TA/TO 0
## 903 Online TA TA/TO 0
## 904 Offline TA/TO TA/TO 0
## 905 Online TA TA/TO 0
## 906 Offline TA/TO TA/TO 0
## 907 Direct Direct 0
## 908 Online TA TA/TO 0
## 909 Offline TA/TO TA/TO 0
## 910 Direct Direct 0
## 911 Online TA TA/TO 0
## 912 Direct Direct 0
## 913 Online TA TA/TO 0
## 914 Online TA TA/TO 0
## 915 Online TA TA/TO 0
## 916 Online TA TA/TO 0
## 917 Online TA TA/TO 0
## 918 Online TA TA/TO 0
## 919 Online TA TA/TO 0
## 920 Online TA TA/TO 0
## 921 Online TA TA/TO 0
## 922 Direct Direct 0
## 923 Online TA TA/TO 0
## 924 Online TA TA/TO 0
## 925 Direct Direct 0
## 926 Online TA TA/TO 0
## 927 Direct Direct 0
## 928 Offline TA/TO TA/TO 0
## 929 Online TA TA/TO 0
## 930 Online TA TA/TO 0
## 931 Online TA TA/TO 0
## 932 Online TA TA/TO 0
## 933 Online TA TA/TO 0
## 934 Direct Direct 0
## 935 Online TA TA/TO 0
## 936 Corporate Corporate 0
## 937 Online TA TA/TO 0
## 938 Online TA TA/TO 0
## 939 Online TA TA/TO 0
## 940 Online TA TA/TO 0
## 941 Online TA TA/TO 0
## 942 Online TA TA/TO 0
## 943 Direct Direct 0
## 944 Online TA TA/TO 0
## 945 Online TA TA/TO 0
## 946 Online TA TA/TO 0
## 947 Online TA TA/TO 0
## 948 Offline TA/TO TA/TO 0
## 949 Online TA TA/TO 0
## 950 Online TA TA/TO 0
## 951 Online TA TA/TO 0
## 952 Offline TA/TO TA/TO 0
## 953 Offline TA/TO TA/TO 0
## 954 Offline TA/TO TA/TO 0
## 955 Online TA TA/TO 0
## 956 Online TA TA/TO 0
## 957 Online TA TA/TO 0
## 958 Online TA TA/TO 0
## 959 Online TA TA/TO 0
## 960 Online TA TA/TO 0
## 961 Online TA TA/TO 0
## 962 Direct Direct 0
## 963 Online TA TA/TO 0
## 964 Online TA TA/TO 0
## 965 Online TA TA/TO 0
## 966 Online TA TA/TO 0
## 967 Online TA TA/TO 0
## 968 Online TA TA/TO 0
## 969 Online TA TA/TO 0
## 970 Online TA TA/TO 0
## 971 Direct Direct 0
## 972 Offline TA/TO TA/TO 0
## 973 Offline TA/TO TA/TO 0
## 974 Direct Direct 0
## 975 Direct Direct 0
## 976 Offline TA/TO TA/TO 0
## 977 Online TA TA/TO 0
## 978 Online TA TA/TO 0
## 979 Offline TA/TO TA/TO 0
## 980 Offline TA/TO TA/TO 0
## 981 Offline TA/TO TA/TO 0
## 982 Online TA TA/TO 0
## 983 Direct Direct 0
## 984 Online TA TA/TO 0
## 985 Direct Direct 0
## 986 Online TA TA/TO 0
## 987 Online TA TA/TO 0
## 988 Direct Direct 0
## 989 Online TA TA/TO 0
## 990 Online TA TA/TO 0
## 991 Online TA TA/TO 0
## 992 Online TA TA/TO 0
## 993 Online TA TA/TO 0
## 994 Online TA TA/TO 0
## 995 Online TA TA/TO 0
## 996 Online TA TA/TO 0
## 997 Online TA TA/TO 0
## 998 Online TA TA/TO 0
## 999 Direct Direct 0
## 1000 Offline TA/TO TA/TO 0
## 1001 Offline TA/TO TA/TO 0
## 1002 Online TA TA/TO 0
## 1003 Offline TA/TO TA/TO 0
## 1004 Online TA TA/TO 0
## 1005 Offline TA/TO TA/TO 0
## 1006 Offline TA/TO TA/TO 0
## 1007 Offline TA/TO TA/TO 0
## 1008 Online TA TA/TO 0
## 1009 Offline TA/TO TA/TO 0
## 1010 Online TA TA/TO 0
## 1011 Online TA TA/TO 0
## 1012 Online TA TA/TO 0
## 1013 Online TA TA/TO 0
## 1014 Online TA TA/TO 0
## 1015 Offline TA/TO TA/TO 0
## 1016 Online TA TA/TO 0
## 1017 Online TA TA/TO 0
## 1018 Offline TA/TO TA/TO 0
## 1019 Online TA TA/TO 0
## 1020 Online TA TA/TO 0
## 1021 Direct Direct 0
## 1022 Online TA TA/TO 0
## 1023 Online TA TA/TO 0
## 1024 Direct Direct 0
## 1025 Online TA TA/TO 0
## 1026 Online TA TA/TO 0
## 1027 Direct Direct 0
## 1028 Direct Direct 0
## 1029 Direct Direct 0
## 1030 Online TA TA/TO 0
## 1031 Online TA TA/TO 0
## 1032 Direct Direct 0
## 1033 Online TA TA/TO 0
## 1034 Direct Direct 0
## 1035 Online TA TA/TO 0
## 1036 Online TA TA/TO 0
## 1037 Online TA TA/TO 0
## 1038 Online TA TA/TO 0
## 1039 Online TA TA/TO 0
## 1040 Online TA TA/TO 0
## 1041 Direct Direct 0
## 1042 Online TA TA/TO 0
## 1043 Offline TA/TO TA/TO 0
## 1044 Online TA TA/TO 0
## 1045 Online TA TA/TO 0
## 1046 Offline TA/TO TA/TO 0
## 1047 Online TA TA/TO 0
## 1048 Online TA TA/TO 0
## 1049 Online TA TA/TO 0
## 1050 Online TA TA/TO 0
## 1051 Online TA TA/TO 0
## 1052 Online TA TA/TO 0
## 1053 Online TA TA/TO 0
## 1054 Offline TA/TO TA/TO 0
## 1055 Offline TA/TO TA/TO 0
## 1056 Online TA TA/TO 0
## 1057 Online TA TA/TO 0
## 1058 Online TA TA/TO 0
## 1059 Online TA TA/TO 0
## 1060 Groups Corporate 0
## 1061 Direct Direct 0
## 1062 Groups Corporate 0
## 1063 Online TA TA/TO 0
## 1064 Online TA TA/TO 0
## 1065 Online TA TA/TO 0
## 1066 Online TA TA/TO 0
## 1067 Online TA TA/TO 0
## 1068 Online TA TA/TO 0
## 1069 Offline TA/TO TA/TO 0
## 1070 Offline TA/TO TA/TO 0
## 1071 Offline TA/TO TA/TO 0
## 1072 Online TA TA/TO 0
## 1073 Online TA TA/TO 0
## 1074 Online TA TA/TO 0
## 1075 Corporate Corporate 0
## 1076 Corporate Corporate 0
## 1077 Corporate Corporate 0
## 1078 Online TA TA/TO 0
## 1079 Online TA TA/TO 0
## 1080 Offline TA/TO TA/TO 0
## 1081 Direct Direct 0
## 1082 Online TA TA/TO 0
## 1083 Direct Direct 0
## 1084 Online TA TA/TO 0
## 1085 Online TA TA/TO 0
## 1086 Direct Direct 0
## 1087 Online TA TA/TO 0
## 1088 Online TA TA/TO 0
## 1089 Online TA TA/TO 0
## 1090 Direct Direct 0
## 1091 Online TA TA/TO 0
## 1092 Online TA TA/TO 0
## 1093 Offline TA/TO TA/TO 0
## 1094 Online TA TA/TO 0
## 1095 Direct Direct 0
## 1096 Direct Direct 0
## 1097 Online TA TA/TO 0
## 1098 Online TA TA/TO 0
## 1099 Online TA TA/TO 0
## 1100 Online TA TA/TO 0
## 1101 Online TA TA/TO 0
## 1102 Online TA TA/TO 0
## 1103 Online TA TA/TO 0
## 1104 Online TA TA/TO 0
## 1105 Online TA TA/TO 0
## 1106 Offline TA/TO TA/TO 0
## 1107 Online TA TA/TO 0
## 1108 Direct Direct 0
## 1109 Direct Direct 0
## 1110 Online TA TA/TO 0
## 1111 Online TA TA/TO 0
## 1112 Direct Direct 0
## 1113 Direct Direct 0
## 1114 Online TA TA/TO 0
## 1115 Offline TA/TO TA/TO 0
## 1116 Offline TA/TO TA/TO 0
## 1117 Direct Direct 0
## 1118 Direct Direct 0
## 1119 Offline TA/TO TA/TO 0
## 1120 Direct Direct 0
## 1121 Online TA TA/TO 0
## 1122 Offline TA/TO TA/TO 0
## 1123 Online TA TA/TO 0
## 1124 Online TA TA/TO 0
## 1125 Offline TA/TO TA/TO 0
## 1126 Offline TA/TO TA/TO 0
## 1127 Offline TA/TO TA/TO 0
## 1128 Offline TA/TO TA/TO 0
## 1129 Offline TA/TO TA/TO 0
## 1130 Direct Direct 0
## 1131 Offline TA/TO TA/TO 0
## 1132 Offline TA/TO TA/TO 0
## 1133 Direct Direct 0
## 1134 Offline TA/TO TA/TO 0
## 1135 Offline TA/TO TA/TO 0
## 1136 Offline TA/TO TA/TO 0
## 1137 Offline TA/TO TA/TO 0
## 1138 Offline TA/TO TA/TO 0
## 1139 Offline TA/TO TA/TO 0
## 1140 Offline TA/TO TA/TO 0
## 1141 Online TA TA/TO 0
## 1142 Direct Direct 0
## 1143 Online TA TA/TO 0
## 1144 Direct Direct 0
## 1145 Offline TA/TO TA/TO 0
## 1146 Online TA TA/TO 0
## 1147 Direct Direct 0
## 1148 Online TA TA/TO 0
## 1149 Offline TA/TO TA/TO 0
## 1150 Online TA TA/TO 0
## 1151 Groups Corporate 0
## 1152 Groups Corporate 0
## 1153 Corporate Corporate 0
## 1154 Groups Corporate 0
## 1155 Groups Corporate 0
## 1156 Corporate Corporate 0
## 1157 Online TA TA/TO 0
## 1158 Groups Corporate 0
## 1159 Groups Corporate 0
## 1160 Online TA TA/TO 0
## 1161 Corporate Corporate 0
## 1162 Corporate Corporate 0
## 1163 Corporate Corporate 0
## 1164 Online TA TA/TO 0
## 1165 Online TA TA/TO 0
## 1166 Online TA TA/TO 0
## 1167 Online TA TA/TO 0
## 1168 Online TA TA/TO 0
## 1169 Online TA TA/TO 0
## 1170 Online TA TA/TO 0
## 1171 Online TA TA/TO 0
## 1172 Online TA TA/TO 0
## 1173 Online TA TA/TO 0
## 1174 Online TA TA/TO 0
## 1175 Offline TA/TO TA/TO 0
## 1176 Direct Direct 0
## 1177 Online TA TA/TO 0
## 1178 Online TA TA/TO 0
## 1179 Online TA TA/TO 0
## 1180 Online TA TA/TO 0
## 1181 Offline TA/TO TA/TO 0
## 1182 Online TA TA/TO 0
## 1183 Online TA TA/TO 0
## 1184 Direct Direct 0
## 1185 Offline TA/TO TA/TO 0
## 1186 Online TA TA/TO 0
## 1187 Online TA TA/TO 0
## 1188 Offline TA/TO TA/TO 0
## 1189 Offline TA/TO TA/TO 0
## 1190 Offline TA/TO TA/TO 0
## 1191 Offline TA/TO TA/TO 0
## 1192 Offline TA/TO TA/TO 0
## 1193 Offline TA/TO TA/TO 0
## 1194 Offline TA/TO TA/TO 0
## 1195 Online TA TA/TO 0
## 1196 Online TA TA/TO 0
## 1197 Online TA TA/TO 0
## 1198 Online TA TA/TO 0
## 1199 Corporate Corporate 0
## 1200 Direct Direct 0
## 1201 Online TA TA/TO 0
## 1202 Online TA TA/TO 0
## 1203 Direct Direct 0
## 1204 Online TA TA/TO 0
## 1205 Online TA TA/TO 0
## 1206 Offline TA/TO TA/TO 0
## 1207 Offline TA/TO TA/TO 0
## 1208 Offline TA/TO TA/TO 0
## 1209 Offline TA/TO TA/TO 0
## 1210 Online TA TA/TO 0
## 1211 Online TA TA/TO 0
## 1212 Online TA TA/TO 0
## 1213 Direct Direct 0
## 1214 Online TA TA/TO 0
## 1215 Online TA TA/TO 0
## 1216 Online TA TA/TO 0
## 1217 Online TA TA/TO 0
## 1218 Online TA TA/TO 0
## 1219 Offline TA/TO TA/TO 0
## 1220 Direct Direct 0
## 1221 Online TA TA/TO 0
## 1222 Direct Direct 0
## 1223 Direct Direct 0
## 1224 Online TA TA/TO 0
## 1225 Online TA TA/TO 0
## 1226 Online TA TA/TO 0
## 1227 Online TA TA/TO 0
## 1228 Online TA TA/TO 0
## 1229 Online TA TA/TO 0
## 1230 Online TA TA/TO 0
## 1231 Online TA TA/TO 0
## 1232 Offline TA/TO TA/TO 0
## 1233 Online TA TA/TO 0
## 1234 Direct Direct 0
## 1235 Offline TA/TO TA/TO 0
## 1236 Offline TA/TO TA/TO 0
## 1237 Online TA TA/TO 0
## 1238 Online TA TA/TO 0
## 1239 Offline TA/TO TA/TO 0
## 1240 Online TA TA/TO 0
## 1241 Direct Direct 0
## 1242 Online TA TA/TO 0
## 1243 Online TA TA/TO 0
## 1244 Online TA TA/TO 0
## 1245 Online TA TA/TO 0
## 1246 Online TA TA/TO 0
## 1247 Online TA TA/TO 0
## 1248 Online TA TA/TO 0
## 1249 Online TA TA/TO 0
## 1250 Offline TA/TO TA/TO 0
## 1251 Online TA TA/TO 0
## 1252 Online TA TA/TO 0
## 1253 Direct Direct 0
## 1254 Online TA TA/TO 0
## 1255 Direct Direct 0
## 1256 Online TA TA/TO 0
## 1257 Online TA TA/TO 0
## 1258 Direct Direct 0
## 1259 Online TA TA/TO 0
## 1260 Online TA TA/TO 0
## 1261 Online TA TA/TO 0
## 1262 Online TA TA/TO 0
## 1263 Online TA TA/TO 0
## 1264 Online TA TA/TO 0
## 1265 Offline TA/TO TA/TO 0
## 1266 Online TA TA/TO 0
## 1267 Direct Direct 0
## 1268 Direct Direct 0
## 1269 Online TA TA/TO 0
## 1270 Direct Direct 0
## 1271 Online TA TA/TO 0
## 1272 Offline TA/TO TA/TO 0
## 1273 Offline TA/TO TA/TO 0
## 1274 Online TA TA/TO 0
## 1275 Direct Direct 0
## 1276 Offline TA/TO TA/TO 0
## 1277 Offline TA/TO TA/TO 0
## 1278 Offline TA/TO TA/TO 0
## 1279 Offline TA/TO TA/TO 0
## 1280 Offline TA/TO TA/TO 0
## 1281 Direct Direct 0
## 1282 Direct Direct 0
## 1283 Offline TA/TO TA/TO 0
## 1284 Online TA TA/TO 0
## 1285 Direct Direct 0
## 1286 Direct Direct 0
## 1287 Online TA TA/TO 0
## 1288 Online TA TA/TO 0
## 1289 Offline TA/TO TA/TO 0
## 1290 Online TA TA/TO 0
## 1291 Offline TA/TO TA/TO 0
## 1292 Direct Direct 0
## 1293 Online TA TA/TO 0
## 1294 Offline TA/TO TA/TO 0
## 1295 Direct Direct 0
## 1296 Online TA TA/TO 0
## 1297 Direct Direct 0
## 1298 Online TA TA/TO 0
## 1299 Direct Direct 0
## 1300 Online TA TA/TO 0
## 1301 Online TA TA/TO 0
## 1302 Online TA TA/TO 0
## 1303 Online TA TA/TO 0
## 1304 Direct Direct 0
## 1305 Online TA TA/TO 0
## 1306 Online TA TA/TO 0
## 1307 Online TA TA/TO 0
## 1308 Offline TA/TO TA/TO 0
## 1309 Offline TA/TO TA/TO 0
## 1310 Online TA TA/TO 0
## 1311 Offline TA/TO TA/TO 0
## 1312 Direct Direct 0
## 1313 Online TA TA/TO 0
## 1314 Direct Direct 0
## 1315 Online TA TA/TO 0
## 1316 Direct Direct 0
## 1317 Direct Direct 0
## 1318 Online TA TA/TO 0
## 1319 Corporate Corporate 0
## 1320 Online TA TA/TO 0
## 1321 Direct Direct 0
## 1322 Direct Direct 0
## 1323 Online TA TA/TO 0
## 1324 Online TA TA/TO 0
## 1325 Online TA TA/TO 0
## 1326 Online TA TA/TO 0
## 1327 Online TA TA/TO 0
## 1328 Online TA TA/TO 0
## 1329 Online TA TA/TO 0
## 1330 Online TA TA/TO 0
## 1331 Direct Direct 0
## 1332 Direct Direct 0
## 1333 Direct Direct 0
## 1334 Direct Direct 0
## 1335 Direct Direct 0
## 1336 Online TA TA/TO 0
## 1337 Online TA TA/TO 0
## 1338 Online TA TA/TO 0
## 1339 Offline TA/TO TA/TO 0
## 1340 Offline TA/TO TA/TO 0
## 1341 Direct Direct 0
## 1342 Online TA TA/TO 0
## 1343 Online TA TA/TO 0
## 1344 Online TA TA/TO 0
## 1345 Online TA TA/TO 0
## 1346 Online TA TA/TO 0
## 1347 Online TA TA/TO 0
## 1348 Online TA TA/TO 0
## 1349 Online TA TA/TO 0
## 1350 Direct Direct 0
## 1351 Offline TA/TO TA/TO 0
## 1352 Online TA TA/TO 0
## 1353 Online TA TA/TO 0
## 1354 Online TA TA/TO 0
## 1355 Offline TA/TO TA/TO 0
## 1356 Direct Direct 0
## 1357 Offline TA/TO TA/TO 0
## 1358 Corporate Corporate 0
## 1359 Direct Direct 0
## 1360 Offline TA/TO TA/TO 0
## 1361 Online TA TA/TO 0
## 1362 Online TA TA/TO 0
## 1363 Online TA TA/TO 0
## 1364 Online TA TA/TO 0
## 1365 Online TA TA/TO 0
## 1366 Direct Direct 0
## 1367 Online TA TA/TO 0
## 1368 Online TA TA/TO 0
## 1369 Online TA TA/TO 0
## 1370 Online TA TA/TO 0
## 1371 Online TA TA/TO 0
## 1372 Offline TA/TO TA/TO 0
## 1373 Direct Direct 0
## 1374 Online TA TA/TO 0
## 1375 Offline TA/TO TA/TO 0
## 1376 Offline TA/TO TA/TO 0
## 1377 Online TA TA/TO 0
## 1378 Online TA TA/TO 0
## 1379 Offline TA/TO TA/TO 0
## 1380 Offline TA/TO TA/TO 0
## 1381 Online TA TA/TO 0
## 1382 Offline TA/TO TA/TO 0
## 1383 Online TA TA/TO 0
## 1384 Online TA TA/TO 0
## 1385 Offline TA/TO TA/TO 0
## 1386 Direct Direct 0
## 1387 Online TA TA/TO 0
## 1388 Direct Direct 0
## 1389 Offline TA/TO TA/TO 0
## 1390 Offline TA/TO TA/TO 0
## 1391 Offline TA/TO TA/TO 0
## 1392 Direct Direct 0
## 1393 Online TA TA/TO 0
## 1394 Direct Direct 0
## 1395 Online TA TA/TO 0
## 1396 Direct Direct 0
## 1397 Online TA TA/TO 0
## 1398 Direct Direct 0
## 1399 Direct Direct 0
## 1400 Online TA TA/TO 0
## 1401 Online TA TA/TO 0
## 1402 Direct Direct 0
## 1403 Direct Direct 0
## 1404 Direct Direct 0
## 1405 Direct Direct 0
## 1406 Offline TA/TO TA/TO 0
## 1407 Online TA TA/TO 0
## 1408 Online TA TA/TO 0
## 1409 Online TA TA/TO 0
## 1410 Online TA TA/TO 0
## 1411 Online TA TA/TO 0
## 1412 Direct Direct 0
## 1413 Direct Direct 0
## 1414 Online TA TA/TO 0
## 1415 Direct Direct 0
## 1416 Online TA TA/TO 0
## 1417 Direct Direct 0
## 1418 Online TA TA/TO 0
## 1419 Direct Direct 0
## 1420 Online TA TA/TO 0
## 1421 Offline TA/TO TA/TO 0
## 1422 Online TA TA/TO 0
## 1423 Direct Direct 0
## 1424 Offline TA/TO TA/TO 0
## 1425 Online TA TA/TO 0
## 1426 Offline TA/TO TA/TO 0
## 1427 Online TA TA/TO 0
## 1428 Direct Direct 0
## 1429 Online TA TA/TO 0
## 1430 Online TA TA/TO 0
## 1431 Online TA TA/TO 0
## 1432 Online TA TA/TO 0
## 1433 Online TA TA/TO 0
## 1434 Online TA TA/TO 0
## 1435 Direct Direct 0
## 1436 Offline TA/TO TA/TO 0
## 1437 Online TA TA/TO 0
## 1438 Offline TA/TO Direct 0
## 1439 Online TA TA/TO 0
## 1440 Direct Direct 0
## 1441 Direct Direct 0
## 1442 Online TA TA/TO 0
## 1443 Online TA TA/TO 0
## 1444 Offline TA/TO TA/TO 0
## 1445 Online TA TA/TO 0
## 1446 Direct Direct 0
## 1447 Online TA TA/TO 0
## 1448 Online TA TA/TO 0
## 1449 Direct Direct 0
## 1450 Online TA TA/TO 0
## 1451 Online TA TA/TO 0
## 1452 Offline TA/TO TA/TO 0
## 1453 Online TA TA/TO 0
## 1454 Direct Direct 0
## 1455 Online TA TA/TO 0
## 1456 Online TA TA/TO 0
## 1457 Direct Direct 0
## 1458 Online TA TA/TO 0
## 1459 Online TA TA/TO 0
## 1460 Online TA TA/TO 0
## 1461 Online TA TA/TO 0
## 1462 Online TA TA/TO 0
## 1463 Online TA TA/TO 0
## 1464 Offline TA/TO TA/TO 0
## 1465 Online TA TA/TO 0
## 1466 Direct Direct 0
## 1467 Online TA TA/TO 0
## 1468 Online TA TA/TO 0
## 1469 Online TA TA/TO 0
## 1470 Online TA TA/TO 0
## 1471 Online TA TA/TO 0
## 1472 Online TA TA/TO 0
## 1473 Online TA TA/TO 0
## 1474 Online TA TA/TO 0
## 1475 Online TA TA/TO 0
## 1476 Online TA TA/TO 0
## 1477 Direct Direct 0
## 1478 Offline TA/TO TA/TO 0
## 1479 Offline TA/TO TA/TO 0
## 1480 Online TA TA/TO 0
## 1481 Online TA TA/TO 0
## 1482 Online TA TA/TO 0
## 1483 Online TA TA/TO 0
## 1484 Offline TA/TO TA/TO 0
## 1485 Online TA TA/TO 0
## 1486 Direct Direct 0
## 1487 Online TA TA/TO 0
## 1488 Online TA TA/TO 0
## 1489 Direct Direct 0
## 1490 Direct Direct 0
## 1491 Online TA TA/TO 0
## 1492 Online TA TA/TO 0
## 1493 Online TA TA/TO 0
## 1494 Direct Direct 0
## 1495 Online TA TA/TO 0
## 1496 Online TA TA/TO 0
## 1497 Direct Direct 0
## 1498 Direct Direct 0
## 1499 Online TA TA/TO 0
## 1500 Direct Direct 0
## 1501 Online TA TA/TO 0
## 1502 Direct Direct 0
## 1503 Online TA TA/TO 0
## 1504 Direct TA/TO 0
## 1505 Offline TA/TO TA/TO 0
## 1506 Online TA TA/TO 0
## 1507 Online TA TA/TO 0
## 1508 Online TA TA/TO 0
## 1509 Online TA TA/TO 0
## 1510 Online TA TA/TO 0
## 1511 Direct Direct 0
## 1512 Online TA TA/TO 0
## 1513 Online TA TA/TO 0
## 1514 Online TA TA/TO 0
## 1515 Offline TA/TO TA/TO 0
## 1516 Online TA TA/TO 0
## 1517 Offline TA/TO TA/TO 0
## 1518 Corporate Corporate 0
## 1519 Online TA TA/TO 0
## 1520 Online TA TA/TO 0
## 1521 Online TA TA/TO 0
## 1522 Online TA TA/TO 0
## 1523 Online TA TA/TO 0
## 1524 Online TA TA/TO 0
## 1525 Direct Direct 0
## 1526 Groups TA/TO 0
## 1527 Online TA TA/TO 0
## 1528 Online TA TA/TO 0
## 1529 Online TA TA/TO 0
## 1530 Offline TA/TO TA/TO 0
## 1531 Corporate Direct 0
## 1532 Corporate Direct 0
## 1533 Offline TA/TO TA/TO 0
## 1534 Corporate Direct 0
## 1535 Direct Direct 0
## 1536 Corporate Direct 0
## 1537 Corporate Direct 0
## 1538 Corporate Direct 0
## 1539 Corporate Direct 0
## 1540 Direct Direct 0
## 1541 Offline TA/TO TA/TO 0
## 1542 Online TA TA/TO 0
## 1543 Offline TA/TO TA/TO 0
## 1544 Offline TA/TO TA/TO 0
## 1545 Direct TA/TO 0
## 1546 Direct TA/TO 0
## 1547 Direct Direct 0
## 1548 Online TA TA/TO 0
## 1549 Direct Direct 0
## 1550 Offline TA/TO TA/TO 0
## 1551 Offline TA/TO TA/TO 0
## 1552 Offline TA/TO TA/TO 0
## 1553 Online TA TA/TO 0
## 1554 Direct Direct 0
## 1555 Offline TA/TO TA/TO 0
## 1556 Corporate Corporate 0
## 1557 Online TA TA/TO 0
## 1558 Online TA TA/TO 0
## 1559 Direct Direct 0
## 1560 Groups TA/TO 0
## 1561 Online TA TA/TO 0
## 1562 Online TA TA/TO 0
## 1563 Online TA TA/TO 0
## 1564 Online TA TA/TO 0
## 1565 Online TA TA/TO 0
## 1566 Offline TA/TO TA/TO 0
## 1567 Offline TA/TO TA/TO 0
## 1568 Direct Direct 0
## 1569 Offline TA/TO TA/TO 0
## 1570 Online TA TA/TO 0
## 1571 Offline TA/TO TA/TO 0
## 1572 Direct Direct 0
## 1573 Online TA TA/TO 0
## 1574 Online TA TA/TO 0
## 1575 Online TA TA/TO 0
## 1576 Online TA TA/TO 0
## 1577 Online TA TA/TO 0
## 1578 Offline TA/TO TA/TO 0
## 1579 Direct Direct 0
## 1580 Online TA TA/TO 0
## 1581 Offline TA/TO TA/TO 0
## 1582 Offline TA/TO TA/TO 0
## 1583 Online TA TA/TO 0
## 1584 Online TA TA/TO 0
## 1585 Direct Direct 0
## 1586 Direct Direct 0
## 1587 Online TA TA/TO 0
## 1588 Offline TA/TO TA/TO 0
## 1589 Direct Direct 0
## 1590 Online TA TA/TO 0
## 1591 Online TA TA/TO 0
## 1592 Direct TA/TO 0
## 1593 Direct Direct 0
## 1594 Online TA TA/TO 0
## 1595 Offline TA/TO TA/TO 0
## 1596 Offline TA/TO TA/TO 0
## 1597 Direct Direct 0
## 1598 Online TA TA/TO 0
## 1599 Offline TA/TO TA/TO 0
## 1600 Direct Direct 0
## 1601 Online TA TA/TO 0
## 1602 Direct Direct 0
## 1603 Direct Direct 0
## 1604 Online TA TA/TO 0
## 1605 Offline TA/TO TA/TO 0
## 1606 Offline TA/TO TA/TO 0
## 1607 Offline TA/TO TA/TO 0
## 1608 Online TA TA/TO 0
## 1609 Offline TA/TO TA/TO 0
## 1610 Online TA TA/TO 0
## 1611 Direct Direct 0
## 1612 Online TA TA/TO 0
## 1613 Online TA TA/TO 0
## 1614 Online TA TA/TO 0
## 1615 Offline TA/TO Direct 0
## 1616 Online TA TA/TO 0
## 1617 Direct Direct 0
## 1618 Online TA TA/TO 0
## 1619 Online TA TA/TO 0
## 1620 Offline TA/TO TA/TO 0
## 1621 Online TA TA/TO 0
## 1622 Online TA TA/TO 0
## 1623 Direct Direct 0
## 1624 Online TA TA/TO 0
## 1625 Online TA TA/TO 0
## 1626 Direct Direct 0
## 1627 Online TA TA/TO 0
## 1628 Offline TA/TO TA/TO 0
## 1629 Online TA TA/TO 0
## 1630 Offline TA/TO TA/TO 0
## 1631 Direct Direct 0
## 1632 Direct Direct 0
## 1633 Offline TA/TO TA/TO 0
## 1634 Online TA TA/TO 0
## 1635 Direct Direct 0
## 1636 Offline TA/TO TA/TO 0
## 1637 Offline TA/TO TA/TO 0
## 1638 Direct Direct 0
## 1639 Offline TA/TO TA/TO 0
## 1640 Offline TA/TO TA/TO 0
## 1641 Offline TA/TO TA/TO 0
## 1642 Online TA TA/TO 0
## 1643 Online TA TA/TO 0
## 1644 Direct Direct 0
## 1645 Offline TA/TO TA/TO 0
## 1646 Online TA TA/TO 0
## 1647 Direct Direct 0
## 1648 Online TA TA/TO 0
## 1649 Direct Direct 0
## 1650 Online TA TA/TO 0
## 1651 Online TA TA/TO 0
## 1652 Online TA TA/TO 0
## 1653 Online TA TA/TO 0
## 1654 Online TA TA/TO 0
## 1655 Online TA TA/TO 0
## 1656 Online TA TA/TO 0
## 1657 Online TA TA/TO 0
## 1658 Offline TA/TO TA/TO 0
## 1659 Direct Direct 0
## 1660 Direct TA/TO 0
## 1661 Direct TA/TO 0
## 1662 Direct TA/TO 0
## 1663 Online TA TA/TO 0
## 1664 Online TA TA/TO 0
## 1665 Online TA TA/TO 0
## 1666 Direct Direct 0
## 1667 Offline TA/TO TA/TO 0
## 1668 Offline TA/TO TA/TO 0
## 1669 Offline TA/TO TA/TO 0
## 1670 Online TA TA/TO 0
## 1671 Offline TA/TO TA/TO 0
## 1672 Direct Direct 0
## 1673 Offline TA/TO TA/TO 0
## 1674 Direct Direct 0
## 1675 Direct Direct 0
## 1676 Corporate Corporate 0
## 1677 Offline TA/TO TA/TO 0
## 1678 Direct Direct 0
## 1679 Offline TA/TO TA/TO 0
## 1680 Online TA TA/TO 0
## 1681 Online TA TA/TO 0
## 1682 Corporate Direct 0
## 1683 Online TA TA/TO 0
## 1684 Direct Direct 0
## 1685 Online TA TA/TO 0
## 1686 Online TA TA/TO 0
## 1687 Offline TA/TO TA/TO 0
## 1688 Offline TA/TO TA/TO 0
## 1689 Online TA TA/TO 0
## 1690 Online TA TA/TO 0
## 1691 Online TA TA/TO 0
## 1692 Online TA TA/TO 0
## 1693 Online TA TA/TO 0
## 1694 Online TA TA/TO 0
## 1695 Online TA TA/TO 0
## 1696 Offline TA/TO TA/TO 0
## 1697 Direct Direct 0
## 1698 Online TA TA/TO 0
## 1699 Online TA TA/TO 0
## 1700 Online TA TA/TO 0
## 1701 Online TA TA/TO 0
## 1702 Online TA TA/TO 0
## 1703 Online TA TA/TO 0
## 1704 Direct Direct 0
## 1705 Online TA TA/TO 0
## 1706 Complementary Direct 0
## 1707 Online TA TA/TO 0
## 1708 Online TA TA/TO 0
## 1709 Online TA TA/TO 0
## 1710 Online TA TA/TO 0
## 1711 Offline TA/TO TA/TO 0
## 1712 Offline TA/TO TA/TO 0
## 1713 Offline TA/TO TA/TO 0
## 1714 Offline TA/TO TA/TO 0
## 1715 Offline TA/TO TA/TO 0
## 1716 Offline TA/TO TA/TO 0
## 1717 Offline TA/TO TA/TO 0
## 1718 Direct Direct 0
## 1719 Online TA TA/TO 0
## 1720 Online TA TA/TO 0
## 1721 Offline TA/TO TA/TO 0
## 1722 Offline TA/TO TA/TO 0
## 1723 Online TA TA/TO 0
## 1724 Direct Direct 0
## 1725 Offline TA/TO TA/TO 0
## 1726 Offline TA/TO TA/TO 0
## 1727 Online TA TA/TO 0
## 1728 Corporate Direct 0
## 1729 Direct Direct 0
## 1730 Online TA TA/TO 0
## 1731 Online TA TA/TO 0
## 1732 Direct Direct 0
## 1733 Online TA TA/TO 0
## 1734 Online TA TA/TO 0
## 1735 Online TA TA/TO 0
## 1736 Online TA TA/TO 0
## 1737 Offline TA/TO TA/TO 0
## 1738 Offline TA/TO TA/TO 0
## 1739 Online TA TA/TO 0
## 1740 Offline TA/TO TA/TO 0
## 1741 Offline TA/TO TA/TO 0
## 1742 Online TA TA/TO 0
## 1743 Online TA TA/TO 0
## 1744 Online TA TA/TO 0
## 1745 Groups TA/TO 0
## 1746 Online TA TA/TO 0
## 1747 Online TA TA/TO 0
## 1748 Online TA TA/TO 0
## 1749 Online TA TA/TO 0
## 1750 Offline TA/TO TA/TO 0
## 1751 Online TA TA/TO 0
## 1752 Online TA TA/TO 0
## 1753 Offline TA/TO TA/TO 0
## 1754 Direct Direct 0
## 1755 Offline TA/TO TA/TO 0
## 1756 Offline TA/TO TA/TO 0
## 1757 Direct Direct 0
## 1758 Online TA TA/TO 0
## 1759 Online TA TA/TO 0
## 1760 Online TA TA/TO 0
## 1761 Online TA TA/TO 0
## 1762 Online TA TA/TO 0
## 1763 Online TA TA/TO 0
## 1764 Online TA TA/TO 0
## 1765 Direct Direct 0
## 1766 Direct Direct 0
## 1767 Direct Direct 0
## 1768 Online TA TA/TO 0
## 1769 Online TA TA/TO 0
## 1770 Offline TA/TO TA/TO 0
## 1771 Offline TA/TO TA/TO 0
## 1772 Offline TA/TO TA/TO 0
## 1773 Offline TA/TO TA/TO 0
## 1774 Direct Direct 0
## 1775 Offline TA/TO TA/TO 0
## 1776 Offline TA/TO TA/TO 0
## 1777 Offline TA/TO TA/TO 0
## 1778 Online TA TA/TO 0
## 1779 Online TA TA/TO 0
## 1780 Online TA TA/TO 0
## 1781 Offline TA/TO TA/TO 0
## 1782 Online TA TA/TO 0
## 1783 Offline TA/TO TA/TO 0
## 1784 Online TA TA/TO 0
## 1785 Online TA TA/TO 0
## 1786 Online TA TA/TO 0
## 1787 Direct Direct 0
## 1788 Online TA TA/TO 0
## 1789 Online TA TA/TO 0
## 1790 Online TA TA/TO 0
## 1791 Offline TA/TO TA/TO 0
## 1792 Online TA TA/TO 0
## 1793 Direct Direct 0
## 1794 Groups TA/TO 0
## 1795 Online TA TA/TO 0
## 1796 Online TA TA/TO 0
## 1797 Online TA TA/TO 0
## 1798 Online TA TA/TO 0
## 1799 Online TA TA/TO 0
## 1800 Online TA TA/TO 0
## 1801 Online TA TA/TO 0
## 1802 Offline TA/TO TA/TO 0
## 1803 Offline TA/TO TA/TO 0
## 1804 Online TA TA/TO 0
## 1805 Offline TA/TO TA/TO 0
## 1806 Online TA TA/TO 0
## 1807 Online TA TA/TO 0
## 1808 Online TA TA/TO 0
## 1809 Direct Direct 0
## 1810 Offline TA/TO TA/TO 0
## 1811 Online TA TA/TO 0
## 1812 Online TA TA/TO 0
## 1813 Online TA TA/TO 0
## 1814 Corporate Corporate 0
## 1815 Online TA TA/TO 0
## 1816 Online TA TA/TO 0
## 1817 Online TA TA/TO 0
## 1818 Direct Direct 0
## 1819 Online TA TA/TO 0
## 1820 Direct Direct 0
## 1821 Direct Direct 0
## 1822 Online TA TA/TO 0
## 1823 Online TA TA/TO 0
## 1824 Online TA TA/TO 0
## 1825 Online TA TA/TO 0
## 1826 Online TA TA/TO 0
## 1827 Offline TA/TO TA/TO 0
## 1828 Offline TA/TO TA/TO 0
## 1829 Online TA TA/TO 0
## 1830 Offline TA/TO TA/TO 0
## 1831 Online TA TA/TO 0
## 1832 Online TA TA/TO 0
## 1833 Online TA TA/TO 0
## 1834 Offline TA/TO TA/TO 0
## 1835 Online TA TA/TO 0
## 1836 Online TA TA/TO 0
## 1837 Online TA TA/TO 0
## 1838 Direct Direct 0
## 1839 Online TA TA/TO 0
## 1840 Direct Direct 0
## 1841 Direct Direct 0
## 1842 Direct Direct 0
## 1843 Direct Direct 0
## 1844 Direct Direct 0
## 1845 Online TA TA/TO 0
## 1846 Online TA TA/TO 0
## 1847 Online TA TA/TO 0
## 1848 Direct Direct 0
## 1849 Direct Direct 0
## 1850 Online TA TA/TO 0
## 1851 Offline TA/TO TA/TO 0
## 1852 Online TA TA/TO 0
## 1853 Offline TA/TO TA/TO 0
## 1854 Online TA TA/TO 0
## 1855 Direct Direct 0
## 1856 Offline TA/TO TA/TO 0
## 1857 Offline TA/TO TA/TO 0
## 1858 Direct Direct 0
## 1859 Direct Direct 0
## 1860 Online TA TA/TO 0
## 1861 Online TA TA/TO 0
## 1862 Direct Direct 0
## 1863 Offline TA/TO TA/TO 0
## 1864 Offline TA/TO TA/TO 0
## 1865 Direct Direct 0
## 1866 Offline TA/TO TA/TO 0
## 1867 Online TA TA/TO 0
## 1868 Offline TA/TO TA/TO 0
## 1869 Offline TA/TO TA/TO 0
## 1870 Online TA TA/TO 0
## 1871 Offline TA/TO TA/TO 0
## 1872 Offline TA/TO TA/TO 0
## 1873 Online TA TA/TO 0
## 1874 Direct Direct 0
## 1875 Online TA TA/TO 0
## 1876 Online TA TA/TO 0
## 1877 Online TA TA/TO 0
## 1878 Online TA TA/TO 0
## 1879 Online TA TA/TO 0
## 1880 Offline TA/TO TA/TO 0
## 1881 Offline TA/TO TA/TO 0
## 1882 Online TA TA/TO 0
## 1883 Offline TA/TO TA/TO 0
## 1884 Online TA TA/TO 0
## 1885 Offline TA/TO TA/TO 0
## 1886 Online TA TA/TO 0
## 1887 Online TA TA/TO 0
## 1888 Offline TA/TO TA/TO 0
## 1889 Online TA TA/TO 0
## 1890 Offline TA/TO TA/TO 0
## 1891 Online TA TA/TO 0
## 1892 Online TA TA/TO 0
## 1893 Direct Direct 0
## 1894 Online TA TA/TO 0
## 1895 Offline TA/TO TA/TO 0
## 1896 Online TA TA/TO 0
## 1897 Offline TA/TO TA/TO 0
## 1898 Online TA TA/TO 0
## 1899 Online TA TA/TO 0
## 1900 Offline TA/TO TA/TO 0
## 1901 Offline TA/TO TA/TO 0
## 1902 Offline TA/TO TA/TO 0
## 1903 Offline TA/TO TA/TO 0
## 1904 Offline TA/TO TA/TO 0
## 1905 Groups TA/TO 0
## 1906 Groups TA/TO 0
## 1907 Groups TA/TO 0
## 1908 Online TA TA/TO 0
## 1909 Groups TA/TO 0
## 1910 Groups TA/TO 0
## 1911 Groups TA/TO 0
## 1912 Groups TA/TO 0
## 1913 Online TA TA/TO 0
## 1914 Groups TA/TO 0
## 1915 Groups TA/TO 0
## 1916 Online TA TA/TO 0
## 1917 Online TA TA/TO 0
## 1918 Direct Direct 0
## 1919 Online TA TA/TO 0
## 1920 Online TA TA/TO 0
## 1921 Offline TA/TO TA/TO 0
## 1922 Offline TA/TO TA/TO 0
## 1923 Offline TA/TO TA/TO 0
## 1924 Online TA TA/TO 0
## 1925 Online TA TA/TO 0
## 1926 Offline TA/TO TA/TO 0
## 1927 Online TA TA/TO 0
## 1928 Online TA TA/TO 0
## 1929 Online TA TA/TO 0
## 1930 Offline TA/TO TA/TO 0
## 1931 Offline TA/TO TA/TO 0
## 1932 Online TA TA/TO 0
## 1933 Online TA TA/TO 0
## 1934 Online TA TA/TO 0
## 1935 Online TA TA/TO 0
## 1936 Online TA TA/TO 0
## 1937 Direct Direct 0
## 1938 Online TA TA/TO 0
## 1939 Offline TA/TO TA/TO 0
## 1940 Direct Direct 0
## 1941 Online TA TA/TO 0
## 1942 Direct Direct 0
## 1943 Corporate Corporate 0
## 1944 Corporate Corporate 0
## 1945 Corporate Corporate 0
## 1946 Corporate Corporate 0
## 1947 Corporate Corporate 0
## 1948 Online TA TA/TO 0
## 1949 Online TA TA/TO 0
## 1950 Offline TA/TO TA/TO 0
## 1951 Offline TA/TO TA/TO 0
## 1952 Offline TA/TO TA/TO 0
## 1953 Online TA TA/TO 0
## 1954 Online TA TA/TO 0
## 1955 Online TA TA/TO 0
## 1956 Direct Direct 0
## 1957 Offline TA/TO TA/TO 0
## 1958 Online TA TA/TO 0
## 1959 Offline TA/TO TA/TO 0
## 1960 Online TA TA/TO 0
## 1961 Online TA TA/TO 0
## 1962 Offline TA/TO TA/TO 0
## 1963 Direct Direct 0
## 1964 Online TA TA/TO 0
## 1965 Online TA TA/TO 0
## 1966 Offline TA/TO TA/TO 0
## 1967 Online TA TA/TO 0
## 1968 Offline TA/TO TA/TO 0
## 1969 Offline TA/TO TA/TO 0
## 1970 Direct Direct 0
## 1971 Online TA TA/TO 0
## 1972 Direct Direct 0
## 1973 Online TA TA/TO 0
## 1974 Direct Direct 0
## 1975 Direct Direct 0
## 1976 Online TA TA/TO 0
## 1977 Online TA TA/TO 0
## 1978 Online TA TA/TO 0
## 1979 Online TA TA/TO 0
## 1980 Online TA TA/TO 0
## 1981 Online TA TA/TO 0
## 1982 Direct Direct 0
## 1983 Direct Direct 0
## 1984 Online TA TA/TO 0
## 1985 Online TA TA/TO 0
## 1986 Offline TA/TO TA/TO 0
## 1987 Online TA TA/TO 0
## 1988 Online TA TA/TO 0
## 1989 Online TA TA/TO 0
## 1990 Online TA TA/TO 0
## 1991 Online TA TA/TO 0
## 1992 Online TA TA/TO 0
## 1993 Online TA TA/TO 0
## 1994 Online TA TA/TO 0
## 1995 Corporate Corporate 0
## 1996 Online TA TA/TO 0
## 1997 Offline TA/TO TA/TO 0
## 1998 Online TA TA/TO 0
## 1999 Online TA TA/TO 0
## 2000 Online TA TA/TO 0
## 2001 Direct Direct 0
## 2002 Online TA TA/TO 0
## 2003 Online TA TA/TO 0
## 2004 Offline TA/TO TA/TO 0
## 2005 Direct Direct 0
## 2006 Offline TA/TO TA/TO 0
## 2007 Online TA TA/TO 0
## 2008 Online TA TA/TO 0
## 2009 Online TA TA/TO 0
## 2010 Corporate Corporate 0
## 2011 Offline TA/TO TA/TO 0
## 2012 Online TA TA/TO 0
## 2013 Online TA TA/TO 0
## 2014 Offline TA/TO TA/TO 0
## 2015 Offline TA/TO TA/TO 0
## 2016 Offline TA/TO TA/TO 0
## 2017 Offline TA/TO TA/TO 0
## 2018 Online TA TA/TO 0
## 2019 Offline TA/TO TA/TO 0
## 2020 Online TA TA/TO 0
## 2021 Offline TA/TO TA/TO 0
## 2022 Online TA TA/TO 0
## 2023 Direct Direct 0
## 2024 Online TA TA/TO 0
## 2025 Online TA TA/TO 0
## 2026 Offline TA/TO TA/TO 0
## 2027 Online TA TA/TO 0
## 2028 Online TA TA/TO 0
## 2029 Online TA TA/TO 0
## 2030 Offline TA/TO TA/TO 0
## 2031 Online TA TA/TO 0
## 2032 Online TA TA/TO 0
## 2033 Online TA TA/TO 0
## 2034 Offline TA/TO TA/TO 0
## 2035 Online TA TA/TO 0
## 2036 Online TA TA/TO 0
## 2037 Online TA TA/TO 0
## 2038 Online TA TA/TO 0
## 2039 Online TA TA/TO 0
## 2040 Offline TA/TO TA/TO 0
## 2041 Online TA TA/TO 0
## 2042 Offline TA/TO TA/TO 0
## 2043 Online TA TA/TO 0
## 2044 Online TA TA/TO 0
## 2045 Offline TA/TO TA/TO 0
## 2046 Online TA TA/TO 0
## 2047 Online TA TA/TO 0
## 2048 Offline TA/TO TA/TO 0
## 2049 Offline TA/TO TA/TO 0
## 2050 Offline TA/TO TA/TO 0
## 2051 Offline TA/TO TA/TO 0
## 2052 Direct Direct 0
## 2053 Offline TA/TO TA/TO 0
## 2054 Offline TA/TO TA/TO 0
## 2055 Offline TA/TO TA/TO 0
## 2056 Online TA TA/TO 0
## 2057 Online TA TA/TO 0
## 2058 Online TA TA/TO 0
## 2059 Offline TA/TO TA/TO 0
## 2060 Online TA TA/TO 0
## 2061 Direct Direct 0
## 2062 Direct Direct 0
## 2063 Corporate Corporate 0
## 2064 Corporate Corporate 0
## 2065 Offline TA/TO TA/TO 0
## 2066 Offline TA/TO TA/TO 0
## 2067 Offline TA/TO TA/TO 0
## 2068 Online TA TA/TO 0
## 2069 Offline TA/TO TA/TO 0
## 2070 Offline TA/TO TA/TO 0
## 2071 Offline TA/TO TA/TO 0
## 2072 Offline TA/TO TA/TO 0
## 2073 Offline TA/TO TA/TO 0
## 2074 Offline TA/TO TA/TO 0
## 2075 Online TA TA/TO 0
## 2076 Online TA TA/TO 0
## 2077 Online TA TA/TO 0
## 2078 Offline TA/TO TA/TO 0
## 2079 Offline TA/TO TA/TO 0
## 2080 Offline TA/TO TA/TO 0
## 2081 Online TA TA/TO 0
## 2082 Offline TA/TO TA/TO 0
## 2083 Online TA TA/TO 0
## 2084 Offline TA/TO TA/TO 0
## 2085 Online TA TA/TO 0
## 2086 Online TA TA/TO 0
## 2087 Offline TA/TO TA/TO 0
## 2088 Online TA TA/TO 0
## 2089 Online TA TA/TO 0
## 2090 Direct Direct 0
## 2091 Online TA TA/TO 0
## 2092 Online TA TA/TO 0
## 2093 Online TA TA/TO 0
## 2094 Direct Direct 0
## 2095 Online TA TA/TO 0
## 2096 Direct Direct 0
## 2097 Offline TA/TO TA/TO 0
## 2098 Online TA TA/TO 0
## 2099 Direct Direct 0
## 2100 Offline TA/TO TA/TO 0
## 2101 Direct Direct 0
## 2102 Offline TA/TO TA/TO 0
## 2103 Online TA TA/TO 0
## 2104 Offline TA/TO TA/TO 0
## 2105 Offline TA/TO TA/TO 0
## 2106 Online TA TA/TO 0
## 2107 Online TA TA/TO 0
## 2108 Offline TA/TO TA/TO 0
## 2109 Online TA TA/TO 0
## 2110 Online TA TA/TO 0
## 2111 Offline TA/TO TA/TO 0
## 2112 Online TA TA/TO 0
## 2113 Online TA TA/TO 0
## 2114 Online TA TA/TO 0
## 2115 Direct Direct 0
## 2116 Direct Direct 0
## 2117 Online TA TA/TO 0
## 2118 Online TA TA/TO 0
## 2119 Online TA TA/TO 0
## 2120 Online TA TA/TO 0
## 2121 Offline TA/TO TA/TO 0
## 2122 Offline TA/TO TA/TO 0
## 2123 Online TA TA/TO 0
## 2124 Offline TA/TO TA/TO 0
## 2125 Online TA TA/TO 0
## 2126 Offline TA/TO TA/TO 0
## 2127 Offline TA/TO TA/TO 0
## 2128 Offline TA/TO TA/TO 0
## 2129 Offline TA/TO TA/TO 0
## 2130 Online TA TA/TO 0
## 2131 Online TA TA/TO 0
## 2132 Online TA TA/TO 0
## 2133 Direct Direct 0
## 2134 Groups TA/TO 0
## 2135 Groups TA/TO 0
## 2136 Groups TA/TO 0
## 2137 Groups TA/TO 0
## 2138 Online TA TA/TO 0
## 2139 Direct Direct 0
## 2140 Direct Direct 0
## 2141 Direct Direct 0
## 2142 Groups TA/TO 0
## 2143 Groups TA/TO 0
## 2144 Offline TA/TO TA/TO 0
## 2145 Offline TA/TO TA/TO 0
## 2146 Online TA TA/TO 0
## 2147 Online TA TA/TO 0
## 2148 Online TA TA/TO 0
## 2149 Offline TA/TO TA/TO 0
## 2150 Online TA TA/TO 0
## 2151 Online TA TA/TO 0
## 2152 Online TA TA/TO 0
## 2153 Online TA TA/TO 0
## 2154 Online TA TA/TO 0
## 2155 Online TA TA/TO 0
## 2156 Online TA TA/TO 0
## 2157 Online TA TA/TO 0
## 2158 Online TA TA/TO 0
## 2159 Online TA TA/TO 0
## 2160 Offline TA/TO TA/TO 0
## 2161 Direct Direct 0
## 2162 Offline TA/TO TA/TO 0
## 2163 Online TA TA/TO 0
## 2164 Online TA TA/TO 0
## 2165 Offline TA/TO TA/TO 0
## 2166 Online TA TA/TO 0
## 2167 Online TA TA/TO 0
## 2168 Online TA TA/TO 0
## 2169 Direct Direct 0
## 2170 Direct Direct 0
## 2171 Corporate Corporate 0
## 2172 Online TA TA/TO 0
## 2173 Online TA TA/TO 0
## 2174 Direct Direct 0
## 2175 Online TA TA/TO 0
## 2176 Online TA TA/TO 0
## 2177 Online TA TA/TO 0
## 2178 Offline TA/TO TA/TO 0
## 2179 Direct Direct 0
## 2180 Online TA TA/TO 0
## 2181 Offline TA/TO TA/TO 0
## 2182 Groups TA/TO 0
## 2183 Groups TA/TO 0
## 2184 Groups TA/TO 0
## 2185 Groups TA/TO 0
## 2186 Groups TA/TO 0
## 2187 Groups TA/TO 0
## 2188 Groups TA/TO 0
## 2189 Groups TA/TO 0
## 2190 Groups TA/TO 0
## 2191 Groups TA/TO 0
## 2192 Groups TA/TO 0
## 2193 Groups TA/TO 0
## 2194 Offline TA/TO TA/TO 0
## 2195 Offline TA/TO TA/TO 0
## 2196 Online TA TA/TO 0
## 2197 Online TA TA/TO 0
## 2198 Online TA TA/TO 0
## 2199 Online TA TA/TO 0
## 2200 Online TA TA/TO 0
## 2201 Online TA TA/TO 0
## 2202 Online TA TA/TO 0
## 2203 Corporate Corporate 0
## 2204 Direct Direct 0
## 2205 Offline TA/TO TA/TO 0
## 2206 Direct Direct 0
## 2207 Offline TA/TO TA/TO 0
## 2208 Online TA TA/TO 0
## 2209 Online TA TA/TO 0
## 2210 Online TA TA/TO 0
## 2211 Online TA TA/TO 0
## 2212 Online TA TA/TO 0
## 2213 Online TA TA/TO 0
## 2214 Offline TA/TO TA/TO 0
## 2215 Online TA TA/TO 0
## 2216 Corporate Corporate 0
## 2217 Corporate Corporate 0
## 2218 Corporate Corporate 0
## 2219 Direct Direct 0
## 2220 Online TA TA/TO 0
## 2221 Online TA TA/TO 0
## 2222 Direct Direct 0
## 2223 Online TA TA/TO 0
## 2224 Direct Direct 0
## 2225 Corporate Corporate 0
## 2226 Online TA TA/TO 0
## 2227 Online TA TA/TO 0
## 2228 Direct Direct 0
## 2229 Direct Direct 0
## 2230 Direct Direct 0
## 2231 Online TA TA/TO 0
## 2232 Direct Direct 0
## 2233 Online TA TA/TO 0
## 2234 Online TA TA/TO 0
## 2235 Online TA TA/TO 0
## 2236 Direct Direct 0
## 2237 Online TA TA/TO 0
## 2238 Online TA TA/TO 0
## 2239 Online TA TA/TO 0
## 2240 Online TA TA/TO 0
## 2241 Complementary Direct 0
## 2242 Direct Direct 0
## 2243 Complementary Direct 0
## 2244 Direct Direct 0
## 2245 Online TA TA/TO 0
## 2246 Offline TA/TO TA/TO 0
## 2247 Direct Direct 0
## 2248 Offline TA/TO TA/TO 0
## 2249 Offline TA/TO TA/TO 0
## 2250 Offline TA/TO TA/TO 0
## 2251 Offline TA/TO TA/TO 0
## 2252 Direct Direct 0
## 2253 Offline TA/TO TA/TO 0
## 2254 Offline TA/TO TA/TO 0
## 2255 Direct Direct 0
## 2256 Offline TA/TO Direct 0
## 2257 Online TA TA/TO 0
## 2258 Online TA TA/TO 0
## 2259 Direct Direct 0
## 2260 Direct Direct 0
## 2261 Corporate Corporate 0
## 2262 Direct Direct 0
## 2263 Corporate Corporate 0
## 2264 Direct Direct 0
## 2265 Online TA TA/TO 0
## 2266 Corporate Corporate 0
## 2267 Direct Direct 0
## 2268 Direct Direct 0
## 2269 Corporate Corporate 0
## 2270 Corporate Corporate 0
## 2271 Direct Direct 0
## 2272 Direct Direct 0
## 2273 Corporate Corporate 0
## 2274 Direct Direct 0
## 2275 Direct Direct 0
## 2276 Corporate Corporate 0
## 2277 Direct Direct 0
## 2278 Online TA TA/TO 0
## 2279 Offline TA/TO TA/TO 0
## 2280 Offline TA/TO TA/TO 0
## 2281 Online TA TA/TO 0
## 2282 Offline TA/TO TA/TO 0
## 2283 Offline TA/TO TA/TO 0
## 2284 Direct Direct 0
## 2285 Online TA TA/TO 0
## 2286 Offline TA/TO TA/TO 0
## 2287 Online TA TA/TO 0
## 2288 Corporate Corporate 0
## 2289 Direct Direct 0
## 2290 Online TA TA/TO 0
## 2291 Direct Direct 0
## 2292 Direct Direct 0
## 2293 Corporate Corporate 0
## 2294 Online TA TA/TO 0
## 2295 Corporate Corporate 0
## 2296 Direct Direct 0
## 2297 Direct Direct 0
## 2298 Groups TA/TO 0
## 2299 Groups TA/TO 0
## 2300 Groups TA/TO 0
## 2301 Groups TA/TO 0
## 2302 Groups TA/TO 0
## 2303 Groups TA/TO 0
## 2304 Online TA TA/TO 0
## 2305 Groups TA/TO 0
## 2306 Groups TA/TO 0
## 2307 Online TA TA/TO 0
## 2308 Online TA TA/TO 0
## 2309 Direct Direct 0
## 2310 Direct Direct 0
## 2311 Online TA TA/TO 0
## 2312 Offline TA/TO TA/TO 0
## 2313 Groups TA/TO 0
## 2314 Groups TA/TO 0
## 2315 Groups TA/TO 0
## 2316 Groups TA/TO 0
## 2317 Groups TA/TO 0
## 2318 Groups TA/TO 0
## 2319 Groups TA/TO 0
## 2320 Groups TA/TO 0
## 2321 Groups TA/TO 0
## 2322 Groups TA/TO 0
## 2323 Groups TA/TO 0
## 2324 Groups TA/TO 0
## 2325 Groups TA/TO 0
## 2326 Online TA TA/TO 0
## 2327 Direct Direct 0
## 2328 Online TA TA/TO 0
## 2329 Groups TA/TO 0
## 2330 Groups TA/TO 0
## 2331 Groups TA/TO 0
## 2332 Online TA TA/TO 0
## 2333 Offline TA/TO TA/TO 0
## 2334 Offline TA/TO TA/TO 0
## 2335 Offline TA/TO TA/TO 0
## 2336 Groups TA/TO 0
## 2337 Groups TA/TO 0
## 2338 Groups TA/TO 0
## 2339 Groups TA/TO 0
## 2340 Online TA TA/TO 0
## 2341 Direct Direct 0
## 2342 Online TA TA/TO 0
## 2343 Online TA TA/TO 0
## 2344 Online TA TA/TO 0
## 2345 Offline TA/TO TA/TO 0
## 2346 Offline TA/TO TA/TO 0
## 2347 Direct Direct 0
## 2348 Corporate Corporate 0
## 2349 Corporate Corporate 0
## 2350 Online TA TA/TO 0
## 2351 Corporate Corporate 0
## 2352 Online TA TA/TO 0
## 2353 Direct Direct 0
## 2354 Online TA TA/TO 0
## 2355 Online TA TA/TO 0
## 2356 Offline TA/TO TA/TO 0
## 2357 Online TA TA/TO 0
## 2358 Online TA TA/TO 0
## 2359 Online TA TA/TO 0
## 2360 Online TA TA/TO 0
## 2361 Online TA TA/TO 0
## 2362 Direct Direct 0
## 2363 Direct Direct 0
## 2364 Online TA TA/TO 0
## 2365 Online TA TA/TO 0
## 2366 Online TA TA/TO 0
## 2367 Offline TA/TO TA/TO 0
## 2368 Direct Direct 0
## 2369 Groups TA/TO 0
## 2370 Groups TA/TO 0
## 2371 Groups TA/TO 0
## 2372 Groups TA/TO 0
## 2373 Groups TA/TO 0
## 2374 Groups TA/TO 0
## 2375 Groups TA/TO 0
## 2376 Groups TA/TO 0
## 2377 Groups TA/TO 0
## 2378 Groups TA/TO 0
## 2379 Offline TA/TO TA/TO 0
## 2380 Groups TA/TO 0
## 2381 Groups TA/TO 0
## 2382 Groups TA/TO 0
## 2383 Online TA TA/TO 0
## 2384 Direct Direct 0
## 2385 Direct Direct 0
## 2386 Online TA TA/TO 0
## 2387 Online TA TA/TO 0
## 2388 Online TA TA/TO 0
## 2389 Offline TA/TO TA/TO 0
## 2390 Online TA TA/TO 0
## 2391 Online TA TA/TO 0
## 2392 Direct Direct 0
## 2393 Online TA TA/TO 0
## 2394 Online TA TA/TO 0
## 2395 Offline TA/TO TA/TO 0
## 2396 Online TA TA/TO 0
## 2397 Offline TA/TO TA/TO 0
## 2398 Online TA TA/TO 0
## 2399 Online TA TA/TO 0
## 2400 Online TA TA/TO 0
## 2401 Online TA TA/TO 0
## 2402 Online TA TA/TO 0
## 2403 Online TA TA/TO 0
## 2404 Online TA TA/TO 0
## 2405 Offline TA/TO TA/TO 0
## 2406 Online TA TA/TO 0
## 2407 Online TA TA/TO 0
## 2408 Corporate Corporate 0
## 2409 Online TA TA/TO 0
## 2410 Corporate Corporate 0
## 2411 Corporate Corporate 0
## 2412 Corporate Corporate 0
## 2413 Corporate Corporate 0
## 2414 Offline TA/TO TA/TO 0
## 2415 Online TA TA/TO 0
## 2416 Corporate Corporate 0
## 2417 Online TA TA/TO 0
## 2418 Direct Direct 0
## 2419 Direct Direct 0
## 2420 Direct Direct 0
## 2421 Groups Direct 0
## 2422 Offline TA/TO TA/TO 0
## 2423 Online TA TA/TO 0
## 2424 Online TA TA/TO 0
## 2425 Direct Direct 0
## 2426 Online TA TA/TO 0
## 2427 Direct Direct 0
## 2428 Online TA TA/TO 0
## 2429 Online TA TA/TO 0
## 2430 Online TA TA/TO 0
## 2431 Direct Direct 0
## 2432 Direct Direct 0
## 2433 Offline TA/TO TA/TO 0
## 2434 Online TA TA/TO 0
## 2435 Online TA TA/TO 0
## 2436 Offline TA/TO TA/TO 0
## 2437 Online TA TA/TO 0
## 2438 Online TA TA/TO 0
## 2439 Online TA TA/TO 0
## 2440 Groups Corporate 0
## 2441 Groups Corporate 0
## 2442 Direct Direct 0
## 2443 Offline TA/TO TA/TO 0
## 2444 Online TA TA/TO 0
## 2445 Online TA TA/TO 0
## 2446 Online TA TA/TO 0
## 2447 Direct Direct 0
## 2448 Groups Corporate 0
## 2449 Complementary Direct 0
## 2450 Groups Corporate 0
## 2451 Online TA TA/TO 0
## 2452 Online TA TA/TO 0
## 2453 Online TA TA/TO 0
## 2454 Online TA TA/TO 0
## 2455 Offline TA/TO TA/TO 0
## 2456 Direct Direct 0
## 2457 Online TA TA/TO 0
## 2458 Online TA TA/TO 0
## 2459 Online TA TA/TO 0
## 2460 Direct Direct 0
## 2461 Direct Direct 0
## 2462 Online TA TA/TO 0
## 2463 Online TA TA/TO 0
## 2464 Online TA TA/TO 0
## 2465 Offline TA/TO TA/TO 0
## 2466 Online TA TA/TO 0
## 2467 Offline TA/TO TA/TO 0
## 2468 Online TA TA/TO 0
## 2469 Offline TA/TO TA/TO 0
## 2470 Online TA TA/TO 0
## 2471 Online TA TA/TO 0
## 2472 Offline TA/TO TA/TO 0
## 2473 Online TA TA/TO 0
## 2474 Online TA TA/TO 0
## 2475 Online TA TA/TO 0
## 2476 Online TA TA/TO 0
## 2477 Corporate Corporate 0
## 2478 Online TA TA/TO 0
## 2479 Offline TA/TO TA/TO 0
## 2480 Offline TA/TO TA/TO 0
## 2481 Direct Direct 0
## 2482 Offline TA/TO TA/TO 0
## 2483 Online TA TA/TO 0
## 2484 Online TA TA/TO 0
## 2485 Online TA TA/TO 0
## 2486 Online TA TA/TO 0
## 2487 Groups Direct 0
## 2488 Groups Direct 0
## 2489 Groups Direct 0
## 2490 Groups Direct 0
## 2491 Groups Direct 0
## 2492 Groups Direct 0
## 2493 Groups Direct 0
## 2494 Groups Direct 0
## 2495 Groups Direct 0
## 2496 Online TA TA/TO 0
## 2497 Groups Direct 0
## 2498 Groups Direct 0
## 2499 Groups Direct 0
## 2500 Groups Direct 0
## 2501 Groups Direct 0
## 2502 Groups Direct 0
## 2503 Groups Direct 0
## 2504 Groups Direct 0
## 2505 Groups Direct 0
## 2506 Online TA TA/TO 0
## 2507 Groups Direct 0
## 2508 Groups Direct 0
## 2509 Groups Direct 0
## 2510 Groups Direct 0
## 2511 Groups Direct 0
## 2512 Offline TA/TO TA/TO 0
## 2513 Offline TA/TO TA/TO 0
## 2514 Online TA TA/TO 0
## 2515 Offline TA/TO TA/TO 0
## 2516 Offline TA/TO TA/TO 0
## 2517 Offline TA/TO TA/TO 0
## 2518 Direct Direct 0
## 2519 Direct Direct 0
## 2520 Direct Direct 0
## 2521 Direct Direct 0
## 2522 Online TA TA/TO 0
## 2523 Offline TA/TO TA/TO 0
## 2524 Offline TA/TO TA/TO 0
## 2525 Direct Direct 0
## 2526 Offline TA/TO TA/TO 0
## 2527 Offline TA/TO TA/TO 0
## 2528 Offline TA/TO TA/TO 0
## 2529 Online TA TA/TO 0
## 2530 Online TA TA/TO 0
## 2531 Online TA TA/TO 0
## 2532 Online TA TA/TO 0
## 2533 Offline TA/TO TA/TO 0
## 2534 Offline TA/TO TA/TO 0
## 2535 Offline TA/TO TA/TO 0
## 2536 Online TA TA/TO 0
## 2537 Offline TA/TO TA/TO 0
## 2538 Offline TA/TO TA/TO 0
## 2539 Offline TA/TO TA/TO 0
## 2540 Offline TA/TO TA/TO 0
## 2541 Online TA TA/TO 0
## 2542 Online TA TA/TO 0
## 2543 Online TA TA/TO 0
## 2544 Offline TA/TO TA/TO 0
## 2545 Online TA TA/TO 0
## 2546 Online TA TA/TO 0
## 2547 Online TA TA/TO 0
## 2548 Online TA TA/TO 0
## 2549 Online TA TA/TO 0
## 2550 Direct Direct 0
## 2551 Online TA TA/TO 0
## 2552 Online TA TA/TO 0
## 2553 Direct Direct 0
## 2554 Online TA TA/TO 0
## 2555 Online TA TA/TO 0
## 2556 Online TA TA/TO 0
## 2557 Online TA TA/TO 0
## 2558 Online TA TA/TO 0
## 2559 Online TA TA/TO 0
## 2560 Offline TA/TO TA/TO 0
## 2561 Online TA TA/TO 0
## 2562 Offline TA/TO TA/TO 0
## 2563 Offline TA/TO TA/TO 0
## 2564 Offline TA/TO TA/TO 0
## 2565 Offline TA/TO TA/TO 0
## 2566 Direct Direct 0
## 2567 Offline TA/TO TA/TO 0
## 2568 Online TA TA/TO 0
## 2569 Online TA TA/TO 0
## 2570 Online TA TA/TO 0
## 2571 Online TA TA/TO 0
## 2572 Online TA TA/TO 0
## 2573 Online TA TA/TO 0
## 2574 Online TA TA/TO 0
## 2575 Online TA TA/TO 0
## 2576 Online TA TA/TO 0
## 2577 Online TA TA/TO 0
## 2578 Online TA TA/TO 0
## 2579 Offline TA/TO TA/TO 0
## 2580 Offline TA/TO TA/TO 0
## 2581 Offline TA/TO TA/TO 0
## 2582 Online TA TA/TO 0
## 2583 Online TA TA/TO 0
## 2584 Online TA TA/TO 0
## 2585 Online TA TA/TO 0
## 2586 Direct Direct 0
## 2587 Online TA TA/TO 0
## 2588 Online TA TA/TO 0
## 2589 Direct Direct 0
## 2590 Online TA TA/TO 0
## 2591 Online TA TA/TO 0
## 2592 Direct Direct 0
## 2593 Online TA TA/TO 0
## 2594 Direct Direct 0
## 2595 Direct Direct 0
## 2596 Complementary TA/TO 0
## 2597 Direct Direct 0
## 2598 Direct Direct 0
## 2599 Online TA TA/TO 0
## 2600 Direct Direct 0
## 2601 Direct Direct 0
## 2602 Online TA TA/TO 0
## 2603 Online TA TA/TO 0
## 2604 Online TA TA/TO 0
## 2605 Offline TA/TO TA/TO 0
## 2606 Offline TA/TO TA/TO 0
## 2607 Online TA TA/TO 0
## 2608 Direct Direct 0
## 2609 Online TA TA/TO 0
## 2610 Online TA TA/TO 0
## 2611 Online TA TA/TO 0
## 2612 Online TA TA/TO 0
## 2613 Online TA TA/TO 0
## 2614 Online TA TA/TO 0
## 2615 Offline TA/TO TA/TO 0
## 2616 Offline TA/TO TA/TO 0
## 2617 Online TA TA/TO 0
## 2618 Online TA TA/TO 0
## 2619 Direct Direct 0
## 2620 Online TA TA/TO 0
## 2621 Direct Direct 0
## 2622 Direct Direct 0
## 2623 Online TA TA/TO 0
## 2624 Online TA TA/TO 0
## 2625 Direct Direct 0
## 2626 Groups Direct 0
## 2627 Groups Direct 0
## 2628 Groups Direct 0
## 2629 Groups Direct 0
## 2630 Groups Direct 0
## 2631 Groups Direct 0
## 2632 Groups Direct 0
## 2633 Groups Direct 0
## 2634 Groups Direct 0
## 2635 Groups Direct 0
## 2636 Groups Direct 0
## 2637 Groups Direct 0
## 2638 Groups Direct 0
## 2639 Groups Direct 0
## 2640 Groups Direct 0
## 2641 Groups Direct 0
## 2642 Groups Direct 0
## 2643 Groups Direct 0
## 2644 Online TA TA/TO 0
## 2645 Groups Direct 0
## 2646 Groups Direct 0
## 2647 Groups Direct 0
## 2648 Groups Direct 0
## 2649 Groups Direct 0
## 2650 Groups Direct 0
## 2651 Online TA TA/TO 0
## 2652 Groups Direct 0
## 2653 Groups Direct 0
## 2654 Groups Direct 0
## 2655 Groups Direct 0
## 2656 Groups Direct 0
## 2657 Groups Direct 0
## 2658 Groups Direct 0
## 2659 Groups Direct 0
## 2660 Groups Direct 0
## 2661 Groups Direct 0
## 2662 Groups Direct 0
## 2663 Online TA TA/TO 0
## 2664 Online TA TA/TO 0
## 2665 Direct Direct 0
## 2666 Online TA TA/TO 0
## 2667 Offline TA/TO TA/TO 0
## 2668 Direct Direct 0
## 2669 Offline TA/TO TA/TO 0
## 2670 Offline TA/TO TA/TO 0
## 2671 Offline TA/TO TA/TO 0
## 2672 Online TA TA/TO 0
## 2673 Online TA TA/TO 0
## 2674 Online TA TA/TO 0
## 2675 Online TA TA/TO 0
## 2676 Offline TA/TO TA/TO 0
## 2677 Offline TA/TO TA/TO 0
## 2678 Online TA TA/TO 0
## 2679 Direct Direct 0
## 2680 Groups Direct 0
## 2681 Groups Direct 0
## 2682 Groups Direct 0
## 2683 Groups Direct 0
## 2684 Groups Direct 0
## 2685 Online TA TA/TO 0
## 2686 Online TA TA/TO 0
## 2687 Offline TA/TO TA/TO 0
## 2688 Offline TA/TO TA/TO 0
## 2689 Offline TA/TO TA/TO 0
## 2690 Online TA TA/TO 0
## 2691 Online TA TA/TO 0
## 2692 Online TA TA/TO 0
## 2693 Online TA TA/TO 0
## 2694 Offline TA/TO TA/TO 0
## 2695 Offline TA/TO TA/TO 0
## 2696 Online TA TA/TO 0
## 2697 Corporate Corporate 0
## 2698 Corporate Corporate 0
## 2699 Groups Corporate 0
## 2700 Groups Corporate 0
## 2701 Groups Corporate 0
## 2702 Groups Corporate 0
## 2703 Groups Corporate 0
## 2704 Online TA TA/TO 0
## 2705 Direct Direct 0
## 2706 Direct Direct 0
## 2707 Online TA TA/TO 0
## 2708 Direct Direct 0
## 2709 Groups Direct 0
## 2710 Online TA TA/TO 0
## 2711 Offline TA/TO TA/TO 0
## 2712 Online TA TA/TO 0
## 2713 Online TA TA/TO 0
## 2714 Offline TA/TO TA/TO 0
## 2715 Online TA TA/TO 0
## 2716 Online TA TA/TO 0
## 2717 Online TA TA/TO 0
## 2718 Online TA TA/TO 0
## 2719 Offline TA/TO TA/TO 0
## 2720 Direct Direct 0
## 2721 Corporate Corporate 0
## 2722 Online TA TA/TO 0
## 2723 Corporate Corporate 0
## 2724 Direct Direct 0
## 2725 Direct Direct 0
## 2726 Direct Direct 0
## 2727 Direct Direct 0
## 2728 Corporate Corporate 0
## 2729 Direct Direct 0
## 2730 Direct Direct 0
## 2731 Online TA TA/TO 0
## 2732 Online TA TA/TO 0
## 2733 Online TA TA/TO 0
## 2734 Online TA TA/TO 0
## 2735 Corporate Corporate 0
## 2736 Online TA TA/TO 0
## 2737 Groups Direct 0
## 2738 Online TA TA/TO 0
## 2739 Groups Direct 0
## 2740 Groups Direct 0
## 2741 Direct Direct 0
## 2742 Groups Direct 0
## 2743 Direct Direct 0
## 2744 Online TA TA/TO 0
## 2745 Direct Direct 0
## 2746 Direct Direct 0
## 2747 Groups Direct 0
## 2748 Groups Direct 0
## 2749 Online TA TA/TO 0
## 2750 Groups Direct 0
## 2751 Groups Direct 0
## 2752 Online TA TA/TO 0
## 2753 Direct Direct 0
## 2754 Online TA TA/TO 0
## 2755 Groups Direct 0
## 2756 Direct Direct 0
## 2757 Online TA TA/TO 0
## 2758 Offline TA/TO TA/TO 0
## 2759 Offline TA/TO TA/TO 0
## 2760 Groups Direct 0
## 2761 Online TA TA/TO 0
## 2762 Offline TA/TO TA/TO 0
## 2763 Offline TA/TO TA/TO 0
## 2764 Direct Direct 0
## 2765 Online TA TA/TO 0
## 2766 Online TA TA/TO 0
## 2767 Online TA TA/TO 0
## 2768 Online TA TA/TO 0
## 2769 Groups Direct 0
## 2770 Groups Direct 0
## 2771 Groups Direct 0
## 2772 Groups Direct 0
## 2773 Groups Direct 0
## 2774 Groups Direct 0
## 2775 Groups Direct 0
## 2776 Groups Direct 0
## 2777 Groups Direct 0
## 2778 Offline TA/TO TA/TO 0
## 2779 Direct Direct 0
## 2780 Groups Direct 0
## 2781 Online TA TA/TO 0
## 2782 Online TA TA/TO 0
## 2783 Groups Direct 0
## 2784 Groups Direct 0
## 2785 Groups Direct 0
## 2786 Groups Direct 0
## 2787 Direct Direct 0
## 2788 Groups Direct 0
## 2789 Groups Direct 0
## 2790 Groups Direct 0
## 2791 Groups Direct 0
## 2792 Groups Direct 0
## 2793 Groups Direct 0
## 2794 Groups Direct 0
## 2795 Groups Direct 0
## 2796 Groups Direct 0
## 2797 Offline TA/TO TA/TO 0
## 2798 Groups Direct 0
## 2799 Offline TA/TO TA/TO 0
## 2800 Groups Direct 0
## 2801 Online TA TA/TO 0
## 2802 Groups Direct 0
## 2803 Offline TA/TO TA/TO 0
## 2804 Groups Direct 0
## 2805 Groups Direct 0
## 2806 Groups Direct 0
## 2807 Groups Direct 0
## 2808 Online TA TA/TO 0
## 2809 Groups Direct 0
## 2810 Groups Direct 0
## 2811 Groups Direct 0
## 2812 Groups Direct 0
## 2813 Groups Direct 0
## 2814 Groups Direct 0
## 2815 Groups Direct 0
## 2816 Groups Direct 0
## 2817 Groups Direct 0
## 2818 Direct Direct 0
## 2819 Online TA TA/TO 0
## 2820 Online TA TA/TO 0
## 2821 Online TA TA/TO 0
## 2822 Groups Direct 0
## 2823 Groups Direct 0
## 2824 Direct Direct 0
## 2825 Groups Direct 0
## 2826 Online TA TA/TO 0
## 2827 Online TA TA/TO 0
## 2828 Online TA TA/TO 0
## 2829 Online TA TA/TO 0
## 2830 Online TA TA/TO 0
## 2831 Online TA TA/TO 0
## 2832 Online TA TA/TO 0
## 2833 Offline TA/TO TA/TO 0
## 2834 Online TA TA/TO 0
## 2835 Offline TA/TO TA/TO 0
## 2836 Corporate Corporate 0
## 2837 Online TA TA/TO 0
## 2838 Online TA TA/TO 0
## 2839 Offline TA/TO TA/TO 0
## 2840 Online TA TA/TO 0
## 2841 Corporate Corporate 0
## 2842 Offline TA/TO TA/TO 0
## 2843 Online TA TA/TO 0
## 2844 Offline TA/TO TA/TO 0
## 2845 Offline TA/TO TA/TO 0
## 2846 Offline TA/TO TA/TO 0
## 2847 Online TA TA/TO 0
## 2848 Direct Direct 0
## 2849 Online TA TA/TO 0
## 2850 Offline TA/TO TA/TO 0
## 2851 Offline TA/TO TA/TO 0
## 2852 Online TA TA/TO 0
## 2853 Corporate Corporate 0
## 2854 Corporate Corporate 0
## 2855 Corporate Corporate 0
## 2856 Corporate Corporate 0
## 2857 Corporate Corporate 0
## 2858 Corporate Corporate 0
## 2859 Corporate Corporate 0
## 2860 Online TA TA/TO 0
## 2861 Corporate Corporate 0
## 2862 Corporate Corporate 0
## 2863 Online TA TA/TO 0
## 2864 Direct Direct 0
## 2865 Direct Direct 0
## 2866 Online TA TA/TO 0
## 2867 Online TA TA/TO 0
## 2868 Corporate Corporate 0
## 2869 Online TA TA/TO 0
## 2870 Offline TA/TO TA/TO 0
## 2871 Offline TA/TO TA/TO 0
## 2872 Offline TA/TO TA/TO 0
## 2873 Corporate Corporate 0
## 2874 Offline TA/TO TA/TO 0
## 2875 Offline TA/TO TA/TO 0
## 2876 Offline TA/TO TA/TO 0
## 2877 Online TA TA/TO 0
## 2878 Corporate Corporate 0
## 2879 Corporate Corporate 0
## 2880 Corporate Corporate 0
## 2881 Corporate Corporate 0
## 2882 Corporate Corporate 0
## 2883 Corporate Corporate 0
## 2884 Corporate Corporate 0
## 2885 Corporate Corporate 0
## 2886 Corporate Corporate 0
## 2887 Online TA TA/TO 0
## 2888 Online TA TA/TO 0
## 2889 Online TA TA/TO 0
## 2890 Offline TA/TO TA/TO 0
## 2891 Corporate Corporate 0
## 2892 Corporate Corporate 0
## 2893 Corporate Corporate 0
## 2894 Corporate Corporate 0
## 2895 Corporate Corporate 0
## 2896 Corporate Corporate 0
## 2897 Online TA TA/TO 0
## 2898 Online TA TA/TO 0
## 2899 Corporate Corporate 0
## 2900 Offline TA/TO TA/TO 0
## 2901 Corporate Corporate 0
## 2902 Online TA TA/TO 0
## 2903 Online TA TA/TO 0
## 2904 Online TA TA/TO 0
## 2905 Direct Direct 0
## 2906 Offline TA/TO TA/TO 0
## 2907 Online TA TA/TO 0
## 2908 Online TA TA/TO 0
## 2909 Online TA TA/TO 0
## 2910 Offline TA/TO TA/TO 0
## 2911 Online TA TA/TO 0
## 2912 Online TA TA/TO 0
## 2913 Corporate Corporate 0
## 2914 Corporate Corporate 0
## 2915 Corporate Corporate 0
## 2916 Corporate Corporate 0
## 2917 Corporate Corporate 0
## 2918 Corporate Corporate 0
## 2919 Corporate Corporate 0
## 2920 Online TA TA/TO 0
## 2921 Online TA TA/TO 0
## 2922 Offline TA/TO TA/TO 0
## 2923 Offline TA/TO TA/TO 0
## 2924 Offline TA/TO TA/TO 0
## 2925 Direct Direct 0
## 2926 Offline TA/TO TA/TO 0
## 2927 Offline TA/TO TA/TO 0
## 2928 Online TA TA/TO 0
## 2929 Online TA TA/TO 0
## 2930 Online TA TA/TO 0
## 2931 Offline TA/TO TA/TO 0
## 2932 Offline TA/TO TA/TO 0
## 2933 Offline TA/TO TA/TO 0
## 2934 Offline TA/TO TA/TO 0
## 2935 Corporate Corporate 0
## 2936 Corporate Corporate 0
## 2937 Corporate Corporate 0
## 2938 Online TA TA/TO 0
## 2939 Corporate Corporate 0
## 2940 Online TA TA/TO 0
## 2941 Online TA TA/TO 0
## 2942 Corporate Corporate 0
## 2943 Corporate Corporate 0
## 2944 Corporate Corporate 0
## 2945 Corporate Corporate 0
## 2946 Corporate Corporate 0
## 2947 Corporate Corporate 0
## 2948 Corporate Corporate 0
## 2949 Corporate Corporate 0
## 2950 Corporate Corporate 0
## 2951 Corporate Corporate 0
## 2952 Corporate Corporate 0
## 2953 Corporate Corporate 0
## 2954 Corporate Corporate 0
## 2955 Corporate Corporate 0
## 2956 Online TA TA/TO 0
## 2957 Online TA TA/TO 0
## 2958 Online TA TA/TO 0
## 2959 Online TA TA/TO 0
## 2960 Online TA TA/TO 0
## 2961 Online TA TA/TO 0
## 2962 Offline TA/TO TA/TO 0
## 2963 Direct Direct 0
## 2964 Online TA TA/TO 0
## 2965 Corporate Corporate 0
## 2966 Corporate Corporate 0
## 2967 Corporate Corporate 0
## 2968 Corporate Corporate 0
## 2969 Online TA TA/TO 0
## 2970 Corporate Corporate 0
## 2971 Corporate Corporate 0
## 2972 Corporate Corporate 0
## 2973 Online TA TA/TO 0
## 2974 Offline TA/TO TA/TO 0
## 2975 Online TA TA/TO 0
## 2976 Online TA TA/TO 0
## 2977 Direct Direct 0
## 2978 Online TA TA/TO 0
## 2979 Corporate Corporate 0
## 2980 Direct Direct 0
## 2981 Online TA TA/TO 0
## 2982 Corporate Corporate 0
## 2983 Online TA TA/TO 0
## 2984 Corporate Corporate 0
## 2985 Corporate Corporate 0
## 2986 Offline TA/TO TA/TO 0
## 2987 Offline TA/TO TA/TO 0
## 2988 Online TA TA/TO 0
## 2989 Corporate Corporate 0
## 2990 Online TA TA/TO 0
## 2991 Offline TA/TO TA/TO 0
## 2992 Online TA TA/TO 0
## 2993 Corporate Corporate 0
## 2994 Corporate Corporate 0
## 2995 Corporate Corporate 0
## 2996 Direct Direct 0
## 2997 Corporate Corporate 0
## 2998 Direct Direct 0
## 2999 Direct Direct 0
## 3000 Offline TA/TO TA/TO 0
## 3001 Corporate Corporate 0
## 3002 Corporate Corporate 0
## 3003 Corporate Corporate 0
## 3004 Corporate Corporate 0
## 3005 Corporate Corporate 0
## 3006 Corporate Corporate 0
## 3007 Online TA TA/TO 0
## 3008 Online TA TA/TO 0
## 3009 Online TA TA/TO 0
## 3010 Online TA TA/TO 0
## 3011 Corporate Corporate 0
## 3012 Corporate Corporate 0
## 3013 Online TA TA/TO 0
## 3014 Online TA TA/TO 0
## 3015 Corporate Corporate 0
## 3016 Corporate Corporate 0
## 3017 Corporate Corporate 0
## 3018 Corporate Corporate 0
## 3019 Corporate Corporate 0
## 3020 Online TA TA/TO 0
## 3021 Corporate Corporate 0
## 3022 Corporate Corporate 0
## 3023 Online TA TA/TO 0
## 3024 Corporate Corporate 0
## 3025 Corporate Corporate 0
## 3026 Corporate Corporate 0
## 3027 Online TA TA/TO 0
## 3028 Online TA TA/TO 0
## 3029 Online TA TA/TO 0
## 3030 Corporate Corporate 0
## 3031 Online TA TA/TO 0
## 3032 Online TA TA/TO 0
## 3033 Corporate Corporate 0
## 3034 Corporate Corporate 0
## 3035 Online TA TA/TO 0
## 3036 Corporate Corporate 0
## 3037 Corporate Corporate 0
## 3038 Corporate Corporate 0
## 3039 Corporate Corporate 0
## 3040 Corporate Corporate 0
## 3041 Corporate Corporate 0
## 3042 Corporate Corporate 0
## 3043 Corporate Corporate 0
## 3044 Corporate Corporate 0
## 3045 Corporate Corporate 0
## 3046 Online TA TA/TO 0
## 3047 Corporate Corporate 0
## 3048 Corporate Corporate 0
## 3049 Corporate Corporate 0
## 3050 Corporate Corporate 0
## 3051 Corporate Corporate 0
## 3052 Corporate Corporate 0
## 3053 Corporate Corporate 0
## 3054 Corporate Corporate 0
## 3055 Corporate Corporate 0
## 3056 Online TA TA/TO 0
## 3057 Online TA TA/TO 0
## 3058 Corporate Corporate 0
## 3059 Corporate Corporate 0
## 3060 Online TA TA/TO 0
## 3061 Online TA TA/TO 0
## 3062 Corporate Corporate 0
## 3063 Corporate Corporate 0
## 3064 Online TA TA/TO 0
## 3065 Corporate Corporate 0
## 3066 Corporate Corporate 0
## 3067 Corporate Corporate 0
## 3068 Corporate Corporate 0
## 3069 Corporate Corporate 0
## 3070 Online TA TA/TO 0
## 3071 Online TA TA/TO 0
## 3072 Direct Direct 0
## 3073 Online TA TA/TO 0
## 3074 Online TA TA/TO 0
## 3075 Direct Direct 0
## 3076 Online TA TA/TO 0
## 3077 Offline TA/TO TA/TO 0
## 3078 Direct Direct 0
## 3079 Corporate Corporate 0
## 3080 Online TA TA/TO 0
## 3081 Online TA TA/TO 0
## 3082 Online TA TA/TO 0
## 3083 Online TA TA/TO 0
## 3084 Online TA TA/TO 0
## 3085 Online TA TA/TO 0
## 3086 Offline TA/TO TA/TO 0
## 3087 Offline TA/TO TA/TO 0
## 3088 Online TA TA/TO 0
## 3089 Online TA TA/TO 0
## 3090 Online TA TA/TO 0
## 3091 Online TA TA/TO 0
## 3092 Offline TA/TO TA/TO 0
## 3093 Online TA TA/TO 0
## 3094 Online TA TA/TO 0
## 3095 Online TA TA/TO 0
## 3096 Direct Direct 0
## 3097 Online TA TA/TO 0
## 3098 Online TA TA/TO 0
## 3099 Online TA TA/TO 0
## 3100 Online TA TA/TO 0
## 3101 Offline TA/TO TA/TO 0
## 3102 Online TA TA/TO 0
## 3103 Offline TA/TO TA/TO 0
## 3104 Online TA TA/TO 0
## 3105 Online TA TA/TO 0
## 3106 Online TA TA/TO 0
## 3107 Offline TA/TO TA/TO 0
## 3108 Offline TA/TO TA/TO 0
## 3109 Offline TA/TO TA/TO 0
## 3110 Offline TA/TO TA/TO 0
## 3111 Offline TA/TO TA/TO 0
## 3112 Offline TA/TO TA/TO 0
## 3113 Offline TA/TO TA/TO 0
## 3114 Offline TA/TO TA/TO 0
## 3115 Offline TA/TO TA/TO 0
## 3116 Offline TA/TO TA/TO 0
## 3117 Offline TA/TO TA/TO 0
## 3118 Offline TA/TO TA/TO 0
## 3119 Offline TA/TO TA/TO 0
## 3120 Offline TA/TO TA/TO 0
## 3121 Offline TA/TO TA/TO 0
## 3122 Offline TA/TO TA/TO 0
## 3123 Offline TA/TO TA/TO 0
## 3124 Offline TA/TO TA/TO 0
## 3125 Offline TA/TO TA/TO 0
## 3126 Offline TA/TO TA/TO 0
## 3127 Offline TA/TO TA/TO 0
## 3128 Offline TA/TO TA/TO 0
## 3129 Offline TA/TO TA/TO 0
## 3130 Offline TA/TO TA/TO 0
## 3131 Offline TA/TO TA/TO 0
## 3132 Offline TA/TO TA/TO 0
## 3133 Offline TA/TO TA/TO 0
## 3134 Online TA TA/TO 0
## 3135 Online TA TA/TO 0
## 3136 Offline TA/TO TA/TO 0
## 3137 Direct Direct 0
## 3138 Online TA TA/TO 0
## 3139 Online TA TA/TO 0
## 3140 Direct Direct 0
## 3141 Online TA TA/TO 0
## 3142 Direct Direct 0
## 3143 Offline TA/TO TA/TO 0
## 3144 Groups TA/TO 0
## 3145 Groups TA/TO 0
## 3146 Groups TA/TO 0
## 3147 Groups TA/TO 0
## 3148 Online TA TA/TO 0
## 3149 Online TA TA/TO 0
## 3150 Groups TA/TO 0
## 3151 Groups TA/TO 0
## 3152 Groups TA/TO 0
## 3153 Online TA TA/TO 0
## 3154 Online TA TA/TO 0
## 3155 Online TA TA/TO 0
## 3156 Groups TA/TO 0
## 3157 Groups TA/TO 0
## 3158 Groups TA/TO 0
## 3159 Online TA TA/TO 0
## 3160 Online TA TA/TO 0
## 3161 Online TA TA/TO 0
## 3162 Groups TA/TO 0
## 3163 Groups TA/TO 0
## 3164 Groups TA/TO 0
## 3165 Direct Direct 0
## 3166 Groups TA/TO 0
## 3167 Groups TA/TO 0
## 3168 Groups TA/TO 0
## 3169 Online TA TA/TO 0
## 3170 Online TA TA/TO 0
## 3171 Online TA TA/TO 0
## 3172 Online TA TA/TO 0
## 3173 Groups TA/TO 0
## 3174 Groups TA/TO 0
## 3175 Groups TA/TO 0
## 3176 Groups TA/TO 0
## 3177 Online TA TA/TO 0
## 3178 Groups TA/TO 0
## 3179 Groups TA/TO 0
## 3180 Groups TA/TO 0
## 3181 Online TA TA/TO 0
## 3182 Groups TA/TO 0
## 3183 Offline TA/TO TA/TO 0
## 3184 Corporate Corporate 0
## 3185 Corporate Corporate 0
## 3186 Corporate Corporate 0
## 3187 Corporate Corporate 0
## 3188 Corporate Corporate 0
## 3189 Corporate Corporate 0
## 3190 Corporate Corporate 0
## 3191 Corporate Corporate 0
## 3192 Corporate Corporate 0
## 3193 Corporate Corporate 0
## 3194 Corporate Corporate 0
## 3195 Corporate Corporate 0
## 3196 Corporate Corporate 0
## 3197 Corporate Corporate 0
## 3198 Corporate Corporate 0
## 3199 Corporate Corporate 0
## 3200 Corporate Corporate 0
## 3201 Corporate Corporate 0
## 3202 Corporate Corporate 0
## 3203 Corporate Corporate 0
## 3204 Corporate Corporate 0
## 3205 Corporate Corporate 0
## 3206 Online TA TA/TO 0
## 3207 Corporate Corporate 0
## 3208 Online TA TA/TO 0
## 3209 Online TA TA/TO 0
## 3210 Corporate Corporate 0
## 3211 Corporate Corporate 0
## 3212 Corporate Corporate 0
## 3213 Corporate Corporate 0
## 3214 Corporate Corporate 0
## 3215 Corporate Corporate 0
## 3216 Corporate Corporate 0
## 3217 Corporate Corporate 0
## 3218 Corporate Corporate 0
## 3219 Corporate Corporate 0
## 3220 Corporate Corporate 0
## 3221 Corporate Corporate 0
## 3222 Online TA TA/TO 0
## 3223 Corporate Corporate 0
## 3224 Corporate Corporate 0
## 3225 Corporate Corporate 0
## previous_cancellations previous_bookings_not_canceled reserved_room_type
## 1 0 0 C
## 2 0 0 C
## 3 0 0 A
## 4 0 0 A
## 5 0 0 A
## 6 0 0 A
## 7 0 0 C
## 8 0 0 C
## 9 0 0 A
## 10 0 0 D
## 11 0 0 E
## 12 0 0 D
## 13 0 0 D
## 14 0 0 G
## 15 0 0 E
## 16 0 0 D
## 17 0 0 E
## 18 0 0 A
## 19 0 0 A
## 20 0 0 G
## 21 0 0 F
## 22 0 0 A
## 23 0 0 A
## 24 0 0 D
## 25 0 0 D
## 26 0 0 D
## 27 0 0 D
## 28 0 0 E
## 29 0 0 A
## 30 0 0 D
## 31 0 0 A
## 32 0 0 D
## 33 0 0 E
## 34 0 0 A
## 35 0 0 D
## 36 0 0 D
## 37 0 0 A
## 38 0 0 D
## 39 0 0 D
## 40 0 0 E
## 41 0 0 G
## 42 0 0 D
## 43 0 0 F
## 44 0 0 E
## 45 0 0 A
## 46 0 0 G
## 47 0 0 A
## 48 0 0 E
## 49 0 0 A
## 50 0 0 E
## 51 0 0 D
## 52 0 0 A
## 53 0 0 D
## 54 0 0 A
## 55 0 0 H
## 56 0 0 C
## 57 0 0 H
## 58 0 0 A
## 59 0 0 G
## 60 0 0 A
## 61 0 0 G
## 62 0 0 E
## 63 0 0 F
## 64 0 0 A
## 65 0 0 A
## 66 0 0 G
## 67 0 0 A
## 68 0 0 D
## 69 0 0 A
## 70 0 0 A
## 71 0 0 D
## 72 0 0 A
## 73 0 0 A
## 74 0 0 A
## 75 0 0 A
## 76 0 0 A
## 77 0 0 E
## 78 0 0 A
## 79 0 0 A
## 80 0 0 D
## 81 0 0 A
## 82 0 0 A
## 83 0 0 A
## 84 0 0 A
## 85 0 0 E
## 86 0 0 E
## 87 0 0 F
## 88 0 0 A
## 89 0 0 A
## 90 0 0 A
## 91 0 0 A
## 92 0 0 E
## 93 0 0 C
## 94 0 0 A
## 95 0 0 A
## 96 0 0 A
## 97 0 0 F
## 98 0 0 E
## 99 0 0 D
## 100 0 0 E
## 101 0 0 A
## 102 0 0 D
## 103 0 0 F
## 104 0 0 A
## 105 0 0 E
## 106 0 0 H
## 107 0 0 D
## 108 0 0 A
## 109 0 0 A
## 110 0 0 A
## 111 0 0 D
## 112 0 0 E
## 113 0 0 A
## 114 0 0 E
## 115 0 0 E
## 116 0 0 A
## 117 0 0 D
## 118 0 0 D
## 119 0 0 D
## 120 0 0 H
## 121 0 0 D
## 122 0 0 A
## 123 0 0 E
## 124 0 0 A
## 125 0 0 D
## 126 0 0 H
## 127 0 0 E
## 128 0 0 A
## 129 0 0 A
## 130 0 0 A
## 131 0 0 A
## 132 0 0 A
## 133 0 0 D
## 134 0 0 A
## 135 0 0 A
## 136 0 0 A
## 137 0 0 A
## 138 0 0 A
## 139 0 0 D
## 140 0 0 G
## 141 0 0 G
## 142 0 0 D
## 143 0 0 D
## 144 0 0 A
## 145 0 0 E
## 146 0 0 E
## 147 0 0 H
## 148 0 0 A
## 149 0 0 H
## 150 0 0 D
## 151 0 0 C
## 152 0 0 F
## 153 0 0 A
## 154 0 0 E
## 155 0 0 H
## 156 0 0 D
## 157 0 0 D
## 158 0 0 D
## 159 0 0 A
## 160 0 0 D
## 161 0 0 G
## 162 0 0 A
## 163 0 0 G
## 164 0 0 D
## 165 0 0 G
## 166 0 0 D
## 167 0 0 G
## 168 0 0 A
## 169 0 0 E
## 170 0 0 A
## 171 0 0 A
## 172 0 0 D
## 173 0 0 D
## 174 0 0 E
## 175 0 0 A
## 176 0 0 A
## 177 0 0 E
## 178 0 0 F
## 179 0 0 A
## 180 0 0 E
## 181 0 0 G
## 182 0 0 A
## 183 0 0 A
## 184 0 0 A
## 185 0 0 D
## 186 0 0 A
## 187 0 0 D
## 188 0 0 F
## 189 0 0 D
## 190 0 0 A
## 191 0 0 D
## 192 0 0 A
## 193 0 0 D
## 194 0 0 A
## 195 0 0 A
## 196 0 0 F
## 197 0 0 A
## 198 0 0 A
## 199 0 0 A
## 200 0 0 C
## 201 0 0 A
## 202 0 0 H
## 203 0 0 D
## 204 0 0 D
## 205 0 0 A
## 206 0 0 A
## 207 0 0 E
## 208 0 0 D
## 209 0 0 A
## 210 0 0 D
## 211 0 0 E
## 212 0 0 A
## 213 0 0 A
## 214 0 0 A
## 215 0 0 D
## 216 0 0 A
## 217 0 0 A
## 218 0 0 A
## 219 0 0 A
## 220 0 0 A
## 221 0 0 A
## 222 0 0 A
## 223 0 0 E
## 224 0 0 D
## 225 0 0 E
## 226 0 0 D
## 227 0 0 E
## 228 0 0 A
## 229 0 0 E
## 230 0 0 E
## 231 0 0 C
## 232 0 0 A
## 233 0 0 H
## 234 0 0 D
## 235 0 0 C
## 236 0 0 G
## 237 0 0 A
## 238 0 0 A
## 239 0 0 A
## 240 0 0 A
## 241 0 0 A
## 242 0 0 A
## 243 0 0 A
## 244 0 0 A
## 245 0 0 E
## 246 0 0 E
## 247 0 0 A
## 248 0 0 A
## 249 0 0 A
## 250 0 0 A
## 251 0 0 A
## 252 0 0 A
## 253 0 0 A
## 254 0 0 A
## 255 0 0 G
## 256 0 0 D
## 257 0 0 A
## 258 0 0 C
## 259 0 0 A
## 260 0 0 E
## 261 0 0 F
## 262 0 0 F
## 263 0 0 E
## 264 0 0 A
## 265 0 0 C
## 266 0 0 G
## 267 0 0 A
## 268 0 0 D
## 269 0 0 D
## 270 0 0 E
## 271 0 0 E
## 272 0 0 F
## 273 0 0 C
## 274 0 0 C
## 275 0 0 A
## 276 0 0 D
## 277 0 0 F
## 278 0 0 C
## 279 0 0 D
## 280 0 0 F
## 281 0 0 A
## 282 0 0 A
## 283 0 0 A
## 284 0 0 E
## 285 0 0 D
## 286 0 0 A
## 287 0 0 E
## 288 0 0 A
## 289 0 0 E
## 290 0 0 E
## 291 0 0 E
## 292 0 0 A
## 293 0 0 A
## 294 0 0 G
## 295 0 0 A
## 296 0 0 A
## 297 0 0 A
## 298 0 0 C
## 299 0 0 E
## 300 0 0 A
## 301 0 0 D
## 302 0 0 A
## 303 0 0 D
## 304 0 0 G
## 305 0 0 E
## 306 0 0 A
## 307 0 0 E
## 308 0 0 G
## 309 0 0 A
## 310 0 0 A
## 311 0 0 A
## 312 0 0 A
## 313 0 0 D
## 314 0 0 A
## 315 0 0 D
## 316 0 0 C
## 317 0 0 A
## 318 0 0 A
## 319 0 0 E
## 320 0 0 D
## 321 0 0 A
## 322 0 0 D
## 323 0 0 E
## 324 0 0 E
## 325 0 0 A
## 326 0 0 A
## 327 0 0 D
## 328 0 0 A
## 329 0 0 D
## 330 0 0 A
## 331 0 0 A
## 332 0 0 G
## 333 0 0 A
## 334 0 0 F
## 335 0 0 A
## 336 0 0 A
## 337 0 0 D
## 338 0 0 A
## 339 0 0 A
## 340 0 0 A
## 341 0 0 E
## 342 0 0 G
## 343 0 0 D
## 344 0 0 F
## 345 0 0 H
## 346 0 0 D
## 347 0 0 G
## 348 0 0 A
## 349 0 0 A
## 350 0 0 A
## 351 0 0 A
## 352 0 0 A
## 353 0 0 A
## 354 0 0 A
## 355 0 0 L
## 356 0 0 A
## 357 0 0 A
## 358 0 0 E
## 359 0 0 D
## 360 0 0 A
## 361 0 0 A
## 362 0 0 A
## 363 0 0 E
## 364 0 0 A
## 365 0 0 D
## 366 0 0 A
## 367 0 0 D
## 368 0 0 D
## 369 0 0 D
## 370 0 0 D
## 371 0 0 A
## 372 0 0 D
## 373 0 0 D
## 374 0 0 E
## 375 0 0 A
## 376 0 0 A
## 377 0 0 D
## 378 0 0 A
## 379 0 0 A
## 380 0 0 D
## 381 0 0 E
## 382 0 0 A
## 383 0 0 A
## 384 0 0 A
## 385 0 0 A
## 386 0 0 D
## 387 0 0 D
## 388 0 0 A
## 389 0 0 A
## 390 0 0 D
## 391 0 0 E
## 392 0 0 A
## 393 0 0 E
## 394 0 0 A
## 395 0 0 A
## 396 0 0 E
## 397 0 0 H
## 398 0 0 A
## 399 0 0 A
## 400 0 0 A
## 401 0 0 A
## 402 0 0 A
## 403 0 0 A
## 404 0 0 A
## 405 0 0 D
## 406 0 0 D
## 407 0 0 H
## 408 0 0 A
## 409 0 0 A
## 410 0 0 D
## 411 0 0 D
## 412 0 0 D
## 413 0 0 H
## 414 0 0 A
## 415 0 0 A
## 416 0 0 A
## 417 0 0 A
## 418 0 0 A
## 419 0 0 G
## 420 0 0 A
## 421 0 0 A
## 422 0 0 A
## 423 0 0 A
## 424 0 0 A
## 425 0 0 A
## 426 0 0 A
## 427 0 0 A
## 428 0 0 A
## 429 0 0 A
## 430 0 0 A
## 431 0 0 A
## 432 0 0 A
## 433 0 0 A
## 434 0 0 A
## 435 0 0 G
## 436 0 0 A
## 437 0 0 F
## 438 0 0 A
## 439 0 0 F
## 440 0 0 C
## 441 0 0 H
## 442 0 0 A
## 443 0 0 A
## 444 0 0 A
## 445 0 0 D
## 446 0 0 A
## 447 0 0 A
## 448 0 0 A
## 449 0 0 A
## 450 0 0 D
## 451 0 0 E
## 452 0 0 D
## 453 0 0 A
## 454 0 0 D
## 455 0 0 A
## 456 0 0 D
## 457 0 0 A
## 458 0 0 A
## 459 0 0 E
## 460 0 0 A
## 461 0 0 A
## 462 0 0 E
## 463 0 0 D
## 464 0 0 A
## 465 0 0 A
## 466 0 0 A
## 467 0 0 A
## 468 0 0 A
## 469 0 0 D
## 470 0 0 D
## 471 0 0 D
## 472 0 0 A
## 473 0 0 A
## 474 0 0 A
## 475 0 0 A
## 476 0 0 A
## 477 0 0 A
## 478 0 0 A
## 479 0 0 A
## 480 0 0 A
## 481 0 0 A
## 482 0 0 A
## 483 0 0 G
## 484 0 0 E
## 485 0 0 G
## 486 0 0 A
## 487 0 0 G
## 488 0 0 A
## 489 0 0 E
## 490 0 0 A
## 491 0 0 A
## 492 0 0 A
## 493 0 0 D
## 494 0 0 H
## 495 0 0 F
## 496 0 0 A
## 497 0 0 A
## 498 0 0 E
## 499 0 0 D
## 500 0 0 D
## 501 0 0 A
## 502 0 0 D
## 503 0 0 A
## 504 0 0 A
## 505 0 0 L
## 506 0 0 A
## 507 0 0 A
## 508 0 0 A
## 509 0 0 D
## 510 0 0 E
## 511 0 0 A
## 512 0 0 C
## 513 0 0 D
## 514 0 0 E
## 515 0 0 E
## 516 0 0 A
## 517 0 0 A
## 518 0 0 E
## 519 0 0 H
## 520 0 0 E
## 521 0 0 A
## 522 0 0 C
## 523 0 0 D
## 524 0 0 C
## 525 0 0 G
## 526 0 0 D
## 527 0 0 D
## 528 0 0 E
## 529 0 0 A
## 530 0 0 A
## 531 0 0 D
## 532 0 0 D
## 533 0 0 D
## 534 0 0 A
## 535 0 0 A
## 536 0 0 D
## 537 0 0 A
## 538 0 0 A
## 539 0 0 A
## 540 0 0 A
## 541 0 0 D
## 542 0 0 A
## 543 0 0 A
## 544 0 0 E
## 545 0 0 E
## 546 0 0 A
## 547 0 0 D
## 548 0 0 A
## 549 0 0 D
## 550 0 0 E
## 551 0 0 C
## 552 0 0 A
## 553 0 0 D
## 554 0 0 E
## 555 0 0 A
## 556 0 0 D
## 557 0 0 D
## 558 0 0 A
## 559 0 0 G
## 560 0 0 A
## 561 0 0 D
## 562 0 0 D
## 563 0 0 G
## 564 0 0 C
## 565 0 0 D
## 566 0 0 E
## 567 0 0 A
## 568 0 0 G
## 569 0 0 A
## 570 0 0 A
## 571 0 0 A
## 572 0 0 A
## 573 0 0 A
## 574 0 0 A
## 575 0 0 D
## 576 0 0 E
## 577 0 0 D
## 578 0 0 G
## 579 0 0 A
## 580 0 0 D
## 581 0 0 G
## 582 0 0 A
## 583 0 0 D
## 584 0 0 E
## 585 0 0 F
## 586 0 0 C
## 587 0 0 A
## 588 0 0 A
## 589 0 0 D
## 590 0 0 A
## 591 0 0 G
## 592 0 0 F
## 593 0 0 A
## 594 0 0 D
## 595 0 0 D
## 596 0 0 D
## 597 0 0 D
## 598 0 0 A
## 599 0 0 A
## 600 0 0 E
## 601 0 0 A
## 602 0 0 A
## 603 0 0 G
## 604 0 0 A
## 605 0 0 G
## 606 0 0 A
## 607 0 0 E
## 608 0 0 A
## 609 0 0 A
## 610 0 0 E
## 611 0 0 A
## 612 0 0 E
## 613 0 0 A
## 614 0 0 D
## 615 0 0 D
## 616 0 0 G
## 617 0 0 D
## 618 0 0 D
## 619 0 0 C
## 620 0 0 D
## 621 0 0 D
## 622 0 0 C
## 623 0 0 A
## 624 0 0 E
## 625 0 0 A
## 626 0 0 D
## 627 0 0 D
## 628 0 0 H
## 629 0 0 E
## 630 0 0 D
## 631 0 0 E
## 632 0 0 D
## 633 0 0 D
## 634 0 0 E
## 635 0 0 D
## 636 0 0 A
## 637 0 0 A
## 638 0 0 D
## 639 0 0 A
## 640 0 0 A
## 641 0 0 A
## 642 0 0 G
## 643 0 0 D
## 644 0 0 D
## 645 0 0 D
## 646 0 0 E
## 647 0 0 H
## 648 0 0 D
## 649 0 0 A
## 650 0 0 A
## 651 0 0 D
## 652 0 0 A
## 653 0 0 A
## 654 0 0 A
## 655 0 0 A
## 656 0 0 A
## 657 0 0 A
## 658 0 0 A
## 659 0 0 A
## 660 0 0 H
## 661 0 0 D
## 662 0 0 A
## 663 0 0 E
## 664 0 0 A
## 665 0 0 A
## 666 0 0 D
## 667 0 0 A
## 668 0 0 A
## 669 0 0 A
## 670 0 0 A
## 671 0 0 A
## 672 0 0 D
## 673 0 0 A
## 674 0 0 A
## 675 0 0 A
## 676 0 0 A
## 677 0 0 A
## 678 0 0 A
## 679 0 0 A
## 680 0 0 D
## 681 0 0 A
## 682 0 0 A
## 683 0 0 C
## 684 0 0 G
## 685 0 0 A
## 686 0 0 A
## 687 0 0 A
## 688 0 0 E
## 689 0 0 A
## 690 0 0 A
## 691 0 0 A
## 692 0 0 A
## 693 0 0 D
## 694 0 0 A
## 695 0 0 A
## 696 0 0 E
## 697 0 0 A
## 698 0 0 A
## 699 0 0 A
## 700 0 0 D
## 701 0 0 A
## 702 0 0 D
## 703 0 0 A
## 704 0 0 A
## 705 0 0 A
## 706 0 0 G
## 707 0 0 E
## 708 0 0 D
## 709 0 0 A
## 710 0 0 A
## 711 0 0 A
## 712 0 0 A
## 713 0 0 E
## 714 0 0 E
## 715 0 0 A
## 716 0 0 E
## 717 0 0 C
## 718 0 0 A
## 719 0 0 E
## 720 0 0 A
## 721 0 0 A
## 722 0 0 A
## 723 0 0 A
## 724 0 0 H
## 725 0 0 E
## 726 0 0 G
## 727 0 0 A
## 728 0 0 D
## 729 0 0 E
## 730 0 0 A
## 731 0 0 A
## 732 0 0 A
## 733 0 0 A
## 734 0 0 F
## 735 0 0 A
## 736 0 0 A
## 737 0 0 A
## 738 0 0 A
## 739 0 0 D
## 740 0 0 A
## 741 0 0 A
## 742 0 0 F
## 743 0 0 A
## 744 0 0 A
## 745 0 0 E
## 746 0 0 D
## 747 0 0 D
## 748 0 0 G
## 749 0 0 A
## 750 0 0 A
## 751 0 0 A
## 752 0 0 A
## 753 0 0 A
## 754 0 0 A
## 755 0 0 E
## 756 0 0 G
## 757 0 0 A
## 758 0 0 E
## 759 0 0 A
## 760 0 0 D
## 761 0 0 D
## 762 0 0 D
## 763 0 0 D
## 764 0 0 G
## 765 0 0 D
## 766 0 0 A
## 767 0 0 A
## 768 0 0 F
## 769 0 0 D
## 770 0 0 D
## 771 0 0 D
## 772 0 0 A
## 773 0 0 D
## 774 0 0 A
## 775 0 0 D
## 776 0 0 A
## 777 0 0 A
## 778 0 0 D
## 779 0 0 A
## 780 0 0 A
## 781 0 0 H
## 782 0 0 A
## 783 0 0 H
## 784 0 0 A
## 785 0 0 A
## 786 0 0 A
## 787 0 0 A
## 788 0 0 D
## 789 0 0 A
## 790 0 0 F
## 791 0 0 D
## 792 0 0 A
## 793 0 0 A
## 794 0 0 A
## 795 0 0 D
## 796 0 0 A
## 797 0 0 A
## 798 0 0 A
## 799 0 0 A
## 800 0 0 G
## 801 0 0 A
## 802 0 0 D
## 803 0 0 A
## 804 0 0 C
## 805 0 0 A
## 806 0 0 A
## 807 0 0 D
## 808 0 0 E
## 809 0 0 A
## 810 0 0 A
## 811 0 0 E
## 812 0 0 D
## 813 0 0 D
## 814 0 0 D
## 815 0 0 A
## 816 0 0 E
## 817 0 0 F
## 818 0 0 A
## 819 0 0 D
## 820 0 0 D
## 821 0 0 A
## 822 0 0 A
## 823 0 0 D
## 824 0 0 A
## 825 0 0 A
## 826 0 0 D
## 827 0 0 A
## 828 0 0 E
## 829 0 0 H
## 830 0 0 A
## 831 0 0 A
## 832 0 0 A
## 833 0 0 A
## 834 0 0 A
## 835 0 0 D
## 836 0 0 A
## 837 0 0 A
## 838 0 0 G
## 839 0 0 A
## 840 0 0 D
## 841 0 0 E
## 842 0 0 E
## 843 0 0 A
## 844 0 0 A
## 845 0 0 A
## 846 0 0 D
## 847 0 0 F
## 848 0 0 A
## 849 0 0 F
## 850 0 0 G
## 851 0 0 G
## 852 0 0 D
## 853 0 0 D
## 854 0 0 C
## 855 0 0 A
## 856 0 0 A
## 857 0 0 C
## 858 0 0 G
## 859 0 0 A
## 860 0 0 D
## 861 0 0 A
## 862 0 0 A
## 863 0 0 E
## 864 0 0 A
## 865 0 0 D
## 866 0 0 E
## 867 0 0 C
## 868 0 0 D
## 869 0 0 C
## 870 0 0 A
## 871 0 0 A
## 872 0 0 A
## 873 0 0 E
## 874 0 0 E
## 875 0 0 E
## 876 0 0 A
## 877 0 0 D
## 878 0 0 A
## 879 0 0 C
## 880 0 0 D
## 881 0 0 A
## 882 0 0 D
## 883 0 0 C
## 884 0 0 C
## 885 0 0 D
## 886 0 0 D
## 887 0 0 D
## 888 0 0 C
## 889 0 0 D
## 890 0 0 A
## 891 0 0 E
## 892 0 0 A
## 893 0 0 A
## 894 0 0 A
## 895 0 0 D
## 896 0 0 A
## 897 0 0 F
## 898 0 0 A
## 899 0 0 C
## 900 0 0 C
## 901 0 0 D
## 902 0 0 D
## 903 0 0 D
## 904 0 0 A
## 905 0 0 A
## 906 0 0 A
## 907 0 0 D
## 908 0 0 D
## 909 0 0 D
## 910 0 0 D
## 911 0 0 A
## 912 0 0 L
## 913 0 0 A
## 914 0 0 D
## 915 0 0 A
## 916 0 0 A
## 917 0 0 E
## 918 0 0 D
## 919 0 0 A
## 920 0 0 A
## 921 0 0 A
## 922 0 0 A
## 923 0 0 A
## 924 0 0 A
## 925 0 0 E
## 926 0 0 G
## 927 0 0 E
## 928 0 0 D
## 929 0 0 A
## 930 0 0 D
## 931 0 0 A
## 932 0 0 D
## 933 0 0 D
## 934 0 0 G
## 935 0 0 E
## 936 0 0 A
## 937 0 0 H
## 938 0 0 D
## 939 0 0 D
## 940 0 0 D
## 941 0 0 A
## 942 0 0 D
## 943 0 0 E
## 944 0 0 G
## 945 0 0 A
## 946 0 0 A
## 947 0 0 D
## 948 0 0 A
## 949 0 0 E
## 950 0 0 A
## 951 0 0 C
## 952 0 0 C
## 953 0 0 A
## 954 0 0 A
## 955 0 0 D
## 956 0 0 A
## 957 0 0 A
## 958 0 0 E
## 959 0 0 A
## 960 0 0 G
## 961 0 0 E
## 962 0 0 C
## 963 0 0 A
## 964 0 0 D
## 965 0 0 A
## 966 0 0 G
## 967 0 0 A
## 968 0 0 D
## 969 0 0 D
## 970 0 0 D
## 971 0 0 A
## 972 0 0 G
## 973 0 0 C
## 974 0 0 C
## 975 0 0 F
## 976 0 0 A
## 977 0 0 D
## 978 0 0 A
## 979 0 0 A
## 980 0 0 A
## 981 0 0 A
## 982 0 0 A
## 983 0 0 E
## 984 0 0 D
## 985 0 0 G
## 986 0 0 A
## 987 0 0 D
## 988 0 0 D
## 989 0 0 E
## 990 0 0 E
## 991 0 0 D
## 992 0 0 D
## 993 0 0 A
## 994 0 0 A
## 995 0 0 D
## 996 0 0 A
## 997 0 0 E
## 998 0 0 A
## 999 0 0 C
## 1000 0 0 A
## 1001 0 0 A
## 1002 0 0 G
## 1003 0 0 A
## 1004 0 0 D
## 1005 0 0 A
## 1006 0 0 A
## 1007 0 0 A
## 1008 0 0 D
## 1009 0 0 E
## 1010 0 0 D
## 1011 0 0 E
## 1012 0 0 A
## 1013 0 0 A
## 1014 0 0 E
## 1015 0 0 D
## 1016 0 0 D
## 1017 0 0 A
## 1018 0 0 A
## 1019 0 0 G
## 1020 0 0 F
## 1021 0 0 D
## 1022 0 0 A
## 1023 0 0 G
## 1024 0 0 H
## 1025 0 0 E
## 1026 0 0 A
## 1027 0 0 F
## 1028 0 0 F
## 1029 0 0 D
## 1030 0 0 E
## 1031 0 0 A
## 1032 0 0 A
## 1033 0 0 D
## 1034 0 0 A
## 1035 0 0 A
## 1036 0 0 A
## 1037 0 0 A
## 1038 0 0 E
## 1039 0 0 A
## 1040 0 0 D
## 1041 0 0 C
## 1042 0 0 G
## 1043 0 0 D
## 1044 0 0 D
## 1045 0 0 A
## 1046 0 0 D
## 1047 0 0 D
## 1048 0 0 D
## 1049 0 0 A
## 1050 0 0 A
## 1051 0 0 A
## 1052 0 0 A
## 1053 0 0 D
## 1054 0 0 E
## 1055 0 0 D
## 1056 0 0 E
## 1057 0 0 C
## 1058 0 0 A
## 1059 0 0 A
## 1060 0 0 A
## 1061 0 0 E
## 1062 0 0 G
## 1063 0 0 A
## 1064 0 0 G
## 1065 0 0 D
## 1066 0 0 D
## 1067 0 0 D
## 1068 0 0 E
## 1069 0 0 A
## 1070 0 0 A
## 1071 0 0 A
## 1072 0 0 A
## 1073 0 0 A
## 1074 0 0 A
## 1075 0 0 E
## 1076 0 0 A
## 1077 0 0 E
## 1078 0 0 A
## 1079 0 0 A
## 1080 0 0 D
## 1081 0 0 A
## 1082 0 0 C
## 1083 0 0 A
## 1084 0 0 E
## 1085 0 0 A
## 1086 0 0 E
## 1087 0 0 A
## 1088 0 0 D
## 1089 0 0 D
## 1090 0 0 D
## 1091 0 0 D
## 1092 0 0 A
## 1093 0 0 A
## 1094 0 0 D
## 1095 0 0 G
## 1096 0 0 A
## 1097 0 0 D
## 1098 0 0 A
## 1099 0 0 D
## 1100 0 0 A
## 1101 0 0 E
## 1102 0 0 G
## 1103 0 0 E
## 1104 0 0 A
## 1105 0 0 A
## 1106 0 0 A
## 1107 0 0 D
## 1108 0 0 A
## 1109 0 0 F
## 1110 0 0 D
## 1111 0 0 D
## 1112 0 0 D
## 1113 0 0 C
## 1114 0 0 E
## 1115 0 0 A
## 1116 0 0 A
## 1117 0 0 C
## 1118 0 0 D
## 1119 0 0 D
## 1120 0 0 D
## 1121 0 0 G
## 1122 0 0 D
## 1123 0 0 A
## 1124 0 0 E
## 1125 0 0 A
## 1126 0 0 A
## 1127 0 0 A
## 1128 0 0 A
## 1129 0 0 A
## 1130 0 0 D
## 1131 0 0 A
## 1132 0 0 A
## 1133 0 0 D
## 1134 0 0 A
## 1135 0 0 A
## 1136 0 0 D
## 1137 0 0 A
## 1138 0 0 A
## 1139 0 0 A
## 1140 0 0 A
## 1141 0 0 A
## 1142 0 0 D
## 1143 0 0 E
## 1144 0 0 C
## 1145 0 0 A
## 1146 0 0 D
## 1147 0 0 C
## 1148 0 0 D
## 1149 0 0 A
## 1150 0 0 E
## 1151 0 0 A
## 1152 0 0 A
## 1153 0 0 E
## 1154 0 0 A
## 1155 0 0 A
## 1156 0 0 E
## 1157 0 0 A
## 1158 0 0 A
## 1159 0 0 A
## 1160 0 0 A
## 1161 0 0 E
## 1162 0 0 E
## 1163 0 0 E
## 1164 0 0 A
## 1165 0 0 D
## 1166 0 0 E
## 1167 0 0 A
## 1168 0 0 A
## 1169 0 0 D
## 1170 0 0 D
## 1171 0 0 D
## 1172 0 0 D
## 1173 0 0 D
## 1174 0 0 G
## 1175 0 0 A
## 1176 0 0 C
## 1177 0 0 A
## 1178 0 0 A
## 1179 0 0 E
## 1180 0 0 A
## 1181 0 0 A
## 1182 0 0 A
## 1183 0 0 A
## 1184 0 0 E
## 1185 0 0 A
## 1186 0 0 A
## 1187 0 0 A
## 1188 0 0 A
## 1189 0 0 A
## 1190 0 0 A
## 1191 0 0 A
## 1192 0 0 A
## 1193 0 0 A
## 1194 0 0 A
## 1195 0 0 A
## 1196 0 0 A
## 1197 0 0 A
## 1198 0 0 E
## 1199 0 0 E
## 1200 0 0 A
## 1201 0 0 A
## 1202 0 0 E
## 1203 0 0 E
## 1204 0 0 E
## 1205 0 0 C
## 1206 0 0 D
## 1207 0 0 C
## 1208 0 0 A
## 1209 0 0 A
## 1210 0 0 A
## 1211 0 0 D
## 1212 0 0 C
## 1213 0 0 A
## 1214 0 0 A
## 1215 0 0 D
## 1216 0 0 D
## 1217 0 0 A
## 1218 0 0 A
## 1219 0 0 D
## 1220 0 0 D
## 1221 0 0 A
## 1222 0 0 A
## 1223 0 0 D
## 1224 0 0 D
## 1225 0 0 D
## 1226 0 0 A
## 1227 0 0 D
## 1228 0 0 D
## 1229 0 0 E
## 1230 0 0 D
## 1231 0 0 A
## 1232 0 0 E
## 1233 0 0 A
## 1234 0 0 G
## 1235 0 0 A
## 1236 0 0 C
## 1237 0 0 A
## 1238 0 0 H
## 1239 0 0 A
## 1240 0 0 E
## 1241 0 0 D
## 1242 0 0 A
## 1243 0 0 A
## 1244 0 0 A
## 1245 0 0 A
## 1246 0 0 D
## 1247 0 0 A
## 1248 0 0 A
## 1249 0 0 A
## 1250 0 0 D
## 1251 0 0 A
## 1252 0 0 A
## 1253 0 0 D
## 1254 0 0 A
## 1255 0 0 A
## 1256 0 0 A
## 1257 0 0 A
## 1258 0 0 D
## 1259 0 0 D
## 1260 0 0 A
## 1261 0 0 D
## 1262 0 0 D
## 1263 0 0 A
## 1264 0 0 A
## 1265 0 0 D
## 1266 0 0 F
## 1267 0 0 A
## 1268 0 0 A
## 1269 0 0 E
## 1270 0 0 A
## 1271 0 0 A
## 1272 0 0 D
## 1273 0 0 D
## 1274 0 0 A
## 1275 0 0 D
## 1276 0 0 A
## 1277 0 0 A
## 1278 0 0 A
## 1279 0 0 D
## 1280 0 0 D
## 1281 0 0 H
## 1282 0 0 A
## 1283 0 0 A
## 1284 0 0 A
## 1285 0 0 D
## 1286 0 0 D
## 1287 0 0 D
## 1288 0 0 D
## 1289 0 0 A
## 1290 0 0 A
## 1291 0 0 A
## 1292 0 0 A
## 1293 0 0 A
## 1294 0 0 D
## 1295 0 0 C
## 1296 0 0 A
## 1297 0 0 E
## 1298 0 0 D
## 1299 0 0 H
## 1300 0 0 A
## 1301 0 0 A
## 1302 0 0 A
## 1303 0 0 H
## 1304 0 0 C
## 1305 0 0 A
## 1306 0 0 E
## 1307 0 0 A
## 1308 0 0 D
## 1309 0 0 A
## 1310 0 0 A
## 1311 0 0 A
## 1312 0 0 E
## 1313 0 0 A
## 1314 0 0 D
## 1315 0 0 A
## 1316 0 0 A
## 1317 0 0 A
## 1318 0 0 C
## 1319 0 0 A
## 1320 0 0 A
## 1321 0 0 A
## 1322 0 0 A
## 1323 0 0 D
## 1324 0 0 A
## 1325 0 0 A
## 1326 0 0 D
## 1327 0 0 A
## 1328 0 0 A
## 1329 0 0 A
## 1330 0 0 E
## 1331 0 0 E
## 1332 0 0 C
## 1333 0 0 D
## 1334 0 0 A
## 1335 0 0 D
## 1336 0 0 D
## 1337 0 0 F
## 1338 0 0 F
## 1339 0 0 E
## 1340 0 0 C
## 1341 0 0 E
## 1342 0 0 E
## 1343 0 0 D
## 1344 0 0 E
## 1345 0 0 A
## 1346 0 0 A
## 1347 0 0 E
## 1348 0 0 E
## 1349 0 0 D
## 1350 0 0 F
## 1351 0 0 D
## 1352 0 0 G
## 1353 0 0 A
## 1354 0 0 A
## 1355 0 0 A
## 1356 0 0 G
## 1357 0 0 A
## 1358 0 0 A
## 1359 0 0 A
## 1360 0 0 D
## 1361 0 0 E
## 1362 0 0 E
## 1363 0 0 A
## 1364 0 0 E
## 1365 0 0 G
## 1366 0 0 A
## 1367 0 0 D
## 1368 0 0 A
## 1369 0 0 D
## 1370 0 0 A
## 1371 0 0 A
## 1372 0 0 A
## 1373 0 0 A
## 1374 0 0 A
## 1375 0 0 A
## 1376 0 0 A
## 1377 0 0 E
## 1378 0 0 D
## 1379 0 0 D
## 1380 0 0 D
## 1381 0 0 A
## 1382 0 0 D
## 1383 0 0 A
## 1384 0 0 A
## 1385 0 0 A
## 1386 0 0 C
## 1387 0 0 A
## 1388 0 0 A
## 1389 0 0 D
## 1390 0 0 D
## 1391 0 0 A
## 1392 0 0 H
## 1393 0 0 A
## 1394 0 0 A
## 1395 0 0 A
## 1396 0 0 A
## 1397 0 0 D
## 1398 0 0 A
## 1399 0 0 C
## 1400 0 0 A
## 1401 0 0 G
## 1402 0 0 D
## 1403 0 0 A
## 1404 0 0 A
## 1405 0 0 A
## 1406 0 0 A
## 1407 0 0 D
## 1408 0 0 A
## 1409 0 0 A
## 1410 0 0 A
## 1411 0 0 A
## 1412 0 0 F
## 1413 0 0 E
## 1414 0 0 A
## 1415 0 0 A
## 1416 0 0 D
## 1417 0 0 A
## 1418 0 0 A
## 1419 0 0 C
## 1420 0 0 D
## 1421 0 0 A
## 1422 0 0 E
## 1423 0 0 F
## 1424 0 0 A
## 1425 0 0 H
## 1426 0 0 E
## 1427 0 0 D
## 1428 0 0 A
## 1429 0 0 E
## 1430 0 0 A
## 1431 0 0 A
## 1432 0 0 A
## 1433 0 0 A
## 1434 0 0 A
## 1435 0 0 A
## 1436 0 0 A
## 1437 0 0 D
## 1438 0 0 A
## 1439 0 0 D
## 1440 0 0 A
## 1441 0 0 C
## 1442 0 0 A
## 1443 0 0 D
## 1444 0 0 E
## 1445 0 0 D
## 1446 0 0 A
## 1447 0 0 A
## 1448 0 0 A
## 1449 0 0 A
## 1450 0 0 A
## 1451 0 0 A
## 1452 0 0 D
## 1453 0 0 A
## 1454 0 0 E
## 1455 0 0 D
## 1456 0 0 D
## 1457 0 0 E
## 1458 0 0 G
## 1459 0 0 A
## 1460 0 0 E
## 1461 0 0 A
## 1462 0 0 F
## 1463 0 0 E
## 1464 0 0 A
## 1465 0 0 A
## 1466 0 0 A
## 1467 0 0 A
## 1468 0 0 A
## 1469 0 0 D
## 1470 0 0 D
## 1471 0 0 E
## 1472 0 0 A
## 1473 0 0 A
## 1474 0 0 A
## 1475 0 0 D
## 1476 0 0 A
## 1477 0 0 C
## 1478 0 0 E
## 1479 0 0 D
## 1480 0 0 D
## 1481 0 0 G
## 1482 0 0 A
## 1483 0 0 A
## 1484 0 0 E
## 1485 0 0 D
## 1486 0 0 C
## 1487 0 0 A
## 1488 0 0 A
## 1489 0 0 A
## 1490 0 0 C
## 1491 0 0 D
## 1492 0 0 E
## 1493 0 0 E
## 1494 0 0 C
## 1495 0 0 E
## 1496 0 0 D
## 1497 0 0 A
## 1498 0 0 A
## 1499 0 0 D
## 1500 0 0 A
## 1501 0 0 D
## 1502 0 0 A
## 1503 0 0 D
## 1504 0 0 A
## 1505 0 0 A
## 1506 0 0 E
## 1507 0 0 A
## 1508 0 0 A
## 1509 0 0 E
## 1510 0 0 D
## 1511 0 0 E
## 1512 0 0 G
## 1513 0 0 A
## 1514 0 0 E
## 1515 0 0 A
## 1516 0 0 D
## 1517 0 0 E
## 1518 0 0 A
## 1519 0 0 E
## 1520 0 0 D
## 1521 0 0 E
## 1522 0 0 D
## 1523 0 0 A
## 1524 0 0 A
## 1525 0 0 G
## 1526 0 0 A
## 1527 0 0 G
## 1528 0 0 G
## 1529 0 0 A
## 1530 0 0 D
## 1531 0 0 A
## 1532 0 0 A
## 1533 0 0 A
## 1534 0 0 A
## 1535 0 0 D
## 1536 0 0 A
## 1537 0 0 A
## 1538 0 0 A
## 1539 0 0 A
## 1540 0 0 A
## 1541 0 0 E
## 1542 0 0 A
## 1543 0 0 D
## 1544 0 0 E
## 1545 0 0 A
## 1546 0 0 A
## 1547 0 0 D
## 1548 0 0 E
## 1549 0 0 D
## 1550 0 0 D
## 1551 0 0 D
## 1552 0 0 D
## 1553 0 0 D
## 1554 0 0 G
## 1555 0 0 D
## 1556 0 0 D
## 1557 0 0 A
## 1558 0 0 A
## 1559 0 0 D
## 1560 0 0 A
## 1561 0 0 E
## 1562 0 0 G
## 1563 0 0 F
## 1564 0 0 E
## 1565 0 0 D
## 1566 0 0 D
## 1567 0 0 D
## 1568 0 0 D
## 1569 0 0 D
## 1570 0 0 D
## 1571 0 0 D
## 1572 0 0 A
## 1573 0 0 D
## 1574 0 0 E
## 1575 0 0 E
## 1576 0 0 C
## 1577 0 0 G
## 1578 0 0 A
## 1579 0 0 G
## 1580 0 0 A
## 1581 0 0 E
## 1582 0 0 E
## 1583 0 0 H
## 1584 0 0 E
## 1585 0 0 D
## 1586 0 0 D
## 1587 0 0 D
## 1588 0 0 A
## 1589 0 0 F
## 1590 0 0 E
## 1591 0 0 D
## 1592 0 0 E
## 1593 0 0 A
## 1594 0 0 D
## 1595 0 0 D
## 1596 0 0 C
## 1597 0 0 G
## 1598 0 0 A
## 1599 0 0 A
## 1600 0 0 A
## 1601 0 0 E
## 1602 0 0 G
## 1603 0 0 C
## 1604 0 0 G
## 1605 0 0 E
## 1606 0 0 E
## 1607 0 0 E
## 1608 0 0 E
## 1609 0 0 D
## 1610 0 0 H
## 1611 0 0 A
## 1612 0 0 A
## 1613 0 0 A
## 1614 0 0 A
## 1615 0 0 A
## 1616 0 0 C
## 1617 0 0 A
## 1618 0 0 A
## 1619 0 0 F
## 1620 0 0 C
## 1621 0 0 A
## 1622 0 0 A
## 1623 0 0 A
## 1624 0 0 D
## 1625 0 0 A
## 1626 0 0 A
## 1627 0 0 A
## 1628 0 0 D
## 1629 0 0 A
## 1630 0 0 D
## 1631 0 0 H
## 1632 0 0 D
## 1633 0 0 D
## 1634 0 0 D
## 1635 0 0 F
## 1636 0 0 D
## 1637 0 0 E
## 1638 0 0 D
## 1639 0 0 D
## 1640 0 0 E
## 1641 0 0 E
## 1642 0 0 G
## 1643 0 0 A
## 1644 0 0 A
## 1645 0 0 D
## 1646 0 0 A
## 1647 0 0 A
## 1648 0 0 A
## 1649 0 0 E
## 1650 0 0 A
## 1651 0 0 A
## 1652 0 0 A
## 1653 0 0 E
## 1654 0 0 A
## 1655 0 0 A
## 1656 0 0 A
## 1657 0 0 A
## 1658 0 0 A
## 1659 0 0 A
## 1660 0 0 A
## 1661 0 0 A
## 1662 0 0 A
## 1663 0 0 E
## 1664 0 0 A
## 1665 0 0 A
## 1666 0 0 A
## 1667 0 0 D
## 1668 0 0 D
## 1669 0 0 A
## 1670 0 0 D
## 1671 0 0 A
## 1672 0 0 F
## 1673 0 0 E
## 1674 0 0 A
## 1675 0 0 F
## 1676 0 0 A
## 1677 0 0 A
## 1678 0 0 A
## 1679 0 0 E
## 1680 0 0 A
## 1681 0 0 A
## 1682 0 0 A
## 1683 0 0 D
## 1684 0 0 A
## 1685 0 0 A
## 1686 0 0 A
## 1687 0 0 A
## 1688 0 0 A
## 1689 0 0 A
## 1690 0 0 A
## 1691 0 0 A
## 1692 0 0 A
## 1693 0 0 A
## 1694 0 0 A
## 1695 0 0 E
## 1696 0 0 D
## 1697 0 0 E
## 1698 0 0 A
## 1699 0 0 E
## 1700 0 0 E
## 1701 0 0 A
## 1702 0 0 E
## 1703 0 0 A
## 1704 0 0 F
## 1705 0 0 A
## 1706 0 0 C
## 1707 0 0 A
## 1708 0 0 A
## 1709 0 0 A
## 1710 0 0 H
## 1711 0 0 A
## 1712 0 0 D
## 1713 0 0 A
## 1714 0 0 A
## 1715 0 0 A
## 1716 0 0 D
## 1717 0 0 D
## 1718 0 0 F
## 1719 0 0 E
## 1720 0 0 E
## 1721 0 0 D
## 1722 0 0 A
## 1723 0 0 D
## 1724 0 0 A
## 1725 0 0 A
## 1726 0 0 A
## 1727 0 0 A
## 1728 0 0 A
## 1729 0 0 D
## 1730 0 0 A
## 1731 0 0 D
## 1732 0 0 D
## 1733 0 0 G
## 1734 0 0 H
## 1735 0 0 D
## 1736 0 0 A
## 1737 0 0 A
## 1738 0 0 A
## 1739 0 0 A
## 1740 0 0 D
## 1741 0 0 A
## 1742 0 0 A
## 1743 0 0 G
## 1744 0 0 D
## 1745 0 0 A
## 1746 0 0 A
## 1747 0 0 A
## 1748 0 0 D
## 1749 0 0 A
## 1750 0 0 A
## 1751 0 0 D
## 1752 0 0 D
## 1753 0 0 A
## 1754 0 0 E
## 1755 0 0 A
## 1756 0 0 A
## 1757 0 0 A
## 1758 0 0 A
## 1759 0 0 A
## 1760 0 0 A
## 1761 0 0 D
## 1762 0 0 A
## 1763 0 0 D
## 1764 0 0 A
## 1765 0 0 E
## 1766 0 0 C
## 1767 0 0 F
## 1768 0 0 E
## 1769 0 0 A
## 1770 0 0 D
## 1771 0 0 E
## 1772 0 0 A
## 1773 0 0 A
## 1774 0 0 E
## 1775 0 0 D
## 1776 0 0 D
## 1777 0 0 D
## 1778 0 0 A
## 1779 0 0 E
## 1780 0 0 E
## 1781 0 0 D
## 1782 0 0 A
## 1783 0 0 C
## 1784 0 0 A
## 1785 0 0 E
## 1786 0 0 A
## 1787 0 0 A
## 1788 0 0 D
## 1789 0 0 D
## 1790 0 0 E
## 1791 0 0 D
## 1792 0 0 H
## 1793 0 0 D
## 1794 0 0 A
## 1795 0 0 A
## 1796 0 0 A
## 1797 0 0 E
## 1798 0 0 E
## 1799 0 0 D
## 1800 0 0 D
## 1801 0 0 E
## 1802 0 0 D
## 1803 0 0 A
## 1804 0 0 A
## 1805 0 0 D
## 1806 0 0 A
## 1807 0 0 A
## 1808 0 0 A
## 1809 0 0 C
## 1810 0 0 A
## 1811 0 0 E
## 1812 0 0 A
## 1813 0 0 A
## 1814 0 0 A
## 1815 0 0 A
## 1816 0 0 A
## 1817 0 0 G
## 1818 0 0 E
## 1819 0 0 G
## 1820 0 0 A
## 1821 0 0 A
## 1822 0 0 A
## 1823 0 0 A
## 1824 0 0 A
## 1825 0 0 H
## 1826 0 0 A
## 1827 0 0 A
## 1828 0 0 D
## 1829 0 0 A
## 1830 0 0 D
## 1831 0 0 D
## 1832 0 0 D
## 1833 0 0 A
## 1834 0 0 A
## 1835 0 0 A
## 1836 0 0 A
## 1837 0 0 E
## 1838 0 0 H
## 1839 0 0 A
## 1840 0 0 A
## 1841 0 0 A
## 1842 0 0 A
## 1843 0 0 A
## 1844 0 0 A
## 1845 0 0 A
## 1846 0 0 D
## 1847 0 0 A
## 1848 0 0 A
## 1849 0 0 A
## 1850 0 0 A
## 1851 0 0 A
## 1852 0 0 C
## 1853 0 0 D
## 1854 0 0 E
## 1855 0 0 A
## 1856 0 0 E
## 1857 0 0 D
## 1858 0 0 F
## 1859 0 0 F
## 1860 0 0 A
## 1861 0 0 A
## 1862 0 0 F
## 1863 0 0 E
## 1864 0 0 A
## 1865 0 0 C
## 1866 0 0 D
## 1867 0 0 E
## 1868 0 0 D
## 1869 0 0 A
## 1870 0 0 A
## 1871 0 0 D
## 1872 0 0 A
## 1873 0 0 E
## 1874 0 0 E
## 1875 0 0 C
## 1876 0 0 A
## 1877 0 0 G
## 1878 0 0 E
## 1879 0 0 D
## 1880 0 0 D
## 1881 0 0 D
## 1882 0 0 D
## 1883 0 0 D
## 1884 0 0 C
## 1885 0 0 A
## 1886 0 0 A
## 1887 0 0 D
## 1888 0 0 A
## 1889 0 0 G
## 1890 0 0 A
## 1891 0 0 G
## 1892 0 0 A
## 1893 0 0 E
## 1894 0 0 A
## 1895 0 0 D
## 1896 0 0 A
## 1897 0 0 D
## 1898 0 0 A
## 1899 0 0 A
## 1900 0 0 A
## 1901 0 0 D
## 1902 0 0 A
## 1903 0 0 A
## 1904 0 0 D
## 1905 0 0 A
## 1906 0 0 A
## 1907 0 0 A
## 1908 0 0 A
## 1909 0 0 A
## 1910 0 0 A
## 1911 0 0 A
## 1912 0 0 A
## 1913 0 0 E
## 1914 0 0 A
## 1915 0 0 A
## 1916 0 0 A
## 1917 0 0 D
## 1918 0 0 A
## 1919 0 0 A
## 1920 0 0 A
## 1921 0 0 A
## 1922 0 0 D
## 1923 0 0 D
## 1924 0 0 F
## 1925 0 0 A
## 1926 0 0 E
## 1927 0 0 E
## 1928 0 0 D
## 1929 0 0 D
## 1930 0 0 A
## 1931 0 0 E
## 1932 0 0 A
## 1933 0 0 C
## 1934 0 0 A
## 1935 0 0 A
## 1936 0 0 A
## 1937 0 0 A
## 1938 0 0 A
## 1939 0 0 E
## 1940 0 0 E
## 1941 0 0 G
## 1942 0 0 D
## 1943 0 0 A
## 1944 0 0 A
## 1945 0 0 A
## 1946 0 0 A
## 1947 0 0 A
## 1948 0 0 E
## 1949 0 0 A
## 1950 0 0 F
## 1951 0 0 F
## 1952 0 0 A
## 1953 0 0 A
## 1954 0 0 E
## 1955 0 0 A
## 1956 0 0 G
## 1957 0 0 E
## 1958 0 0 D
## 1959 0 0 D
## 1960 0 0 A
## 1961 0 0 A
## 1962 0 0 A
## 1963 0 0 A
## 1964 0 0 A
## 1965 0 0 A
## 1966 0 0 D
## 1967 0 0 A
## 1968 0 0 E
## 1969 0 0 A
## 1970 0 0 C
## 1971 0 0 A
## 1972 0 0 A
## 1973 0 0 G
## 1974 0 0 A
## 1975 0 0 A
## 1976 0 0 D
## 1977 0 0 E
## 1978 0 0 A
## 1979 0 0 D
## 1980 0 0 E
## 1981 0 0 D
## 1982 0 0 D
## 1983 0 0 D
## 1984 0 0 A
## 1985 0 0 D
## 1986 0 0 D
## 1987 0 0 D
## 1988 0 0 A
## 1989 0 0 F
## 1990 0 0 D
## 1991 0 0 D
## 1992 0 0 A
## 1993 0 0 E
## 1994 0 0 D
## 1995 0 0 E
## 1996 0 0 A
## 1997 0 0 A
## 1998 0 0 A
## 1999 0 0 A
## 2000 0 0 D
## 2001 0 0 E
## 2002 0 0 D
## 2003 0 0 A
## 2004 0 0 A
## 2005 0 0 G
## 2006 0 0 A
## 2007 0 0 E
## 2008 0 0 A
## 2009 0 0 E
## 2010 0 0 D
## 2011 0 0 E
## 2012 0 0 A
## 2013 0 0 D
## 2014 0 0 D
## 2015 0 0 E
## 2016 0 0 A
## 2017 0 0 D
## 2018 0 0 A
## 2019 0 0 D
## 2020 0 0 A
## 2021 0 0 A
## 2022 0 0 D
## 2023 0 0 D
## 2024 0 0 A
## 2025 0 0 E
## 2026 0 0 A
## 2027 0 0 A
## 2028 0 0 A
## 2029 0 0 E
## 2030 0 0 E
## 2031 0 0 A
## 2032 0 0 A
## 2033 0 0 D
## 2034 0 0 A
## 2035 0 0 D
## 2036 0 0 D
## 2037 0 0 D
## 2038 0 0 A
## 2039 0 0 D
## 2040 0 0 D
## 2041 0 0 D
## 2042 0 0 A
## 2043 0 0 D
## 2044 0 0 A
## 2045 0 0 A
## 2046 0 0 A
## 2047 0 0 A
## 2048 0 0 A
## 2049 0 0 D
## 2050 0 0 E
## 2051 0 0 D
## 2052 0 0 F
## 2053 0 0 A
## 2054 0 0 A
## 2055 0 0 A
## 2056 0 0 A
## 2057 0 0 E
## 2058 0 0 A
## 2059 0 0 D
## 2060 0 0 A
## 2061 0 0 F
## 2062 0 0 A
## 2063 0 0 G
## 2064 0 0 A
## 2065 0 0 A
## 2066 0 0 A
## 2067 0 0 A
## 2068 0 0 A
## 2069 0 0 A
## 2070 0 0 A
## 2071 0 0 A
## 2072 0 0 A
## 2073 0 0 A
## 2074 0 0 A
## 2075 0 0 D
## 2076 0 0 E
## 2077 0 0 D
## 2078 0 0 A
## 2079 0 0 A
## 2080 0 0 D
## 2081 0 0 A
## 2082 0 0 A
## 2083 0 0 E
## 2084 0 0 D
## 2085 0 0 A
## 2086 0 0 A
## 2087 0 0 A
## 2088 0 0 A
## 2089 0 0 E
## 2090 0 0 D
## 2091 0 0 E
## 2092 0 0 A
## 2093 0 0 E
## 2094 0 0 E
## 2095 0 0 A
## 2096 0 0 E
## 2097 0 0 E
## 2098 0 0 A
## 2099 0 0 D
## 2100 0 0 A
## 2101 0 0 F
## 2102 0 0 D
## 2103 0 0 A
## 2104 0 0 A
## 2105 0 0 A
## 2106 0 0 A
## 2107 0 0 A
## 2108 0 0 A
## 2109 0 0 A
## 2110 0 0 A
## 2111 0 0 D
## 2112 0 0 E
## 2113 0 0 A
## 2114 0 0 E
## 2115 0 0 A
## 2116 0 0 G
## 2117 0 0 G
## 2118 0 0 A
## 2119 0 0 A
## 2120 0 0 G
## 2121 0 0 A
## 2122 0 0 E
## 2123 0 0 A
## 2124 0 0 A
## 2125 0 0 D
## 2126 0 0 D
## 2127 0 0 A
## 2128 0 0 A
## 2129 0 0 D
## 2130 0 0 D
## 2131 0 0 D
## 2132 0 0 D
## 2133 0 0 A
## 2134 0 0 A
## 2135 0 0 A
## 2136 0 0 A
## 2137 0 0 A
## 2138 0 0 A
## 2139 0 0 A
## 2140 0 0 A
## 2141 0 0 E
## 2142 0 0 A
## 2143 0 0 A
## 2144 0 0 A
## 2145 0 0 A
## 2146 0 0 A
## 2147 0 0 A
## 2148 0 0 A
## 2149 0 0 A
## 2150 0 0 A
## 2151 0 0 A
## 2152 0 0 A
## 2153 0 0 D
## 2154 0 0 A
## 2155 0 0 A
## 2156 0 0 E
## 2157 0 0 A
## 2158 0 0 A
## 2159 0 0 A
## 2160 0 0 A
## 2161 0 0 F
## 2162 0 0 D
## 2163 0 0 G
## 2164 0 0 E
## 2165 0 0 A
## 2166 0 0 A
## 2167 0 0 D
## 2168 0 0 A
## 2169 0 0 G
## 2170 0 0 D
## 2171 0 0 A
## 2172 0 0 A
## 2173 0 0 A
## 2174 0 0 A
## 2175 0 0 A
## 2176 0 0 G
## 2177 0 0 G
## 2178 0 0 A
## 2179 0 0 A
## 2180 0 0 A
## 2181 0 0 E
## 2182 0 0 A
## 2183 0 0 A
## 2184 0 0 A
## 2185 0 0 A
## 2186 0 0 A
## 2187 0 0 A
## 2188 0 0 A
## 2189 0 0 A
## 2190 0 0 A
## 2191 0 0 A
## 2192 0 0 A
## 2193 0 0 A
## 2194 0 0 A
## 2195 0 0 A
## 2196 0 0 G
## 2197 0 0 D
## 2198 0 0 A
## 2199 0 0 A
## 2200 0 0 A
## 2201 0 0 A
## 2202 0 0 A
## 2203 0 0 A
## 2204 0 0 A
## 2205 0 0 A
## 2206 0 0 A
## 2207 0 0 E
## 2208 0 0 C
## 2209 0 0 A
## 2210 0 0 A
## 2211 0 0 A
## 2212 0 0 A
## 2213 0 0 A
## 2214 0 0 A
## 2215 0 0 D
## 2216 0 0 A
## 2217 0 0 A
## 2218 0 0 A
## 2219 0 0 A
## 2220 0 0 A
## 2221 0 0 A
## 2222 0 0 A
## 2223 0 0 G
## 2224 0 0 A
## 2225 0 0 A
## 2226 0 0 A
## 2227 0 0 E
## 2228 0 0 G
## 2229 0 0 D
## 2230 0 0 E
## 2231 0 0 E
## 2232 0 0 A
## 2233 0 0 E
## 2234 0 0 D
## 2235 0 0 A
## 2236 0 0 A
## 2237 0 0 A
## 2238 0 0 A
## 2239 0 0 A
## 2240 0 0 A
## 2241 0 0 F
## 2242 0 0 A
## 2243 0 0 A
## 2244 0 0 A
## 2245 0 0 A
## 2246 0 0 A
## 2247 0 0 A
## 2248 0 0 A
## 2249 0 0 D
## 2250 0 0 A
## 2251 0 0 D
## 2252 0 0 A
## 2253 0 0 D
## 2254 0 0 D
## 2255 0 0 A
## 2256 0 0 A
## 2257 0 0 A
## 2258 0 0 A
## 2259 0 0 A
## 2260 0 0 F
## 2261 0 0 A
## 2262 0 0 D
## 2263 0 0 A
## 2264 0 0 A
## 2265 0 0 D
## 2266 0 0 A
## 2267 0 0 A
## 2268 0 0 A
## 2269 0 0 A
## 2270 0 0 A
## 2271 0 0 A
## 2272 0 0 A
## 2273 0 0 A
## 2274 0 0 A
## 2275 0 0 C
## 2276 0 0 A
## 2277 0 0 A
## 2278 0 0 D
## 2279 0 0 A
## 2280 0 0 A
## 2281 0 0 D
## 2282 0 0 A
## 2283 0 0 A
## 2284 0 0 F
## 2285 0 0 D
## 2286 0 0 E
## 2287 0 0 A
## 2288 0 0 A
## 2289 0 0 D
## 2290 0 0 A
## 2291 0 0 A
## 2292 0 0 A
## 2293 0 0 A
## 2294 0 0 E
## 2295 0 0 A
## 2296 0 0 A
## 2297 0 0 A
## 2298 0 0 A
## 2299 0 0 A
## 2300 0 0 A
## 2301 0 0 A
## 2302 0 0 A
## 2303 0 0 A
## 2304 0 0 A
## 2305 0 0 A
## 2306 0 0 A
## 2307 0 0 E
## 2308 0 0 G
## 2309 0 0 A
## 2310 0 0 A
## 2311 0 0 A
## 2312 0 0 A
## 2313 0 0 A
## 2314 0 0 A
## 2315 0 0 A
## 2316 0 0 A
## 2317 0 0 A
## 2318 0 0 A
## 2319 0 0 A
## 2320 0 0 A
## 2321 0 0 A
## 2322 0 0 A
## 2323 0 0 A
## 2324 0 0 A
## 2325 0 0 A
## 2326 0 0 A
## 2327 0 0 A
## 2328 0 0 E
## 2329 0 0 A
## 2330 0 0 A
## 2331 0 0 A
## 2332 0 0 A
## 2333 0 0 A
## 2334 0 0 A
## 2335 0 0 A
## 2336 0 0 A
## 2337 0 0 A
## 2338 0 0 A
## 2339 0 0 A
## 2340 0 0 D
## 2341 0 0 A
## 2342 0 0 D
## 2343 0 0 D
## 2344 0 0 D
## 2345 0 0 D
## 2346 0 0 D
## 2347 0 0 A
## 2348 0 0 A
## 2349 0 0 A
## 2350 0 0 A
## 2351 0 0 A
## 2352 0 0 A
## 2353 0 0 D
## 2354 0 0 D
## 2355 0 0 A
## 2356 0 0 A
## 2357 0 0 A
## 2358 0 0 G
## 2359 0 0 A
## 2360 0 0 G
## 2361 0 0 D
## 2362 0 0 F
## 2363 0 0 D
## 2364 0 0 D
## 2365 0 0 A
## 2366 0 0 A
## 2367 0 0 A
## 2368 0 0 F
## 2369 0 0 A
## 2370 0 0 A
## 2371 0 0 A
## 2372 0 0 A
## 2373 0 0 A
## 2374 0 0 A
## 2375 0 0 A
## 2376 0 0 A
## 2377 0 0 A
## 2378 0 0 A
## 2379 0 0 A
## 2380 0 0 A
## 2381 0 0 A
## 2382 0 0 A
## 2383 0 0 D
## 2384 0 0 F
## 2385 0 0 D
## 2386 0 0 A
## 2387 0 0 D
## 2388 0 0 A
## 2389 0 0 A
## 2390 0 0 A
## 2391 0 0 D
## 2392 0 0 A
## 2393 0 0 E
## 2394 0 0 A
## 2395 0 0 A
## 2396 0 0 A
## 2397 0 0 E
## 2398 0 0 A
## 2399 0 0 A
## 2400 0 0 A
## 2401 0 0 A
## 2402 0 0 A
## 2403 0 0 A
## 2404 0 0 A
## 2405 0 0 D
## 2406 0 0 F
## 2407 0 0 A
## 2408 0 0 A
## 2409 0 0 D
## 2410 0 0 A
## 2411 0 0 A
## 2412 0 0 A
## 2413 0 0 A
## 2414 0 0 A
## 2415 0 0 A
## 2416 0 0 A
## 2417 0 0 E
## 2418 0 0 E
## 2419 0 0 D
## 2420 0 0 A
## 2421 0 0 E
## 2422 0 0 C
## 2423 0 0 A
## 2424 0 0 A
## 2425 0 0 A
## 2426 0 0 A
## 2427 0 0 A
## 2428 0 0 A
## 2429 0 0 G
## 2430 0 0 G
## 2431 0 0 E
## 2432 0 0 E
## 2433 0 0 A
## 2434 0 0 A
## 2435 0 0 D
## 2436 0 0 A
## 2437 0 0 D
## 2438 0 0 A
## 2439 0 0 A
## 2440 0 0 A
## 2441 0 0 A
## 2442 0 0 G
## 2443 0 0 A
## 2444 0 0 D
## 2445 0 0 D
## 2446 0 0 D
## 2447 0 0 A
## 2448 0 0 A
## 2449 0 0 E
## 2450 0 0 A
## 2451 0 0 F
## 2452 0 0 A
## 2453 0 0 A
## 2454 0 0 A
## 2455 0 0 E
## 2456 0 0 A
## 2457 0 0 E
## 2458 0 0 A
## 2459 0 0 A
## 2460 0 0 E
## 2461 0 0 F
## 2462 0 0 D
## 2463 0 0 D
## 2464 0 0 E
## 2465 0 0 A
## 2466 0 0 C
## 2467 0 0 A
## 2468 0 0 E
## 2469 0 0 A
## 2470 0 0 A
## 2471 0 0 D
## 2472 0 0 A
## 2473 0 0 D
## 2474 0 0 A
## 2475 0 0 A
## 2476 0 0 A
## 2477 0 0 A
## 2478 0 0 A
## 2479 0 0 A
## 2480 0 0 A
## 2481 0 0 A
## 2482 0 0 A
## 2483 0 0 A
## 2484 0 0 D
## 2485 0 0 A
## 2486 0 0 D
## 2487 0 0 A
## 2488 0 0 A
## 2489 0 0 A
## 2490 0 0 A
## 2491 0 0 A
## 2492 0 0 A
## 2493 0 0 A
## 2494 0 0 A
## 2495 0 0 A
## 2496 0 0 D
## 2497 0 0 A
## 2498 0 0 A
## 2499 0 0 A
## 2500 0 0 A
## 2501 0 0 A
## 2502 0 0 A
## 2503 0 0 A
## 2504 0 0 A
## 2505 0 0 A
## 2506 0 0 D
## 2507 0 0 A
## 2508 0 0 A
## 2509 0 0 A
## 2510 0 0 A
## 2511 0 0 A
## 2512 0 0 E
## 2513 0 0 A
## 2514 0 0 A
## 2515 0 0 D
## 2516 0 0 A
## 2517 0 0 A
## 2518 0 0 D
## 2519 0 0 D
## 2520 0 0 E
## 2521 0 0 F
## 2522 0 0 A
## 2523 0 0 A
## 2524 0 0 A
## 2525 0 0 G
## 2526 0 0 D
## 2527 0 0 A
## 2528 0 0 E
## 2529 0 0 A
## 2530 0 0 A
## 2531 0 0 A
## 2532 0 0 A
## 2533 0 0 A
## 2534 0 0 A
## 2535 0 0 A
## 2536 0 0 G
## 2537 0 0 A
## 2538 0 0 A
## 2539 0 0 A
## 2540 0 0 A
## 2541 0 0 A
## 2542 0 0 D
## 2543 0 0 A
## 2544 0 0 A
## 2545 0 0 D
## 2546 0 0 D
## 2547 0 0 A
## 2548 0 0 A
## 2549 0 0 D
## 2550 0 0 E
## 2551 0 0 A
## 2552 0 0 D
## 2553 0 0 A
## 2554 0 0 E
## 2555 0 0 D
## 2556 0 0 A
## 2557 0 0 D
## 2558 0 0 A
## 2559 0 0 E
## 2560 0 0 A
## 2561 0 0 E
## 2562 0 0 F
## 2563 0 0 D
## 2564 0 0 A
## 2565 0 0 A
## 2566 0 0 A
## 2567 0 0 D
## 2568 0 0 A
## 2569 0 0 D
## 2570 0 0 A
## 2571 0 0 A
## 2572 0 0 A
## 2573 0 0 D
## 2574 0 0 A
## 2575 0 0 D
## 2576 0 0 D
## 2577 0 0 E
## 2578 0 0 A
## 2579 0 0 A
## 2580 0 0 D
## 2581 0 0 A
## 2582 0 0 G
## 2583 0 0 E
## 2584 0 0 E
## 2585 0 0 E
## 2586 0 0 D
## 2587 0 0 A
## 2588 0 0 E
## 2589 0 0 D
## 2590 0 0 D
## 2591 0 0 A
## 2592 0 0 D
## 2593 0 0 D
## 2594 0 0 D
## 2595 0 0 A
## 2596 0 0 F
## 2597 0 0 A
## 2598 0 0 A
## 2599 0 0 D
## 2600 0 0 A
## 2601 0 0 D
## 2602 0 0 A
## 2603 0 0 D
## 2604 0 0 A
## 2605 0 0 A
## 2606 0 0 A
## 2607 0 0 A
## 2608 0 0 F
## 2609 0 0 A
## 2610 0 0 A
## 2611 0 0 D
## 2612 0 0 A
## 2613 0 0 A
## 2614 0 0 E
## 2615 0 0 A
## 2616 0 0 E
## 2617 0 0 A
## 2618 0 0 A
## 2619 0 0 E
## 2620 0 0 A
## 2621 0 0 D
## 2622 0 0 G
## 2623 0 0 A
## 2624 0 0 A
## 2625 0 0 A
## 2626 0 0 A
## 2627 0 0 A
## 2628 0 0 A
## 2629 0 0 A
## 2630 0 0 A
## 2631 0 0 A
## 2632 0 0 A
## 2633 0 0 A
## 2634 0 0 A
## 2635 0 0 A
## 2636 0 0 A
## 2637 0 0 A
## 2638 0 0 A
## 2639 0 0 A
## 2640 0 0 A
## 2641 0 0 A
## 2642 0 0 A
## 2643 0 0 A
## 2644 0 0 D
## 2645 0 0 A
## 2646 0 0 A
## 2647 0 0 A
## 2648 0 0 A
## 2649 0 0 A
## 2650 0 0 A
## 2651 0 0 D
## 2652 0 0 A
## 2653 0 0 A
## 2654 0 0 A
## 2655 0 0 A
## 2656 0 0 A
## 2657 0 0 A
## 2658 0 0 A
## 2659 0 0 A
## 2660 0 0 A
## 2661 0 0 A
## 2662 0 0 A
## 2663 0 0 E
## 2664 0 0 E
## 2665 0 0 D
## 2666 0 0 D
## 2667 0 0 D
## 2668 0 0 A
## 2669 0 0 A
## 2670 0 0 A
## 2671 0 0 E
## 2672 0 0 E
## 2673 0 0 G
## 2674 0 0 E
## 2675 0 0 E
## 2676 0 0 A
## 2677 0 0 A
## 2678 0 0 D
## 2679 0 0 E
## 2680 0 0 A
## 2681 0 0 A
## 2682 0 0 A
## 2683 0 0 A
## 2684 0 0 A
## 2685 0 0 A
## 2686 0 0 G
## 2687 0 0 A
## 2688 0 0 D
## 2689 0 0 A
## 2690 0 0 A
## 2691 0 0 C
## 2692 0 0 D
## 2693 0 0 A
## 2694 0 0 D
## 2695 0 0 D
## 2696 0 0 E
## 2697 0 0 A
## 2698 0 0 E
## 2699 0 0 A
## 2700 0 0 A
## 2701 0 0 A
## 2702 0 0 A
## 2703 0 0 A
## 2704 0 0 A
## 2705 0 0 D
## 2706 0 0 E
## 2707 0 0 A
## 2708 0 0 D
## 2709 0 0 A
## 2710 0 0 A
## 2711 0 0 A
## 2712 0 0 A
## 2713 0 0 A
## 2714 0 0 A
## 2715 0 0 A
## 2716 0 0 D
## 2717 0 0 D
## 2718 0 0 A
## 2719 0 0 A
## 2720 0 0 D
## 2721 0 0 A
## 2722 0 0 A
## 2723 0 0 A
## 2724 0 0 A
## 2725 0 0 A
## 2726 0 0 A
## 2727 0 0 A
## 2728 0 0 A
## 2729 0 0 A
## 2730 0 0 A
## 2731 0 0 A
## 2732 0 0 A
## 2733 0 0 A
## 2734 0 0 A
## 2735 0 0 A
## 2736 0 0 A
## 2737 0 0 A
## 2738 0 0 A
## 2739 0 0 A
## 2740 0 0 A
## 2741 0 0 E
## 2742 0 0 A
## 2743 0 0 F
## 2744 0 0 A
## 2745 0 0 D
## 2746 0 0 D
## 2747 0 0 A
## 2748 0 0 A
## 2749 0 0 A
## 2750 0 0 A
## 2751 0 0 A
## 2752 0 0 E
## 2753 0 0 A
## 2754 0 0 A
## 2755 0 0 A
## 2756 0 0 F
## 2757 0 0 A
## 2758 0 0 A
## 2759 0 0 A
## 2760 0 0 A
## 2761 0 0 E
## 2762 0 0 D
## 2763 0 0 A
## 2764 0 0 E
## 2765 0 0 D
## 2766 0 0 E
## 2767 0 0 A
## 2768 0 0 A
## 2769 0 0 A
## 2770 0 0 A
## 2771 0 0 A
## 2772 0 0 A
## 2773 0 0 A
## 2774 0 0 A
## 2775 0 0 A
## 2776 0 0 A
## 2777 0 0 F
## 2778 0 0 A
## 2779 0 0 D
## 2780 0 0 A
## 2781 0 0 A
## 2782 0 0 A
## 2783 0 0 A
## 2784 0 0 A
## 2785 0 0 A
## 2786 0 0 A
## 2787 0 0 E
## 2788 0 0 A
## 2789 0 0 A
## 2790 0 0 A
## 2791 0 0 A
## 2792 0 0 A
## 2793 0 0 A
## 2794 0 0 A
## 2795 0 0 A
## 2796 0 0 A
## 2797 0 0 A
## 2798 0 0 A
## 2799 0 0 A
## 2800 0 0 A
## 2801 0 0 A
## 2802 0 0 A
## 2803 0 0 A
## 2804 0 0 A
## 2805 0 0 A
## 2806 0 0 A
## 2807 0 0 A
## 2808 0 0 A
## 2809 0 0 A
## 2810 0 0 A
## 2811 0 0 A
## 2812 0 0 A
## 2813 0 0 A
## 2814 0 0 A
## 2815 0 0 A
## 2816 0 0 A
## 2817 0 0 A
## 2818 0 0 E
## 2819 0 0 A
## 2820 0 0 H
## 2821 0 0 A
## 2822 0 0 A
## 2823 0 0 A
## 2824 0 0 D
## 2825 0 0 A
## 2826 0 0 E
## 2827 0 0 A
## 2828 0 0 A
## 2829 0 0 A
## 2830 0 0 A
## 2831 0 0 A
## 2832 0 0 A
## 2833 0 0 A
## 2834 0 0 A
## 2835 0 0 E
## 2836 0 0 A
## 2837 0 0 A
## 2838 0 0 A
## 2839 0 0 A
## 2840 0 0 A
## 2841 0 0 A
## 2842 0 0 D
## 2843 0 0 A
## 2844 0 0 F
## 2845 0 0 E
## 2846 0 0 A
## 2847 0 0 A
## 2848 0 0 D
## 2849 0 0 A
## 2850 0 0 A
## 2851 0 0 A
## 2852 0 0 E
## 2853 0 0 A
## 2854 0 0 A
## 2855 0 0 A
## 2856 0 0 A
## 2857 0 0 A
## 2858 0 0 A
## 2859 0 0 A
## 2860 0 0 A
## 2861 0 0 A
## 2862 0 0 E
## 2863 0 0 A
## 2864 0 0 A
## 2865 0 0 D
## 2866 0 0 A
## 2867 0 0 A
## 2868 0 0 A
## 2869 0 0 A
## 2870 0 0 D
## 2871 0 0 C
## 2872 0 0 A
## 2873 0 0 A
## 2874 0 0 D
## 2875 0 0 A
## 2876 0 0 D
## 2877 0 0 A
## 2878 0 0 A
## 2879 0 0 A
## 2880 0 0 A
## 2881 0 0 A
## 2882 0 0 A
## 2883 0 0 A
## 2884 0 0 A
## 2885 0 0 A
## 2886 0 0 A
## 2887 0 0 A
## 2888 0 0 A
## 2889 0 0 A
## 2890 0 0 A
## 2891 0 0 A
## 2892 0 0 A
## 2893 0 0 A
## 2894 0 0 A
## 2895 0 0 A
## 2896 0 0 A
## 2897 0 0 E
## 2898 0 0 E
## 2899 0 0 A
## 2900 0 0 E
## 2901 0 0 A
## 2902 0 0 A
## 2903 0 0 A
## 2904 0 0 A
## 2905 0 0 A
## 2906 0 0 A
## 2907 0 0 D
## 2908 0 0 A
## 2909 0 0 A
## 2910 0 0 A
## 2911 0 0 D
## 2912 0 0 D
## 2913 0 0 A
## 2914 0 0 E
## 2915 0 0 A
## 2916 0 0 A
## 2917 0 0 A
## 2918 0 0 A
## 2919 0 0 E
## 2920 0 0 D
## 2921 0 0 D
## 2922 0 0 A
## 2923 0 0 A
## 2924 0 0 E
## 2925 0 0 A
## 2926 0 0 A
## 2927 0 0 E
## 2928 0 0 E
## 2929 0 0 E
## 2930 0 0 A
## 2931 0 0 E
## 2932 0 0 E
## 2933 0 0 E
## 2934 0 0 E
## 2935 0 0 A
## 2936 0 0 A
## 2937 0 0 A
## 2938 0 0 A
## 2939 0 0 A
## 2940 0 0 A
## 2941 0 0 A
## 2942 0 0 A
## 2943 0 0 A
## 2944 0 0 A
## 2945 0 0 A
## 2946 0 0 A
## 2947 0 0 A
## 2948 0 0 A
## 2949 0 0 A
## 2950 0 0 A
## 2951 0 0 A
## 2952 0 0 A
## 2953 0 0 A
## 2954 0 0 A
## 2955 0 0 A
## 2956 0 0 A
## 2957 0 0 A
## 2958 0 0 A
## 2959 0 0 A
## 2960 0 0 A
## 2961 0 0 A
## 2962 0 0 D
## 2963 0 0 F
## 2964 0 0 D
## 2965 0 0 A
## 2966 0 0 A
## 2967 0 0 A
## 2968 0 0 A
## 2969 0 0 D
## 2970 0 0 A
## 2971 0 0 A
## 2972 0 0 A
## 2973 0 0 D
## 2974 0 0 E
## 2975 0 0 A
## 2976 0 0 A
## 2977 0 0 A
## 2978 0 0 H
## 2979 0 0 A
## 2980 0 0 A
## 2981 0 0 A
## 2982 0 0 A
## 2983 0 0 A
## 2984 0 0 A
## 2985 0 0 A
## 2986 0 0 E
## 2987 0 0 E
## 2988 0 0 A
## 2989 0 0 A
## 2990 0 0 A
## 2991 0 0 D
## 2992 0 0 D
## 2993 0 0 A
## 2994 0 0 A
## 2995 0 0 A
## 2996 0 0 A
## 2997 0 0 A
## 2998 0 0 A
## 2999 0 0 A
## 3000 0 0 D
## 3001 0 0 A
## 3002 0 0 A
## 3003 0 0 A
## 3004 0 0 A
## 3005 0 0 A
## 3006 0 0 A
## 3007 0 0 A
## 3008 0 0 A
## 3009 0 0 A
## 3010 0 0 D
## 3011 0 0 A
## 3012 0 0 A
## 3013 0 0 E
## 3014 0 0 A
## 3015 0 0 A
## 3016 0 0 A
## 3017 0 0 A
## 3018 0 0 A
## 3019 0 0 A
## 3020 0 0 A
## 3021 0 0 A
## 3022 0 0 A
## 3023 0 0 A
## 3024 0 0 A
## 3025 0 0 A
## 3026 0 0 A
## 3027 0 0 A
## 3028 0 0 A
## 3029 0 0 A
## 3030 0 0 A
## 3031 0 0 D
## 3032 0 0 A
## 3033 0 0 A
## 3034 0 0 A
## 3035 0 0 D
## 3036 0 0 A
## 3037 0 0 A
## 3038 0 0 A
## 3039 0 0 A
## 3040 0 0 A
## 3041 0 0 A
## 3042 0 0 A
## 3043 0 0 A
## 3044 0 0 E
## 3045 0 0 A
## 3046 0 0 A
## 3047 0 0 A
## 3048 0 0 A
## 3049 0 0 A
## 3050 0 0 A
## 3051 0 0 A
## 3052 0 0 A
## 3053 0 0 A
## 3054 0 0 A
## 3055 0 0 A
## 3056 0 0 D
## 3057 0 0 D
## 3058 0 0 A
## 3059 0 0 A
## 3060 0 0 G
## 3061 0 0 D
## 3062 0 0 A
## 3063 0 0 A
## 3064 0 0 E
## 3065 0 0 A
## 3066 0 0 E
## 3067 0 0 E
## 3068 0 0 A
## 3069 0 0 A
## 3070 0 0 A
## 3071 0 0 A
## 3072 0 0 A
## 3073 0 0 D
## 3074 0 0 A
## 3075 0 0 F
## 3076 0 0 D
## 3077 0 0 A
## 3078 0 0 E
## 3079 0 0 E
## 3080 0 0 A
## 3081 0 0 D
## 3082 0 0 F
## 3083 0 0 E
## 3084 0 0 E
## 3085 0 0 D
## 3086 0 0 E
## 3087 0 0 A
## 3088 0 0 D
## 3089 0 0 A
## 3090 0 0 A
## 3091 0 0 A
## 3092 0 0 A
## 3093 0 0 A
## 3094 0 0 A
## 3095 0 0 A
## 3096 0 0 A
## 3097 0 0 A
## 3098 0 0 D
## 3099 0 0 A
## 3100 0 0 A
## 3101 0 0 A
## 3102 0 0 A
## 3103 0 0 A
## 3104 0 0 A
## 3105 0 0 A
## 3106 0 0 A
## 3107 0 0 A
## 3108 0 0 A
## 3109 0 0 A
## 3110 0 0 A
## 3111 0 0 A
## 3112 0 0 A
## 3113 0 0 A
## 3114 0 0 A
## 3115 0 0 A
## 3116 0 0 A
## 3117 0 0 A
## 3118 0 0 A
## 3119 0 0 A
## 3120 0 0 A
## 3121 0 0 A
## 3122 0 0 A
## 3123 0 0 A
## 3124 0 0 A
## 3125 0 0 A
## 3126 0 0 A
## 3127 0 0 A
## 3128 0 0 A
## 3129 0 0 A
## 3130 0 0 A
## 3131 0 0 A
## 3132 0 0 A
## 3133 0 0 A
## 3134 0 0 A
## 3135 0 0 C
## 3136 0 0 A
## 3137 0 0 A
## 3138 0 0 E
## 3139 0 0 G
## 3140 0 0 E
## 3141 0 0 A
## 3142 0 0 E
## 3143 0 0 E
## 3144 0 0 A
## 3145 0 0 A
## 3146 0 0 A
## 3147 0 0 A
## 3148 0 0 A
## 3149 0 0 A
## 3150 0 0 A
## 3151 0 0 A
## 3152 0 0 A
## 3153 0 0 A
## 3154 0 0 A
## 3155 0 0 A
## 3156 0 0 A
## 3157 0 0 A
## 3158 0 0 A
## 3159 0 0 A
## 3160 0 0 A
## 3161 0 0 A
## 3162 0 0 A
## 3163 0 0 A
## 3164 0 0 A
## 3165 0 0 A
## 3166 0 0 A
## 3167 0 0 A
## 3168 0 0 A
## 3169 0 0 A
## 3170 0 0 A
## 3171 0 0 A
## 3172 0 0 A
## 3173 0 0 A
## 3174 0 0 A
## 3175 0 0 A
## 3176 0 0 A
## 3177 0 0 A
## 3178 0 0 A
## 3179 0 0 A
## 3180 0 0 A
## 3181 0 0 A
## 3182 0 0 A
## 3183 0 0 A
## 3184 0 0 A
## 3185 0 0 A
## 3186 0 0 A
## 3187 0 0 A
## 3188 0 0 A
## 3189 0 0 A
## 3190 0 0 A
## 3191 0 0 A
## 3192 0 0 A
## 3193 0 0 A
## 3194 0 0 A
## 3195 0 0 A
## 3196 0 0 A
## 3197 0 0 C
## 3198 0 0 A
## 3199 0 0 A
## 3200 0 0 A
## 3201 0 0 A
## 3202 0 0 A
## 3203 0 0 A
## 3204 0 0 A
## 3205 0 0 A
## 3206 0 0 A
## 3207 0 0 C
## 3208 0 0 D
## 3209 0 0 A
## 3210 0 0 A
## 3211 0 0 A
## 3212 0 0 A
## 3213 0 0 A
## 3214 0 0 A
## 3215 0 0 A
## 3216 0 0 A
## 3217 0 0 A
## 3218 0 0 A
## 3219 0 0 A
## 3220 0 0 A
## 3221 0 0 A
## 3222 0 0 D
## 3223 0 0 C
## 3224 0 0 A
## 3225 0 0 A
## assigned_room_type booking_changes deposit_type company
## 1 C 3 No Deposit NULL
## 2 C 4 No Deposit NULL
## 3 C 0 No Deposit NULL
## 4 A 0 No Deposit NULL
## 5 A 0 No Deposit NULL
## 6 A 0 No Deposit NULL
## 7 C 0 No Deposit NULL
## 8 C 0 No Deposit NULL
## 9 A 0 No Deposit NULL
## 10 D 0 No Deposit NULL
## 11 E 0 No Deposit NULL
## 12 D 0 No Deposit NULL
## 13 E 0 No Deposit NULL
## 14 G 1 No Deposit NULL
## 15 E 0 No Deposit NULL
## 16 E 0 No Deposit NULL
## 17 E 0 No Deposit NULL
## 18 E 0 No Deposit NULL
## 19 G 0 No Deposit 110
## 20 G 0 No Deposit NULL
## 21 F 0 No Deposit NULL
## 22 A 1 No Deposit NULL
## 23 A 1 No Deposit NULL
## 24 D 1 No Deposit NULL
## 25 I 0 No Deposit NULL
## 26 D 0 No Deposit NULL
## 27 D 0 No Deposit NULL
## 28 E 0 No Deposit NULL
## 29 A 0 No Deposit NULL
## 30 D 0 No Deposit NULL
## 31 A 2 No Deposit NULL
## 32 D 0 No Deposit NULL
## 33 E 0 No Deposit NULL
## 34 C 0 No Deposit NULL
## 35 D 0 No Deposit NULL
## 36 D 0 No Deposit NULL
## 37 C 0 No Deposit NULL
## 38 D 0 No Deposit NULL
## 39 D 0 No Deposit NULL
## 40 E 0 No Deposit NULL
## 41 G 0 No Deposit NULL
## 42 D 0 No Deposit NULL
## 43 F 0 No Deposit NULL
## 44 E 0 No Deposit NULL
## 45 A 0 No Deposit NULL
## 46 G 0 No Deposit NULL
## 47 A 0 No Deposit NULL
## 48 E 0 No Deposit NULL
## 49 B 1 No Deposit NULL
## 50 F 1 No Deposit NULL
## 51 D 0 No Deposit NULL
## 52 A 0 No Deposit NULL
## 53 D 0 No Deposit NULL
## 54 C 0 No Deposit NULL
## 55 H 0 No Deposit NULL
## 56 C 0 No Deposit NULL
## 57 H 0 No Deposit NULL
## 58 D 0 No Deposit NULL
## 59 G 0 No Deposit NULL
## 60 C 0 No Deposit NULL
## 61 G 0 No Deposit NULL
## 62 E 0 No Deposit NULL
## 63 F 0 No Deposit NULL
## 64 C 0 No Deposit NULL
## 65 A 0 No Deposit NULL
## 66 H 0 No Deposit NULL
## 67 C 0 No Deposit NULL
## 68 D 0 No Deposit NULL
## 69 A 0 No Deposit NULL
## 70 A 0 No Deposit NULL
## 71 D 0 No Deposit NULL
## 72 A 0 No Deposit NULL
## 73 A 0 No Deposit NULL
## 74 A 0 No Deposit NULL
## 75 A 0 No Deposit NULL
## 76 A 0 No Deposit NULL
## 77 E 0 No Deposit NULL
## 78 A 0 No Deposit NULL
## 79 A 0 No Deposit NULL
## 80 D 0 No Deposit NULL
## 81 A 0 No Deposit NULL
## 82 A 0 No Deposit NULL
## 83 A 0 No Deposit NULL
## 84 A 2 No Deposit NULL
## 85 E 0 No Deposit NULL
## 86 E 0 No Deposit NULL
## 87 F 1 No Deposit NULL
## 88 A 0 No Deposit NULL
## 89 C 0 No Deposit NULL
## 90 C 0 No Deposit NULL
## 91 C 0 No Deposit NULL
## 92 E 0 No Deposit NULL
## 93 C 0 No Deposit NULL
## 94 A 0 No Deposit NULL
## 95 A 0 No Deposit NULL
## 96 A 0 No Deposit NULL
## 97 F 0 No Deposit NULL
## 98 E 0 No Deposit NULL
## 99 D 0 No Deposit NULL
## 100 E 0 No Deposit NULL
## 101 C 0 No Deposit NULL
## 102 D 0 No Deposit NULL
## 103 F 0 No Deposit NULL
## 104 C 0 No Deposit NULL
## 105 E 0 No Deposit NULL
## 106 H 0 No Deposit NULL
## 107 D 0 No Deposit NULL
## 108 A 0 No Deposit NULL
## 109 A 0 No Deposit NULL
## 110 A 0 No Deposit NULL
## 111 D 0 No Deposit NULL
## 112 F 0 No Deposit NULL
## 113 A 0 No Deposit NULL
## 114 E 0 No Deposit NULL
## 115 E 0 No Deposit NULL
## 116 A 0 No Deposit NULL
## 117 D 0 No Deposit NULL
## 118 D 0 No Deposit NULL
## 119 D 1 No Deposit NULL
## 120 G 1 No Deposit NULL
## 121 C 0 No Deposit NULL
## 122 A 0 No Deposit NULL
## 123 G 1 No Deposit NULL
## 124 A 0 No Deposit NULL
## 125 D 0 No Deposit NULL
## 126 H 2 No Deposit NULL
## 127 E 0 No Deposit NULL
## 128 C 0 No Deposit NULL
## 129 A 0 No Deposit NULL
## 130 A 0 No Deposit NULL
## 131 C 0 No Deposit NULL
## 132 C 0 No Deposit NULL
## 133 D 0 No Deposit NULL
## 134 C 1 No Deposit NULL
## 135 A 0 No Deposit NULL
## 136 D 0 No Deposit NULL
## 137 E 0 No Deposit NULL
## 138 A 0 No Deposit NULL
## 139 D 0 No Deposit NULL
## 140 G 0 No Deposit NULL
## 141 G 3 No Deposit NULL
## 142 E 0 No Deposit NULL
## 143 D 0 No Deposit NULL
## 144 D 0 No Deposit NULL
## 145 E 0 No Deposit NULL
## 146 E 0 No Deposit NULL
## 147 H 0 No Deposit NULL
## 148 A 0 No Deposit NULL
## 149 H 0 No Deposit NULL
## 150 D 0 No Deposit NULL
## 151 C 1 No Deposit NULL
## 152 F 0 No Deposit NULL
## 153 A 0 No Deposit NULL
## 154 E 0 No Deposit NULL
## 155 H 1 No Deposit NULL
## 156 D 0 No Deposit NULL
## 157 C 3 No Deposit NULL
## 158 D 0 No Deposit NULL
## 159 A 0 No Deposit NULL
## 160 D 0 No Deposit NULL
## 161 G 1 No Deposit NULL
## 162 C 0 No Deposit NULL
## 163 G 0 No Deposit NULL
## 164 D 0 No Deposit NULL
## 165 G 0 No Deposit NULL
## 166 E 1 No Deposit NULL
## 167 G 0 No Deposit NULL
## 168 H 0 No Deposit NULL
## 169 H 0 No Deposit NULL
## 170 E 0 No Deposit NULL
## 171 E 0 No Deposit NULL
## 172 F 0 No Deposit NULL
## 173 D 0 No Deposit NULL
## 174 E 0 No Deposit NULL
## 175 E 0 No Deposit NULL
## 176 C 1 No Deposit NULL
## 177 E 0 No Deposit NULL
## 178 F 0 No Deposit NULL
## 179 C 0 No Deposit NULL
## 180 E 1 No Deposit NULL
## 181 G 0 No Deposit NULL
## 182 A 0 No Deposit NULL
## 183 A 0 No Deposit NULL
## 184 C 0 No Deposit NULL
## 185 D 0 No Deposit NULL
## 186 A 0 No Deposit NULL
## 187 D 1 No Deposit NULL
## 188 F 5 No Deposit NULL
## 189 D 0 No Deposit NULL
## 190 A 1 No Deposit NULL
## 191 D 0 No Deposit NULL
## 192 A 0 No Deposit NULL
## 193 D 0 No Deposit NULL
## 194 A 0 No Deposit NULL
## 195 A 0 No Deposit NULL
## 196 F 0 No Deposit NULL
## 197 A 0 No Deposit NULL
## 198 E 0 No Deposit NULL
## 199 A 0 No Deposit NULL
## 200 C 0 No Deposit NULL
## 201 A 0 No Deposit NULL
## 202 H 2 No Deposit NULL
## 203 D 0 No Deposit NULL
## 204 E 0 No Deposit NULL
## 205 A 2 No Deposit NULL
## 206 A 0 No Deposit NULL
## 207 E 0 No Deposit NULL
## 208 D 0 No Deposit NULL
## 209 A 0 No Deposit NULL
## 210 D 0 No Deposit NULL
## 211 E 0 No Deposit NULL
## 212 A 0 No Deposit NULL
## 213 A 0 No Deposit NULL
## 214 A 0 No Deposit NULL
## 215 D 0 No Deposit NULL
## 216 A 0 No Deposit NULL
## 217 A 0 No Deposit NULL
## 218 A 0 No Deposit NULL
## 219 A 0 No Deposit 110
## 220 A 0 No Deposit 110
## 221 F 0 No Deposit 110
## 222 A 0 No Deposit NULL
## 223 E 1 No Deposit NULL
## 224 D 0 No Deposit NULL
## 225 F 0 No Deposit NULL
## 226 D 0 No Deposit NULL
## 227 E 0 No Deposit NULL
## 228 A 0 No Deposit NULL
## 229 E 1 No Deposit NULL
## 230 E 0 No Deposit NULL
## 231 C 0 No Deposit NULL
## 232 C 0 No Deposit NULL
## 233 G 2 No Deposit NULL
## 234 D 0 No Deposit NULL
## 235 C 0 No Deposit NULL
## 236 G 0 No Deposit NULL
## 237 A 0 No Deposit NULL
## 238 A 0 No Deposit NULL
## 239 A 0 No Deposit NULL
## 240 A 0 No Deposit NULL
## 241 A 0 No Deposit NULL
## 242 A 0 No Deposit NULL
## 243 D 0 No Deposit NULL
## 244 A 0 No Deposit NULL
## 245 E 0 No Deposit NULL
## 246 E 0 No Deposit NULL
## 247 A 0 No Deposit NULL
## 248 A 0 No Deposit NULL
## 249 A 0 No Deposit NULL
## 250 A 0 No Deposit NULL
## 251 A 0 No Deposit NULL
## 252 A 0 No Deposit NULL
## 253 A 0 No Deposit NULL
## 254 A 0 No Deposit NULL
## 255 G 2 No Deposit NULL
## 256 D 1 No Deposit NULL
## 257 A 0 No Deposit NULL
## 258 C 0 No Deposit NULL
## 259 C 0 No Deposit NULL
## 260 E 0 No Deposit NULL
## 261 F 0 No Deposit NULL
## 262 F 0 No Deposit NULL
## 263 E 0 No Deposit NULL
## 264 A 0 No Deposit NULL
## 265 C 1 No Deposit NULL
## 266 G 0 No Deposit NULL
## 267 A 1 No Deposit NULL
## 268 D 1 No Deposit NULL
## 269 D 1 No Deposit NULL
## 270 E 1 No Deposit NULL
## 271 E 2 No Deposit NULL
## 272 F 0 No Deposit NULL
## 273 C 0 No Deposit NULL
## 274 C 0 No Deposit NULL
## 275 A 0 No Deposit NULL
## 276 D 0 No Deposit NULL
## 277 F 0 No Deposit NULL
## 278 C 0 No Deposit NULL
## 279 D 0 No Deposit NULL
## 280 F 0 No Deposit NULL
## 281 A 0 No Deposit NULL
## 282 A 0 No Deposit NULL
## 283 A 1 No Deposit NULL
## 284 E 0 No Deposit NULL
## 285 D 0 No Deposit NULL
## 286 A 0 No Deposit NULL
## 287 E 0 No Deposit NULL
## 288 A 0 No Deposit NULL
## 289 E 0 No Deposit NULL
## 290 E 0 No Deposit NULL
## 291 E 1 No Deposit NULL
## 292 A 0 No Deposit NULL
## 293 A 1 No Deposit NULL
## 294 G 0 No Deposit NULL
## 295 A 0 No Deposit NULL
## 296 A 0 No Deposit 113
## 297 A 0 No Deposit NULL
## 298 C 0 No Deposit NULL
## 299 F 0 No Deposit NULL
## 300 A 0 No Deposit NULL
## 301 D 0 No Deposit NULL
## 302 A 0 No Deposit NULL
## 303 D 0 No Deposit NULL
## 304 G 1 No Deposit NULL
## 305 E 1 No Deposit NULL
## 306 A 0 No Deposit NULL
## 307 E 0 No Deposit NULL
## 308 G 0 No Deposit NULL
## 309 A 0 No Deposit NULL
## 310 A 0 No Deposit NULL
## 311 A 0 No Deposit NULL
## 312 A 0 No Deposit NULL
## 313 D 0 No Deposit NULL
## 314 A 0 No Deposit NULL
## 315 D 1 No Deposit NULL
## 316 C 0 No Deposit NULL
## 317 A 0 No Deposit NULL
## 318 A 0 No Deposit NULL
## 319 E 0 No Deposit NULL
## 320 D 0 No Deposit NULL
## 321 A 0 No Deposit NULL
## 322 D 0 No Deposit NULL
## 323 E 0 No Deposit NULL
## 324 E 0 No Deposit NULL
## 325 A 0 No Deposit NULL
## 326 A 0 No Deposit NULL
## 327 D 0 No Deposit NULL
## 328 A 0 No Deposit NULL
## 329 D 2 No Deposit NULL
## 330 A 0 No Deposit NULL
## 331 A 0 No Deposit NULL
## 332 G 0 No Deposit NULL
## 333 A 0 No Deposit NULL
## 334 E 0 No Deposit NULL
## 335 B 0 No Deposit NULL
## 336 A 0 No Deposit NULL
## 337 D 1 No Deposit NULL
## 338 A 0 No Deposit NULL
## 339 A 0 No Deposit NULL
## 340 D 0 No Deposit NULL
## 341 E 2 No Deposit NULL
## 342 G 0 No Deposit NULL
## 343 D 0 No Deposit NULL
## 344 F 0 No Deposit NULL
## 345 H 0 No Deposit NULL
## 346 D 0 No Deposit NULL
## 347 G 0 No Deposit NULL
## 348 A 1 No Deposit NULL
## 349 A 0 No Deposit NULL
## 350 A 0 No Deposit NULL
## 351 A 0 No Deposit NULL
## 352 C 0 No Deposit NULL
## 353 C 0 No Deposit NULL
## 354 A 0 No Deposit NULL
## 355 H 0 No Deposit NULL
## 356 A 0 No Deposit NULL
## 357 A 0 No Deposit NULL
## 358 E 0 No Deposit NULL
## 359 E 0 No Deposit NULL
## 360 A 0 No Deposit NULL
## 361 A 0 No Deposit NULL
## 362 A 0 No Deposit NULL
## 363 F 2 No Deposit NULL
## 364 A 0 No Deposit NULL
## 365 D 0 No Deposit NULL
## 366 A 0 No Deposit NULL
## 367 D 0 No Deposit NULL
## 368 D 0 No Deposit NULL
## 369 E 0 No Deposit NULL
## 370 D 0 No Deposit NULL
## 371 A 0 No Deposit NULL
## 372 D 0 No Deposit NULL
## 373 D 0 No Deposit NULL
## 374 E 0 No Deposit NULL
## 375 A 0 No Deposit NULL
## 376 A 0 No Deposit NULL
## 377 C 2 No Deposit NULL
## 378 A 0 No Deposit NULL
## 379 A 0 No Deposit NULL
## 380 D 0 No Deposit NULL
## 381 E 0 No Deposit NULL
## 382 A 0 No Deposit NULL
## 383 A 0 No Deposit NULL
## 384 A 1 No Deposit NULL
## 385 A 0 No Deposit NULL
## 386 D 0 No Deposit NULL
## 387 D 0 No Deposit NULL
## 388 A 0 No Deposit 270
## 389 A 2 No Deposit NULL
## 390 D 1 No Deposit NULL
## 391 E 0 No Deposit NULL
## 392 C 0 No Deposit NULL
## 393 F 1 No Deposit NULL
## 394 A 0 No Deposit NULL
## 395 A 0 No Deposit NULL
## 396 E 0 No Deposit NULL
## 397 G 1 No Deposit NULL
## 398 A 0 No Deposit NULL
## 399 A 0 No Deposit NULL
## 400 A 1 No Deposit NULL
## 401 A 0 No Deposit NULL
## 402 A 0 No Deposit NULL
## 403 A 0 No Deposit NULL
## 404 B 0 No Deposit NULL
## 405 D 0 No Deposit NULL
## 406 D 1 No Deposit NULL
## 407 H 1 No Deposit NULL
## 408 C 0 No Deposit NULL
## 409 A 0 No Deposit NULL
## 410 D 0 No Deposit NULL
## 411 D 0 No Deposit NULL
## 412 D 0 No Deposit NULL
## 413 H 0 No Deposit NULL
## 414 C 0 No Deposit NULL
## 415 A 0 No Deposit NULL
## 416 A 0 No Deposit NULL
## 417 C 0 No Deposit NULL
## 418 D 0 No Deposit NULL
## 419 G 0 No Deposit NULL
## 420 A 0 No Deposit NULL
## 421 F 1 No Deposit NULL
## 422 A 0 No Deposit NULL
## 423 C 0 No Deposit NULL
## 424 C 1 No Deposit NULL
## 425 E 1 No Deposit NULL
## 426 D 0 No Deposit NULL
## 427 D 0 No Deposit NULL
## 428 C 1 No Deposit NULL
## 429 A 1 No Deposit NULL
## 430 A 0 No Deposit NULL
## 431 A 0 No Deposit NULL
## 432 A 0 No Deposit NULL
## 433 A 0 No Deposit NULL
## 434 C 0 No Deposit NULL
## 435 G 0 No Deposit NULL
## 436 D 0 No Deposit NULL
## 437 F 0 No Deposit NULL
## 438 A 0 No Deposit NULL
## 439 F 0 No Deposit NULL
## 440 C 1 No Deposit NULL
## 441 G 1 No Deposit NULL
## 442 A 0 No Deposit NULL
## 443 D 0 No Deposit NULL
## 444 A 0 No Deposit NULL
## 445 D 0 No Deposit NULL
## 446 A 0 No Deposit NULL
## 447 A 0 No Deposit NULL
## 448 A 0 No Deposit NULL
## 449 D 0 No Deposit NULL
## 450 D 0 No Deposit NULL
## 451 E 0 No Deposit 178
## 452 D 1 No Deposit NULL
## 453 F 0 No Deposit NULL
## 454 D 0 No Deposit NULL
## 455 A 0 No Deposit NULL
## 456 D 0 No Deposit NULL
## 457 A 0 No Deposit NULL
## 458 A 1 No Deposit NULL
## 459 E 1 No Deposit NULL
## 460 A 0 No Deposit NULL
## 461 F 0 No Deposit NULL
## 462 F 0 No Deposit NULL
## 463 E 0 No Deposit NULL
## 464 A 0 No Deposit NULL
## 465 A 0 No Deposit NULL
## 466 A 0 No Deposit NULL
## 467 D 0 No Deposit NULL
## 468 C 0 No Deposit NULL
## 469 D 0 No Deposit NULL
## 470 E 0 No Deposit NULL
## 471 F 0 No Deposit NULL
## 472 E 0 No Deposit NULL
## 473 A 0 No Deposit NULL
## 474 A 0 No Deposit NULL
## 475 A 0 No Deposit NULL
## 476 A 0 No Deposit NULL
## 477 D 0 No Deposit NULL
## 478 A 0 No Deposit NULL
## 479 A 0 No Deposit NULL
## 480 A 0 No Deposit NULL
## 481 A 0 No Deposit NULL
## 482 A 0 No Deposit NULL
## 483 G 1 No Deposit NULL
## 484 E 0 No Deposit NULL
## 485 G 0 No Deposit NULL
## 486 D 1 No Deposit NULL
## 487 G 0 No Deposit NULL
## 488 A 1 No Deposit NULL
## 489 E 0 No Deposit NULL
## 490 A 0 No Deposit NULL
## 491 A 1 No Deposit NULL
## 492 A 0 No Deposit NULL
## 493 D 0 No Deposit NULL
## 494 H 0 No Deposit NULL
## 495 F 1 No Deposit NULL
## 496 A 3 No Deposit NULL
## 497 A 3 No Deposit NULL
## 498 E 1 No Deposit NULL
## 499 D 0 No Deposit NULL
## 500 D 0 No Deposit NULL
## 501 A 0 No Deposit NULL
## 502 D 0 No Deposit NULL
## 503 D 0 No Deposit NULL
## 504 D 0 No Deposit NULL
## 505 C 0 No Deposit NULL
## 506 A 4 No Deposit NULL
## 507 C 0 No Deposit NULL
## 508 A 0 No Deposit NULL
## 509 F 0 No Deposit NULL
## 510 E 0 No Deposit NULL
## 511 A 1 No Deposit NULL
## 512 C 0 No Deposit NULL
## 513 D 0 No Deposit NULL
## 514 E 0 No Deposit NULL
## 515 E 1 No Deposit NULL
## 516 A 0 No Deposit NULL
## 517 A 0 No Deposit NULL
## 518 E 1 No Deposit NULL
## 519 H 0 No Deposit NULL
## 520 E 0 No Deposit NULL
## 521 A 0 No Deposit NULL
## 522 C 0 No Deposit NULL
## 523 D 0 No Deposit NULL
## 524 C 0 No Deposit NULL
## 525 G 0 No Deposit NULL
## 526 E 0 No Deposit NULL
## 527 D 0 No Deposit NULL
## 528 E 0 No Deposit NULL
## 529 A 0 No Deposit NULL
## 530 D 0 No Deposit NULL
## 531 D 0 No Deposit NULL
## 532 D 0 No Deposit NULL
## 533 D 0 No Deposit NULL
## 534 D 0 No Deposit NULL
## 535 A 0 No Deposit NULL
## 536 D 0 No Deposit NULL
## 537 A 0 No Deposit NULL
## 538 A 0 No Deposit NULL
## 539 A 0 No Deposit NULL
## 540 A 0 No Deposit NULL
## 541 D 0 No Deposit NULL
## 542 A 0 No Deposit 240
## 543 A 0 No Deposit NULL
## 544 E 0 No Deposit NULL
## 545 E 0 No Deposit NULL
## 546 A 0 No Deposit NULL
## 547 D 0 No Deposit NULL
## 548 A 0 No Deposit NULL
## 549 D 0 No Deposit NULL
## 550 E 0 No Deposit NULL
## 551 C 0 No Deposit NULL
## 552 A 0 No Deposit NULL
## 553 D 0 No Deposit NULL
## 554 E 0 No Deposit NULL
## 555 A 1 No Deposit NULL
## 556 D 0 No Deposit NULL
## 557 D 0 No Deposit NULL
## 558 A 0 No Deposit NULL
## 559 G 0 No Deposit NULL
## 560 A 0 No Deposit NULL
## 561 D 0 No Deposit NULL
## 562 D 0 No Deposit NULL
## 563 G 0 No Deposit NULL
## 564 C 0 No Deposit NULL
## 565 D 0 No Deposit NULL
## 566 E 2 No Deposit NULL
## 567 C 0 No Deposit NULL
## 568 G 0 No Deposit NULL
## 569 I 0 No Deposit NULL
## 570 I 0 No Deposit NULL
## 571 C 0 No Deposit NULL
## 572 D 0 No Deposit NULL
## 573 C 3 No Deposit NULL
## 574 A 0 No Deposit NULL
## 575 D 0 No Deposit NULL
## 576 E 0 No Deposit NULL
## 577 D 0 No Deposit NULL
## 578 G 0 No Deposit NULL
## 579 A 0 No Deposit NULL
## 580 D 0 No Deposit NULL
## 581 G 0 No Deposit NULL
## 582 D 0 No Deposit NULL
## 583 D 1 No Deposit NULL
## 584 E 0 No Deposit NULL
## 585 F 0 No Deposit NULL
## 586 C 0 No Deposit NULL
## 587 A 0 No Deposit NULL
## 588 A 0 No Deposit NULL
## 589 D 1 No Deposit NULL
## 590 A 1 No Deposit NULL
## 591 G 0 No Deposit NULL
## 592 F 0 No Deposit NULL
## 593 A 0 No Deposit NULL
## 594 D 0 No Deposit NULL
## 595 D 1 No Deposit NULL
## 596 D 0 No Deposit NULL
## 597 D 0 No Deposit NULL
## 598 A 0 No Deposit NULL
## 599 A 0 No Deposit NULL
## 600 E 0 No Deposit NULL
## 601 F 0 No Deposit 154
## 602 A 0 No Deposit NULL
## 603 G 0 No Deposit NULL
## 604 D 0 No Deposit NULL
## 605 G 1 No Deposit NULL
## 606 D 0 No Deposit NULL
## 607 E 0 No Deposit NULL
## 608 D 0 No Deposit NULL
## 609 A 0 No Deposit NULL
## 610 E 0 No Deposit NULL
## 611 A 0 No Deposit NULL
## 612 E 0 No Deposit NULL
## 613 A 0 No Deposit NULL
## 614 D 0 No Deposit NULL
## 615 D 1 No Deposit NULL
## 616 G 0 No Deposit NULL
## 617 D 0 No Deposit NULL
## 618 D 0 No Deposit NULL
## 619 I 0 No Deposit NULL
## 620 I 1 No Deposit NULL
## 621 E 0 No Deposit NULL
## 622 C 0 No Deposit NULL
## 623 A 0 No Deposit NULL
## 624 E 1 No Deposit NULL
## 625 A 0 No Deposit NULL
## 626 D 0 No Deposit NULL
## 627 E 0 No Deposit NULL
## 628 H 0 No Deposit NULL
## 629 E 0 No Deposit 178
## 630 F 0 No Deposit NULL
## 631 E 0 No Deposit NULL
## 632 D 0 No Deposit NULL
## 633 D 1 No Deposit NULL
## 634 E 0 No Deposit NULL
## 635 F 0 No Deposit NULL
## 636 A 0 No Deposit NULL
## 637 A 0 No Deposit NULL
## 638 D 0 No Deposit NULL
## 639 A 0 No Deposit NULL
## 640 D 0 No Deposit NULL
## 641 A 0 No Deposit NULL
## 642 G 0 No Deposit NULL
## 643 G 0 No Deposit NULL
## 644 F 0 No Deposit NULL
## 645 D 0 No Deposit NULL
## 646 E 0 No Deposit NULL
## 647 H 2 No Deposit NULL
## 648 D 0 No Deposit NULL
## 649 A 0 No Deposit NULL
## 650 A 0 No Deposit NULL
## 651 D 0 No Deposit NULL
## 652 D 0 No Deposit NULL
## 653 A 0 No Deposit NULL
## 654 A 0 No Deposit NULL
## 655 A 0 No Deposit NULL
## 656 A 0 No Deposit NULL
## 657 A 1 No Deposit NULL
## 658 A 0 No Deposit NULL
## 659 A 0 No Deposit NULL
## 660 H 0 No Deposit NULL
## 661 D 0 No Deposit NULL
## 662 A 0 No Deposit NULL
## 663 E 0 No Deposit NULL
## 664 A 0 No Deposit NULL
## 665 A 0 No Deposit NULL
## 666 D 0 No Deposit NULL
## 667 E 0 No Deposit NULL
## 668 F 0 No Deposit NULL
## 669 F 0 No Deposit NULL
## 670 F 0 No Deposit NULL
## 671 A 0 No Deposit NULL
## 672 E 0 No Deposit NULL
## 673 A 0 No Deposit NULL
## 674 A 0 No Deposit NULL
## 675 A 0 No Deposit NULL
## 676 E 0 No Deposit NULL
## 677 A 0 No Deposit NULL
## 678 D 1 No Deposit NULL
## 679 A 0 No Deposit NULL
## 680 D 0 No Deposit NULL
## 681 A 0 No Deposit NULL
## 682 A 0 No Deposit NULL
## 683 C 0 No Deposit NULL
## 684 G 1 No Deposit NULL
## 685 A 0 No Deposit NULL
## 686 A 0 No Deposit NULL
## 687 A 0 No Deposit NULL
## 688 E 0 No Deposit NULL
## 689 A 1 No Deposit NULL
## 690 A 0 No Deposit NULL
## 691 A 0 No Deposit NULL
## 692 A 0 No Deposit NULL
## 693 D 1 No Deposit NULL
## 694 A 0 No Deposit NULL
## 695 A 0 No Deposit NULL
## 696 E 0 No Deposit NULL
## 697 A 1 No Deposit NULL
## 698 A 0 No Deposit NULL
## 699 A 0 No Deposit NULL
## 700 D 0 No Deposit NULL
## 701 A 0 No Deposit NULL
## 702 D 0 No Deposit NULL
## 703 A 0 No Deposit NULL
## 704 D 0 No Deposit NULL
## 705 A 0 No Deposit NULL
## 706 G 0 No Deposit NULL
## 707 E 0 No Deposit NULL
## 708 D 0 No Deposit NULL
## 709 A 0 No Deposit NULL
## 710 D 0 No Deposit NULL
## 711 D 0 No Deposit NULL
## 712 A 0 No Deposit NULL
## 713 E 0 No Deposit NULL
## 714 E 0 No Deposit NULL
## 715 A 0 No Deposit NULL
## 716 E 0 No Deposit NULL
## 717 C 0 No Deposit NULL
## 718 A 0 No Deposit NULL
## 719 E 0 No Deposit NULL
## 720 A 0 No Deposit NULL
## 721 A 0 No Deposit NULL
## 722 A 0 No Deposit NULL
## 723 I 1 No Deposit NULL
## 724 H 0 No Deposit NULL
## 725 E 0 No Deposit NULL
## 726 G 0 No Deposit NULL
## 727 A 1 No Deposit NULL
## 728 D 0 No Deposit NULL
## 729 F 0 No Deposit NULL
## 730 E 0 No Deposit NULL
## 731 G 0 No Deposit NULL
## 732 E 0 No Deposit NULL
## 733 A 0 No Deposit NULL
## 734 F 5 No Deposit NULL
## 735 D 0 No Deposit NULL
## 736 C 0 No Deposit NULL
## 737 D 0 No Deposit NULL
## 738 A 0 No Deposit NULL
## 739 F 0 No Deposit NULL
## 740 C 0 No Deposit NULL
## 741 A 0 No Deposit NULL
## 742 F 0 No Deposit NULL
## 743 A 0 No Deposit NULL
## 744 C 1 No Deposit NULL
## 745 E 0 No Deposit NULL
## 746 D 0 No Deposit NULL
## 747 D 0 No Deposit NULL
## 748 G 1 No Deposit NULL
## 749 A 0 No Deposit NULL
## 750 A 0 No Deposit NULL
## 751 A 0 No Deposit NULL
## 752 A 0 No Deposit NULL
## 753 A 0 No Deposit NULL
## 754 A 0 No Deposit NULL
## 755 E 0 No Deposit NULL
## 756 G 0 No Deposit NULL
## 757 A 0 No Deposit NULL
## 758 E 0 No Deposit NULL
## 759 A 0 No Deposit NULL
## 760 D 0 No Deposit NULL
## 761 E 0 No Deposit NULL
## 762 E 0 No Deposit NULL
## 763 E 0 No Deposit NULL
## 764 G 0 No Deposit NULL
## 765 D 0 No Deposit NULL
## 766 A 0 No Deposit NULL
## 767 A 0 No Deposit NULL
## 768 F 0 No Deposit NULL
## 769 D 0 No Deposit NULL
## 770 D 0 No Deposit NULL
## 771 D 0 No Deposit NULL
## 772 A 0 No Deposit NULL
## 773 D 0 No Deposit NULL
## 774 D 1 No Deposit NULL
## 775 I 0 No Deposit NULL
## 776 A 0 No Deposit NULL
## 777 E 0 No Deposit NULL
## 778 D 0 No Deposit NULL
## 779 C 0 No Deposit NULL
## 780 D 0 No Deposit NULL
## 781 H 0 No Deposit NULL
## 782 D 0 No Deposit NULL
## 783 H 0 No Deposit NULL
## 784 D 0 No Deposit NULL
## 785 D 0 No Deposit NULL
## 786 A 0 No Deposit NULL
## 787 A 0 No Deposit NULL
## 788 D 1 No Deposit NULL
## 789 D 0 No Deposit NULL
## 790 F 0 No Deposit NULL
## 791 D 0 No Deposit NULL
## 792 D 0 No Deposit NULL
## 793 D 0 No Deposit NULL
## 794 A 0 No Deposit NULL
## 795 D 1 No Deposit NULL
## 796 F 1 No Deposit NULL
## 797 A 0 No Deposit 270
## 798 H 0 No Deposit NULL
## 799 E 0 No Deposit NULL
## 800 G 0 No Deposit NULL
## 801 A 0 No Deposit NULL
## 802 D 0 No Deposit NULL
## 803 A 0 No Deposit NULL
## 804 C 0 No Deposit NULL
## 805 C 0 No Deposit NULL
## 806 A 0 No Deposit NULL
## 807 D 0 No Deposit NULL
## 808 E 0 No Deposit NULL
## 809 A 0 No Deposit NULL
## 810 A 1 No Deposit NULL
## 811 E 2 No Deposit NULL
## 812 D 0 No Deposit NULL
## 813 D 0 No Deposit NULL
## 814 D 0 No Deposit NULL
## 815 I 0 No Deposit NULL
## 816 I 0 No Deposit NULL
## 817 F 0 No Deposit NULL
## 818 A 0 No Deposit NULL
## 819 D 0 No Deposit NULL
## 820 D 0 No Deposit NULL
## 821 A 0 No Deposit NULL
## 822 D 0 No Deposit NULL
## 823 D 0 No Deposit NULL
## 824 A 0 No Deposit NULL
## 825 A 0 No Deposit NULL
## 826 D 0 No Deposit NULL
## 827 A 0 No Deposit NULL
## 828 E 0 No Deposit NULL
## 829 H 0 No Deposit NULL
## 830 C 0 No Deposit NULL
## 831 A 0 No Deposit NULL
## 832 A 0 No Deposit NULL
## 833 A 0 No Deposit NULL
## 834 A 0 No Deposit NULL
## 835 D 0 No Deposit NULL
## 836 A 0 No Deposit NULL
## 837 A 0 No Deposit NULL
## 838 G 0 No Deposit NULL
## 839 A 0 No Deposit NULL
## 840 D 1 No Deposit NULL
## 841 E 0 No Deposit NULL
## 842 E 0 No Deposit NULL
## 843 A 0 No Deposit NULL
## 844 A 0 No Deposit NULL
## 845 A 0 No Deposit NULL
## 846 D 0 No Deposit NULL
## 847 F 0 No Deposit NULL
## 848 A 1 No Deposit NULL
## 849 F 0 No Deposit NULL
## 850 G 1 No Deposit NULL
## 851 G 1 No Deposit NULL
## 852 D 0 No Deposit NULL
## 853 D 1 No Deposit NULL
## 854 C 1 No Deposit NULL
## 855 A 0 No Deposit NULL
## 856 A 0 No Deposit NULL
## 857 C 0 No Deposit NULL
## 858 G 0 No Deposit NULL
## 859 A 1 No Deposit NULL
## 860 D 0 No Deposit NULL
## 861 A 0 No Deposit NULL
## 862 A 1 No Deposit NULL
## 863 E 1 No Deposit NULL
## 864 A 0 No Deposit NULL
## 865 D 2 No Deposit NULL
## 866 E 0 No Deposit NULL
## 867 C 0 No Deposit NULL
## 868 D 0 No Deposit NULL
## 869 C 1 No Deposit NULL
## 870 A 0 No Deposit NULL
## 871 A 0 No Deposit NULL
## 872 C 0 No Deposit NULL
## 873 E 0 No Deposit NULL
## 874 E 0 No Deposit NULL
## 875 E 0 No Deposit NULL
## 876 A 4 No Deposit NULL
## 877 D 0 No Deposit NULL
## 878 A 0 No Deposit NULL
## 879 C 3 No Deposit NULL
## 880 D 0 No Deposit NULL
## 881 A 0 No Deposit NULL
## 882 D 0 No Deposit NULL
## 883 F 0 No Deposit NULL
## 884 C 0 No Deposit NULL
## 885 D 0 No Deposit NULL
## 886 D 0 No Deposit NULL
## 887 D 0 No Deposit NULL
## 888 C 1 No Deposit NULL
## 889 D 0 No Deposit NULL
## 890 A 1 No Deposit NULL
## 891 E 0 No Deposit NULL
## 892 A 0 No Deposit NULL
## 893 A 0 No Deposit NULL
## 894 F 0 No Deposit NULL
## 895 F 0 No Deposit NULL
## 896 C 0 No Deposit NULL
## 897 F 0 No Deposit NULL
## 898 A 0 No Deposit NULL
## 899 C 1 No Deposit NULL
## 900 C 1 No Deposit NULL
## 901 D 0 No Deposit NULL
## 902 D 1 No Deposit NULL
## 903 D 0 No Deposit NULL
## 904 D 0 No Deposit NULL
## 905 A 0 No Deposit NULL
## 906 D 0 No Deposit NULL
## 907 D 1 No Deposit NULL
## 908 I 0 No Deposit NULL
## 909 I 0 No Deposit NULL
## 910 F 0 No Deposit NULL
## 911 D 0 No Deposit NULL
## 912 F 0 No Deposit NULL
## 913 A 0 No Deposit NULL
## 914 D 1 No Deposit NULL
## 915 A 0 No Deposit NULL
## 916 A 0 No Deposit NULL
## 917 E 0 No Deposit NULL
## 918 D 0 No Deposit NULL
## 919 A 1 No Deposit NULL
## 920 A 1 No Deposit NULL
## 921 A 0 No Deposit NULL
## 922 A 1 No Deposit NULL
## 923 A 0 No Deposit NULL
## 924 A 0 No Deposit NULL
## 925 F 0 No Deposit NULL
## 926 C 2 No Deposit NULL
## 927 E 1 No Deposit NULL
## 928 D 1 No Deposit NULL
## 929 A 1 No Deposit NULL
## 930 D 0 No Deposit NULL
## 931 A 0 No Deposit NULL
## 932 D 2 No Deposit NULL
## 933 D 0 No Deposit NULL
## 934 G 1 No Deposit NULL
## 935 I 0 No Deposit NULL
## 936 F 0 No Deposit 144
## 937 H 0 No Deposit NULL
## 938 D 1 No Deposit NULL
## 939 D 0 No Deposit NULL
## 940 F 0 No Deposit NULL
## 941 H 0 No Deposit NULL
## 942 D 0 No Deposit NULL
## 943 F 0 No Deposit NULL
## 944 G 1 No Deposit NULL
## 945 D 0 No Deposit NULL
## 946 A 0 No Deposit NULL
## 947 D 0 No Deposit NULL
## 948 A 0 No Deposit NULL
## 949 E 0 No Deposit NULL
## 950 A 0 No Deposit NULL
## 951 C 0 No Deposit NULL
## 952 C 0 No Deposit NULL
## 953 A 0 No Deposit NULL
## 954 A 0 No Deposit NULL
## 955 D 0 No Deposit NULL
## 956 A 1 No Deposit NULL
## 957 A 0 No Deposit NULL
## 958 E 0 No Deposit NULL
## 959 A 0 No Deposit NULL
## 960 H 0 No Deposit NULL
## 961 F 0 No Deposit NULL
## 962 C 0 No Deposit NULL
## 963 A 0 No Deposit NULL
## 964 D 0 No Deposit NULL
## 965 D 0 No Deposit NULL
## 966 G 0 No Deposit NULL
## 967 A 0 No Deposit NULL
## 968 D 0 No Deposit NULL
## 969 D 0 No Deposit NULL
## 970 D 0 No Deposit NULL
## 971 A 0 No Deposit NULL
## 972 G 0 No Deposit NULL
## 973 C 0 No Deposit NULL
## 974 C 0 No Deposit NULL
## 975 F 0 No Deposit NULL
## 976 A 0 No Deposit NULL
## 977 D 0 No Deposit NULL
## 978 A 0 No Deposit NULL
## 979 A 0 No Deposit NULL
## 980 A 0 No Deposit NULL
## 981 A 0 No Deposit NULL
## 982 A 0 No Deposit NULL
## 983 E 1 No Deposit NULL
## 984 D 0 No Deposit NULL
## 985 G 0 No Deposit NULL
## 986 E 0 No Deposit NULL
## 987 D 0 No Deposit NULL
## 988 D 0 No Deposit NULL
## 989 E 0 No Deposit NULL
## 990 F 1 No Deposit NULL
## 991 D 0 No Deposit NULL
## 992 D 0 No Deposit NULL
## 993 A 0 No Deposit NULL
## 994 A 0 No Deposit NULL
## 995 D 0 No Deposit NULL
## 996 A 0 No Deposit NULL
## 997 E 0 No Deposit NULL
## 998 A 0 No Deposit NULL
## 999 C 0 No Deposit NULL
## 1000 A 0 No Deposit NULL
## 1001 A 0 No Deposit NULL
## 1002 G 0 No Deposit NULL
## 1003 A 0 No Deposit NULL
## 1004 D 0 No Deposit NULL
## 1005 A 0 No Deposit NULL
## 1006 A 0 No Deposit NULL
## 1007 A 1 No Deposit NULL
## 1008 F 0 No Deposit NULL
## 1009 E 0 No Deposit NULL
## 1010 D 0 No Deposit NULL
## 1011 F 0 No Deposit NULL
## 1012 A 0 No Deposit NULL
## 1013 C 0 No Deposit NULL
## 1014 E 0 No Deposit NULL
## 1015 D 0 No Deposit NULL
## 1016 D 0 No Deposit NULL
## 1017 A 0 No Deposit NULL
## 1018 A 0 No Deposit NULL
## 1019 G 0 No Deposit NULL
## 1020 F 0 No Deposit NULL
## 1021 D 0 No Deposit NULL
## 1022 A 0 No Deposit NULL
## 1023 G 0 No Deposit NULL
## 1024 H 0 No Deposit NULL
## 1025 E 0 No Deposit NULL
## 1026 A 0 No Deposit NULL
## 1027 F 0 No Deposit NULL
## 1028 F 0 No Deposit NULL
## 1029 D 0 No Deposit NULL
## 1030 E 0 No Deposit NULL
## 1031 D 0 No Deposit NULL
## 1032 A 1 No Deposit NULL
## 1033 D 0 No Deposit NULL
## 1034 A 1 No Deposit NULL
## 1035 A 0 No Deposit NULL
## 1036 A 0 No Deposit NULL
## 1037 A 0 No Deposit NULL
## 1038 E 0 No Deposit NULL
## 1039 A 0 No Deposit NULL
## 1040 D 0 No Deposit NULL
## 1041 C 0 No Deposit NULL
## 1042 G 0 No Deposit NULL
## 1043 D 0 No Deposit NULL
## 1044 D 0 No Deposit NULL
## 1045 A 0 No Deposit NULL
## 1046 D 0 No Deposit NULL
## 1047 D 0 No Deposit NULL
## 1048 D 0 No Deposit NULL
## 1049 A 0 No Deposit NULL
## 1050 A 0 No Deposit NULL
## 1051 A 1 No Deposit NULL
## 1052 A 0 No Deposit NULL
## 1053 D 0 No Deposit NULL
## 1054 E 1 No Deposit NULL
## 1055 D 1 No Deposit NULL
## 1056 E 0 No Deposit NULL
## 1057 C 1 No Deposit NULL
## 1058 A 0 No Deposit NULL
## 1059 A 0 No Deposit NULL
## 1060 A 0 No Deposit 307
## 1061 E 0 No Deposit NULL
## 1062 G 0 No Deposit 307
## 1063 A 0 No Deposit NULL
## 1064 G 0 No Deposit NULL
## 1065 D 1 No Deposit NULL
## 1066 D 1 No Deposit NULL
## 1067 D 0 No Deposit NULL
## 1068 E 0 No Deposit NULL
## 1069 D 0 No Deposit NULL
## 1070 D 0 No Deposit NULL
## 1071 D 0 No Deposit NULL
## 1072 A 0 No Deposit NULL
## 1073 A 0 No Deposit NULL
## 1074 B 0 No Deposit NULL
## 1075 F 0 No Deposit NULL
## 1076 F 0 No Deposit 110
## 1077 E 0 No Deposit NULL
## 1078 A 0 No Deposit NULL
## 1079 A 0 No Deposit NULL
## 1080 E 0 No Deposit NULL
## 1081 A 0 No Deposit NULL
## 1082 C 0 No Deposit NULL
## 1083 A 0 No Deposit NULL
## 1084 E 0 No Deposit NULL
## 1085 A 0 No Deposit NULL
## 1086 E 0 No Deposit NULL
## 1087 A 0 No Deposit NULL
## 1088 E 1 No Deposit NULL
## 1089 D 0 No Deposit NULL
## 1090 E 0 No Deposit NULL
## 1091 D 0 No Deposit NULL
## 1092 A 0 No Deposit NULL
## 1093 B 0 No Deposit NULL
## 1094 D 0 No Deposit NULL
## 1095 G 0 No Deposit NULL
## 1096 D 1 No Deposit NULL
## 1097 F 0 No Deposit NULL
## 1098 E 0 No Deposit NULL
## 1099 F 0 No Deposit NULL
## 1100 D 1 No Deposit NULL
## 1101 E 0 No Deposit NULL
## 1102 G 1 No Deposit NULL
## 1103 E 0 No Deposit NULL
## 1104 D 0 No Deposit NULL
## 1105 B 0 No Deposit NULL
## 1106 A 0 No Deposit NULL
## 1107 D 0 No Deposit NULL
## 1108 A 0 No Deposit NULL
## 1109 F 0 No Deposit NULL
## 1110 D 0 No Deposit NULL
## 1111 D 0 No Deposit NULL
## 1112 D 0 No Deposit NULL
## 1113 C 2 No Deposit NULL
## 1114 E 0 No Deposit NULL
## 1115 A 0 No Deposit NULL
## 1116 A 0 No Deposit NULL
## 1117 C 1 No Deposit NULL
## 1118 F 0 No Deposit NULL
## 1119 D 0 No Deposit NULL
## 1120 E 0 No Deposit NULL
## 1121 G 0 No Deposit NULL
## 1122 D 0 No Deposit NULL
## 1123 A 0 No Deposit NULL
## 1124 E 1 No Deposit NULL
## 1125 A 0 No Deposit NULL
## 1126 A 0 No Deposit NULL
## 1127 A 0 No Deposit NULL
## 1128 A 0 No Deposit NULL
## 1129 A 0 No Deposit NULL
## 1130 D 0 No Deposit NULL
## 1131 A 0 No Deposit NULL
## 1132 A 0 No Deposit NULL
## 1133 D 0 No Deposit NULL
## 1134 A 1 No Deposit NULL
## 1135 A 0 No Deposit NULL
## 1136 D 0 No Deposit NULL
## 1137 A 0 No Deposit NULL
## 1138 A 0 No Deposit NULL
## 1139 A 0 No Deposit NULL
## 1140 A 0 No Deposit NULL
## 1141 A 0 No Deposit NULL
## 1142 D 1 No Deposit NULL
## 1143 E 1 No Deposit NULL
## 1144 C 0 No Deposit NULL
## 1145 A 0 No Deposit NULL
## 1146 D 0 No Deposit NULL
## 1147 C 0 No Deposit NULL
## 1148 D 1 No Deposit NULL
## 1149 A 0 No Deposit NULL
## 1150 E 0 No Deposit NULL
## 1151 A 0 No Deposit 307
## 1152 A 0 No Deposit 307
## 1153 E 0 No Deposit 110
## 1154 A 0 No Deposit 307
## 1155 A 0 No Deposit 307
## 1156 E 0 No Deposit NULL
## 1157 G 0 No Deposit NULL
## 1158 A 0 No Deposit 307
## 1159 A 0 No Deposit 307
## 1160 E 0 No Deposit NULL
## 1161 E 0 No Deposit NULL
## 1162 E 0 No Deposit NULL
## 1163 E 0 No Deposit 110
## 1164 A 0 No Deposit NULL
## 1165 D 0 No Deposit NULL
## 1166 E 0 No Deposit NULL
## 1167 A 0 No Deposit NULL
## 1168 A 0 No Deposit NULL
## 1169 D 0 No Deposit NULL
## 1170 D 1 No Deposit NULL
## 1171 D 0 No Deposit NULL
## 1172 D 0 No Deposit NULL
## 1173 D 0 No Deposit NULL
## 1174 G 2 No Deposit NULL
## 1175 A 0 No Deposit NULL
## 1176 C 0 No Deposit NULL
## 1177 A 0 No Deposit NULL
## 1178 A 0 No Deposit NULL
## 1179 E 0 No Deposit NULL
## 1180 A 1 No Deposit NULL
## 1181 A 0 No Deposit NULL
## 1182 A 0 No Deposit NULL
## 1183 A 0 No Deposit NULL
## 1184 E 0 No Deposit NULL
## 1185 A 0 No Deposit NULL
## 1186 A 0 No Deposit NULL
## 1187 A 0 No Deposit NULL
## 1188 A 0 No Deposit NULL
## 1189 A 0 No Deposit NULL
## 1190 A 0 No Deposit NULL
## 1191 A 0 No Deposit NULL
## 1192 A 0 No Deposit NULL
## 1193 A 0 No Deposit NULL
## 1194 A 0 No Deposit NULL
## 1195 A 0 No Deposit NULL
## 1196 A 0 No Deposit NULL
## 1197 A 0 No Deposit NULL
## 1198 E 0 No Deposit NULL
## 1199 E 0 No Deposit 110
## 1200 A 0 No Deposit NULL
## 1201 A 2 No Deposit NULL
## 1202 E 0 No Deposit NULL
## 1203 E 0 No Deposit NULL
## 1204 E 0 No Deposit NULL
## 1205 C 1 No Deposit NULL
## 1206 D 0 No Deposit NULL
## 1207 C 0 No Deposit NULL
## 1208 A 0 No Deposit NULL
## 1209 A 0 No Deposit NULL
## 1210 A 0 No Deposit NULL
## 1211 D 1 No Deposit NULL
## 1212 C 1 No Deposit NULL
## 1213 A 0 No Deposit NULL
## 1214 A 0 No Deposit NULL
## 1215 D 1 No Deposit NULL
## 1216 A 0 No Deposit NULL
## 1217 E 3 No Deposit NULL
## 1218 C 1 No Deposit NULL
## 1219 D 0 No Deposit NULL
## 1220 D 1 No Deposit NULL
## 1221 A 0 No Deposit NULL
## 1222 D 0 No Deposit NULL
## 1223 D 0 No Deposit NULL
## 1224 D 0 No Deposit NULL
## 1225 D 0 No Deposit NULL
## 1226 A 0 No Deposit NULL
## 1227 D 0 No Deposit NULL
## 1228 D 0 No Deposit NULL
## 1229 E 1 No Deposit NULL
## 1230 D 0 No Deposit NULL
## 1231 D 0 No Deposit NULL
## 1232 E 0 No Deposit NULL
## 1233 D 0 No Deposit NULL
## 1234 G 1 No Deposit NULL
## 1235 B 0 No Deposit NULL
## 1236 C 4 No Deposit NULL
## 1237 A 0 No Deposit NULL
## 1238 H 0 No Deposit NULL
## 1239 A 0 No Deposit NULL
## 1240 E 0 No Deposit NULL
## 1241 D 0 No Deposit NULL
## 1242 A 0 No Deposit NULL
## 1243 A 0 No Deposit NULL
## 1244 A 0 No Deposit NULL
## 1245 A 0 No Deposit NULL
## 1246 D 0 No Deposit NULL
## 1247 A 0 No Deposit NULL
## 1248 A 0 No Deposit NULL
## 1249 A 0 No Deposit NULL
## 1250 D 0 No Deposit NULL
## 1251 A 1 No Deposit NULL
## 1252 A 2 No Deposit NULL
## 1253 D 0 No Deposit NULL
## 1254 A 1 No Deposit NULL
## 1255 A 0 No Deposit NULL
## 1256 A 0 No Deposit NULL
## 1257 A 0 No Deposit NULL
## 1258 D 0 No Deposit NULL
## 1259 D 1 No Deposit NULL
## 1260 A 0 No Deposit NULL
## 1261 D 1 No Deposit NULL
## 1262 D 0 No Deposit NULL
## 1263 A 0 No Deposit NULL
## 1264 A 0 No Deposit NULL
## 1265 D 0 No Deposit NULL
## 1266 F 0 No Deposit NULL
## 1267 C 0 No Deposit NULL
## 1268 C 0 No Deposit NULL
## 1269 E 0 No Deposit NULL
## 1270 A 0 No Deposit NULL
## 1271 A 0 No Deposit NULL
## 1272 D 0 No Deposit NULL
## 1273 D 0 No Deposit NULL
## 1274 A 0 No Deposit NULL
## 1275 D 0 No Deposit NULL
## 1276 A 0 No Deposit NULL
## 1277 C 0 No Deposit NULL
## 1278 A 0 No Deposit NULL
## 1279 D 0 No Deposit NULL
## 1280 E 0 No Deposit NULL
## 1281 H 1 No Deposit NULL
## 1282 A 0 No Deposit NULL
## 1283 A 0 No Deposit NULL
## 1284 A 0 No Deposit NULL
## 1285 D 0 No Deposit NULL
## 1286 D 1 No Deposit NULL
## 1287 D 0 No Deposit NULL
## 1288 D 0 No Deposit NULL
## 1289 A 1 No Deposit NULL
## 1290 A 0 No Deposit NULL
## 1291 A 2 No Deposit NULL
## 1292 A 1 No Deposit NULL
## 1293 A 0 No Deposit NULL
## 1294 D 1 No Deposit NULL
## 1295 C 1 No Deposit NULL
## 1296 A 1 No Deposit NULL
## 1297 E 0 No Deposit NULL
## 1298 D 0 No Deposit NULL
## 1299 H 0 No Deposit NULL
## 1300 A 0 No Deposit NULL
## 1301 A 0 No Deposit NULL
## 1302 A 0 No Deposit NULL
## 1303 H 0 No Deposit NULL
## 1304 C 0 No Deposit NULL
## 1305 A 0 No Deposit NULL
## 1306 E 0 No Deposit NULL
## 1307 A 0 No Deposit NULL
## 1308 D 0 No Deposit NULL
## 1309 A 0 No Deposit NULL
## 1310 A 0 No Deposit NULL
## 1311 A 0 No Deposit NULL
## 1312 E 0 No Deposit NULL
## 1313 A 0 No Deposit NULL
## 1314 D 0 No Deposit NULL
## 1315 A 0 No Deposit NULL
## 1316 A 0 No Deposit NULL
## 1317 A 0 No Deposit NULL
## 1318 C 1 No Deposit NULL
## 1319 A 0 No Deposit 154
## 1320 F 0 No Deposit NULL
## 1321 H 0 No Deposit NULL
## 1322 F 0 No Deposit NULL
## 1323 D 0 No Deposit NULL
## 1324 A 0 No Deposit NULL
## 1325 A 0 No Deposit NULL
## 1326 E 0 No Deposit NULL
## 1327 A 0 No Deposit NULL
## 1328 A 0 No Deposit NULL
## 1329 A 0 No Deposit NULL
## 1330 E 2 No Deposit NULL
## 1331 E 0 No Deposit NULL
## 1332 C 1 No Deposit NULL
## 1333 D 0 No Deposit NULL
## 1334 A 0 No Deposit NULL
## 1335 D 0 No Deposit NULL
## 1336 D 1 No Deposit NULL
## 1337 F 0 No Deposit NULL
## 1338 F 0 No Deposit NULL
## 1339 E 0 No Deposit NULL
## 1340 C 1 No Deposit NULL
## 1341 E 2 No Deposit NULL
## 1342 G 0 No Deposit NULL
## 1343 D 0 No Deposit NULL
## 1344 E 0 No Deposit NULL
## 1345 A 1 No Deposit NULL
## 1346 A 0 No Deposit NULL
## 1347 E 0 No Deposit NULL
## 1348 E 0 No Deposit NULL
## 1349 D 0 No Deposit NULL
## 1350 F 0 No Deposit NULL
## 1351 D 0 No Deposit NULL
## 1352 G 0 No Deposit NULL
## 1353 A 0 No Deposit NULL
## 1354 A 0 No Deposit NULL
## 1355 C 0 No Deposit NULL
## 1356 G 0 No Deposit NULL
## 1357 A 0 No Deposit NULL
## 1358 A 0 No Deposit 110
## 1359 A 0 No Deposit NULL
## 1360 D 0 No Deposit NULL
## 1361 E 0 No Deposit NULL
## 1362 E 0 No Deposit NULL
## 1363 A 0 No Deposit NULL
## 1364 E 0 No Deposit NULL
## 1365 G 0 No Deposit NULL
## 1366 A 0 No Deposit NULL
## 1367 D 0 No Deposit NULL
## 1368 A 1 No Deposit NULL
## 1369 E 0 No Deposit NULL
## 1370 A 1 No Deposit NULL
## 1371 A 1 No Deposit NULL
## 1372 A 0 No Deposit NULL
## 1373 A 0 No Deposit NULL
## 1374 A 0 No Deposit NULL
## 1375 B 0 No Deposit NULL
## 1376 A 0 No Deposit NULL
## 1377 E 0 No Deposit NULL
## 1378 D 0 No Deposit NULL
## 1379 E 0 No Deposit NULL
## 1380 D 0 No Deposit NULL
## 1381 A 0 No Deposit NULL
## 1382 D 0 No Deposit NULL
## 1383 A 0 No Deposit NULL
## 1384 A 0 No Deposit NULL
## 1385 A 0 No Deposit NULL
## 1386 C 0 No Deposit NULL
## 1387 A 0 No Deposit NULL
## 1388 G 0 No Deposit NULL
## 1389 D 0 No Deposit NULL
## 1390 D 0 No Deposit NULL
## 1391 A 0 No Deposit NULL
## 1392 H 0 No Deposit NULL
## 1393 A 0 No Deposit NULL
## 1394 A 1 No Deposit NULL
## 1395 A 0 No Deposit NULL
## 1396 A 0 No Deposit NULL
## 1397 G 1 No Deposit NULL
## 1398 D 1 No Deposit NULL
## 1399 C 0 No Deposit NULL
## 1400 A 0 No Deposit NULL
## 1401 G 1 No Deposit NULL
## 1402 D 1 No Deposit NULL
## 1403 A 0 No Deposit NULL
## 1404 A 0 No Deposit NULL
## 1405 A 0 No Deposit NULL
## 1406 C 0 No Deposit NULL
## 1407 D 0 No Deposit NULL
## 1408 D 1 No Deposit NULL
## 1409 D 0 No Deposit NULL
## 1410 A 0 No Deposit NULL
## 1411 A 0 No Deposit NULL
## 1412 F 1 No Deposit NULL
## 1413 F 0 No Deposit NULL
## 1414 A 0 No Deposit NULL
## 1415 C 0 No Deposit NULL
## 1416 D 0 No Deposit NULL
## 1417 A 1 No Deposit NULL
## 1418 A 0 No Deposit NULL
## 1419 C 0 No Deposit NULL
## 1420 D 0 No Deposit NULL
## 1421 A 0 No Deposit NULL
## 1422 E 0 No Deposit NULL
## 1423 F 0 No Deposit NULL
## 1424 A 0 No Deposit NULL
## 1425 H 0 No Deposit NULL
## 1426 E 0 No Deposit NULL
## 1427 D 0 No Deposit NULL
## 1428 A 0 No Deposit NULL
## 1429 E 0 No Deposit NULL
## 1430 C 0 No Deposit NULL
## 1431 D 0 No Deposit NULL
## 1432 A 0 No Deposit NULL
## 1433 C 0 No Deposit NULL
## 1434 A 0 No Deposit NULL
## 1435 D 1 No Deposit NULL
## 1436 A 0 No Deposit NULL
## 1437 D 0 No Deposit NULL
## 1438 A 0 No Deposit NULL
## 1439 D 1 No Deposit NULL
## 1440 A 0 No Deposit NULL
## 1441 C 5 No Deposit NULL
## 1442 A 0 No Deposit NULL
## 1443 D 0 No Deposit NULL
## 1444 E 0 No Deposit NULL
## 1445 D 0 No Deposit NULL
## 1446 D 0 No Deposit NULL
## 1447 A 1 No Deposit NULL
## 1448 A 0 No Deposit NULL
## 1449 A 0 No Deposit NULL
## 1450 A 0 No Deposit NULL
## 1451 A 0 No Deposit NULL
## 1452 D 0 No Deposit NULL
## 1453 A 0 No Deposit NULL
## 1454 F 0 No Deposit NULL
## 1455 D 0 No Deposit NULL
## 1456 D 0 No Deposit NULL
## 1457 E 0 No Deposit NULL
## 1458 G 0 No Deposit NULL
## 1459 A 0 No Deposit NULL
## 1460 E 0 No Deposit NULL
## 1461 A 0 No Deposit NULL
## 1462 F 0 No Deposit NULL
## 1463 E 0 No Deposit NULL
## 1464 A 0 No Deposit NULL
## 1465 A 0 No Deposit NULL
## 1466 A 0 No Deposit NULL
## 1467 A 0 No Deposit NULL
## 1468 A 0 No Deposit NULL
## 1469 D 0 No Deposit NULL
## 1470 D 0 No Deposit NULL
## 1471 E 0 No Deposit NULL
## 1472 A 0 No Deposit NULL
## 1473 A 0 No Deposit NULL
## 1474 A 0 No Deposit NULL
## 1475 D 0 No Deposit NULL
## 1476 A 0 No Deposit NULL
## 1477 C 3 No Deposit NULL
## 1478 E 0 No Deposit NULL
## 1479 D 0 No Deposit NULL
## 1480 D 0 No Deposit NULL
## 1481 G 0 No Deposit NULL
## 1482 A 0 No Deposit NULL
## 1483 A 0 No Deposit NULL
## 1484 E 0 No Deposit NULL
## 1485 D 0 No Deposit NULL
## 1486 C 0 No Deposit NULL
## 1487 A 0 No Deposit NULL
## 1488 A 0 No Deposit NULL
## 1489 C 0 No Deposit NULL
## 1490 C 0 No Deposit NULL
## 1491 D 0 No Deposit NULL
## 1492 E 0 No Deposit NULL
## 1493 E 0 No Deposit NULL
## 1494 C 0 No Deposit NULL
## 1495 F 0 No Deposit NULL
## 1496 D 1 No Deposit NULL
## 1497 B 2 No Deposit NULL
## 1498 A 1 No Deposit NULL
## 1499 D 0 No Deposit NULL
## 1500 E 0 No Deposit NULL
## 1501 D 0 No Deposit NULL
## 1502 A 1 No Deposit NULL
## 1503 D 0 No Deposit NULL
## 1504 A 0 No Deposit NULL
## 1505 A 0 No Deposit NULL
## 1506 E 0 No Deposit NULL
## 1507 A 1 No Deposit NULL
## 1508 A 0 No Deposit NULL
## 1509 E 0 No Deposit NULL
## 1510 D 0 No Deposit NULL
## 1511 E 0 No Deposit NULL
## 1512 G 2 No Deposit NULL
## 1513 A 2 No Deposit NULL
## 1514 E 0 No Deposit NULL
## 1515 A 0 No Deposit NULL
## 1516 D 0 No Deposit NULL
## 1517 E 0 No Deposit NULL
## 1518 E 0 No Deposit NULL
## 1519 E 0 No Deposit NULL
## 1520 D 2 No Deposit NULL
## 1521 E 0 No Deposit NULL
## 1522 D 0 No Deposit NULL
## 1523 D 0 No Deposit NULL
## 1524 D 0 No Deposit NULL
## 1525 G 2 No Deposit NULL
## 1526 C 0 No Deposit NULL
## 1527 G 0 No Deposit NULL
## 1528 G 0 No Deposit NULL
## 1529 A 1 No Deposit NULL
## 1530 E 0 No Deposit NULL
## 1531 A 0 No Deposit 268
## 1532 A 0 No Deposit 268
## 1533 C 0 No Deposit NULL
## 1534 A 0 No Deposit 268
## 1535 F 2 No Deposit NULL
## 1536 A 1 No Deposit 268
## 1537 A 0 No Deposit 268
## 1538 A 0 No Deposit 268
## 1539 A 0 No Deposit 268
## 1540 A 0 No Deposit NULL
## 1541 F 0 No Deposit NULL
## 1542 A 0 No Deposit NULL
## 1543 E 0 No Deposit NULL
## 1544 F 0 No Deposit NULL
## 1545 A 0 No Deposit NULL
## 1546 A 0 No Deposit NULL
## 1547 D 0 No Deposit NULL
## 1548 E 0 No Deposit NULL
## 1549 D 1 No Deposit NULL
## 1550 D 0 No Deposit NULL
## 1551 D 0 No Deposit NULL
## 1552 D 0 No Deposit NULL
## 1553 D 0 No Deposit NULL
## 1554 I 0 No Deposit NULL
## 1555 D 0 No Deposit NULL
## 1556 F 1 No Deposit 110
## 1557 E 0 No Deposit NULL
## 1558 F 1 No Deposit NULL
## 1559 E 0 No Deposit NULL
## 1560 C 0 Refundable NULL
## 1561 E 1 No Deposit NULL
## 1562 G 0 No Deposit NULL
## 1563 F 0 No Deposit NULL
## 1564 E 0 No Deposit NULL
## 1565 E 0 No Deposit NULL
## 1566 D 0 No Deposit NULL
## 1567 D 0 No Deposit NULL
## 1568 D 0 No Deposit NULL
## 1569 E 0 No Deposit NULL
## 1570 D 0 No Deposit NULL
## 1571 D 0 No Deposit NULL
## 1572 C 2 No Deposit NULL
## 1573 D 1 No Deposit NULL
## 1574 E 0 No Deposit NULL
## 1575 E 0 No Deposit NULL
## 1576 C 0 No Deposit NULL
## 1577 G 1 No Deposit NULL
## 1578 A 0 No Deposit NULL
## 1579 G 0 No Deposit NULL
## 1580 A 0 No Deposit NULL
## 1581 E 0 No Deposit NULL
## 1582 E 0 No Deposit NULL
## 1583 H 0 No Deposit NULL
## 1584 E 0 No Deposit NULL
## 1585 D 0 No Deposit NULL
## 1586 D 0 No Deposit NULL
## 1587 D 0 No Deposit NULL
## 1588 A 0 No Deposit NULL
## 1589 F 0 No Deposit NULL
## 1590 F 0 No Deposit NULL
## 1591 D 0 No Deposit NULL
## 1592 E 1 No Deposit NULL
## 1593 A 0 No Deposit NULL
## 1594 D 0 No Deposit NULL
## 1595 D 0 No Deposit NULL
## 1596 C 0 No Deposit NULL
## 1597 G 0 No Deposit NULL
## 1598 A 1 No Deposit NULL
## 1599 B 1 No Deposit NULL
## 1600 A 0 No Deposit NULL
## 1601 E 0 No Deposit NULL
## 1602 G 0 No Deposit NULL
## 1603 C 0 No Deposit NULL
## 1604 G 1 No Deposit NULL
## 1605 E 0 No Deposit NULL
## 1606 E 0 No Deposit NULL
## 1607 E 2 No Deposit NULL
## 1608 E 0 No Deposit NULL
## 1609 D 0 No Deposit NULL
## 1610 H 0 No Deposit NULL
## 1611 A 0 No Deposit NULL
## 1612 A 0 No Deposit NULL
## 1613 A 2 No Deposit NULL
## 1614 A 0 No Deposit NULL
## 1615 A 1 No Deposit NULL
## 1616 C 0 No Deposit NULL
## 1617 A 0 No Deposit NULL
## 1618 A 0 No Deposit NULL
## 1619 F 0 No Deposit NULL
## 1620 C 0 No Deposit NULL
## 1621 A 0 No Deposit NULL
## 1622 A 0 No Deposit NULL
## 1623 A 0 No Deposit NULL
## 1624 D 0 No Deposit NULL
## 1625 A 0 No Deposit NULL
## 1626 A 1 No Deposit NULL
## 1627 A 1 No Deposit NULL
## 1628 D 0 No Deposit NULL
## 1629 E 0 No Deposit NULL
## 1630 D 1 No Deposit NULL
## 1631 H 0 No Deposit NULL
## 1632 D 0 No Deposit NULL
## 1633 D 0 No Deposit NULL
## 1634 G 1 No Deposit NULL
## 1635 F 0 No Deposit NULL
## 1636 D 0 No Deposit NULL
## 1637 E 0 No Deposit NULL
## 1638 D 0 No Deposit NULL
## 1639 D 0 No Deposit NULL
## 1640 E 0 No Deposit NULL
## 1641 E 0 No Deposit NULL
## 1642 G 0 No Deposit NULL
## 1643 A 0 No Deposit NULL
## 1644 A 0 No Deposit NULL
## 1645 D 0 No Deposit NULL
## 1646 C 0 No Deposit NULL
## 1647 C 1 No Deposit NULL
## 1648 A 0 No Deposit NULL
## 1649 E 3 No Deposit NULL
## 1650 A 2 No Deposit NULL
## 1651 A 0 No Deposit NULL
## 1652 A 0 No Deposit NULL
## 1653 E 0 No Deposit NULL
## 1654 A 0 No Deposit NULL
## 1655 A 0 No Deposit NULL
## 1656 I 17 No Deposit NULL
## 1657 A 0 No Deposit NULL
## 1658 A 0 No Deposit NULL
## 1659 C 1 No Deposit NULL
## 1660 A 0 No Deposit NULL
## 1661 A 0 No Deposit NULL
## 1662 A 1 No Deposit NULL
## 1663 E 0 No Deposit NULL
## 1664 A 0 No Deposit NULL
## 1665 A 0 No Deposit NULL
## 1666 A 0 No Deposit NULL
## 1667 C 0 No Deposit NULL
## 1668 C 0 No Deposit NULL
## 1669 A 0 No Deposit NULL
## 1670 D 0 No Deposit NULL
## 1671 A 0 No Deposit NULL
## 1672 G 0 No Deposit NULL
## 1673 E 0 No Deposit NULL
## 1674 F 0 No Deposit NULL
## 1675 F 0 No Deposit NULL
## 1676 A 0 No Deposit 154
## 1677 A 0 No Deposit NULL
## 1678 A 0 No Deposit NULL
## 1679 E 0 No Deposit NULL
## 1680 A 1 No Deposit NULL
## 1681 D 0 No Deposit NULL
## 1682 A 0 No Deposit NULL
## 1683 D 0 No Deposit NULL
## 1684 A 0 No Deposit NULL
## 1685 A 1 No Deposit NULL
## 1686 A 1 No Deposit NULL
## 1687 A 0 No Deposit NULL
## 1688 A 0 No Deposit NULL
## 1689 A 1 No Deposit NULL
## 1690 A 0 No Deposit NULL
## 1691 A 0 No Deposit NULL
## 1692 A 0 No Deposit NULL
## 1693 A 1 No Deposit NULL
## 1694 C 0 No Deposit NULL
## 1695 E 0 No Deposit NULL
## 1696 E 0 No Deposit NULL
## 1697 E 0 No Deposit NULL
## 1698 A 0 No Deposit NULL
## 1699 E 0 No Deposit NULL
## 1700 E 0 No Deposit NULL
## 1701 A 1 No Deposit NULL
## 1702 E 0 No Deposit NULL
## 1703 A 0 No Deposit NULL
## 1704 F 0 No Deposit NULL
## 1705 C 0 No Deposit NULL
## 1706 H 0 No Deposit NULL
## 1707 A 1 No Deposit NULL
## 1708 A 0 No Deposit NULL
## 1709 A 0 No Deposit NULL
## 1710 H 0 No Deposit NULL
## 1711 A 1 No Deposit NULL
## 1712 D 0 No Deposit NULL
## 1713 A 0 No Deposit NULL
## 1714 A 0 No Deposit NULL
## 1715 A 0 No Deposit NULL
## 1716 D 0 No Deposit NULL
## 1717 D 0 No Deposit NULL
## 1718 F 0 No Deposit NULL
## 1719 E 0 No Deposit NULL
## 1720 E 0 No Deposit NULL
## 1721 D 0 No Deposit NULL
## 1722 A 0 No Deposit NULL
## 1723 D 0 No Deposit NULL
## 1724 C 0 No Deposit NULL
## 1725 A 0 No Deposit NULL
## 1726 C 0 No Deposit NULL
## 1727 D 0 No Deposit NULL
## 1728 D 0 No Deposit 59
## 1729 D 0 No Deposit NULL
## 1730 D 0 No Deposit NULL
## 1731 D 0 No Deposit NULL
## 1732 D 0 No Deposit NULL
## 1733 F 0 No Deposit NULL
## 1734 H 0 No Deposit NULL
## 1735 F 0 No Deposit NULL
## 1736 A 0 No Deposit NULL
## 1737 A 0 No Deposit NULL
## 1738 A 0 No Deposit NULL
## 1739 A 0 No Deposit NULL
## 1740 D 0 No Deposit NULL
## 1741 A 0 No Deposit NULL
## 1742 A 0 No Deposit NULL
## 1743 G 0 No Deposit NULL
## 1744 D 0 No Deposit NULL
## 1745 A 0 No Deposit NULL
## 1746 A 2 No Deposit NULL
## 1747 D 0 No Deposit NULL
## 1748 D 2 No Deposit NULL
## 1749 A 0 No Deposit NULL
## 1750 A 0 No Deposit NULL
## 1751 D 0 No Deposit NULL
## 1752 D 0 No Deposit NULL
## 1753 A 0 No Deposit NULL
## 1754 F 0 No Deposit NULL
## 1755 A 0 No Deposit NULL
## 1756 A 0 No Deposit NULL
## 1757 E 0 No Deposit NULL
## 1758 A 0 No Deposit NULL
## 1759 A 1 No Deposit NULL
## 1760 C 0 No Deposit NULL
## 1761 D 0 No Deposit NULL
## 1762 A 0 No Deposit NULL
## 1763 D 0 No Deposit NULL
## 1764 A 0 No Deposit NULL
## 1765 F 0 No Deposit NULL
## 1766 C 0 No Deposit NULL
## 1767 F 0 No Deposit NULL
## 1768 E 0 No Deposit NULL
## 1769 A 0 No Deposit NULL
## 1770 D 0 No Deposit NULL
## 1771 E 0 No Deposit NULL
## 1772 A 0 No Deposit NULL
## 1773 A 0 No Deposit NULL
## 1774 E 0 No Deposit NULL
## 1775 D 0 No Deposit NULL
## 1776 D 0 No Deposit NULL
## 1777 D 0 No Deposit NULL
## 1778 G 0 No Deposit NULL
## 1779 E 0 No Deposit NULL
## 1780 E 0 No Deposit NULL
## 1781 D 0 No Deposit NULL
## 1782 E 2 No Deposit NULL
## 1783 C 0 No Deposit NULL
## 1784 A 0 No Deposit NULL
## 1785 E 0 No Deposit NULL
## 1786 A 0 No Deposit NULL
## 1787 D 0 No Deposit NULL
## 1788 D 0 No Deposit NULL
## 1789 D 0 No Deposit NULL
## 1790 E 1 No Deposit NULL
## 1791 D 0 No Deposit NULL
## 1792 H 0 No Deposit NULL
## 1793 G 0 No Deposit NULL
## 1794 A 1 No Deposit NULL
## 1795 A 0 No Deposit NULL
## 1796 A 0 No Deposit NULL
## 1797 E 0 No Deposit NULL
## 1798 E 0 No Deposit NULL
## 1799 D 0 No Deposit NULL
## 1800 D 0 No Deposit NULL
## 1801 E 0 No Deposit NULL
## 1802 D 0 No Deposit NULL
## 1803 E 1 No Deposit NULL
## 1804 A 0 No Deposit NULL
## 1805 D 0 No Deposit NULL
## 1806 A 0 No Deposit NULL
## 1807 A 0 No Deposit NULL
## 1808 A 0 No Deposit NULL
## 1809 C 0 No Deposit NULL
## 1810 A 0 No Deposit NULL
## 1811 E 0 No Deposit NULL
## 1812 A 1 No Deposit NULL
## 1813 A 0 No Deposit NULL
## 1814 A 1 No Deposit 204
## 1815 A 0 No Deposit NULL
## 1816 A 0 No Deposit NULL
## 1817 G 0 No Deposit NULL
## 1818 E 0 No Deposit NULL
## 1819 G 0 No Deposit NULL
## 1820 A 0 No Deposit NULL
## 1821 A 0 No Deposit NULL
## 1822 A 1 No Deposit NULL
## 1823 A 0 No Deposit NULL
## 1824 A 0 No Deposit NULL
## 1825 H 0 No Deposit NULL
## 1826 A 1 No Deposit NULL
## 1827 A 0 No Deposit NULL
## 1828 D 0 No Deposit NULL
## 1829 A 0 No Deposit NULL
## 1830 D 0 No Deposit NULL
## 1831 D 0 No Deposit NULL
## 1832 D 0 No Deposit NULL
## 1833 A 0 No Deposit NULL
## 1834 A 0 No Deposit NULL
## 1835 A 0 No Deposit NULL
## 1836 C 0 No Deposit NULL
## 1837 E 0 No Deposit NULL
## 1838 H 1 No Deposit NULL
## 1839 A 0 No Deposit NULL
## 1840 A 1 No Deposit NULL
## 1841 A 1 No Deposit NULL
## 1842 A 1 No Deposit NULL
## 1843 A 1 No Deposit NULL
## 1844 A 1 No Deposit NULL
## 1845 A 0 No Deposit NULL
## 1846 D 0 No Deposit NULL
## 1847 A 0 No Deposit NULL
## 1848 A 1 No Deposit NULL
## 1849 A 0 No Deposit NULL
## 1850 A 0 No Deposit NULL
## 1851 A 0 No Deposit NULL
## 1852 C 0 No Deposit NULL
## 1853 D 0 No Deposit NULL
## 1854 E 0 No Deposit NULL
## 1855 A 0 No Deposit NULL
## 1856 E 0 No Deposit NULL
## 1857 D 0 No Deposit NULL
## 1858 F 0 No Deposit NULL
## 1859 F 0 No Deposit NULL
## 1860 A 0 No Deposit NULL
## 1861 A 0 No Deposit NULL
## 1862 G 1 No Deposit NULL
## 1863 F 0 No Deposit NULL
## 1864 A 0 No Deposit NULL
## 1865 C 0 No Deposit NULL
## 1866 D 1 No Deposit NULL
## 1867 E 0 No Deposit NULL
## 1868 D 0 No Deposit NULL
## 1869 A 0 No Deposit NULL
## 1870 A 0 No Deposit NULL
## 1871 D 0 No Deposit NULL
## 1872 A 0 No Deposit NULL
## 1873 E 0 No Deposit NULL
## 1874 E 0 No Deposit NULL
## 1875 C 0 No Deposit NULL
## 1876 A 0 No Deposit NULL
## 1877 G 0 No Deposit NULL
## 1878 E 0 No Deposit NULL
## 1879 F 0 No Deposit NULL
## 1880 D 0 No Deposit NULL
## 1881 D 0 No Deposit NULL
## 1882 E 0 No Deposit NULL
## 1883 D 1 No Deposit NULL
## 1884 C 0 No Deposit NULL
## 1885 A 0 No Deposit NULL
## 1886 A 0 No Deposit NULL
## 1887 D 0 No Deposit NULL
## 1888 A 0 No Deposit NULL
## 1889 G 1 No Deposit NULL
## 1890 A 0 No Deposit NULL
## 1891 G 0 No Deposit NULL
## 1892 A 0 No Deposit NULL
## 1893 E 0 No Deposit NULL
## 1894 A 0 No Deposit NULL
## 1895 E 0 No Deposit NULL
## 1896 A 0 No Deposit NULL
## 1897 D 0 No Deposit NULL
## 1898 E 0 No Deposit NULL
## 1899 A 0 No Deposit NULL
## 1900 A 1 No Deposit NULL
## 1901 D 0 No Deposit NULL
## 1902 A 1 No Deposit NULL
## 1903 A 0 No Deposit NULL
## 1904 D 0 No Deposit NULL
## 1905 A 0 No Deposit NULL
## 1906 A 0 No Deposit NULL
## 1907 A 0 No Deposit NULL
## 1908 F 0 No Deposit NULL
## 1909 A 0 No Deposit NULL
## 1910 A 0 No Deposit NULL
## 1911 A 0 No Deposit NULL
## 1912 A 0 No Deposit NULL
## 1913 G 0 No Deposit NULL
## 1914 A 0 No Deposit NULL
## 1915 A 0 No Deposit NULL
## 1916 H 0 No Deposit NULL
## 1917 D 1 No Deposit NULL
## 1918 A 0 No Deposit NULL
## 1919 A 0 No Deposit NULL
## 1920 A 0 No Deposit NULL
## 1921 A 0 No Deposit NULL
## 1922 G 0 No Deposit NULL
## 1923 E 0 No Deposit NULL
## 1924 F 0 No Deposit NULL
## 1925 A 0 No Deposit NULL
## 1926 F 0 No Deposit NULL
## 1927 F 0 No Deposit NULL
## 1928 F 0 No Deposit NULL
## 1929 F 0 No Deposit NULL
## 1930 A 0 No Deposit NULL
## 1931 E 0 No Deposit NULL
## 1932 E 1 No Deposit NULL
## 1933 C 0 No Deposit NULL
## 1934 A 0 No Deposit NULL
## 1935 A 0 No Deposit NULL
## 1936 A 0 No Deposit NULL
## 1937 D 0 No Deposit NULL
## 1938 A 0 No Deposit NULL
## 1939 E 0 No Deposit NULL
## 1940 E 0 No Deposit NULL
## 1941 G 2 No Deposit NULL
## 1942 D 3 No Deposit NULL
## 1943 C 1 No Deposit 110
## 1944 C 0 No Deposit 110
## 1945 C 0 No Deposit 110
## 1946 C 0 No Deposit 110
## 1947 C 0 No Deposit 110
## 1948 E 0 No Deposit NULL
## 1949 E 0 No Deposit NULL
## 1950 F 0 No Deposit NULL
## 1951 F 0 No Deposit NULL
## 1952 B 0 No Deposit NULL
## 1953 A 0 No Deposit NULL
## 1954 E 0 No Deposit NULL
## 1955 A 0 No Deposit NULL
## 1956 G 1 No Deposit NULL
## 1957 E 0 No Deposit NULL
## 1958 D 0 No Deposit NULL
## 1959 D 0 No Deposit NULL
## 1960 F 0 No Deposit NULL
## 1961 C 0 No Deposit NULL
## 1962 F 0 No Deposit NULL
## 1963 A 0 No Deposit NULL
## 1964 E 0 No Deposit NULL
## 1965 E 0 No Deposit NULL
## 1966 D 0 No Deposit NULL
## 1967 D 0 No Deposit NULL
## 1968 E 0 No Deposit NULL
## 1969 A 0 No Deposit NULL
## 1970 G 0 No Deposit NULL
## 1971 A 0 No Deposit 240
## 1972 A 4 No Deposit 312
## 1973 G 0 No Deposit NULL
## 1974 A 4 No Deposit 312
## 1975 A 0 No Deposit NULL
## 1976 E 0 No Deposit NULL
## 1977 E 1 No Deposit NULL
## 1978 A 0 No Deposit NULL
## 1979 E 0 No Deposit NULL
## 1980 E 1 No Deposit NULL
## 1981 D 0 No Deposit NULL
## 1982 D 0 No Deposit NULL
## 1983 D 0 No Deposit NULL
## 1984 A 0 No Deposit NULL
## 1985 D 0 No Deposit NULL
## 1986 D 0 No Deposit NULL
## 1987 D 0 No Deposit NULL
## 1988 A 0 No Deposit NULL
## 1989 F 0 No Deposit NULL
## 1990 D 0 No Deposit NULL
## 1991 D 0 No Deposit NULL
## 1992 H 0 No Deposit NULL
## 1993 E 0 No Deposit NULL
## 1994 D 0 No Deposit NULL
## 1995 F 0 No Deposit 110
## 1996 A 0 No Deposit NULL
## 1997 A 0 No Deposit NULL
## 1998 A 0 No Deposit NULL
## 1999 A 0 No Deposit NULL
## 2000 D 0 No Deposit NULL
## 2001 G 0 No Deposit NULL
## 2002 D 1 No Deposit NULL
## 2003 A 0 No Deposit NULL
## 2004 A 0 No Deposit NULL
## 2005 G 0 No Deposit NULL
## 2006 A 0 No Deposit NULL
## 2007 F 0 No Deposit NULL
## 2008 A 0 No Deposit NULL
## 2009 E 0 No Deposit NULL
## 2010 D 0 No Deposit 110
## 2011 E 0 No Deposit NULL
## 2012 A 0 No Deposit NULL
## 2013 E 0 No Deposit NULL
## 2014 D 0 No Deposit NULL
## 2015 E 0 No Deposit NULL
## 2016 A 0 No Deposit NULL
## 2017 D 0 No Deposit NULL
## 2018 A 0 No Deposit NULL
## 2019 D 0 No Deposit NULL
## 2020 A 0 No Deposit NULL
## 2021 A 0 No Deposit NULL
## 2022 D 0 No Deposit NULL
## 2023 D 0 No Deposit NULL
## 2024 A 1 No Deposit NULL
## 2025 E 0 No Deposit NULL
## 2026 A 0 No Deposit NULL
## 2027 A 0 No Deposit NULL
## 2028 A 0 No Deposit NULL
## 2029 E 0 No Deposit NULL
## 2030 E 0 No Deposit NULL
## 2031 A 0 No Deposit NULL
## 2032 A 0 No Deposit NULL
## 2033 D 0 No Deposit NULL
## 2034 A 0 No Deposit NULL
## 2035 D 0 No Deposit NULL
## 2036 D 0 No Deposit NULL
## 2037 D 0 No Deposit NULL
## 2038 A 0 No Deposit NULL
## 2039 D 0 No Deposit NULL
## 2040 D 0 No Deposit NULL
## 2041 D 0 No Deposit NULL
## 2042 A 0 No Deposit NULL
## 2043 D 0 No Deposit NULL
## 2044 A 0 No Deposit NULL
## 2045 D 0 No Deposit NULL
## 2046 A 0 No Deposit NULL
## 2047 A 0 No Deposit NULL
## 2048 A 0 No Deposit NULL
## 2049 D 0 No Deposit NULL
## 2050 E 0 No Deposit NULL
## 2051 G 0 No Deposit NULL
## 2052 F 3 No Deposit NULL
## 2053 A 0 No Deposit NULL
## 2054 A 0 No Deposit NULL
## 2055 A 0 No Deposit NULL
## 2056 A 0 No Deposit NULL
## 2057 E 0 No Deposit NULL
## 2058 A 0 No Deposit NULL
## 2059 D 0 No Deposit NULL
## 2060 A 0 No Deposit NULL
## 2061 F 1 No Deposit NULL
## 2062 E 0 No Deposit NULL
## 2063 G 0 No Deposit NULL
## 2064 H 1 No Deposit 318
## 2065 A 0 No Deposit NULL
## 2066 A 0 No Deposit NULL
## 2067 C 0 No Deposit NULL
## 2068 H 0 No Deposit NULL
## 2069 A 0 No Deposit NULL
## 2070 A 0 No Deposit NULL
## 2071 A 0 No Deposit NULL
## 2072 C 0 No Deposit NULL
## 2073 A 0 No Deposit NULL
## 2074 A 0 No Deposit NULL
## 2075 E 0 No Deposit NULL
## 2076 E 0 No Deposit NULL
## 2077 E 0 No Deposit NULL
## 2078 A 0 No Deposit NULL
## 2079 A 0 No Deposit NULL
## 2080 D 0 No Deposit NULL
## 2081 A 0 No Deposit NULL
## 2082 A 0 No Deposit NULL
## 2083 E 0 No Deposit NULL
## 2084 D 0 No Deposit NULL
## 2085 A 0 No Deposit NULL
## 2086 A 0 No Deposit NULL
## 2087 A 0 No Deposit NULL
## 2088 G 0 No Deposit NULL
## 2089 E 0 No Deposit NULL
## 2090 D 0 No Deposit NULL
## 2091 F 0 No Deposit NULL
## 2092 C 0 No Deposit NULL
## 2093 E 0 No Deposit NULL
## 2094 E 0 No Deposit NULL
## 2095 D 0 No Deposit NULL
## 2096 E 0 No Deposit NULL
## 2097 E 0 No Deposit NULL
## 2098 C 1 No Deposit NULL
## 2099 D 0 No Deposit NULL
## 2100 A 0 No Deposit NULL
## 2101 F 0 No Deposit NULL
## 2102 D 0 No Deposit NULL
## 2103 A 0 No Deposit NULL
## 2104 A 0 No Deposit NULL
## 2105 A 0 No Deposit NULL
## 2106 A 0 No Deposit NULL
## 2107 A 0 No Deposit NULL
## 2108 A 0 No Deposit NULL
## 2109 A 0 No Deposit NULL
## 2110 A 0 No Deposit NULL
## 2111 D 0 No Deposit NULL
## 2112 F 0 No Deposit NULL
## 2113 D 0 No Deposit NULL
## 2114 F 0 No Deposit NULL
## 2115 H 0 No Deposit NULL
## 2116 G 1 No Deposit NULL
## 2117 G 0 No Deposit NULL
## 2118 E 0 No Deposit NULL
## 2119 E 1 No Deposit NULL
## 2120 G 0 No Deposit NULL
## 2121 A 0 No Deposit NULL
## 2122 E 0 No Deposit NULL
## 2123 H 0 No Deposit NULL
## 2124 A 0 No Deposit NULL
## 2125 D 0 No Deposit NULL
## 2126 D 1 No Deposit NULL
## 2127 A 0 No Deposit NULL
## 2128 A 0 No Deposit NULL
## 2129 D 0 No Deposit NULL
## 2130 D 0 No Deposit NULL
## 2131 D 0 No Deposit NULL
## 2132 D 0 No Deposit NULL
## 2133 C 0 No Deposit NULL
## 2134 A 0 Non Refund NULL
## 2135 A 0 Non Refund NULL
## 2136 A 0 Non Refund NULL
## 2137 A 0 Non Refund NULL
## 2138 A 0 No Deposit NULL
## 2139 A 0 No Deposit NULL
## 2140 C 0 No Deposit NULL
## 2141 G 0 No Deposit NULL
## 2142 A 0 Non Refund NULL
## 2143 A 0 Non Refund NULL
## 2144 A 0 No Deposit NULL
## 2145 A 0 No Deposit NULL
## 2146 A 0 No Deposit NULL
## 2147 A 0 No Deposit NULL
## 2148 C 0 No Deposit NULL
## 2149 A 0 No Deposit NULL
## 2150 A 0 No Deposit NULL
## 2151 A 0 No Deposit NULL
## 2152 A 0 No Deposit NULL
## 2153 F 0 No Deposit NULL
## 2154 A 0 No Deposit NULL
## 2155 A 0 No Deposit NULL
## 2156 E 0 No Deposit NULL
## 2157 A 0 No Deposit NULL
## 2158 A 0 No Deposit NULL
## 2159 A 0 No Deposit NULL
## 2160 A 0 No Deposit NULL
## 2161 F 0 No Deposit NULL
## 2162 D 0 No Deposit NULL
## 2163 G 0 No Deposit NULL
## 2164 F 3 No Deposit NULL
## 2165 A 0 No Deposit NULL
## 2166 A 0 No Deposit NULL
## 2167 D 1 No Deposit NULL
## 2168 A 0 No Deposit NULL
## 2169 G 0 No Deposit NULL
## 2170 D 1 No Deposit NULL
## 2171 E 0 No Deposit NULL
## 2172 A 1 No Deposit NULL
## 2173 D 0 No Deposit NULL
## 2174 A 0 No Deposit NULL
## 2175 D 0 No Deposit NULL
## 2176 G 0 No Deposit NULL
## 2177 G 0 No Deposit NULL
## 2178 E 0 No Deposit NULL
## 2179 A 0 No Deposit NULL
## 2180 A 1 No Deposit NULL
## 2181 E 0 No Deposit NULL
## 2182 A 0 Non Refund NULL
## 2183 A 0 Non Refund NULL
## 2184 A 0 Non Refund NULL
## 2185 A 0 Non Refund NULL
## 2186 A 0 Non Refund NULL
## 2187 A 0 Non Refund NULL
## 2188 A 0 Non Refund NULL
## 2189 A 0 Non Refund NULL
## 2190 A 0 Non Refund NULL
## 2191 A 0 Non Refund NULL
## 2192 A 0 Non Refund NULL
## 2193 A 0 Non Refund NULL
## 2194 A 0 No Deposit NULL
## 2195 C 0 No Deposit NULL
## 2196 G 0 No Deposit NULL
## 2197 D 0 No Deposit NULL
## 2198 A 0 No Deposit NULL
## 2199 A 0 No Deposit NULL
## 2200 D 0 No Deposit NULL
## 2201 G 0 No Deposit NULL
## 2202 A 0 No Deposit NULL
## 2203 F 0 No Deposit 110
## 2204 C 0 No Deposit NULL
## 2205 D 0 No Deposit NULL
## 2206 C 0 No Deposit NULL
## 2207 E 0 No Deposit NULL
## 2208 C 1 No Deposit NULL
## 2209 A 0 No Deposit NULL
## 2210 A 0 No Deposit NULL
## 2211 A 0 No Deposit NULL
## 2212 A 0 No Deposit NULL
## 2213 A 1 No Deposit NULL
## 2214 A 0 No Deposit NULL
## 2215 D 0 No Deposit NULL
## 2216 A 0 No Deposit 94
## 2217 A 0 No Deposit 94
## 2218 A 0 No Deposit 94
## 2219 A 0 No Deposit NULL
## 2220 A 1 No Deposit NULL
## 2221 A 0 No Deposit NULL
## 2222 A 1 No Deposit NULL
## 2223 G 0 No Deposit NULL
## 2224 A 0 No Deposit NULL
## 2225 I 1 No Deposit 174
## 2226 A 0 No Deposit NULL
## 2227 G 0 No Deposit NULL
## 2228 G 0 No Deposit NULL
## 2229 D 1 No Deposit NULL
## 2230 E 0 No Deposit NULL
## 2231 E 0 No Deposit NULL
## 2232 A 0 No Deposit NULL
## 2233 E 0 No Deposit NULL
## 2234 D 0 No Deposit NULL
## 2235 A 0 No Deposit NULL
## 2236 A 0 No Deposit NULL
## 2237 A 0 No Deposit NULL
## 2238 A 0 No Deposit NULL
## 2239 A 0 No Deposit NULL
## 2240 A 0 No Deposit NULL
## 2241 F 0 No Deposit NULL
## 2242 A 1 No Deposit NULL
## 2243 C 1 No Deposit NULL
## 2244 A 0 No Deposit NULL
## 2245 A 0 No Deposit NULL
## 2246 A 0 No Deposit NULL
## 2247 A 1 No Deposit NULL
## 2248 E 0 No Deposit NULL
## 2249 D 0 No Deposit NULL
## 2250 A 0 No Deposit NULL
## 2251 D 0 No Deposit NULL
## 2252 A 0 No Deposit NULL
## 2253 D 0 No Deposit NULL
## 2254 D 0 No Deposit NULL
## 2255 A 0 No Deposit NULL
## 2256 G 0 No Deposit NULL
## 2257 F 0 No Deposit NULL
## 2258 D 0 No Deposit NULL
## 2259 A 2 No Deposit NULL
## 2260 F 0 No Deposit NULL
## 2261 A 3 No Deposit NULL
## 2262 D 0 No Deposit NULL
## 2263 A 0 No Deposit NULL
## 2264 A 1 No Deposit NULL
## 2265 E 0 No Deposit NULL
## 2266 A 1 No Deposit NULL
## 2267 A 0 No Deposit NULL
## 2268 A 0 No Deposit NULL
## 2269 D 2 No Deposit NULL
## 2270 A 2 No Deposit NULL
## 2271 D 0 No Deposit NULL
## 2272 A 1 No Deposit NULL
## 2273 A 0 No Deposit NULL
## 2274 A 0 No Deposit NULL
## 2275 C 0 No Deposit NULL
## 2276 D 0 No Deposit NULL
## 2277 A 0 No Deposit NULL
## 2278 D 0 No Deposit NULL
## 2279 A 0 No Deposit NULL
## 2280 A 0 No Deposit NULL
## 2281 D 0 No Deposit NULL
## 2282 A 0 No Deposit NULL
## 2283 A 0 No Deposit NULL
## 2284 F 0 No Deposit NULL
## 2285 D 0 No Deposit NULL
## 2286 E 2 No Deposit NULL
## 2287 D 0 No Deposit NULL
## 2288 A 0 No Deposit 274
## 2289 D 0 No Deposit NULL
## 2290 A 0 No Deposit NULL
## 2291 A 0 No Deposit NULL
## 2292 A 0 No Deposit NULL
## 2293 A 2 No Deposit NULL
## 2294 E 0 No Deposit NULL
## 2295 A 0 No Deposit NULL
## 2296 A 0 No Deposit NULL
## 2297 A 0 No Deposit NULL
## 2298 A 0 Non Refund NULL
## 2299 A 0 Non Refund NULL
## 2300 A 0 Non Refund NULL
## 2301 A 0 Non Refund NULL
## 2302 A 0 Non Refund NULL
## 2303 A 0 Non Refund NULL
## 2304 A 0 No Deposit NULL
## 2305 A 0 Non Refund NULL
## 2306 A 0 Non Refund NULL
## 2307 E 0 No Deposit NULL
## 2308 G 1 No Deposit NULL
## 2309 C 0 No Deposit NULL
## 2310 A 0 No Deposit NULL
## 2311 A 0 No Deposit NULL
## 2312 A 1 No Deposit NULL
## 2313 A 0 Non Refund NULL
## 2314 A 0 Non Refund NULL
## 2315 A 0 Non Refund NULL
## 2316 A 0 Non Refund NULL
## 2317 A 0 Non Refund NULL
## 2318 A 0 Non Refund NULL
## 2319 A 0 Non Refund NULL
## 2320 A 0 Non Refund NULL
## 2321 A 0 Non Refund NULL
## 2322 A 0 Non Refund NULL
## 2323 A 0 Non Refund NULL
## 2324 A 0 Non Refund NULL
## 2325 A 0 Non Refund NULL
## 2326 A 0 No Deposit NULL
## 2327 A 0 No Deposit NULL
## 2328 E 0 No Deposit NULL
## 2329 A 0 Non Refund NULL
## 2330 A 0 Non Refund NULL
## 2331 A 0 Non Refund NULL
## 2332 A 0 No Deposit NULL
## 2333 A 0 No Deposit NULL
## 2334 A 0 No Deposit NULL
## 2335 A 0 No Deposit NULL
## 2336 A 0 Non Refund NULL
## 2337 A 0 Non Refund NULL
## 2338 A 0 Non Refund NULL
## 2339 A 0 Non Refund NULL
## 2340 D 0 No Deposit NULL
## 2341 A 0 No Deposit NULL
## 2342 D 0 No Deposit NULL
## 2343 D 0 No Deposit NULL
## 2344 D 0 No Deposit NULL
## 2345 D 0 No Deposit NULL
## 2346 D 0 No Deposit NULL
## 2347 A 0 No Deposit NULL
## 2348 E 0 No Deposit NULL
## 2349 E 0 No Deposit NULL
## 2350 E 0 No Deposit NULL
## 2351 A 4 No Deposit NULL
## 2352 D 0 No Deposit NULL
## 2353 D 0 No Deposit NULL
## 2354 D 1 No Deposit NULL
## 2355 E 0 No Deposit NULL
## 2356 A 0 No Deposit NULL
## 2357 H 1 No Deposit NULL
## 2358 G 0 No Deposit NULL
## 2359 H 0 No Deposit NULL
## 2360 G 0 No Deposit NULL
## 2361 D 0 No Deposit NULL
## 2362 F 0 No Deposit NULL
## 2363 D 0 No Deposit NULL
## 2364 D 1 No Deposit NULL
## 2365 E 0 No Deposit NULL
## 2366 D 0 No Deposit NULL
## 2367 A 0 No Deposit NULL
## 2368 F 0 No Deposit NULL
## 2369 A 0 Non Refund NULL
## 2370 A 0 Non Refund NULL
## 2371 A 0 Non Refund NULL
## 2372 A 0 Non Refund NULL
## 2373 A 0 Non Refund NULL
## 2374 A 0 Non Refund NULL
## 2375 A 0 Non Refund NULL
## 2376 A 0 Non Refund NULL
## 2377 A 0 Non Refund NULL
## 2378 A 0 Non Refund NULL
## 2379 A 0 No Deposit NULL
## 2380 A 0 Non Refund NULL
## 2381 A 0 Non Refund NULL
## 2382 A 0 Non Refund NULL
## 2383 D 0 No Deposit NULL
## 2384 F 0 No Deposit NULL
## 2385 D 1 No Deposit NULL
## 2386 A 0 No Deposit NULL
## 2387 D 0 No Deposit NULL
## 2388 A 0 No Deposit NULL
## 2389 A 2 No Deposit NULL
## 2390 A 0 No Deposit NULL
## 2391 D 0 No Deposit NULL
## 2392 A 0 No Deposit NULL
## 2393 E 1 No Deposit 113
## 2394 A 0 No Deposit NULL
## 2395 A 0 No Deposit NULL
## 2396 A 0 No Deposit NULL
## 2397 E 1 No Deposit NULL
## 2398 A 0 No Deposit NULL
## 2399 A 0 No Deposit NULL
## 2400 A 0 No Deposit NULL
## 2401 A 0 No Deposit NULL
## 2402 A 0 No Deposit NULL
## 2403 A 0 No Deposit NULL
## 2404 A 0 No Deposit NULL
## 2405 D 0 No Deposit NULL
## 2406 F 0 No Deposit NULL
## 2407 A 0 No Deposit NULL
## 2408 I 0 No Deposit 174
## 2409 A 0 No Deposit NULL
## 2410 I 0 No Deposit 174
## 2411 A 0 No Deposit 195
## 2412 A 0 No Deposit 195
## 2413 A 0 No Deposit 195
## 2414 A 0 No Deposit NULL
## 2415 A 1 No Deposit NULL
## 2416 A 0 No Deposit 113
## 2417 E 0 No Deposit NULL
## 2418 E 0 No Deposit NULL
## 2419 D 0 No Deposit NULL
## 2420 A 0 No Deposit NULL
## 2421 F 0 No Deposit NULL
## 2422 C 1 No Deposit NULL
## 2423 A 0 No Deposit NULL
## 2424 E 0 No Deposit NULL
## 2425 A 0 No Deposit NULL
## 2426 A 2 No Deposit NULL
## 2427 A 0 No Deposit NULL
## 2428 A 0 No Deposit NULL
## 2429 G 0 No Deposit NULL
## 2430 G 0 No Deposit NULL
## 2431 F 0 No Deposit NULL
## 2432 E 0 No Deposit NULL
## 2433 A 1 No Deposit NULL
## 2434 A 0 No Deposit NULL
## 2435 D 0 No Deposit NULL
## 2436 A 1 No Deposit NULL
## 2437 D 0 No Deposit NULL
## 2438 A 0 No Deposit NULL
## 2439 A 0 No Deposit NULL
## 2440 I 3 No Deposit 223
## 2441 E 1 No Deposit 223
## 2442 G 0 No Deposit NULL
## 2443 A 0 No Deposit NULL
## 2444 D 1 No Deposit NULL
## 2445 D 1 No Deposit NULL
## 2446 D 2 No Deposit NULL
## 2447 A 1 No Deposit NULL
## 2448 A 2 No Deposit 223
## 2449 D 0 No Deposit NULL
## 2450 A 1 No Deposit 223
## 2451 E 0 No Deposit NULL
## 2452 A 0 No Deposit NULL
## 2453 A 0 No Deposit NULL
## 2454 A 0 No Deposit NULL
## 2455 F 0 No Deposit NULL
## 2456 A 1 No Deposit NULL
## 2457 E 0 No Deposit NULL
## 2458 A 0 No Deposit NULL
## 2459 A 0 No Deposit NULL
## 2460 E 0 No Deposit NULL
## 2461 F 1 No Deposit NULL
## 2462 D 1 No Deposit NULL
## 2463 D 0 No Deposit NULL
## 2464 E 0 No Deposit NULL
## 2465 D 0 No Deposit NULL
## 2466 C 0 No Deposit NULL
## 2467 A 0 No Deposit NULL
## 2468 E 1 No Deposit NULL
## 2469 E 0 No Deposit NULL
## 2470 A 0 No Deposit NULL
## 2471 D 1 No Deposit NULL
## 2472 A 0 No Deposit NULL
## 2473 D 0 No Deposit NULL
## 2474 G 0 No Deposit NULL
## 2475 A 0 No Deposit NULL
## 2476 A 0 No Deposit NULL
## 2477 D 0 No Deposit 154
## 2478 D 0 No Deposit NULL
## 2479 D 0 No Deposit NULL
## 2480 D 0 No Deposit NULL
## 2481 F 0 No Deposit NULL
## 2482 D 0 No Deposit NULL
## 2483 D 1 No Deposit NULL
## 2484 D 0 No Deposit NULL
## 2485 D 0 No Deposit NULL
## 2486 D 0 No Deposit NULL
## 2487 A 0 No Deposit NULL
## 2488 A 0 No Deposit NULL
## 2489 A 0 No Deposit NULL
## 2490 A 0 No Deposit NULL
## 2491 A 0 No Deposit NULL
## 2492 A 0 No Deposit NULL
## 2493 A 0 No Deposit NULL
## 2494 A 0 No Deposit NULL
## 2495 A 0 No Deposit NULL
## 2496 D 0 No Deposit NULL
## 2497 A 0 No Deposit NULL
## 2498 A 0 No Deposit NULL
## 2499 A 0 No Deposit NULL
## 2500 A 0 No Deposit NULL
## 2501 A 0 No Deposit NULL
## 2502 A 0 No Deposit NULL
## 2503 A 0 No Deposit NULL
## 2504 A 0 No Deposit NULL
## 2505 A 0 No Deposit NULL
## 2506 D 0 No Deposit NULL
## 2507 A 0 No Deposit NULL
## 2508 A 0 No Deposit NULL
## 2509 A 0 No Deposit NULL
## 2510 A 0 No Deposit NULL
## 2511 A 0 No Deposit NULL
## 2512 E 0 No Deposit NULL
## 2513 A 0 No Deposit NULL
## 2514 A 0 No Deposit NULL
## 2515 D 0 No Deposit NULL
## 2516 A 0 No Deposit NULL
## 2517 A 0 No Deposit NULL
## 2518 D 1 No Deposit NULL
## 2519 D 0 No Deposit NULL
## 2520 E 0 No Deposit NULL
## 2521 F 1 No Deposit NULL
## 2522 F 0 No Deposit NULL
## 2523 C 0 No Deposit NULL
## 2524 F 0 No Deposit NULL
## 2525 G 1 No Deposit NULL
## 2526 D 0 No Deposit NULL
## 2527 A 0 No Deposit NULL
## 2528 E 0 No Deposit NULL
## 2529 A 1 No Deposit NULL
## 2530 A 0 No Deposit NULL
## 2531 I 0 No Deposit NULL
## 2532 I 0 No Deposit NULL
## 2533 A 0 No Deposit NULL
## 2534 A 0 No Deposit NULL
## 2535 A 0 No Deposit NULL
## 2536 G 0 No Deposit NULL
## 2537 A 0 No Deposit NULL
## 2538 D 2 No Deposit NULL
## 2539 C 0 No Deposit NULL
## 2540 A 0 No Deposit NULL
## 2541 A 0 No Deposit NULL
## 2542 D 0 No Deposit NULL
## 2543 A 0 No Deposit NULL
## 2544 A 0 No Deposit NULL
## 2545 D 0 No Deposit NULL
## 2546 D 0 No Deposit NULL
## 2547 A 1 No Deposit NULL
## 2548 A 0 No Deposit NULL
## 2549 D 0 No Deposit NULL
## 2550 E 0 No Deposit NULL
## 2551 D 1 No Deposit NULL
## 2552 E 0 No Deposit NULL
## 2553 D 1 No Deposit NULL
## 2554 E 1 No Deposit NULL
## 2555 D 0 No Deposit NULL
## 2556 A 0 No Deposit NULL
## 2557 D 0 No Deposit NULL
## 2558 E 0 No Deposit NULL
## 2559 F 0 No Deposit NULL
## 2560 C 0 No Deposit NULL
## 2561 E 1 No Deposit NULL
## 2562 F 0 No Deposit NULL
## 2563 D 0 No Deposit NULL
## 2564 C 0 No Deposit NULL
## 2565 D 0 No Deposit NULL
## 2566 H 0 No Deposit NULL
## 2567 D 0 No Deposit NULL
## 2568 D 0 No Deposit NULL
## 2569 E 0 No Deposit NULL
## 2570 E 1 No Deposit NULL
## 2571 A 0 No Deposit NULL
## 2572 E 0 No Deposit NULL
## 2573 E 0 No Deposit NULL
## 2574 D 0 No Deposit NULL
## 2575 E 0 No Deposit NULL
## 2576 E 0 No Deposit NULL
## 2577 E 0 No Deposit NULL
## 2578 E 1 No Deposit NULL
## 2579 A 0 No Deposit NULL
## 2580 D 0 No Deposit NULL
## 2581 A 1 No Deposit NULL
## 2582 G 0 No Deposit NULL
## 2583 E 0 No Deposit NULL
## 2584 E 0 No Deposit NULL
## 2585 E 0 No Deposit NULL
## 2586 D 1 No Deposit 317
## 2587 F 0 No Deposit NULL
## 2588 G 0 No Deposit NULL
## 2589 D 2 No Deposit 317
## 2590 D 0 No Deposit NULL
## 2591 D 0 No Deposit NULL
## 2592 D 0 No Deposit NULL
## 2593 D 0 No Deposit NULL
## 2594 D 2 No Deposit 317
## 2595 D 0 No Deposit NULL
## 2596 G 0 No Deposit NULL
## 2597 D 0 No Deposit NULL
## 2598 A 1 No Deposit NULL
## 2599 D 0 No Deposit NULL
## 2600 D 2 No Deposit NULL
## 2601 D 0 No Deposit NULL
## 2602 A 0 No Deposit NULL
## 2603 D 0 No Deposit NULL
## 2604 D 0 No Deposit NULL
## 2605 C 0 No Deposit NULL
## 2606 C 0 No Deposit NULL
## 2607 A 0 No Deposit NULL
## 2608 F 0 No Deposit NULL
## 2609 A 0 No Deposit NULL
## 2610 A 0 No Deposit NULL
## 2611 D 0 No Deposit NULL
## 2612 A 0 No Deposit NULL
## 2613 A 0 No Deposit NULL
## 2614 E 0 No Deposit NULL
## 2615 B 0 No Deposit NULL
## 2616 E 0 No Deposit NULL
## 2617 A 2 No Deposit NULL
## 2618 D 0 No Deposit NULL
## 2619 E 0 No Deposit NULL
## 2620 C 0 No Deposit NULL
## 2621 D 4 No Deposit 317
## 2622 G 0 No Deposit NULL
## 2623 D 0 No Deposit NULL
## 2624 A 0 No Deposit NULL
## 2625 A 0 No Deposit NULL
## 2626 A 0 Non Refund NULL
## 2627 A 0 Non Refund NULL
## 2628 A 0 Non Refund NULL
## 2629 A 0 Non Refund NULL
## 2630 A 0 Non Refund NULL
## 2631 A 0 Non Refund NULL
## 2632 A 0 Non Refund NULL
## 2633 A 0 Non Refund NULL
## 2634 A 0 Non Refund NULL
## 2635 A 0 Non Refund NULL
## 2636 A 0 Non Refund NULL
## 2637 A 0 Non Refund NULL
## 2638 A 0 Non Refund NULL
## 2639 A 0 Non Refund NULL
## 2640 A 0 Non Refund NULL
## 2641 A 0 Non Refund NULL
## 2642 A 0 Non Refund NULL
## 2643 A 0 Non Refund NULL
## 2644 D 0 No Deposit NULL
## 2645 A 0 Non Refund NULL
## 2646 A 0 Non Refund NULL
## 2647 A 0 Non Refund NULL
## 2648 A 0 Non Refund NULL
## 2649 A 0 Non Refund NULL
## 2650 A 0 Non Refund NULL
## 2651 D 0 No Deposit NULL
## 2652 A 0 Non Refund NULL
## 2653 A 0 Non Refund NULL
## 2654 A 0 Non Refund NULL
## 2655 A 0 Non Refund NULL
## 2656 A 0 Non Refund NULL
## 2657 A 0 Non Refund NULL
## 2658 A 0 Non Refund NULL
## 2659 A 0 Non Refund NULL
## 2660 A 0 Non Refund NULL
## 2661 A 0 Non Refund NULL
## 2662 A 0 Non Refund NULL
## 2663 E 0 No Deposit NULL
## 2664 E 0 No Deposit NULL
## 2665 D 0 No Deposit NULL
## 2666 D 0 No Deposit NULL
## 2667 D 0 No Deposit NULL
## 2668 A 0 No Deposit NULL
## 2669 A 0 No Deposit NULL
## 2670 A 0 No Deposit NULL
## 2671 E 0 No Deposit NULL
## 2672 E 0 No Deposit NULL
## 2673 G 0 No Deposit NULL
## 2674 E 0 No Deposit NULL
## 2675 E 0 No Deposit NULL
## 2676 A 0 No Deposit NULL
## 2677 A 0 No Deposit NULL
## 2678 D 0 No Deposit NULL
## 2679 F 0 No Deposit NULL
## 2680 A 0 Non Refund NULL
## 2681 A 0 Non Refund NULL
## 2682 A 0 Non Refund NULL
## 2683 A 0 Non Refund NULL
## 2684 A 0 Non Refund NULL
## 2685 D 0 No Deposit NULL
## 2686 G 0 No Deposit NULL
## 2687 A 0 No Deposit NULL
## 2688 D 0 No Deposit NULL
## 2689 A 0 No Deposit NULL
## 2690 A 1 No Deposit NULL
## 2691 C 0 No Deposit NULL
## 2692 D 0 No Deposit NULL
## 2693 A 0 No Deposit NULL
## 2694 D 1 No Deposit NULL
## 2695 D 0 No Deposit NULL
## 2696 E 1 No Deposit NULL
## 2697 E 0 No Deposit 281
## 2698 G 2 No Deposit 281
## 2699 A 0 Non Refund NULL
## 2700 A 0 Non Refund NULL
## 2701 A 0 Non Refund NULL
## 2702 A 0 Non Refund NULL
## 2703 A 0 Non Refund NULL
## 2704 A 0 No Deposit NULL
## 2705 D 0 No Deposit NULL
## 2706 E 1 No Deposit NULL
## 2707 A 0 No Deposit NULL
## 2708 D 0 No Deposit NULL
## 2709 A 0 No Deposit NULL
## 2710 A 0 No Deposit NULL
## 2711 A 0 No Deposit NULL
## 2712 A 0 No Deposit NULL
## 2713 A 0 No Deposit NULL
## 2714 A 0 No Deposit NULL
## 2715 A 0 No Deposit NULL
## 2716 F 0 No Deposit NULL
## 2717 D 0 No Deposit NULL
## 2718 A 1 No Deposit NULL
## 2719 A 0 No Deposit NULL
## 2720 D 0 No Deposit NULL
## 2721 A 0 No Deposit 118
## 2722 A 2 No Deposit NULL
## 2723 A 0 No Deposit NULL
## 2724 A 1 No Deposit NULL
## 2725 A 0 No Deposit NULL
## 2726 A 0 No Deposit NULL
## 2727 A 0 No Deposit NULL
## 2728 D 0 No Deposit 59
## 2729 A 0 No Deposit NULL
## 2730 D 0 No Deposit NULL
## 2731 D 0 No Deposit NULL
## 2732 D 0 No Deposit NULL
## 2733 D 1 No Deposit NULL
## 2734 A 0 No Deposit NULL
## 2735 A 0 No Deposit 274
## 2736 A 1 No Deposit NULL
## 2737 E 1 No Deposit NULL
## 2738 A 2 No Deposit NULL
## 2739 A 0 No Deposit NULL
## 2740 A 1 No Deposit NULL
## 2741 E 0 No Deposit NULL
## 2742 A 0 No Deposit NULL
## 2743 F 0 No Deposit NULL
## 2744 D 1 No Deposit NULL
## 2745 D 0 No Deposit NULL
## 2746 D 0 No Deposit NULL
## 2747 A 0 No Deposit NULL
## 2748 A 0 No Deposit NULL
## 2749 A 0 No Deposit NULL
## 2750 D 0 No Deposit NULL
## 2751 A 0 No Deposit NULL
## 2752 E 1 No Deposit NULL
## 2753 A 0 No Deposit NULL
## 2754 A 0 No Deposit NULL
## 2755 D 0 No Deposit NULL
## 2756 F 0 No Deposit NULL
## 2757 A 0 No Deposit NULL
## 2758 A 0 No Deposit NULL
## 2759 A 0 No Deposit NULL
## 2760 A 0 No Deposit NULL
## 2761 E 0 No Deposit NULL
## 2762 D 0 No Deposit NULL
## 2763 A 0 No Deposit NULL
## 2764 E 2 No Deposit NULL
## 2765 D 0 No Deposit NULL
## 2766 E 0 No Deposit NULL
## 2767 E 0 No Deposit NULL
## 2768 D 0 No Deposit NULL
## 2769 A 0 No Deposit NULL
## 2770 A 0 Non Refund NULL
## 2771 A 0 Non Refund NULL
## 2772 A 0 No Deposit NULL
## 2773 A 0 Non Refund NULL
## 2774 A 0 No Deposit NULL
## 2775 A 0 Non Refund NULL
## 2776 A 0 No Deposit NULL
## 2777 F 0 No Deposit NULL
## 2778 A 0 No Deposit NULL
## 2779 D 0 No Deposit NULL
## 2780 A 0 No Deposit NULL
## 2781 D 0 No Deposit NULL
## 2782 D 1 No Deposit NULL
## 2783 D 0 No Deposit NULL
## 2784 A 0 Non Refund NULL
## 2785 A 0 Non Refund NULL
## 2786 A 0 Non Refund NULL
## 2787 E 0 No Deposit NULL
## 2788 A 0 Non Refund NULL
## 2789 A 0 No Deposit NULL
## 2790 A 0 Non Refund NULL
## 2791 A 0 Non Refund NULL
## 2792 D 0 No Deposit NULL
## 2793 A 0 No Deposit NULL
## 2794 A 0 No Deposit NULL
## 2795 A 0 Non Refund NULL
## 2796 A 0 Non Refund NULL
## 2797 A 0 No Deposit NULL
## 2798 D 0 No Deposit NULL
## 2799 A 0 No Deposit NULL
## 2800 A 0 No Deposit NULL
## 2801 D 0 No Deposit NULL
## 2802 A 0 No Deposit NULL
## 2803 A 0 No Deposit NULL
## 2804 A 0 No Deposit NULL
## 2805 A 0 No Deposit NULL
## 2806 A 0 No Deposit NULL
## 2807 D 0 No Deposit NULL
## 2808 D 0 No Deposit NULL
## 2809 A 0 No Deposit NULL
## 2810 A 0 No Deposit NULL
## 2811 E 0 No Deposit NULL
## 2812 A 0 Non Refund NULL
## 2813 A 0 Non Refund NULL
## 2814 A 0 Non Refund NULL
## 2815 A 0 Non Refund NULL
## 2816 A 0 Non Refund NULL
## 2817 A 0 No Deposit NULL
## 2818 E 1 No Deposit NULL
## 2819 A 0 No Deposit NULL
## 2820 H 0 No Deposit NULL
## 2821 A 0 No Deposit NULL
## 2822 A 0 No Deposit NULL
## 2823 A 1 No Deposit NULL
## 2824 D 0 No Deposit NULL
## 2825 A 0 No Deposit NULL
## 2826 G 1 No Deposit NULL
## 2827 A 1 No Deposit NULL
## 2828 A 0 No Deposit NULL
## 2829 A 0 No Deposit NULL
## 2830 A 0 No Deposit NULL
## 2831 D 0 No Deposit NULL
## 2832 A 0 No Deposit NULL
## 2833 A 0 No Deposit NULL
## 2834 A 0 No Deposit NULL
## 2835 E 0 No Deposit NULL
## 2836 A 0 No Deposit 94
## 2837 D 0 No Deposit NULL
## 2838 D 0 No Deposit NULL
## 2839 A 0 No Deposit NULL
## 2840 D 1 No Deposit NULL
## 2841 A 0 No Deposit 94
## 2842 D 0 No Deposit NULL
## 2843 A 0 No Deposit NULL
## 2844 F 0 No Deposit NULL
## 2845 E 0 No Deposit NULL
## 2846 A 0 No Deposit NULL
## 2847 A 0 No Deposit NULL
## 2848 D 1 No Deposit NULL
## 2849 D 1 No Deposit NULL
## 2850 D 0 No Deposit NULL
## 2851 D 0 No Deposit NULL
## 2852 E 0 No Deposit NULL
## 2853 A 0 No Deposit NULL
## 2854 A 0 No Deposit NULL
## 2855 A 0 No Deposit NULL
## 2856 A 0 No Deposit NULL
## 2857 A 0 No Deposit NULL
## 2858 A 0 No Deposit NULL
## 2859 A 0 No Deposit NULL
## 2860 A 0 No Deposit NULL
## 2861 E 0 No Deposit NULL
## 2862 G 0 No Deposit NULL
## 2863 A 0 No Deposit NULL
## 2864 A 0 No Deposit NULL
## 2865 D 0 No Deposit NULL
## 2866 A 0 No Deposit NULL
## 2867 D 1 No Deposit NULL
## 2868 A 1 No Deposit 281
## 2869 D 1 No Deposit NULL
## 2870 D 0 No Deposit NULL
## 2871 C 0 No Deposit NULL
## 2872 A 0 No Deposit NULL
## 2873 D 0 No Deposit 53
## 2874 D 0 No Deposit NULL
## 2875 A 0 No Deposit NULL
## 2876 D 0 No Deposit NULL
## 2877 A 0 No Deposit NULL
## 2878 A 2 No Deposit 281
## 2879 A 2 No Deposit 281
## 2880 A 1 No Deposit 281
## 2881 A 2 No Deposit 281
## 2882 A 6 No Deposit 281
## 2883 A 1 No Deposit 281
## 2884 A 2 No Deposit 281
## 2885 F 2 No Deposit 281
## 2886 A 0 No Deposit 286
## 2887 A 0 No Deposit NULL
## 2888 A 0 No Deposit NULL
## 2889 A 1 No Deposit NULL
## 2890 A 0 No Deposit NULL
## 2891 A 1 No Deposit 281
## 2892 A 0 No Deposit 281
## 2893 A 3 No Deposit 281
## 2894 A 0 No Deposit 12
## 2895 A 0 No Deposit NULL
## 2896 A 0 No Deposit NULL
## 2897 E 1 No Deposit NULL
## 2898 E 1 No Deposit NULL
## 2899 A 1 No Deposit 281
## 2900 E 0 No Deposit NULL
## 2901 A 2 No Deposit 281
## 2902 A 1 No Deposit NULL
## 2903 D 0 No Deposit NULL
## 2904 D 0 No Deposit NULL
## 2905 C 0 No Deposit NULL
## 2906 D 0 No Deposit NULL
## 2907 D 0 No Deposit NULL
## 2908 D 0 No Deposit NULL
## 2909 C 1 No Deposit NULL
## 2910 D 0 No Deposit NULL
## 2911 D 1 No Deposit NULL
## 2912 D 1 No Deposit NULL
## 2913 A 1 No Deposit 281
## 2914 E 2 No Deposit 281
## 2915 A 2 No Deposit 281
## 2916 A 2 No Deposit 281
## 2917 A 3 No Deposit 281
## 2918 A 1 No Deposit 281
## 2919 E 2 No Deposit 281
## 2920 D 0 No Deposit NULL
## 2921 D 0 No Deposit NULL
## 2922 E 0 No Deposit NULL
## 2923 A 0 No Deposit NULL
## 2924 E 0 No Deposit NULL
## 2925 A 0 No Deposit NULL
## 2926 D 0 No Deposit NULL
## 2927 E 0 No Deposit NULL
## 2928 E 0 No Deposit NULL
## 2929 F 1 No Deposit NULL
## 2930 D 0 No Deposit NULL
## 2931 E 0 No Deposit NULL
## 2932 E 0 No Deposit NULL
## 2933 E 0 No Deposit NULL
## 2934 E 0 No Deposit NULL
## 2935 A 0 No Deposit NULL
## 2936 A 0 No Deposit NULL
## 2937 A 0 No Deposit NULL
## 2938 A 0 No Deposit NULL
## 2939 A 1 No Deposit 281
## 2940 A 0 No Deposit NULL
## 2941 D 0 No Deposit NULL
## 2942 A 1 No Deposit 281
## 2943 A 2 No Deposit 281
## 2944 A 0 No Deposit NULL
## 2945 A 0 No Deposit NULL
## 2946 A 2 No Deposit 281
## 2947 D 1 No Deposit 281
## 2948 A 2 No Deposit 281
## 2949 A 0 No Deposit NULL
## 2950 A 0 No Deposit NULL
## 2951 A 1 No Deposit 281
## 2952 A 0 No Deposit NULL
## 2953 A 0 No Deposit NULL
## 2954 A 1 No Deposit 281
## 2955 A 2 No Deposit 281
## 2956 A 0 No Deposit NULL
## 2957 A 0 No Deposit NULL
## 2958 D 0 No Deposit NULL
## 2959 A 0 No Deposit NULL
## 2960 D 1 No Deposit NULL
## 2961 A 1 No Deposit NULL
## 2962 D 0 No Deposit NULL
## 2963 F 0 No Deposit NULL
## 2964 D 1 No Deposit NULL
## 2965 A 1 No Deposit 281
## 2966 D 2 No Deposit 281
## 2967 A 1 No Deposit 281
## 2968 D 1 No Deposit 281
## 2969 D 0 No Deposit NULL
## 2970 A 2 No Deposit 281
## 2971 D 1 No Deposit 281
## 2972 A 1 No Deposit 281
## 2973 D 0 No Deposit NULL
## 2974 E 0 No Deposit NULL
## 2975 D 0 No Deposit NULL
## 2976 D 0 No Deposit NULL
## 2977 D 0 No Deposit NULL
## 2978 H 1 No Deposit NULL
## 2979 A 0 No Deposit 270
## 2980 C 1 No Deposit 281
## 2981 D 2 No Deposit NULL
## 2982 D 0 No Deposit 47
## 2983 A 1 No Deposit NULL
## 2984 A 3 No Deposit 281
## 2985 A 3 No Deposit 281
## 2986 E 0 No Deposit NULL
## 2987 E 0 No Deposit NULL
## 2988 D 0 No Deposit NULL
## 2989 A 4 No Deposit 281
## 2990 D 0 No Deposit NULL
## 2991 D 0 No Deposit NULL
## 2992 D 0 No Deposit NULL
## 2993 A 0 No Deposit NULL
## 2994 A 0 No Deposit NULL
## 2995 A 0 No Deposit NULL
## 2996 A 0 No Deposit NULL
## 2997 A 0 No Deposit NULL
## 2998 D 2 No Deposit NULL
## 2999 E 0 No Deposit NULL
## 3000 D 1 No Deposit NULL
## 3001 A 0 No Deposit NULL
## 3002 A 0 No Deposit NULL
## 3003 C 4 No Deposit 324
## 3004 A 0 No Deposit NULL
## 3005 A 1 No Deposit 281
## 3006 A 0 No Deposit NULL
## 3007 A 0 No Deposit NULL
## 3008 C 0 No Deposit NULL
## 3009 D 0 No Deposit NULL
## 3010 D 1 No Deposit NULL
## 3011 A 0 No Deposit NULL
## 3012 A 0 No Deposit NULL
## 3013 E 1 No Deposit NULL
## 3014 D 0 No Deposit NULL
## 3015 C 3 No Deposit NULL
## 3016 A 2 No Deposit 281
## 3017 A 0 No Deposit NULL
## 3018 A 0 No Deposit NULL
## 3019 A 0 No Deposit NULL
## 3020 D 0 No Deposit NULL
## 3021 A 1 No Deposit 281
## 3022 C 4 No Deposit 324
## 3023 D 1 No Deposit NULL
## 3024 A 0 No Deposit NULL
## 3025 A 0 No Deposit NULL
## 3026 A 0 No Deposit NULL
## 3027 D 0 No Deposit NULL
## 3028 A 0 No Deposit NULL
## 3029 D 0 No Deposit NULL
## 3030 A 0 No Deposit NULL
## 3031 D 0 No Deposit NULL
## 3032 A 0 No Deposit NULL
## 3033 A 3 No Deposit 324
## 3034 A 0 No Deposit NULL
## 3035 D 0 No Deposit NULL
## 3036 A 0 No Deposit NULL
## 3037 A 0 No Deposit NULL
## 3038 C 3 No Deposit 324
## 3039 A 0 No Deposit NULL
## 3040 A 0 No Deposit NULL
## 3041 A 0 No Deposit NULL
## 3042 A 0 No Deposit NULL
## 3043 A 0 No Deposit NULL
## 3044 E 1 No Deposit 281
## 3045 E 2 No Deposit 281
## 3046 D 0 No Deposit NULL
## 3047 C 2 No Deposit 281
## 3048 A 1 No Deposit 281
## 3049 A 3 No Deposit 281
## 3050 E 0 No Deposit 281
## 3051 A 1 No Deposit 324
## 3052 E 4 No Deposit 281
## 3053 A 0 No Deposit NULL
## 3054 A 0 No Deposit NULL
## 3055 A 0 No Deposit NULL
## 3056 D 0 No Deposit NULL
## 3057 D 0 No Deposit NULL
## 3058 A 1 No Deposit 281
## 3059 C 1 No Deposit 281
## 3060 G 1 No Deposit NULL
## 3061 D 0 No Deposit NULL
## 3062 D 2 No Deposit 281
## 3063 C 2 No Deposit 281
## 3064 E 0 No Deposit NULL
## 3065 A 1 No Deposit 281
## 3066 E 1 No Deposit 281
## 3067 E 1 No Deposit 281
## 3068 A 1 No Deposit 281
## 3069 F 4 No Deposit 324
## 3070 I 1 No Deposit NULL
## 3071 I 0 No Deposit NULL
## 3072 D 0 No Deposit 281
## 3073 F 0 No Deposit NULL
## 3074 A 0 No Deposit NULL
## 3075 F 0 No Deposit NULL
## 3076 D 0 No Deposit NULL
## 3077 A 0 No Deposit NULL
## 3078 E 0 No Deposit NULL
## 3079 E 0 No Deposit 281
## 3080 A 0 No Deposit NULL
## 3081 D 0 No Deposit NULL
## 3082 F 0 No Deposit NULL
## 3083 E 0 No Deposit NULL
## 3084 E 0 No Deposit NULL
## 3085 D 0 No Deposit NULL
## 3086 E 0 No Deposit NULL
## 3087 A 1 No Deposit NULL
## 3088 D 0 No Deposit NULL
## 3089 A 0 No Deposit NULL
## 3090 A 0 No Deposit NULL
## 3091 A 0 No Deposit NULL
## 3092 A 0 No Deposit NULL
## 3093 A 0 No Deposit NULL
## 3094 A 1 No Deposit NULL
## 3095 A 1 No Deposit NULL
## 3096 A 0 No Deposit NULL
## 3097 A 0 No Deposit NULL
## 3098 D 0 No Deposit NULL
## 3099 A 0 No Deposit NULL
## 3100 A 0 No Deposit NULL
## 3101 E 0 No Deposit NULL
## 3102 A 0 No Deposit NULL
## 3103 A 1 No Deposit NULL
## 3104 A 0 No Deposit NULL
## 3105 D 0 No Deposit NULL
## 3106 D 0 No Deposit NULL
## 3107 A 0 No Deposit NULL
## 3108 A 0 No Deposit NULL
## 3109 A 0 No Deposit NULL
## 3110 A 0 No Deposit NULL
## 3111 A 0 No Deposit NULL
## 3112 A 0 No Deposit NULL
## 3113 A 0 No Deposit NULL
## 3114 A 0 No Deposit NULL
## 3115 A 0 No Deposit NULL
## 3116 A 0 No Deposit NULL
## 3117 A 0 No Deposit NULL
## 3118 A 0 No Deposit NULL
## 3119 A 1 No Deposit NULL
## 3120 A 0 No Deposit NULL
## 3121 A 0 No Deposit NULL
## 3122 A 0 No Deposit NULL
## 3123 A 0 No Deposit NULL
## 3124 A 0 No Deposit NULL
## 3125 A 0 No Deposit NULL
## 3126 A 0 No Deposit NULL
## 3127 A 0 No Deposit NULL
## 3128 A 0 No Deposit NULL
## 3129 A 0 No Deposit NULL
## 3130 A 0 No Deposit NULL
## 3131 A 0 No Deposit NULL
## 3132 A 0 No Deposit NULL
## 3133 A 0 No Deposit NULL
## 3134 A 0 No Deposit NULL
## 3135 C 0 No Deposit NULL
## 3136 A 0 No Deposit NULL
## 3137 A 0 No Deposit NULL
## 3138 E 1 No Deposit NULL
## 3139 G 0 No Deposit NULL
## 3140 E 0 No Deposit NULL
## 3141 A 0 No Deposit NULL
## 3142 E 0 No Deposit NULL
## 3143 E 0 No Deposit NULL
## 3144 C 0 No Deposit NULL
## 3145 C 0 No Deposit NULL
## 3146 A 0 No Deposit NULL
## 3147 A 0 No Deposit NULL
## 3148 A 0 No Deposit NULL
## 3149 A 0 No Deposit NULL
## 3150 A 0 No Deposit NULL
## 3151 A 0 No Deposit NULL
## 3152 A 1 No Deposit NULL
## 3153 D 0 No Deposit NULL
## 3154 A 0 No Deposit NULL
## 3155 A 0 No Deposit NULL
## 3156 C 0 No Deposit NULL
## 3157 A 0 No Deposit NULL
## 3158 A 0 No Deposit NULL
## 3159 A 1 No Deposit NULL
## 3160 A 0 No Deposit NULL
## 3161 A 0 No Deposit NULL
## 3162 C 0 No Deposit NULL
## 3163 C 0 No Deposit NULL
## 3164 A 0 No Deposit NULL
## 3165 E 1 No Deposit NULL
## 3166 A 0 No Deposit NULL
## 3167 C 0 No Deposit NULL
## 3168 A 0 No Deposit NULL
## 3169 A 0 No Deposit NULL
## 3170 A 0 No Deposit NULL
## 3171 A 0 No Deposit NULL
## 3172 D 1 No Deposit NULL
## 3173 C 0 No Deposit NULL
## 3174 C 0 No Deposit NULL
## 3175 A 0 No Deposit NULL
## 3176 A 0 No Deposit NULL
## 3177 A 0 No Deposit NULL
## 3178 A 0 No Deposit NULL
## 3179 A 0 No Deposit NULL
## 3180 A 0 No Deposit NULL
## 3181 A 0 No Deposit NULL
## 3182 C 0 No Deposit NULL
## 3183 A 1 No Deposit NULL
## 3184 E 0 No Deposit 342
## 3185 A 0 No Deposit 342
## 3186 C 1 No Deposit 342
## 3187 D 0 No Deposit 342
## 3188 A 0 No Deposit 342
## 3189 D 0 No Deposit 342
## 3190 E 0 No Deposit 342
## 3191 D 0 No Deposit 342
## 3192 D 0 No Deposit 342
## 3193 D 0 No Deposit 342
## 3194 G 1 No Deposit 342
## 3195 E 0 No Deposit 342
## 3196 A 0 No Deposit 342
## 3197 H 2 No Deposit 342
## 3198 D 0 No Deposit 342
## 3199 E 0 No Deposit 342
## 3200 D 0 No Deposit 342
## 3201 D 0 No Deposit 342
## 3202 D 0 No Deposit 342
## 3203 E 0 No Deposit 342
## 3204 E 0 No Deposit 342
## 3205 E 0 No Deposit 342
## 3206 E 1 No Deposit NULL
## 3207 H 3 No Deposit 342
## 3208 F 0 No Deposit NULL
## 3209 E 3 No Deposit NULL
## 3210 D 0 No Deposit 342
## 3211 D 0 No Deposit 342
## 3212 E 0 No Deposit 342
## 3213 A 0 No Deposit 342
## 3214 F 1 No Deposit 342
## 3215 D 0 No Deposit 342
## 3216 D 0 No Deposit 342
## 3217 D 0 No Deposit 342
## 3218 G 1 No Deposit 342
## 3219 D 0 No Deposit 342
## 3220 D 0 No Deposit 342
## 3221 D 0 No Deposit 342
## 3222 G 1 No Deposit NULL
## 3223 H 2 No Deposit 342
## 3224 G 3 No Deposit 342
## 3225 E 0 No Deposit 342
## days_in_waiting_list customer_type adr required_car_parking_spaces
## 1 0 Transient 0.00 0
## 2 0 Transient 0.00 0
## 3 0 Transient 75.00 0
## 4 0 Transient 75.00 0
## 5 0 Transient 98.00 0
## 6 0 Transient 98.00 0
## 7 0 Transient 107.00 0
## 8 0 Transient 103.00 0
## 9 0 Transient 82.00 0
## 10 0 Transient 105.50 0
## 11 0 Transient 123.00 0
## 12 0 Transient 145.00 0
## 13 0 Transient 97.00 0
## 14 0 Transient 154.77 0
## 15 0 Transient 94.71 0
## 16 0 Transient 97.00 0
## 17 0 Contract 97.50 0
## 18 0 Transient 88.20 0
## 19 0 Transient 107.42 0
## 20 0 Transient 153.00 0
## 21 0 Transient 97.29 0
## 22 0 Transient 84.67 0
## 23 0 Transient 84.67 0
## 24 0 Transient 99.67 0
## 25 0 Contract 94.95 0
## 26 0 Transient 63.60 1
## 27 0 Contract 79.50 0
## 28 0 Transient 107.00 0
## 29 0 Transient 94.00 0
## 30 0 Transient 87.30 1
## 31 0 Transient 62.00 0
## 32 0 Transient 63.86 0
## 33 0 Transient 108.30 0
## 34 0 Transient 65.50 0
## 35 0 Transient 108.80 0
## 36 0 Transient 108.80 0
## 37 0 Transient 98.00 0
## 38 0 Transient 108.80 0
## 39 0 Transient 108.80 0
## 40 0 Transient 137.00 0
## 41 0 Transient 117.81 0
## 42 0 Contract 79.50 0
## 43 0 Transient 123.00 0
## 44 0 Transient 137.00 0
## 45 0 Transient 110.70 0
## 46 0 Transient 153.00 0
## 47 0 Transient 58.95 0
## 48 0 Transient-Party 82.88 0
## 49 0 Contract 82.35 0
## 50 0 Transient 119.35 0
## 51 0 Transient-Party 67.58 0
## 52 0 Contract 56.01 0
## 53 0 Contract 110.70 0
## 54 0 Transient 88.20 1
## 55 0 Transient 147.00 1
## 56 0 Transient 107.00 1
## 57 0 Transient 147.00 0
## 58 0 Transient 117.90 0
## 59 0 Transient 123.00 0
## 60 0 Transient 98.00 0
## 61 0 Transient 117.81 0
## 62 0 Transient 135.00 1
## 63 0 Transient 133.00 0
## 64 0 Contract 58.95 0
## 65 0 Transient 136.33 0
## 66 0 Transient 153.00 1
## 67 0 Transient 110.50 0
## 68 0 Transient 97.00 0
## 69 0 Transient 110.30 0
## 70 0 Transient 82.00 0
## 71 0 Transient 97.00 0
## 72 0 Transient 73.80 0
## 73 0 Transient 91.50 0
## 74 0 Transient 114.50 0
## 75 0 Transient 110.30 0
## 76 0 Transient 90.90 1
## 77 0 Transient 123.00 0
## 78 0 Transient 122.00 0
## 79 0 Transient 110.70 1
## 80 0 Transient 85.86 0
## 81 0 Contract 58.95 0
## 82 0 Contract 55.68 0
## 83 0 Contract 55.68 0
## 84 0 Transient 124.00 0
## 85 0 Contract 111.15 0
## 86 0 Contract 134.73 0
## 87 0 Transient 92.45 0
## 88 0 Transient 108.73 0
## 89 0 Transient 73.80 0
## 90 0 Transient 98.00 1
## 91 0 Transient 131.00 0
## 92 0 Transient 123.00 0
## 93 0 Transient 94.71 0
## 94 0 Transient 123.00 0
## 95 0 Transient 123.00 0
## 96 0 Transient 73.80 0
## 97 0 Transient 117.00 0
## 98 0 Transient 196.54 0
## 99 0 Transient 99.30 1
## 100 0 Transient 90.95 0
## 101 0 Transient 92.67 0
## 102 0 Transient 71.55 1
## 103 0 Transient 96.49 0
## 104 0 Transient 85.80 1
## 105 0 Transient 96.30 0
## 106 0 Transient 163.00 0
## 107 0 Transient 172.00 0
## 108 0 Transient 110.70 0
## 109 0 Transient 58.95 0
## 110 0 Transient 73.80 0
## 111 0 Transient 97.00 0
## 112 0 Transient 139.00 0
## 113 0 Transient 67.24 0
## 114 0 Transient 116.50 0
## 115 0 Transient 96.30 0
## 116 0 Transient 123.00 0
## 117 0 Contract 71.55 0
## 118 0 Contract 71.55 0
## 119 0 Transient 149.00 0
## 120 0 Transient 163.00 1
## 121 0 Contract 79.50 0
## 122 0 Transient 105.00 0
## 123 0 Transient 123.00 0
## 124 0 Transient 73.80 0
## 125 0 Transient 113.00 0
## 126 0 Transient 0.00 0
## 127 0 Transient 123.00 0
## 128 0 Transient-Party 73.80 1
## 129 0 Transient 114.50 0
## 130 0 Transient-Party 73.80 0
## 131 0 Transient-Party 73.80 0
## 132 0 Transient 88.20 0
## 133 0 Transient 97.00 0
## 134 0 Transient 85.10 0
## 135 0 Transient 89.00 0
## 136 0 Transient 80.10 0
## 137 0 Transient 98.00 0
## 138 0 Transient 101.00 1
## 139 0 Transient 97.00 0
## 140 0 Transient 167.00 0
## 141 0 Transient 225.00 2
## 142 0 Transient 97.00 1
## 143 0 Transient 87.30 0
## 144 0 Transient 85.59 1
## 145 0 Transient 123.00 0
## 146 0 Transient 107.00 0
## 147 0 Transient 163.00 0
## 148 0 Transient 82.00 0
## 149 0 Transient 163.00 0
## 150 0 Transient 105.50 0
## 151 0 Transient 164.20 1
## 152 0 Transient 97.29 0
## 153 0 Transient 114.00 0
## 154 0 Transient 98.40 0
## 155 0 Transient 175.00 1
## 156 0 Transient 63.60 1
## 157 0 Transient 124.45 1
## 158 0 Contract 110.70 0
## 159 0 Contract 74.07 0
## 160 0 Contract 134.10 0
## 161 0 Transient 167.00 0
## 162 0 Transient 123.00 0
## 163 0 Transient 117.81 1
## 164 0 Transient 171.32 0
## 165 0 Transient 210.00 1
## 166 0 Transient 97.00 0
## 167 0 Transient 117.81 0
## 168 0 Transient 0.00 0
## 169 0 Transient 0.00 0
## 170 0 Transient 131.00 0
## 171 0 Transient 98.00 0
## 172 0 Transient 87.30 1
## 173 0 Transient 97.00 0
## 174 0 Transient 167.00 0
## 175 0 Transient 91.50 0
## 176 0 Transient 73.80 0
## 177 0 Transient 123.00 0
## 178 0 Transient 175.00 1
## 179 0 Transient 117.80 1
## 180 0 Transient 117.63 0
## 181 0 Transient 185.00 0
## 182 0 Transient 71.00 0
## 183 0 Contract 47.25 0
## 184 0 Transient 151.00 0
## 185 0 Transient 87.30 0
## 186 0 Transient 120.60 0
## 187 0 Transient 63.86 0
## 188 0 Transient 157.10 0
## 189 0 Contract 91.37 0
## 190 0 Transient 73.00 0
## 191 0 Contract 110.70 0
## 192 0 Contract 93.60 0
## 193 0 Transient 83.50 0
## 194 0 Transient 73.80 0
## 195 0 Transient 82.00 1
## 196 0 Transient 185.50 0
## 197 0 Transient 0.00 0
## 198 0 Transient 0.00 0
## 199 0 Transient 109.80 0
## 200 0 Transient 195.00 1
## 201 0 Transient 109.80 0
## 202 0 Transient 193.00 0
## 203 0 Transient 97.00 0
## 204 0 Transient 150.00 0
## 205 0 Transient 98.00 0
## 206 0 Transient 91.50 0
## 207 0 Transient 139.00 0
## 208 0 Transient 79.50 0
## 209 0 Contract 47.25 0
## 210 0 Contract 126.65 0
## 211 0 Transient 107.00 0
## 212 0 Transient 131.00 1
## 213 0 Transient 131.00 1
## 214 0 Transient 123.00 0
## 215 0 Transient 146.00 0
## 216 0 Transient 110.70 0
## 217 0 Transient 73.80 0
## 218 0 Transient 61.00 0
## 219 0 Transient 104.72 0
## 220 0 Transient 104.72 0
## 221 0 Transient 104.72 1
## 222 0 Transient 66.42 0
## 223 0 Transient 77.96 1
## 224 0 Contract 112.00 0
## 225 0 Transient 107.00 0
## 226 0 Contract 89.68 0
## 227 0 Transient 155.00 0
## 228 0 Transient 112.00 0
## 229 0 Transient-Party 130.10 0
## 230 0 Transient-Party 100.10 0
## 231 0 Transient 123.00 0
## 232 0 Transient 124.00 1
## 233 0 Transient 146.00 1
## 234 0 Transient 97.00 0
## 235 0 Transient 123.00 0
## 236 0 Transient 153.00 0
## 237 0 Transient 82.00 0
## 238 0 Transient 105.08 0
## 239 0 Transient 65.42 0
## 240 0 Transient 98.00 0
## 241 0 Transient 75.46 1
## 242 0 Transient 65.50 0
## 243 0 Transient 90.95 0
## 244 0 Contract 93.60 0
## 245 0 Contract 119.25 0
## 246 0 Contract 134.73 0
## 247 0 Transient 112.00 0
## 248 0 Transient 118.13 0
## 249 0 Transient 131.00 0
## 250 0 Transient 88.20 0
## 251 0 Transient 73.80 0
## 252 0 Transient 98.00 0
## 253 0 Transient 110.50 0
## 254 0 Transient 131.00 0
## 255 0 Transient 185.00 1
## 256 0 Transient 87.30 0
## 257 0 Transient 73.80 0
## 258 0 Transient 120.00 0
## 259 0 Transient 98.00 0
## 260 0 Transient 96.30 0
## 261 0 Transient-Party 197.00 0
## 262 0 Transient-Party 197.00 0
## 263 0 Transient 123.00 0
## 264 0 Transient 82.00 0
## 265 0 Transient 165.00 1
## 266 0 Transient 149.40 0
## 267 0 Transient 106.84 1
## 268 0 Transient 161.00 1
## 269 0 Transient 134.43 0
## 270 0 Transient 144.43 1
## 271 0 Transient 152.00 0
## 272 0 Transient 125.54 0
## 273 0 Transient 133.83 0
## 274 0 Transient 159.75 1
## 275 0 Transient 120.60 0
## 276 0 Transient 112.20 0
## 277 0 Transient 110.60 0
## 278 0 Transient 105.90 0
## 279 0 Transient 95.27 0
## 280 0 Transient 108.83 0
## 281 0 Transient 153.96 0
## 282 0 Transient 120.60 0
## 283 0 Transient 90.67 0
## 284 0 Transient 126.67 0
## 285 0 Transient 144.40 0
## 286 0 Transient 99.50 1
## 287 0 Transient 139.40 0
## 288 0 Transient 73.80 0
## 289 0 Transient 89.97 0
## 290 0 Transient 123.00 0
## 291 0 Transient 123.00 0
## 292 0 Transient 123.00 0
## 293 0 Transient 144.90 0
## 294 0 Transient 153.00 0
## 295 0 Transient 131.00 0
## 296 0 Transient 100.00 1
## 297 0 Transient 65.50 0
## 298 0 Transient 123.00 0
## 299 0 Transient 123.00 0
## 300 0 Transient 131.00 0
## 301 0 Transient 104.68 1
## 302 0 Transient 166.00 0
## 303 0 Transient 111.25 0
## 304 0 Transient 213.75 0
## 305 0 Transient 178.00 1
## 306 0 Transient 113.90 0
## 307 0 Transient 129.29 1
## 308 0 Transient 153.00 1
## 309 0 Transient 98.00 1
## 310 0 Transient 169.00 1
## 311 0 Transient 93.00 0
## 312 0 Transient 132.29 0
## 313 0 Transient 123.00 0
## 314 0 Transient-Party 117.22 0
## 315 0 Transient 149.00 0
## 316 0 Transient 164.57 0
## 317 0 Contract 107.00 0
## 318 0 Transient-Party 117.22 1
## 319 0 Contract 119.25 0
## 320 0 Transient 123.00 0
## 321 0 Transient 105.71 0
## 322 0 Transient 123.00 0
## 323 0 Transient 144.43 1
## 324 0 Transient 126.00 0
## 325 0 Transient 148.30 1
## 326 0 Transient 125.22 0
## 327 0 Transient 123.00 0
## 328 0 Contract 130.00 1
## 329 0 Contract 133.16 0
## 330 0 Transient 78.84 0
## 331 0 Transient 80.10 0
## 332 0 Transient 193.00 0
## 333 0 Transient 88.20 0
## 334 0 Transient 90.71 0
## 335 0 Transient 114.50 0
## 336 0 Transient 120.20 0
## 337 0 Contract 79.50 0
## 338 0 Transient 117.90 0
## 339 0 Transient 128.00 0
## 340 0 Transient 90.95 0
## 341 0 Transient 107.00 0
## 342 0 Transient 130.05 1
## 343 0 Contract 123.00 0
## 344 0 Transient 103.80 0
## 345 0 Transient 196.00 0
## 346 0 Transient 149.40 1
## 347 0 Transient 175.71 0
## 348 0 Transient-Party 119.70 0
## 349 0 Transient 100.86 0
## 350 0 Transient 100.86 0
## 351 0 Transient-Party 82.00 0
## 352 0 Transient 73.80 0
## 353 0 Transient 117.90 1
## 354 0 Transient-Party 82.00 0
## 355 0 Transient 150.00 0
## 356 0 Transient 161.00 1
## 357 0 Transient 64.00 0
## 358 0 Transient 123.00 0
## 359 0 Transient 110.00 1
## 360 0 Transient 88.20 1
## 361 0 Transient 130.00 1
## 362 0 Transient 88.20 0
## 363 0 Transient 165.00 1
## 364 0 Transient 114.00 0
## 365 0 Transient 79.50 0
## 366 0 Transient 132.80 0
## 367 0 Transient 120.00 0
## 368 0 Contract 79.50 0
## 369 0 Transient 120.00 0
## 370 0 Transient 144.20 0
## 371 0 Transient 107.20 0
## 372 0 Transient 120.00 0
## 373 0 Transient 120.00 0
## 374 0 Transient 163.80 0
## 375 0 Transient 98.50 0
## 376 0 Transient 130.50 0
## 377 0 Transient 153.00 0
## 378 0 Transient 98.50 0
## 379 0 Transient-Party 119.70 0
## 380 0 Transient 184.60 0
## 381 0 Transient 181.22 0
## 382 0 Transient 100.86 0
## 383 0 Transient 100.20 1
## 384 0 Transient 134.25 1
## 385 0 Contract 96.30 0
## 386 0 Transient 83.09 0
## 387 0 Transient 105.50 0
## 388 0 Transient 134.00 0
## 389 0 Transient 8.00 0
## 390 0 Transient 146.00 1
## 391 0 Transient 126.00 0
## 392 0 Transient 111.15 0
## 393 0 Transient 136.20 0
## 394 0 Transient 101.80 0
## 395 0 Transient-Party 127.00 0
## 396 0 Transient-Party 161.50 0
## 397 0 Transient 230.67 1
## 398 0 Transient 65.70 0
## 399 0 Transient 180.00 1
## 400 0 Transient 168.57 0
## 401 0 Transient 107.67 0
## 402 0 Transient 96.90 0
## 403 0 Transient 107.00 0
## 404 0 Transient 73.41 0
## 405 0 Transient 109.90 0
## 406 0 Transient 109.90 0
## 407 0 Transient 187.50 1
## 408 0 Transient 134.00 0
## 409 0 Transient 91.50 0
## 410 0 Transient 132.44 0
## 411 0 Transient 106.90 0
## 412 0 Transient 131.86 0
## 413 0 Transient 216.13 1
## 414 0 Transient-Party 107.00 0
## 415 0 Transient-Party 107.00 0
## 416 0 Transient-Party 107.00 0
## 417 0 Transient-Party 107.00 0
## 418 0 Transient 107.00 0
## 419 0 Transient 190.33 0
## 420 0 Transient 107.00 0
## 421 0 Transient-Party 94.00 0
## 422 0 Transient-Party 0.00 0
## 423 0 Transient-Party 98.75 0
## 424 0 Transient-Party 148.23 0
## 425 0 Transient-Party 94.00 0
## 426 0 Transient 107.00 0
## 427 0 Transient 107.00 0
## 428 0 Transient-Party 148.23 0
## 429 0 Transient-Party 0.00 0
## 430 0 Transient-Party 107.00 0
## 431 0 Transient 107.00 0
## 432 0 Transient 107.00 0
## 433 0 Transient-Party 107.00 0
## 434 0 Transient-Party 98.75 0
## 435 0 Transient 195.00 0
## 436 0 Transient 120.60 0
## 437 0 Transient 123.20 0
## 438 0 Transient 112.00 0
## 439 0 Transient 123.20 0
## 440 0 Transient 169.00 1
## 441 0 Transient 198.00 1
## 442 0 Transient 103.50 0
## 443 0 Transient 135.60 0
## 444 0 Transient 103.50 0
## 445 0 Transient 184.00 1
## 446 0 Transient 134.00 0
## 447 0 Transient 147.00 0
## 448 0 Transient 151.33 0
## 449 0 Transient 121.33 0
## 450 0 Transient-Party 150.20 0
## 451 0 Transient 139.00 0
## 452 0 Transient-Party 150.20 0
## 453 0 Transient 75.44 0
## 454 0 Transient 135.00 0
## 455 0 Transient 166.00 0
## 456 0 Transient 135.00 0
## 457 0 Contract 130.00 0
## 458 0 Transient 96.30 0
## 459 0 Transient 160.00 0
## 460 0 Transient 0.00 0
## 461 0 Transient 127.25 0
## 462 0 Transient 164.00 0
## 463 0 Transient 144.50 0
## 464 0 Transient 112.00 0
## 465 0 Transient 134.00 0
## 466 0 Transient 127.25 0
## 467 0 Transient 155.50 1
## 468 0 Transient 110.50 0
## 469 0 Transient 144.50 0
## 470 0 Transient 144.50 0
## 471 0 Transient 123.00 0
## 472 0 Transient 120.60 0
## 473 0 Transient 107.60 0
## 474 0 Transient 120.60 0
## 475 0 Transient-Party 107.00 0
## 476 0 Transient-Party 133.75 1
## 477 0 Transient 103.50 0
## 478 0 Transient-Party 84.80 0
## 479 0 Transient-Party 107.00 0
## 480 0 Transient-Party 107.00 1
## 481 0 Transient-Party 84.80 0
## 482 0 Transient-Party 107.00 1
## 483 0 Transient 195.00 0
## 484 0 Transient 164.00 0
## 485 0 Transient 195.00 0
## 486 0 Transient 125.00 0
## 487 0 Transient 195.00 0
## 488 0 Transient 132.30 0
## 489 0 Transient 145.00 0
## 490 0 Transient 92.00 0
## 491 0 Transient 132.30 0
## 492 0 Transient 147.00 0
## 493 0 Transient 167.00 1
## 494 0 Transient 210.00 0
## 495 0 Transient 194.90 0
## 496 0 Transient 103.50 1
## 497 0 Transient 118.50 0
## 498 0 Transient 192.00 0
## 499 0 Contract 128.27 0
## 500 0 Transient 135.00 0
## 501 0 Transient 126.30 0
## 502 0 Transient 154.00 0
## 503 0 Transient 96.30 0
## 504 0 Transient 126.30 0
## 505 0 Transient 136.00 0
## 506 0 Transient 118.50 0
## 507 0 Transient 116.33 1
## 508 0 Transient 164.00 0
## 509 0 Transient 147.67 0
## 510 0 Transient 145.00 0
## 511 0 Transient 147.00 1
## 512 0 Transient 168.30 0
## 513 0 Transient 167.00 0
## 514 0 Transient 137.75 1
## 515 0 Transient 145.00 0
## 516 0 Transient 132.60 1
## 517 0 Transient 147.00 0
## 518 0 Transient 157.00 0
## 519 0 Transient 210.00 0
## 520 0 Contract 132.50 0
## 521 0 Transient 98.02 0
## 522 0 Transient 126.00 0
## 523 0 Transient 173.00 0
## 524 0 Transient 249.00 0
## 525 0 Transient 186.50 0
## 526 0 Transient 95.00 0
## 527 0 Transient 241.50 0
## 528 0 Transient 177.00 1
## 529 0 Transient 153.73 1
## 530 0 Transient 115.00 0
## 531 0 Transient 127.03 0
## 532 0 Transient 128.25 0
## 533 0 Transient 128.25 0
## 534 0 Transient 115.00 0
## 535 0 Transient 135.00 0
## 536 0 Transient 167.00 0
## 537 0 Transient 135.00 0
## 538 0 Transient 124.50 0
## 539 0 Transient 98.00 0
## 540 0 Group 98.00 1
## 541 0 Transient 135.00 0
## 542 0 Group 88.20 0
## 543 0 Transient 120.60 1
## 544 0 Transient 154.50 1
## 545 0 Transient 145.00 0
## 546 0 Transient 92.00 0
## 547 0 Transient 154.00 0
## 548 0 Transient 115.00 0
## 549 0 Transient 110.53 0
## 550 0 Transient 158.50 0
## 551 0 Transient 131.37 0
## 552 0 Transient 117.71 0
## 553 0 Contract 123.00 0
## 554 0 Transient 158.50 0
## 555 0 Transient 117.84 0
## 556 0 Transient 154.00 0
## 557 0 Transient 116.85 0
## 558 0 Transient 129.16 0
## 559 0 Transient 214.00 0
## 560 0 Transient 115.00 0
## 561 0 Contract 123.00 0
## 562 0 Transient 123.00 0
## 563 0 Transient 195.00 0
## 564 0 Contract 135.20 0
## 565 0 Transient 123.00 0
## 566 0 Transient 130.50 0
## 567 0 Transient 123.00 0
## 568 0 Transient 179.10 0
## 569 0 Transient 0.00 0
## 570 0 Transient 0.00 0
## 571 0 Transient 115.00 0
## 572 0 Transient 115.00 0
## 573 0 Transient 103.50 1
## 574 0 Transient 157.00 1
## 575 0 Transient 135.00 0
## 576 0 Transient 111.65 0
## 577 0 Transient 135.00 0
## 578 0 Transient 195.00 0
## 579 0 Transient 104.00 0
## 580 0 Transient 135.00 0
## 581 0 Transient 214.00 0
## 582 0 Transient 133.17 0
## 583 0 Transient 141.33 0
## 584 0 Transient 121.01 0
## 585 0 Transient 240.64 0
## 586 0 Transient 167.50 0
## 587 0 Transient 152.43 0
## 588 0 Transient 148.34 0
## 589 0 Transient 167.00 0
## 590 0 Transient 172.93 0
## 591 0 Transient 179.10 0
## 592 0 Transient 192.50 0
## 593 0 Transient 92.00 0
## 594 0 Transient 111.20 0
## 595 0 Transient 141.60 0
## 596 0 Transient 141.60 0
## 597 0 Transient 141.60 0
## 598 0 Transient 200.00 0
## 599 0 Transient 200.00 0
## 600 0 Transient 157.00 0
## 601 0 Transient 99.50 0
## 602 0 Transient 115.00 0
## 603 0 Transient 195.00 0
## 604 0 Transient 103.50 0
## 605 0 Transient 207.00 1
## 606 0 Transient 163.33 1
## 607 0 Transient 151.86 0
## 608 0 Transient 95.57 0
## 609 0 Transient 112.05 0
## 610 0 Transient 160.00 0
## 611 0 Transient 103.18 0
## 612 0 Transient 153.00 1
## 613 0 Transient 119.75 0
## 614 0 Transient 135.00 0
## 615 0 Transient 167.69 0
## 616 0 Transient 195.00 0
## 617 0 Transient 135.00 0
## 618 0 Transient 178.40 0
## 619 0 Transient 0.00 0
## 620 0 Transient 0.00 0
## 621 0 Transient 154.00 1
## 622 0 Transient 134.00 0
## 623 0 Transient 112.00 0
## 624 0 Transient-Party 194.00 1
## 625 0 Transient 153.00 0
## 626 0 Transient 135.00 0
## 627 0 Transient 184.00 0
## 628 0 Transient 210.00 0
## 629 0 Transient 139.00 0
## 630 0 Transient 101.46 1
## 631 0 Transient 145.00 0
## 632 0 Transient 173.00 0
## 633 0 Transient 217.05 1
## 634 0 Transient-Party 164.00 0
## 635 0 Transient-Party 173.00 0
## 636 0 Transient 112.50 0
## 637 0 Transient-Party 153.00 0
## 638 0 Transient-Party 173.00 0
## 639 0 Transient-Party 153.00 0
## 640 0 Transient 134.00 0
## 641 0 Transient-Party 153.00 0
## 642 0 Transient 233.00 0
## 643 0 Transient 154.00 0
## 644 0 Transient-Party 173.00 0
## 645 0 Transient 135.00 0
## 646 0 Transient 132.50 0
## 647 0 Transient 222.67 0
## 648 0 Transient 135.00 0
## 649 0 Transient 107.00 0
## 650 0 Transient 127.00 0
## 651 0 Transient 135.00 0
## 652 0 Transient 149.70 1
## 653 0 Transient 161.25 0
## 654 0 Transient 107.00 0
## 655 0 Transient-Party 75.44 0
## 656 0 Transient-Party 75.44 0
## 657 0 Transient 115.00 0
## 658 0 Transient 159.20 0
## 659 0 Transient 163.29 0
## 660 0 Transient 210.00 0
## 661 0 Transient 154.00 0
## 662 0 Transient 166.00 0
## 663 0 Transient 132.50 0
## 664 0 Transient 107.00 0
## 665 0 Contract 121.98 0
## 666 0 Transient 0.00 0
## 667 0 Transient 133.00 0
## 668 0 Transient 107.00 0
## 669 0 Transient 117.81 0
## 670 0 Transient 107.00 0
## 671 0 Transient 120.60 0
## 672 0 Transient 147.00 0
## 673 0 Transient 153.00 0
## 674 0 Transient 153.00 0
## 675 0 Transient 134.00 0
## 676 0 Transient 153.00 0
## 677 0 Transient 118.00 0
## 678 0 Transient 134.00 0
## 679 0 Transient 135.00 0
## 680 0 Transient 158.77 0
## 681 0 Transient 134.00 1
## 682 0 Transient 134.00 0
## 683 0 Transient 142.03 0
## 684 0 Transient 240.00 0
## 685 0 Transient 134.00 0
## 686 0 Transient 134.00 0
## 687 0 Transient 147.00 0
## 688 0 Transient 176.00 1
## 689 0 Transient 120.60 0
## 690 0 Transient 166.00 0
## 691 0 Transient 134.00 0
## 692 0 Transient 147.00 0
## 693 0 Transient 167.00 0
## 694 0 Transient 107.20 1
## 695 0 Transient 131.63 0
## 696 0 Transient 233.05 1
## 697 0 Transient 90.12 0
## 698 0 Transient 120.60 0
## 699 0 Transient 125.00 0
## 700 0 Transient 154.00 0
## 701 0 Transient 120.60 0
## 702 0 Contract 114.25 0
## 703 0 Contract 107.00 0
## 704 0 Transient 88.55 0
## 705 0 Transient 149.00 0
## 706 0 Transient 195.00 1
## 707 0 Transient 164.00 0
## 708 0 Transient 154.00 0
## 709 0 Transient 120.60 0
## 710 0 Transient 103.50 0
## 711 0 Transient-Party 115.00 0
## 712 0 Transient 95.02 0
## 713 0 Transient 132.50 0
## 714 0 Transient 209.00 0
## 715 0 Transient 95.02 0
## 716 0 Transient 132.50 0
## 717 0 Transient 180.00 0
## 718 0 Transient 103.18 0
## 719 0 Transient 174.01 0
## 720 0 Transient 133.00 0
## 721 0 Transient 133.00 0
## 722 0 Transient 107.20 0
## 723 0 Transient 0.00 0
## 724 0 Transient 210.00 0
## 725 0 Transient 145.00 1
## 726 0 Transient 195.00 0
## 727 0 Transient 124.20 0
## 728 0 Transient 167.00 0
## 729 0 Transient 145.00 1
## 730 0 Transient 166.00 0
## 731 0 Transient 115.00 0
## 732 0 Transient 166.00 1
## 733 0 Transient 120.60 0
## 734 0 Transient 162.00 0
## 735 0 Transient 153.00 0
## 736 0 Transient 133.20 0
## 737 0 Transient 134.00 0
## 738 0 Transient 107.00 1
## 739 0 Transient 145.00 0
## 740 0 Transient 145.00 0
## 741 0 Transient 107.00 0
## 742 0 Transient 167.20 0
## 743 0 Transient 134.00 0
## 744 0 Transient 130.00 0
## 745 0 Transient 164.00 0
## 746 0 Transient 149.00 0
## 747 0 Transient 154.00 1
## 748 0 Transient 195.00 0
## 749 0 Transient 134.00 0
## 750 0 Transient 107.20 0
## 751 0 Transient 164.00 0
## 752 0 Transient 183.45 0
## 753 0 Transient 159.60 1
## 754 0 Transient 120.60 0
## 755 0 Transient 164.00 0
## 756 0 Transient 219.43 0
## 757 0 Transient 134.00 0
## 758 0 Transient 164.00 0
## 759 0 Transient 107.20 0
## 760 0 Transient 102.72 0
## 761 0 Transient 114.85 0
## 762 0 Transient 114.85 0
## 763 0 Transient 135.00 1
## 764 0 Transient 195.00 0
## 765 0 Transient 173.00 0
## 766 0 Transient 107.00 0
## 767 0 Transient 107.00 0
## 768 0 Transient 164.00 0
## 769 0 Transient 138.80 0
## 770 0 Transient 154.00 0
## 771 0 Transient 135.00 0
## 772 0 Transient 103.18 0
## 773 0 Contract 115.50 0
## 774 0 Transient 90.95 0
## 775 0 Contract 0.00 0
## 776 0 Transient 108.54 0
## 777 0 Transient 146.00 1
## 778 0 Transient 165.40 0
## 779 0 Transient 134.00 0
## 780 0 Transient 133.00 0
## 781 0 Transient 240.00 0
## 782 0 Transient 157.00 0
## 783 0 Transient 188.00 0
## 784 0 Transient 133.00 0
## 785 0 Transient 145.00 0
## 786 0 Transient 134.00 0
## 787 0 Transient 134.00 0
## 788 0 Transient 186.00 0
## 789 0 Transient 90.95 0
## 790 0 Transient 141.65 0
## 791 0 Transient 99.24 0
## 792 0 Transient 108.06 0
## 793 0 Transient 90.95 0
## 794 0 Transient 148.63 0
## 795 0 Transient 173.00 0
## 796 0 Transient 107.00 0
## 797 0 Transient 114.00 0
## 798 0 Transient 153.00 0
## 799 0 Transient 153.00 0
## 800 0 Transient 250.33 0
## 801 0 Transient 146.67 0
## 802 0 Transient 154.00 0
## 803 0 Transient 120.60 0
## 804 0 Transient 280.74 1
## 805 0 Transient 193.00 0
## 806 0 Transient 146.67 0
## 807 0 Transient 154.00 0
## 808 0 Transient 154.50 0
## 809 0 Transient 120.60 0
## 810 0 Transient 137.80 0
## 811 0 Transient 160.00 1
## 812 0 Transient-Party 125.89 0
## 813 0 Transient-Party 125.89 0
## 814 0 Transient 126.71 0
## 815 0 Contract 0.00 0
## 816 0 Transient 0.00 1
## 817 0 Transient 188.00 0
## 818 0 Transient 153.00 0
## 819 0 Transient 173.00 0
## 820 0 Transient 173.00 0
## 821 0 Transient-Party 120.00 0
## 822 0 Transient 154.80 0
## 823 0 Transient-Party 192.00 0
## 824 0 Transient 153.00 0
## 825 0 Transient 120.60 0
## 826 0 Transient-Party 192.00 1
## 827 0 Transient 120.60 0
## 828 0 Transient 164.00 0
## 829 0 Transient 219.50 0
## 830 0 Transient 192.50 0
## 831 0 Transient 149.70 0
## 832 0 Transient 111.92 0
## 833 0 Transient 120.60 0
## 834 0 Transient 149.70 0
## 835 0 Transient 173.00 0
## 836 0 Transient 112.00 0
## 837 0 Transient 57.60 0
## 838 0 Transient 214.00 1
## 839 0 Transient 172.00 0
## 840 0 Transient 157.80 0
## 841 0 Transient 170.33 1
## 842 0 Contract 119.25 0
## 843 0 Transient 96.30 0
## 844 0 Transient-Party 118.06 0
## 845 0 Transient-Party 118.06 0
## 846 0 Transient 154.00 0
## 847 0 Transient-Party 202.00 0
## 848 0 Transient 134.00 0
## 849 0 Transient-Party 202.00 0
## 850 0 Transient-Party 252.00 0
## 851 0 Transient 233.00 0
## 852 0 Transient 211.00 0
## 853 0 Transient 211.00 0
## 854 0 Transient 237.00 0
## 855 0 Transient 188.29 0
## 856 0 Transient 120.60 0
## 857 0 Transient 177.14 0
## 858 0 Transient 222.14 0
## 859 0 Transient 127.82 0
## 860 0 Transient 194.14 0
## 861 0 Transient 120.60 0
## 862 0 Transient 144.53 0
## 863 0 Transient 185.00 1
## 864 0 Transient 96.30 0
## 865 0 Transient 193.13 0
## 866 0 Transient 210.78 0
## 867 0 Transient 169.00 0
## 868 0 Transient 174.70 0
## 869 0 Transient 135.53 0
## 870 0 Transient 172.00 0
## 871 0 Transient 144.00 0
## 872 0 Transient 162.50 0
## 873 0 Transient 209.60 0
## 874 0 Transient 209.60 0
## 875 0 Transient 195.50 1
## 876 0 Transient 186.00 1
## 877 0 Transient 163.50 0
## 878 0 Transient 180.28 0
## 879 0 Transient 174.76 1
## 880 0 Transient 116.85 0
## 881 0 Transient 159.00 0
## 882 0 Contract 104.55 0
## 883 0 Transient 0.00 0
## 884 0 Transient 144.76 0
## 885 0 Transient 205.00 0
## 886 0 Contract 123.00 0
## 887 0 Transient 173.00 0
## 888 0 Contract 220.55 0
## 889 0 Transient 162.14 0
## 890 0 Transient 119.70 0
## 891 0 Contract 77.54 0
## 892 0 Transient 120.60 0
## 893 0 Transient 153.00 0
## 894 0 Transient 0.00 0
## 895 0 Transient 0.00 0
## 896 0 Transient 172.00 0
## 897 0 Transient 221.00 0
## 898 0 Transient 153.00 0
## 899 0 Transient-Party 230.50 0
## 900 0 Transient-Party 230.50 1
## 901 0 Transient 211.00 0
## 902 0 Transient 241.00 0
## 903 0 Transient 211.00 0
## 904 0 Transient-Party 90.95 1
## 905 0 Transient 188.29 0
## 906 0 Transient-Party 90.95 0
## 907 0 Transient 187.80 0
## 908 0 Transient 0.00 0
## 909 0 Transient 0.00 0
## 910 0 Transient 172.00 0
## 911 0 Transient 171.90 0
## 912 0 Transient 200.00 0
## 913 0 Transient 149.40 0
## 914 0 Transient 154.00 0
## 915 0 Transient 148.25 1
## 916 0 Transient 172.00 0
## 917 0 Transient 183.00 0
## 918 0 Transient 242.60 0
## 919 0 Transient 172.00 0
## 920 0 Transient 168.71 0
## 921 0 Transient 166.00 0
## 922 0 Transient 112.00 0
## 923 0 Transient 172.00 0
## 924 0 Transient 120.60 0
## 925 0 Transient-Party 126.00 0
## 926 0 Transient 268.00 1
## 927 0 Transient 173.00 0
## 928 0 Transient 149.20 0
## 929 0 Transient 217.20 1
## 930 0 Transient 239.30 0
## 931 0 Transient 181.50 0
## 932 0 Transient 154.00 0
## 933 0 Transient 173.00 0
## 934 0 Transient 181.90 0
## 935 0 Transient 0.00 0
## 936 0 Transient 114.00 0
## 937 0 Transient 267.00 0
## 938 0 Transient 226.00 0
## 939 0 Transient 173.00 0
## 940 0 Transient 211.00 0
## 941 0 Transient 191.00 0
## 942 0 Transient 173.00 0
## 943 0 Transient 173.00 0
## 944 0 Transient 277.50 0
## 945 0 Transient 134.00 0
## 946 0 Transient 153.00 0
## 947 0 Transient 186.00 0
## 948 0 Transient-Party 107.20 0
## 949 0 Transient 221.00 0
## 950 0 Transient 202.00 0
## 951 0 Transient 169.00 0
## 952 0 Transient 133.50 1
## 953 0 Transient-Party 154.38 0
## 954 0 Transient-Party 154.38 0
## 955 0 Transient 205.00 0
## 956 0 Transient 121.39 1
## 957 0 Transient 171.90 1
## 958 0 Transient 164.00 0
## 959 0 Transient 134.00 0
## 960 0 Transient 250.00 0
## 961 0 Transient 208.00 1
## 962 0 Transient 181.00 0
## 963 0 Transient 172.00 0
## 964 0 Transient 157.59 0
## 965 0 Transient 211.75 1
## 966 0 Transient 246.00 0
## 967 0 Transient 108.54 0
## 968 0 Transient 186.00 0
## 969 0 Transient 205.00 0
## 970 0 Transient 154.00 0
## 971 0 Transient 200.71 0
## 972 0 Transient 252.00 1
## 973 0 Transient 135.20 0
## 974 0 Transient 276.43 1
## 975 0 Transient 228.00 0
## 976 0 Transient 133.00 1
## 977 0 Transient 205.00 0
## 978 0 Transient 134.00 0
## 979 0 Transient 119.70 0
## 980 0 Contract 90.95 0
## 981 0 Transient 138.00 0
## 982 0 Transient 134.00 0
## 983 0 Transient 173.00 0
## 984 0 Transient 165.69 1
## 985 0 Transient 195.00 0
## 986 0 Transient 127.31 0
## 987 0 Transient 134.00 0
## 988 0 Transient 207.00 0
## 989 0 Transient 211.50 0
## 990 0 Transient 210.33 1
## 991 0 Transient 211.00 0
## 992 0 Transient 154.00 0
## 993 0 Transient 145.40 0
## 994 0 Transient 101.25 0
## 995 0 Transient 179.38 0
## 996 0 Transient 166.00 0
## 997 0 Transient 202.00 0
## 998 0 Transient 172.00 0
## 999 0 Transient 277.00 1
## 1000 0 Transient 104.00 0
## 1001 0 Transient 133.00 0
## 1002 0 Transient 214.00 0
## 1003 0 Transient 130.00 0
## 1004 0 Transient 154.00 0
## 1005 0 Transient 106.40 0
## 1006 0 Transient-Party 133.00 0
## 1007 0 Transient-Party 120.00 0
## 1008 0 Transient 0.00 0
## 1009 0 Transient 254.00 1
## 1010 0 Transient 192.00 0
## 1011 0 Transient 221.00 0
## 1012 0 Transient 120.60 0
## 1013 0 Transient 211.00 0
## 1014 0 Transient 147.60 0
## 1015 0 Transient 129.00 0
## 1016 0 Transient 205.00 0
## 1017 0 Transient 147.07 0
## 1018 0 Transient 107.20 0
## 1019 0 Transient 179.10 1
## 1020 0 Transient 164.65 0
## 1021 0 Transient 200.00 0
## 1022 0 Transient 134.00 0
## 1023 0 Transient 233.00 0
## 1024 0 Transient 190.00 0
## 1025 0 Transient 196.00 0
## 1026 0 Transient 185.57 0
## 1027 0 Transient 175.00 0
## 1028 0 Transient 175.00 0
## 1029 0 Transient 169.00 0
## 1030 0 Transient 0.00 0
## 1031 0 Transient 0.00 0
## 1032 0 Transient 134.00 0
## 1033 0 Transient 211.00 0
## 1034 0 Transient 134.00 0
## 1035 0 Transient 120.60 0
## 1036 0 Transient 120.60 0
## 1037 0 Transient 112.50 0
## 1038 0 Transient 164.00 0
## 1039 0 Transient 120.60 0
## 1040 0 Transient 154.00 0
## 1041 0 Transient 207.00 0
## 1042 0 Transient 214.00 0
## 1043 0 Transient-Party 186.00 0
## 1044 0 Transient 154.00 0
## 1045 0 Transient 162.30 0
## 1046 0 Transient-Party 186.00 0
## 1047 0 Transient 241.00 0
## 1048 0 Transient 274.93 0
## 1049 0 Transient 156.73 0
## 1050 0 Transient 156.73 0
## 1051 0 Transient 134.00 0
## 1052 0 Transient 134.00 0
## 1053 0 Transient 211.00 0
## 1054 0 Transient 200.70 1
## 1055 0 Transient 142.26 0
## 1056 0 Transient 196.00 0
## 1057 0 Transient 129.41 0
## 1058 0 Transient 98.02 0
## 1059 0 Transient 120.60 0
## 1060 0 Transient-Party 191.00 0
## 1061 0 Transient 191.00 0
## 1062 0 Transient-Party 252.00 0
## 1063 0 Transient 157.08 0
## 1064 0 Transient 258.33 0
## 1065 0 Transient 211.00 0
## 1066 0 Transient 211.00 0
## 1067 0 Transient 133.21 0
## 1068 0 Transient 173.50 0
## 1069 0 Transient-Party 90.95 0
## 1070 0 Transient-Party 90.95 0
## 1071 0 Transient-Party 90.95 0
## 1072 0 Transient 134.00 0
## 1073 0 Transient 120.60 0
## 1074 0 Transient 172.00 0
## 1075 0 Transient 184.45 1
## 1076 0 Transient 158.00 1
## 1077 0 Transient 184.45 0
## 1078 0 Transient 120.60 0
## 1079 0 Transient 114.14 0
## 1080 0 Contract 168.80 0
## 1081 0 Transient 178.33 0
## 1082 0 Transient 255.00 0
## 1083 0 Transient 178.33 0
## 1084 0 Transient 196.00 0
## 1085 0 Transient 87.91 0
## 1086 0 Transient 211.00 0
## 1087 0 Transient 187.20 0
## 1088 0 Transient 154.00 0
## 1089 0 Transient 243.00 0
## 1090 0 Transient-Party 222.20 0
## 1091 0 Transient 243.00 0
## 1092 0 Transient 178.20 0
## 1093 0 Contract 107.20 0
## 1094 0 Transient 0.00 0
## 1095 0 Transient 203.00 0
## 1096 0 Transient 173.00 0
## 1097 0 Transient-Party 172.00 0
## 1098 0 Transient 120.60 0
## 1099 0 Transient-Party 172.00 0
## 1100 0 Transient 266.40 0
## 1101 0 Transient 236.00 0
## 1102 0 Transient 271.00 0
## 1103 0 Transient 232.00 0
## 1104 0 Transient 223.00 0
## 1105 0 Transient 178.67 0
## 1106 0 Transient 133.00 0
## 1107 0 Transient 195.50 0
## 1108 0 Transient 167.25 0
## 1109 0 Transient 209.00 0
## 1110 0 Transient 166.00 1
## 1111 0 Transient 195.80 1
## 1112 0 Transient-Party 229.00 0
## 1113 0 Transient 160.00 1
## 1114 0 Transient 266.00 0
## 1115 0 Transient 96.30 0
## 1116 0 Transient 107.00 0
## 1117 0 Transient 262.00 0
## 1118 0 Transient 182.50 0
## 1119 0 Transient 157.00 0
## 1120 0 Transient 234.00 1
## 1121 0 Transient 242.50 0
## 1122 0 Transient 157.00 0
## 1123 0 Transient 158.40 0
## 1124 0 Transient 208.00 0
## 1125 0 Transient 183.45 0
## 1126 0 Transient 131.20 0
## 1127 0 Transient 133.00 0
## 1128 0 Transient-Party 135.00 0
## 1129 0 Transient 133.00 0
## 1130 0 Transient-Party 248.00 0
## 1131 0 Transient 209.20 0
## 1132 0 Transient 107.00 0
## 1133 0 Transient-Party 299.33 1
## 1134 0 Transient 156.45 0
## 1135 0 Transient 135.00 0
## 1136 0 Transient 149.00 0
## 1137 0 Transient 107.00 0
## 1138 0 Transient 135.00 0
## 1139 0 Transient 135.00 0
## 1140 0 Transient 145.75 1
## 1141 0 Transient 132.60 0
## 1142 0 Transient 200.71 1
## 1143 0 Transient 198.71 0
## 1144 0 Transient 218.00 0
## 1145 0 Transient 101.65 0
## 1146 0 Transient 186.00 0
## 1147 0 Transient 160.00 0
## 1148 0 Transient 188.71 0
## 1149 0 Transient 107.00 0
## 1150 0 Transient 181.94 0
## 1151 0 Transient-Party 172.00 0
## 1152 0 Transient 172.00 0
## 1153 0 Transient 185.00 0
## 1154 0 Transient-Party 172.00 0
## 1155 0 Transient-Party 172.00 0
## 1156 0 Transient 184.45 0
## 1157 0 Group 195.00 0
## 1158 0 Transient-Party 172.00 0
## 1159 0 Transient-Party 172.00 0
## 1160 0 Transient 153.00 0
## 1161 0 Transient 184.45 0
## 1162 0 Transient 184.45 0
## 1163 0 Transient 185.00 0
## 1164 0 Transient 108.54 0
## 1165 0 Transient 154.00 0
## 1166 0 Transient 248.00 0
## 1167 0 Transient 150.53 0
## 1168 0 Transient 150.53 0
## 1169 0 Transient 154.00 0
## 1170 0 Transient 223.99 0
## 1171 0 Transient 154.00 0
## 1172 0 Transient 154.00 0
## 1173 0 Transient 154.00 0
## 1174 0 Transient 214.00 0
## 1175 0 Transient 96.30 0
## 1176 0 Transient 175.79 0
## 1177 0 Transient 134.00 0
## 1178 0 Transient 134.00 0
## 1179 0 Transient-Party 183.00 0
## 1180 0 Transient 149.40 0
## 1181 0 Transient 165.11 0
## 1182 0 Transient 209.40 0
## 1183 0 Transient-Party 134.00 0
## 1184 0 Transient 225.90 0
## 1185 0 Transient 131.10 0
## 1186 0 Transient 134.00 0
## 1187 0 Transient 187.00 0
## 1188 0 Transient 133.00 0
## 1189 0 Transient 101.65 0
## 1190 0 Transient 133.00 0
## 1191 0 Transient 120.00 0
## 1192 0 Transient-Party 133.00 0
## 1193 0 Transient 133.00 0
## 1194 0 Transient-Party 133.00 0
## 1195 0 Transient 134.00 0
## 1196 0 Transient 87.90 0
## 1197 0 Transient 202.00 0
## 1198 0 Transient 213.00 0
## 1199 0 Transient 172.55 0
## 1200 0 Transient 172.00 0
## 1201 0 Transient 172.00 0
## 1202 0 Transient 213.00 0
## 1203 0 Transient 179.00 0
## 1204 0 Transient 236.00 0
## 1205 0 Transient 229.67 0
## 1206 0 Transient 135.20 0
## 1207 0 Transient 121.50 0
## 1208 0 Transient-Party 96.30 0
## 1209 0 Transient-Party 96.30 0
## 1210 0 Transient 120.60 0
## 1211 0 Transient 176.64 0
## 1212 0 Transient 179.86 0
## 1213 0 Transient 187.00 0
## 1214 0 Transient 134.00 0
## 1215 0 Transient 239.50 0
## 1216 0 Transient 0.00 0
## 1217 0 Transient 153.00 0
## 1218 0 Transient 166.00 0
## 1219 0 Transient 186.25 0
## 1220 0 Transient 192.00 0
## 1221 0 Transient 120.60 1
## 1222 0 Transient 220.40 0
## 1223 0 Transient 241.00 0
## 1224 0 Transient 241.00 0
## 1225 0 Transient 211.00 0
## 1226 0 Transient 134.00 0
## 1227 0 Transient 241.00 0
## 1228 0 Transient 8.00 0
## 1229 0 Transient 196.00 0
## 1230 0 Transient 198.00 0
## 1231 0 Transient 0.00 0
## 1232 0 Transient 158.50 0
## 1233 0 Transient 0.00 0
## 1234 0 Transient 200.00 0
## 1235 0 Transient 107.00 0
## 1236 0 Transient 163.23 0
## 1237 0 Transient 222.07 0
## 1238 0 Transient 229.00 0
## 1239 0 Transient 133.00 0
## 1240 0 Transient 164.00 0
## 1241 0 Transient 176.80 1
## 1242 0 Transient 134.00 0
## 1243 0 Transient 163.35 0
## 1244 0 Transient 171.90 0
## 1245 0 Transient 171.90 0
## 1246 0 Transient 213.50 0
## 1247 0 Transient 125.00 0
## 1248 0 Transient 178.33 0
## 1249 0 Transient 176.75 0
## 1250 0 Transient 123.00 0
## 1251 0 Transient 134.00 0
## 1252 0 Transient 146.00 1
## 1253 0 Transient 192.00 0
## 1254 0 Transient 183.00 0
## 1255 0 Transient 236.00 0
## 1256 0 Transient 191.00 0
## 1257 0 Transient 178.33 0
## 1258 0 Transient 248.00 0
## 1259 0 Transient 188.71 0
## 1260 0 Transient 123.04 0
## 1261 0 Transient 260.71 1
## 1262 0 Transient 222.00 0
## 1263 0 Transient 174.71 0
## 1264 0 Transient 118.70 0
## 1265 0 Transient 116.85 0
## 1266 0 Transient 129.55 0
## 1267 0 Transient 172.00 0
## 1268 0 Transient 172.00 0
## 1269 0 Transient 164.00 0
## 1270 0 Transient 179.83 0
## 1271 0 Transient 172.00 0
## 1272 0 Transient 160.43 1
## 1273 0 Transient 149.00 0
## 1274 0 Transient 134.00 0
## 1275 0 Transient 146.30 0
## 1276 0 Contract 161.26 0
## 1277 0 Transient 195.45 1
## 1278 0 Transient 133.00 0
## 1279 0 Transient 186.25 0
## 1280 0 Transient 162.29 0
## 1281 0 Transient-Party 221.43 1
## 1282 0 Transient 177.57 0
## 1283 0 Transient 133.00 0
## 1284 0 Transient 178.00 0
## 1285 0 Transient 146.30 0
## 1286 0 Transient 218.50 1
## 1287 0 Transient 151.89 0
## 1288 0 Transient 148.30 0
## 1289 0 Transient-Party 96.30 0
## 1290 0 Transient 166.00 0
## 1291 0 Transient-Party 96.30 1
## 1292 0 Transient 149.00 0
## 1293 0 Transient 151.95 0
## 1294 0 Transient 191.67 1
## 1295 0 Transient 211.00 1
## 1296 0 Transient 149.40 0
## 1297 0 Transient 201.00 0
## 1298 0 Transient 211.00 0
## 1299 0 Transient 259.00 0
## 1300 0 Transient 164.40 0
## 1301 0 Transient 134.00 0
## 1302 0 Transient 134.00 0
## 1303 0 Transient 229.00 0
## 1304 0 Transient 199.00 0
## 1305 0 Transient 112.50 0
## 1306 0 Transient 194.00 0
## 1307 0 Transient 149.40 0
## 1308 0 Contract 155.77 0
## 1309 0 Transient 131.70 1
## 1310 0 Transient 174.71 0
## 1311 0 Transient 101.65 0
## 1312 0 Transient 206.00 0
## 1313 0 Transient 134.00 0
## 1314 0 Transient 201.50 0
## 1315 0 Transient 134.00 0
## 1316 0 Transient 138.79 0
## 1317 0 Transient 122.00 0
## 1318 0 Transient 113.47 0
## 1319 0 Transient 99.50 0
## 1320 0 Transient 153.00 0
## 1321 0 Transient 233.00 1
## 1322 0 Transient 153.00 0
## 1323 0 Transient 192.00 0
## 1324 0 Transient 132.60 1
## 1325 0 Transient 171.90 0
## 1326 0 Transient 154.00 0
## 1327 0 Transient 172.00 0
## 1328 0 Transient 191.00 0
## 1329 0 Transient 148.25 0
## 1330 0 Transient 164.00 0
## 1331 0 Transient 231.60 0
## 1332 0 Transient 261.40 1
## 1333 0 Transient 199.40 0
## 1334 0 Transient 209.60 0
## 1335 0 Transient 199.40 0
## 1336 0 Transient 150.83 0
## 1337 0 Transient 129.27 0
## 1338 0 Transient 129.27 0
## 1339 0 Transient 133.76 0
## 1340 0 Transient 197.70 0
## 1341 0 Transient 196.00 0
## 1342 0 Transient 164.00 0
## 1343 0 Transient 154.00 0
## 1344 0 Transient 219.33 0
## 1345 0 Transient 200.80 0
## 1346 0 Transient 130.20 0
## 1347 0 Transient 189.67 0
## 1348 0 Transient 186.13 0
## 1349 0 Transient 158.38 0
## 1350 0 Transient 166.00 0
## 1351 0 Transient 149.00 0
## 1352 0 Transient 206.60 0
## 1353 0 Transient 120.60 0
## 1354 0 Transient 112.50 0
## 1355 0 Transient 0.00 0
## 1356 0 Transient 193.00 1
## 1357 0 Transient-Party 96.30 0
## 1358 0 Transient 137.70 0
## 1359 0 Transient 112.00 0
## 1360 0 Transient 116.85 0
## 1361 0 Transient 173.50 0
## 1362 0 Transient 173.50 0
## 1363 0 Transient 129.15 0
## 1364 0 Transient 192.20 0
## 1365 0 Transient 202.77 0
## 1366 0 Transient 111.27 0
## 1367 0 Transient 211.00 0
## 1368 0 Transient 153.00 1
## 1369 0 Transient 154.00 1
## 1370 0 Transient 134.00 0
## 1371 0 Transient 157.67 0
## 1372 0 Transient 133.00 0
## 1373 0 Transient 112.34 0
## 1374 0 Transient 124.50 0
## 1375 0 Transient 107.00 0
## 1376 0 Transient 133.00 0
## 1377 0 Transient 191.00 0
## 1378 0 Transient 172.60 0
## 1379 0 Contract 79.50 0
## 1380 0 Transient 120.27 0
## 1381 0 Transient 118.29 0
## 1382 0 Contract 75.53 0
## 1383 0 Transient 8.00 0
## 1384 0 Transient 8.00 0
## 1385 0 Contract 90.39 0
## 1386 0 Transient 155.86 0
## 1387 0 Transient 118.29 0
## 1388 0 Transient 115.00 0
## 1389 0 Transient-Party 110.70 0
## 1390 0 Transient-Party 110.70 0
## 1391 0 Transient 120.38 0
## 1392 0 Transient 195.00 0
## 1393 0 Transient 120.60 0
## 1394 0 Transient 176.00 1
## 1395 0 Transient 120.60 1
## 1396 0 Transient 112.05 0
## 1397 0 Transient 180.55 0
## 1398 0 Transient 179.00 0
## 1399 0 Transient 181.00 1
## 1400 0 Transient 122.00 0
## 1401 0 Transient 195.00 0
## 1402 0 Transient 184.00 0
## 1403 0 Transient 152.00 0
## 1404 0 Transient-Party 127.67 0
## 1405 0 Transient-Party 127.67 0
## 1406 0 Transient 114.13 0
## 1407 0 Transient 113.70 0
## 1408 0 Transient 120.60 0
## 1409 0 Transient 165.00 1
## 1410 0 Transient 120.60 0
## 1411 0 Transient 164.00 0
## 1412 0 Transient 208.00 0
## 1413 0 Transient 166.50 1
## 1414 0 Transient 101.16 0
## 1415 0 Transient 130.60 0
## 1416 0 Transient 145.00 0
## 1417 0 Transient 158.00 0
## 1418 0 Transient 109.83 0
## 1419 0 Transient 141.67 0
## 1420 0 Transient 175.00 0
## 1421 0 Contract 98.63 0
## 1422 0 Transient 166.14 0
## 1423 0 Transient 150.71 0
## 1424 0 Transient 97.74 0
## 1425 0 Transient 189.86 0
## 1426 0 Transient 97.50 0
## 1427 0 Transient 123.11 0
## 1428 0 Transient 104.80 1
## 1429 0 Transient 164.00 0
## 1430 0 Transient 134.00 0
## 1431 0 Transient 146.00 1
## 1432 0 Transient 103.18 0
## 1433 0 Transient 103.18 0
## 1434 0 Transient 164.00 0
## 1435 0 Transient-Party 142.50 0
## 1436 0 Transient 77.50 1
## 1437 0 Transient 135.20 0
## 1438 0 Transient 149.00 0
## 1439 0 Transient 140.40 1
## 1440 0 Transient 112.00 0
## 1441 0 Transient 173.25 0
## 1442 0 Transient 121.50 0
## 1443 0 Transient 122.86 0
## 1444 0 Transient 130.90 0
## 1445 0 Transient 146.00 1
## 1446 0 Transient 154.00 1
## 1447 0 Transient 103.50 1
## 1448 0 Transient 103.50 1
## 1449 0 Transient 129.33 0
## 1450 0 Transient 115.20 1
## 1451 0 Transient 71.72 0
## 1452 0 Contract 106.80 0
## 1453 0 Transient 71.69 0
## 1454 0 Transient 136.20 0
## 1455 0 Transient 112.33 1
## 1456 0 Transient 112.33 0
## 1457 0 Transient 157.67 0
## 1458 0 Transient 165.00 0
## 1459 0 Transient 113.43 0
## 1460 0 Transient 161.29 0
## 1461 0 Transient 167.86 1
## 1462 0 Transient 103.07 0
## 1463 0 Transient 161.29 0
## 1464 0 Transient 96.30 0
## 1465 0 Transient 92.86 0
## 1466 0 Transient 128.00 1
## 1467 0 Transient 115.20 0
## 1468 0 Transient 80.55 0
## 1469 0 Transient 120.33 0
## 1470 0 Transient 126.67 0
## 1471 0 Transient 130.33 0
## 1472 0 Transient 75.46 0
## 1473 0 Transient 96.33 0
## 1474 0 Transient 117.83 0
## 1475 0 Transient 120.33 0
## 1476 0 Transient 98.00 0
## 1477 0 Transient 155.50 0
## 1478 0 Contract 122.60 0
## 1479 0 Transient 105.50 0
## 1480 0 Transient 101.44 0
## 1481 0 Transient 160.00 0
## 1482 0 Transient 120.50 0
## 1483 0 Transient 126.29 0
## 1484 0 Transient 87.75 0
## 1485 0 Transient 113.55 0
## 1486 0 Transient 123.00 0
## 1487 0 Transient 98.00 0
## 1488 0 Transient 151.00 0
## 1489 0 Transient 134.67 0
## 1490 0 Transient 153.00 0
## 1491 0 Transient 137.67 0
## 1492 0 Transient 111.00 0
## 1493 0 Transient 123.00 0
## 1494 0 Transient 119.00 0
## 1495 0 Transient 155.00 0
## 1496 0 Transient 109.00 0
## 1497 0 Transient 158.00 0
## 1498 0 Transient 128.00 0
## 1499 0 Transient 113.00 0
## 1500 0 Transient 113.00 0
## 1501 0 Transient 93.12 0
## 1502 0 Transient 128.00 0
## 1503 0 Transient 93.12 0
## 1504 0 Transient 110.70 0
## 1505 0 Contract 101.03 0
## 1506 0 Transient 120.71 0
## 1507 0 Transient 82.72 0
## 1508 0 Transient 131.00 0
## 1509 0 Transient 120.71 0
## 1510 0 Transient 110.71 0
## 1511 0 Transient 136.00 0
## 1512 0 Transient-Party 186.00 0
## 1513 0 Transient-Party 114.19 0
## 1514 0 Transient 186.00 0
## 1515 0 Transient 86.95 1
## 1516 0 Transient 113.00 0
## 1517 0 Contract 82.88 0
## 1518 0 Transient 134.00 0
## 1519 0 Transient-Party 155.00 0
## 1520 0 Transient 146.00 0
## 1521 0 Transient-Party 155.00 0
## 1522 0 Transient 154.25 0
## 1523 0 Transient 71.69 0
## 1524 0 Transient 71.69 0
## 1525 0 Transient 150.71 1
## 1526 0 Transient-Party 57.00 0
## 1527 0 Transient 153.00 0
## 1528 0 Transient 153.00 0
## 1529 0 Transient 131.40 0
## 1530 0 Transient 90.40 1
## 1531 0 Transient-Party 88.20 0
## 1532 0 Transient-Party 88.20 0
## 1533 0 Transient 65.50 1
## 1534 0 Transient-Party 88.20 0
## 1535 0 Transient 211.00 0
## 1536 0 Transient-Party 80.00 0
## 1537 0 Transient-Party 88.20 0
## 1538 0 Transient 88.20 0
## 1539 0 Transient-Party 88.20 0
## 1540 0 Group 0.00 0
## 1541 0 Contract 109.50 0
## 1542 0 Transient 144.90 0
## 1543 0 Contract 79.50 0
## 1544 0 Contract 124.50 1
## 1545 0 Transient-Party 123.00 0
## 1546 0 Transient 0.00 0
## 1547 0 Transient-Party 113.00 1
## 1548 0 Transient 123.00 1
## 1549 0 Transient-Party 166.00 0
## 1550 0 Contract 79.50 0
## 1551 0 Transient 79.50 0
## 1552 0 Contract 79.50 0
## 1553 0 Transient 91.46 0
## 1554 0 Transient 153.00 0
## 1555 0 Contract 62.48 0
## 1556 0 Transient 124.10 1
## 1557 0 Transient 117.90 0
## 1558 0 Transient 143.00 1
## 1559 0 Transient 131.00 0
## 1560 0 Transient-Party 128.00 1
## 1561 0 Transient 167.00 1
## 1562 0 Transient 153.00 0
## 1563 0 Transient 172.00 0
## 1564 0 Transient 123.00 0
## 1565 0 Transient 146.00 0
## 1566 0 Contract 79.50 0
## 1567 0 Contract 116.80 0
## 1568 0 Transient 155.00 0
## 1569 0 Contract 79.50 1
## 1570 0 Transient 135.00 1
## 1571 0 Contract 116.80 0
## 1572 0 Transient 176.00 0
## 1573 0 Transient 151.25 0
## 1574 0 Transient 168.00 1
## 1575 0 Transient 123.00 0
## 1576 0 Transient 151.88 0
## 1577 0 Transient 153.00 0
## 1578 0 Contract 104.80 1
## 1579 0 Transient 183.00 1
## 1580 0 Transient 120.00 0
## 1581 0 Transient 97.50 0
## 1582 0 Transient 143.50 0
## 1583 0 Transient 163.00 0
## 1584 0 Transient 123.00 0
## 1585 0 Transient 171.00 0
## 1586 0 Transient 171.00 0
## 1587 0 Transient 143.00 0
## 1588 0 Group 0.00 0
## 1589 0 Transient 156.00 0
## 1590 0 Transient 139.50 1
## 1591 0 Transient 113.00 0
## 1592 0 Transient 154.14 0
## 1593 0 Transient 98.00 0
## 1594 0 Transient 113.00 0
## 1595 0 Transient 107.50 0
## 1596 0 Contract 124.80 0
## 1597 0 Transient 153.00 0
## 1598 0 Transient 131.00 0
## 1599 0 Transient 111.50 1
## 1600 0 Transient 98.00 0
## 1601 0 Transient 123.00 0
## 1602 0 Transient 153.00 0
## 1603 0 Transient 123.00 0
## 1604 0 Transient 197.00 0
## 1605 0 Transient-Party 97.50 0
## 1606 0 Transient-Party 97.50 0
## 1607 0 Transient 87.75 0
## 1608 0 Transient 83.70 1
## 1609 0 Contract 91.77 0
## 1610 0 Transient 0.00 0
## 1611 0 Transient 128.00 0
## 1612 0 Transient 98.00 0
## 1613 0 Transient 71.69 0
## 1614 0 Transient 114.50 0
## 1615 0 Transient 149.00 0
## 1616 0 Transient 123.00 0
## 1617 0 Transient 117.80 0
## 1618 0 Transient 98.00 0
## 1619 0 Transient 198.00 0
## 1620 0 Contract 124.80 0
## 1621 0 Transient 98.00 1
## 1622 0 Transient 89.00 0
## 1623 0 Transient 128.00 0
## 1624 0 Transient 146.00 0
## 1625 0 Transient 131.00 0
## 1626 0 Transient 98.00 0
## 1627 0 Transient 161.00 0
## 1628 0 Contract 79.50 0
## 1629 0 Transient 126.29 1
## 1630 0 Transient 105.50 0
## 1631 0 Transient 208.14 1
## 1632 0 Transient 103.85 0
## 1633 0 Transient 79.50 0
## 1634 0 Transient 113.00 1
## 1635 0 Transient 163.00 1
## 1636 0 Contract 107.50 0
## 1637 0 Transient 97.50 0
## 1638 0 Transient 113.00 0
## 1639 0 Transient 66.15 0
## 1640 0 Contract 99.80 0
## 1641 0 Contract 111.96 0
## 1642 0 Transient 139.18 0
## 1643 0 Transient 83.15 0
## 1644 0 Group 0.00 0
## 1645 0 Transient 77.60 0
## 1646 0 Transient 144.90 0
## 1647 0 Transient 161.00 0
## 1648 0 Transient 131.00 0
## 1649 0 Transient 131.00 0
## 1650 0 Transient 188.00 0
## 1651 0 Transient 64.29 0
## 1652 0 Transient 98.00 0
## 1653 0 Transient 123.00 0
## 1654 0 Transient 117.29 0
## 1655 0 Transient 98.00 0
## 1656 0 Transient 0.00 0
## 1657 0 Transient 75.96 0
## 1658 0 Transient 83.50 0
## 1659 0 Transient 131.00 0
## 1660 0 Transient 84.47 0
## 1661 0 Transient 84.47 0
## 1662 0 Transient 84.47 0
## 1663 0 Transient 156.00 0
## 1664 0 Transient 98.00 0
## 1665 0 Transient 117.90 0
## 1666 0 Transient 98.00 0
## 1667 0 Contract 101.53 0
## 1668 0 Contract 97.54 0
## 1669 0 Transient 91.50 0
## 1670 0 Transient 113.00 0
## 1671 0 Transient 58.95 0
## 1672 0 Transient 133.00 1
## 1673 0 Contract 76.50 0
## 1674 0 Transient 146.00 0
## 1675 0 Transient 146.00 1
## 1676 0 Transient 80.00 0
## 1677 0 Transient 68.50 0
## 1678 0 Transient 146.00 0
## 1679 0 Contract 124.80 0
## 1680 0 Transient 131.00 0
## 1681 0 Transient 146.00 1
## 1682 0 Transient 134.00 0
## 1683 0 Transient 86.69 1
## 1684 0 Transient 124.40 0
## 1685 0 Transient 65.70 0
## 1686 0 Transient 77.70 1
## 1687 0 Contract 59.00 0
## 1688 0 Transient 76.50 0
## 1689 0 Transient-Party 82.00 0
## 1690 0 Transient 92.67 0
## 1691 0 Transient-Party 82.00 0
## 1692 0 Transient 115.40 0
## 1693 0 Transient 158.40 0
## 1694 0 Transient 108.00 0
## 1695 0 Transient 87.05 0
## 1696 0 Contract 70.98 0
## 1697 0 Transient 119.70 0
## 1698 0 Transient 73.80 0
## 1699 0 Transient 87.05 0
## 1700 0 Transient 87.05 0
## 1701 0 Transient 82.44 0
## 1702 0 Transient 153.00 0
## 1703 0 Transient 57.54 0
## 1704 0 Transient 120.43 0
## 1705 0 Transient 131.00 1
## 1706 0 Transient 0.00 0
## 1707 0 Transient 75.46 0
## 1708 0 Group 82.00 0
## 1709 0 Transient 75.46 0
## 1710 0 Transient 208.00 0
## 1711 0 Transient 106.25 0
## 1712 0 Contract 70.48 0
## 1713 0 Transient 85.00 0
## 1714 0 Transient 83.50 0
## 1715 0 Contract 48.88 0
## 1716 0 Transient 73.50 0
## 1717 0 Contract 101.50 0
## 1718 0 Transient 133.00 0
## 1719 0 Transient 87.05 0
## 1720 0 Transient 118.20 1
## 1721 0 Contract 66.15 0
## 1722 0 Contract 50.15 0
## 1723 0 Transient 112.42 0
## 1724 0 Transient 131.00 1
## 1725 0 Transient 68.50 0
## 1726 0 Transient 104.80 0
## 1727 0 Transient 117.90 0
## 1728 0 Transient 134.00 0
## 1729 0 Transient 113.00 0
## 1730 0 Transient 138.50 0
## 1731 0 Transient 146.00 1
## 1732 0 Transient 133.00 1
## 1733 0 Transient 153.00 0
## 1734 0 Group 131.00 1
## 1735 0 Transient 135.00 1
## 1736 0 Transient 111.20 0
## 1737 0 Contract 57.50 0
## 1738 0 Contract 58.95 0
## 1739 0 Transient 77.11 0
## 1740 0 Contract 97.99 0
## 1741 0 Contract 51.75 0
## 1742 0 Transient 89.00 0
## 1743 0 Transient 153.00 0
## 1744 0 Transient 141.50 1
## 1745 0 Transient-Party 36.00 0
## 1746 0 Transient 59.13 0
## 1747 0 Transient 66.60 0
## 1748 0 Transient 129.00 0
## 1749 0 Transient 82.00 0
## 1750 0 Transient 58.05 0
## 1751 0 Transient 95.86 0
## 1752 0 Transient 68.45 0
## 1753 0 Group 0.00 0
## 1754 0 Transient 131.14 0
## 1755 0 Contract 72.25 0
## 1756 0 Transient 53.10 0
## 1757 0 Transient 123.00 0
## 1758 0 Transient 110.70 0
## 1759 0 Transient 73.80 0
## 1760 0 Transient 127.75 0
## 1761 0 Transient 110.75 0
## 1762 0 Transient-Party 91.00 0
## 1763 0 Transient 122.75 1
## 1764 0 Transient-Party 91.00 0
## 1765 0 Transient 132.60 1
## 1766 0 Transient 124.00 1
## 1767 0 Transient 138.60 0
## 1768 0 Transient 107.00 0
## 1769 0 Transient 70.20 0
## 1770 0 Contract 66.15 0
## 1771 0 Transient 93.21 0
## 1772 0 Contract 53.10 0
## 1773 0 Group 53.10 0
## 1774 0 Transient 105.00 0
## 1775 0 Contract 66.15 0
## 1776 0 Transient 79.50 0
## 1777 0 Contract 73.50 0
## 1778 0 Transient 58.50 1
## 1779 0 Transient 132.00 1
## 1780 0 Transient 120.00 0
## 1781 0 Transient 73.50 1
## 1782 0 Transient 212.83 1
## 1783 0 Transient 120.08 0
## 1784 0 Transient 77.20 0
## 1785 0 Transient 160.80 0
## 1786 0 Transient 76.67 0
## 1787 0 Transient 100.50 0
## 1788 0 Transient 89.00 0
## 1789 0 Transient 95.00 0
## 1790 0 Transient 103.51 1
## 1791 0 Contract 82.00 0
## 1792 0 Transient 160.00 0
## 1793 0 Transient 146.00 0
## 1794 0 Transient-Party 0.00 0
## 1795 0 Transient 68.40 0
## 1796 0 Transient 55.79 0
## 1797 0 Transient 103.80 0
## 1798 0 Transient 99.00 0
## 1799 0 Transient 122.14 0
## 1800 0 Transient 90.14 0
## 1801 0 Transient 103.80 0
## 1802 0 Transient 73.50 0
## 1803 0 Contract 68.88 0
## 1804 0 Transient 74.53 0
## 1805 0 Transient 71.66 0
## 1806 0 Transient 74.00 0
## 1807 0 Transient 74.00 0
## 1808 0 Transient 66.60 1
## 1809 0 Transient 8.00 1
## 1810 0 Transient 62.00 0
## 1811 0 Transient 79.00 1
## 1812 0 Transient 65.00 0
## 1813 0 Transient 58.50 0
## 1814 0 Transient 55.00 0
## 1815 0 Transient 74.00 0
## 1816 0 Transient 86.00 1
## 1817 0 Transient 129.00 0
## 1818 0 Transient 129.00 0
## 1819 0 Transient 129.00 1
## 1820 0 Transient 83.00 0
## 1821 0 Transient 74.00 0
## 1822 0 Transient 77.75 0
## 1823 0 Transient 74.00 0
## 1824 0 Transient 66.60 0
## 1825 0 Transient 150.25 0
## 1826 0 Transient 92.00 1
## 1827 0 Contract 85.50 0
## 1828 0 Transient 71.20 0
## 1829 0 Transient 81.50 0
## 1830 0 Transient 71.20 0
## 1831 0 Transient 89.00 0
## 1832 0 Transient 89.00 0
## 1833 0 Transient 66.60 0
## 1834 0 Contract 71.20 1
## 1835 0 Transient 66.60 1
## 1836 0 Transient 0.00 0
## 1837 0 Transient 111.00 1
## 1838 0 Transient 106.20 1
## 1839 0 Transient 83.00 0
## 1840 0 Transient-Party 65.00 0
## 1841 0 Transient-Party 65.00 0
## 1842 0 Transient-Party 65.00 0
## 1843 0 Transient-Party 65.00 0
## 1844 0 Transient-Party 65.00 0
## 1845 0 Transient 74.00 0
## 1846 0 Transient 89.00 0
## 1847 0 Transient 83.00 0
## 1848 0 Transient-Party 65.00 0
## 1849 0 Transient-Party 74.00 0
## 1850 0 Transient 84.71 0
## 1851 0 Transient 59.20 0
## 1852 0 Transient 114.00 0
## 1853 0 Contract 73.50 0
## 1854 0 Transient 109.71 0
## 1855 0 Transient 90.43 0
## 1856 0 Contract 80.63 0
## 1857 0 Contract 45.90 0
## 1858 0 Transient 120.00 1
## 1859 0 Transient 114.00 0
## 1860 0 Transient 81.60 1
## 1861 0 Transient 83.00 0
## 1862 0 Transient 113.00 1
## 1863 0 Transient 81.20 0
## 1864 0 Transient 59.20 0
## 1865 0 Transient 126.00 0
## 1866 0 Transient 99.50 0
## 1867 0 Transient 99.00 0
## 1868 0 Contract 73.50 0
## 1869 0 Transient 85.00 0
## 1870 0 Transient 87.33 0
## 1871 0 Transient 75.10 0
## 1872 0 Transient-Party 59.00 0
## 1873 0 Transient 122.00 1
## 1874 0 Transient 120.00 1
## 1875 0 Transient 162.00 0
## 1876 0 Transient 83.00 0
## 1877 0 Transient 152.00 1
## 1878 0 Transient 114.00 0
## 1879 0 Transient 127.00 1
## 1880 0 Transient 69.83 0
## 1881 0 Transient 102.93 0
## 1882 0 Transient 65.10 0
## 1883 0 Transient 96.26 0
## 1884 0 Transient 124.74 0
## 1885 0 Group 0.00 0
## 1886 0 Transient 89.00 0
## 1887 0 Transient 104.00 0
## 1888 0 Transient-Party 59.20 0
## 1889 0 Transient 138.29 0
## 1890 0 Transient-Party 59.20 0
## 1891 0 Transient 125.71 0
## 1892 0 Transient 66.60 0
## 1893 0 Transient 116.00 0
## 1894 0 Transient 95.40 0
## 1895 0 Transient 100.93 0
## 1896 0 Transient 66.60 0
## 1897 0 Transient 74.93 0
## 1898 0 Transient 58.98 0
## 1899 0 Transient 66.60 0
## 1900 0 Contract 58.93 0
## 1901 0 Transient 103.22 0
## 1902 0 Transient 42.50 0
## 1903 0 Contract 68.50 0
## 1904 0 Transient 55.64 0
## 1905 0 Transient-Party 26.00 0
## 1906 0 Transient-Party 64.00 0
## 1907 0 Transient-Party 64.00 0
## 1908 0 Transient 74.00 0
## 1909 0 Transient-Party 26.00 0
## 1910 0 Transient-Party 26.00 0
## 1911 0 Transient-Party 90.00 0
## 1912 0 Transient-Party 26.00 0
## 1913 0 Transient 99.00 0
## 1914 0 Transient-Party 90.00 0
## 1915 0 Transient-Party 90.00 0
## 1916 0 Transient 79.00 0
## 1917 0 Transient 89.00 0
## 1918 0 Group 0.00 0
## 1919 0 Transient 72.00 0
## 1920 0 Transient 89.00 0
## 1921 0 Transient 59.02 0
## 1922 0 Transient 79.50 1
## 1923 0 Contract 74.93 0
## 1924 0 Transient 89.14 0
## 1925 0 Transient 53.69 1
## 1926 0 Transient 114.48 0
## 1927 0 Transient 73.98 0
## 1928 0 Transient 99.50 0
## 1929 0 Transient 99.50 0
## 1930 0 Transient 59.20 0
## 1931 0 Contract 65.64 0
## 1932 0 Transient 89.00 1
## 1933 0 Transient 79.00 0
## 1934 0 Transient 74.00 0
## 1935 0 Transient 84.71 0
## 1936 0 Transient 75.43 0
## 1937 0 Transient 77.73 1
## 1938 0 Transient 74.00 1
## 1939 0 Transient 80.63 0
## 1940 0 Transient 129.00 0
## 1941 0 Transient 140.63 1
## 1942 0 Transient 73.50 0
## 1943 0 Transient-Party 108.65 0
## 1944 0 Transient-Party 75.65 0
## 1945 0 Transient-Party 108.85 0
## 1946 0 Transient 75.65 0
## 1947 0 Transient-Party 75.65 0
## 1948 0 Transient 114.00 1
## 1949 0 Transient 56.98 0
## 1950 0 Transient 0.00 0
## 1951 0 Transient 0.00 0
## 1952 0 Transient 74.80 1
## 1953 0 Transient 89.00 0
## 1954 0 Transient 114.00 0
## 1955 0 Transient 87.86 0
## 1956 0 Transient 130.50 0
## 1957 0 Contract 64.00 0
## 1958 0 Transient 112.00 1
## 1959 0 Contract 75.50 0
## 1960 0 Transient 89.00 0
## 1961 0 Transient 80.10 0
## 1962 0 Transient 97.20 0
## 1963 0 Group 0.00 0
## 1964 0 Transient 76.30 0
## 1965 0 Transient 74.70 0
## 1966 0 Contract 55.43 0
## 1967 0 Transient 48.54 0
## 1968 0 Contract 83.80 0
## 1969 0 Contract 43.93 0
## 1970 0 Transient 129.00 0
## 1971 0 Group 80.10 0
## 1972 0 Transient-Party 80.00 0
## 1973 0 Transient 173.00 1
## 1974 0 Transient-Party 80.00 0
## 1975 0 Transient 89.00 0
## 1976 0 Transient 108.50 1
## 1977 0 Transient 136.50 0
## 1978 0 Transient 83.00 0
## 1979 0 Transient 96.50 0
## 1980 0 Transient 142.50 1
## 1981 0 Transient 95.00 0
## 1982 0 Transient 89.00 0
## 1983 0 Transient 89.00 0
## 1984 0 Transient 109.00 0
## 1985 0 Transient 89.06 0
## 1986 0 Transient 72.14 0
## 1987 0 Transient 90.49 0
## 1988 0 Transient 53.68 0
## 1989 0 Transient 85.50 1
## 1990 0 Transient 89.06 0
## 1991 0 Transient 80.08 0
## 1992 0 Transient 89.00 0
## 1993 0 Transient 114.00 0
## 1994 0 Transient 119.00 0
## 1995 0 Transient-Party 104.72 0
## 1996 0 Transient 73.35 0
## 1997 0 Transient 74.00 0
## 1998 0 Transient 79.00 0
## 1999 0 Transient 79.00 0
## 2000 0 Transient 94.00 0
## 2001 0 Transient 116.00 0
## 2002 0 Transient 82.80 0
## 2003 0 Transient 73.50 0
## 2004 0 Group 0.00 0
## 2005 0 Transient 128.42 1
## 2006 0 Transient 55.09 0
## 2007 0 Transient 93.86 0
## 2008 0 Transient 69.13 0
## 2009 0 Transient 122.00 1
## 2010 0 Transient-Party 88.40 0
## 2011 0 Transient 94.50 0
## 2012 0 Transient 78.60 0
## 2013 0 Transient 85.08 0
## 2014 0 Transient 55.43 0
## 2015 0 Contract 93.43 0
## 2016 0 Contract 36.13 0
## 2017 0 Contract 55.43 0
## 2018 0 Transient 66.29 0
## 2019 0 Contract 90.74 0
## 2020 0 Transient 66.29 0
## 2021 0 Contract 38.25 0
## 2022 0 Transient 106.31 0
## 2023 0 Transient 74.20 0
## 2024 0 Transient 93.20 0
## 2025 0 Transient 83.67 0
## 2026 0 Contract 42.23 0
## 2027 0 Transient 68.53 1
## 2028 0 Transient 86.10 1
## 2029 0 Transient 63.14 0
## 2030 0 Transient 74.60 0
## 2031 0 Transient 60.50 0
## 2032 0 Transient 69.50 0
## 2033 0 Transient 55.44 0
## 2034 0 Transient 44.50 0
## 2035 0 Transient 55.44 0
## 2036 0 Transient 55.44 0
## 2037 0 Transient 55.44 0
## 2038 0 Transient 99.50 0
## 2039 0 Transient 108.09 0
## 2040 0 Contract 68.00 0
## 2041 0 Transient 78.10 0
## 2042 0 Contract 70.50 0
## 2043 0 Transient 76.50 1
## 2044 0 Transient 66.80 0
## 2045 0 Transient 39.24 0
## 2046 0 Transient 48.78 0
## 2047 0 Transient 62.00 0
## 2048 0 Contract 54.40 0
## 2049 0 Transient 56.59 0
## 2050 0 Contract 59.03 0
## 2051 0 Transient 62.00 0
## 2052 0 Transient 148.12 0
## 2053 0 Transient 44.50 0
## 2054 0 Contract 54.40 0
## 2055 0 Contract 44.50 0
## 2056 0 Transient 81.45 0
## 2057 0 Transient 81.75 0
## 2058 0 Transient 81.45 0
## 2059 0 Transient 48.80 0
## 2060 0 Transient 80.10 0
## 2061 0 Transient 106.00 0
## 2062 0 Transient 104.00 0
## 2063 0 Transient 90.10 0
## 2064 0 Transient 55.50 0
## 2065 0 Transient-Party 58.50 0
## 2066 0 Transient-Party 58.50 0
## 2067 0 Transient-Party 73.00 0
## 2068 0 Transient 55.80 0
## 2069 0 Transient-Party 58.50 0
## 2070 0 Transient-Party 58.50 0
## 2071 0 Transient-Party 73.00 0
## 2072 0 Transient-Party 73.00 0
## 2073 0 Transient-Party 67.50 0
## 2074 0 Transient-Party 13.00 0
## 2075 0 Transient 64.33 0
## 2076 0 Transient 79.83 0
## 2077 0 Transient 100.33 1
## 2078 0 Transient 44.50 0
## 2079 0 Transient 71.93 0
## 2080 0 Transient 52.73 0
## 2081 0 Transient 58.57 0
## 2082 0 Transient 48.00 0
## 2083 0 Transient 62.43 1
## 2084 0 Transient 52.73 0
## 2085 0 Transient 44.27 0
## 2086 0 Transient 58.57 0
## 2087 0 Contract 54.40 0
## 2088 0 Transient-Party 120.00 0
## 2089 0 Transient 68.40 0
## 2090 0 Transient 118.50 0
## 2091 0 Transient 87.00 0
## 2092 0 Transient 48.30 1
## 2093 0 Transient 93.00 1
## 2094 0 Transient 65.00 0
## 2095 0 Transient 56.00 0
## 2096 0 Transient 65.00 0
## 2097 0 Contract 66.00 0
## 2098 0 Transient 86.00 0
## 2099 0 Transient 74.40 0
## 2100 0 Contract 74.23 0
## 2101 0 Transient 103.00 1
## 2102 0 Contract 82.00 0
## 2103 0 Transient 77.00 0
## 2104 0 Contract 69.93 0
## 2105 0 Contract 43.93 0
## 2106 0 Transient 57.43 0
## 2107 0 Transient 36.74 0
## 2108 0 Transient 63.08 0
## 2109 0 Transient 47.00 0
## 2110 0 Transient 50.40 0
## 2111 0 Contract 55.43 0
## 2112 0 Transient 76.00 1
## 2113 0 Transient 56.00 1
## 2114 0 Transient 78.00 0
## 2115 0 Transient 0.00 0
## 2116 0 Transient 117.00 0
## 2117 0 Transient 106.00 0
## 2118 0 Transient 47.00 0
## 2119 0 Transient 56.00 0
## 2120 0 Transient 106.00 0
## 2121 0 Transient-Party 44.50 0
## 2122 0 Contract 77.00 0
## 2123 0 Transient 50.40 0
## 2124 0 Transient 44.50 0
## 2125 0 Transient 59.40 0
## 2126 0 Transient 55.43 0
## 2127 0 Transient 44.50 0
## 2128 0 Contract 42.23 0
## 2129 0 Transient 72.00 0
## 2130 0 Transient 60.90 1
## 2131 0 Transient 67.25 0
## 2132 0 Transient 63.90 0
## 2133 0 Transient 74.00 1
## 2134 0 Transient 36.05 0
## 2135 0 Transient 36.05 0
## 2136 0 Transient 36.05 0
## 2137 0 Transient 36.05 0
## 2138 0 Transient-Party 42.30 0
## 2139 0 Transient 90.00 0
## 2140 0 Transient 67.00 0
## 2141 0 Transient 110.00 1
## 2142 0 Transient 36.05 0
## 2143 0 Transient 36.05 0
## 2144 0 Transient 58.00 0
## 2145 0 Transient 58.00 0
## 2146 0 Transient-Party 38.07 0
## 2147 0 Transient-Party 40.07 0
## 2148 0 Transient-Party 38.07 0
## 2149 0 Contract 81.60 0
## 2150 0 Transient 59.29 0
## 2151 0 Transient 38.07 0
## 2152 0 Transient-Party 40.07 0
## 2153 0 Transient 59.40 0
## 2154 0 Transient 77.00 0
## 2155 0 Transient 74.14 0
## 2156 0 Transient 116.00 1
## 2157 0 Transient 86.00 0
## 2158 0 Transient 50.40 0
## 2159 0 Transient 40.96 0
## 2160 0 Transient 44.80 1
## 2161 0 Transient 93.43 1
## 2162 0 Contract 47.33 0
## 2163 0 Transient 83.05 0
## 2164 0 Transient 87.43 0
## 2165 0 Group 0.00 0
## 2166 0 Transient 68.16 0
## 2167 0 Transient 66.00 0
## 2168 0 Transient 56.00 0
## 2169 0 Transient 136.71 0
## 2170 0 Transient 51.30 0
## 2171 0 Transient 92.60 0
## 2172 0 Transient 47.00 0
## 2173 0 Transient-Party 56.00 0
## 2174 0 Group 0.00 0
## 2175 0 Transient-Party 56.00 0
## 2176 0 Transient 117.00 0
## 2177 0 Transient 122.00 0
## 2178 0 Transient 63.66 0
## 2179 0 Transient 68.43 0
## 2180 0 Transient 60.40 0
## 2181 0 Contract 78.20 0
## 2182 0 Transient 44.50 0
## 2183 0 Transient 44.50 0
## 2184 0 Transient 44.50 0
## 2185 0 Transient 44.50 0
## 2186 0 Transient 44.50 0
## 2187 0 Transient 44.50 0
## 2188 0 Transient 44.50 0
## 2189 0 Transient 44.50 0
## 2190 0 Transient 44.50 0
## 2191 0 Transient 44.50 0
## 2192 0 Transient 44.50 0
## 2193 0 Transient 44.50 0
## 2194 0 Transient 41.25 0
## 2195 0 Transient 40.05 0
## 2196 0 Transient 117.00 0
## 2197 0 Transient 107.43 0
## 2198 0 Transient 57.67 0
## 2199 0 Transient 63.47 0
## 2200 0 Transient 60.30 1
## 2201 0 Group 61.50 0
## 2202 0 Transient 88.00 0
## 2203 0 Transient 56.95 0
## 2204 0 Transient 67.00 0
## 2205 0 Contract 54.50 0
## 2206 0 Transient 67.00 0
## 2207 0 Transient 54.72 0
## 2208 0 Transient 83.60 0
## 2209 0 Transient 73.00 1
## 2210 0 Transient 86.00 0
## 2211 0 Transient 86.00 0
## 2212 0 Transient 86.00 0
## 2213 0 Transient 86.00 0
## 2214 0 Transient 65.45 0
## 2215 0 Transient 71.67 0
## 2216 0 Transient 37.00 0
## 2217 0 Transient 37.00 0
## 2218 0 Transient 37.00 0
## 2219 0 Transient 0.00 0
## 2220 0 Transient 52.20 0
## 2221 0 Transient 43.12 0
## 2222 0 Transient 66.00 1
## 2223 0 Transient 106.00 0
## 2224 0 Transient 56.00 0
## 2225 0 Transient-Party 0.00 0
## 2226 0 Transient 62.80 0
## 2227 0 Transient 87.00 0
## 2228 0 Transient 96.67 1
## 2229 0 Group 0.00 0
## 2230 0 Group 0.00 0
## 2231 0 Transient 118.00 0
## 2232 0 Group 0.00 0
## 2233 0 Transient 98.40 0
## 2234 0 Transient 43.30 0
## 2235 0 Transient 58.00 0
## 2236 0 Transient 58.00 0
## 2237 0 Transient 58.00 0
## 2238 0 Transient 58.00 0
## 2239 0 Transient 58.00 0
## 2240 0 Transient 66.30 1
## 2241 0 Transient 0.00 0
## 2242 0 Transient 47.00 0
## 2243 0 Transient 0.00 0
## 2244 0 Transient 67.00 0
## 2245 0 Transient 49.01 0
## 2246 0 Transient 64.29 1
## 2247 0 Transient 47.00 0
## 2248 0 Transient 41.60 1
## 2249 0 Transient-Party 55.43 0
## 2250 0 Transient 48.74 0
## 2251 0 Transient-Party 55.43 0
## 2252 0 Transient 68.86 0
## 2253 0 Transient-Party 67.00 0
## 2254 0 Transient-Party 68.43 0
## 2255 0 Transient 47.00 0
## 2256 0 Transient 40.00 0
## 2257 0 Transient 67.00 0
## 2258 0 Transient 67.00 1
## 2259 0 Transient 47.00 0
## 2260 0 Transient 87.00 1
## 2261 0 Transient-Party 67.50 0
## 2262 0 Transient 73.67 0
## 2263 0 Contract 50.00 0
## 2264 0 Contract 50.00 0
## 2265 0 Transient 73.66 0
## 2266 0 Contract 50.00 0
## 2267 0 Contract 56.00 1
## 2268 0 Contract 48.00 1
## 2269 0 Contract 45.00 0
## 2270 0 Transient-Party 50.00 0
## 2271 0 Transient 67.00 0
## 2272 0 Contract 71.00 1
## 2273 50 Contract 45.00 0
## 2274 0 Contract 50.00 0
## 2275 0 Transient 66.00 0
## 2276 0 Contract 45.00 0
## 2277 0 Contract 71.00 1
## 2278 0 Transient 85.00 1
## 2279 0 Transient-Party 41.37 0
## 2280 0 Transient 0.00 0
## 2281 0 Transient 53.37 0
## 2282 0 Contract 44.50 0
## 2283 0 Transient-Party 48.57 0
## 2284 0 Transient 77.43 0
## 2285 0 Transient 123.56 0
## 2286 0 Transient 62.47 0
## 2287 0 Transient 58.00 0
## 2288 0 Transient-Party 48.00 0
## 2289 0 Transient 67.00 0
## 2290 0 Transient 56.00 0
## 2291 0 Contract 56.00 1
## 2292 0 Contract 42.00 0
## 2293 0 Transient 67.50 0
## 2294 0 Transient 89.00 0
## 2295 0 Contract 50.00 0
## 2296 0 Contract 50.00 0
## 2297 0 Contract 56.00 1
## 2298 0 Transient 92.00 0
## 2299 0 Transient 92.00 0
## 2300 0 Transient 92.00 0
## 2301 0 Transient 92.00 0
## 2302 0 Transient 92.00 0
## 2303 0 Transient 92.00 0
## 2304 0 Transient 43.12 0
## 2305 0 Transient 92.00 0
## 2306 0 Transient 92.00 0
## 2307 0 Transient 104.67 1
## 2308 0 Transient 113.33 0
## 2309 0 Contract 50.00 1
## 2310 0 Contract 50.00 0
## 2311 0 Transient 67.00 0
## 2312 0 Transient 72.80 0
## 2313 0 Transient 92.00 0
## 2314 0 Transient 92.00 0
## 2315 0 Transient 92.00 0
## 2316 0 Transient 92.00 0
## 2317 0 Transient 92.00 0
## 2318 0 Transient 92.00 0
## 2319 0 Transient 92.00 0
## 2320 0 Transient 92.00 0
## 2321 0 Transient 92.00 0
## 2322 0 Transient 92.00 0
## 2323 0 Transient 92.00 0
## 2324 0 Transient 92.00 0
## 2325 0 Transient 92.00 0
## 2326 0 Transient 54.02 0
## 2327 0 Transient 63.33 0
## 2328 0 Transient 83.33 0
## 2329 0 Transient 92.00 0
## 2330 0 Transient 92.00 0
## 2331 0 Transient 92.00 0
## 2332 0 Transient 43.12 0
## 2333 0 Transient 78.80 1
## 2334 0 Transient 55.73 0
## 2335 0 Transient 44.50 0
## 2336 0 Transient 92.00 0
## 2337 0 Transient 92.00 0
## 2338 0 Transient 92.00 0
## 2339 0 Transient 92.00 0
## 2340 0 Transient 83.00 1
## 2341 0 Transient 67.00 0
## 2342 0 Transient 77.00 0
## 2343 0 Transient 71.50 0
## 2344 0 Transient 70.40 0
## 2345 0 Transient 73.68 1
## 2346 0 Transient 82.00 0
## 2347 0 Transient 56.00 0
## 2348 0 Contract 45.00 0
## 2349 0 Contract 45.00 0
## 2350 0 Transient 60.30 0
## 2351 0 Transient 67.50 0
## 2352 0 Transient 61.50 0
## 2353 0 Transient 107.50 1
## 2354 0 Transient 101.50 0
## 2355 0 Transient 76.35 1
## 2356 0 Transient-Party 49.20 0
## 2357 0 Transient 82.35 0
## 2358 0 Transient 111.50 0
## 2359 0 Transient 67.50 1
## 2360 0 Transient 117.00 0
## 2361 0 Transient 77.50 1
## 2362 0 Transient 102.50 1
## 2363 0 Transient 101.50 0
## 2364 0 Transient 101.50 0
## 2365 0 Transient 61.35 1
## 2366 0 Transient 61.35 1
## 2367 0 Transient-Party 49.20 0
## 2368 0 Transient 90.00 0
## 2369 0 Transient 36.05 0
## 2370 0 Transient 36.05 0
## 2371 0 Transient 36.05 0
## 2372 0 Transient 36.05 0
## 2373 0 Transient 36.05 0
## 2374 0 Transient 36.05 0
## 2375 0 Transient 36.05 0
## 2376 0 Transient 36.05 0
## 2377 0 Transient 36.05 0
## 2378 0 Transient 36.05 0
## 2379 0 Transient 4.00 0
## 2380 0 Transient 36.05 0
## 2381 0 Transient 36.05 0
## 2382 0 Transient 36.05 0
## 2383 0 Transient 98.00 0
## 2384 0 Transient 79.22 0
## 2385 0 Transient 106.00 0
## 2386 0 Transient 50.40 0
## 2387 0 Transient 66.00 0
## 2388 0 Transient 50.40 0
## 2389 0 Transient 46.50 0
## 2390 0 Transient 50.40 0
## 2391 0 Transient 66.00 0
## 2392 0 Transient 56.00 0
## 2393 0 Transient 82.00 1
## 2394 0 Transient 50.40 0
## 2395 0 Transient 37.60 0
## 2396 0 Transient 56.40 1
## 2397 0 Transient 67.00 0
## 2398 0 Transient 56.40 1
## 2399 0 Transient 42.30 0
## 2400 0 Transient 50.40 0
## 2401 0 Transient 56.00 0
## 2402 0 Transient 50.40 0
## 2403 0 Transient 42.30 0
## 2404 0 Transient 56.52 0
## 2405 0 Transient 58.24 0
## 2406 0 Transient 69.85 0
## 2407 0 Transient 92.71 0
## 2408 0 Transient-Party 0.00 0
## 2409 0 Transient 0.00 0
## 2410 0 Transient 0.00 0
## 2411 0 Transient 48.00 0
## 2412 0 Transient 53.00 0
## 2413 0 Transient 48.00 0
## 2414 0 Transient 37.00 0
## 2415 0 Transient 56.00 0
## 2416 0 Transient 48.00 0
## 2417 0 Transient 61.28 0
## 2418 0 Group 0.00 0
## 2419 0 Group 0.00 0
## 2420 0 Group 0.00 0
## 2421 0 Transient-Party 79.00 0
## 2422 0 Transient 74.28 0
## 2423 0 Transient 47.00 0
## 2424 0 Transient 50.40 0
## 2425 0 Transient 56.00 0
## 2426 0 Transient 8.00 0
## 2427 0 Transient 56.00 1
## 2428 0 Transient 47.00 0
## 2429 0 Transient 117.00 0
## 2430 0 Transient 107.43 0
## 2431 0 Transient 73.38 0
## 2432 0 Transient 117.00 1
## 2433 0 Transient-Party 37.60 1
## 2434 0 Transient-Party 42.30 1
## 2435 0 Transient 56.00 0
## 2436 0 Transient-Party 37.60 0
## 2437 0 Transient 56.00 0
## 2438 0 Transient-Party 42.30 0
## 2439 0 Transient 64.50 0
## 2440 0 Transient-Party 0.00 0
## 2441 0 Transient-Party 43.00 1
## 2442 0 Transient 111.50 0
## 2443 0 Contract 33.30 0
## 2444 0 Transient-Party 0.00 0
## 2445 0 Transient-Party 0.00 0
## 2446 0 Transient-Party 0.00 0
## 2447 0 Transient 73.00 1
## 2448 0 Transient-Party 44.50 0
## 2449 0 Transient 0.00 0
## 2450 0 Transient-Party 44.50 0
## 2451 0 Transient 98.40 1
## 2452 0 Transient 70.00 1
## 2453 0 Transient 75.00 0
## 2454 0 Transient 57.83 1
## 2455 0 Transient 68.57 0
## 2456 0 Transient 67.00 0
## 2457 0 Transient 81.50 0
## 2458 0 Transient 54.77 0
## 2459 0 Transient 45.56 0
## 2460 0 Transient 59.40 0
## 2461 0 Transient 108.00 0
## 2462 0 Transient 56.00 0
## 2463 0 Transient 56.00 0
## 2464 0 Transient 65.00 0
## 2465 0 Transient 42.50 0
## 2466 0 Transient 50.05 0
## 2467 0 Contract 86.50 0
## 2468 0 Transient 67.92 0
## 2469 0 Contract 43.93 0
## 2470 0 Transient 45.00 0
## 2471 0 Transient 55.14 0
## 2472 0 Transient 38.25 0
## 2473 0 Transient 55.00 0
## 2474 0 Transient 81.34 0
## 2475 0 Transient 40.50 0
## 2476 0 Transient 40.50 0
## 2477 0 Transient 37.00 0
## 2478 0 Transient 56.00 1
## 2479 0 Transient-Party 37.00 0
## 2480 0 Transient-Party 37.00 0
## 2481 0 Transient 68.40 0
## 2482 0 Transient 39.00 0
## 2483 0 Transient 86.00 0
## 2484 0 Transient 62.00 1
## 2485 0 Transient 92.00 1
## 2486 0 Transient 40.23 0
## 2487 47 Transient-Party 76.80 0
## 2488 47 Transient-Party 76.80 0
## 2489 47 Transient-Party 76.80 0
## 2490 0 Transient-Party 58.40 0
## 2491 47 Transient-Party 76.80 0
## 2492 47 Transient-Party 76.80 0
## 2493 47 Transient-Party 76.80 0
## 2494 47 Transient-Party 76.80 0
## 2495 47 Transient-Party 76.80 0
## 2496 0 Transient 56.00 0
## 2497 47 Transient-Party 76.80 0
## 2498 47 Transient-Party 76.80 0
## 2499 47 Transient-Party 76.80 0
## 2500 47 Transient-Party 76.80 0
## 2501 47 Transient-Party 76.80 0
## 2502 47 Transient-Party 76.80 0
## 2503 47 Transient-Party 76.80 0
## 2504 47 Transient-Party 76.80 0
## 2505 47 Transient-Party 76.80 0
## 2506 0 Transient 57.00 0
## 2507 47 Transient-Party 76.80 0
## 2508 47 Transient-Party 76.80 0
## 2509 47 Transient-Party 76.80 0
## 2510 0 Transient 58.40 0
## 2511 47 Transient-Party 76.80 0
## 2512 0 Contract 79.63 0
## 2513 0 Contract 37.56 0
## 2514 0 Transient 36.90 0
## 2515 0 Transient 70.00 0
## 2516 0 Transient 62.00 0
## 2517 0 Transient 67.56 0
## 2518 0 Transient 56.00 1
## 2519 0 Transient 56.00 0
## 2520 0 Transient 66.00 0
## 2521 0 Transient 75.00 0
## 2522 0 Transient 47.00 0
## 2523 0 Contract 67.15 0
## 2524 0 Transient 88.67 0
## 2525 0 Transient 95.00 0
## 2526 0 Contract 113.33 0
## 2527 0 Contract 36.00 0
## 2528 0 Contract 54.40 0
## 2529 0 Transient 36.00 0
## 2530 0 Transient 42.30 0
## 2531 0 Transient 0.00 0
## 2532 0 Transient 0.00 0
## 2533 0 Transient 37.00 0
## 2534 0 Transient-Party 8.00 0
## 2535 0 Transient-Party 0.00 0
## 2536 0 Transient 95.00 0
## 2537 0 Transient-Party 0.00 0
## 2538 0 Transient-Party 70.00 0
## 2539 0 Transient-Party 70.00 0
## 2540 0 Transient-Party 60.00 0
## 2541 0 Transient 34.65 0
## 2542 0 Transient 56.00 1
## 2543 0 Transient 41.98 1
## 2544 0 Transient 40.05 0
## 2545 0 Transient 61.00 1
## 2546 0 Transient 66.00 0
## 2547 0 Transient 34.65 0
## 2548 0 Transient 45.55 0
## 2549 0 Transient 55.00 0
## 2550 0 Transient 59.40 0
## 2551 0 Transient 86.00 0
## 2552 0 Transient 66.43 0
## 2553 0 Transient 47.00 0
## 2554 0 Transient 112.29 0
## 2555 0 Transient 55.00 0
## 2556 0 Transient 70.00 1
## 2557 0 Transient 59.40 0
## 2558 0 Transient-Party 40.50 0
## 2559 0 Transient 61.60 0
## 2560 0 Contract 42.50 0
## 2561 0 Transient-Party 82.00 1
## 2562 0 Transient 81.00 0
## 2563 0 Transient-Party 60.00 1
## 2564 0 Transient 43.93 0
## 2565 0 Transient 42.50 0
## 2566 0 Transient 36.00 0
## 2567 0 Transient 60.00 1
## 2568 0 Transient 36.00 0
## 2569 0 Transient 55.00 2
## 2570 0 Transient-Party 40.50 0
## 2571 0 Transient 50.40 0
## 2572 0 Transient 40.50 0
## 2573 0 Transient 55.00 0
## 2574 0 Transient 36.00 0
## 2575 0 Transient 55.00 0
## 2576 0 Transient 55.00 0
## 2577 0 Transient 81.50 0
## 2578 0 Transient 56.40 1
## 2579 0 Transient-Party 42.50 0
## 2580 0 Transient 55.43 0
## 2581 0 Contract 70.31 0
## 2582 0 Transient 104.67 0
## 2583 0 Transient-Party 76.00 0
## 2584 0 Transient-Party 76.00 0
## 2585 0 Transient-Party 76.00 0
## 2586 0 Transient 56.00 0
## 2587 0 Transient 66.00 0
## 2588 0 Transient-Party 82.00 1
## 2589 0 Transient-Party 56.00 0
## 2590 0 Transient 77.00 0
## 2591 0 Transient 50.40 0
## 2592 0 Transient 73.00 1
## 2593 0 Transient 72.00 1
## 2594 0 Transient-Party 56.00 0
## 2595 0 Transient-Party 56.00 0
## 2596 0 Transient 0.00 0
## 2597 0 Transient-Party 56.00 0
## 2598 0 Transient 64.00 1
## 2599 0 Transient 66.00 0
## 2600 0 Transient-Party 56.00 0
## 2601 0 Transient 70.00 1
## 2602 0 Transient 34.65 0
## 2603 0 Transient 58.00 0
## 2604 0 Transient 34.65 0
## 2605 0 Contract 44.50 0
## 2606 0 Contract 44.50 0
## 2607 0 Transient 38.92 1
## 2608 0 Transient 119.43 1
## 2609 0 Transient 47.00 0
## 2610 0 Transient 56.00 0
## 2611 0 Transient 56.00 0
## 2612 0 Transient 56.00 0
## 2613 0 Transient 47.00 0
## 2614 0 Transient 106.00 0
## 2615 0 Transient 99.50 0
## 2616 0 Transient 52.51 0
## 2617 0 Transient 49.80 0
## 2618 0 Transient 73.00 1
## 2619 0 Transient 96.00 0
## 2620 0 Transient-Party 47.00 0
## 2621 0 Transient-Party 56.00 0
## 2622 0 Transient 106.00 0
## 2623 0 Transient 66.30 1
## 2624 0 Transient 45.00 0
## 2625 0 Transient 39.00 1
## 2626 0 Transient 47.00 0
## 2627 0 Transient 47.00 0
## 2628 0 Transient 39.00 0
## 2629 0 Transient 39.00 0
## 2630 0 Transient 39.00 0
## 2631 0 Transient 47.00 0
## 2632 0 Transient 47.00 0
## 2633 0 Transient 47.00 0
## 2634 0 Transient 39.00 0
## 2635 0 Transient 39.00 0
## 2636 0 Transient 47.00 0
## 2637 0 Transient 47.00 0
## 2638 0 Transient 39.00 0
## 2639 0 Transient 39.00 0
## 2640 0 Transient 47.00 0
## 2641 0 Transient 47.00 0
## 2642 0 Transient 39.00 0
## 2643 0 Transient 39.00 0
## 2644 0 Transient 66.00 0
## 2645 0 Transient 47.00 0
## 2646 0 Transient 47.00 0
## 2647 0 Transient 47.00 0
## 2648 0 Transient 39.00 0
## 2649 0 Transient 39.00 0
## 2650 0 Transient 39.00 0
## 2651 0 Transient 66.00 0
## 2652 0 Transient 47.00 0
## 2653 0 Transient 47.00 0
## 2654 0 Transient 47.00 0
## 2655 0 Transient 39.00 0
## 2656 0 Transient 39.00 0
## 2657 0 Transient 47.00 0
## 2658 0 Transient 47.00 0
## 2659 0 Transient 47.00 0
## 2660 0 Transient 39.00 0
## 2661 0 Transient 39.00 0
## 2662 0 Transient 39.00 0
## 2663 0 Transient 65.00 0
## 2664 0 Transient 76.00 0
## 2665 0 Transient 45.00 0
## 2666 0 Transient 66.00 0
## 2667 0 Transient 54.00 0
## 2668 0 Transient 45.00 0
## 2669 0 Transient 42.05 0
## 2670 0 Transient 47.00 0
## 2671 0 Transient 52.00 0
## 2672 0 Transient 65.00 0
## 2673 0 Transient 96.67 0
## 2674 0 Transient 76.00 0
## 2675 0 Transient 76.00 0
## 2676 0 Contract 42.50 0
## 2677 0 Transient 34.56 0
## 2678 0 Transient 63.82 0
## 2679 0 Transient 66.00 1
## 2680 0 Transient 47.00 0
## 2681 0 Transient 47.00 0
## 2682 0 Transient 39.00 0
## 2683 0 Transient 39.00 0
## 2684 0 Transient 39.00 0
## 2685 0 Transient 67.00 0
## 2686 0 Transient 106.00 0
## 2687 0 Contract 36.00 0
## 2688 0 Contract 44.80 0
## 2689 0 Contract 69.93 0
## 2690 0 Transient 47.00 0
## 2691 0 Transient 75.00 0
## 2692 0 Transient 0.00 0
## 2693 0 Transient 54.00 1
## 2694 0 Contract 48.60 0
## 2695 0 Contract 48.60 0
## 2696 0 Transient 66.00 0
## 2697 0 Transient 36.00 0
## 2698 0 Transient-Party 52.20 0
## 2699 0 Contract 36.00 0
## 2700 0 Contract 36.00 0
## 2701 0 Contract 36.00 0
## 2702 0 Contract 36.00 0
## 2703 0 Transient 36.00 0
## 2704 0 Transient 43.20 0
## 2705 0 Transient 45.00 0
## 2706 0 Transient 66.00 1
## 2707 0 Transient 48.00 1
## 2708 0 Transient 45.00 0
## 2709 0 Transient 36.00 0
## 2710 0 Transient 49.20 1
## 2711 0 Transient-Party 72.50 0
## 2712 0 Transient 48.00 0
## 2713 0 Transient 58.00 0
## 2714 0 Transient-Party 72.50 0
## 2715 0 Transient 39.00 0
## 2716 0 Transient 56.00 0
## 2717 0 Transient 77.00 1
## 2718 0 Transient 70.20 0
## 2719 0 Transient 49.01 0
## 2720 0 Transient 48.00 1
## 2721 0 Transient 48.00 0
## 2722 0 Transient 77.40 0
## 2723 0 Transient 48.00 0
## 2724 0 Transient 63.76 0
## 2725 0 Transient 69.76 1
## 2726 0 Transient 63.76 0
## 2727 0 Transient 65.19 0
## 2728 0 Transient 48.00 0
## 2729 0 Transient 39.00 0
## 2730 0 Transient 48.00 1
## 2731 0 Transient 39.00 1
## 2732 0 Transient 35.10 0
## 2733 0 Transient 41.10 1
## 2734 0 Transient 48.00 0
## 2735 0 Transient 48.00 0
## 2736 0 Transient 48.00 0
## 2737 0 Transient 42.00 1
## 2738 0 Transient 48.00 0
## 2739 0 Transient 36.00 0
## 2740 0 Transient 36.00 0
## 2741 0 Transient 56.02 0
## 2742 0 Transient-Party 36.00 0
## 2743 0 Transient 76.00 1
## 2744 0 Transient 48.00 0
## 2745 0 Transient 56.00 0
## 2746 0 Transient 48.00 0
## 2747 0 Transient 36.00 0
## 2748 0 Transient 36.00 0
## 2749 0 Transient 56.00 0
## 2750 0 Transient 42.00 1
## 2751 0 Transient 42.00 1
## 2752 0 Transient 76.00 0
## 2753 0 Transient 54.00 1
## 2754 0 Transient 0.00 0
## 2755 0 Transient 36.00 0
## 2756 0 Transient 72.00 1
## 2757 0 Transient 48.00 0
## 2758 0 Transient-Party 41.45 0
## 2759 0 Transient-Party 47.45 1
## 2760 0 Transient 36.00 0
## 2761 0 Transient 47.12 0
## 2762 0 Transient 54.00 0
## 2763 0 Transient 45.66 0
## 2764 0 Transient 36.00 0
## 2765 0 Transient 37.40 0
## 2766 0 Transient 49.74 0
## 2767 0 Transient 0.00 0
## 2768 0 Transient 50.40 0
## 2769 0 Transient 36.00 0
## 2770 0 Transient 36.00 0
## 2771 0 Transient 36.00 0
## 2772 0 Transient 36.00 0
## 2773 0 Transient 36.00 0
## 2774 0 Transient 36.00 0
## 2775 0 Transient 36.00 0
## 2776 0 Transient 56.00 0
## 2777 0 Transient 72.00 1
## 2778 0 Transient 44.50 0
## 2779 0 Transient 49.00 0
## 2780 0 Transient 36.00 1
## 2781 0 Transient 48.00 0
## 2782 0 Transient 49.00 0
## 2783 0 Transient 36.00 0
## 2784 0 Transient 36.00 0
## 2785 0 Transient 36.00 0
## 2786 0 Transient 36.00 0
## 2787 0 Transient 58.00 0
## 2788 0 Transient-Party 36.00 0
## 2789 0 Transient 42.00 1
## 2790 0 Transient 36.00 0
## 2791 0 Transient 36.00 0
## 2792 0 Transient 36.00 1
## 2793 0 Transient 36.00 0
## 2794 0 Transient 36.00 0
## 2795 0 Transient 36.00 0
## 2796 0 Transient 36.00 0
## 2797 0 Transient 44.50 0
## 2798 0 Transient 36.00 0
## 2799 0 Transient 37.00 1
## 2800 0 Transient 36.00 0
## 2801 0 Transient 38.81 1
## 2802 0 Transient 36.00 0
## 2803 0 Transient 39.20 0
## 2804 0 Transient 36.00 0
## 2805 0 Transient 36.00 0
## 2806 0 Transient 36.00 1
## 2807 0 Transient 36.00 0
## 2808 0 Transient 49.00 0
## 2809 0 Transient 36.00 1
## 2810 0 Transient 36.00 1
## 2811 0 Transient 36.00 1
## 2812 0 Transient 36.00 0
## 2813 0 Transient 36.00 0
## 2814 0 Transient 36.00 0
## 2815 0 Transient 36.00 0
## 2816 0 Transient 36.00 0
## 2817 0 Transient 36.00 0
## 2818 0 Transient 88.00 0
## 2819 0 Transient 46.00 0
## 2820 0 Transient 114.00 1
## 2821 0 Transient 58.00 0
## 2822 0 Transient 36.00 0
## 2823 0 Transient 36.00 0
## 2824 0 Transient 48.00 0
## 2825 0 Transient 36.00 0
## 2826 0 Transient 69.00 0
## 2827 0 Transient 71.00 0
## 2828 0 Transient 34.43 0
## 2829 0 Transient 34.43 0
## 2830 0 Transient 51.84 0
## 2831 0 Transient 46.65 1
## 2832 0 Transient 37.29 0
## 2833 0 Transient 47.60 0
## 2834 0 Transient 34.97 0
## 2835 0 Transient 46.76 0
## 2836 0 Transient 25.00 0
## 2837 0 Transient 49.00 0
## 2838 0 Transient 39.00 0
## 2839 0 Transient 55.00 0
## 2840 0 Transient 44.10 0
## 2841 0 Transient 25.00 0
## 2842 0 Contract 55.04 0
## 2843 0 Transient 36.00 0
## 2844 0 Transient 56.16 0
## 2845 0 Transient 61.87 0
## 2846 0 Transient 24.80 0
## 2847 0 Transient 46.00 0
## 2848 0 Transient 48.00 0
## 2849 0 Transient 50.50 0
## 2850 0 Transient 29.00 0
## 2851 0 Transient 29.00 0
## 2852 0 Transient 69.43 0
## 2853 0 Transient-Party 40.00 0
## 2854 0 Transient-Party 40.00 0
## 2855 0 Transient-Party 40.00 0
## 2856 0 Transient-Party 40.00 0
## 2857 0 Transient-Party 40.00 0
## 2858 0 Transient-Party 40.00 0
## 2859 0 Transient-Party 40.00 0
## 2860 0 Transient 0.00 0
## 2861 0 Transient 46.00 1
## 2862 0 Transient 58.00 0
## 2863 0 Transient 42.00 1
## 2864 0 Transient 46.00 1
## 2865 0 Transient 48.00 1
## 2866 0 Transient 40.00 1
## 2867 0 Transient 43.20 0
## 2868 0 Transient-Party 48.00 0
## 2869 0 Transient 43.20 0
## 2870 0 Transient 33.30 0
## 2871 0 Transient 41.40 0
## 2872 0 Transient-Party 26.10 0
## 2873 0 Transient 35.00 0
## 2874 0 Transient 47.60 0
## 2875 0 Transient-Party 22.50 0
## 2876 0 Transient 48.90 0
## 2877 0 Transient 43.20 1
## 2878 0 Transient-Party 40.00 0
## 2879 0 Transient-Party 48.00 0
## 2880 0 Transient 48.00 0
## 2881 0 Transient-Party 48.00 0
## 2882 0 Transient 40.00 0
## 2883 0 Transient 48.00 0
## 2884 0 Transient-Party 40.00 0
## 2885 0 Transient-Party 40.00 0
## 2886 0 Transient 35.00 0
## 2887 0 Transient 59.00 0
## 2888 0 Transient 36.00 0
## 2889 0 Transient 44.10 0
## 2890 0 Contract 24.79 0
## 2891 0 Transient-Party 48.00 0
## 2892 0 Transient-Party 40.00 0
## 2893 0 Transient-Party 42.55 0
## 2894 0 Transient 35.00 0
## 2895 0 Transient 40.00 0
## 2896 0 Transient 40.00 0
## 2897 0 Transient 105.50 0
## 2898 0 Transient 111.50 1
## 2899 0 Transient-Party 36.00 0
## 2900 0 Contract 54.99 0
## 2901 0 Transient-Party 43.20 0
## 2902 0 Transient 44.10 0
## 2903 0 Transient 36.00 0
## 2904 0 Transient 70.00 0
## 2905 0 Transient 93.00 0
## 2906 0 Transient 26.10 0
## 2907 0 Transient 54.40 0
## 2908 0 Transient 57.00 0
## 2909 0 Transient 77.30 1
## 2910 0 Contract 24.80 0
## 2911 0 Transient 62.50 0
## 2912 0 Transient 62.50 0
## 2913 0 Transient-Party 40.00 0
## 2914 0 Transient-Party 52.20 0
## 2915 0 Transient-Party 36.00 0
## 2916 0 Transient-Party 36.00 0
## 2917 0 Transient-Party 36.00 0
## 2918 0 Transient-Party 40.00 0
## 2919 0 Transient-Party 52.20 1
## 2920 0 Transient-Party 0.00 0
## 2921 0 Transient 52.40 1
## 2922 0 Transient 30.00 1
## 2923 0 Transient 32.62 0
## 2924 0 Transient 40.50 0
## 2925 0 Transient 49.00 0
## 2926 0 Transient 32.62 0
## 2927 0 Transient 40.50 0
## 2928 0 Transient 78.00 0
## 2929 0 Transient 104.00 1
## 2930 0 Transient 94.00 1
## 2931 0 Transient 62.16 1
## 2932 0 Transient 56.16 0
## 2933 0 Transient 60.30 0
## 2934 0 Transient 38.47 0
## 2935 0 Transient-Party 40.00 0
## 2936 0 Transient-Party 40.00 0
## 2937 0 Transient-Party 40.00 0
## 2938 0 Transient 66.00 0
## 2939 0 Transient-Party 36.00 0
## 2940 0 Transient 36.00 0
## 2941 0 Transient 32.40 0
## 2942 0 Transient-Party 36.00 0
## 2943 0 Transient-Party 36.00 0
## 2944 0 Transient-Party 40.00 0
## 2945 0 Transient-Party 40.00 0
## 2946 0 Transient-Party 36.00 0
## 2947 0 Transient-Party 42.00 0
## 2948 0 Transient-Party 36.00 0
## 2949 0 Transient-Party 40.00 0
## 2950 0 Transient-Party 40.00 0
## 2951 0 Transient-Party 36.00 0
## 2952 0 Transient-Party 40.00 0
## 2953 0 Transient-Party 40.00 0
## 2954 0 Transient-Party 36.00 0
## 2955 0 Transient-Party 36.75 1
## 2956 0 Transient 30.00 0
## 2957 0 Transient 66.00 0
## 2958 0 Transient 54.88 0
## 2959 0 Transient 79.00 0
## 2960 0 Transient 94.00 1
## 2961 0 Transient 79.00 0
## 2962 0 Transient 54.00 0
## 2963 0 Transient 74.00 1
## 2964 0 Transient 71.33 0
## 2965 0 Transient-Party 48.00 0
## 2966 0 Transient-Party 43.20 0
## 2967 0 Transient-Party 36.00 0
## 2968 0 Transient-Party 48.00 0
## 2969 0 Transient 72.29 0
## 2970 0 Transient-Party 36.00 0
## 2971 0 Transient-Party 43.20 0
## 2972 0 Transient-Party 36.00 0
## 2973 0 Transient 63.92 0
## 2974 0 Contract 0.00 0
## 2975 0 Transient 49.00 0
## 2976 0 Transient 55.00 1
## 2977 0 Transient 40.00 0
## 2978 0 Transient 108.00 1
## 2979 0 Transient 35.00 0
## 2980 0 Group 48.00 0
## 2981 0 Transient 88.00 0
## 2982 0 Transient 35.00 0
## 2983 0 Transient 77.23 1
## 2984 0 Transient-Party 36.00 0
## 2985 0 Transient-Party 36.00 0
## 2986 0 Contract 56.16 0
## 2987 0 Contract 56.16 0
## 2988 0 Transient 52.20 0
## 2989 0 Transient-Party 48.00 0
## 2990 0 Transient 61.20 1
## 2991 0 Transient 55.04 0
## 2992 0 Transient 58.00 0
## 2993 0 Transient-Party 40.00 0
## 2994 0 Transient-Party 40.00 0
## 2995 0 Transient-Party 40.00 0
## 2996 0 Transient 47.70 0
## 2997 0 Transient-Party 40.00 0
## 2998 0 Transient 73.20 1
## 2999 0 Transient 79.00 1
## 3000 0 Transient 37.00 1
## 3001 0 Transient-Party 40.00 0
## 3002 0 Transient-Party 40.00 0
## 3003 0 Transient-Party 40.50 1
## 3004 0 Transient-Party 40.00 0
## 3005 0 Transient-Party 36.00 0
## 3006 0 Transient-Party 40.00 0
## 3007 0 Transient 53.00 0
## 3008 0 Transient 53.00 0
## 3009 0 Transient 27.90 0
## 3010 0 Transient 73.00 0
## 3011 0 Transient-Party 40.00 0
## 3012 0 Contract 48.00 0
## 3013 0 Transient 85.50 1
## 3014 0 Transient 53.00 0
## 3015 0 Contract 48.00 0
## 3016 0 Transient-Party 36.00 0
## 3017 0 Transient-Party 40.00 0
## 3018 0 Transient-Party 40.00 0
## 3019 0 Transient-Party 40.00 0
## 3020 0 Transient 53.00 0
## 3021 0 Transient-Party 40.00 0
## 3022 0 Transient-Party 43.20 0
## 3023 0 Transient 27.90 0
## 3024 0 Transient-Party 40.00 0
## 3025 0 Transient-Party 40.00 0
## 3026 0 Transient-Party 40.00 0
## 3027 0 Transient 53.00 0
## 3028 0 Transient 53.00 0
## 3029 0 Transient 59.00 1
## 3030 0 Contract 63.00 0
## 3031 0 Transient 66.64 0
## 3032 0 Transient 49.59 0
## 3033 0 Transient 36.00 0
## 3034 0 Contract 53.00 0
## 3035 0 Transient-Party 68.00 0
## 3036 0 Transient-Party 40.00 0
## 3037 0 Transient-Party 40.00 0
## 3038 0 Transient-Party 36.00 0
## 3039 0 Transient-Party 40.00 0
## 3040 0 Transient-Party 40.00 0
## 3041 0 Transient-Party 40.00 0
## 3042 0 Transient-Party 40.00 0
## 3043 0 Transient-Party 40.00 0
## 3044 0 Transient-Party 52.20 0
## 3045 0 Transient-Party 40.00 0
## 3046 0 Transient 66.00 1
## 3047 0 Transient-Party 40.00 0
## 3048 0 Transient-Party 40.00 0
## 3049 0 Transient-Party 40.00 0
## 3050 0 Transient-Party 40.00 0
## 3051 0 Transient-Party 36.00 0
## 3052 0 Transient-Party 40.00 0
## 3053 0 Transient-Party 40.00 0
## 3054 0 Transient-Party 40.00 0
## 3055 0 Transient-Party 40.00 0
## 3056 0 Transient-Party 68.00 0
## 3057 0 Transient-Party 78.00 0
## 3058 0 Transient-Party 40.00 0
## 3059 0 Transient-Party 40.00 0
## 3060 0 Transient 104.00 1
## 3061 0 Transient-Party 78.00 0
## 3062 0 Transient-Party 48.00 0
## 3063 0 Transient-Party 40.00 1
## 3064 0 Transient 77.10 1
## 3065 0 Transient-Party 36.00 0
## 3066 0 Transient-Party 52.20 0
## 3067 0 Transient-Party 52.20 0
## 3068 0 Transient-Party 43.20 0
## 3069 0 Transient-Party 36.00 0
## 3070 0 Transient-Party 0.00 0
## 3071 0 Transient-Party 0.00 0
## 3072 0 Transient-Party 43.20 0
## 3073 0 Transient 78.00 0
## 3074 0 Transient 52.20 0
## 3075 0 Transient 78.00 0
## 3076 0 Transient 78.00 0
## 3077 0 Transient 65.25 0
## 3078 0 Transient 51.00 0
## 3079 0 Transient-Party 58.20 1
## 3080 0 Transient 40.93 0
## 3081 0 Transient 63.47 0
## 3082 0 Transient 67.99 1
## 3083 0 Transient 62.83 0
## 3084 0 Transient 55.10 0
## 3085 0 Transient 58.00 0
## 3086 0 Transient 72.50 1
## 3087 0 Transient 65.23 0
## 3088 0 Transient 45.64 0
## 3089 0 Transient 29.16 0
## 3090 0 Transient 0.00 0
## 3091 0 Transient 0.00 0
## 3092 0 Transient 0.00 0
## 3093 0 Transient 39.00 0
## 3094 0 Transient 48.00 0
## 3095 0 Transient 48.00 0
## 3096 0 Transient 47.40 0
## 3097 0 Transient 32.40 0
## 3098 0 Transient 76.00 0
## 3099 0 Transient 34.51 0
## 3100 0 Transient 32.40 0
## 3101 0 Transient 0.00 1
## 3102 0 Transient 54.00 1
## 3103 0 Transient 28.10 0
## 3104 0 Transient 61.20 0
## 3105 0 Transient 36.00 1
## 3106 0 Transient 4.00 0
## 3107 65 Transient-Party 69.00 0
## 3108 65 Transient-Party 69.00 0
## 3109 65 Transient-Party 69.00 0
## 3110 0 Transient-Party 73.00 0
## 3111 0 Transient-Party 69.00 0
## 3112 65 Transient-Party 69.00 0
## 3113 65 Transient-Party 69.00 0
## 3114 65 Transient-Party 69.00 0
## 3115 0 Transient-Party 49.00 0
## 3116 65 Transient-Party 69.00 0
## 3117 65 Transient-Party 69.00 0
## 3118 65 Transient-Party 69.00 0
## 3119 65 Transient-Party 71.00 0
## 3120 65 Transient-Party 69.00 0
## 3121 65 Transient-Party 18.50 0
## 3122 65 Transient-Party 69.00 0
## 3123 0 Transient-Party 69.00 0
## 3124 65 Transient-Party 69.00 0
## 3125 65 Transient-Party 69.00 0
## 3126 65 Transient-Party 69.00 0
## 3127 0 Transient-Party 69.00 0
## 3128 0 Transient-Party 69.00 0
## 3129 65 Transient-Party 69.00 0
## 3130 0 Transient 73.00 0
## 3131 0 Transient-Party 69.00 0
## 3132 65 Transient-Party 69.00 0
## 3133 65 Transient-Party 69.00 0
## 3134 0 Transient 26.33 0
## 3135 0 Transient 47.12 0
## 3136 0 Transient 26.10 0
## 3137 0 Transient 31.00 0
## 3138 0 Transient 86.00 0
## 3139 0 Transient 98.00 1
## 3140 0 Transient 77.60 0
## 3141 0 Transient 32.40 0
## 3142 0 Transient 77.60 0
## 3143 0 Contract 66.32 0
## 3144 0 Transient-Party 64.00 0
## 3145 0 Transient-Party 64.00 0
## 3146 0 Transient-Party 64.00 0
## 3147 0 Transient-Party 64.00 0
## 3148 0 Transient 32.40 0
## 3149 0 Transient 32.40 0
## 3150 0 Transient-Party 64.00 0
## 3151 0 Transient-Party 64.00 0
## 3152 0 Transient-Party 48.00 0
## 3153 0 Transient 36.45 0
## 3154 0 Transient 32.40 0
## 3155 0 Transient 32.40 0
## 3156 0 Transient-Party 64.00 0
## 3157 0 Transient-Party 64.00 0
## 3158 0 Transient-Party 64.00 0
## 3159 0 Transient 58.32 0
## 3160 0 Transient 32.40 0
## 3161 0 Transient 32.40 0
## 3162 0 Transient-Party 64.00 0
## 3163 0 Transient-Party 64.00 0
## 3164 0 Transient-Party 64.00 0
## 3165 0 Transient 37.00 1
## 3166 0 Transient-Party 64.00 0
## 3167 0 Transient-Party 64.00 0
## 3168 0 Transient-Party 64.00 0
## 3169 0 Transient 32.40 0
## 3170 0 Transient 32.40 0
## 3171 0 Transient 32.40 0
## 3172 0 Transient 29.16 0
## 3173 0 Transient-Party 64.00 0
## 3174 0 Transient-Party 64.00 0
## 3175 0 Transient-Party 64.00 0
## 3176 0 Transient-Party 64.00 0
## 3177 0 Transient 32.40 0
## 3178 0 Transient-Party 64.00 0
## 3179 0 Transient-Party 48.00 0
## 3180 0 Transient-Party 64.00 0
## 3181 0 Transient 66.00 0
## 3182 0 Transient-Party 0.00 0
## 3183 0 Transient 22.50 0
## 3184 0 Transient-Party 32.00 0
## 3185 0 Transient-Party 32.00 0
## 3186 0 Transient-Party 32.00 0
## 3187 0 Transient-Party 32.00 0
## 3188 0 Transient-Party 32.00 0
## 3189 0 Transient-Party 32.00 0
## 3190 0 Transient-Party 32.00 0
## 3191 0 Transient-Party 32.00 0
## 3192 0 Transient-Party 32.00 0
## 3193 0 Transient-Party 32.00 0
## 3194 0 Transient-Party 44.00 0
## 3195 0 Transient-Party 32.00 0
## 3196 0 Transient-Party 32.00 0
## 3197 0 Transient-Party 56.00 0
## 3198 0 Transient-Party 32.00 0
## 3199 0 Transient-Party 32.00 0
## 3200 0 Transient-Party 32.00 0
## 3201 0 Transient-Party 32.00 0
## 3202 0 Transient-Party 32.00 0
## 3203 0 Transient-Party 32.00 0
## 3204 0 Transient-Party 32.00 0
## 3205 0 Transient-Party 32.00 0
## 3206 0 Transient 73.50 1
## 3207 0 Transient-Party 56.00 0
## 3208 0 Transient 54.05 0
## 3209 0 Transient 73.50 1
## 3210 0 Transient-Party 32.00 0
## 3211 0 Transient-Party 32.00 0
## 3212 0 Transient-Party 32.00 0
## 3213 0 Transient-Party 32.00 0
## 3214 0 Transient-Party 32.00 0
## 3215 0 Transient-Party 32.00 0
## 3216 0 Transient-Party 32.00 0
## 3217 0 Transient-Party 32.00 0
## 3218 0 Transient-Party 44.00 0
## 3219 0 Transient-Party 32.00 0
## 3220 0 Transient-Party 32.00 0
## 3221 0 Transient-Party 32.00 0
## 3222 0 Transient 76.00 0
## 3223 0 Transient-Party 56.00 0
## 3224 0 Transient-Party 32.00 0
## 3225 0 Transient-Party 32.00 0
## total_of_special_requests reservation_status reservation_status_date
## 1 0 Check-Out 2015-07-01
## 2 0 Check-Out 2015-07-01
## 3 0 Check-Out 2015-07-02
## 4 0 Check-Out 2015-07-02
## 5 1 Check-Out 2015-07-03
## 6 1 Check-Out 2015-07-03
## 7 0 Check-Out 2015-07-03
## 8 1 Check-Out 2015-07-03
## 9 1 Canceled 2015-05-06
## 10 0 Canceled 2015-04-22
## 11 0 Canceled 2015-06-23
## 12 0 Check-Out 2015-07-05
## 13 3 Check-Out 2015-07-05
## 14 1 Check-Out 2015-07-05
## 15 0 Check-Out 2015-07-05
## 16 3 Check-Out 2015-07-05
## 17 0 Check-Out 2015-07-05
## 18 0 Check-Out 2015-07-02
## 19 0 Check-Out 2015-07-02
## 20 1 Check-Out 2015-07-05
## 21 1 Check-Out 2015-07-06
## 22 1 Check-Out 2015-07-07
## 23 1 Check-Out 2015-07-07
## 24 1 Check-Out 2015-07-07
## 25 1 Check-Out 2015-07-01
## 26 0 Check-Out 2015-07-08
## 27 0 Check-Out 2015-07-08
## 28 2 Canceled 2015-05-11
## 29 0 Check-Out 2015-07-08
## 30 1 Check-Out 2015-07-08
## 31 2 Check-Out 2015-07-15
## 32 0 Check-Out 2015-07-16
## 33 2 Canceled 2015-05-29
## 34 0 Check-Out 2015-07-08
## 35 1 Canceled 2015-05-19
## 36 1 Canceled 2015-06-19
## 37 0 Check-Out 2015-07-06
## 38 1 Check-Out 2015-07-06
## 39 0 Canceled 2015-05-23
## 40 1 Check-Out 2015-07-07
## 41 0 Canceled 2015-05-18
## 42 0 Check-Out 2015-07-07
## 43 0 Check-Out 2015-07-07
## 44 1 Check-Out 2015-07-07
## 45 2 Check-Out 2015-07-09
## 46 0 Canceled 2015-06-02
## 47 1 Check-Out 2015-07-09
## 48 2 Check-Out 2015-07-09
## 49 0 Check-Out 2015-07-09
## 50 1 Check-Out 2015-07-09
## 51 2 Check-Out 2015-07-09
## 52 0 Check-Out 2015-07-13
## 53 0 Check-Out 2015-07-16
## 54 0 Check-Out 2015-07-03
## 55 0 Check-Out 2015-07-03
## 56 2 Check-Out 2015-07-03
## 57 0 Check-Out 2015-07-03
## 58 2 Check-Out 2015-07-03
## 59 0 Check-Out 2015-07-03
## 60 1 Check-Out 2015-07-04
## 61 0 Check-Out 2015-07-04
## 62 2 Check-Out 2015-07-04
## 63 1 Check-Out 2015-07-05
## 64 0 Check-Out 2015-07-05
## 65 2 Canceled 2015-06-29
## 66 0 Check-Out 2015-07-05
## 67 0 Check-Out 2015-07-05
## 68 0 Check-Out 2015-07-05
## 69 2 Canceled 2015-06-16
## 70 2 Canceled 2015-06-18
## 71 1 Canceled 2015-07-03
## 72 1 Canceled 2015-06-12
## 73 0 Check-Out 2015-07-05
## 74 0 Check-Out 2015-07-05
## 75 0 Canceled 2015-06-09
## 76 0 Check-Out 2015-07-06
## 77 0 Canceled 2015-05-26
## 78 0 Check-Out 2015-07-07
## 79 0 Check-Out 2015-07-07
## 80 0 Check-Out 2015-07-11
## 81 0 Check-Out 2015-07-12
## 82 0 Canceled 2015-05-19
## 83 0 Check-Out 2015-07-13
## 84 1 Canceled 2015-06-09
## 85 0 Check-Out 2015-07-13
## 86 0 Check-Out 2015-07-17
## 87 1 Check-Out 2015-07-17
## 88 2 Canceled 2015-04-15
## 89 0 Check-Out 2015-07-04
## 90 2 Check-Out 2015-07-04
## 91 1 Check-Out 2015-07-04
## 92 0 Check-Out 2015-07-04
## 93 0 Check-Out 2015-07-04
## 94 2 Check-Out 2015-07-04
## 95 1 Canceled 2015-05-26
## 96 1 Canceled 2015-06-29
## 97 1 Canceled 2015-05-13
## 98 1 Check-Out 2015-07-10
## 99 2 Check-Out 2015-07-10
## 100 0 Check-Out 2015-07-10
## 101 1 Check-Out 2015-07-07
## 102 0 Check-Out 2015-07-07
## 103 2 Check-Out 2015-07-10
## 104 2 Check-Out 2015-07-10
## 105 1 Check-Out 2015-07-11
## 106 0 Canceled 2015-06-09
## 107 1 Canceled 2015-05-20
## 108 1 Canceled 2015-04-22
## 109 1 Check-Out 2015-07-11
## 110 2 Check-Out 2015-07-11
## 111 2 Check-Out 2015-07-11
## 112 2 Check-Out 2015-07-11
## 113 0 Check-Out 2015-07-11
## 114 1 Check-Out 2015-07-12
## 115 1 Canceled 2015-05-12
## 116 1 Check-Out 2015-07-12
## 117 1 Check-Out 2015-07-14
## 118 1 Check-Out 2015-07-14
## 119 1 Check-Out 2015-07-14
## 120 0 Check-Out 2015-07-05
## 121 0 Check-Out 2015-07-05
## 122 0 Canceled 2015-05-29
## 123 0 No-Show 2015-07-04
## 124 2 Canceled 2015-05-13
## 125 0 Canceled 2015-06-16
## 126 1 Check-Out 2015-07-05
## 127 0 Check-Out 2015-07-05
## 128 1 Check-Out 2015-07-06
## 129 0 Check-Out 2015-07-06
## 130 2 Check-Out 2015-07-06
## 131 1 Check-Out 2015-07-06
## 132 1 Check-Out 2015-07-06
## 133 0 Canceled 2015-07-01
## 134 0 Check-Out 2015-07-06
## 135 0 Check-Out 2015-07-06
## 136 0 Check-Out 2015-07-06
## 137 0 Check-Out 2015-07-06
## 138 0 Check-Out 2015-07-06
## 139 0 Canceled 2015-07-01
## 140 1 Check-Out 2015-07-06
## 141 0 Check-Out 2015-07-07
## 142 0 Check-Out 2015-07-07
## 143 2 Check-Out 2015-07-09
## 144 2 Check-Out 2015-07-10
## 145 0 Check-Out 2015-07-10
## 146 0 Check-Out 2015-07-10
## 147 0 Check-Out 2015-07-11
## 148 0 Check-Out 2015-07-11
## 149 0 Canceled 2015-06-17
## 150 0 Canceled 2015-05-01
## 151 1 Check-Out 2015-07-12
## 152 1 Check-Out 2015-07-12
## 153 1 Canceled 2015-03-30
## 154 0 Check-Out 2015-07-12
## 155 1 Check-Out 2015-07-14
## 156 2 Check-Out 2015-07-15
## 157 1 Check-Out 2015-07-15
## 158 0 Check-Out 2015-07-16
## 159 0 Check-Out 2015-07-19
## 160 0 Check-Out 2015-07-19
## 161 0 Check-Out 2015-07-11
## 162 2 Check-Out 2015-07-10
## 163 2 Check-Out 2015-07-10
## 164 1 Check-Out 2015-07-10
## 165 0 Check-Out 2015-07-10
## 166 2 Check-Out 2015-07-10
## 167 2 Check-Out 2015-07-10
## 168 2 Check-Out 2015-07-06
## 169 0 Check-Out 2015-07-06
## 170 0 Check-Out 2015-07-07
## 171 2 Check-Out 2015-07-08
## 172 1 Check-Out 2015-07-08
## 173 1 Check-Out 2015-07-09
## 174 0 Canceled 2015-06-03
## 175 0 Check-Out 2015-07-10
## 176 1 Check-Out 2015-07-10
## 177 0 Check-Out 2015-07-11
## 178 0 Check-Out 2015-07-11
## 179 1 Check-Out 2015-07-12
## 180 0 Check-Out 2015-07-12
## 181 0 Check-Out 2015-07-13
## 182 1 Canceled 2015-06-26
## 183 0 Check-Out 2015-07-13
## 184 1 Check-Out 2015-07-14
## 185 0 Canceled 2015-05-14
## 186 1 Check-Out 2015-07-16
## 187 1 Check-Out 2015-07-16
## 188 1 Check-Out 2015-07-16
## 189 2 Check-Out 2015-07-16
## 190 0 Check-Out 2015-07-17
## 191 0 Check-Out 2015-07-20
## 192 0 Check-Out 2015-07-20
## 193 0 Check-Out 2015-07-13
## 194 1 Canceled 2015-05-07
## 195 2 Check-Out 2015-07-10
## 196 1 Check-Out 2015-07-10
## 197 1 Check-Out 2015-07-07
## 198 1 Check-Out 2015-07-07
## 199 3 Check-Out 2015-07-08
## 200 0 Check-Out 2015-07-08
## 201 3 Check-Out 2015-07-08
## 202 1 Check-Out 2015-07-11
## 203 2 Check-Out 2015-07-11
## 204 1 Check-Out 2015-07-11
## 205 0 Check-Out 2015-07-11
## 206 0 Canceled 2015-05-28
## 207 2 Canceled 2015-04-13
## 208 0 Check-Out 2015-07-14
## 209 0 Canceled 2015-03-25
## 210 1 Check-Out 2015-07-21
## 211 1 Check-Out 2015-07-11
## 212 2 Check-Out 2015-07-12
## 213 1 Check-Out 2015-07-12
## 214 1 Canceled 2015-05-28
## 215 1 Check-Out 2015-07-12
## 216 1 Check-Out 2015-07-12
## 217 1 Canceled 2015-06-29
## 218 0 Check-Out 2015-07-09
## 219 1 Canceled 2015-07-08
## 220 1 Canceled 2015-07-08
## 221 1 Check-Out 2015-07-10
## 222 1 Canceled 2015-05-28
## 223 1 Check-Out 2015-07-14
## 224 1 Canceled 2015-04-15
## 225 1 Check-Out 2015-07-15
## 226 0 Check-Out 2015-07-15
## 227 0 Check-Out 2015-07-15
## 228 1 Check-Out 2015-07-16
## 229 3 Check-Out 2015-07-17
## 230 2 Check-Out 2015-07-17
## 231 3 Check-Out 2015-07-10
## 232 1 Check-Out 2015-07-11
## 233 0 Check-Out 2015-07-11
## 234 0 Canceled 2015-06-02
## 235 1 Canceled 2015-06-16
## 236 0 Canceled 2015-06-16
## 237 2 Check-Out 2015-07-12
## 238 0 Canceled 2015-06-23
## 239 0 Canceled 2015-06-27
## 240 1 Check-Out 2015-07-13
## 241 1 Check-Out 2015-07-14
## 242 0 Check-Out 2015-07-14
## 243 0 Check-Out 2015-07-16
## 244 0 Check-Out 2015-07-16
## 245 0 Check-Out 2015-07-16
## 246 0 Check-Out 2015-07-16
## 247 1 Check-Out 2015-07-16
## 248 2 Canceled 2015-05-13
## 249 0 Check-Out 2015-07-11
## 250 0 Check-Out 2015-07-12
## 251 1 Check-Out 2015-07-12
## 252 0 Check-Out 2015-07-12
## 253 1 Check-Out 2015-07-12
## 254 1 Check-Out 2015-07-12
## 255 1 Check-Out 2015-07-12
## 256 2 Check-Out 2015-07-12
## 257 1 Check-Out 2015-07-12
## 258 1 Check-Out 2015-07-13
## 259 1 Check-Out 2015-07-13
## 260 2 Check-Out 2015-07-13
## 261 1 Check-Out 2015-07-14
## 262 1 Check-Out 2015-07-14
## 263 0 Canceled 2015-06-29
## 264 2 Check-Out 2015-07-15
## 265 3 Check-Out 2015-07-15
## 266 0 Check-Out 2015-07-15
## 267 2 Check-Out 2015-07-17
## 268 1 Check-Out 2015-07-17
## 269 2 Check-Out 2015-07-17
## 270 2 Check-Out 2015-07-17
## 271 0 Check-Out 2015-07-17
## 272 3 Check-Out 2015-07-17
## 273 2 Check-Out 2015-07-17
## 274 0 Check-Out 2015-07-18
## 275 2 Check-Out 2015-07-19
## 276 0 Check-Out 2015-07-20
## 277 0 Check-Out 2015-07-21
## 278 0 Check-Out 2015-07-23
## 279 3 Check-Out 2015-07-17
## 280 1 Check-Out 2015-07-17
## 281 0 Canceled 2015-05-29
## 282 0 Check-Out 2015-07-16
## 283 1 Check-Out 2015-07-17
## 284 0 Canceled 2015-06-08
## 285 1 Check-Out 2015-07-17
## 286 2 Check-Out 2015-07-17
## 287 1 Check-Out 2015-07-18
## 288 1 Canceled 2015-04-22
## 289 1 Check-Out 2015-07-15
## 290 0 Check-Out 2015-07-15
## 291 0 Check-Out 2015-07-15
## 292 0 Check-Out 2015-07-12
## 293 1 Check-Out 2015-07-12
## 294 0 Check-Out 2015-07-12
## 295 1 Check-Out 2015-07-12
## 296 0 Check-Out 2015-07-13
## 297 0 Check-Out 2015-07-13
## 298 1 Check-Out 2015-07-13
## 299 0 Check-Out 2015-07-14
## 300 0 Check-Out 2015-07-14
## 301 0 Check-Out 2015-07-18
## 302 0 Check-Out 2015-07-18
## 303 2 Canceled 2015-05-19
## 304 0 Check-Out 2015-07-19
## 305 0 Check-Out 2015-07-21
## 306 1 Check-Out 2015-07-18
## 307 0 Check-Out 2015-07-18
## 308 0 Check-Out 2015-07-13
## 309 2 Check-Out 2015-07-13
## 310 2 Check-Out 2015-07-18
## 311 2 Canceled 2015-05-12
## 312 0 Check-Out 2015-07-19
## 313 1 Check-Out 2015-07-19
## 314 1 Check-Out 2015-07-12
## 315 1 Check-Out 2015-07-19
## 316 1 Canceled 2015-06-29
## 317 0 Check-Out 2015-07-19
## 318 2 Check-Out 2015-07-19
## 319 0 Check-Out 2015-07-19
## 320 0 Check-Out 2015-07-19
## 321 0 Canceled 2015-07-03
## 322 1 Check-Out 2015-07-19
## 323 2 Check-Out 2015-07-19
## 324 1 Canceled 2015-06-19
## 325 2 Check-Out 2015-07-21
## 326 1 Check-Out 2015-07-21
## 327 0 Check-Out 2015-07-23
## 328 1 Check-Out 2015-07-23
## 329 1 No-Show 2015-07-12
## 330 0 Check-Out 2015-07-19
## 331 0 Check-Out 2015-07-13
## 332 1 Check-Out 2015-07-14
## 333 0 Check-Out 2015-07-14
## 334 0 Check-Out 2015-07-14
## 335 1 Check-Out 2015-07-14
## 336 1 Check-Out 2015-07-14
## 337 0 Check-Out 2015-07-15
## 338 3 Check-Out 2015-07-15
## 339 0 Canceled 2015-06-22
## 340 0 Check-Out 2015-07-16
## 341 2 Check-Out 2015-07-16
## 342 1 Check-Out 2015-07-16
## 343 0 Check-Out 2015-07-17
## 344 0 No-Show 2015-07-12
## 345 1 Check-Out 2015-07-17
## 346 0 Check-Out 2015-07-17
## 347 0 Check-Out 2015-07-20
## 348 2 Check-Out 2015-07-20
## 349 1 Canceled 2015-05-13
## 350 0 Check-Out 2015-07-20
## 351 3 Check-Out 2015-07-15
## 352 1 Check-Out 2015-07-15
## 353 0 Check-Out 2015-07-15
## 354 3 Check-Out 2015-07-15
## 355 0 Check-Out 2015-07-15
## 356 2 Check-Out 2015-07-15
## 357 2 Check-Out 2015-07-15
## 358 0 Canceled 2015-06-18
## 359 0 Check-Out 2015-07-16
## 360 1 Check-Out 2015-07-16
## 361 0 Check-Out 2015-07-16
## 362 1 Check-Out 2015-07-16
## 363 1 Check-Out 2015-07-16
## 364 0 Check-Out 2015-07-17
## 365 0 Canceled 2015-06-24
## 366 1 Canceled 2015-03-05
## 367 2 Check-Out 2015-07-18
## 368 0 Canceled 2015-05-23
## 369 0 Check-Out 2015-07-18
## 370 1 Canceled 2015-06-22
## 371 0 Check-Out 2015-07-18
## 372 0 Canceled 2015-06-01
## 373 2 Check-Out 2015-07-18
## 374 1 Check-Out 2015-07-18
## 375 2 Canceled 2015-04-24
## 376 0 Canceled 2015-05-12
## 377 0 Check-Out 2015-07-19
## 378 2 Check-Out 2015-07-19
## 379 2 Check-Out 2015-07-20
## 380 1 Check-Out 2015-07-20
## 381 2 Check-Out 2015-07-20
## 382 1 Canceled 2015-04-15
## 383 3 Check-Out 2015-07-14
## 384 0 Check-Out 2015-07-17
## 385 0 Check-Out 2015-07-21
## 386 2 Check-Out 2015-07-22
## 387 0 Canceled 2015-07-03
## 388 0 Check-Out 2015-07-15
## 389 1 Check-Out 2015-07-15
## 390 1 Check-Out 2015-07-16
## 391 2 Canceled 2015-05-27
## 392 1 Check-Out 2015-07-18
## 393 2 Check-Out 2015-07-19
## 394 0 Check-Out 2015-07-19
## 395 1 Check-Out 2015-07-20
## 396 2 Check-Out 2015-07-20
## 397 2 Check-Out 2015-07-20
## 398 1 Canceled 2015-04-06
## 399 2 Check-Out 2015-07-21
## 400 1 Check-Out 2015-07-21
## 401 1 Canceled 2015-04-11
## 402 1 Canceled 2015-04-11
## 403 1 Check-Out 2015-07-23
## 404 0 Check-Out 2015-07-25
## 405 2 Check-Out 2015-07-28
## 406 2 Check-Out 2015-07-28
## 407 3 Check-Out 2015-07-29
## 408 0 Check-Out 2015-07-15
## 409 0 Canceled 2015-07-03
## 410 0 Canceled 2015-06-27
## 411 0 Check-Out 2015-07-21
## 412 0 Canceled 2015-06-25
## 413 0 Check-Out 2015-07-23
## 414 0 Check-Out 2015-07-17
## 415 0 Check-Out 2015-07-17
## 416 0 Check-Out 2015-07-17
## 417 0 Check-Out 2015-07-17
## 418 0 Check-Out 2015-07-17
## 419 1 Check-Out 2015-07-24
## 420 0 Check-Out 2015-07-17
## 421 0 Check-Out 2015-07-17
## 422 0 Canceled 2015-07-13
## 423 0 Check-Out 2015-07-17
## 424 0 Check-Out 2015-07-17
## 425 0 Check-Out 2015-07-17
## 426 0 Check-Out 2015-07-17
## 427 0 Check-Out 2015-07-17
## 428 0 Check-Out 2015-07-17
## 429 0 Check-Out 2015-07-17
## 430 0 Check-Out 2015-07-17
## 431 0 Check-Out 2015-07-17
## 432 0 Check-Out 2015-07-17
## 433 0 Check-Out 2015-07-17
## 434 0 Check-Out 2015-07-17
## 435 1 Canceled 2015-07-02
## 436 1 Check-Out 2015-07-18
## 437 0 Check-Out 2015-07-17
## 438 0 Canceled 2015-06-05
## 439 0 Canceled 2015-07-16
## 440 1 Check-Out 2015-07-17
## 441 0 Check-Out 2015-07-18
## 442 1 Canceled 2015-07-02
## 443 1 Check-Out 2015-07-18
## 444 1 Check-Out 2015-07-18
## 445 0 Check-Out 2015-07-19
## 446 0 Canceled 2015-07-13
## 447 0 Canceled 2015-06-19
## 448 0 Canceled 2015-06-30
## 449 1 Check-Out 2015-07-19
## 450 1 Check-Out 2015-07-21
## 451 0 Canceled 2015-07-07
## 452 1 Check-Out 2015-07-21
## 453 1 Check-Out 2015-07-20
## 454 0 Canceled 2015-06-13
## 455 1 Check-Out 2015-07-22
## 456 0 Canceled 2015-06-11
## 457 0 Check-Out 2015-07-23
## 458 0 Check-Out 2015-07-24
## 459 0 Check-Out 2015-07-30
## 460 1 Check-Out 2015-07-17
## 461 1 Check-Out 2015-07-19
## 462 2 Check-Out 2015-07-19
## 463 0 Check-Out 2015-07-19
## 464 0 Check-Out 2015-07-19
## 465 1 Canceled 2015-07-06
## 466 1 Canceled 2015-07-13
## 467 0 Check-Out 2015-07-19
## 468 1 No-Show 2015-07-17
## 469 0 Check-Out 2015-07-19
## 470 0 Check-Out 2015-07-19
## 471 0 Check-Out 2015-07-19
## 472 1 Check-Out 2015-07-19
## 473 0 No-Show 2015-07-17
## 474 1 Canceled 2015-07-04
## 475 0 Check-Out 2015-07-22
## 476 0 Check-Out 2015-07-22
## 477 0 Check-Out 2015-07-22
## 478 1 Check-Out 2015-07-22
## 479 0 Check-Out 2015-07-22
## 480 0 Check-Out 2015-07-22
## 481 1 Check-Out 2015-07-22
## 482 0 Check-Out 2015-07-22
## 483 1 Check-Out 2015-07-22
## 484 0 Check-Out 2015-07-23
## 485 0 Check-Out 2015-07-24
## 486 2 Check-Out 2015-07-24
## 487 0 Canceled 2015-06-24
## 488 3 Check-Out 2015-07-24
## 489 2 Check-Out 2015-07-24
## 490 0 Check-Out 2015-07-24
## 491 3 Check-Out 2015-07-24
## 492 2 Check-Out 2015-07-25
## 493 2 Check-Out 2015-07-25
## 494 1 Check-Out 2015-07-25
## 495 2 Check-Out 2015-07-27
## 496 3 Check-Out 2015-07-20
## 497 3 Check-Out 2015-07-20
## 498 1 Check-Out 2015-07-20
## 499 0 Check-Out 2015-07-20
## 500 0 Check-Out 2015-07-20
## 501 2 Check-Out 2015-07-20
## 502 0 Canceled 2015-06-24
## 503 0 Check-Out 2015-07-20
## 504 2 Check-Out 2015-07-20
## 505 0 Canceled 2015-07-17
## 506 3 Check-Out 2015-07-20
## 507 1 Check-Out 2015-07-20
## 508 1 Check-Out 2015-07-21
## 509 2 Check-Out 2015-07-21
## 510 0 Check-Out 2015-07-24
## 511 2 Check-Out 2015-07-24
## 512 0 Canceled 2015-07-18
## 513 0 Check-Out 2015-07-25
## 514 1 Check-Out 2015-07-25
## 515 0 Check-Out 2015-07-22
## 516 0 Check-Out 2015-07-22
## 517 0 Canceled 2015-04-29
## 518 2 Canceled 2015-06-04
## 519 0 Canceled 2015-06-11
## 520 0 Check-Out 2015-07-23
## 521 1 Check-Out 2015-07-23
## 522 2 Check-Out 2015-07-23
## 523 1 Check-Out 2015-07-19
## 524 0 Check-Out 2015-07-19
## 525 0 Check-Out 2015-07-20
## 526 1 Check-Out 2015-07-21
## 527 2 Check-Out 2015-07-25
## 528 0 Check-Out 2015-07-25
## 529 0 Check-Out 2015-07-25
## 530 1 Check-Out 2015-07-25
## 531 2 Canceled 2015-06-24
## 532 1 Check-Out 2015-07-25
## 533 1 Check-Out 2015-07-25
## 534 1 Check-Out 2015-07-25
## 535 1 Check-Out 2015-07-26
## 536 0 Canceled 2015-06-01
## 537 1 Check-Out 2015-07-26
## 538 0 Check-Out 2015-08-01
## 539 0 Check-Out 2015-07-20
## 540 0 Check-Out 2015-07-20
## 541 0 Check-Out 2015-07-20
## 542 0 Check-Out 2015-07-20
## 543 1 Check-Out 2015-07-20
## 544 2 Check-Out 2015-07-21
## 545 0 Canceled 2015-05-23
## 546 0 Check-Out 2015-07-23
## 547 0 Canceled 2015-06-29
## 548 1 Check-Out 2015-07-24
## 549 0 Canceled 2015-06-19
## 550 1 Canceled 2015-06-17
## 551 1 Check-Out 2015-07-26
## 552 0 Canceled 2015-05-27
## 553 1 Check-Out 2015-07-26
## 554 1 Canceled 2015-06-17
## 555 2 Check-Out 2015-07-26
## 556 0 Canceled 2015-06-19
## 557 0 Check-Out 2015-07-26
## 558 1 Check-Out 2015-07-25
## 559 0 Canceled 2015-06-29
## 560 2 Canceled 2015-07-02
## 561 1 Check-Out 2015-07-26
## 562 0 Check-Out 2015-07-26
## 563 0 Canceled 2015-07-14
## 564 0 Check-Out 2015-07-29
## 565 2 Check-Out 2015-08-02
## 566 1 Check-Out 2015-07-25
## 567 0 Check-Out 2015-07-21
## 568 2 Canceled 2015-05-13
## 569 0 Check-Out 2015-07-20
## 570 1 Check-Out 2015-07-20
## 571 3 Check-Out 2015-07-24
## 572 0 Check-Out 2015-07-24
## 573 2 Check-Out 2015-07-24
## 574 0 Check-Out 2015-07-24
## 575 1 Canceled 2015-06-15
## 576 0 Check-Out 2015-07-24
## 577 1 Canceled 2015-06-15
## 578 0 Canceled 2015-06-17
## 579 0 Check-Out 2015-07-25
## 580 0 Canceled 2015-06-08
## 581 1 Canceled 2015-06-22
## 582 0 Check-Out 2015-07-26
## 583 1 Canceled 2015-06-22
## 584 1 Check-Out 2015-07-27
## 585 0 Canceled 2015-07-20
## 586 0 Check-Out 2015-07-27
## 587 3 Check-Out 2015-07-27
## 588 0 Check-Out 2015-07-27
## 589 1 Check-Out 2015-07-27
## 590 1 Canceled 2015-05-11
## 591 1 Canceled 2015-04-23
## 592 1 Check-Out 2015-07-27
## 593 0 Canceled 2015-06-02
## 594 0 Canceled 2015-06-01
## 595 1 Check-Out 2015-07-30
## 596 1 Check-Out 2015-07-30
## 597 1 Check-Out 2015-07-30
## 598 0 Canceled 2015-07-14
## 599 0 Canceled 2015-07-14
## 600 0 Canceled 2015-07-08
## 601 0 Check-Out 2015-07-23
## 602 2 Canceled 2015-06-01
## 603 0 Canceled 2015-06-19
## 604 0 Check-Out 2015-07-25
## 605 0 Check-Out 2015-07-26
## 606 1 Check-Out 2015-07-27
## 607 0 Check-Out 2015-07-28
## 608 1 Check-Out 2015-07-28
## 609 1 Check-Out 2015-07-29
## 610 1 Check-Out 2015-07-30
## 611 1 Check-Out 2015-07-31
## 612 0 Check-Out 2015-07-23
## 613 1 Canceled 2015-04-22
## 614 1 Canceled 2015-06-09
## 615 1 Check-Out 2015-07-26
## 616 1 Canceled 2015-06-09
## 617 1 Canceled 2015-06-09
## 618 0 Canceled 2015-06-29
## 619 0 Check-Out 2015-07-23
## 620 1 Check-Out 2015-07-23
## 621 1 Check-Out 2015-07-24
## 622 0 Check-Out 2015-07-24
## 623 0 Canceled 2015-06-05
## 624 1 Check-Out 2015-07-26
## 625 0 Canceled 2015-07-07
## 626 0 Canceled 2015-06-19
## 627 1 Check-Out 2015-07-26
## 628 0 Canceled 2015-07-06
## 629 0 Canceled 2015-07-07
## 630 0 Check-Out 2015-07-28
## 631 0 Canceled 2015-07-04
## 632 0 Canceled 2015-07-06
## 633 1 Check-Out 2015-07-31
## 634 2 Check-Out 2015-07-26
## 635 2 Check-Out 2015-07-26
## 636 0 Canceled 2015-07-22
## 637 2 Check-Out 2015-07-26
## 638 2 Check-Out 2015-07-26
## 639 2 Check-Out 2015-07-26
## 640 0 Check-Out 2015-07-26
## 641 2 Check-Out 2015-07-26
## 642 2 Canceled 2015-07-14
## 643 0 Check-Out 2015-07-26
## 644 2 Check-Out 2015-07-26
## 645 1 Canceled 2015-07-06
## 646 0 Canceled 2015-07-01
## 647 0 Check-Out 2015-07-27
## 648 1 Canceled 2015-07-06
## 649 0 Check-Out 2015-07-26
## 650 0 Canceled 2015-06-17
## 651 0 Canceled 2015-06-18
## 652 1 Check-Out 2015-07-28
## 653 0 Canceled 2015-06-08
## 654 0 Check-Out 2015-07-28
## 655 1 Check-Out 2015-07-29
## 656 1 Check-Out 2015-07-29
## 657 0 Check-Out 2015-07-31
## 658 1 Canceled 2015-07-14
## 659 2 Canceled 2015-04-22
## 660 0 Canceled 2015-05-25
## 661 2 Check-Out 2015-08-01
## 662 0 Check-Out 2015-08-02
## 663 0 Check-Out 2015-08-03
## 664 0 Canceled 2015-06-26
## 665 1 Canceled 2015-07-21
## 666 0 Check-Out 2015-07-25
## 667 0 Check-Out 2015-07-28
## 668 0 Check-Out 2015-07-26
## 669 0 Check-Out 2015-07-26
## 670 0 Check-Out 2015-07-26
## 671 0 Canceled 2015-07-11
## 672 0 Check-Out 2015-07-27
## 673 2 Canceled 2015-07-14
## 674 1 Canceled 2015-07-10
## 675 0 Canceled 2015-07-23
## 676 1 Check-Out 2015-07-27
## 677 0 Check-Out 2015-07-28
## 678 1 Check-Out 2015-07-29
## 679 2 Check-Out 2015-07-30
## 680 2 Check-Out 2015-07-30
## 681 1 Check-Out 2015-07-30
## 682 0 Canceled 2015-06-26
## 683 1 Check-Out 2015-07-30
## 684 0 Check-Out 2015-07-30
## 685 0 Check-Out 2015-07-31
## 686 3 Canceled 2015-06-02
## 687 0 Check-Out 2015-08-01
## 688 0 Check-Out 2015-08-01
## 689 1 Canceled 2015-06-27
## 690 1 Canceled 2015-05-12
## 691 0 Canceled 2015-04-17
## 692 0 Check-Out 2015-08-01
## 693 1 Check-Out 2015-08-01
## 694 0 Check-Out 2015-08-01
## 695 0 Canceled 2015-07-03
## 696 0 Check-Out 2015-08-02
## 697 1 Check-Out 2015-08-02
## 698 1 Canceled 2015-06-29
## 699 2 Canceled 2015-04-15
## 700 1 Canceled 2015-06-29
## 701 2 Check-Out 2015-08-04
## 702 1 Check-Out 2015-08-06
## 703 0 Canceled 2015-07-03
## 704 0 Check-Out 2015-08-01
## 705 1 Canceled 2015-03-25
## 706 0 Check-Out 2015-08-01
## 707 0 Canceled 2015-06-08
## 708 1 Canceled 2015-05-15
## 709 1 Canceled 2015-06-18
## 710 0 Check-Out 2015-07-29
## 711 3 Check-Out 2015-07-29
## 712 2 Canceled 2015-06-03
## 713 0 Canceled 2015-06-25
## 714 1 Check-Out 2015-07-31
## 715 2 Canceled 2015-06-03
## 716 0 Canceled 2015-06-25
## 717 0 Check-Out 2015-08-02
## 718 0 Check-Out 2015-07-28
## 719 1 Check-Out 2015-08-02
## 720 1 Canceled 2015-06-17
## 721 1 Canceled 2015-06-17
## 722 0 Check-Out 2015-08-02
## 723 0 Check-Out 2015-07-27
## 724 1 Canceled 2015-07-03
## 725 0 Check-Out 2015-07-29
## 726 1 Canceled 2015-07-03
## 727 1 Canceled 2015-06-15
## 728 1 Canceled 2015-06-15
## 729 0 Check-Out 2015-07-30
## 730 2 Check-Out 2015-07-30
## 731 0 Check-Out 2015-07-30
## 732 2 Check-Out 2015-07-30
## 733 0 Canceled 2015-06-17
## 734 2 Check-Out 2015-07-31
## 735 0 Check-Out 2015-07-31
## 736 0 Check-Out 2015-07-31
## 737 1 Check-Out 2015-07-31
## 738 2 Check-Out 2015-07-31
## 739 2 Check-Out 2015-07-31
## 740 0 Check-Out 2015-07-31
## 741 1 Canceled 2015-06-29
## 742 0 Check-Out 2015-07-31
## 743 2 Canceled 2015-05-09
## 744 0 Check-Out 2015-07-31
## 745 0 Canceled 2015-06-17
## 746 0 Check-Out 2015-07-31
## 747 0 Check-Out 2015-08-01
## 748 1 Check-Out 2015-08-01
## 749 0 Canceled 2015-06-25
## 750 0 Check-Out 2015-08-01
## 751 0 Canceled 2015-07-06
## 752 1 Canceled 2015-03-17
## 753 1 Check-Out 2015-08-02
## 754 0 Check-Out 2015-08-02
## 755 2 Canceled 2015-05-13
## 756 2 Canceled 2015-05-13
## 757 2 Canceled 2015-05-13
## 758 2 Canceled 2015-05-13
## 759 0 Check-Out 2015-08-03
## 760 1 Check-Out 2015-08-03
## 761 1 Check-Out 2015-07-29
## 762 1 Check-Out 2015-07-29
## 763 1 Check-Out 2015-07-30
## 764 0 Canceled 2015-07-07
## 765 0 Canceled 2015-07-27
## 766 1 Check-Out 2015-08-01
## 767 1 Check-Out 2015-08-01
## 768 2 Check-Out 2015-08-01
## 769 1 Check-Out 2015-08-02
## 770 2 Canceled 2015-07-16
## 771 0 Check-Out 2015-08-02
## 772 1 Check-Out 2015-08-03
## 773 0 Canceled 2015-05-22
## 774 1 Check-Out 2015-08-07
## 775 0 Check-Out 2015-07-29
## 776 1 Canceled 2015-04-04
## 777 2 Check-Out 2015-08-02
## 778 1 Canceled 2015-07-02
## 779 0 Check-Out 2015-08-03
## 780 1 Canceled 2015-07-27
## 781 0 Canceled 2015-06-22
## 782 1 Check-Out 2015-08-03
## 783 0 Check-Out 2015-07-30
## 784 1 Canceled 2015-07-27
## 785 1 Check-Out 2015-08-03
## 786 2 Check-Out 2015-08-03
## 787 0 Canceled 2015-05-23
## 788 2 Canceled 2015-07-10
## 789 1 Check-Out 2015-08-05
## 790 0 Canceled 2015-06-08
## 791 0 Canceled 2015-06-05
## 792 1 Check-Out 2015-08-04
## 793 0 Canceled 2015-04-15
## 794 1 Canceled 2015-06-17
## 795 3 Canceled 2015-07-16
## 796 0 Check-Out 2015-07-31
## 797 0 Canceled 2015-07-30
## 798 1 Canceled 2015-07-30
## 799 1 Check-Out 2015-08-01
## 800 2 Check-Out 2015-08-02
## 801 2 Canceled 2015-07-06
## 802 2 Canceled 2015-06-30
## 803 0 Canceled 2015-06-11
## 804 0 Check-Out 2015-07-30
## 805 1 Check-Out 2015-08-03
## 806 2 Canceled 2015-07-06
## 807 2 Canceled 2015-06-30
## 808 0 Canceled 2015-06-09
## 809 0 Canceled 2015-06-11
## 810 0 Canceled 2015-06-08
## 811 3 Check-Out 2015-08-08
## 812 1 Check-Out 2015-08-08
## 813 1 Check-Out 2015-08-08
## 814 0 Canceled 2015-06-24
## 815 0 Check-Out 2015-07-31
## 816 0 Check-Out 2015-07-31
## 817 0 Check-Out 2015-08-01
## 818 2 Canceled 2015-07-06
## 819 3 Canceled 2015-07-16
## 820 3 Canceled 2015-07-16
## 821 1 Check-Out 2015-08-02
## 822 3 Canceled 2015-07-31
## 823 2 Check-Out 2015-08-02
## 824 0 Canceled 2015-07-06
## 825 1 Canceled 2015-06-16
## 826 2 Check-Out 2015-08-02
## 827 0 Canceled 2015-07-21
## 828 2 Canceled 2015-07-13
## 829 0 Check-Out 2015-08-02
## 830 1 Check-Out 2015-08-02
## 831 1 Canceled 2015-07-15
## 832 0 Canceled 2015-07-14
## 833 1 Canceled 2015-07-11
## 834 1 Canceled 2015-07-15
## 835 3 Canceled 2015-07-15
## 836 1 Canceled 2015-07-14
## 837 0 Check-Out 2015-08-04
## 838 0 Check-Out 2015-08-04
## 839 0 Canceled 2015-07-09
## 840 0 Check-Out 2015-08-05
## 841 1 Check-Out 2015-08-06
## 842 0 Check-Out 2015-08-10
## 843 0 Check-Out 2015-08-03
## 844 0 Canceled 2015-05-12
## 845 0 Canceled 2015-05-12
## 846 0 Canceled 2015-05-04
## 847 0 Canceled 2015-07-29
## 848 2 Canceled 2015-07-16
## 849 0 Canceled 2015-07-29
## 850 0 Canceled 2015-07-29
## 851 1 Canceled 2015-07-16
## 852 2 Check-Out 2015-08-02
## 853 2 Canceled 2015-07-31
## 854 1 Canceled 2015-07-29
## 855 2 Check-Out 2015-08-08
## 856 1 Canceled 2015-06-06
## 857 0 Canceled 2015-07-15
## 858 0 Canceled 2015-06-11
## 859 2 Canceled 2015-05-22
## 860 0 Canceled 2015-05-19
## 861 2 Canceled 2015-05-19
## 862 3 Canceled 2015-06-06
## 863 4 Check-Out 2015-08-08
## 864 0 Canceled 2015-05-22
## 865 0 Check-Out 2015-08-09
## 866 0 Canceled 2015-06-16
## 867 1 Canceled 2015-07-21
## 868 3 Canceled 2015-07-22
## 869 0 Canceled 2015-07-07
## 870 0 Check-Out 2015-08-15
## 871 2 Canceled 2015-07-08
## 872 1 Canceled 2015-08-01
## 873 2 Canceled 2015-06-29
## 874 2 Canceled 2015-06-29
## 875 1 Check-Out 2015-08-09
## 876 4 Check-Out 2015-08-08
## 877 1 Check-Out 2015-08-08
## 878 0 Check-Out 2015-08-09
## 879 1 Check-Out 2015-08-09
## 880 0 Check-Out 2015-08-11
## 881 0 Check-Out 2015-08-09
## 882 0 Canceled 2015-04-23
## 883 0 Check-Out 2015-08-03
## 884 0 Check-Out 2015-08-04
## 885 0 Canceled 2015-06-17
## 886 0 Canceled 2015-07-18
## 887 0 Canceled 2015-07-13
## 888 0 Canceled 2015-07-24
## 889 1 Check-Out 2015-08-10
## 890 1 Canceled 2015-03-28
## 891 0 Check-Out 2015-08-10
## 892 0 Canceled 2015-07-06
## 893 0 Canceled 2015-07-23
## 894 1 Check-Out 2015-08-04
## 895 2 Check-Out 2015-08-04
## 896 0 Check-Out 2015-08-05
## 897 0 Canceled 2015-07-29
## 898 0 Canceled 2015-07-06
## 899 2 Check-Out 2015-08-08
## 900 2 Check-Out 2015-08-08
## 901 1 Canceled 2015-07-21
## 902 2 Check-Out 2015-08-09
## 903 1 Canceled 2015-07-25
## 904 0 Check-Out 2015-08-11
## 905 2 Check-Out 2015-08-11
## 906 0 Check-Out 2015-08-11
## 907 1 Check-Out 2015-08-14
## 908 2 Check-Out 2015-08-05
## 909 0 Check-Out 2015-08-05
## 910 1 Canceled 2015-08-05
## 911 0 Check-Out 2015-08-06
## 912 0 Check-Out 2015-08-06
## 913 0 Canceled 2015-07-04
## 914 1 Canceled 2015-06-15
## 915 0 Check-Out 2015-08-09
## 916 1 Check-Out 2015-08-09
## 917 0 Canceled 2015-07-23
## 918 1 Canceled 2015-07-22
## 919 2 Check-Out 2015-08-09
## 920 3 Check-Out 2015-08-12
## 921 0 Canceled 2015-04-22
## 922 0 Canceled 2015-06-05
## 923 0 Check-Out 2015-08-07
## 924 0 Canceled 2015-05-20
## 925 1 Check-Out 2015-08-09
## 926 1 Check-Out 2015-08-09
## 927 0 Check-Out 2015-08-10
## 928 0 Check-Out 2015-08-11
## 929 4 Check-Out 2015-08-11
## 930 1 Canceled 2015-07-21
## 931 3 Check-Out 2015-08-12
## 932 2 Check-Out 2015-08-14
## 933 0 Check-Out 2015-08-14
## 934 3 Check-Out 2015-08-16
## 935 2 Check-Out 2015-08-07
## 936 0 Check-Out 2015-08-08
## 937 0 Canceled 2015-06-22
## 938 4 Check-Out 2015-08-09
## 939 0 Canceled 2015-07-27
## 940 1 Check-Out 2015-08-09
## 941 3 Check-Out 2015-08-09
## 942 0 Canceled 2015-06-22
## 943 1 Check-Out 2015-08-10
## 944 2 Canceled 2015-08-04
## 945 2 Check-Out 2015-08-11
## 946 0 Canceled 2015-07-14
## 947 1 Canceled 2015-04-13
## 948 2 Check-Out 2015-08-11
## 949 2 Check-Out 2015-08-12
## 950 0 Canceled 2015-06-27
## 951 0 Canceled 2015-07-09
## 952 2 Check-Out 2015-08-14
## 953 1 Canceled 2015-05-14
## 954 1 Canceled 2015-05-14
## 955 2 Check-Out 2015-08-14
## 956 1 Check-Out 2015-08-16
## 957 0 Check-Out 2015-08-09
## 958 1 Canceled 2015-07-27
## 959 1 Canceled 2015-07-09
## 960 1 Check-Out 2015-08-10
## 961 1 Check-Out 2015-08-10
## 962 0 Canceled 2015-06-12
## 963 3 Check-Out 2015-08-11
## 964 1 Check-Out 2015-08-11
## 965 3 Check-Out 2015-08-12
## 966 1 Check-Out 2015-08-12
## 967 1 Canceled 2015-04-06
## 968 0 Canceled 2015-06-17
## 969 1 Canceled 2015-06-22
## 970 1 Canceled 2015-05-19
## 971 0 No-Show 2015-08-08
## 972 1 Check-Out 2015-08-15
## 973 0 Canceled 2015-07-27
## 974 3 Check-Out 2015-08-15
## 975 0 Canceled 2015-08-08
## 976 2 Check-Out 2015-08-15
## 977 1 Canceled 2015-06-22
## 978 2 Canceled 2015-05-16
## 979 1 Canceled 2015-08-08
## 980 1 Check-Out 2015-08-15
## 981 0 Check-Out 2015-08-15
## 982 1 Canceled 2015-05-14
## 983 0 Canceled 2015-07-20
## 984 0 Check-Out 2015-08-21
## 985 0 Check-Out 2015-08-10
## 986 0 Check-Out 2015-08-10
## 987 1 Check-Out 2015-08-10
## 988 2 Canceled 2015-08-01
## 989 1 Canceled 2015-07-30
## 990 2 Check-Out 2015-08-12
## 991 1 Check-Out 2015-08-13
## 992 0 Check-Out 2015-08-13
## 993 0 Canceled 2015-06-22
## 994 0 Canceled 2015-04-06
## 995 0 Check-Out 2015-08-15
## 996 2 Canceled 2015-05-27
## 997 2 Canceled 2015-07-17
## 998 2 Canceled 2015-07-17
## 999 1 Check-Out 2015-08-15
## 1000 0 Check-Out 2015-08-16
## 1001 1 Check-Out 2015-08-16
## 1002 0 Canceled 2015-06-03
## 1003 0 Check-Out 2015-08-16
## 1004 0 Canceled 2015-06-08
## 1005 0 Check-Out 2015-08-16
## 1006 1 Canceled 2015-06-03
## 1007 1 Canceled 2015-06-03
## 1008 2 Check-Out 2015-08-10
## 1009 1 Check-Out 2015-08-13
## 1010 1 Canceled 2015-06-25
## 1011 2 Check-Out 2015-08-13
## 1012 0 Canceled 2015-06-04
## 1013 0 Check-Out 2015-08-13
## 1014 1 Canceled 2015-05-09
## 1015 0 Check-Out 2015-08-15
## 1016 0 Canceled 2015-06-19
## 1017 1 Check-Out 2015-08-16
## 1018 0 Canceled 2015-06-02
## 1019 1 Check-Out 2015-08-16
## 1020 1 Check-Out 2015-08-16
## 1021 1 Canceled 2015-06-24
## 1022 0 Canceled 2015-07-08
## 1023 0 Check-Out 2015-08-17
## 1024 0 Canceled 2015-06-26
## 1025 2 Canceled 2015-07-30
## 1026 2 Canceled 2015-07-14
## 1027 1 Canceled 2015-06-22
## 1028 1 Canceled 2015-06-22
## 1029 1 Check-Out 2015-08-21
## 1030 2 Check-Out 2015-08-11
## 1031 2 Check-Out 2015-08-11
## 1032 0 Canceled 2015-08-05
## 1033 2 Canceled 2015-07-20
## 1034 1 Canceled 2015-07-20
## 1035 1 Canceled 2015-06-11
## 1036 1 Canceled 2015-06-11
## 1037 1 Canceled 2015-06-11
## 1038 0 Canceled 2015-06-01
## 1039 0 Canceled 2015-05-23
## 1040 0 Check-Out 2015-08-15
## 1041 2 Canceled 2015-07-17
## 1042 0 Canceled 2015-06-25
## 1043 1 Canceled 2015-04-20
## 1044 0 Check-Out 2015-08-16
## 1045 3 Canceled 2015-06-30
## 1046 1 Canceled 2015-04-20
## 1047 0 Canceled 2015-07-22
## 1048 2 Canceled 2015-07-17
## 1049 0 Check-Out 2015-08-18
## 1050 0 Canceled 2015-06-04
## 1051 2 Canceled 2015-06-30
## 1052 1 Canceled 2015-05-06
## 1053 1 Check-Out 2015-08-18
## 1054 2 Check-Out 2015-08-21
## 1055 1 Check-Out 2015-08-21
## 1056 2 Canceled 2015-05-06
## 1057 1 Check-Out 2015-08-23
## 1058 0 Canceled 2015-05-23
## 1059 0 Canceled 2015-05-23
## 1060 0 No-Show 2015-08-12
## 1061 2 Canceled 2015-08-12
## 1062 1 Check-Out 2015-08-13
## 1063 2 Check-Out 2015-08-15
## 1064 1 No-Show 2015-08-12
## 1065 3 Canceled 2015-08-03
## 1066 3 Canceled 2015-08-03
## 1067 0 Canceled 2015-06-19
## 1068 0 Canceled 2015-08-11
## 1069 1 Canceled 2015-06-15
## 1070 1 Check-Out 2015-08-22
## 1071 1 Check-Out 2015-08-22
## 1072 0 Check-Out 2015-08-17
## 1073 0 Canceled 2015-06-17
## 1074 1 Check-Out 2015-08-14
## 1075 0 Check-Out 2015-08-14
## 1076 1 Check-Out 2015-08-14
## 1077 0 Canceled 2015-08-13
## 1078 0 Canceled 2015-06-22
## 1079 1 Canceled 2015-06-02
## 1080 0 Check-Out 2015-08-16
## 1081 2 Canceled 2015-08-12
## 1082 2 Check-Out 2015-08-16
## 1083 2 Canceled 2015-08-12
## 1084 1 Check-Out 2015-08-17
## 1085 1 Check-Out 2015-08-17
## 1086 0 Canceled 2015-08-11
## 1087 2 Canceled 2015-07-29
## 1088 2 Check-Out 2015-08-18
## 1089 1 Check-Out 2015-08-18
## 1090 2 Check-Out 2015-08-18
## 1091 2 Check-Out 2015-08-18
## 1092 2 Canceled 2015-07-29
## 1093 2 Canceled 2015-08-11
## 1094 2 Check-Out 2015-08-14
## 1095 0 Check-Out 2015-08-15
## 1096 0 Check-Out 2015-08-15
## 1097 2 Check-Out 2015-08-15
## 1098 0 Check-Out 2015-08-15
## 1099 2 Check-Out 2015-08-15
## 1100 2 Check-Out 2015-08-16
## 1101 1 Check-Out 2015-08-16
## 1102 0 Canceled 2015-08-04
## 1103 1 Canceled 2015-06-26
## 1104 1 Check-Out 2015-08-16
## 1105 2 Check-Out 2015-08-17
## 1106 0 Canceled 2015-05-29
## 1107 0 Canceled 2015-07-31
## 1108 0 Check-Out 2015-08-18
## 1109 0 Canceled 2015-05-25
## 1110 0 Check-Out 2015-08-19
## 1111 1 Check-Out 2015-08-19
## 1112 1 Canceled 2015-06-15
## 1113 0 Check-Out 2015-08-21
## 1114 0 Canceled 2015-08-05
## 1115 1 Check-Out 2015-08-21
## 1116 0 Check-Out 2015-08-21
## 1117 2 Canceled 2015-08-05
## 1118 1 Check-Out 2015-08-17
## 1119 1 Check-Out 2015-08-19
## 1120 0 Check-Out 2015-08-19
## 1121 0 Check-Out 2015-08-19
## 1122 1 Check-Out 2015-08-19
## 1123 2 Canceled 2015-08-06
## 1124 3 Canceled 2015-06-08
## 1125 1 Canceled 2015-08-05
## 1126 1 Check-Out 2015-08-20
## 1127 1 Canceled 2015-08-05
## 1128 1 Check-Out 2015-08-20
## 1129 1 Canceled 2015-08-05
## 1130 1 Check-Out 2015-08-21
## 1131 0 Canceled 2015-06-04
## 1132 0 Check-Out 2015-08-21
## 1133 1 Check-Out 2015-08-21
## 1134 1 Check-Out 2015-08-22
## 1135 0 Canceled 2015-07-21
## 1136 0 Canceled 2015-07-08
## 1137 0 Check-Out 2015-08-22
## 1138 0 Canceled 2015-07-21
## 1139 0 Canceled 2015-06-11
## 1140 1 Check-Out 2015-08-22
## 1141 1 Canceled 2015-08-04
## 1142 0 Check-Out 2015-08-22
## 1143 0 Canceled 2015-07-25
## 1144 0 Canceled 2015-07-06
## 1145 0 Check-Out 2015-08-22
## 1146 0 Canceled 2015-06-11
## 1147 0 Canceled 2015-06-25
## 1148 0 Canceled 2015-07-03
## 1149 1 Check-Out 2015-08-29
## 1150 0 Canceled 2015-07-06
## 1151 0 Check-Out 2015-08-17
## 1152 0 Check-Out 2015-08-17
## 1153 0 Canceled 2015-08-13
## 1154 0 Check-Out 2015-08-17
## 1155 0 Check-Out 2015-08-17
## 1156 0 Canceled 2015-08-10
## 1157 0 Check-Out 2015-08-17
## 1158 0 Check-Out 2015-08-17
## 1159 0 Check-Out 2015-08-17
## 1160 1 Check-Out 2015-08-17
## 1161 0 Canceled 2015-08-10
## 1162 0 Canceled 2015-08-10
## 1163 0 Canceled 2015-08-11
## 1164 1 Canceled 2015-03-31
## 1165 1 Canceled 2015-07-27
## 1166 1 Canceled 2015-08-06
## 1167 2 Canceled 2015-08-12
## 1168 2 Canceled 2015-08-12
## 1169 1 Canceled 2015-06-15
## 1170 3 Canceled 2015-07-18
## 1171 1 Canceled 2015-06-15
## 1172 0 Canceled 2015-05-30
## 1173 0 Canceled 2015-06-15
## 1174 0 Check-Out 2015-08-25
## 1175 0 Canceled 2015-05-29
## 1176 0 Canceled 2015-07-20
## 1177 1 Canceled 2015-06-19
## 1178 2 Canceled 2015-05-01
## 1179 0 Check-Out 2015-08-22
## 1180 0 Canceled 2015-07-29
## 1181 0 Canceled 2015-04-14
## 1182 0 Canceled 2015-05-13
## 1183 3 Check-Out 2015-08-23
## 1184 2 Check-Out 2015-08-24
## 1185 0 Check-Out 2015-08-24
## 1186 1 Canceled 2015-06-19
## 1187 2 Canceled 2015-03-24
## 1188 0 Canceled 2015-05-22
## 1189 0 Check-Out 2015-08-24
## 1190 0 Check-Out 2015-08-24
## 1191 0 Canceled 2015-07-27
## 1192 1 Canceled 2015-05-12
## 1193 0 Check-Out 2015-08-24
## 1194 1 Canceled 2015-05-12
## 1195 2 Canceled 2015-08-03
## 1196 0 Canceled 2015-07-01
## 1197 1 Canceled 2015-08-07
## 1198 1 Canceled 2015-07-31
## 1199 0 Canceled 2015-08-18
## 1200 0 Check-Out 2015-08-19
## 1201 1 Check-Out 2015-08-21
## 1202 1 Canceled 2015-07-31
## 1203 0 Canceled 2015-08-01
## 1204 2 Canceled 2015-08-05
## 1205 1 Check-Out 2015-08-24
## 1206 0 Check-Out 2015-08-24
## 1207 3 Check-Out 2015-08-24
## 1208 1 Check-Out 2015-08-24
## 1209 1 Check-Out 2015-08-24
## 1210 1 Canceled 2015-05-21
## 1211 2 Check-Out 2015-08-25
## 1212 1 Check-Out 2015-08-25
## 1213 2 Check-Out 2015-08-25
## 1214 1 Check-Out 2015-08-28
## 1215 1 Check-Out 2015-08-28
## 1216 1 Check-Out 2015-08-19
## 1217 2 Check-Out 2015-08-20
## 1218 0 Check-Out 2015-08-23
## 1219 0 Canceled 2015-07-22
## 1220 2 Check-Out 2015-08-23
## 1221 0 Check-Out 2015-08-24
## 1222 2 Check-Out 2015-08-24
## 1223 0 Canceled 2015-08-03
## 1224 1 Canceled 2015-08-04
## 1225 2 Canceled 2015-08-01
## 1226 2 Canceled 2015-07-31
## 1227 1 Canceled 2015-08-04
## 1228 0 Check-Out 2015-08-28
## 1229 1 Check-Out 2015-08-28
## 1230 0 Canceled 2015-06-18
## 1231 2 Check-Out 2015-08-20
## 1232 0 Canceled 2015-08-10
## 1233 2 Check-Out 2015-08-20
## 1234 0 Check-Out 2015-08-21
## 1235 1 Check-Out 2015-08-23
## 1236 0 Check-Out 2015-08-26
## 1237 0 Canceled 2015-06-30
## 1238 0 Canceled 2015-07-15
## 1239 0 Canceled 2015-07-08
## 1240 2 Check-Out 2015-08-29
## 1241 1 Check-Out 2015-08-25
## 1242 1 Check-Out 2015-08-23
## 1243 1 Check-Out 2015-08-23
## 1244 2 Check-Out 2015-08-23
## 1245 2 Check-Out 2015-08-23
## 1246 2 Canceled 2015-08-06
## 1247 1 Canceled 2015-06-22
## 1248 1 Canceled 2015-07-17
## 1249 1 Check-Out 2015-08-25
## 1250 2 Check-Out 2015-08-26
## 1251 0 Check-Out 2015-08-26
## 1252 2 Check-Out 2015-08-26
## 1253 0 Check-Out 2015-08-26
## 1254 1 Check-Out 2015-08-27
## 1255 0 Check-Out 2015-08-27
## 1256 3 Canceled 2015-08-10
## 1257 2 Check-Out 2015-08-27
## 1258 1 Check-Out 2015-08-27
## 1259 0 Check-Out 2015-08-28
## 1260 0 Canceled 2015-07-27
## 1261 1 Check-Out 2015-08-28
## 1262 0 Check-Out 2015-08-28
## 1263 1 Check-Out 2015-08-28
## 1264 0 Canceled 2015-07-20
## 1265 3 Check-Out 2015-08-30
## 1266 1 Check-Out 2015-08-31
## 1267 0 Check-Out 2015-08-23
## 1268 0 Canceled 2015-08-19
## 1269 0 Canceled 2015-05-29
## 1270 0 Check-Out 2015-08-28
## 1271 2 Canceled 2015-03-24
## 1272 2 Check-Out 2015-08-29
## 1273 1 Check-Out 2015-08-29
## 1274 0 Canceled 2015-06-12
## 1275 1 Check-Out 2015-08-29
## 1276 0 Check-Out 2015-08-29
## 1277 0 Check-Out 2015-08-29
## 1278 0 Canceled 2015-07-09
## 1279 3 Check-Out 2015-08-29
## 1280 0 Check-Out 2015-08-29
## 1281 1 Check-Out 2015-08-29
## 1282 0 Canceled 2015-08-10
## 1283 2 Check-Out 2015-08-29
## 1284 2 Canceled 2015-06-02
## 1285 1 Check-Out 2015-08-29
## 1286 1 Check-Out 2015-08-30
## 1287 2 Canceled 2015-06-27
## 1288 0 Canceled 2015-06-12
## 1289 1 Check-Out 2015-08-26
## 1290 2 Canceled 2015-07-23
## 1291 1 Check-Out 2015-08-27
## 1292 2 Check-Out 2015-08-27
## 1293 1 Canceled 2015-08-13
## 1294 1 Check-Out 2015-08-28
## 1295 0 Check-Out 2015-08-28
## 1296 1 Check-Out 2015-08-26
## 1297 0 Check-Out 2015-08-27
## 1298 2 Canceled 2015-08-01
## 1299 0 Canceled 2015-08-23
## 1300 0 Canceled 2015-08-11
## 1301 0 Canceled 2015-07-02
## 1302 0 Check-Out 2015-08-28
## 1303 0 Canceled 2015-07-31
## 1304 0 Check-Out 2015-08-28
## 1305 1 Check-Out 2015-08-28
## 1306 0 Canceled 2015-07-23
## 1307 1 Canceled 2015-07-14
## 1308 0 Check-Out 2015-08-30
## 1309 2 Check-Out 2015-08-30
## 1310 2 Canceled 2015-07-27
## 1311 0 Check-Out 2015-08-30
## 1312 4 Canceled 2015-08-13
## 1313 1 Canceled 2015-07-21
## 1314 1 Canceled 2015-07-27
## 1315 1 Canceled 2015-07-21
## 1316 0 Canceled 2015-08-13
## 1317 2 Canceled 2015-08-18
## 1318 1 Check-Out 2015-09-06
## 1319 0 Check-Out 2015-08-25
## 1320 0 Check-Out 2015-08-25
## 1321 1 Check-Out 2015-08-25
## 1322 0 Check-Out 2015-08-25
## 1323 1 Canceled 2015-07-21
## 1324 1 Check-Out 2015-08-26
## 1325 1 Canceled 2015-08-11
## 1326 2 Check-Out 2015-08-26
## 1327 2 Canceled 2015-08-13
## 1328 2 Canceled 2015-08-22
## 1329 2 Canceled 2015-08-03
## 1330 1 Check-Out 2015-08-28
## 1331 1 Canceled 2015-06-03
## 1332 0 Check-Out 2015-08-29
## 1333 3 Check-Out 2015-08-29
## 1334 1 Canceled 2015-07-29
## 1335 2 Check-Out 2015-08-29
## 1336 1 Canceled 2015-06-30
## 1337 1 Canceled 2015-06-01
## 1338 1 Canceled 2015-06-01
## 1339 0 Check-Out 2015-09-03
## 1340 1 Canceled 2015-06-16
## 1341 1 Canceled 2015-07-29
## 1342 2 Check-Out 2015-08-28
## 1343 0 Canceled 2015-08-04
## 1344 2 Canceled 2015-07-17
## 1345 2 Canceled 2015-08-10
## 1346 0 Canceled 2015-08-10
## 1347 0 Canceled 2015-06-12
## 1348 0 Canceled 2015-05-01
## 1349 0 Canceled 2015-07-15
## 1350 0 Canceled 2015-07-20
## 1351 0 Canceled 2015-06-08
## 1352 0 Check-Out 2015-09-04
## 1353 1 Canceled 2015-06-15
## 1354 1 Canceled 2015-06-15
## 1355 0 Check-Out 2015-08-26
## 1356 0 Check-Out 2015-08-27
## 1357 1 Check-Out 2015-08-27
## 1358 0 Canceled 2015-08-25
## 1359 0 Check-Out 2015-08-27
## 1360 3 Check-Out 2015-08-30
## 1361 3 Canceled 2015-08-10
## 1362 3 Canceled 2015-08-10
## 1363 2 Canceled 2015-07-15
## 1364 0 Canceled 2015-07-10
## 1365 0 Canceled 2015-05-18
## 1366 0 Check-Out 2015-09-06
## 1367 1 Canceled 2015-08-11
## 1368 2 Check-Out 2015-08-28
## 1369 2 Check-Out 2015-08-29
## 1370 1 Check-Out 2015-08-30
## 1371 3 Canceled 2015-07-06
## 1372 1 Canceled 2015-07-02
## 1373 0 Canceled 2015-07-17
## 1374 1 Canceled 2015-08-17
## 1375 0 Check-Out 2015-08-31
## 1376 1 Canceled 2015-07-02
## 1377 2 Canceled 2015-08-03
## 1378 1 Canceled 2015-07-03
## 1379 0 Check-Out 2015-09-02
## 1380 1 Check-Out 2015-09-02
## 1381 2 Canceled 2015-05-13
## 1382 0 Check-Out 2015-09-03
## 1383 1 Canceled 2015-05-13
## 1384 2 Canceled 2015-08-14
## 1385 0 Check-Out 2015-09-03
## 1386 2 Check-Out 2015-09-03
## 1387 1 Canceled 2015-08-14
## 1388 3 Check-Out 2015-08-29
## 1389 0 Canceled 2015-08-13
## 1390 0 Canceled 2015-08-13
## 1391 0 Canceled 2015-08-13
## 1392 0 Check-Out 2015-08-30
## 1393 1 Canceled 2015-07-27
## 1394 1 Check-Out 2015-08-30
## 1395 3 Check-Out 2015-08-30
## 1396 0 Canceled 2015-07-01
## 1397 2 Check-Out 2015-08-30
## 1398 1 Check-Out 2015-08-30
## 1399 2 Check-Out 2015-08-30
## 1400 1 Check-Out 2015-08-31
## 1401 2 Canceled 2015-07-24
## 1402 0 Check-Out 2015-08-31
## 1403 0 Canceled 2015-08-24
## 1404 1 Check-Out 2015-08-31
## 1405 1 Check-Out 2015-08-31
## 1406 1 Check-Out 2015-08-31
## 1407 2 Check-Out 2015-08-31
## 1408 2 Check-Out 2015-08-31
## 1409 1 Check-Out 2015-08-29
## 1410 3 Check-Out 2015-08-30
## 1411 2 Canceled 2015-07-06
## 1412 2 Check-Out 2015-09-01
## 1413 1 Check-Out 2015-09-01
## 1414 2 Check-Out 2015-09-02
## 1415 1 Canceled 2015-08-28
## 1416 1 Canceled 2015-08-10
## 1417 1 Canceled 2015-08-13
## 1418 0 Check-Out 2015-09-03
## 1419 2 Canceled 2015-07-31
## 1420 1 Check-Out 2015-09-03
## 1421 0 Check-Out 2015-09-04
## 1422 0 Check-Out 2015-09-04
## 1423 0 Check-Out 2015-09-04
## 1424 1 Check-Out 2015-09-02
## 1425 0 Canceled 2015-08-01
## 1426 0 Check-Out 2015-09-04
## 1427 0 Canceled 2015-07-03
## 1428 0 Check-Out 2015-09-02
## 1429 2 Canceled 2015-07-06
## 1430 1 Check-Out 2015-08-31
## 1431 2 Check-Out 2015-08-31
## 1432 1 Check-Out 2015-09-01
## 1433 1 Check-Out 2015-09-01
## 1434 0 Check-Out 2015-08-30
## 1435 1 Check-Out 2015-09-02
## 1436 0 Check-Out 2015-09-02
## 1437 2 Canceled 2015-08-06
## 1438 0 Canceled 2015-08-06
## 1439 2 Check-Out 2015-09-03
## 1440 2 Check-Out 2015-09-03
## 1441 0 Check-Out 2015-09-04
## 1442 0 Canceled 2015-08-03
## 1443 0 Canceled 2015-07-31
## 1444 0 Canceled 2015-05-27
## 1445 2 Check-Out 2015-09-05
## 1446 0 Check-Out 2015-08-31
## 1447 4 Check-Out 2015-09-01
## 1448 3 Check-Out 2015-09-01
## 1449 1 Canceled 2015-08-24
## 1450 0 Check-Out 2015-09-02
## 1451 0 Check-Out 2015-09-02
## 1452 0 Check-Out 2015-09-03
## 1453 1 Check-Out 2015-09-03
## 1454 2 Check-Out 2015-09-04
## 1455 1 Check-Out 2015-09-05
## 1456 1 Check-Out 2015-09-05
## 1457 0 Canceled 2015-06-20
## 1458 2 Canceled 2015-06-16
## 1459 0 Canceled 2015-07-20
## 1460 1 Canceled 2015-08-06
## 1461 0 Check-Out 2015-09-06
## 1462 1 Check-Out 2015-09-06
## 1463 0 Canceled 2015-05-18
## 1464 0 Canceled 2015-08-14
## 1465 1 Check-Out 2015-09-01
## 1466 1 Check-Out 2015-09-02
## 1467 1 Check-Out 2015-09-02
## 1468 0 Check-Out 2015-09-02
## 1469 1 Check-Out 2015-09-03
## 1470 2 Check-Out 2015-09-03
## 1471 3 Canceled 2015-04-20
## 1472 1 Check-Out 2015-09-03
## 1473 1 No-Show 2015-08-31
## 1474 2 Canceled 2015-07-25
## 1475 1 Check-Out 2015-09-03
## 1476 2 Check-Out 2015-09-03
## 1477 0 Check-Out 2015-09-04
## 1478 0 Check-Out 2015-09-04
## 1479 2 Check-Out 2015-09-04
## 1480 0 Canceled 2015-06-17
## 1481 0 Canceled 2015-04-29
## 1482 1 Canceled 2015-07-03
## 1483 2 Check-Out 2015-09-07
## 1484 0 Check-Out 2015-09-10
## 1485 3 Check-Out 2015-09-11
## 1486 0 Canceled 2015-08-06
## 1487 1 Canceled 2015-07-22
## 1488 0 Check-Out 2015-09-04
## 1489 1 Check-Out 2015-09-04
## 1490 2 Check-Out 2015-09-04
## 1491 1 Canceled 2015-07-06
## 1492 0 Canceled 2015-07-31
## 1493 1 Canceled 2015-06-08
## 1494 0 Check-Out 2015-09-05
## 1495 2 Check-Out 2015-09-05
## 1496 2 Check-Out 2015-09-05
## 1497 0 Check-Out 2015-09-05
## 1498 0 Check-Out 2015-09-06
## 1499 0 Canceled 2015-08-21
## 1500 0 Check-Out 2015-09-03
## 1501 2 Canceled 2015-07-01
## 1502 0 Check-Out 2015-09-06
## 1503 2 Canceled 2015-07-01
## 1504 0 Check-Out 2015-09-07
## 1505 0 Check-Out 2015-09-08
## 1506 1 Canceled 2015-08-17
## 1507 1 Check-Out 2015-09-08
## 1508 2 Canceled 2015-08-10
## 1509 0 Canceled 2015-06-06
## 1510 0 Check-Out 2015-09-08
## 1511 0 Canceled 2015-07-25
## 1512 1 Check-Out 2015-09-09
## 1513 1 Check-Out 2015-09-09
## 1514 2 Canceled 2015-08-18
## 1515 0 Check-Out 2015-09-11
## 1516 2 Check-Out 2015-09-13
## 1517 0 Check-Out 2015-09-15
## 1518 0 Check-Out 2015-09-03
## 1519 3 Canceled 2015-04-20
## 1520 0 Canceled 2015-09-01
## 1521 3 Canceled 2015-04-20
## 1522 0 Check-Out 2015-09-06
## 1523 0 Check-Out 2015-09-07
## 1524 0 Check-Out 2015-09-07
## 1525 0 Check-Out 2015-09-09
## 1526 0 Canceled 2015-09-01
## 1527 0 Canceled 2015-06-26
## 1528 0 Canceled 2015-04-10
## 1529 0 Check-Out 2015-09-05
## 1530 0 Check-Out 2015-09-06
## 1531 0 Check-Out 2015-09-06
## 1532 0 Check-Out 2015-09-06
## 1533 0 Check-Out 2015-09-04
## 1534 0 Check-Out 2015-09-06
## 1535 2 Check-Out 2015-09-06
## 1536 0 Check-Out 2015-09-06
## 1537 0 Check-Out 2015-09-06
## 1538 0 Check-Out 2015-09-06
## 1539 0 Check-Out 2015-09-06
## 1540 0 Canceled 2015-01-02
## 1541 1 Check-Out 2015-09-07
## 1542 2 Check-Out 2015-09-07
## 1543 0 Check-Out 2015-09-07
## 1544 2 Check-Out 2015-09-07
## 1545 2 Check-Out 2015-09-07
## 1546 0 Canceled 2014-11-18
## 1547 2 Check-Out 2015-09-12
## 1548 0 Check-Out 2015-09-12
## 1549 3 Check-Out 2015-09-12
## 1550 1 Check-Out 2015-09-13
## 1551 0 Check-Out 2015-09-13
## 1552 1 Check-Out 2015-09-10
## 1553 1 Check-Out 2015-09-10
## 1554 0 No-Show 2015-09-03
## 1555 1 Check-Out 2015-09-17
## 1556 0 Check-Out 2015-09-05
## 1557 0 Canceled 2015-09-04
## 1558 2 Check-Out 2015-09-05
## 1559 0 Check-Out 2015-09-05
## 1560 0 Check-Out 2015-09-06
## 1561 0 Check-Out 2015-09-06
## 1562 0 Canceled 2015-06-04
## 1563 1 Check-Out 2015-09-06
## 1564 0 Canceled 2015-06-29
## 1565 1 Check-Out 2015-09-06
## 1566 0 Canceled 2015-08-06
## 1567 0 Check-Out 2015-09-07
## 1568 0 Canceled 2015-08-14
## 1569 0 Check-Out 2015-09-07
## 1570 2 Check-Out 2015-09-07
## 1571 0 Canceled 2015-08-07
## 1572 0 Check-Out 2015-09-08
## 1573 2 Check-Out 2015-09-08
## 1574 1 Check-Out 2015-09-09
## 1575 1 Check-Out 2015-09-09
## 1576 1 Canceled 2015-08-06
## 1577 0 Check-Out 2015-09-13
## 1578 0 Check-Out 2015-09-14
## 1579 0 Check-Out 2015-09-14
## 1580 2 Check-Out 2015-09-10
## 1581 0 Check-Out 2015-09-11
## 1582 0 Canceled 2015-08-28
## 1583 0 Canceled 2015-08-21
## 1584 2 Check-Out 2015-09-11
## 1585 1 Check-Out 2015-09-11
## 1586 2 Check-Out 2015-09-11
## 1587 0 Canceled 2015-06-29
## 1588 0 Canceled 2015-01-02
## 1589 0 Check-Out 2015-09-12
## 1590 1 Check-Out 2015-09-07
## 1591 0 Check-Out 2015-09-09
## 1592 0 Canceled 2015-01-02
## 1593 2 Check-Out 2015-09-12
## 1594 0 Canceled 2015-06-26
## 1595 0 Check-Out 2015-09-12
## 1596 0 Check-Out 2015-09-12
## 1597 0 No-Show 2015-09-05
## 1598 2 Canceled 2015-07-14
## 1599 0 Check-Out 2015-09-12
## 1600 1 Check-Out 2015-09-12
## 1601 0 Canceled 2015-07-13
## 1602 0 Canceled 2015-09-04
## 1603 0 Canceled 2015-09-04
## 1604 2 Canceled 2015-04-07
## 1605 1 Canceled 2015-05-01
## 1606 1 Canceled 2015-05-01
## 1607 2 Check-Out 2015-09-15
## 1608 1 Check-Out 2015-09-19
## 1609 0 Check-Out 2015-09-19
## 1610 0 Check-Out 2015-09-06
## 1611 1 Check-Out 2015-09-08
## 1612 3 Canceled 2015-05-13
## 1613 1 Check-Out 2015-09-09
## 1614 1 Check-Out 2015-09-10
## 1615 0 Canceled 2015-08-06
## 1616 1 Canceled 2015-08-25
## 1617 1 Canceled 2015-08-31
## 1618 1 Canceled 2015-06-29
## 1619 2 Canceled 2015-08-11
## 1620 0 Canceled 2015-08-18
## 1621 0 Check-Out 2015-09-11
## 1622 0 Canceled 2015-07-31
## 1623 0 Check-Out 2015-09-12
## 1624 0 Canceled 2015-08-24
## 1625 3 Canceled 2015-08-25
## 1626 0 Check-Out 2015-09-12
## 1627 3 Check-Out 2015-09-12
## 1628 0 Check-Out 2015-09-12
## 1629 2 Check-Out 2015-09-13
## 1630 0 Check-Out 2015-09-13
## 1631 1 Check-Out 2015-09-13
## 1632 1 Canceled 2015-05-23
## 1633 0 Check-Out 2015-09-13
## 1634 3 Check-Out 2015-09-13
## 1635 0 Check-Out 2015-09-13
## 1636 0 Check-Out 2015-09-13
## 1637 0 Check-Out 2015-09-13
## 1638 1 Canceled 2015-08-01
## 1639 1 Check-Out 2015-09-16
## 1640 0 Canceled 2015-06-05
## 1641 0 Check-Out 2015-09-16
## 1642 0 Check-Out 2015-09-17
## 1643 1 Check-Out 2015-09-20
## 1644 0 Canceled 2015-01-18
## 1645 0 Check-Out 2015-09-11
## 1646 2 Check-Out 2015-09-11
## 1647 0 Check-Out 2015-09-12
## 1648 1 Canceled 2015-07-21
## 1649 0 Check-Out 2015-09-12
## 1650 2 Check-Out 2015-09-12
## 1651 0 Check-Out 2015-09-13
## 1652 0 Canceled 2015-09-05
## 1653 0 Canceled 2015-06-05
## 1654 2 Canceled 2015-08-04
## 1655 2 Canceled 2015-08-27
## 1656 1 Check-Out 2015-10-23
## 1657 0 No-Show 2015-09-07
## 1658 1 Check-Out 2015-09-07
## 1659 0 Check-Out 2015-09-10
## 1660 0 Canceled 2015-01-22
## 1661 0 Canceled 2015-01-22
## 1662 0 Canceled 2015-01-22
## 1663 0 Canceled 2015-07-27
## 1664 1 Canceled 2015-08-28
## 1665 2 Canceled 2015-08-10
## 1666 1 Check-Out 2015-09-12
## 1667 0 Check-Out 2015-09-15
## 1668 0 Check-Out 2015-09-15
## 1669 0 Check-Out 2015-09-15
## 1670 0 Check-Out 2015-09-16
## 1671 0 Canceled 2015-01-01
## 1672 0 Check-Out 2015-09-15
## 1673 0 Check-Out 2015-09-22
## 1674 2 Canceled 2015-09-09
## 1675 0 Check-Out 2015-09-10
## 1676 0 Check-Out 2015-09-10
## 1677 0 Check-Out 2015-09-10
## 1678 2 Canceled 2015-09-09
## 1679 0 Canceled 2015-08-22
## 1680 2 Check-Out 2015-09-11
## 1681 0 Check-Out 2015-09-12
## 1682 0 Check-Out 2015-09-10
## 1683 2 Check-Out 2015-09-12
## 1684 0 Canceled 2015-09-09
## 1685 2 Check-Out 2015-09-15
## 1686 2 Check-Out 2015-09-15
## 1687 1 Check-Out 2015-09-16
## 1688 0 Check-Out 2015-09-16
## 1689 2 Canceled 2015-04-29
## 1690 1 Canceled 2015-07-23
## 1691 1 Canceled 2015-04-29
## 1692 2 Check-Out 2015-09-14
## 1693 0 Check-Out 2015-09-14
## 1694 1 Check-Out 2015-09-13
## 1695 1 Canceled 2015-05-22
## 1696 0 Check-Out 2015-09-14
## 1697 1 Canceled 2015-08-14
## 1698 2 Check-Out 2015-09-14
## 1699 1 Canceled 2015-05-22
## 1700 0 Canceled 2015-05-21
## 1701 1 Check-Out 2015-09-15
## 1702 1 Check-Out 2015-09-15
## 1703 0 Check-Out 2015-09-17
## 1704 0 Canceled 2015-06-11
## 1705 2 Check-Out 2015-09-11
## 1706 0 Check-Out 2015-09-11
## 1707 1 Check-Out 2015-09-12
## 1708 2 Canceled 2015-05-11
## 1709 2 Check-Out 2015-09-12
## 1710 2 Canceled 2015-08-12
## 1711 1 Check-Out 2015-09-17
## 1712 0 Canceled 2015-08-25
## 1713 0 Check-Out 2015-09-17
## 1714 0 Check-Out 2015-09-17
## 1715 0 Check-Out 2015-09-17
## 1716 1 Check-Out 2015-09-17
## 1717 0 Check-Out 2015-09-19
## 1718 1 Canceled 2015-07-15
## 1719 1 Canceled 2015-05-22
## 1720 1 Check-Out 2015-09-20
## 1721 1 Check-Out 2015-09-20
## 1722 2 Check-Out 2015-09-24
## 1723 1 Check-Out 2015-09-12
## 1724 0 Check-Out 2015-09-12
## 1725 0 Check-Out 2015-09-12
## 1726 0 Check-Out 2015-09-12
## 1727 3 Check-Out 2015-09-12
## 1728 0 Check-Out 2015-09-12
## 1729 0 Check-Out 2015-09-13
## 1730 0 Check-Out 2015-09-13
## 1731 0 Check-Out 2015-09-13
## 1732 0 Check-Out 2015-09-13
## 1733 1 Check-Out 2015-09-14
## 1734 0 Check-Out 2015-09-14
## 1735 1 Check-Out 2015-09-14
## 1736 2 Check-Out 2015-09-16
## 1737 0 Check-Out 2015-09-18
## 1738 0 Canceled 2015-07-21
## 1739 0 Check-Out 2015-09-18
## 1740 0 Canceled 2015-06-25
## 1741 0 Check-Out 2015-09-21
## 1742 1 Canceled 2015-06-23
## 1743 1 Canceled 2015-06-23
## 1744 2 Check-Out 2015-09-16
## 1745 0 Canceled 2015-08-06
## 1746 1 Canceled 2015-05-09
## 1747 1 Check-Out 2015-09-18
## 1748 2 Canceled 2015-09-08
## 1749 2 Canceled 2015-08-26
## 1750 0 Check-Out 2015-09-19
## 1751 0 Check-Out 2015-09-19
## 1752 1 Check-Out 2015-09-19
## 1753 0 Canceled 2015-01-02
## 1754 0 Check-Out 2015-09-19
## 1755 0 Check-Out 2015-09-30
## 1756 0 Check-Out 2015-09-19
## 1757 0 Check-Out 2015-09-14
## 1758 0 Canceled 2015-05-20
## 1759 1 Canceled 2015-05-09
## 1760 1 Check-Out 2015-09-17
## 1761 0 Canceled 2015-09-09
## 1762 1 Canceled 2015-08-10
## 1763 1 Check-Out 2015-09-17
## 1764 1 Canceled 2015-08-10
## 1765 2 Check-Out 2015-09-18
## 1766 0 Check-Out 2015-09-18
## 1767 0 Canceled 2015-09-04
## 1768 2 Canceled 2015-07-31
## 1769 1 Canceled 2015-05-16
## 1770 1 Check-Out 2015-09-20
## 1771 0 Check-Out 2015-09-20
## 1772 1 Check-Out 2015-09-21
## 1773 2 Check-Out 2015-09-24
## 1774 1 Check-Out 2015-09-25
## 1775 0 Check-Out 2015-09-25
## 1776 0 Canceled 2015-06-19
## 1777 0 Check-Out 2015-09-27
## 1778 0 Check-Out 2015-09-16
## 1779 2 Check-Out 2015-09-17
## 1780 2 Canceled 2015-09-03
## 1781 1 Check-Out 2015-09-19
## 1782 2 Check-Out 2015-09-19
## 1783 2 Check-Out 2015-09-19
## 1784 0 Canceled 2015-08-20
## 1785 2 Check-Out 2015-09-19
## 1786 1 Check-Out 2015-09-20
## 1787 1 Check-Out 2015-09-20
## 1788 0 Canceled 2015-07-21
## 1789 1 Check-Out 2015-09-22
## 1790 0 Check-Out 2015-09-28
## 1791 0 Check-Out 2015-10-12
## 1792 0 Check-Out 2015-09-17
## 1793 0 Check-Out 2015-09-16
## 1794 0 Canceled 2015-09-02
## 1795 0 Canceled 2015-08-17
## 1796 0 Check-Out 2015-09-20
## 1797 1 Canceled 2015-07-14
## 1798 0 Check-Out 2015-09-21
## 1799 0 Canceled 2015-08-28
## 1800 0 Canceled 2015-06-13
## 1801 1 Canceled 2015-07-14
## 1802 1 Check-Out 2015-09-24
## 1803 0 Check-Out 2015-09-29
## 1804 0 Canceled 2015-05-27
## 1805 0 Check-Out 2015-09-29
## 1806 1 Check-Out 2015-09-17
## 1807 1 Check-Out 2015-09-17
## 1808 2 Check-Out 2015-09-17
## 1809 0 Check-Out 2015-09-17
## 1810 0 Check-Out 2015-09-17
## 1811 1 Check-Out 2015-09-17
## 1812 0 Check-Out 2015-09-17
## 1813 1 Check-Out 2015-09-17
## 1814 0 Check-Out 2015-09-18
## 1815 2 Check-Out 2015-09-18
## 1816 1 Check-Out 2015-09-19
## 1817 1 Canceled 2015-07-15
## 1818 2 Check-Out 2015-09-19
## 1819 1 Check-Out 2015-09-19
## 1820 0 Check-Out 2015-09-19
## 1821 0 Check-Out 2015-09-19
## 1822 1 Canceled 2015-08-17
## 1823 0 Canceled 2015-05-19
## 1824 0 Check-Out 2015-09-21
## 1825 0 Check-Out 2015-09-20
## 1826 2 Check-Out 2015-09-21
## 1827 0 Check-Out 2015-09-23
## 1828 1 Check-Out 2015-09-23
## 1829 1 Canceled 2015-07-20
## 1830 1 Check-Out 2015-09-23
## 1831 0 Canceled 2015-07-31
## 1832 1 Canceled 2015-09-10
## 1833 1 Canceled 2015-06-13
## 1834 0 Check-Out 2015-09-18
## 1835 2 Check-Out 2015-09-19
## 1836 2 Check-Out 2015-09-17
## 1837 2 Check-Out 2015-09-18
## 1838 0 Check-Out 2015-09-18
## 1839 0 Canceled 2015-09-15
## 1840 0 Check-Out 2015-09-21
## 1841 0 Check-Out 2015-09-21
## 1842 0 Check-Out 2015-09-21
## 1843 0 Check-Out 2015-09-21
## 1844 0 Check-Out 2015-09-21
## 1845 2 Check-Out 2015-09-22
## 1846 2 Canceled 2015-08-10
## 1847 0 Canceled 2015-07-31
## 1848 0 Check-Out 2015-09-21
## 1849 0 Check-Out 2015-09-21
## 1850 1 Canceled 2015-07-20
## 1851 0 Check-Out 2015-09-24
## 1852 0 Canceled 2015-08-13
## 1853 0 Check-Out 2015-09-24
## 1854 2 Check-Out 2015-09-24
## 1855 0 Check-Out 2015-09-24
## 1856 0 Check-Out 2015-10-01
## 1857 1 Check-Out 2015-10-01
## 1858 1 Check-Out 2015-09-20
## 1859 1 Check-Out 2015-09-20
## 1860 1 Check-Out 2015-09-21
## 1861 0 Canceled 2015-08-18
## 1862 0 Check-Out 2015-09-21
## 1863 0 Check-Out 2015-09-21
## 1864 0 Canceled 2015-08-12
## 1865 0 Canceled 2015-08-22
## 1866 2 Check-Out 2015-09-23
## 1867 0 Canceled 2015-07-21
## 1868 0 Check-Out 2015-09-25
## 1869 0 Check-Out 2015-09-25
## 1870 1 Canceled 2015-07-08
## 1871 0 Check-Out 2015-09-28
## 1872 0 Check-Out 2015-09-21
## 1873 2 Check-Out 2015-09-23
## 1874 2 Check-Out 2015-09-23
## 1875 1 Canceled 2015-08-17
## 1876 0 Canceled 2015-06-02
## 1877 1 Check-Out 2015-09-24
## 1878 0 Canceled 2015-07-24
## 1879 0 Check-Out 2015-09-24
## 1880 0 Check-Out 2015-09-26
## 1881 0 Check-Out 2015-09-26
## 1882 0 Check-Out 2015-09-26
## 1883 1 Check-Out 2015-09-26
## 1884 2 Check-Out 2015-09-26
## 1885 0 Canceled 2015-01-02
## 1886 2 Canceled 2015-07-27
## 1887 1 Check-Out 2015-09-26
## 1888 2 Check-Out 2015-09-29
## 1889 2 Check-Out 2015-09-29
## 1890 2 Check-Out 2015-09-29
## 1891 0 Canceled 2015-06-29
## 1892 0 Canceled 2015-08-10
## 1893 0 Check-Out 2015-09-24
## 1894 0 Canceled 2015-07-31
## 1895 0 Check-Out 2015-09-27
## 1896 1 Canceled 2015-04-18
## 1897 0 Check-Out 2015-09-27
## 1898 0 Check-Out 2015-09-27
## 1899 1 Canceled 2015-04-18
## 1900 2 Check-Out 2015-09-27
## 1901 0 Canceled 2015-09-18
## 1902 0 Check-Out 2015-10-01
## 1903 0 Check-Out 2015-10-01
## 1904 1 Check-Out 2015-10-01
## 1905 0 Canceled 2015-08-18
## 1906 0 Canceled 2015-09-09
## 1907 0 Canceled 2015-09-18
## 1908 1 Check-Out 2015-09-23
## 1909 0 Canceled 2015-08-18
## 1910 0 Canceled 2015-08-18
## 1911 0 Canceled 2015-08-20
## 1912 0 Canceled 2015-08-18
## 1913 2 Check-Out 2015-09-23
## 1914 0 Canceled 2015-08-18
## 1915 1 Check-Out 2015-09-23
## 1916 1 Check-Out 2015-09-24
## 1917 1 Check-Out 2015-09-24
## 1918 0 Canceled 2015-01-02
## 1919 0 Canceled 2015-07-11
## 1920 1 Canceled 2015-07-29
## 1921 0 Check-Out 2015-09-28
## 1922 1 Check-Out 2015-09-28
## 1923 0 Check-Out 2015-09-28
## 1924 1 Check-Out 2015-09-28
## 1925 0 Check-Out 2015-09-28
## 1926 0 Check-Out 2015-09-28
## 1927 0 Check-Out 2015-09-30
## 1928 1 Check-Out 2015-10-01
## 1929 1 Check-Out 2015-10-01
## 1930 0 Check-Out 2015-10-01
## 1931 0 Check-Out 2015-10-02
## 1932 1 Check-Out 2015-09-24
## 1933 1 Canceled 2015-09-08
## 1934 2 Canceled 2015-04-22
## 1935 2 Canceled 2015-09-08
## 1936 3 Check-Out 2015-09-29
## 1937 0 Check-Out 2015-09-29
## 1938 3 Check-Out 2015-09-29
## 1939 0 Check-Out 2015-09-29
## 1940 0 Canceled 2015-09-21
## 1941 1 Check-Out 2015-09-30
## 1942 0 Canceled 2015-06-15
## 1943 0 Check-Out 2015-09-24
## 1944 0 Check-Out 2015-09-24
## 1945 0 Check-Out 2015-09-24
## 1946 0 Canceled 2015-09-22
## 1947 0 Canceled 2015-09-22
## 1948 1 Check-Out 2015-09-25
## 1949 1 Check-Out 2015-09-25
## 1950 1 Canceled 2015-09-22
## 1951 1 Canceled 2015-09-22
## 1952 0 Check-Out 2015-09-28
## 1953 1 Canceled 2015-09-14
## 1954 1 Canceled 2015-09-18
## 1955 1 Check-Out 2015-09-30
## 1956 1 Check-Out 2015-10-01
## 1957 0 Check-Out 2015-10-02
## 1958 0 Check-Out 2015-09-27
## 1959 0 Check-Out 2015-09-26
## 1960 3 Check-Out 2015-09-26
## 1961 2 Check-Out 2015-09-27
## 1962 0 Check-Out 2015-09-25
## 1963 0 Canceled 2015-01-02
## 1964 1 Check-Out 2015-09-29
## 1965 0 Check-Out 2015-09-29
## 1966 1 Check-Out 2015-10-01
## 1967 0 Check-Out 2015-10-01
## 1968 1 Check-Out 2015-10-04
## 1969 0 Check-Out 2015-10-08
## 1970 0 Canceled 2015-09-23
## 1971 0 Check-Out 2015-09-26
## 1972 1 Check-Out 2015-09-26
## 1973 0 Check-Out 2015-09-26
## 1974 1 Check-Out 2015-09-26
## 1975 0 Check-Out 2015-09-26
## 1976 1 Check-Out 2015-09-27
## 1977 1 Check-Out 2015-09-27
## 1978 0 Canceled 2015-06-19
## 1979 1 Check-Out 2015-09-27
## 1980 1 Check-Out 2015-09-27
## 1981 2 Canceled 2015-09-08
## 1982 1 Check-Out 2015-09-30
## 1983 1 Check-Out 2015-09-30
## 1984 2 Canceled 2015-08-31
## 1985 3 Canceled 2015-07-18
## 1986 0 Check-Out 2015-10-02
## 1987 1 Check-Out 2015-10-02
## 1988 1 Check-Out 2015-10-02
## 1989 1 Check-Out 2015-10-03
## 1990 3 Canceled 2015-07-18
## 1991 1 Check-Out 2015-09-27
## 1992 1 Check-Out 2015-09-28
## 1993 3 Canceled 2015-08-20
## 1994 4 Canceled 2015-08-20
## 1995 0 Check-Out 2015-09-28
## 1996 1 Canceled 2015-07-17
## 1997 0 Canceled 2015-08-24
## 1998 0 Canceled 2015-08-27
## 1999 2 Canceled 2015-08-27
## 2000 1 Canceled 2015-09-01
## 2001 1 Check-Out 2015-09-29
## 2002 1 Check-Out 2015-10-01
## 2003 1 Check-Out 2015-10-02
## 2004 0 Canceled 2015-01-02
## 2005 0 Check-Out 2015-10-03
## 2006 0 Check-Out 2015-10-03
## 2007 0 Check-Out 2015-10-03
## 2008 1 Canceled 2015-09-16
## 2009 1 Check-Out 2015-10-01
## 2010 0 Check-Out 2015-09-28
## 2011 0 Check-Out 2015-09-28
## 2012 2 Canceled 2015-08-04
## 2013 2 Check-Out 2015-10-02
## 2014 0 Check-Out 2015-10-04
## 2015 0 Check-Out 2015-10-04
## 2016 0 Check-Out 2015-10-04
## 2017 1 Check-Out 2015-10-04
## 2018 0 Canceled 2015-07-17
## 2019 0 Check-Out 2015-10-04
## 2020 0 Canceled 2015-07-20
## 2021 0 Check-Out 2015-10-04
## 2022 2 Check-Out 2015-10-04
## 2023 0 Canceled 2015-09-21
## 2024 0 Check-Out 2015-10-07
## 2025 1 Check-Out 2015-10-09
## 2026 0 Check-Out 2015-10-11
## 2027 1 Check-Out 2015-09-29
## 2028 2 Check-Out 2015-09-30
## 2029 1 Canceled 2015-07-13
## 2030 1 Canceled 2015-07-25
## 2031 2 Check-Out 2015-10-02
## 2032 2 Canceled 2015-07-20
## 2033 1 Canceled 2015-07-25
## 2034 0 Check-Out 2015-10-02
## 2035 1 Canceled 2015-07-25
## 2036 1 Canceled 2015-07-13
## 2037 1 Canceled 2015-07-13
## 2038 0 Canceled 2015-07-06
## 2039 2 Canceled 2015-09-10
## 2040 1 Check-Out 2015-10-05
## 2041 2 Check-Out 2015-10-05
## 2042 0 Check-Out 2015-10-05
## 2043 2 Check-Out 2015-10-06
## 2044 0 Canceled 2015-06-02
## 2045 0 Check-Out 2015-10-10
## 2046 1 Canceled 2015-09-03
## 2047 2 Canceled 2015-07-11
## 2048 1 Canceled 2015-09-14
## 2049 0 Check-Out 2015-10-06
## 2050 2 Check-Out 2015-10-06
## 2051 0 Check-Out 2015-10-03
## 2052 0 No-Show 2015-09-29
## 2053 0 Check-Out 2015-10-06
## 2054 1 Canceled 2015-09-14
## 2055 1 Check-Out 2015-10-06
## 2056 1 Canceled 2015-09-01
## 2057 3 Check-Out 2015-10-07
## 2058 1 Canceled 2015-09-01
## 2059 2 Check-Out 2015-10-08
## 2060 2 Check-Out 2015-10-11
## 2061 1 Check-Out 2015-10-01
## 2062 0 Check-Out 2015-10-01
## 2063 0 Check-Out 2015-10-01
## 2064 1 Check-Out 2015-10-02
## 2065 0 Check-Out 2015-10-03
## 2066 0 Check-Out 2015-10-03
## 2067 0 Check-Out 2015-10-03
## 2068 2 Check-Out 2015-10-03
## 2069 0 Check-Out 2015-10-03
## 2070 0 Check-Out 2015-10-03
## 2071 0 Check-Out 2015-10-03
## 2072 0 Check-Out 2015-10-03
## 2073 0 Canceled 2015-09-28
## 2074 0 Canceled 2015-09-28
## 2075 1 Check-Out 2015-10-06
## 2076 1 Canceled 2015-06-15
## 2077 2 Check-Out 2015-10-06
## 2078 0 Check-Out 2015-10-07
## 2079 0 Check-Out 2015-10-07
## 2080 0 Check-Out 2015-10-07
## 2081 0 Canceled 2015-08-12
## 2082 1 Check-Out 2015-10-07
## 2083 2 Check-Out 2015-10-07
## 2084 0 Check-Out 2015-10-07
## 2085 1 Check-Out 2015-10-07
## 2086 0 Canceled 2015-08-12
## 2087 0 Check-Out 2015-10-14
## 2088 2 Check-Out 2015-10-02
## 2089 2 Canceled 2015-09-08
## 2090 2 Check-Out 2015-10-04
## 2091 1 Check-Out 2015-10-04
## 2092 2 Check-Out 2015-10-04
## 2093 2 Check-Out 2015-10-04
## 2094 1 Check-Out 2015-10-05
## 2095 3 Check-Out 2015-10-05
## 2096 1 Check-Out 2015-10-05
## 2097 0 Check-Out 2015-10-06
## 2098 1 Check-Out 2015-10-06
## 2099 0 Check-Out 2015-10-06
## 2100 0 Check-Out 2015-10-08
## 2101 1 Check-Out 2015-10-08
## 2102 0 Check-Out 2015-10-08
## 2103 0 Canceled 2015-09-12
## 2104 1 Check-Out 2015-10-08
## 2105 0 Check-Out 2015-10-08
## 2106 2 Check-Out 2015-10-08
## 2107 1 Check-Out 2015-10-08
## 2108 2 Check-Out 2015-10-08
## 2109 2 Check-Out 2015-10-08
## 2110 0 Canceled 2015-06-22
## 2111 0 Check-Out 2015-10-08
## 2112 0 Check-Out 2015-10-04
## 2113 0 Check-Out 2015-10-04
## 2114 0 Check-Out 2015-10-04
## 2115 2 Check-Out 2015-10-04
## 2116 0 Canceled 2015-09-25
## 2117 0 Canceled 2015-07-21
## 2118 0 Check-Out 2015-10-06
## 2119 1 Check-Out 2015-10-06
## 2120 1 Check-Out 2015-10-07
## 2121 1 Check-Out 2015-10-09
## 2122 0 Check-Out 2015-10-09
## 2123 2 Check-Out 2015-10-09
## 2124 0 Check-Out 2015-10-09
## 2125 1 Check-Out 2015-10-09
## 2126 0 Check-Out 2015-10-09
## 2127 0 Canceled 2015-09-09
## 2128 0 Check-Out 2015-10-09
## 2129 0 Check-Out 2015-10-09
## 2130 3 Check-Out 2015-10-10
## 2131 2 Check-Out 2015-10-10
## 2132 3 Check-Out 2015-10-10
## 2133 0 Check-Out 2015-10-04
## 2134 0 Canceled 2015-08-12
## 2135 0 Canceled 2015-08-12
## 2136 0 Canceled 2015-08-12
## 2137 0 Canceled 2015-08-12
## 2138 0 Check-Out 2015-10-04
## 2139 0 Check-Out 2015-10-04
## 2140 0 Check-Out 2015-10-04
## 2141 0 Check-Out 2015-10-04
## 2142 0 Canceled 2015-08-12
## 2143 0 Canceled 2015-08-12
## 2144 1 Canceled 2015-09-30
## 2145 1 Canceled 2015-09-30
## 2146 0 Check-Out 2015-10-07
## 2147 0 Check-Out 2015-10-07
## 2148 0 Check-Out 2015-10-07
## 2149 0 Check-Out 2015-10-07
## 2150 1 Check-Out 2015-10-07
## 2151 0 Canceled 2015-09-01
## 2152 0 Check-Out 2015-10-07
## 2153 1 Check-Out 2015-10-07
## 2154 0 Canceled 2015-09-18
## 2155 1 Check-Out 2015-10-10
## 2156 1 Check-Out 2015-10-06
## 2157 1 Check-Out 2015-10-06
## 2158 2 Canceled 2015-09-14
## 2159 0 Check-Out 2015-10-10
## 2160 0 Check-Out 2015-10-10
## 2161 0 Check-Out 2015-10-10
## 2162 0 Check-Out 2015-10-10
## 2163 2 Check-Out 2015-10-10
## 2164 0 Check-Out 2015-10-10
## 2165 0 Canceled 2015-01-02
## 2166 1 Check-Out 2015-10-10
## 2167 1 Canceled 2015-08-20
## 2168 2 Check-Out 2015-10-10
## 2169 0 Check-Out 2015-10-10
## 2170 1 Check-Out 2015-10-10
## 2171 0 Check-Out 2015-10-05
## 2172 0 Check-Out 2015-10-05
## 2173 0 Check-Out 2015-10-06
## 2174 0 Canceled 2015-01-02
## 2175 0 Check-Out 2015-10-06
## 2176 0 Canceled 2015-09-11
## 2177 0 Canceled 2015-09-21
## 2178 0 Check-Out 2015-10-11
## 2179 1 Check-Out 2015-10-11
## 2180 1 Check-Out 2015-10-14
## 2181 0 Check-Out 2015-10-15
## 2182 0 Canceled 2015-07-17
## 2183 0 Canceled 2015-07-17
## 2184 0 Canceled 2015-07-17
## 2185 0 Canceled 2015-07-17
## 2186 0 Canceled 2015-07-17
## 2187 0 Canceled 2015-07-17
## 2188 0 Canceled 2015-07-17
## 2189 0 Canceled 2015-07-17
## 2190 0 Canceled 2015-07-17
## 2191 0 Canceled 2015-07-17
## 2192 0 Canceled 2015-07-17
## 2193 0 Canceled 2015-07-17
## 2194 1 Check-Out 2015-10-09
## 2195 1 Check-Out 2015-10-09
## 2196 1 Canceled 2015-08-31
## 2197 0 Check-Out 2015-10-18
## 2198 0 Check-Out 2015-10-10
## 2199 1 Check-Out 2015-10-10
## 2200 1 Check-Out 2015-10-06
## 2201 1 Check-Out 2015-10-07
## 2202 1 Check-Out 2015-10-07
## 2203 0 Canceled 2015-10-02
## 2204 1 Check-Out 2015-10-09
## 2205 0 Check-Out 2015-10-09
## 2206 2 Check-Out 2015-10-09
## 2207 0 Check-Out 2015-10-12
## 2208 2 Check-Out 2015-10-12
## 2209 1 Check-Out 2015-10-12
## 2210 2 Canceled 2015-08-11
## 2211 2 Canceled 2015-08-11
## 2212 2 Canceled 2015-08-11
## 2213 2 Canceled 2015-08-11
## 2214 0 Check-Out 2015-10-15
## 2215 0 Canceled 2015-06-26
## 2216 0 Canceled 2015-10-05
## 2217 0 Canceled 2015-10-05
## 2218 0 Canceled 2015-10-05
## 2219 0 Check-Out 2015-10-06
## 2220 0 Canceled 2015-09-04
## 2221 1 Check-Out 2015-10-07
## 2222 0 Check-Out 2015-10-08
## 2223 0 Canceled 2015-08-21
## 2224 0 Canceled 2015-10-05
## 2225 0 Check-Out 2015-10-06
## 2226 1 Check-Out 2015-10-10
## 2227 0 Check-Out 2015-10-08
## 2228 0 Check-Out 2015-10-12
## 2229 0 Canceled 2015-09-03
## 2230 0 Canceled 2015-01-02
## 2231 1 Check-Out 2015-10-13
## 2232 0 Canceled 2015-01-02
## 2233 1 Check-Out 2015-10-13
## 2234 1 Check-Out 2015-10-13
## 2235 3 Canceled 2015-10-05
## 2236 0 Check-Out 2015-10-08
## 2237 3 Canceled 2015-10-05
## 2238 3 Canceled 2015-10-05
## 2239 3 Canceled 2015-10-05
## 2240 2 Check-Out 2015-10-09
## 2241 2 Check-Out 2015-10-09
## 2242 1 Check-Out 2015-10-09
## 2243 0 Check-Out 2015-10-08
## 2244 1 Check-Out 2015-10-08
## 2245 0 Check-Out 2015-10-08
## 2246 0 Check-Out 2015-10-11
## 2247 1 Check-Out 2015-10-09
## 2248 0 Check-Out 2015-10-14
## 2249 1 Check-Out 2015-10-14
## 2250 0 Check-Out 2015-10-14
## 2251 1 Check-Out 2015-10-14
## 2252 1 Canceled 2015-09-25
## 2253 1 Check-Out 2015-10-14
## 2254 1 Check-Out 2015-10-14
## 2255 1 Canceled 2015-10-08
## 2256 0 Check-Out 2015-10-09
## 2257 1 Check-Out 2015-10-09
## 2258 1 Check-Out 2015-10-09
## 2259 1 Canceled 2015-10-08
## 2260 1 Check-Out 2015-10-09
## 2261 0 Check-Out 2015-10-11
## 2262 0 Check-Out 2015-10-11
## 2263 0 Check-Out 2015-10-11
## 2264 1 Check-Out 2015-10-11
## 2265 2 Check-Out 2015-10-11
## 2266 0 Check-Out 2015-10-11
## 2267 1 Check-Out 2015-10-11
## 2268 1 Check-Out 2015-10-11
## 2269 0 Check-Out 2015-10-11
## 2270 0 Check-Out 2015-10-11
## 2271 0 Check-Out 2015-10-11
## 2272 2 Check-Out 2015-10-11
## 2273 0 Check-Out 2015-10-11
## 2274 0 Check-Out 2015-10-11
## 2275 2 No-Show 2015-10-08
## 2276 0 Check-Out 2015-10-11
## 2277 2 Check-Out 2015-10-11
## 2278 1 Check-Out 2015-10-12
## 2279 1 Check-Out 2015-10-15
## 2280 0 Canceled 2015-01-02
## 2281 1 Check-Out 2015-10-15
## 2282 0 Check-Out 2015-10-12
## 2283 1 Check-Out 2015-10-15
## 2284 0 Check-Out 2015-10-15
## 2285 1 Canceled 2015-07-07
## 2286 0 Check-Out 2015-10-20
## 2287 0 Check-Out 2015-10-10
## 2288 0 Check-Out 2015-10-10
## 2289 1 Check-Out 2015-10-10
## 2290 0 Canceled 2015-08-29
## 2291 2 Check-Out 2015-10-11
## 2292 1 Check-Out 2015-10-11
## 2293 1 Check-Out 2015-10-11
## 2294 2 Check-Out 2015-10-11
## 2295 0 Canceled 2015-07-23
## 2296 1 Canceled 2015-10-08
## 2297 1 Check-Out 2015-10-11
## 2298 0 Canceled 2015-08-14
## 2299 0 Canceled 2015-08-14
## 2300 0 Canceled 2015-08-14
## 2301 0 Canceled 2015-08-14
## 2302 0 Canceled 2015-08-14
## 2303 0 Canceled 2015-08-14
## 2304 2 Check-Out 2015-10-12
## 2305 0 Canceled 2015-08-14
## 2306 0 Canceled 2015-08-14
## 2307 1 Check-Out 2015-10-12
## 2308 1 Check-Out 2015-10-12
## 2309 2 Check-Out 2015-10-11
## 2310 2 Check-Out 2015-10-11
## 2311 1 Check-Out 2015-10-12
## 2312 1 Check-Out 2015-10-12
## 2313 0 Canceled 2015-08-14
## 2314 0 Canceled 2015-08-14
## 2315 0 Canceled 2015-08-14
## 2316 0 Canceled 2015-08-14
## 2317 0 Canceled 2015-08-14
## 2318 0 Canceled 2015-08-14
## 2319 0 Canceled 2015-08-14
## 2320 0 Canceled 2015-08-14
## 2321 0 Canceled 2015-08-14
## 2322 0 Canceled 2015-08-14
## 2323 0 Canceled 2015-08-14
## 2324 0 Canceled 2015-08-14
## 2325 0 Canceled 2015-08-14
## 2326 3 Check-Out 2015-10-12
## 2327 1 Check-Out 2015-10-12
## 2328 2 Check-Out 2015-10-12
## 2329 0 Canceled 2015-08-14
## 2330 0 Canceled 2015-08-14
## 2331 0 Canceled 2015-08-14
## 2332 2 Check-Out 2015-10-12
## 2333 0 Check-Out 2015-10-12
## 2334 0 Check-Out 2015-10-12
## 2335 0 Check-Out 2015-10-12
## 2336 0 Canceled 2015-08-14
## 2337 0 Canceled 2015-08-14
## 2338 0 Canceled 2015-08-14
## 2339 0 Canceled 2015-08-14
## 2340 2 Check-Out 2015-10-13
## 2341 0 Check-Out 2015-10-13
## 2342 2 Check-Out 2015-10-13
## 2343 2 Check-Out 2015-10-13
## 2344 1 Check-Out 2015-10-14
## 2345 0 Check-Out 2015-10-14
## 2346 0 Check-Out 2015-10-09
## 2347 0 Canceled 2015-10-09
## 2348 0 Check-Out 2015-10-11
## 2349 0 Check-Out 2015-10-11
## 2350 1 Check-Out 2015-10-11
## 2351 0 No-Show 2015-10-10
## 2352 0 Check-Out 2015-10-12
## 2353 1 Check-Out 2015-10-12
## 2354 2 Check-Out 2015-10-12
## 2355 2 Check-Out 2015-10-12
## 2356 1 Canceled 2015-09-28
## 2357 0 Check-Out 2015-10-12
## 2358 0 Check-Out 2015-10-12
## 2359 2 Check-Out 2015-10-12
## 2360 3 Check-Out 2015-10-12
## 2361 1 Check-Out 2015-10-12
## 2362 3 Check-Out 2015-10-12
## 2363 1 Check-Out 2015-10-12
## 2364 2 Check-Out 2015-10-12
## 2365 1 Check-Out 2015-10-12
## 2366 2 Check-Out 2015-10-12
## 2367 1 Canceled 2015-09-28
## 2368 1 Check-Out 2015-10-12
## 2369 0 Canceled 2015-07-08
## 2370 0 Canceled 2015-07-08
## 2371 0 Canceled 2015-07-08
## 2372 0 Canceled 2015-07-08
## 2373 0 Canceled 2015-07-08
## 2374 0 Canceled 2015-07-08
## 2375 0 Canceled 2015-07-08
## 2376 0 Canceled 2015-07-08
## 2377 0 Canceled 2015-07-08
## 2378 0 Canceled 2015-07-08
## 2379 0 Canceled 2015-05-20
## 2380 0 Canceled 2015-07-08
## 2381 0 Canceled 2015-07-08
## 2382 0 Canceled 2015-07-08
## 2383 0 Canceled 2015-05-20
## 2384 1 Check-Out 2015-10-19
## 2385 1 Check-Out 2015-10-31
## 2386 1 Check-Out 2015-10-12
## 2387 1 Check-Out 2015-10-12
## 2388 1 Check-Out 2015-10-12
## 2389 0 Check-Out 2015-10-12
## 2390 0 Canceled 2015-09-21
## 2391 1 Check-Out 2015-10-12
## 2392 0 Check-Out 2015-10-12
## 2393 1 Check-Out 2015-10-13
## 2394 2 Check-Out 2015-10-13
## 2395 0 Check-Out 2015-10-13
## 2396 0 Check-Out 2015-10-13
## 2397 0 Canceled 2015-09-28
## 2398 0 Check-Out 2015-10-12
## 2399 0 Canceled 2015-09-11
## 2400 2 Canceled 2015-09-30
## 2401 1 Check-Out 2015-10-15
## 2402 0 Canceled 2015-07-31
## 2403 0 Canceled 2015-09-11
## 2404 2 Check-Out 2015-10-16
## 2405 0 Check-Out 2015-10-16
## 2406 1 Check-Out 2015-10-18
## 2407 0 Check-Out 2015-10-18
## 2408 0 Check-Out 2015-10-11
## 2409 2 Check-Out 2015-10-12
## 2410 0 Check-Out 2015-10-12
## 2411 0 Check-Out 2015-10-13
## 2412 1 Check-Out 2015-10-13
## 2413 0 Check-Out 2015-10-13
## 2414 0 Check-Out 2015-10-14
## 2415 1 Check-Out 2015-10-14
## 2416 0 Check-Out 2015-10-14
## 2417 1 Check-Out 2015-10-18
## 2418 0 Canceled 2015-01-02
## 2419 0 Canceled 2015-01-02
## 2420 0 Canceled 2015-01-02
## 2421 0 Check-Out 2015-10-12
## 2422 0 Check-Out 2015-10-20
## 2423 1 Check-Out 2015-10-14
## 2424 0 Check-Out 2015-10-14
## 2425 0 Check-Out 2015-10-14
## 2426 1 Check-Out 2015-10-14
## 2427 0 Check-Out 2015-10-14
## 2428 1 Check-Out 2015-10-15
## 2429 0 Canceled 2015-09-30
## 2430 0 Check-Out 2015-10-20
## 2431 2 Check-Out 2015-10-21
## 2432 0 Check-Out 2015-10-15
## 2433 1 Check-Out 2015-10-15
## 2434 1 Check-Out 2015-10-15
## 2435 0 Check-Out 2015-10-15
## 2436 1 Check-Out 2015-10-15
## 2437 2 Check-Out 2015-10-15
## 2438 1 Check-Out 2015-10-15
## 2439 1 Check-Out 2015-10-22
## 2440 0 Check-Out 2015-10-15
## 2441 0 Check-Out 2015-10-18
## 2442 1 Check-Out 2015-10-19
## 2443 0 Check-Out 2015-10-21
## 2444 3 Check-Out 2015-10-16
## 2445 3 Check-Out 2015-10-16
## 2446 3 Check-Out 2015-10-16
## 2447 0 Check-Out 2015-10-17
## 2448 0 Check-Out 2015-10-17
## 2449 3 Check-Out 2015-10-17
## 2450 1 Check-Out 2015-10-18
## 2451 0 Check-Out 2015-10-18
## 2452 2 Check-Out 2015-10-19
## 2453 2 Check-Out 2015-10-19
## 2454 0 Check-Out 2015-10-20
## 2455 0 Check-Out 2015-10-23
## 2456 0 Check-Out 2015-10-18
## 2457 1 Canceled 2015-10-14
## 2458 0 Check-Out 2015-10-24
## 2459 2 Check-Out 2015-10-25
## 2460 1 Canceled 2015-09-22
## 2461 1 Check-Out 2015-10-22
## 2462 3 Canceled 2015-09-23
## 2463 3 Canceled 2015-09-23
## 2464 3 Canceled 2015-10-14
## 2465 0 Check-Out 2015-10-25
## 2466 0 Check-Out 2015-10-25
## 2467 0 Canceled 2015-07-22
## 2468 1 Check-Out 2015-10-25
## 2469 0 Check-Out 2015-10-25
## 2470 2 Canceled 2015-09-07
## 2471 2 Canceled 2015-10-08
## 2472 0 Check-Out 2015-10-25
## 2473 2 Check-Out 2015-10-28
## 2474 0 Check-Out 2015-10-27
## 2475 1 Canceled 2015-07-06
## 2476 1 Canceled 2015-07-06
## 2477 0 Check-Out 2015-10-20
## 2478 1 Check-Out 2015-10-21
## 2479 0 Check-Out 2015-10-21
## 2480 0 Check-Out 2015-10-21
## 2481 0 Check-Out 2015-10-20
## 2482 0 Check-Out 2015-10-21
## 2483 1 Check-Out 2015-10-22
## 2484 1 Check-Out 2015-10-22
## 2485 1 Check-Out 2015-10-22
## 2486 1 Check-Out 2015-10-23
## 2487 0 Check-Out 2015-10-24
## 2488 0 Check-Out 2015-10-24
## 2489 0 Check-Out 2015-10-24
## 2490 0 Check-Out 2015-10-24
## 2491 0 Check-Out 2015-10-24
## 2492 0 Check-Out 2015-10-24
## 2493 0 Check-Out 2015-10-24
## 2494 0 Check-Out 2015-10-24
## 2495 0 Check-Out 2015-10-24
## 2496 2 Canceled 2015-10-09
## 2497 0 Check-Out 2015-10-24
## 2498 0 Check-Out 2015-10-24
## 2499 0 Check-Out 2015-10-24
## 2500 0 Check-Out 2015-10-24
## 2501 0 Check-Out 2015-10-24
## 2502 0 Check-Out 2015-10-24
## 2503 0 Check-Out 2015-10-24
## 2504 0 Check-Out 2015-10-24
## 2505 0 Check-Out 2015-10-24
## 2506 0 Check-Out 2015-10-24
## 2507 0 Check-Out 2015-10-24
## 2508 0 Check-Out 2015-10-24
## 2509 0 Check-Out 2015-10-24
## 2510 0 Check-Out 2015-10-24
## 2511 0 Check-Out 2015-10-24
## 2512 0 Check-Out 2015-10-26
## 2513 0 Check-Out 2015-10-26
## 2514 1 Check-Out 2015-10-27
## 2515 1 Check-Out 2015-10-30
## 2516 0 Canceled 2015-06-23
## 2517 0 Check-Out 2015-11-05
## 2518 0 Check-Out 2015-10-21
## 2519 0 Check-Out 2015-10-21
## 2520 0 Check-Out 2015-10-21
## 2521 1 Check-Out 2015-10-22
## 2522 0 Check-Out 2015-10-22
## 2523 1 Check-Out 2015-10-25
## 2524 0 Check-Out 2015-10-25
## 2525 2 Canceled 2015-10-01
## 2526 1 Check-Out 2015-10-27
## 2527 1 Check-Out 2015-10-27
## 2528 0 Check-Out 2015-10-29
## 2529 1 Check-Out 2015-10-30
## 2530 2 Canceled 2015-04-10
## 2531 2 Check-Out 2015-10-21
## 2532 2 Check-Out 2015-10-21
## 2533 0 Canceled 2015-10-20
## 2534 0 Canceled 2015-10-02
## 2535 0 Canceled 2015-10-02
## 2536 0 Canceled 2015-10-19
## 2537 0 Canceled 2015-10-02
## 2538 0 Check-Out 2015-10-23
## 2539 0 Check-Out 2015-10-23
## 2540 0 Canceled 2015-10-02
## 2541 2 Check-Out 2015-10-24
## 2542 3 Check-Out 2015-10-24
## 2543 2 Check-Out 2015-10-24
## 2544 0 Check-Out 2015-10-25
## 2545 2 Check-Out 2015-10-25
## 2546 0 Canceled 2015-08-20
## 2547 1 Canceled 2015-06-25
## 2548 2 Canceled 2015-10-06
## 2549 1 Canceled 2015-07-10
## 2550 0 Check-Out 2015-10-28
## 2551 3 Check-Out 2015-10-28
## 2552 1 Check-Out 2015-10-28
## 2553 0 Check-Out 2015-10-28
## 2554 1 Check-Out 2015-10-28
## 2555 1 Canceled 2015-07-10
## 2556 2 Check-Out 2015-10-28
## 2557 0 Canceled 2015-10-05
## 2558 2 Check-Out 2015-10-26
## 2559 2 Check-Out 2015-10-26
## 2560 0 Check-Out 2015-10-26
## 2561 2 Check-Out 2015-10-27
## 2562 0 Check-Out 2015-10-29
## 2563 2 Check-Out 2015-10-29
## 2564 0 Check-Out 2015-10-29
## 2565 1 Check-Out 2015-10-29
## 2566 0 No-Show 2015-10-22
## 2567 1 Check-Out 2015-10-29
## 2568 2 Canceled 2015-10-20
## 2569 2 Check-Out 2015-10-26
## 2570 2 Check-Out 2015-10-26
## 2571 2 Canceled 2015-08-26
## 2572 0 Check-Out 2015-10-26
## 2573 2 Check-Out 2015-10-26
## 2574 2 Check-Out 2015-10-26
## 2575 2 Check-Out 2015-10-26
## 2576 2 Check-Out 2015-10-26
## 2577 1 Check-Out 2015-10-26
## 2578 1 Check-Out 2015-10-26
## 2579 2 Check-Out 2015-10-29
## 2580 0 Check-Out 2015-10-29
## 2581 0 Check-Out 2015-10-29
## 2582 0 Check-Out 2015-10-25
## 2583 2 Check-Out 2015-10-25
## 2584 2 Check-Out 2015-10-25
## 2585 2 Check-Out 2015-10-25
## 2586 0 Canceled 2015-10-08
## 2587 0 No-Show 2015-10-22
## 2588 2 Check-Out 2015-10-25
## 2589 0 Check-Out 2015-10-26
## 2590 1 Check-Out 2015-10-24
## 2591 2 Check-Out 2015-10-24
## 2592 1 Check-Out 2015-10-24
## 2593 1 Check-Out 2015-10-25
## 2594 0 Check-Out 2015-10-25
## 2595 2 Check-Out 2015-10-25
## 2596 1 Check-Out 2015-10-25
## 2597 2 Check-Out 2015-10-25
## 2598 0 Check-Out 2015-10-25
## 2599 1 Check-Out 2015-10-25
## 2600 1 Check-Out 2015-10-25
## 2601 0 Check-Out 2015-10-26
## 2602 1 Check-Out 2015-10-27
## 2603 0 Check-Out 2015-10-27
## 2604 1 Check-Out 2015-10-27
## 2605 1 Check-Out 2015-10-28
## 2606 1 Check-Out 2015-10-28
## 2607 1 Check-Out 2015-10-29
## 2608 0 Check-Out 2015-10-30
## 2609 2 Canceled 2015-05-18
## 2610 1 Canceled 2015-05-18
## 2611 0 Check-Out 2015-10-30
## 2612 2 Canceled 2015-05-18
## 2613 2 Canceled 2015-05-18
## 2614 2 Canceled 2015-09-02
## 2615 0 Check-Out 2015-10-30
## 2616 0 Check-Out 2015-11-03
## 2617 0 Check-Out 2015-11-07
## 2618 0 Check-Out 2015-10-25
## 2619 0 Check-Out 2015-10-25
## 2620 1 Check-Out 2015-10-26
## 2621 0 Check-Out 2015-10-26
## 2622 2 Canceled 2015-10-20
## 2623 1 Check-Out 2015-10-25
## 2624 1 Canceled 2015-07-20
## 2625 0 Check-Out 2015-10-25
## 2626 0 Canceled 2015-06-26
## 2627 0 Canceled 2015-06-26
## 2628 0 Canceled 2015-06-26
## 2629 0 Canceled 2015-06-26
## 2630 0 Canceled 2015-06-26
## 2631 0 Canceled 2015-06-26
## 2632 0 Canceled 2015-06-26
## 2633 0 Canceled 2015-06-26
## 2634 0 Canceled 2015-06-26
## 2635 0 Canceled 2015-06-26
## 2636 0 Canceled 2015-06-26
## 2637 0 Canceled 2015-06-26
## 2638 0 Canceled 2015-06-26
## 2639 0 Canceled 2015-06-26
## 2640 0 Canceled 2015-06-26
## 2641 0 Canceled 2015-06-26
## 2642 0 Canceled 2015-06-26
## 2643 0 Canceled 2015-06-26
## 2644 3 Canceled 2015-09-24
## 2645 0 Canceled 2015-06-26
## 2646 0 Canceled 2015-06-26
## 2647 0 Canceled 2015-06-26
## 2648 0 Canceled 2015-06-26
## 2649 0 Canceled 2015-06-26
## 2650 0 Canceled 2015-06-26
## 2651 3 Canceled 2015-09-24
## 2652 0 Canceled 2015-06-26
## 2653 0 Canceled 2015-06-26
## 2654 0 Canceled 2015-06-26
## 2655 0 Canceled 2015-06-26
## 2656 0 Canceled 2015-06-26
## 2657 0 Canceled 2015-06-26
## 2658 0 Canceled 2015-06-26
## 2659 0 Canceled 2015-06-26
## 2660 0 Canceled 2015-06-26
## 2661 0 Canceled 2015-06-26
## 2662 0 Canceled 2015-06-26
## 2663 2 Canceled 2015-08-26
## 2664 1 Check-Out 2015-10-26
## 2665 0 No-Show 2015-10-24
## 2666 1 Check-Out 2015-10-27
## 2667 0 Canceled 2015-10-20
## 2668 0 No-Show 2015-10-24
## 2669 0 Check-Out 2015-10-28
## 2670 0 Check-Out 2015-10-28
## 2671 0 Check-Out 2015-10-29
## 2672 1 Canceled 2015-07-07
## 2673 3 Check-Out 2015-10-30
## 2674 2 Canceled 2015-10-03
## 2675 2 Canceled 2015-10-03
## 2676 1 Check-Out 2015-10-31
## 2677 0 Check-Out 2015-11-03
## 2678 2 Check-Out 2015-11-04
## 2679 0 Check-Out 2015-10-25
## 2680 0 Canceled 2015-06-26
## 2681 0 Canceled 2015-06-26
## 2682 0 Canceled 2015-06-26
## 2683 0 Canceled 2015-06-26
## 2684 0 Canceled 2015-06-26
## 2685 3 Check-Out 2015-10-25
## 2686 0 Canceled 2015-10-10
## 2687 2 Check-Out 2015-10-31
## 2688 0 Check-Out 2015-10-31
## 2689 0 Check-Out 2015-11-01
## 2690 2 Check-Out 2015-11-01
## 2691 0 Check-Out 2015-11-02
## 2692 0 Check-Out 2015-10-26
## 2693 0 Check-Out 2015-10-27
## 2694 1 Canceled 2015-10-14
## 2695 1 Canceled 2015-10-14
## 2696 2 Check-Out 2015-10-31
## 2697 3 Canceled 2015-10-26
## 2698 0 Check-Out 2015-11-17
## 2699 0 Canceled 2015-10-10
## 2700 0 Canceled 2015-10-10
## 2701 0 Canceled 2015-10-10
## 2702 0 Canceled 2015-10-10
## 2703 0 Canceled 2015-10-10
## 2704 1 Check-Out 2015-10-28
## 2705 0 Check-Out 2015-10-28
## 2706 0 Check-Out 2015-10-28
## 2707 1 Check-Out 2015-10-28
## 2708 0 Check-Out 2015-10-28
## 2709 0 No-Show 2015-10-27
## 2710 1 Check-Out 2015-10-29
## 2711 2 Check-Out 2015-10-29
## 2712 1 Check-Out 2015-10-29
## 2713 2 Check-Out 2015-10-29
## 2714 2 Check-Out 2015-10-29
## 2715 1 Check-Out 2015-10-30
## 2716 1 Check-Out 2015-10-31
## 2717 2 Check-Out 2015-10-31
## 2718 3 Check-Out 2015-11-03
## 2719 1 Check-Out 2015-11-03
## 2720 0 Check-Out 2015-10-29
## 2721 0 Check-Out 2015-10-29
## 2722 0 Check-Out 2015-10-29
## 2723 0 Check-Out 2015-10-29
## 2724 1 Check-Out 2015-11-04
## 2725 1 Check-Out 2015-11-04
## 2726 1 Check-Out 2015-11-04
## 2727 1 Check-Out 2015-11-04
## 2728 0 Check-Out 2015-10-29
## 2729 0 Check-Out 2015-10-30
## 2730 0 Check-Out 2015-10-30
## 2731 0 Check-Out 2015-10-30
## 2732 1 Check-Out 2015-10-31
## 2733 1 Check-Out 2015-10-31
## 2734 1 Check-Out 2015-10-30
## 2735 0 Canceled 2015-10-26
## 2736 2 Check-Out 2015-11-01
## 2737 0 Check-Out 2015-11-01
## 2738 2 Check-Out 2015-11-01
## 2739 0 Check-Out 2015-11-01
## 2740 0 Check-Out 2015-11-02
## 2741 0 Canceled 2015-09-29
## 2742 0 Check-Out 2015-11-03
## 2743 1 Check-Out 2015-10-31
## 2744 2 Check-Out 2015-10-31
## 2745 0 Check-Out 2015-10-31
## 2746 0 Check-Out 2015-11-01
## 2747 0 Check-Out 2015-11-01
## 2748 0 Check-Out 2015-11-01
## 2749 0 Check-Out 2015-11-01
## 2750 1 Check-Out 2015-11-01
## 2751 0 Check-Out 2015-11-01
## 2752 3 Check-Out 2015-11-01
## 2753 0 Check-Out 2015-11-02
## 2754 0 Check-Out 2015-10-30
## 2755 1 Check-Out 2015-11-01
## 2756 1 Check-Out 2015-11-01
## 2757 1 Check-Out 2015-11-02
## 2758 1 Check-Out 2015-11-02
## 2759 1 Check-Out 2015-11-02
## 2760 0 Check-Out 2015-11-02
## 2761 0 Check-Out 2015-11-02
## 2762 1 Check-Out 2015-11-02
## 2763 1 Check-Out 2015-11-02
## 2764 0 Check-Out 2015-11-03
## 2765 1 Check-Out 2015-11-06
## 2766 0 Check-Out 2015-11-07
## 2767 0 Check-Out 2015-10-31
## 2768 1 Check-Out 2015-11-01
## 2769 0 Check-Out 2015-11-01
## 2770 0 Canceled 2015-10-26
## 2771 0 Canceled 2015-10-26
## 2772 0 Check-Out 2015-11-01
## 2773 0 Canceled 2015-10-26
## 2774 1 Check-Out 2015-11-01
## 2775 0 Canceled 2015-10-26
## 2776 0 Canceled 2015-10-29
## 2777 0 Check-Out 2015-11-01
## 2778 0 Check-Out 2015-11-01
## 2779 0 Check-Out 2015-11-01
## 2780 0 Check-Out 2015-11-01
## 2781 1 Check-Out 2015-11-01
## 2782 0 Check-Out 2015-11-01
## 2783 0 Canceled 2015-10-29
## 2784 0 Canceled 2015-10-26
## 2785 0 Canceled 2015-10-26
## 2786 0 Canceled 2015-10-26
## 2787 1 Check-Out 2015-11-01
## 2788 0 Canceled 2015-10-26
## 2789 0 Check-Out 2015-11-01
## 2790 0 Canceled 2015-10-26
## 2791 0 Canceled 2015-10-26
## 2792 0 Check-Out 2015-11-01
## 2793 0 Canceled 2015-10-29
## 2794 0 Check-Out 2015-11-01
## 2795 0 Canceled 2015-10-26
## 2796 0 Canceled 2015-10-26
## 2797 0 Check-Out 2015-11-01
## 2798 0 Check-Out 2015-11-01
## 2799 0 Check-Out 2015-11-01
## 2800 0 Canceled 2015-10-30
## 2801 1 Check-Out 2015-11-01
## 2802 0 Check-Out 2015-11-01
## 2803 0 Check-Out 2015-11-01
## 2804 0 Check-Out 2015-11-01
## 2805 0 Check-Out 2015-11-01
## 2806 0 Check-Out 2015-11-01
## 2807 0 Canceled 2015-10-29
## 2808 0 Check-Out 2015-11-01
## 2809 1 Check-Out 2015-11-01
## 2810 0 Check-Out 2015-11-01
## 2811 0 Check-Out 2015-11-01
## 2812 0 Canceled 2015-10-26
## 2813 0 Canceled 2015-10-26
## 2814 0 Canceled 2015-10-26
## 2815 0 Canceled 2015-10-26
## 2816 0 Canceled 2015-10-26
## 2817 0 Canceled 2015-10-31
## 2818 1 Check-Out 2015-11-01
## 2819 2 Canceled 2015-08-20
## 2820 1 Check-Out 2015-11-02
## 2821 1 Canceled 2015-10-20
## 2822 1 Check-Out 2015-11-02
## 2823 0 Check-Out 2015-11-02
## 2824 0 Check-Out 2015-11-02
## 2825 1 Check-Out 2015-11-02
## 2826 1 Check-Out 2015-11-03
## 2827 2 Canceled 2015-10-09
## 2828 2 Canceled 2015-10-02
## 2829 2 Canceled 2015-10-02
## 2830 2 Canceled 2015-09-21
## 2831 1 Check-Out 2015-11-06
## 2832 1 Canceled 2015-09-11
## 2833 0 Check-Out 2015-11-07
## 2834 0 Canceled 2015-09-04
## 2835 2 Check-Out 2015-11-07
## 2836 0 No-Show 2015-11-01
## 2837 1 No-Show 2015-11-01
## 2838 0 Check-Out 2015-11-02
## 2839 0 Check-Out 2015-11-02
## 2840 1 Check-Out 2015-11-02
## 2841 0 No-Show 2015-11-01
## 2842 0 Check-Out 2015-11-06
## 2843 0 Canceled 2015-10-15
## 2844 0 Check-Out 2015-11-10
## 2845 0 Check-Out 2015-11-07
## 2846 1 Check-Out 2015-11-07
## 2847 1 Check-Out 2015-11-07
## 2848 2 Check-Out 2015-11-05
## 2849 1 Check-Out 2015-11-08
## 2850 1 Check-Out 2015-11-09
## 2851 1 Check-Out 2015-11-09
## 2852 0 Check-Out 2015-11-09
## 2853 0 Canceled 2015-10-10
## 2854 0 Canceled 2015-10-10
## 2855 0 Canceled 2015-10-10
## 2856 0 Canceled 2015-10-10
## 2857 0 Canceled 2015-10-10
## 2858 0 Canceled 2015-10-10
## 2859 0 Canceled 2015-10-10
## 2860 1 Check-Out 2015-11-03
## 2861 0 Check-Out 2015-11-04
## 2862 0 Check-Out 2015-11-04
## 2863 1 Check-Out 2015-11-04
## 2864 0 Check-Out 2015-11-04
## 2865 1 Check-Out 2015-11-04
## 2866 1 Check-Out 2015-11-05
## 2867 2 Canceled 2015-11-03
## 2868 0 Check-Out 2015-11-06
## 2869 2 Check-Out 2015-11-06
## 2870 0 Check-Out 2015-11-07
## 2871 0 Check-Out 2015-11-07
## 2872 0 Canceled 2015-10-08
## 2873 0 Check-Out 2015-11-07
## 2874 0 Check-Out 2015-11-07
## 2875 0 Canceled 2015-10-08
## 2876 1 Check-Out 2015-11-10
## 2877 1 Check-Out 2015-11-05
## 2878 0 Check-Out 2015-11-15
## 2879 0 Check-Out 2015-11-16
## 2880 0 Check-Out 2015-11-16
## 2881 0 Check-Out 2015-11-16
## 2882 0 Check-Out 2015-11-16
## 2883 0 Check-Out 2015-11-16
## 2884 0 Check-Out 2015-11-16
## 2885 0 Check-Out 2015-11-16
## 2886 0 Check-Out 2015-11-05
## 2887 0 Check-Out 2015-11-05
## 2888 1 Check-Out 2015-11-06
## 2889 1 Check-Out 2015-11-06
## 2890 0 Canceled 2015-09-16
## 2891 0 Canceled 2015-10-22
## 2892 0 Canceled 2015-10-22
## 2893 0 Check-Out 2015-11-15
## 2894 0 Check-Out 2015-11-06
## 2895 0 Check-Out 2015-11-06
## 2896 0 Check-Out 2015-11-06
## 2897 2 Check-Out 2015-11-11
## 2898 2 Check-Out 2015-11-11
## 2899 0 Check-Out 2015-11-15
## 2900 0 Check-Out 2015-11-15
## 2901 0 Check-Out 2015-11-15
## 2902 1 Check-Out 2015-11-07
## 2903 1 Check-Out 2015-11-07
## 2904 0 Check-Out 2015-11-07
## 2905 0 Check-Out 2015-11-07
## 2906 0 Check-Out 2015-11-08
## 2907 1 Check-Out 2015-11-08
## 2908 1 Check-Out 2015-11-08
## 2909 0 Check-Out 2015-11-08
## 2910 2 Check-Out 2015-11-10
## 2911 0 Canceled 2015-09-28
## 2912 0 Canceled 2015-09-28
## 2913 0 Check-Out 2015-11-15
## 2914 0 Check-Out 2015-11-17
## 2915 0 Check-Out 2015-11-17
## 2916 0 Check-Out 2015-11-17
## 2917 0 Check-Out 2015-11-17
## 2918 0 Check-Out 2015-11-15
## 2919 0 Check-Out 2015-11-15
## 2920 3 Check-Out 2015-11-07
## 2921 1 Check-Out 2015-11-08
## 2922 1 Check-Out 2015-11-08
## 2923 1 Canceled 2015-10-20
## 2924 0 Canceled 2015-10-09
## 2925 0 Check-Out 2015-11-08
## 2926 1 Canceled 2015-11-04
## 2927 0 Canceled 2015-10-09
## 2928 1 Check-Out 2015-11-08
## 2929 1 Check-Out 2015-11-09
## 2930 3 Check-Out 2015-11-10
## 2931 0 Check-Out 2015-11-12
## 2932 0 Check-Out 2015-11-12
## 2933 2 Check-Out 2015-11-14
## 2934 0 Check-Out 2015-11-14
## 2935 0 Canceled 2015-10-10
## 2936 0 Canceled 2015-10-10
## 2937 0 Canceled 2015-10-10
## 2938 1 Canceled 2015-07-10
## 2939 0 Check-Out 2015-11-15
## 2940 1 Canceled 2015-10-01
## 2941 0 Check-Out 2015-11-15
## 2942 0 Canceled 2015-11-04
## 2943 0 Check-Out 2015-11-15
## 2944 0 Canceled 2015-10-10
## 2945 0 Canceled 2015-10-10
## 2946 0 Check-Out 2015-11-15
## 2947 0 Check-Out 2015-11-15
## 2948 0 Check-Out 2015-11-15
## 2949 0 Canceled 2015-10-10
## 2950 0 Canceled 2015-10-10
## 2951 0 Check-Out 2015-11-15
## 2952 0 Canceled 2015-10-10
## 2953 0 Canceled 2015-10-10
## 2954 0 Check-Out 2015-11-15
## 2955 0 Check-Out 2015-11-15
## 2956 1 Canceled 2015-10-01
## 2957 1 Canceled 2015-07-10
## 2958 1 Check-Out 2015-11-17
## 2959 1 Canceled 2015-10-28
## 2960 1 Check-Out 2015-11-10
## 2961 2 Canceled 2015-10-26
## 2962 0 Canceled 2015-10-21
## 2963 0 Check-Out 2015-11-14
## 2964 0 Check-Out 2015-11-14
## 2965 0 Check-Out 2015-11-15
## 2966 0 Check-Out 2015-11-15
## 2967 0 Check-Out 2015-11-15
## 2968 0 Check-Out 2015-11-15
## 2969 0 Check-Out 2015-11-15
## 2970 0 Check-Out 2015-11-15
## 2971 0 Check-Out 2015-11-15
## 2972 0 Canceled 2015-10-23
## 2973 0 Canceled 2015-10-30
## 2974 1 Check-Out 2015-11-09
## 2975 2 Check-Out 2015-11-10
## 2976 2 Check-Out 2015-11-10
## 2977 0 Check-Out 2015-11-10
## 2978 0 Check-Out 2015-11-11
## 2979 0 Canceled 2015-11-09
## 2980 0 Check-Out 2015-11-10
## 2981 1 Check-Out 2015-11-12
## 2982 0 Check-Out 2015-11-13
## 2983 1 Check-Out 2015-11-13
## 2984 0 No-Show 2015-11-09
## 2985 0 No-Show 2015-11-09
## 2986 1 Check-Out 2015-11-15
## 2987 1 Check-Out 2015-11-15
## 2988 2 Check-Out 2015-11-13
## 2989 0 No-Show 2015-11-09
## 2990 0 Check-Out 2015-11-16
## 2991 0 Check-Out 2015-11-12
## 2992 0 Check-Out 2015-11-12
## 2993 0 Canceled 2015-10-10
## 2994 0 Canceled 2015-10-10
## 2995 0 Canceled 2015-10-10
## 2996 0 Canceled 2015-10-16
## 2997 0 Canceled 2015-10-10
## 2998 0 Check-Out 2015-11-15
## 2999 0 Check-Out 2015-11-12
## 3000 0 Check-Out 2015-11-12
## 3001 0 Canceled 2015-10-10
## 3002 0 Canceled 2015-10-10
## 3003 0 Check-Out 2015-11-15
## 3004 0 Canceled 2015-10-10
## 3005 0 Canceled 2015-11-11
## 3006 0 Canceled 2015-10-10
## 3007 1 Canceled 2015-09-22
## 3008 1 Check-Out 2015-11-15
## 3009 1 Check-Out 2015-11-15
## 3010 0 Check-Out 2015-11-15
## 3011 0 Canceled 2015-10-10
## 3012 2 Canceled 2015-11-05
## 3013 1 Check-Out 2015-11-15
## 3014 1 Check-Out 2015-11-15
## 3015 0 Check-Out 2015-11-15
## 3016 0 Check-Out 2015-11-15
## 3017 0 Canceled 2015-10-10
## 3018 0 Canceled 2015-10-10
## 3019 0 Canceled 2015-10-10
## 3020 1 Check-Out 2015-11-15
## 3021 0 Canceled 2015-10-22
## 3022 0 Check-Out 2015-11-15
## 3023 1 Check-Out 2015-11-15
## 3024 0 Canceled 2015-10-10
## 3025 0 Canceled 2015-10-10
## 3026 0 Canceled 2015-10-10
## 3027 1 Check-Out 2015-11-15
## 3028 1 Canceled 2015-09-22
## 3029 1 Check-Out 2015-11-15
## 3030 2 Canceled 2015-11-05
## 3031 0 Check-Out 2015-11-16
## 3032 2 Check-Out 2015-11-16
## 3033 0 Check-Out 2015-11-14
## 3034 0 Canceled 2015-10-22
## 3035 2 Check-Out 2015-11-14
## 3036 0 Canceled 2015-10-10
## 3037 0 Canceled 2015-10-10
## 3038 0 Check-Out 2015-11-14
## 3039 0 Canceled 2015-10-10
## 3040 0 Canceled 2015-10-10
## 3041 0 Canceled 2015-10-10
## 3042 0 Canceled 2015-10-10
## 3043 0 Canceled 2015-10-10
## 3044 0 Check-Out 2015-11-15
## 3045 0 Check-Out 2015-11-15
## 3046 0 Check-Out 2015-11-15
## 3047 0 Check-Out 2015-11-15
## 3048 0 Check-Out 2015-11-15
## 3049 0 Check-Out 2015-11-15
## 3050 0 Check-Out 2015-11-15
## 3051 0 Canceled 2015-11-09
## 3052 0 Check-Out 2015-11-15
## 3053 0 Canceled 2015-10-10
## 3054 0 Canceled 2015-10-10
## 3055 0 Canceled 2015-10-10
## 3056 2 Check-Out 2015-11-14
## 3057 1 Check-Out 2015-11-15
## 3058 0 Canceled 2015-11-12
## 3059 0 Check-Out 2015-11-15
## 3060 0 Check-Out 2015-11-15
## 3061 1 Check-Out 2015-11-15
## 3062 0 Check-Out 2015-11-15
## 3063 0 Check-Out 2015-11-15
## 3064 1 Check-Out 2015-11-16
## 3065 0 Canceled 2015-11-09
## 3066 0 Canceled 2015-10-23
## 3067 0 Canceled 2015-11-09
## 3068 0 Canceled 2015-10-23
## 3069 0 Check-Out 2015-11-14
## 3070 2 Check-Out 2015-11-13
## 3071 2 Check-Out 2015-11-13
## 3072 0 Check-Out 2015-11-14
## 3073 1 Check-Out 2015-11-14
## 3074 1 Canceled 2015-11-05
## 3075 0 Check-Out 2015-11-15
## 3076 1 Check-Out 2015-11-14
## 3077 1 No-Show 2015-11-13
## 3078 0 Check-Out 2015-11-15
## 3079 0 Check-Out 2015-11-15
## 3080 1 Canceled 2015-11-05
## 3081 2 Canceled 2015-11-03
## 3082 1 Check-Out 2015-11-18
## 3083 1 Canceled 2015-11-14
## 3084 2 Check-Out 2015-11-22
## 3085 1 Check-Out 2015-11-17
## 3086 0 Check-Out 2015-11-22
## 3087 0 Canceled 2015-09-23
## 3088 2 Canceled 2015-11-05
## 3089 3 Canceled 2015-10-26
## 3090 0 Check-Out 2015-11-16
## 3091 1 Check-Out 2015-11-16
## 3092 1 Check-Out 2015-11-16
## 3093 0 Canceled 2015-10-30
## 3094 0 Canceled 2015-10-30
## 3095 0 Canceled 2015-10-30
## 3096 1 Canceled 2015-11-02
## 3097 3 Canceled 2015-08-31
## 3098 2 Canceled 2015-09-04
## 3099 0 Canceled 2015-10-10
## 3100 1 Canceled 2015-08-29
## 3101 1 Check-Out 2015-11-17
## 3102 0 Check-Out 2015-11-19
## 3103 0 Check-Out 2015-11-21
## 3104 1 Canceled 2015-10-08
## 3105 0 Check-Out 2015-11-20
## 3106 1 Check-Out 2015-11-21
## 3107 0 Check-Out 2015-11-24
## 3108 0 Check-Out 2015-11-24
## 3109 0 Check-Out 2015-11-24
## 3110 0 Canceled 2015-11-05
## 3111 0 Check-Out 2015-11-24
## 3112 0 Check-Out 2015-11-24
## 3113 0 Check-Out 2015-11-24
## 3114 0 Check-Out 2015-11-24
## 3115 0 Check-Out 2015-11-24
## 3116 0 Check-Out 2015-11-24
## 3117 0 Check-Out 2015-11-24
## 3118 0 Check-Out 2015-11-24
## 3119 0 Check-Out 2015-11-24
## 3120 0 Check-Out 2015-11-24
## 3121 0 Check-Out 2015-11-24
## 3122 0 Check-Out 2015-11-24
## 3123 0 Check-Out 2015-11-24
## 3124 0 Check-Out 2015-11-24
## 3125 0 Check-Out 2015-11-24
## 3126 0 Check-Out 2015-11-24
## 3127 0 Check-Out 2015-11-24
## 3128 0 Check-Out 2015-11-24
## 3129 0 Check-Out 2015-11-24
## 3130 0 Canceled 2015-11-17
## 3131 0 Check-Out 2015-11-24
## 3132 0 Check-Out 2015-11-24
## 3133 0 Check-Out 2015-11-24
## 3134 1 Check-Out 2015-11-25
## 3135 1 Check-Out 2015-11-21
## 3136 0 Check-Out 2015-11-22
## 3137 0 Canceled 2015-11-16
## 3138 2 Check-Out 2015-11-22
## 3139 0 Check-Out 2015-11-23
## 3140 1 Check-Out 2015-11-23
## 3141 2 Canceled 2015-10-08
## 3142 1 Check-Out 2015-11-23
## 3143 0 Canceled 2015-07-23
## 3144 0 Check-Out 2015-11-22
## 3145 0 Check-Out 2015-11-22
## 3146 0 Check-Out 2015-11-22
## 3147 0 Canceled 2015-11-14
## 3148 2 Canceled 2015-10-08
## 3149 2 Canceled 2015-10-08
## 3150 0 Check-Out 2015-11-22
## 3151 0 Check-Out 2015-11-22
## 3152 0 Check-Out 2015-11-22
## 3153 1 Check-Out 2015-11-22
## 3154 2 Canceled 2015-10-08
## 3155 2 Canceled 2015-10-08
## 3156 0 Check-Out 2015-11-22
## 3157 0 Canceled 2015-11-14
## 3158 0 Canceled 2015-11-14
## 3159 0 Canceled 2015-09-02
## 3160 2 Canceled 2015-10-08
## 3161 2 Canceled 2015-10-08
## 3162 0 Check-Out 2015-11-22
## 3163 0 Check-Out 2015-11-22
## 3164 0 Canceled 2015-11-14
## 3165 2 Check-Out 2015-11-22
## 3166 0 Canceled 2015-11-17
## 3167 0 Check-Out 2015-11-22
## 3168 0 Check-Out 2015-11-22
## 3169 2 Canceled 2015-10-08
## 3170 2 Canceled 2015-10-08
## 3171 2 Canceled 2015-10-08
## 3172 1 No-Show 2015-11-20
## 3173 0 Check-Out 2015-11-22
## 3174 0 Check-Out 2015-11-22
## 3175 0 Canceled 2015-11-14
## 3176 0 Canceled 2015-11-14
## 3177 2 Canceled 2015-10-08
## 3178 0 Canceled 2015-11-17
## 3179 0 Check-Out 2015-11-22
## 3180 0 Canceled 2015-11-14
## 3181 2 Canceled 2015-10-13
## 3182 0 Check-Out 2015-11-23
## 3183 0 Canceled 2015-09-17
## 3184 0 Check-Out 2015-11-22
## 3185 0 Check-Out 2015-11-22
## 3186 1 Check-Out 2015-11-22
## 3187 0 Check-Out 2015-11-22
## 3188 0 Check-Out 2015-11-22
## 3189 0 Check-Out 2015-11-22
## 3190 0 Check-Out 2015-11-22
## 3191 0 Check-Out 2015-11-22
## 3192 0 Check-Out 2015-11-22
## 3193 0 Check-Out 2015-11-22
## 3194 0 Check-Out 2015-11-22
## 3195 0 Check-Out 2015-11-22
## 3196 0 Check-Out 2015-11-22
## 3197 0 Check-Out 2015-11-22
## 3198 0 Check-Out 2015-11-22
## 3199 0 Check-Out 2015-11-22
## 3200 0 Check-Out 2015-11-22
## 3201 0 Check-Out 2015-11-22
## 3202 0 Check-Out 2015-11-22
## 3203 0 Check-Out 2015-11-22
## 3204 0 Check-Out 2015-11-22
## 3205 0 Check-Out 2015-11-22
## 3206 3 Check-Out 2015-11-22
## 3207 0 Check-Out 2015-11-22
## 3208 1 Check-Out 2015-11-22
## 3209 3 Check-Out 2015-11-22
## 3210 0 Check-Out 2015-11-22
## 3211 0 Check-Out 2015-11-22
## 3212 0 Check-Out 2015-11-22
## 3213 0 Check-Out 2015-11-22
## 3214 0 Check-Out 2015-11-22
## 3215 0 Check-Out 2015-11-22
## 3216 0 Check-Out 2015-11-22
## 3217 0 Check-Out 2015-11-22
## 3218 0 Check-Out 2015-11-22
## 3219 0 Check-Out 2015-11-22
## 3220 0 Check-Out 2015-11-22
## 3221 0 Check-Out 2015-11-22
## 3222 1 Check-Out 2015-11-22
## 3223 0 Check-Out 2015-11-22
## 3224 0 Check-Out 2015-11-22
## 3225 0 Check-Out 2015-11-22
## [ reached 'max' / getOption("max.print") -- omitted 116165 rows ]
hotels %>%
select(hotel:arrival_date_month)
## hotel is_canceled lead_time arrival_date_year arrival_date_month
## 1 Resort Hotel 0 342 2015 July
## 2 Resort Hotel 0 737 2015 July
## 3 Resort Hotel 0 7 2015 July
## 4 Resort Hotel 0 13 2015 July
## 5 Resort Hotel 0 14 2015 July
## 6 Resort Hotel 0 14 2015 July
## 7 Resort Hotel 0 0 2015 July
## 8 Resort Hotel 0 9 2015 July
## 9 Resort Hotel 1 85 2015 July
## 10 Resort Hotel 1 75 2015 July
## 11 Resort Hotel 1 23 2015 July
## 12 Resort Hotel 0 35 2015 July
## 13 Resort Hotel 0 68 2015 July
## 14 Resort Hotel 0 18 2015 July
## 15 Resort Hotel 0 37 2015 July
## 16 Resort Hotel 0 68 2015 July
## 17 Resort Hotel 0 37 2015 July
## 18 Resort Hotel 0 12 2015 July
## 19 Resort Hotel 0 0 2015 July
## 20 Resort Hotel 0 7 2015 July
## 21 Resort Hotel 0 37 2015 July
## 22 Resort Hotel 0 72 2015 July
## 23 Resort Hotel 0 72 2015 July
## 24 Resort Hotel 0 72 2015 July
## 25 Resort Hotel 0 127 2015 July
## 26 Resort Hotel 0 78 2015 July
## 27 Resort Hotel 0 48 2015 July
## 28 Resort Hotel 1 60 2015 July
## 29 Resort Hotel 0 77 2015 July
## 30 Resort Hotel 0 99 2015 July
## 31 Resort Hotel 0 118 2015 July
## 32 Resort Hotel 0 95 2015 July
## 33 Resort Hotel 1 96 2015 July
## 34 Resort Hotel 0 69 2015 July
## 35 Resort Hotel 1 45 2015 July
## 36 Resort Hotel 1 40 2015 July
## 37 Resort Hotel 0 15 2015 July
## 38 Resort Hotel 0 36 2015 July
## 39 Resort Hotel 1 43 2015 July
## 40 Resort Hotel 0 70 2015 July
## 41 Resort Hotel 1 45 2015 July
## 42 Resort Hotel 0 45 2015 July
## 43 Resort Hotel 0 16 2015 July
## 44 Resort Hotel 0 70 2015 July
## 45 Resort Hotel 0 107 2015 July
## 46 Resort Hotel 1 47 2015 July
## 47 Resort Hotel 0 96 2015 July
## 48 Resort Hotel 0 113 2015 July
## 49 Resort Hotel 0 90 2015 July
## 50 Resort Hotel 0 50 2015 July
## 51 Resort Hotel 0 113 2015 July
## 52 Resort Hotel 0 93 2015 July
## 53 Resort Hotel 0 76 2015 July
## 54 Resort Hotel 0 3 2015 July
## 55 Resort Hotel 0 1 2015 July
## 56 Resort Hotel 0 1 2015 July
## 57 Resort Hotel 0 0 2015 July
## 58 Resort Hotel 0 0 2015 July
## 59 Resort Hotel 0 0 2015 July
## 60 Resort Hotel 0 14 2015 July
## 61 Resort Hotel 0 10 2015 July
## 62 Resort Hotel 0 5 2015 July
## 63 Resort Hotel 0 17 2015 July
## 64 Resort Hotel 0 93 2015 July
## 65 Resort Hotel 1 3 2015 July
## 66 Resort Hotel 0 10 2015 July
## 67 Resort Hotel 0 3 2015 July
## 68 Resort Hotel 0 51 2015 July
## 69 Resort Hotel 1 71 2015 July
## 70 Resort Hotel 1 63 2015 July
## 71 Resort Hotel 1 62 2015 July
## 72 Resort Hotel 1 101 2015 July
## 73 Resort Hotel 0 2 2015 July
## 74 Resort Hotel 0 15 2015 July
## 75 Resort Hotel 1 51 2015 July
## 76 Resort Hotel 0 3 2015 July
## 77 Resort Hotel 1 48 2015 July
## 78 Resort Hotel 0 2 2015 July
## 79 Resort Hotel 0 72 2015 July
## 80 Resort Hotel 0 81 2015 July
## 81 Resort Hotel 0 99 2015 July
## 82 Resort Hotel 1 368 2015 July
## 83 Resort Hotel 0 364 2015 July
## 84 Resort Hotel 1 81 2015 July
## 85 Resort Hotel 0 99 2015 July
## 86 Resort Hotel 0 324 2015 July
## 87 Resort Hotel 0 69 2015 July
## 88 Resort Hotel 1 79 2015 July
## 89 Resort Hotel 0 12 2015 July
## 90 Resort Hotel 0 9 2015 July
## 91 Resort Hotel 0 1 2015 July
## 92 Resort Hotel 0 21 2015 July
## 93 Resort Hotel 0 9 2015 July
## 94 Resort Hotel 0 109 2015 July
## 95 Resort Hotel 1 109 2015 July
## 96 Resort Hotel 1 72 2015 July
## 97 Resort Hotel 1 63 2015 July
## 98 Resort Hotel 0 63 2015 July
## 99 Resort Hotel 0 101 2015 July
## 100 Resort Hotel 0 102 2015 July
## 101 Resort Hotel 0 4 2015 July
## 102 Resort Hotel 0 98 2015 July
## 103 Resort Hotel 0 92 2015 July
## 104 Resort Hotel 0 95 2015 July
## 105 Resort Hotel 0 102 2015 July
## 106 Resort Hotel 1 26 2015 July
## 107 Resort Hotel 1 73 2015 July
## 108 Resort Hotel 1 102 2015 July
## 109 Resort Hotel 0 115 2015 July
## 110 Resort Hotel 0 102 2015 July
## 111 Resort Hotel 0 86 2015 July
## 112 Resort Hotel 0 78 2015 July
## 113 Resort Hotel 0 52 2015 July
## 114 Resort Hotel 0 29 2015 July
## 115 Resort Hotel 1 101 2015 July
## 116 Resort Hotel 0 109 2015 July
## 117 Resort Hotel 0 92 2015 July
## 118 Resort Hotel 0 92 2015 July
## 119 Resort Hotel 0 79 2015 July
## 120 Resort Hotel 0 2 2015 July
## 121 Resort Hotel 0 30 2015 July
## 122 Resort Hotel 1 51 2015 July
## 123 Resort Hotel 1 36 2015 July
## 124 Resort Hotel 1 73 2015 July
## 125 Resort Hotel 1 33 2015 July
## 126 Resort Hotel 0 32 2015 July
## 127 Resort Hotel 0 8 2015 July
## 128 Resort Hotel 0 100 2015 July
## 129 Resort Hotel 0 1 2015 July
## 130 Resort Hotel 0 100 2015 July
## 131 Resort Hotel 0 100 2015 July
## 132 Resort Hotel 0 9 2015 July
## 133 Resort Hotel 1 5 2015 July
## 134 Resort Hotel 0 0 2015 July
## 135 Resort Hotel 0 9 2015 July
## 136 Resort Hotel 0 2 2015 July
## 137 Resort Hotel 0 2 2015 July
## 138 Resort Hotel 0 9 2015 July
## 139 Resort Hotel 1 5 2015 July
## 140 Resort Hotel 0 2 2015 July
## 141 Resort Hotel 0 44 2015 July
## 142 Resort Hotel 0 80 2015 July
## 143 Resort Hotel 0 97 2015 July
## 144 Resort Hotel 0 109 2015 July
## 145 Resort Hotel 0 30 2015 July
## 146 Resort Hotel 0 64 2015 July
## 147 Resort Hotel 0 39 2015 July
## 148 Resort Hotel 0 90 2015 July
## 149 Resort Hotel 1 34 2015 July
## 150 Resort Hotel 1 93 2015 July
## 151 Resort Hotel 0 97 2015 July
## 152 Resort Hotel 0 29 2015 July
## 153 Resort Hotel 1 101 2015 July
## 154 Resort Hotel 0 27 2015 July
## 155 Resort Hotel 0 8 2015 July
## 156 Resort Hotel 0 82 2015 July
## 157 Resort Hotel 0 94 2015 July
## 158 Resort Hotel 0 110 2015 July
## 159 Resort Hotel 0 96 2015 July
## 160 Resort Hotel 0 79 2015 July
## 161 Resort Hotel 0 115 2015 July
## 162 Resort Hotel 0 111 2015 July
## 163 Resort Hotel 0 51 2015 July
## 164 Resort Hotel 0 94 2015 July
## 165 Resort Hotel 0 81 2015 July
## 166 Resort Hotel 0 84 2015 July
## 167 Resort Hotel 0 51 2015 July
## 168 Resort Hotel 0 111 2015 July
## 169 Resort Hotel 0 0 2015 July
## 170 Resort Hotel 0 2 2015 July
## 171 Resort Hotel 0 7 2015 July
## 172 Resort Hotel 0 98 2015 July
## 173 Resort Hotel 0 95 2015 July
## 174 Resort Hotel 1 48 2015 July
## 175 Resort Hotel 0 66 2015 July
## 176 Resort Hotel 0 104 2015 July
## 177 Resort Hotel 0 28 2015 July
## 178 Resort Hotel 0 34 2015 July
## 179 Resort Hotel 0 98 2015 July
## 180 Resort Hotel 0 104 2015 July
## 181 Resort Hotel 0 68 2015 July
## 182 Resort Hotel 1 86 2015 July
## 183 Resort Hotel 0 258 2015 July
## 184 Resort Hotel 0 111 2015 July
## 185 Resort Hotel 1 94 2015 July
## 186 Resort Hotel 0 112 2015 July
## 187 Resort Hotel 0 100 2015 July
## 188 Resort Hotel 0 33 2015 July
## 189 Resort Hotel 0 97 2015 July
## 190 Resort Hotel 0 80 2015 July
## 191 Resort Hotel 0 90 2015 July
## 192 Resort Hotel 0 111 2015 July
## 193 Resort Hotel 0 65 2015 July
## 194 Resort Hotel 1 67 2015 July
## 195 Resort Hotel 0 55 2015 July
## 196 Resort Hotel 0 21 2015 July
## 197 Resort Hotel 0 8 2015 July
## 198 Resort Hotel 0 8 2015 July
## 199 Resort Hotel 0 0 2015 July
## 200 Resort Hotel 0 0 2015 July
## 201 Resort Hotel 0 0 2015 July
## 202 Resort Hotel 0 8 2015 July
## 203 Resort Hotel 0 66 2015 July
## 204 Resort Hotel 0 88 2015 July
## 205 Resort Hotel 0 0 2015 July
## 206 Resort Hotel 1 43 2015 July
## 207 Resort Hotel 1 88 2015 July
## 208 Resort Hotel 0 54 2015 July
## 209 Resort Hotel 1 292 2015 July
## 210 Resort Hotel 0 112 2015 July
## 211 Resort Hotel 0 68 2015 July
## 212 Resort Hotel 0 7 2015 July
## 213 Resort Hotel 0 1 2015 July
## 214 Resort Hotel 1 113 2015 July
## 215 Resort Hotel 0 5 2015 July
## 216 Resort Hotel 0 83 2015 July
## 217 Resort Hotel 1 105 2015 July
## 218 Resort Hotel 0 0 2015 July
## 219 Resort Hotel 1 1 2015 July
## 220 Resort Hotel 1 1 2015 July
## 221 Resort Hotel 0 1 2015 July
## 222 Resort Hotel 1 102 2015 July
## 223 Resort Hotel 0 113 2015 July
## 224 Resort Hotel 1 280 2015 July
## 225 Resort Hotel 0 96 2015 July
## 226 Resort Hotel 0 394 2015 July
## 227 Resort Hotel 0 33 2015 July
## 228 Resort Hotel 0 82 2015 July
## 229 Resort Hotel 0 100 2015 July
## 230 Resort Hotel 0 100 2015 July
## 231 Resort Hotel 0 17 2015 July
## 232 Resort Hotel 0 68 2015 July
## 233 Resort Hotel 0 12 2015 July
## 234 Resort Hotel 1 77 2015 July
## 235 Resort Hotel 1 24 2015 July
## 236 Resort Hotel 1 44 2015 July
## 237 Resort Hotel 0 78 2015 July
## 238 Resort Hotel 1 17 2015 July
## 239 Resort Hotel 1 103 2015 July
## 240 Resort Hotel 0 16 2015 July
## 241 Resort Hotel 0 14 2015 July
## 242 Resort Hotel 0 77 2015 July
## 243 Resort Hotel 0 90 2015 July
## 244 Resort Hotel 0 90 2015 July
## 245 Resort Hotel 0 90 2015 July
## 246 Resort Hotel 0 366 2015 July
## 247 Resort Hotel 0 249 2015 July
## 248 Resort Hotel 1 69 2015 July
## 249 Resort Hotel 0 10 2015 July
## 250 Resort Hotel 0 22 2015 July
## 251 Resort Hotel 0 91 2015 July
## 252 Resort Hotel 0 23 2015 July
## 253 Resort Hotel 0 11 2015 July
## 254 Resort Hotel 0 3 2015 July
## 255 Resort Hotel 0 13 2015 July
## 256 Resort Hotel 0 108 2015 July
## 257 Resort Hotel 0 91 2015 July
## 258 Resort Hotel 0 37 2015 July
## 259 Resort Hotel 0 21 2015 July
## 260 Resort Hotel 0 106 2015 July
## 261 Resort Hotel 0 30 2015 July
## 262 Resort Hotel 0 30 2015 July
## 263 Resort Hotel 1 51 2015 July
## 264 Resort Hotel 0 79 2015 July
## 265 Resort Hotel 0 21 2015 July
## 266 Resort Hotel 0 35 2015 July
## 267 Resort Hotel 0 78 2015 July
## 268 Resort Hotel 0 31 2015 July
## 269 Resort Hotel 0 78 2015 July
## 270 Resort Hotel 0 78 2015 July
## 271 Resort Hotel 0 44 2015 July
## 272 Resort Hotel 0 34 2015 July
## 273 Resort Hotel 0 87 2015 July
## 274 Resort Hotel 0 11 2015 July
## 275 Resort Hotel 0 115 2015 July
## 276 Resort Hotel 0 86 2015 July
## 277 Resort Hotel 0 41 2015 July
## 278 Resort Hotel 0 32 2015 July
## 279 Resort Hotel 0 34 2015 July
## 280 Resort Hotel 0 34 2015 July
## 281 Resort Hotel 1 100 2015 July
## 282 Resort Hotel 0 44 2015 July
## 283 Resort Hotel 0 304 2015 July
## 284 Resort Hotel 1 36 2015 July
## 285 Resort Hotel 0 117 2015 July
## 286 Resort Hotel 0 70 2015 July
## 287 Resort Hotel 0 110 2015 July
## 288 Resort Hotel 1 109 2015 July
## 289 Resort Hotel 0 33 2015 July
## 290 Resort Hotel 0 33 2015 July
## 291 Resort Hotel 0 33 2015 July
## 292 Resort Hotel 0 0 2015 July
## 293 Resort Hotel 0 0 2015 July
## 294 Resort Hotel 0 0 2015 July
## 295 Resort Hotel 0 0 2015 July
## 296 Resort Hotel 0 84 2015 July
## 297 Resort Hotel 0 71 2015 July
## 298 Resort Hotel 0 16 2015 July
## 299 Resort Hotel 0 54 2015 July
## 300 Resort Hotel 0 8 2015 July
## 301 Resort Hotel 0 36 2015 July
## 302 Resort Hotel 0 40 2015 July
## 303 Resort Hotel 1 59 2015 July
## 304 Resort Hotel 0 79 2015 July
## 305 Resort Hotel 0 32 2015 July
## 306 Resort Hotel 0 110 2015 July
## 307 Resort Hotel 0 33 2015 July
## 308 Resort Hotel 0 53 2015 July
## 309 Resort Hotel 0 2 2015 July
## 310 Resort Hotel 0 8 2015 July
## 311 Resort Hotel 1 72 2015 July
## 312 Resort Hotel 0 12 2015 July
## 313 Resort Hotel 0 48 2015 July
## 314 Resort Hotel 0 90 2015 July
## 315 Resort Hotel 0 34 2015 July
## 316 Resort Hotel 1 58 2015 July
## 317 Resort Hotel 0 59 2015 July
## 318 Resort Hotel 0 90 2015 July
## 319 Resort Hotel 0 116 2015 July
## 320 Resort Hotel 0 31 2015 July
## 321 Resort Hotel 1 51 2015 July
## 322 Resort Hotel 0 48 2015 July
## 323 Resort Hotel 0 59 2015 July
## 324 Resort Hotel 1 97 2015 July
## 325 Resort Hotel 0 12 2015 July
## 326 Resort Hotel 0 64 2015 July
## 327 Resort Hotel 0 31 2015 July
## 328 Resort Hotel 0 59 2015 July
## 329 Resort Hotel 1 55 2015 July
## 330 Resort Hotel 0 81 2015 July
## 331 Resort Hotel 0 1 2015 July
## 332 Resort Hotel 0 34 2015 July
## 333 Resort Hotel 0 13 2015 July
## 334 Resort Hotel 0 40 2015 July
## 335 Resort Hotel 0 1 2015 July
## 336 Resort Hotel 0 34 2015 July
## 337 Resort Hotel 0 88 2015 July
## 338 Resort Hotel 0 9 2015 July
## 339 Resort Hotel 1 24 2015 July
## 340 Resort Hotel 0 97 2015 July
## 341 Resort Hotel 0 60 2015 July
## 342 Resort Hotel 0 100 2015 July
## 343 Resort Hotel 0 50 2015 July
## 344 Resort Hotel 1 47 2015 July
## 345 Resort Hotel 0 8 2015 July
## 346 Resort Hotel 0 34 2015 July
## 347 Resort Hotel 0 47 2015 July
## 348 Resort Hotel 0 115 2015 July
## 349 Resort Hotel 1 79 2015 July
## 350 Resort Hotel 0 91 2015 July
## 351 Resort Hotel 0 98 2015 July
## 352 Resort Hotel 0 109 2015 July
## 353 Resort Hotel 0 0 2015 July
## 354 Resort Hotel 0 98 2015 July
## 355 Resort Hotel 0 0 2015 July
## 356 Resort Hotel 0 9 2015 July
## 357 Resort Hotel 0 62 2015 July
## 358 Resort Hotel 1 45 2015 July
## 359 Resort Hotel 0 42 2015 July
## 360 Resort Hotel 0 54 2015 July
## 361 Resort Hotel 0 51 2015 July
## 362 Resort Hotel 0 54 2015 July
## 363 Resort Hotel 0 58 2015 July
## 364 Resort Hotel 0 0 2015 July
## 365 Resort Hotel 1 60 2015 July
## 366 Resort Hotel 1 321 2015 July
## 367 Resort Hotel 0 40 2015 July
## 368 Resort Hotel 1 51 2015 July
## 369 Resort Hotel 0 38 2015 July
## 370 Resort Hotel 1 75 2015 July
## 371 Resort Hotel 0 101 2015 July
## 372 Resort Hotel 1 42 2015 July
## 373 Resort Hotel 0 40 2015 July
## 374 Resort Hotel 0 109 2015 July
## 375 Resort Hotel 1 81 2015 July
## 376 Resort Hotel 1 98 2015 July
## 377 Resort Hotel 0 32 2015 July
## 378 Resort Hotel 0 72 2015 July
## 379 Resort Hotel 0 115 2015 July
## 380 Resort Hotel 0 118 2015 July
## 381 Resort Hotel 0 81 2015 July
## 382 Resort Hotel 1 95 2015 July
## 383 Resort Hotel 0 16 2015 July
## 384 Resort Hotel 0 56 2015 July
## 385 Resort Hotel 0 88 2015 July
## 386 Resort Hotel 0 41 2015 July
## 387 Resort Hotel 1 40 2015 July
## 388 Resort Hotel 0 1 2015 July
## 389 Resort Hotel 0 1 2015 July
## 390 Resort Hotel 0 1 2015 July
## 391 Resort Hotel 1 76 2015 July
## 392 Resort Hotel 0 0 2015 July
## 393 Resort Hotel 0 49 2015 July
## 394 Resort Hotel 0 76 2015 July
## 395 Resort Hotel 0 73 2015 July
## 396 Resort Hotel 0 73 2015 July
## 397 Resort Hotel 0 317 2015 July
## 398 Resort Hotel 1 112 2015 July
## 399 Resort Hotel 0 6 2015 July
## 400 Resort Hotel 0 8 2015 July
## 401 Resort Hotel 1 96 2015 July
## 402 Resort Hotel 1 96 2015 July
## 403 Resort Hotel 0 99 2015 July
## 404 Resort Hotel 0 66 2015 July
## 405 Resort Hotel 0 38 2015 July
## 406 Resort Hotel 0 38 2015 July
## 407 Resort Hotel 0 113 2015 July
## 408 Resort Hotel 0 0 2015 July
## 409 Resort Hotel 1 62 2015 July
## 410 Resort Hotel 1 39 2015 July
## 411 Resort Hotel 0 37 2015 July
## 412 Resort Hotel 1 58 2015 July
## 413 Resort Hotel 0 37 2015 July
## 414 Resort Hotel 0 57 2015 July
## 415 Resort Hotel 0 57 2015 July
## 416 Resort Hotel 0 57 2015 July
## 417 Resort Hotel 0 57 2015 July
## 418 Resort Hotel 0 57 2015 July
## 419 Resort Hotel 0 83 2015 July
## 420 Resort Hotel 0 57 2015 July
## 421 Resort Hotel 0 57 2015 July
## 422 Resort Hotel 1 57 2015 July
## 423 Resort Hotel 0 57 2015 July
## 424 Resort Hotel 0 57 2015 July
## 425 Resort Hotel 0 57 2015 July
## 426 Resort Hotel 0 57 2015 July
## 427 Resort Hotel 0 57 2015 July
## 428 Resort Hotel 0 57 2015 July
## 429 Resort Hotel 0 57 2015 July
## 430 Resort Hotel 0 57 2015 July
## 431 Resort Hotel 0 57 2015 July
## 432 Resort Hotel 0 57 2015 July
## 433 Resort Hotel 0 57 2015 July
## 434 Resort Hotel 0 57 2015 July
## 435 Resort Hotel 1 66 2015 July
## 436 Resort Hotel 0 13 2015 July
## 437 Resort Hotel 0 50 2015 July
## 438 Resort Hotel 1 48 2015 July
## 439 Resort Hotel 1 0 2015 July
## 440 Resort Hotel 0 7 2015 July
## 441 Resort Hotel 0 0 2015 July
## 442 Resort Hotel 1 66 2015 July
## 443 Resort Hotel 0 13 2015 July
## 444 Resort Hotel 0 66 2015 July
## 445 Resort Hotel 0 10 2015 July
## 446 Resort Hotel 1 10 2015 July
## 447 Resort Hotel 1 58 2015 July
## 448 Resort Hotel 1 17 2015 July
## 449 Resort Hotel 0 19 2015 July
## 450 Resort Hotel 0 10 2015 July
## 451 Resort Hotel 1 12 2015 July
## 452 Resort Hotel 0 10 2015 July
## 453 Resort Hotel 0 63 2015 July
## 454 Resort Hotel 1 35 2015 July
## 455 Resort Hotel 0 113 2015 July
## 456 Resort Hotel 1 35 2015 July
## 457 Resort Hotel 0 68 2015 July
## 458 Resort Hotel 0 113 2015 July
## 459 Resort Hotel 0 21 2015 July
## 460 Resort Hotel 0 6 2015 July
## 461 Resort Hotel 0 7 2015 July
## 462 Resort Hotel 0 17 2015 July
## 463 Resort Hotel 0 1 2015 July
## 464 Resort Hotel 0 2 2015 July
## 465 Resort Hotel 1 15 2015 July
## 466 Resort Hotel 1 7 2015 July
## 467 Resort Hotel 0 11 2015 July
## 468 Resort Hotel 1 6 2015 July
## 469 Resort Hotel 0 1 2015 July
## 470 Resort Hotel 0 1 2015 July
## 471 Resort Hotel 0 48 2015 July
## 472 Resort Hotel 0 15 2015 July
## 473 Resort Hotel 1 3 2015 July
## 474 Resort Hotel 1 23 2015 July
## 475 Resort Hotel 0 53 2015 July
## 476 Resort Hotel 0 53 2015 July
## 477 Resort Hotel 0 94 2015 July
## 478 Resort Hotel 0 64 2015 July
## 479 Resort Hotel 0 53 2015 July
## 480 Resort Hotel 0 53 2015 July
## 481 Resort Hotel 0 64 2015 July
## 482 Resort Hotel 0 53 2015 July
## 483 Resort Hotel 0 24 2015 July
## 484 Resort Hotel 0 24 2015 July
## 485 Resort Hotel 0 23 2015 July
## 486 Resort Hotel 0 53 2015 July
## 487 Resort Hotel 1 23 2015 July
## 488 Resort Hotel 0 90 2015 July
## 489 Resort Hotel 0 79 2015 July
## 490 Resort Hotel 0 43 2015 July
## 491 Resort Hotel 0 90 2015 July
## 492 Resort Hotel 0 65 2015 July
## 493 Resort Hotel 0 65 2015 July
## 494 Resort Hotel 0 99 2015 July
## 495 Resort Hotel 0 25 2015 July
## 496 Resort Hotel 0 92 2015 July
## 497 Resort Hotel 0 91 2015 July
## 498 Resort Hotel 0 38 2015 July
## 499 Resort Hotel 0 6 2015 July
## 500 Resort Hotel 0 38 2015 July
## 501 Resort Hotel 0 13 2015 July
## 502 Resort Hotel 1 32 2015 July
## 503 Resort Hotel 0 315 2015 July
## 504 Resort Hotel 0 8 2015 July
## 505 Resort Hotel 1 0 2015 July
## 506 Resort Hotel 0 91 2015 July
## 507 Resort Hotel 0 3 2015 July
## 508 Resort Hotel 0 9 2015 July
## 509 Resort Hotel 0 19 2015 July
## 510 Resort Hotel 0 25 2015 July
## 511 Resort Hotel 0 108 2015 July
## 512 Resort Hotel 1 37 2015 July
## 513 Resort Hotel 0 45 2015 July
## 514 Resort Hotel 0 64 2015 July
## 515 Resort Hotel 0 44 2015 July
## 516 Resort Hotel 0 26 2015 July
## 517 Resort Hotel 1 96 2015 July
## 518 Resort Hotel 1 123 2015 July
## 519 Resort Hotel 1 42 2015 July
## 520 Resort Hotel 0 59 2015 July
## 521 Resort Hotel 0 28 2015 July
## 522 Resort Hotel 0 106 2015 July
## 523 Resort Hotel 0 1 2015 July
## 524 Resort Hotel 0 0 2015 July
## 525 Resort Hotel 0 4 2015 July
## 526 Resort Hotel 0 3 2015 July
## 527 Resort Hotel 0 73 2015 July
## 528 Resort Hotel 0 44 2015 July
## 529 Resort Hotel 0 95 2015 July
## 530 Resort Hotel 0 94 2015 July
## 531 Resort Hotel 1 40 2015 July
## 532 Resort Hotel 0 64 2015 July
## 533 Resort Hotel 0 64 2015 July
## 534 Resort Hotel 0 94 2015 July
## 535 Resort Hotel 0 57 2015 July
## 536 Resort Hotel 1 60 2015 July
## 537 Resort Hotel 0 57 2015 July
## 538 Resort Hotel 0 87 2015 July
## 539 Resort Hotel 0 0 2015 July
## 540 Resort Hotel 0 0 2015 July
## 541 Resort Hotel 0 6 2015 July
## 542 Resort Hotel 0 0 2015 July
## 543 Resort Hotel 0 19 2015 July
## 544 Resort Hotel 0 4 2015 July
## 545 Resort Hotel 1 59 2015 July
## 546 Resort Hotel 0 44 2015 July
## 547 Resort Hotel 1 37 2015 July
## 548 Resort Hotel 0 66 2015 July
## 549 Resort Hotel 1 38 2015 July
## 550 Resort Hotel 1 62 2015 July
## 551 Resort Hotel 0 41 2015 July
## 552 Resort Hotel 1 60 2015 July
## 553 Resort Hotel 0 104 2015 July
## 554 Resort Hotel 1 62 2015 July
## 555 Resort Hotel 0 117 2015 July
## 556 Resort Hotel 1 31 2015 July
## 557 Resort Hotel 0 34 2015 July
## 558 Resort Hotel 0 47 2015 July
## 559 Resort Hotel 1 24 2015 July
## 560 Resort Hotel 1 104 2015 July
## 561 Resort Hotel 0 104 2015 July
## 562 Resort Hotel 0 32 2015 July
## 563 Resort Hotel 1 47 2015 July
## 564 Resort Hotel 0 29 2015 July
## 565 Resort Hotel 0 30 2015 July
## 566 Resort Hotel 0 123 2015 July
## 567 Resort Hotel 0 14 2015 July
## 568 Resort Hotel 1 118 2015 July
## 569 Resort Hotel 0 0 2015 July
## 570 Resort Hotel 0 0 2015 July
## 571 Resort Hotel 0 79 2015 July
## 572 Resort Hotel 0 63 2015 July
## 573 Resort Hotel 0 68 2015 July
## 574 Resort Hotel 0 96 2015 July
## 575 Resort Hotel 1 41 2015 July
## 576 Resort Hotel 0 46 2015 July
## 577 Resort Hotel 1 41 2015 July
## 578 Resort Hotel 1 60 2015 July
## 579 Resort Hotel 0 41 2015 July
## 580 Resort Hotel 1 69 2015 July
## 581 Resort Hotel 1 41 2015 July
## 582 Resort Hotel 0 52 2015 July
## 583 Resort Hotel 1 41 2015 July
## 584 Resort Hotel 0 89 2015 July
## 585 Resort Hotel 1 28 2015 July
## 586 Resort Hotel 0 65 2015 July
## 587 Resort Hotel 0 82 2015 July
## 588 Resort Hotel 0 42 2015 July
## 589 Resort Hotel 0 62 2015 July
## 590 Resort Hotel 1 86 2015 July
## 591 Resort Hotel 1 118 2015 July
## 592 Resort Hotel 0 28 2015 July
## 593 Resort Hotel 1 52 2015 July
## 594 Resort Hotel 1 49 2015 July
## 595 Resort Hotel 0 39 2015 July
## 596 Resort Hotel 0 39 2015 July
## 597 Resort Hotel 0 39 2015 July
## 598 Resort Hotel 1 7 2015 July
## 599 Resort Hotel 1 7 2015 July
## 600 Resort Hotel 1 42 2015 July
## 601 Resort Hotel 0 5 2015 July
## 602 Resort Hotel 1 81 2015 July
## 603 Resort Hotel 1 63 2015 July
## 604 Resort Hotel 0 61 2015 July
## 605 Resort Hotel 0 8 2015 July
## 606 Resort Hotel 0 89 2015 July
## 607 Resort Hotel 0 57 2015 July
## 608 Resort Hotel 0 102 2015 July
## 609 Resort Hotel 0 108 2015 July
## 610 Resort Hotel 0 28 2015 July
## 611 Resort Hotel 0 29 2015 July
## 612 Resort Hotel 0 0 2015 July
## 613 Resort Hotel 1 96 2015 July
## 614 Resort Hotel 1 44 2015 July
## 615 Resort Hotel 0 44 2015 July
## 616 Resort Hotel 1 44 2015 July
## 617 Resort Hotel 1 44 2015 July
## 618 Resort Hotel 1 41 2015 July
## 619 Resort Hotel 0 16 2015 July
## 620 Resort Hotel 0 73 2015 July
## 621 Resort Hotel 0 3 2015 July
## 622 Resort Hotel 0 0 2015 July
## 623 Resort Hotel 1 55 2015 July
## 624 Resort Hotel 0 33 2015 July
## 625 Resort Hotel 1 19 2015 July
## 626 Resort Hotel 1 55 2015 July
## 627 Resort Hotel 0 33 2015 July
## 628 Resort Hotel 1 19 2015 July
## 629 Resort Hotel 1 19 2015 July
## 630 Resort Hotel 0 117 2015 July
## 631 Resort Hotel 1 72 2015 July
## 632 Resort Hotel 1 19 2015 July
## 633 Resort Hotel 0 34 2015 July
## 634 Resort Hotel 0 9 2015 July
## 635 Resort Hotel 0 8 2015 July
## 636 Resort Hotel 1 36 2015 July
## 637 Resort Hotel 0 22 2015 July
## 638 Resort Hotel 0 22 2015 July
## 639 Resort Hotel 0 22 2015 July
## 640 Resort Hotel 0 36 2015 July
## 641 Resort Hotel 0 22 2015 July
## 642 Resort Hotel 1 22 2015 July
## 643 Resort Hotel 0 18 2015 July
## 644 Resort Hotel 0 8 2015 July
## 645 Resort Hotel 1 67 2015 July
## 646 Resort Hotel 1 105 2015 July
## 647 Resort Hotel 0 1 2015 July
## 648 Resort Hotel 1 67 2015 July
## 649 Resort Hotel 0 39 2015 July
## 650 Resort Hotel 1 45 2015 July
## 651 Resort Hotel 1 45 2015 July
## 652 Resort Hotel 0 14 2015 July
## 653 Resort Hotel 1 53 2015 July
## 654 Resort Hotel 0 28 2015 July
## 655 Resort Hotel 0 55 2015 July
## 656 Resort Hotel 0 55 2015 July
## 657 Resort Hotel 0 25 2015 July
## 658 Resort Hotel 1 43 2015 July
## 659 Resort Hotel 1 109 2015 July
## 660 Resort Hotel 1 62 2015 July
## 661 Resort Hotel 0 25 2015 July
## 662 Resort Hotel 0 43 2015 July
## 663 Resort Hotel 0 35 2015 July
## 664 Resort Hotel 1 42 2015 July
## 665 Resort Hotel 1 312 2015 July
## 666 Resort Hotel 0 30 2015 July
## 667 Resort Hotel 0 47 2015 July
## 668 Resort Hotel 0 40 2015 July
## 669 Resort Hotel 0 11 2015 July
## 670 Resort Hotel 0 39 2015 July
## 671 Resort Hotel 1 39 2015 July
## 672 Resort Hotel 0 1 2015 July
## 673 Resort Hotel 1 12 2015 July
## 674 Resort Hotel 1 16 2015 July
## 675 Resort Hotel 1 16 2015 July
## 676 Resort Hotel 0 12 2015 July
## 677 Resort Hotel 0 51 2015 July
## 678 Resort Hotel 0 67 2015 July
## 679 Resort Hotel 0 52 2015 July
## 680 Resort Hotel 0 25 2015 July
## 681 Resort Hotel 0 94 2015 July
## 682 Resort Hotel 1 54 2015 July
## 683 Resort Hotel 0 33 2015 July
## 684 Resort Hotel 0 47 2015 July
## 685 Resort Hotel 0 43 2015 July
## 686 Resort Hotel 1 87 2015 July
## 687 Resort Hotel 0 54 2015 July
## 688 Resort Hotel 0 32 2015 July
## 689 Resort Hotel 1 29 2015 July
## 690 Resort Hotel 1 96 2015 July
## 691 Resort Hotel 1 100 2015 July
## 692 Resort Hotel 0 54 2015 July
## 693 Resort Hotel 0 75 2015 July
## 694 Resort Hotel 0 31 2015 July
## 695 Resort Hotel 1 25 2015 July
## 696 Resort Hotel 0 61 2015 July
## 697 Resort Hotel 0 60 2015 July
## 698 Resort Hotel 1 31 2015 July
## 699 Resort Hotel 1 107 2015 July
## 700 Resort Hotel 1 31 2015 July
## 701 Resort Hotel 0 115 2015 July
## 702 Resort Hotel 0 59 2015 July
## 703 Resort Hotel 1 85 2015 July
## 704 Resort Hotel 0 0 2015 July
## 705 Resort Hotel 1 299 2015 July
## 706 Resort Hotel 0 50 2015 July
## 707 Resort Hotel 1 50 2015 July
## 708 Resort Hotel 1 88 2015 July
## 709 Resort Hotel 1 116 2015 July
## 710 Resort Hotel 0 47 2015 July
## 711 Resort Hotel 0 48 2015 July
## 712 Resort Hotel 1 54 2015 July
## 713 Resort Hotel 1 33 2015 July
## 714 Resort Hotel 0 73 2015 July
## 715 Resort Hotel 1 54 2015 July
## 716 Resort Hotel 1 33 2015 July
## 717 Resort Hotel 0 38 2015 July
## 718 Resort Hotel 0 34 2015 July
## 719 Resort Hotel 0 130 2015 July
## 720 Resort Hotel 1 39 2015 July
## 721 Resort Hotel 1 39 2015 July
## 722 Resort Hotel 0 45 2015 July
## 723 Resort Hotel 0 31 2015 July
## 724 Resort Hotel 1 48 2015 July
## 725 Resort Hotel 0 59 2015 July
## 726 Resort Hotel 1 48 2015 July
## 727 Resort Hotel 1 48 2015 July
## 728 Resort Hotel 1 48 2015 July
## 729 Resort Hotel 0 48 2015 July
## 730 Resort Hotel 0 96 2015 July
## 731 Resort Hotel 0 51 2015 July
## 732 Resort Hotel 0 96 2015 July
## 733 Resort Hotel 1 41 2015 July
## 734 Resort Hotel 0 6 2015 July
## 735 Resort Hotel 0 27 2015 July
## 736 Resort Hotel 0 28 2015 July
## 737 Resort Hotel 0 30 2015 July
## 738 Resort Hotel 0 45 2015 July
## 739 Resort Hotel 0 52 2015 July
## 740 Resort Hotel 0 31 2015 July
## 741 Resort Hotel 1 74 2015 July
## 742 Resort Hotel 0 31 2015 July
## 743 Resort Hotel 1 87 2015 July
## 744 Resort Hotel 0 48 2015 July
## 745 Resort Hotel 1 41 2015 July
## 746 Resort Hotel 0 35 2015 July
## 747 Resort Hotel 0 28 2015 July
## 748 Resort Hotel 0 77 2015 July
## 749 Resort Hotel 1 33 2015 July
## 750 Resort Hotel 0 30 2015 July
## 751 Resort Hotel 1 34 2015 July
## 752 Resort Hotel 1 298 2015 July
## 753 Resort Hotel 0 35 2015 July
## 754 Resort Hotel 0 40 2015 July
## 755 Resort Hotel 1 101 2015 July
## 756 Resort Hotel 1 101 2015 July
## 757 Resort Hotel 1 101 2015 July
## 758 Resort Hotel 1 101 2015 July
## 759 Resort Hotel 0 38 2015 July
## 760 Resort Hotel 0 76 2015 July
## 761 Resort Hotel 0 70 2015 July
## 762 Resort Hotel 0 70 2015 July
## 763 Resort Hotel 0 68 2015 July
## 764 Resort Hotel 1 63 2015 July
## 765 Resort Hotel 1 11 2015 July
## 766 Resort Hotel 0 32 2015 July
## 767 Resort Hotel 0 29 2015 July
## 768 Resort Hotel 0 47 2015 July
## 769 Resort Hotel 0 50 2015 July
## 770 Resort Hotel 1 29 2015 July
## 771 Resort Hotel 0 36 2015 July
## 772 Resort Hotel 0 49 2015 July
## 773 Resort Hotel 1 70 2015 July
## 774 Resort Hotel 0 110 2015 July
## 775 Resort Hotel 0 8 2015 July
## 776 Resort Hotel 1 119 2015 July
## 777 Resort Hotel 0 30 2015 July
## 778 Resort Hotel 1 29 2015 July
## 779 Resort Hotel 0 71 2015 July
## 780 Resort Hotel 1 37 2015 July
## 781 Resort Hotel 1 40 2015 July
## 782 Resort Hotel 0 37 2015 July
## 783 Resort Hotel 0 0 2015 July
## 784 Resort Hotel 1 37 2015 July
## 785 Resort Hotel 0 37 2015 July
## 786 Resort Hotel 0 97 2015 July
## 787 Resort Hotel 1 71 2015 July
## 788 Resort Hotel 1 118 2015 July
## 789 Resort Hotel 0 102 2015 July
## 790 Resort Hotel 1 54 2015 July
## 791 Resort Hotel 1 58 2015 July
## 792 Resort Hotel 0 34 2015 July
## 793 Resort Hotel 1 105 2015 July
## 794 Resort Hotel 1 47 2015 July
## 795 Resort Hotel 1 15 2015 July
## 796 Resort Hotel 0 37 2015 July
## 797 Resort Hotel 1 0 2015 July
## 798 Resort Hotel 1 8 2015 July
## 799 Resort Hotel 0 17 2015 July
## 800 Resort Hotel 0 3 2015 July
## 801 Resort Hotel 1 30 2015 July
## 802 Resort Hotel 1 31 2015 July
## 803 Resort Hotel 1 66 2015 July
## 804 Resort Hotel 0 52 2015 July
## 805 Resort Hotel 0 20 2015 July
## 806 Resort Hotel 1 30 2015 July
## 807 Resort Hotel 1 31 2015 July
## 808 Resort Hotel 1 62 2015 July
## 809 Resort Hotel 1 65 2015 July
## 810 Resort Hotel 1 64 2015 July
## 811 Resort Hotel 0 77 2015 July
## 812 Resort Hotel 0 75 2015 July
## 813 Resort Hotel 0 75 2015 July
## 814 Resort Hotel 1 62 2015 July
## 815 Resort Hotel 0 42 2015 July
## 816 Resort Hotel 0 46 2015 July
## 817 Resort Hotel 0 0 2015 July
## 818 Resort Hotel 1 25 2015 July
## 819 Resort Hotel 1 16 2015 July
## 820 Resort Hotel 1 16 2015 July
## 821 Resort Hotel 0 16 2015 July
## 822 Resort Hotel 1 4 2015 July
## 823 Resort Hotel 0 4 2015 July
## 824 Resort Hotel 1 25 2015 July
## 825 Resort Hotel 1 83 2015 July
## 826 Resort Hotel 0 4 2015 July
## 827 Resort Hotel 1 56 2015 July
## 828 Resort Hotel 1 32 2015 July
## 829 Resort Hotel 0 32 2015 July
## 830 Resort Hotel 0 0 2015 July
## 831 Resort Hotel 1 18 2015 July
## 832 Resort Hotel 1 23 2015 July
## 833 Resort Hotel 1 39 2015 July
## 834 Resort Hotel 1 18 2015 July
## 835 Resort Hotel 1 18 2015 July
## 836 Resort Hotel 1 23 2015 July
## 837 Resort Hotel 0 286 2015 July
## 838 Resort Hotel 0 72 2015 July
## 839 Resort Hotel 1 136 2015 July
## 840 Resort Hotel 0 58 2015 July
## 841 Resort Hotel 0 80 2015 July
## 842 Resort Hotel 0 113 2015 July
## 843 Resort Hotel 0 129 2015 August
## 844 Resort Hotel 1 84 2015 August
## 845 Resort Hotel 1 84 2015 August
## 846 Resort Hotel 1 89 2015 August
## 847 Resort Hotel 1 10 2015 August
## 848 Resort Hotel 1 80 2015 August
## 849 Resort Hotel 1 10 2015 August
## 850 Resort Hotel 1 10 2015 August
## 851 Resort Hotel 1 24 2015 August
## 852 Resort Hotel 0 1 2015 August
## 853 Resort Hotel 1 9 2015 August
## 854 Resort Hotel 1 3 2015 August
## 855 Resort Hotel 0 3 2015 August
## 856 Resort Hotel 1 124 2015 August
## 857 Resort Hotel 1 74 2015 August
## 858 Resort Hotel 1 82 2015 August
## 859 Resort Hotel 1 91 2015 August
## 860 Resort Hotel 1 77 2015 August
## 861 Resort Hotel 1 130 2015 August
## 862 Resort Hotel 1 91 2015 August
## 863 Resort Hotel 0 79 2015 August
## 864 Resort Hotel 1 130 2015 August
## 865 Resort Hotel 0 66 2015 August
## 866 Resort Hotel 1 53 2015 August
## 867 Resort Hotel 1 80 2015 August
## 868 Resort Hotel 1 77 2015 August
## 869 Resort Hotel 1 57 2015 August
## 870 Resort Hotel 0 11 2015 August
## 871 Resort Hotel 1 25 2015 August
## 872 Resort Hotel 1 2 2015 August
## 873 Resort Hotel 1 36 2015 August
## 874 Resort Hotel 1 36 2015 August
## 875 Resort Hotel 0 115 2015 August
## 876 Resort Hotel 0 95 2015 August
## 877 Resort Hotel 0 67 2015 August
## 878 Resort Hotel 0 60 2015 August
## 879 Resort Hotel 0 34 2015 August
## 880 Resort Hotel 0 78 2015 August
## 881 Resort Hotel 0 93 2015 August
## 882 Resort Hotel 1 327 2015 August
## 883 Resort Hotel 0 21 2015 August
## 884 Resort Hotel 0 0 2015 August
## 885 Resort Hotel 1 47 2015 August
## 886 Resort Hotel 1 81 2015 August
## 887 Resort Hotel 1 52 2015 August
## 888 Resort Hotel 1 13 2015 August
## 889 Resort Hotel 0 83 2015 August
## 890 Resort Hotel 1 131 2015 August
## 891 Resort Hotel 0 460 2015 August
## 892 Resort Hotel 1 82 2015 August
## 893 Resort Hotel 1 61 2015 August
## 894 Resort Hotel 0 94 2015 August
## 895 Resort Hotel 0 1 2015 August
## 896 Resort Hotel 0 0 2015 August
## 897 Resort Hotel 1 36 2015 August
## 898 Resort Hotel 1 61 2015 August
## 899 Resort Hotel 0 13 2015 August
## 900 Resort Hotel 0 13 2015 August
## 901 Resort Hotel 1 15 2015 August
## 902 Resort Hotel 0 14 2015 August
## 903 Resort Hotel 1 13 2015 August
## 904 Resort Hotel 0 140 2015 August
## 905 Resort Hotel 0 6 2015 August
## 906 Resort Hotel 0 140 2015 August
## 907 Resort Hotel 0 81 2015 August
## 908 Resort Hotel 0 1 2015 August
## 909 Resort Hotel 0 65 2015 August
## 910 Resort Hotel 1 0 2015 August
## 911 Resort Hotel 0 2 2015 August
## 912 Resort Hotel 0 0 2015 August
## 913 Resort Hotel 1 114 2015 August
## 914 Resort Hotel 1 111 2015 August
## 915 Resort Hotel 0 44 2015 August
## 916 Resort Hotel 0 139 2015 August
## 917 Resort Hotel 1 57 2015 August
## 918 Resort Hotel 1 16 2015 August
## 919 Resort Hotel 0 139 2015 August
## 920 Resort Hotel 0 84 2015 August
## 921 Resort Hotel 1 117 2015 August
## 922 Resort Hotel 1 69 2015 August
## 923 Resort Hotel 0 2 2015 August
## 924 Resort Hotel 1 118 2015 August
## 925 Resort Hotel 0 129 2015 August
## 926 Resort Hotel 0 9 2015 August
## 927 Resort Hotel 0 52 2015 August
## 928 Resort Hotel 0 65 2015 August
## 929 Resort Hotel 0 7 2015 August
## 930 Resort Hotel 1 28 2015 August
## 931 Resort Hotel 0 3 2015 August
## 932 Resort Hotel 0 87 2015 August
## 933 Resort Hotel 0 51 2015 August
## 934 Resort Hotel 0 136 2015 August
## 935 Resort Hotel 0 4 2015 August
## 936 Resort Hotel 0 1 2015 August
## 937 Resort Hotel 1 49 2015 August
## 938 Resort Hotel 0 4 2015 August
## 939 Resort Hotel 1 45 2015 August
## 940 Resort Hotel 0 6 2015 August
## 941 Resort Hotel 0 4 2015 August
## 942 Resort Hotel 1 53 2015 August
## 943 Resort Hotel 0 52 2015 August
## 944 Resort Hotel 1 4 2015 August
## 945 Resort Hotel 0 98 2015 August
## 946 Resort Hotel 1 46 2015 August
## 947 Resort Hotel 1 122 2015 August
## 948 Resort Hotel 0 83 2015 August
## 949 Resort Hotel 0 16 2015 August
## 950 Resort Hotel 1 43 2015 August
## 951 Resort Hotel 1 73 2015 August
## 952 Resort Hotel 0 116 2015 August
## 953 Resort Hotel 1 113 2015 August
## 954 Resort Hotel 1 113 2015 August
## 955 Resort Hotel 0 51 2015 August
## 956 Resort Hotel 0 65 2015 August
## 957 Resort Hotel 0 0 2015 August
## 958 Resort Hotel 1 87 2015 August
## 959 Resort Hotel 1 106 2015 August
## 960 Resort Hotel 0 5 2015 August
## 961 Resort Hotel 0 98 2015 August
## 962 Resort Hotel 1 78 2015 August
## 963 Resort Hotel 0 4 2015 August
## 964 Resort Hotel 0 5 2015 August
## 965 Resort Hotel 0 3 2015 August
## 966 Resort Hotel 0 85 2015 August
## 967 Resort Hotel 1 137 2015 August
## 968 Resort Hotel 1 67 2015 August
## 969 Resort Hotel 1 54 2015 August
## 970 Resort Hotel 1 87 2015 August
## 971 Resort Hotel 1 54 2015 August
## 972 Resort Hotel 0 12 2015 August
## 973 Resort Hotel 1 60 2015 August
## 974 Resort Hotel 0 75 2015 August
## 975 Resort Hotel 1 54 2015 August
## 976 Resort Hotel 0 126 2015 August
## 977 Resort Hotel 1 54 2015 August
## 978 Resort Hotel 1 84 2015 August
## 979 Resort Hotel 1 106 2015 August
## 980 Resort Hotel 0 136 2015 August
## 981 Resort Hotel 0 98 2015 August
## 982 Resort Hotel 1 91 2015 August
## 983 Resort Hotel 1 58 2015 August
## 984 Resort Hotel 0 61 2015 August
## 985 Resort Hotel 0 0 2015 August
## 986 Resort Hotel 0 5 2015 August
## 987 Resort Hotel 0 2 2015 August
## 988 Resort Hotel 1 9 2015 August
## 989 Resort Hotel 1 10 2015 August
## 990 Resort Hotel 0 62 2015 August
## 991 Resort Hotel 0 34 2015 August
## 992 Resort Hotel 0 82 2015 August
## 993 Resort Hotel 1 65 2015 August
## 994 Resort Hotel 1 129 2015 August
## 995 Resort Hotel 0 55 2015 August
## 996 Resort Hotel 1 122 2015 August
## 997 Resort Hotel 1 41 2015 August
## 998 Resort Hotel 1 41 2015 August
## 999 Resort Hotel 0 81 2015 August
## 1000 Resort Hotel 0 59 2015 August
## 1001 Resort Hotel 0 72 2015 August
## 1002 Resort Hotel 1 68 2015 August
## 1003 Resort Hotel 0 81 2015 August
## 1004 Resort Hotel 1 72 2015 August
## 1005 Resort Hotel 0 68 2015 August
## 1006 Resort Hotel 1 127 2015 August
## 1007 Resort Hotel 1 127 2015 August
## 1008 Resort Hotel 0 5 2015 August
## 1009 Resort Hotel 0 68 2015 August
## 1010 Resort Hotel 1 47 2015 August
## 1011 Resort Hotel 0 19 2015 August
## 1012 Resort Hotel 1 72 2015 August
## 1013 Resort Hotel 0 30 2015 August
## 1014 Resort Hotel 1 139 2015 August
## 1015 Resort Hotel 0 112 2015 August
## 1016 Resort Hotel 1 63 2015 August
## 1017 Resort Hotel 0 35 2015 August
## 1018 Resort Hotel 1 75 2015 August
## 1019 Resort Hotel 0 136 2015 August
## 1020 Resort Hotel 0 35 2015 August
## 1021 Resort Hotel 1 63 2015 August
## 1022 Resort Hotel 1 77 2015 August
## 1023 Resort Hotel 0 62 2015 August
## 1024 Resort Hotel 1 95 2015 August
## 1025 Resort Hotel 1 101 2015 August
## 1026 Resort Hotel 1 38 2015 August
## 1027 Resort Hotel 1 60 2015 August
## 1028 Resort Hotel 1 60 2015 August
## 1029 Resort Hotel 0 76 2015 August
## 1030 Resort Hotel 0 90 2015 August
## 1031 Resort Hotel 0 90 2015 August
## 1032 Resort Hotel 1 87 2015 August
## 1033 Resort Hotel 1 31 2015 August
## 1034 Resort Hotel 1 74 2015 August
## 1035 Resort Hotel 1 120 2015 August
## 1036 Resort Hotel 1 120 2015 August
## 1037 Resort Hotel 1 120 2015 August
## 1038 Resort Hotel 1 116 2015 August
## 1039 Resort Hotel 1 83 2015 August
## 1040 Resort Hotel 0 80 2015 August
## 1041 Resort Hotel 1 27 2015 August
## 1042 Resort Hotel 1 78 2015 August
## 1043 Resort Hotel 1 117 2015 August
## 1044 Resort Hotel 0 70 2015 August
## 1045 Resort Hotel 1 85 2015 August
## 1046 Resort Hotel 1 117 2015 August
## 1047 Resort Hotel 1 22 2015 August
## 1048 Resort Hotel 1 34 2015 August
## 1049 Resort Hotel 0 68 2015 August
## 1050 Resort Hotel 1 69 2015 August
## 1051 Resort Hotel 1 85 2015 August
## 1052 Resort Hotel 1 102 2015 August
## 1053 Resort Hotel 0 31 2015 August
## 1054 Resort Hotel 0 49 2015 August
## 1055 Resort Hotel 0 84 2015 August
## 1056 Resort Hotel 1 102 2015 August
## 1057 Resort Hotel 0 66 2015 August
## 1058 Resort Hotel 1 80 2015 August
## 1059 Resort Hotel 1 85 2015 August
## 1060 Resort Hotel 1 33 2015 August
## 1061 Resort Hotel 1 1 2015 August
## 1062 Resort Hotel 0 33 2015 August
## 1063 Resort Hotel 0 47 2015 August
## 1064 Resort Hotel 1 2 2015 August
## 1065 Resort Hotel 1 22 2015 August
## 1066 Resort Hotel 1 22 2015 August
## 1067 Resort Hotel 1 55 2015 August
## 1068 Resort Hotel 1 68 2015 August
## 1069 Resort Hotel 1 128 2015 August
## 1070 Resort Hotel 0 128 2015 August
## 1071 Resort Hotel 0 128 2015 August
## 1072 Resort Hotel 0 78 2015 August
## 1073 Resort Hotel 1 85 2015 August
## 1074 Resort Hotel 0 0 2015 August
## 1075 Resort Hotel 0 9 2015 August
## 1076 Resort Hotel 0 1 2015 August
## 1077 Resort Hotel 1 9 2015 August
## 1078 Resort Hotel 1 120 2015 August
## 1079 Resort Hotel 1 72 2015 August
## 1080 Resort Hotel 0 23 2015 August
## 1081 Resort Hotel 1 8 2015 August
## 1082 Resort Hotel 0 47 2015 August
## 1083 Resort Hotel 1 8 2015 August
## 1084 Resort Hotel 0 135 2015 August
## 1085 Resort Hotel 0 76 2015 August
## 1086 Resort Hotel 1 15 2015 August
## 1087 Resort Hotel 1 23 2015 August
## 1088 Resort Hotel 0 87 2015 August
## 1089 Resort Hotel 0 19 2015 August
## 1090 Resort Hotel 0 21 2015 August
## 1091 Resort Hotel 0 19 2015 August
## 1092 Resort Hotel 1 23 2015 August
## 1093 Resort Hotel 1 89 2015 August
## 1094 Resort Hotel 0 51 2015 August
## 1095 Resort Hotel 0 0 2015 August
## 1096 Resort Hotel 0 0 2015 August
## 1097 Resort Hotel 0 0 2015 August
## 1098 Resort Hotel 0 0 2015 August
## 1099 Resort Hotel 0 0 2015 August
## 1100 Resort Hotel 0 38 2015 August
## 1101 Resort Hotel 0 21 2015 August
## 1102 Resort Hotel 1 34 2015 August
## 1103 Resort Hotel 1 51 2015 August
## 1104 Resort Hotel 0 38 2015 August
## 1105 Resort Hotel 0 0 2015 August
## 1106 Resort Hotel 1 84 2015 August
## 1107 Resort Hotel 1 63 2015 August
## 1108 Resort Hotel 0 7 2015 August
## 1109 Resort Hotel 1 91 2015 August
## 1110 Resort Hotel 0 81 2015 August
## 1111 Resort Hotel 0 6 2015 August
## 1112 Resort Hotel 1 64 2015 August
## 1113 Resort Hotel 0 52 2015 August
## 1114 Resort Hotel 1 22 2015 August
## 1115 Resort Hotel 0 150 2015 August
## 1116 Resort Hotel 0 64 2015 August
## 1117 Resort Hotel 1 22 2015 August
## 1118 Resort Hotel 0 3 2015 August
## 1119 Resort Hotel 0 68 2015 August
## 1120 Resort Hotel 0 35 2015 August
## 1121 Resort Hotel 0 2 2015 August
## 1122 Resort Hotel 0 68 2015 August
## 1123 Resort Hotel 1 11 2015 August
## 1124 Resort Hotel 1 80 2015 August
## 1125 Resort Hotel 1 80 2015 August
## 1126 Resort Hotel 0 72 2015 August
## 1127 Resort Hotel 1 80 2015 August
## 1128 Resort Hotel 0 77 2015 August
## 1129 Resort Hotel 1 80 2015 August
## 1130 Resort Hotel 0 31 2015 August
## 1131 Resort Hotel 1 77 2015 August
## 1132 Resort Hotel 0 93 2015 August
## 1133 Resort Hotel 0 31 2015 August
## 1134 Resort Hotel 0 89 2015 August
## 1135 Resort Hotel 1 68 2015 August
## 1136 Resort Hotel 1 72 2015 August
## 1137 Resort Hotel 0 65 2015 August
## 1138 Resort Hotel 1 71 2015 August
## 1139 Resort Hotel 1 65 2015 August
## 1140 Resort Hotel 0 89 2015 August
## 1141 Resort Hotel 1 98 2015 August
## 1142 Resort Hotel 0 26 2015 August
## 1143 Resort Hotel 1 67 2015 August
## 1144 Resort Hotel 1 54 2015 August
## 1145 Resort Hotel 0 75 2015 August
## 1146 Resort Hotel 1 78 2015 August
## 1147 Resort Hotel 1 53 2015 August
## 1148 Resort Hotel 1 65 2015 August
## 1149 Resort Hotel 0 84 2015 August
## 1150 Resort Hotel 1 47 2015 August
## 1151 Resort Hotel 0 37 2015 August
## 1152 Resort Hotel 0 37 2015 August
## 1153 Resort Hotel 1 4 2015 August
## 1154 Resort Hotel 0 37 2015 August
## 1155 Resort Hotel 0 37 2015 August
## 1156 Resort Hotel 1 12 2015 August
## 1157 Resort Hotel 0 0 2015 August
## 1158 Resort Hotel 0 37 2015 August
## 1159 Resort Hotel 0 37 2015 August
## 1160 Resort Hotel 0 2 2015 August
## 1161 Resort Hotel 1 12 2015 August
## 1162 Resort Hotel 1 12 2015 August
## 1163 Resort Hotel 1 11 2015 August
## 1164 Resort Hotel 1 143 2015 August
## 1165 Resort Hotel 1 99 2015 August
## 1166 Resort Hotel 1 22 2015 August
## 1167 Resort Hotel 1 15 2015 August
## 1168 Resort Hotel 1 15 2015 August
## 1169 Resort Hotel 1 66 2015 August
## 1170 Resort Hotel 1 55 2015 August
## 1171 Resort Hotel 1 66 2015 August
## 1172 Resort Hotel 1 79 2015 August
## 1173 Resort Hotel 1 66 2015 August
## 1174 Resort Hotel 0 95 2015 August
## 1175 Resort Hotel 1 151 2015 August
## 1176 Resort Hotel 1 54 2015 August
## 1177 Resort Hotel 1 122 2015 August
## 1178 Resort Hotel 1 132 2015 August
## 1179 Resort Hotel 0 58 2015 August
## 1180 Resort Hotel 1 98 2015 August
## 1181 Resort Hotel 1 126 2015 August
## 1182 Resort Hotel 1 97 2015 August
## 1183 Resort Hotel 0 96 2015 August
## 1184 Resort Hotel 0 125 2015 August
## 1185 Resort Hotel 0 80 2015 August
## 1186 Resort Hotel 1 110 2015 August
## 1187 Resort Hotel 1 157 2015 August
## 1188 Resort Hotel 1 108 2015 August
## 1189 Resort Hotel 0 74 2015 August
## 1190 Resort Hotel 0 79 2015 August
## 1191 Resort Hotel 1 79 2015 August
## 1192 Resort Hotel 1 116 2015 August
## 1193 Resort Hotel 0 80 2015 August
## 1194 Resort Hotel 1 116 2015 August
## 1195 Resort Hotel 1 93 2015 August
## 1196 Resort Hotel 1 87 2015 August
## 1197 Resort Hotel 1 13 2015 August
## 1198 Resort Hotel 1 56 2015 August
## 1199 Resort Hotel 1 1 2015 August
## 1200 Resort Hotel 0 13 2015 August
## 1201 Resort Hotel 0 13 2015 August
## 1202 Resort Hotel 1 56 2015 August
## 1203 Resort Hotel 1 81 2015 August
## 1204 Resort Hotel 1 24 2015 August
## 1205 Resort Hotel 0 57 2015 August
## 1206 Resort Hotel 0 74 2015 August
## 1207 Resort Hotel 0 126 2015 August
## 1208 Resort Hotel 0 126 2015 August
## 1209 Resort Hotel 0 126 2015 August
## 1210 Resort Hotel 1 147 2015 August
## 1211 Resort Hotel 0 68 2015 August
## 1212 Resort Hotel 0 57 2015 August
## 1213 Resort Hotel 0 10 2015 August
## 1214 Resort Hotel 0 92 2015 August
## 1215 Resort Hotel 0 92 2015 August
## 1216 Resort Hotel 0 33 2015 August
## 1217 Resort Hotel 0 1 2015 August
## 1218 Resort Hotel 0 91 2015 August
## 1219 Resort Hotel 1 33 2015 August
## 1220 Resort Hotel 0 16 2015 August
## 1221 Resort Hotel 0 128 2015 August
## 1222 Resort Hotel 0 61 2015 August
## 1223 Resort Hotel 1 23 2015 August
## 1224 Resort Hotel 1 23 2015 August
## 1225 Resort Hotel 1 29 2015 August
## 1226 Resort Hotel 1 98 2015 August
## 1227 Resort Hotel 1 23 2015 August
## 1228 Resort Hotel 0 98 2015 August
## 1229 Resort Hotel 0 138 2015 August
## 1230 Resort Hotel 1 82 2015 August
## 1231 Resort Hotel 0 10 2015 August
## 1232 Resort Hotel 1 100 2015 August
## 1233 Resort Hotel 0 10 2015 August
## 1234 Resort Hotel 0 0 2015 August
## 1235 Resort Hotel 0 65 2015 August
## 1236 Resort Hotel 0 64 2015 August
## 1237 Resort Hotel 1 56 2015 August
## 1238 Resort Hotel 1 94 2015 August
## 1239 Resort Hotel 1 58 2015 August
## 1240 Resort Hotel 0 80 2015 August
## 1241 Resort Hotel 0 40 2015 August
## 1242 Resort Hotel 0 102 2015 August
## 1243 Resort Hotel 0 16 2015 August
## 1244 Resort Hotel 0 24 2015 August
## 1245 Resort Hotel 0 24 2015 August
## 1246 Resort Hotel 1 18 2015 August
## 1247 Resort Hotel 1 95 2015 August
## 1248 Resort Hotel 1 36 2015 August
## 1249 Resort Hotel 0 16 2015 August
## 1250 Resort Hotel 0 50 2015 August
## 1251 Resort Hotel 0 76 2015 August
## 1252 Resort Hotel 0 112 2015 August
## 1253 Resort Hotel 0 16 2015 August
## 1254 Resort Hotel 0 51 2015 August
## 1255 Resort Hotel 0 13 2015 August
## 1256 Resort Hotel 1 22 2015 August
## 1257 Resort Hotel 0 32 2015 August
## 1258 Resort Hotel 0 51 2015 August
## 1259 Resort Hotel 0 65 2015 August
## 1260 Resort Hotel 1 63 2015 August
## 1261 Resort Hotel 0 35 2015 August
## 1262 Resort Hotel 0 37 2015 August
## 1263 Resort Hotel 0 35 2015 August
## 1264 Resort Hotel 1 71 2015 August
## 1265 Resort Hotel 0 71 2015 August
## 1266 Resort Hotel 0 77 2015 August
## 1267 Resort Hotel 0 0 2015 August
## 1268 Resort Hotel 1 21 2015 August
## 1269 Resort Hotel 1 87 2015 August
## 1270 Resort Hotel 0 54 2015 August
## 1271 Resort Hotel 1 156 2015 August
## 1272 Resort Hotel 0 46 2015 August
## 1273 Resort Hotel 0 46 2015 August
## 1274 Resort Hotel 1 72 2015 August
## 1275 Resort Hotel 0 85 2015 August
## 1276 Resort Hotel 0 36 2015 August
## 1277 Resort Hotel 0 65 2015 August
## 1278 Resort Hotel 1 68 2015 August
## 1279 Resort Hotel 0 46 2015 August
## 1280 Resort Hotel 0 22 2015 August
## 1281 Resort Hotel 0 12 2015 August
## 1282 Resort Hotel 1 42 2015 August
## 1283 Resort Hotel 0 72 2015 August
## 1284 Resort Hotel 1 112 2015 August
## 1285 Resort Hotel 0 85 2015 August
## 1286 Resort Hotel 0 102 2015 August
## 1287 Resort Hotel 1 80 2015 August
## 1288 Resort Hotel 1 72 2015 August
## 1289 Resort Hotel 0 151 2015 August
## 1290 Resort Hotel 1 99 2015 August
## 1291 Resort Hotel 0 151 2015 August
## 1292 Resort Hotel 0 66 2015 August
## 1293 Resort Hotel 1 44 2015 August
## 1294 Resort Hotel 0 46 2015 August
## 1295 Resort Hotel 0 70 2015 August
## 1296 Resort Hotel 0 92 2015 August
## 1297 Resort Hotel 0 6 2015 August
## 1298 Resort Hotel 1 23 2015 August
## 1299 Resort Hotel 1 79 2015 August
## 1300 Resort Hotel 1 41 2015 August
## 1301 Resort Hotel 1 58 2015 August
## 1302 Resort Hotel 0 62 2015 August
## 1303 Resort Hotel 1 83 2015 August
## 1304 Resort Hotel 0 82 2015 August
## 1305 Resort Hotel 0 69 2015 August
## 1306 Resort Hotel 1 64 2015 August
## 1307 Resort Hotel 1 116 2015 August
## 1308 Resort Hotel 0 20 2015 August
## 1309 Resort Hotel 0 132 2015 August
## 1310 Resort Hotel 1 33 2015 August
## 1311 Resort Hotel 0 62 2015 August
## 1312 Resort Hotel 1 127 2015 August
## 1313 Resort Hotel 1 78 2015 August
## 1314 Resort Hotel 1 29 2015 August
## 1315 Resort Hotel 1 78 2015 August
## 1316 Resort Hotel 1 31 2015 August
## 1317 Resort Hotel 1 9 2015 August
## 1318 Resort Hotel 0 59 2015 August
## 1319 Resort Hotel 0 40 2015 August
## 1320 Resort Hotel 0 0 2015 August
## 1321 Resort Hotel 0 30 2015 August
## 1322 Resort Hotel 0 0 2015 August
## 1323 Resort Hotel 1 35 2015 August
## 1324 Resort Hotel 0 84 2015 August
## 1325 Resort Hotel 1 25 2015 August
## 1326 Resort Hotel 0 103 2015 August
## 1327 Resort Hotel 1 35 2015 August
## 1328 Resort Hotel 1 26 2015 August
## 1329 Resort Hotel 1 55 2015 August
## 1330 Resort Hotel 0 76 2015 August
## 1331 Resort Hotel 1 102 2015 August
## 1332 Resort Hotel 0 58 2015 August
## 1333 Resort Hotel 0 11 2015 August
## 1334 Resort Hotel 1 33 2015 August
## 1335 Resort Hotel 0 11 2015 August
## 1336 Resort Hotel 1 61 2015 August
## 1337 Resort Hotel 1 89 2015 August
## 1338 Resort Hotel 1 89 2015 August
## 1339 Resort Hotel 0 37 2015 August
## 1340 Resort Hotel 1 70 2015 August
## 1341 Resort Hotel 1 54 2015 August
## 1342 Resort Hotel 0 69 2015 August
## 1343 Resort Hotel 1 71 2015 August
## 1344 Resort Hotel 1 49 2015 August
## 1345 Resort Hotel 1 50 2015 August
## 1346 Resort Hotel 1 74 2015 August
## 1347 Resort Hotel 1 74 2015 August
## 1348 Resort Hotel 1 118 2015 August
## 1349 Resort Hotel 1 42 2015 August
## 1350 Resort Hotel 1 77 2015 August
## 1351 Resort Hotel 1 84 2015 August
## 1352 Resort Hotel 0 43 2015 August
## 1353 Resort Hotel 1 73 2015 August
## 1354 Resort Hotel 1 73 2015 August
## 1355 Resort Hotel 0 21 2015 August
## 1356 Resort Hotel 0 0 2015 August
## 1357 Resort Hotel 0 2 2015 August
## 1358 Resort Hotel 1 2 2015 August
## 1359 Resort Hotel 0 0 2015 August
## 1360 Resort Hotel 0 76 2015 August
## 1361 Resort Hotel 1 41 2015 August
## 1362 Resort Hotel 1 41 2015 August
## 1363 Resort Hotel 1 44 2015 August
## 1364 Resort Hotel 1 93 2015 August
## 1365 Resort Hotel 1 106 2015 August
## 1366 Resort Hotel 0 57 2015 August
## 1367 Resort Hotel 1 29 2015 August
## 1368 Resort Hotel 0 1 2015 August
## 1369 Resort Hotel 0 41 2015 August
## 1370 Resort Hotel 0 90 2015 August
## 1371 Resort Hotel 1 57 2015 August
## 1372 Resort Hotel 1 57 2015 August
## 1373 Resort Hotel 1 41 2015 August
## 1374 Resort Hotel 1 61 2015 August
## 1375 Resort Hotel 0 49 2015 August
## 1376 Resort Hotel 1 57 2015 August
## 1377 Resort Hotel 1 31 2015 August
## 1378 Resort Hotel 1 62 2015 August
## 1379 Resort Hotel 0 43 2015 August
## 1380 Resort Hotel 0 27 2015 August
## 1381 Resort Hotel 1 106 2015 August
## 1382 Resort Hotel 0 45 2015 August
## 1383 Resort Hotel 1 106 2015 August
## 1384 Resort Hotel 1 108 2015 August
## 1385 Resort Hotel 0 49 2015 August
## 1386 Resort Hotel 0 10 2015 August
## 1387 Resort Hotel 1 108 2015 August
## 1388 Resort Hotel 0 30 2015 August
## 1389 Resort Hotel 1 164 2015 August
## 1390 Resort Hotel 1 164 2015 August
## 1391 Resort Hotel 1 164 2015 August
## 1392 Resort Hotel 0 0 2015 August
## 1393 Resort Hotel 1 46 2015 August
## 1394 Resort Hotel 0 31 2015 August
## 1395 Resort Hotel 0 34 2015 August
## 1396 Resort Hotel 1 66 2015 August
## 1397 Resort Hotel 0 4 2015 August
## 1398 Resort Hotel 0 23 2015 August
## 1399 Resort Hotel 0 31 2015 August
## 1400 Resort Hotel 0 32 2015 August
## 1401 Resort Hotel 1 42 2015 August
## 1402 Resort Hotel 0 30 2015 August
## 1403 Resort Hotel 1 30 2015 August
## 1404 Resort Hotel 0 10 2015 August
## 1405 Resort Hotel 0 11 2015 August
## 1406 Resort Hotel 0 11 2015 August
## 1407 Resort Hotel 0 8 2015 August
## 1408 Resort Hotel 0 39 2015 August
## 1409 Resort Hotel 0 4 2015 August
## 1410 Resort Hotel 0 34 2015 August
## 1411 Resort Hotel 1 55 2015 August
## 1412 Resort Hotel 0 25 2015 August
## 1413 Resort Hotel 0 106 2015 August
## 1414 Resort Hotel 0 30 2015 August
## 1415 Resort Hotel 1 1 2015 August
## 1416 Resort Hotel 1 22 2015 August
## 1417 Resort Hotel 1 42 2015 August
## 1418 Resort Hotel 0 67 2015 August
## 1419 Resort Hotel 1 35 2015 August
## 1420 Resort Hotel 0 21 2015 August
## 1421 Resort Hotel 0 50 2015 August
## 1422 Resort Hotel 0 28 2015 August
## 1423 Resort Hotel 0 30 2015 August
## 1424 Resort Hotel 0 127 2015 August
## 1425 Resort Hotel 1 29 2015 August
## 1426 Resort Hotel 0 66 2015 August
## 1427 Resort Hotel 1 59 2015 August
## 1428 Resort Hotel 0 28 2015 August
## 1429 Resort Hotel 1 59 2015 August
## 1430 Resort Hotel 0 0 2015 August
## 1431 Resort Hotel 0 47 2015 August
## 1432 Resort Hotel 0 47 2015 August
## 1433 Resort Hotel 0 47 2015 August
## 1434 Resort Hotel 0 57 2015 August
## 1435 Resort Hotel 0 1 2015 August
## 1436 Resort Hotel 0 4 2015 August
## 1437 Resort Hotel 1 32 2015 August
## 1438 Resort Hotel 1 24 2015 August
## 1439 Resort Hotel 0 11 2015 August
## 1440 Resort Hotel 0 136 2015 August
## 1441 Resort Hotel 0 2 2015 August
## 1442 Resort Hotel 1 54 2015 August
## 1443 Resort Hotel 1 87 2015 August
## 1444 Resort Hotel 1 98 2015 August
## 1445 Resort Hotel 0 9 2015 August
## 1446 Resort Hotel 0 2 2015 August
## 1447 Resort Hotel 0 11 2015 August
## 1448 Resort Hotel 0 11 2015 August
## 1449 Resort Hotel 1 69 2015 August
## 1450 Resort Hotel 0 37 2015 August
## 1451 Resort Hotel 0 103 2015 August
## 1452 Resort Hotel 0 5 2015 August
## 1453 Resort Hotel 0 34 2015 August
## 1454 Resort Hotel 0 44 2015 August
## 1455 Resort Hotel 0 83 2015 August
## 1456 Resort Hotel 0 83 2015 August
## 1457 Resort Hotel 1 72 2015 August
## 1458 Resort Hotel 1 143 2015 August
## 1459 Resort Hotel 1 47 2015 August
## 1460 Resort Hotel 1 104 2015 August
## 1461 Resort Hotel 0 25 2015 August
## 1462 Resort Hotel 0 82 2015 August
## 1463 Resort Hotel 1 104 2015 August
## 1464 Resort Hotel 1 346 2015 August
## 1465 Resort Hotel 0 0 2015 August
## 1466 Resort Hotel 0 35 2015 August
## 1467 Resort Hotel 0 34 2015 August
## 1468 Resort Hotel 0 83 2015 August
## 1469 Resort Hotel 0 41 2015 August
## 1470 Resort Hotel 0 26 2015 August
## 1471 Resort Hotel 1 143 2015 August
## 1472 Resort Hotel 0 26 2015 August
## 1473 Resort Hotel 1 0 2015 August
## 1474 Resort Hotel 1 42 2015 August
## 1475 Resort Hotel 0 6 2015 August
## 1476 Resort Hotel 0 28 2015 August
## 1477 Resort Hotel 0 26 2015 August
## 1478 Resort Hotel 0 10 2015 August
## 1479 Resort Hotel 0 59 2015 August
## 1480 Resort Hotel 1 159 2015 August
## 1481 Resort Hotel 1 124 2015 August
## 1482 Resort Hotel 1 60 2015 August
## 1483 Resort Hotel 0 26 2015 August
## 1484 Resort Hotel 0 160 2015 August
## 1485 Resort Hotel 0 68 2015 August
## 1486 Resort Hotel 1 38 2015 September
## 1487 Resort Hotel 1 47 2015 September
## 1488 Resort Hotel 0 48 2015 September
## 1489 Resort Hotel 0 48 2015 September
## 1490 Resort Hotel 0 27 2015 September
## 1491 Resort Hotel 1 71 2015 September
## 1492 Resort Hotel 1 85 2015 September
## 1493 Resort Hotel 1 132 2015 September
## 1494 Resort Hotel 0 50 2015 September
## 1495 Resort Hotel 0 122 2015 September
## 1496 Resort Hotel 0 64 2015 September
## 1497 Resort Hotel 0 48 2015 September
## 1498 Resort Hotel 0 0 2015 September
## 1499 Resort Hotel 1 14 2015 September
## 1500 Resort Hotel 0 5 2015 September
## 1501 Resort Hotel 1 161 2015 September
## 1502 Resort Hotel 0 62 2015 September
## 1503 Resort Hotel 1 161 2015 September
## 1504 Resort Hotel 0 333 2015 September
## 1505 Resort Hotel 0 27 2015 September
## 1506 Resort Hotel 1 73 2015 September
## 1507 Resort Hotel 0 123 2015 September
## 1508 Resort Hotel 1 27 2015 September
## 1509 Resort Hotel 1 97 2015 September
## 1510 Resort Hotel 0 73 2015 September
## 1511 Resort Hotel 1 97 2015 September
## 1512 Resort Hotel 0 27 2015 September
## 1513 Resort Hotel 0 27 2015 September
## 1514 Resort Hotel 1 27 2015 September
## 1515 Resort Hotel 0 140 2015 September
## 1516 Resort Hotel 0 62 2015 September
## 1517 Resort Hotel 0 381 2015 September
## 1518 Resort Hotel 0 0 2015 September
## 1519 Resort Hotel 1 149 2015 September
## 1520 Resort Hotel 1 1 2015 September
## 1521 Resort Hotel 1 149 2015 September
## 1522 Resort Hotel 0 4 2015 September
## 1523 Resort Hotel 0 104 2015 September
## 1524 Resort Hotel 0 104 2015 September
## 1525 Resort Hotel 0 68 2015 September
## 1526 Resort Hotel 1 4 2015 September
## 1527 Resort Hotel 1 71 2015 September
## 1528 Resort Hotel 1 149 2015 September
## 1529 Resort Hotel 0 1 2015 September
## 1530 Resort Hotel 0 55 2015 September
## 1531 Resort Hotel 0 154 2015 September
## 1532 Resort Hotel 0 154 2015 September
## 1533 Resort Hotel 0 57 2015 September
## 1534 Resort Hotel 0 154 2015 September
## 1535 Resort Hotel 0 29 2015 September
## 1536 Resort Hotel 0 154 2015 September
## 1537 Resort Hotel 0 154 2015 September
## 1538 Resort Hotel 0 154 2015 September
## 1539 Resort Hotel 0 6 2015 September
## 1540 Resort Hotel 1 304 2015 September
## 1541 Resort Hotel 0 29 2015 September
## 1542 Resort Hotel 0 29 2015 September
## 1543 Resort Hotel 0 29 2015 September
## 1544 Resort Hotel 0 29 2015 September
## 1545 Resort Hotel 0 297 2015 September
## 1546 Resort Hotel 1 297 2015 September
## 1547 Resort Hotel 0 52 2015 September
## 1548 Resort Hotel 0 92 2015 September
## 1549 Resort Hotel 0 52 2015 September
## 1550 Resort Hotel 0 56 2015 September
## 1551 Resort Hotel 0 65 2015 September
## 1552 Resort Hotel 0 50 2015 September
## 1553 Resort Hotel 0 163 2015 September
## 1554 Resort Hotel 1 48 2015 September
## 1555 Resort Hotel 0 327 2015 September
## 1556 Resort Hotel 0 0 2015 September
## 1557 Resort Hotel 1 1 2015 September
## 1558 Resort Hotel 0 1 2015 September
## 1559 Resort Hotel 0 0 2015 September
## 1560 Resort Hotel 0 14 2015 September
## 1561 Resort Hotel 0 88 2015 September
## 1562 Resort Hotel 1 105 2015 September
## 1563 Resort Hotel 0 0 2015 September
## 1564 Resort Hotel 1 77 2015 September
## 1565 Resort Hotel 0 15 2015 September
## 1566 Resort Hotel 1 29 2015 September
## 1567 Resort Hotel 0 28 2015 September
## 1568 Resort Hotel 1 23 2015 September
## 1569 Resort Hotel 0 28 2015 September
## 1570 Resort Hotel 0 3 2015 September
## 1571 Resort Hotel 1 28 2015 September
## 1572 Resort Hotel 0 0 2015 September
## 1573 Resort Hotel 0 4 2015 September
## 1574 Resort Hotel 0 63 2015 September
## 1575 Resort Hotel 0 67 2015 September
## 1576 Resort Hotel 1 29 2015 September
## 1577 Resort Hotel 0 73 2015 September
## 1578 Resort Hotel 0 51 2015 September
## 1579 Resort Hotel 0 150 2015 September
## 1580 Resort Hotel 0 23 2015 September
## 1581 Resort Hotel 0 67 2015 September
## 1582 Resort Hotel 1 30 2015 September
## 1583 Resort Hotel 1 15 2015 September
## 1584 Resort Hotel 0 68 2015 September
## 1585 Resort Hotel 0 47 2015 September
## 1586 Resort Hotel 0 47 2015 September
## 1587 Resort Hotel 1 74 2015 September
## 1588 Resort Hotel 1 333 2015 September
## 1589 Resort Hotel 0 26 2015 September
## 1590 Resort Hotel 0 25 2015 September
## 1591 Resort Hotel 0 71 2015 September
## 1592 Resort Hotel 1 314 2015 September
## 1593 Resort Hotel 0 54 2015 September
## 1594 Resort Hotel 1 74 2015 September
## 1595 Resort Hotel 0 74 2015 September
## 1596 Resort Hotel 0 26 2015 September
## 1597 Resort Hotel 1 94 2015 September
## 1598 Resort Hotel 1 54 2015 September
## 1599 Resort Hotel 0 52 2015 September
## 1600 Resort Hotel 0 47 2015 September
## 1601 Resort Hotel 1 74 2015 September
## 1602 Resort Hotel 1 1 2015 September
## 1603 Resort Hotel 1 50 2015 September
## 1604 Resort Hotel 1 155 2015 September
## 1605 Resort Hotel 1 323 2015 September
## 1606 Resort Hotel 1 323 2015 September
## 1607 Resort Hotel 0 340 2015 September
## 1608 Resort Hotel 0 103 2015 September
## 1609 Resort Hotel 0 356 2015 September
## 1610 Resort Hotel 0 5 2015 September
## 1611 Resort Hotel 0 40 2015 September
## 1612 Resort Hotel 1 116 2015 September
## 1613 Resort Hotel 0 74 2015 September
## 1614 Resort Hotel 0 25 2015 September
## 1615 Resort Hotel 1 32 2015 September
## 1616 Resort Hotel 1 12 2015 September
## 1617 Resort Hotel 1 26 2015 September
## 1618 Resort Hotel 1 73 2015 September
## 1619 Resort Hotel 1 26 2015 September
## 1620 Resort Hotel 1 27 2015 September
## 1621 Resort Hotel 0 110 2015 September
## 1622 Resort Hotel 1 75 2015 September
## 1623 Resort Hotel 0 61 2015 September
## 1624 Resort Hotel 1 60 2015 September
## 1625 Resort Hotel 1 61 2015 September
## 1626 Resort Hotel 0 57 2015 September
## 1627 Resort Hotel 0 61 2015 September
## 1628 Resort Hotel 0 47 2015 September
## 1629 Resort Hotel 0 30 2015 September
## 1630 Resort Hotel 0 59 2015 September
## 1631 Resort Hotel 0 78 2015 September
## 1632 Resort Hotel 1 142 2015 September
## 1633 Resort Hotel 0 94 2015 September
## 1634 Resort Hotel 0 69 2015 September
## 1635 Resort Hotel 0 78 2015 September
## 1636 Resort Hotel 0 115 2015 September
## 1637 Resort Hotel 0 128 2015 September
## 1638 Resort Hotel 1 90 2015 September
## 1639 Resort Hotel 0 328 2015 September
## 1640 Resort Hotel 1 136 2015 September
## 1641 Resort Hotel 0 143 2015 September
## 1642 Resort Hotel 0 90 2015 September
## 1643 Resort Hotel 0 144 2015 September
## 1644 Resort Hotel 1 336 2015 September
## 1645 Resort Hotel 0 90 2015 September
## 1646 Resort Hotel 0 35 2015 September
## 1647 Resort Hotel 0 4 2015 September
## 1648 Resort Hotel 1 55 2015 September
## 1649 Resort Hotel 0 0 2015 September
## 1650 Resort Hotel 0 2 2015 September
## 1651 Resort Hotel 0 112 2015 September
## 1652 Resort Hotel 1 105 2015 September
## 1653 Resort Hotel 1 109 2015 September
## 1654 Resort Hotel 1 40 2015 September
## 1655 Resort Hotel 1 75 2015 September
## 1656 Resort Hotel 0 30 2015 September
## 1657 Resort Hotel 1 144 2015 September
## 1658 Resort Hotel 0 248 2015 September
## 1659 Resort Hotel 0 0 2015 September
## 1660 Resort Hotel 1 302 2015 September
## 1661 Resort Hotel 1 302 2015 September
## 1662 Resort Hotel 1 302 2015 September
## 1663 Resort Hotel 1 61 2015 September
## 1664 Resort Hotel 1 12 2015 September
## 1665 Resort Hotel 1 47 2015 September
## 1666 Resort Hotel 0 11 2015 September
## 1667 Resort Hotel 0 117 2015 September
## 1668 Resort Hotel 0 160 2015 September
## 1669 Resort Hotel 0 175 2015 September
## 1670 Resort Hotel 0 71 2015 September
## 1671 Resort Hotel 1 344 2015 September
## 1672 Resort Hotel 0 12 2015 September
## 1673 Resort Hotel 0 382 2015 September
## 1674 Resort Hotel 1 0 2015 September
## 1675 Resort Hotel 0 0 2015 September
## 1676 Resort Hotel 0 28 2015 September
## 1677 Resort Hotel 0 58 2015 September
## 1678 Resort Hotel 1 0 2015 September
## 1679 Resort Hotel 1 20 2015 September
## 1680 Resort Hotel 0 48 2015 September
## 1681 Resort Hotel 0 2 2015 September
## 1682 Resort Hotel 0 0 2015 September
## 1683 Resort Hotel 0 137 2015 September
## 1684 Resort Hotel 1 1 2015 September
## 1685 Resort Hotel 0 130 2015 September
## 1686 Resort Hotel 0 130 2015 September
## 1687 Resort Hotel 0 118 2015 September
## 1688 Resort Hotel 0 146 2015 September
## 1689 Resort Hotel 1 159 2015 September
## 1690 Resort Hotel 1 78 2015 September
## 1691 Resort Hotel 1 159 2015 September
## 1692 Resort Hotel 0 49 2015 September
## 1693 Resort Hotel 0 1 2015 September
## 1694 Resort Hotel 0 31 2015 September
## 1695 Resort Hotel 1 114 2015 September
## 1696 Resort Hotel 0 170 2015 September
## 1697 Resort Hotel 1 27 2015 September
## 1698 Resort Hotel 0 166 2015 September
## 1699 Resort Hotel 1 114 2015 September
## 1700 Resort Hotel 1 114 2015 September
## 1701 Resort Hotel 0 108 2015 September
## 1702 Resort Hotel 0 82 2015 September
## 1703 Resort Hotel 0 113 2015 September
## 1704 Resort Hotel 1 94 2015 September
## 1705 Resort Hotel 0 0 2015 September
## 1706 Resort Hotel 0 3 2015 September
## 1707 Resort Hotel 0 12 2015 September
## 1708 Resort Hotel 1 132 2015 September
## 1709 Resort Hotel 0 12 2015 September
## 1710 Resort Hotel 1 56 2015 September
## 1711 Resort Hotel 0 140 2015 September
## 1712 Resort Hotel 1 147 2015 September
## 1713 Resort Hotel 0 140 2015 September
## 1714 Resort Hotel 0 97 2015 September
## 1715 Resort Hotel 0 160 2015 September
## 1716 Resort Hotel 0 91 2015 September
## 1717 Resort Hotel 0 111 2015 September
## 1718 Resort Hotel 1 80 2015 September
## 1719 Resort Hotel 1 114 2015 September
## 1720 Resort Hotel 0 90 2015 September
## 1721 Resort Hotel 0 338 2015 September
## 1722 Resort Hotel 0 167 2015 September
## 1723 Resort Hotel 0 2 2015 September
## 1724 Resort Hotel 0 0 2015 September
## 1725 Resort Hotel 0 73 2015 September
## 1726 Resort Hotel 0 0 2015 September
## 1727 Resort Hotel 0 63 2015 September
## 1728 Resort Hotel 0 3 2015 September
## 1729 Resort Hotel 0 8 2015 September
## 1730 Resort Hotel 0 1 2015 September
## 1731 Resort Hotel 0 70 2015 September
## 1732 Resort Hotel 0 4 2015 September
## 1733 Resort Hotel 0 157 2015 September
## 1734 Resort Hotel 0 1 2015 September
## 1735 Resort Hotel 0 1 2015 September
## 1736 Resort Hotel 0 8 2015 September
## 1737 Resort Hotel 0 102 2015 September
## 1738 Resort Hotel 1 310 2015 September
## 1739 Resort Hotel 0 11 2015 September
## 1740 Resort Hotel 1 148 2015 September
## 1741 Resort Hotel 0 165 2015 September
## 1742 Resort Hotel 1 101 2015 September
## 1743 Resort Hotel 1 101 2015 September
## 1744 Resort Hotel 0 9 2015 September
## 1745 Resort Hotel 1 172 2015 September
## 1746 Resort Hotel 1 171 2015 September
## 1747 Resort Hotel 0 143 2015 September
## 1748 Resort Hotel 1 145 2015 September
## 1749 Resort Hotel 1 121 2015 September
## 1750 Resort Hotel 0 0 2015 September
## 1751 Resort Hotel 0 96 2015 September
## 1752 Resort Hotel 0 136 2015 September
## 1753 Resort Hotel 1 340 2015 September
## 1754 Resort Hotel 0 2 2015 September
## 1755 Resort Hotel 0 170 2015 September
## 1756 Resort Hotel 0 149 2015 September
## 1757 Resort Hotel 0 0 2015 September
## 1758 Resort Hotel 1 127 2015 September
## 1759 Resort Hotel 1 149 2015 September
## 1760 Resort Hotel 0 19 2015 September
## 1761 Resort Hotel 1 12 2015 September
## 1762 Resort Hotel 1 178 2015 September
## 1763 Resort Hotel 0 12 2015 September
## 1764 Resort Hotel 1 178 2015 September
## 1765 Resort Hotel 0 26 2015 September
## 1766 Resort Hotel 0 2 2015 September
## 1767 Resort Hotel 1 10 2015 September
## 1768 Resort Hotel 1 120 2015 September
## 1769 Resort Hotel 1 123 2015 September
## 1770 Resort Hotel 0 137 2015 September
## 1771 Resort Hotel 0 104 2015 September
## 1772 Resort Hotel 0 172 2015 September
## 1773 Resort Hotel 0 305 2015 September
## 1774 Resort Hotel 0 83 2015 September
## 1775 Resort Hotel 0 173 2015 September
## 1776 Resort Hotel 1 94 2015 September
## 1777 Resort Hotel 0 118 2015 September
## 1778 Resort Hotel 0 156 2015 September
## 1779 Resort Hotel 0 21 2015 September
## 1780 Resort Hotel 1 17 2015 September
## 1781 Resort Hotel 0 128 2015 September
## 1782 Resort Hotel 0 34 2015 September
## 1783 Resort Hotel 0 19 2015 September
## 1784 Resort Hotel 1 108 2015 September
## 1785 Resort Hotel 0 25 2015 September
## 1786 Resort Hotel 0 107 2015 September
## 1787 Resort Hotel 0 11 2015 September
## 1788 Resort Hotel 1 94 2015 September
## 1789 Resort Hotel 0 83 2015 September
## 1790 Resort Hotel 0 84 2015 September
## 1791 Resort Hotel 0 135 2015 September
## 1792 Resort Hotel 0 11 2015 September
## 1793 Resort Hotel 0 5 2015 September
## 1794 Resort Hotel 1 175 2015 September
## 1795 Resort Hotel 1 105 2015 September
## 1796 Resort Hotel 0 99 2015 September
## 1797 Resort Hotel 1 81 2015 September
## 1798 Resort Hotel 0 152 2015 September
## 1799 Resort Hotel 1 103 2015 September
## 1800 Resort Hotel 1 96 2015 September
## 1801 Resort Hotel 1 81 2015 September
## 1802 Resort Hotel 0 124 2015 September
## 1803 Resort Hotel 0 354 2015 September
## 1804 Resort Hotel 1 116 2015 September
## 1805 Resort Hotel 0 119 2015 September
## 1806 Resort Hotel 0 1 2015 September
## 1807 Resort Hotel 0 0 2015 September
## 1808 Resort Hotel 0 5 2015 September
## 1809 Resort Hotel 0 0 2015 September
## 1810 Resort Hotel 0 46 2015 September
## 1811 Resort Hotel 0 0 2015 September
## 1812 Resort Hotel 0 0 2015 September
## 1813 Resort Hotel 0 0 2015 September
## 1814 Resort Hotel 0 6 2015 September
## 1815 Resort Hotel 0 44 2015 September
## 1816 Resort Hotel 0 42 2015 September
## 1817 Resort Hotel 1 64 2015 September
## 1818 Resort Hotel 0 65 2015 September
## 1819 Resort Hotel 0 93 2015 September
## 1820 Resort Hotel 0 72 2015 September
## 1821 Resort Hotel 0 42 2015 September
## 1822 Resort Hotel 1 65 2015 September
## 1823 Resort Hotel 1 121 2015 September
## 1824 Resort Hotel 0 104 2015 September
## 1825 Resort Hotel 0 1 2015 September
## 1826 Resort Hotel 0 56 2015 September
## 1827 Resort Hotel 0 114 2015 September
## 1828 Resort Hotel 0 85 2015 September
## 1829 Resort Hotel 1 65 2015 September
## 1830 Resort Hotel 0 85 2015 September
## 1831 Resort Hotel 1 95 2015 September
## 1832 Resort Hotel 1 97 2015 September
## 1833 Resort Hotel 1 97 2015 September
## 1834 Resort Hotel 0 6 2015 September
## 1835 Resort Hotel 0 78 2015 September
## 1836 Resort Hotel 0 1 2015 September
## 1837 Resort Hotel 0 50 2015 September
## 1838 Resort Hotel 0 0 2015 September
## 1839 Resort Hotel 1 105 2015 September
## 1840 Resort Hotel 0 110 2015 September
## 1841 Resort Hotel 0 110 2015 September
## 1842 Resort Hotel 0 110 2015 September
## 1843 Resort Hotel 0 110 2015 September
## 1844 Resort Hotel 0 110 2015 September
## 1845 Resort Hotel 0 138 2015 September
## 1846 Resort Hotel 1 89 2015 September
## 1847 Resort Hotel 1 62 2015 September
## 1848 Resort Hotel 0 110 2015 September
## 1849 Resort Hotel 0 110 2015 September
## 1850 Resort Hotel 1 76 2015 September
## 1851 Resort Hotel 0 87 2015 September
## 1852 Resort Hotel 1 35 2015 September
## 1853 Resort Hotel 0 104 2015 September
## 1854 Resort Hotel 0 66 2015 September
## 1855 Resort Hotel 0 34 2015 September
## 1856 Resort Hotel 0 131 2015 September
## 1857 Resort Hotel 0 167 2015 September
## 1858 Resort Hotel 0 7 2015 September
## 1859 Resort Hotel 0 7 2015 September
## 1860 Resort Hotel 0 71 2015 September
## 1861 Resort Hotel 1 101 2015 September
## 1862 Resort Hotel 0 48 2015 September
## 1863 Resort Hotel 0 99 2015 September
## 1864 Resort Hotel 1 102 2015 September
## 1865 Resort Hotel 1 32 2015 September
## 1866 Resort Hotel 0 71 2015 September
## 1867 Resort Hotel 1 102 2015 September
## 1868 Resort Hotel 0 127 2015 September
## 1869 Resort Hotel 0 119 2015 September
## 1870 Resort Hotel 1 77 2015 September
## 1871 Resort Hotel 0 79 2015 September
## 1872 Resort Hotel 0 4 2015 September
## 1873 Resort Hotel 0 65 2015 September
## 1874 Resort Hotel 0 61 2015 September
## 1875 Resort Hotel 1 36 2015 September
## 1876 Resort Hotel 1 124 2015 September
## 1877 Resort Hotel 0 33 2015 September
## 1878 Resort Hotel 1 68 2015 September
## 1879 Resort Hotel 0 99 2015 September
## 1880 Resort Hotel 0 99 2015 September
## 1881 Resort Hotel 0 85 2015 September
## 1882 Resort Hotel 0 110 2015 September
## 1883 Resort Hotel 0 75 2015 September
## 1884 Resort Hotel 0 33 2015 September
## 1885 Resort Hotel 1 347 2015 September
## 1886 Resort Hotel 1 65 2015 September
## 1887 Resort Hotel 0 35 2015 September
## 1888 Resort Hotel 0 87 2015 September
## 1889 Resort Hotel 0 128 2015 September
## 1890 Resort Hotel 0 87 2015 September
## 1891 Resort Hotel 1 92 2015 September
## 1892 Resort Hotel 1 114 2015 September
## 1893 Resort Hotel 0 65 2015 September
## 1894 Resort Hotel 1 106 2015 September
## 1895 Resort Hotel 0 83 2015 September
## 1896 Resort Hotel 1 158 2015 September
## 1897 Resort Hotel 0 86 2015 September
## 1898 Resort Hotel 0 103 2015 September
## 1899 Resort Hotel 1 158 2015 September
## 1900 Resort Hotel 0 125 2015 September
## 1901 Resort Hotel 1 4 2015 September
## 1902 Resort Hotel 0 131 2015 September
## 1903 Resort Hotel 0 125 2015 September
## 1904 Resort Hotel 0 93 2015 September
## 1905 Resort Hotel 1 185 2015 September
## 1906 Resort Hotel 1 34 2015 September
## 1907 Resort Hotel 1 12 2015 September
## 1908 Resort Hotel 0 130 2015 September
## 1909 Resort Hotel 1 185 2015 September
## 1910 Resort Hotel 1 185 2015 September
## 1911 Resort Hotel 1 33 2015 September
## 1912 Resort Hotel 1 185 2015 September
## 1913 Resort Hotel 0 121 2015 September
## 1914 Resort Hotel 1 58 2015 September
## 1915 Resort Hotel 0 185 2015 September
## 1916 Resort Hotel 0 128 2015 September
## 1917 Resort Hotel 0 111 2015 September
## 1918 Resort Hotel 1 349 2015 September
## 1919 Resort Hotel 1 73 2015 September
## 1920 Resort Hotel 1 61 2015 September
## 1921 Resort Hotel 0 94 2015 September
## 1922 Resort Hotel 0 96 2015 September
## 1923 Resort Hotel 0 109 2015 September
## 1924 Resort Hotel 0 65 2015 September
## 1925 Resort Hotel 0 124 2015 September
## 1926 Resort Hotel 0 84 2015 September
## 1927 Resort Hotel 0 95 2015 September
## 1928 Resort Hotel 0 90 2015 September
## 1929 Resort Hotel 0 90 2015 September
## 1930 Resort Hotel 0 112 2015 September
## 1931 Resort Hotel 0 130 2015 September
## 1932 Resort Hotel 0 78 2015 September
## 1933 Resort Hotel 1 36 2015 September
## 1934 Resort Hotel 1 159 2015 September
## 1935 Resort Hotel 1 75 2015 September
## 1936 Resort Hotel 0 158 2015 September
## 1937 Resort Hotel 0 108 2015 September
## 1938 Resort Hotel 0 158 2015 September
## 1939 Resort Hotel 0 70 2015 September
## 1940 Resort Hotel 1 1 2015 September
## 1941 Resort Hotel 0 76 2015 September
## 1942 Resort Hotel 1 183 2015 September
## 1943 Resort Hotel 0 21 2015 September
## 1944 Resort Hotel 0 21 2015 September
## 1945 Resort Hotel 0 21 2015 September
## 1946 Resort Hotel 1 21 2015 September
## 1947 Resort Hotel 1 21 2015 September
## 1948 Resort Hotel 0 34 2015 September
## 1949 Resort Hotel 0 119 2015 September
## 1950 Resort Hotel 1 6 2015 September
## 1951 Resort Hotel 1 6 2015 September
## 1952 Resort Hotel 0 8 2015 September
## 1953 Resort Hotel 1 68 2015 September
## 1954 Resort Hotel 1 68 2015 September
## 1955 Resort Hotel 0 137 2015 September
## 1956 Resort Hotel 0 154 2015 September
## 1957 Resort Hotel 0 76 2015 September
## 1958 Resort Hotel 0 21 2015 September
## 1959 Resort Hotel 0 71 2015 September
## 1960 Resort Hotel 0 36 2015 September
## 1961 Resort Hotel 0 64 2015 September
## 1962 Resort Hotel 0 29 2015 September
## 1963 Resort Hotel 1 352 2015 September
## 1964 Resort Hotel 0 76 2015 September
## 1965 Resort Hotel 0 76 2015 September
## 1966 Resort Hotel 0 75 2015 September
## 1967 Resort Hotel 0 115 2015 September
## 1968 Resort Hotel 0 84 2015 September
## 1969 Resort Hotel 0 77 2015 September
## 1970 Resort Hotel 1 7 2015 September
## 1971 Resort Hotel 0 0 2015 September
## 1972 Resort Hotel 0 16 2015 September
## 1973 Resort Hotel 0 2 2015 September
## 1974 Resort Hotel 0 16 2015 September
## 1975 Resort Hotel 0 0 2015 September
## 1976 Resort Hotel 0 9 2015 September
## 1977 Resort Hotel 0 8 2015 September
## 1978 Resort Hotel 1 109 2015 September
## 1979 Resort Hotel 0 9 2015 September
## 1980 Resort Hotel 0 8 2015 September
## 1981 Resort Hotel 1 60 2015 September
## 1982 Resort Hotel 0 79 2015 September
## 1983 Resort Hotel 0 79 2015 September
## 1984 Resort Hotel 1 67 2015 September
## 1985 Resort Hotel 1 74 2015 September
## 1986 Resort Hotel 0 119 2015 September
## 1987 Resort Hotel 0 51 2015 September
## 1988 Resort Hotel 0 106 2015 September
## 1989 Resort Hotel 0 119 2015 September
## 1990 Resort Hotel 1 74 2015 September
## 1991 Resort Hotel 0 39 2015 September
## 1992 Resort Hotel 0 1 2015 September
## 1993 Resort Hotel 1 37 2015 September
## 1994 Resort Hotel 1 37 2015 September
## 1995 Resort Hotel 0 10 2015 September
## 1996 Resort Hotel 1 75 2015 September
## 1997 Resort Hotel 1 59 2015 September
## 1998 Resort Hotel 1 61 2015 September
## 1999 Resort Hotel 1 61 2015 September
## 2000 Resort Hotel 1 61 2015 September
## 2001 Resort Hotel 0 44 2015 September
## 2002 Resort Hotel 0 47 2015 September
## 2003 Resort Hotel 0 64 2015 September
## 2004 Resort Hotel 1 354 2015 September
## 2005 Resort Hotel 0 98 2015 September
## 2006 Resort Hotel 0 136 2015 September
## 2007 Resort Hotel 0 116 2015 September
## 2008 Resort Hotel 1 54 2015 September
## 2009 Resort Hotel 0 41 2015 September
## 2010 Resort Hotel 0 11 2015 September
## 2011 Resort Hotel 0 32 2015 September
## 2012 Resort Hotel 1 73 2015 September
## 2013 Resort Hotel 0 53 2015 September
## 2014 Resort Hotel 0 100 2015 September
## 2015 Resort Hotel 0 73 2015 September
## 2016 Resort Hotel 0 177 2015 September
## 2017 Resort Hotel 0 51 2015 September
## 2018 Resort Hotel 1 81 2015 September
## 2019 Resort Hotel 0 47 2015 September
## 2020 Resort Hotel 1 81 2015 September
## 2021 Resort Hotel 0 163 2015 September
## 2022 Resort Hotel 0 59 2015 September
## 2023 Resort Hotel 1 55 2015 September
## 2024 Resort Hotel 0 97 2015 September
## 2025 Resort Hotel 0 85 2015 September
## 2026 Resort Hotel 0 177 2015 September
## 2027 Resort Hotel 0 0 2015 September
## 2028 Resort Hotel 0 0 2015 September
## 2029 Resort Hotel 1 80 2015 September
## 2030 Resort Hotel 1 77 2015 September
## 2031 Resort Hotel 0 69 2015 September
## 2032 Resort Hotel 1 80 2015 September
## 2033 Resort Hotel 1 77 2015 September
## 2034 Resort Hotel 0 56 2015 September
## 2035 Resort Hotel 1 77 2015 September
## 2036 Resort Hotel 1 80 2015 September
## 2037 Resort Hotel 1 80 2015 September
## 2038 Resort Hotel 1 98 2015 September
## 2039 Resort Hotel 1 56 2015 September
## 2040 Resort Hotel 0 60 2015 September
## 2041 Resort Hotel 0 77 2015 September
## 2042 Resort Hotel 0 53 2015 September
## 2043 Resort Hotel 0 72 2015 September
## 2044 Resort Hotel 1 119 2015 September
## 2045 Resort Hotel 0 164 2015 September
## 2046 Resort Hotel 1 64 2015 September
## 2047 Resort Hotel 1 89 2015 September
## 2048 Resort Hotel 1 57 2015 September
## 2049 Resort Hotel 0 54 2015 September
## 2050 Resort Hotel 0 172 2015 September
## 2051 Resort Hotel 0 60 2015 September
## 2052 Resort Hotel 1 13 2015 September
## 2053 Resort Hotel 0 165 2015 September
## 2054 Resort Hotel 1 57 2015 September
## 2055 Resort Hotel 0 55 2015 September
## 2056 Resort Hotel 1 76 2015 September
## 2057 Resort Hotel 0 81 2015 September
## 2058 Resort Hotel 1 76 2015 September
## 2059 Resort Hotel 0 96 2015 September
## 2060 Resort Hotel 0 61 2015 September
## 2061 Resort Hotel 0 19 2015 September
## 2062 Resort Hotel 0 50 2015 September
## 2063 Resort Hotel 0 0 2015 September
## 2064 Resort Hotel 0 2 2015 September
## 2065 Resort Hotel 0 2 2015 September
## 2066 Resort Hotel 0 2 2015 September
## 2067 Resort Hotel 0 55 2015 September
## 2068 Resort Hotel 0 56 2015 September
## 2069 Resort Hotel 0 2 2015 September
## 2070 Resort Hotel 0 2 2015 September
## 2071 Resort Hotel 0 55 2015 September
## 2072 Resort Hotel 0 55 2015 September
## 2073 Resort Hotel 1 55 2015 September
## 2074 Resort Hotel 1 2 2015 September
## 2075 Resort Hotel 0 54 2015 September
## 2076 Resort Hotel 1 142 2015 September
## 2077 Resort Hotel 0 51 2015 September
## 2078 Resort Hotel 0 49 2015 September
## 2079 Resort Hotel 0 93 2015 September
## 2080 Resort Hotel 0 48 2015 September
## 2081 Resort Hotel 1 68 2015 September
## 2082 Resort Hotel 0 92 2015 September
## 2083 Resort Hotel 0 97 2015 September
## 2084 Resort Hotel 0 48 2015 September
## 2085 Resort Hotel 0 58 2015 September
## 2086 Resort Hotel 1 70 2015 September
## 2087 Resort Hotel 0 41 2015 September
## 2088 Resort Hotel 0 0 2015 October
## 2089 Resort Hotel 1 63 2015 October
## 2090 Resort Hotel 0 44 2015 October
## 2091 Resort Hotel 0 19 2015 October
## 2092 Resort Hotel 0 57 2015 October
## 2093 Resort Hotel 0 24 2015 October
## 2094 Resort Hotel 0 22 2015 October
## 2095 Resort Hotel 0 51 2015 October
## 2096 Resort Hotel 0 23 2015 October
## 2097 Resort Hotel 0 79 2015 October
## 2098 Resort Hotel 0 48 2015 October
## 2099 Resort Hotel 0 51 2015 October
## 2100 Resort Hotel 0 78 2015 October
## 2101 Resort Hotel 0 24 2015 October
## 2102 Resort Hotel 0 45 2015 October
## 2103 Resort Hotel 1 24 2015 October
## 2104 Resort Hotel 0 44 2015 October
## 2105 Resort Hotel 0 78 2015 October
## 2106 Resort Hotel 0 45 2015 October
## 2107 Resort Hotel 0 115 2015 October
## 2108 Resort Hotel 0 50 2015 October
## 2109 Resort Hotel 0 45 2015 October
## 2110 Resort Hotel 1 103 2015 October
## 2111 Resort Hotel 0 145 2015 October
## 2112 Resort Hotel 0 113 2015 October
## 2113 Resort Hotel 0 102 2015 October
## 2114 Resort Hotel 0 113 2015 October
## 2115 Resort Hotel 0 0 2015 October
## 2116 Resort Hotel 1 29 2015 October
## 2117 Resort Hotel 1 115 2015 October
## 2118 Resort Hotel 0 73 2015 October
## 2119 Resort Hotel 0 115 2015 October
## 2120 Resort Hotel 0 115 2015 October
## 2121 Resort Hotel 0 20 2015 October
## 2122 Resort Hotel 0 56 2015 October
## 2123 Resort Hotel 0 50 2015 October
## 2124 Resort Hotel 0 20 2015 October
## 2125 Resort Hotel 0 53 2015 October
## 2126 Resort Hotel 0 46 2015 October
## 2127 Resort Hotel 1 23 2015 October
## 2128 Resort Hotel 0 63 2015 October
## 2129 Resort Hotel 0 200 2015 October
## 2130 Resort Hotel 0 56 2015 October
## 2131 Resort Hotel 0 49 2015 October
## 2132 Resort Hotel 0 56 2015 October
## 2133 Resort Hotel 0 0 2015 October
## 2134 Resort Hotel 1 87 2015 October
## 2135 Resort Hotel 1 87 2015 October
## 2136 Resort Hotel 1 87 2015 October
## 2137 Resort Hotel 1 87 2015 October
## 2138 Resort Hotel 0 114 2015 October
## 2139 Resort Hotel 0 1 2015 October
## 2140 Resort Hotel 0 5 2015 October
## 2141 Resort Hotel 0 1 2015 October
## 2142 Resort Hotel 1 87 2015 October
## 2143 Resort Hotel 1 87 2015 October
## 2144 Resort Hotel 1 4 2015 October
## 2145 Resort Hotel 1 4 2015 October
## 2146 Resort Hotel 0 192 2015 October
## 2147 Resort Hotel 0 192 2015 October
## 2148 Resort Hotel 0 192 2015 October
## 2149 Resort Hotel 0 39 2015 October
## 2150 Resort Hotel 0 25 2015 October
## 2151 Resort Hotel 1 192 2015 October
## 2152 Resort Hotel 0 192 2015 October
## 2153 Resort Hotel 0 53 2015 October
## 2154 Resort Hotel 1 21 2015 October
## 2155 Resort Hotel 0 19 2015 October
## 2156 Resort Hotel 0 10 2015 October
## 2157 Resort Hotel 0 61 2015 October
## 2158 Resort Hotel 1 72 2015 October
## 2159 Resort Hotel 0 70 2015 October
## 2160 Resort Hotel 0 46 2015 October
## 2161 Resort Hotel 0 38 2015 October
## 2162 Resort Hotel 0 53 2015 October
## 2163 Resort Hotel 0 51 2015 October
## 2164 Resort Hotel 0 124 2015 October
## 2165 Resort Hotel 1 361 2015 October
## 2166 Resort Hotel 0 25 2015 October
## 2167 Resort Hotel 1 49 2015 October
## 2168 Resort Hotel 0 53 2015 October
## 2169 Resort Hotel 0 14 2015 October
## 2170 Resort Hotel 0 163 2015 October
## 2171 Resort Hotel 0 2 2015 October
## 2172 Resort Hotel 0 1 2015 October
## 2173 Resort Hotel 0 0 2015 October
## 2174 Resort Hotel 1 338 2015 October
## 2175 Resort Hotel 0 0 2015 October
## 2176 Resort Hotel 1 34 2015 October
## 2177 Resort Hotel 1 34 2015 October
## 2178 Resort Hotel 0 81 2015 October
## 2179 Resort Hotel 0 26 2015 October
## 2180 Resort Hotel 0 75 2015 October
## 2181 Resort Hotel 0 54 2015 October
## 2182 Resort Hotel 1 170 2015 October
## 2183 Resort Hotel 1 170 2015 October
## 2184 Resort Hotel 1 170 2015 October
## 2185 Resort Hotel 1 170 2015 October
## 2186 Resort Hotel 1 170 2015 October
## 2187 Resort Hotel 1 170 2015 October
## 2188 Resort Hotel 1 170 2015 October
## 2189 Resort Hotel 1 170 2015 October
## 2190 Resort Hotel 1 170 2015 October
## 2191 Resort Hotel 1 170 2015 October
## 2192 Resort Hotel 1 170 2015 October
## 2193 Resort Hotel 1 170 2015 October
## 2194 Resort Hotel 0 69 2015 October
## 2195 Resort Hotel 0 69 2015 October
## 2196 Resort Hotel 1 38 2015 October
## 2197 Resort Hotel 0 90 2015 October
## 2198 Resort Hotel 0 111 2015 October
## 2199 Resort Hotel 0 18 2015 October
## 2200 Resort Hotel 0 7 2015 October
## 2201 Resort Hotel 0 1 2015 October
## 2202 Resort Hotel 0 69 2015 October
## 2203 Resort Hotel 1 7 2015 October
## 2204 Resort Hotel 0 10 2015 October
## 2205 Resort Hotel 0 55 2015 October
## 2206 Resort Hotel 0 10 2015 October
## 2207 Resort Hotel 0 52 2015 October
## 2208 Resort Hotel 0 14 2015 October
## 2209 Resort Hotel 0 17 2015 October
## 2210 Resort Hotel 1 74 2015 October
## 2211 Resort Hotel 1 74 2015 October
## 2212 Resort Hotel 1 74 2015 October
## 2213 Resort Hotel 1 74 2015 October
## 2214 Resort Hotel 0 207 2015 October
## 2215 Resort Hotel 1 102 2015 October
## 2216 Resort Hotel 1 1 2015 October
## 2217 Resort Hotel 1 1 2015 October
## 2218 Resort Hotel 1 1 2015 October
## 2219 Resort Hotel 0 0 2015 October
## 2220 Resort Hotel 1 43 2015 October
## 2221 Resort Hotel 0 70 2015 October
## 2222 Resort Hotel 0 0 2015 October
## 2223 Resort Hotel 1 91 2015 October
## 2224 Resort Hotel 1 1 2015 October
## 2225 Resort Hotel 0 1 2015 October
## 2226 Resort Hotel 0 43 2015 October
## 2227 Resort Hotel 0 3 2015 October
## 2228 Resort Hotel 0 31 2015 October
## 2229 Resort Hotel 1 328 2015 October
## 2230 Resort Hotel 1 328 2015 October
## 2231 Resort Hotel 0 87 2015 October
## 2232 Resort Hotel 1 328 2015 October
## 2233 Resort Hotel 0 84 2015 October
## 2234 Resort Hotel 0 123 2015 October
## 2235 Resort Hotel 1 4 2015 October
## 2236 Resort Hotel 0 13 2015 October
## 2237 Resort Hotel 1 4 2015 October
## 2238 Resort Hotel 1 4 2015 October
## 2239 Resort Hotel 1 4 2015 October
## 2240 Resort Hotel 0 33 2015 October
## 2241 Resort Hotel 0 13 2015 October
## 2242 Resort Hotel 0 21 2015 October
## 2243 Resort Hotel 0 0 2015 October
## 2244 Resort Hotel 0 2 2015 October
## 2245 Resort Hotel 0 6 2015 October
## 2246 Resort Hotel 0 78 2015 October
## 2247 Resort Hotel 0 21 2015 October
## 2248 Resort Hotel 0 175 2015 October
## 2249 Resort Hotel 0 158 2015 October
## 2250 Resort Hotel 0 11 2015 October
## 2251 Resort Hotel 0 158 2015 October
## 2252 Resort Hotel 1 16 2015 October
## 2253 Resort Hotel 0 174 2015 October
## 2254 Resort Hotel 0 174 2015 October
## 2255 Resort Hotel 1 21 2015 October
## 2256 Resort Hotel 0 13 2015 October
## 2257 Resort Hotel 0 3 2015 October
## 2258 Resort Hotel 0 3 2015 October
## 2259 Resort Hotel 1 22 2015 October
## 2260 Resort Hotel 0 3 2015 October
## 2261 Resort Hotel 0 33 2015 October
## 2262 Resort Hotel 0 3 2015 October
## 2263 Resort Hotel 0 44 2015 October
## 2264 Resort Hotel 0 77 2015 October
## 2265 Resort Hotel 0 10 2015 October
## 2266 Resort Hotel 0 44 2015 October
## 2267 Resort Hotel 0 76 2015 October
## 2268 Resort Hotel 0 71 2015 October
## 2269 Resort Hotel 0 9 2015 October
## 2270 Resort Hotel 0 33 2015 October
## 2271 Resort Hotel 0 3 2015 October
## 2272 Resort Hotel 0 77 2015 October
## 2273 Resort Hotel 0 59 2015 October
## 2274 Resort Hotel 0 77 2015 October
## 2275 Resort Hotel 1 77 2015 October
## 2276 Resort Hotel 0 3 2015 October
## 2277 Resort Hotel 0 71 2015 October
## 2278 Resort Hotel 0 29 2015 October
## 2279 Resort Hotel 0 10 2015 October
## 2280 Resort Hotel 1 330 2015 October
## 2281 Resort Hotel 0 22 2015 October
## 2282 Resort Hotel 0 132 2015 October
## 2283 Resort Hotel 0 10 2015 October
## 2284 Resort Hotel 0 94 2015 October
## 2285 Resort Hotel 1 94 2015 October
## 2286 Resort Hotel 0 128 2015 October
## 2287 Resort Hotel 0 1 2015 October
## 2288 Resort Hotel 0 16 2015 October
## 2289 Resort Hotel 0 1 2015 October
## 2290 Resort Hotel 1 134 2015 October
## 2291 Resort Hotel 0 77 2015 October
## 2292 Resort Hotel 0 77 2015 October
## 2293 Resort Hotel 0 34 2015 October
## 2294 Resort Hotel 0 4 2015 October
## 2295 Resort Hotel 1 78 2015 October
## 2296 Resort Hotel 1 77 2015 October
## 2297 Resort Hotel 0 77 2015 October
## 2298 Resort Hotel 1 78 2015 October
## 2299 Resort Hotel 1 78 2015 October
## 2300 Resort Hotel 1 78 2015 October
## 2301 Resort Hotel 1 78 2015 October
## 2302 Resort Hotel 1 78 2015 October
## 2303 Resort Hotel 1 78 2015 October
## 2304 Resort Hotel 0 63 2015 October
## 2305 Resort Hotel 1 78 2015 October
## 2306 Resort Hotel 1 78 2015 October
## 2307 Resort Hotel 0 8 2015 October
## 2308 Resort Hotel 0 4 2015 October
## 2309 Resort Hotel 0 77 2015 October
## 2310 Resort Hotel 0 67 2015 October
## 2311 Resort Hotel 0 21 2015 October
## 2312 Resort Hotel 0 13 2015 October
## 2313 Resort Hotel 1 78 2015 October
## 2314 Resort Hotel 1 78 2015 October
## 2315 Resort Hotel 1 78 2015 October
## 2316 Resort Hotel 1 78 2015 October
## 2317 Resort Hotel 1 78 2015 October
## 2318 Resort Hotel 1 78 2015 October
## 2319 Resort Hotel 1 78 2015 October
## 2320 Resort Hotel 1 78 2015 October
## 2321 Resort Hotel 1 78 2015 October
## 2322 Resort Hotel 1 78 2015 October
## 2323 Resort Hotel 1 78 2015 October
## 2324 Resort Hotel 1 78 2015 October
## 2325 Resort Hotel 1 78 2015 October
## 2326 Resort Hotel 0 63 2015 October
## 2327 Resort Hotel 0 9 2015 October
## 2328 Resort Hotel 0 3 2015 October
## 2329 Resort Hotel 1 78 2015 October
## 2330 Resort Hotel 1 78 2015 October
## 2331 Resort Hotel 1 78 2015 October
## 2332 Resort Hotel 0 63 2015 October
## 2333 Resort Hotel 0 14 2015 October
## 2334 Resort Hotel 0 8 2015 October
## 2335 Resort Hotel 0 25 2015 October
## 2336 Resort Hotel 1 78 2015 October
## 2337 Resort Hotel 1 78 2015 October
## 2338 Resort Hotel 1 78 2015 October
## 2339 Resort Hotel 1 78 2015 October
## 2340 Resort Hotel 0 22 2015 October
## 2341 Resort Hotel 0 0 2015 October
## 2342 Resort Hotel 0 22 2015 October
## 2343 Resort Hotel 0 10 2015 October
## 2344 Resort Hotel 0 4 2015 October
## 2345 Resort Hotel 0 7 2015 October
## 2346 Resort Hotel 0 350 2015 October
## 2347 Resort Hotel 1 2 2015 October
## 2348 Resort Hotel 0 11 2015 October
## 2349 Resort Hotel 0 11 2015 October
## 2350 Resort Hotel 0 5 2015 October
## 2351 Resort Hotel 1 35 2015 October
## 2352 Resort Hotel 0 12 2015 October
## 2353 Resort Hotel 0 4 2015 October
## 2354 Resort Hotel 0 5 2015 October
## 2355 Resort Hotel 0 12 2015 October
## 2356 Resort Hotel 1 21 2015 October
## 2357 Resort Hotel 0 11 2015 October
## 2358 Resort Hotel 0 4 2015 October
## 2359 Resort Hotel 0 5 2015 October
## 2360 Resort Hotel 0 19 2015 October
## 2361 Resort Hotel 0 5 2015 October
## 2362 Resort Hotel 0 4 2015 October
## 2363 Resort Hotel 0 4 2015 October
## 2364 Resort Hotel 0 5 2015 October
## 2365 Resort Hotel 0 12 2015 October
## 2366 Resort Hotel 0 16 2015 October
## 2367 Resort Hotel 1 21 2015 October
## 2368 Resort Hotel 0 0 2015 October
## 2369 Resort Hotel 1 143 2015 October
## 2370 Resort Hotel 1 143 2015 October
## 2371 Resort Hotel 1 143 2015 October
## 2372 Resort Hotel 1 143 2015 October
## 2373 Resort Hotel 1 143 2015 October
## 2374 Resort Hotel 1 143 2015 October
## 2375 Resort Hotel 1 143 2015 October
## 2376 Resort Hotel 1 143 2015 October
## 2377 Resort Hotel 1 143 2015 October
## 2378 Resort Hotel 1 143 2015 October
## 2379 Resort Hotel 1 368 2015 October
## 2380 Resort Hotel 1 143 2015 October
## 2381 Resort Hotel 1 143 2015 October
## 2382 Resort Hotel 1 143 2015 October
## 2383 Resort Hotel 1 143 2015 October
## 2384 Resort Hotel 0 78 2015 October
## 2385 Resort Hotel 0 78 2015 October
## 2386 Resort Hotel 0 2 2015 October
## 2387 Resort Hotel 0 2 2015 October
## 2388 Resort Hotel 0 2 2015 October
## 2389 Resort Hotel 0 39 2015 October
## 2390 Resort Hotel 1 46 2015 October
## 2391 Resort Hotel 0 0 2015 October
## 2392 Resort Hotel 0 9 2015 October
## 2393 Resort Hotel 0 6 2015 October
## 2394 Resort Hotel 0 5 2015 October
## 2395 Resort Hotel 0 2 2015 October
## 2396 Resort Hotel 0 1 2015 October
## 2397 Resort Hotel 1 99 2015 October
## 2398 Resort Hotel 0 1 2015 October
## 2399 Resort Hotel 1 87 2015 October
## 2400 Resort Hotel 1 12 2015 October
## 2401 Resort Hotel 0 41 2015 October
## 2402 Resort Hotel 1 102 2015 October
## 2403 Resort Hotel 1 87 2015 October
## 2404 Resort Hotel 0 83 2015 October
## 2405 Resort Hotel 0 13 2015 October
## 2406 Resort Hotel 0 5 2015 October
## 2407 Resort Hotel 0 5 2015 October
## 2408 Resort Hotel 0 5 2015 October
## 2409 Resort Hotel 0 0 2015 October
## 2410 Resort Hotel 0 0 2015 October
## 2411 Resort Hotel 0 13 2015 October
## 2412 Resort Hotel 0 13 2015 October
## 2413 Resort Hotel 0 20 2015 October
## 2414 Resort Hotel 0 0 2015 October
## 2415 Resort Hotel 0 2 2015 October
## 2416 Resort Hotel 0 4 2015 October
## 2417 Resort Hotel 0 6 2015 October
## 2418 Resort Hotel 1 334 2015 October
## 2419 Resort Hotel 1 334 2015 October
## 2420 Resort Hotel 1 334 2015 October
## 2421 Resort Hotel 0 283 2015 October
## 2422 Resort Hotel 0 19 2015 October
## 2423 Resort Hotel 0 1 2015 October
## 2424 Resort Hotel 0 1 2015 October
## 2425 Resort Hotel 0 0 2015 October
## 2426 Resort Hotel 0 17 2015 October
## 2427 Resort Hotel 0 0 2015 October
## 2428 Resort Hotel 0 0 2015 October
## 2429 Resort Hotel 1 21 2015 October
## 2430 Resort Hotel 0 56 2015 October
## 2431 Resort Hotel 0 73 2015 October
## 2432 Resort Hotel 0 32 2015 October
## 2433 Resort Hotel 0 1 2015 October
## 2434 Resort Hotel 0 2 2015 October
## 2435 Resort Hotel 0 0 2015 October
## 2436 Resort Hotel 0 1 2015 October
## 2437 Resort Hotel 0 0 2015 October
## 2438 Resort Hotel 0 2 2015 October
## 2439 Resort Hotel 0 106 2015 October
## 2440 Resort Hotel 0 7 2015 October
## 2441 Resort Hotel 0 7 2015 October
## 2442 Resort Hotel 0 27 2015 October
## 2443 Resort Hotel 0 150 2015 October
## 2444 Resort Hotel 0 153 2015 October
## 2445 Resort Hotel 0 153 2015 October
## 2446 Resort Hotel 0 153 2015 October
## 2447 Resort Hotel 0 0 2015 October
## 2448 Resort Hotel 0 8 2015 October
## 2449 Resort Hotel 0 1 2015 October
## 2450 Resort Hotel 0 8 2015 October
## 2451 Resort Hotel 0 130 2015 October
## 2452 Resort Hotel 0 88 2015 October
## 2453 Resort Hotel 0 88 2015 October
## 2454 Resort Hotel 0 0 2015 October
## 2455 Resort Hotel 0 25 2015 October
## 2456 Resort Hotel 0 2 2015 October
## 2457 Resort Hotel 1 9 2015 October
## 2458 Resort Hotel 0 136 2015 October
## 2459 Resort Hotel 0 95 2015 October
## 2460 Resort Hotel 1 50 2015 October
## 2461 Resort Hotel 0 9 2015 October
## 2462 Resort Hotel 1 37 2015 October
## 2463 Resort Hotel 1 37 2015 October
## 2464 Resort Hotel 1 73 2015 October
## 2465 Resort Hotel 0 17 2015 October
## 2466 Resort Hotel 0 74 2015 October
## 2467 Resort Hotel 1 92 2015 October
## 2468 Resort Hotel 0 47 2015 October
## 2469 Resort Hotel 0 41 2015 October
## 2470 Resort Hotel 1 72 2015 October
## 2471 Resort Hotel 1 82 2015 October
## 2472 Resort Hotel 0 86 2015 October
## 2473 Resort Hotel 0 68 2015 October
## 2474 Resort Hotel 0 80 2015 October
## 2475 Resort Hotel 1 119 2015 October
## 2476 Resort Hotel 1 119 2015 October
## 2477 Resort Hotel 0 5 2015 October
## 2478 Resort Hotel 0 0 2015 October
## 2479 Resort Hotel 0 7 2015 October
## 2480 Resort Hotel 0 7 2015 October
## 2481 Resort Hotel 0 0 2015 October
## 2482 Resort Hotel 0 7 2015 October
## 2483 Resort Hotel 0 10 2015 October
## 2484 Resort Hotel 0 34 2015 October
## 2485 Resort Hotel 0 10 2015 October
## 2486 Resort Hotel 0 73 2015 October
## 2487 Resort Hotel 0 47 2015 October
## 2488 Resort Hotel 0 47 2015 October
## 2489 Resort Hotel 0 47 2015 October
## 2490 Resort Hotel 0 5 2015 October
## 2491 Resort Hotel 0 47 2015 October
## 2492 Resort Hotel 0 47 2015 October
## 2493 Resort Hotel 0 47 2015 October
## 2494 Resort Hotel 0 47 2015 October
## 2495 Resort Hotel 0 47 2015 October
## 2496 Resort Hotel 1 33 2015 October
## 2497 Resort Hotel 0 47 2015 October
## 2498 Resort Hotel 0 47 2015 October
## 2499 Resort Hotel 0 47 2015 October
## 2500 Resort Hotel 0 47 2015 October
## 2501 Resort Hotel 0 47 2015 October
## 2502 Resort Hotel 0 47 2015 October
## 2503 Resort Hotel 0 47 2015 October
## 2504 Resort Hotel 0 47 2015 October
## 2505 Resort Hotel 0 47 2015 October
## 2506 Resort Hotel 0 124 2015 October
## 2507 Resort Hotel 0 47 2015 October
## 2508 Resort Hotel 0 47 2015 October
## 2509 Resort Hotel 0 47 2015 October
## 2510 Resort Hotel 0 3 2015 October
## 2511 Resort Hotel 0 47 2015 October
## 2512 Resort Hotel 0 86 2015 October
## 2513 Resort Hotel 0 69 2015 October
## 2514 Resort Hotel 0 75 2015 October
## 2515 Resort Hotel 0 118 2015 October
## 2516 Resort Hotel 1 125 2015 October
## 2517 Resort Hotel 0 60 2015 October
## 2518 Resort Hotel 0 0 2015 October
## 2519 Resort Hotel 0 0 2015 October
## 2520 Resort Hotel 0 0 2015 October
## 2521 Resort Hotel 0 99 2015 October
## 2522 Resort Hotel 0 12 2015 October
## 2523 Resort Hotel 0 75 2015 October
## 2524 Resort Hotel 0 22 2015 October
## 2525 Resort Hotel 1 106 2015 October
## 2526 Resort Hotel 0 40 2015 October
## 2527 Resort Hotel 0 108 2015 October
## 2528 Resort Hotel 0 75 2015 October
## 2529 Resort Hotel 0 75 2015 October
## 2530 Resort Hotel 1 197 2015 October
## 2531 Resort Hotel 0 0 2015 October
## 2532 Resort Hotel 0 121 2015 October
## 2533 Resort Hotel 1 1 2015 October
## 2534 Resort Hotel 1 19 2015 October
## 2535 Resort Hotel 1 28 2015 October
## 2536 Resort Hotel 1 92 2015 October
## 2537 Resort Hotel 1 28 2015 October
## 2538 Resort Hotel 0 19 2015 October
## 2539 Resort Hotel 0 28 2015 October
## 2540 Resort Hotel 1 19 2015 October
## 2541 Resort Hotel 0 83 2015 October
## 2542 Resort Hotel 0 40 2015 October
## 2543 Resort Hotel 0 83 2015 October
## 2544 Resort Hotel 0 54 2015 October
## 2545 Resort Hotel 0 86 2015 October
## 2546 Resort Hotel 1 145 2015 October
## 2547 Resort Hotel 1 120 2015 October
## 2548 Resort Hotel 1 118 2015 October
## 2549 Resort Hotel 1 107 2015 October
## 2550 Resort Hotel 0 34 2015 October
## 2551 Resort Hotel 0 48 2015 October
## 2552 Resort Hotel 0 92 2015 October
## 2553 Resort Hotel 0 160 2015 October
## 2554 Resort Hotel 0 21 2015 October
## 2555 Resort Hotel 1 107 2015 October
## 2556 Resort Hotel 0 21 2015 October
## 2557 Resort Hotel 1 30 2015 October
## 2558 Resort Hotel 0 92 2015 October
## 2559 Resort Hotel 0 24 2015 October
## 2560 Resort Hotel 0 36 2015 October
## 2561 Resort Hotel 0 24 2015 October
## 2562 Resort Hotel 0 47 2015 October
## 2563 Resort Hotel 0 21 2015 October
## 2564 Resort Hotel 0 21 2015 October
## 2565 Resort Hotel 0 0 2015 October
## 2566 Resort Hotel 1 3 2015 October
## 2567 Resort Hotel 0 133 2015 October
## 2568 Resort Hotel 1 122 2015 October
## 2569 Resort Hotel 0 122 2015 October
## 2570 Resort Hotel 0 92 2015 October
## 2571 Resort Hotel 1 64 2015 October
## 2572 Resort Hotel 0 120 2015 October
## 2573 Resort Hotel 0 122 2015 October
## 2574 Resort Hotel 0 122 2015 October
## 2575 Resort Hotel 0 122 2015 October
## 2576 Resort Hotel 0 122 2015 October
## 2577 Resort Hotel 0 19 2015 October
## 2578 Resort Hotel 0 24 2015 October
## 2579 Resort Hotel 0 21 2015 October
## 2580 Resort Hotel 0 21 2015 October
## 2581 Resort Hotel 0 52 2015 October
## 2582 Resort Hotel 0 61 2015 October
## 2583 Resort Hotel 0 24 2015 October
## 2584 Resort Hotel 0 24 2015 October
## 2585 Resort Hotel 0 24 2015 October
## 2586 Resort Hotel 1 29 2015 October
## 2587 Resort Hotel 1 22 2015 October
## 2588 Resort Hotel 0 24 2015 October
## 2589 Resort Hotel 0 29 2015 October
## 2590 Resort Hotel 0 4 2015 October
## 2591 Resort Hotel 0 10 2015 October
## 2592 Resort Hotel 0 0 2015 October
## 2593 Resort Hotel 0 1 2015 October
## 2594 Resort Hotel 0 30 2015 October
## 2595 Resort Hotel 0 29 2015 October
## 2596 Resort Hotel 0 11 2015 October
## 2597 Resort Hotel 0 29 2015 October
## 2598 Resort Hotel 0 0 2015 October
## 2599 Resort Hotel 0 3 2015 October
## 2600 Resort Hotel 0 29 2015 October
## 2601 Resort Hotel 0 0 2015 October
## 2602 Resort Hotel 0 93 2015 October
## 2603 Resort Hotel 0 39 2015 October
## 2604 Resort Hotel 0 93 2015 October
## 2605 Resort Hotel 0 119 2015 October
## 2606 Resort Hotel 0 119 2015 October
## 2607 Resort Hotel 0 73 2015 October
## 2608 Resort Hotel 0 51 2015 October
## 2609 Resort Hotel 1 165 2015 October
## 2610 Resort Hotel 1 165 2015 October
## 2611 Resort Hotel 0 27 2015 October
## 2612 Resort Hotel 1 165 2015 October
## 2613 Resort Hotel 1 165 2015 October
## 2614 Resort Hotel 1 52 2015 October
## 2615 Resort Hotel 0 22 2015 October
## 2616 Resort Hotel 0 72 2015 October
## 2617 Resort Hotel 0 23 2015 October
## 2618 Resort Hotel 0 13 2015 October
## 2619 Resort Hotel 0 39 2015 October
## 2620 Resort Hotel 0 163 2015 October
## 2621 Resort Hotel 0 30 2015 October
## 2622 Resort Hotel 1 7 2015 October
## 2623 Resort Hotel 0 11 2015 October
## 2624 Resort Hotel 1 111 2015 October
## 2625 Resort Hotel 0 0 2015 October
## 2626 Resort Hotel 1 148 2015 October
## 2627 Resort Hotel 1 148 2015 October
## 2628 Resort Hotel 1 148 2015 October
## 2629 Resort Hotel 1 148 2015 October
## 2630 Resort Hotel 1 148 2015 October
## 2631 Resort Hotel 1 148 2015 October
## 2632 Resort Hotel 1 148 2015 October
## 2633 Resort Hotel 1 148 2015 October
## 2634 Resort Hotel 1 148 2015 October
## 2635 Resort Hotel 1 148 2015 October
## 2636 Resort Hotel 1 148 2015 October
## 2637 Resort Hotel 1 148 2015 October
## 2638 Resort Hotel 1 148 2015 October
## 2639 Resort Hotel 1 148 2015 October
## 2640 Resort Hotel 1 148 2015 October
## 2641 Resort Hotel 1 148 2015 October
## 2642 Resort Hotel 1 148 2015 October
## 2643 Resort Hotel 1 148 2015 October
## 2644 Resort Hotel 1 53 2015 October
## 2645 Resort Hotel 1 148 2015 October
## 2646 Resort Hotel 1 148 2015 October
## 2647 Resort Hotel 1 148 2015 October
## 2648 Resort Hotel 1 148 2015 October
## 2649 Resort Hotel 1 148 2015 October
## 2650 Resort Hotel 1 148 2015 October
## 2651 Resort Hotel 1 53 2015 October
## 2652 Resort Hotel 1 148 2015 October
## 2653 Resort Hotel 1 148 2015 October
## 2654 Resort Hotel 1 148 2015 October
## 2655 Resort Hotel 1 148 2015 October
## 2656 Resort Hotel 1 148 2015 October
## 2657 Resort Hotel 1 148 2015 October
## 2658 Resort Hotel 1 148 2015 October
## 2659 Resort Hotel 1 148 2015 October
## 2660 Resort Hotel 1 148 2015 October
## 2661 Resort Hotel 1 148 2015 October
## 2662 Resort Hotel 1 148 2015 October
## 2663 Resort Hotel 1 99 2015 October
## 2664 Resort Hotel 0 3 2015 October
## 2665 Resort Hotel 1 4 2015 October
## 2666 Resort Hotel 0 9 2015 October
## 2667 Resort Hotel 1 9 2015 October
## 2668 Resort Hotel 1 4 2015 October
## 2669 Resort Hotel 0 50 2015 October
## 2670 Resort Hotel 0 5 2015 October
## 2671 Resort Hotel 0 98 2015 October
## 2672 Resort Hotel 1 110 2015 October
## 2673 Resort Hotel 0 96 2015 October
## 2674 Resort Hotel 1 40 2015 October
## 2675 Resort Hotel 1 40 2015 October
## 2676 Resort Hotel 0 50 2015 October
## 2677 Resort Hotel 0 120 2015 October
## 2678 Resort Hotel 0 9 2015 October
## 2679 Resort Hotel 0 28 2015 October
## 2680 Resort Hotel 1 148 2015 October
## 2681 Resort Hotel 1 148 2015 October
## 2682 Resort Hotel 1 148 2015 October
## 2683 Resort Hotel 1 148 2015 October
## 2684 Resort Hotel 1 148 2015 October
## 2685 Resort Hotel 0 1 2015 October
## 2686 Resort Hotel 1 16 2015 October
## 2687 Resort Hotel 0 115 2015 October
## 2688 Resort Hotel 0 62 2015 October
## 2689 Resort Hotel 0 68 2015 October
## 2690 Resort Hotel 0 62 2015 October
## 2691 Resort Hotel 0 9 2015 October
## 2692 Resort Hotel 0 35 2015 October
## 2693 Resort Hotel 0 1 2015 October
## 2694 Resort Hotel 1 51 2015 October
## 2695 Resort Hotel 1 25 2015 October
## 2696 Resort Hotel 0 60 2015 October
## 2697 Resort Hotel 1 27 2015 October
## 2698 Resort Hotel 0 24 2015 October
## 2699 Resort Hotel 1 114 2015 October
## 2700 Resort Hotel 1 114 2015 October
## 2701 Resort Hotel 1 114 2015 October
## 2702 Resort Hotel 1 114 2015 October
## 2703 Resort Hotel 1 114 2015 October
## 2704 Resort Hotel 0 3 2015 October
## 2705 Resort Hotel 0 0 2015 October
## 2706 Resort Hotel 0 0 2015 October
## 2707 Resort Hotel 0 0 2015 October
## 2708 Resort Hotel 0 0 2015 October
## 2709 Resort Hotel 1 0 2015 October
## 2710 Resort Hotel 0 3 2015 October
## 2711 Resort Hotel 0 10 2015 October
## 2712 Resort Hotel 0 0 2015 October
## 2713 Resort Hotel 0 0 2015 October
## 2714 Resort Hotel 0 10 2015 October
## 2715 Resort Hotel 0 1 2015 October
## 2716 Resort Hotel 0 34 2015 October
## 2717 Resort Hotel 0 42 2015 October
## 2718 Resort Hotel 0 3 2015 October
## 2719 Resort Hotel 0 61 2015 October
## 2720 Resort Hotel 0 0 2015 October
## 2721 Resort Hotel 0 2 2015 October
## 2722 Resort Hotel 0 19 2015 October
## 2723 Resort Hotel 0 0 2015 October
## 2724 Resort Hotel 0 49 2015 October
## 2725 Resort Hotel 0 49 2015 October
## 2726 Resort Hotel 0 49 2015 October
## 2727 Resort Hotel 0 49 2015 October
## 2728 Resort Hotel 0 0 2015 October
## 2729 Resort Hotel 0 2 2015 October
## 2730 Resort Hotel 0 1 2015 October
## 2731 Resort Hotel 0 1 2015 October
## 2732 Resort Hotel 0 2 2015 October
## 2733 Resort Hotel 0 2 2015 October
## 2734 Resort Hotel 0 3 2015 October
## 2735 Resort Hotel 1 7 2015 October
## 2736 Resort Hotel 0 3 2015 October
## 2737 Resort Hotel 0 2 2015 October
## 2738 Resort Hotel 0 3 2015 October
## 2739 Resort Hotel 0 153 2015 October
## 2740 Resort Hotel 0 153 2015 October
## 2741 Resort Hotel 1 63 2015 October
## 2742 Resort Hotel 0 153 2015 October
## 2743 Resort Hotel 0 1 2015 October
## 2744 Resort Hotel 0 2 2015 October
## 2745 Resort Hotel 0 16 2015 October
## 2746 Resort Hotel 0 1 2015 October
## 2747 Resort Hotel 0 154 2015 October
## 2748 Resort Hotel 0 154 2015 October
## 2749 Resort Hotel 0 25 2015 October
## 2750 Resort Hotel 0 3 2015 October
## 2751 Resort Hotel 0 154 2015 October
## 2752 Resort Hotel 0 13 2015 October
## 2753 Resort Hotel 0 6 2015 October
## 2754 Resort Hotel 0 1 2015 October
## 2755 Resort Hotel 0 3 2015 October
## 2756 Resort Hotel 0 3 2015 October
## 2757 Resort Hotel 0 4 2015 October
## 2758 Resort Hotel 0 11 2015 October
## 2759 Resort Hotel 0 11 2015 October
## 2760 Resort Hotel 0 154 2015 October
## 2761 Resort Hotel 0 4 2015 October
## 2762 Resort Hotel 0 45 2015 October
## 2763 Resort Hotel 0 11 2015 October
## 2764 Resort Hotel 0 7 2015 October
## 2765 Resort Hotel 0 85 2015 October
## 2766 Resort Hotel 0 4 2015 October
## 2767 Resort Hotel 0 10 2015 October
## 2768 Resort Hotel 0 12 2015 October
## 2769 Resort Hotel 0 5 2015 October
## 2770 Resort Hotel 1 155 2015 October
## 2771 Resort Hotel 1 155 2015 October
## 2772 Resort Hotel 0 155 2015 October
## 2773 Resort Hotel 1 155 2015 October
## 2774 Resort Hotel 0 155 2015 October
## 2775 Resort Hotel 1 155 2015 October
## 2776 Resort Hotel 1 155 2015 October
## 2777 Resort Hotel 0 4 2015 October
## 2778 Resort Hotel 0 4 2015 October
## 2779 Resort Hotel 0 0 2015 October
## 2780 Resort Hotel 0 3 2015 October
## 2781 Resort Hotel 0 8 2015 October
## 2782 Resort Hotel 0 0 2015 October
## 2783 Resort Hotel 1 155 2015 October
## 2784 Resort Hotel 1 155 2015 October
## 2785 Resort Hotel 1 155 2015 October
## 2786 Resort Hotel 1 155 2015 October
## 2787 Resort Hotel 0 1 2015 October
## 2788 Resort Hotel 1 155 2015 October
## 2789 Resort Hotel 0 155 2015 October
## 2790 Resort Hotel 1 155 2015 October
## 2791 Resort Hotel 1 155 2015 October
## 2792 Resort Hotel 0 155 2015 October
## 2793 Resort Hotel 1 155 2015 October
## 2794 Resort Hotel 0 155 2015 October
## 2795 Resort Hotel 1 155 2015 October
## 2796 Resort Hotel 1 155 2015 October
## 2797 Resort Hotel 0 4 2015 October
## 2798 Resort Hotel 0 3 2015 October
## 2799 Resort Hotel 0 4 2015 October
## 2800 Resort Hotel 1 3 2015 October
## 2801 Resort Hotel 0 54 2015 October
## 2802 Resort Hotel 0 3 2015 October
## 2803 Resort Hotel 0 1 2015 October
## 2804 Resort Hotel 0 0 2015 October
## 2805 Resort Hotel 0 155 2015 October
## 2806 Resort Hotel 0 155 2015 October
## 2807 Resort Hotel 1 155 2015 October
## 2808 Resort Hotel 0 0 2015 October
## 2809 Resort Hotel 0 155 2015 October
## 2810 Resort Hotel 0 155 2015 October
## 2811 Resort Hotel 0 155 2015 October
## 2812 Resort Hotel 1 155 2015 October
## 2813 Resort Hotel 1 155 2015 October
## 2814 Resort Hotel 1 155 2015 October
## 2815 Resort Hotel 1 155 2015 October
## 2816 Resort Hotel 1 155 2015 October
## 2817 Resort Hotel 1 1 2015 October
## 2818 Resort Hotel 0 2 2015 October
## 2819 Resort Hotel 1 74 2015 October
## 2820 Resort Hotel 0 2 2015 October
## 2821 Resort Hotel 1 11 2015 October
## 2822 Resort Hotel 0 12 2015 October
## 2823 Resort Hotel 0 155 2015 October
## 2824 Resort Hotel 0 0 2015 October
## 2825 Resort Hotel 0 155 2015 October
## 2826 Resort Hotel 0 0 2015 October
## 2827 Resort Hotel 1 75 2015 October
## 2828 Resort Hotel 1 128 2015 October
## 2829 Resort Hotel 1 128 2015 October
## 2830 Resort Hotel 1 51 2015 October
## 2831 Resort Hotel 0 25 2015 October
## 2832 Resort Hotel 1 81 2015 October
## 2833 Resort Hotel 0 39 2015 October
## 2834 Resort Hotel 1 58 2015 October
## 2835 Resort Hotel 0 5 2015 October
## 2836 Resort Hotel 1 33 2015 November
## 2837 Resort Hotel 1 1 2015 November
## 2838 Resort Hotel 0 4 2015 November
## 2839 Resort Hotel 0 5 2015 November
## 2840 Resort Hotel 0 1 2015 November
## 2841 Resort Hotel 1 33 2015 November
## 2842 Resort Hotel 0 76 2015 November
## 2843 Resort Hotel 1 171 2015 November
## 2844 Resort Hotel 0 146 2015 November
## 2845 Resort Hotel 0 83 2015 November
## 2846 Resort Hotel 0 39 2015 November
## 2847 Resort Hotel 0 24 2015 November
## 2848 Resort Hotel 0 1 2015 November
## 2849 Resort Hotel 0 0 2015 November
## 2850 Resort Hotel 0 20 2015 November
## 2851 Resort Hotel 0 20 2015 November
## 2852 Resort Hotel 0 21 2015 November
## 2853 Resort Hotel 1 31 2015 November
## 2854 Resort Hotel 1 31 2015 November
## 2855 Resort Hotel 1 31 2015 November
## 2856 Resort Hotel 1 31 2015 November
## 2857 Resort Hotel 1 31 2015 November
## 2858 Resort Hotel 1 31 2015 November
## 2859 Resort Hotel 1 31 2015 November
## 2860 Resort Hotel 0 36 2015 November
## 2861 Resort Hotel 0 5 2015 November
## 2862 Resort Hotel 0 5 2015 November
## 2863 Resort Hotel 0 0 2015 November
## 2864 Resort Hotel 0 0 2015 November
## 2865 Resort Hotel 0 7 2015 November
## 2866 Resort Hotel 0 0 2015 November
## 2867 Resort Hotel 1 6 2015 November
## 2868 Resort Hotel 0 24 2015 November
## 2869 Resort Hotel 0 6 2015 November
## 2870 Resort Hotel 0 26 2015 November
## 2871 Resort Hotel 0 3 2015 November
## 2872 Resort Hotel 1 26 2015 November
## 2873 Resort Hotel 0 49 2015 November
## 2874 Resort Hotel 0 25 2015 November
## 2875 Resort Hotel 1 26 2015 November
## 2876 Resort Hotel 0 6 2015 November
## 2877 Resort Hotel 0 8 2015 November
## 2878 Resort Hotel 0 24 2015 November
## 2879 Resort Hotel 0 24 2015 November
## 2880 Resort Hotel 0 24 2015 November
## 2881 Resort Hotel 0 24 2015 November
## 2882 Resort Hotel 0 24 2015 November
## 2883 Resort Hotel 0 24 2015 November
## 2884 Resort Hotel 0 24 2015 November
## 2885 Resort Hotel 0 24 2015 November
## 2886 Resort Hotel 0 1 2015 November
## 2887 Resort Hotel 0 2 2015 November
## 2888 Resort Hotel 0 2 2015 November
## 2889 Resort Hotel 0 0 2015 November
## 2890 Resort Hotel 1 50 2015 November
## 2891 Resort Hotel 1 25 2015 November
## 2892 Resort Hotel 1 25 2015 November
## 2893 Resort Hotel 0 33 2015 November
## 2894 Resort Hotel 0 0 2015 November
## 2895 Resort Hotel 0 0 2015 November
## 2896 Resort Hotel 0 0 2015 November
## 2897 Resort Hotel 0 28 2015 November
## 2898 Resort Hotel 0 28 2015 November
## 2899 Resort Hotel 0 34 2015 November
## 2900 Resort Hotel 0 65 2015 November
## 2901 Resort Hotel 0 34 2015 November
## 2902 Resort Hotel 0 11 2015 November
## 2903 Resort Hotel 0 1 2015 November
## 2904 Resort Hotel 0 4 2015 November
## 2905 Resort Hotel 0 0 2015 November
## 2906 Resort Hotel 0 15 2015 November
## 2907 Resort Hotel 0 0 2015 November
## 2908 Resort Hotel 0 38 2015 November
## 2909 Resort Hotel 0 0 2015 November
## 2910 Resort Hotel 0 91 2015 November
## 2911 Resort Hotel 1 123 2015 November
## 2912 Resort Hotel 1 123 2015 November
## 2913 Resort Hotel 0 27 2015 November
## 2914 Resort Hotel 0 35 2015 November
## 2915 Resort Hotel 0 35 2015 November
## 2916 Resort Hotel 0 35 2015 November
## 2917 Resort Hotel 0 35 2015 November
## 2918 Resort Hotel 0 27 2015 November
## 2919 Resort Hotel 0 35 2015 November
## 2920 Resort Hotel 0 54 2015 November
## 2921 Resort Hotel 0 0 2015 November
## 2922 Resort Hotel 0 25 2015 November
## 2923 Resort Hotel 1 18 2015 November
## 2924 Resort Hotel 1 30 2015 November
## 2925 Resort Hotel 0 0 2015 November
## 2926 Resort Hotel 1 19 2015 November
## 2927 Resort Hotel 1 30 2015 November
## 2928 Resort Hotel 0 4 2015 November
## 2929 Resort Hotel 0 0 2015 November
## 2930 Resort Hotel 0 4 2015 November
## 2931 Resort Hotel 0 18 2015 November
## 2932 Resort Hotel 0 18 2015 November
## 2933 Resort Hotel 0 51 2015 November
## 2934 Resort Hotel 0 54 2015 November
## 2935 Resort Hotel 1 36 2015 November
## 2936 Resort Hotel 1 36 2015 November
## 2937 Resort Hotel 1 36 2015 November
## 2938 Resort Hotel 1 241 2015 November
## 2939 Resort Hotel 0 36 2015 November
## 2940 Resort Hotel 1 172 2015 November
## 2941 Resort Hotel 0 171 2015 November
## 2942 Resort Hotel 1 36 2015 November
## 2943 Resort Hotel 0 36 2015 November
## 2944 Resort Hotel 1 36 2015 November
## 2945 Resort Hotel 1 36 2015 November
## 2946 Resort Hotel 0 36 2015 November
## 2947 Resort Hotel 0 28 2015 November
## 2948 Resort Hotel 0 36 2015 November
## 2949 Resort Hotel 1 36 2015 November
## 2950 Resort Hotel 1 36 2015 November
## 2951 Resort Hotel 0 36 2015 November
## 2952 Resort Hotel 1 36 2015 November
## 2953 Resort Hotel 1 36 2015 November
## 2954 Resort Hotel 0 36 2015 November
## 2955 Resort Hotel 0 36 2015 November
## 2956 Resort Hotel 1 172 2015 November
## 2957 Resort Hotel 1 241 2015 November
## 2958 Resort Hotel 0 96 2015 November
## 2959 Resort Hotel 1 13 2015 November
## 2960 Resort Hotel 0 11 2015 November
## 2961 Resort Hotel 1 15 2015 November
## 2962 Resort Hotel 1 193 2015 November
## 2963 Resort Hotel 0 0 2015 November
## 2964 Resort Hotel 0 10 2015 November
## 2965 Resort Hotel 0 17 2015 November
## 2966 Resort Hotel 0 37 2015 November
## 2967 Resort Hotel 0 37 2015 November
## 2968 Resort Hotel 0 17 2015 November
## 2969 Resort Hotel 0 29 2015 November
## 2970 Resort Hotel 0 37 2015 November
## 2971 Resort Hotel 0 37 2015 November
## 2972 Resort Hotel 1 37 2015 November
## 2973 Resort Hotel 1 10 2015 November
## 2974 Resort Hotel 0 89 2015 November
## 2975 Resort Hotel 0 3 2015 November
## 2976 Resort Hotel 0 3 2015 November
## 2977 Resort Hotel 0 5 2015 November
## 2978 Resort Hotel 0 0 2015 November
## 2979 Resort Hotel 1 0 2015 November
## 2980 Resort Hotel 0 0 2015 November
## 2981 Resort Hotel 0 11 2015 November
## 2982 Resort Hotel 0 14 2015 November
## 2983 Resort Hotel 0 2 2015 November
## 2984 Resort Hotel 1 38 2015 November
## 2985 Resort Hotel 1 38 2015 November
## 2986 Resort Hotel 0 79 2015 November
## 2987 Resort Hotel 0 79 2015 November
## 2988 Resort Hotel 0 49 2015 November
## 2989 Resort Hotel 1 30 2015 November
## 2990 Resort Hotel 0 164 2015 November
## 2991 Resort Hotel 0 50 2015 November
## 2992 Resort Hotel 0 0 2015 November
## 2993 Resort Hotel 1 39 2015 November
## 2994 Resort Hotel 1 39 2015 November
## 2995 Resort Hotel 1 39 2015 November
## 2996 Resort Hotel 1 42 2015 November
## 2997 Resort Hotel 1 39 2015 November
## 2998 Resort Hotel 0 36 2015 November
## 2999 Resort Hotel 0 0 2015 November
## 3000 Resort Hotel 0 6 2015 November
## 3001 Resort Hotel 1 40 2015 November
## 3002 Resort Hotel 1 40 2015 November
## 3003 Resort Hotel 0 32 2015 November
## 3004 Resort Hotel 1 40 2015 November
## 3005 Resort Hotel 1 40 2015 November
## 3006 Resort Hotel 1 40 2015 November
## 3007 Resort Hotel 1 56 2015 November
## 3008 Resort Hotel 0 60 2015 November
## 3009 Resort Hotel 0 166 2015 November
## 3010 Resort Hotel 0 0 2015 November
## 3011 Resort Hotel 1 40 2015 November
## 3012 Resort Hotel 1 37 2015 November
## 3013 Resort Hotel 0 53 2015 November
## 3014 Resort Hotel 0 60 2015 November
## 3015 Resort Hotel 0 61 2015 November
## 3016 Resort Hotel 0 40 2015 November
## 3017 Resort Hotel 1 40 2015 November
## 3018 Resort Hotel 1 40 2015 November
## 3019 Resort Hotel 1 40 2015 November
## 3020 Resort Hotel 0 56 2015 November
## 3021 Resort Hotel 1 32 2015 November
## 3022 Resort Hotel 0 32 2015 November
## 3023 Resort Hotel 0 166 2015 November
## 3024 Resort Hotel 1 40 2015 November
## 3025 Resort Hotel 1 40 2015 November
## 3026 Resort Hotel 1 40 2015 November
## 3027 Resort Hotel 0 56 2015 November
## 3028 Resort Hotel 1 56 2015 November
## 3029 Resort Hotel 0 60 2015 November
## 3030 Resort Hotel 1 37 2015 November
## 3031 Resort Hotel 0 39 2015 November
## 3032 Resort Hotel 0 103 2015 November
## 3033 Resort Hotel 0 32 2015 November
## 3034 Resort Hotel 1 55 2015 November
## 3035 Resort Hotel 0 49 2015 November
## 3036 Resort Hotel 1 41 2015 November
## 3037 Resort Hotel 1 41 2015 November
## 3038 Resort Hotel 0 33 2015 November
## 3039 Resort Hotel 1 41 2015 November
## 3040 Resort Hotel 1 41 2015 November
## 3041 Resort Hotel 1 41 2015 November
## 3042 Resort Hotel 1 41 2015 November
## 3043 Resort Hotel 1 41 2015 November
## 3044 Resort Hotel 0 41 2015 November
## 3045 Resort Hotel 0 33 2015 November
## 3046 Resort Hotel 0 70 2015 November
## 3047 Resort Hotel 0 33 2015 November
## 3048 Resort Hotel 0 21 2015 November
## 3049 Resort Hotel 0 33 2015 November
## 3050 Resort Hotel 0 21 2015 November
## 3051 Resort Hotel 1 33 2015 November
## 3052 Resort Hotel 0 33 2015 November
## 3053 Resort Hotel 1 41 2015 November
## 3054 Resort Hotel 1 41 2015 November
## 3055 Resort Hotel 1 41 2015 November
## 3056 Resort Hotel 0 49 2015 November
## 3057 Resort Hotel 0 2 2015 November
## 3058 Resort Hotel 1 3 2015 November
## 3059 Resort Hotel 0 33 2015 November
## 3060 Resort Hotel 0 3 2015 November
## 3061 Resort Hotel 0 2 2015 November
## 3062 Resort Hotel 0 21 2015 November
## 3063 Resort Hotel 0 33 2015 November
## 3064 Resort Hotel 0 82 2015 November
## 3065 Resort Hotel 1 41 2015 November
## 3066 Resort Hotel 1 41 2015 November
## 3067 Resort Hotel 1 41 2015 November
## 3068 Resort Hotel 1 41 2015 November
## 3069 Resort Hotel 0 33 2015 November
## 3070 Resort Hotel 0 42 2015 November
## 3071 Resort Hotel 0 42 2015 November
## 3072 Resort Hotel 0 2 2015 November
## 3073 Resort Hotel 0 1 2015 November
## 3074 Resort Hotel 1 43 2015 November
## 3075 Resort Hotel 0 31 2015 November
## 3076 Resort Hotel 0 3 2015 November
## 3077 Resort Hotel 1 44 2015 November
## 3078 Resort Hotel 0 2 2015 November
## 3079 Resort Hotel 0 15 2015 November
## 3080 Resort Hotel 1 121 2015 November
## 3081 Resort Hotel 1 38 2015 November
## 3082 Resort Hotel 0 5 2015 November
## 3083 Resort Hotel 1 54 2015 November
## 3084 Resort Hotel 0 94 2015 November
## 3085 Resort Hotel 0 10 2015 November
## 3086 Resort Hotel 0 79 2015 November
## 3087 Resort Hotel 1 53 2015 November
## 3088 Resort Hotel 1 60 2015 November
## 3089 Resort Hotel 1 125 2015 November
## 3090 Resort Hotel 0 74 2015 November
## 3091 Resort Hotel 0 74 2015 November
## 3092 Resort Hotel 0 0 2015 November
## 3093 Resort Hotel 1 27 2015 November
## 3094 Resort Hotel 1 27 2015 November
## 3095 Resort Hotel 1 27 2015 November
## 3096 Resort Hotel 1 73 2015 November
## 3097 Resort Hotel 1 80 2015 November
## 3098 Resort Hotel 1 74 2015 November
## 3099 Resort Hotel 1 42 2015 November
## 3100 Resort Hotel 1 97 2015 November
## 3101 Resort Hotel 0 0 2015 November
## 3102 Resort Hotel 0 28 2015 November
## 3103 Resort Hotel 0 46 2015 November
## 3104 Resort Hotel 1 134 2015 November
## 3105 Resort Hotel 0 16 2015 November
## 3106 Resort Hotel 0 193 2015 November
## 3107 Resort Hotel 0 105 2015 November
## 3108 Resort Hotel 0 105 2015 November
## 3109 Resort Hotel 0 105 2015 November
## 3110 Resort Hotel 1 62 2015 November
## 3111 Resort Hotel 0 62 2015 November
## 3112 Resort Hotel 0 105 2015 November
## 3113 Resort Hotel 0 105 2015 November
## 3114 Resort Hotel 0 105 2015 November
## 3115 Resort Hotel 0 62 2015 November
## 3116 Resort Hotel 0 105 2015 November
## 3117 Resort Hotel 0 105 2015 November
## 3118 Resort Hotel 0 105 2015 November
## 3119 Resort Hotel 0 105 2015 November
## 3120 Resort Hotel 0 105 2015 November
## 3121 Resort Hotel 0 105 2015 November
## 3122 Resort Hotel 0 105 2015 November
## 3123 Resort Hotel 0 12 2015 November
## 3124 Resort Hotel 0 105 2015 November
## 3125 Resort Hotel 0 105 2015 November
## 3126 Resort Hotel 0 105 2015 November
## 3127 Resort Hotel 0 62 2015 November
## 3128 Resort Hotel 0 62 2015 November
## 3129 Resort Hotel 0 105 2015 November
## 3130 Resort Hotel 1 12 2015 November
## 3131 Resort Hotel 0 62 2015 November
## 3132 Resort Hotel 0 105 2015 November
## 3133 Resort Hotel 0 105 2015 November
## 3134 Resort Hotel 0 163 2015 November
## 3135 Resort Hotel 0 10 2015 November
## 3136 Resort Hotel 0 19 2015 November
## 3137 Resort Hotel 1 31 2015 November
## 3138 Resort Hotel 0 45 2015 November
## 3139 Resort Hotel 0 16 2015 November
## 3140 Resort Hotel 0 50 2015 November
## 3141 Resort Hotel 1 121 2015 November
## 3142 Resort Hotel 0 50 2015 November
## 3143 Resort Hotel 1 120 2015 November
## 3144 Resort Hotel 0 36 2015 November
## 3145 Resort Hotel 0 36 2015 November
## 3146 Resort Hotel 0 36 2015 November
## 3147 Resort Hotel 1 36 2015 November
## 3148 Resort Hotel 1 122 2015 November
## 3149 Resort Hotel 1 122 2015 November
## 3150 Resort Hotel 0 36 2015 November
## 3151 Resort Hotel 0 36 2015 November
## 3152 Resort Hotel 0 36 2015 November
## 3153 Resort Hotel 0 39 2015 November
## 3154 Resort Hotel 1 122 2015 November
## 3155 Resort Hotel 1 122 2015 November
## 3156 Resort Hotel 0 36 2015 November
## 3157 Resort Hotel 1 36 2015 November
## 3158 Resort Hotel 1 36 2015 November
## 3159 Resort Hotel 1 235 2015 November
## 3160 Resort Hotel 1 122 2015 November
## 3161 Resort Hotel 1 122 2015 November
## 3162 Resort Hotel 0 36 2015 November
## 3163 Resort Hotel 0 36 2015 November
## 3164 Resort Hotel 1 36 2015 November
## 3165 Resort Hotel 0 8 2015 November
## 3166 Resort Hotel 1 36 2015 November
## 3167 Resort Hotel 0 36 2015 November
## 3168 Resort Hotel 0 36 2015 November
## 3169 Resort Hotel 1 122 2015 November
## 3170 Resort Hotel 1 122 2015 November
## 3171 Resort Hotel 1 122 2015 November
## 3172 Resort Hotel 1 73 2015 November
## 3173 Resort Hotel 0 36 2015 November
## 3174 Resort Hotel 0 36 2015 November
## 3175 Resort Hotel 1 36 2015 November
## 3176 Resort Hotel 1 36 2015 November
## 3177 Resort Hotel 1 122 2015 November
## 3178 Resort Hotel 1 36 2015 November
## 3179 Resort Hotel 0 36 2015 November
## 3180 Resort Hotel 1 36 2015 November
## 3181 Resort Hotel 1 123 2015 November
## 3182 Resort Hotel 0 36 2015 November
## 3183 Resort Hotel 1 129 2015 November
## 3184 Resort Hotel 0 24 2015 November
## 3185 Resort Hotel 0 24 2015 November
## 3186 Resort Hotel 0 24 2015 November
## 3187 Resort Hotel 0 78 2015 November
## 3188 Resort Hotel 0 78 2015 November
## 3189 Resort Hotel 0 78 2015 November
## 3190 Resort Hotel 0 78 2015 November
## 3191 Resort Hotel 0 78 2015 November
## 3192 Resort Hotel 0 78 2015 November
## 3193 Resort Hotel 0 78 2015 November
## 3194 Resort Hotel 0 24 2015 November
## 3195 Resort Hotel 0 24 2015 November
## 3196 Resort Hotel 0 24 2015 November
## 3197 Resort Hotel 0 15 2015 November
## 3198 Resort Hotel 0 78 2015 November
## 3199 Resort Hotel 0 78 2015 November
## 3200 Resort Hotel 0 78 2015 November
## 3201 Resort Hotel 0 78 2015 November
## 3202 Resort Hotel 0 78 2015 November
## 3203 Resort Hotel 0 78 2015 November
## 3204 Resort Hotel 0 24 2015 November
## 3205 Resort Hotel 0 24 2015 November
## 3206 Resort Hotel 0 44 2015 November
## 3207 Resort Hotel 0 15 2015 November
## 3208 Resort Hotel 0 124 2015 November
## 3209 Resort Hotel 0 44 2015 November
## 3210 Resort Hotel 0 78 2015 November
## 3211 Resort Hotel 0 78 2015 November
## 3212 Resort Hotel 0 78 2015 November
## 3213 Resort Hotel 0 24 2015 November
## 3214 Resort Hotel 0 24 2015 November
## 3215 Resort Hotel 0 78 2015 November
## 3216 Resort Hotel 0 78 2015 November
## 3217 Resort Hotel 0 78 2015 November
## 3218 Resort Hotel 0 15 2015 November
## 3219 Resort Hotel 0 78 2015 November
## 3220 Resort Hotel 0 78 2015 November
## 3221 Resort Hotel 0 78 2015 November
## 3222 Resort Hotel 0 33 2015 November
## 3223 Resort Hotel 0 15 2015 November
## 3224 Resort Hotel 0 15 2015 November
## 3225 Resort Hotel 0 24 2015 November
## 3226 Resort Hotel 0 40 2015 November
## 3227 Resort Hotel 0 78 2015 November
## 3228 Resort Hotel 1 78 2015 November
## 3229 Resort Hotel 0 78 2015 November
## 3230 Resort Hotel 1 39 2015 November
## 3231 Resort Hotel 0 24 2015 November
## 3232 Resort Hotel 0 24 2015 November
## 3233 Resort Hotel 0 14 2015 November
## 3234 Resort Hotel 0 0 2015 November
## 3235 Resort Hotel 0 56 2015 November
## 3236 Resort Hotel 0 20 2015 November
## 3237 Resort Hotel 1 20 2015 November
## 3238 Resort Hotel 1 157 2015 November
## 3239 Resort Hotel 1 17 2015 November
## 3240 Resort Hotel 1 13 2015 November
## 3241 Resort Hotel 0 21 2015 November
## 3242 Resort Hotel 0 40 2015 November
## 3243 Resort Hotel 0 12 2015 November
## 3244 Resort Hotel 0 72 2015 November
## 3245 Resort Hotel 0 17 2015 November
## 3246 Resort Hotel 0 57 2015 November
## 3247 Resort Hotel 0 57 2015 November
## 3248 Resort Hotel 0 57 2015 November
## 3249 Resort Hotel 0 57 2015 November
## 3250 Resort Hotel 0 57 2015 November
## 3251 Resort Hotel 0 57 2015 November
## 3252 Resort Hotel 0 17 2015 November
## 3253 Resort Hotel 0 14 2015 November
## 3254 Resort Hotel 0 57 2015 November
## 3255 Resort Hotel 0 174 2015 November
## 3256 Resort Hotel 0 28 2015 November
## 3257 Resort Hotel 0 15 2015 November
## 3258 Resort Hotel 1 32 2015 November
## 3259 Resort Hotel 1 15 2015 November
## 3260 Resort Hotel 0 28 2015 November
## 3261 Resort Hotel 0 22 2015 November
## 3262 Resort Hotel 1 74 2015 November
## 3263 Resort Hotel 1 164 2015 November
## 3264 Resort Hotel 0 36 2015 November
## 3265 Resort Hotel 1 88 2015 November
## 3266 Resort Hotel 1 26 2015 November
## 3267 Resort Hotel 1 82 2015 November
## 3268 Resort Hotel 1 133 2015 November
## 3269 Resort Hotel 0 62 2015 November
## 3270 Resort Hotel 1 93 2015 November
## 3271 Resort Hotel 1 91 2015 November
## 3272 Resort Hotel 0 20 2015 December
## 3273 Resort Hotel 0 118 2015 December
## 3274 Resort Hotel 1 87 2015 December
## 3275 Resort Hotel 0 118 2015 December
## 3276 Resort Hotel 0 82 2015 December
## 3277 Resort Hotel 0 21 2015 December
## 3278 Resort Hotel 0 21 2015 December
## 3279 Resort Hotel 0 21 2015 December
## 3280 Resort Hotel 0 21 2015 December
## 3281 Resort Hotel 0 119 2015 December
## 3282 Resort Hotel 0 31 2015 December
## 3283 Resort Hotel 1 23 2015 December
## 3284 Resort Hotel 1 20 2015 December
## 3285 Resort Hotel 0 45 2015 December
## 3286 Resort Hotel 0 48 2015 December
## 3287 Resort Hotel 0 52 2015 December
## 3288 Resort Hotel 0 108 2015 December
## 3289 Resort Hotel 0 30 2015 December
## 3290 Resort Hotel 1 121 2015 December
## 3291 Resort Hotel 1 58 2015 December
## 3292 Resort Hotel 1 81 2015 December
## 3293 Resort Hotel 1 80 2015 December
## 3294 Resort Hotel 0 23 2015 December
## 3295 Resort Hotel 1 88 2015 December
## 3296 Resort Hotel 1 44 2015 December
## 3297 Resort Hotel 1 74 2015 December
## 3298 Resort Hotel 1 34 2015 December
## 3299 Resort Hotel 0 22 2015 December
## 3300 Resort Hotel 0 22 2015 December
## 3301 Resort Hotel 1 34 2015 December
## 3302 Resort Hotel 0 22 2015 December
## 3303 Resort Hotel 0 130 2015 December
## 3304 Resort Hotel 0 44 2015 December
## 3305 Resort Hotel 0 66 2015 December
## 3306 Resort Hotel 0 66 2015 December
## 3307 Resort Hotel 0 66 2015 December
## 3308 Resort Hotel 1 66 2015 December
## 3309 Resort Hotel 1 66 2015 December
## 3310 Resort Hotel 1 66 2015 December
## 3311 Resort Hotel 1 54 2015 December
## 3312 Resort Hotel 1 66 2015 December
## 3313 Resort Hotel 1 66 2015 December
## 3314 Resort Hotel 1 66 2015 December
## 3315 Resort Hotel 0 66 2015 December
## 3316 Resort Hotel 0 66 2015 December
## 3317 Resort Hotel 0 26 2015 December
## 3318 Resort Hotel 0 66 2015 December
## 3319 Resort Hotel 0 66 2015 December
## 3320 Resort Hotel 0 66 2015 December
## 3321 Resort Hotel 0 66 2015 December
## 3322 Resort Hotel 1 66 2015 December
## 3323 Resort Hotel 0 66 2015 December
## 3324 Resort Hotel 0 66 2015 December
## 3325 Resort Hotel 1 66 2015 December
## 3326 Resort Hotel 1 66 2015 December
## 3327 Resort Hotel 1 66 2015 December
## 3328 Resort Hotel 1 66 2015 December
## 3329 Resort Hotel 1 66 2015 December
## 3330 Resort Hotel 0 66 2015 December
## 3331 Resort Hotel 1 66 2015 December
## 3332 Resort Hotel 0 66 2015 December
## 3333 Resort Hotel 0 66 2015 December
## 3334 Resort Hotel 0 66 2015 December
## 3335 Resort Hotel 0 66 2015 December
## 3336 Resort Hotel 1 66 2015 December
## 3337 Resort Hotel 0 59 2015 December
## 3338 Resort Hotel 0 59 2015 December
## 3339 Resort Hotel 1 23 2015 December
## 3340 Resort Hotel 1 24 2015 December
## 3341 Resort Hotel 1 149 2015 December
## 3342 Resort Hotel 1 149 2015 December
## 3343 Resort Hotel 1 149 2015 December
## 3344 Resort Hotel 1 149 2015 December
## 3345 Resort Hotel 1 44 2015 December
## 3346 Resort Hotel 1 44 2015 December
## 3347 Resort Hotel 1 45 2015 December
## 3348 Resort Hotel 1 45 2015 December
## 3349 Resort Hotel 1 54 2015 December
## 3350 Resort Hotel 0 59 2015 December
## 3351 Resort Hotel 1 60 2015 December
## 3352 Resort Hotel 1 149 2015 December
## 3353 Resort Hotel 1 149 2015 December
## 3354 Resort Hotel 1 149 2015 December
## 3355 Resort Hotel 1 44 2015 December
## 3356 Resort Hotel 1 44 2015 December
## 3357 Resort Hotel 1 44 2015 December
## 3358 Resort Hotel 0 45 2015 December
## 3359 Resort Hotel 1 45 2015 December
## 3360 Resort Hotel 1 45 2015 December
## 3361 Resort Hotel 1 44 2015 December
## 3362 Resort Hotel 1 44 2015 December
## 3363 Resort Hotel 1 44 2015 December
## 3364 Resort Hotel 0 45 2015 December
## 3365 Resort Hotel 0 45 2015 December
## 3366 Resort Hotel 0 45 2015 December
## 3367 Resort Hotel 1 45 2015 December
## 3368 Resort Hotel 1 45 2015 December
## 3369 Resort Hotel 0 54 2015 December
## 3370 Resort Hotel 1 149 2015 December
## 3371 Resort Hotel 1 149 2015 December
## 3372 Resort Hotel 1 149 2015 December
## 3373 Resort Hotel 1 46 2015 December
## 3374 Resort Hotel 1 44 2015 December
## 3375 Resort Hotel 1 44 2015 December
## 3376 Resort Hotel 0 45 2015 December
## 3377 Resort Hotel 0 45 2015 December
## 3378 Resort Hotel 1 149 2015 December
## 3379 Resort Hotel 1 149 2015 December
## 3380 Resort Hotel 1 149 2015 December
## 3381 Resort Hotel 0 113 2015 December
## 3382 Resort Hotel 0 59 2015 December
## 3383 Resort Hotel 0 59 2015 December
## 3384 Resort Hotel 1 149 2015 December
## 3385 Resort Hotel 1 149 2015 December
## 3386 Resort Hotel 1 149 2015 December
## 3387 Resort Hotel 1 149 2015 December
## 3388 Resort Hotel 1 45 2015 December
## 3389 Resort Hotel 1 45 2015 December
## 3390 Resort Hotel 1 45 2015 December
## 3391 Resort Hotel 1 44 2015 December
## 3392 Resort Hotel 1 44 2015 December
## 3393 Resort Hotel 1 44 2015 December
## 3394 Resort Hotel 1 44 2015 December
## 3395 Resort Hotel 1 44 2015 December
## 3396 Resort Hotel 1 58 2015 December
## 3397 Resort Hotel 1 149 2015 December
## 3398 Resort Hotel 1 149 2015 December
## 3399 Resort Hotel 1 149 2015 December
## 3400 Resort Hotel 0 45 2015 December
## 3401 Resort Hotel 0 45 2015 December
## 3402 Resort Hotel 1 45 2015 December
## 3403 Resort Hotel 1 45 2015 December
## 3404 Resort Hotel 1 45 2015 December
## 3405 Resort Hotel 1 44 2015 December
## 3406 Resort Hotel 1 44 2015 December
## 3407 Resort Hotel 1 44 2015 December
## 3408 Resort Hotel 1 44 2015 December
## 3409 Resort Hotel 1 149 2015 December
## 3410 Resort Hotel 1 149 2015 December
## 3411 Resort Hotel 0 33 2015 December
## 3412 Resort Hotel 0 45 2015 December
## 3413 Resort Hotel 0 45 2015 December
## 3414 Resort Hotel 1 45 2015 December
## 3415 Resort Hotel 1 45 2015 December
## 3416 Resort Hotel 1 44 2015 December
## 3417 Resort Hotel 1 44 2015 December
## 3418 Resort Hotel 1 149 2015 December
## 3419 Resort Hotel 1 149 2015 December
## 3420 Resort Hotel 1 149 2015 December
## 3421 Resort Hotel 1 44 2015 December
## 3422 Resort Hotel 1 44 2015 December
## 3423 Resort Hotel 1 44 2015 December
## 3424 Resort Hotel 0 45 2015 December
## 3425 Resort Hotel 0 45 2015 December
## 3426 Resort Hotel 1 45 2015 December
## 3427 Resort Hotel 1 54 2015 December
## 3428 Resort Hotel 0 39 2015 December
## 3429 Resort Hotel 1 81 2015 December
## 3430 Resort Hotel 1 81 2015 December
## 3431 Resort Hotel 1 81 2015 December
## 3432 Resort Hotel 1 68 2015 December
## 3433 Resort Hotel 1 81 2015 December
## 3434 Resort Hotel 1 81 2015 December
## 3435 Resort Hotel 1 81 2015 December
## 3436 Resort Hotel 1 81 2015 December
## 3437 Resort Hotel 1 81 2015 December
## 3438 Resort Hotel 1 81 2015 December
## 3439 Resort Hotel 1 81 2015 December
## 3440 Resort Hotel 1 81 2015 December
## 3441 Resort Hotel 1 81 2015 December
## 3442 Resort Hotel 0 31 2015 December
## 3443 Resort Hotel 0 35 2015 December
## 3444 Resort Hotel 1 49 2015 December
## 3445 Resort Hotel 1 35 2015 December
## 3446 Resort Hotel 1 25 2015 December
## 3447 Resort Hotel 0 183 2015 December
## 3448 Resort Hotel 0 140 2015 December
## 3449 Resort Hotel 0 192 2015 December
## 3450 Resort Hotel 0 29 2015 December
## 3451 Resort Hotel 0 29 2015 December
## 3452 Resort Hotel 0 29 2015 December
## 3453 Resort Hotel 0 66 2015 December
## 3454 Resort Hotel 0 29 2015 December
## 3455 Resort Hotel 0 29 2015 December
## 3456 Resort Hotel 0 126 2015 December
## 3457 Resort Hotel 0 56 2015 December
## 3458 Resort Hotel 0 66 2015 December
## 3459 Resort Hotel 0 194 2015 December
## 3460 Resort Hotel 1 149 2015 December
## 3461 Resort Hotel 0 70 2015 December
## 3462 Resort Hotel 1 33 2015 December
## 3463 Resort Hotel 0 103 2015 December
## 3464 Resort Hotel 0 71 2015 December
## 3465 Resort Hotel 0 50 2015 December
## 3466 Resort Hotel 0 44 2015 December
## 3467 Resort Hotel 0 261 2015 December
## 3468 Resort Hotel 1 125 2015 December
## 3469 Resort Hotel 0 52 2015 December
## 3470 Resort Hotel 0 49 2015 December
## 3471 Resort Hotel 1 58 2015 December
## 3472 Resort Hotel 0 113 2015 December
## 3473 Resort Hotel 0 60 2015 December
## 3474 Resort Hotel 0 45 2015 December
## 3475 Resort Hotel 0 86 2015 December
## 3476 Resort Hotel 1 93 2015 December
## 3477 Resort Hotel 1 93 2015 December
## 3478 Resort Hotel 1 93 2015 December
## 3479 Resort Hotel 1 93 2015 December
## 3480 Resort Hotel 1 93 2015 December
## 3481 Resort Hotel 1 93 2015 December
## 3482 Resort Hotel 1 93 2015 December
## 3483 Resort Hotel 1 93 2015 December
## 3484 Resort Hotel 1 93 2015 December
## 3485 Resort Hotel 1 93 2015 December
## 3486 Resort Hotel 1 93 2015 December
## 3487 Resort Hotel 1 93 2015 December
## 3488 Resort Hotel 1 93 2015 December
## 3489 Resort Hotel 1 93 2015 December
## 3490 Resort Hotel 1 93 2015 December
## 3491 Resort Hotel 1 93 2015 December
## 3492 Resort Hotel 1 93 2015 December
## 3493 Resort Hotel 1 93 2015 December
## 3494 Resort Hotel 1 93 2015 December
## 3495 Resort Hotel 1 93 2015 December
## 3496 Resort Hotel 1 93 2015 December
## 3497 Resort Hotel 1 93 2015 December
## 3498 Resort Hotel 1 93 2015 December
## 3499 Resort Hotel 1 93 2015 December
## 3500 Resort Hotel 1 93 2015 December
## 3501 Resort Hotel 0 39 2015 December
## 3502 Resort Hotel 0 88 2015 December
## 3503 Resort Hotel 1 113 2015 December
## 3504 Resort Hotel 1 118 2015 December
## 3505 Resort Hotel 1 260 2015 December
## 3506 Resort Hotel 1 216 2015 December
## 3507 Resort Hotel 1 169 2015 December
## 3508 Resort Hotel 1 216 2015 December
## 3509 Resort Hotel 1 169 2015 December
## 3510 Resort Hotel 1 260 2015 December
## 3511 Resort Hotel 0 48 2015 December
## 3512 Resort Hotel 1 113 2015 December
## 3513 Resort Hotel 1 113 2015 December
## 3514 Resort Hotel 0 126 2015 December
## 3515 Resort Hotel 0 67 2015 December
## 3516 Resort Hotel 1 209 2015 December
## 3517 Resort Hotel 0 49 2015 December
## 3518 Resort Hotel 1 94 2015 December
## 3519 Resort Hotel 1 94 2015 December
## 3520 Resort Hotel 1 39 2015 December
## 3521 Resort Hotel 1 94 2015 December
## 3522 Resort Hotel 1 39 2015 December
## 3523 Resort Hotel 1 94 2015 December
## 3524 Resort Hotel 1 94 2015 December
## 3525 Resort Hotel 0 119 2015 December
## 3526 Resort Hotel 1 3 2015 December
## 3527 Resort Hotel 1 57 2015 December
## 3528 Resort Hotel 0 54 2015 December
## 3529 Resort Hotel 1 43 2015 December
## 3530 Resort Hotel 0 60 2015 December
## 3531 Resort Hotel 0 131 2015 December
## 3532 Resort Hotel 0 139 2015 December
## 3533 Resort Hotel 0 131 2015 December
## 3534 Resort Hotel 1 131 2015 December
## 3535 Resort Hotel 0 131 2015 December
## 3536 Resort Hotel 0 131 2015 December
## 3537 Resort Hotel 1 131 2015 December
## 3538 Resort Hotel 0 70 2015 December
## 3539 Resort Hotel 0 131 2015 December
## 3540 Resort Hotel 0 131 2015 December
## 3541 Resort Hotel 1 131 2015 December
## 3542 Resort Hotel 1 131 2015 December
## 3543 Resort Hotel 0 131 2015 December
## 3544 Resort Hotel 0 131 2015 December
## 3545 Resort Hotel 1 131 2015 December
## 3546 Resort Hotel 1 131 2015 December
## 3547 Resort Hotel 1 1 2015 December
## 3548 Resort Hotel 0 131 2015 December
## 3549 Resort Hotel 1 131 2015 December
## 3550 Resort Hotel 1 131 2015 December
## 3551 Resort Hotel 1 131 2015 December
## 3552 Resort Hotel 0 131 2015 December
## 3553 Resort Hotel 0 131 2015 December
## 3554 Resort Hotel 0 83 2015 December
## 3555 Resort Hotel 0 119 2015 December
## 3556 Resort Hotel 0 49 2015 December
## 3557 Resort Hotel 0 49 2015 December
## 3558 Resort Hotel 0 48 2015 December
## 3559 Resort Hotel 0 111 2015 December
## 3560 Resort Hotel 0 100 2015 December
## 3561 Resort Hotel 1 70 2015 December
## 3562 Resort Hotel 0 44 2015 December
## 3563 Resort Hotel 0 99 2015 December
## 3564 Resort Hotel 0 44 2015 December
## 3565 Resort Hotel 0 65 2015 December
## 3566 Resort Hotel 0 45 2015 December
## 3567 Resort Hotel 0 44 2015 December
## 3568 Resort Hotel 0 45 2015 December
## 3569 Resort Hotel 0 66 2015 December
## 3570 Resort Hotel 0 59 2015 December
## 3571 Resort Hotel 0 155 2015 December
## 3572 Resort Hotel 0 59 2015 December
## 3573 Resort Hotel 0 155 2015 December
## 3574 Resort Hotel 0 44 2015 December
## 3575 Resort Hotel 1 113 2015 December
## 3576 Resort Hotel 0 86 2015 December
## 3577 Resort Hotel 0 127 2015 December
## 3578 Resort Hotel 0 131 2015 December
## 3579 Resort Hotel 0 119 2015 December
## 3580 Resort Hotel 0 127 2015 December
## 3581 Resort Hotel 0 79 2015 December
## 3582 Resort Hotel 1 113 2015 December
## 3583 Resort Hotel 0 57 2015 December
## 3584 Resort Hotel 1 87 2015 December
## 3585 Resort Hotel 1 110 2015 December
## 3586 Resort Hotel 1 99 2015 December
## 3587 Resort Hotel 0 178 2015 December
## 3588 Resort Hotel 0 51 2015 December
## 3589 Resort Hotel 1 0 2015 December
## 3590 Resort Hotel 1 0 2015 December
## 3591 Resort Hotel 1 0 2015 December
## 3592 Resort Hotel 1 0 2015 December
## 3593 Resort Hotel 1 0 2015 December
## 3594 Resort Hotel 1 0 2015 December
## 3595 Resort Hotel 1 0 2015 December
## 3596 Resort Hotel 1 0 2015 December
## 3597 Resort Hotel 1 0 2015 December
## 3598 Resort Hotel 1 0 2015 December
## 3599 Resort Hotel 1 0 2015 December
## 3600 Resort Hotel 1 0 2015 December
## 3601 Resort Hotel 1 0 2015 December
## 3602 Resort Hotel 1 0 2015 December
## 3603 Resort Hotel 1 0 2015 December
## 3604 Resort Hotel 1 0 2015 December
## 3605 Resort Hotel 1 0 2015 December
## 3606 Resort Hotel 0 55 2015 December
## 3607 Resort Hotel 1 56 2015 December
## 3608 Resort Hotel 1 56 2015 December
## 3609 Resort Hotel 1 56 2015 December
## 3610 Resort Hotel 0 55 2015 December
## 3611 Resort Hotel 0 55 2015 December
## 3612 Resort Hotel 0 45 2015 December
## 3613 Resort Hotel 1 130 2015 December
## 3614 Resort Hotel 0 93 2015 December
## 3615 Resort Hotel 0 112 2015 December
## 3616 Resort Hotel 1 107 2015 December
## 3617 Resort Hotel 0 114 2015 December
## 3618 Resort Hotel 1 238 2015 December
## 3619 Resort Hotel 1 89 2015 December
## 3620 Resort Hotel 1 215 2015 December
## 3621 Resort Hotel 1 59 2015 December
## 3622 Resort Hotel 0 129 2015 December
## 3623 Resort Hotel 0 62 2015 December
## 3624 Resort Hotel 1 31 2015 December
## 3625 Resort Hotel 0 62 2015 December
## 3626 Resort Hotel 1 27 2015 December
## 3627 Resort Hotel 1 83 2015 December
## 3628 Resort Hotel 1 133 2015 December
## 3629 Resort Hotel 1 49 2015 December
## 3630 Resort Hotel 1 3 2015 December
## 3631 Resort Hotel 1 49 2015 December
## 3632 Resort Hotel 1 49 2015 December
## 3633 Resort Hotel 1 126 2015 December
## 3634 Resort Hotel 1 77 2015 December
## 3635 Resort Hotel 0 90 2015 December
## 3636 Resort Hotel 1 105 2015 December
## 3637 Resort Hotel 0 81 2015 December
## 3638 Resort Hotel 0 81 2015 December
## 3639 Resort Hotel 0 118 2015 December
## 3640 Resort Hotel 1 76 2015 December
## 3641 Resort Hotel 0 101 2015 December
## 3642 Resort Hotel 1 66 2015 December
## 3643 Resort Hotel 0 49 2015 December
## 3644 Resort Hotel 0 53 2015 December
## 3645 Resort Hotel 1 75 2015 December
## 3646 Resort Hotel 0 94 2015 December
## 3647 Resort Hotel 1 160 2015 December
## 3648 Resort Hotel 0 76 2015 December
## 3649 Resort Hotel 0 165 2015 December
## 3650 Resort Hotel 0 165 2015 December
## 3651 Resort Hotel 0 165 2015 December
## 3652 Resort Hotel 0 165 2015 December
## 3653 Resort Hotel 0 65 2015 December
## 3654 Resort Hotel 0 165 2015 December
## 3655 Resort Hotel 0 165 2015 December
## 3656 Resort Hotel 0 165 2015 December
## 3657 Resort Hotel 1 165 2015 December
## 3658 Resort Hotel 0 165 2015 December
## 3659 Resort Hotel 0 165 2015 December
## 3660 Resort Hotel 0 165 2015 December
## 3661 Resort Hotel 0 165 2015 December
## 3662 Resort Hotel 0 165 2015 December
## 3663 Resort Hotel 0 165 2015 December
## 3664 Resort Hotel 0 165 2015 December
## 3665 Resort Hotel 0 165 2015 December
## 3666 Resort Hotel 0 165 2015 December
## 3667 Resort Hotel 0 165 2015 December
## 3668 Resort Hotel 1 54 2015 December
## 3669 Resort Hotel 0 165 2015 December
## 3670 Resort Hotel 0 165 2015 December
## 3671 Resort Hotel 0 165 2015 December
## 3672 Resort Hotel 0 165 2015 December
## 3673 Resort Hotel 0 165 2015 December
## 3674 Resort Hotel 0 165 2015 December
## 3675 Resort Hotel 0 165 2015 December
## 3676 Resort Hotel 0 165 2015 December
## 3677 Resort Hotel 0 165 2015 December
## 3678 Resort Hotel 0 165 2015 December
## 3679 Resort Hotel 0 165 2015 December
## 3680 Resort Hotel 0 165 2015 December
## 3681 Resort Hotel 0 165 2015 December
## 3682 Resort Hotel 0 165 2015 December
## 3683 Resort Hotel 0 65 2015 December
## 3684 Resort Hotel 1 9 2015 December
## 3685 Resort Hotel 0 165 2015 December
## 3686 Resort Hotel 1 9 2015 December
## 3687 Resort Hotel 0 53 2015 December
## 3688 Resort Hotel 0 165 2015 December
## 3689 Resort Hotel 0 165 2015 December
## 3690 Resort Hotel 0 165 2015 December
## 3691 Resort Hotel 0 165 2015 December
## 3692 Resort Hotel 0 165 2015 December
## 3693 Resort Hotel 1 165 2015 December
## 3694 Resort Hotel 0 165 2015 December
## 3695 Resort Hotel 0 165 2015 December
## 3696 Resort Hotel 0 165 2015 December
## 3697 Resort Hotel 0 165 2015 December
## 3698 Resort Hotel 0 165 2015 December
## 3699 Resort Hotel 0 165 2015 December
## 3700 Resort Hotel 0 165 2015 December
## 3701 Resort Hotel 0 165 2015 December
## 3702 Resort Hotel 0 165 2015 December
## 3703 Resort Hotel 0 165 2015 December
## 3704 Resort Hotel 0 165 2015 December
## 3705 Resort Hotel 0 165 2015 December
## 3706 Resort Hotel 0 165 2015 December
## 3707 Resort Hotel 0 165 2015 December
## 3708 Resort Hotel 1 55 2015 December
## 3709 Resort Hotel 0 165 2015 December
## 3710 Resort Hotel 1 41 2015 December
## 3711 Resort Hotel 1 85 2015 December
## 3712 Resort Hotel 1 43 2015 December
## 3713 Resort Hotel 0 52 2015 December
## 3714 Resort Hotel 1 66 2015 December
## 3715 Resort Hotel 0 86 2015 December
## 3716 Resort Hotel 1 114 2015 December
## 3717 Resort Hotel 0 90 2015 December
## 3718 Resort Hotel 0 161 2015 December
## 3719 Resort Hotel 1 161 2015 December
## 3720 Resort Hotel 0 86 2015 December
## 3721 Resort Hotel 0 69 2015 December
## 3722 Resort Hotel 1 62 2015 December
## 3723 Resort Hotel 0 141 2015 December
## 3724 Resort Hotel 0 72 2015 December
## 3725 Resort Hotel 1 101 2015 December
## 3726 Resort Hotel 1 66 2015 December
## 3727 Resort Hotel 1 69 2015 December
## 3728 Resort Hotel 1 55 2015 December
## 3729 Resort Hotel 1 45 2015 December
## 3730 Resort Hotel 0 69 2015 December
## 3731 Resort Hotel 1 49 2015 December
## 3732 Resort Hotel 0 79 2015 December
## 3733 Resort Hotel 0 69 2015 December
## 3734 Resort Hotel 0 70 2015 December
## 3735 Resort Hotel 0 92 2015 December
## 3736 Resort Hotel 0 92 2015 December
## 3737 Resort Hotel 0 92 2015 December
## 3738 Resort Hotel 1 92 2015 December
## 3739 Resort Hotel 0 109 2016 January
## 3740 Resort Hotel 0 109 2016 January
## 3741 Resort Hotel 1 2 2016 January
## 3742 Resort Hotel 0 88 2016 January
## 3743 Resort Hotel 1 20 2016 January
## 3744 Resort Hotel 1 76 2016 January
## 3745 Resort Hotel 0 88 2016 January
## 3746 Resort Hotel 1 113 2016 January
## 3747 Resort Hotel 1 113 2016 January
## 3748 Resort Hotel 1 113 2016 January
## 3749 Resort Hotel 1 113 2016 January
## 3750 Resort Hotel 1 113 2016 January
## 3751 Resort Hotel 1 113 2016 January
## 3752 Resort Hotel 1 113 2016 January
## 3753 Resort Hotel 1 113 2016 January
## 3754 Resort Hotel 1 113 2016 January
## 3755 Resort Hotel 1 113 2016 January
## 3756 Resort Hotel 1 113 2016 January
## 3757 Resort Hotel 1 113 2016 January
## 3758 Resort Hotel 1 113 2016 January
## 3759 Resort Hotel 1 113 2016 January
## 3760 Resort Hotel 1 113 2016 January
## 3761 Resort Hotel 1 113 2016 January
## 3762 Resort Hotel 1 113 2016 January
## 3763 Resort Hotel 1 113 2016 January
## 3764 Resort Hotel 1 113 2016 January
## 3765 Resort Hotel 1 113 2016 January
## 3766 Resort Hotel 1 113 2016 January
## 3767 Resort Hotel 1 113 2016 January
## 3768 Resort Hotel 1 113 2016 January
## 3769 Resort Hotel 1 113 2016 January
## 3770 Resort Hotel 1 113 2016 January
## 3771 Resort Hotel 0 110 2016 January
## 3772 Resort Hotel 1 103 2016 January
## 3773 Resort Hotel 1 22 2016 January
## 3774 Resort Hotel 1 0 2016 January
## 3775 Resort Hotel 1 3 2016 January
## 3776 Resort Hotel 1 5 2016 January
## 3777 Resort Hotel 1 5 2016 January
## 3778 Resort Hotel 1 5 2016 January
## 3779 Resort Hotel 1 5 2016 January
## 3780 Resort Hotel 1 5 2016 January
## 3781 Resort Hotel 1 20 2016 January
## 3782 Resort Hotel 1 62 2016 January
## 3783 Resort Hotel 1 189 2016 January
## 3784 Resort Hotel 1 132 2016 January
## 3785 Resort Hotel 1 13 2016 January
## 3786 Resort Hotel 0 86 2016 January
## 3787 Resort Hotel 0 187 2016 January
## 3788 Resort Hotel 0 85 2016 January
## 3789 Resort Hotel 1 93 2016 January
## 3790 Resort Hotel 1 93 2016 January
## 3791 Resort Hotel 1 0 2016 January
## 3792 Resort Hotel 1 143 2016 January
## 3793 Resort Hotel 1 223 2016 January
## 3794 Resort Hotel 1 117 2016 January
## 3795 Resort Hotel 1 13 2016 January
## 3796 Resort Hotel 1 24 2016 January
## 3797 Resort Hotel 1 2 2016 January
## 3798 Resort Hotel 0 59 2016 January
## 3799 Resort Hotel 1 6 2016 January
## 3800 Resort Hotel 1 11 2016 January
## 3801 Resort Hotel 1 19 2016 January
## 3802 Resort Hotel 1 19 2016 January
## 3803 Resort Hotel 0 74 2016 January
## 3804 Resort Hotel 0 169 2016 January
## 3805 Resort Hotel 1 200 2016 January
## 3806 Resort Hotel 1 1 2016 January
## 3807 Resort Hotel 1 28 2016 January
## 3808 Resort Hotel 1 1 2016 January
## 3809 Resort Hotel 1 28 2016 January
## 3810 Resort Hotel 1 110 2016 January
## 3811 Resort Hotel 1 15 2016 January
## 3812 Resort Hotel 1 103 2016 January
## 3813 Resort Hotel 0 87 2016 January
## 3814 Resort Hotel 1 177 2016 January
## 3815 Resort Hotel 1 6 2016 January
## 3816 Resort Hotel 1 8 2016 January
## 3817 Resort Hotel 1 99 2016 January
## 3818 Resort Hotel 1 99 2016 January
## 3819 Resort Hotel 0 172 2016 January
## 3820 Resort Hotel 1 284 2016 January
## 3821 Resort Hotel 1 122 2016 January
## 3822 Resort Hotel 0 0 2016 January
## 3823 Resort Hotel 1 15 2016 January
## 3824 Resort Hotel 1 15 2016 January
## 3825 Resort Hotel 1 15 2016 January
## 3826 Resort Hotel 0 23 2016 January
## 3827 Resort Hotel 1 0 2016 January
## 3828 Resort Hotel 1 34 2016 January
## 3829 Resort Hotel 1 1 2016 January
## 3830 Resort Hotel 1 7 2016 January
## 3831 Resort Hotel 1 172 2016 January
## 3832 Resort Hotel 1 172 2016 January
## 3833 Resort Hotel 1 12 2016 January
## 3834 Resort Hotel 1 31 2016 January
## 3835 Resort Hotel 1 3 2016 January
## 3836 Resort Hotel 1 3 2016 January
## 3837 Resort Hotel 1 34 2016 January
## 3838 Resort Hotel 1 26 2016 January
## 3839 Resort Hotel 1 3 2016 January
## 3840 Resort Hotel 0 101 2016 January
## 3841 Resort Hotel 1 3 2016 January
## 3842 Resort Hotel 1 3 2016 January
## 3843 Resort Hotel 1 13 2016 January
## 3844 Resort Hotel 1 11 2016 January
## 3845 Resort Hotel 1 1 2016 January
## 3846 Resort Hotel 1 173 2016 January
## 3847 Resort Hotel 1 14 2016 January
## 3848 Resort Hotel 0 160 2016 January
## 3849 Resort Hotel 0 154 2016 January
## 3850 Resort Hotel 1 4 2016 January
## 3851 Resort Hotel 0 214 2016 January
## 3852 Resort Hotel 0 154 2016 January
## 3853 Resort Hotel 1 5 2016 January
## 3854 Resort Hotel 1 16 2016 January
## 3855 Resort Hotel 1 2 2016 January
## 3856 Resort Hotel 1 80 2016 January
## 3857 Resort Hotel 1 33 2016 January
## 3858 Resort Hotel 1 33 2016 January
## 3859 Resort Hotel 1 185 2016 January
## 3860 Resort Hotel 0 1 2016 January
## 3861 Resort Hotel 1 48 2016 January
## 3862 Resort Hotel 1 157 2016 January
## 3863 Resort Hotel 1 15 2016 January
## 3864 Resort Hotel 1 22 2016 January
## 3865 Resort Hotel 1 3 2016 February
## 3866 Resort Hotel 1 3 2016 February
## 3867 Resort Hotel 0 0 2016 February
## 3868 Resort Hotel 1 13 2016 February
## 3869 Resort Hotel 1 11 2016 February
## 3870 Resort Hotel 1 28 2016 February
## 3871 Resort Hotel 0 101 2016 February
## 3872 Resort Hotel 1 202 2016 February
## 3873 Resort Hotel 1 133 2016 February
## 3874 Resort Hotel 1 4 2016 February
## 3875 Resort Hotel 0 116 2016 February
## 3876 Resort Hotel 1 100 2016 February
## 3877 Resort Hotel 0 97 2016 February
## 3878 Resort Hotel 1 39 2016 February
## 3879 Resort Hotel 1 46 2016 February
## 3880 Resort Hotel 1 46 2016 February
## 3881 Resort Hotel 1 20 2016 February
## 3882 Resort Hotel 1 142 2016 February
## 3883 Resort Hotel 1 17 2016 February
## 3884 Resort Hotel 1 26 2016 February
## 3885 Resort Hotel 1 83 2016 February
## 3886 Resort Hotel 1 99 2016 February
## 3887 Resort Hotel 1 13 2016 February
## 3888 Resort Hotel 1 2 2016 February
## 3889 Resort Hotel 1 18 2016 February
## 3890 Resort Hotel 0 88 2016 February
## 3891 Resort Hotel 0 88 2016 February
## 3892 Resort Hotel 1 18 2016 February
## 3893 Resort Hotel 1 18 2016 February
## 3894 Resort Hotel 0 211 2016 February
## 3895 Resort Hotel 1 29 2016 February
## 3896 Resort Hotel 1 72 2016 February
## 3897 Resort Hotel 1 72 2016 February
## 3898 Resort Hotel 1 72 2016 February
## 3899 Resort Hotel 1 72 2016 February
## 3900 Resort Hotel 1 72 2016 February
## 3901 Resort Hotel 1 72 2016 February
## 3902 Resort Hotel 1 12 2016 February
## 3903 Resort Hotel 1 72 2016 February
## 3904 Resort Hotel 1 72 2016 February
## 3905 Resort Hotel 1 72 2016 February
## 3906 Resort Hotel 1 72 2016 February
## 3907 Resort Hotel 1 22 2016 February
## 3908 Resort Hotel 1 72 2016 February
## 3909 Resort Hotel 1 72 2016 February
## 3910 Resort Hotel 1 72 2016 February
## 3911 Resort Hotel 1 72 2016 February
## 3912 Resort Hotel 1 72 2016 February
## 3913 Resort Hotel 1 72 2016 February
## 3914 Resort Hotel 1 72 2016 February
## 3915 Resort Hotel 1 72 2016 February
## 3916 Resort Hotel 1 72 2016 February
## 3917 Resort Hotel 1 72 2016 February
## 3918 Resort Hotel 1 72 2016 February
## 3919 Resort Hotel 1 72 2016 February
## 3920 Resort Hotel 1 72 2016 February
## 3921 Resort Hotel 1 155 2016 February
## 3922 Resort Hotel 0 94 2016 February
## 3923 Resort Hotel 0 94 2016 February
## 3924 Resort Hotel 1 81 2016 February
## 3925 Resort Hotel 0 168 2016 February
## 3926 Resort Hotel 1 120 2016 February
## 3927 Resort Hotel 1 8 2016 February
## 3928 Resort Hotel 1 4 2016 February
## 3929 Resort Hotel 1 111 2016 February
## 3930 Resort Hotel 0 143 2016 February
## 3931 Resort Hotel 0 143 2016 February
## 3932 Resort Hotel 1 102 2016 February
## 3933 Resort Hotel 1 102 2016 February
## 3934 Resort Hotel 1 102 2016 February
## 3935 Resort Hotel 1 102 2016 February
## 3936 Resort Hotel 1 102 2016 February
## 3937 Resort Hotel 1 102 2016 February
## 3938 Resort Hotel 1 5 2016 February
## 3939 Resort Hotel 0 117 2016 February
## 3940 Resort Hotel 0 152 2016 February
## 3941 Resort Hotel 1 32 2016 February
## 3942 Resort Hotel 0 103 2016 February
## 3943 Resort Hotel 1 103 2016 February
## 3944 Resort Hotel 0 103 2016 February
## 3945 Resort Hotel 0 103 2016 February
## 3946 Resort Hotel 1 103 2016 February
## 3947 Resort Hotel 1 103 2016 February
## 3948 Resort Hotel 1 103 2016 February
## 3949 Resort Hotel 1 103 2016 February
## 3950 Resort Hotel 1 103 2016 February
## 3951 Resort Hotel 1 103 2016 February
## 3952 Resort Hotel 0 103 2016 February
## 3953 Resort Hotel 0 103 2016 February
## 3954 Resort Hotel 0 103 2016 February
## 3955 Resort Hotel 0 103 2016 February
## 3956 Resort Hotel 0 103 2016 February
## 3957 Resort Hotel 1 103 2016 February
## 3958 Resort Hotel 1 103 2016 February
## 3959 Resort Hotel 0 103 2016 February
## 3960 Resort Hotel 0 103 2016 February
## 3961 Resort Hotel 1 312 2016 February
## 3962 Resort Hotel 0 2 2016 February
## 3963 Resort Hotel 0 103 2016 February
## 3964 Resort Hotel 0 103 2016 February
## 3965 Resort Hotel 1 39 2016 February
## 3966 Resort Hotel 1 39 2016 February
## 3967 Resort Hotel 0 103 2016 February
## 3968 Resort Hotel 1 7 2016 February
## 3969 Resort Hotel 1 64 2016 February
## 3970 Resort Hotel 1 64 2016 February
## 3971 Resort Hotel 1 64 2016 February
## 3972 Resort Hotel 1 64 2016 February
## 3973 Resort Hotel 1 64 2016 February
## 3974 Resort Hotel 1 64 2016 February
## 3975 Resort Hotel 1 64 2016 February
## 3976 Resort Hotel 1 27 2016 February
## 3977 Resort Hotel 1 64 2016 February
## 3978 Resort Hotel 1 64 2016 February
## 3979 Resort Hotel 1 64 2016 February
## 3980 Resort Hotel 1 64 2016 February
## 3981 Resort Hotel 1 64 2016 February
## 3982 Resort Hotel 1 64 2016 February
## 3983 Resort Hotel 1 64 2016 February
## 3984 Resort Hotel 0 230 2016 February
## 3985 Resort Hotel 1 0 2016 February
## 3986 Resort Hotel 1 64 2016 February
## 3987 Resort Hotel 1 64 2016 February
## 3988 Resort Hotel 1 2 2016 February
## 3989 Resort Hotel 1 88 2016 February
## 3990 Resort Hotel 1 111 2016 February
## 3991 Resort Hotel 1 111 2016 February
## 3992 Resort Hotel 1 111 2016 February
## 3993 Resort Hotel 0 112 2016 February
## 3994 Resort Hotel 0 112 2016 February
## 3995 Resort Hotel 0 112 2016 February
## 3996 Resort Hotel 1 112 2016 February
## 3997 Resort Hotel 1 112 2016 February
## 3998 Resort Hotel 1 112 2016 February
## 3999 Resort Hotel 1 140 2016 February
## 4000 Resort Hotel 1 140 2016 February
## 4001 Resort Hotel 1 140 2016 February
## 4002 Resort Hotel 1 111 2016 February
## 4003 Resort Hotel 1 111 2016 February
## 4004 Resort Hotel 1 111 2016 February
## 4005 Resort Hotel 0 112 2016 February
## 4006 Resort Hotel 0 112 2016 February
## 4007 Resort Hotel 0 112 2016 February
## 4008 Resort Hotel 1 112 2016 February
## 4009 Resort Hotel 1 112 2016 February
## 4010 Resort Hotel 1 112 2016 February
## 4011 Resort Hotel 1 112 2016 February
## 4012 Resort Hotel 1 35 2016 February
## 4013 Resort Hotel 1 140 2016 February
## 4014 Resort Hotel 1 140 2016 February
## 4015 Resort Hotel 1 140 2016 February
## 4016 Resort Hotel 1 111 2016 February
## 4017 Resort Hotel 1 111 2016 February
## 4018 Resort Hotel 1 111 2016 February
## 4019 Resort Hotel 1 111 2016 February
## 4020 Resort Hotel 0 112 2016 February
## 4021 Resort Hotel 0 112 2016 February
## 4022 Resort Hotel 0 112 2016 February
## 4023 Resort Hotel 1 112 2016 February
## 4024 Resort Hotel 1 112 2016 February
## 4025 Resort Hotel 1 112 2016 February
## 4026 Resort Hotel 1 112 2016 February
## 4027 Resort Hotel 1 112 2016 February
## 4028 Resort Hotel 1 140 2016 February
## 4029 Resort Hotel 1 140 2016 February
## 4030 Resort Hotel 1 140 2016 February
## 4031 Resort Hotel 1 140 2016 February
## 4032 Resort Hotel 1 140 2016 February
## 4033 Resort Hotel 0 112 2016 February
## 4034 Resort Hotel 0 112 2016 February
## 4035 Resort Hotel 0 112 2016 February
## 4036 Resort Hotel 1 112 2016 February
## 4037 Resort Hotel 1 112 2016 February
## 4038 Resort Hotel 1 112 2016 February
## 4039 Resort Hotel 1 112 2016 February
## 4040 Resort Hotel 1 111 2016 February
## 4041 Resort Hotel 1 111 2016 February
## 4042 Resort Hotel 1 111 2016 February
## 4043 Resort Hotel 1 88 2016 February
## 4044 Resort Hotel 1 140 2016 February
## 4045 Resort Hotel 1 140 2016 February
## 4046 Resort Hotel 1 140 2016 February
## 4047 Resort Hotel 1 140 2016 February
## 4048 Resort Hotel 1 140 2016 February
## 4049 Resort Hotel 1 111 2016 February
## 4050 Resort Hotel 1 111 2016 February
## 4051 Resort Hotel 1 111 2016 February
## 4052 Resort Hotel 0 112 2016 February
## 4053 Resort Hotel 0 112 2016 February
## 4054 Resort Hotel 1 112 2016 February
## 4055 Resort Hotel 1 112 2016 February
## 4056 Resort Hotel 1 112 2016 February
## 4057 Resort Hotel 1 112 2016 February
## 4058 Resort Hotel 1 112 2016 February
## 4059 Resort Hotel 1 151 2016 February
## 4060 Resort Hotel 1 140 2016 February
## 4061 Resort Hotel 1 140 2016 February
## 4062 Resort Hotel 1 140 2016 February
## 4063 Resort Hotel 1 140 2016 February
## 4064 Resort Hotel 1 140 2016 February
## 4065 Resort Hotel 1 88 2016 February
## 4066 Resort Hotel 1 111 2016 February
## 4067 Resort Hotel 1 111 2016 February
## 4068 Resort Hotel 1 111 2016 February
## 4069 Resort Hotel 0 112 2016 February
## 4070 Resort Hotel 0 112 2016 February
## 4071 Resort Hotel 0 112 2016 February
## 4072 Resort Hotel 1 112 2016 February
## 4073 Resort Hotel 1 112 2016 February
## 4074 Resort Hotel 1 112 2016 February
## 4075 Resort Hotel 1 140 2016 February
## 4076 Resort Hotel 1 140 2016 February
## 4077 Resort Hotel 1 25 2016 February
## 4078 Resort Hotel 1 111 2016 February
## 4079 Resort Hotel 1 111 2016 February
## 4080 Resort Hotel 1 111 2016 February
## 4081 Resort Hotel 0 112 2016 February
## 4082 Resort Hotel 0 112 2016 February
## 4083 Resort Hotel 1 112 2016 February
## 4084 Resort Hotel 1 112 2016 February
## 4085 Resort Hotel 1 112 2016 February
## 4086 Resort Hotel 1 140 2016 February
## 4087 Resort Hotel 1 140 2016 February
## 4088 Resort Hotel 1 140 2016 February
## 4089 Resort Hotel 1 88 2016 February
## 4090 Resort Hotel 1 111 2016 February
## 4091 Resort Hotel 1 111 2016 February
## 4092 Resort Hotel 1 111 2016 February
## 4093 Resort Hotel 0 112 2016 February
## 4094 Resort Hotel 0 112 2016 February
## 4095 Resort Hotel 0 112 2016 February
## 4096 Resort Hotel 0 112 2016 February
## 4097 Resort Hotel 1 112 2016 February
## 4098 Resort Hotel 1 112 2016 February
## 4099 Resort Hotel 1 112 2016 February
## 4100 Resort Hotel 1 112 2016 February
## 4101 Resort Hotel 1 140 2016 February
## 4102 Resort Hotel 1 140 2016 February
## 4103 Resort Hotel 1 140 2016 February
## 4104 Resort Hotel 1 140 2016 February
## 4105 Resort Hotel 1 7 2016 February
## 4106 Resort Hotel 1 47 2016 February
## 4107 Resort Hotel 0 230 2016 February
## 4108 Resort Hotel 1 32 2016 February
## 4109 Resort Hotel 1 1 2016 February
## 4110 Resort Hotel 1 0 2016 February
## 4111 Resort Hotel 1 38 2016 February
## 4112 Resort Hotel 1 25 2016 February
## 4113 Resort Hotel 1 14 2016 February
## 4114 Resort Hotel 0 203 2016 February
## 4115 Resort Hotel 0 101 2016 February
## 4116 Resort Hotel 1 161 2016 February
## 4117 Resort Hotel 1 20 2016 February
## 4118 Resort Hotel 0 103 2016 February
## 4119 Resort Hotel 1 3 2016 February
## 4120 Resort Hotel 1 4 2016 February
## 4121 Resort Hotel 1 18 2016 February
## 4122 Resort Hotel 1 41 2016 February
## 4123 Resort Hotel 1 46 2016 February
## 4124 Resort Hotel 1 41 2016 February
## 4125 Resort Hotel 1 72 2016 February
## 4126 Resort Hotel 1 109 2016 February
## 4127 Resort Hotel 0 117 2016 February
## 4128 Resort Hotel 1 0 2016 February
## 4129 Resort Hotel 1 200 2016 February
## 4130 Resort Hotel 0 133 2016 February
## 4131 Resort Hotel 0 133 2016 February
## 4132 Resort Hotel 1 41 2016 February
## 4133 Resort Hotel 1 192 2016 February
## 4134 Resort Hotel 0 192 2016 February
## 4135 Resort Hotel 0 188 2016 February
## 4136 Resort Hotel 1 38 2016 February
## 4137 Resort Hotel 1 118 2016 February
## 4138 Resort Hotel 0 232 2016 February
## 4139 Resort Hotel 0 99 2016 February
## 4140 Resort Hotel 0 131 2016 February
## 4141 Resort Hotel 1 53 2016 February
## 4142 Resort Hotel 1 72 2016 February
## 4143 Resort Hotel 1 44 2016 February
## 4144 Resort Hotel 1 33 2016 February
## 4145 Resort Hotel 1 14 2016 February
## 4146 Resort Hotel 1 69 2016 February
## 4147 Resort Hotel 1 21 2016 February
## 4148 Resort Hotel 1 35 2016 February
## 4149 Resort Hotel 1 2 2016 February
## 4150 Resort Hotel 1 34 2016 February
## 4151 Resort Hotel 0 150 2016 February
## 4152 Resort Hotel 0 172 2016 February
## 4153 Resort Hotel 0 150 2016 February
## 4154 Resort Hotel 1 10 2016 February
## 4155 Resort Hotel 1 29 2016 February
## 4156 Resort Hotel 1 1 2016 February
## 4157 Resort Hotel 1 5 2016 February
## 4158 Resort Hotel 1 26 2016 February
## 4159 Resort Hotel 1 100 2016 February
## 4160 Resort Hotel 0 100 2016 February
## 4161 Resort Hotel 1 55 2016 February
## 4162 Resort Hotel 0 108 2016 February
## 4163 Resort Hotel 0 108 2016 February
## 4164 Resort Hotel 1 31 2016 February
## 4165 Resort Hotel 1 38 2016 February
## 4166 Resort Hotel 1 11 2016 February
## 4167 Resort Hotel 1 85 2016 February
## 4168 Resort Hotel 1 3 2016 February
## 4169 Resort Hotel 1 24 2016 February
## 4170 Resort Hotel 1 24 2016 February
## 4171 Resort Hotel 0 187 2016 February
## 4172 Resort Hotel 0 117 2016 February
## 4173 Resort Hotel 0 117 2016 February
## 4174 Resort Hotel 1 78 2016 February
## 4175 Resort Hotel 1 45 2016 February
## 4176 Resort Hotel 1 8 2016 February
## 4177 Resort Hotel 1 9 2016 February
## 4178 Resort Hotel 1 26 2016 February
## 4179 Resort Hotel 1 1 2016 February
## 4180 Resort Hotel 1 1 2016 February
## 4181 Resort Hotel 1 16 2016 February
## 4182 Resort Hotel 1 44 2016 February
## 4183 Resort Hotel 0 709 2016 February
## 4184 Resort Hotel 1 73 2016 February
## 4185 Resort Hotel 1 73 2016 February
## 4186 Resort Hotel 1 24 2016 February
## 4187 Resort Hotel 1 36 2016 February
## 4188 Resort Hotel 1 50 2016 February
## 4189 Resort Hotel 1 74 2016 February
## 4190 Resort Hotel 1 74 2016 February
## 4191 Resort Hotel 1 30 2016 February
## 4192 Resort Hotel 1 45 2016 February
## 4193 Resort Hotel 1 74 2016 February
## 4194 Resort Hotel 1 74 2016 February
## 4195 Resort Hotel 1 74 2016 February
## 4196 Resort Hotel 1 74 2016 February
## 4197 Resort Hotel 1 74 2016 February
## 4198 Resort Hotel 1 74 2016 February
## 4199 Resort Hotel 1 74 2016 February
## 4200 Resort Hotel 1 74 2016 February
## 4201 Resort Hotel 1 74 2016 February
## 4202 Resort Hotel 1 74 2016 February
## 4203 Resort Hotel 1 81 2016 February
## 4204 Resort Hotel 1 74 2016 February
## 4205 Resort Hotel 1 74 2016 February
## 4206 Resort Hotel 1 74 2016 February
## 4207 Resort Hotel 1 74 2016 February
## 4208 Resort Hotel 1 74 2016 February
## 4209 Resort Hotel 1 74 2016 February
## 4210 Resort Hotel 1 74 2016 February
## 4211 Resort Hotel 1 74 2016 February
## 4212 Resort Hotel 1 74 2016 February
## 4213 Resort Hotel 1 74 2016 February
## 4214 Resort Hotel 1 74 2016 February
## 4215 Resort Hotel 1 36 2016 February
## 4216 Resort Hotel 1 74 2016 February
## 4217 Resort Hotel 1 74 2016 February
## 4218 Resort Hotel 1 74 2016 February
## 4219 Resort Hotel 1 74 2016 February
## 4220 Resort Hotel 1 74 2016 February
## 4221 Resort Hotel 1 74 2016 February
## 4222 Resort Hotel 0 211 2016 February
## 4223 Resort Hotel 1 53 2016 February
## 4224 Resort Hotel 1 135 2016 February
## 4225 Resort Hotel 1 53 2016 February
## 4226 Resort Hotel 1 69 2016 February
## 4227 Resort Hotel 1 12 2016 February
## 4228 Resort Hotel 1 0 2016 February
## 4229 Resort Hotel 0 123 2016 February
## 4230 Resort Hotel 0 123 2016 February
## 4231 Resort Hotel 0 123 2016 February
## 4232 Resort Hotel 1 74 2016 February
## 4233 Resort Hotel 1 44 2016 February
## 4234 Resort Hotel 0 123 2016 February
## 4235 Resort Hotel 0 123 2016 February
## 4236 Resort Hotel 0 123 2016 February
## 4237 Resort Hotel 0 123 2016 February
## 4238 Resort Hotel 1 123 2016 February
## 4239 Resort Hotel 0 123 2016 February
## 4240 Resort Hotel 0 123 2016 February
## 4241 Resort Hotel 0 123 2016 February
## 4242 Resort Hotel 0 123 2016 February
## 4243 Resort Hotel 1 123 2016 February
## 4244 Resort Hotel 0 123 2016 February
## 4245 Resort Hotel 0 123 2016 February
## 4246 Resort Hotel 0 123 2016 February
## 4247 Resort Hotel 1 42 2016 February
## 4248 Resort Hotel 1 46 2016 February
## 4249 Resort Hotel 1 74 2016 February
## 4250 Resort Hotel 1 44 2016 February
## 4251 Resort Hotel 0 123 2016 February
## 4252 Resort Hotel 0 123 2016 February
## 4253 Resort Hotel 0 123 2016 February
## 4254 Resort Hotel 1 123 2016 February
## 4255 Resort Hotel 1 44 2016 February
## 4256 Resort Hotel 0 123 2016 February
## 4257 Resort Hotel 0 123 2016 February
## 4258 Resort Hotel 1 74 2016 February
## 4259 Resort Hotel 1 82 2016 February
## 4260 Resort Hotel 0 123 2016 February
## 4261 Resort Hotel 0 123 2016 February
## 4262 Resort Hotel 0 123 2016 February
## 4263 Resort Hotel 1 5 2016 February
## 4264 Resort Hotel 1 42 2016 February
## 4265 Resort Hotel 1 120 2016 February
## 4266 Resort Hotel 1 119 2016 February
## 4267 Resort Hotel 1 44 2016 February
## 4268 Resort Hotel 1 40 2016 February
## 4269 Resort Hotel 1 41 2016 February
## 4270 Resort Hotel 1 59 2016 February
## 4271 Resort Hotel 1 32 2016 February
## 4272 Resort Hotel 1 19 2016 February
## 4273 Resort Hotel 1 28 2016 February
## 4274 Resort Hotel 1 138 2016 February
## 4275 Resort Hotel 1 40 2016 February
## 4276 Resort Hotel 1 15 2016 March
## 4277 Resort Hotel 1 144 2016 March
## 4278 Resort Hotel 1 45 2016 March
## 4279 Resort Hotel 1 45 2016 March
## 4280 Resort Hotel 1 45 2016 March
## 4281 Resort Hotel 1 45 2016 March
## 4282 Resort Hotel 1 45 2016 March
## 4283 Resort Hotel 1 45 2016 March
## 4284 Resort Hotel 1 45 2016 March
## 4285 Resort Hotel 1 33 2016 March
## 4286 Resort Hotel 1 57 2016 March
## 4287 Resort Hotel 1 33 2016 March
## 4288 Resort Hotel 1 61 2016 March
## 4289 Resort Hotel 1 0 2016 March
## 4290 Resort Hotel 1 219 2016 March
## 4291 Resort Hotel 1 219 2016 March
## 4292 Resort Hotel 1 219 2016 March
## 4293 Resort Hotel 1 118 2016 March
## 4294 Resort Hotel 1 219 2016 March
## 4295 Resort Hotel 1 219 2016 March
## 4296 Resort Hotel 1 219 2016 March
## 4297 Resort Hotel 1 219 2016 March
## 4298 Resort Hotel 1 219 2016 March
## 4299 Resort Hotel 1 219 2016 March
## 4300 Resort Hotel 1 219 2016 March
## 4301 Resort Hotel 1 219 2016 March
## 4302 Resort Hotel 1 219 2016 March
## 4303 Resort Hotel 1 219 2016 March
## 4304 Resort Hotel 1 219 2016 March
## 4305 Resort Hotel 1 219 2016 March
## 4306 Resort Hotel 1 219 2016 March
## 4307 Resort Hotel 1 219 2016 March
## 4308 Resort Hotel 1 219 2016 March
## 4309 Resort Hotel 1 219 2016 March
## 4310 Resort Hotel 1 219 2016 March
## 4311 Resort Hotel 0 131 2016 March
## 4312 Resort Hotel 0 0 2016 March
## 4313 Resort Hotel 1 7 2016 March
## 4314 Resort Hotel 1 7 2016 March
## 4315 Resort Hotel 1 2 2016 March
## 4316 Resort Hotel 1 30 2016 March
## 4317 Resort Hotel 1 0 2016 March
## 4318 Resort Hotel 1 0 2016 March
## 4319 Resort Hotel 1 52 2016 March
## 4320 Resort Hotel 1 30 2016 March
## 4321 Resort Hotel 1 0 2016 March
## 4322 Resort Hotel 1 29 2016 March
## 4323 Resort Hotel 1 58 2016 March
## 4324 Resort Hotel 1 162 2016 March
## 4325 Resort Hotel 1 162 2016 March
## 4326 Resort Hotel 1 162 2016 March
## 4327 Resort Hotel 1 162 2016 March
## 4328 Resort Hotel 1 162 2016 March
## 4329 Resort Hotel 1 162 2016 March
## 4330 Resort Hotel 1 162 2016 March
## 4331 Resort Hotel 1 162 2016 March
## 4332 Resort Hotel 1 162 2016 March
## 4333 Resort Hotel 1 162 2016 March
## 4334 Resort Hotel 1 162 2016 March
## 4335 Resort Hotel 1 162 2016 March
## 4336 Resort Hotel 1 162 2016 March
## 4337 Resort Hotel 1 162 2016 March
## 4338 Resort Hotel 1 162 2016 March
## 4339 Resort Hotel 1 50 2016 March
## 4340 Resort Hotel 1 49 2016 March
## 4341 Resort Hotel 1 49 2016 March
## 4342 Resort Hotel 1 49 2016 March
## 4343 Resort Hotel 1 49 2016 March
## 4344 Resort Hotel 1 49 2016 March
## 4345 Resort Hotel 1 38 2016 March
## 4346 Resort Hotel 1 49 2016 March
## 4347 Resort Hotel 1 49 2016 March
## 4348 Resort Hotel 1 49 2016 March
## 4349 Resort Hotel 1 49 2016 March
## 4350 Resort Hotel 1 38 2016 March
## 4351 Resort Hotel 1 49 2016 March
## 4352 Resort Hotel 1 49 2016 March
## 4353 Resort Hotel 1 19 2016 March
## 4354 Resort Hotel 1 11 2016 March
## 4355 Resort Hotel 1 3 2016 March
## 4356 Resort Hotel 1 196 2016 March
## 4357 Resort Hotel 1 196 2016 March
## 4358 Resort Hotel 1 30 2016 March
## 4359 Resort Hotel 1 30 2016 March
## 4360 Resort Hotel 1 30 2016 March
## 4361 Resort Hotel 1 30 2016 March
## 4362 Resort Hotel 1 30 2016 March
## 4363 Resort Hotel 1 30 2016 March
## 4364 Resort Hotel 0 119 2016 March
## 4365 Resort Hotel 1 67 2016 March
## 4366 Resort Hotel 0 157 2016 March
## 4367 Resort Hotel 0 0 2016 March
## 4368 Resort Hotel 1 12 2016 March
## 4369 Resort Hotel 0 190 2016 March
## 4370 Resort Hotel 0 190 2016 March
## 4371 Resort Hotel 0 259 2016 March
## 4372 Resort Hotel 1 81 2016 March
## 4373 Resort Hotel 1 81 2016 March
## 4374 Resort Hotel 1 81 2016 March
## 4375 Resort Hotel 1 81 2016 March
## 4376 Resort Hotel 1 15 2016 March
## 4377 Resort Hotel 1 81 2016 March
## 4378 Resort Hotel 1 26 2016 March
## 4379 Resort Hotel 1 32 2016 March
## 4380 Resort Hotel 1 49 2016 March
## 4381 Resort Hotel 1 6 2016 March
## 4382 Resort Hotel 1 6 2016 March
## 4383 Resort Hotel 1 36 2016 March
## 4384 Resort Hotel 1 46 2016 March
## 4385 Resort Hotel 1 46 2016 March
## 4386 Resort Hotel 1 46 2016 March
## 4387 Resort Hotel 1 46 2016 March
## 4388 Resort Hotel 1 46 2016 March
## 4389 Resort Hotel 1 46 2016 March
## 4390 Resort Hotel 1 50 2016 March
## 4391 Resort Hotel 1 46 2016 March
## 4392 Resort Hotel 1 22 2016 March
## 4393 Resort Hotel 1 22 2016 March
## 4394 Resort Hotel 1 7 2016 March
## 4395 Resort Hotel 1 24 2016 March
## 4396 Resort Hotel 1 228 2016 March
## 4397 Resort Hotel 1 51 2016 March
## 4398 Resort Hotel 1 31 2016 March
## 4399 Resort Hotel 1 31 2016 March
## 4400 Resort Hotel 1 31 2016 March
## 4401 Resort Hotel 1 31 2016 March
## 4402 Resort Hotel 1 65 2016 March
## 4403 Resort Hotel 1 65 2016 March
## 4404 Resort Hotel 1 65 2016 March
## 4405 Resort Hotel 1 65 2016 March
## 4406 Resort Hotel 1 54 2016 March
## 4407 Resort Hotel 1 44 2016 March
## 4408 Resort Hotel 1 153 2016 March
## 4409 Resort Hotel 1 153 2016 March
## 4410 Resort Hotel 1 25 2016 March
## 4411 Resort Hotel 0 130 2016 March
## 4412 Resort Hotel 1 0 2016 March
## 4413 Resort Hotel 1 45 2016 March
## 4414 Resort Hotel 1 85 2016 March
## 4415 Resort Hotel 1 14 2016 March
## 4416 Resort Hotel 1 14 2016 March
## 4417 Resort Hotel 1 145 2016 March
## 4418 Resort Hotel 1 110 2016 March
## 4419 Resort Hotel 1 0 2016 March
## 4420 Resort Hotel 1 46 2016 March
## 4421 Resort Hotel 0 1 2016 March
## 4422 Resort Hotel 0 132 2016 March
## 4423 Resort Hotel 1 14 2016 March
## 4424 Resort Hotel 1 1 2016 March
## 4425 Resort Hotel 1 9 2016 March
## 4426 Resort Hotel 0 176 2016 March
## 4427 Resort Hotel 1 15 2016 March
## 4428 Resort Hotel 0 250 2016 March
## 4429 Resort Hotel 1 3 2016 March
## 4430 Resort Hotel 0 1 2016 March
## 4431 Resort Hotel 1 2 2016 March
## 4432 Resort Hotel 1 51 2016 March
## 4433 Resort Hotel 1 30 2016 March
## 4434 Resort Hotel 1 24 2016 March
## 4435 Resort Hotel 1 56 2016 March
## 4436 Resort Hotel 0 148 2016 March
## 4437 Resort Hotel 1 66 2016 March
## 4438 Resort Hotel 1 105 2016 March
## 4439 Resort Hotel 1 22 2016 March
## 4440 Resort Hotel 1 45 2016 March
## 4441 Resort Hotel 1 7 2016 March
## 4442 Resort Hotel 1 63 2016 March
## 4443 Resort Hotel 1 7 2016 March
## 4444 Resort Hotel 1 35 2016 March
## 4445 Resort Hotel 0 133 2016 March
## 4446 Resort Hotel 1 25 2016 March
## 4447 Resort Hotel 0 157 2016 March
## 4448 Resort Hotel 1 129 2016 March
## 4449 Resort Hotel 0 167 2016 March
## 4450 Resort Hotel 0 143 2016 March
## 4451 Resort Hotel 1 17 2016 March
## 4452 Resort Hotel 1 18 2016 March
## 4453 Resort Hotel 1 1 2016 March
## 4454 Resort Hotel 1 14 2016 March
## 4455 Resort Hotel 1 23 2016 March
## 4456 Resort Hotel 1 57 2016 March
## 4457 Resort Hotel 1 45 2016 March
## 4458 Resort Hotel 1 30 2016 March
## 4459 Resort Hotel 1 30 2016 March
## 4460 Resort Hotel 1 61 2016 March
## 4461 Resort Hotel 1 30 2016 March
## 4462 Resort Hotel 1 30 2016 March
## 4463 Resort Hotel 1 73 2016 March
## 4464 Resort Hotel 1 31 2016 March
## 4465 Resort Hotel 1 197 2016 March
## 4466 Resort Hotel 1 17 2016 March
## 4467 Resort Hotel 1 17 2016 March
## 4468 Resort Hotel 0 154 2016 March
## 4469 Resort Hotel 0 166 2016 March
## 4470 Resort Hotel 1 201 2016 March
## 4471 Resort Hotel 1 151 2016 March
## 4472 Resort Hotel 1 186 2016 March
## 4473 Resort Hotel 1 201 2016 March
## 4474 Resort Hotel 1 185 2016 March
## 4475 Resort Hotel 1 199 2016 March
## 4476 Resort Hotel 1 180 2016 March
## 4477 Resort Hotel 1 201 2016 March
## 4478 Resort Hotel 1 35 2016 March
## 4479 Resort Hotel 1 186 2016 March
## 4480 Resort Hotel 1 66 2016 March
## 4481 Resort Hotel 1 23 2016 March
## 4482 Resort Hotel 1 19 2016 March
## 4483 Resort Hotel 1 11 2016 March
## 4484 Resort Hotel 1 9 2016 March
## 4485 Resort Hotel 1 20 2016 March
## 4486 Resort Hotel 1 20 2016 March
## 4487 Resort Hotel 0 135 2016 March
## 4488 Resort Hotel 1 93 2016 March
## 4489 Resort Hotel 1 19 2016 March
## 4490 Resort Hotel 0 135 2016 March
## 4491 Resort Hotel 1 33 2016 March
## 4492 Resort Hotel 1 99 2016 March
## 4493 Resort Hotel 1 34 2016 March
## 4494 Resort Hotel 0 177 2016 March
## 4495 Resort Hotel 1 16 2016 March
## 4496 Resort Hotel 0 207 2016 March
## 4497 Resort Hotel 1 202 2016 March
## 4498 Resort Hotel 1 202 2016 March
## 4499 Resort Hotel 1 108 2016 March
## 4500 Resort Hotel 1 38 2016 March
## 4501 Resort Hotel 1 18 2016 March
## 4502 Resort Hotel 1 20 2016 March
## 4503 Resort Hotel 1 20 2016 March
## 4504 Resort Hotel 1 27 2016 March
## 4505 Resort Hotel 1 18 2016 March
## 4506 Resort Hotel 1 39 2016 March
## 4507 Resort Hotel 1 39 2016 March
## 4508 Resort Hotel 1 66 2016 March
## 4509 Resort Hotel 0 194 2016 March
## 4510 Resort Hotel 1 203 2016 March
## 4511 Resort Hotel 1 206 2016 March
## 4512 Resort Hotel 1 203 2016 March
## 4513 Resort Hotel 1 18 2016 March
## 4514 Resort Hotel 1 9 2016 March
## 4515 Resort Hotel 1 238 2016 March
## 4516 Resort Hotel 1 82 2016 March
## 4517 Resort Hotel 1 238 2016 March
## 4518 Resort Hotel 1 238 2016 March
## 4519 Resort Hotel 1 36 2016 March
## 4520 Resort Hotel 1 60 2016 March
## 4521 Resort Hotel 0 140 2016 March
## 4522 Resort Hotel 0 153 2016 March
## 4523 Resort Hotel 0 146 2016 March
## 4524 Resort Hotel 0 138 2016 March
## 4525 Resort Hotel 1 50 2016 March
## 4526 Resort Hotel 1 65 2016 March
## 4527 Resort Hotel 1 50 2016 March
## 4528 Resort Hotel 1 12 2016 March
## 4529 Resort Hotel 1 41 2016 March
## 4530 Resort Hotel 0 141 2016 March
## 4531 Resort Hotel 1 11 2016 March
## 4532 Resort Hotel 1 70 2016 March
## 4533 Resort Hotel 0 162 2016 March
## 4534 Resort Hotel 0 162 2016 March
## 4535 Resort Hotel 0 162 2016 March
## 4536 Resort Hotel 0 162 2016 March
## 4537 Resort Hotel 0 136 2016 March
## 4538 Resort Hotel 0 136 2016 March
## 4539 Resort Hotel 0 136 2016 March
## 4540 Resort Hotel 0 136 2016 March
## 4541 Resort Hotel 0 136 2016 March
## 4542 Resort Hotel 0 136 2016 March
## 4543 Resort Hotel 1 147 2016 March
## 4544 Resort Hotel 1 43 2016 March
## 4545 Resort Hotel 1 69 2016 March
## 4546 Resort Hotel 1 152 2016 March
## 4547 Resort Hotel 0 162 2016 March
## 4548 Resort Hotel 0 162 2016 March
## 4549 Resort Hotel 0 162 2016 March
## 4550 Resort Hotel 0 162 2016 March
## 4551 Resort Hotel 1 136 2016 March
## 4552 Resort Hotel 0 136 2016 March
## 4553 Resort Hotel 0 136 2016 March
## 4554 Resort Hotel 0 136 2016 March
## 4555 Resort Hotel 1 79 2016 March
## 4556 Resort Hotel 0 136 2016 March
## 4557 Resort Hotel 0 136 2016 March
## 4558 Resort Hotel 0 136 2016 March
## 4559 Resort Hotel 1 58 2016 March
## 4560 Resort Hotel 1 57 2016 March
## 4561 Resort Hotel 1 59 2016 March
## 4562 Resort Hotel 1 3 2016 March
## 4563 Resort Hotel 0 162 2016 March
## 4564 Resort Hotel 0 162 2016 March
## 4565 Resort Hotel 0 136 2016 March
## 4566 Resort Hotel 0 136 2016 March
## 4567 Resort Hotel 0 162 2016 March
## 4568 Resort Hotel 0 162 2016 March
## 4569 Resort Hotel 0 162 2016 March
## 4570 Resort Hotel 1 13 2016 March
## 4571 Resort Hotel 1 56 2016 March
## 4572 Resort Hotel 0 136 2016 March
## 4573 Resort Hotel 0 136 2016 March
## 4574 Resort Hotel 1 136 2016 March
## 4575 Resort Hotel 0 162 2016 March
## 4576 Resort Hotel 0 162 2016 March
## 4577 Resort Hotel 0 162 2016 March
## 4578 Resort Hotel 0 162 2016 March
## 4579 Resort Hotel 1 37 2016 March
## 4580 Resort Hotel 0 136 2016 March
## 4581 Resort Hotel 0 136 2016 March
## 4582 Resort Hotel 0 136 2016 March
## 4583 Resort Hotel 0 136 2016 March
## 4584 Resort Hotel 0 136 2016 March
## 4585 Resort Hotel 0 162 2016 March
## 4586 Resort Hotel 0 162 2016 March
## 4587 Resort Hotel 0 162 2016 March
## 4588 Resort Hotel 1 57 2016 March
## 4589 Resort Hotel 0 136 2016 March
## 4590 Resort Hotel 0 136 2016 March
## 4591 Resort Hotel 1 136 2016 March
## 4592 Resort Hotel 0 136 2016 March
## 4593 Resort Hotel 0 162 2016 March
## 4594 Resort Hotel 0 162 2016 March
## 4595 Resort Hotel 0 162 2016 March
## 4596 Resort Hotel 0 162 2016 March
## 4597 Resort Hotel 0 162 2016 March
## 4598 Resort Hotel 1 136 2016 March
## 4599 Resort Hotel 0 136 2016 March
## 4600 Resort Hotel 0 136 2016 March
## 4601 Resort Hotel 0 136 2016 March
## 4602 Resort Hotel 0 136 2016 March
## 4603 Resort Hotel 0 162 2016 March
## 4604 Resort Hotel 0 162 2016 March
## 4605 Resort Hotel 1 106 2016 March
## 4606 Resort Hotel 1 106 2016 March
## 4607 Resort Hotel 1 106 2016 March
## 4608 Resort Hotel 1 106 2016 March
## 4609 Resort Hotel 1 106 2016 March
## 4610 Resort Hotel 1 106 2016 March
## 4611 Resort Hotel 0 136 2016 March
## 4612 Resort Hotel 1 41 2016 March
## 4613 Resort Hotel 1 106 2016 March
## 4614 Resort Hotel 1 106 2016 March
## 4615 Resort Hotel 1 106 2016 March
## 4616 Resort Hotel 1 106 2016 March
## 4617 Resort Hotel 1 106 2016 March
## 4618 Resort Hotel 1 106 2016 March
## 4619 Resort Hotel 1 106 2016 March
## 4620 Resort Hotel 1 106 2016 March
## 4621 Resort Hotel 1 77 2016 March
## 4622 Resort Hotel 1 106 2016 March
## 4623 Resort Hotel 1 106 2016 March
## 4624 Resort Hotel 1 106 2016 March
## 4625 Resort Hotel 1 106 2016 March
## 4626 Resort Hotel 1 106 2016 March
## 4627 Resort Hotel 1 106 2016 March
## 4628 Resort Hotel 1 36 2016 March
## 4629 Resort Hotel 1 106 2016 March
## 4630 Resort Hotel 1 106 2016 March
## 4631 Resort Hotel 1 106 2016 March
## 4632 Resort Hotel 1 106 2016 March
## 4633 Resort Hotel 1 106 2016 March
## 4634 Resort Hotel 1 106 2016 March
## 4635 Resort Hotel 1 69 2016 March
## 4636 Resort Hotel 1 106 2016 March
## 4637 Resort Hotel 1 106 2016 March
## 4638 Resort Hotel 1 106 2016 March
## 4639 Resort Hotel 1 106 2016 March
## 4640 Resort Hotel 1 63 2016 March
## 4641 Resort Hotel 1 106 2016 March
## 4642 Resort Hotel 1 106 2016 March
## 4643 Resort Hotel 1 106 2016 March
## 4644 Resort Hotel 1 106 2016 March
## 4645 Resort Hotel 1 106 2016 March
## 4646 Resort Hotel 1 106 2016 March
## 4647 Resort Hotel 0 162 2016 March
## 4648 Resort Hotel 1 106 2016 March
## 4649 Resort Hotel 1 106 2016 March
## 4650 Resort Hotel 1 106 2016 March
## 4651 Resort Hotel 1 106 2016 March
## 4652 Resort Hotel 1 69 2016 March
## 4653 Resort Hotel 1 66 2016 March
## 4654 Resort Hotel 1 5 2016 March
## 4655 Resort Hotel 1 67 2016 March
## 4656 Resort Hotel 1 127 2016 March
## 4657 Resort Hotel 0 192 2016 March
## 4658 Resort Hotel 1 199 2016 March
## 4659 Resort Hotel 1 199 2016 March
## 4660 Resort Hotel 0 192 2016 March
## 4661 Resort Hotel 1 49 2016 March
## 4662 Resort Hotel 1 64 2016 March
## 4663 Resort Hotel 0 142 2016 March
## 4664 Resort Hotel 1 60 2016 March
## 4665 Resort Hotel 0 149 2016 March
## 4666 Resort Hotel 1 40 2016 March
## 4667 Resort Hotel 1 40 2016 March
## 4668 Resort Hotel 1 58 2016 March
## 4669 Resort Hotel 1 33 2016 March
## 4670 Resort Hotel 1 110 2016 March
## 4671 Resort Hotel 1 78 2016 March
## 4672 Resort Hotel 1 10 2016 March
## 4673 Resort Hotel 1 21 2016 March
## 4674 Resort Hotel 1 24 2016 March
## 4675 Resort Hotel 1 148 2016 March
## 4676 Resort Hotel 1 92 2016 March
## 4677 Resort Hotel 1 20 2016 March
## 4678 Resort Hotel 1 108 2016 March
## 4679 Resort Hotel 1 67 2016 March
## 4680 Resort Hotel 1 143 2016 March
## 4681 Resort Hotel 1 62 2016 March
## 4682 Resort Hotel 1 143 2016 March
## 4683 Resort Hotel 1 62 2016 March
## 4684 Resort Hotel 1 20 2016 March
## 4685 Resort Hotel 1 22 2016 March
## 4686 Resort Hotel 1 45 2016 March
## 4687 Resort Hotel 1 45 2016 March
## 4688 Resort Hotel 1 76 2016 March
## 4689 Resort Hotel 1 38 2016 March
## 4690 Resort Hotel 1 73 2016 March
## 4691 Resort Hotel 1 74 2016 March
## 4692 Resort Hotel 1 79 2016 March
## 4693 Resort Hotel 1 66 2016 March
## 4694 Resort Hotel 1 66 2016 March
## 4695 Resort Hotel 1 66 2016 March
## 4696 Resort Hotel 1 24 2016 March
## 4697 Resort Hotel 1 24 2016 March
## 4698 Resort Hotel 0 147 2016 March
## 4699 Resort Hotel 1 2 2016 March
## 4700 Resort Hotel 0 147 2016 March
## 4701 Resort Hotel 0 147 2016 March
## 4702 Resort Hotel 1 24 2016 March
## 4703 Resort Hotel 0 147 2016 March
## 4704 Resort Hotel 0 147 2016 March
## 4705 Resort Hotel 1 147 2016 March
## 4706 Resort Hotel 1 2 2016 March
## 4707 Resort Hotel 1 2 2016 March
## 4708 Resort Hotel 0 147 2016 March
## 4709 Resort Hotel 1 147 2016 March
## 4710 Resort Hotel 1 24 2016 March
## 4711 Resort Hotel 0 147 2016 March
## 4712 Resort Hotel 1 29 2016 March
## 4713 Resort Hotel 1 29 2016 March
## 4714 Resort Hotel 1 53 2016 March
## 4715 Resort Hotel 0 167 2016 March
## 4716 Resort Hotel 1 36 2016 March
## 4717 Resort Hotel 1 36 2016 March
## 4718 Resort Hotel 1 43 2016 March
## 4719 Resort Hotel 1 2 2016 March
## 4720 Resort Hotel 1 2 2016 March
## 4721 Resort Hotel 0 168 2016 March
## 4722 Resort Hotel 0 168 2016 March
## 4723 Resort Hotel 0 168 2016 March
## 4724 Resort Hotel 0 168 2016 March
## 4725 Resort Hotel 0 168 2016 March
## 4726 Resort Hotel 0 168 2016 March
## 4727 Resort Hotel 0 168 2016 March
## 4728 Resort Hotel 0 168 2016 March
## 4729 Resort Hotel 0 168 2016 March
## 4730 Resort Hotel 0 156 2016 March
## 4731 Resort Hotel 0 168 2016 March
## 4732 Resort Hotel 0 168 2016 March
## 4733 Resort Hotel 0 168 2016 March
## 4734 Resort Hotel 0 168 2016 March
## 4735 Resort Hotel 1 123 2016 March
## 4736 Resort Hotel 1 205 2016 March
## 4737 Resort Hotel 0 169 2016 March
## 4738 Resort Hotel 0 169 2016 March
## 4739 Resort Hotel 0 169 2016 March
## 4740 Resort Hotel 0 169 2016 March
## 4741 Resort Hotel 0 169 2016 March
## 4742 Resort Hotel 1 224 2016 March
## 4743 Resort Hotel 0 169 2016 March
## 4744 Resort Hotel 0 169 2016 March
## 4745 Resort Hotel 0 169 2016 March
## 4746 Resort Hotel 0 169 2016 March
## 4747 Resort Hotel 0 169 2016 March
## 4748 Resort Hotel 0 169 2016 March
## 4749 Resort Hotel 0 169 2016 March
## 4750 Resort Hotel 0 169 2016 March
## 4751 Resort Hotel 0 169 2016 March
## 4752 Resort Hotel 0 169 2016 March
## 4753 Resort Hotel 0 169 2016 March
## 4754 Resort Hotel 0 169 2016 March
## 4755 Resort Hotel 0 169 2016 March
## 4756 Resort Hotel 0 169 2016 March
## 4757 Resort Hotel 0 169 2016 March
## 4758 Resort Hotel 0 169 2016 March
## 4759 Resort Hotel 0 169 2016 March
## 4760 Resort Hotel 0 169 2016 March
## 4761 Resort Hotel 0 169 2016 March
## 4762 Resort Hotel 0 169 2016 March
## 4763 Resort Hotel 0 169 2016 March
## 4764 Resort Hotel 0 169 2016 March
## 4765 Resort Hotel 0 169 2016 March
## 4766 Resort Hotel 0 169 2016 March
## 4767 Resort Hotel 0 169 2016 March
## 4768 Resort Hotel 0 169 2016 March
## 4769 Resort Hotel 0 169 2016 March
## 4770 Resort Hotel 1 169 2016 March
## 4771 Resort Hotel 0 169 2016 March
## 4772 Resort Hotel 0 169 2016 March
## 4773 Resort Hotel 0 169 2016 March
## 4774 Resort Hotel 0 169 2016 March
## 4775 Resort Hotel 1 169 2016 March
## 4776 Resort Hotel 1 169 2016 March
## 4777 Resort Hotel 1 169 2016 March
## 4778 Resort Hotel 1 169 2016 March
## 4779 Resort Hotel 0 169 2016 March
## 4780 Resort Hotel 0 169 2016 March
## 4781 Resort Hotel 0 169 2016 March
## 4782 Resort Hotel 0 169 2016 March
## 4783 Resort Hotel 1 169 2016 March
## 4784 Resort Hotel 0 169 2016 March
## 4785 Resort Hotel 0 169 2016 March
## 4786 Resort Hotel 0 169 2016 March
## 4787 Resort Hotel 0 169 2016 March
## 4788 Resort Hotel 0 169 2016 March
## 4789 Resort Hotel 0 169 2016 March
## 4790 Resort Hotel 0 169 2016 March
## 4791 Resort Hotel 0 169 2016 March
## 4792 Resort Hotel 0 169 2016 March
## 4793 Resort Hotel 0 169 2016 March
## 4794 Resort Hotel 1 169 2016 March
## 4795 Resort Hotel 1 169 2016 March
## 4796 Resort Hotel 0 169 2016 March
## 4797 Resort Hotel 1 37 2016 March
## 4798 Resort Hotel 0 169 2016 March
## 4799 Resort Hotel 0 169 2016 March
## 4800 Resort Hotel 0 169 2016 March
## 4801 Resort Hotel 1 91 2016 March
## 4802 Resort Hotel 1 76 2016 March
## 4803 Resort Hotel 1 45 2016 March
## 4804 Resort Hotel 1 31 2016 April
## 4805 Resort Hotel 0 0 2016 April
## 4806 Resort Hotel 0 144 2016 April
## 4807 Resort Hotel 0 144 2016 April
## 4808 Resort Hotel 0 144 2016 April
## 4809 Resort Hotel 0 163 2016 April
## 4810 Resort Hotel 1 38 2016 April
## 4811 Resort Hotel 0 175 2016 April
## 4812 Resort Hotel 1 39 2016 April
## 4813 Resort Hotel 1 32 2016 April
## 4814 Resort Hotel 0 222 2016 April
## 4815 Resort Hotel 1 59 2016 April
## 4816 Resort Hotel 0 222 2016 April
## 4817 Resort Hotel 1 32 2016 April
## 4818 Resort Hotel 0 0 2016 April
## 4819 Resort Hotel 1 60 2016 April
## 4820 Resort Hotel 0 1 2016 April
## 4821 Resort Hotel 1 33 2016 April
## 4822 Resort Hotel 1 33 2016 April
## 4823 Resort Hotel 1 61 2016 April
## 4824 Resort Hotel 0 182 2016 April
## 4825 Resort Hotel 0 171 2016 April
## 4826 Resort Hotel 0 171 2016 April
## 4827 Resort Hotel 0 171 2016 April
## 4828 Resort Hotel 0 171 2016 April
## 4829 Resort Hotel 0 171 2016 April
## 4830 Resort Hotel 0 171 2016 April
## 4831 Resort Hotel 0 171 2016 April
## 4832 Resort Hotel 0 171 2016 April
## 4833 Resort Hotel 0 171 2016 April
## 4834 Resort Hotel 0 171 2016 April
## 4835 Resort Hotel 0 171 2016 April
## 4836 Resort Hotel 1 27 2016 April
## 4837 Resort Hotel 0 171 2016 April
## 4838 Resort Hotel 0 171 2016 April
## 4839 Resort Hotel 0 171 2016 April
## 4840 Resort Hotel 0 171 2016 April
## 4841 Resort Hotel 0 171 2016 April
## 4842 Resort Hotel 1 171 2016 April
## 4843 Resort Hotel 0 171 2016 April
## 4844 Resort Hotel 0 171 2016 April
## 4845 Resort Hotel 0 171 2016 April
## 4846 Resort Hotel 0 171 2016 April
## 4847 Resort Hotel 0 171 2016 April
## 4848 Resort Hotel 0 171 2016 April
## 4849 Resort Hotel 0 171 2016 April
## 4850 Resort Hotel 0 171 2016 April
## 4851 Resort Hotel 0 171 2016 April
## 4852 Resort Hotel 1 139 2016 April
## 4853 Resort Hotel 1 171 2016 April
## 4854 Resort Hotel 0 171 2016 April
## 4855 Resort Hotel 0 171 2016 April
## 4856 Resort Hotel 0 171 2016 April
## 4857 Resort Hotel 0 171 2016 April
## 4858 Resort Hotel 0 171 2016 April
## 4859 Resort Hotel 0 171 2016 April
## 4860 Resort Hotel 0 171 2016 April
## 4861 Resort Hotel 0 171 2016 April
## 4862 Resort Hotel 0 171 2016 April
## 4863 Resort Hotel 0 171 2016 April
## 4864 Resort Hotel 0 171 2016 April
## 4865 Resort Hotel 0 171 2016 April
## 4866 Resort Hotel 0 171 2016 April
## 4867 Resort Hotel 0 171 2016 April
## 4868 Resort Hotel 1 42 2016 April
## 4869 Resort Hotel 0 171 2016 April
## 4870 Resort Hotel 1 27 2016 April
## 4871 Resort Hotel 1 116 2016 April
## 4872 Resort Hotel 1 116 2016 April
## 4873 Resort Hotel 1 116 2016 April
## 4874 Resort Hotel 1 116 2016 April
## 4875 Resort Hotel 1 116 2016 April
## 4876 Resort Hotel 1 116 2016 April
## 4877 Resort Hotel 1 116 2016 April
## 4878 Resort Hotel 1 86 2016 April
## 4879 Resort Hotel 1 83 2016 April
## 4880 Resort Hotel 1 116 2016 April
## 4881 Resort Hotel 1 116 2016 April
## 4882 Resort Hotel 1 116 2016 April
## 4883 Resort Hotel 0 186 2016 April
## 4884 Resort Hotel 1 40 2016 April
## 4885 Resort Hotel 1 40 2016 April
## 4886 Resort Hotel 1 40 2016 April
## 4887 Resort Hotel 0 200 2016 April
## 4888 Resort Hotel 0 200 2016 April
## 4889 Resort Hotel 1 36 2016 April
## 4890 Resort Hotel 1 85 2016 April
## 4891 Resort Hotel 1 85 2016 April
## 4892 Resort Hotel 1 85 2016 April
## 4893 Resort Hotel 1 85 2016 April
## 4894 Resort Hotel 1 85 2016 April
## 4895 Resort Hotel 1 85 2016 April
## 4896 Resort Hotel 1 85 2016 April
## 4897 Resort Hotel 1 85 2016 April
## 4898 Resort Hotel 1 31 2016 April
## 4899 Resort Hotel 1 85 2016 April
## 4900 Resort Hotel 1 85 2016 April
## 4901 Resort Hotel 1 85 2016 April
## 4902 Resort Hotel 1 85 2016 April
## 4903 Resort Hotel 1 85 2016 April
## 4904 Resort Hotel 1 23 2016 April
## 4905 Resort Hotel 1 85 2016 April
## 4906 Resort Hotel 1 85 2016 April
## 4907 Resort Hotel 1 85 2016 April
## 4908 Resort Hotel 1 85 2016 April
## 4909 Resort Hotel 1 31 2016 April
## 4910 Resort Hotel 1 21 2016 April
## 4911 Resort Hotel 0 210 2016 April
## 4912 Resort Hotel 1 26 2016 April
## 4913 Resort Hotel 1 3 2016 April
## 4914 Resort Hotel 1 15 2016 April
## 4915 Resort Hotel 1 15 2016 April
## 4916 Resort Hotel 1 26 2016 April
## 4917 Resort Hotel 1 65 2016 April
## 4918 Resort Hotel 0 149 2016 April
## 4919 Resort Hotel 1 46 2016 April
## 4920 Resort Hotel 1 46 2016 April
## 4921 Resort Hotel 1 46 2016 April
## 4922 Resort Hotel 1 22 2016 April
## 4923 Resort Hotel 1 10 2016 April
## 4924 Resort Hotel 1 10 2016 April
## 4925 Resort Hotel 1 84 2016 April
## 4926 Resort Hotel 1 37 2016 April
## 4927 Resort Hotel 1 121 2016 April
## 4928 Resort Hotel 1 121 2016 April
## 4929 Resort Hotel 1 121 2016 April
## 4930 Resort Hotel 1 121 2016 April
## 4931 Resort Hotel 1 74 2016 April
## 4932 Resort Hotel 1 121 2016 April
## 4933 Resort Hotel 1 121 2016 April
## 4934 Resort Hotel 1 121 2016 April
## 4935 Resort Hotel 1 121 2016 April
## 4936 Resort Hotel 1 121 2016 April
## 4937 Resort Hotel 1 121 2016 April
## 4938 Resort Hotel 1 121 2016 April
## 4939 Resort Hotel 1 121 2016 April
## 4940 Resort Hotel 1 121 2016 April
## 4941 Resort Hotel 1 121 2016 April
## 4942 Resort Hotel 1 72 2016 April
## 4943 Resort Hotel 1 15 2016 April
## 4944 Resort Hotel 1 27 2016 April
## 4945 Resort Hotel 1 32 2016 April
## 4946 Resort Hotel 0 190 2016 April
## 4947 Resort Hotel 0 190 2016 April
## 4948 Resort Hotel 0 275 2016 April
## 4949 Resort Hotel 1 275 2016 April
## 4950 Resort Hotel 0 275 2016 April
## 4951 Resort Hotel 0 275 2016 April
## 4952 Resort Hotel 0 275 2016 April
## 4953 Resort Hotel 0 275 2016 April
## 4954 Resort Hotel 0 275 2016 April
## 4955 Resort Hotel 0 190 2016 April
## 4956 Resort Hotel 0 275 2016 April
## 4957 Resort Hotel 1 275 2016 April
## 4958 Resort Hotel 1 275 2016 April
## 4959 Resort Hotel 0 275 2016 April
## 4960 Resort Hotel 0 275 2016 April
## 4961 Resort Hotel 0 275 2016 April
## 4962 Resort Hotel 0 190 2016 April
## 4963 Resort Hotel 0 190 2016 April
## 4964 Resort Hotel 1 275 2016 April
## 4965 Resort Hotel 0 275 2016 April
## 4966 Resort Hotel 0 275 2016 April
## 4967 Resort Hotel 0 275 2016 April
## 4968 Resort Hotel 1 52 2016 April
## 4969 Resort Hotel 0 0 2016 April
## 4970 Resort Hotel 1 79 2016 April
## 4971 Resort Hotel 1 212 2016 April
## 4972 Resort Hotel 1 212 2016 April
## 4973 Resort Hotel 1 212 2016 April
## 4974 Resort Hotel 1 212 2016 April
## 4975 Resort Hotel 1 212 2016 April
## 4976 Resort Hotel 0 214 2016 April
## 4977 Resort Hotel 1 212 2016 April
## 4978 Resort Hotel 1 212 2016 April
## 4979 Resort Hotel 1 212 2016 April
## 4980 Resort Hotel 1 212 2016 April
## 4981 Resort Hotel 1 212 2016 April
## 4982 Resort Hotel 1 212 2016 April
## 4983 Resort Hotel 1 212 2016 April
## 4984 Resort Hotel 1 212 2016 April
## 4985 Resort Hotel 1 212 2016 April
## 4986 Resort Hotel 1 212 2016 April
## 4987 Resort Hotel 1 212 2016 April
## 4988 Resort Hotel 1 52 2016 April
## 4989 Resort Hotel 1 35 2016 April
## 4990 Resort Hotel 1 28 2016 April
## 4991 Resort Hotel 1 68 2016 April
## 4992 Resort Hotel 1 38 2016 April
## 4993 Resort Hotel 1 66 2016 April
## 4994 Resort Hotel 0 214 2016 April
## 4995 Resort Hotel 1 212 2016 April
## 4996 Resort Hotel 1 212 2016 April
## 4997 Resort Hotel 1 212 2016 April
## 4998 Resort Hotel 1 212 2016 April
## 4999 Resort Hotel 1 212 2016 April
## 5000 Resort Hotel 1 212 2016 April
## 5001 Resort Hotel 1 212 2016 April
## 5002 Resort Hotel 0 187 2016 April
## 5003 Resort Hotel 1 212 2016 April
## 5004 Resort Hotel 1 212 2016 April
## 5005 Resort Hotel 1 168 2016 April
## 5006 Resort Hotel 1 168 2016 April
## 5007 Resort Hotel 1 168 2016 April
## 5008 Resort Hotel 1 168 2016 April
## 5009 Resort Hotel 1 168 2016 April
## 5010 Resort Hotel 1 168 2016 April
## 5011 Resort Hotel 1 168 2016 April
## 5012 Resort Hotel 1 168 2016 April
## 5013 Resort Hotel 1 168 2016 April
## 5014 Resort Hotel 1 168 2016 April
## 5015 Resort Hotel 1 168 2016 April
## 5016 Resort Hotel 1 168 2016 April
## 5017 Resort Hotel 1 168 2016 April
## 5018 Resort Hotel 1 168 2016 April
## 5019 Resort Hotel 1 168 2016 April
## 5020 Resort Hotel 1 168 2016 April
## 5021 Resort Hotel 1 168 2016 April
## 5022 Resort Hotel 1 168 2016 April
## 5023 Resort Hotel 1 168 2016 April
## 5024 Resort Hotel 1 168 2016 April
## 5025 Resort Hotel 1 168 2016 April
## 5026 Resort Hotel 1 168 2016 April
## 5027 Resort Hotel 1 168 2016 April
## 5028 Resort Hotel 1 168 2016 April
## 5029 Resort Hotel 1 168 2016 April
## 5030 Resort Hotel 0 192 2016 April
## 5031 Resort Hotel 1 197 2016 April
## 5032 Resort Hotel 0 229 2016 April
## 5033 Resort Hotel 1 78 2016 April
## 5034 Resort Hotel 1 78 2016 April
## 5035 Resort Hotel 1 35 2016 April
## 5036 Resort Hotel 1 26 2016 April
## 5037 Resort Hotel 1 27 2016 April
## 5038 Resort Hotel 1 30 2016 April
## 5039 Resort Hotel 1 21 2016 April
## 5040 Resort Hotel 1 9 2016 April
## 5041 Resort Hotel 1 10 2016 April
## 5042 Resort Hotel 1 164 2016 April
## 5043 Resort Hotel 1 15 2016 April
## 5044 Resort Hotel 1 164 2016 April
## 5045 Resort Hotel 1 164 2016 April
## 5046 Resort Hotel 1 164 2016 April
## 5047 Resort Hotel 0 183 2016 April
## 5048 Resort Hotel 0 183 2016 April
## 5049 Resort Hotel 0 183 2016 April
## 5050 Resort Hotel 0 183 2016 April
## 5051 Resort Hotel 1 183 2016 April
## 5052 Resort Hotel 0 183 2016 April
## 5053 Resort Hotel 0 183 2016 April
## 5054 Resort Hotel 0 183 2016 April
## 5055 Resort Hotel 1 183 2016 April
## 5056 Resort Hotel 1 183 2016 April
## 5057 Resort Hotel 0 183 2016 April
## 5058 Resort Hotel 1 183 2016 April
## 5059 Resort Hotel 0 183 2016 April
## 5060 Resort Hotel 1 183 2016 April
## 5061 Resort Hotel 0 183 2016 April
## 5062 Resort Hotel 0 183 2016 April
## 5063 Resort Hotel 0 183 2016 April
## 5064 Resort Hotel 0 183 2016 April
## 5065 Resort Hotel 1 183 2016 April
## 5066 Resort Hotel 1 183 2016 April
## 5067 Resort Hotel 0 183 2016 April
## 5068 Resort Hotel 0 183 2016 April
## 5069 Resort Hotel 0 183 2016 April
## 5070 Resort Hotel 0 183 2016 April
## 5071 Resort Hotel 0 183 2016 April
## 5072 Resort Hotel 0 183 2016 April
## 5073 Resort Hotel 0 183 2016 April
## 5074 Resort Hotel 0 183 2016 April
## 5075 Resort Hotel 1 183 2016 April
## 5076 Resort Hotel 1 183 2016 April
## 5077 Resort Hotel 0 183 2016 April
## 5078 Resort Hotel 0 183 2016 April
## 5079 Resort Hotel 1 183 2016 April
## 5080 Resort Hotel 1 183 2016 April
## 5081 Resort Hotel 1 183 2016 April
## 5082 Resort Hotel 0 183 2016 April
## 5083 Resort Hotel 0 183 2016 April
## 5084 Resort Hotel 0 183 2016 April
## 5085 Resort Hotel 0 183 2016 April
## 5086 Resort Hotel 0 183 2016 April
## 5087 Resort Hotel 1 183 2016 April
## 5088 Resort Hotel 0 183 2016 April
## 5089 Resort Hotel 0 169 2016 April
## 5090 Resort Hotel 0 169 2016 April
## 5091 Resort Hotel 1 34 2016 April
## 5092 Resort Hotel 1 232 2016 April
## 5093 Resort Hotel 0 192 2016 April
## 5094 Resort Hotel 1 51 2016 April
## 5095 Resort Hotel 1 30 2016 April
## 5096 Resort Hotel 0 200 2016 April
## 5097 Resort Hotel 1 82 2016 April
## 5098 Resort Hotel 0 218 2016 April
## 5099 Resort Hotel 1 54 2016 April
## 5100 Resort Hotel 1 89 2016 April
## 5101 Resort Hotel 1 206 2016 April
## 5102 Resort Hotel 1 53 2016 April
## 5103 Resort Hotel 0 185 2016 April
## 5104 Resort Hotel 0 185 2016 April
## 5105 Resort Hotel 0 185 2016 April
## 5106 Resort Hotel 0 185 2016 April
## 5107 Resort Hotel 0 185 2016 April
## 5108 Resort Hotel 1 185 2016 April
## 5109 Resort Hotel 0 185 2016 April
## 5110 Resort Hotel 0 185 2016 April
## 5111 Resort Hotel 1 185 2016 April
## 5112 Resort Hotel 1 185 2016 April
## 5113 Resort Hotel 1 185 2016 April
## 5114 Resort Hotel 0 185 2016 April
## 5115 Resort Hotel 0 185 2016 April
## 5116 Resort Hotel 0 185 2016 April
## 5117 Resort Hotel 0 185 2016 April
## 5118 Resort Hotel 0 185 2016 April
## 5119 Resort Hotel 0 185 2016 April
## 5120 Resort Hotel 0 185 2016 April
## 5121 Resort Hotel 0 185 2016 April
## 5122 Resort Hotel 0 185 2016 April
## 5123 Resort Hotel 1 185 2016 April
## 5124 Resort Hotel 1 185 2016 April
## 5125 Resort Hotel 0 185 2016 April
## 5126 Resort Hotel 0 185 2016 April
## 5127 Resort Hotel 0 185 2016 April
## 5128 Resort Hotel 1 185 2016 April
## 5129 Resort Hotel 1 185 2016 April
## 5130 Resort Hotel 0 185 2016 April
## 5131 Resort Hotel 0 185 2016 April
## 5132 Resort Hotel 0 185 2016 April
## 5133 Resort Hotel 0 185 2016 April
## 5134 Resort Hotel 0 185 2016 April
## 5135 Resort Hotel 0 185 2016 April
## 5136 Resort Hotel 0 185 2016 April
## 5137 Resort Hotel 1 185 2016 April
## 5138 Resort Hotel 1 185 2016 April
## 5139 Resort Hotel 0 185 2016 April
## 5140 Resort Hotel 0 185 2016 April
## 5141 Resort Hotel 0 185 2016 April
## 5142 Resort Hotel 1 185 2016 April
## 5143 Resort Hotel 1 185 2016 April
## 5144 Resort Hotel 1 34 2016 April
## 5145 Resort Hotel 1 49 2016 April
## 5146 Resort Hotel 1 110 2016 April
## 5147 Resort Hotel 1 128 2016 April
## 5148 Resort Hotel 1 114 2016 April
## 5149 Resort Hotel 1 97 2016 April
## 5150 Resort Hotel 1 37 2016 April
## 5151 Resort Hotel 0 172 2016 April
## 5152 Resort Hotel 0 172 2016 April
## 5153 Resort Hotel 0 172 2016 April
## 5154 Resort Hotel 0 172 2016 April
## 5155 Resort Hotel 0 172 2016 April
## 5156 Resort Hotel 0 172 2016 April
## 5157 Resort Hotel 0 215 2016 April
## 5158 Resort Hotel 1 22 2016 April
## 5159 Resort Hotel 0 215 2016 April
## 5160 Resort Hotel 1 32 2016 April
## 5161 Resort Hotel 1 32 2016 April
## 5162 Resort Hotel 0 162 2016 April
## 5163 Resort Hotel 1 92 2016 April
## 5164 Resort Hotel 1 40 2016 April
## 5165 Resort Hotel 1 208 2016 April
## 5166 Resort Hotel 1 208 2016 April
## 5167 Resort Hotel 1 32 2016 April
## 5168 Resort Hotel 1 32 2016 April
## 5169 Resort Hotel 1 133 2016 April
## 5170 Resort Hotel 1 208 2016 April
## 5171 Resort Hotel 1 91 2016 April
## 5172 Resort Hotel 1 32 2016 April
## 5173 Resort Hotel 1 32 2016 April
## 5174 Resort Hotel 1 32 2016 April
## 5175 Resort Hotel 1 32 2016 April
## 5176 Resort Hotel 1 208 2016 April
## 5177 Resort Hotel 1 208 2016 April
## 5178 Resort Hotel 1 32 2016 April
## 5179 Resort Hotel 1 32 2016 April
## 5180 Resort Hotel 1 96 2016 April
## 5181 Resort Hotel 1 208 2016 April
## 5182 Resort Hotel 1 208 2016 April
## 5183 Resort Hotel 1 208 2016 April
## 5184 Resort Hotel 1 32 2016 April
## 5185 Resort Hotel 1 32 2016 April
## 5186 Resort Hotel 1 208 2016 April
## 5187 Resort Hotel 1 208 2016 April
## 5188 Resort Hotel 1 208 2016 April
## 5189 Resort Hotel 1 208 2016 April
## 5190 Resort Hotel 1 56 2016 April
## 5191 Resort Hotel 1 90 2016 April
## 5192 Resort Hotel 1 0 2016 April
## 5193 Resort Hotel 1 50 2016 April
## 5194 Resort Hotel 1 28 2016 April
## 5195 Resort Hotel 1 6 2016 April
## 5196 Resort Hotel 1 66 2016 April
## 5197 Resort Hotel 1 66 2016 April
## 5198 Resort Hotel 1 31 2016 April
## 5199 Resort Hotel 0 206 2016 April
## 5200 Resort Hotel 0 206 2016 April
## 5201 Resort Hotel 1 100 2016 April
## 5202 Resort Hotel 1 116 2016 April
## 5203 Resort Hotel 0 168 2016 April
## 5204 Resort Hotel 1 93 2016 April
## 5205 Resort Hotel 1 57 2016 April
## 5206 Resort Hotel 0 191 2016 April
## 5207 Resort Hotel 0 191 2016 April
## 5208 Resort Hotel 0 191 2016 April
## 5209 Resort Hotel 0 191 2016 April
## 5210 Resort Hotel 0 191 2016 April
## 5211 Resort Hotel 0 191 2016 April
## 5212 Resort Hotel 0 191 2016 April
## 5213 Resort Hotel 0 191 2016 April
## 5214 Resort Hotel 0 191 2016 April
## 5215 Resort Hotel 0 191 2016 April
## 5216 Resort Hotel 0 191 2016 April
## 5217 Resort Hotel 0 191 2016 April
## 5218 Resort Hotel 0 191 2016 April
## 5219 Resort Hotel 0 191 2016 April
## 5220 Resort Hotel 0 191 2016 April
## 5221 Resort Hotel 0 191 2016 April
## 5222 Resort Hotel 0 191 2016 April
## 5223 Resort Hotel 0 191 2016 April
## 5224 Resort Hotel 1 191 2016 April
## 5225 Resort Hotel 1 92 2016 April
## 5226 Resort Hotel 0 191 2016 April
## 5227 Resort Hotel 0 191 2016 April
## 5228 Resort Hotel 0 191 2016 April
## 5229 Resort Hotel 1 181 2016 April
## 5230 Resort Hotel 0 191 2016 April
## 5231 Resort Hotel 0 191 2016 April
## 5232 Resort Hotel 0 191 2016 April
## 5233 Resort Hotel 1 7 2016 April
## 5234 Resort Hotel 0 191 2016 April
## 5235 Resort Hotel 0 191 2016 April
## 5236 Resort Hotel 0 191 2016 April
## 5237 Resort Hotel 1 191 2016 April
## 5238 Resort Hotel 1 83 2016 April
## 5239 Resort Hotel 1 83 2016 April
## 5240 Resort Hotel 1 83 2016 April
## 5241 Resort Hotel 1 83 2016 April
## 5242 Resort Hotel 1 83 2016 April
## 5243 Resort Hotel 1 83 2016 April
## 5244 Resort Hotel 1 42 2016 April
## 5245 Resort Hotel 1 83 2016 April
## 5246 Resort Hotel 1 83 2016 April
## 5247 Resort Hotel 1 83 2016 April
## 5248 Resort Hotel 1 80 2016 April
## 5249 Resort Hotel 1 83 2016 April
## 5250 Resort Hotel 1 83 2016 April
## 5251 Resort Hotel 1 83 2016 April
## 5252 Resort Hotel 0 41 2016 April
## 5253 Resort Hotel 1 83 2016 April
## 5254 Resort Hotel 1 83 2016 April
## 5255 Resort Hotel 1 83 2016 April
## 5256 Resort Hotel 1 83 2016 April
## 5257 Resort Hotel 1 83 2016 April
## 5258 Resort Hotel 1 25 2016 April
## 5259 Resort Hotel 1 35 2016 April
## 5260 Resort Hotel 0 197 2016 April
## 5261 Resort Hotel 1 106 2016 April
## 5262 Resort Hotel 1 61 2016 April
## 5263 Resort Hotel 1 52 2016 April
## 5264 Resort Hotel 1 27 2016 April
## 5265 Resort Hotel 1 36 2016 April
## 5266 Resort Hotel 1 21 2016 April
## 5267 Resort Hotel 1 98 2016 April
## 5268 Resort Hotel 1 106 2016 April
## 5269 Resort Hotel 1 17 2016 April
## 5270 Resort Hotel 1 229 2016 April
## 5271 Resort Hotel 1 191 2016 April
## 5272 Resort Hotel 0 218 2016 April
## 5273 Resort Hotel 1 80 2016 April
## 5274 Resort Hotel 1 80 2016 April
## 5275 Resort Hotel 0 222 2016 April
## 5276 Resort Hotel 1 103 2016 April
## 5277 Resort Hotel 1 95 2016 April
## 5278 Resort Hotel 1 95 2016 April
## 5279 Resort Hotel 1 95 2016 April
## 5280 Resort Hotel 1 95 2016 April
## 5281 Resort Hotel 1 9 2016 April
## 5282 Resort Hotel 1 143 2016 April
## 5283 Resort Hotel 1 143 2016 April
## 5284 Resort Hotel 1 143 2016 April
## 5285 Resort Hotel 1 143 2016 April
## 5286 Resort Hotel 1 143 2016 April
## 5287 Resort Hotel 1 143 2016 April
## 5288 Resort Hotel 1 62 2016 April
## 5289 Resort Hotel 1 143 2016 April
## 5290 Resort Hotel 1 143 2016 April
## 5291 Resort Hotel 1 143 2016 April
## 5292 Resort Hotel 1 143 2016 April
## 5293 Resort Hotel 1 143 2016 April
## 5294 Resort Hotel 1 143 2016 April
## 5295 Resort Hotel 1 143 2016 April
## 5296 Resort Hotel 1 143 2016 April
## 5297 Resort Hotel 1 143 2016 April
## 5298 Resort Hotel 1 143 2016 April
## 5299 Resort Hotel 1 143 2016 April
## 5300 Resort Hotel 1 143 2016 April
## 5301 Resort Hotel 1 143 2016 April
## 5302 Resort Hotel 1 143 2016 April
## 5303 Resort Hotel 1 143 2016 April
## 5304 Resort Hotel 1 143 2016 April
## 5305 Resort Hotel 1 143 2016 April
## 5306 Resort Hotel 1 143 2016 April
## 5307 Resort Hotel 1 143 2016 April
## 5308 Resort Hotel 1 46 2016 April
## 5309 Resort Hotel 1 42 2016 April
## 5310 Resort Hotel 1 89 2016 April
## 5311 Resort Hotel 0 167 2016 April
## 5312 Resort Hotel 1 72 2016 April
## 5313 Resort Hotel 1 98 2016 April
## 5314 Resort Hotel 1 9 2016 April
## 5315 Resort Hotel 1 53 2016 April
## 5316 Resort Hotel 1 138 2016 April
## 5317 Resort Hotel 1 138 2016 April
## 5318 Resort Hotel 1 138 2016 April
## 5319 Resort Hotel 1 138 2016 April
## 5320 Resort Hotel 1 138 2016 April
## 5321 Resort Hotel 1 138 2016 April
## 5322 Resort Hotel 1 138 2016 April
## 5323 Resort Hotel 1 138 2016 April
## 5324 Resort Hotel 1 138 2016 April
## 5325 Resort Hotel 1 138 2016 April
## 5326 Resort Hotel 1 138 2016 April
## 5327 Resort Hotel 1 138 2016 April
## 5328 Resort Hotel 1 138 2016 April
## 5329 Resort Hotel 1 13 2016 April
## 5330 Resort Hotel 1 138 2016 April
## 5331 Resort Hotel 1 138 2016 April
## 5332 Resort Hotel 1 138 2016 April
## 5333 Resort Hotel 1 138 2016 April
## 5334 Resort Hotel 1 138 2016 April
## 5335 Resort Hotel 1 138 2016 April
## 5336 Resort Hotel 1 138 2016 April
## 5337 Resort Hotel 1 18 2016 April
## 5338 Resort Hotel 1 110 2016 April
## 5339 Resort Hotel 1 27 2016 April
## 5340 Resort Hotel 1 56 2016 April
## 5341 Resort Hotel 1 13 2016 April
## 5342 Resort Hotel 1 93 2016 April
## 5343 Resort Hotel 1 93 2016 April
## 5344 Resort Hotel 1 93 2016 April
## 5345 Resort Hotel 1 13 2016 April
## 5346 Resort Hotel 1 56 2016 April
## 5347 Resort Hotel 1 3 2016 April
## 5348 Resort Hotel 0 7 2016 April
## 5349 Resort Hotel 0 189 2016 April
## 5350 Resort Hotel 1 189 2016 April
## 5351 Resort Hotel 1 189 2016 April
## 5352 Resort Hotel 1 189 2016 April
## 5353 Resort Hotel 1 189 2016 April
## 5354 Resort Hotel 1 189 2016 April
## 5355 Resort Hotel 1 189 2016 April
## 5356 Resort Hotel 1 189 2016 April
## 5357 Resort Hotel 1 189 2016 April
## 5358 Resort Hotel 0 189 2016 April
## 5359 Resort Hotel 0 189 2016 April
## 5360 Resort Hotel 1 189 2016 April
## 5361 Resort Hotel 1 189 2016 April
## 5362 Resort Hotel 1 189 2016 April
## 5363 Resort Hotel 0 189 2016 April
## 5364 Resort Hotel 1 189 2016 April
## 5365 Resort Hotel 1 189 2016 April
## 5366 Resort Hotel 1 189 2016 April
## 5367 Resort Hotel 1 27 2016 April
## 5368 Resort Hotel 1 53 2016 April
## 5369 Resort Hotel 1 11 2016 April
## 5370 Resort Hotel 1 26 2016 April
## 5371 Resort Hotel 1 53 2016 April
## 5372 Resort Hotel 0 179 2016 April
## 5373 Resort Hotel 1 6 2016 April
## 5374 Resort Hotel 1 6 2016 April
## 5375 Resort Hotel 1 179 2016 April
## 5376 Resort Hotel 1 12 2016 April
## 5377 Resort Hotel 1 12 2016 April
## 5378 Resort Hotel 1 12 2016 April
## 5379 Resort Hotel 1 89 2016 April
## 5380 Resort Hotel 1 12 2016 April
## 5381 Resort Hotel 1 12 2016 April
## 5382 Resort Hotel 1 12 2016 April
## 5383 Resort Hotel 1 91 2016 April
## 5384 Resort Hotel 1 209 2016 April
## 5385 Resort Hotel 1 97 2016 April
## 5386 Resort Hotel 0 200 2016 April
## 5387 Resort Hotel 1 66 2016 April
## 5388 Resort Hotel 1 15 2016 April
## 5389 Resort Hotel 1 27 2016 April
## 5390 Resort Hotel 1 113 2016 April
## 5391 Resort Hotel 1 113 2016 April
## 5392 Resort Hotel 1 168 2016 April
## 5393 Resort Hotel 1 168 2016 April
## 5394 Resort Hotel 1 168 2016 April
## 5395 Resort Hotel 1 168 2016 April
## 5396 Resort Hotel 1 168 2016 April
## 5397 Resort Hotel 1 168 2016 April
## 5398 Resort Hotel 1 168 2016 April
## 5399 Resort Hotel 1 168 2016 April
## 5400 Resort Hotel 1 168 2016 April
## 5401 Resort Hotel 0 206 2016 April
## 5402 Resort Hotel 1 168 2016 April
## 5403 Resort Hotel 1 168 2016 April
## 5404 Resort Hotel 1 168 2016 April
## 5405 Resort Hotel 1 168 2016 April
## 5406 Resort Hotel 1 168 2016 April
## 5407 Resort Hotel 1 168 2016 April
## 5408 Resort Hotel 1 43 2016 April
## 5409 Resort Hotel 1 168 2016 April
## 5410 Resort Hotel 1 168 2016 April
## 5411 Resort Hotel 1 168 2016 April
## 5412 Resort Hotel 1 168 2016 April
## 5413 Resort Hotel 1 168 2016 April
## 5414 Resort Hotel 1 168 2016 April
## 5415 Resort Hotel 1 168 2016 April
## 5416 Resort Hotel 1 168 2016 April
## 5417 Resort Hotel 1 168 2016 April
## 5418 Resort Hotel 1 41 2016 April
## 5419 Resort Hotel 1 14 2016 April
## 5420 Resort Hotel 1 1 2016 April
## 5421 Resort Hotel 1 0 2016 April
## 5422 Resort Hotel 1 1 2016 April
## 5423 Resort Hotel 1 7 2016 April
## 5424 Resort Hotel 1 65 2016 April
## 5425 Resort Hotel 1 13 2016 April
## 5426 Resort Hotel 1 114 2016 April
## 5427 Resort Hotel 1 34 2016 April
## 5428 Resort Hotel 1 25 2016 April
## 5429 Resort Hotel 1 26 2016 April
## 5430 Resort Hotel 1 102 2016 April
## 5431 Resort Hotel 1 50 2016 April
## 5432 Resort Hotel 1 47 2016 April
## 5433 Resort Hotel 1 199 2016 April
## 5434 Resort Hotel 1 114 2016 April
## 5435 Resort Hotel 1 101 2016 April
## 5436 Resort Hotel 1 31 2016 April
## 5437 Resort Hotel 1 116 2016 April
## 5438 Resort Hotel 1 29 2016 April
## 5439 Resort Hotel 1 108 2016 April
## 5440 Resort Hotel 1 108 2016 April
## 5441 Resort Hotel 1 108 2016 April
## 5442 Resort Hotel 1 108 2016 April
## 5443 Resort Hotel 1 52 2016 April
## 5444 Resort Hotel 1 108 2016 April
## 5445 Resort Hotel 1 108 2016 April
## 5446 Resort Hotel 1 108 2016 April
## 5447 Resort Hotel 1 147 2016 April
## 5448 Resort Hotel 1 108 2016 April
## 5449 Resort Hotel 1 108 2016 April
## 5450 Resort Hotel 1 10 2016 April
## 5451 Resort Hotel 1 108 2016 April
## 5452 Resort Hotel 1 147 2016 April
## 5453 Resort Hotel 1 108 2016 April
## 5454 Resort Hotel 1 101 2016 April
## 5455 Resort Hotel 1 87 2016 April
## 5456 Resort Hotel 1 87 2016 April
## 5457 Resort Hotel 1 101 2016 April
## 5458 Resort Hotel 1 37 2016 April
## 5459 Resort Hotel 1 87 2016 April
## 5460 Resort Hotel 1 87 2016 April
## 5461 Resort Hotel 1 87 2016 April
## 5462 Resort Hotel 1 87 2016 April
## 5463 Resort Hotel 1 87 2016 April
## 5464 Resort Hotel 1 101 2016 April
## 5465 Resort Hotel 1 101 2016 April
## 5466 Resort Hotel 1 101 2016 April
## 5467 Resort Hotel 1 87 2016 April
## 5468 Resort Hotel 1 87 2016 April
## 5469 Resort Hotel 1 87 2016 April
## 5470 Resort Hotel 1 87 2016 April
## 5471 Resort Hotel 1 87 2016 April
## 5472 Resort Hotel 1 87 2016 April
## 5473 Resort Hotel 1 87 2016 April
## 5474 Resort Hotel 1 37 2016 April
## 5475 Resort Hotel 1 87 2016 April
## 5476 Resort Hotel 1 87 2016 April
## 5477 Resort Hotel 1 76 2016 April
## 5478 Resort Hotel 1 78 2016 April
## 5479 Resort Hotel 1 157 2016 April
## 5480 Resort Hotel 1 157 2016 April
## 5481 Resort Hotel 1 157 2016 April
## 5482 Resort Hotel 1 0 2016 April
## 5483 Resort Hotel 1 14 2016 April
## 5484 Resort Hotel 1 3 2016 April
## 5485 Resort Hotel 1 19 2016 April
## 5486 Resort Hotel 1 0 2016 April
## 5487 Resort Hotel 1 32 2016 April
## 5488 Resort Hotel 0 197 2016 April
## 5489 Resort Hotel 1 39 2016 April
## 5490 Resort Hotel 1 19 2016 April
## 5491 Resort Hotel 1 31 2016 April
## 5492 Resort Hotel 0 197 2016 April
## 5493 Resort Hotel 0 197 2016 April
## 5494 Resort Hotel 1 52 2016 April
## 5495 Resort Hotel 0 197 2016 April
## 5496 Resort Hotel 1 18 2016 April
## 5497 Resort Hotel 1 8 2016 April
## 5498 Resort Hotel 1 45 2016 April
## 5499 Resort Hotel 0 197 2016 April
## 5500 Resort Hotel 1 197 2016 April
## 5501 Resort Hotel 1 197 2016 April
## 5502 Resort Hotel 0 197 2016 April
## 5503 Resort Hotel 1 31 2016 April
## 5504 Resort Hotel 1 19 2016 April
## 5505 Resort Hotel 1 178 2016 April
## 5506 Resort Hotel 0 197 2016 April
## 5507 Resort Hotel 1 22 2016 April
## 5508 Resort Hotel 1 187 2016 April
## 5509 Resort Hotel 1 187 2016 April
## 5510 Resort Hotel 1 187 2016 April
## 5511 Resort Hotel 1 32 2016 April
## 5512 Resort Hotel 0 171 2016 April
## 5513 Resort Hotel 1 55 2016 April
## 5514 Resort Hotel 1 32 2016 April
## 5515 Resort Hotel 1 246 2016 April
## 5516 Resort Hotel 0 173 2016 April
## 5517 Resort Hotel 0 206 2016 April
## 5518 Resort Hotel 0 255 2016 April
## 5519 Resort Hotel 1 171 2016 April
## 5520 Resort Hotel 1 171 2016 April
## 5521 Resort Hotel 0 171 2016 April
## 5522 Resort Hotel 1 36 2016 May
## 5523 Resort Hotel 1 14 2016 May
## 5524 Resort Hotel 1 76 2016 May
## 5525 Resort Hotel 1 32 2016 May
## 5526 Resort Hotel 1 232 2016 May
## 5527 Resort Hotel 0 229 2016 May
## 5528 Resort Hotel 1 186 2016 May
## 5529 Resort Hotel 1 0 2016 May
## 5530 Resort Hotel 1 3 2016 May
## 5531 Resort Hotel 0 199 2016 May
## 5532 Resort Hotel 0 199 2016 May
## 5533 Resort Hotel 0 199 2016 May
## 5534 Resort Hotel 1 199 2016 May
## 5535 Resort Hotel 1 199 2016 May
## 5536 Resort Hotel 0 199 2016 May
## 5537 Resort Hotel 0 199 2016 May
## 5538 Resort Hotel 1 199 2016 May
## 5539 Resort Hotel 1 199 2016 May
## 5540 Resort Hotel 1 199 2016 May
## 5541 Resort Hotel 0 199 2016 May
## 5542 Resort Hotel 0 199 2016 May
## 5543 Resort Hotel 1 199 2016 May
## 5544 Resort Hotel 1 199 2016 May
## 5545 Resort Hotel 1 199 2016 May
## 5546 Resort Hotel 0 199 2016 May
## 5547 Resort Hotel 0 199 2016 May
## 5548 Resort Hotel 0 199 2016 May
## 5549 Resort Hotel 0 199 2016 May
## 5550 Resort Hotel 1 199 2016 May
## 5551 Resort Hotel 0 199 2016 May
## 5552 Resort Hotel 0 199 2016 May
## 5553 Resort Hotel 0 199 2016 May
## 5554 Resort Hotel 1 199 2016 May
## 5555 Resort Hotel 1 199 2016 May
## 5556 Resort Hotel 0 199 2016 May
## 5557 Resort Hotel 0 199 2016 May
## 5558 Resort Hotel 0 199 2016 May
## 5559 Resort Hotel 1 199 2016 May
## 5560 Resort Hotel 1 199 2016 May
## 5561 Resort Hotel 0 199 2016 May
## 5562 Resort Hotel 0 199 2016 May
## 5563 Resort Hotel 0 199 2016 May
## 5564 Resort Hotel 0 199 2016 May
## 5565 Resort Hotel 1 199 2016 May
## 5566 Resort Hotel 1 199 2016 May
## 5567 Resort Hotel 0 199 2016 May
## 5568 Resort Hotel 0 199 2016 May
## 5569 Resort Hotel 0 199 2016 May
## 5570 Resort Hotel 0 199 2016 May
## 5571 Resort Hotel 0 199 2016 May
## 5572 Resort Hotel 1 199 2016 May
## 5573 Resort Hotel 1 89 2016 May
## 5574 Resort Hotel 1 6 2016 May
## 5575 Resort Hotel 1 45 2016 May
## 5576 Resort Hotel 1 5 2016 May
## 5577 Resort Hotel 0 215 2016 May
## 5578 Resort Hotel 0 203 2016 May
## 5579 Resort Hotel 1 80 2016 May
## 5580 Resort Hotel 1 200 2016 May
## 5581 Resort Hotel 1 187 2016 May
## 5582 Resort Hotel 1 68 2016 May
## 5583 Resort Hotel 1 127 2016 May
## 5584 Resort Hotel 1 187 2016 May
## 5585 Resort Hotel 1 200 2016 May
## 5586 Resort Hotel 1 187 2016 May
## 5587 Resort Hotel 1 109 2016 May
## 5588 Resort Hotel 0 201 2016 May
## 5589 Resort Hotel 0 226 2016 May
## 5590 Resort Hotel 0 188 2016 May
## 5591 Resort Hotel 0 288 2016 May
## 5592 Resort Hotel 1 108 2016 May
## 5593 Resort Hotel 1 108 2016 May
## 5594 Resort Hotel 0 188 2016 May
## 5595 Resort Hotel 0 288 2016 May
## 5596 Resort Hotel 1 74 2016 May
## 5597 Resort Hotel 1 129 2016 May
## 5598 Resort Hotel 1 49 2016 May
## 5599 Resort Hotel 1 101 2016 May
## 5600 Resort Hotel 1 12 2016 May
## 5601 Resort Hotel 1 12 2016 May
## 5602 Resort Hotel 0 188 2016 May
## 5603 Resort Hotel 1 19 2016 May
## 5604 Resort Hotel 1 141 2016 May
## 5605 Resort Hotel 1 159 2016 May
## 5606 Resort Hotel 1 45 2016 May
## 5607 Resort Hotel 0 209 2016 May
## 5608 Resort Hotel 1 164 2016 May
## 5609 Resort Hotel 0 189 2016 May
## 5610 Resort Hotel 0 209 2016 May
## 5611 Resort Hotel 1 71 2016 May
## 5612 Resort Hotel 0 209 2016 May
## 5613 Resort Hotel 0 253 2016 May
## 5614 Resort Hotel 1 113 2016 May
## 5615 Resort Hotel 0 253 2016 May
## 5616 Resort Hotel 1 154 2016 May
## 5617 Resort Hotel 0 252 2016 May
## 5618 Resort Hotel 1 2 2016 May
## 5619 Resort Hotel 1 0 2016 May
## 5620 Resort Hotel 1 153 2016 May
## 5621 Resort Hotel 1 81 2016 May
## 5622 Resort Hotel 1 165 2016 May
## 5623 Resort Hotel 1 71 2016 May
## 5624 Resort Hotel 1 44 2016 May
## 5625 Resort Hotel 1 19 2016 May
## 5626 Resort Hotel 1 66 2016 May
## 5627 Resort Hotel 1 36 2016 May
## 5628 Resort Hotel 0 354 2016 May
## 5629 Resort Hotel 1 174 2016 May
## 5630 Resort Hotel 1 119 2016 May
## 5631 Resort Hotel 1 80 2016 May
## 5632 Resort Hotel 0 260 2016 May
## 5633 Resort Hotel 1 58 2016 May
## 5634 Resort Hotel 0 179 2016 May
## 5635 Resort Hotel 1 35 2016 May
## 5636 Resort Hotel 1 54 2016 May
## 5637 Resort Hotel 1 49 2016 May
## 5638 Resort Hotel 1 122 2016 May
## 5639 Resort Hotel 1 119 2016 May
## 5640 Resort Hotel 1 95 2016 May
## 5641 Resort Hotel 1 80 2016 May
## 5642 Resort Hotel 1 89 2016 May
## 5643 Resort Hotel 0 262 2016 May
## 5644 Resort Hotel 0 232 2016 May
## 5645 Resort Hotel 1 16 2016 May
## 5646 Resort Hotel 1 75 2016 May
## 5647 Resort Hotel 0 232 2016 May
## 5648 Resort Hotel 1 81 2016 May
## 5649 Resort Hotel 0 236 2016 May
## 5650 Resort Hotel 1 1 2016 May
## 5651 Resort Hotel 1 59 2016 May
## 5652 Resort Hotel 1 39 2016 May
## 5653 Resort Hotel 1 1 2016 May
## 5654 Resort Hotel 1 20 2016 May
## 5655 Resort Hotel 1 20 2016 May
## 5656 Resort Hotel 1 59 2016 May
## 5657 Resort Hotel 1 59 2016 May
## 5658 Resort Hotel 1 158 2016 May
## 5659 Resort Hotel 1 46 2016 May
## 5660 Resort Hotel 1 68 2016 May
## 5661 Resort Hotel 1 192 2016 May
## 5662 Resort Hotel 1 92 2016 May
## 5663 Resort Hotel 1 230 2016 May
## 5664 Resort Hotel 0 256 2016 May
## 5665 Resort Hotel 0 212 2016 May
## 5666 Resort Hotel 1 163 2016 May
## 5667 Resort Hotel 1 163 2016 May
## 5668 Resort Hotel 1 22 2016 May
## 5669 Resort Hotel 1 7 2016 May
## 5670 Resort Hotel 1 59 2016 May
## 5671 Resort Hotel 0 202 2016 May
## 5672 Resort Hotel 0 235 2016 May
## 5673 Resort Hotel 1 87 2016 May
## 5674 Resort Hotel 1 122 2016 May
## 5675 Resort Hotel 1 234 2016 May
## 5676 Resort Hotel 1 254 2016 May
## 5677 Resort Hotel 0 203 2016 May
## 5678 Resort Hotel 0 203 2016 May
## 5679 Resort Hotel 1 203 2016 May
## 5680 Resort Hotel 1 203 2016 May
## 5681 Resort Hotel 1 203 2016 May
## 5682 Resort Hotel 1 203 2016 May
## 5683 Resort Hotel 1 203 2016 May
## 5684 Resort Hotel 1 203 2016 May
## 5685 Resort Hotel 1 203 2016 May
## 5686 Resort Hotel 1 203 2016 May
## 5687 Resort Hotel 0 203 2016 May
## 5688 Resort Hotel 0 203 2016 May
## 5689 Resort Hotel 1 203 2016 May
## 5690 Resort Hotel 1 203 2016 May
## 5691 Resort Hotel 1 203 2016 May
## 5692 Resort Hotel 0 203 2016 May
## 5693 Resort Hotel 0 203 2016 May
## 5694 Resort Hotel 1 203 2016 May
## 5695 Resort Hotel 1 56 2016 May
## 5696 Resort Hotel 1 235 2016 May
## 5697 Resort Hotel 0 29 2016 May
## 5698 Resort Hotel 1 49 2016 May
## 5699 Resort Hotel 1 90 2016 May
## 5700 Resort Hotel 1 48 2016 May
## 5701 Resort Hotel 1 7 2016 May
## 5702 Resort Hotel 1 59 2016 May
## 5703 Resort Hotel 1 189 2016 May
## 5704 Resort Hotel 0 188 2016 May
## 5705 Resort Hotel 1 468 2016 May
## 5706 Resort Hotel 1 468 2016 May
## 5707 Resort Hotel 1 30 2016 May
## 5708 Resort Hotel 1 468 2016 May
## 5709 Resort Hotel 1 468 2016 May
## 5710 Resort Hotel 1 30 2016 May
## 5711 Resort Hotel 1 52 2016 May
## 5712 Resort Hotel 1 69 2016 May
## 5713 Resort Hotel 1 468 2016 May
## 5714 Resort Hotel 1 468 2016 May
## 5715 Resort Hotel 1 468 2016 May
## 5716 Resort Hotel 1 468 2016 May
## 5717 Resort Hotel 1 468 2016 May
## 5718 Resort Hotel 1 468 2016 May
## 5719 Resort Hotel 0 236 2016 May
## 5720 Resort Hotel 0 236 2016 May
## 5721 Resort Hotel 0 236 2016 May
## 5722 Resort Hotel 0 236 2016 May
## 5723 Resort Hotel 0 236 2016 May
## 5724 Resort Hotel 0 236 2016 May
## 5725 Resort Hotel 0 236 2016 May
## 5726 Resort Hotel 0 236 2016 May
## 5727 Resort Hotel 0 236 2016 May
## 5728 Resort Hotel 0 236 2016 May
## 5729 Resort Hotel 0 236 2016 May
## 5730 Resort Hotel 0 236 2016 May
## 5731 Resort Hotel 1 236 2016 May
## 5732 Resort Hotel 1 236 2016 May
## 5733 Resort Hotel 1 236 2016 May
## 5734 Resort Hotel 1 236 2016 May
## 5735 Resort Hotel 1 236 2016 May
## 5736 Resort Hotel 1 236 2016 May
## 5737 Resort Hotel 0 236 2016 May
## 5738 Resort Hotel 1 236 2016 May
## 5739 Resort Hotel 1 236 2016 May
## 5740 Resort Hotel 1 236 2016 May
## 5741 Resort Hotel 1 236 2016 May
## 5742 Resort Hotel 1 236 2016 May
## 5743 Resort Hotel 1 236 2016 May
## 5744 Resort Hotel 1 236 2016 May
## 5745 Resort Hotel 1 236 2016 May
## 5746 Resort Hotel 1 236 2016 May
## 5747 Resort Hotel 1 236 2016 May
## 5748 Resort Hotel 1 236 2016 May
## 5749 Resort Hotel 1 236 2016 May
## 5750 Resort Hotel 1 236 2016 May
## 5751 Resort Hotel 1 114 2016 May
## 5752 Resort Hotel 1 236 2016 May
## 5753 Resort Hotel 1 236 2016 May
## 5754 Resort Hotel 1 236 2016 May
## 5755 Resort Hotel 1 236 2016 May
## 5756 Resort Hotel 1 236 2016 May
## 5757 Resort Hotel 1 236 2016 May
## 5758 Resort Hotel 1 236 2016 May
## 5759 Resort Hotel 1 25 2016 May
## 5760 Resort Hotel 1 197 2016 May
## 5761 Resort Hotel 0 189 2016 May
## 5762 Resort Hotel 0 189 2016 May
## 5763 Resort Hotel 0 213 2016 May
## 5764 Resort Hotel 0 213 2016 May
## 5765 Resort Hotel 0 237 2016 May
## 5766 Resort Hotel 1 54 2016 May
## 5767 Resort Hotel 0 237 2016 May
## 5768 Resort Hotel 1 30 2016 May
## 5769 Resort Hotel 1 9 2016 May
## 5770 Resort Hotel 1 9 2016 May
## 5771 Resort Hotel 1 119 2016 May
## 5772 Resort Hotel 1 22 2016 May
## 5773 Resort Hotel 1 119 2016 May
## 5774 Resort Hotel 1 17 2016 May
## 5775 Resort Hotel 1 198 2016 May
## 5776 Resort Hotel 0 195 2016 May
## 5777 Resort Hotel 1 259 2016 May
## 5778 Resort Hotel 0 195 2016 May
## 5779 Resort Hotel 1 259 2016 May
## 5780 Resort Hotel 1 3 2016 May
## 5781 Resort Hotel 1 35 2016 May
## 5782 Resort Hotel 1 113 2016 May
## 5783 Resort Hotel 1 39 2016 May
## 5784 Resort Hotel 1 35 2016 May
## 5785 Resort Hotel 1 117 2016 May
## 5786 Resort Hotel 1 190 2016 May
## 5787 Resort Hotel 1 158 2016 May
## 5788 Resort Hotel 1 128 2016 May
## 5789 Resort Hotel 1 128 2016 May
## 5790 Resort Hotel 1 128 2016 May
## 5791 Resort Hotel 1 190 2016 May
## 5792 Resort Hotel 1 120 2016 May
## 5793 Resort Hotel 1 115 2016 May
## 5794 Resort Hotel 0 206 2016 May
## 5795 Resort Hotel 0 211 2016 May
## 5796 Resort Hotel 0 211 2016 May
## 5797 Resort Hotel 0 211 2016 May
## 5798 Resort Hotel 0 211 2016 May
## 5799 Resort Hotel 1 211 2016 May
## 5800 Resort Hotel 0 211 2016 May
## 5801 Resort Hotel 0 211 2016 May
## 5802 Resort Hotel 0 211 2016 May
## 5803 Resort Hotel 0 211 2016 May
## 5804 Resort Hotel 1 211 2016 May
## 5805 Resort Hotel 0 211 2016 May
## 5806 Resort Hotel 0 211 2016 May
## 5807 Resort Hotel 0 211 2016 May
## 5808 Resort Hotel 1 211 2016 May
## 5809 Resort Hotel 1 211 2016 May
## 5810 Resort Hotel 0 211 2016 May
## 5811 Resort Hotel 0 211 2016 May
## 5812 Resort Hotel 0 211 2016 May
## 5813 Resort Hotel 1 211 2016 May
## 5814 Resort Hotel 1 211 2016 May
## 5815 Resort Hotel 0 211 2016 May
## 5816 Resort Hotel 0 211 2016 May
## 5817 Resort Hotel 0 211 2016 May
## 5818 Resort Hotel 0 211 2016 May
## 5819 Resort Hotel 0 211 2016 May
## 5820 Resort Hotel 0 211 2016 May
## 5821 Resort Hotel 0 211 2016 May
## 5822 Resort Hotel 0 211 2016 May
## 5823 Resort Hotel 0 211 2016 May
## 5824 Resort Hotel 1 211 2016 May
## 5825 Resort Hotel 0 211 2016 May
## 5826 Resort Hotel 0 211 2016 May
## 5827 Resort Hotel 1 211 2016 May
## 5828 Resort Hotel 1 211 2016 May
## 5829 Resort Hotel 1 211 2016 May
## 5830 Resort Hotel 0 211 2016 May
## 5831 Resort Hotel 0 211 2016 May
## 5832 Resort Hotel 0 211 2016 May
## 5833 Resort Hotel 0 211 2016 May
## 5834 Resort Hotel 1 211 2016 May
## 5835 Resort Hotel 0 9 2016 May
## 5836 Resort Hotel 1 9 2016 May
## 5837 Resort Hotel 1 9 2016 May
## 5838 Resort Hotel 1 9 2016 May
## 5839 Resort Hotel 1 9 2016 May
## 5840 Resort Hotel 1 9 2016 May
## 5841 Resort Hotel 1 9 2016 May
## 5842 Resort Hotel 1 9 2016 May
## 5843 Resort Hotel 1 9 2016 May
## 5844 Resort Hotel 1 9 2016 May
## 5845 Resort Hotel 1 9 2016 May
## 5846 Resort Hotel 1 9 2016 May
## 5847 Resort Hotel 1 9 2016 May
## 5848 Resort Hotel 1 9 2016 May
## 5849 Resort Hotel 1 9 2016 May
## 5850 Resort Hotel 1 9 2016 May
## 5851 Resort Hotel 1 9 2016 May
## 5852 Resort Hotel 1 9 2016 May
## 5853 Resort Hotel 1 9 2016 May
## 5854 Resort Hotel 1 9 2016 May
## 5855 Resort Hotel 1 9 2016 May
## 5856 Resort Hotel 1 9 2016 May
## 5857 Resort Hotel 1 9 2016 May
## 5858 Resort Hotel 1 9 2016 May
## 5859 Resort Hotel 1 9 2016 May
## 5860 Resort Hotel 1 9 2016 May
## 5861 Resort Hotel 1 9 2016 May
## 5862 Resort Hotel 1 9 2016 May
## 5863 Resort Hotel 1 9 2016 May
## 5864 Resort Hotel 1 9 2016 May
## 5865 Resort Hotel 1 137 2016 May
## 5866 Resort Hotel 1 30 2016 May
## 5867 Resort Hotel 1 38 2016 May
## 5868 Resort Hotel 0 239 2016 May
## 5869 Resort Hotel 1 117 2016 May
## 5870 Resort Hotel 1 117 2016 May
## 5871 Resort Hotel 0 205 2016 May
## 5872 Resort Hotel 0 208 2016 May
## 5873 Resort Hotel 1 62 2016 May
## 5874 Resort Hotel 1 62 2016 May
## 5875 Resort Hotel 1 65 2016 May
## 5876 Resort Hotel 1 0 2016 May
## 5877 Resort Hotel 1 65 2016 May
## 5878 Resort Hotel 0 213 2016 May
## 5879 Resort Hotel 0 213 2016 May
## 5880 Resort Hotel 0 213 2016 May
## 5881 Resort Hotel 0 213 2016 May
## 5882 Resort Hotel 0 213 2016 May
## 5883 Resort Hotel 0 213 2016 May
## 5884 Resort Hotel 0 213 2016 May
## 5885 Resort Hotel 0 213 2016 May
## 5886 Resort Hotel 1 213 2016 May
## 5887 Resort Hotel 0 213 2016 May
## 5888 Resort Hotel 0 213 2016 May
## 5889 Resort Hotel 0 213 2016 May
## 5890 Resort Hotel 1 213 2016 May
## 5891 Resort Hotel 1 213 2016 May
## 5892 Resort Hotel 1 213 2016 May
## 5893 Resort Hotel 0 213 2016 May
## 5894 Resort Hotel 0 213 2016 May
## 5895 Resort Hotel 0 213 2016 May
## 5896 Resort Hotel 1 213 2016 May
## 5897 Resort Hotel 1 213 2016 May
## 5898 Resort Hotel 0 213 2016 May
## 5899 Resort Hotel 0 213 2016 May
## 5900 Resort Hotel 0 213 2016 May
## 5901 Resort Hotel 0 213 2016 May
## 5902 Resort Hotel 1 213 2016 May
## 5903 Resort Hotel 1 213 2016 May
## 5904 Resort Hotel 0 213 2016 May
## 5905 Resort Hotel 0 213 2016 May
## 5906 Resort Hotel 0 213 2016 May
## 5907 Resort Hotel 0 213 2016 May
## 5908 Resort Hotel 0 213 2016 May
## 5909 Resort Hotel 0 213 2016 May
## 5910 Resort Hotel 0 213 2016 May
## 5911 Resort Hotel 0 213 2016 May
## 5912 Resort Hotel 0 213 2016 May
## 5913 Resort Hotel 1 213 2016 May
## 5914 Resort Hotel 1 213 2016 May
## 5915 Resort Hotel 0 213 2016 May
## 5916 Resort Hotel 0 213 2016 May
## 5917 Resort Hotel 0 213 2016 May
## 5918 Resort Hotel 1 213 2016 May
## 5919 Resort Hotel 1 213 2016 May
## 5920 Resort Hotel 0 201 2016 May
## 5921 Resort Hotel 1 95 2016 May
## 5922 Resort Hotel 1 39 2016 May
## 5923 Resort Hotel 1 95 2016 May
## 5924 Resort Hotel 0 201 2016 May
## 5925 Resort Hotel 1 263 2016 May
## 5926 Resort Hotel 0 189 2016 May
## 5927 Resort Hotel 1 28 2016 May
## 5928 Resort Hotel 0 265 2016 May
## 5929 Resort Hotel 1 250 2016 May
## 5930 Resort Hotel 1 215 2016 May
## 5931 Resort Hotel 0 215 2016 May
## 5932 Resort Hotel 0 265 2016 May
## 5933 Resort Hotel 1 5 2016 May
## 5934 Resort Hotel 0 201 2016 May
## 5935 Resort Hotel 0 189 2016 May
## 5936 Resort Hotel 0 201 2016 May
## 5937 Resort Hotel 0 201 2016 May
## 5938 Resort Hotel 0 201 2016 May
## 5939 Resort Hotel 0 196 2016 May
## 5940 Resort Hotel 1 151 2016 May
## 5941 Resort Hotel 1 151 2016 May
## 5942 Resort Hotel 1 151 2016 May
## 5943 Resort Hotel 1 151 2016 May
## 5944 Resort Hotel 1 151 2016 May
## 5945 Resort Hotel 1 151 2016 May
## 5946 Resort Hotel 1 151 2016 May
## 5947 Resort Hotel 1 151 2016 May
## 5948 Resort Hotel 1 151 2016 May
## 5949 Resort Hotel 1 151 2016 May
## 5950 Resort Hotel 1 40 2016 May
## 5951 Resort Hotel 0 253 2016 May
## 5952 Resort Hotel 0 224 2016 May
## 5953 Resort Hotel 0 224 2016 May
## 5954 Resort Hotel 1 132 2016 May
## 5955 Resort Hotel 1 143 2016 May
## 5956 Resort Hotel 1 199 2016 May
## 5957 Resort Hotel 1 132 2016 May
## 5958 Resort Hotel 0 139 2016 May
## 5959 Resort Hotel 0 239 2016 May
## 5960 Resort Hotel 1 0 2016 May
## 5961 Resort Hotel 1 40 2016 May
## 5962 Resort Hotel 1 40 2016 May
## 5963 Resort Hotel 1 37 2016 May
## 5964 Resort Hotel 0 191 2016 May
## 5965 Resort Hotel 1 76 2016 May
## 5966 Resort Hotel 1 124 2016 May
## 5967 Resort Hotel 1 124 2016 May
## 5968 Resort Hotel 1 40 2016 May
## 5969 Resort Hotel 1 40 2016 May
## 5970 Resort Hotel 1 40 2016 May
## 5971 Resort Hotel 1 40 2016 May
## 5972 Resort Hotel 1 40 2016 May
## 5973 Resort Hotel 1 40 2016 May
## 5974 Resort Hotel 1 40 2016 May
## 5975 Resort Hotel 1 40 2016 May
## 5976 Resort Hotel 1 40 2016 May
## 5977 Resort Hotel 1 40 2016 May
## 5978 Resort Hotel 1 40 2016 May
## 5979 Resort Hotel 1 40 2016 May
## 5980 Resort Hotel 1 40 2016 May
## 5981 Resort Hotel 1 40 2016 May
## 5982 Resort Hotel 1 92 2016 May
## 5983 Resort Hotel 1 40 2016 May
## 5984 Resort Hotel 1 40 2016 May
## 5985 Resort Hotel 1 40 2016 May
## 5986 Resort Hotel 1 8 2016 May
## 5987 Resort Hotel 1 40 2016 May
## 5988 Resort Hotel 1 40 2016 May
## 5989 Resort Hotel 1 144 2016 May
## 5990 Resort Hotel 1 41 2016 May
## 5991 Resort Hotel 1 0 2016 May
## 5992 Resort Hotel 0 3 2016 May
## 5993 Resort Hotel 1 80 2016 May
## 5994 Resort Hotel 1 124 2016 May
## 5995 Resort Hotel 0 304 2016 May
## 5996 Resort Hotel 1 87 2016 May
## 5997 Resort Hotel 1 258 2016 May
## 5998 Resort Hotel 0 304 2016 May
## 5999 Resort Hotel 0 274 2016 May
## 6000 Resort Hotel 1 155 2016 May
## 6001 Resort Hotel 1 125 2016 May
## 6002 Resort Hotel 0 237 2016 May
## 6003 Resort Hotel 1 101 2016 May
## 6004 Resort Hotel 1 118 2016 May
## 6005 Resort Hotel 1 118 2016 May
## 6006 Resort Hotel 1 101 2016 May
## 6007 Resort Hotel 1 66 2016 May
## 6008 Resort Hotel 1 49 2016 May
## 6009 Resort Hotel 1 109 2016 May
## 6010 Resort Hotel 1 32 2016 May
## 6011 Resort Hotel 1 2 2016 May
## 6012 Resort Hotel 0 193 2016 May
## 6013 Resort Hotel 0 217 2016 May
## 6014 Resort Hotel 1 202 2016 May
## 6015 Resort Hotel 1 178 2016 May
## 6016 Resort Hotel 1 171 2016 May
## 6017 Resort Hotel 1 0 2016 May
## 6018 Resort Hotel 1 126 2016 May
## 6019 Resort Hotel 1 1 2016 May
## 6020 Resort Hotel 1 126 2016 May
## 6021 Resort Hotel 1 79 2016 May
## 6022 Resort Hotel 1 78 2016 May
## 6023 Resort Hotel 0 5 2016 May
## 6024 Resort Hotel 1 116 2016 May
## 6025 Resort Hotel 0 210 2016 May
## 6026 Resort Hotel 1 82 2016 May
## 6027 Resort Hotel 1 117 2016 May
## 6028 Resort Hotel 1 123 2016 May
## 6029 Resort Hotel 1 123 2016 May
## 6030 Resort Hotel 1 82 2016 May
## 6031 Resort Hotel 1 25 2016 May
## 6032 Resort Hotel 0 192 2016 May
## 6033 Resort Hotel 1 256 2016 May
## 6034 Resort Hotel 1 70 2016 May
## 6035 Resort Hotel 1 262 2016 May
## 6036 Resort Hotel 0 220 2016 May
## 6037 Resort Hotel 0 248 2016 May
## 6038 Resort Hotel 0 236 2016 May
## 6039 Resort Hotel 0 212 2016 May
## 6040 Resort Hotel 1 46 2016 May
## 6041 Resort Hotel 1 0 2016 May
## 6042 Resort Hotel 1 241 2016 May
## 6043 Resort Hotel 1 262 2016 May
## 6044 Resort Hotel 0 307 2016 May
## 6045 Resort Hotel 0 221 2016 May
## 6046 Resort Hotel 1 46 2016 May
## 6047 Resort Hotel 1 34 2016 May
## 6048 Resort Hotel 1 73 2016 May
## 6049 Resort Hotel 1 98 2016 May
## 6050 Resort Hotel 1 101 2016 May
## 6051 Resort Hotel 0 233 2016 May
## 6052 Resort Hotel 1 32 2016 May
## 6053 Resort Hotel 0 222 2016 May
## 6054 Resort Hotel 1 201 2016 May
## 6055 Resort Hotel 0 257 2016 May
## 6056 Resort Hotel 1 126 2016 May
## 6057 Resort Hotel 0 206 2016 May
## 6058 Resort Hotel 1 200 2016 May
## 6059 Resort Hotel 1 68 2016 May
## 6060 Resort Hotel 1 30 2016 May
## 6061 Resort Hotel 1 209 2016 May
## 6062 Resort Hotel 1 197 2016 May
## 6063 Resort Hotel 1 139 2016 May
## 6064 Resort Hotel 0 222 2016 May
## 6065 Resort Hotel 0 223 2016 May
## 6066 Resort Hotel 0 223 2016 May
## 6067 Resort Hotel 0 223 2016 May
## 6068 Resort Hotel 0 223 2016 May
## 6069 Resort Hotel 0 223 2016 May
## 6070 Resort Hotel 0 223 2016 May
## 6071 Resort Hotel 0 223 2016 May
## 6072 Resort Hotel 0 223 2016 May
## 6073 Resort Hotel 0 223 2016 May
## 6074 Resort Hotel 0 223 2016 May
## 6075 Resort Hotel 0 223 2016 May
## 6076 Resort Hotel 0 223 2016 May
## 6077 Resort Hotel 0 223 2016 May
## 6078 Resort Hotel 0 223 2016 May
## 6079 Resort Hotel 0 223 2016 May
## 6080 Resort Hotel 1 28 2016 May
## 6081 Resort Hotel 1 28 2016 May
## 6082 Resort Hotel 0 223 2016 May
## 6083 Resort Hotel 0 223 2016 May
## 6084 Resort Hotel 0 223 2016 May
## 6085 Resort Hotel 0 223 2016 May
## 6086 Resort Hotel 0 213 2016 May
## 6087 Resort Hotel 0 223 2016 May
## 6088 Resort Hotel 0 223 2016 May
## 6089 Resort Hotel 1 213 2016 May
## 6090 Resort Hotel 0 227 2016 May
## 6091 Resort Hotel 0 227 2016 May
## 6092 Resort Hotel 1 69 2016 May
## 6093 Resort Hotel 1 100 2016 May
## 6094 Resort Hotel 1 99 2016 May
## 6095 Resort Hotel 1 100 2016 May
## 6096 Resort Hotel 1 100 2016 May
## 6097 Resort Hotel 1 100 2016 May
## 6098 Resort Hotel 0 257 2016 May
## 6099 Resort Hotel 0 224 2016 May
## 6100 Resort Hotel 0 224 2016 May
## 6101 Resort Hotel 0 224 2016 May
## 6102 Resort Hotel 0 224 2016 May
## 6103 Resort Hotel 0 224 2016 May
## 6104 Resort Hotel 1 105 2016 May
## 6105 Resort Hotel 0 224 2016 May
## 6106 Resort Hotel 0 224 2016 May
## 6107 Resort Hotel 0 224 2016 May
## 6108 Resort Hotel 1 100 2016 May
## 6109 Resort Hotel 1 228 2016 May
## 6110 Resort Hotel 0 224 2016 May
## 6111 Resort Hotel 0 224 2016 May
## 6112 Resort Hotel 1 100 2016 May
## 6113 Resort Hotel 1 141 2016 May
## 6114 Resort Hotel 0 197 2016 May
## 6115 Resort Hotel 1 276 2016 May
## 6116 Resort Hotel 0 225 2016 May
## 6117 Resort Hotel 1 26 2016 May
## 6118 Resort Hotel 0 225 2016 May
## 6119 Resort Hotel 0 225 2016 May
## 6120 Resort Hotel 0 225 2016 May
## 6121 Resort Hotel 0 225 2016 May
## 6122 Resort Hotel 0 225 2016 May
## 6123 Resort Hotel 0 225 2016 May
## 6124 Resort Hotel 0 225 2016 May
## 6125 Resort Hotel 1 22 2016 May
## 6126 Resort Hotel 1 101 2016 May
## 6127 Resort Hotel 0 225 2016 May
## 6128 Resort Hotel 1 183 2016 May
## 6129 Resort Hotel 0 225 2016 May
## 6130 Resort Hotel 0 225 2016 May
## 6131 Resort Hotel 0 225 2016 May
## 6132 Resort Hotel 0 225 2016 May
## 6133 Resort Hotel 0 225 2016 May
## 6134 Resort Hotel 0 225 2016 May
## 6135 Resort Hotel 0 225 2016 May
## 6136 Resort Hotel 0 225 2016 May
## 6137 Resort Hotel 0 225 2016 May
## 6138 Resort Hotel 0 225 2016 May
## 6139 Resort Hotel 0 225 2016 May
## 6140 Resort Hotel 0 225 2016 May
## 6141 Resort Hotel 0 225 2016 May
## 6142 Resort Hotel 0 225 2016 May
## 6143 Resort Hotel 0 225 2016 May
## 6144 Resort Hotel 0 225 2016 May
## 6145 Resort Hotel 0 225 2016 May
## 6146 Resort Hotel 0 225 2016 May
## 6147 Resort Hotel 0 225 2016 May
## 6148 Resort Hotel 0 225 2016 May
## 6149 Resort Hotel 0 225 2016 May
## 6150 Resort Hotel 0 225 2016 May
## 6151 Resort Hotel 0 225 2016 May
## 6152 Resort Hotel 1 139 2016 May
## 6153 Resort Hotel 0 225 2016 May
## 6154 Resort Hotel 0 225 2016 May
## 6155 Resort Hotel 0 225 2016 May
## 6156 Resort Hotel 0 225 2016 May
## 6157 Resort Hotel 0 225 2016 May
## 6158 Resort Hotel 0 264 2016 May
## 6159 Resort Hotel 0 311 2016 May
## 6160 Resort Hotel 0 238 2016 May
## 6161 Resort Hotel 0 264 2016 May
## 6162 Resort Hotel 1 18 2016 May
## 6163 Resort Hotel 1 143 2016 May
## 6164 Resort Hotel 1 100 2016 May
## 6165 Resort Hotel 1 100 2016 May
## 6166 Resort Hotel 1 7 2016 May
## 6167 Resort Hotel 1 7 2016 May
## 6168 Resort Hotel 1 7 2016 May
## 6169 Resort Hotel 1 122 2016 May
## 6170 Resort Hotel 1 7 2016 May
## 6171 Resort Hotel 1 7 2016 May
## 6172 Resort Hotel 1 277 2016 May
## 6173 Resort Hotel 1 7 2016 May
## 6174 Resort Hotel 1 7 2016 May
## 6175 Resort Hotel 1 7 2016 May
## 6176 Resort Hotel 1 100 2016 May
## 6177 Resort Hotel 1 100 2016 May
## 6178 Resort Hotel 0 226 2016 May
## 6179 Resort Hotel 1 135 2016 May
## 6180 Resort Hotel 1 100 2016 May
## 6181 Resort Hotel 1 143 2016 May
## 6182 Resort Hotel 1 100 2016 May
## 6183 Resort Hotel 1 11 2016 May
## 6184 Resort Hotel 1 102 2016 May
## 6185 Resort Hotel 1 18 2016 May
## 6186 Resort Hotel 0 204 2016 May
## 6187 Resort Hotel 0 312 2016 May
## 6188 Resort Hotel 0 204 2016 May
## 6189 Resort Hotel 0 204 2016 May
## 6190 Resort Hotel 0 312 2016 May
## 6191 Resort Hotel 1 227 2016 May
## 6192 Resort Hotel 0 225 2016 May
## 6193 Resort Hotel 0 225 2016 May
## 6194 Resort Hotel 1 225 2016 May
## 6195 Resort Hotel 1 212 2016 May
## 6196 Resort Hotel 0 225 2016 May
## 6197 Resort Hotel 0 225 2016 May
## 6198 Resort Hotel 0 225 2016 May
## 6199 Resort Hotel 0 225 2016 May
## 6200 Resort Hotel 0 225 2016 May
## 6201 Resort Hotel 0 225 2016 May
## 6202 Resort Hotel 1 225 2016 May
## 6203 Resort Hotel 0 225 2016 May
## 6204 Resort Hotel 0 225 2016 May
## 6205 Resort Hotel 0 225 2016 May
## 6206 Resort Hotel 0 225 2016 May
## 6207 Resort Hotel 0 225 2016 May
## 6208 Resort Hotel 0 225 2016 May
## 6209 Resort Hotel 0 225 2016 May
## 6210 Resort Hotel 1 225 2016 May
## 6211 Resort Hotel 0 213 2016 May
## 6212 Resort Hotel 1 145 2016 May
## 6213 Resort Hotel 1 145 2016 May
## 6214 Resort Hotel 1 145 2016 May
## 6215 Resort Hotel 0 225 2016 May
## 6216 Resort Hotel 0 225 2016 May
## 6217 Resort Hotel 0 225 2016 May
## 6218 Resort Hotel 1 145 2016 May
## 6219 Resort Hotel 1 116 2016 May
## 6220 Resort Hotel 1 144 2016 May
## 6221 Resort Hotel 1 108 2016 May
## 6222 Resort Hotel 1 144 2016 May
## 6223 Resort Hotel 1 116 2016 May
## 6224 Resort Hotel 1 102 2016 May
## 6225 Resort Hotel 0 210 2016 May
## 6226 Resort Hotel 1 168 2016 May
## 6227 Resort Hotel 1 5 2016 May
## 6228 Resort Hotel 1 11 2016 May
## 6229 Resort Hotel 1 16 2016 May
## 6230 Resort Hotel 1 5 2016 May
## 6231 Resort Hotel 1 139 2016 May
## 6232 Resort Hotel 0 314 2016 May
## 6233 Resort Hotel 1 139 2016 May
## 6234 Resort Hotel 1 107 2016 May
## 6235 Resort Hotel 0 0 2016 May
## 6236 Resort Hotel 0 0 2016 May
## 6237 Resort Hotel 0 229 2016 May
## 6238 Resort Hotel 1 50 2016 May
## 6239 Resort Hotel 1 43 2016 May
## 6240 Resort Hotel 1 125 2016 May
## 6241 Resort Hotel 1 0 2016 May
## 6242 Resort Hotel 1 117 2016 May
## 6243 Resort Hotel 1 126 2016 May
## 6244 Resort Hotel 0 215 2016 May
## 6245 Resort Hotel 1 136 2016 May
## 6246 Resort Hotel 1 237 2016 May
## 6247 Resort Hotel 0 215 2016 May
## 6248 Resort Hotel 1 71 2016 May
## 6249 Resort Hotel 1 71 2016 May
## 6250 Resort Hotel 0 215 2016 May
## 6251 Resort Hotel 1 207 2016 May
## 6252 Resort Hotel 1 152 2016 May
## 6253 Resort Hotel 0 213 2016 May
## 6254 Resort Hotel 1 76 2016 May
## 6255 Resort Hotel 1 63 2016 May
## 6256 Resort Hotel 0 290 2016 May
## 6257 Resort Hotel 0 235 2016 May
## 6258 Resort Hotel 0 235 2016 May
## 6259 Resort Hotel 1 102 2016 May
## 6260 Resort Hotel 0 105 2016 May
## 6261 Resort Hotel 1 124 2016 May
## 6262 Resort Hotel 0 241 2016 May
## 6263 Resort Hotel 1 102 2016 May
## 6264 Resort Hotel 1 102 2016 May
## 6265 Resort Hotel 1 77 2016 May
## 6266 Resort Hotel 1 134 2016 May
## 6267 Resort Hotel 0 232 2016 May
## 6268 Resort Hotel 1 90 2016 May
## 6269 Resort Hotel 1 102 2016 May
## 6270 Resort Hotel 1 46 2016 May
## 6271 Resort Hotel 1 33 2016 May
## 6272 Resort Hotel 1 102 2016 May
## 6273 Resort Hotel 0 206 2016 May
## 6274 Resort Hotel 0 206 2016 May
## 6275 Resort Hotel 0 266 2016 May
## 6276 Resort Hotel 1 7 2016 June
## 6277 Resort Hotel 1 179 2016 June
## 6278 Resort Hotel 1 2 2016 June
## 6279 Resort Hotel 1 215 2016 June
## 6280 Resort Hotel 1 215 2016 June
## 6281 Resort Hotel 1 215 2016 June
## 6282 Resort Hotel 1 215 2016 June
## 6283 Resort Hotel 1 215 2016 June
## 6284 Resort Hotel 1 118 2016 June
## 6285 Resort Hotel 1 30 2016 June
## 6286 Resort Hotel 1 43 2016 June
## 6287 Resort Hotel 1 215 2016 June
## 6288 Resort Hotel 1 215 2016 June
## 6289 Resort Hotel 1 30 2016 June
## 6290 Resort Hotel 1 215 2016 June
## 6291 Resort Hotel 1 215 2016 June
## 6292 Resort Hotel 1 215 2016 June
## 6293 Resort Hotel 1 215 2016 June
## 6294 Resort Hotel 1 215 2016 June
## 6295 Resort Hotel 1 133 2016 June
## 6296 Resort Hotel 0 217 2016 June
## 6297 Resort Hotel 0 235 2016 June
## 6298 Resort Hotel 0 208 2016 June
## 6299 Resort Hotel 0 216 2016 June
## 6300 Resort Hotel 1 107 2016 June
## 6301 Resort Hotel 1 40 2016 June
## 6302 Resort Hotel 1 168 2016 June
## 6303 Resort Hotel 1 147 2016 June
## 6304 Resort Hotel 1 34 2016 June
## 6305 Resort Hotel 1 98 2016 June
## 6306 Resort Hotel 1 250 2016 June
## 6307 Resort Hotel 1 101 2016 June
## 6308 Resort Hotel 1 139 2016 June
## 6309 Resort Hotel 0 237 2016 June
## 6310 Resort Hotel 1 237 2016 June
## 6311 Resort Hotel 1 91 2016 June
## 6312 Resort Hotel 1 20 2016 June
## 6313 Resort Hotel 1 54 2016 June
## 6314 Resort Hotel 1 182 2016 June
## 6315 Resort Hotel 1 182 2016 June
## 6316 Resort Hotel 1 182 2016 June
## 6317 Resort Hotel 1 182 2016 June
## 6318 Resort Hotel 1 182 2016 June
## 6319 Resort Hotel 1 150 2016 June
## 6320 Resort Hotel 1 182 2016 June
## 6321 Resort Hotel 1 182 2016 June
## 6322 Resort Hotel 1 182 2016 June
## 6323 Resort Hotel 1 122 2016 June
## 6324 Resort Hotel 1 122 2016 June
## 6325 Resort Hotel 1 81 2016 June
## 6326 Resort Hotel 1 182 2016 June
## 6327 Resort Hotel 0 270 2016 June
## 6328 Resort Hotel 1 237 2016 June
## 6329 Resort Hotel 1 143 2016 June
## 6330 Resort Hotel 1 227 2016 June
## 6331 Resort Hotel 1 198 2016 June
## 6332 Resort Hotel 1 44 2016 June
## 6333 Resort Hotel 1 136 2016 June
## 6334 Resort Hotel 0 294 2016 June
## 6335 Resort Hotel 0 227 2016 June
## 6336 Resort Hotel 0 216 2016 June
## 6337 Resort Hotel 0 219 2016 June
## 6338 Resort Hotel 0 270 2016 June
## 6339 Resort Hotel 0 319 2016 June
## 6340 Resort Hotel 0 319 2016 June
## 6341 Resort Hotel 1 264 2016 June
## 6342 Resort Hotel 1 264 2016 June
## 6343 Resort Hotel 1 264 2016 June
## 6344 Resort Hotel 1 157 2016 June
## 6345 Resort Hotel 1 37 2016 June
## 6346 Resort Hotel 1 113 2016 June
## 6347 Resort Hotel 1 130 2016 June
## 6348 Resort Hotel 1 144 2016 June
## 6349 Resort Hotel 1 128 2016 June
## 6350 Resort Hotel 1 78 2016 June
## 6351 Resort Hotel 1 151 2016 June
## 6352 Resort Hotel 1 161 2016 June
## 6353 Resort Hotel 0 252 2016 June
## 6354 Resort Hotel 1 290 2016 June
## 6355 Resort Hotel 0 250 2016 June
## 6356 Resort Hotel 1 2 2016 June
## 6357 Resort Hotel 1 29 2016 June
## 6358 Resort Hotel 1 6 2016 June
## 6359 Resort Hotel 1 46 2016 June
## 6360 Resort Hotel 1 32 2016 June
## 6361 Resort Hotel 1 107 2016 June
## 6362 Resort Hotel 1 107 2016 June
## 6363 Resort Hotel 1 123 2016 June
## 6364 Resort Hotel 1 282 2016 June
## 6365 Resort Hotel 1 114 2016 June
## 6366 Resort Hotel 1 176 2016 June
## 6367 Resort Hotel 1 256 2016 June
## 6368 Resort Hotel 1 257 2016 June
## 6369 Resort Hotel 1 3 2016 June
## 6370 Resort Hotel 1 3 2016 June
## 6371 Resort Hotel 1 3 2016 June
## 6372 Resort Hotel 1 76 2016 June
## 6373 Resort Hotel 1 18 2016 June
## 6374 Resort Hotel 0 282 2016 June
## 6375 Resort Hotel 1 40 2016 June
## 6376 Resort Hotel 1 35 2016 June
## 6377 Resort Hotel 1 195 2016 June
## 6378 Resort Hotel 0 251 2016 June
## 6379 Resort Hotel 1 94 2016 June
## 6380 Resort Hotel 1 94 2016 June
## 6381 Resort Hotel 1 151 2016 June
## 6382 Resort Hotel 0 322 2016 June
## 6383 Resort Hotel 0 322 2016 June
## 6384 Resort Hotel 1 12 2016 June
## 6385 Resort Hotel 1 35 2016 June
## 6386 Resort Hotel 1 34 2016 June
## 6387 Resort Hotel 1 34 2016 June
## 6388 Resort Hotel 1 41 2016 June
## 6389 Resort Hotel 1 125 2016 June
## 6390 Resort Hotel 1 136 2016 June
## 6391 Resort Hotel 1 144 2016 June
## 6392 Resort Hotel 1 95 2016 June
## 6393 Resort Hotel 1 144 2016 June
## 6394 Resort Hotel 1 125 2016 June
## 6395 Resort Hotel 0 323 2016 June
## 6396 Resort Hotel 1 58 2016 June
## 6397 Resort Hotel 0 229 2016 June
## 6398 Resort Hotel 1 151 2016 June
## 6399 Resort Hotel 0 215 2016 June
## 6400 Resort Hotel 1 24 2016 June
## 6401 Resort Hotel 1 21 2016 June
## 6402 Resort Hotel 1 160 2016 June
## 6403 Resort Hotel 0 291 2016 June
## 6404 Resort Hotel 1 97 2016 June
## 6405 Resort Hotel 1 142 2016 June
## 6406 Resort Hotel 1 14 2016 June
## 6407 Resort Hotel 1 131 2016 June
## 6408 Resort Hotel 1 152 2016 June
## 6409 Resort Hotel 0 253 2016 June
## 6410 Resort Hotel 1 59 2016 June
## 6411 Resort Hotel 1 269 2016 June
## 6412 Resort Hotel 1 229 2016 June
## 6413 Resort Hotel 1 286 2016 June
## 6414 Resort Hotel 1 143 2016 June
## 6415 Resort Hotel 1 15 2016 June
## 6416 Resort Hotel 1 15 2016 June
## 6417 Resort Hotel 0 141 2016 June
## 6418 Resort Hotel 1 57 2016 June
## 6419 Resort Hotel 1 240 2016 June
## 6420 Resort Hotel 1 93 2016 June
## 6421 Resort Hotel 1 162 2016 June
## 6422 Resort Hotel 1 151 2016 June
## 6423 Resort Hotel 0 269 2016 June
## 6424 Resort Hotel 1 142 2016 June
## 6425 Resort Hotel 1 129 2016 June
## 6426 Resort Hotel 1 17 2016 June
## 6427 Resort Hotel 1 17 2016 June
## 6428 Resort Hotel 0 266 2016 June
## 6429 Resort Hotel 1 116 2016 June
## 6430 Resort Hotel 1 16 2016 June
## 6431 Resort Hotel 1 155 2016 June
## 6432 Resort Hotel 0 255 2016 June
## 6433 Resort Hotel 1 271 2016 June
## 6434 Resort Hotel 1 271 2016 June
## 6435 Resort Hotel 1 271 2016 June
## 6436 Resort Hotel 1 16 2016 June
## 6437 Resort Hotel 1 17 2016 June
## 6438 Resort Hotel 1 115 2016 June
## 6439 Resort Hotel 0 220 2016 June
## 6440 Resort Hotel 1 191 2016 June
## 6441 Resort Hotel 0 241 2016 June
## 6442 Resort Hotel 0 220 2016 June
## 6443 Resort Hotel 1 57 2016 June
## 6444 Resort Hotel 1 120 2016 June
## 6445 Resort Hotel 1 227 2016 June
## 6446 Resort Hotel 0 241 2016 June
## 6447 Resort Hotel 1 227 2016 June
## 6448 Resort Hotel 1 184 2016 June
## 6449 Resort Hotel 1 277 2016 June
## 6450 Resort Hotel 1 277 2016 June
## 6451 Resort Hotel 1 277 2016 June
## 6452 Resort Hotel 1 277 2016 June
## 6453 Resort Hotel 1 277 2016 June
## 6454 Resort Hotel 1 277 2016 June
## 6455 Resort Hotel 1 277 2016 June
## 6456 Resort Hotel 1 277 2016 June
## 6457 Resort Hotel 1 277 2016 June
## 6458 Resort Hotel 1 277 2016 June
## 6459 Resort Hotel 1 277 2016 June
## 6460 Resort Hotel 1 277 2016 June
## 6461 Resort Hotel 1 277 2016 June
## 6462 Resort Hotel 1 277 2016 June
## 6463 Resort Hotel 1 277 2016 June
## 6464 Resort Hotel 1 277 2016 June
## 6465 Resort Hotel 1 55 2016 June
## 6466 Resort Hotel 0 19 2016 June
## 6467 Resort Hotel 1 55 2016 June
## 6468 Resort Hotel 1 36 2016 June
## 6469 Resort Hotel 1 277 2016 June
## 6470 Resort Hotel 1 277 2016 June
## 6471 Resort Hotel 1 277 2016 June
## 6472 Resort Hotel 1 277 2016 June
## 6473 Resort Hotel 1 277 2016 June
## 6474 Resort Hotel 1 277 2016 June
## 6475 Resort Hotel 1 277 2016 June
## 6476 Resort Hotel 1 277 2016 June
## 6477 Resort Hotel 1 277 2016 June
## 6478 Resort Hotel 1 277 2016 June
## 6479 Resort Hotel 1 277 2016 June
## 6480 Resort Hotel 1 277 2016 June
## 6481 Resort Hotel 1 17 2016 June
## 6482 Resort Hotel 1 199 2016 June
## 6483 Resort Hotel 1 149 2016 June
## 6484 Resort Hotel 1 40 2016 June
## 6485 Resort Hotel 1 141 2016 June
## 6486 Resort Hotel 1 70 2016 June
## 6487 Resort Hotel 0 328 2016 June
## 6488 Resort Hotel 1 221 2016 June
## 6489 Resort Hotel 0 221 2016 June
## 6490 Resort Hotel 1 65 2016 June
## 6491 Resort Hotel 1 150 2016 June
## 6492 Resort Hotel 0 259 2016 June
## 6493 Resort Hotel 1 0 2016 June
## 6494 Resort Hotel 1 32 2016 June
## 6495 Resort Hotel 1 72 2016 June
## 6496 Resort Hotel 1 146 2016 June
## 6497 Resort Hotel 1 39 2016 June
## 6498 Resort Hotel 1 206 2016 June
## 6499 Resort Hotel 1 206 2016 June
## 6500 Resort Hotel 1 65 2016 June
## 6501 Resort Hotel 1 50 2016 June
## 6502 Resort Hotel 1 50 2016 June
## 6503 Resort Hotel 1 114 2016 June
## 6504 Resort Hotel 1 205 2016 June
## 6505 Resort Hotel 0 217 2016 June
## 6506 Resort Hotel 0 223 2016 June
## 6507 Resort Hotel 0 223 2016 June
## 6508 Resort Hotel 1 112 2016 June
## 6509 Resort Hotel 0 217 2016 June
## 6510 Resort Hotel 1 223 2016 June
## 6511 Resort Hotel 0 145 2016 June
## 6512 Resort Hotel 1 223 2016 June
## 6513 Resort Hotel 1 166 2016 June
## 6514 Resort Hotel 1 104 2016 June
## 6515 Resort Hotel 1 248 2016 June
## 6516 Resort Hotel 1 147 2016 June
## 6517 Resort Hotel 1 97 2016 June
## 6518 Resort Hotel 1 62 2016 June
## 6519 Resort Hotel 1 110 2016 June
## 6520 Resort Hotel 1 95 2016 June
## 6521 Resort Hotel 1 98 2016 June
## 6522 Resort Hotel 1 330 2016 June
## 6523 Resort Hotel 0 225 2016 June
## 6524 Resort Hotel 0 231 2016 June
## 6525 Resort Hotel 0 231 2016 June
## 6526 Resort Hotel 0 268 2016 June
## 6527 Resort Hotel 1 274 2016 June
## 6528 Resort Hotel 0 250 2016 June
## 6529 Resort Hotel 0 268 2016 June
## 6530 Resort Hotel 1 249 2016 June
## 6531 Resort Hotel 0 246 2016 June
## 6532 Resort Hotel 1 83 2016 June
## 6533 Resort Hotel 1 85 2016 June
## 6534 Resort Hotel 1 40 2016 June
## 6535 Resort Hotel 1 37 2016 June
## 6536 Resort Hotel 1 37 2016 June
## 6537 Resort Hotel 1 250 2016 June
## 6538 Resort Hotel 0 234 2016 June
## 6539 Resort Hotel 1 275 2016 June
## 6540 Resort Hotel 1 73 2016 June
## 6541 Resort Hotel 1 21 2016 June
## 6542 Resort Hotel 0 247 2016 June
## 6543 Resort Hotel 1 32 2016 June
## 6544 Resort Hotel 1 37 2016 June
## 6545 Resort Hotel 1 37 2016 June
## 6546 Resort Hotel 1 32 2016 June
## 6547 Resort Hotel 1 43 2016 June
## 6548 Resort Hotel 1 72 2016 June
## 6549 Resort Hotel 1 92 2016 June
## 6550 Resort Hotel 1 61 2016 June
## 6551 Resort Hotel 0 221 2016 June
## 6552 Resort Hotel 1 60 2016 June
## 6553 Resort Hotel 1 155 2016 June
## 6554 Resort Hotel 1 73 2016 June
## 6555 Resort Hotel 0 228 2016 June
## 6556 Resort Hotel 1 174 2016 June
## 6557 Resort Hotel 0 273 2016 June
## 6558 Resort Hotel 0 300 2016 June
## 6559 Resort Hotel 0 273 2016 June
## 6560 Resort Hotel 1 256 2016 June
## 6561 Resort Hotel 0 246 2016 June
## 6562 Resort Hotel 0 248 2016 June
## 6563 Resort Hotel 1 304 2016 June
## 6564 Resort Hotel 1 23 2016 June
## 6565 Resort Hotel 1 67 2016 June
## 6566 Resort Hotel 1 10 2016 June
## 6567 Resort Hotel 1 23 2016 June
## 6568 Resort Hotel 1 12 2016 June
## 6569 Resort Hotel 1 81 2016 June
## 6570 Resort Hotel 1 62 2016 June
## 6571 Resort Hotel 1 117 2016 June
## 6572 Resort Hotel 1 250 2016 June
## 6573 Resort Hotel 1 301 2016 June
## 6574 Resort Hotel 0 250 2016 June
## 6575 Resort Hotel 1 228 2016 June
## 6576 Resort Hotel 1 250 2016 June
## 6577 Resort Hotel 0 256 2016 June
## 6578 Resort Hotel 1 231 2016 June
## 6579 Resort Hotel 1 164 2016 June
## 6580 Resort Hotel 0 241 2016 June
## 6581 Resort Hotel 1 291 2016 June
## 6582 Resort Hotel 0 241 2016 June
## 6583 Resort Hotel 0 249 2016 June
## 6584 Resort Hotel 0 249 2016 June
## 6585 Resort Hotel 1 175 2016 June
## 6586 Resort Hotel 0 143 2016 June
## 6587 Resort Hotel 1 81 2016 June
## 6588 Resort Hotel 1 5 2016 June
## 6589 Resort Hotel 0 267 2016 June
## 6590 Resort Hotel 0 267 2016 June
## 6591 Resort Hotel 1 163 2016 June
## 6592 Resort Hotel 1 235 2016 June
## 6593 Resort Hotel 1 128 2016 June
## 6594 Resort Hotel 1 128 2016 June
## 6595 Resort Hotel 1 128 2016 June
## 6596 Resort Hotel 1 128 2016 June
## 6597 Resort Hotel 1 185 2016 June
## 6598 Resort Hotel 1 11 2016 June
## 6599 Resort Hotel 0 244 2016 June
## 6600 Resort Hotel 1 177 2016 June
## 6601 Resort Hotel 1 177 2016 June
## 6602 Resort Hotel 1 177 2016 June
## 6603 Resort Hotel 1 177 2016 June
## 6604 Resort Hotel 1 191 2016 June
## 6605 Resort Hotel 1 177 2016 June
## 6606 Resort Hotel 0 271 2016 June
## 6607 Resort Hotel 1 177 2016 June
## 6608 Resort Hotel 1 177 2016 June
## 6609 Resort Hotel 1 177 2016 June
## 6610 Resort Hotel 1 177 2016 June
## 6611 Resort Hotel 1 177 2016 June
## 6612 Resort Hotel 1 167 2016 June
## 6613 Resort Hotel 1 152 2016 June
## 6614 Resort Hotel 1 152 2016 June
## 6615 Resort Hotel 0 306 2016 June
## 6616 Resort Hotel 1 216 2016 June
## 6617 Resort Hotel 0 304 2016 June
## 6618 Resort Hotel 0 294 2016 June
## 6619 Resort Hotel 1 293 2016 June
## 6620 Resort Hotel 1 293 2016 June
## 6621 Resort Hotel 1 293 2016 June
## 6622 Resort Hotel 1 293 2016 June
## 6623 Resort Hotel 1 293 2016 June
## 6624 Resort Hotel 1 203 2016 June
## 6625 Resort Hotel 1 294 2016 June
## 6626 Resort Hotel 1 309 2016 June
## 6627 Resort Hotel 0 227 2016 June
## 6628 Resort Hotel 1 155 2016 June
## 6629 Resort Hotel 0 272 2016 June
## 6630 Resort Hotel 1 167 2016 June
## 6631 Resort Hotel 1 124 2016 June
## 6632 Resort Hotel 1 242 2016 June
## 6633 Resort Hotel 0 237 2016 June
## 6634 Resort Hotel 0 237 2016 June
## 6635 Resort Hotel 1 127 2016 June
## 6636 Resort Hotel 0 235 2016 June
## 6637 Resort Hotel 1 247 2016 June
## 6638 Resort Hotel 0 322 2016 June
## 6639 Resort Hotel 0 322 2016 June
## 6640 Resort Hotel 0 253 2016 June
## 6641 Resort Hotel 0 322 2016 June
## 6642 Resort Hotel 0 322 2016 June
## 6643 Resort Hotel 0 322 2016 June
## 6644 Resort Hotel 0 322 2016 June
## 6645 Resort Hotel 0 322 2016 June
## 6646 Resort Hotel 0 322 2016 June
## 6647 Resort Hotel 0 253 2016 June
## 6648 Resort Hotel 1 29 2016 June
## 6649 Resort Hotel 0 322 2016 June
## 6650 Resort Hotel 0 322 2016 June
## 6651 Resort Hotel 0 253 2016 June
## 6652 Resort Hotel 0 253 2016 June
## 6653 Resort Hotel 0 322 2016 June
## 6654 Resort Hotel 0 322 2016 June
## 6655 Resort Hotel 0 247 2016 June
## 6656 Resort Hotel 0 322 2016 June
## 6657 Resort Hotel 1 2 2016 June
## 6658 Resort Hotel 0 253 2016 June
## 6659 Resort Hotel 0 322 2016 June
## 6660 Resort Hotel 0 322 2016 June
## 6661 Resort Hotel 0 322 2016 June
## 6662 Resort Hotel 0 322 2016 June
## 6663 Resort Hotel 0 322 2016 June
## 6664 Resort Hotel 1 267 2016 June
## 6665 Resort Hotel 1 0 2016 June
## 6666 Resort Hotel 1 267 2016 June
## 6667 Resort Hotel 1 295 2016 June
## 6668 Resort Hotel 1 295 2016 June
## 6669 Resort Hotel 0 322 2016 June
## 6670 Resort Hotel 1 3 2016 June
## 6671 Resort Hotel 0 2 2016 June
## 6672 Resort Hotel 1 128 2016 June
## 6673 Resort Hotel 1 155 2016 June
## 6674 Resort Hotel 1 18 2016 June
## 6675 Resort Hotel 1 225 2016 June
## 6676 Resort Hotel 1 225 2016 June
## 6677 Resort Hotel 0 286 2016 June
## 6678 Resort Hotel 1 131 2016 June
## 6679 Resort Hotel 0 286 2016 June
## 6680 Resort Hotel 0 262 2016 June
## 6681 Resort Hotel 0 227 2016 June
## 6682 Resort Hotel 1 11 2016 June
## 6683 Resort Hotel 1 3 2016 June
## 6684 Resort Hotel 1 13 2016 June
## 6685 Resort Hotel 1 284 2016 June
## 6686 Resort Hotel 0 252 2016 June
## 6687 Resort Hotel 1 294 2016 June
## 6688 Resort Hotel 0 291 2016 June
## 6689 Resort Hotel 0 232 2016 June
## 6690 Resort Hotel 0 310 2016 June
## 6691 Resort Hotel 0 232 2016 June
## 6692 Resort Hotel 1 170 2016 June
## 6693 Resort Hotel 1 170 2016 June
## 6694 Resort Hotel 1 0 2016 June
## 6695 Resort Hotel 1 170 2016 June
## 6696 Resort Hotel 1 3 2016 June
## 6697 Resort Hotel 1 24 2016 June
## 6698 Resort Hotel 1 4 2016 June
## 6699 Resort Hotel 1 75 2016 June
## 6700 Resort Hotel 1 234 2016 June
## 6701 Resort Hotel 1 127 2016 June
## 6702 Resort Hotel 1 112 2016 June
## 6703 Resort Hotel 0 229 2016 June
## 6704 Resort Hotel 1 165 2016 June
## 6705 Resort Hotel 1 226 2016 June
## 6706 Resort Hotel 1 117 2016 June
## 6707 Resort Hotel 1 196 2016 June
## 6708 Resort Hotel 0 285 2016 June
## 6709 Resort Hotel 0 241 2016 June
## 6710 Resort Hotel 0 3 2016 June
## 6711 Resort Hotel 1 92 2016 June
## 6712 Resort Hotel 1 92 2016 June
## 6713 Resort Hotel 1 94 2016 June
## 6714 Resort Hotel 1 90 2016 June
## 6715 Resort Hotel 1 90 2016 June
## 6716 Resort Hotel 1 123 2016 June
## 6717 Resort Hotel 0 227 2016 June
## 6718 Resort Hotel 1 172 2016 June
## 6719 Resort Hotel 1 105 2016 June
## 6720 Resort Hotel 1 116 2016 June
## 6721 Resort Hotel 1 116 2016 June
## 6722 Resort Hotel 1 105 2016 June
## 6723 Resort Hotel 0 274 2016 June
## 6724 Resort Hotel 1 0 2016 June
## 6725 Resort Hotel 1 47 2016 June
## 6726 Resort Hotel 1 5 2016 June
## 6727 Resort Hotel 1 26 2016 June
## 6728 Resort Hotel 1 10 2016 June
## 6729 Resort Hotel 1 167 2016 June
## 6730 Resort Hotel 1 91 2016 June
## 6731 Resort Hotel 1 198 2016 June
## 6732 Resort Hotel 0 247 2016 June
## 6733 Resort Hotel 1 172 2016 June
## 6734 Resort Hotel 1 174 2016 June
## 6735 Resort Hotel 1 174 2016 June
## 6736 Resort Hotel 1 184 2016 June
## 6737 Resort Hotel 0 240 2016 June
## 6738 Resort Hotel 1 171 2016 June
## 6739 Resort Hotel 0 290 2016 June
## 6740 Resort Hotel 1 172 2016 June
## 6741 Resort Hotel 0 244 2016 June
## 6742 Resort Hotel 1 246 2016 June
## 6743 Resort Hotel 1 174 2016 June
## 6744 Resort Hotel 1 106 2016 June
## 6745 Resort Hotel 0 241 2016 June
## 6746 Resort Hotel 0 230 2016 June
## 6747 Resort Hotel 0 237 2016 June
## 6748 Resort Hotel 0 237 2016 June
## 6749 Resort Hotel 1 266 2016 June
## 6750 Resort Hotel 0 237 2016 June
## 6751 Resort Hotel 0 314 2016 June
## 6752 Resort Hotel 1 208 2016 June
## 6753 Resort Hotel 0 295 2016 June
## 6754 Resort Hotel 1 114 2016 June
## 6755 Resort Hotel 1 166 2016 June
## 6756 Resort Hotel 0 186 2016 June
## 6757 Resort Hotel 0 186 2016 June
## 6758 Resort Hotel 1 168 2016 June
## 6759 Resort Hotel 1 2 2016 June
## 6760 Resort Hotel 1 78 2016 June
## 6761 Resort Hotel 1 20 2016 June
## 6762 Resort Hotel 1 159 2016 June
## 6763 Resort Hotel 1 32 2016 June
## 6764 Resort Hotel 1 201 2016 June
## 6765 Resort Hotel 1 164 2016 June
## 6766 Resort Hotel 1 68 2016 July
## 6767 Resort Hotel 1 62 2016 July
## 6768 Resort Hotel 1 9 2016 July
## 6769 Resort Hotel 1 255 2016 July
## 6770 Resort Hotel 0 254 2016 July
## 6771 Resort Hotel 1 178 2016 July
## 6772 Resort Hotel 1 170 2016 July
## 6773 Resort Hotel 1 220 2016 July
## 6774 Resort Hotel 1 220 2016 July
## 6775 Resort Hotel 0 0 2016 July
## 6776 Resort Hotel 1 301 2016 July
## 6777 Resort Hotel 1 301 2016 July
## 6778 Resort Hotel 0 304 2016 July
## 6779 Resort Hotel 0 305 2016 July
## 6780 Resort Hotel 1 164 2016 July
## 6781 Resort Hotel 1 68 2016 July
## 6782 Resort Hotel 0 305 2016 July
## 6783 Resort Hotel 0 241 2016 July
## 6784 Resort Hotel 1 170 2016 July
## 6785 Resort Hotel 1 170 2016 July
## 6786 Resort Hotel 1 73 2016 July
## 6787 Resort Hotel 1 189 2016 July
## 6788 Resort Hotel 1 179 2016 July
## 6789 Resort Hotel 0 273 2016 July
## 6790 Resort Hotel 1 179 2016 July
## 6791 Resort Hotel 1 170 2016 July
## 6792 Resort Hotel 1 171 2016 July
## 6793 Resort Hotel 1 172 2016 July
## 6794 Resort Hotel 1 264 2016 July
## 6795 Resort Hotel 1 203 2016 July
## 6796 Resort Hotel 0 248 2016 July
## 6797 Resort Hotel 1 179 2016 July
## 6798 Resort Hotel 0 236 2016 July
## 6799 Resort Hotel 1 172 2016 July
## 6800 Resort Hotel 1 138 2016 July
## 6801 Resort Hotel 0 149 2016 July
## 6802 Resort Hotel 1 138 2016 July
## 6803 Resort Hotel 1 266 2016 July
## 6804 Resort Hotel 1 138 2016 July
## 6805 Resort Hotel 0 243 2016 July
## 6806 Resort Hotel 1 178 2016 July
## 6807 Resort Hotel 1 265 2016 July
## 6808 Resort Hotel 1 152 2016 July
## 6809 Resort Hotel 1 169 2016 July
## 6810 Resort Hotel 1 265 2016 July
## 6811 Resort Hotel 1 139 2016 July
## 6812 Resort Hotel 1 139 2016 July
## 6813 Resort Hotel 1 265 2016 July
## 6814 Resort Hotel 1 167 2016 July
## 6815 Resort Hotel 1 265 2016 July
## 6816 Resort Hotel 1 314 2016 July
## 6817 Resort Hotel 0 349 2016 July
## 6818 Resort Hotel 1 208 2016 July
## 6819 Resort Hotel 1 15 2016 July
## 6820 Resort Hotel 1 18 2016 July
## 6821 Resort Hotel 1 38 2016 July
## 6822 Resort Hotel 0 256 2016 July
## 6823 Resort Hotel 0 317 2016 July
## 6824 Resort Hotel 0 317 2016 July
## 6825 Resort Hotel 1 166 2016 July
## 6826 Resort Hotel 1 171 2016 July
## 6827 Resort Hotel 1 166 2016 July
## 6828 Resort Hotel 1 308 2016 July
## 6829 Resort Hotel 0 166 2016 July
## 6830 Resort Hotel 1 398 2016 July
## 6831 Resort Hotel 0 166 2016 July
## 6832 Resort Hotel 1 175 2016 July
## 6833 Resort Hotel 1 261 2016 July
## 6834 Resort Hotel 0 198 2016 July
## 6835 Resort Hotel 0 255 2016 July
## 6836 Resort Hotel 0 198 2016 July
## 6837 Resort Hotel 1 211 2016 July
## 6838 Resort Hotel 0 272 2016 July
## 6839 Resort Hotel 1 172 2016 July
## 6840 Resort Hotel 0 272 2016 July
## 6841 Resort Hotel 0 272 2016 July
## 6842 Resort Hotel 0 273 2016 July
## 6843 Resort Hotel 0 283 2016 July
## 6844 Resort Hotel 1 16 2016 July
## 6845 Resort Hotel 1 9 2016 July
## 6846 Resort Hotel 1 180 2016 July
## 6847 Resort Hotel 0 317 2016 July
## 6848 Resort Hotel 1 34 2016 July
## 6849 Resort Hotel 1 179 2016 July
## 6850 Resort Hotel 0 292 2016 July
## 6851 Resort Hotel 1 8 2016 July
## 6852 Resort Hotel 1 24 2016 July
## 6853 Resort Hotel 1 123 2016 July
## 6854 Resort Hotel 1 15 2016 July
## 6855 Resort Hotel 0 240 2016 July
## 6856 Resort Hotel 1 324 2016 July
## 6857 Resort Hotel 1 178 2016 July
## 6858 Resort Hotel 1 181 2016 July
## 6859 Resort Hotel 1 259 2016 July
## 6860 Resort Hotel 0 323 2016 July
## 6861 Resort Hotel 1 18 2016 July
## 6862 Resort Hotel 1 10 2016 July
## 6863 Resort Hotel 1 24 2016 July
## 6864 Resort Hotel 1 144 2016 July
## 6865 Resort Hotel 1 14 2016 July
## 6866 Resort Hotel 1 23 2016 July
## 6867 Resort Hotel 1 16 2016 July
## 6868 Resort Hotel 1 23 2016 July
## 6869 Resort Hotel 1 22 2016 July
## 6870 Resort Hotel 1 40 2016 July
## 6871 Resort Hotel 1 135 2016 July
## 6872 Resort Hotel 0 272 2016 July
## 6873 Resort Hotel 1 209 2016 July
## 6874 Resort Hotel 1 309 2016 July
## 6875 Resort Hotel 1 241 2016 July
## 6876 Resort Hotel 1 147 2016 July
## 6877 Resort Hotel 1 113 2016 July
## 6878 Resort Hotel 1 191 2016 July
## 6879 Resort Hotel 1 241 2016 July
## 6880 Resort Hotel 1 142 2016 July
## 6881 Resort Hotel 0 254 2016 July
## 6882 Resort Hotel 1 2 2016 July
## 6883 Resort Hotel 1 22 2016 July
## 6884 Resort Hotel 1 11 2016 July
## 6885 Resort Hotel 1 180 2016 July
## 6886 Resort Hotel 1 291 2016 July
## 6887 Resort Hotel 1 180 2016 July
## 6888 Resort Hotel 1 327 2016 July
## 6889 Resort Hotel 1 185 2016 July
## 6890 Resort Hotel 1 227 2016 July
## 6891 Resort Hotel 1 180 2016 July
## 6892 Resort Hotel 1 120 2016 July
## 6893 Resort Hotel 1 127 2016 July
## 6894 Resort Hotel 1 262 2016 July
## 6895 Resort Hotel 0 290 2016 July
## 6896 Resort Hotel 1 262 2016 July
## 6897 Resort Hotel 1 262 2016 July
## 6898 Resort Hotel 0 303 2016 July
## 6899 Resort Hotel 1 207 2016 July
## 6900 Resort Hotel 0 356 2016 July
## 6901 Resort Hotel 0 292 2016 July
## 6902 Resort Hotel 1 149 2016 July
## 6903 Resort Hotel 1 146 2016 July
## 6904 Resort Hotel 0 292 2016 July
## 6905 Resort Hotel 0 292 2016 July
## 6906 Resort Hotel 1 35 2016 July
## 6907 Resort Hotel 1 187 2016 July
## 6908 Resort Hotel 1 146 2016 July
## 6909 Resort Hotel 1 7 2016 July
## 6910 Resort Hotel 1 159 2016 July
## 6911 Resort Hotel 1 133 2016 July
## 6912 Resort Hotel 1 144 2016 July
## 6913 Resort Hotel 1 26 2016 July
## 6914 Resort Hotel 0 276 2016 July
## 6915 Resort Hotel 1 294 2016 July
## 6916 Resort Hotel 1 273 2016 July
## 6917 Resort Hotel 1 275 2016 July
## 6918 Resort Hotel 1 103 2016 July
## 6919 Resort Hotel 1 126 2016 July
## 6920 Resort Hotel 1 245 2016 July
## 6921 Resort Hotel 0 424 2016 July
## 6922 Resort Hotel 1 165 2016 July
## 6923 Resort Hotel 1 177 2016 July
## 6924 Resort Hotel 1 284 2016 July
## 6925 Resort Hotel 1 140 2016 July
## 6926 Resort Hotel 1 12 2016 July
## 6927 Resort Hotel 1 24 2016 July
## 6928 Resort Hotel 1 134 2016 July
## 6929 Resort Hotel 1 141 2016 July
## 6930 Resort Hotel 1 24 2016 July
## 6931 Resort Hotel 1 134 2016 July
## 6932 Resort Hotel 1 141 2016 July
## 6933 Resort Hotel 0 309 2016 July
## 6934 Resort Hotel 1 44 2016 July
## 6935 Resort Hotel 1 29 2016 July
## 6936 Resort Hotel 1 100 2016 July
## 6937 Resort Hotel 1 244 2016 July
## 6938 Resort Hotel 1 277 2016 July
## 6939 Resort Hotel 1 277 2016 July
## 6940 Resort Hotel 1 277 2016 July
## 6941 Resort Hotel 1 277 2016 July
## 6942 Resort Hotel 1 218 2016 July
## 6943 Resort Hotel 1 244 2016 July
## 6944 Resort Hotel 1 244 2016 July
## 6945 Resort Hotel 1 277 2016 July
## 6946 Resort Hotel 0 298 2016 July
## 6947 Resort Hotel 1 100 2016 July
## 6948 Resort Hotel 1 90 2016 July
## 6949 Resort Hotel 1 88 2016 July
## 6950 Resort Hotel 1 26 2016 July
## 6951 Resort Hotel 1 23 2016 July
## 6952 Resort Hotel 1 82 2016 July
## 6953 Resort Hotel 1 23 2016 July
## 6954 Resort Hotel 1 80 2016 July
## 6955 Resort Hotel 1 95 2016 July
## 6956 Resort Hotel 1 74 2016 July
## 6957 Resort Hotel 0 259 2016 July
## 6958 Resort Hotel 1 217 2016 July
## 6959 Resort Hotel 1 28 2016 July
## 6960 Resort Hotel 1 102 2016 July
## 6961 Resort Hotel 1 35 2016 July
## 6962 Resort Hotel 1 50 2016 July
## 6963 Resort Hotel 1 74 2016 July
## 6964 Resort Hotel 1 279 2016 July
## 6965 Resort Hotel 1 72 2016 July
## 6966 Resort Hotel 1 10 2016 July
## 6967 Resort Hotel 1 297 2016 July
## 6968 Resort Hotel 1 72 2016 July
## 6969 Resort Hotel 1 16 2016 July
## 6970 Resort Hotel 1 331 2016 July
## 6971 Resort Hotel 0 311 2016 July
## 6972 Resort Hotel 0 248 2016 July
## 6973 Resort Hotel 1 63 2016 July
## 6974 Resort Hotel 1 0 2016 July
## 6975 Resort Hotel 1 67 2016 July
## 6976 Resort Hotel 1 25 2016 July
## 6977 Resort Hotel 1 54 2016 July
## 6978 Resort Hotel 1 23 2016 July
## 6979 Resort Hotel 1 0 2016 July
## 6980 Resort Hotel 1 333 2016 July
## 6981 Resort Hotel 1 333 2016 July
## 6982 Resort Hotel 1 333 2016 July
## 6983 Resort Hotel 1 333 2016 July
## 6984 Resort Hotel 1 333 2016 July
## 6985 Resort Hotel 1 333 2016 July
## 6986 Resort Hotel 1 51 2016 July
## 6987 Resort Hotel 1 66 2016 July
## 6988 Resort Hotel 1 216 2016 July
## 6989 Resort Hotel 1 66 2016 July
## 6990 Resort Hotel 1 305 2016 July
## 6991 Resort Hotel 1 305 2016 July
## 6992 Resort Hotel 1 143 2016 July
## 6993 Resort Hotel 1 172 2016 July
## 6994 Resort Hotel 1 191 2016 July
## 6995 Resort Hotel 1 138 2016 July
## 6996 Resort Hotel 1 83 2016 July
## 6997 Resort Hotel 1 58 2016 July
## 6998 Resort Hotel 1 103 2016 July
## 6999 Resort Hotel 1 35 2016 July
## 7000 Resort Hotel 1 20 2016 July
## 7001 Resort Hotel 1 19 2016 July
## 7002 Resort Hotel 1 19 2016 July
## 7003 Resort Hotel 1 66 2016 July
## 7004 Resort Hotel 1 66 2016 July
## 7005 Resort Hotel 1 17 2016 July
## 7006 Resort Hotel 1 152 2016 July
## 7007 Resort Hotel 1 177 2016 July
## 7008 Resort Hotel 1 20 2016 July
## 7009 Resort Hotel 1 144 2016 July
## 7010 Resort Hotel 1 155 2016 July
## 7011 Resort Hotel 1 177 2016 July
## 7012 Resort Hotel 1 109 2016 July
## 7013 Resort Hotel 1 109 2016 July
## 7014 Resort Hotel 1 113 2016 July
## 7015 Resort Hotel 1 144 2016 July
## 7016 Resort Hotel 1 144 2016 July
## 7017 Resort Hotel 1 144 2016 July
## 7018 Resort Hotel 1 234 2016 July
## 7019 Resort Hotel 1 109 2016 July
## 7020 Resort Hotel 1 108 2016 July
## 7021 Resort Hotel 1 105 2016 July
## 7022 Resort Hotel 1 162 2016 July
## 7023 Resort Hotel 1 281 2016 July
## 7024 Resort Hotel 1 164 2016 July
## 7025 Resort Hotel 1 165 2016 July
## 7026 Resort Hotel 1 203 2016 July
## 7027 Resort Hotel 1 146 2016 July
## 7028 Resort Hotel 1 263 2016 July
## 7029 Resort Hotel 1 137 2016 July
## 7030 Resort Hotel 1 21 2016 July
## 7031 Resort Hotel 1 107 2016 July
## 7032 Resort Hotel 1 203 2016 July
## 7033 Resort Hotel 1 15 2016 July
## 7034 Resort Hotel 1 136 2016 July
## 7035 Resort Hotel 1 193 2016 July
## 7036 Resort Hotel 1 181 2016 July
## 7037 Resort Hotel 1 184 2016 July
## 7038 Resort Hotel 1 181 2016 July
## 7039 Resort Hotel 1 181 2016 July
## 7040 Resort Hotel 1 181 2016 July
## 7041 Resort Hotel 1 181 2016 July
## 7042 Resort Hotel 1 125 2016 July
## 7043 Resort Hotel 1 185 2016 July
## 7044 Resort Hotel 1 165 2016 July
## 7045 Resort Hotel 1 0 2016 July
## 7046 Resort Hotel 1 6 2016 July
## 7047 Resort Hotel 1 0 2016 July
## 7048 Resort Hotel 1 200 2016 July
## 7049 Resort Hotel 1 15 2016 July
## 7050 Resort Hotel 1 200 2016 July
## 7051 Resort Hotel 1 46 2016 July
## 7052 Resort Hotel 1 200 2016 July
## 7053 Resort Hotel 1 182 2016 July
## 7054 Resort Hotel 1 99 2016 July
## 7055 Resort Hotel 1 100 2016 July
## 7056 Resort Hotel 1 130 2016 July
## 7057 Resort Hotel 1 224 2016 July
## 7058 Resort Hotel 1 182 2016 July
## 7059 Resort Hotel 1 119 2016 July
## 7060 Resort Hotel 1 109 2016 July
## 7061 Resort Hotel 1 118 2016 July
## 7062 Resort Hotel 1 93 2016 July
## 7063 Resort Hotel 0 305 2016 July
## 7064 Resort Hotel 1 14 2016 July
## 7065 Resort Hotel 0 305 2016 July
## 7066 Resort Hotel 1 167 2016 July
## 7067 Resort Hotel 0 305 2016 July
## 7068 Resort Hotel 1 25 2016 July
## 7069 Resort Hotel 1 114 2016 July
## 7070 Resort Hotel 1 261 2016 July
## 7071 Resort Hotel 1 0 2016 July
## 7072 Resort Hotel 1 17 2016 July
## 7073 Resort Hotel 1 17 2016 July
## 7074 Resort Hotel 1 46 2016 July
## 7075 Resort Hotel 1 17 2016 July
## 7076 Resort Hotel 1 174 2016 July
## 7077 Resort Hotel 1 88 2016 July
## 7078 Resort Hotel 1 119 2016 July
## 7079 Resort Hotel 1 161 2016 July
## 7080 Resort Hotel 1 29 2016 July
## 7081 Resort Hotel 1 1 2016 July
## 7082 Resort Hotel 0 266 2016 July
## 7083 Resort Hotel 0 266 2016 July
## 7084 Resort Hotel 1 114 2016 July
## 7085 Resort Hotel 1 155 2016 July
## 7086 Resort Hotel 1 29 2016 July
## 7087 Resort Hotel 1 28 2016 July
## 7088 Resort Hotel 1 155 2016 July
## 7089 Resort Hotel 1 28 2016 July
## 7090 Resort Hotel 1 163 2016 July
## 7091 Resort Hotel 1 119 2016 July
## 7092 Resort Hotel 1 2 2016 July
## 7093 Resort Hotel 1 8 2016 July
## 7094 Resort Hotel 1 55 2016 July
## 7095 Resort Hotel 1 55 2016 July
## 7096 Resort Hotel 1 106 2016 July
## 7097 Resort Hotel 1 114 2016 July
## 7098 Resort Hotel 1 114 2016 July
## 7099 Resort Hotel 1 114 2016 July
## 7100 Resort Hotel 1 106 2016 July
## 7101 Resort Hotel 1 114 2016 July
## 7102 Resort Hotel 1 37 2016 July
## 7103 Resort Hotel 1 114 2016 July
## 7104 Resort Hotel 1 114 2016 July
## 7105 Resort Hotel 1 169 2016 July
## 7106 Resort Hotel 0 306 2016 July
## 7107 Resort Hotel 1 113 2016 July
## 7108 Resort Hotel 1 10 2016 July
## 7109 Resort Hotel 1 23 2016 July
## 7110 Resort Hotel 1 23 2016 July
## 7111 Resort Hotel 1 10 2016 July
## 7112 Resort Hotel 1 112 2016 July
## 7113 Resort Hotel 1 59 2016 July
## 7114 Resort Hotel 1 99 2016 July
## 7115 Resort Hotel 1 34 2016 July
## 7116 Resort Hotel 1 59 2016 July
## 7117 Resort Hotel 1 127 2016 July
## 7118 Resort Hotel 1 147 2016 July
## 7119 Resort Hotel 1 32 2016 July
## 7120 Resort Hotel 1 40 2016 July
## 7121 Resort Hotel 1 59 2016 July
## 7122 Resort Hotel 1 139 2016 July
## 7123 Resort Hotel 1 17 2016 July
## 7124 Resort Hotel 1 209 2016 July
## 7125 Resort Hotel 1 0 2016 July
## 7126 Resort Hotel 1 31 2016 July
## 7127 Resort Hotel 1 119 2016 July
## 7128 Resort Hotel 1 142 2016 July
## 7129 Resort Hotel 1 51 2016 July
## 7130 Resort Hotel 1 110 2016 July
## 7131 Resort Hotel 1 149 2016 July
## 7132 Resort Hotel 1 74 2016 July
## 7133 Resort Hotel 1 149 2016 July
## 7134 Resort Hotel 1 149 2016 July
## 7135 Resort Hotel 1 35 2016 July
## 7136 Resort Hotel 1 59 2016 July
## 7137 Resort Hotel 1 271 2016 July
## 7138 Resort Hotel 1 209 2016 July
## 7139 Resort Hotel 1 149 2016 July
## 7140 Resort Hotel 1 162 2016 July
## 7141 Resort Hotel 1 74 2016 July
## 7142 Resort Hotel 1 149 2016 July
## 7143 Resort Hotel 1 241 2016 July
## 7144 Resort Hotel 1 111 2016 July
## 7145 Resort Hotel 1 98 2016 July
## 7146 Resort Hotel 1 162 2016 July
## 7147 Resort Hotel 1 199 2016 July
## 7148 Resort Hotel 1 339 2016 July
## 7149 Resort Hotel 1 12 2016 July
## 7150 Resort Hotel 1 12 2016 July
## 7151 Resort Hotel 1 12 2016 July
## 7152 Resort Hotel 1 12 2016 July
## 7153 Resort Hotel 1 12 2016 July
## 7154 Resort Hotel 1 191 2016 July
## 7155 Resort Hotel 1 159 2016 July
## 7156 Resort Hotel 1 110 2016 July
## 7157 Resort Hotel 1 139 2016 July
## 7158 Resort Hotel 0 284 2016 July
## 7159 Resort Hotel 1 140 2016 July
## 7160 Resort Hotel 1 200 2016 July
## 7161 Resort Hotel 1 81 2016 July
## 7162 Resort Hotel 1 48 2016 July
## 7163 Resort Hotel 1 109 2016 July
## 7164 Resort Hotel 1 186 2016 July
## 7165 Resort Hotel 0 269 2016 July
## 7166 Resort Hotel 1 42 2016 July
## 7167 Resort Hotel 1 154 2016 July
## 7168 Resort Hotel 1 24 2016 July
## 7169 Resort Hotel 1 72 2016 July
## 7170 Resort Hotel 1 42 2016 July
## 7171 Resort Hotel 1 42 2016 July
## 7172 Resort Hotel 1 48 2016 July
## 7173 Resort Hotel 1 131 2016 July
## 7174 Resort Hotel 1 262 2016 July
## 7175 Resort Hotel 1 196 2016 July
## 7176 Resort Hotel 1 174 2016 July
## 7177 Resort Hotel 1 115 2016 July
## 7178 Resort Hotel 1 145 2016 July
## 7179 Resort Hotel 1 154 2016 July
## 7180 Resort Hotel 1 115 2016 July
## 7181 Resort Hotel 1 118 2016 July
## 7182 Resort Hotel 1 118 2016 July
## 7183 Resort Hotel 1 105 2016 July
## 7184 Resort Hotel 1 5 2016 July
## 7185 Resort Hotel 1 0 2016 July
## 7186 Resort Hotel 1 173 2016 July
## 7187 Resort Hotel 1 105 2016 July
## 7188 Resort Hotel 0 83 2016 July
## 7189 Resort Hotel 1 105 2016 July
## 7190 Resort Hotel 1 221 2016 July
## 7191 Resort Hotel 1 110 2016 July
## 7192 Resort Hotel 1 183 2016 July
## 7193 Resort Hotel 1 115 2016 July
## 7194 Resort Hotel 1 40 2016 July
## 7195 Resort Hotel 1 27 2016 July
## 7196 Resort Hotel 1 40 2016 July
## 7197 Resort Hotel 1 115 2016 July
## 7198 Resort Hotel 1 40 2016 July
## 7199 Resort Hotel 1 69 2016 July
## 7200 Resort Hotel 1 70 2016 July
## 7201 Resort Hotel 1 115 2016 July
## 7202 Resort Hotel 1 145 2016 July
## 7203 Resort Hotel 1 22 2016 July
## 7204 Resort Hotel 1 251 2016 July
## 7205 Resort Hotel 1 107 2016 July
## 7206 Resort Hotel 1 107 2016 July
## 7207 Resort Hotel 0 301 2016 July
## 7208 Resort Hotel 1 188 2016 July
## 7209 Resort Hotel 1 42 2016 July
## 7210 Resort Hotel 0 147 2016 July
## 7211 Resort Hotel 1 26 2016 July
## 7212 Resort Hotel 1 47 2016 July
## 7213 Resort Hotel 1 37 2016 July
## 7214 Resort Hotel 1 108 2016 July
## 7215 Resort Hotel 1 108 2016 July
## 7216 Resort Hotel 1 201 2016 July
## 7217 Resort Hotel 1 154 2016 July
## 7218 Resort Hotel 0 292 2016 July
## 7219 Resort Hotel 1 120 2016 July
## 7220 Resort Hotel 0 322 2016 July
## 7221 Resort Hotel 0 159 2016 July
## 7222 Resort Hotel 0 159 2016 July
## 7223 Resort Hotel 0 292 2016 July
## 7224 Resort Hotel 1 44 2016 July
## 7225 Resort Hotel 1 38 2016 July
## 7226 Resort Hotel 1 36 2016 July
## 7227 Resort Hotel 1 22 2016 July
## 7228 Resort Hotel 1 43 2016 July
## 7229 Resort Hotel 1 124 2016 July
## 7230 Resort Hotel 0 324 2016 July
## 7231 Resort Hotel 1 6 2016 July
## 7232 Resort Hotel 1 59 2016 July
## 7233 Resort Hotel 1 191 2016 July
## 7234 Resort Hotel 1 109 2016 July
## 7235 Resort Hotel 1 307 2016 July
## 7236 Resort Hotel 1 46 2016 July
## 7237 Resort Hotel 1 46 2016 July
## 7238 Resort Hotel 1 46 2016 July
## 7239 Resort Hotel 1 121 2016 July
## 7240 Resort Hotel 1 151 2016 July
## 7241 Resort Hotel 1 187 2016 July
## 7242 Resort Hotel 1 35 2016 July
## 7243 Resort Hotel 1 14 2016 July
## 7244 Resort Hotel 1 192 2016 July
## 7245 Resort Hotel 0 150 2016 July
## 7246 Resort Hotel 1 129 2016 July
## 7247 Resort Hotel 1 26 2016 July
## 7248 Resort Hotel 1 129 2016 July
## 7249 Resort Hotel 1 151 2016 July
## 7250 Resort Hotel 1 162 2016 July
## 7251 Resort Hotel 1 228 2016 July
## 7252 Resort Hotel 1 142 2016 July
## 7253 Resort Hotel 1 199 2016 July
## 7254 Resort Hotel 1 161 2016 July
## 7255 Resort Hotel 1 161 2016 July
## 7256 Resort Hotel 1 161 2016 July
## 7257 Resort Hotel 1 125 2016 July
## 7258 Resort Hotel 1 108 2016 July
## 7259 Resort Hotel 1 67 2016 July
## 7260 Resort Hotel 1 87 2016 July
## 7261 Resort Hotel 1 87 2016 July
## 7262 Resort Hotel 1 141 2016 July
## 7263 Resort Hotel 1 9 2016 July
## 7264 Resort Hotel 1 16 2016 July
## 7265 Resort Hotel 1 186 2016 July
## 7266 Resort Hotel 1 133 2016 July
## 7267 Resort Hotel 1 187 2016 July
## 7268 Resort Hotel 1 96 2016 July
## 7269 Resort Hotel 1 153 2016 July
## 7270 Resort Hotel 1 153 2016 July
## 7271 Resort Hotel 1 148 2016 August
## 7272 Resort Hotel 1 148 2016 August
## 7273 Resort Hotel 1 199 2016 August
## 7274 Resort Hotel 1 201 2016 August
## 7275 Resort Hotel 1 265 2016 August
## 7276 Resort Hotel 0 285 2016 August
## 7277 Resort Hotel 0 285 2016 August
## 7278 Resort Hotel 1 147 2016 August
## 7279 Resort Hotel 1 270 2016 August
## 7280 Resort Hotel 1 173 2016 August
## 7281 Resort Hotel 1 141 2016 August
## 7282 Resort Hotel 1 247 2016 August
## 7283 Resort Hotel 1 247 2016 August
## 7284 Resort Hotel 1 78 2016 August
## 7285 Resort Hotel 1 167 2016 August
## 7286 Resort Hotel 0 194 2016 August
## 7287 Resort Hotel 1 28 2016 August
## 7288 Resort Hotel 1 180 2016 August
## 7289 Resort Hotel 1 179 2016 August
## 7290 Resort Hotel 1 243 2016 August
## 7291 Resort Hotel 0 194 2016 August
## 7292 Resort Hotel 1 152 2016 August
## 7293 Resort Hotel 1 180 2016 August
## 7294 Resort Hotel 1 177 2016 August
## 7295 Resort Hotel 0 194 2016 August
## 7296 Resort Hotel 1 180 2016 August
## 7297 Resort Hotel 1 150 2016 August
## 7298 Resort Hotel 0 163 2016 August
## 7299 Resort Hotel 0 265 2016 August
## 7300 Resort Hotel 1 149 2016 August
## 7301 Resort Hotel 1 161 2016 August
## 7302 Resort Hotel 1 158 2016 August
## 7303 Resort Hotel 1 209 2016 August
## 7304 Resort Hotel 1 127 2016 August
## 7305 Resort Hotel 1 5 2016 August
## 7306 Resort Hotel 1 197 2016 August
## 7307 Resort Hotel 1 210 2016 August
## 7308 Resort Hotel 1 56 2016 August
## 7309 Resort Hotel 1 56 2016 August
## 7310 Resort Hotel 1 29 2016 August
## 7311 Resort Hotel 1 152 2016 August
## 7312 Resort Hotel 0 274 2016 August
## 7313 Resort Hotel 1 152 2016 August
## 7314 Resort Hotel 1 29 2016 August
## 7315 Resort Hotel 1 274 2016 August
## 7316 Resort Hotel 1 36 2016 August
## 7317 Resort Hotel 1 55 2016 August
## 7318 Resort Hotel 1 220 2016 August
## 7319 Resort Hotel 1 434 2016 August
## 7320 Resort Hotel 1 190 2016 August
## 7321 Resort Hotel 1 215 2016 August
## 7322 Resort Hotel 1 48 2016 August
## 7323 Resort Hotel 1 209 2016 August
## 7324 Resort Hotel 1 208 2016 August
## 7325 Resort Hotel 1 58 2016 August
## 7326 Resort Hotel 1 58 2016 August
## 7327 Resort Hotel 1 15 2016 August
## 7328 Resort Hotel 1 16 2016 August
## 7329 Resort Hotel 1 143 2016 August
## 7330 Resort Hotel 1 143 2016 August
## 7331 Resort Hotel 1 267 2016 August
## 7332 Resort Hotel 1 143 2016 August
## 7333 Resort Hotel 1 169 2016 August
## 7334 Resort Hotel 1 162 2016 August
## 7335 Resort Hotel 1 247 2016 August
## 7336 Resort Hotel 1 24 2016 August
## 7337 Resort Hotel 1 23 2016 August
## 7338 Resort Hotel 1 44 2016 August
## 7339 Resort Hotel 1 104 2016 August
## 7340 Resort Hotel 1 349 2016 August
## 7341 Resort Hotel 1 349 2016 August
## 7342 Resort Hotel 1 157 2016 August
## 7343 Resort Hotel 1 199 2016 August
## 7344 Resort Hotel 1 64 2016 August
## 7345 Resort Hotel 1 93 2016 August
## 7346 Resort Hotel 1 91 2016 August
## 7347 Resort Hotel 1 98 2016 August
## 7348 Resort Hotel 1 100 2016 August
## 7349 Resort Hotel 1 0 2016 August
## 7350 Resort Hotel 1 116 2016 August
## 7351 Resort Hotel 1 52 2016 August
## 7352 Resort Hotel 1 145 2016 August
## 7353 Resort Hotel 1 96 2016 August
## 7354 Resort Hotel 1 96 2016 August
## 7355 Resort Hotel 1 20 2016 August
## 7356 Resort Hotel 1 105 2016 August
## 7357 Resort Hotel 1 151 2016 August
## 7358 Resort Hotel 1 44 2016 August
## 7359 Resort Hotel 1 47 2016 August
## 7360 Resort Hotel 1 210 2016 August
## 7361 Resort Hotel 1 156 2016 August
## 7362 Resort Hotel 1 156 2016 August
## 7363 Resort Hotel 1 162 2016 August
## 7364 Resort Hotel 1 149 2016 August
## 7365 Resort Hotel 1 149 2016 August
## 7366 Resort Hotel 1 149 2016 August
## 7367 Resort Hotel 1 149 2016 August
## 7368 Resort Hotel 1 177 2016 August
## 7369 Resort Hotel 1 105 2016 August
## 7370 Resort Hotel 1 4 2016 August
## 7371 Resort Hotel 1 33 2016 August
## 7372 Resort Hotel 1 199 2016 August
## 7373 Resort Hotel 1 221 2016 August
## 7374 Resort Hotel 1 33 2016 August
## 7375 Resort Hotel 1 155 2016 August
## 7376 Resort Hotel 1 156 2016 August
## 7377 Resort Hotel 1 90 2016 August
## 7378 Resort Hotel 1 16 2016 August
## 7379 Resort Hotel 1 76 2016 August
## 7380 Resort Hotel 1 157 2016 August
## 7381 Resort Hotel 1 357 2016 August
## 7382 Resort Hotel 1 325 2016 August
## 7383 Resort Hotel 1 100 2016 August
## 7384 Resort Hotel 1 168 2016 August
## 7385 Resort Hotel 1 48 2016 August
## 7386 Resort Hotel 1 168 2016 August
## 7387 Resort Hotel 1 248 2016 August
## 7388 Resort Hotel 1 187 2016 August
## 7389 Resort Hotel 1 125 2016 August
## 7390 Resort Hotel 1 47 2016 August
## 7391 Resort Hotel 1 1 2016 August
## 7392 Resort Hotel 1 1 2016 August
## 7393 Resort Hotel 1 44 2016 August
## 7394 Resort Hotel 1 9 2016 August
## 7395 Resort Hotel 1 290 2016 August
## 7396 Resort Hotel 1 98 2016 August
## 7397 Resort Hotel 1 91 2016 August
## 7398 Resort Hotel 1 52 2016 August
## 7399 Resort Hotel 1 148 2016 August
## 7400 Resort Hotel 1 167 2016 August
## 7401 Resort Hotel 1 148 2016 August
## 7402 Resort Hotel 1 91 2016 August
## 7403 Resort Hotel 1 208 2016 August
## 7404 Resort Hotel 1 139 2016 August
## 7405 Resort Hotel 1 139 2016 August
## 7406 Resort Hotel 1 139 2016 August
## 7407 Resort Hotel 1 139 2016 August
## 7408 Resort Hotel 1 141 2016 August
## 7409 Resort Hotel 1 161 2016 August
## 7410 Resort Hotel 1 257 2016 August
## 7411 Resort Hotel 1 245 2016 August
## 7412 Resort Hotel 1 290 2016 August
## 7413 Resort Hotel 0 329 2016 August
## 7414 Resort Hotel 1 236 2016 August
## 7415 Resort Hotel 1 60 2016 August
## 7416 Resort Hotel 1 60 2016 August
## 7417 Resort Hotel 1 22 2016 August
## 7418 Resort Hotel 1 22 2016 August
## 7419 Resort Hotel 1 60 2016 August
## 7420 Resort Hotel 1 13 2016 August
## 7421 Resort Hotel 1 150 2016 August
## 7422 Resort Hotel 1 55 2016 August
## 7423 Resort Hotel 1 113 2016 August
## 7424 Resort Hotel 1 30 2016 August
## 7425 Resort Hotel 0 346 2016 August
## 7426 Resort Hotel 1 161 2016 August
## 7427 Resort Hotel 1 157 2016 August
## 7428 Resort Hotel 1 119 2016 August
## 7429 Resort Hotel 0 201 2016 August
## 7430 Resort Hotel 1 65 2016 August
## 7431 Resort Hotel 1 126 2016 August
## 7432 Resort Hotel 0 201 2016 August
## 7433 Resort Hotel 1 157 2016 August
## 7434 Resort Hotel 1 181 2016 August
## 7435 Resort Hotel 1 160 2016 August
## 7436 Resort Hotel 1 86 2016 August
## 7437 Resort Hotel 1 179 2016 August
## 7438 Resort Hotel 1 169 2016 August
## 7439 Resort Hotel 1 179 2016 August
## 7440 Resort Hotel 1 329 2016 August
## 7441 Resort Hotel 1 83 2016 August
## 7442 Resort Hotel 0 308 2016 August
## 7443 Resort Hotel 1 182 2016 August
## 7444 Resort Hotel 1 217 2016 August
## 7445 Resort Hotel 1 112 2016 August
## 7446 Resort Hotel 1 55 2016 August
## 7447 Resort Hotel 1 36 2016 August
## 7448 Resort Hotel 1 317 2016 August
## 7449 Resort Hotel 1 208 2016 August
## 7450 Resort Hotel 1 155 2016 August
## 7451 Resort Hotel 1 155 2016 August
## 7452 Resort Hotel 1 13 2016 August
## 7453 Resort Hotel 1 155 2016 August
## 7454 Resort Hotel 1 155 2016 August
## 7455 Resort Hotel 1 42 2016 August
## 7456 Resort Hotel 1 155 2016 August
## 7457 Resort Hotel 1 155 2016 August
## 7458 Resort Hotel 0 278 2016 August
## 7459 Resort Hotel 1 153 2016 August
## 7460 Resort Hotel 1 205 2016 August
## 7461 Resort Hotel 1 153 2016 August
## 7462 Resort Hotel 1 146 2016 August
## 7463 Resort Hotel 1 217 2016 August
## 7464 Resort Hotel 1 149 2016 August
## 7465 Resort Hotel 0 314 2016 August
## 7466 Resort Hotel 1 76 2016 August
## 7467 Resort Hotel 1 127 2016 August
## 7468 Resort Hotel 1 132 2016 August
## 7469 Resort Hotel 1 132 2016 August
## 7470 Resort Hotel 1 145 2016 August
## 7471 Resort Hotel 1 12 2016 August
## 7472 Resort Hotel 1 86 2016 August
## 7473 Resort Hotel 1 12 2016 August
## 7474 Resort Hotel 1 28 2016 August
## 7475 Resort Hotel 1 139 2016 August
## 7476 Resort Hotel 1 18 2016 August
## 7477 Resort Hotel 1 139 2016 August
## 7478 Resort Hotel 1 48 2016 August
## 7479 Resort Hotel 1 55 2016 August
## 7480 Resort Hotel 1 69 2016 August
## 7481 Resort Hotel 1 332 2016 August
## 7482 Resort Hotel 1 338 2016 August
## 7483 Resort Hotel 1 197 2016 August
## 7484 Resort Hotel 1 199 2016 August
## 7485 Resort Hotel 1 239 2016 August
## 7486 Resort Hotel 1 13 2016 August
## 7487 Resort Hotel 1 51 2016 August
## 7488 Resort Hotel 0 304 2016 August
## 7489 Resort Hotel 1 152 2016 August
## 7490 Resort Hotel 1 13 2016 August
## 7491 Resort Hotel 1 68 2016 August
## 7492 Resort Hotel 1 121 2016 August
## 7493 Resort Hotel 1 87 2016 August
## 7494 Resort Hotel 1 118 2016 August
## 7495 Resort Hotel 1 129 2016 August
## 7496 Resort Hotel 1 138 2016 August
## 7497 Resort Hotel 1 23 2016 August
## 7498 Resort Hotel 1 21 2016 August
## 7499 Resort Hotel 1 57 2016 August
## 7500 Resort Hotel 1 23 2016 August
## 7501 Resort Hotel 1 19 2016 August
## 7502 Resort Hotel 1 138 2016 August
## 7503 Resort Hotel 1 92 2016 August
## 7504 Resort Hotel 1 41 2016 August
## 7505 Resort Hotel 1 51 2016 August
## 7506 Resort Hotel 1 116 2016 August
## 7507 Resort Hotel 1 343 2016 August
## 7508 Resort Hotel 1 291 2016 August
## 7509 Resort Hotel 1 10 2016 August
## 7510 Resort Hotel 1 114 2016 August
## 7511 Resort Hotel 1 69 2016 August
## 7512 Resort Hotel 1 53 2016 August
## 7513 Resort Hotel 1 69 2016 August
## 7514 Resort Hotel 1 113 2016 August
## 7515 Resort Hotel 1 140 2016 August
## 7516 Resort Hotel 1 91 2016 August
## 7517 Resort Hotel 1 113 2016 August
## 7518 Resort Hotel 1 8 2016 August
## 7519 Resort Hotel 1 140 2016 August
## 7520 Resort Hotel 1 99 2016 August
## 7521 Resort Hotel 1 24 2016 August
## 7522 Resort Hotel 1 121 2016 August
## 7523 Resort Hotel 1 131 2016 August
## 7524 Resort Hotel 1 345 2016 August
## 7525 Resort Hotel 1 107 2016 August
## 7526 Resort Hotel 1 360 2016 August
## 7527 Resort Hotel 1 348 2016 August
## 7528 Resort Hotel 1 166 2016 August
## 7529 Resort Hotel 1 19 2016 August
## 7530 Resort Hotel 1 61 2016 August
## 7531 Resort Hotel 1 61 2016 August
## 7532 Resort Hotel 1 166 2016 August
## 7533 Resort Hotel 1 10 2016 August
## 7534 Resort Hotel 1 57 2016 August
## 7535 Resort Hotel 1 85 2016 August
## 7536 Resort Hotel 1 162 2016 August
## 7537 Resort Hotel 1 110 2016 August
## 7538 Resort Hotel 1 82 2016 August
## 7539 Resort Hotel 1 162 2016 August
## 7540 Resort Hotel 1 82 2016 August
## 7541 Resort Hotel 1 169 2016 August
## 7542 Resort Hotel 1 141 2016 August
## 7543 Resort Hotel 1 169 2016 August
## 7544 Resort Hotel 1 105 2016 August
## 7545 Resort Hotel 1 133 2016 August
## 7546 Resort Hotel 1 12 2016 August
## 7547 Resort Hotel 1 60 2016 August
## 7548 Resort Hotel 1 3 2016 August
## 7549 Resort Hotel 1 49 2016 August
## 7550 Resort Hotel 1 123 2016 August
## 7551 Resort Hotel 1 63 2016 August
## 7552 Resort Hotel 1 87 2016 August
## 7553 Resort Hotel 1 54 2016 August
## 7554 Resort Hotel 1 95 2016 August
## 7555 Resort Hotel 1 95 2016 August
## 7556 Resort Hotel 1 212 2016 August
## 7557 Resort Hotel 1 85 2016 August
## 7558 Resort Hotel 1 212 2016 August
## 7559 Resort Hotel 1 212 2016 August
## 7560 Resort Hotel 1 212 2016 August
## 7561 Resort Hotel 1 212 2016 August
## 7562 Resort Hotel 0 291 2016 August
## 7563 Resort Hotel 0 291 2016 August
## 7564 Resort Hotel 0 291 2016 August
## 7565 Resort Hotel 0 291 2016 August
## 7566 Resort Hotel 0 291 2016 August
## 7567 Resort Hotel 1 135 2016 August
## 7568 Resort Hotel 1 154 2016 August
## 7569 Resort Hotel 0 348 2016 August
## 7570 Resort Hotel 1 83 2016 August
## 7571 Resort Hotel 1 175 2016 August
## 7572 Resort Hotel 1 78 2016 August
## 7573 Resort Hotel 1 175 2016 August
## 7574 Resort Hotel 1 78 2016 August
## 7575 Resort Hotel 1 20 2016 August
## 7576 Resort Hotel 1 205 2016 August
## 7577 Resort Hotel 1 78 2016 August
## 7578 Resort Hotel 1 135 2016 August
## 7579 Resort Hotel 1 222 2016 August
## 7580 Resort Hotel 1 90 2016 August
## 7581 Resort Hotel 1 54 2016 August
## 7582 Resort Hotel 1 222 2016 August
## 7583 Resort Hotel 1 200 2016 August
## 7584 Resort Hotel 1 240 2016 August
## 7585 Resort Hotel 1 96 2016 August
## 7586 Resort Hotel 1 149 2016 August
## 7587 Resort Hotel 1 240 2016 August
## 7588 Resort Hotel 1 166 2016 August
## 7589 Resort Hotel 1 201 2016 August
## 7590 Resort Hotel 1 196 2016 August
## 7591 Resort Hotel 1 146 2016 August
## 7592 Resort Hotel 1 158 2016 August
## 7593 Resort Hotel 1 200 2016 August
## 7594 Resort Hotel 1 119 2016 August
## 7595 Resort Hotel 1 119 2016 August
## 7596 Resort Hotel 1 0 2016 August
## 7597 Resort Hotel 1 12 2016 August
## 7598 Resort Hotel 1 100 2016 August
## 7599 Resort Hotel 1 10 2016 August
## 7600 Resort Hotel 1 142 2016 August
## 7601 Resort Hotel 1 28 2016 August
## 7602 Resort Hotel 1 75 2016 August
## 7603 Resort Hotel 1 292 2016 August
## 7604 Resort Hotel 1 293 2016 August
## 7605 Resort Hotel 1 79 2016 August
## 7606 Resort Hotel 1 28 2016 August
## 7607 Resort Hotel 1 75 2016 August
## 7608 Resort Hotel 1 75 2016 August
## 7609 Resort Hotel 1 61 2016 August
## 7610 Resort Hotel 1 155 2016 August
## 7611 Resort Hotel 1 183 2016 August
## 7612 Resort Hotel 1 167 2016 August
## 7613 Resort Hotel 1 168 2016 August
## 7614 Resort Hotel 1 55 2016 August
## 7615 Resort Hotel 1 127 2016 August
## 7616 Resort Hotel 1 245 2016 August
## 7617 Resort Hotel 1 195 2016 August
## 7618 Resort Hotel 1 143 2016 August
## 7619 Resort Hotel 1 143 2016 August
## 7620 Resort Hotel 1 143 2016 August
## 7621 Resort Hotel 1 106 2016 August
## 7622 Resort Hotel 1 23 2016 August
## 7623 Resort Hotel 1 137 2016 August
## 7624 Resort Hotel 1 22 2016 August
## 7625 Resort Hotel 1 23 2016 August
## 7626 Resort Hotel 1 16 2016 August
## 7627 Resort Hotel 1 56 2016 August
## 7628 Resort Hotel 1 78 2016 August
## 7629 Resort Hotel 1 79 2016 August
## 7630 Resort Hotel 1 24 2016 August
## 7631 Resort Hotel 1 187 2016 August
## 7632 Resort Hotel 1 144 2016 August
## 7633 Resort Hotel 1 112 2016 August
## 7634 Resort Hotel 1 134 2016 August
## 7635 Resort Hotel 1 26 2016 August
## 7636 Resort Hotel 1 173 2016 August
## 7637 Resort Hotel 1 180 2016 August
## 7638 Resort Hotel 1 73 2016 August
## 7639 Resort Hotel 1 3 2016 August
## 7640 Resort Hotel 1 77 2016 August
## 7641 Resort Hotel 1 51 2016 August
## 7642 Resort Hotel 1 81 2016 August
## 7643 Resort Hotel 1 27 2016 August
## 7644 Resort Hotel 1 165 2016 August
## 7645 Resort Hotel 1 165 2016 August
## 7646 Resort Hotel 1 165 2016 August
## 7647 Resort Hotel 1 165 2016 August
## 7648 Resort Hotel 1 165 2016 August
## 7649 Resort Hotel 1 16 2016 August
## 7650 Resort Hotel 1 165 2016 August
## 7651 Resort Hotel 1 149 2016 August
## 7652 Resort Hotel 1 165 2016 August
## 7653 Resort Hotel 1 165 2016 August
## 7654 Resort Hotel 1 165 2016 August
## 7655 Resort Hotel 1 29 2016 August
## 7656 Resort Hotel 1 116 2016 August
## 7657 Resort Hotel 1 14 2016 August
## 7658 Resort Hotel 1 54 2016 August
## 7659 Resort Hotel 1 86 2016 August
## 7660 Resort Hotel 1 80 2016 August
## 7661 Resort Hotel 0 360 2016 August
## 7662 Resort Hotel 1 48 2016 August
## 7663 Resort Hotel 1 159 2016 August
## 7664 Resort Hotel 1 12 2016 August
## 7665 Resort Hotel 1 59 2016 August
## 7666 Resort Hotel 0 328 2016 August
## 7667 Resort Hotel 1 70 2016 August
## 7668 Resort Hotel 1 13 2016 August
## 7669 Resort Hotel 1 174 2016 August
## 7670 Resort Hotel 1 104 2016 August
## 7671 Resort Hotel 1 166 2016 August
## 7672 Resort Hotel 0 288 2016 August
## 7673 Resort Hotel 1 0 2016 August
## 7674 Resort Hotel 1 26 2016 August
## 7675 Resort Hotel 1 26 2016 August
## 7676 Resort Hotel 1 151 2016 August
## 7677 Resort Hotel 1 140 2016 August
## 7678 Resort Hotel 1 86 2016 August
## 7679 Resort Hotel 1 86 2016 August
## 7680 Resort Hotel 1 86 2016 August
## 7681 Resort Hotel 1 190 2016 August
## 7682 Resort Hotel 1 86 2016 August
## 7683 Resort Hotel 1 32 2016 August
## 7684 Resort Hotel 1 116 2016 August
## 7685 Resort Hotel 1 100 2016 August
## 7686 Resort Hotel 1 107 2016 August
## 7687 Resort Hotel 1 227 2016 August
## 7688 Resort Hotel 1 137 2016 August
## 7689 Resort Hotel 1 185 2016 August
## 7690 Resort Hotel 1 173 2016 August
## 7691 Resort Hotel 1 131 2016 August
## 7692 Resort Hotel 1 249 2016 August
## 7693 Resort Hotel 1 193 2016 August
## 7694 Resort Hotel 1 100 2016 August
## 7695 Resort Hotel 1 100 2016 August
## 7696 Resort Hotel 1 218 2016 August
## 7697 Resort Hotel 1 165 2016 August
## 7698 Resort Hotel 1 55 2016 August
## 7699 Resort Hotel 1 17 2016 August
## 7700 Resort Hotel 1 73 2016 August
## 7701 Resort Hotel 1 200 2016 August
## 7702 Resort Hotel 1 115 2016 August
## 7703 Resort Hotel 1 115 2016 August
## 7704 Resort Hotel 1 167 2016 August
## 7705 Resort Hotel 1 305 2016 August
## 7706 Resort Hotel 1 67 2016 August
## 7707 Resort Hotel 0 367 2016 August
## 7708 Resort Hotel 0 367 2016 August
## 7709 Resort Hotel 1 6 2016 August
## 7710 Resort Hotel 1 12 2016 August
## 7711 Resort Hotel 1 45 2016 August
## 7712 Resort Hotel 1 45 2016 August
## 7713 Resort Hotel 1 42 2016 August
## 7714 Resort Hotel 1 12 2016 August
## 7715 Resort Hotel 1 259 2016 August
## 7716 Resort Hotel 1 18 2016 August
## 7717 Resort Hotel 1 77 2016 August
## 7718 Resort Hotel 1 14 2016 August
## 7719 Resort Hotel 1 54 2016 August
## 7720 Resort Hotel 1 223 2016 August
## 7721 Resort Hotel 1 306 2016 August
## 7722 Resort Hotel 1 77 2016 August
## 7723 Resort Hotel 1 60 2016 August
## 7724 Resort Hotel 1 50 2016 August
## 7725 Resort Hotel 1 50 2016 August
## 7726 Resort Hotel 1 80 2016 August
## 7727 Resort Hotel 1 192 2016 August
## 7728 Resort Hotel 1 353 2016 August
## 7729 Resort Hotel 1 144 2016 August
## 7730 Resort Hotel 1 210 2016 August
## 7731 Resort Hotel 1 210 2016 August
## 7732 Resort Hotel 1 67 2016 August
## 7733 Resort Hotel 1 80 2016 August
## 7734 Resort Hotel 1 199 2016 August
## 7735 Resort Hotel 1 59 2016 August
## 7736 Resort Hotel 1 292 2016 August
## 7737 Resort Hotel 1 299 2016 August
## 7738 Resort Hotel 0 292 2016 August
## 7739 Resort Hotel 1 41 2016 August
## 7740 Resort Hotel 1 174 2016 August
## 7741 Resort Hotel 1 92 2016 August
## 7742 Resort Hotel 1 129 2016 August
## 7743 Resort Hotel 1 14 2016 August
## 7744 Resort Hotel 0 43 2016 August
## 7745 Resort Hotel 1 47 2016 August
## 7746 Resort Hotel 1 225 2016 August
## 7747 Resort Hotel 1 54 2016 August
## 7748 Resort Hotel 1 35 2016 August
## 7749 Resort Hotel 1 62 2016 August
## 7750 Resort Hotel 1 44 2016 August
## 7751 Resort Hotel 1 137 2016 August
## 7752 Resort Hotel 1 84 2016 August
## 7753 Resort Hotel 1 15 2016 August
## 7754 Resort Hotel 1 74 2016 August
## 7755 Resort Hotel 1 90 2016 August
## 7756 Resort Hotel 1 0 2016 August
## 7757 Resort Hotel 1 6 2016 August
## 7758 Resort Hotel 1 6 2016 August
## 7759 Resort Hotel 1 12 2016 August
## 7760 Resort Hotel 1 31 2016 August
## 7761 Resort Hotel 1 0 2016 August
## 7762 Resort Hotel 1 29 2016 August
## 7763 Resort Hotel 1 31 2016 August
## 7764 Resort Hotel 1 52 2016 August
## 7765 Resort Hotel 1 92 2016 August
## 7766 Resort Hotel 1 28 2016 August
## 7767 Resort Hotel 1 44 2016 August
## 7768 Resort Hotel 1 44 2016 August
## 7769 Resort Hotel 1 80 2016 August
## 7770 Resort Hotel 1 0 2016 August
## 7771 Resort Hotel 1 234 2016 August
## 7772 Resort Hotel 1 234 2016 August
## 7773 Resort Hotel 1 57 2016 August
## 7774 Resort Hotel 1 27 2016 August
## 7775 Resort Hotel 1 12 2016 August
## 7776 Resort Hotel 1 51 2016 August
## 7777 Resort Hotel 1 77 2016 August
## 7778 Resort Hotel 1 161 2016 August
## 7779 Resort Hotel 1 121 2016 August
## 7780 Resort Hotel 1 140 2016 August
## 7781 Resort Hotel 1 73 2016 August
## 7782 Resort Hotel 1 228 2016 August
## 7783 Resort Hotel 1 145 2016 August
## 7784 Resort Hotel 1 74 2016 August
## 7785 Resort Hotel 1 95 2016 August
## 7786 Resort Hotel 1 76 2016 August
## 7787 Resort Hotel 1 81 2016 August
## 7788 Resort Hotel 1 14 2016 August
## 7789 Resort Hotel 1 102 2016 August
## 7790 Resort Hotel 1 164 2016 August
## 7791 Resort Hotel 0 373 2016 August
## 7792 Resort Hotel 1 81 2016 August
## 7793 Resort Hotel 1 185 2016 August
## 7794 Resort Hotel 1 41 2016 August
## 7795 Resort Hotel 1 73 2016 August
## 7796 Resort Hotel 1 41 2016 August
## 7797 Resort Hotel 1 42 2016 August
## 7798 Resort Hotel 1 32 2016 August
## 7799 Resort Hotel 1 178 2016 August
## 7800 Resort Hotel 1 219 2016 August
## 7801 Resort Hotel 1 225 2016 August
## 7802 Resort Hotel 1 90 2016 August
## 7803 Resort Hotel 1 225 2016 August
## 7804 Resort Hotel 1 219 2016 August
## 7805 Resort Hotel 1 213 2016 August
## 7806 Resort Hotel 1 94 2016 August
## 7807 Resort Hotel 1 206 2016 August
## 7808 Resort Hotel 1 172 2016 August
## 7809 Resort Hotel 1 206 2016 August
## 7810 Resort Hotel 1 40 2016 August
## 7811 Resort Hotel 1 219 2016 August
## 7812 Resort Hotel 0 374 2016 August
## 7813 Resort Hotel 1 226 2016 August
## 7814 Resort Hotel 1 26 2016 August
## 7815 Resort Hotel 1 8 2016 August
## 7816 Resort Hotel 1 115 2016 August
## 7817 Resort Hotel 1 139 2016 August
## 7818 Resort Hotel 1 128 2016 August
## 7819 Resort Hotel 1 115 2016 August
## 7820 Resort Hotel 1 21 2016 August
## 7821 Resort Hotel 1 23 2016 August
## 7822 Resort Hotel 1 48 2016 August
## 7823 Resort Hotel 1 123 2016 August
## 7824 Resort Hotel 1 208 2016 August
## 7825 Resort Hotel 1 333 2016 August
## 7826 Resort Hotel 1 328 2016 August
## 7827 Resort Hotel 1 333 2016 August
## 7828 Resort Hotel 1 333 2016 August
## 7829 Resort Hotel 1 0 2016 August
## 7830 Resort Hotel 1 116 2016 August
## 7831 Resort Hotel 1 168 2016 August
## 7832 Resort Hotel 1 124 2016 August
## 7833 Resort Hotel 1 84 2016 August
## 7834 Resort Hotel 1 95 2016 August
## 7835 Resort Hotel 1 246 2016 August
## 7836 Resort Hotel 1 145 2016 August
## 7837 Resort Hotel 1 25 2016 August
## 7838 Resort Hotel 1 236 2016 August
## 7839 Resort Hotel 1 45 2016 August
## 7840 Resort Hotel 0 222 2016 August
## 7841 Resort Hotel 1 109 2016 August
## 7842 Resort Hotel 1 160 2016 August
## 7843 Resort Hotel 1 52 2016 August
## 7844 Resort Hotel 1 196 2016 August
## 7845 Resort Hotel 1 294 2016 August
## 7846 Resort Hotel 0 314 2016 August
## 7847 Resort Hotel 0 406 2016 August
## 7848 Resort Hotel 0 406 2016 August
## 7849 Resort Hotel 0 406 2016 August
## 7850 Resort Hotel 1 406 2016 August
## 7851 Resort Hotel 1 406 2016 August
## 7852 Resort Hotel 1 23 2016 August
## 7853 Resort Hotel 1 0 2016 August
## 7854 Resort Hotel 1 14 2016 August
## 7855 Resort Hotel 1 117 2016 August
## 7856 Resort Hotel 1 112 2016 August
## 7857 Resort Hotel 1 127 2016 August
## 7858 Resort Hotel 1 38 2016 August
## 7859 Resort Hotel 1 76 2016 August
## 7860 Resort Hotel 1 38 2016 August
## 7861 Resort Hotel 1 39 2016 August
## 7862 Resort Hotel 1 269 2016 August
## 7863 Resort Hotel 1 187 2016 August
## 7864 Resort Hotel 1 88 2016 August
## 7865 Resort Hotel 1 230 2016 August
## 7866 Resort Hotel 0 223 2016 August
## 7867 Resort Hotel 0 400 2016 August
## 7868 Resort Hotel 0 326 2016 August
## 7869 Resort Hotel 0 340 2016 August
## 7870 Resort Hotel 0 315 2016 August
## 7871 Resort Hotel 1 1 2016 August
## 7872 Resort Hotel 1 83 2016 August
## 7873 Resort Hotel 1 127 2016 August
## 7874 Resort Hotel 1 239 2016 August
## 7875 Resort Hotel 1 34 2016 August
## 7876 Resort Hotel 1 232 2016 August
## 7877 Resort Hotel 1 162 2016 August
## 7878 Resort Hotel 0 194 2016 August
## 7879 Resort Hotel 0 327 2016 August
## 7880 Resort Hotel 1 346 2016 September
## 7881 Resort Hotel 1 43 2016 September
## 7882 Resort Hotel 1 346 2016 September
## 7883 Resort Hotel 1 346 2016 September
## 7884 Resort Hotel 1 22 2016 September
## 7885 Resort Hotel 1 41 2016 September
## 7886 Resort Hotel 1 239 2016 September
## 7887 Resort Hotel 0 223 2016 September
## 7888 Resort Hotel 1 144 2016 September
## 7889 Resort Hotel 1 249 2016 September
## 7890 Resort Hotel 1 226 2016 September
## 7891 Resort Hotel 1 218 2016 September
## 7892 Resort Hotel 1 169 2016 September
## 7893 Resort Hotel 1 148 2016 September
## 7894 Resort Hotel 1 226 2016 September
## 7895 Resort Hotel 1 143 2016 September
## 7896 Resort Hotel 1 158 2016 September
## 7897 Resort Hotel 1 345 2016 September
## 7898 Resort Hotel 1 303 2016 September
## 7899 Resort Hotel 0 379 2016 September
## 7900 Resort Hotel 1 282 2016 September
## 7901 Resort Hotel 0 303 2016 September
## 7902 Resort Hotel 1 223 2016 September
## 7903 Resort Hotel 1 223 2016 September
## 7904 Resort Hotel 1 223 2016 September
## 7905 Resort Hotel 0 399 2016 September
## 7906 Resort Hotel 1 282 2016 September
## 7907 Resort Hotel 0 332 2016 September
## 7908 Resort Hotel 1 52 2016 September
## 7909 Resort Hotel 1 138 2016 September
## 7910 Resort Hotel 1 19 2016 September
## 7911 Resort Hotel 1 73 2016 September
## 7912 Resort Hotel 1 103 2016 September
## 7913 Resort Hotel 1 65 2016 September
## 7914 Resort Hotel 1 138 2016 September
## 7915 Resort Hotel 1 30 2016 September
## 7916 Resort Hotel 1 121 2016 September
## 7917 Resort Hotel 1 121 2016 September
## 7918 Resort Hotel 1 36 2016 September
## 7919 Resort Hotel 1 121 2016 September
## 7920 Resort Hotel 1 241 2016 September
## 7921 Resort Hotel 1 205 2016 September
## 7922 Resort Hotel 1 156 2016 September
## 7923 Resort Hotel 0 316 2016 September
## 7924 Resort Hotel 0 265 2016 September
## 7925 Resort Hotel 0 315 2016 September
## 7926 Resort Hotel 1 315 2016 September
## 7927 Resort Hotel 0 346 2016 September
## 7928 Resort Hotel 0 315 2016 September
## 7929 Resort Hotel 0 322 2016 September
## 7930 Resort Hotel 0 265 2016 September
## 7931 Resort Hotel 1 156 2016 September
## 7932 Resort Hotel 1 241 2016 September
## 7933 Resort Hotel 0 265 2016 September
## 7934 Resort Hotel 1 241 2016 September
## 7935 Resort Hotel 1 315 2016 September
## 7936 Resort Hotel 0 361 2016 September
## 7937 Resort Hotel 1 60 2016 September
## 7938 Resort Hotel 1 20 2016 September
## 7939 Resort Hotel 1 262 2016 September
## 7940 Resort Hotel 1 262 2016 September
## 7941 Resort Hotel 1 309 2016 September
## 7942 Resort Hotel 1 233 2016 September
## 7943 Resort Hotel 1 60 2016 September
## 7944 Resort Hotel 0 341 2016 September
## 7945 Resort Hotel 1 235 2016 September
## 7946 Resort Hotel 0 304 2016 September
## 7947 Resort Hotel 1 83 2016 September
## 7948 Resort Hotel 1 60 2016 September
## 7949 Resort Hotel 1 170 2016 September
## 7950 Resort Hotel 1 170 2016 September
## 7951 Resort Hotel 1 237 2016 September
## 7952 Resort Hotel 1 19 2016 September
## 7953 Resort Hotel 0 330 2016 September
## 7954 Resort Hotel 1 226 2016 September
## 7955 Resort Hotel 1 164 2016 September
## 7956 Resort Hotel 1 230 2016 September
## 7957 Resort Hotel 1 171 2016 September
## 7958 Resort Hotel 1 283 2016 September
## 7959 Resort Hotel 1 78 2016 September
## 7960 Resort Hotel 0 347 2016 September
## 7961 Resort Hotel 0 373 2016 September
## 7962 Resort Hotel 1 361 2016 September
## 7963 Resort Hotel 1 347 2016 September
## 7964 Resort Hotel 1 46 2016 September
## 7965 Resort Hotel 1 116 2016 September
## 7966 Resort Hotel 1 10 2016 September
## 7967 Resort Hotel 0 320 2016 September
## 7968 Resort Hotel 1 77 2016 September
## 7969 Resort Hotel 1 223 2016 September
## 7970 Resort Hotel 1 183 2016 September
## 7971 Resort Hotel 1 188 2016 September
## 7972 Resort Hotel 1 183 2016 September
## 7973 Resort Hotel 1 183 2016 September
## 7974 Resort Hotel 0 304 2016 September
## 7975 Resort Hotel 1 364 2016 September
## 7976 Resort Hotel 1 203 2016 September
## 7977 Resort Hotel 0 338 2016 September
## 7978 Resort Hotel 1 235 2016 September
## 7979 Resort Hotel 0 301 2016 September
## 7980 Resort Hotel 0 301 2016 September
## 7981 Resort Hotel 1 168 2016 September
## 7982 Resort Hotel 1 217 2016 September
## 7983 Resort Hotel 1 144 2016 September
## 7984 Resort Hotel 1 242 2016 September
## 7985 Resort Hotel 0 354 2016 September
## 7986 Resort Hotel 0 305 2016 September
## 7987 Resort Hotel 1 235 2016 September
## 7988 Resort Hotel 1 12 2016 September
## 7989 Resort Hotel 1 211 2016 September
## 7990 Resort Hotel 1 211 2016 September
## 7991 Resort Hotel 1 211 2016 September
## 7992 Resort Hotel 1 211 2016 September
## 7993 Resort Hotel 1 238 2016 September
## 7994 Resort Hotel 1 238 2016 September
## 7995 Resort Hotel 1 238 2016 September
## 7996 Resort Hotel 1 238 2016 September
## 7997 Resort Hotel 1 1 2016 September
## 7998 Resort Hotel 1 211 2016 September
## 7999 Resort Hotel 1 211 2016 September
## 8000 Resort Hotel 1 238 2016 September
## 8001 Resort Hotel 1 238 2016 September
## 8002 Resort Hotel 1 238 2016 September
## 8003 Resort Hotel 1 211 2016 September
## 8004 Resort Hotel 1 211 2016 September
## 8005 Resort Hotel 1 238 2016 September
## 8006 Resort Hotel 1 238 2016 September
## 8007 Resort Hotel 1 211 2016 September
## 8008 Resort Hotel 1 211 2016 September
## 8009 Resort Hotel 1 238 2016 September
## 8010 Resort Hotel 1 238 2016 September
## 8011 Resort Hotel 1 238 2016 September
## 8012 Resort Hotel 1 211 2016 September
## 8013 Resort Hotel 1 211 2016 September
## 8014 Resort Hotel 1 211 2016 September
## 8015 Resort Hotel 1 211 2016 September
## 8016 Resort Hotel 1 211 2016 September
## 8017 Resort Hotel 1 1 2016 September
## 8018 Resort Hotel 1 238 2016 September
## 8019 Resort Hotel 1 238 2016 September
## 8020 Resort Hotel 1 238 2016 September
## 8021 Resort Hotel 1 238 2016 September
## 8022 Resort Hotel 1 238 2016 September
## 8023 Resort Hotel 1 238 2016 September
## 8024 Resort Hotel 1 238 2016 September
## 8025 Resort Hotel 1 211 2016 September
## 8026 Resort Hotel 1 211 2016 September
## 8027 Resort Hotel 1 211 2016 September
## 8028 Resort Hotel 1 238 2016 September
## 8029 Resort Hotel 1 238 2016 September
## 8030 Resort Hotel 1 238 2016 September
## 8031 Resort Hotel 1 238 2016 September
## 8032 Resort Hotel 1 211 2016 September
## 8033 Resort Hotel 1 211 2016 September
## 8034 Resort Hotel 1 211 2016 September
## 8035 Resort Hotel 1 211 2016 September
## 8036 Resort Hotel 1 211 2016 September
## 8037 Resort Hotel 1 211 2016 September
## 8038 Resort Hotel 1 211 2016 September
## 8039 Resort Hotel 1 238 2016 September
## 8040 Resort Hotel 1 238 2016 September
## 8041 Resort Hotel 1 130 2016 September
## 8042 Resort Hotel 0 348 2016 September
## 8043 Resort Hotel 1 29 2016 September
## 8044 Resort Hotel 1 314 2016 September
## 8045 Resort Hotel 1 208 2016 September
## 8046 Resort Hotel 0 385 2016 September
## 8047 Resort Hotel 0 355 2016 September
## 8048 Resort Hotel 1 27 2016 September
## 8049 Resort Hotel 1 13 2016 September
## 8050 Resort Hotel 1 145 2016 September
## 8051 Resort Hotel 1 116 2016 September
## 8052 Resort Hotel 1 50 2016 September
## 8053 Resort Hotel 1 50 2016 September
## 8054 Resort Hotel 1 218 2016 September
## 8055 Resort Hotel 1 293 2016 September
## 8056 Resort Hotel 1 244 2016 September
## 8057 Resort Hotel 0 363 2016 September
## 8058 Resort Hotel 1 360 2016 September
## 8059 Resort Hotel 1 241 2016 September
## 8060 Resort Hotel 0 358 2016 September
## 8061 Resort Hotel 1 311 2016 September
## 8062 Resort Hotel 1 3 2016 September
## 8063 Resort Hotel 1 10 2016 September
## 8064 Resort Hotel 1 43 2016 September
## 8065 Resort Hotel 0 233 2016 September
## 8066 Resort Hotel 1 0 2016 September
## 8067 Resort Hotel 1 43 2016 September
## 8068 Resort Hotel 1 234 2016 September
## 8069 Resort Hotel 1 80 2016 September
## 8070 Resort Hotel 1 18 2016 September
## 8071 Resort Hotel 1 38 2016 September
## 8072 Resort Hotel 0 333 2016 September
## 8073 Resort Hotel 1 163 2016 September
## 8074 Resort Hotel 1 219 2016 September
## 8075 Resort Hotel 1 219 2016 September
## 8076 Resort Hotel 1 219 2016 September
## 8077 Resort Hotel 1 219 2016 September
## 8078 Resort Hotel 1 129 2016 September
## 8079 Resort Hotel 1 228 2016 September
## 8080 Resort Hotel 1 57 2016 September
## 8081 Resort Hotel 1 57 2016 September
## 8082 Resort Hotel 0 311 2016 September
## 8083 Resort Hotel 0 338 2016 September
## 8084 Resort Hotel 1 214 2016 September
## 8085 Resort Hotel 1 118 2016 September
## 8086 Resort Hotel 0 305 2016 September
## 8087 Resort Hotel 1 247 2016 September
## 8088 Resort Hotel 1 33 2016 September
## 8089 Resort Hotel 0 311 2016 September
## 8090 Resort Hotel 1 125 2016 September
## 8091 Resort Hotel 1 88 2016 September
## 8092 Resort Hotel 1 75 2016 September
## 8093 Resort Hotel 1 75 2016 September
## 8094 Resort Hotel 1 17 2016 September
## 8095 Resort Hotel 1 47 2016 September
## 8096 Resort Hotel 1 75 2016 September
## 8097 Resort Hotel 1 53 2016 September
## 8098 Resort Hotel 1 60 2016 September
## 8099 Resort Hotel 1 34 2016 September
## 8100 Resort Hotel 1 195 2016 September
## 8101 Resort Hotel 1 111 2016 September
## 8102 Resort Hotel 1 91 2016 September
## 8103 Resort Hotel 1 19 2016 September
## 8104 Resort Hotel 1 69 2016 September
## 8105 Resort Hotel 1 55 2016 September
## 8106 Resort Hotel 1 26 2016 September
## 8107 Resort Hotel 1 47 2016 September
## 8108 Resort Hotel 1 69 2016 September
## 8109 Resort Hotel 1 65 2016 September
## 8110 Resort Hotel 1 83 2016 September
## 8111 Resort Hotel 1 247 2016 September
## 8112 Resort Hotel 1 118 2016 September
## 8113 Resort Hotel 1 244 2016 September
## 8114 Resort Hotel 1 19 2016 September
## 8115 Resort Hotel 1 333 2016 September
## 8116 Resort Hotel 1 332 2016 September
## 8117 Resort Hotel 1 24 2016 September
## 8118 Resort Hotel 1 69 2016 September
## 8119 Resort Hotel 1 174 2016 September
## 8120 Resort Hotel 1 296 2016 September
## 8121 Resort Hotel 1 175 2016 September
## 8122 Resort Hotel 1 271 2016 September
## 8123 Resort Hotel 0 422 2016 September
## 8124 Resort Hotel 1 272 2016 September
## 8125 Resort Hotel 0 390 2016 September
## 8126 Resort Hotel 1 257 2016 September
## 8127 Resort Hotel 0 236 2016 September
## 8128 Resort Hotel 0 390 2016 September
## 8129 Resort Hotel 1 245 2016 September
## 8130 Resort Hotel 1 236 2016 September
## 8131 Resort Hotel 1 15 2016 September
## 8132 Resort Hotel 1 15 2016 September
## 8133 Resort Hotel 1 193 2016 September
## 8134 Resort Hotel 1 251 2016 September
## 8135 Resort Hotel 0 334 2016 September
## 8136 Resort Hotel 1 239 2016 September
## 8137 Resort Hotel 0 356 2016 September
## 8138 Resort Hotel 1 0 2016 September
## 8139 Resort Hotel 1 0 2016 September
## 8140 Resort Hotel 1 0 2016 September
## 8141 Resort Hotel 1 36 2016 September
## 8142 Resort Hotel 0 327 2016 September
## 8143 Resort Hotel 0 327 2016 September
## 8144 Resort Hotel 0 327 2016 September
## 8145 Resort Hotel 0 327 2016 September
## 8146 Resort Hotel 0 327 2016 September
## 8147 Resort Hotel 0 327 2016 September
## 8148 Resort Hotel 1 193 2016 September
## 8149 Resort Hotel 0 229 2016 September
## 8150 Resort Hotel 0 335 2016 September
## 8151 Resort Hotel 0 335 2016 September
## 8152 Resort Hotel 0 335 2016 September
## 8153 Resort Hotel 0 335 2016 September
## 8154 Resort Hotel 0 335 2016 September
## 8155 Resort Hotel 0 335 2016 September
## 8156 Resort Hotel 0 327 2016 September
## 8157 Resort Hotel 0 336 2016 September
## 8158 Resort Hotel 0 336 2016 September
## 8159 Resort Hotel 0 336 2016 September
## 8160 Resort Hotel 1 130 2016 September
## 8161 Resort Hotel 0 336 2016 September
## 8162 Resort Hotel 0 336 2016 September
## 8163 Resort Hotel 0 336 2016 September
## 8164 Resort Hotel 0 336 2016 September
## 8165 Resort Hotel 0 336 2016 September
## 8166 Resort Hotel 0 336 2016 September
## 8167 Resort Hotel 1 336 2016 September
## 8168 Resort Hotel 0 336 2016 September
## 8169 Resort Hotel 0 336 2016 September
## 8170 Resort Hotel 0 336 2016 September
## 8171 Resort Hotel 0 336 2016 September
## 8172 Resort Hotel 0 336 2016 September
## 8173 Resort Hotel 0 336 2016 September
## 8174 Resort Hotel 1 130 2016 September
## 8175 Resort Hotel 0 336 2016 September
## 8176 Resort Hotel 0 336 2016 September
## 8177 Resort Hotel 0 336 2016 September
## 8178 Resort Hotel 0 336 2016 September
## 8179 Resort Hotel 0 336 2016 September
## 8180 Resort Hotel 1 51 2016 September
## 8181 Resort Hotel 0 336 2016 September
## 8182 Resort Hotel 0 336 2016 September
## 8183 Resort Hotel 0 336 2016 September
## 8184 Resort Hotel 1 336 2016 September
## 8185 Resort Hotel 0 336 2016 September
## 8186 Resort Hotel 0 336 2016 September
## 8187 Resort Hotel 0 336 2016 September
## 8188 Resort Hotel 0 336 2016 September
## 8189 Resort Hotel 0 336 2016 September
## 8190 Resort Hotel 0 336 2016 September
## 8191 Resort Hotel 0 336 2016 September
## 8192 Resort Hotel 0 370 2016 September
## 8193 Resort Hotel 1 261 2016 September
## 8194 Resort Hotel 1 246 2016 September
## 8195 Resort Hotel 1 261 2016 September
## 8196 Resort Hotel 1 261 2016 September
## 8197 Resort Hotel 0 363 2016 September
## 8198 Resort Hotel 1 170 2016 September
## 8199 Resort Hotel 0 350 2016 September
## 8200 Resort Hotel 0 338 2016 September
## 8201 Resort Hotel 0 394 2016 September
## 8202 Resort Hotel 1 242 2016 September
## 8203 Resort Hotel 1 170 2016 September
## 8204 Resort Hotel 1 255 2016 September
## 8205 Resort Hotel 1 347 2016 September
## 8206 Resort Hotel 1 7 2016 September
## 8207 Resort Hotel 1 245 2016 September
## 8208 Resort Hotel 1 245 2016 September
## 8209 Resort Hotel 1 167 2016 September
## 8210 Resort Hotel 1 33 2016 September
## 8211 Resort Hotel 1 49 2016 September
## 8212 Resort Hotel 1 51 2016 September
## 8213 Resort Hotel 1 29 2016 September
## 8214 Resort Hotel 1 55 2016 September
## 8215 Resort Hotel 1 244 2016 September
## 8216 Resort Hotel 1 55 2016 September
## 8217 Resort Hotel 1 206 2016 September
## 8218 Resort Hotel 1 53 2016 September
## 8219 Resort Hotel 1 248 2016 September
## 8220 Resort Hotel 1 128 2016 September
## 8221 Resort Hotel 0 376 2016 September
## 8222 Resort Hotel 0 376 2016 September
## 8223 Resort Hotel 0 342 2016 September
## 8224 Resort Hotel 0 376 2016 September
## 8225 Resort Hotel 0 375 2016 September
## 8226 Resort Hotel 1 6 2016 September
## 8227 Resort Hotel 1 38 2016 September
## 8228 Resort Hotel 1 33 2016 September
## 8229 Resort Hotel 1 60 2016 September
## 8230 Resort Hotel 1 144 2016 September
## 8231 Resort Hotel 1 215 2016 September
## 8232 Resort Hotel 1 60 2016 September
## 8233 Resort Hotel 1 61 2016 September
## 8234 Resort Hotel 1 196 2016 September
## 8235 Resort Hotel 1 189 2016 September
## 8236 Resort Hotel 1 152 2016 September
## 8237 Resort Hotel 1 76 2016 September
## 8238 Resort Hotel 1 171 2016 September
## 8239 Resort Hotel 1 252 2016 September
## 8240 Resort Hotel 1 200 2016 September
## 8241 Resort Hotel 1 199 2016 September
## 8242 Resort Hotel 1 206 2016 September
## 8243 Resort Hotel 0 243 2016 September
## 8244 Resort Hotel 1 243 2016 September
## 8245 Resort Hotel 1 215 2016 September
## 8246 Resort Hotel 0 243 2016 September
## 8247 Resort Hotel 0 243 2016 September
## 8248 Resort Hotel 1 297 2016 September
## 8249 Resort Hotel 1 243 2016 September
## 8250 Resort Hotel 1 46 2016 September
## 8251 Resort Hotel 1 42 2016 September
## 8252 Resort Hotel 1 139 2016 September
## 8253 Resort Hotel 1 244 2016 September
## 8254 Resort Hotel 0 328 2016 September
## 8255 Resort Hotel 1 244 2016 September
## 8256 Resort Hotel 1 244 2016 September
## 8257 Resort Hotel 1 244 2016 September
## 8258 Resort Hotel 1 244 2016 September
## 8259 Resort Hotel 1 244 2016 September
## 8260 Resort Hotel 1 244 2016 September
## 8261 Resort Hotel 0 223 2016 September
## 8262 Resort Hotel 1 244 2016 September
## 8263 Resort Hotel 1 244 2016 September
## 8264 Resort Hotel 0 328 2016 September
## 8265 Resort Hotel 1 244 2016 September
## 8266 Resort Hotel 1 244 2016 September
## 8267 Resort Hotel 1 244 2016 September
## 8268 Resort Hotel 1 244 2016 September
## 8269 Resort Hotel 0 328 2016 September
## 8270 Resort Hotel 0 343 2016 September
## 8271 Resort Hotel 0 343 2016 September
## 8272 Resort Hotel 1 385 2016 September
## 8273 Resort Hotel 1 385 2016 September
## 8274 Resort Hotel 1 385 2016 September
## 8275 Resort Hotel 0 397 2016 September
## 8276 Resort Hotel 0 397 2016 September
## 8277 Resort Hotel 1 385 2016 September
## 8278 Resort Hotel 1 385 2016 September
## 8279 Resort Hotel 1 385 2016 September
## 8280 Resort Hotel 0 397 2016 September
## 8281 Resort Hotel 0 397 2016 September
## 8282 Resort Hotel 0 397 2016 September
## 8283 Resort Hotel 0 343 2016 September
## 8284 Resort Hotel 1 385 2016 September
## 8285 Resort Hotel 1 385 2016 September
## 8286 Resort Hotel 0 397 2016 September
## 8287 Resort Hotel 0 397 2016 September
## 8288 Resort Hotel 0 343 2016 September
## 8289 Resort Hotel 0 343 2016 September
## 8290 Resort Hotel 0 343 2016 September
## 8291 Resort Hotel 0 343 2016 September
## 8292 Resort Hotel 1 119 2016 September
## 8293 Resort Hotel 1 168 2016 September
## 8294 Resort Hotel 1 202 2016 September
## 8295 Resort Hotel 1 197 2016 September
## 8296 Resort Hotel 1 197 2016 September
## 8297 Resort Hotel 1 197 2016 September
## 8298 Resort Hotel 1 197 2016 September
## 8299 Resort Hotel 1 197 2016 September
## 8300 Resort Hotel 1 197 2016 September
## 8301 Resort Hotel 1 181 2016 September
## 8302 Resort Hotel 0 329 2016 September
## 8303 Resort Hotel 1 164 2016 September
## 8304 Resort Hotel 1 260 2016 September
## 8305 Resort Hotel 0 397 2016 September
## 8306 Resort Hotel 0 397 2016 September
## 8307 Resort Hotel 0 397 2016 September
## 8308 Resort Hotel 1 385 2016 September
## 8309 Resort Hotel 1 385 2016 September
## 8310 Resort Hotel 1 385 2016 September
## 8311 Resort Hotel 1 385 2016 September
## 8312 Resort Hotel 1 385 2016 September
## 8313 Resort Hotel 0 397 2016 September
## 8314 Resort Hotel 1 397 2016 September
## 8315 Resort Hotel 0 397 2016 September
## 8316 Resort Hotel 1 385 2016 September
## 8317 Resort Hotel 1 385 2016 September
## 8318 Resort Hotel 0 343 2016 September
## 8319 Resort Hotel 0 343 2016 September
## 8320 Resort Hotel 0 343 2016 September
## 8321 Resort Hotel 0 343 2016 September
## 8322 Resort Hotel 0 397 2016 September
## 8323 Resort Hotel 0 397 2016 September
## 8324 Resort Hotel 1 385 2016 September
## 8325 Resort Hotel 1 385 2016 September
## 8326 Resort Hotel 1 96 2016 September
## 8327 Resort Hotel 0 343 2016 September
## 8328 Resort Hotel 0 343 2016 September
## 8329 Resort Hotel 0 397 2016 September
## 8330 Resort Hotel 0 397 2016 September
## 8331 Resort Hotel 1 385 2016 September
## 8332 Resort Hotel 1 385 2016 September
## 8333 Resort Hotel 1 385 2016 September
## 8334 Resort Hotel 1 18 2016 September
## 8335 Resort Hotel 1 232 2016 September
## 8336 Resort Hotel 1 18 2016 September
## 8337 Resort Hotel 1 14 2016 September
## 8338 Resort Hotel 1 18 2016 September
## 8339 Resort Hotel 1 22 2016 September
## 8340 Resort Hotel 1 174 2016 September
## 8341 Resort Hotel 1 191 2016 September
## 8342 Resort Hotel 1 195 2016 September
## 8343 Resort Hotel 1 191 2016 September
## 8344 Resort Hotel 1 13 2016 September
## 8345 Resort Hotel 1 42 2016 September
## 8346 Resort Hotel 1 27 2016 September
## 8347 Resort Hotel 1 27 2016 September
## 8348 Resort Hotel 1 41 2016 September
## 8349 Resort Hotel 1 63 2016 September
## 8350 Resort Hotel 1 39 2016 September
## 8351 Resort Hotel 1 38 2016 September
## 8352 Resort Hotel 1 29 2016 September
## 8353 Resort Hotel 1 31 2016 September
## 8354 Resort Hotel 1 44 2016 September
## 8355 Resort Hotel 1 36 2016 September
## 8356 Resort Hotel 1 197 2016 September
## 8357 Resort Hotel 1 44 2016 September
## 8358 Resort Hotel 1 168 2016 September
## 8359 Resort Hotel 0 338 2016 September
## 8360 Resort Hotel 1 177 2016 September
## 8361 Resort Hotel 1 63 2016 September
## 8362 Resort Hotel 1 155 2016 September
## 8363 Resort Hotel 1 168 2016 September
## 8364 Resort Hotel 1 73 2016 September
## 8365 Resort Hotel 1 22 2016 September
## 8366 Resort Hotel 1 289 2016 September
## 8367 Resort Hotel 1 289 2016 September
## 8368 Resort Hotel 1 2 2016 September
## 8369 Resort Hotel 1 289 2016 September
## 8370 Resort Hotel 1 2 2016 September
## 8371 Resort Hotel 1 289 2016 September
## 8372 Resort Hotel 1 289 2016 September
## 8373 Resort Hotel 1 289 2016 September
## 8374 Resort Hotel 1 289 2016 September
## 8375 Resort Hotel 1 176 2016 September
## 8376 Resort Hotel 1 289 2016 September
## 8377 Resort Hotel 1 23 2016 September
## 8378 Resort Hotel 1 56 2016 September
## 8379 Resort Hotel 1 29 2016 September
## 8380 Resort Hotel 1 49 2016 September
## 8381 Resort Hotel 1 29 2016 September
## 8382 Resort Hotel 1 19 2016 September
## 8383 Resort Hotel 1 71 2016 September
## 8384 Resort Hotel 1 70 2016 September
## 8385 Resort Hotel 1 20 2016 September
## 8386 Resort Hotel 1 140 2016 September
## 8387 Resort Hotel 0 344 2016 September
## 8388 Resort Hotel 0 344 2016 September
## 8389 Resort Hotel 1 310 2016 September
## 8390 Resort Hotel 1 20 2016 September
## 8391 Resort Hotel 1 14 2016 September
## 8392 Resort Hotel 1 56 2016 September
## 8393 Resort Hotel 1 53 2016 September
## 8394 Resort Hotel 1 177 2016 September
## 8395 Resort Hotel 1 44 2016 September
## 8396 Resort Hotel 0 542 2016 September
## 8397 Resort Hotel 1 19 2016 September
## 8398 Resort Hotel 0 542 2016 September
## 8399 Resort Hotel 1 347 2016 September
## 8400 Resort Hotel 0 542 2016 September
## 8401 Resort Hotel 0 542 2016 September
## 8402 Resort Hotel 1 168 2016 September
## 8403 Resort Hotel 1 339 2016 September
## 8404 Resort Hotel 1 339 2016 September
## 8405 Resort Hotel 1 339 2016 September
## 8406 Resort Hotel 1 339 2016 September
## 8407 Resort Hotel 1 339 2016 September
## 8408 Resort Hotel 1 339 2016 September
## 8409 Resort Hotel 1 339 2016 September
## 8410 Resort Hotel 1 339 2016 September
## 8411 Resort Hotel 1 339 2016 September
## 8412 Resort Hotel 1 339 2016 September
## 8413 Resort Hotel 1 339 2016 September
## 8414 Resort Hotel 1 339 2016 September
## 8415 Resort Hotel 1 339 2016 September
## 8416 Resort Hotel 1 339 2016 September
## 8417 Resort Hotel 1 339 2016 September
## 8418 Resort Hotel 0 333 2016 September
## 8419 Resort Hotel 0 354 2016 September
## 8420 Resort Hotel 0 542 2016 September
## 8421 Resort Hotel 1 137 2016 September
## 8422 Resort Hotel 0 542 2016 September
## 8423 Resort Hotel 0 542 2016 September
## 8424 Resort Hotel 0 542 2016 September
## 8425 Resort Hotel 1 98 2016 September
## 8426 Resort Hotel 0 542 2016 September
## 8427 Resort Hotel 1 143 2016 September
## 8428 Resort Hotel 0 333 2016 September
## 8429 Resort Hotel 0 542 2016 September
## 8430 Resort Hotel 1 168 2016 September
## 8431 Resort Hotel 1 148 2016 September
## 8432 Resort Hotel 1 36 2016 September
## 8433 Resort Hotel 1 129 2016 September
## 8434 Resort Hotel 1 167 2016 September
## 8435 Resort Hotel 1 173 2016 September
## 8436 Resort Hotel 1 167 2016 September
## 8437 Resort Hotel 1 173 2016 September
## 8438 Resort Hotel 0 342 2016 September
## 8439 Resort Hotel 0 342 2016 September
## 8440 Resort Hotel 1 96 2016 September
## 8441 Resort Hotel 1 98 2016 September
## 8442 Resort Hotel 1 131 2016 September
## 8443 Resort Hotel 1 63 2016 September
## 8444 Resort Hotel 1 63 2016 September
## 8445 Resort Hotel 1 63 2016 September
## 8446 Resort Hotel 1 63 2016 September
## 8447 Resort Hotel 1 229 2016 September
## 8448 Resort Hotel 1 263 2016 September
## 8449 Resort Hotel 1 127 2016 September
## 8450 Resort Hotel 1 161 2016 September
## 8451 Resort Hotel 1 136 2016 September
## 8452 Resort Hotel 1 94 2016 September
## 8453 Resort Hotel 0 342 2016 September
## 8454 Resort Hotel 1 69 2016 September
## 8455 Resort Hotel 1 14 2016 September
## 8456 Resort Hotel 1 55 2016 September
## 8457 Resort Hotel 1 231 2016 September
## 8458 Resort Hotel 1 231 2016 September
## 8459 Resort Hotel 1 231 2016 September
## 8460 Resort Hotel 1 20 2016 September
## 8461 Resort Hotel 1 231 2016 September
## 8462 Resort Hotel 1 231 2016 September
## 8463 Resort Hotel 1 231 2016 September
## 8464 Resort Hotel 1 58 2016 September
## 8465 Resort Hotel 1 231 2016 September
## 8466 Resort Hotel 1 231 2016 September
## 8467 Resort Hotel 1 231 2016 September
## 8468 Resort Hotel 1 231 2016 September
## 8469 Resort Hotel 1 231 2016 September
## 8470 Resort Hotel 1 231 2016 September
## 8471 Resort Hotel 1 231 2016 September
## 8472 Resort Hotel 1 231 2016 September
## 8473 Resort Hotel 1 132 2016 September
## 8474 Resort Hotel 1 48 2016 September
## 8475 Resort Hotel 1 35 2016 September
## 8476 Resort Hotel 1 24 2016 September
## 8477 Resort Hotel 1 174 2016 September
## 8478 Resort Hotel 1 101 2016 September
## 8479 Resort Hotel 1 184 2016 September
## 8480 Resort Hotel 1 71 2016 September
## 8481 Resort Hotel 1 71 2016 September
## 8482 Resort Hotel 1 269 2016 September
## 8483 Resort Hotel 1 65 2016 October
## 8484 Resort Hotel 1 24 2016 October
## 8485 Resort Hotel 1 65 2016 October
## 8486 Resort Hotel 1 157 2016 October
## 8487 Resort Hotel 1 157 2016 October
## 8488 Resort Hotel 1 157 2016 October
## 8489 Resort Hotel 1 157 2016 October
## 8490 Resort Hotel 1 207 2016 October
## 8491 Resort Hotel 1 157 2016 October
## 8492 Resort Hotel 1 157 2016 October
## 8493 Resort Hotel 1 157 2016 October
## 8494 Resort Hotel 1 157 2016 October
## 8495 Resort Hotel 1 157 2016 October
## 8496 Resort Hotel 1 157 2016 October
## 8497 Resort Hotel 1 157 2016 October
## 8498 Resort Hotel 1 157 2016 October
## 8499 Resort Hotel 1 157 2016 October
## 8500 Resort Hotel 1 157 2016 October
## 8501 Resort Hotel 1 157 2016 October
## 8502 Resort Hotel 1 157 2016 October
## 8503 Resort Hotel 1 48 2016 October
## 8504 Resort Hotel 1 68 2016 October
## 8505 Resort Hotel 1 319 2016 October
## 8506 Resort Hotel 1 403 2016 October
## 8507 Resort Hotel 1 403 2016 October
## 8508 Resort Hotel 1 19 2016 October
## 8509 Resort Hotel 1 243 2016 October
## 8510 Resort Hotel 1 158 2016 October
## 8511 Resort Hotel 1 166 2016 October
## 8512 Resort Hotel 1 14 2016 October
## 8513 Resort Hotel 1 258 2016 October
## 8514 Resort Hotel 1 103 2016 October
## 8515 Resort Hotel 1 67 2016 October
## 8516 Resort Hotel 1 142 2016 October
## 8517 Resort Hotel 1 186 2016 October
## 8518 Resort Hotel 1 141 2016 October
## 8519 Resort Hotel 1 160 2016 October
## 8520 Resort Hotel 1 86 2016 October
## 8521 Resort Hotel 1 113 2016 October
## 8522 Resort Hotel 1 181 2016 October
## 8523 Resort Hotel 1 235 2016 October
## 8524 Resort Hotel 1 182 2016 October
## 8525 Resort Hotel 1 55 2016 October
## 8526 Resort Hotel 1 55 2016 October
## 8527 Resort Hotel 0 341 2016 October
## 8528 Resort Hotel 1 65 2016 October
## 8529 Resort Hotel 1 65 2016 October
## 8530 Resort Hotel 1 169 2016 October
## 8531 Resort Hotel 1 149 2016 October
## 8532 Resort Hotel 1 65 2016 October
## 8533 Resort Hotel 1 65 2016 October
## 8534 Resort Hotel 1 64 2016 October
## 8535 Resort Hotel 1 13 2016 October
## 8536 Resort Hotel 1 157 2016 October
## 8537 Resort Hotel 1 29 2016 October
## 8538 Resort Hotel 1 180 2016 October
## 8539 Resort Hotel 1 59 2016 October
## 8540 Resort Hotel 1 7 2016 October
## 8541 Resort Hotel 1 7 2016 October
## 8542 Resort Hotel 1 7 2016 October
## 8543 Resort Hotel 1 198 2016 October
## 8544 Resort Hotel 1 198 2016 October
## 8545 Resort Hotel 1 198 2016 October
## 8546 Resort Hotel 1 261 2016 October
## 8547 Resort Hotel 0 383 2016 October
## 8548 Resort Hotel 0 383 2016 October
## 8549 Resort Hotel 1 59 2016 October
## 8550 Resort Hotel 0 383 2016 October
## 8551 Resort Hotel 0 383 2016 October
## 8552 Resort Hotel 0 383 2016 October
## 8553 Resort Hotel 0 383 2016 October
## 8554 Resort Hotel 1 59 2016 October
## 8555 Resort Hotel 0 383 2016 October
## 8556 Resort Hotel 0 383 2016 October
## 8557 Resort Hotel 0 383 2016 October
## 8558 Resort Hotel 0 383 2016 October
## 8559 Resort Hotel 0 383 2016 October
## 8560 Resort Hotel 0 383 2016 October
## 8561 Resort Hotel 0 383 2016 October
## 8562 Resort Hotel 0 383 2016 October
## 8563 Resort Hotel 0 383 2016 October
## 8564 Resort Hotel 0 383 2016 October
## 8565 Resort Hotel 1 59 2016 October
## 8566 Resort Hotel 0 383 2016 October
## 8567 Resort Hotel 0 383 2016 October
## 8568 Resort Hotel 0 383 2016 October
## 8569 Resort Hotel 0 383 2016 October
## 8570 Resort Hotel 0 383 2016 October
## 8571 Resort Hotel 0 383 2016 October
## 8572 Resort Hotel 0 383 2016 October
## 8573 Resort Hotel 0 383 2016 October
## 8574 Resort Hotel 1 383 2016 October
## 8575 Resort Hotel 1 383 2016 October
## 8576 Resort Hotel 1 383 2016 October
## 8577 Resort Hotel 1 383 2016 October
## 8578 Resort Hotel 1 383 2016 October
## 8579 Resort Hotel 0 383 2016 October
## 8580 Resort Hotel 0 383 2016 October
## 8581 Resort Hotel 1 383 2016 October
## 8582 Resort Hotel 1 383 2016 October
## 8583 Resort Hotel 1 383 2016 October
## 8584 Resort Hotel 1 383 2016 October
## 8585 Resort Hotel 1 383 2016 October
## 8586 Resort Hotel 1 383 2016 October
## 8587 Resort Hotel 1 383 2016 October
## 8588 Resort Hotel 1 383 2016 October
## 8589 Resort Hotel 1 67 2016 October
## 8590 Resort Hotel 1 383 2016 October
## 8591 Resort Hotel 1 383 2016 October
## 8592 Resort Hotel 1 383 2016 October
## 8593 Resort Hotel 1 383 2016 October
## 8594 Resort Hotel 1 383 2016 October
## 8595 Resort Hotel 1 383 2016 October
## 8596 Resort Hotel 1 383 2016 October
## 8597 Resort Hotel 1 383 2016 October
## 8598 Resort Hotel 1 383 2016 October
## 8599 Resort Hotel 1 383 2016 October
## 8600 Resort Hotel 1 383 2016 October
## 8601 Resort Hotel 1 383 2016 October
## 8602 Resort Hotel 1 94 2016 October
## 8603 Resort Hotel 1 239 2016 October
## 8604 Resort Hotel 0 384 2016 October
## 8605 Resort Hotel 1 144 2016 October
## 8606 Resort Hotel 1 14 2016 October
## 8607 Resort Hotel 1 60 2016 October
## 8608 Resort Hotel 1 40 2016 October
## 8609 Resort Hotel 1 183 2016 October
## 8610 Resort Hotel 1 94 2016 October
## 8611 Resort Hotel 1 181 2016 October
## 8612 Resort Hotel 0 359 2016 October
## 8613 Resort Hotel 1 40 2016 October
## 8614 Resort Hotel 1 385 2016 October
## 8615 Resort Hotel 1 151 2016 October
## 8616 Resort Hotel 1 151 2016 October
## 8617 Resort Hotel 1 151 2016 October
## 8618 Resort Hotel 1 393 2016 October
## 8619 Resort Hotel 1 393 2016 October
## 8620 Resort Hotel 1 393 2016 October
## 8621 Resort Hotel 1 393 2016 October
## 8622 Resort Hotel 1 393 2016 October
## 8623 Resort Hotel 1 393 2016 October
## 8624 Resort Hotel 1 393 2016 October
## 8625 Resort Hotel 1 393 2016 October
## 8626 Resort Hotel 1 393 2016 October
## 8627 Resort Hotel 1 393 2016 October
## 8628 Resort Hotel 1 393 2016 October
## 8629 Resort Hotel 1 393 2016 October
## 8630 Resort Hotel 1 393 2016 October
## 8631 Resort Hotel 1 393 2016 October
## 8632 Resort Hotel 1 393 2016 October
## 8633 Resort Hotel 1 393 2016 October
## 8634 Resort Hotel 1 393 2016 October
## 8635 Resort Hotel 1 393 2016 October
## 8636 Resort Hotel 1 393 2016 October
## 8637 Resort Hotel 1 19 2016 October
## 8638 Resort Hotel 1 393 2016 October
## 8639 Resort Hotel 1 393 2016 October
## 8640 Resort Hotel 1 56 2016 October
## 8641 Resort Hotel 1 393 2016 October
## 8642 Resort Hotel 1 393 2016 October
## 8643 Resort Hotel 1 393 2016 October
## 8644 Resort Hotel 1 393 2016 October
## 8645 Resort Hotel 1 393 2016 October
## 8646 Resort Hotel 1 393 2016 October
## 8647 Resort Hotel 1 393 2016 October
## 8648 Resort Hotel 1 151 2016 October
## 8649 Resort Hotel 1 151 2016 October
## 8650 Resort Hotel 1 134 2016 October
## 8651 Resort Hotel 1 48 2016 October
## 8652 Resort Hotel 1 315 2016 October
## 8653 Resort Hotel 0 360 2016 October
## 8654 Resort Hotel 0 360 2016 October
## 8655 Resort Hotel 0 360 2016 October
## 8656 Resort Hotel 1 368 2016 October
## 8657 Resort Hotel 0 2 2016 October
## 8658 Resort Hotel 1 131 2016 October
## 8659 Resort Hotel 1 131 2016 October
## 8660 Resort Hotel 1 131 2016 October
## 8661 Resort Hotel 1 16 2016 October
## 8662 Resort Hotel 1 131 2016 October
## 8663 Resort Hotel 1 131 2016 October
## 8664 Resort Hotel 1 16 2016 October
## 8665 Resort Hotel 1 131 2016 October
## 8666 Resort Hotel 1 16 2016 October
## 8667 Resort Hotel 1 16 2016 October
## 8668 Resort Hotel 1 131 2016 October
## 8669 Resort Hotel 1 131 2016 October
## 8670 Resort Hotel 1 10 2016 October
## 8671 Resort Hotel 1 16 2016 October
## 8672 Resort Hotel 1 131 2016 October
## 8673 Resort Hotel 1 131 2016 October
## 8674 Resort Hotel 1 16 2016 October
## 8675 Resort Hotel 1 131 2016 October
## 8676 Resort Hotel 1 131 2016 October
## 8677 Resort Hotel 1 131 2016 October
## 8678 Resort Hotel 1 131 2016 October
## 8679 Resort Hotel 1 131 2016 October
## 8680 Resort Hotel 1 131 2016 October
## 8681 Resort Hotel 1 131 2016 October
## 8682 Resort Hotel 1 131 2016 October
## 8683 Resort Hotel 1 96 2016 October
## 8684 Resort Hotel 1 131 2016 October
## 8685 Resort Hotel 1 131 2016 October
## 8686 Resort Hotel 1 96 2016 October
## 8687 Resort Hotel 1 30 2016 October
## 8688 Resort Hotel 1 131 2016 October
## 8689 Resort Hotel 1 131 2016 October
## 8690 Resort Hotel 1 92 2016 October
## 8691 Resort Hotel 1 131 2016 October
## 8692 Resort Hotel 1 184 2016 October
## 8693 Resort Hotel 1 131 2016 October
## 8694 Resort Hotel 0 337 2016 October
## 8695 Resort Hotel 0 337 2016 October
## 8696 Resort Hotel 0 337 2016 October
## 8697 Resort Hotel 0 337 2016 October
## 8698 Resort Hotel 0 337 2016 October
## 8699 Resort Hotel 0 337 2016 October
## 8700 Resort Hotel 0 337 2016 October
## 8701 Resort Hotel 0 337 2016 October
## 8702 Resort Hotel 0 337 2016 October
## 8703 Resort Hotel 0 337 2016 October
## 8704 Resort Hotel 0 337 2016 October
## 8705 Resort Hotel 0 337 2016 October
## 8706 Resort Hotel 0 337 2016 October
## 8707 Resort Hotel 0 337 2016 October
## 8708 Resort Hotel 0 337 2016 October
## 8709 Resort Hotel 1 337 2016 October
## 8710 Resort Hotel 1 316 2016 October
## 8711 Resort Hotel 1 236 2016 October
## 8712 Resort Hotel 1 10 2016 October
## 8713 Resort Hotel 1 10 2016 October
## 8714 Resort Hotel 1 12 2016 October
## 8715 Resort Hotel 0 362 2016 October
## 8716 Resort Hotel 1 18 2016 October
## 8717 Resort Hotel 1 1 2016 October
## 8718 Resort Hotel 1 12 2016 October
## 8719 Resort Hotel 1 5 2016 October
## 8720 Resort Hotel 1 6 2016 October
## 8721 Resort Hotel 1 18 2016 October
## 8722 Resort Hotel 1 18 2016 October
## 8723 Resort Hotel 0 363 2016 October
## 8724 Resort Hotel 0 339 2016 October
## 8725 Resort Hotel 0 339 2016 October
## 8726 Resort Hotel 0 363 2016 October
## 8727 Resort Hotel 0 339 2016 October
## 8728 Resort Hotel 0 339 2016 October
## 8729 Resort Hotel 0 364 2016 October
## 8730 Resort Hotel 0 364 2016 October
## 8731 Resort Hotel 1 364 2016 October
## 8732 Resort Hotel 1 364 2016 October
## 8733 Resort Hotel 0 364 2016 October
## 8734 Resort Hotel 0 364 2016 October
## 8735 Resort Hotel 0 364 2016 October
## 8736 Resort Hotel 1 2 2016 October
## 8737 Resort Hotel 0 364 2016 October
## 8738 Resort Hotel 0 364 2016 October
## 8739 Resort Hotel 0 364 2016 October
## 8740 Resort Hotel 0 364 2016 October
## 8741 Resort Hotel 0 364 2016 October
## 8742 Resort Hotel 0 364 2016 October
## 8743 Resort Hotel 0 364 2016 October
## 8744 Resort Hotel 0 364 2016 October
## 8745 Resort Hotel 0 364 2016 October
## 8746 Resort Hotel 1 257 2016 October
## 8747 Resort Hotel 0 364 2016 October
## 8748 Resort Hotel 0 364 2016 October
## 8749 Resort Hotel 0 364 2016 October
## 8750 Resort Hotel 0 364 2016 October
## 8751 Resort Hotel 0 364 2016 October
## 8752 Resort Hotel 0 364 2016 October
## 8753 Resort Hotel 0 364 2016 October
## 8754 Resort Hotel 0 364 2016 October
## 8755 Resort Hotel 0 364 2016 October
## 8756 Resort Hotel 0 364 2016 October
## 8757 Resort Hotel 0 364 2016 October
## 8758 Resort Hotel 0 364 2016 October
## 8759 Resort Hotel 0 364 2016 October
## 8760 Resort Hotel 1 364 2016 October
## 8761 Resort Hotel 0 364 2016 October
## 8762 Resort Hotel 0 364 2016 October
## 8763 Resort Hotel 0 364 2016 October
## 8764 Resort Hotel 0 364 2016 October
## 8765 Resort Hotel 0 364 2016 October
## 8766 Resort Hotel 0 364 2016 October
## 8767 Resort Hotel 0 364 2016 October
## 8768 Resort Hotel 0 364 2016 October
## 8769 Resort Hotel 0 364 2016 October
## 8770 Resort Hotel 0 364 2016 October
## 8771 Resort Hotel 0 364 2016 October
## 8772 Resort Hotel 0 364 2016 October
## 8773 Resort Hotel 0 364 2016 October
## 8774 Resort Hotel 0 364 2016 October
## 8775 Resort Hotel 0 364 2016 October
## 8776 Resort Hotel 0 364 2016 October
## 8777 Resort Hotel 0 364 2016 October
## 8778 Resort Hotel 0 364 2016 October
## 8779 Resort Hotel 0 364 2016 October
## 8780 Resort Hotel 1 0 2016 October
## 8781 Resort Hotel 1 149 2016 October
## 8782 Resort Hotel 0 365 2016 October
## 8783 Resort Hotel 0 365 2016 October
## 8784 Resort Hotel 0 365 2016 October
## 8785 Resort Hotel 0 365 2016 October
## 8786 Resort Hotel 0 342 2016 October
## 8787 Resort Hotel 0 342 2016 October
## 8788 Resort Hotel 0 342 2016 October
## 8789 Resort Hotel 0 342 2016 October
## 8790 Resort Hotel 0 342 2016 October
## 8791 Resort Hotel 1 249 2016 October
## 8792 Resort Hotel 0 342 2016 October
## 8793 Resort Hotel 1 342 2016 October
## 8794 Resort Hotel 0 342 2016 October
## 8795 Resort Hotel 0 342 2016 October
## 8796 Resort Hotel 0 342 2016 October
## 8797 Resort Hotel 0 342 2016 October
## 8798 Resort Hotel 0 342 2016 October
## 8799 Resort Hotel 0 342 2016 October
## 8800 Resort Hotel 0 342 2016 October
## 8801 Resort Hotel 1 435 2016 October
## 8802 Resort Hotel 0 342 2016 October
## 8803 Resort Hotel 1 18 2016 October
## 8804 Resort Hotel 1 12 2016 October
## 8805 Resort Hotel 1 115 2016 October
## 8806 Resort Hotel 1 24 2016 October
## 8807 Resort Hotel 1 24 2016 October
## 8808 Resort Hotel 1 198 2016 October
## 8809 Resort Hotel 1 198 2016 October
## 8810 Resort Hotel 1 198 2016 October
## 8811 Resort Hotel 1 198 2016 October
## 8812 Resort Hotel 1 198 2016 October
## 8813 Resort Hotel 1 198 2016 October
## 8814 Resort Hotel 1 198 2016 October
## 8815 Resort Hotel 1 198 2016 October
## 8816 Resort Hotel 1 27 2016 October
## 8817 Resort Hotel 1 198 2016 October
## 8818 Resort Hotel 1 198 2016 October
## 8819 Resort Hotel 1 198 2016 October
## 8820 Resort Hotel 1 27 2016 October
## 8821 Resort Hotel 1 198 2016 October
## 8822 Resort Hotel 1 198 2016 October
## 8823 Resort Hotel 1 198 2016 October
## 8824 Resort Hotel 1 198 2016 October
## 8825 Resort Hotel 1 198 2016 October
## 8826 Resort Hotel 1 375 2016 October
## 8827 Resort Hotel 1 27 2016 October
## 8828 Resort Hotel 1 181 2016 October
## 8829 Resort Hotel 1 181 2016 October
## 8830 Resort Hotel 1 181 2016 October
## 8831 Resort Hotel 1 181 2016 October
## 8832 Resort Hotel 1 181 2016 October
## 8833 Resort Hotel 1 181 2016 October
## 8834 Resort Hotel 1 181 2016 October
## 8835 Resort Hotel 1 181 2016 October
## 8836 Resort Hotel 1 181 2016 October
## 8837 Resort Hotel 1 181 2016 October
## 8838 Resort Hotel 1 181 2016 October
## 8839 Resort Hotel 1 181 2016 October
## 8840 Resort Hotel 1 181 2016 October
## 8841 Resort Hotel 1 181 2016 October
## 8842 Resort Hotel 1 181 2016 October
## 8843 Resort Hotel 1 181 2016 October
## 8844 Resort Hotel 1 23 2016 October
## 8845 Resort Hotel 1 23 2016 October
## 8846 Resort Hotel 1 14 2016 October
## 8847 Resort Hotel 1 19 2016 October
## 8848 Resort Hotel 1 30 2016 October
## 8849 Resort Hotel 1 47 2016 October
## 8850 Resort Hotel 1 31 2016 October
## 8851 Resort Hotel 1 47 2016 October
## 8852 Resort Hotel 1 247 2016 October
## 8853 Resort Hotel 1 247 2016 October
## 8854 Resort Hotel 1 244 2016 October
## 8855 Resort Hotel 1 247 2016 October
## 8856 Resort Hotel 1 142 2016 October
## 8857 Resort Hotel 1 243 2016 October
## 8858 Resort Hotel 0 382 2016 October
## 8859 Resort Hotel 1 67 2016 October
## 8860 Resort Hotel 1 68 2016 October
## 8861 Resort Hotel 1 161 2016 October
## 8862 Resort Hotel 1 161 2016 October
## 8863 Resort Hotel 1 161 2016 October
## 8864 Resort Hotel 1 17 2016 October
## 8865 Resort Hotel 1 22 2016 October
## 8866 Resort Hotel 1 154 2016 October
## 8867 Resort Hotel 1 58 2016 October
## 8868 Resort Hotel 1 62 2016 October
## 8869 Resort Hotel 1 30 2016 October
## 8870 Resort Hotel 1 95 2016 October
## 8871 Resort Hotel 1 224 2016 October
## 8872 Resort Hotel 1 180 2016 October
## 8873 Resort Hotel 1 224 2016 October
## 8874 Resort Hotel 1 224 2016 October
## 8875 Resort Hotel 1 224 2016 October
## 8876 Resort Hotel 1 109 2016 October
## 8877 Resort Hotel 1 0 2016 October
## 8878 Resort Hotel 1 47 2016 October
## 8879 Resort Hotel 1 71 2016 October
## 8880 Resort Hotel 1 71 2016 October
## 8881 Resort Hotel 1 71 2016 October
## 8882 Resort Hotel 1 71 2016 October
## 8883 Resort Hotel 1 18 2016 October
## 8884 Resort Hotel 1 71 2016 October
## 8885 Resort Hotel 1 41 2016 October
## 8886 Resort Hotel 1 22 2016 October
## 8887 Resort Hotel 1 14 2016 October
## 8888 Resort Hotel 1 18 2016 October
## 8889 Resort Hotel 1 386 2016 October
## 8890 Resort Hotel 1 91 2016 October
## 8891 Resort Hotel 1 132 2016 October
## 8892 Resort Hotel 1 116 2016 October
## 8893 Resort Hotel 1 132 2016 October
## 8894 Resort Hotel 1 63 2016 October
## 8895 Resort Hotel 1 111 2016 October
## 8896 Resort Hotel 1 386 2016 October
## 8897 Resort Hotel 1 2 2016 October
## 8898 Resort Hotel 1 127 2016 October
## 8899 Resort Hotel 1 127 2016 October
## 8900 Resort Hotel 1 15 2016 October
## 8901 Resort Hotel 1 23 2016 October
## 8902 Resort Hotel 1 23 2016 October
## 8903 Resort Hotel 1 211 2016 October
## 8904 Resort Hotel 1 123 2016 October
## 8905 Resort Hotel 0 385 2016 October
## 8906 Resort Hotel 0 385 2016 October
## 8907 Resort Hotel 0 385 2016 October
## 8908 Resort Hotel 0 385 2016 October
## 8909 Resort Hotel 1 127 2016 October
## 8910 Resort Hotel 1 20 2016 October
## 8911 Resort Hotel 0 385 2016 October
## 8912 Resort Hotel 0 385 2016 October
## 8913 Resort Hotel 1 145 2016 October
## 8914 Resort Hotel 1 123 2016 October
## 8915 Resort Hotel 1 99 2016 October
## 8916 Resort Hotel 1 386 2016 October
## 8917 Resort Hotel 1 113 2016 October
## 8918 Resort Hotel 1 386 2016 October
## 8919 Resort Hotel 1 386 2016 October
## 8920 Resort Hotel 0 386 2016 October
## 8921 Resort Hotel 1 34 2016 October
## 8922 Resort Hotel 0 386 2016 October
## 8923 Resort Hotel 1 386 2016 October
## 8924 Resort Hotel 1 386 2016 October
## 8925 Resort Hotel 1 386 2016 October
## 8926 Resort Hotel 1 386 2016 October
## 8927 Resort Hotel 1 386 2016 October
## 8928 Resort Hotel 0 386 2016 October
## 8929 Resort Hotel 1 386 2016 October
## 8930 Resort Hotel 1 386 2016 October
## 8931 Resort Hotel 1 386 2016 October
## 8932 Resort Hotel 1 386 2016 October
## 8933 Resort Hotel 1 3 2016 October
## 8934 Resort Hotel 1 101 2016 October
## 8935 Resort Hotel 1 130 2016 October
## 8936 Resort Hotel 1 111 2016 October
## 8937 Resort Hotel 1 70 2016 October
## 8938 Resort Hotel 1 24 2016 October
## 8939 Resort Hotel 1 130 2016 October
## 8940 Resort Hotel 1 131 2016 October
## 8941 Resort Hotel 0 8 2016 October
## 8942 Resort Hotel 1 135 2016 October
## 8943 Resort Hotel 1 124 2016 October
## 8944 Resort Hotel 1 110 2016 October
## 8945 Resort Hotel 1 135 2016 October
## 8946 Resort Hotel 1 24 2016 October
## 8947 Resort Hotel 1 179 2016 October
## 8948 Resort Hotel 1 27 2016 October
## 8949 Resort Hotel 1 130 2016 October
## 8950 Resort Hotel 1 173 2016 October
## 8951 Resort Hotel 1 78 2016 October
## 8952 Resort Hotel 1 164 2016 October
## 8953 Resort Hotel 1 4 2016 October
## 8954 Resort Hotel 1 73 2016 October
## 8955 Resort Hotel 1 4 2016 October
## 8956 Resort Hotel 1 319 2016 October
## 8957 Resort Hotel 1 314 2016 October
## 8958 Resort Hotel 1 100 2016 October
## 8959 Resort Hotel 1 124 2016 October
## 8960 Resort Hotel 1 138 2016 October
## 8961 Resort Hotel 1 141 2016 October
## 8962 Resort Hotel 1 178 2016 October
## 8963 Resort Hotel 1 178 2016 October
## 8964 Resort Hotel 1 178 2016 October
## 8965 Resort Hotel 1 178 2016 October
## 8966 Resort Hotel 1 66 2016 October
## 8967 Resort Hotel 1 138 2016 October
## 8968 Resort Hotel 1 135 2016 October
## 8969 Resort Hotel 1 135 2016 October
## 8970 Resort Hotel 1 135 2016 October
## 8971 Resort Hotel 1 17 2016 October
## 8972 Resort Hotel 1 17 2016 October
## 8973 Resort Hotel 1 82 2016 October
## 8974 Resort Hotel 1 135 2016 October
## 8975 Resort Hotel 1 135 2016 October
## 8976 Resort Hotel 1 141 2016 October
## 8977 Resort Hotel 1 178 2016 October
## 8978 Resort Hotel 1 17 2016 October
## 8979 Resort Hotel 1 135 2016 October
## 8980 Resort Hotel 1 135 2016 October
## 8981 Resort Hotel 1 141 2016 October
## 8982 Resort Hotel 1 124 2016 October
## 8983 Resort Hotel 1 178 2016 October
## 8984 Resort Hotel 1 178 2016 October
## 8985 Resort Hotel 1 178 2016 October
## 8986 Resort Hotel 1 178 2016 October
## 8987 Resort Hotel 1 5 2016 October
## 8988 Resort Hotel 1 17 2016 October
## 8989 Resort Hotel 1 124 2016 October
## 8990 Resort Hotel 1 135 2016 October
## 8991 Resort Hotel 1 138 2016 October
## 8992 Resort Hotel 1 138 2016 October
## 8993 Resort Hotel 1 178 2016 October
## 8994 Resort Hotel 1 178 2016 October
## 8995 Resort Hotel 1 178 2016 October
## 8996 Resort Hotel 1 178 2016 October
## 8997 Resort Hotel 1 124 2016 October
## 8998 Resort Hotel 1 124 2016 October
## 8999 Resort Hotel 1 135 2016 October
## 9000 Resort Hotel 1 141 2016 October
## 9001 Resort Hotel 1 178 2016 October
## 9002 Resort Hotel 1 124 2016 October
## 9003 Resort Hotel 1 124 2016 October
## 9004 Resort Hotel 1 124 2016 October
## 9005 Resort Hotel 1 124 2016 October
## 9006 Resort Hotel 1 124 2016 October
## 9007 Resort Hotel 1 124 2016 October
## 9008 Resort Hotel 1 124 2016 October
## 9009 Resort Hotel 1 17 2016 October
## 9010 Resort Hotel 1 138 2016 October
## 9011 Resort Hotel 1 135 2016 October
## 9012 Resort Hotel 1 135 2016 October
## 9013 Resort Hotel 1 178 2016 October
## 9014 Resort Hotel 1 114 2016 October
## 9015 Resort Hotel 1 119 2016 October
## 9016 Resort Hotel 1 167 2016 October
## 9017 Resort Hotel 1 18 2016 October
## 9018 Resort Hotel 1 39 2016 October
## 9019 Resort Hotel 1 59 2016 October
## 9020 Resort Hotel 1 203 2016 October
## 9021 Resort Hotel 1 151 2016 October
## 9022 Resort Hotel 1 89 2016 October
## 9023 Resort Hotel 1 133 2016 October
## 9024 Resort Hotel 1 133 2016 October
## 9025 Resort Hotel 1 87 2016 October
## 9026 Resort Hotel 1 76 2016 October
## 9027 Resort Hotel 1 7 2016 October
## 9028 Resort Hotel 1 35 2016 October
## 9029 Resort Hotel 1 63 2016 October
## 9030 Resort Hotel 1 29 2016 October
## 9031 Resort Hotel 1 29 2016 October
## 9032 Resort Hotel 1 28 2016 October
## 9033 Resort Hotel 1 31 2016 October
## 9034 Resort Hotel 1 40 2016 October
## 9035 Resort Hotel 1 50 2016 October
## 9036 Resort Hotel 1 180 2016 October
## 9037 Resort Hotel 1 66 2016 October
## 9038 Resort Hotel 1 66 2016 October
## 9039 Resort Hotel 1 176 2016 October
## 9040 Resort Hotel 1 65 2016 October
## 9041 Resort Hotel 1 86 2016 October
## 9042 Resort Hotel 1 71 2016 October
## 9043 Resort Hotel 1 72 2016 October
## 9044 Resort Hotel 1 71 2016 October
## 9045 Resort Hotel 1 65 2016 October
## 9046 Resort Hotel 1 43 2016 October
## 9047 Resort Hotel 1 8 2016 October
## 9048 Resort Hotel 1 0 2016 October
## 9049 Resort Hotel 1 8 2016 October
## 9050 Resort Hotel 0 0 2016 October
## 9051 Resort Hotel 1 20 2016 October
## 9052 Resort Hotel 1 70 2016 October
## 9053 Resort Hotel 1 51 2016 October
## 9054 Resort Hotel 1 86 2016 October
## 9055 Resort Hotel 1 138 2016 October
## 9056 Resort Hotel 0 7 2016 October
## 9057 Resort Hotel 1 0 2016 October
## 9058 Resort Hotel 1 42 2016 October
## 9059 Resort Hotel 1 65 2016 October
## 9060 Resort Hotel 1 153 2016 October
## 9061 Resort Hotel 1 78 2016 October
## 9062 Resort Hotel 1 213 2016 October
## 9063 Resort Hotel 1 79 2016 October
## 9064 Resort Hotel 1 43 2016 October
## 9065 Resort Hotel 1 213 2016 October
## 9066 Resort Hotel 1 188 2016 October
## 9067 Resort Hotel 1 79 2016 October
## 9068 Resort Hotel 1 54 2016 October
## 9069 Resort Hotel 1 188 2016 October
## 9070 Resort Hotel 1 54 2016 October
## 9071 Resort Hotel 1 79 2016 October
## 9072 Resort Hotel 1 188 2016 October
## 9073 Resort Hotel 1 54 2016 October
## 9074 Resort Hotel 1 79 2016 October
## 9075 Resort Hotel 1 0 2016 October
## 9076 Resort Hotel 1 0 2016 October
## 9077 Resort Hotel 1 8 2016 October
## 9078 Resort Hotel 1 0 2016 October
## 9079 Resort Hotel 1 142 2016 October
## 9080 Resort Hotel 1 87 2016 October
## 9081 Resort Hotel 1 87 2016 October
## 9082 Resort Hotel 1 142 2016 October
## 9083 Resort Hotel 1 248 2016 October
## 9084 Resort Hotel 1 24 2016 October
## 9085 Resort Hotel 1 87 2016 October
## 9086 Resort Hotel 1 142 2016 October
## 9087 Resort Hotel 1 31 2016 October
## 9088 Resort Hotel 1 121 2016 October
## 9089 Resort Hotel 1 53 2016 October
## 9090 Resort Hotel 1 20 2016 October
## 9091 Resort Hotel 1 69 2016 October
## 9092 Resort Hotel 1 206 2016 October
## 9093 Resort Hotel 1 206 2016 October
## 9094 Resort Hotel 1 206 2016 October
## 9095 Resort Hotel 1 117 2016 October
## 9096 Resort Hotel 1 117 2016 October
## 9097 Resort Hotel 1 117 2016 October
## 9098 Resort Hotel 1 181 2016 October
## 9099 Resort Hotel 1 177 2016 October
## 9100 Resort Hotel 1 206 2016 October
## 9101 Resort Hotel 1 181 2016 October
## 9102 Resort Hotel 1 96 2016 October
## 9103 Resort Hotel 1 206 2016 October
## 9104 Resort Hotel 1 206 2016 October
## 9105 Resort Hotel 1 66 2016 October
## 9106 Resort Hotel 1 206 2016 October
## 9107 Resort Hotel 1 206 2016 October
## 9108 Resort Hotel 1 206 2016 October
## 9109 Resort Hotel 1 206 2016 October
## 9110 Resort Hotel 1 3 2016 October
## 9111 Resort Hotel 1 0 2016 October
## 9112 Resort Hotel 1 79 2016 October
## 9113 Resort Hotel 1 0 2016 October
## 9114 Resort Hotel 1 179 2016 October
## 9115 Resort Hotel 1 120 2016 October
## 9116 Resort Hotel 1 179 2016 October
## 9117 Resort Hotel 0 14 2016 October
## 9118 Resort Hotel 0 16 2016 October
## 9119 Resort Hotel 1 10 2016 October
## 9120 Resort Hotel 1 79 2016 October
## 9121 Resort Hotel 1 42 2016 October
## 9122 Resort Hotel 1 32 2016 October
## 9123 Resort Hotel 1 129 2016 October
## 9124 Resort Hotel 1 72 2016 October
## 9125 Resort Hotel 1 69 2016 October
## 9126 Resort Hotel 1 178 2016 October
## 9127 Resort Hotel 1 131 2016 October
## 9128 Resort Hotel 1 255 2016 October
## 9129 Resort Hotel 1 131 2016 October
## 9130 Resort Hotel 1 131 2016 October
## 9131 Resort Hotel 1 131 2016 October
## 9132 Resort Hotel 1 178 2016 October
## 9133 Resort Hotel 1 208 2016 October
## 9134 Resort Hotel 0 18 2016 October
## 9135 Resort Hotel 0 18 2016 October
## 9136 Resort Hotel 0 12 2016 October
## 9137 Resort Hotel 1 1 2016 October
## 9138 Resort Hotel 1 18 2016 October
## 9139 Resort Hotel 1 50 2016 October
## 9140 Resort Hotel 1 16 2016 October
## 9141 Resort Hotel 1 18 2016 October
## 9142 Resort Hotel 1 67 2016 October
## 9143 Resort Hotel 1 39 2016 October
## 9144 Resort Hotel 1 40 2016 October
## 9145 Resort Hotel 1 39 2016 October
## 9146 Resort Hotel 1 40 2016 October
## 9147 Resort Hotel 1 112 2016 October
## 9148 Resort Hotel 1 46 2016 October
## 9149 Resort Hotel 1 58 2016 October
## 9150 Resort Hotel 1 142 2016 October
## 9151 Resort Hotel 1 101 2016 October
## 9152 Resort Hotel 1 49 2016 October
## 9153 Resort Hotel 1 126 2016 October
## 9154 Resort Hotel 1 201 2016 October
## 9155 Resort Hotel 1 96 2016 October
## 9156 Resort Hotel 1 17 2016 October
## 9157 Resort Hotel 1 2 2016 October
## 9158 Resort Hotel 1 17 2016 October
## 9159 Resort Hotel 1 17 2016 October
## 9160 Resort Hotel 1 5 2016 October
## 9161 Resort Hotel 1 81 2016 October
## 9162 Resort Hotel 1 19 2016 October
## 9163 Resort Hotel 1 20 2016 October
## 9164 Resort Hotel 1 186 2016 October
## 9165 Resort Hotel 1 34 2016 October
## 9166 Resort Hotel 1 89 2016 October
## 9167 Resort Hotel 1 75 2016 October
## 9168 Resort Hotel 1 245 2016 October
## 9169 Resort Hotel 1 245 2016 October
## 9170 Resort Hotel 1 192 2016 October
## 9171 Resort Hotel 1 96 2016 October
## 9172 Resort Hotel 1 76 2016 October
## 9173 Resort Hotel 1 53 2016 October
## 9174 Resort Hotel 1 214 2016 October
## 9175 Resort Hotel 1 87 2016 October
## 9176 Resort Hotel 1 70 2016 October
## 9177 Resort Hotel 1 214 2016 October
## 9178 Resort Hotel 1 1 2016 November
## 9179 Resort Hotel 1 378 2016 November
## 9180 Resort Hotel 1 378 2016 November
## 9181 Resort Hotel 1 378 2016 November
## 9182 Resort Hotel 1 378 2016 November
## 9183 Resort Hotel 1 22 2016 November
## 9184 Resort Hotel 1 378 2016 November
## 9185 Resort Hotel 1 378 2016 November
## 9186 Resort Hotel 1 378 2016 November
## 9187 Resort Hotel 1 378 2016 November
## 9188 Resort Hotel 1 378 2016 November
## 9189 Resort Hotel 1 378 2016 November
## 9190 Resort Hotel 1 378 2016 November
## 9191 Resort Hotel 1 378 2016 November
## 9192 Resort Hotel 1 378 2016 November
## 9193 Resort Hotel 1 378 2016 November
## 9194 Resort Hotel 1 378 2016 November
## 9195 Resort Hotel 1 378 2016 November
## 9196 Resort Hotel 1 378 2016 November
## 9197 Resort Hotel 1 378 2016 November
## 9198 Resort Hotel 1 58 2016 November
## 9199 Resort Hotel 1 46 2016 November
## 9200 Resort Hotel 1 113 2016 November
## 9201 Resort Hotel 1 113 2016 November
## 9202 Resort Hotel 1 113 2016 November
## 9203 Resort Hotel 1 113 2016 November
## 9204 Resort Hotel 1 42 2016 November
## 9205 Resort Hotel 1 37 2016 November
## 9206 Resort Hotel 1 27 2016 November
## 9207 Resort Hotel 1 49 2016 November
## 9208 Resort Hotel 1 20 2016 November
## 9209 Resort Hotel 1 292 2016 November
## 9210 Resort Hotel 1 292 2016 November
## 9211 Resort Hotel 1 13 2016 November
## 9212 Resort Hotel 1 13 2016 November
## 9213 Resort Hotel 1 292 2016 November
## 9214 Resort Hotel 1 292 2016 November
## 9215 Resort Hotel 1 292 2016 November
## 9216 Resort Hotel 1 292 2016 November
## 9217 Resort Hotel 1 292 2016 November
## 9218 Resort Hotel 1 292 2016 November
## 9219 Resort Hotel 1 13 2016 November
## 9220 Resort Hotel 1 292 2016 November
## 9221 Resort Hotel 1 292 2016 November
## 9222 Resort Hotel 1 292 2016 November
## 9223 Resort Hotel 1 292 2016 November
## 9224 Resort Hotel 1 13 2016 November
## 9225 Resort Hotel 1 44 2016 November
## 9226 Resort Hotel 1 70 2016 November
## 9227 Resort Hotel 1 192 2016 November
## 9228 Resort Hotel 1 66 2016 November
## 9229 Resort Hotel 1 0 2016 November
## 9230 Resort Hotel 1 57 2016 November
## 9231 Resort Hotel 1 64 2016 November
## 9232 Resort Hotel 1 46 2016 November
## 9233 Resort Hotel 1 22 2016 November
## 9234 Resort Hotel 1 46 2016 November
## 9235 Resort Hotel 1 26 2016 November
## 9236 Resort Hotel 1 24 2016 November
## 9237 Resort Hotel 1 84 2016 November
## 9238 Resort Hotel 1 201 2016 November
## 9239 Resort Hotel 1 42 2016 November
## 9240 Resort Hotel 1 46 2016 November
## 9241 Resort Hotel 1 23 2016 November
## 9242 Resort Hotel 1 33 2016 November
## 9243 Resort Hotel 1 211 2016 November
## 9244 Resort Hotel 1 211 2016 November
## 9245 Resort Hotel 1 211 2016 November
## 9246 Resort Hotel 1 99 2016 November
## 9247 Resort Hotel 1 201 2016 November
## 9248 Resort Hotel 1 201 2016 November
## 9249 Resort Hotel 1 211 2016 November
## 9250 Resort Hotel 1 211 2016 November
## 9251 Resort Hotel 1 99 2016 November
## 9252 Resort Hotel 1 211 2016 November
## 9253 Resort Hotel 1 201 2016 November
## 9254 Resort Hotel 1 211 2016 November
## 9255 Resort Hotel 1 211 2016 November
## 9256 Resort Hotel 1 211 2016 November
## 9257 Resort Hotel 1 99 2016 November
## 9258 Resort Hotel 1 211 2016 November
## 9259 Resort Hotel 1 201 2016 November
## 9260 Resort Hotel 1 211 2016 November
## 9261 Resort Hotel 1 211 2016 November
## 9262 Resort Hotel 1 44 2016 November
## 9263 Resort Hotel 1 75 2016 November
## 9264 Resort Hotel 1 44 2016 November
## 9265 Resort Hotel 1 47 2016 November
## 9266 Resort Hotel 1 13 2016 November
## 9267 Resort Hotel 1 13 2016 November
## 9268 Resort Hotel 1 36 2016 November
## 9269 Resort Hotel 1 33 2016 November
## 9270 Resort Hotel 1 67 2016 November
## 9271 Resort Hotel 1 224 2016 November
## 9272 Resort Hotel 1 98 2016 November
## 9273 Resort Hotel 1 44 2016 November
## 9274 Resort Hotel 1 0 2016 November
## 9275 Resort Hotel 1 0 2016 November
## 9276 Resort Hotel 1 28 2016 November
## 9277 Resort Hotel 1 157 2016 November
## 9278 Resort Hotel 1 25 2016 November
## 9279 Resort Hotel 1 21 2016 November
## 9280 Resort Hotel 1 32 2016 November
## 9281 Resort Hotel 1 194 2016 November
## 9282 Resort Hotel 1 20 2016 November
## 9283 Resort Hotel 1 38 2016 November
## 9284 Resort Hotel 1 38 2016 November
## 9285 Resort Hotel 1 75 2016 November
## 9286 Resort Hotel 1 43 2016 November
## 9287 Resort Hotel 1 32 2016 November
## 9288 Resort Hotel 1 245 2016 November
## 9289 Resort Hotel 1 93 2016 November
## 9290 Resort Hotel 1 2 2016 November
## 9291 Resort Hotel 1 86 2016 November
## 9292 Resort Hotel 1 105 2016 November
## 9293 Resort Hotel 1 61 2016 November
## 9294 Resort Hotel 1 37 2016 November
## 9295 Resort Hotel 1 37 2016 November
## 9296 Resort Hotel 1 74 2016 November
## 9297 Resort Hotel 1 135 2016 November
## 9298 Resort Hotel 1 135 2016 November
## 9299 Resort Hotel 1 150 2016 November
## 9300 Resort Hotel 1 135 2016 November
## 9301 Resort Hotel 1 135 2016 November
## 9302 Resort Hotel 1 37 2016 November
## 9303 Resort Hotel 1 135 2016 November
## 9304 Resort Hotel 1 135 2016 November
## 9305 Resort Hotel 1 135 2016 November
## 9306 Resort Hotel 1 19 2016 November
## 9307 Resort Hotel 1 33 2016 November
## 9308 Resort Hotel 1 33 2016 November
## 9309 Resort Hotel 1 33 2016 November
## 9310 Resort Hotel 1 53 2016 November
## 9311 Resort Hotel 1 39 2016 November
## 9312 Resort Hotel 1 31 2016 November
## 9313 Resort Hotel 1 58 2016 November
## 9314 Resort Hotel 1 100 2016 November
## 9315 Resort Hotel 1 85 2016 November
## 9316 Resort Hotel 1 53 2016 November
## 9317 Resort Hotel 1 53 2016 November
## 9318 Resort Hotel 1 122 2016 November
## 9319 Resort Hotel 1 59 2016 November
## 9320 Resort Hotel 1 32 2016 November
## 9321 Resort Hotel 1 40 2016 November
## 9322 Resort Hotel 1 217 2016 November
## 9323 Resort Hotel 1 51 2016 November
## 9324 Resort Hotel 1 44 2016 November
## 9325 Resort Hotel 1 159 2016 November
## 9326 Resort Hotel 1 53 2016 November
## 9327 Resort Hotel 1 47 2016 November
## 9328 Resort Hotel 1 53 2016 November
## 9329 Resort Hotel 1 30 2016 November
## 9330 Resort Hotel 1 211 2016 November
## 9331 Resort Hotel 1 54 2016 November
## 9332 Resort Hotel 1 81 2016 November
## 9333 Resort Hotel 1 139 2016 November
## 9334 Resort Hotel 1 59 2016 November
## 9335 Resort Hotel 1 59 2016 November
## 9336 Resort Hotel 1 124 2016 November
## 9337 Resort Hotel 1 0 2016 November
## 9338 Resort Hotel 1 1 2016 November
## 9339 Resort Hotel 1 0 2016 November
## 9340 Resort Hotel 1 21 2016 November
## 9341 Resort Hotel 1 0 2016 November
## 9342 Resort Hotel 1 48 2016 November
## 9343 Resort Hotel 1 136 2016 November
## 9344 Resort Hotel 1 50 2016 November
## 9345 Resort Hotel 1 47 2016 November
## 9346 Resort Hotel 1 73 2016 November
## 9347 Resort Hotel 1 22 2016 November
## 9348 Resort Hotel 1 185 2016 November
## 9349 Resort Hotel 1 42 2016 November
## 9350 Resort Hotel 1 116 2016 November
## 9351 Resort Hotel 1 100 2016 November
## 9352 Resort Hotel 1 100 2016 November
## 9353 Resort Hotel 1 80 2016 November
## 9354 Resort Hotel 1 80 2016 November
## 9355 Resort Hotel 1 115 2016 November
## 9356 Resort Hotel 1 94 2016 November
## 9357 Resort Hotel 1 37 2016 November
## 9358 Resort Hotel 1 52 2016 November
## 9359 Resort Hotel 1 28 2016 November
## 9360 Resort Hotel 1 8 2016 November
## 9361 Resort Hotel 1 21 2016 November
## 9362 Resort Hotel 1 45 2016 November
## 9363 Resort Hotel 1 46 2016 November
## 9364 Resort Hotel 1 91 2016 November
## 9365 Resort Hotel 1 65 2016 November
## 9366 Resort Hotel 1 84 2016 November
## 9367 Resort Hotel 1 67 2016 November
## 9368 Resort Hotel 1 94 2016 November
## 9369 Resort Hotel 0 24 2016 November
## 9370 Resort Hotel 1 44 2016 November
## 9371 Resort Hotel 1 44 2016 November
## 9372 Resort Hotel 1 110 2016 November
## 9373 Resort Hotel 1 20 2016 November
## 9374 Resort Hotel 1 40 2016 November
## 9375 Resort Hotel 1 25 2016 November
## 9376 Resort Hotel 1 5 2016 November
## 9377 Resort Hotel 1 0 2016 November
## 9378 Resort Hotel 1 66 2016 November
## 9379 Resort Hotel 1 67 2016 November
## 9380 Resort Hotel 1 159 2016 November
## 9381 Resort Hotel 1 64 2016 November
## 9382 Resort Hotel 1 163 2016 November
## 9383 Resort Hotel 1 18 2016 November
## 9384 Resort Hotel 1 40 2016 November
## 9385 Resort Hotel 1 159 2016 November
## 9386 Resort Hotel 1 56 2016 November
## 9387 Resort Hotel 1 32 2016 November
## 9388 Resort Hotel 1 1 2016 November
## 9389 Resort Hotel 1 11 2016 November
## 9390 Resort Hotel 1 44 2016 November
## 9391 Resort Hotel 1 7 2016 November
## 9392 Resort Hotel 1 7 2016 November
## 9393 Resort Hotel 1 7 2016 November
## 9394 Resort Hotel 1 32 2016 November
## 9395 Resort Hotel 1 59 2016 November
## 9396 Resort Hotel 1 199 2016 November
## 9397 Resort Hotel 1 59 2016 November
## 9398 Resort Hotel 1 215 2016 November
## 9399 Resort Hotel 1 242 2016 November
## 9400 Resort Hotel 1 220 2016 November
## 9401 Resort Hotel 1 46 2016 November
## 9402 Resort Hotel 1 64 2016 November
## 9403 Resort Hotel 1 101 2016 November
## 9404 Resort Hotel 1 16 2016 November
## 9405 Resort Hotel 1 45 2016 November
## 9406 Resort Hotel 1 73 2016 November
## 9407 Resort Hotel 1 58 2016 November
## 9408 Resort Hotel 1 96 2016 November
## 9409 Resort Hotel 1 48 2016 November
## 9410 Resort Hotel 1 48 2016 November
## 9411 Resort Hotel 1 25 2016 November
## 9412 Resort Hotel 1 59 2016 November
## 9413 Resort Hotel 1 46 2016 November
## 9414 Resort Hotel 1 29 2016 November
## 9415 Resort Hotel 1 222 2016 November
## 9416 Resort Hotel 1 222 2016 November
## 9417 Resort Hotel 1 232 2016 November
## 9418 Resort Hotel 1 232 2016 November
## 9419 Resort Hotel 1 232 2016 November
## 9420 Resort Hotel 1 222 2016 November
## 9421 Resort Hotel 1 232 2016 November
## 9422 Resort Hotel 1 232 2016 November
## 9423 Resort Hotel 1 232 2016 November
## 9424 Resort Hotel 1 232 2016 November
## 9425 Resort Hotel 1 232 2016 November
## 9426 Resort Hotel 1 222 2016 November
## 9427 Resort Hotel 1 232 2016 November
## 9428 Resort Hotel 1 232 2016 November
## 9429 Resort Hotel 1 232 2016 November
## 9430 Resort Hotel 1 232 2016 November
## 9431 Resort Hotel 1 48 2016 November
## 9432 Resort Hotel 1 101 2016 November
## 9433 Resort Hotel 1 69 2016 November
## 9434 Resort Hotel 1 12 2016 November
## 9435 Resort Hotel 1 152 2016 November
## 9436 Resort Hotel 1 15 2016 November
## 9437 Resort Hotel 1 8 2016 November
## 9438 Resort Hotel 1 7 2016 November
## 9439 Resort Hotel 1 25 2016 November
## 9440 Resort Hotel 1 34 2016 November
## 9441 Resort Hotel 1 76 2016 November
## 9442 Resort Hotel 1 76 2016 November
## 9443 Resort Hotel 1 76 2016 November
## 9444 Resort Hotel 1 76 2016 November
## 9445 Resort Hotel 1 76 2016 November
## 9446 Resort Hotel 1 8 2016 November
## 9447 Resort Hotel 1 132 2016 November
## 9448 Resort Hotel 1 44 2016 November
## 9449 Resort Hotel 1 2 2016 November
## 9450 Resort Hotel 1 139 2016 November
## 9451 Resort Hotel 1 69 2016 November
## 9452 Resort Hotel 1 0 2016 November
## 9453 Resort Hotel 1 214 2016 November
## 9454 Resort Hotel 1 7 2016 December
## 9455 Resort Hotel 1 16 2016 December
## 9456 Resort Hotel 1 43 2016 December
## 9457 Resort Hotel 1 88 2016 December
## 9458 Resort Hotel 1 139 2016 December
## 9459 Resort Hotel 1 135 2016 December
## 9460 Resort Hotel 1 14 2016 December
## 9461 Resort Hotel 1 87 2016 December
## 9462 Resort Hotel 1 63 2016 December
## 9463 Resort Hotel 1 82 2016 December
## 9464 Resort Hotel 1 92 2016 December
## 9465 Resort Hotel 1 55 2016 December
## 9466 Resort Hotel 1 128 2016 December
## 9467 Resort Hotel 1 128 2016 December
## 9468 Resort Hotel 1 45 2016 December
## 9469 Resort Hotel 1 128 2016 December
## 9470 Resort Hotel 1 128 2016 December
## 9471 Resort Hotel 1 128 2016 December
## 9472 Resort Hotel 1 128 2016 December
## 9473 Resort Hotel 1 128 2016 December
## 9474 Resort Hotel 1 128 2016 December
## 9475 Resort Hotel 1 128 2016 December
## 9476 Resort Hotel 1 128 2016 December
## 9477 Resort Hotel 1 128 2016 December
## 9478 Resort Hotel 1 183 2016 December
## 9479 Resort Hotel 1 183 2016 December
## 9480 Resort Hotel 1 183 2016 December
## 9481 Resort Hotel 1 183 2016 December
## 9482 Resort Hotel 1 183 2016 December
## 9483 Resort Hotel 1 183 2016 December
## 9484 Resort Hotel 1 183 2016 December
## 9485 Resort Hotel 1 183 2016 December
## 9486 Resort Hotel 1 183 2016 December
## 9487 Resort Hotel 1 183 2016 December
## 9488 Resort Hotel 1 183 2016 December
## 9489 Resort Hotel 1 183 2016 December
## 9490 Resort Hotel 1 183 2016 December
## 9491 Resort Hotel 1 183 2016 December
## 9492 Resort Hotel 1 183 2016 December
## 9493 Resort Hotel 1 183 2016 December
## 9494 Resort Hotel 1 183 2016 December
## 9495 Resort Hotel 1 183 2016 December
## 9496 Resort Hotel 1 183 2016 December
## 9497 Resort Hotel 1 183 2016 December
## 9498 Resort Hotel 1 183 2016 December
## 9499 Resort Hotel 1 183 2016 December
## 9500 Resort Hotel 1 183 2016 December
## 9501 Resort Hotel 1 183 2016 December
## 9502 Resort Hotel 1 183 2016 December
## 9503 Resort Hotel 1 183 2016 December
## 9504 Resort Hotel 1 183 2016 December
## 9505 Resort Hotel 1 183 2016 December
## 9506 Resort Hotel 1 183 2016 December
## 9507 Resort Hotel 1 183 2016 December
## 9508 Resort Hotel 1 102 2016 December
## 9509 Resort Hotel 1 14 2016 December
## 9510 Resort Hotel 1 14 2016 December
## 9511 Resort Hotel 1 85 2016 December
## 9512 Resort Hotel 1 14 2016 December
## 9513 Resort Hotel 1 14 2016 December
## 9514 Resort Hotel 1 14 2016 December
## 9515 Resort Hotel 1 14 2016 December
## 9516 Resort Hotel 1 3 2016 December
## 9517 Resort Hotel 1 67 2016 December
## 9518 Resort Hotel 1 239 2016 December
## 9519 Resort Hotel 1 95 2016 December
## 9520 Resort Hotel 0 1 2016 December
## 9521 Resort Hotel 1 34 2016 December
## 9522 Resort Hotel 1 51 2016 December
## 9523 Resort Hotel 1 57 2016 December
## 9524 Resort Hotel 1 65 2016 December
## 9525 Resort Hotel 1 95 2016 December
## 9526 Resort Hotel 1 75 2016 December
## 9527 Resort Hotel 1 35 2016 December
## 9528 Resort Hotel 1 57 2016 December
## 9529 Resort Hotel 1 82 2016 December
## 9530 Resort Hotel 1 16 2016 December
## 9531 Resort Hotel 1 33 2016 December
## 9532 Resort Hotel 1 21 2016 December
## 9533 Resort Hotel 1 38 2016 December
## 9534 Resort Hotel 1 16 2016 December
## 9535 Resort Hotel 1 22 2016 December
## 9536 Resort Hotel 1 38 2016 December
## 9537 Resort Hotel 1 22 2016 December
## 9538 Resort Hotel 1 22 2016 December
## 9539 Resort Hotel 1 22 2016 December
## 9540 Resort Hotel 1 22 2016 December
## 9541 Resort Hotel 1 22 2016 December
## 9542 Resort Hotel 1 22 2016 December
## 9543 Resort Hotel 1 22 2016 December
## 9544 Resort Hotel 1 22 2016 December
## 9545 Resort Hotel 1 22 2016 December
## 9546 Resort Hotel 1 22 2016 December
## 9547 Resort Hotel 1 99 2016 December
## 9548 Resort Hotel 1 92 2016 December
## 9549 Resort Hotel 1 105 2016 December
## 9550 Resort Hotel 1 149 2016 December
## 9551 Resort Hotel 1 200 2016 December
## 9552 Resort Hotel 1 86 2016 December
## 9553 Resort Hotel 1 63 2016 December
## 9554 Resort Hotel 1 92 2016 December
## 9555 Resort Hotel 1 26 2016 December
## 9556 Resort Hotel 1 4 2016 December
## 9557 Resort Hotel 1 12 2016 December
## 9558 Resort Hotel 1 71 2016 December
## 9559 Resort Hotel 1 23 2016 December
## 9560 Resort Hotel 1 23 2016 December
## 9561 Resort Hotel 1 51 2016 December
## 9562 Resort Hotel 1 25 2016 December
## 9563 Resort Hotel 1 58 2016 December
## 9564 Resort Hotel 1 20 2016 December
## 9565 Resort Hotel 1 81 2016 December
## 9566 Resort Hotel 1 152 2016 December
## 9567 Resort Hotel 1 5 2016 December
## 9568 Resort Hotel 1 5 2016 December
## 9569 Resort Hotel 1 48 2016 December
## 9570 Resort Hotel 1 5 2016 December
## 9571 Resort Hotel 1 1 2016 December
## 9572 Resort Hotel 1 210 2016 December
## 9573 Resort Hotel 1 0 2016 December
## 9574 Resort Hotel 1 245 2016 December
## 9575 Resort Hotel 1 245 2016 December
## 9576 Resort Hotel 1 50 2016 December
## 9577 Resort Hotel 1 50 2016 December
## 9578 Resort Hotel 1 125 2016 December
## 9579 Resort Hotel 1 45 2016 December
## 9580 Resort Hotel 1 23 2016 December
## 9581 Resort Hotel 1 15 2016 December
## 9582 Resort Hotel 1 121 2016 December
## 9583 Resort Hotel 1 38 2016 December
## 9584 Resort Hotel 1 17 2016 December
## 9585 Resort Hotel 1 19 2016 December
## 9586 Resort Hotel 1 4 2016 December
## 9587 Resort Hotel 1 86 2016 December
## 9588 Resort Hotel 1 52 2016 December
## 9589 Resort Hotel 1 53 2016 December
## 9590 Resort Hotel 1 52 2016 December
## 9591 Resort Hotel 1 53 2016 December
## 9592 Resort Hotel 1 79 2016 December
## 9593 Resort Hotel 1 11 2016 December
## 9594 Resort Hotel 1 49 2016 December
## 9595 Resort Hotel 1 60 2016 December
## 9596 Resort Hotel 1 105 2016 December
## 9597 Resort Hotel 1 14 2016 December
## 9598 Resort Hotel 1 200 2016 December
## 9599 Resort Hotel 1 206 2016 December
## 9600 Resort Hotel 1 52 2016 December
## 9601 Resort Hotel 1 52 2016 December
## 9602 Resort Hotel 1 92 2016 December
## 9603 Resort Hotel 1 95 2016 December
## 9604 Resort Hotel 1 21 2016 December
## 9605 Resort Hotel 1 0 2016 December
## 9606 Resort Hotel 1 244 2016 December
## 9607 Resort Hotel 1 30 2016 December
## 9608 Resort Hotel 1 85 2016 December
## 9609 Resort Hotel 1 350 2016 December
## 9610 Resort Hotel 1 308 2016 December
## 9611 Resort Hotel 1 4 2016 December
## 9612 Resort Hotel 1 19 2016 December
## 9613 Resort Hotel 1 4 2016 December
## 9614 Resort Hotel 1 102 2016 December
## 9615 Resort Hotel 1 188 2016 December
## 9616 Resort Hotel 1 194 2016 December
## 9617 Resort Hotel 1 172 2016 December
## 9618 Resort Hotel 1 208 2016 December
## 9619 Resort Hotel 1 250 2016 December
## 9620 Resort Hotel 1 250 2016 December
## 9621 Resort Hotel 1 250 2016 December
## 9622 Resort Hotel 1 250 2016 December
## 9623 Resort Hotel 1 250 2016 December
## 9624 Resort Hotel 1 0 2016 December
## 9625 Resort Hotel 1 226 2016 December
## 9626 Resort Hotel 1 2 2016 December
## 9627 Resort Hotel 1 247 2016 December
## 9628 Resort Hotel 1 84 2016 December
## 9629 Resort Hotel 1 75 2016 December
## 9630 Resort Hotel 1 251 2016 December
## 9631 Resort Hotel 1 126 2016 December
## 9632 Resort Hotel 1 1 2016 December
## 9633 Resort Hotel 1 159 2016 December
## 9634 Resort Hotel 1 130 2016 December
## 9635 Resort Hotel 1 252 2016 December
## 9636 Resort Hotel 1 252 2016 December
## 9637 Resort Hotel 1 248 2016 December
## 9638 Resort Hotel 1 252 2016 December
## 9639 Resort Hotel 1 252 2016 December
## 9640 Resort Hotel 1 248 2016 December
## 9641 Resort Hotel 1 156 2016 December
## 9642 Resort Hotel 1 248 2016 December
## 9643 Resort Hotel 1 248 2016 December
## 9644 Resort Hotel 1 227 2016 December
## 9645 Resort Hotel 1 128 2016 December
## 9646 Resort Hotel 1 181 2016 December
## 9647 Resort Hotel 1 2 2016 December
## 9648 Resort Hotel 1 99 2016 December
## 9649 Resort Hotel 1 53 2016 December
## 9650 Resort Hotel 1 59 2016 December
## 9651 Resort Hotel 1 59 2016 December
## 9652 Resort Hotel 1 99 2016 December
## 9653 Resort Hotel 1 73 2016 December
## 9654 Resort Hotel 1 57 2016 December
## 9655 Resort Hotel 1 57 2016 December
## 9656 Resort Hotel 1 88 2016 December
## 9657 Resort Hotel 1 88 2016 December
## 9658 Resort Hotel 1 91 2016 December
## 9659 Resort Hotel 1 91 2016 December
## 9660 Resort Hotel 1 91 2016 December
## 9661 Resort Hotel 1 91 2016 December
## 9662 Resort Hotel 1 91 2016 December
## 9663 Resort Hotel 1 90 2016 December
## 9664 Resort Hotel 1 90 2016 December
## 9665 Resort Hotel 1 92 2016 December
## 9666 Resort Hotel 1 88 2016 December
## 9667 Resort Hotel 1 38 2016 December
## 9668 Resort Hotel 1 38 2016 December
## 9669 Resort Hotel 1 59 2016 December
## 9670 Resort Hotel 1 76 2016 December
## 9671 Resort Hotel 1 9 2016 December
## 9672 Resort Hotel 1 73 2016 December
## 9673 Resort Hotel 1 168 2016 December
## 9674 Resort Hotel 1 79 2016 December
## 9675 Resort Hotel 1 79 2016 December
## 9676 Resort Hotel 1 79 2016 December
## 9677 Resort Hotel 1 4 2016 December
## 9678 Resort Hotel 1 18 2016 December
## 9679 Resort Hotel 1 131 2016 December
## 9680 Resort Hotel 1 226 2016 December
## 9681 Resort Hotel 1 196 2016 December
## 9682 Resort Hotel 1 295 2016 December
## 9683 Resort Hotel 1 247 2016 December
## 9684 Resort Hotel 1 107 2016 December
## 9685 Resort Hotel 1 161 2016 December
## 9686 Resort Hotel 1 62 2016 December
## 9687 Resort Hotel 1 91 2016 December
## 9688 Resort Hotel 1 15 2016 December
## 9689 Resort Hotel 1 83 2016 December
## 9690 Resort Hotel 1 65 2016 December
## 9691 Resort Hotel 1 90 2016 December
## 9692 Resort Hotel 1 155 2016 December
## 9693 Resort Hotel 1 168 2016 December
## 9694 Resort Hotel 1 161 2016 December
## 9695 Resort Hotel 1 126 2016 December
## 9696 Resort Hotel 1 98 2016 December
## 9697 Resort Hotel 1 172 2016 December
## 9698 Resort Hotel 1 126 2016 December
## 9699 Resort Hotel 1 126 2016 December
## 9700 Resort Hotel 1 258 2016 December
## 9701 Resort Hotel 1 172 2016 December
## 9702 Resort Hotel 1 126 2016 December
## 9703 Resort Hotel 1 125 2016 December
## 9704 Resort Hotel 1 288 2016 December
## 9705 Resort Hotel 1 288 2016 December
## 9706 Resort Hotel 1 12 2016 December
## 9707 Resort Hotel 1 12 2016 December
## 9708 Resort Hotel 1 135 2016 December
## 9709 Resort Hotel 1 44 2016 December
## 9710 Resort Hotel 1 137 2016 December
## 9711 Resort Hotel 1 122 2016 December
## 9712 Resort Hotel 1 309 2016 December
## 9713 Resort Hotel 1 135 2016 December
## 9714 Resort Hotel 1 12 2016 December
## 9715 Resort Hotel 1 10 2016 December
## 9716 Resort Hotel 1 119 2016 December
## 9717 Resort Hotel 1 335 2016 December
## 9718 Resort Hotel 1 13 2016 December
## 9719 Resort Hotel 1 294 2016 December
## 9720 Resort Hotel 1 131 2016 December
## 9721 Resort Hotel 1 16 2016 December
## 9722 Resort Hotel 1 64 2016 December
## 9723 Resort Hotel 1 9 2016 December
## 9724 Resort Hotel 1 182 2016 December
## 9725 Resort Hotel 1 258 2016 December
## 9726 Resort Hotel 1 258 2016 December
## 9727 Resort Hotel 1 51 2016 December
## 9728 Resort Hotel 1 31 2016 December
## 9729 Resort Hotel 1 95 2016 December
## 9730 Resort Hotel 1 131 2016 December
## 9731 Resort Hotel 1 70 2016 December
## 9732 Resort Hotel 1 317 2016 December
## 9733 Resort Hotel 1 238 2016 December
## 9734 Resort Hotel 1 187 2016 December
## 9735 Resort Hotel 1 44 2016 December
## 9736 Resort Hotel 1 70 2016 December
## 9737 Resort Hotel 1 187 2016 December
## 9738 Resort Hotel 1 239 2016 December
## 9739 Resort Hotel 1 21 2016 December
## 9740 Resort Hotel 1 17 2016 December
## 9741 Resort Hotel 1 317 2016 December
## 9742 Resort Hotel 1 315 2016 December
## 9743 Resort Hotel 1 319 2016 December
## 9744 Resort Hotel 1 66 2016 December
## 9745 Resort Hotel 1 196 2016 December
## 9746 Resort Hotel 1 196 2016 December
## 9747 Resort Hotel 1 11 2016 December
## 9748 Resort Hotel 1 135 2016 December
## 9749 Resort Hotel 1 109 2016 December
## 9750 Resort Hotel 1 72 2016 December
## 9751 Resort Hotel 1 196 2016 December
## 9752 Resort Hotel 1 156 2016 December
## 9753 Resort Hotel 1 196 2016 December
## 9754 Resort Hotel 1 196 2016 December
## 9755 Resort Hotel 1 72 2016 December
## 9756 Resort Hotel 1 135 2016 December
## 9757 Resort Hotel 1 196 2016 December
## 9758 Resort Hotel 1 62 2016 December
## 9759 Resort Hotel 1 11 2016 December
## 9760 Resort Hotel 1 20 2016 December
## 9761 Resort Hotel 1 196 2016 December
## 9762 Resort Hotel 1 10 2016 December
## 9763 Resort Hotel 1 196 2016 December
## 9764 Resort Hotel 1 196 2016 December
## 9765 Resort Hotel 1 2 2016 December
## 9766 Resort Hotel 1 280 2016 December
## 9767 Resort Hotel 1 280 2016 December
## 9768 Resort Hotel 1 99 2016 December
## 9769 Resort Hotel 1 319 2016 December
## 9770 Resort Hotel 1 42 2016 December
## 9771 Resort Hotel 1 284 2016 December
## 9772 Resort Hotel 1 42 2016 December
## 9773 Resort Hotel 1 78 2016 December
## 9774 Resort Hotel 1 130 2016 December
## 9775 Resort Hotel 1 55 2016 December
## 9776 Resort Hotel 1 74 2017 January
## 9777 Resort Hotel 1 62 2017 January
## 9778 Resort Hotel 1 62 2017 January
## 9779 Resort Hotel 1 62 2017 January
## 9780 Resort Hotel 1 71 2017 January
## 9781 Resort Hotel 1 88 2017 January
## 9782 Resort Hotel 1 172 2017 January
## 9783 Resort Hotel 1 168 2017 January
## 9784 Resort Hotel 1 52 2017 January
## 9785 Resort Hotel 1 25 2017 January
## 9786 Resort Hotel 1 42 2017 January
## 9787 Resort Hotel 1 42 2017 January
## 9788 Resort Hotel 1 143 2017 January
## 9789 Resort Hotel 1 89 2017 January
## 9790 Resort Hotel 1 131 2017 January
## 9791 Resort Hotel 1 21 2017 January
## 9792 Resort Hotel 1 89 2017 January
## 9793 Resort Hotel 1 48 2017 January
## 9794 Resort Hotel 1 31 2017 January
## 9795 Resort Hotel 1 47 2017 January
## 9796 Resort Hotel 1 20 2017 January
## 9797 Resort Hotel 1 173 2017 January
## 9798 Resort Hotel 1 36 2017 January
## 9799 Resort Hotel 1 23 2017 January
## 9800 Resort Hotel 1 46 2017 January
## 9801 Resort Hotel 1 56 2017 January
## 9802 Resort Hotel 1 56 2017 January
## 9803 Resort Hotel 1 149 2017 January
## 9804 Resort Hotel 1 44 2017 January
## 9805 Resort Hotel 1 68 2017 January
## 9806 Resort Hotel 1 6 2017 January
## 9807 Resort Hotel 1 23 2017 January
## 9808 Resort Hotel 1 43 2017 January
## 9809 Resort Hotel 1 43 2017 January
## 9810 Resort Hotel 1 112 2017 January
## 9811 Resort Hotel 1 59 2017 January
## 9812 Resort Hotel 1 65 2017 January
## 9813 Resort Hotel 1 93 2017 January
## 9814 Resort Hotel 1 4 2017 January
## 9815 Resort Hotel 1 115 2017 January
## 9816 Resort Hotel 1 187 2017 January
## 9817 Resort Hotel 1 11 2017 January
## 9818 Resort Hotel 1 11 2017 January
## 9819 Resort Hotel 1 2 2017 January
## 9820 Resort Hotel 1 32 2017 January
## 9821 Resort Hotel 1 27 2017 January
## 9822 Resort Hotel 1 15 2017 January
## 9823 Resort Hotel 1 42 2017 January
## 9824 Resort Hotel 1 86 2017 January
## 9825 Resort Hotel 1 23 2017 January
## 9826 Resort Hotel 1 36 2017 January
## 9827 Resort Hotel 1 66 2017 January
## 9828 Resort Hotel 1 140 2017 January
## 9829 Resort Hotel 1 113 2017 January
## 9830 Resort Hotel 1 113 2017 January
## 9831 Resort Hotel 1 102 2017 January
## 9832 Resort Hotel 1 52 2017 January
## 9833 Resort Hotel 1 85 2017 January
## 9834 Resort Hotel 1 125 2017 January
## 9835 Resort Hotel 1 161 2017 January
## 9836 Resort Hotel 1 161 2017 January
## 9837 Resort Hotel 1 154 2017 January
## 9838 Resort Hotel 1 154 2017 January
## 9839 Resort Hotel 1 0 2017 January
## 9840 Resort Hotel 1 322 2017 January
## 9841 Resort Hotel 1 1 2017 January
## 9842 Resort Hotel 1 0 2017 January
## 9843 Resort Hotel 1 2 2017 January
## 9844 Resort Hotel 1 1 2017 January
## 9845 Resort Hotel 1 5 2017 January
## 9846 Resort Hotel 1 35 2017 January
## 9847 Resort Hotel 1 37 2017 January
## 9848 Resort Hotel 1 58 2017 January
## 9849 Resort Hotel 1 60 2017 January
## 9850 Resort Hotel 1 129 2017 January
## 9851 Resort Hotel 1 84 2017 January
## 9852 Resort Hotel 1 115 2017 January
## 9853 Resort Hotel 1 78 2017 January
## 9854 Resort Hotel 1 10 2017 January
## 9855 Resort Hotel 1 82 2017 January
## 9856 Resort Hotel 1 11 2017 January
## 9857 Resort Hotel 1 8 2017 January
## 9858 Resort Hotel 1 18 2017 January
## 9859 Resort Hotel 1 22 2017 January
## 9860 Resort Hotel 1 33 2017 January
## 9861 Resort Hotel 1 108 2017 January
## 9862 Resort Hotel 1 87 2017 January
## 9863 Resort Hotel 1 275 2017 January
## 9864 Resort Hotel 1 87 2017 January
## 9865 Resort Hotel 1 106 2017 January
## 9866 Resort Hotel 1 45 2017 January
## 9867 Resort Hotel 1 45 2017 January
## 9868 Resort Hotel 1 90 2017 January
## 9869 Resort Hotel 1 242 2017 January
## 9870 Resort Hotel 1 19 2017 January
## 9871 Resort Hotel 1 18 2017 January
## 9872 Resort Hotel 1 281 2017 January
## 9873 Resort Hotel 1 281 2017 January
## 9874 Resort Hotel 1 40 2017 January
## 9875 Resort Hotel 1 40 2017 January
## 9876 Resort Hotel 1 40 2017 January
## 9877 Resort Hotel 1 40 2017 January
## 9878 Resort Hotel 1 40 2017 January
## 9879 Resort Hotel 1 27 2017 January
## 9880 Resort Hotel 1 40 2017 January
## 9881 Resort Hotel 1 17 2017 January
## 9882 Resort Hotel 1 40 2017 January
## 9883 Resort Hotel 1 40 2017 January
## 9884 Resort Hotel 1 17 2017 January
## 9885 Resort Hotel 1 0 2017 January
## 9886 Resort Hotel 1 40 2017 January
## 9887 Resort Hotel 1 40 2017 January
## 9888 Resort Hotel 1 40 2017 January
## 9889 Resort Hotel 1 5 2017 January
## 9890 Resort Hotel 1 0 2017 January
## 9891 Resort Hotel 1 16 2017 January
## 9892 Resort Hotel 1 1 2017 January
## 9893 Resort Hotel 1 41 2017 January
## 9894 Resort Hotel 1 134 2017 January
## 9895 Resort Hotel 1 1 2017 January
## 9896 Resort Hotel 1 3 2017 January
## 9897 Resort Hotel 1 3 2017 January
## 9898 Resort Hotel 1 41 2017 January
## 9899 Resort Hotel 1 41 2017 January
## 9900 Resort Hotel 1 135 2017 January
## 9901 Resort Hotel 1 123 2017 January
## 9902 Resort Hotel 1 3 2017 January
## 9903 Resort Hotel 1 128 2017 January
## 9904 Resort Hotel 1 47 2017 January
## 9905 Resort Hotel 1 128 2017 January
## 9906 Resort Hotel 1 10 2017 January
## 9907 Resort Hotel 1 123 2017 January
## 9908 Resort Hotel 1 72 2017 January
## 9909 Resort Hotel 1 86 2017 January
## 9910 Resort Hotel 1 12 2017 January
## 9911 Resort Hotel 1 43 2017 January
## 9912 Resort Hotel 1 15 2017 January
## 9913 Resort Hotel 1 124 2017 January
## 9914 Resort Hotel 1 44 2017 January
## 9915 Resort Hotel 1 103 2017 January
## 9916 Resort Hotel 1 8 2017 January
## 9917 Resort Hotel 1 5 2017 January
## 9918 Resort Hotel 1 5 2017 January
## 9919 Resort Hotel 1 5 2017 January
## 9920 Resort Hotel 1 5 2017 January
## 9921 Resort Hotel 1 160 2017 January
## 9922 Resort Hotel 1 13 2017 January
## 9923 Resort Hotel 1 6 2017 January
## 9924 Resort Hotel 1 54 2017 January
## 9925 Resort Hotel 0 0 2017 January
## 9926 Resort Hotel 1 33 2017 January
## 9927 Resort Hotel 1 77 2017 January
## 9928 Resort Hotel 1 58 2017 January
## 9929 Resort Hotel 1 65 2017 January
## 9930 Resort Hotel 1 281 2017 January
## 9931 Resort Hotel 1 27 2017 January
## 9932 Resort Hotel 1 24 2017 January
## 9933 Resort Hotel 1 30 2017 January
## 9934 Resort Hotel 1 27 2017 January
## 9935 Resort Hotel 1 24 2017 January
## 9936 Resort Hotel 1 27 2017 January
## 9937 Resort Hotel 1 124 2017 January
## 9938 Resort Hotel 1 43 2017 January
## 9939 Resort Hotel 1 16 2017 January
## 9940 Resort Hotel 1 43 2017 January
## 9941 Resort Hotel 1 43 2017 January
## 9942 Resort Hotel 1 73 2017 January
## 9943 Resort Hotel 1 78 2017 January
## 9944 Resort Hotel 1 16 2017 January
## 9945 Resort Hotel 1 17 2017 January
## 9946 Resort Hotel 1 94 2017 January
## 9947 Resort Hotel 1 2 2017 January
## 9948 Resort Hotel 1 17 2017 January
## 9949 Resort Hotel 1 9 2017 January
## 9950 Resort Hotel 1 3 2017 January
## 9951 Resort Hotel 1 94 2017 January
## 9952 Resort Hotel 1 33 2017 January
## 9953 Resort Hotel 1 18 2017 January
## 9954 Resort Hotel 1 4 2017 January
## 9955 Resort Hotel 1 4 2017 January
## 9956 Resort Hotel 1 209 2017 January
## 9957 Resort Hotel 1 5 2017 January
## 9958 Resort Hotel 1 3 2017 January
## 9959 Resort Hotel 1 219 2017 January
## 9960 Resort Hotel 1 60 2017 January
## 9961 Resort Hotel 1 178 2017 January
## 9962 Resort Hotel 1 11 2017 January
## 9963 Resort Hotel 1 84 2017 January
## 9964 Resort Hotel 1 82 2017 January
## 9965 Resort Hotel 1 125 2017 January
## 9966 Resort Hotel 1 79 2017 January
## 9967 Resort Hotel 1 12 2017 January
## 9968 Resort Hotel 1 12 2017 January
## 9969 Resort Hotel 1 12 2017 January
## 9970 Resort Hotel 1 72 2017 January
## 9971 Resort Hotel 1 15 2017 January
## 9972 Resort Hotel 1 71 2017 January
## 9973 Resort Hotel 1 17 2017 January
## 9974 Resort Hotel 1 36 2017 January
## 9975 Resort Hotel 1 292 2017 January
## 9976 Resort Hotel 1 106 2017 January
## 9977 Resort Hotel 1 20 2017 January
## 9978 Resort Hotel 1 186 2017 January
## 9979 Resort Hotel 1 76 2017 February
## 9980 Resort Hotel 1 11 2017 February
## 9981 Resort Hotel 1 0 2017 February
## 9982 Resort Hotel 1 123 2017 February
## 9983 Resort Hotel 1 85 2017 February
## 9984 Resort Hotel 1 0 2017 February
## 9985 Resort Hotel 1 2 2017 February
## 9986 Resort Hotel 1 169 2017 February
## 9987 Resort Hotel 1 169 2017 February
## 9988 Resort Hotel 1 81 2017 February
## 9989 Resort Hotel 1 110 2017 February
## 9990 Resort Hotel 1 0 2017 February
## 9991 Resort Hotel 1 2 2017 February
## 9992 Resort Hotel 1 21 2017 February
## 9993 Resort Hotel 1 31 2017 February
## 9994 Resort Hotel 1 98 2017 February
## 9995 Resort Hotel 1 166 2017 February
## 9996 Resort Hotel 1 28 2017 February
## 9997 Resort Hotel 1 31 2017 February
## 9998 Resort Hotel 1 0 2017 February
## 9999 Resort Hotel 1 1 2017 February
## 10000 Resort Hotel 1 1 2017 February
## 10001 Resort Hotel 1 1 2017 February
## 10002 Resort Hotel 1 0 2017 February
## 10003 Resort Hotel 1 1 2017 February
## 10004 Resort Hotel 1 29 2017 February
## 10005 Resort Hotel 1 83 2017 February
## 10006 Resort Hotel 1 83 2017 February
## 10007 Resort Hotel 1 111 2017 February
## 10008 Resort Hotel 1 54 2017 February
## 10009 Resort Hotel 1 85 2017 February
## 10010 Resort Hotel 1 200 2017 February
## 10011 Resort Hotel 1 135 2017 February
## 10012 Resort Hotel 1 131 2017 February
## 10013 Resort Hotel 1 3 2017 February
## 10014 Resort Hotel 1 80 2017 February
## 10015 Resort Hotel 1 145 2017 February
## 10016 Resort Hotel 1 40 2017 February
## 10017 Resort Hotel 1 102 2017 February
## 10018 Resort Hotel 1 102 2017 February
## 10019 Resort Hotel 1 0 2017 February
## 10020 Resort Hotel 1 102 2017 February
## 10021 Resort Hotel 1 95 2017 February
## 10022 Resort Hotel 1 35 2017 February
## 10023 Resort Hotel 1 170 2017 February
## 10024 Resort Hotel 1 170 2017 February
## 10025 Resort Hotel 1 125 2017 February
## 10026 Resort Hotel 1 307 2017 February
## 10027 Resort Hotel 1 298 2017 February
## 10028 Resort Hotel 1 348 2017 February
## 10029 Resort Hotel 1 55 2017 February
## 10030 Resort Hotel 1 55 2017 February
## 10031 Resort Hotel 1 94 2017 February
## 10032 Resort Hotel 1 55 2017 February
## 10033 Resort Hotel 1 77 2017 February
## 10034 Resort Hotel 1 8 2017 February
## 10035 Resort Hotel 1 35 2017 February
## 10036 Resort Hotel 1 11 2017 February
## 10037 Resort Hotel 1 135 2017 February
## 10038 Resort Hotel 1 98 2017 February
## 10039 Resort Hotel 1 32 2017 February
## 10040 Resort Hotel 1 25 2017 February
## 10041 Resort Hotel 1 18 2017 February
## 10042 Resort Hotel 1 238 2017 February
## 10043 Resort Hotel 1 238 2017 February
## 10044 Resort Hotel 1 238 2017 February
## 10045 Resort Hotel 1 238 2017 February
## 10046 Resort Hotel 1 238 2017 February
## 10047 Resort Hotel 1 24 2017 February
## 10048 Resort Hotel 1 238 2017 February
## 10049 Resort Hotel 1 238 2017 February
## 10050 Resort Hotel 1 238 2017 February
## 10051 Resort Hotel 1 43 2017 February
## 10052 Resort Hotel 1 238 2017 February
## 10053 Resort Hotel 1 238 2017 February
## 10054 Resort Hotel 1 238 2017 February
## 10055 Resort Hotel 1 238 2017 February
## 10056 Resort Hotel 1 238 2017 February
## 10057 Resort Hotel 1 238 2017 February
## 10058 Resort Hotel 1 238 2017 February
## 10059 Resort Hotel 1 238 2017 February
## 10060 Resort Hotel 1 238 2017 February
## 10061 Resort Hotel 1 238 2017 February
## 10062 Resort Hotel 1 238 2017 February
## 10063 Resort Hotel 1 7 2017 February
## 10064 Resort Hotel 1 238 2017 February
## 10065 Resort Hotel 1 238 2017 February
## 10066 Resort Hotel 1 238 2017 February
## 10067 Resort Hotel 1 238 2017 February
## 10068 Resort Hotel 1 238 2017 February
## 10069 Resort Hotel 1 19 2017 February
## 10070 Resort Hotel 1 24 2017 February
## 10071 Resort Hotel 1 238 2017 February
## 10072 Resort Hotel 1 238 2017 February
## 10073 Resort Hotel 1 211 2017 February
## 10074 Resort Hotel 1 238 2017 February
## 10075 Resort Hotel 1 238 2017 February
## 10076 Resort Hotel 1 238 2017 February
## 10077 Resort Hotel 1 54 2017 February
## 10078 Resort Hotel 1 55 2017 February
## 10079 Resort Hotel 1 77 2017 February
## 10080 Resort Hotel 1 54 2017 February
## 10081 Resort Hotel 1 89 2017 February
## 10082 Resort Hotel 1 14 2017 February
## 10083 Resort Hotel 1 77 2017 February
## 10084 Resort Hotel 1 137 2017 February
## 10085 Resort Hotel 1 15 2017 February
## 10086 Resort Hotel 1 39 2017 February
## 10087 Resort Hotel 1 32 2017 February
## 10088 Resort Hotel 1 0 2017 February
## 10089 Resort Hotel 1 1 2017 February
## 10090 Resort Hotel 1 25 2017 February
## 10091 Resort Hotel 1 1 2017 February
## 10092 Resort Hotel 1 19 2017 February
## 10093 Resort Hotel 1 33 2017 February
## 10094 Resort Hotel 1 161 2017 February
## 10095 Resort Hotel 1 55 2017 February
## 10096 Resort Hotel 1 26 2017 February
## 10097 Resort Hotel 1 149 2017 February
## 10098 Resort Hotel 1 22 2017 February
## 10099 Resort Hotel 1 82 2017 February
## 10100 Resort Hotel 1 82 2017 February
## 10101 Resort Hotel 1 239 2017 February
## 10102 Resort Hotel 1 0 2017 February
## 10103 Resort Hotel 1 18 2017 February
## 10104 Resort Hotel 1 108 2017 February
## 10105 Resort Hotel 1 40 2017 February
## 10106 Resort Hotel 1 40 2017 February
## 10107 Resort Hotel 1 12 2017 February
## 10108 Resort Hotel 1 206 2017 February
## 10109 Resort Hotel 1 134 2017 February
## 10110 Resort Hotel 1 19 2017 February
## 10111 Resort Hotel 1 19 2017 February
## 10112 Resort Hotel 1 9 2017 February
## 10113 Resort Hotel 1 42 2017 February
## 10114 Resort Hotel 1 179 2017 February
## 10115 Resort Hotel 1 20 2017 February
## 10116 Resort Hotel 1 11 2017 February
## 10117 Resort Hotel 1 46 2017 February
## 10118 Resort Hotel 1 205 2017 February
## 10119 Resort Hotel 1 60 2017 February
## 10120 Resort Hotel 1 123 2017 February
## 10121 Resort Hotel 1 142 2017 February
## 10122 Resort Hotel 1 2 2017 February
## 10123 Resort Hotel 1 47 2017 February
## 10124 Resort Hotel 1 38 2017 February
## 10125 Resort Hotel 1 33 2017 February
## 10126 Resort Hotel 1 17 2017 February
## 10127 Resort Hotel 1 19 2017 February
## 10128 Resort Hotel 1 14 2017 February
## 10129 Resort Hotel 1 14 2017 February
## 10130 Resort Hotel 1 31 2017 February
## 10131 Resort Hotel 1 30 2017 February
## 10132 Resort Hotel 1 38 2017 February
## 10133 Resort Hotel 1 55 2017 February
## 10134 Resort Hotel 1 92 2017 February
## 10135 Resort Hotel 1 92 2017 February
## 10136 Resort Hotel 1 2 2017 February
## 10137 Resort Hotel 1 91 2017 February
## 10138 Resort Hotel 1 24 2017 February
## 10139 Resort Hotel 1 56 2017 February
## 10140 Resort Hotel 1 38 2017 February
## 10141 Resort Hotel 1 38 2017 February
## 10142 Resort Hotel 1 24 2017 February
## 10143 Resort Hotel 1 30 2017 February
## 10144 Resort Hotel 1 29 2017 February
## 10145 Resort Hotel 1 29 2017 February
## 10146 Resort Hotel 1 56 2017 February
## 10147 Resort Hotel 1 34 2017 February
## 10148 Resort Hotel 1 261 2017 February
## 10149 Resort Hotel 1 342 2017 February
## 10150 Resort Hotel 1 0 2017 February
## 10151 Resort Hotel 1 30 2017 February
## 10152 Resort Hotel 1 36 2017 February
## 10153 Resort Hotel 1 15 2017 February
## 10154 Resort Hotel 1 71 2017 February
## 10155 Resort Hotel 1 33 2017 February
## 10156 Resort Hotel 1 30 2017 February
## 10157 Resort Hotel 1 92 2017 February
## 10158 Resort Hotel 1 16 2017 February
## 10159 Resort Hotel 1 44 2017 February
## 10160 Resort Hotel 1 119 2017 February
## 10161 Resort Hotel 1 16 2017 February
## 10162 Resort Hotel 1 73 2017 February
## 10163 Resort Hotel 1 93 2017 February
## 10164 Resort Hotel 1 93 2017 February
## 10165 Resort Hotel 1 73 2017 February
## 10166 Resort Hotel 1 16 2017 February
## 10167 Resort Hotel 1 320 2017 February
## 10168 Resort Hotel 1 34 2017 February
## 10169 Resort Hotel 1 23 2017 February
## 10170 Resort Hotel 1 42 2017 February
## 10171 Resort Hotel 1 127 2017 February
## 10172 Resort Hotel 1 39 2017 February
## 10173 Resort Hotel 1 21 2017 February
## 10174 Resort Hotel 1 27 2017 February
## 10175 Resort Hotel 1 38 2017 February
## 10176 Resort Hotel 1 21 2017 February
## 10177 Resort Hotel 1 4 2017 February
## 10178 Resort Hotel 1 186 2017 February
## 10179 Resort Hotel 1 42 2017 February
## 10180 Resort Hotel 1 74 2017 February
## 10181 Resort Hotel 1 74 2017 February
## 10182 Resort Hotel 1 1 2017 February
## 10183 Resort Hotel 1 74 2017 February
## 10184 Resort Hotel 1 74 2017 February
## 10185 Resort Hotel 1 74 2017 February
## 10186 Resort Hotel 1 74 2017 February
## 10187 Resort Hotel 1 74 2017 February
## 10188 Resort Hotel 1 74 2017 February
## 10189 Resort Hotel 1 74 2017 February
## 10190 Resort Hotel 1 74 2017 February
## 10191 Resort Hotel 1 74 2017 February
## 10192 Resort Hotel 1 35 2017 February
## 10193 Resort Hotel 1 34 2017 February
## 10194 Resort Hotel 1 266 2017 February
## 10195 Resort Hotel 1 58 2017 February
## 10196 Resort Hotel 1 0 2017 February
## 10197 Resort Hotel 1 200 2017 February
## 10198 Resort Hotel 1 69 2017 February
## 10199 Resort Hotel 1 69 2017 February
## 10200 Resort Hotel 1 73 2017 February
## 10201 Resort Hotel 1 13 2017 February
## 10202 Resort Hotel 1 79 2017 February
## 10203 Resort Hotel 1 79 2017 February
## 10204 Resort Hotel 1 79 2017 February
## 10205 Resort Hotel 1 79 2017 February
## 10206 Resort Hotel 1 69 2017 February
## 10207 Resort Hotel 1 79 2017 February
## 10208 Resort Hotel 1 79 2017 February
## 10209 Resort Hotel 1 79 2017 February
## 10210 Resort Hotel 1 28 2017 February
## 10211 Resort Hotel 1 140 2017 February
## 10212 Resort Hotel 1 284 2017 February
## 10213 Resort Hotel 1 0 2017 February
## 10214 Resort Hotel 1 5 2017 February
## 10215 Resort Hotel 1 28 2017 February
## 10216 Resort Hotel 1 25 2017 February
## 10217 Resort Hotel 1 6 2017 February
## 10218 Resort Hotel 1 137 2017 February
## 10219 Resort Hotel 1 14 2017 February
## 10220 Resort Hotel 1 2 2017 February
## 10221 Resort Hotel 1 164 2017 February
## 10222 Resort Hotel 1 20 2017 February
## 10223 Resort Hotel 1 20 2017 February
## 10224 Resort Hotel 1 1 2017 February
## 10225 Resort Hotel 1 69 2017 February
## 10226 Resort Hotel 1 1 2017 February
## 10227 Resort Hotel 1 28 2017 February
## 10228 Resort Hotel 1 29 2017 February
## 10229 Resort Hotel 1 0 2017 February
## 10230 Resort Hotel 1 7 2017 February
## 10231 Resort Hotel 1 51 2017 February
## 10232 Resort Hotel 1 2 2017 February
## 10233 Resort Hotel 1 70 2017 February
## 10234 Resort Hotel 0 70 2017 February
## 10235 Resort Hotel 1 70 2017 February
## 10236 Resort Hotel 1 70 2017 February
## 10237 Resort Hotel 1 2 2017 February
## 10238 Resort Hotel 1 70 2017 February
## 10239 Resort Hotel 1 2 2017 February
## 10240 Resort Hotel 1 2 2017 February
## 10241 Resort Hotel 1 70 2017 February
## 10242 Resort Hotel 1 70 2017 February
## 10243 Resort Hotel 1 70 2017 February
## 10244 Resort Hotel 1 70 2017 February
## 10245 Resort Hotel 1 70 2017 February
## 10246 Resort Hotel 1 70 2017 February
## 10247 Resort Hotel 1 2 2017 February
## 10248 Resort Hotel 1 2 2017 February
## 10249 Resort Hotel 1 35 2017 February
## 10250 Resort Hotel 1 232 2017 February
## 10251 Resort Hotel 1 0 2017 February
## 10252 Resort Hotel 1 44 2017 February
## 10253 Resort Hotel 1 22 2017 February
## 10254 Resort Hotel 1 22 2017 February
## 10255 Resort Hotel 1 55 2017 February
## 10256 Resort Hotel 1 22 2017 February
## 10257 Resort Hotel 1 22 2017 February
## 10258 Resort Hotel 1 22 2017 February
## 10259 Resort Hotel 1 22 2017 February
## 10260 Resort Hotel 1 22 2017 February
## 10261 Resort Hotel 1 22 2017 February
## 10262 Resort Hotel 1 22 2017 February
## 10263 Resort Hotel 1 22 2017 February
## 10264 Resort Hotel 1 55 2017 February
## 10265 Resort Hotel 1 22 2017 February
## 10266 Resort Hotel 1 22 2017 February
## 10267 Resort Hotel 1 22 2017 February
## 10268 Resort Hotel 1 120 2017 February
## 10269 Resort Hotel 1 26 2017 February
## 10270 Resort Hotel 1 23 2017 February
## 10271 Resort Hotel 1 35 2017 February
## 10272 Resort Hotel 1 36 2017 February
## 10273 Resort Hotel 1 128 2017 February
## 10274 Resort Hotel 1 20 2017 February
## 10275 Resort Hotel 1 46 2017 February
## 10276 Resort Hotel 1 27 2017 February
## 10277 Resort Hotel 1 46 2017 February
## 10278 Resort Hotel 1 46 2017 February
## 10279 Resort Hotel 1 112 2017 February
## 10280 Resort Hotel 1 76 2017 February
## 10281 Resort Hotel 1 105 2017 February
## 10282 Resort Hotel 1 39 2017 February
## 10283 Resort Hotel 1 25 2017 February
## 10284 Resort Hotel 1 29 2017 February
## 10285 Resort Hotel 1 18 2017 February
## 10286 Resort Hotel 1 17 2017 February
## 10287 Resort Hotel 1 50 2017 February
## 10288 Resort Hotel 1 51 2017 February
## 10289 Resort Hotel 1 17 2017 February
## 10290 Resort Hotel 1 34 2017 February
## 10291 Resort Hotel 1 191 2017 February
## 10292 Resort Hotel 1 46 2017 February
## 10293 Resort Hotel 1 13 2017 February
## 10294 Resort Hotel 1 19 2017 February
## 10295 Resort Hotel 1 19 2017 February
## 10296 Resort Hotel 1 16 2017 February
## 10297 Resort Hotel 1 18 2017 February
## 10298 Resort Hotel 1 18 2017 February
## 10299 Resort Hotel 1 22 2017 February
## 10300 Resort Hotel 1 19 2017 February
## 10301 Resort Hotel 1 48 2017 February
## 10302 Resort Hotel 1 29 2017 February
## 10303 Resort Hotel 1 78 2017 February
## 10304 Resort Hotel 1 21 2017 February
## 10305 Resort Hotel 1 26 2017 February
## 10306 Resort Hotel 1 35 2017 February
## 10307 Resort Hotel 1 18 2017 February
## 10308 Resort Hotel 1 12 2017 February
## 10309 Resort Hotel 1 54 2017 February
## 10310 Resort Hotel 1 82 2017 February
## 10311 Resort Hotel 1 75 2017 February
## 10312 Resort Hotel 1 45 2017 February
## 10313 Resort Hotel 1 26 2017 February
## 10314 Resort Hotel 1 82 2017 February
## 10315 Resort Hotel 1 38 2017 February
## 10316 Resort Hotel 1 35 2017 February
## 10317 Resort Hotel 1 29 2017 February
## 10318 Resort Hotel 1 21 2017 February
## 10319 Resort Hotel 1 38 2017 February
## 10320 Resort Hotel 1 37 2017 February
## 10321 Resort Hotel 1 186 2017 February
## 10322 Resort Hotel 1 172 2017 February
## 10323 Resort Hotel 1 116 2017 February
## 10324 Resort Hotel 1 116 2017 February
## 10325 Resort Hotel 1 184 2017 February
## 10326 Resort Hotel 1 33 2017 February
## 10327 Resort Hotel 1 17 2017 February
## 10328 Resort Hotel 1 40 2017 February
## 10329 Resort Hotel 1 33 2017 February
## 10330 Resort Hotel 1 15 2017 February
## 10331 Resort Hotel 1 2 2017 February
## 10332 Resort Hotel 1 53 2017 February
## 10333 Resort Hotel 1 16 2017 February
## 10334 Resort Hotel 1 79 2017 February
## 10335 Resort Hotel 1 49 2017 February
## 10336 Resort Hotel 1 49 2017 February
## 10337 Resort Hotel 1 49 2017 February
## 10338 Resort Hotel 1 49 2017 February
## 10339 Resort Hotel 1 49 2017 February
## 10340 Resort Hotel 1 49 2017 February
## 10341 Resort Hotel 1 49 2017 February
## 10342 Resort Hotel 1 49 2017 February
## 10343 Resort Hotel 1 49 2017 February
## 10344 Resort Hotel 1 49 2017 February
## 10345 Resort Hotel 1 49 2017 February
## 10346 Resort Hotel 1 49 2017 February
## 10347 Resort Hotel 1 49 2017 February
## 10348 Resort Hotel 1 0 2017 February
## 10349 Resort Hotel 1 49 2017 February
## 10350 Resort Hotel 1 49 2017 February
## 10351 Resort Hotel 1 49 2017 February
## 10352 Resort Hotel 1 49 2017 February
## 10353 Resort Hotel 1 49 2017 February
## 10354 Resort Hotel 1 63 2017 February
## 10355 Resort Hotel 1 49 2017 February
## 10356 Resort Hotel 1 49 2017 February
## 10357 Resort Hotel 1 49 2017 February
## 10358 Resort Hotel 1 49 2017 February
## 10359 Resort Hotel 1 49 2017 February
## 10360 Resort Hotel 1 49 2017 February
## 10361 Resort Hotel 1 187 2017 February
## 10362 Resort Hotel 1 194 2017 March
## 10363 Resort Hotel 1 181 2017 March
## 10364 Resort Hotel 1 181 2017 March
## 10365 Resort Hotel 1 181 2017 March
## 10366 Resort Hotel 1 181 2017 March
## 10367 Resort Hotel 1 181 2017 March
## 10368 Resort Hotel 1 181 2017 March
## 10369 Resort Hotel 1 26 2017 March
## 10370 Resort Hotel 1 50 2017 March
## 10371 Resort Hotel 1 240 2017 March
## 10372 Resort Hotel 1 240 2017 March
## 10373 Resort Hotel 1 84 2017 March
## 10374 Resort Hotel 1 181 2017 March
## 10375 Resort Hotel 1 181 2017 March
## 10376 Resort Hotel 1 181 2017 March
## 10377 Resort Hotel 1 181 2017 March
## 10378 Resort Hotel 1 84 2017 March
## 10379 Resort Hotel 1 181 2017 March
## 10380 Resort Hotel 1 181 2017 March
## 10381 Resort Hotel 1 181 2017 March
## 10382 Resort Hotel 1 181 2017 March
## 10383 Resort Hotel 1 84 2017 March
## 10384 Resort Hotel 1 181 2017 March
## 10385 Resort Hotel 1 181 2017 March
## 10386 Resort Hotel 1 182 2017 March
## 10387 Resort Hotel 1 21 2017 March
## 10388 Resort Hotel 0 7 2017 March
## 10389 Resort Hotel 1 5 2017 March
## 10390 Resort Hotel 1 8 2017 March
## 10391 Resort Hotel 1 8 2017 March
## 10392 Resort Hotel 1 8 2017 March
## 10393 Resort Hotel 1 8 2017 March
## 10394 Resort Hotel 1 8 2017 March
## 10395 Resort Hotel 1 39 2017 March
## 10396 Resort Hotel 1 266 2017 March
## 10397 Resort Hotel 1 11 2017 March
## 10398 Resort Hotel 1 82 2017 March
## 10399 Resort Hotel 1 168 2017 March
## 10400 Resort Hotel 1 167 2017 March
## 10401 Resort Hotel 1 316 2017 March
## 10402 Resort Hotel 1 9 2017 March
## 10403 Resort Hotel 1 15 2017 March
## 10404 Resort Hotel 1 30 2017 March
## 10405 Resort Hotel 1 25 2017 March
## 10406 Resort Hotel 1 17 2017 March
## 10407 Resort Hotel 1 270 2017 March
## 10408 Resort Hotel 1 270 2017 March
## 10409 Resort Hotel 1 312 2017 March
## 10410 Resort Hotel 1 312 2017 March
## 10411 Resort Hotel 1 312 2017 March
## 10412 Resort Hotel 1 312 2017 March
## 10413 Resort Hotel 1 312 2017 March
## 10414 Resort Hotel 1 53 2017 March
## 10415 Resort Hotel 1 312 2017 March
## 10416 Resort Hotel 1 171 2017 March
## 10417 Resort Hotel 1 35 2017 March
## 10418 Resort Hotel 1 312 2017 March
## 10419 Resort Hotel 1 53 2017 March
## 10420 Resort Hotel 1 312 2017 March
## 10421 Resort Hotel 1 312 2017 March
## 10422 Resort Hotel 1 312 2017 March
## 10423 Resort Hotel 1 312 2017 March
## 10424 Resort Hotel 1 312 2017 March
## 10425 Resort Hotel 1 53 2017 March
## 10426 Resort Hotel 1 312 2017 March
## 10427 Resort Hotel 1 312 2017 March
## 10428 Resort Hotel 1 312 2017 March
## 10429 Resort Hotel 1 312 2017 March
## 10430 Resort Hotel 1 124 2017 March
## 10431 Resort Hotel 1 195 2017 March
## 10432 Resort Hotel 1 4 2017 March
## 10433 Resort Hotel 1 6 2017 March
## 10434 Resort Hotel 1 5 2017 March
## 10435 Resort Hotel 1 3 2017 March
## 10436 Resort Hotel 1 142 2017 March
## 10437 Resort Hotel 1 1 2017 March
## 10438 Resort Hotel 1 19 2017 March
## 10439 Resort Hotel 1 21 2017 March
## 10440 Resort Hotel 1 220 2017 March
## 10441 Resort Hotel 1 218 2017 March
## 10442 Resort Hotel 1 2 2017 March
## 10443 Resort Hotel 1 8 2017 March
## 10444 Resort Hotel 1 25 2017 March
## 10445 Resort Hotel 1 321 2017 March
## 10446 Resort Hotel 1 211 2017 March
## 10447 Resort Hotel 1 0 2017 March
## 10448 Resort Hotel 1 107 2017 March
## 10449 Resort Hotel 1 115 2017 March
## 10450 Resort Hotel 1 86 2017 March
## 10451 Resort Hotel 1 86 2017 March
## 10452 Resort Hotel 1 86 2017 March
## 10453 Resort Hotel 1 86 2017 March
## 10454 Resort Hotel 1 115 2017 March
## 10455 Resort Hotel 1 115 2017 March
## 10456 Resort Hotel 1 86 2017 March
## 10457 Resort Hotel 1 86 2017 March
## 10458 Resort Hotel 1 86 2017 March
## 10459 Resort Hotel 1 17 2017 March
## 10460 Resort Hotel 1 86 2017 March
## 10461 Resort Hotel 1 86 2017 March
## 10462 Resort Hotel 1 86 2017 March
## 10463 Resort Hotel 1 86 2017 March
## 10464 Resort Hotel 1 86 2017 March
## 10465 Resort Hotel 1 86 2017 March
## 10466 Resort Hotel 1 86 2017 March
## 10467 Resort Hotel 1 86 2017 March
## 10468 Resort Hotel 1 86 2017 March
## 10469 Resort Hotel 1 115 2017 March
## 10470 Resort Hotel 1 115 2017 March
## 10471 Resort Hotel 1 26 2017 March
## 10472 Resort Hotel 1 100 2017 March
## 10473 Resort Hotel 1 146 2017 March
## 10474 Resort Hotel 1 86 2017 March
## 10475 Resort Hotel 1 86 2017 March
## 10476 Resort Hotel 1 86 2017 March
## 10477 Resort Hotel 1 86 2017 March
## 10478 Resort Hotel 1 86 2017 March
## 10479 Resort Hotel 1 16 2017 March
## 10480 Resort Hotel 1 86 2017 March
## 10481 Resort Hotel 1 86 2017 March
## 10482 Resort Hotel 1 86 2017 March
## 10483 Resort Hotel 1 86 2017 March
## 10484 Resort Hotel 1 86 2017 March
## 10485 Resort Hotel 1 86 2017 March
## 10486 Resort Hotel 1 142 2017 March
## 10487 Resort Hotel 1 142 2017 March
## 10488 Resort Hotel 1 142 2017 March
## 10489 Resort Hotel 1 142 2017 March
## 10490 Resort Hotel 1 142 2017 March
## 10491 Resort Hotel 1 142 2017 March
## 10492 Resort Hotel 1 125 2017 March
## 10493 Resort Hotel 1 64 2017 March
## 10494 Resort Hotel 1 18 2017 March
## 10495 Resort Hotel 1 14 2017 March
## 10496 Resort Hotel 1 16 2017 March
## 10497 Resort Hotel 1 14 2017 March
## 10498 Resort Hotel 1 32 2017 March
## 10499 Resort Hotel 1 31 2017 March
## 10500 Resort Hotel 1 148 2017 March
## 10501 Resort Hotel 1 46 2017 March
## 10502 Resort Hotel 1 81 2017 March
## 10503 Resort Hotel 1 22 2017 March
## 10504 Resort Hotel 1 88 2017 March
## 10505 Resort Hotel 1 57 2017 March
## 10506 Resort Hotel 1 9 2017 March
## 10507 Resort Hotel 1 15 2017 March
## 10508 Resort Hotel 1 39 2017 March
## 10509 Resort Hotel 1 339 2017 March
## 10510 Resort Hotel 1 332 2017 March
## 10511 Resort Hotel 1 332 2017 March
## 10512 Resort Hotel 1 339 2017 March
## 10513 Resort Hotel 1 57 2017 March
## 10514 Resort Hotel 1 339 2017 March
## 10515 Resort Hotel 1 339 2017 March
## 10516 Resort Hotel 1 88 2017 March
## 10517 Resort Hotel 1 57 2017 March
## 10518 Resort Hotel 1 332 2017 March
## 10519 Resort Hotel 1 39 2017 March
## 10520 Resort Hotel 1 339 2017 March
## 10521 Resort Hotel 1 46 2017 March
## 10522 Resort Hotel 1 332 2017 March
## 10523 Resort Hotel 1 57 2017 March
## 10524 Resort Hotel 1 57 2017 March
## 10525 Resort Hotel 1 339 2017 March
## 10526 Resort Hotel 1 252 2017 March
## 10527 Resort Hotel 1 2 2017 March
## 10528 Resort Hotel 1 30 2017 March
## 10529 Resort Hotel 1 66 2017 March
## 10530 Resort Hotel 1 39 2017 March
## 10531 Resort Hotel 1 96 2017 March
## 10532 Resort Hotel 1 96 2017 March
## 10533 Resort Hotel 1 96 2017 March
## 10534 Resort Hotel 1 96 2017 March
## 10535 Resort Hotel 1 133 2017 March
## 10536 Resort Hotel 1 112 2017 March
## 10537 Resort Hotel 1 146 2017 March
## 10538 Resort Hotel 1 24 2017 March
## 10539 Resort Hotel 1 24 2017 March
## 10540 Resort Hotel 1 58 2017 March
## 10541 Resort Hotel 1 27 2017 March
## 10542 Resort Hotel 1 115 2017 March
## 10543 Resort Hotel 1 208 2017 March
## 10544 Resort Hotel 1 0 2017 March
## 10545 Resort Hotel 1 61 2017 March
## 10546 Resort Hotel 1 140 2017 March
## 10547 Resort Hotel 1 168 2017 March
## 10548 Resort Hotel 1 26 2017 March
## 10549 Resort Hotel 1 26 2017 March
## 10550 Resort Hotel 1 26 2017 March
## 10551 Resort Hotel 1 26 2017 March
## 10552 Resort Hotel 1 26 2017 March
## 10553 Resort Hotel 1 177 2017 March
## 10554 Resort Hotel 1 157 2017 March
## 10555 Resort Hotel 1 26 2017 March
## 10556 Resort Hotel 1 278 2017 March
## 10557 Resort Hotel 1 19 2017 March
## 10558 Resort Hotel 1 94 2017 March
## 10559 Resort Hotel 1 144 2017 March
## 10560 Resort Hotel 1 144 2017 March
## 10561 Resort Hotel 1 194 2017 March
## 10562 Resort Hotel 1 144 2017 March
## 10563 Resort Hotel 1 144 2017 March
## 10564 Resort Hotel 1 144 2017 March
## 10565 Resort Hotel 1 144 2017 March
## 10566 Resort Hotel 1 144 2017 March
## 10567 Resort Hotel 1 144 2017 March
## 10568 Resort Hotel 1 144 2017 March
## 10569 Resort Hotel 1 144 2017 March
## 10570 Resort Hotel 1 144 2017 March
## 10571 Resort Hotel 1 144 2017 March
## 10572 Resort Hotel 1 144 2017 March
## 10573 Resort Hotel 1 144 2017 March
## 10574 Resort Hotel 1 144 2017 March
## 10575 Resort Hotel 1 194 2017 March
## 10576 Resort Hotel 1 177 2017 March
## 10577 Resort Hotel 1 159 2017 March
## 10578 Resort Hotel 1 112 2017 March
## 10579 Resort Hotel 1 112 2017 March
## 10580 Resort Hotel 1 112 2017 March
## 10581 Resort Hotel 1 112 2017 March
## 10582 Resort Hotel 1 112 2017 March
## 10583 Resort Hotel 1 285 2017 March
## 10584 Resort Hotel 1 211 2017 March
## 10585 Resort Hotel 1 24 2017 March
## 10586 Resort Hotel 1 210 2017 March
## 10587 Resort Hotel 1 232 2017 March
## 10588 Resort Hotel 1 148 2017 March
## 10589 Resort Hotel 1 10 2017 March
## 10590 Resort Hotel 1 139 2017 March
## 10591 Resort Hotel 1 24 2017 March
## 10592 Resort Hotel 1 50 2017 March
## 10593 Resort Hotel 1 27 2017 March
## 10594 Resort Hotel 1 28 2017 March
## 10595 Resort Hotel 1 134 2017 March
## 10596 Resort Hotel 1 28 2017 March
## 10597 Resort Hotel 1 204 2017 March
## 10598 Resort Hotel 1 30 2017 March
## 10599 Resort Hotel 1 14 2017 March
## 10600 Resort Hotel 1 26 2017 March
## 10601 Resort Hotel 1 68 2017 March
## 10602 Resort Hotel 1 201 2017 March
## 10603 Resort Hotel 1 115 2017 March
## 10604 Resort Hotel 1 201 2017 March
## 10605 Resort Hotel 1 282 2017 March
## 10606 Resort Hotel 1 201 2017 March
## 10607 Resort Hotel 1 205 2017 March
## 10608 Resort Hotel 1 74 2017 March
## 10609 Resort Hotel 1 309 2017 March
## 10610 Resort Hotel 1 283 2017 March
## 10611 Resort Hotel 1 3 2017 March
## 10612 Resort Hotel 1 320 2017 March
## 10613 Resort Hotel 1 216 2017 March
## 10614 Resort Hotel 1 96 2017 March
## 10615 Resort Hotel 1 12 2017 March
## 10616 Resort Hotel 1 6 2017 March
## 10617 Resort Hotel 1 20 2017 March
## 10618 Resort Hotel 1 61 2017 March
## 10619 Resort Hotel 1 98 2017 March
## 10620 Resort Hotel 1 40 2017 March
## 10621 Resort Hotel 1 123 2017 March
## 10622 Resort Hotel 1 340 2017 March
## 10623 Resort Hotel 1 39 2017 March
## 10624 Resort Hotel 1 350 2017 March
## 10625 Resort Hotel 1 350 2017 March
## 10626 Resort Hotel 1 340 2017 March
## 10627 Resort Hotel 1 350 2017 March
## 10628 Resort Hotel 1 350 2017 March
## 10629 Resort Hotel 1 350 2017 March
## 10630 Resort Hotel 1 350 2017 March
## 10631 Resort Hotel 1 350 2017 March
## 10632 Resort Hotel 1 340 2017 March
## 10633 Resort Hotel 1 350 2017 March
## 10634 Resort Hotel 1 340 2017 March
## 10635 Resort Hotel 1 16 2017 March
## 10636 Resort Hotel 1 350 2017 March
## 10637 Resort Hotel 1 350 2017 March
## 10638 Resort Hotel 1 350 2017 March
## 10639 Resort Hotel 1 350 2017 March
## 10640 Resort Hotel 1 214 2017 March
## 10641 Resort Hotel 1 214 2017 March
## 10642 Resort Hotel 1 186 2017 March
## 10643 Resort Hotel 1 214 2017 March
## 10644 Resort Hotel 1 214 2017 March
## 10645 Resort Hotel 1 186 2017 March
## 10646 Resort Hotel 1 214 2017 March
## 10647 Resort Hotel 1 13 2017 March
## 10648 Resort Hotel 1 13 2017 March
## 10649 Resort Hotel 1 226 2017 March
## 10650 Resort Hotel 1 226 2017 March
## 10651 Resort Hotel 1 105 2017 March
## 10652 Resort Hotel 1 120 2017 March
## 10653 Resort Hotel 1 273 2017 March
## 10654 Resort Hotel 1 273 2017 March
## 10655 Resort Hotel 1 273 2017 March
## 10656 Resort Hotel 1 102 2017 March
## 10657 Resort Hotel 1 102 2017 March
## 10658 Resort Hotel 1 102 2017 March
## 10659 Resort Hotel 1 102 2017 March
## 10660 Resort Hotel 1 102 2017 March
## 10661 Resort Hotel 1 74 2017 March
## 10662 Resort Hotel 1 11 2017 March
## 10663 Resort Hotel 1 182 2017 March
## 10664 Resort Hotel 1 103 2017 March
## 10665 Resort Hotel 1 103 2017 March
## 10666 Resort Hotel 1 103 2017 March
## 10667 Resort Hotel 1 103 2017 March
## 10668 Resort Hotel 1 103 2017 March
## 10669 Resort Hotel 1 103 2017 March
## 10670 Resort Hotel 1 103 2017 March
## 10671 Resort Hotel 1 103 2017 March
## 10672 Resort Hotel 1 103 2017 March
## 10673 Resort Hotel 1 103 2017 March
## 10674 Resort Hotel 1 103 2017 March
## 10675 Resort Hotel 1 103 2017 March
## 10676 Resort Hotel 1 103 2017 March
## 10677 Resort Hotel 1 103 2017 March
## 10678 Resort Hotel 1 103 2017 March
## 10679 Resort Hotel 1 103 2017 March
## 10680 Resort Hotel 1 103 2017 March
## 10681 Resort Hotel 1 103 2017 March
## 10682 Resort Hotel 1 103 2017 March
## 10683 Resort Hotel 1 103 2017 March
## 10684 Resort Hotel 1 103 2017 March
## 10685 Resort Hotel 1 103 2017 March
## 10686 Resort Hotel 1 103 2017 March
## 10687 Resort Hotel 1 103 2017 March
## 10688 Resort Hotel 1 103 2017 March
## 10689 Resort Hotel 1 103 2017 March
## 10690 Resort Hotel 1 103 2017 March
## 10691 Resort Hotel 1 103 2017 March
## 10692 Resort Hotel 1 103 2017 March
## 10693 Resort Hotel 1 103 2017 March
## 10694 Resort Hotel 1 103 2017 March
## 10695 Resort Hotel 1 103 2017 March
## 10696 Resort Hotel 1 103 2017 March
## 10697 Resort Hotel 1 103 2017 March
## 10698 Resort Hotel 1 103 2017 March
## 10699 Resort Hotel 1 103 2017 March
## 10700 Resort Hotel 1 103 2017 March
## 10701 Resort Hotel 1 103 2017 March
## 10702 Resort Hotel 1 103 2017 March
## 10703 Resort Hotel 1 103 2017 March
## 10704 Resort Hotel 1 103 2017 March
## 10705 Resort Hotel 1 103 2017 March
## 10706 Resort Hotel 1 103 2017 March
## 10707 Resort Hotel 1 103 2017 March
## 10708 Resort Hotel 1 103 2017 March
## 10709 Resort Hotel 1 6 2017 March
## 10710 Resort Hotel 1 34 2017 March
## 10711 Resort Hotel 1 21 2017 March
## 10712 Resort Hotel 1 136 2017 March
## 10713 Resort Hotel 1 176 2017 March
## 10714 Resort Hotel 1 0 2017 March
## 10715 Resort Hotel 1 54 2017 March
## 10716 Resort Hotel 1 26 2017 March
## 10717 Resort Hotel 1 180 2017 March
## 10718 Resort Hotel 1 125 2017 March
## 10719 Resort Hotel 1 63 2017 March
## 10720 Resort Hotel 1 192 2017 March
## 10721 Resort Hotel 1 60 2017 March
## 10722 Resort Hotel 1 40 2017 March
## 10723 Resort Hotel 1 188 2017 March
## 10724 Resort Hotel 1 118 2017 March
## 10725 Resort Hotel 1 0 2017 March
## 10726 Resort Hotel 1 72 2017 March
## 10727 Resort Hotel 1 40 2017 March
## 10728 Resort Hotel 1 25 2017 March
## 10729 Resort Hotel 1 113 2017 March
## 10730 Resort Hotel 1 175 2017 March
## 10731 Resort Hotel 1 50 2017 March
## 10732 Resort Hotel 1 66 2017 March
## 10733 Resort Hotel 1 9 2017 March
## 10734 Resort Hotel 1 47 2017 March
## 10735 Resort Hotel 1 156 2017 March
## 10736 Resort Hotel 1 30 2017 March
## 10737 Resort Hotel 1 34 2017 March
## 10738 Resort Hotel 1 47 2017 March
## 10739 Resort Hotel 1 15 2017 March
## 10740 Resort Hotel 1 15 2017 March
## 10741 Resort Hotel 1 0 2017 March
## 10742 Resort Hotel 1 19 2017 March
## 10743 Resort Hotel 1 57 2017 March
## 10744 Resort Hotel 1 27 2017 March
## 10745 Resort Hotel 1 23 2017 March
## 10746 Resort Hotel 1 24 2017 March
## 10747 Resort Hotel 1 64 2017 March
## 10748 Resort Hotel 1 27 2017 March
## 10749 Resort Hotel 1 145 2017 March
## 10750 Resort Hotel 1 32 2017 March
## 10751 Resort Hotel 1 162 2017 March
## 10752 Resort Hotel 1 69 2017 March
## 10753 Resort Hotel 1 63 2017 April
## 10754 Resort Hotel 1 94 2017 April
## 10755 Resort Hotel 1 35 2017 April
## 10756 Resort Hotel 1 48 2017 April
## 10757 Resort Hotel 1 69 2017 April
## 10758 Resort Hotel 1 177 2017 April
## 10759 Resort Hotel 1 174 2017 April
## 10760 Resort Hotel 1 57 2017 April
## 10761 Resort Hotel 1 2 2017 April
## 10762 Resort Hotel 1 82 2017 April
## 10763 Resort Hotel 1 117 2017 April
## 10764 Resort Hotel 1 38 2017 April
## 10765 Resort Hotel 1 84 2017 April
## 10766 Resort Hotel 1 38 2017 April
## 10767 Resort Hotel 1 174 2017 April
## 10768 Resort Hotel 1 10 2017 April
## 10769 Resort Hotel 1 10 2017 April
## 10770 Resort Hotel 1 255 2017 April
## 10771 Resort Hotel 1 10 2017 April
## 10772 Resort Hotel 1 10 2017 April
## 10773 Resort Hotel 1 10 2017 April
## 10774 Resort Hotel 1 10 2017 April
## 10775 Resort Hotel 1 10 2017 April
## 10776 Resort Hotel 1 10 2017 April
## 10777 Resort Hotel 1 10 2017 April
## 10778 Resort Hotel 1 10 2017 April
## 10779 Resort Hotel 1 10 2017 April
## 10780 Resort Hotel 1 10 2017 April
## 10781 Resort Hotel 1 10 2017 April
## 10782 Resort Hotel 1 10 2017 April
## 10783 Resort Hotel 1 10 2017 April
## 10784 Resort Hotel 1 55 2017 April
## 10785 Resort Hotel 1 26 2017 April
## 10786 Resort Hotel 1 12 2017 April
## 10787 Resort Hotel 1 112 2017 April
## 10788 Resort Hotel 1 364 2017 April
## 10789 Resort Hotel 1 12 2017 April
## 10790 Resort Hotel 1 255 2017 April
## 10791 Resort Hotel 1 255 2017 April
## 10792 Resort Hotel 1 255 2017 April
## 10793 Resort Hotel 1 273 2017 April
## 10794 Resort Hotel 1 48 2017 April
## 10795 Resort Hotel 1 26 2017 April
## 10796 Resort Hotel 1 121 2017 April
## 10797 Resort Hotel 1 240 2017 April
## 10798 Resort Hotel 1 192 2017 April
## 10799 Resort Hotel 1 205 2017 April
## 10800 Resort Hotel 1 6 2017 April
## 10801 Resort Hotel 1 12 2017 April
## 10802 Resort Hotel 1 46 2017 April
## 10803 Resort Hotel 1 152 2017 April
## 10804 Resort Hotel 1 226 2017 April
## 10805 Resort Hotel 1 59 2017 April
## 10806 Resort Hotel 1 52 2017 April
## 10807 Resort Hotel 1 57 2017 April
## 10808 Resort Hotel 1 152 2017 April
## 10809 Resort Hotel 1 252 2017 April
## 10810 Resort Hotel 1 1 2017 April
## 10811 Resort Hotel 1 21 2017 April
## 10812 Resort Hotel 1 41 2017 April
## 10813 Resort Hotel 1 175 2017 April
## 10814 Resort Hotel 1 175 2017 April
## 10815 Resort Hotel 1 10 2017 April
## 10816 Resort Hotel 1 175 2017 April
## 10817 Resort Hotel 1 175 2017 April
## 10818 Resort Hotel 1 22 2017 April
## 10819 Resort Hotel 1 175 2017 April
## 10820 Resort Hotel 1 175 2017 April
## 10821 Resort Hotel 1 175 2017 April
## 10822 Resort Hotel 1 180 2017 April
## 10823 Resort Hotel 1 31 2017 April
## 10824 Resort Hotel 1 32 2017 April
## 10825 Resort Hotel 1 84 2017 April
## 10826 Resort Hotel 1 0 2017 April
## 10827 Resort Hotel 1 1 2017 April
## 10828 Resort Hotel 1 47 2017 April
## 10829 Resort Hotel 1 53 2017 April
## 10830 Resort Hotel 1 32 2017 April
## 10831 Resort Hotel 1 53 2017 April
## 10832 Resort Hotel 1 53 2017 April
## 10833 Resort Hotel 1 84 2017 April
## 10834 Resort Hotel 1 223 2017 April
## 10835 Resort Hotel 1 24 2017 April
## 10836 Resort Hotel 1 45 2017 April
## 10837 Resort Hotel 1 155 2017 April
## 10838 Resort Hotel 1 62 2017 April
## 10839 Resort Hotel 1 123 2017 April
## 10840 Resort Hotel 1 45 2017 April
## 10841 Resort Hotel 1 45 2017 April
## 10842 Resort Hotel 1 58 2017 April
## 10843 Resort Hotel 1 30 2017 April
## 10844 Resort Hotel 1 95 2017 April
## 10845 Resort Hotel 1 32 2017 April
## 10846 Resort Hotel 1 313 2017 April
## 10847 Resort Hotel 1 351 2017 April
## 10848 Resort Hotel 1 46 2017 April
## 10849 Resort Hotel 1 60 2017 April
## 10850 Resort Hotel 1 47 2017 April
## 10851 Resort Hotel 1 89 2017 April
## 10852 Resort Hotel 1 313 2017 April
## 10853 Resort Hotel 1 313 2017 April
## 10854 Resort Hotel 1 351 2017 April
## 10855 Resort Hotel 1 313 2017 April
## 10856 Resort Hotel 1 86 2017 April
## 10857 Resort Hotel 1 313 2017 April
## 10858 Resort Hotel 1 351 2017 April
## 10859 Resort Hotel 1 351 2017 April
## 10860 Resort Hotel 1 351 2017 April
## 10861 Resort Hotel 1 187 2017 April
## 10862 Resort Hotel 1 351 2017 April
## 10863 Resort Hotel 1 58 2017 April
## 10864 Resort Hotel 1 233 2017 April
## 10865 Resort Hotel 1 233 2017 April
## 10866 Resort Hotel 1 70 2017 April
## 10867 Resort Hotel 1 351 2017 April
## 10868 Resort Hotel 1 200 2017 April
## 10869 Resort Hotel 1 3 2017 April
## 10870 Resort Hotel 1 29 2017 April
## 10871 Resort Hotel 1 3 2017 April
## 10872 Resort Hotel 1 210 2017 April
## 10873 Resort Hotel 1 79 2017 April
## 10874 Resort Hotel 1 212 2017 April
## 10875 Resort Hotel 1 3 2017 April
## 10876 Resort Hotel 1 3 2017 April
## 10877 Resort Hotel 1 68 2017 April
## 10878 Resort Hotel 1 55 2017 April
## 10879 Resort Hotel 1 124 2017 April
## 10880 Resort Hotel 1 124 2017 April
## 10881 Resort Hotel 1 124 2017 April
## 10882 Resort Hotel 1 124 2017 April
## 10883 Resort Hotel 1 124 2017 April
## 10884 Resort Hotel 1 124 2017 April
## 10885 Resort Hotel 1 124 2017 April
## 10886 Resort Hotel 1 124 2017 April
## 10887 Resort Hotel 1 124 2017 April
## 10888 Resort Hotel 1 124 2017 April
## 10889 Resort Hotel 1 124 2017 April
## 10890 Resort Hotel 1 124 2017 April
## 10891 Resort Hotel 1 124 2017 April
## 10892 Resort Hotel 1 105 2017 April
## 10893 Resort Hotel 1 124 2017 April
## 10894 Resort Hotel 1 124 2017 April
## 10895 Resort Hotel 1 124 2017 April
## 10896 Resort Hotel 1 146 2017 April
## 10897 Resort Hotel 1 124 2017 April
## 10898 Resort Hotel 1 124 2017 April
## 10899 Resort Hotel 1 124 2017 April
## 10900 Resort Hotel 1 124 2017 April
## 10901 Resort Hotel 1 124 2017 April
## 10902 Resort Hotel 1 124 2017 April
## 10903 Resort Hotel 1 124 2017 April
## 10904 Resort Hotel 1 124 2017 April
## 10905 Resort Hotel 1 124 2017 April
## 10906 Resort Hotel 1 124 2017 April
## 10907 Resort Hotel 1 124 2017 April
## 10908 Resort Hotel 1 30 2017 April
## 10909 Resort Hotel 1 216 2017 April
## 10910 Resort Hotel 1 216 2017 April
## 10911 Resort Hotel 1 97 2017 April
## 10912 Resort Hotel 1 188 2017 April
## 10913 Resort Hotel 1 21 2017 April
## 10914 Resort Hotel 1 217 2017 April
## 10915 Resort Hotel 1 214 2017 April
## 10916 Resort Hotel 1 56 2017 April
## 10917 Resort Hotel 1 54 2017 April
## 10918 Resort Hotel 1 24 2017 April
## 10919 Resort Hotel 1 148 2017 April
## 10920 Resort Hotel 1 148 2017 April
## 10921 Resort Hotel 1 29 2017 April
## 10922 Resort Hotel 1 62 2017 April
## 10923 Resort Hotel 1 65 2017 April
## 10924 Resort Hotel 1 238 2017 April
## 10925 Resort Hotel 1 212 2017 April
## 10926 Resort Hotel 1 39 2017 April
## 10927 Resort Hotel 1 62 2017 April
## 10928 Resort Hotel 1 5 2017 April
## 10929 Resort Hotel 1 23 2017 April
## 10930 Resort Hotel 1 52 2017 April
## 10931 Resort Hotel 1 70 2017 April
## 10932 Resort Hotel 1 51 2017 April
## 10933 Resort Hotel 1 70 2017 April
## 10934 Resort Hotel 1 70 2017 April
## 10935 Resort Hotel 1 70 2017 April
## 10936 Resort Hotel 1 62 2017 April
## 10937 Resort Hotel 1 76 2017 April
## 10938 Resort Hotel 1 25 2017 April
## 10939 Resort Hotel 1 25 2017 April
## 10940 Resort Hotel 1 220 2017 April
## 10941 Resort Hotel 1 27 2017 April
## 10942 Resort Hotel 1 50 2017 April
## 10943 Resort Hotel 1 32 2017 April
## 10944 Resort Hotel 1 77 2017 April
## 10945 Resort Hotel 1 42 2017 April
## 10946 Resort Hotel 1 141 2017 April
## 10947 Resort Hotel 1 141 2017 April
## 10948 Resort Hotel 1 95 2017 April
## 10949 Resort Hotel 1 203 2017 April
## 10950 Resort Hotel 1 66 2017 April
## 10951 Resort Hotel 1 19 2017 April
## 10952 Resort Hotel 1 13 2017 April
## 10953 Resort Hotel 1 26 2017 April
## 10954 Resort Hotel 1 153 2017 April
## 10955 Resort Hotel 1 63 2017 April
## 10956 Resort Hotel 1 66 2017 April
## 10957 Resort Hotel 1 134 2017 April
## 10958 Resort Hotel 1 73 2017 April
## 10959 Resort Hotel 1 23 2017 April
## 10960 Resort Hotel 1 40 2017 April
## 10961 Resort Hotel 1 66 2017 April
## 10962 Resort Hotel 1 246 2017 April
## 10963 Resort Hotel 1 80 2017 April
## 10964 Resort Hotel 1 134 2017 April
## 10965 Resort Hotel 1 32 2017 April
## 10966 Resort Hotel 1 35 2017 April
## 10967 Resort Hotel 1 180 2017 April
## 10968 Resort Hotel 1 43 2017 April
## 10969 Resort Hotel 1 261 2017 April
## 10970 Resort Hotel 1 62 2017 April
## 10971 Resort Hotel 1 35 2017 April
## 10972 Resort Hotel 1 90 2017 April
## 10973 Resort Hotel 1 43 2017 April
## 10974 Resort Hotel 1 230 2017 April
## 10975 Resort Hotel 1 167 2017 April
## 10976 Resort Hotel 1 230 2017 April
## 10977 Resort Hotel 1 76 2017 April
## 10978 Resort Hotel 1 167 2017 April
## 10979 Resort Hotel 1 86 2017 April
## 10980 Resort Hotel 1 72 2017 April
## 10981 Resort Hotel 1 159 2017 April
## 10982 Resort Hotel 1 227 2017 April
## 10983 Resort Hotel 1 224 2017 April
## 10984 Resort Hotel 1 162 2017 April
## 10985 Resort Hotel 1 161 2017 April
## 10986 Resort Hotel 1 162 2017 April
## 10987 Resort Hotel 1 162 2017 April
## 10988 Resort Hotel 1 161 2017 April
## 10989 Resort Hotel 1 162 2017 April
## 10990 Resort Hotel 1 58 2017 April
## 10991 Resort Hotel 1 71 2017 April
## 10992 Resort Hotel 1 58 2017 April
## 10993 Resort Hotel 1 43 2017 April
## 10994 Resort Hotel 1 43 2017 April
## 10995 Resort Hotel 1 43 2017 April
## 10996 Resort Hotel 1 80 2017 April
## 10997 Resort Hotel 1 186 2017 April
## 10998 Resort Hotel 1 14 2017 April
## 10999 Resort Hotel 1 172 2017 April
## 11000 Resort Hotel 1 98 2017 April
## 11001 Resort Hotel 1 72 2017 April
## 11002 Resort Hotel 1 60 2017 April
## 11003 Resort Hotel 1 55 2017 April
## 11004 Resort Hotel 1 79 2017 April
## 11005 Resort Hotel 1 72 2017 April
## 11006 Resort Hotel 1 70 2017 April
## 11007 Resort Hotel 1 208 2017 April
## 11008 Resort Hotel 1 87 2017 April
## 11009 Resort Hotel 1 229 2017 April
## 11010 Resort Hotel 1 75 2017 April
## 11011 Resort Hotel 1 272 2017 April
## 11012 Resort Hotel 1 111 2017 April
## 11013 Resort Hotel 1 102 2017 April
## 11014 Resort Hotel 1 69 2017 April
## 11015 Resort Hotel 1 111 2017 April
## 11016 Resort Hotel 1 46 2017 April
## 11017 Resort Hotel 1 173 2017 April
## 11018 Resort Hotel 1 173 2017 April
## 11019 Resort Hotel 1 161 2017 April
## 11020 Resort Hotel 1 105 2017 April
## 11021 Resort Hotel 1 267 2017 April
## 11022 Resort Hotel 1 267 2017 April
## 11023 Resort Hotel 1 249 2017 April
## 11024 Resort Hotel 1 267 2017 April
## 11025 Resort Hotel 1 267 2017 April
## 11026 Resort Hotel 1 267 2017 April
## 11027 Resort Hotel 1 119 2017 April
## 11028 Resort Hotel 1 3 2017 April
## 11029 Resort Hotel 1 19 2017 April
## 11030 Resort Hotel 1 102 2017 April
## 11031 Resort Hotel 1 102 2017 April
## 11032 Resort Hotel 1 98 2017 April
## 11033 Resort Hotel 1 29 2017 April
## 11034 Resort Hotel 1 73 2017 April
## 11035 Resort Hotel 1 73 2017 April
## 11036 Resort Hotel 1 73 2017 April
## 11037 Resort Hotel 1 10 2017 April
## 11038 Resort Hotel 1 102 2017 April
## 11039 Resort Hotel 1 210 2017 April
## 11040 Resort Hotel 1 98 2017 April
## 11041 Resort Hotel 1 86 2017 April
## 11042 Resort Hotel 1 239 2017 April
## 11043 Resort Hotel 1 93 2017 April
## 11044 Resort Hotel 1 239 2017 April
## 11045 Resort Hotel 1 125 2017 April
## 11046 Resort Hotel 1 24 2017 April
## 11047 Resort Hotel 1 184 2017 April
## 11048 Resort Hotel 1 4 2017 April
## 11049 Resort Hotel 1 94 2017 April
## 11050 Resort Hotel 1 72 2017 April
## 11051 Resort Hotel 1 116 2017 April
## 11052 Resort Hotel 1 179 2017 April
## 11053 Resort Hotel 1 158 2017 April
## 11054 Resort Hotel 1 179 2017 April
## 11055 Resort Hotel 1 132 2017 April
## 11056 Resort Hotel 1 154 2017 April
## 11057 Resort Hotel 1 131 2017 April
## 11058 Resort Hotel 1 210 2017 April
## 11059 Resort Hotel 1 95 2017 April
## 11060 Resort Hotel 1 221 2017 April
## 11061 Resort Hotel 1 131 2017 April
## 11062 Resort Hotel 1 87 2017 April
## 11063 Resort Hotel 1 95 2017 April
## 11064 Resort Hotel 1 131 2017 April
## 11065 Resort Hotel 1 104 2017 April
## 11066 Resort Hotel 1 87 2017 April
## 11067 Resort Hotel 1 131 2017 April
## 11068 Resort Hotel 1 131 2017 April
## 11069 Resort Hotel 1 184 2017 April
## 11070 Resort Hotel 1 144 2017 April
## 11071 Resort Hotel 1 133 2017 April
## 11072 Resort Hotel 1 184 2017 April
## 11073 Resort Hotel 1 65 2017 April
## 11074 Resort Hotel 1 92 2017 April
## 11075 Resort Hotel 1 68 2017 April
## 11076 Resort Hotel 1 92 2017 April
## 11077 Resort Hotel 1 92 2017 April
## 11078 Resort Hotel 1 39 2017 April
## 11079 Resort Hotel 1 126 2017 April
## 11080 Resort Hotel 1 126 2017 April
## 11081 Resort Hotel 1 39 2017 April
## 11082 Resort Hotel 1 126 2017 April
## 11083 Resort Hotel 1 168 2017 April
## 11084 Resort Hotel 1 95 2017 April
## 11085 Resort Hotel 1 85 2017 April
## 11086 Resort Hotel 1 80 2017 April
## 11087 Resort Hotel 1 95 2017 April
## 11088 Resort Hotel 1 64 2017 April
## 11089 Resort Hotel 1 228 2017 April
## 11090 Resort Hotel 1 228 2017 April
## 11091 Resort Hotel 1 287 2017 April
## 11092 Resort Hotel 1 38 2017 April
## 11093 Resort Hotel 1 206 2017 April
## 11094 Resort Hotel 1 72 2017 April
## 11095 Resort Hotel 1 24 2017 April
## 11096 Resort Hotel 1 76 2017 April
## 11097 Resort Hotel 1 88 2017 April
## 11098 Resort Hotel 1 88 2017 April
## 11099 Resort Hotel 1 93 2017 April
## 11100 Resort Hotel 1 88 2017 April
## 11101 Resort Hotel 1 88 2017 April
## 11102 Resort Hotel 1 100 2017 April
## 11103 Resort Hotel 1 9 2017 April
## 11104 Resort Hotel 1 96 2017 April
## 11105 Resort Hotel 1 28 2017 April
## 11106 Resort Hotel 1 174 2017 April
## 11107 Resort Hotel 1 213 2017 April
## 11108 Resort Hotel 1 26 2017 April
## 11109 Resort Hotel 1 29 2017 April
## 11110 Resort Hotel 1 29 2017 April
## 11111 Resort Hotel 1 72 2017 April
## 11112 Resort Hotel 1 63 2017 April
## 11113 Resort Hotel 1 216 2017 April
## 11114 Resort Hotel 1 105 2017 April
## 11115 Resort Hotel 1 105 2017 April
## 11116 Resort Hotel 0 8 2017 April
## 11117 Resort Hotel 1 8 2017 April
## 11118 Resort Hotel 1 157 2017 April
## 11119 Resort Hotel 1 157 2017 April
## 11120 Resort Hotel 1 2 2017 April
## 11121 Resort Hotel 1 78 2017 April
## 11122 Resort Hotel 1 278 2017 April
## 11123 Resort Hotel 1 4 2017 April
## 11124 Resort Hotel 1 180 2017 April
## 11125 Resort Hotel 1 171 2017 April
## 11126 Resort Hotel 0 108 2017 April
## 11127 Resort Hotel 1 253 2017 April
## 11128 Resort Hotel 1 296 2017 April
## 11129 Resort Hotel 1 214 2017 April
## 11130 Resort Hotel 1 208 2017 April
## 11131 Resort Hotel 1 109 2017 April
## 11132 Resort Hotel 1 23 2017 April
## 11133 Resort Hotel 1 234 2017 April
## 11134 Resort Hotel 1 232 2017 April
## 11135 Resort Hotel 1 239 2017 April
## 11136 Resort Hotel 1 234 2017 April
## 11137 Resort Hotel 1 15 2017 April
## 11138 Resort Hotel 1 234 2017 April
## 11139 Resort Hotel 1 214 2017 April
## 11140 Resort Hotel 1 23 2017 April
## 11141 Resort Hotel 1 208 2017 April
## 11142 Resort Hotel 1 239 2017 April
## 11143 Resort Hotel 1 239 2017 April
## 11144 Resort Hotel 1 214 2017 April
## 11145 Resort Hotel 1 239 2017 April
## 11146 Resort Hotel 1 239 2017 April
## 11147 Resort Hotel 1 252 2017 April
## 11148 Resort Hotel 1 224 2017 April
## 11149 Resort Hotel 1 234 2017 April
## 11150 Resort Hotel 1 67 2017 April
## 11151 Resort Hotel 1 23 2017 April
## 11152 Resort Hotel 1 31 2017 April
## 11153 Resort Hotel 1 240 2017 April
## 11154 Resort Hotel 1 130 2017 April
## 11155 Resort Hotel 1 253 2017 April
## 11156 Resort Hotel 1 253 2017 April
## 11157 Resort Hotel 1 39 2017 April
## 11158 Resort Hotel 1 201 2017 April
## 11159 Resort Hotel 1 259 2017 April
## 11160 Resort Hotel 1 259 2017 April
## 11161 Resort Hotel 1 4 2017 April
## 11162 Resort Hotel 1 211 2017 April
## 11163 Resort Hotel 1 211 2017 April
## 11164 Resort Hotel 1 203 2017 April
## 11165 Resort Hotel 1 203 2017 April
## 11166 Resort Hotel 1 203 2017 April
## 11167 Resort Hotel 1 203 2017 April
## 11168 Resort Hotel 1 203 2017 April
## 11169 Resort Hotel 1 203 2017 April
## 11170 Resort Hotel 1 203 2017 April
## 11171 Resort Hotel 1 266 2017 April
## 11172 Resort Hotel 1 80 2017 April
## 11173 Resort Hotel 1 36 2017 April
## 11174 Resort Hotel 1 5 2017 April
## 11175 Resort Hotel 1 245 2017 April
## 11176 Resort Hotel 1 63 2017 April
## 11177 Resort Hotel 1 225 2017 April
## 11178 Resort Hotel 1 218 2017 April
## 11179 Resort Hotel 1 36 2017 April
## 11180 Resort Hotel 0 0 2017 April
## 11181 Resort Hotel 1 90 2017 April
## 11182 Resort Hotel 1 224 2017 April
## 11183 Resort Hotel 1 224 2017 April
## 11184 Resort Hotel 1 224 2017 April
## 11185 Resort Hotel 1 224 2017 April
## 11186 Resort Hotel 1 224 2017 April
## 11187 Resort Hotel 1 9 2017 April
## 11188 Resort Hotel 1 90 2017 April
## 11189 Resort Hotel 1 61 2017 April
## 11190 Resort Hotel 1 34 2017 April
## 11191 Resort Hotel 1 17 2017 April
## 11192 Resort Hotel 1 18 2017 April
## 11193 Resort Hotel 1 4 2017 April
## 11194 Resort Hotel 1 250 2017 April
## 11195 Resort Hotel 1 80 2017 April
## 11196 Resort Hotel 1 302 2017 April
## 11197 Resort Hotel 1 201 2017 April
## 11198 Resort Hotel 1 201 2017 April
## 11199 Resort Hotel 1 113 2017 April
## 11200 Resort Hotel 1 112 2017 April
## 11201 Resort Hotel 1 215 2017 April
## 11202 Resort Hotel 1 215 2017 April
## 11203 Resort Hotel 1 267 2017 April
## 11204 Resort Hotel 1 59 2017 April
## 11205 Resort Hotel 1 26 2017 April
## 11206 Resort Hotel 1 16 2017 April
## 11207 Resort Hotel 1 109 2017 April
## 11208 Resort Hotel 1 37 2017 April
## 11209 Resort Hotel 1 21 2017 April
## 11210 Resort Hotel 1 6 2017 April
## 11211 Resort Hotel 1 110 2017 April
## 11212 Resort Hotel 1 12 2017 April
## 11213 Resort Hotel 1 255 2017 April
## 11214 Resort Hotel 1 21 2017 April
## 11215 Resort Hotel 1 23 2017 April
## 11216 Resort Hotel 1 100 2017 April
## 11217 Resort Hotel 1 100 2017 April
## 11218 Resort Hotel 1 100 2017 April
## 11219 Resort Hotel 1 89 2017 April
## 11220 Resort Hotel 1 100 2017 April
## 11221 Resort Hotel 1 100 2017 April
## 11222 Resort Hotel 1 34 2017 April
## 11223 Resort Hotel 1 54 2017 April
## 11224 Resort Hotel 1 100 2017 April
## 11225 Resort Hotel 1 100 2017 April
## 11226 Resort Hotel 1 100 2017 April
## 11227 Resort Hotel 1 15 2017 April
## 11228 Resort Hotel 1 221 2017 April
## 11229 Resort Hotel 1 5 2017 April
## 11230 Resort Hotel 1 100 2017 April
## 11231 Resort Hotel 1 13 2017 April
## 11232 Resort Hotel 1 59 2017 April
## 11233 Resort Hotel 1 59 2017 April
## 11234 Resort Hotel 1 233 2017 April
## 11235 Resort Hotel 1 172 2017 April
## 11236 Resort Hotel 1 172 2017 April
## 11237 Resort Hotel 1 287 2017 April
## 11238 Resort Hotel 1 172 2017 April
## 11239 Resort Hotel 1 172 2017 April
## 11240 Resort Hotel 1 172 2017 April
## 11241 Resort Hotel 1 287 2017 April
## 11242 Resort Hotel 1 172 2017 April
## 11243 Resort Hotel 1 104 2017 April
## 11244 Resort Hotel 1 172 2017 April
## 11245 Resort Hotel 1 172 2017 April
## 11246 Resort Hotel 1 251 2017 April
## 11247 Resort Hotel 1 103 2017 April
## 11248 Resort Hotel 1 78 2017 April
## 11249 Resort Hotel 1 172 2017 April
## 11250 Resort Hotel 1 172 2017 April
## 11251 Resort Hotel 1 172 2017 April
## 11252 Resort Hotel 1 20 2017 April
## 11253 Resort Hotel 1 85 2017 April
## 11254 Resort Hotel 1 172 2017 April
## 11255 Resort Hotel 1 172 2017 April
## 11256 Resort Hotel 1 172 2017 April
## 11257 Resort Hotel 1 172 2017 April
## 11258 Resort Hotel 1 38 2017 April
## 11259 Resort Hotel 1 25 2017 April
## 11260 Resort Hotel 1 25 2017 April
## 11261 Resort Hotel 1 179 2017 April
## 11262 Resort Hotel 1 87 2017 April
## 11263 Resort Hotel 1 87 2017 April
## 11264 Resort Hotel 1 87 2017 April
## 11265 Resort Hotel 1 87 2017 April
## 11266 Resort Hotel 1 87 2017 April
## 11267 Resort Hotel 1 87 2017 April
## 11268 Resort Hotel 1 43 2017 April
## 11269 Resort Hotel 1 221 2017 April
## 11270 Resort Hotel 1 221 2017 April
## 11271 Resort Hotel 1 221 2017 April
## 11272 Resort Hotel 1 243 2017 April
## 11273 Resort Hotel 1 221 2017 April
## 11274 Resort Hotel 1 221 2017 April
## 11275 Resort Hotel 1 221 2017 April
## 11276 Resort Hotel 1 221 2017 April
## 11277 Resort Hotel 1 221 2017 April
## 11278 Resort Hotel 1 221 2017 April
## 11279 Resort Hotel 1 221 2017 April
## 11280 Resort Hotel 1 221 2017 April
## 11281 Resort Hotel 1 219 2017 April
## 11282 Resort Hotel 1 221 2017 April
## 11283 Resort Hotel 1 221 2017 April
## 11284 Resort Hotel 1 221 2017 April
## 11285 Resort Hotel 1 221 2017 April
## 11286 Resort Hotel 1 105 2017 April
## 11287 Resort Hotel 1 188 2017 April
## 11288 Resort Hotel 1 190 2017 April
## 11289 Resort Hotel 1 72 2017 May
## 11290 Resort Hotel 1 237 2017 May
## 11291 Resort Hotel 1 18 2017 May
## 11292 Resort Hotel 1 65 2017 May
## 11293 Resort Hotel 1 65 2017 May
## 11294 Resort Hotel 1 208 2017 May
## 11295 Resort Hotel 1 155 2017 May
## 11296 Resort Hotel 1 13 2017 May
## 11297 Resort Hotel 1 152 2017 May
## 11298 Resort Hotel 1 37 2017 May
## 11299 Resort Hotel 1 155 2017 May
## 11300 Resort Hotel 1 73 2017 May
## 11301 Resort Hotel 1 308 2017 May
## 11302 Resort Hotel 1 37 2017 May
## 11303 Resort Hotel 1 87 2017 May
## 11304 Resort Hotel 1 19 2017 May
## 11305 Resort Hotel 1 111 2017 May
## 11306 Resort Hotel 1 70 2017 May
## 11307 Resort Hotel 1 74 2017 May
## 11308 Resort Hotel 1 84 2017 May
## 11309 Resort Hotel 1 127 2017 May
## 11310 Resort Hotel 1 18 2017 May
## 11311 Resort Hotel 1 113 2017 May
## 11312 Resort Hotel 1 41 2017 May
## 11313 Resort Hotel 1 237 2017 May
## 11314 Resort Hotel 1 237 2017 May
## 11315 Resort Hotel 1 209 2017 May
## 11316 Resort Hotel 1 237 2017 May
## 11317 Resort Hotel 1 209 2017 May
## 11318 Resort Hotel 1 237 2017 May
## 11319 Resort Hotel 1 237 2017 May
## 11320 Resort Hotel 1 209 2017 May
## 11321 Resort Hotel 1 94 2017 May
## 11322 Resort Hotel 1 83 2017 May
## 11323 Resort Hotel 1 83 2017 May
## 11324 Resort Hotel 1 83 2017 May
## 11325 Resort Hotel 1 83 2017 May
## 11326 Resort Hotel 1 83 2017 May
## 11327 Resort Hotel 1 83 2017 May
## 11328 Resort Hotel 1 83 2017 May
## 11329 Resort Hotel 1 93 2017 May
## 11330 Resort Hotel 1 83 2017 May
## 11331 Resort Hotel 1 83 2017 May
## 11332 Resort Hotel 1 83 2017 May
## 11333 Resort Hotel 1 65 2017 May
## 11334 Resort Hotel 1 65 2017 May
## 11335 Resort Hotel 1 65 2017 May
## 11336 Resort Hotel 1 65 2017 May
## 11337 Resort Hotel 1 65 2017 May
## 11338 Resort Hotel 1 65 2017 May
## 11339 Resort Hotel 1 65 2017 May
## 11340 Resort Hotel 1 65 2017 May
## 11341 Resort Hotel 1 229 2017 May
## 11342 Resort Hotel 1 228 2017 May
## 11343 Resort Hotel 1 217 2017 May
## 11344 Resort Hotel 1 202 2017 May
## 11345 Resort Hotel 1 202 2017 May
## 11346 Resort Hotel 1 0 2017 May
## 11347 Resort Hotel 1 202 2017 May
## 11348 Resort Hotel 1 202 2017 May
## 11349 Resort Hotel 1 202 2017 May
## 11350 Resort Hotel 1 202 2017 May
## 11351 Resort Hotel 1 43 2017 May
## 11352 Resort Hotel 1 108 2017 May
## 11353 Resort Hotel 1 51 2017 May
## 11354 Resort Hotel 1 108 2017 May
## 11355 Resort Hotel 1 108 2017 May
## 11356 Resort Hotel 1 54 2017 May
## 11357 Resort Hotel 1 108 2017 May
## 11358 Resort Hotel 1 15 2017 May
## 11359 Resort Hotel 1 210 2017 May
## 11360 Resort Hotel 1 210 2017 May
## 11361 Resort Hotel 1 210 2017 May
## 11362 Resort Hotel 1 223 2017 May
## 11363 Resort Hotel 1 210 2017 May
## 11364 Resort Hotel 1 210 2017 May
## 11365 Resort Hotel 1 223 2017 May
## 11366 Resort Hotel 1 223 2017 May
## 11367 Resort Hotel 1 210 2017 May
## 11368 Resort Hotel 1 210 2017 May
## 11369 Resort Hotel 1 121 2017 May
## 11370 Resort Hotel 1 210 2017 May
## 11371 Resort Hotel 1 210 2017 May
## 11372 Resort Hotel 1 210 2017 May
## 11373 Resort Hotel 1 223 2017 May
## 11374 Resort Hotel 1 210 2017 May
## 11375 Resort Hotel 1 210 2017 May
## 11376 Resort Hotel 1 210 2017 May
## 11377 Resort Hotel 1 253 2017 May
## 11378 Resort Hotel 1 223 2017 May
## 11379 Resort Hotel 1 210 2017 May
## 11380 Resort Hotel 1 227 2017 May
## 11381 Resort Hotel 1 194 2017 May
## 11382 Resort Hotel 1 1 2017 May
## 11383 Resort Hotel 1 19 2017 May
## 11384 Resort Hotel 1 37 2017 May
## 11385 Resort Hotel 1 5 2017 May
## 11386 Resort Hotel 1 214 2017 May
## 11387 Resort Hotel 1 214 2017 May
## 11388 Resort Hotel 1 14 2017 May
## 11389 Resort Hotel 1 214 2017 May
## 11390 Resort Hotel 1 214 2017 May
## 11391 Resort Hotel 1 29 2017 May
## 11392 Resort Hotel 1 5 2017 May
## 11393 Resort Hotel 1 214 2017 May
## 11394 Resort Hotel 1 214 2017 May
## 11395 Resort Hotel 1 214 2017 May
## 11396 Resort Hotel 1 49 2017 May
## 11397 Resort Hotel 1 89 2017 May
## 11398 Resort Hotel 1 44 2017 May
## 11399 Resort Hotel 1 183 2017 May
## 11400 Resort Hotel 1 54 2017 May
## 11401 Resort Hotel 1 6 2017 May
## 11402 Resort Hotel 1 15 2017 May
## 11403 Resort Hotel 1 106 2017 May
## 11404 Resort Hotel 1 226 2017 May
## 11405 Resort Hotel 1 225 2017 May
## 11406 Resort Hotel 1 226 2017 May
## 11407 Resort Hotel 1 233 2017 May
## 11408 Resort Hotel 1 233 2017 May
## 11409 Resort Hotel 1 93 2017 May
## 11410 Resort Hotel 1 295 2017 May
## 11411 Resort Hotel 1 330 2017 May
## 11412 Resort Hotel 1 116 2017 May
## 11413 Resort Hotel 1 116 2017 May
## 11414 Resort Hotel 1 115 2017 May
## 11415 Resort Hotel 1 23 2017 May
## 11416 Resort Hotel 1 227 2017 May
## 11417 Resort Hotel 1 227 2017 May
## 11418 Resort Hotel 1 90 2017 May
## 11419 Resort Hotel 1 17 2017 May
## 11420 Resort Hotel 1 152 2017 May
## 11421 Resort Hotel 1 86 2017 May
## 11422 Resort Hotel 1 33 2017 May
## 11423 Resort Hotel 1 49 2017 May
## 11424 Resort Hotel 1 136 2017 May
## 11425 Resort Hotel 1 136 2017 May
## 11426 Resort Hotel 1 62 2017 May
## 11427 Resort Hotel 1 17 2017 May
## 11428 Resort Hotel 1 41 2017 May
## 11429 Resort Hotel 1 319 2017 May
## 11430 Resort Hotel 1 123 2017 May
## 11431 Resort Hotel 1 257 2017 May
## 11432 Resort Hotel 1 70 2017 May
## 11433 Resort Hotel 1 2 2017 May
## 11434 Resort Hotel 1 2 2017 May
## 11435 Resort Hotel 1 2 2017 May
## 11436 Resort Hotel 1 2 2017 May
## 11437 Resort Hotel 1 82 2017 May
## 11438 Resort Hotel 1 104 2017 May
## 11439 Resort Hotel 1 140 2017 May
## 11440 Resort Hotel 1 158 2017 May
## 11441 Resort Hotel 1 31 2017 May
## 11442 Resort Hotel 1 82 2017 May
## 11443 Resort Hotel 1 156 2017 May
## 11444 Resort Hotel 1 217 2017 May
## 11445 Resort Hotel 1 183 2017 May
## 11446 Resort Hotel 1 15 2017 May
## 11447 Resort Hotel 1 7 2017 May
## 11448 Resort Hotel 1 7 2017 May
## 11449 Resort Hotel 1 257 2017 May
## 11450 Resort Hotel 1 54 2017 May
## 11451 Resort Hotel 1 302 2017 May
## 11452 Resort Hotel 1 302 2017 May
## 11453 Resort Hotel 1 302 2017 May
## 11454 Resort Hotel 1 47 2017 May
## 11455 Resort Hotel 1 302 2017 May
## 11456 Resort Hotel 1 257 2017 May
## 11457 Resort Hotel 1 302 2017 May
## 11458 Resort Hotel 1 302 2017 May
## 11459 Resort Hotel 1 302 2017 May
## 11460 Resort Hotel 1 302 2017 May
## 11461 Resort Hotel 1 302 2017 May
## 11462 Resort Hotel 1 302 2017 May
## 11463 Resort Hotel 1 231 2017 May
## 11464 Resort Hotel 1 302 2017 May
## 11465 Resort Hotel 1 302 2017 May
## 11466 Resort Hotel 1 302 2017 May
## 11467 Resort Hotel 1 302 2017 May
## 11468 Resort Hotel 1 302 2017 May
## 11469 Resort Hotel 1 84 2017 May
## 11470 Resort Hotel 1 29 2017 May
## 11471 Resort Hotel 1 120 2017 May
## 11472 Resort Hotel 1 115 2017 May
## 11473 Resort Hotel 1 296 2017 May
## 11474 Resort Hotel 1 303 2017 May
## 11475 Resort Hotel 1 16 2017 May
## 11476 Resort Hotel 1 79 2017 May
## 11477 Resort Hotel 1 78 2017 May
## 11478 Resort Hotel 1 140 2017 May
## 11479 Resort Hotel 1 140 2017 May
## 11480 Resort Hotel 1 140 2017 May
## 11481 Resort Hotel 1 140 2017 May
## 11482 Resort Hotel 1 14 2017 May
## 11483 Resort Hotel 1 140 2017 May
## 11484 Resort Hotel 1 140 2017 May
## 11485 Resort Hotel 1 130 2017 May
## 11486 Resort Hotel 1 130 2017 May
## 11487 Resort Hotel 1 67 2017 May
## 11488 Resort Hotel 1 288 2017 May
## 11489 Resort Hotel 1 0 2017 May
## 11490 Resort Hotel 1 13 2017 May
## 11491 Resort Hotel 1 29 2017 May
## 11492 Resort Hotel 1 77 2017 May
## 11493 Resort Hotel 1 24 2017 May
## 11494 Resort Hotel 1 154 2017 May
## 11495 Resort Hotel 1 150 2017 May
## 11496 Resort Hotel 1 77 2017 May
## 11497 Resort Hotel 1 233 2017 May
## 11498 Resort Hotel 1 233 2017 May
## 11499 Resort Hotel 1 10 2017 May
## 11500 Resort Hotel 1 116 2017 May
## 11501 Resort Hotel 1 94 2017 May
## 11502 Resort Hotel 1 8 2017 May
## 11503 Resort Hotel 1 98 2017 May
## 11504 Resort Hotel 1 22 2017 May
## 11505 Resort Hotel 1 52 2017 May
## 11506 Resort Hotel 1 102 2017 May
## 11507 Resort Hotel 1 120 2017 May
## 11508 Resort Hotel 1 120 2017 May
## 11509 Resort Hotel 1 263 2017 May
## 11510 Resort Hotel 1 201 2017 May
## 11511 Resort Hotel 1 201 2017 May
## 11512 Resort Hotel 1 95 2017 May
## 11513 Resort Hotel 1 201 2017 May
## 11514 Resort Hotel 1 38 2017 May
## 11515 Resort Hotel 1 2 2017 May
## 11516 Resort Hotel 1 9 2017 May
## 11517 Resort Hotel 1 134 2017 May
## 11518 Resort Hotel 1 70 2017 May
## 11519 Resort Hotel 1 124 2017 May
## 11520 Resort Hotel 1 189 2017 May
## 11521 Resort Hotel 1 81 2017 May
## 11522 Resort Hotel 1 261 2017 May
## 11523 Resort Hotel 1 89 2017 May
## 11524 Resort Hotel 1 89 2017 May
## 11525 Resort Hotel 1 217 2017 May
## 11526 Resort Hotel 1 337 2017 May
## 11527 Resort Hotel 1 338 2017 May
## 11528 Resort Hotel 1 10 2017 May
## 11529 Resort Hotel 1 47 2017 May
## 11530 Resort Hotel 1 101 2017 May
## 11531 Resort Hotel 1 101 2017 May
## 11532 Resort Hotel 1 3 2017 May
## 11533 Resort Hotel 1 98 2017 May
## 11534 Resort Hotel 1 313 2017 May
## 11535 Resort Hotel 1 272 2017 May
## 11536 Resort Hotel 1 28 2017 May
## 11537 Resort Hotel 1 305 2017 May
## 11538 Resort Hotel 1 278 2017 May
## 11539 Resort Hotel 1 180 2017 May
## 11540 Resort Hotel 1 305 2017 May
## 11541 Resort Hotel 1 302 2017 May
## 11542 Resort Hotel 1 158 2017 May
## 11543 Resort Hotel 0 3 2017 May
## 11544 Resort Hotel 1 41 2017 May
## 11545 Resort Hotel 1 41 2017 May
## 11546 Resort Hotel 1 284 2017 May
## 11547 Resort Hotel 1 41 2017 May
## 11548 Resort Hotel 1 60 2017 May
## 11549 Resort Hotel 1 258 2017 May
## 11550 Resort Hotel 1 144 2017 May
## 11551 Resort Hotel 1 201 2017 May
## 11552 Resort Hotel 1 14 2017 May
## 11553 Resort Hotel 1 96 2017 May
## 11554 Resort Hotel 1 134 2017 May
## 11555 Resort Hotel 1 90 2017 May
## 11556 Resort Hotel 1 72 2017 May
## 11557 Resort Hotel 1 80 2017 May
## 11558 Resort Hotel 1 30 2017 May
## 11559 Resort Hotel 1 25 2017 May
## 11560 Resort Hotel 1 230 2017 May
## 11561 Resort Hotel 1 322 2017 May
## 11562 Resort Hotel 1 81 2017 May
## 11563 Resort Hotel 1 81 2017 May
## 11564 Resort Hotel 1 116 2017 May
## 11565 Resort Hotel 1 336 2017 May
## 11566 Resort Hotel 1 310 2017 May
## 11567 Resort Hotel 1 107 2017 May
## 11568 Resort Hotel 1 222 2017 May
## 11569 Resort Hotel 1 107 2017 May
## 11570 Resort Hotel 1 70 2017 May
## 11571 Resort Hotel 1 43 2017 May
## 11572 Resort Hotel 1 152 2017 May
## 11573 Resort Hotel 1 27 2017 May
## 11574 Resort Hotel 1 178 2017 May
## 11575 Resort Hotel 1 21 2017 May
## 11576 Resort Hotel 1 178 2017 May
## 11577 Resort Hotel 1 333 2017 May
## 11578 Resort Hotel 1 124 2017 May
## 11579 Resort Hotel 1 165 2017 May
## 11580 Resort Hotel 1 262 2017 May
## 11581 Resort Hotel 1 266 2017 May
## 11582 Resort Hotel 1 45 2017 May
## 11583 Resort Hotel 1 15 2017 May
## 11584 Resort Hotel 1 33 2017 May
## 11585 Resort Hotel 1 38 2017 May
## 11586 Resort Hotel 1 87 2017 May
## 11587 Resort Hotel 1 207 2017 May
## 11588 Resort Hotel 1 207 2017 May
## 11589 Resort Hotel 1 112 2017 May
## 11590 Resort Hotel 1 299 2017 May
## 11591 Resort Hotel 1 300 2017 May
## 11592 Resort Hotel 1 205 2017 May
## 11593 Resort Hotel 1 98 2017 May
## 11594 Resort Hotel 1 131 2017 May
## 11595 Resort Hotel 1 93 2017 May
## 11596 Resort Hotel 1 86 2017 May
## 11597 Resort Hotel 1 263 2017 May
## 11598 Resort Hotel 1 101 2017 May
## 11599 Resort Hotel 1 61 2017 May
## 11600 Resort Hotel 1 15 2017 May
## 11601 Resort Hotel 1 471 2017 May
## 11602 Resort Hotel 1 104 2017 May
## 11603 Resort Hotel 1 471 2017 May
## 11604 Resort Hotel 1 471 2017 May
## 11605 Resort Hotel 1 226 2017 May
## 11606 Resort Hotel 1 471 2017 May
## 11607 Resort Hotel 1 471 2017 May
## 11608 Resort Hotel 1 471 2017 May
## 11609 Resort Hotel 1 60 2017 May
## 11610 Resort Hotel 1 60 2017 May
## 11611 Resort Hotel 1 60 2017 May
## 11612 Resort Hotel 1 60 2017 May
## 11613 Resort Hotel 1 60 2017 May
## 11614 Resort Hotel 1 60 2017 May
## 11615 Resort Hotel 1 60 2017 May
## 11616 Resort Hotel 1 60 2017 May
## 11617 Resort Hotel 1 259 2017 May
## 11618 Resort Hotel 1 139 2017 May
## 11619 Resort Hotel 1 191 2017 May
## 11620 Resort Hotel 1 139 2017 May
## 11621 Resort Hotel 1 253 2017 May
## 11622 Resort Hotel 1 237 2017 May
## 11623 Resort Hotel 1 251 2017 May
## 11624 Resort Hotel 1 237 2017 May
## 11625 Resort Hotel 1 249 2017 May
## 11626 Resort Hotel 1 107 2017 May
## 11627 Resort Hotel 1 5 2017 May
## 11628 Resort Hotel 1 139 2017 May
## 11629 Resort Hotel 1 18 2017 May
## 11630 Resort Hotel 1 62 2017 May
## 11631 Resort Hotel 1 78 2017 May
## 11632 Resort Hotel 1 40 2017 May
## 11633 Resort Hotel 1 220 2017 May
## 11634 Resort Hotel 1 220 2017 May
## 11635 Resort Hotel 1 17 2017 May
## 11636 Resort Hotel 1 13 2017 May
## 11637 Resort Hotel 1 53 2017 May
## 11638 Resort Hotel 1 8 2017 May
## 11639 Resort Hotel 1 8 2017 May
## 11640 Resort Hotel 1 92 2017 May
## 11641 Resort Hotel 1 8 2017 May
## 11642 Resort Hotel 1 8 2017 May
## 11643 Resort Hotel 1 8 2017 May
## 11644 Resort Hotel 1 280 2017 May
## 11645 Resort Hotel 1 86 2017 May
## 11646 Resort Hotel 1 160 2017 May
## 11647 Resort Hotel 1 2 2017 May
## 11648 Resort Hotel 1 18 2017 May
## 11649 Resort Hotel 1 7 2017 May
## 11650 Resort Hotel 1 92 2017 May
## 11651 Resort Hotel 1 92 2017 May
## 11652 Resort Hotel 1 47 2017 May
## 11653 Resort Hotel 1 49 2017 May
## 11654 Resort Hotel 1 269 2017 May
## 11655 Resort Hotel 1 317 2017 May
## 11656 Resort Hotel 1 41 2017 May
## 11657 Resort Hotel 1 462 2017 May
## 11658 Resort Hotel 1 462 2017 May
## 11659 Resort Hotel 1 462 2017 May
## 11660 Resort Hotel 1 203 2017 May
## 11661 Resort Hotel 1 462 2017 May
## 11662 Resort Hotel 1 462 2017 May
## 11663 Resort Hotel 1 8 2017 May
## 11664 Resort Hotel 1 462 2017 May
## 11665 Resort Hotel 1 462 2017 May
## 11666 Resort Hotel 1 462 2017 May
## 11667 Resort Hotel 1 16 2017 May
## 11668 Resort Hotel 1 462 2017 May
## 11669 Resort Hotel 1 462 2017 May
## 11670 Resort Hotel 1 462 2017 May
## 11671 Resort Hotel 1 462 2017 May
## 11672 Resort Hotel 1 462 2017 May
## 11673 Resort Hotel 1 462 2017 May
## 11674 Resort Hotel 1 462 2017 May
## 11675 Resort Hotel 1 95 2017 May
## 11676 Resort Hotel 1 462 2017 May
## 11677 Resort Hotel 1 462 2017 May
## 11678 Resort Hotel 1 462 2017 May
## 11679 Resort Hotel 1 462 2017 May
## 11680 Resort Hotel 1 462 2017 May
## 11681 Resort Hotel 1 38 2017 May
## 11682 Resort Hotel 1 312 2017 May
## 11683 Resort Hotel 1 224 2017 May
## 11684 Resort Hotel 1 177 2017 May
## 11685 Resort Hotel 1 224 2017 May
## 11686 Resort Hotel 1 263 2017 May
## 11687 Resort Hotel 1 227 2017 May
## 11688 Resort Hotel 1 162 2017 May
## 11689 Resort Hotel 1 305 2017 May
## 11690 Resort Hotel 1 162 2017 May
## 11691 Resort Hotel 1 351 2017 May
## 11692 Resort Hotel 1 162 2017 May
## 11693 Resort Hotel 1 352 2017 May
## 11694 Resort Hotel 1 352 2017 May
## 11695 Resort Hotel 1 305 2017 May
## 11696 Resort Hotel 1 219 2017 May
## 11697 Resort Hotel 1 305 2017 May
## 11698 Resort Hotel 1 222 2017 May
## 11699 Resort Hotel 1 24 2017 May
## 11700 Resort Hotel 1 20 2017 May
## 11701 Resort Hotel 1 146 2017 May
## 11702 Resort Hotel 1 136 2017 May
## 11703 Resort Hotel 1 139 2017 May
## 11704 Resort Hotel 1 14 2017 May
## 11705 Resort Hotel 1 251 2017 May
## 11706 Resort Hotel 1 297 2017 May
## 11707 Resort Hotel 1 39 2017 May
## 11708 Resort Hotel 1 304 2017 May
## 11709 Resort Hotel 1 165 2017 May
## 11710 Resort Hotel 1 231 2017 May
## 11711 Resort Hotel 1 229 2017 May
## 11712 Resort Hotel 1 322 2017 May
## 11713 Resort Hotel 1 350 2017 May
## 11714 Resort Hotel 1 232 2017 May
## 11715 Resort Hotel 1 212 2017 May
## 11716 Resort Hotel 1 355 2017 May
## 11717 Resort Hotel 1 305 2017 May
## 11718 Resort Hotel 1 60 2017 May
## 11719 Resort Hotel 1 38 2017 May
## 11720 Resort Hotel 1 140 2017 May
## 11721 Resort Hotel 1 311 2017 May
## 11722 Resort Hotel 1 107 2017 May
## 11723 Resort Hotel 1 67 2017 May
## 11724 Resort Hotel 1 312 2017 May
## 11725 Resort Hotel 1 337 2017 May
## 11726 Resort Hotel 1 313 2017 May
## 11727 Resort Hotel 1 313 2017 May
## 11728 Resort Hotel 1 33 2017 May
## 11729 Resort Hotel 1 313 2017 May
## 11730 Resort Hotel 1 353 2017 May
## 11731 Resort Hotel 1 313 2017 May
## 11732 Resort Hotel 1 116 2017 May
## 11733 Resort Hotel 1 313 2017 May
## 11734 Resort Hotel 1 200 2017 May
## 11735 Resort Hotel 1 313 2017 May
## 11736 Resort Hotel 1 313 2017 May
## 11737 Resort Hotel 1 353 2017 May
## 11738 Resort Hotel 1 230 2017 May
## 11739 Resort Hotel 1 13 2017 May
## 11740 Resort Hotel 1 77 2017 May
## 11741 Resort Hotel 1 198 2017 May
## 11742 Resort Hotel 1 51 2017 May
## 11743 Resort Hotel 1 352 2017 May
## 11744 Resort Hotel 1 7 2017 May
## 11745 Resort Hotel 1 103 2017 May
## 11746 Resort Hotel 1 80 2017 May
## 11747 Resort Hotel 1 63 2017 May
## 11748 Resort Hotel 1 63 2017 May
## 11749 Resort Hotel 1 12 2017 May
## 11750 Resort Hotel 1 11 2017 May
## 11751 Resort Hotel 1 107 2017 May
## 11752 Resort Hotel 1 108 2017 May
## 11753 Resort Hotel 1 103 2017 May
## 11754 Resort Hotel 1 199 2017 May
## 11755 Resort Hotel 1 102 2017 May
## 11756 Resort Hotel 1 222 2017 May
## 11757 Resort Hotel 1 139 2017 May
## 11758 Resort Hotel 1 222 2017 May
## 11759 Resort Hotel 1 214 2017 May
## 11760 Resort Hotel 1 222 2017 May
## 11761 Resort Hotel 1 247 2017 May
## 11762 Resort Hotel 1 338 2017 May
## 11763 Resort Hotel 1 321 2017 May
## 11764 Resort Hotel 1 342 2017 May
## 11765 Resort Hotel 1 247 2017 May
## 11766 Resort Hotel 1 30 2017 May
## 11767 Resort Hotel 1 132 2017 May
## 11768 Resort Hotel 1 184 2017 May
## 11769 Resort Hotel 1 312 2017 May
## 11770 Resort Hotel 1 4 2017 May
## 11771 Resort Hotel 1 128 2017 May
## 11772 Resort Hotel 1 128 2017 May
## 11773 Resort Hotel 1 22 2017 May
## 11774 Resort Hotel 1 97 2017 May
## 11775 Resort Hotel 1 72 2017 May
## 11776 Resort Hotel 1 254 2017 May
## 11777 Resort Hotel 1 42 2017 May
## 11778 Resort Hotel 1 113 2017 May
## 11779 Resort Hotel 1 113 2017 May
## 11780 Resort Hotel 1 113 2017 May
## 11781 Resort Hotel 1 113 2017 May
## 11782 Resort Hotel 1 113 2017 May
## 11783 Resort Hotel 1 113 2017 May
## 11784 Resort Hotel 1 155 2017 May
## 11785 Resort Hotel 1 216 2017 May
## 11786 Resort Hotel 1 7 2017 May
## 11787 Resort Hotel 1 137 2017 May
## 11788 Resort Hotel 1 71 2017 May
## 11789 Resort Hotel 1 155 2017 May
## 11790 Resort Hotel 1 7 2017 May
## 11791 Resort Hotel 1 289 2017 May
## 11792 Resort Hotel 1 314 2017 May
## 11793 Resort Hotel 1 279 2017 May
## 11794 Resort Hotel 1 279 2017 May
## 11795 Resort Hotel 1 138 2017 May
## 11796 Resort Hotel 1 138 2017 May
## 11797 Resort Hotel 1 152 2017 May
## 11798 Resort Hotel 1 295 2017 May
## 11799 Resort Hotel 1 238 2017 May
## 11800 Resort Hotel 1 23 2017 May
## 11801 Resort Hotel 1 14 2017 May
## 11802 Resort Hotel 1 143 2017 May
## 11803 Resort Hotel 1 144 2017 May
## 11804 Resort Hotel 1 46 2017 May
## 11805 Resort Hotel 1 322 2017 May
## 11806 Resort Hotel 1 411 2017 May
## 11807 Resort Hotel 1 411 2017 May
## 11808 Resort Hotel 1 411 2017 May
## 11809 Resort Hotel 1 411 2017 May
## 11810 Resort Hotel 1 411 2017 May
## 11811 Resort Hotel 1 411 2017 May
## 11812 Resort Hotel 1 411 2017 May
## 11813 Resort Hotel 1 411 2017 May
## 11814 Resort Hotel 1 411 2017 May
## 11815 Resort Hotel 1 411 2017 May
## 11816 Resort Hotel 1 411 2017 May
## 11817 Resort Hotel 1 411 2017 May
## 11818 Resort Hotel 1 411 2017 May
## 11819 Resort Hotel 1 411 2017 May
## 11820 Resort Hotel 1 411 2017 May
## 11821 Resort Hotel 1 411 2017 May
## 11822 Resort Hotel 1 411 2017 May
## 11823 Resort Hotel 1 411 2017 May
## 11824 Resort Hotel 1 411 2017 May
## 11825 Resort Hotel 1 411 2017 May
## 11826 Resort Hotel 1 411 2017 May
## 11827 Resort Hotel 1 450 2017 May
## 11828 Resort Hotel 1 411 2017 May
## 11829 Resort Hotel 1 411 2017 May
## 11830 Resort Hotel 1 411 2017 May
## 11831 Resort Hotel 1 350 2017 May
## 11832 Resort Hotel 1 1 2017 June
## 11833 Resort Hotel 1 1 2017 June
## 11834 Resort Hotel 1 18 2017 June
## 11835 Resort Hotel 1 43 2017 June
## 11836 Resort Hotel 1 13 2017 June
## 11837 Resort Hotel 1 19 2017 June
## 11838 Resort Hotel 1 255 2017 June
## 11839 Resort Hotel 1 309 2017 June
## 11840 Resort Hotel 1 17 2017 June
## 11841 Resort Hotel 1 123 2017 June
## 11842 Resort Hotel 1 309 2017 June
## 11843 Resort Hotel 1 104 2017 June
## 11844 Resort Hotel 1 113 2017 June
## 11845 Resort Hotel 1 263 2017 June
## 11846 Resort Hotel 1 263 2017 June
## 11847 Resort Hotel 1 263 2017 June
## 11848 Resort Hotel 1 160 2017 June
## 11849 Resort Hotel 1 344 2017 June
## 11850 Resort Hotel 1 239 2017 June
## 11851 Resort Hotel 1 321 2017 June
## 11852 Resort Hotel 1 344 2017 June
## 11853 Resort Hotel 1 239 2017 June
## 11854 Resort Hotel 1 74 2017 June
## 11855 Resort Hotel 1 7 2017 June
## 11856 Resort Hotel 1 49 2017 June
## 11857 Resort Hotel 1 1 2017 June
## 11858 Resort Hotel 1 1 2017 June
## 11859 Resort Hotel 1 23 2017 June
## 11860 Resort Hotel 1 19 2017 June
## 11861 Resort Hotel 1 41 2017 June
## 11862 Resort Hotel 1 48 2017 June
## 11863 Resort Hotel 1 65 2017 June
## 11864 Resort Hotel 1 1 2017 June
## 11865 Resort Hotel 1 43 2017 June
## 11866 Resort Hotel 1 36 2017 June
## 11867 Resort Hotel 1 88 2017 June
## 11868 Resort Hotel 1 1 2017 June
## 11869 Resort Hotel 1 1 2017 June
## 11870 Resort Hotel 1 41 2017 June
## 11871 Resort Hotel 1 18 2017 June
## 11872 Resort Hotel 1 49 2017 June
## 11873 Resort Hotel 1 282 2017 June
## 11874 Resort Hotel 1 1 2017 June
## 11875 Resort Hotel 1 43 2017 June
## 11876 Resort Hotel 1 131 2017 June
## 11877 Resort Hotel 1 247 2017 June
## 11878 Resort Hotel 1 113 2017 June
## 11879 Resort Hotel 1 28 2017 June
## 11880 Resort Hotel 1 219 2017 June
## 11881 Resort Hotel 1 241 2017 June
## 11882 Resort Hotel 1 264 2017 June
## 11883 Resort Hotel 1 264 2017 June
## 11884 Resort Hotel 1 99 2017 June
## 11885 Resort Hotel 1 22 2017 June
## 11886 Resort Hotel 1 278 2017 June
## 11887 Resort Hotel 1 282 2017 June
## 11888 Resort Hotel 1 43 2017 June
## 11889 Resort Hotel 1 248 2017 June
## 11890 Resort Hotel 1 175 2017 June
## 11891 Resort Hotel 1 16 2017 June
## 11892 Resort Hotel 1 22 2017 June
## 11893 Resort Hotel 1 2 2017 June
## 11894 Resort Hotel 1 114 2017 June
## 11895 Resort Hotel 1 252 2017 June
## 11896 Resort Hotel 1 320 2017 June
## 11897 Resort Hotel 1 320 2017 June
## 11898 Resort Hotel 1 310 2017 June
## 11899 Resort Hotel 1 274 2017 June
## 11900 Resort Hotel 1 323 2017 June
## 11901 Resort Hotel 1 323 2017 June
## 11902 Resort Hotel 1 319 2017 June
## 11903 Resort Hotel 1 323 2017 June
## 11904 Resort Hotel 1 323 2017 June
## 11905 Resort Hotel 1 323 2017 June
## 11906 Resort Hotel 1 240 2017 June
## 11907 Resort Hotel 1 320 2017 June
## 11908 Resort Hotel 1 310 2017 June
## 11909 Resort Hotel 1 319 2017 June
## 11910 Resort Hotel 1 323 2017 June
## 11911 Resort Hotel 1 323 2017 June
## 11912 Resort Hotel 1 323 2017 June
## 11913 Resort Hotel 1 323 2017 June
## 11914 Resort Hotel 1 323 2017 June
## 11915 Resort Hotel 1 323 2017 June
## 11916 Resort Hotel 1 323 2017 June
## 11917 Resort Hotel 1 323 2017 June
## 11918 Resort Hotel 1 319 2017 June
## 11919 Resort Hotel 1 320 2017 June
## 11920 Resort Hotel 1 320 2017 June
## 11921 Resort Hotel 1 320 2017 June
## 11922 Resort Hotel 1 323 2017 June
## 11923 Resort Hotel 1 323 2017 June
## 11924 Resort Hotel 1 319 2017 June
## 11925 Resort Hotel 1 314 2017 June
## 11926 Resort Hotel 1 323 2017 June
## 11927 Resort Hotel 1 323 2017 June
## 11928 Resort Hotel 1 323 2017 June
## 11929 Resort Hotel 1 310 2017 June
## 11930 Resort Hotel 1 320 2017 June
## 11931 Resort Hotel 1 319 2017 June
## 11932 Resort Hotel 1 323 2017 June
## 11933 Resort Hotel 1 323 2017 June
## 11934 Resort Hotel 1 355 2017 June
## 11935 Resort Hotel 1 310 2017 June
## 11936 Resort Hotel 1 141 2017 June
## 11937 Resort Hotel 1 141 2017 June
## 11938 Resort Hotel 1 219 2017 June
## 11939 Resort Hotel 1 244 2017 June
## 11940 Resort Hotel 1 69 2017 June
## 11941 Resort Hotel 1 69 2017 June
## 11942 Resort Hotel 1 87 2017 June
## 11943 Resort Hotel 1 67 2017 June
## 11944 Resort Hotel 1 83 2017 June
## 11945 Resort Hotel 1 102 2017 June
## 11946 Resort Hotel 1 87 2017 June
## 11947 Resort Hotel 1 127 2017 June
## 11948 Resort Hotel 1 119 2017 June
## 11949 Resort Hotel 1 272 2017 June
## 11950 Resort Hotel 1 25 2017 June
## 11951 Resort Hotel 1 326 2017 June
## 11952 Resort Hotel 1 318 2017 June
## 11953 Resort Hotel 1 318 2017 June
## 11954 Resort Hotel 1 318 2017 June
## 11955 Resort Hotel 1 318 2017 June
## 11956 Resort Hotel 1 318 2017 June
## 11957 Resort Hotel 1 318 2017 June
## 11958 Resort Hotel 1 75 2017 June
## 11959 Resort Hotel 1 24 2017 June
## 11960 Resort Hotel 1 318 2017 June
## 11961 Resort Hotel 1 318 2017 June
## 11962 Resort Hotel 1 21 2017 June
## 11963 Resort Hotel 1 128 2017 June
## 11964 Resort Hotel 1 319 2017 June
## 11965 Resort Hotel 1 319 2017 June
## 11966 Resort Hotel 1 35 2017 June
## 11967 Resort Hotel 1 321 2017 June
## 11968 Resort Hotel 1 303 2017 June
## 11969 Resort Hotel 1 60 2017 June
## 11970 Resort Hotel 1 222 2017 June
## 11971 Resort Hotel 1 149 2017 June
## 11972 Resort Hotel 1 4 2017 June
## 11973 Resort Hotel 1 149 2017 June
## 11974 Resort Hotel 1 91 2017 June
## 11975 Resort Hotel 1 91 2017 June
## 11976 Resort Hotel 1 120 2017 June
## 11977 Resort Hotel 1 132 2017 June
## 11978 Resort Hotel 1 329 2017 June
## 11979 Resort Hotel 1 223 2017 June
## 11980 Resort Hotel 1 257 2017 June
## 11981 Resort Hotel 1 35 2017 June
## 11982 Resort Hotel 1 18 2017 June
## 11983 Resort Hotel 1 18 2017 June
## 11984 Resort Hotel 1 340 2017 June
## 11985 Resort Hotel 1 47 2017 June
## 11986 Resort Hotel 1 2 2017 June
## 11987 Resort Hotel 1 33 2017 June
## 11988 Resort Hotel 1 29 2017 June
## 11989 Resort Hotel 1 156 2017 June
## 11990 Resort Hotel 1 247 2017 June
## 11991 Resort Hotel 1 328 2017 June
## 11992 Resort Hotel 1 1 2017 June
## 11993 Resort Hotel 1 304 2017 June
## 11994 Resort Hotel 1 304 2017 June
## 11995 Resort Hotel 1 304 2017 June
## 11996 Resort Hotel 1 235 2017 June
## 11997 Resort Hotel 1 304 2017 June
## 11998 Resort Hotel 1 304 2017 June
## 11999 Resort Hotel 1 309 2017 June
## 12000 Resort Hotel 1 21 2017 June
## 12001 Resort Hotel 1 304 2017 June
## 12002 Resort Hotel 1 309 2017 June
## 12003 Resort Hotel 1 304 2017 June
## 12004 Resort Hotel 1 304 2017 June
## 12005 Resort Hotel 1 304 2017 June
## 12006 Resort Hotel 1 304 2017 June
## 12007 Resort Hotel 1 304 2017 June
## 12008 Resort Hotel 1 304 2017 June
## 12009 Resort Hotel 1 122 2017 June
## 12010 Resort Hotel 1 304 2017 June
## 12011 Resort Hotel 1 304 2017 June
## 12012 Resort Hotel 1 304 2017 June
## 12013 Resort Hotel 1 304 2017 June
## 12014 Resort Hotel 1 304 2017 June
## 12015 Resort Hotel 1 20 2017 June
## 12016 Resort Hotel 1 6 2017 June
## 12017 Resort Hotel 1 288 2017 June
## 12018 Resort Hotel 1 197 2017 June
## 12019 Resort Hotel 1 307 2017 June
## 12020 Resort Hotel 1 8 2017 June
## 12021 Resort Hotel 1 0 2017 June
## 12022 Resort Hotel 1 39 2017 June
## 12023 Resort Hotel 1 101 2017 June
## 12024 Resort Hotel 1 40 2017 June
## 12025 Resort Hotel 1 65 2017 June
## 12026 Resort Hotel 1 104 2017 June
## 12027 Resort Hotel 1 17 2017 June
## 12028 Resort Hotel 1 23 2017 June
## 12029 Resort Hotel 1 98 2017 June
## 12030 Resort Hotel 1 76 2017 June
## 12031 Resort Hotel 1 37 2017 June
## 12032 Resort Hotel 1 143 2017 June
## 12033 Resort Hotel 1 95 2017 June
## 12034 Resort Hotel 1 179 2017 June
## 12035 Resort Hotel 1 179 2017 June
## 12036 Resort Hotel 1 234 2017 June
## 12037 Resort Hotel 1 150 2017 June
## 12038 Resort Hotel 1 66 2017 June
## 12039 Resort Hotel 1 6 2017 June
## 12040 Resort Hotel 1 6 2017 June
## 12041 Resort Hotel 1 37 2017 June
## 12042 Resort Hotel 1 37 2017 June
## 12043 Resort Hotel 1 21 2017 June
## 12044 Resort Hotel 1 128 2017 June
## 12045 Resort Hotel 1 155 2017 June
## 12046 Resort Hotel 1 193 2017 June
## 12047 Resort Hotel 1 131 2017 June
## 12048 Resort Hotel 1 330 2017 June
## 12049 Resort Hotel 1 257 2017 June
## 12050 Resort Hotel 1 58 2017 June
## 12051 Resort Hotel 1 332 2017 June
## 12052 Resort Hotel 1 118 2017 June
## 12053 Resort Hotel 1 314 2017 June
## 12054 Resort Hotel 1 306 2017 June
## 12055 Resort Hotel 1 306 2017 June
## 12056 Resort Hotel 1 0 2017 June
## 12057 Resort Hotel 1 278 2017 June
## 12058 Resort Hotel 1 20 2017 June
## 12059 Resort Hotel 1 29 2017 June
## 12060 Resort Hotel 1 27 2017 June
## 12061 Resort Hotel 1 29 2017 June
## 12062 Resort Hotel 1 83 2017 June
## 12063 Resort Hotel 1 108 2017 June
## 12064 Resort Hotel 1 27 2017 June
## 12065 Resort Hotel 1 231 2017 June
## 12066 Resort Hotel 1 131 2017 June
## 12067 Resort Hotel 1 184 2017 June
## 12068 Resort Hotel 1 184 2017 June
## 12069 Resort Hotel 1 135 2017 June
## 12070 Resort Hotel 1 125 2017 June
## 12071 Resort Hotel 1 141 2017 June
## 12072 Resort Hotel 1 117 2017 June
## 12073 Resort Hotel 1 167 2017 June
## 12074 Resort Hotel 1 114 2017 June
## 12075 Resort Hotel 1 192 2017 June
## 12076 Resort Hotel 1 114 2017 June
## 12077 Resort Hotel 1 140 2017 June
## 12078 Resort Hotel 1 41 2017 June
## 12079 Resort Hotel 1 6 2017 June
## 12080 Resort Hotel 1 319 2017 June
## 12081 Resort Hotel 1 13 2017 June
## 12082 Resort Hotel 1 70 2017 June
## 12083 Resort Hotel 1 237 2017 June
## 12084 Resort Hotel 1 19 2017 June
## 12085 Resort Hotel 1 120 2017 June
## 12086 Resort Hotel 1 230 2017 June
## 12087 Resort Hotel 1 201 2017 June
## 12088 Resort Hotel 1 52 2017 June
## 12089 Resort Hotel 1 210 2017 June
## 12090 Resort Hotel 1 230 2017 June
## 12091 Resort Hotel 1 94 2017 June
## 12092 Resort Hotel 1 271 2017 June
## 12093 Resort Hotel 1 298 2017 June
## 12094 Resort Hotel 1 230 2017 June
## 12095 Resort Hotel 1 216 2017 June
## 12096 Resort Hotel 1 162 2017 June
## 12097 Resort Hotel 1 12 2017 June
## 12098 Resort Hotel 1 133 2017 June
## 12099 Resort Hotel 1 138 2017 June
## 12100 Resort Hotel 1 140 2017 June
## 12101 Resort Hotel 1 140 2017 June
## 12102 Resort Hotel 1 135 2017 June
## 12103 Resort Hotel 1 130 2017 June
## 12104 Resort Hotel 1 113 2017 June
## 12105 Resort Hotel 1 247 2017 June
## 12106 Resort Hotel 1 247 2017 June
## 12107 Resort Hotel 1 50 2017 June
## 12108 Resort Hotel 1 30 2017 June
## 12109 Resort Hotel 1 135 2017 June
## 12110 Resort Hotel 1 30 2017 June
## 12111 Resort Hotel 1 175 2017 June
## 12112 Resort Hotel 1 141 2017 June
## 12113 Resort Hotel 1 97 2017 June
## 12114 Resort Hotel 1 288 2017 June
## 12115 Resort Hotel 1 155 2017 June
## 12116 Resort Hotel 1 97 2017 June
## 12117 Resort Hotel 1 288 2017 June
## 12118 Resort Hotel 1 134 2017 June
## 12119 Resort Hotel 1 134 2017 June
## 12120 Resort Hotel 1 120 2017 June
## 12121 Resort Hotel 1 97 2017 June
## 12122 Resort Hotel 1 146 2017 June
## 12123 Resort Hotel 1 86 2017 June
## 12124 Resort Hotel 1 150 2017 June
## 12125 Resort Hotel 1 118 2017 June
## 12126 Resort Hotel 1 218 2017 June
## 12127 Resort Hotel 1 345 2017 June
## 12128 Resort Hotel 1 292 2017 June
## 12129 Resort Hotel 1 13 2017 June
## 12130 Resort Hotel 1 219 2017 June
## 12131 Resort Hotel 1 219 2017 June
## 12132 Resort Hotel 1 219 2017 June
## 12133 Resort Hotel 1 219 2017 June
## 12134 Resort Hotel 1 130 2017 June
## 12135 Resort Hotel 1 131 2017 June
## 12136 Resort Hotel 1 103 2017 June
## 12137 Resort Hotel 1 106 2017 June
## 12138 Resort Hotel 1 54 2017 June
## 12139 Resort Hotel 1 132 2017 June
## 12140 Resort Hotel 1 219 2017 June
## 12141 Resort Hotel 1 219 2017 June
## 12142 Resort Hotel 1 219 2017 June
## 12143 Resort Hotel 1 219 2017 June
## 12144 Resort Hotel 1 219 2017 June
## 12145 Resort Hotel 1 151 2017 June
## 12146 Resort Hotel 1 219 2017 June
## 12147 Resort Hotel 1 123 2017 June
## 12148 Resort Hotel 1 125 2017 June
## 12149 Resort Hotel 1 223 2017 June
## 12150 Resort Hotel 1 206 2017 June
## 12151 Resort Hotel 1 223 2017 June
## 12152 Resort Hotel 1 249 2017 June
## 12153 Resort Hotel 1 249 2017 June
## 12154 Resort Hotel 1 223 2017 June
## 12155 Resort Hotel 1 295 2017 June
## 12156 Resort Hotel 1 86 2017 June
## 12157 Resort Hotel 1 8 2017 June
## 12158 Resort Hotel 1 20 2017 June
## 12159 Resort Hotel 1 0 2017 June
## 12160 Resort Hotel 1 253 2017 June
## 12161 Resort Hotel 1 269 2017 June
## 12162 Resort Hotel 1 158 2017 June
## 12163 Resort Hotel 1 343 2017 June
## 12164 Resort Hotel 1 30 2017 June
## 12165 Resort Hotel 1 30 2017 June
## 12166 Resort Hotel 1 30 2017 June
## 12167 Resort Hotel 1 110 2017 June
## 12168 Resort Hotel 1 33 2017 June
## 12169 Resort Hotel 1 36 2017 June
## 12170 Resort Hotel 1 255 2017 June
## 12171 Resort Hotel 1 254 2017 June
## 12172 Resort Hotel 1 60 2017 June
## 12173 Resort Hotel 1 55 2017 June
## 12174 Resort Hotel 1 254 2017 June
## 12175 Resort Hotel 1 250 2017 June
## 12176 Resort Hotel 1 247 2017 June
## 12177 Resort Hotel 1 248 2017 June
## 12178 Resort Hotel 1 55 2017 June
## 12179 Resort Hotel 1 60 2017 June
## 12180 Resort Hotel 1 107 2017 June
## 12181 Resort Hotel 1 308 2017 June
## 12182 Resort Hotel 1 310 2017 June
## 12183 Resort Hotel 1 308 2017 June
## 12184 Resort Hotel 1 310 2017 June
## 12185 Resort Hotel 1 94 2017 June
## 12186 Resort Hotel 1 368 2017 June
## 12187 Resort Hotel 1 368 2017 June
## 12188 Resort Hotel 1 5 2017 June
## 12189 Resort Hotel 1 139 2017 June
## 12190 Resort Hotel 1 145 2017 June
## 12191 Resort Hotel 1 155 2017 June
## 12192 Resort Hotel 1 250 2017 June
## 12193 Resort Hotel 1 215 2017 June
## 12194 Resort Hotel 1 250 2017 June
## 12195 Resort Hotel 1 77 2017 June
## 12196 Resort Hotel 1 141 2017 June
## 12197 Resort Hotel 1 112 2017 June
## 12198 Resort Hotel 1 331 2017 June
## 12199 Resort Hotel 1 307 2017 June
## 12200 Resort Hotel 1 321 2017 June
## 12201 Resort Hotel 1 251 2017 June
## 12202 Resort Hotel 1 277 2017 June
## 12203 Resort Hotel 1 250 2017 June
## 12204 Resort Hotel 1 326 2017 June
## 12205 Resort Hotel 1 326 2017 June
## 12206 Resort Hotel 1 28 2017 June
## 12207 Resort Hotel 1 11 2017 June
## 12208 Resort Hotel 1 28 2017 June
## 12209 Resort Hotel 1 50 2017 June
## 12210 Resort Hotel 1 147 2017 June
## 12211 Resort Hotel 1 131 2017 June
## 12212 Resort Hotel 1 165 2017 June
## 12213 Resort Hotel 1 131 2017 June
## 12214 Resort Hotel 1 115 2017 June
## 12215 Resort Hotel 1 143 2017 June
## 12216 Resort Hotel 1 116 2017 June
## 12217 Resort Hotel 1 26 2017 June
## 12218 Resort Hotel 1 135 2017 June
## 12219 Resort Hotel 1 45 2017 June
## 12220 Resort Hotel 1 217 2017 June
## 12221 Resort Hotel 1 129 2017 June
## 12222 Resort Hotel 1 244 2017 June
## 12223 Resort Hotel 1 312 2017 June
## 12224 Resort Hotel 1 101 2017 June
## 12225 Resort Hotel 1 57 2017 June
## 12226 Resort Hotel 1 193 2017 June
## 12227 Resort Hotel 1 263 2017 June
## 12228 Resort Hotel 1 57 2017 June
## 12229 Resort Hotel 1 282 2017 June
## 12230 Resort Hotel 1 160 2017 June
## 12231 Resort Hotel 1 269 2017 June
## 12232 Resort Hotel 1 340 2017 June
## 12233 Resort Hotel 1 285 2017 June
## 12234 Resort Hotel 1 39 2017 June
## 12235 Resort Hotel 1 108 2017 June
## 12236 Resort Hotel 1 298 2017 June
## 12237 Resort Hotel 1 101 2017 June
## 12238 Resort Hotel 1 114 2017 June
## 12239 Resort Hotel 1 98 2017 June
## 12240 Resort Hotel 1 135 2017 June
## 12241 Resort Hotel 1 148 2017 June
## 12242 Resort Hotel 1 294 2017 June
## 12243 Resort Hotel 1 210 2017 June
## 12244 Resort Hotel 1 132 2017 June
## 12245 Resort Hotel 1 237 2017 June
## 12246 Resort Hotel 1 34 2017 June
## 12247 Resort Hotel 1 166 2017 June
## 12248 Resort Hotel 1 330 2017 June
## 12249 Resort Hotel 1 125 2017 June
## 12250 Resort Hotel 1 330 2017 June
## 12251 Resort Hotel 1 313 2017 June
## 12252 Resort Hotel 1 15 2017 June
## 12253 Resort Hotel 1 57 2017 June
## 12254 Resort Hotel 1 126 2017 June
## 12255 Resort Hotel 1 87 2017 June
## 12256 Resort Hotel 1 321 2017 June
## 12257 Resort Hotel 1 258 2017 June
## 12258 Resort Hotel 1 78 2017 June
## 12259 Resort Hotel 1 326 2017 June
## 12260 Resort Hotel 1 285 2017 June
## 12261 Resort Hotel 1 289 2017 June
## 12262 Resort Hotel 1 213 2017 June
## 12263 Resort Hotel 1 320 2017 June
## 12264 Resort Hotel 1 153 2017 June
## 12265 Resort Hotel 1 94 2017 June
## 12266 Resort Hotel 1 261 2017 June
## 12267 Resort Hotel 1 43 2017 June
## 12268 Resort Hotel 1 17 2017 June
## 12269 Resort Hotel 1 18 2017 June
## 12270 Resort Hotel 1 18 2017 June
## 12271 Resort Hotel 1 17 2017 June
## 12272 Resort Hotel 1 253 2017 June
## 12273 Resort Hotel 1 329 2017 June
## 12274 Resort Hotel 1 324 2017 June
## 12275 Resort Hotel 1 336 2017 June
## 12276 Resort Hotel 1 129 2017 June
## 12277 Resort Hotel 1 28 2017 June
## 12278 Resort Hotel 1 107 2017 June
## 12279 Resort Hotel 1 150 2017 June
## 12280 Resort Hotel 1 105 2017 June
## 12281 Resort Hotel 1 170 2017 June
## 12282 Resort Hotel 1 44 2017 June
## 12283 Resort Hotel 1 153 2017 June
## 12284 Resort Hotel 1 154 2017 June
## 12285 Resort Hotel 1 22 2017 June
## 12286 Resort Hotel 1 188 2017 June
## 12287 Resort Hotel 1 154 2017 June
## 12288 Resort Hotel 1 244 2017 June
## 12289 Resort Hotel 1 244 2017 June
## 12290 Resort Hotel 1 153 2017 June
## 12291 Resort Hotel 1 188 2017 June
## 12292 Resort Hotel 1 332 2017 June
## 12293 Resort Hotel 1 279 2017 June
## 12294 Resort Hotel 1 240 2017 June
## 12295 Resort Hotel 1 240 2017 June
## 12296 Resort Hotel 1 336 2017 June
## 12297 Resort Hotel 1 10 2017 June
## 12298 Resort Hotel 1 95 2017 June
## 12299 Resort Hotel 1 37 2017 June
## 12300 Resort Hotel 1 227 2017 June
## 12301 Resort Hotel 1 28 2017 June
## 12302 Resort Hotel 1 11 2017 June
## 12303 Resort Hotel 1 55 2017 June
## 12304 Resort Hotel 1 45 2017 June
## 12305 Resort Hotel 1 205 2017 June
## 12306 Resort Hotel 1 280 2017 June
## 12307 Resort Hotel 1 280 2017 June
## 12308 Resort Hotel 1 42 2017 June
## 12309 Resort Hotel 1 49 2017 June
## 12310 Resort Hotel 1 326 2017 June
## 12311 Resort Hotel 1 129 2017 June
## 12312 Resort Hotel 1 326 2017 June
## 12313 Resort Hotel 1 123 2017 June
## 12314 Resort Hotel 1 259 2017 June
## 12315 Resort Hotel 1 80 2017 June
## 12316 Resort Hotel 1 331 2017 June
## 12317 Resort Hotel 1 317 2017 June
## 12318 Resort Hotel 1 317 2017 June
## 12319 Resort Hotel 1 209 2017 June
## 12320 Resort Hotel 1 119 2017 June
## 12321 Resort Hotel 1 325 2017 June
## 12322 Resort Hotel 1 305 2017 June
## 12323 Resort Hotel 1 119 2017 June
## 12324 Resort Hotel 1 86 2017 June
## 12325 Resort Hotel 1 331 2017 June
## 12326 Resort Hotel 1 274 2017 June
## 12327 Resort Hotel 1 273 2017 June
## 12328 Resort Hotel 1 288 2017 June
## 12329 Resort Hotel 1 176 2017 June
## 12330 Resort Hotel 1 273 2017 June
## 12331 Resort Hotel 1 275 2017 June
## 12332 Resort Hotel 1 241 2017 June
## 12333 Resort Hotel 1 253 2017 June
## 12334 Resort Hotel 1 296 2017 June
## 12335 Resort Hotel 1 243 2017 June
## 12336 Resort Hotel 1 278 2017 June
## 12337 Resort Hotel 1 5 2017 June
## 12338 Resort Hotel 1 27 2017 June
## 12339 Resort Hotel 1 27 2017 June
## 12340 Resort Hotel 1 103 2017 June
## 12341 Resort Hotel 1 109 2017 June
## 12342 Resort Hotel 1 128 2017 June
## 12343 Resort Hotel 1 47 2017 June
## 12344 Resort Hotel 1 171 2017 June
## 12345 Resort Hotel 1 253 2017 June
## 12346 Resort Hotel 1 238 2017 June
## 12347 Resort Hotel 1 113 2017 June
## 12348 Resort Hotel 1 47 2017 June
## 12349 Resort Hotel 1 159 2017 June
## 12350 Resort Hotel 1 163 2017 June
## 12351 Resort Hotel 1 311 2017 June
## 12352 Resort Hotel 1 172 2017 June
## 12353 Resort Hotel 1 97 2017 June
## 12354 Resort Hotel 1 342 2017 June
## 12355 Resort Hotel 1 47 2017 June
## 12356 Resort Hotel 1 311 2017 June
## 12357 Resort Hotel 1 263 2017 June
## 12358 Resort Hotel 1 330 2017 June
## 12359 Resort Hotel 1 342 2017 June
## 12360 Resort Hotel 1 311 2017 June
## 12361 Resort Hotel 1 47 2017 June
## 12362 Resort Hotel 1 251 2017 June
## 12363 Resort Hotel 1 159 2017 June
## 12364 Resort Hotel 1 311 2017 June
## 12365 Resort Hotel 1 311 2017 June
## 12366 Resort Hotel 1 47 2017 June
## 12367 Resort Hotel 1 336 2017 June
## 12368 Resort Hotel 1 47 2017 June
## 12369 Resort Hotel 1 47 2017 June
## 12370 Resort Hotel 1 270 2017 June
## 12371 Resort Hotel 1 98 2017 June
## 12372 Resort Hotel 1 50 2017 June
## 12373 Resort Hotel 1 227 2017 June
## 12374 Resort Hotel 1 50 2017 June
## 12375 Resort Hotel 1 312 2017 June
## 12376 Resort Hotel 1 169 2017 June
## 12377 Resort Hotel 1 48 2017 June
## 12378 Resort Hotel 1 116 2017 June
## 12379 Resort Hotel 1 106 2017 June
## 12380 Resort Hotel 1 250 2017 June
## 12381 Resort Hotel 1 48 2017 June
## 12382 Resort Hotel 1 119 2017 June
## 12383 Resort Hotel 1 178 2017 June
## 12384 Resort Hotel 1 250 2017 June
## 12385 Resort Hotel 1 313 2017 June
## 12386 Resort Hotel 1 165 2017 June
## 12387 Resort Hotel 1 309 2017 June
## 12388 Resort Hotel 1 170 2017 June
## 12389 Resort Hotel 1 165 2017 June
## 12390 Resort Hotel 1 262 2017 June
## 12391 Resort Hotel 1 319 2017 June
## 12392 Resort Hotel 1 319 2017 June
## 12393 Resort Hotel 1 48 2017 June
## 12394 Resort Hotel 1 296 2017 June
## 12395 Resort Hotel 1 274 2017 June
## 12396 Resort Hotel 1 127 2017 June
## 12397 Resort Hotel 1 336 2017 June
## 12398 Resort Hotel 1 48 2017 June
## 12399 Resort Hotel 1 188 2017 June
## 12400 Resort Hotel 1 2 2017 June
## 12401 Resort Hotel 1 2 2017 June
## 12402 Resort Hotel 1 130 2017 June
## 12403 Resort Hotel 1 183 2017 June
## 12404 Resort Hotel 1 104 2017 June
## 12405 Resort Hotel 1 167 2017 June
## 12406 Resort Hotel 1 145 2017 June
## 12407 Resort Hotel 1 179 2017 June
## 12408 Resort Hotel 1 309 2017 June
## 12409 Resort Hotel 1 310 2017 June
## 12410 Resort Hotel 1 218 2017 June
## 12411 Resort Hotel 1 310 2017 June
## 12412 Resort Hotel 1 122 2017 June
## 12413 Resort Hotel 1 118 2017 June
## 12414 Resort Hotel 1 0 2017 June
## 12415 Resort Hotel 1 267 2017 June
## 12416 Resort Hotel 1 139 2017 June
## 12417 Resort Hotel 1 160 2017 June
## 12418 Resort Hotel 1 50 2017 June
## 12419 Resort Hotel 1 219 2017 June
## 12420 Resort Hotel 1 339 2017 June
## 12421 Resort Hotel 1 154 2017 June
## 12422 Resort Hotel 1 178 2017 June
## 12423 Resort Hotel 1 282 2017 June
## 12424 Resort Hotel 1 22 2017 June
## 12425 Resort Hotel 1 114 2017 June
## 12426 Resort Hotel 1 333 2017 June
## 12427 Resort Hotel 1 213 2017 June
## 12428 Resort Hotel 1 196 2017 June
## 12429 Resort Hotel 1 201 2017 June
## 12430 Resort Hotel 1 201 2017 June
## 12431 Resort Hotel 1 137 2017 June
## 12432 Resort Hotel 1 319 2017 June
## 12433 Resort Hotel 1 317 2017 June
## 12434 Resort Hotel 1 51 2017 June
## 12435 Resort Hotel 1 263 2017 June
## 12436 Resort Hotel 1 263 2017 June
## 12437 Resort Hotel 1 248 2017 June
## 12438 Resort Hotel 1 17 2017 June
## 12439 Resort Hotel 1 21 2017 June
## 12440 Resort Hotel 1 17 2017 June
## 12441 Resort Hotel 1 106 2017 June
## 12442 Resort Hotel 1 17 2017 June
## 12443 Resort Hotel 1 0 2017 June
## 12444 Resort Hotel 1 60 2017 June
## 12445 Resort Hotel 1 151 2017 June
## 12446 Resort Hotel 1 109 2017 June
## 12447 Resort Hotel 1 248 2017 June
## 12448 Resort Hotel 1 175 2017 June
## 12449 Resort Hotel 1 51 2017 June
## 12450 Resort Hotel 1 51 2017 June
## 12451 Resort Hotel 1 51 2017 June
## 12452 Resort Hotel 1 264 2017 June
## 12453 Resort Hotel 1 202 2017 June
## 12454 Resort Hotel 1 264 2017 June
## 12455 Resort Hotel 1 162 2017 June
## 12456 Resort Hotel 1 215 2017 June
## 12457 Resort Hotel 1 353 2017 June
## 12458 Resort Hotel 1 204 2017 June
## 12459 Resort Hotel 1 51 2017 June
## 12460 Resort Hotel 1 130 2017 July
## 12461 Resort Hotel 1 130 2017 July
## 12462 Resort Hotel 1 303 2017 July
## 12463 Resort Hotel 1 59 2017 July
## 12464 Resort Hotel 1 303 2017 July
## 12465 Resort Hotel 1 130 2017 July
## 12466 Resort Hotel 1 130 2017 July
## 12467 Resort Hotel 1 110 2017 July
## 12468 Resort Hotel 1 224 2017 July
## 12469 Resort Hotel 1 110 2017 July
## 12470 Resort Hotel 1 127 2017 July
## 12471 Resort Hotel 1 146 2017 July
## 12472 Resort Hotel 1 145 2017 July
## 12473 Resort Hotel 1 218 2017 July
## 12474 Resort Hotel 1 305 2017 July
## 12475 Resort Hotel 1 198 2017 July
## 12476 Resort Hotel 1 197 2017 July
## 12477 Resort Hotel 1 305 2017 July
## 12478 Resort Hotel 1 145 2017 July
## 12479 Resort Hotel 1 146 2017 July
## 12480 Resort Hotel 1 305 2017 July
## 12481 Resort Hotel 1 164 2017 July
## 12482 Resort Hotel 1 259 2017 July
## 12483 Resort Hotel 1 59 2017 July
## 12484 Resort Hotel 1 334 2017 July
## 12485 Resort Hotel 1 155 2017 July
## 12486 Resort Hotel 1 117 2017 July
## 12487 Resort Hotel 1 209 2017 July
## 12488 Resort Hotel 1 334 2017 July
## 12489 Resort Hotel 1 243 2017 July
## 12490 Resort Hotel 1 303 2017 July
## 12491 Resort Hotel 1 184 2017 July
## 12492 Resort Hotel 1 52 2017 July
## 12493 Resort Hotel 1 141 2017 July
## 12494 Resort Hotel 1 325 2017 July
## 12495 Resort Hotel 1 306 2017 July
## 12496 Resort Hotel 1 248 2017 July
## 12497 Resort Hotel 1 183 2017 July
## 12498 Resort Hotel 1 110 2017 July
## 12499 Resort Hotel 1 109 2017 July
## 12500 Resort Hotel 1 171 2017 July
## 12501 Resort Hotel 1 104 2017 July
## 12502 Resort Hotel 1 146 2017 July
## 12503 Resort Hotel 1 159 2017 July
## 12504 Resort Hotel 1 95 2017 July
## 12505 Resort Hotel 1 143 2017 July
## 12506 Resort Hotel 1 100 2017 July
## 12507 Resort Hotel 1 110 2017 July
## 12508 Resort Hotel 1 219 2017 July
## 12509 Resort Hotel 1 268 2017 July
## 12510 Resort Hotel 1 177 2017 July
## 12511 Resort Hotel 1 259 2017 July
## 12512 Resort Hotel 1 280 2017 July
## 12513 Resort Hotel 1 57 2017 July
## 12514 Resort Hotel 1 174 2017 July
## 12515 Resort Hotel 1 188 2017 July
## 12516 Resort Hotel 1 320 2017 July
## 12517 Resort Hotel 1 275 2017 July
## 12518 Resort Hotel 1 179 2017 July
## 12519 Resort Hotel 1 53 2017 July
## 12520 Resort Hotel 1 53 2017 July
## 12521 Resort Hotel 1 133 2017 July
## 12522 Resort Hotel 1 102 2017 July
## 12523 Resort Hotel 1 159 2017 July
## 12524 Resort Hotel 1 103 2017 July
## 12525 Resort Hotel 1 144 2017 July
## 12526 Resort Hotel 1 178 2017 July
## 12527 Resort Hotel 1 146 2017 July
## 12528 Resort Hotel 1 150 2017 July
## 12529 Resort Hotel 1 157 2017 July
## 12530 Resort Hotel 1 171 2017 July
## 12531 Resort Hotel 1 190 2017 July
## 12532 Resort Hotel 1 169 2017 July
## 12533 Resort Hotel 1 262 2017 July
## 12534 Resort Hotel 1 280 2017 July
## 12535 Resort Hotel 1 54 2017 July
## 12536 Resort Hotel 1 186 2017 July
## 12537 Resort Hotel 1 251 2017 July
## 12538 Resort Hotel 1 262 2017 July
## 12539 Resort Hotel 1 177 2017 July
## 12540 Resort Hotel 1 171 2017 July
## 12541 Resort Hotel 1 150 2017 July
## 12542 Resort Hotel 1 280 2017 July
## 12543 Resort Hotel 1 300 2017 July
## 12544 Resort Hotel 1 47 2017 July
## 12545 Resort Hotel 1 317 2017 July
## 12546 Resort Hotel 1 347 2017 July
## 12547 Resort Hotel 1 268 2017 July
## 12548 Resort Hotel 1 277 2017 July
## 12549 Resort Hotel 1 347 2017 July
## 12550 Resort Hotel 1 269 2017 July
## 12551 Resort Hotel 1 6 2017 July
## 12552 Resort Hotel 1 320 2017 July
## 12553 Resort Hotel 1 153 2017 July
## 12554 Resort Hotel 1 237 2017 July
## 12555 Resort Hotel 1 324 2017 July
## 12556 Resort Hotel 1 315 2017 July
## 12557 Resort Hotel 1 131 2017 July
## 12558 Resort Hotel 1 55 2017 July
## 12559 Resort Hotel 1 271 2017 July
## 12560 Resort Hotel 1 324 2017 July
## 12561 Resort Hotel 1 236 2017 July
## 12562 Resort Hotel 1 271 2017 July
## 12563 Resort Hotel 1 217 2017 July
## 12564 Resort Hotel 1 269 2017 July
## 12565 Resort Hotel 1 270 2017 July
## 12566 Resort Hotel 1 55 2017 July
## 12567 Resort Hotel 1 55 2017 July
## 12568 Resort Hotel 1 55 2017 July
## 12569 Resort Hotel 1 335 2017 July
## 12570 Resort Hotel 1 8 2017 July
## 12571 Resort Hotel 1 8 2017 July
## 12572 Resort Hotel 1 8 2017 July
## 12573 Resort Hotel 1 345 2017 July
## 12574 Resort Hotel 1 164 2017 July
## 12575 Resort Hotel 1 14 2017 July
## 12576 Resort Hotel 1 168 2017 July
## 12577 Resort Hotel 1 14 2017 July
## 12578 Resort Hotel 1 334 2017 July
## 12579 Resort Hotel 1 352 2017 July
## 12580 Resort Hotel 1 251 2017 July
## 12581 Resort Hotel 1 158 2017 July
## 12582 Resort Hotel 1 183 2017 July
## 12583 Resort Hotel 1 168 2017 July
## 12584 Resort Hotel 1 65 2017 July
## 12585 Resort Hotel 1 338 2017 July
## 12586 Resort Hotel 1 168 2017 July
## 12587 Resort Hotel 1 171 2017 July
## 12588 Resort Hotel 1 57 2017 July
## 12589 Resort Hotel 1 130 2017 July
## 12590 Resort Hotel 1 86 2017 July
## 12591 Resort Hotel 1 210 2017 July
## 12592 Resort Hotel 1 210 2017 July
## 12593 Resort Hotel 1 210 2017 July
## 12594 Resort Hotel 1 210 2017 July
## 12595 Resort Hotel 1 326 2017 July
## 12596 Resort Hotel 1 339 2017 July
## 12597 Resort Hotel 1 335 2017 July
## 12598 Resort Hotel 1 140 2017 July
## 12599 Resort Hotel 1 288 2017 July
## 12600 Resort Hotel 1 150 2017 July
## 12601 Resort Hotel 1 113 2017 July
## 12602 Resort Hotel 1 11 2017 July
## 12603 Resort Hotel 1 58 2017 July
## 12604 Resort Hotel 1 58 2017 July
## 12605 Resort Hotel 1 179 2017 July
## 12606 Resort Hotel 1 184 2017 July
## 12607 Resort Hotel 1 58 2017 July
## 12608 Resort Hotel 1 227 2017 July
## 12609 Resort Hotel 1 227 2017 July
## 12610 Resort Hotel 1 51 2017 July
## 12611 Resort Hotel 1 313 2017 July
## 12612 Resort Hotel 1 58 2017 July
## 12613 Resort Hotel 1 19 2017 July
## 12614 Resort Hotel 1 9 2017 July
## 12615 Resort Hotel 1 3 2017 July
## 12616 Resort Hotel 1 135 2017 July
## 12617 Resort Hotel 1 135 2017 July
## 12618 Resort Hotel 1 186 2017 July
## 12619 Resort Hotel 1 152 2017 July
## 12620 Resort Hotel 1 209 2017 July
## 12621 Resort Hotel 1 264 2017 July
## 12622 Resort Hotel 1 150 2017 July
## 12623 Resort Hotel 1 59 2017 July
## 12624 Resort Hotel 1 109 2017 July
## 12625 Resort Hotel 1 162 2017 July
## 12626 Resort Hotel 1 162 2017 July
## 12627 Resort Hotel 1 192 2017 July
## 12628 Resort Hotel 1 154 2017 July
## 12629 Resort Hotel 1 8 2017 July
## 12630 Resort Hotel 1 256 2017 July
## 12631 Resort Hotel 1 154 2017 July
## 12632 Resort Hotel 1 61 2017 July
## 12633 Resort Hotel 1 258 2017 July
## 12634 Resort Hotel 1 33 2017 July
## 12635 Resort Hotel 1 151 2017 July
## 12636 Resort Hotel 1 349 2017 July
## 12637 Resort Hotel 1 157 2017 July
## 12638 Resort Hotel 1 216 2017 July
## 12639 Resort Hotel 1 60 2017 July
## 12640 Resort Hotel 1 60 2017 July
## 12641 Resort Hotel 1 315 2017 July
## 12642 Resort Hotel 1 190 2017 July
## 12643 Resort Hotel 1 4 2017 July
## 12644 Resort Hotel 1 10 2017 July
## 12645 Resort Hotel 1 10 2017 July
## 12646 Resort Hotel 1 112 2017 July
## 12647 Resort Hotel 1 117 2017 July
## 12648 Resort Hotel 1 149 2017 July
## 12649 Resort Hotel 1 9 2017 July
## 12650 Resort Hotel 1 148 2017 July
## 12651 Resort Hotel 1 217 2017 July
## 12652 Resort Hotel 1 125 2017 July
## 12653 Resort Hotel 1 156 2017 July
## 12654 Resort Hotel 1 76 2017 July
## 12655 Resort Hotel 1 76 2017 July
## 12656 Resort Hotel 1 289 2017 July
## 12657 Resort Hotel 1 163 2017 July
## 12658 Resort Hotel 1 140 2017 July
## 12659 Resort Hotel 1 114 2017 July
## 12660 Resort Hotel 1 48 2017 July
## 12661 Resort Hotel 1 153 2017 July
## 12662 Resort Hotel 1 153 2017 July
## 12663 Resort Hotel 1 137 2017 July
## 12664 Resort Hotel 1 5 2017 July
## 12665 Resort Hotel 1 1 2017 July
## 12666 Resort Hotel 1 3 2017 July
## 12667 Resort Hotel 1 21 2017 July
## 12668 Resort Hotel 1 95 2017 July
## 12669 Resort Hotel 1 47 2017 July
## 12670 Resort Hotel 1 47 2017 July
## 12671 Resort Hotel 1 47 2017 July
## 12672 Resort Hotel 1 48 2017 July
## 12673 Resort Hotel 1 47 2017 July
## 12674 Resort Hotel 1 73 2017 July
## 12675 Resort Hotel 1 151 2017 July
## 12676 Resort Hotel 1 24 2017 July
## 12677 Resort Hotel 1 23 2017 July
## 12678 Resort Hotel 1 110 2017 July
## 12679 Resort Hotel 1 110 2017 July
## 12680 Resort Hotel 1 110 2017 July
## 12681 Resort Hotel 1 62 2017 July
## 12682 Resort Hotel 1 151 2017 July
## 12683 Resort Hotel 1 62 2017 July
## 12684 Resort Hotel 1 234 2017 July
## 12685 Resort Hotel 1 346 2017 July
## 12686 Resort Hotel 1 87 2017 July
## 12687 Resort Hotel 1 5 2017 July
## 12688 Resort Hotel 1 32 2017 July
## 12689 Resort Hotel 1 21 2017 July
## 12690 Resort Hotel 1 82 2017 July
## 12691 Resort Hotel 1 20 2017 July
## 12692 Resort Hotel 1 16 2017 July
## 12693 Resort Hotel 1 72 2017 July
## 12694 Resort Hotel 1 33 2017 July
## 12695 Resort Hotel 1 89 2017 July
## 12696 Resort Hotel 1 20 2017 July
## 12697 Resort Hotel 1 27 2017 July
## 12698 Resort Hotel 1 38 2017 July
## 12699 Resort Hotel 1 29 2017 July
## 12700 Resort Hotel 1 134 2017 July
## 12701 Resort Hotel 1 20 2017 July
## 12702 Resort Hotel 1 77 2017 July
## 12703 Resort Hotel 1 51 2017 July
## 12704 Resort Hotel 1 128 2017 July
## 12705 Resort Hotel 1 0 2017 July
## 12706 Resort Hotel 1 17 2017 July
## 12707 Resort Hotel 1 31 2017 July
## 12708 Resort Hotel 1 31 2017 July
## 12709 Resort Hotel 1 27 2017 July
## 12710 Resort Hotel 1 184 2017 July
## 12711 Resort Hotel 1 145 2017 July
## 12712 Resort Hotel 1 145 2017 July
## 12713 Resort Hotel 1 74 2017 July
## 12714 Resort Hotel 1 201 2017 July
## 12715 Resort Hotel 1 154 2017 July
## 12716 Resort Hotel 1 281 2017 July
## 12717 Resort Hotel 1 161 2017 July
## 12718 Resort Hotel 1 31 2017 July
## 12719 Resort Hotel 1 36 2017 July
## 12720 Resort Hotel 1 95 2017 July
## 12721 Resort Hotel 1 135 2017 July
## 12722 Resort Hotel 1 35 2017 July
## 12723 Resort Hotel 1 35 2017 July
## 12724 Resort Hotel 1 67 2017 July
## 12725 Resort Hotel 1 66 2017 July
## 12726 Resort Hotel 1 148 2017 July
## 12727 Resort Hotel 1 169 2017 July
## 12728 Resort Hotel 1 172 2017 July
## 12729 Resort Hotel 1 21 2017 July
## 12730 Resort Hotel 1 172 2017 July
## 12731 Resort Hotel 1 169 2017 July
## 12732 Resort Hotel 1 123 2017 July
## 12733 Resort Hotel 1 70 2017 July
## 12734 Resort Hotel 1 242 2017 July
## 12735 Resort Hotel 1 212 2017 July
## 12736 Resort Hotel 1 283 2017 July
## 12737 Resort Hotel 1 0 2017 July
## 12738 Resort Hotel 1 0 2017 July
## 12739 Resort Hotel 1 24 2017 July
## 12740 Resort Hotel 1 59 2017 July
## 12741 Resort Hotel 1 0 2017 July
## 12742 Resort Hotel 1 0 2017 July
## 12743 Resort Hotel 1 183 2017 July
## 12744 Resort Hotel 1 55 2017 July
## 12745 Resort Hotel 1 55 2017 July
## 12746 Resort Hotel 1 253 2017 July
## 12747 Resort Hotel 1 122 2017 July
## 12748 Resort Hotel 1 126 2017 July
## 12749 Resort Hotel 1 109 2017 July
## 12750 Resort Hotel 1 125 2017 July
## 12751 Resort Hotel 1 158 2017 July
## 12752 Resort Hotel 1 125 2017 July
## 12753 Resort Hotel 1 126 2017 July
## 12754 Resort Hotel 1 109 2017 July
## 12755 Resort Hotel 1 123 2017 July
## 12756 Resort Hotel 1 126 2017 July
## 12757 Resort Hotel 1 126 2017 July
## 12758 Resort Hotel 1 125 2017 July
## 12759 Resort Hotel 1 167 2017 July
## 12760 Resort Hotel 1 17 2017 July
## 12761 Resort Hotel 1 113 2017 July
## 12762 Resort Hotel 1 354 2017 July
## 12763 Resort Hotel 1 185 2017 July
## 12764 Resort Hotel 1 192 2017 July
## 12765 Resort Hotel 1 51 2017 July
## 12766 Resort Hotel 1 137 2017 July
## 12767 Resort Hotel 1 25 2017 July
## 12768 Resort Hotel 1 213 2017 July
## 12769 Resort Hotel 1 145 2017 July
## 12770 Resort Hotel 1 213 2017 July
## 12771 Resort Hotel 1 157 2017 July
## 12772 Resort Hotel 1 156 2017 July
## 12773 Resort Hotel 1 333 2017 July
## 12774 Resort Hotel 1 128 2017 July
## 12775 Resort Hotel 1 175 2017 July
## 12776 Resort Hotel 1 180 2017 July
## 12777 Resort Hotel 1 188 2017 July
## 12778 Resort Hotel 1 181 2017 July
## 12779 Resort Hotel 1 188 2017 July
## 12780 Resort Hotel 1 170 2017 July
## 12781 Resort Hotel 1 188 2017 July
## 12782 Resort Hotel 1 340 2017 July
## 12783 Resort Hotel 1 340 2017 July
## 12784 Resort Hotel 1 158 2017 July
## 12785 Resort Hotel 1 184 2017 July
## 12786 Resort Hotel 1 25 2017 July
## 12787 Resort Hotel 1 21 2017 July
## 12788 Resort Hotel 1 103 2017 July
## 12789 Resort Hotel 1 190 2017 July
## 12790 Resort Hotel 1 27 2017 July
## 12791 Resort Hotel 1 103 2017 July
## 12792 Resort Hotel 1 118 2017 July
## 12793 Resort Hotel 1 209 2017 July
## 12794 Resort Hotel 1 64 2017 July
## 12795 Resort Hotel 1 252 2017 July
## 12796 Resort Hotel 1 182 2017 July
## 12797 Resort Hotel 1 323 2017 July
## 12798 Resort Hotel 1 2 2017 July
## 12799 Resort Hotel 1 140 2017 July
## 12800 Resort Hotel 1 42 2017 July
## 12801 Resort Hotel 1 190 2017 July
## 12802 Resort Hotel 1 322 2017 July
## 12803 Resort Hotel 1 133 2017 July
## 12804 Resort Hotel 1 133 2017 July
## 12805 Resort Hotel 1 221 2017 July
## 12806 Resort Hotel 1 390 2017 July
## 12807 Resort Hotel 1 141 2017 July
## 12808 Resort Hotel 1 332 2017 July
## 12809 Resort Hotel 1 211 2017 July
## 12810 Resort Hotel 1 195 2017 July
## 12811 Resort Hotel 1 159 2017 July
## 12812 Resort Hotel 1 211 2017 July
## 12813 Resort Hotel 1 194 2017 July
## 12814 Resort Hotel 1 55 2017 July
## 12815 Resort Hotel 1 268 2017 July
## 12816 Resort Hotel 1 240 2017 July
## 12817 Resort Hotel 1 236 2017 July
## 12818 Resort Hotel 1 253 2017 July
## 12819 Resort Hotel 1 0 2017 July
## 12820 Resort Hotel 1 7 2017 July
## 12821 Resort Hotel 1 163 2017 July
## 12822 Resort Hotel 1 1 2017 July
## 12823 Resort Hotel 1 163 2017 July
## 12824 Resort Hotel 1 227 2017 July
## 12825 Resort Hotel 1 227 2017 July
## 12826 Resort Hotel 1 78 2017 July
## 12827 Resort Hotel 1 165 2017 July
## 12828 Resort Hotel 1 39 2017 July
## 12829 Resort Hotel 1 158 2017 July
## 12830 Resort Hotel 1 43 2017 July
## 12831 Resort Hotel 1 67 2017 July
## 12832 Resort Hotel 1 128 2017 July
## 12833 Resort Hotel 1 299 2017 July
## 12834 Resort Hotel 1 299 2017 July
## 12835 Resort Hotel 1 108 2017 July
## 12836 Resort Hotel 1 108 2017 July
## 12837 Resort Hotel 1 211 2017 July
## 12838 Resort Hotel 1 197 2017 July
## 12839 Resort Hotel 1 143 2017 July
## 12840 Resort Hotel 1 327 2017 July
## 12841 Resort Hotel 1 247 2017 July
## 12842 Resort Hotel 1 72 2017 July
## 12843 Resort Hotel 1 187 2017 July
## 12844 Resort Hotel 1 187 2017 July
## 12845 Resort Hotel 1 20 2017 July
## 12846 Resort Hotel 1 176 2017 July
## 12847 Resort Hotel 1 2 2017 July
## 12848 Resort Hotel 1 144 2017 July
## 12849 Resort Hotel 1 171 2017 July
## 12850 Resort Hotel 1 21 2017 July
## 12851 Resort Hotel 1 123 2017 July
## 12852 Resort Hotel 1 5 2017 July
## 12853 Resort Hotel 1 160 2017 July
## 12854 Resort Hotel 1 64 2017 July
## 12855 Resort Hotel 1 168 2017 July
## 12856 Resort Hotel 1 41 2017 July
## 12857 Resort Hotel 1 193 2017 July
## 12858 Resort Hotel 1 172 2017 July
## 12859 Resort Hotel 1 328 2017 July
## 12860 Resort Hotel 1 202 2017 July
## 12861 Resort Hotel 1 2 2017 July
## 12862 Resort Hotel 1 2 2017 July
## 12863 Resort Hotel 1 2 2017 July
## 12864 Resort Hotel 1 19 2017 July
## 12865 Resort Hotel 1 147 2017 July
## 12866 Resort Hotel 1 347 2017 July
## 12867 Resort Hotel 1 178 2017 July
## 12868 Resort Hotel 1 101 2017 July
## 12869 Resort Hotel 1 73 2017 July
## 12870 Resort Hotel 1 268 2017 July
## 12871 Resort Hotel 1 116 2017 July
## 12872 Resort Hotel 1 109 2017 July
## 12873 Resort Hotel 1 108 2017 July
## 12874 Resort Hotel 1 91 2017 July
## 12875 Resort Hotel 1 200 2017 July
## 12876 Resort Hotel 1 192 2017 July
## 12877 Resort Hotel 1 372 2017 July
## 12878 Resort Hotel 1 127 2017 July
## 12879 Resort Hotel 1 82 2017 July
## 12880 Resort Hotel 1 28 2017 July
## 12881 Resort Hotel 1 194 2017 July
## 12882 Resort Hotel 1 82 2017 July
## 12883 Resort Hotel 1 28 2017 July
## 12884 Resort Hotel 1 186 2017 July
## 12885 Resort Hotel 1 180 2017 July
## 12886 Resort Hotel 1 312 2017 July
## 12887 Resort Hotel 1 151 2017 July
## 12888 Resort Hotel 1 151 2017 July
## 12889 Resort Hotel 1 198 2017 July
## 12890 Resort Hotel 1 159 2017 July
## 12891 Resort Hotel 1 159 2017 July
## 12892 Resort Hotel 1 122 2017 July
## 12893 Resort Hotel 1 312 2017 July
## 12894 Resort Hotel 1 180 2017 July
## 12895 Resort Hotel 1 151 2017 July
## 12896 Resort Hotel 1 159 2017 July
## 12897 Resort Hotel 1 151 2017 July
## 12898 Resort Hotel 1 270 2017 July
## 12899 Resort Hotel 1 159 2017 July
## 12900 Resort Hotel 1 159 2017 July
## 12901 Resort Hotel 1 151 2017 July
## 12902 Resort Hotel 1 134 2017 July
## 12903 Resort Hotel 1 180 2017 July
## 12904 Resort Hotel 1 312 2017 July
## 12905 Resort Hotel 1 159 2017 July
## 12906 Resort Hotel 1 66 2017 July
## 12907 Resort Hotel 1 26 2017 July
## 12908 Resort Hotel 1 139 2017 July
## 12909 Resort Hotel 1 84 2017 July
## 12910 Resort Hotel 1 174 2017 July
## 12911 Resort Hotel 1 174 2017 July
## 12912 Resort Hotel 1 163 2017 July
## 12913 Resort Hotel 1 352 2017 July
## 12914 Resort Hotel 1 44 2017 July
## 12915 Resort Hotel 1 45 2017 July
## 12916 Resort Hotel 1 40 2017 July
## 12917 Resort Hotel 1 170 2017 July
## 12918 Resort Hotel 1 165 2017 July
## 12919 Resort Hotel 1 13 2017 July
## 12920 Resort Hotel 1 67 2017 July
## 12921 Resort Hotel 1 195 2017 July
## 12922 Resort Hotel 1 175 2017 July
## 12923 Resort Hotel 1 192 2017 July
## 12924 Resort Hotel 1 175 2017 July
## 12925 Resort Hotel 1 84 2017 July
## 12926 Resort Hotel 1 70 2017 July
## 12927 Resort Hotel 1 154 2017 July
## 12928 Resort Hotel 1 84 2017 July
## 12929 Resort Hotel 1 251 2017 July
## 12930 Resort Hotel 1 200 2017 July
## 12931 Resort Hotel 1 1 2017 July
## 12932 Resort Hotel 1 27 2017 July
## 12933 Resort Hotel 1 153 2017 July
## 12934 Resort Hotel 1 134 2017 July
## 12935 Resort Hotel 1 32 2017 July
## 12936 Resort Hotel 1 158 2017 July
## 12937 Resort Hotel 1 181 2017 July
## 12938 Resort Hotel 1 24 2017 July
## 12939 Resort Hotel 1 207 2017 July
## 12940 Resort Hotel 1 85 2017 July
## 12941 Resort Hotel 1 95 2017 July
## 12942 Resort Hotel 1 88 2017 July
## 12943 Resort Hotel 1 12 2017 July
## 12944 Resort Hotel 1 181 2017 July
## 12945 Resort Hotel 1 181 2017 July
## 12946 Resort Hotel 1 132 2017 July
## 12947 Resort Hotel 1 187 2017 July
## 12948 Resort Hotel 1 132 2017 July
## 12949 Resort Hotel 1 89 2017 July
## 12950 Resort Hotel 1 189 2017 July
## 12951 Resort Hotel 1 347 2017 July
## 12952 Resort Hotel 1 196 2017 July
## 12953 Resort Hotel 1 189 2017 July
## 12954 Resort Hotel 1 272 2017 July
## 12955 Resort Hotel 1 196 2017 July
## 12956 Resort Hotel 1 193 2017 July
## 12957 Resort Hotel 1 184 2017 July
## 12958 Resort Hotel 1 190 2017 July
## 12959 Resort Hotel 1 73 2017 July
## 12960 Resort Hotel 1 129 2017 July
## 12961 Resort Hotel 1 129 2017 July
## 12962 Resort Hotel 1 129 2017 July
## 12963 Resort Hotel 1 154 2017 July
## 12964 Resort Hotel 1 8 2017 July
## 12965 Resort Hotel 1 169 2017 July
## 12966 Resort Hotel 1 117 2017 July
## 12967 Resort Hotel 1 289 2017 July
## 12968 Resort Hotel 1 289 2017 July
## 12969 Resort Hotel 1 117 2017 July
## 12970 Resort Hotel 1 46 2017 July
## 12971 Resort Hotel 1 15 2017 July
## 12972 Resort Hotel 1 173 2017 July
## 12973 Resort Hotel 1 197 2017 July
## 12974 Resort Hotel 1 120 2017 July
## 12975 Resort Hotel 1 36 2017 July
## 12976 Resort Hotel 1 173 2017 July
## 12977 Resort Hotel 1 74 2017 July
## 12978 Resort Hotel 1 165 2017 July
## 12979 Resort Hotel 1 35 2017 July
## 12980 Resort Hotel 1 141 2017 July
## 12981 Resort Hotel 1 166 2017 July
## 12982 Resort Hotel 1 23 2017 July
## 12983 Resort Hotel 1 174 2017 July
## 12984 Resort Hotel 1 23 2017 July
## 12985 Resort Hotel 1 335 2017 July
## 12986 Resort Hotel 1 17 2017 July
## 12987 Resort Hotel 1 25 2017 July
## 12988 Resort Hotel 1 42 2017 July
## 12989 Resort Hotel 1 93 2017 July
## 12990 Resort Hotel 1 148 2017 July
## 12991 Resort Hotel 1 20 2017 July
## 12992 Resort Hotel 1 17 2017 July
## 12993 Resort Hotel 1 42 2017 July
## 12994 Resort Hotel 1 157 2017 July
## 12995 Resort Hotel 1 203 2017 July
## 12996 Resort Hotel 1 203 2017 July
## 12997 Resort Hotel 1 193 2017 July
## 12998 Resort Hotel 1 31 2017 July
## 12999 Resort Hotel 1 381 2017 July
## 13000 Resort Hotel 1 340 2017 July
## 13001 Resort Hotel 1 196 2017 July
## 13002 Resort Hotel 1 165 2017 July
## 13003 Resort Hotel 1 71 2017 July
## 13004 Resort Hotel 1 198 2017 July
## 13005 Resort Hotel 1 279 2017 July
## 13006 Resort Hotel 1 199 2017 July
## 13007 Resort Hotel 1 198 2017 July
## 13008 Resort Hotel 1 59 2017 July
## 13009 Resort Hotel 1 71 2017 July
## 13010 Resort Hotel 1 198 2017 July
## 13011 Resort Hotel 1 191 2017 July
## 13012 Resort Hotel 1 167 2017 July
## 13013 Resort Hotel 1 300 2017 July
## 13014 Resort Hotel 1 18 2017 July
## 13015 Resort Hotel 1 33 2017 July
## 13016 Resort Hotel 1 19 2017 July
## 13017 Resort Hotel 1 318 2017 July
## 13018 Resort Hotel 1 50 2017 July
## 13019 Resort Hotel 1 0 2017 July
## 13020 Resort Hotel 1 203 2017 July
## 13021 Resort Hotel 1 203 2017 July
## 13022 Resort Hotel 1 18 2017 July
## 13023 Resort Hotel 1 16 2017 July
## 13024 Resort Hotel 1 16 2017 July
## 13025 Resort Hotel 1 18 2017 July
## 13026 Resort Hotel 1 17 2017 July
## 13027 Resort Hotel 1 4 2017 July
## 13028 Resort Hotel 1 318 2017 July
## 13029 Resort Hotel 1 25 2017 July
## 13030 Resort Hotel 1 261 2017 July
## 13031 Resort Hotel 1 69 2017 July
## 13032 Resort Hotel 1 69 2017 July
## 13033 Resort Hotel 1 33 2017 July
## 13034 Resort Hotel 1 129 2017 July
## 13035 Resort Hotel 1 292 2017 July
## 13036 Resort Hotel 1 205 2017 July
## 13037 Resort Hotel 1 128 2017 July
## 13038 Resort Hotel 1 141 2017 July
## 13039 Resort Hotel 1 19 2017 July
## 13040 Resort Hotel 1 60 2017 July
## 13041 Resort Hotel 1 43 2017 July
## 13042 Resort Hotel 1 42 2017 July
## 13043 Resort Hotel 1 116 2017 July
## 13044 Resort Hotel 1 67 2017 July
## 13045 Resort Hotel 1 52 2017 July
## 13046 Resort Hotel 1 239 2017 July
## 13047 Resort Hotel 1 239 2017 July
## 13048 Resort Hotel 1 23 2017 July
## 13049 Resort Hotel 1 20 2017 July
## 13050 Resort Hotel 1 173 2017 July
## 13051 Resort Hotel 1 172 2017 July
## 13052 Resort Hotel 1 147 2017 July
## 13053 Resort Hotel 1 335 2017 July
## 13054 Resort Hotel 1 358 2017 July
## 13055 Resort Hotel 1 231 2017 July
## 13056 Resort Hotel 1 335 2017 July
## 13057 Resort Hotel 1 191 2017 July
## 13058 Resort Hotel 1 247 2017 July
## 13059 Resort Hotel 1 56 2017 July
## 13060 Resort Hotel 1 137 2017 July
## 13061 Resort Hotel 1 56 2017 July
## 13062 Resort Hotel 1 247 2017 July
## 13063 Resort Hotel 1 60 2017 July
## 13064 Resort Hotel 1 306 2017 July
## 13065 Resort Hotel 1 237 2017 July
## 13066 Resort Hotel 1 38 2017 July
## 13067 Resort Hotel 1 137 2017 July
## 13068 Resort Hotel 1 358 2017 July
## 13069 Resort Hotel 1 342 2017 July
## 13070 Resort Hotel 1 343 2017 July
## 13071 Resort Hotel 1 158 2017 July
## 13072 Resort Hotel 1 51 2017 July
## 13073 Resort Hotel 1 56 2017 July
## 13074 Resort Hotel 1 39 2017 July
## 13075 Resort Hotel 1 63 2017 July
## 13076 Resort Hotel 1 124 2017 July
## 13077 Resort Hotel 1 255 2017 July
## 13078 Resort Hotel 1 188 2017 July
## 13079 Resort Hotel 1 224 2017 July
## 13080 Resort Hotel 1 359 2017 July
## 13081 Resort Hotel 1 109 2017 July
## 13082 Resort Hotel 1 309 2017 July
## 13083 Resort Hotel 1 359 2017 July
## 13084 Resort Hotel 1 18 2017 July
## 13085 Resort Hotel 1 18 2017 July
## 13086 Resort Hotel 1 228 2017 July
## 13087 Resort Hotel 1 0 2017 July
## 13088 Resort Hotel 1 20 2017 July
## 13089 Resort Hotel 1 2 2017 July
## 13090 Resort Hotel 1 2 2017 July
## 13091 Resort Hotel 1 39 2017 July
## 13092 Resort Hotel 1 125 2017 July
## 13093 Resort Hotel 1 170 2017 July
## 13094 Resort Hotel 1 125 2017 July
## 13095 Resort Hotel 1 20 2017 July
## 13096 Resort Hotel 1 142 2017 July
## 13097 Resort Hotel 1 75 2017 July
## 13098 Resort Hotel 1 172 2017 July
## 13099 Resort Hotel 1 211 2017 July
## 13100 Resort Hotel 1 134 2017 July
## 13101 Resort Hotel 1 172 2017 July
## 13102 Resort Hotel 1 164 2017 July
## 13103 Resort Hotel 1 181 2017 July
## 13104 Resort Hotel 1 357 2017 July
## 13105 Resort Hotel 1 167 2017 July
## 13106 Resort Hotel 1 329 2017 July
## 13107 Resort Hotel 1 23 2017 July
## 13108 Resort Hotel 1 26 2017 July
## 13109 Resort Hotel 1 189 2017 July
## 13110 Resort Hotel 1 254 2017 July
## 13111 Resort Hotel 1 130 2017 July
## 13112 Resort Hotel 1 189 2017 July
## 13113 Resort Hotel 1 343 2017 July
## 13114 Resort Hotel 1 172 2017 July
## 13115 Resort Hotel 1 172 2017 July
## 13116 Resort Hotel 1 122 2017 August
## 13117 Resort Hotel 1 78 2017 August
## 13118 Resort Hotel 1 67 2017 August
## 13119 Resort Hotel 1 69 2017 August
## 13120 Resort Hotel 1 198 2017 August
## 13121 Resort Hotel 1 98 2017 August
## 13122 Resort Hotel 1 159 2017 August
## 13123 Resort Hotel 1 298 2017 August
## 13124 Resort Hotel 1 298 2017 August
## 13125 Resort Hotel 1 334 2017 August
## 13126 Resort Hotel 1 334 2017 August
## 13127 Resort Hotel 1 195 2017 August
## 13128 Resort Hotel 1 181 2017 August
## 13129 Resort Hotel 1 176 2017 August
## 13130 Resort Hotel 1 136 2017 August
## 13131 Resort Hotel 1 28 2017 August
## 13132 Resort Hotel 1 242 2017 August
## 13133 Resort Hotel 1 27 2017 August
## 13134 Resort Hotel 1 215 2017 August
## 13135 Resort Hotel 1 176 2017 August
## 13136 Resort Hotel 1 162 2017 August
## 13137 Resort Hotel 1 28 2017 August
## 13138 Resort Hotel 1 81 2017 August
## 13139 Resort Hotel 1 328 2017 August
## 13140 Resort Hotel 1 203 2017 August
## 13141 Resort Hotel 1 358 2017 August
## 13142 Resort Hotel 1 352 2017 August
## 13143 Resort Hotel 1 378 2017 August
## 13144 Resort Hotel 1 300 2017 August
## 13145 Resort Hotel 1 15 2017 August
## 13146 Resort Hotel 1 205 2017 August
## 13147 Resort Hotel 1 205 2017 August
## 13148 Resort Hotel 1 231 2017 August
## 13149 Resort Hotel 1 231 2017 August
## 13150 Resort Hotel 1 231 2017 August
## 13151 Resort Hotel 1 248 2017 August
## 13152 Resort Hotel 1 310 2017 August
## 13153 Resort Hotel 1 78 2017 August
## 13154 Resort Hotel 1 187 2017 August
## 13155 Resort Hotel 1 188 2017 August
## 13156 Resort Hotel 1 76 2017 August
## 13157 Resort Hotel 1 213 2017 August
## 13158 Resort Hotel 1 187 2017 August
## 13159 Resort Hotel 1 101 2017 August
## 13160 Resort Hotel 1 15 2017 August
## 13161 Resort Hotel 1 28 2017 August
## 13162 Resort Hotel 1 28 2017 August
## 13163 Resort Hotel 1 28 2017 August
## 13164 Resort Hotel 1 28 2017 August
## 13165 Resort Hotel 1 28 2017 August
## 13166 Resort Hotel 1 28 2017 August
## 13167 Resort Hotel 1 101 2017 August
## 13168 Resort Hotel 1 28 2017 August
## 13169 Resort Hotel 1 195 2017 August
## 13170 Resort Hotel 1 17 2017 August
## 13171 Resort Hotel 1 43 2017 August
## 13172 Resort Hotel 1 22 2017 August
## 13173 Resort Hotel 1 246 2017 August
## 13174 Resort Hotel 1 246 2017 August
## 13175 Resort Hotel 1 246 2017 August
## 13176 Resort Hotel 1 153 2017 August
## 13177 Resort Hotel 1 273 2017 August
## 13178 Resort Hotel 1 296 2017 August
## 13179 Resort Hotel 1 104 2017 August
## 13180 Resort Hotel 1 178 2017 August
## 13181 Resort Hotel 1 83 2017 August
## 13182 Resort Hotel 1 83 2017 August
## 13183 Resort Hotel 1 29 2017 August
## 13184 Resort Hotel 1 304 2017 August
## 13185 Resort Hotel 1 304 2017 August
## 13186 Resort Hotel 1 28 2017 August
## 13187 Resort Hotel 1 42 2017 August
## 13188 Resort Hotel 1 42 2017 August
## 13189 Resort Hotel 1 113 2017 August
## 13190 Resort Hotel 1 304 2017 August
## 13191 Resort Hotel 1 304 2017 August
## 13192 Resort Hotel 1 353 2017 August
## 13193 Resort Hotel 1 24 2017 August
## 13194 Resort Hotel 1 34 2017 August
## 13195 Resort Hotel 1 40 2017 August
## 13196 Resort Hotel 1 93 2017 August
## 13197 Resort Hotel 1 304 2017 August
## 13198 Resort Hotel 1 312 2017 August
## 13199 Resort Hotel 1 214 2017 August
## 13200 Resort Hotel 1 51 2017 August
## 13201 Resort Hotel 1 312 2017 August
## 13202 Resort Hotel 1 165 2017 August
## 13203 Resort Hotel 1 166 2017 August
## 13204 Resort Hotel 1 178 2017 August
## 13205 Resort Hotel 1 91 2017 August
## 13206 Resort Hotel 1 91 2017 August
## 13207 Resort Hotel 1 319 2017 August
## 13208 Resort Hotel 1 95 2017 August
## 13209 Resort Hotel 1 302 2017 August
## 13210 Resort Hotel 1 302 2017 August
## 13211 Resort Hotel 1 144 2017 August
## 13212 Resort Hotel 1 163 2017 August
## 13213 Resort Hotel 1 8 2017 August
## 13214 Resort Hotel 1 10 2017 August
## 13215 Resort Hotel 1 167 2017 August
## 13216 Resort Hotel 1 16 2017 August
## 13217 Resort Hotel 1 180 2017 August
## 13218 Resort Hotel 1 11 2017 August
## 13219 Resort Hotel 1 20 2017 August
## 13220 Resort Hotel 1 341 2017 August
## 13221 Resort Hotel 1 20 2017 August
## 13222 Resort Hotel 1 16 2017 August
## 13223 Resort Hotel 1 3 2017 August
## 13224 Resort Hotel 1 333 2017 August
## 13225 Resort Hotel 1 25 2017 August
## 13226 Resort Hotel 1 119 2017 August
## 13227 Resort Hotel 1 333 2017 August
## 13228 Resort Hotel 1 142 2017 August
## 13229 Resort Hotel 1 238 2017 August
## 13230 Resort Hotel 1 328 2017 August
## 13231 Resort Hotel 1 45 2017 August
## 13232 Resort Hotel 1 328 2017 August
## 13233 Resort Hotel 1 38 2017 August
## 13234 Resort Hotel 1 210 2017 August
## 13235 Resort Hotel 1 141 2017 August
## 13236 Resort Hotel 1 98 2017 August
## 13237 Resort Hotel 1 31 2017 August
## 13238 Resort Hotel 1 45 2017 August
## 13239 Resort Hotel 1 208 2017 August
## 13240 Resort Hotel 1 208 2017 August
## 13241 Resort Hotel 1 208 2017 August
## 13242 Resort Hotel 1 143 2017 August
## 13243 Resort Hotel 1 209 2017 August
## 13244 Resort Hotel 1 128 2017 August
## 13245 Resort Hotel 1 33 2017 August
## 13246 Resort Hotel 1 145 2017 August
## 13247 Resort Hotel 1 33 2017 August
## 13248 Resort Hotel 1 128 2017 August
## 13249 Resort Hotel 1 123 2017 August
## 13250 Resort Hotel 1 126 2017 August
## 13251 Resort Hotel 1 128 2017 August
## 13252 Resort Hotel 1 142 2017 August
## 13253 Resort Hotel 1 126 2017 August
## 13254 Resort Hotel 1 172 2017 August
## 13255 Resort Hotel 1 31 2017 August
## 13256 Resort Hotel 1 126 2017 August
## 13257 Resort Hotel 1 177 2017 August
## 13258 Resort Hotel 1 343 2017 August
## 13259 Resort Hotel 1 190 2017 August
## 13260 Resort Hotel 1 117 2017 August
## 13261 Resort Hotel 1 178 2017 August
## 13262 Resort Hotel 1 178 2017 August
## 13263 Resort Hotel 1 177 2017 August
## 13264 Resort Hotel 1 314 2017 August
## 13265 Resort Hotel 1 185 2017 August
## 13266 Resort Hotel 1 177 2017 August
## 13267 Resort Hotel 1 194 2017 August
## 13268 Resort Hotel 1 96 2017 August
## 13269 Resort Hotel 1 157 2017 August
## 13270 Resort Hotel 1 310 2017 August
## 13271 Resort Hotel 1 113 2017 August
## 13272 Resort Hotel 1 45 2017 August
## 13273 Resort Hotel 1 174 2017 August
## 13274 Resort Hotel 1 153 2017 August
## 13275 Resort Hotel 1 41 2017 August
## 13276 Resort Hotel 1 139 2017 August
## 13277 Resort Hotel 1 184 2017 August
## 13278 Resort Hotel 1 153 2017 August
## 13279 Resort Hotel 1 152 2017 August
## 13280 Resort Hotel 1 128 2017 August
## 13281 Resort Hotel 1 88 2017 August
## 13282 Resort Hotel 1 138 2017 August
## 13283 Resort Hotel 1 152 2017 August
## 13284 Resort Hotel 1 216 2017 August
## 13285 Resort Hotel 1 265 2017 August
## 13286 Resort Hotel 1 216 2017 August
## 13287 Resort Hotel 1 311 2017 August
## 13288 Resort Hotel 1 187 2017 August
## 13289 Resort Hotel 1 213 2017 August
## 13290 Resort Hotel 1 228 2017 August
## 13291 Resort Hotel 1 141 2017 August
## 13292 Resort Hotel 1 141 2017 August
## 13293 Resort Hotel 1 103 2017 August
## 13294 Resort Hotel 1 143 2017 August
## 13295 Resort Hotel 1 196 2017 August
## 13296 Resort Hotel 1 204 2017 August
## 13297 Resort Hotel 1 257 2017 August
## 13298 Resort Hotel 1 316 2017 August
## 13299 Resort Hotel 1 193 2017 August
## 13300 Resort Hotel 1 200 2017 August
## 13301 Resort Hotel 1 192 2017 August
## 13302 Resort Hotel 1 200 2017 August
## 13303 Resort Hotel 1 105 2017 August
## 13304 Resort Hotel 1 188 2017 August
## 13305 Resort Hotel 1 298 2017 August
## 13306 Resort Hotel 1 260 2017 August
## 13307 Resort Hotel 1 165 2017 August
## 13308 Resort Hotel 1 328 2017 August
## 13309 Resort Hotel 1 153 2017 August
## 13310 Resort Hotel 1 166 2017 August
## 13311 Resort Hotel 1 196 2017 August
## 13312 Resort Hotel 1 225 2017 August
## 13313 Resort Hotel 1 193 2017 August
## 13314 Resort Hotel 1 34 2017 August
## 13315 Resort Hotel 1 34 2017 August
## 13316 Resort Hotel 1 199 2017 August
## 13317 Resort Hotel 1 314 2017 August
## 13318 Resort Hotel 1 339 2017 August
## 13319 Resort Hotel 1 32 2017 August
## 13320 Resort Hotel 1 129 2017 August
## 13321 Resort Hotel 1 184 2017 August
## 13322 Resort Hotel 1 239 2017 August
## 13323 Resort Hotel 1 198 2017 August
## 13324 Resort Hotel 1 116 2017 August
## 13325 Resort Hotel 1 28 2017 August
## 13326 Resort Hotel 1 116 2017 August
## 13327 Resort Hotel 1 0 2017 August
## 13328 Resort Hotel 1 50 2017 August
## 13329 Resort Hotel 1 91 2017 August
## 13330 Resort Hotel 1 95 2017 August
## 13331 Resort Hotel 1 95 2017 August
## 13332 Resort Hotel 1 29 2017 August
## 13333 Resort Hotel 1 94 2017 August
## 13334 Resort Hotel 1 95 2017 August
## 13335 Resort Hotel 1 45 2017 August
## 13336 Resort Hotel 1 184 2017 August
## 13337 Resort Hotel 1 172 2017 August
## 13338 Resort Hotel 1 289 2017 August
## 13339 Resort Hotel 1 338 2017 August
## 13340 Resort Hotel 1 289 2017 August
## 13341 Resort Hotel 1 199 2017 August
## 13342 Resort Hotel 1 47 2017 August
## 13343 Resort Hotel 1 11 2017 August
## 13344 Resort Hotel 1 106 2017 August
## 13345 Resort Hotel 1 311 2017 August
## 13346 Resort Hotel 1 262 2017 August
## 13347 Resort Hotel 1 184 2017 August
## 13348 Resort Hotel 1 98 2017 August
## 13349 Resort Hotel 1 87 2017 August
## 13350 Resort Hotel 1 210 2017 August
## 13351 Resort Hotel 1 238 2017 August
## 13352 Resort Hotel 1 88 2017 August
## 13353 Resort Hotel 1 311 2017 August
## 13354 Resort Hotel 1 11 2017 August
## 13355 Resort Hotel 1 306 2017 August
## 13356 Resort Hotel 1 306 2017 August
## 13357 Resort Hotel 1 311 2017 August
## 13358 Resort Hotel 1 305 2017 August
## 13359 Resort Hotel 1 161 2017 August
## 13360 Resort Hotel 1 301 2017 August
## 13361 Resort Hotel 1 306 2017 August
## 13362 Resort Hotel 1 327 2017 August
## 13363 Resort Hotel 1 201 2017 August
## 13364 Resort Hotel 1 307 2017 August
## 13365 Resort Hotel 1 132 2017 August
## 13366 Resort Hotel 1 224 2017 August
## 13367 Resort Hotel 1 47 2017 August
## 13368 Resort Hotel 1 36 2017 August
## 13369 Resort Hotel 1 187 2017 August
## 13370 Resort Hotel 1 46 2017 August
## 13371 Resort Hotel 1 46 2017 August
## 13372 Resort Hotel 1 186 2017 August
## 13373 Resort Hotel 1 144 2017 August
## 13374 Resort Hotel 1 269 2017 August
## 13375 Resort Hotel 1 341 2017 August
## 13376 Resort Hotel 1 341 2017 August
## 13377 Resort Hotel 1 187 2017 August
## 13378 Resort Hotel 1 187 2017 August
## 13379 Resort Hotel 1 273 2017 August
## 13380 Resort Hotel 1 193 2017 August
## 13381 Resort Hotel 1 213 2017 August
## 13382 Resort Hotel 1 0 2017 August
## 13383 Resort Hotel 1 176 2017 August
## 13384 Resort Hotel 1 176 2017 August
## 13385 Resort Hotel 1 183 2017 August
## 13386 Resort Hotel 1 95 2017 August
## 13387 Resort Hotel 1 183 2017 August
## 13388 Resort Hotel 1 227 2017 August
## 13389 Resort Hotel 1 130 2017 August
## 13390 Resort Hotel 1 220 2017 August
## 13391 Resort Hotel 1 52 2017 August
## 13392 Resort Hotel 1 59 2017 August
## 13393 Resort Hotel 1 285 2017 August
## 13394 Resort Hotel 1 166 2017 August
## 13395 Resort Hotel 1 309 2017 August
## 13396 Resort Hotel 1 300 2017 August
## 13397 Resort Hotel 1 285 2017 August
## 13398 Resort Hotel 1 102 2017 August
## 13399 Resort Hotel 1 216 2017 August
## 13400 Resort Hotel 1 291 2017 August
## 13401 Resort Hotel 1 291 2017 August
## 13402 Resort Hotel 1 228 2017 August
## 13403 Resort Hotel 1 0 2017 August
## 13404 Resort Hotel 1 0 2017 August
## 13405 Resort Hotel 1 0 2017 August
## 13406 Resort Hotel 1 89 2017 August
## 13407 Resort Hotel 1 53 2017 August
## 13408 Resort Hotel 1 188 2017 August
## 13409 Resort Hotel 1 206 2017 August
## 13410 Resort Hotel 1 216 2017 August
## 13411 Resort Hotel 1 175 2017 August
## 13412 Resort Hotel 1 14 2017 August
## 13413 Resort Hotel 1 216 2017 August
## 13414 Resort Hotel 1 295 2017 August
## 13415 Resort Hotel 1 175 2017 August
## 13416 Resort Hotel 1 175 2017 August
## 13417 Resort Hotel 1 183 2017 August
## 13418 Resort Hotel 1 99 2017 August
## 13419 Resort Hotel 1 91 2017 August
## 13420 Resort Hotel 1 342 2017 August
## 13421 Resort Hotel 1 133 2017 August
## 13422 Resort Hotel 1 146 2017 August
## 13423 Resort Hotel 1 13 2017 August
## 13424 Resort Hotel 1 227 2017 August
## 13425 Resort Hotel 1 195 2017 August
## 13426 Resort Hotel 1 146 2017 August
## 13427 Resort Hotel 1 33 2017 August
## 13428 Resort Hotel 1 182 2017 August
## 13429 Resort Hotel 1 295 2017 August
## 13430 Resort Hotel 1 358 2017 August
## 13431 Resort Hotel 1 269 2017 August
## 13432 Resort Hotel 1 244 2017 August
## 13433 Resort Hotel 1 16 2017 August
## 13434 Resort Hotel 1 16 2017 August
## 13435 Resort Hotel 1 16 2017 August
## 13436 Resort Hotel 1 1 2017 August
## 13437 Resort Hotel 1 7 2017 August
## 13438 Resort Hotel 1 6 2017 August
## 13439 Resort Hotel 1 270 2017 August
## 13440 Resort Hotel 1 194 2017 August
## 13441 Resort Hotel 1 126 2017 August
## 13442 Resort Hotel 1 221 2017 August
## 13443 Resort Hotel 1 39 2017 August
## 13444 Resort Hotel 1 126 2017 August
## 13445 Resort Hotel 1 15 2017 August
## 13446 Resort Hotel 1 284 2017 August
## 13447 Resort Hotel 1 141 2017 August
## 13448 Resort Hotel 1 24 2017 August
## 13449 Resort Hotel 1 198 2017 August
## 13450 Resort Hotel 1 97 2017 August
## 13451 Resort Hotel 1 203 2017 August
## 13452 Resort Hotel 1 371 2017 August
## 13453 Resort Hotel 1 49 2017 August
## 13454 Resort Hotel 1 15 2017 August
## 13455 Resort Hotel 1 49 2017 August
## 13456 Resort Hotel 1 36 2017 August
## 13457 Resort Hotel 1 36 2017 August
## 13458 Resort Hotel 1 227 2017 August
## 13459 Resort Hotel 1 61 2017 August
## 13460 Resort Hotel 1 66 2017 August
## 13461 Resort Hotel 1 211 2017 August
## 13462 Resort Hotel 1 142 2017 August
## 13463 Resort Hotel 1 66 2017 August
## 13464 Resort Hotel 1 145 2017 August
## 13465 Resort Hotel 1 36 2017 August
## 13466 Resort Hotel 1 37 2017 August
## 13467 Resort Hotel 1 217 2017 August
## 13468 Resort Hotel 1 133 2017 August
## 13469 Resort Hotel 1 0 2017 August
## 13470 Resort Hotel 1 16 2017 August
## 13471 Resort Hotel 1 2 2017 August
## 13472 Resort Hotel 1 82 2017 August
## 13473 Resort Hotel 1 2 2017 August
## 13474 Resort Hotel 1 0 2017 August
## 13475 Resort Hotel 0 3 2017 August
## 13476 Resort Hotel 1 129 2017 August
## 13477 Resort Hotel 1 13 2017 August
## 13478 Resort Hotel 1 184 2017 August
## 13479 Resort Hotel 1 77 2017 August
## 13480 Resort Hotel 1 40 2017 August
## 13481 Resort Hotel 1 69 2017 August
## 13482 Resort Hotel 1 168 2017 August
## 13483 Resort Hotel 1 40 2017 August
## 13484 Resort Hotel 1 187 2017 August
## 13485 Resort Hotel 1 177 2017 August
## 13486 Resort Hotel 1 149 2017 August
## 13487 Resort Hotel 1 40 2017 August
## 13488 Resort Hotel 1 212 2017 August
## 13489 Resort Hotel 1 247 2017 August
## 13490 Resort Hotel 1 12 2017 August
## 13491 Resort Hotel 1 212 2017 August
## 13492 Resort Hotel 1 209 2017 August
## 13493 Resort Hotel 1 168 2017 August
## 13494 Resort Hotel 1 168 2017 August
## 13495 Resort Hotel 1 161 2017 August
## 13496 Resort Hotel 1 245 2017 August
## 13497 Resort Hotel 1 161 2017 August
## 13498 Resort Hotel 1 245 2017 August
## 13499 Resort Hotel 1 179 2017 August
## 13500 Resort Hotel 1 213 2017 August
## 13501 Resort Hotel 1 213 2017 August
## 13502 Resort Hotel 1 212 2017 August
## 13503 Resort Hotel 1 358 2017 August
## 13504 Resort Hotel 1 154 2017 August
## 13505 Resort Hotel 1 212 2017 August
## 13506 Resort Hotel 1 84 2017 August
## 13507 Resort Hotel 1 172 2017 August
## 13508 Resort Hotel 1 358 2017 August
## 13509 Resort Hotel 1 213 2017 August
## 13510 Resort Hotel 1 151 2017 August
## 13511 Resort Hotel 1 65 2017 August
## 13512 Resort Hotel 1 168 2017 August
## 13513 Resort Hotel 1 168 2017 August
## 13514 Resort Hotel 1 44 2017 August
## 13515 Resort Hotel 1 158 2017 August
## 13516 Resort Hotel 1 49 2017 August
## 13517 Resort Hotel 1 117 2017 August
## 13518 Resort Hotel 1 19 2017 August
## 13519 Resort Hotel 1 124 2017 August
## 13520 Resort Hotel 1 88 2017 August
## 13521 Resort Hotel 1 144 2017 August
## 13522 Resort Hotel 1 33 2017 August
## 13523 Resort Hotel 1 200 2017 August
## 13524 Resort Hotel 1 200 2017 August
## 13525 Resort Hotel 1 76 2017 August
## 13526 Resort Hotel 1 44 2017 August
## 13527 Resort Hotel 1 39 2017 August
## 13528 Resort Hotel 1 64 2017 August
## 13529 Resort Hotel 1 187 2017 August
## 13530 Resort Hotel 1 257 2017 August
## 13531 Resort Hotel 1 185 2017 August
## 13532 Resort Hotel 1 8 2017 August
## 13533 Resort Hotel 1 173 2017 August
## 13534 Resort Hotel 1 203 2017 August
## 13535 Resort Hotel 1 108 2017 August
## 13536 Resort Hotel 1 177 2017 August
## 13537 Resort Hotel 1 259 2017 August
## 13538 Resort Hotel 1 2 2017 August
## 13539 Resort Hotel 1 234 2017 August
## 13540 Resort Hotel 1 195 2017 August
## 13541 Resort Hotel 1 160 2017 August
## 13542 Resort Hotel 1 173 2017 August
## 13543 Resort Hotel 1 177 2017 August
## 13544 Resort Hotel 1 108 2017 August
## 13545 Resort Hotel 1 113 2017 August
## 13546 Resort Hotel 1 187 2017 August
## 13547 Resort Hotel 1 199 2017 August
## 13548 Resort Hotel 1 160 2017 August
## 13549 Resort Hotel 1 306 2017 August
## 13550 Resort Hotel 1 211 2017 August
## 13551 Resort Hotel 1 125 2017 August
## 13552 Resort Hotel 1 211 2017 August
## 13553 Resort Hotel 1 129 2017 August
## 13554 Resort Hotel 1 129 2017 August
## 13555 Resort Hotel 1 146 2017 August
## 13556 Resort Hotel 1 216 2017 August
## 13557 Resort Hotel 1 211 2017 August
## 13558 Resort Hotel 1 122 2017 August
## 13559 Resort Hotel 1 129 2017 August
## 13560 Resort Hotel 1 349 2017 August
## 13561 Resort Hotel 1 220 2017 August
## 13562 Resort Hotel 1 353 2017 August
## 13563 Resort Hotel 1 5 2017 August
## 13564 Resort Hotel 1 118 2017 August
## 13565 Resort Hotel 1 210 2017 August
## 13566 Resort Hotel 1 294 2017 August
## 13567 Resort Hotel 1 337 2017 August
## 13568 Resort Hotel 1 64 2017 August
## 13569 Resort Hotel 1 178 2017 August
## 13570 Resort Hotel 1 161 2017 August
## 13571 Resort Hotel 1 161 2017 August
## 13572 Resort Hotel 1 315 2017 August
## 13573 Resort Hotel 1 360 2017 August
## 13574 Resort Hotel 1 173 2017 August
## 13575 Resort Hotel 1 190 2017 August
## 13576 Resort Hotel 1 210 2017 August
## 13577 Resort Hotel 1 277 2017 August
## 13578 Resort Hotel 1 143 2017 August
## 13579 Resort Hotel 1 90 2017 August
## 13580 Resort Hotel 1 60 2017 August
## 13581 Resort Hotel 1 60 2017 August
## 13582 Resort Hotel 1 106 2017 August
## 13583 Resort Hotel 1 195 2017 August
## 13584 Resort Hotel 1 83 2017 August
## 13585 Resort Hotel 1 19 2017 August
## 13586 Resort Hotel 1 25 2017 August
## 13587 Resort Hotel 1 193 2017 August
## 13588 Resort Hotel 1 197 2017 August
## 13589 Resort Hotel 1 21 2017 August
## 13590 Resort Hotel 1 38 2017 August
## 13591 Resort Hotel 1 34 2017 August
## 13592 Resort Hotel 1 247 2017 August
## 13593 Resort Hotel 1 295 2017 August
## 13594 Resort Hotel 1 206 2017 August
## 13595 Resort Hotel 1 119 2017 August
## 13596 Resort Hotel 1 189 2017 August
## 13597 Resort Hotel 1 202 2017 August
## 13598 Resort Hotel 1 122 2017 August
## 13599 Resort Hotel 1 12 2017 August
## 13600 Resort Hotel 1 238 2017 August
## 13601 Resort Hotel 1 189 2017 August
## 13602 Resort Hotel 1 29 2017 August
## 13603 Resort Hotel 1 233 2017 August
## 13604 Resort Hotel 1 136 2017 August
## 13605 Resort Hotel 1 144 2017 August
## 13606 Resort Hotel 1 136 2017 August
## 13607 Resort Hotel 1 217 2017 August
## 13608 Resort Hotel 1 193 2017 August
## 13609 Resort Hotel 1 204 2017 August
## 13610 Resort Hotel 1 202 2017 August
## 13611 Resort Hotel 1 15 2017 August
## 13612 Resort Hotel 1 3 2017 August
## 13613 Resort Hotel 1 101 2017 August
## 13614 Resort Hotel 1 49 2017 August
## 13615 Resort Hotel 1 157 2017 August
## 13616 Resort Hotel 1 26 2017 August
## 13617 Resort Hotel 1 181 2017 August
## 13618 Resort Hotel 1 58 2017 August
## 13619 Resort Hotel 1 43 2017 August
## 13620 Resort Hotel 1 212 2017 August
## 13621 Resort Hotel 1 24 2017 August
## 13622 Resort Hotel 1 209 2017 August
## 13623 Resort Hotel 1 223 2017 August
## 13624 Resort Hotel 1 156 2017 August
## 13625 Resort Hotel 1 63 2017 August
## 13626 Resort Hotel 1 156 2017 August
## 13627 Resort Hotel 1 223 2017 August
## 13628 Resort Hotel 1 95 2017 August
## 13629 Resort Hotel 1 195 2017 August
## 13630 Resort Hotel 1 77 2017 August
## 13631 Resort Hotel 1 77 2017 August
## 13632 Resort Hotel 1 77 2017 August
## 13633 Resort Hotel 1 77 2017 August
## 13634 Resort Hotel 1 77 2017 August
## 13635 Resort Hotel 1 111 2017 August
## 13636 Resort Hotel 1 77 2017 August
## 13637 Resort Hotel 1 77 2017 August
## 13638 Resort Hotel 1 77 2017 August
## 13639 Resort Hotel 1 60 2017 August
## 13640 Resort Hotel 1 44 2017 August
## 13641 Resort Hotel 1 338 2017 August
## 13642 Resort Hotel 1 197 2017 August
## 13643 Resort Hotel 1 77 2017 August
## 13644 Resort Hotel 1 77 2017 August
## 13645 Resort Hotel 1 20 2017 August
## 13646 Resort Hotel 1 71 2017 August
## 13647 Resort Hotel 1 198 2017 August
## 13648 Resort Hotel 1 338 2017 August
## 13649 Resort Hotel 1 144 2017 August
## 13650 Resort Hotel 1 237 2017 August
## 13651 Resort Hotel 1 162 2017 August
## 13652 Resort Hotel 1 58 2017 August
## 13653 Resort Hotel 1 163 2017 August
## 13654 Resort Hotel 1 165 2017 August
## 13655 Resort Hotel 1 162 2017 August
## 13656 Resort Hotel 1 198 2017 August
## 13657 Resort Hotel 1 60 2017 August
## 13658 Resort Hotel 1 198 2017 August
## 13659 Resort Hotel 1 26 2017 August
## 13660 Resort Hotel 1 31 2017 August
## 13661 Resort Hotel 1 72 2017 August
## 13662 Resort Hotel 1 90 2017 August
## 13663 Resort Hotel 1 149 2017 August
## 13664 Resort Hotel 1 150 2017 August
## 13665 Resort Hotel 1 253 2017 August
## 13666 Resort Hotel 1 167 2017 August
## 13667 Resort Hotel 1 253 2017 August
## 13668 Resort Hotel 1 253 2017 August
## 13669 Resort Hotel 1 110 2017 August
## 13670 Resort Hotel 1 253 2017 August
## 13671 Resort Hotel 1 38 2017 August
## 13672 Resort Hotel 1 172 2017 August
## 13673 Resort Hotel 1 353 2017 August
## 13674 Resort Hotel 1 0 2017 August
## 13675 Resort Hotel 1 172 2017 August
## 13676 Resort Hotel 1 17 2017 August
## 13677 Resort Hotel 1 45 2017 August
## 13678 Resort Hotel 1 74 2017 August
## 13679 Resort Hotel 1 143 2017 August
## 13680 Resort Hotel 1 204 2017 August
## 13681 Resort Hotel 1 143 2017 August
## 13682 Resort Hotel 1 191 2017 August
## 13683 Resort Hotel 1 80 2017 August
## 13684 Resort Hotel 1 181 2017 August
## 13685 Resort Hotel 1 80 2017 August
## 13686 Resort Hotel 1 25 2017 August
## 13687 Resort Hotel 1 29 2017 August
## 13688 Resort Hotel 1 17 2017 August
## 13689 Resort Hotel 1 66 2017 August
## 13690 Resort Hotel 1 103 2017 August
## 13691 Resort Hotel 1 184 2017 August
## 13692 Resort Hotel 1 142 2017 August
## 13693 Resort Hotel 1 47 2017 August
## 13694 Resort Hotel 1 185 2017 August
## 13695 Resort Hotel 1 90 2017 August
## 13696 Resort Hotel 1 87 2017 August
## 13697 Resort Hotel 1 17 2017 August
## 13698 Resort Hotel 1 3 2017 August
## 13699 Resort Hotel 1 17 2017 August
## 13700 Resort Hotel 1 212 2017 August
## 13701 Resort Hotel 1 40 2017 August
## 13702 Resort Hotel 1 191 2017 August
## 13703 Resort Hotel 1 19 2017 August
## 13704 Resort Hotel 1 181 2017 August
## 13705 Resort Hotel 1 73 2017 August
## 13706 Resort Hotel 1 220 2017 August
## 13707 Resort Hotel 1 51 2017 August
## 13708 Resort Hotel 1 51 2017 August
## 13709 Resort Hotel 1 50 2017 August
## 13710 Resort Hotel 1 301 2017 August
## 13711 Resort Hotel 1 344 2017 August
## 13712 Resort Hotel 1 140 2017 August
## 13713 Resort Hotel 1 36 2017 August
## 13714 Resort Hotel 1 61 2017 August
## 13715 Resort Hotel 1 22 2017 August
## 13716 Resort Hotel 1 47 2017 August
## 13717 Resort Hotel 1 47 2017 August
## 13718 Resort Hotel 1 46 2017 August
## 13719 Resort Hotel 1 99 2017 August
## 13720 Resort Hotel 1 20 2017 August
## 13721 Resort Hotel 1 216 2017 August
## 13722 Resort Hotel 1 20 2017 August
## 13723 Resort Hotel 1 216 2017 August
## 13724 Resort Hotel 1 327 2017 August
## 13725 Resort Hotel 1 305 2017 August
## 13726 Resort Hotel 1 56 2017 August
## 13727 Resort Hotel 1 98 2017 August
## 13728 Resort Hotel 1 48 2017 August
## 13729 Resort Hotel 1 56 2017 August
## 13730 Resort Hotel 1 98 2017 August
## 13731 Resort Hotel 1 98 2017 August
## 13732 Resort Hotel 1 56 2017 August
## 13733 Resort Hotel 1 53 2017 August
## 13734 Resort Hotel 1 40 2017 August
## 13735 Resort Hotel 1 172 2017 August
## 13736 Resort Hotel 1 63 2017 August
## 13737 Resort Hotel 1 152 2017 August
## 13738 Resort Hotel 1 61 2017 August
## 13739 Resort Hotel 1 35 2017 August
## 13740 Resort Hotel 1 14 2017 August
## 13741 Resort Hotel 1 26 2017 August
## 13742 Resort Hotel 1 73 2017 August
## 13743 Resort Hotel 1 175 2017 August
## 13744 Resort Hotel 1 73 2017 August
## 13745 Resort Hotel 1 65 2017 August
## 13746 Resort Hotel 1 27 2017 August
## 13747 Resort Hotel 1 222 2017 August
## 13748 Resort Hotel 1 175 2017 August
## 13749 Resort Hotel 1 112 2017 August
## 13750 Resort Hotel 1 80 2017 August
## 13751 Resort Hotel 1 13 2017 August
## 13752 Resort Hotel 1 112 2017 August
## 13753 Resort Hotel 1 54 2017 August
## 13754 Resort Hotel 1 120 2017 August
## 13755 Resort Hotel 1 80 2017 August
## 13756 Resort Hotel 1 120 2017 August
## 13757 Resort Hotel 1 59 2017 August
## 13758 Resort Hotel 1 77 2017 August
## 13759 Resort Hotel 1 59 2017 August
## 13760 Resort Hotel 1 237 2017 August
## 13761 Resort Hotel 1 237 2017 August
## 13762 Resort Hotel 1 18 2017 August
## 13763 Resort Hotel 1 205 2017 August
## 13764 Resort Hotel 1 29 2017 August
## 13765 Resort Hotel 1 32 2017 August
## 13766 Resort Hotel 1 35 2017 August
## 13767 Resort Hotel 1 29 2017 August
## 13768 Resort Hotel 1 75 2017 August
## 13769 Resort Hotel 1 114 2017 August
## 13770 Resort Hotel 1 8 2017 August
## 13771 Resort Hotel 1 72 2017 August
## 13772 Resort Hotel 1 246 2017 August
## 13773 Resort Hotel 1 19 2017 August
## 13774 Resort Hotel 1 42 2017 August
## 13775 Resort Hotel 1 160 2017 August
## 13776 Resort Hotel 1 148 2017 August
## 13777 Resort Hotel 1 73 2017 August
## 13778 Resort Hotel 1 98 2017 August
## 13779 Resort Hotel 1 54 2017 August
## 13780 Resort Hotel 1 50 2017 August
## 13781 Resort Hotel 1 98 2017 August
## 13782 Resort Hotel 1 74 2017 August
## 13783 Resort Hotel 1 51 2017 August
## 13784 Resort Hotel 1 36 2017 August
## 13785 Resort Hotel 1 60 2017 August
## 13786 Resort Hotel 1 92 2017 August
## 13787 Resort Hotel 1 207 2017 August
## 13788 Resort Hotel 1 62 2017 August
## 13789 Resort Hotel 1 262 2017 August
## 13790 Resort Hotel 1 24 2017 August
## 13791 Resort Hotel 1 95 2017 August
## 13792 Resort Hotel 1 45 2017 August
## 13793 Resort Hotel 1 24 2017 August
## 13794 Resort Hotel 1 17 2017 August
## 13795 Resort Hotel 1 17 2017 August
## 13796 Resort Hotel 1 70 2017 August
## 13797 Resort Hotel 1 112 2017 August
## 13798 Resort Hotel 1 13 2017 August
## 13799 Resort Hotel 1 6 2017 August
## 13800 Resort Hotel 1 45 2017 August
## 13801 Resort Hotel 1 184 2017 August
## 13802 Resort Hotel 1 29 2017 August
## 13803 Resort Hotel 1 350 2017 August
## 13804 Resort Hotel 0 7 2016 January
## 13805 Resort Hotel 0 7 2016 January
## 13806 Resort Hotel 1 2 2016 October
## 13807 Resort Hotel 0 7 2017 February
## 13808 Resort Hotel 0 7 2016 January
## 13809 Resort Hotel 0 6 2016 January
## 13810 Resort Hotel 0 7 2016 September
## 13811 Resort Hotel 0 66 2015 September
## 13812 Resort Hotel 1 71 2016 July
## 13813 Resort Hotel 0 6 2016 January
## 13814 Resort Hotel 0 1 2016 February
## 13815 Resort Hotel 0 6 2016 November
## 13816 Resort Hotel 0 6 2017 January
## 13817 Resort Hotel 0 6 2016 April
## 13818 Resort Hotel 0 1 2017 February
## 13819 Resort Hotel 0 4 2017 August
## 13820 Resort Hotel 0 11 2016 February
## 13821 Resort Hotel 0 1 2016 March
## 13822 Resort Hotel 0 7 2016 September
## 13823 Resort Hotel 0 11 2017 February
## 13824 Resort Hotel 0 7 2016 January
## 13825 Resort Hotel 1 0 2016 March
## 13826 Resort Hotel 0 6 2016 March
## 13827 Resort Hotel 0 7 2016 June
## 13828 Resort Hotel 0 8 2016 September
## 13829 Resort Hotel 0 5 2016 March
## 13830 Resort Hotel 0 14 2016 October
## 13831 Resort Hotel 0 6 2016 June
## 13832 Resort Hotel 0 7 2016 December
## 13833 Resort Hotel 0 5 2017 April
## 13834 Resort Hotel 0 4 2017 July
## 13835 Resort Hotel 0 1 2016 September
## 13836 Resort Hotel 0 2 2017 January
## 13837 Resort Hotel 0 7 2016 January
## 13838 Resort Hotel 0 5 2016 April
## 13839 Resort Hotel 0 183 2016 July
## 13840 Resort Hotel 0 186 2017 July
## 13841 Resort Hotel 0 14 2016 March
## 13842 Resort Hotel 0 4 2016 May
## 13843 Resort Hotel 0 118 2015 July
## 13844 Resort Hotel 0 1 2016 September
## 13845 Resort Hotel 0 32 2015 September
## 13846 Resort Hotel 0 137 2016 September
## 13847 Resort Hotel 0 0 2016 March
## 13848 Resort Hotel 0 0 2017 June
## 13849 Resort Hotel 0 105 2015 December
## 13850 Resort Hotel 0 105 2015 December
## 13851 Resort Hotel 0 52 2016 March
## 13852 Resort Hotel 0 81 2016 December
## 13853 Resort Hotel 0 89 2017 April
## 13854 Resort Hotel 0 1 2016 April
## 13855 Resort Hotel 1 33 2015 November
## 13856 Resort Hotel 0 5 2015 November
## 13857 Resort Hotel 0 0 2015 December
## 13858 Resort Hotel 0 7 2016 January
## 13859 Resort Hotel 0 5 2016 April
## 13860 Resort Hotel 0 78 2015 August
## 13861 Resort Hotel 0 110 2016 August
## 13862 Resort Hotel 0 134 2017 August
## 13863 Resort Hotel 0 73 2017 July
## 13864 Resort Hotel 0 9 2015 August
## 13865 Resort Hotel 1 92 2016 July
## 13866 Resort Hotel 0 1 2015 November
## 13867 Resort Hotel 0 5 2016 February
## 13868 Resort Hotel 0 0 2016 April
## 13869 Resort Hotel 0 6 2016 January
## 13870 Resort Hotel 0 4 2016 January
## 13871 Resort Hotel 0 6 2016 April
## 13872 Resort Hotel 0 7 2016 October
## 13873 Resort Hotel 0 0 2016 November
## 13874 Resort Hotel 0 12 2015 September
## 13875 Resort Hotel 0 8 2016 February
## 13876 Resort Hotel 1 27 2016 April
## 13877 Resort Hotel 0 16 2016 May
## 13878 Resort Hotel 0 20 2016 September
## 13879 Resort Hotel 0 1 2016 November
## 13880 Resort Hotel 0 3 2017 January
## 13881 Resort Hotel 0 19 2017 March
## 13882 Resort Hotel 0 26 2017 April
## 13883 Resort Hotel 0 0 2016 January
## 13884 Resort Hotel 0 0 2017 January
## 13885 Resort Hotel 0 2 2015 July
## 13886 Resort Hotel 0 1 2016 January
## 13887 Resort Hotel 0 1 2016 June
## 13888 Resort Hotel 0 0 2016 November
## 13889 Resort Hotel 0 8 2017 March
## 13890 Resort Hotel 0 5 2017 July
## 13891 Resort Hotel 0 3 2015 September
## 13892 Resort Hotel 0 2 2016 April
## 13893 Resort Hotel 0 39 2016 July
## 13894 Resort Hotel 0 1 2016 September
## 13895 Resort Hotel 1 3 2015 September
## 13896 Resort Hotel 0 0 2015 September
## 13897 Resort Hotel 0 2 2015 November
## 13898 Resort Hotel 0 1 2016 January
## 13899 Resort Hotel 0 0 2016 March
## 13900 Resort Hotel 0 0 2016 April
## 13901 Resort Hotel 0 2 2016 June
## 13902 Resort Hotel 0 20 2016 September
## 13903 Resort Hotel 0 2 2016 November
## 13904 Resort Hotel 0 0 2016 December
## 13905 Resort Hotel 0 0 2017 February
## 13906 Resort Hotel 0 0 2017 March
## 13907 Resort Hotel 0 5 2017 May
## 13908 Resort Hotel 0 0 2016 February
## 13909 Resort Hotel 0 5 2017 June
## 13910 Resort Hotel 0 0 2017 January
## 13911 Resort Hotel 0 16 2016 September
## 13912 Resort Hotel 0 131 2016 July
## 13913 Resort Hotel 0 2 2016 March
## 13914 Resort Hotel 0 7 2017 January
## 13915 Resort Hotel 0 5 2017 March
## 13916 Resort Hotel 0 3 2017 June
## 13917 Resort Hotel 0 2 2017 April
## 13918 Resort Hotel 0 10 2017 May
## 13919 Resort Hotel 1 8 2017 July
## 13920 Resort Hotel 0 1 2015 November
## 13921 Resort Hotel 0 0 2016 February
## 13922 Resort Hotel 0 0 2016 April
## 13923 Resort Hotel 0 1 2016 July
## 13924 Resort Hotel 0 1 2016 November
## 13925 Resort Hotel 0 0 2017 February
## 13926 Resort Hotel 0 0 2017 April
## 13927 Resort Hotel 0 6 2017 July
## 13928 Resort Hotel 0 236 2017 June
## 13929 Resort Hotel 0 66 2015 September
## 13930 Resort Hotel 0 112 2016 September
## 13931 Resort Hotel 0 134 2017 April
## 13932 Resort Hotel 0 151 2015 July
## 13933 Resort Hotel 0 89 2015 August
## 13934 Resort Hotel 0 136 2016 July
## 13935 Resort Hotel 0 172 2016 September
## 13936 Resort Hotel 0 157 2017 July
## 13937 Resort Hotel 0 2 2016 February
## 13938 Resort Hotel 0 6 2016 April
## 13939 Resort Hotel 0 245 2015 September
## 13940 Resort Hotel 0 11 2016 November
## 13941 Resort Hotel 0 0 2016 February
## 13942 Resort Hotel 0 0 2016 December
## 13943 Resort Hotel 0 122 2016 July
## 13944 Resort Hotel 0 12 2017 July
## 13945 Resort Hotel 0 7 2015 July
## 13946 Resort Hotel 0 8 2015 November
## 13947 Resort Hotel 0 2 2016 November
## 13948 Resort Hotel 0 1 2017 March
## 13949 Resort Hotel 0 0 2015 October
## 13950 Resort Hotel 1 1 2015 October
## 13951 Resort Hotel 1 0 2015 October
## 13952 Resort Hotel 0 4 2015 October
## 13953 Resort Hotel 0 0 2015 December
## 13954 Resort Hotel 0 1 2016 January
## 13955 Resort Hotel 0 0 2016 June
## 13956 Resort Hotel 0 1 2016 November
## 13957 Resort Hotel 0 6 2017 January
## 13958 Resort Hotel 0 0 2017 February
## 13959 Resort Hotel 0 0 2017 February
## 13960 Resort Hotel 0 3 2017 March
## 13961 Resort Hotel 0 5 2017 April
## 13962 Resort Hotel 0 1 2017 May
## 13963 Resort Hotel 0 0 2017 June
## 13964 Resort Hotel 0 0 2016 February
## 13965 Resort Hotel 0 6 2017 January
## 13966 Resort Hotel 0 0 2016 January
## 13967 Resort Hotel 0 2 2016 June
## 13968 Resort Hotel 0 0 2017 April
## 13969 Resort Hotel 0 69 2015 December
## 13970 Resort Hotel 0 87 2016 April
## 13971 Resort Hotel 0 2 2016 February
## 13972 Resort Hotel 0 0 2017 August
## 13973 Resort Hotel 0 0 2016 April
## 13974 Resort Hotel 0 0 2016 December
## 13975 Resort Hotel 0 7 2017 April
## 13976 Resort Hotel 0 1 2017 June
## 13977 Resort Hotel 0 1 2015 November
## 13978 Resort Hotel 0 0 2015 December
## 13979 Resort Hotel 0 2 2016 February
## 13980 Resort Hotel 0 0 2016 March
## 13981 Resort Hotel 0 9 2016 June
## 13982 Resort Hotel 0 2 2017 January
## 13983 Resort Hotel 0 2 2017 February
## 13984 Resort Hotel 0 4 2017 May
## 13985 Resort Hotel 0 9 2016 April
## 13986 Resort Hotel 0 11 2017 February
## 13987 Resort Hotel 0 7 2016 November
## 13988 Resort Hotel 0 0 2016 September
## 13989 Resort Hotel 1 11 2016 July
## 13990 Resort Hotel 0 11 2016 October
## 13991 Resort Hotel 0 20 2016 November
## 13992 Resort Hotel 0 0 2015 August
## 13993 Resort Hotel 0 5 2015 August
## 13994 Resort Hotel 0 1 2015 October
## 13995 Resort Hotel 0 0 2016 January
## 13996 Resort Hotel 0 13 2016 March
## 13997 Resort Hotel 0 1 2016 August
## 13998 Resort Hotel 0 1 2016 January
## 13999 Resort Hotel 0 91 2015 December
## 14000 Resort Hotel 0 113 2016 June
## 14001 Resort Hotel 0 122 2016 December
## 14002 Resort Hotel 0 162 2017 June
## 14003 Resort Hotel 0 4 2015 July
## 14004 Resort Hotel 0 7 2015 July
## 14005 Resort Hotel 0 2 2015 November
## 14006 Resort Hotel 0 8 2015 November
## 14007 Resort Hotel 0 1 2015 December
## 14008 Resort Hotel 0 1 2015 December
## 14009 Resort Hotel 0 1 2016 January
## 14010 Resort Hotel 0 0 2016 February
## 14011 Resort Hotel 0 2 2016 February
## 14012 Resort Hotel 0 1 2016 March
## 14013 Resort Hotel 0 1 2016 April
## 14014 Resort Hotel 0 1 2016 April
## 14015 Resort Hotel 0 1 2016 May
## 14016 Resort Hotel 0 1 2016 June
## 14017 Resort Hotel 0 7 2016 July
## 14018 Resort Hotel 0 1 2016 July
## 14019 Resort Hotel 0 11 2016 July
## 14020 Resort Hotel 0 9 2016 September
## 14021 Resort Hotel 0 2 2016 November
## 14022 Resort Hotel 0 2 2016 December
## 14023 Resort Hotel 0 0 2017 January
## 14024 Resort Hotel 0 5 2017 February
## 14025 Resort Hotel 0 0 2017 February
## 14026 Resort Hotel 1 2 2017 March
## 14027 Resort Hotel 0 1 2017 March
## 14028 Resort Hotel 0 1 2017 March
## 14029 Resort Hotel 0 2 2017 April
## 14030 Resort Hotel 0 2 2017 June
## 14031 Resort Hotel 0 9 2016 September
## 14032 Resort Hotel 0 6 2015 September
## 14033 Resort Hotel 0 5 2015 November
## 14034 Resort Hotel 0 3 2016 April
## 14035 Resort Hotel 0 3 2016 September
## 14036 Resort Hotel 0 7 2017 January
## 14037 Resort Hotel 0 0 2017 June
## 14038 Resort Hotel 0 113 2015 August
## 14039 Resort Hotel 0 126 2016 July
## 14040 Resort Hotel 0 74 2017 July
## 14041 Resort Hotel 0 0 2016 February
## 14042 Resort Hotel 0 0 2016 April
## 14043 Resort Hotel 0 5 2016 May
## 14044 Resort Hotel 0 0 2016 October
## 14045 Resort Hotel 0 0 2017 February
## 14046 Resort Hotel 0 0 2016 February
## 14047 Resort Hotel 0 0 2017 February
## 14048 Resort Hotel 0 0 2015 July
## 14049 Resort Hotel 0 7 2016 October
## 14050 Resort Hotel 0 64 2016 November
## 14051 Resort Hotel 0 0 2016 January
## 14052 Resort Hotel 0 0 2017 January
## 14053 Resort Hotel 0 0 2017 March
## 14054 Resort Hotel 0 5 2015 November
## 14055 Resort Hotel 0 7 2016 January
## 14056 Resort Hotel 0 0 2016 May
## 14057 Resort Hotel 0 0 2016 October
## 14058 Resort Hotel 0 0 2017 January
## 14059 Resort Hotel 0 1 2017 January
## 14060 Resort Hotel 0 0 2016 December
## 14061 Resort Hotel 0 0 2017 January
## 14062 Resort Hotel 0 0 2017 July
## 14063 Resort Hotel 0 151 2017 April
## 14064 Resort Hotel 0 87 2017 April
## 14065 Resort Hotel 0 20 2016 March
## 14066 Resort Hotel 0 1 2016 October
## 14067 Resort Hotel 0 0 2017 February
## 14068 Resort Hotel 0 20 2016 June
## 14069 Resort Hotel 0 6 2016 January
## 14070 Resort Hotel 0 2 2016 March
## 14071 Resort Hotel 0 267 2016 July
## 14072 Resort Hotel 0 168 2017 July
## 14073 Resort Hotel 0 109 2015 August
## 14074 Resort Hotel 0 52 2015 August
## 14075 Resort Hotel 0 67 2016 August
## 14076 Resort Hotel 0 11 2016 July
## 14077 Resort Hotel 0 0 2016 December
## 14078 Resort Hotel 0 1 2016 January
## 14079 Resort Hotel 0 15 2015 November
## 14080 Resort Hotel 0 6 2016 November
## 14081 Resort Hotel 0 1 2017 February
## 14082 Resort Hotel 0 6 2016 March
## 14083 Resort Hotel 0 13 2017 February
## 14084 Resort Hotel 0 6 2016 October
## 14085 Resort Hotel 0 1 2015 October
## 14086 Resort Hotel 1 2 2016 March
## 14087 Resort Hotel 0 4 2016 October
## 14088 Resort Hotel 0 165 2016 August
## 14089 Resort Hotel 0 163 2017 August
## 14090 Resort Hotel 0 1 2017 March
## 14091 Resort Hotel 0 5 2015 December
## 14092 Resort Hotel 0 0 2015 December
## 14093 Resort Hotel 0 91 2015 July
## 14094 Resort Hotel 0 119 2015 August
## 14095 Resort Hotel 0 137 2016 July
## 14096 Resort Hotel 0 158 2016 August
## 14097 Resort Hotel 0 124 2017 July
## 14098 Resort Hotel 0 122 2017 August
## 14099 Resort Hotel 0 152 2017 August
## 14100 Resort Hotel 0 88 2015 August
## 14101 Resort Hotel 0 19 2016 March
## 14102 Resort Hotel 0 141 2016 August
## 14103 Resort Hotel 0 19 2017 April
## 14104 Resort Hotel 0 65 2015 September
## 14105 Resort Hotel 0 167 2016 September
## 14106 Resort Hotel 0 1 2016 January
## 14107 Resort Hotel 0 0 2016 February
## 14108 Resort Hotel 0 237 2016 September
## 14109 Resort Hotel 0 29 2016 September
## 14110 Resort Hotel 0 1 2016 September
## 14111 Resort Hotel 0 8 2016 September
## 14112 Resort Hotel 0 305 2015 September
## 14113 Resort Hotel 0 127 2016 April
## 14114 Resort Hotel 0 303 2016 September
## 14115 Resort Hotel 0 7 2015 November
## 14116 Resort Hotel 0 7 2016 September
## 14117 Resort Hotel 0 29 2016 November
## 14118 Resort Hotel 0 2 2017 May
## 14119 Resort Hotel 0 4 2016 March
## 14120 Resort Hotel 0 64 2016 December
## 14121 Resort Hotel 0 2 2016 October
## 14122 Resort Hotel 0 6 2017 February
## 14123 Resort Hotel 0 5 2017 March
## 14124 Resort Hotel 0 5 2017 March
## 14125 Resort Hotel 0 6 2017 April
## 14126 Resort Hotel 1 249 2016 December
## 14127 Resort Hotel 0 0 2017 April
## 14128 Resort Hotel 0 1 2016 April
## 14129 Resort Hotel 0 9 2016 February
## 14130 Resort Hotel 0 5 2016 February
## 14131 Resort Hotel 0 25 2017 February
## 14132 Resort Hotel 0 0 2016 February
## 14133 Resort Hotel 0 1 2017 January
## 14134 Resort Hotel 0 112 2017 March
## 14135 Resort Hotel 0 2 2017 June
## 14136 Resort Hotel 0 335 2016 September
## 14137 Resort Hotel 0 0 2016 March
## 14138 Resort Hotel 0 5 2016 November
## 14139 Resort Hotel 0 0 2017 February
## 14140 Resort Hotel 0 0 2015 November
## 14141 Resort Hotel 0 4 2015 November
## 14142 Resort Hotel 0 0 2015 November
## 14143 Resort Hotel 0 5 2016 February
## 14144 Resort Hotel 0 11 2016 April
## 14145 Resort Hotel 0 19 2016 June
## 14146 Resort Hotel 0 9 2015 December
## 14147 Resort Hotel 0 10 2016 April
## 14148 Resort Hotel 0 8 2016 April
## 14149 Resort Hotel 0 2 2016 July
## 14150 Resort Hotel 0 20 2016 September
## 14151 Resort Hotel 0 4 2016 December
## 14152 Resort Hotel 0 35 2017 April
## 14153 Resort Hotel 0 0 2017 February
## 14154 Resort Hotel 0 2 2016 March
## 14155 Resort Hotel 0 8 2016 June
## 14156 Resort Hotel 0 5 2016 December
## 14157 Resort Hotel 0 8 2017 June
## 14158 Resort Hotel 0 2 2015 December
## 14159 Resort Hotel 0 3 2016 May
## 14160 Resort Hotel 0 6 2016 November
## 14161 Resort Hotel 0 7 2017 April
## 14162 Resort Hotel 0 0 2017 January
## 14163 Resort Hotel 0 13 2017 May
## 14164 Resort Hotel 0 134 2017 April
## 14165 Resort Hotel 0 76 2015 July
## 14166 Resort Hotel 0 104 2016 July
## 14167 Resort Hotel 0 103 2017 July
## 14168 Resort Hotel 0 6 2015 November
## 14169 Resort Hotel 0 8 2016 January
## 14170 Resort Hotel 0 6 2016 February
## 14171 Resort Hotel 0 0 2016 March
## 14172 Resort Hotel 0 0 2016 April
## 14173 Resort Hotel 0 0 2016 November
## 14174 Resort Hotel 0 7 2016 December
## 14175 Resort Hotel 0 0 2017 February
## 14176 Resort Hotel 0 1 2017 March
## 14177 Resort Hotel 0 0 2017 April
## 14178 Resort Hotel 0 4 2017 January
## 14179 Resort Hotel 0 0 2015 November
## 14180 Resort Hotel 0 0 2016 January
## 14181 Resort Hotel 0 2 2015 October
## 14182 Resort Hotel 1 21 2016 December
## 14183 Resort Hotel 0 80 2017 June
## 14184 Resort Hotel 0 2 2016 December
## 14185 Resort Hotel 0 167 2015 August
## 14186 Resort Hotel 0 164 2016 August
## 14187 Resort Hotel 0 172 2017 August
## 14188 Resort Hotel 0 234 2016 September
## 14189 Resort Hotel 0 454 2016 August
## 14190 Resort Hotel 0 61 2015 October
## 14191 Resort Hotel 0 83 2016 April
## 14192 Resort Hotel 0 66 2016 October
## 14193 Resort Hotel 1 160 2017 April
## 14194 Resort Hotel 0 0 2016 January
## 14195 Resort Hotel 0 2 2016 January
## 14196 Resort Hotel 0 2 2016 January
## 14197 Resort Hotel 0 2 2016 May
## 14198 Resort Hotel 0 10 2016 January
## 14199 Resort Hotel 0 2 2016 March
## 14200 Resort Hotel 0 8 2017 February
## 14201 Resort Hotel 0 22 2017 February
## 14202 Resort Hotel 0 16 2017 March
## 14203 Resort Hotel 0 0 2015 July
## 14204 Resort Hotel 0 6 2015 October
## 14205 Resort Hotel 0 0 2016 January
## 14206 Resort Hotel 0 5 2016 March
## 14207 Resort Hotel 0 58 2015 December
## 14208 Resort Hotel 0 6 2016 January
## 14209 Resort Hotel 0 6 2016 January
## 14210 Resort Hotel 0 5 2016 March
## 14211 Resort Hotel 0 32 2015 July
## 14212 Resort Hotel 0 118 2016 July
## 14213 Resort Hotel 0 120 2017 July
## 14214 Resort Hotel 0 1 2016 November
## 14215 Resort Hotel 0 1 2016 March
## 14216 Resort Hotel 0 26 2015 October
## 14217 Resort Hotel 0 16 2015 November
## 14218 Resort Hotel 0 24 2015 December
## 14219 Resort Hotel 0 1 2016 February
## 14220 Resort Hotel 0 0 2016 December
## 14221 Resort Hotel 0 1 2015 November
## 14222 Resort Hotel 0 0 2017 February
## 14223 Resort Hotel 0 0 2017 March
## 14224 Resort Hotel 0 1 2017 March
## 14225 Resort Hotel 0 76 2015 November
## 14226 Resort Hotel 0 150 2017 February
## 14227 Resort Hotel 0 1 2016 April
## 14228 Resort Hotel 1 81 2015 September
## 14229 Resort Hotel 0 46 2015 December
## 14230 Resort Hotel 0 4 2016 February
## 14231 Resort Hotel 1 144 2016 July
## 14232 Resort Hotel 1 31 2016 September
## 14233 Resort Hotel 0 1 2017 January
## 14234 Resort Hotel 0 0 2016 May
## 14235 Resort Hotel 0 2 2017 January
## 14236 Resort Hotel 0 0 2016 February
## 14237 Resort Hotel 0 0 2015 November
## 14238 Resort Hotel 0 1 2015 December
## 14239 Resort Hotel 0 3 2016 January
## 14240 Resort Hotel 0 8 2016 January
## 14241 Resort Hotel 0 4 2016 February
## 14242 Resort Hotel 0 0 2016 February
## 14243 Resort Hotel 0 18 2016 March
## 14244 Resort Hotel 0 2 2016 April
## 14245 Resort Hotel 0 6 2016 May
## 14246 Resort Hotel 0 2 2016 January
## 14247 Resort Hotel 0 1 2016 February
## 14248 Resort Hotel 0 1 2016 May
## 14249 Resort Hotel 0 2 2016 June
## 14250 Resort Hotel 0 3 2017 January
## 14251 Resort Hotel 0 1 2017 April
## 14252 Resort Hotel 0 35 2016 March
## 14253 Resort Hotel 0 224 2015 August
## 14254 Resort Hotel 0 197 2016 August
## 14255 Resort Hotel 0 151 2015 August
## 14256 Resort Hotel 0 88 2016 July
## 14257 Resort Hotel 0 1 2016 September
## 14258 Resort Hotel 0 17 2015 October
## 14259 Resort Hotel 0 29 2016 March
## 14260 Resort Hotel 1 14 2015 September
## 14261 Resort Hotel 0 12 2015 October
## 14262 Resort Hotel 0 11 2015 December
## 14263 Resort Hotel 0 37 2016 March
## 14264 Resort Hotel 0 16 2016 May
## 14265 Resort Hotel 0 37 2016 September
## 14266 Resort Hotel 0 24 2016 November
## 14267 Resort Hotel 0 13 2016 December
## 14268 Resort Hotel 0 10 2016 December
## 14269 Resort Hotel 0 17 2017 February
## 14270 Resort Hotel 0 17 2017 March
## 14271 Resort Hotel 0 19 2017 April
## 14272 Resort Hotel 0 11 2017 May
## 14273 Resort Hotel 1 30 2017 June
## 14274 Resort Hotel 0 17 2017 July
## 14275 Resort Hotel 0 230 2016 August
## 14276 Resort Hotel 0 75 2015 August
## 14277 Resort Hotel 0 44 2015 September
## 14278 Resort Hotel 0 72 2016 September
## 14279 Resort Hotel 0 4 2015 September
## 14280 Resort Hotel 0 2 2016 June
## 14281 Resort Hotel 0 5 2016 June
## 14282 Resort Hotel 0 2 2016 October
## 14283 Resort Hotel 0 3 2017 June
## 14284 Resort Hotel 1 4 2015 September
## 14285 Resort Hotel 0 2 2015 September
## 14286 Resort Hotel 0 9 2015 September
## 14287 Resort Hotel 0 29 2015 October
## 14288 Resort Hotel 0 26 2015 November
## 14289 Resort Hotel 0 12 2016 June
## 14290 Resort Hotel 1 28 2016 July
## 14291 Resort Hotel 0 4 2017 February
## 14292 Resort Hotel 0 1 2017 March
## 14293 Resort Hotel 0 12 2016 February
## 14294 Resort Hotel 0 8 2016 October
## 14295 Resort Hotel 1 17 2016 December
## 14296 Resort Hotel 0 17 2016 December
## 14297 Resort Hotel 0 0 2015 November
## 14298 Resort Hotel 0 0 2016 February
## 14299 Resort Hotel 0 0 2016 February
## 14300 Resort Hotel 0 0 2016 March
## 14301 Resort Hotel 0 0 2016 June
## 14302 Resort Hotel 0 0 2017 April
## 14303 Resort Hotel 0 0 2017 April
## 14304 Resort Hotel 0 2 2015 October
## 14305 Resort Hotel 0 0 2015 November
## 14306 Resort Hotel 0 4 2016 October
## 14307 Resort Hotel 0 1 2015 December
## 14308 Resort Hotel 0 1 2016 February
## 14309 Resort Hotel 0 3 2016 April
## 14310 Resort Hotel 0 5 2016 June
## 14311 Resort Hotel 0 6 2016 October
## 14312 Resort Hotel 0 3 2016 December
## 14313 Resort Hotel 0 6 2017 January
## 14314 Resort Hotel 0 6 2017 March
## 14315 Resort Hotel 0 6 2017 April
## 14316 Resort Hotel 0 10 2015 October
## 14317 Resort Hotel 0 5 2016 October
## 14318 Resort Hotel 0 3 2017 March
## 14319 Resort Hotel 0 1 2016 November
## 14320 Resort Hotel 0 0 2016 December
## 14321 Resort Hotel 0 0 2015 December
## 14322 Resort Hotel 0 0 2016 March
## 14323 Resort Hotel 0 3 2017 February
## 14324 Resort Hotel 0 16 2016 March
## 14325 Resort Hotel 0 8 2016 December
## 14326 Resort Hotel 0 5 2015 October
## 14327 Resort Hotel 0 30 2016 November
## 14328 Resort Hotel 0 31 2016 December
## 14329 Resort Hotel 0 12 2016 October
## 14330 Resort Hotel 0 1 2017 January
## 14331 Resort Hotel 0 20 2016 March
## 14332 Resort Hotel 0 21 2015 August
## 14333 Resort Hotel 1 1 2016 July
## 14334 Resort Hotel 1 15 2017 January
## 14335 Resort Hotel 0 9 2016 September
## 14336 Resort Hotel 0 5 2017 March
## 14337 Resort Hotel 0 0 2015 October
## 14338 Resort Hotel 0 0 2016 February
## 14339 Resort Hotel 0 23 2017 March
## 14340 Resort Hotel 0 2 2016 January
## 14341 Resort Hotel 0 2 2016 January
## 14342 Resort Hotel 0 7 2016 February
## 14343 Resort Hotel 0 0 2016 February
## 14344 Resort Hotel 0 0 2016 March
## 14345 Resort Hotel 0 62 2017 March
## 14346 Resort Hotel 1 183 2015 July
## 14347 Resort Hotel 0 0 2015 October
## 14348 Resort Hotel 0 4 2016 April
## 14349 Resort Hotel 0 3 2015 November
## 14350 Resort Hotel 0 72 2016 February
## 14351 Resort Hotel 0 4 2017 April
## 14352 Resort Hotel 0 0 2017 January
## 14353 Resort Hotel 0 0 2017 April
## 14354 Resort Hotel 0 1 2017 May
## 14355 Resort Hotel 0 3 2016 May
## 14356 Resort Hotel 0 1 2015 December
## 14357 Resort Hotel 0 3 2015 September
## 14358 Resort Hotel 0 1 2015 October
## 14359 Resort Hotel 0 4 2016 October
## 14360 Resort Hotel 0 0 2016 February
## 14361 Resort Hotel 0 0 2016 October
## 14362 Resort Hotel 0 45 2017 February
## 14363 Resort Hotel 0 0 2015 December
## 14364 Resort Hotel 1 0 2016 June
## 14365 Resort Hotel 0 0 2016 March
## 14366 Resort Hotel 0 39 2017 January
## 14367 Resort Hotel 0 1 2016 April
## 14368 Resort Hotel 0 22 2016 May
## 14369 Resort Hotel 1 83 2016 July
## 14370 Resort Hotel 0 9 2017 January
## 14371 Resort Hotel 0 1 2016 June
## 14372 Resort Hotel 0 5 2016 July
## 14373 Resort Hotel 0 1 2016 November
## 14374 Resort Hotel 0 1 2017 March
## 14375 Resort Hotel 1 5 2017 July
## 14376 Resort Hotel 0 0 2017 April
## 14377 Resort Hotel 0 244 2017 June
## 14378 Resort Hotel 0 2 2016 May
## 14379 Resort Hotel 0 166 2015 July
## 14380 Resort Hotel 0 4 2015 October
## 14381 Resort Hotel 0 43 2017 June
## 14382 Resort Hotel 1 0 2015 July
## 14383 Resort Hotel 0 2 2017 January
## 14384 Resort Hotel 0 18 2017 January
## 14385 Resort Hotel 0 0 2017 January
## 14386 Resort Hotel 0 49 2017 July
## 14387 Resort Hotel 0 15 2015 November
## 14388 Resort Hotel 0 9 2015 December
## 14389 Resort Hotel 0 8 2016 January
## 14390 Resort Hotel 0 51 2017 January
## 14391 Resort Hotel 0 43 2017 March
## 14392 Resort Hotel 0 117 2016 July
## 14393 Resort Hotel 0 238 2017 July
## 14394 Resort Hotel 0 1 2016 August
## 14395 Resort Hotel 0 137 2017 July
## 14396 Resort Hotel 0 4 2017 May
## 14397 Resort Hotel 0 3 2015 July
## 14398 Resort Hotel 0 3 2015 July
## 14399 Resort Hotel 0 7 2015 October
## 14400 Resort Hotel 0 10 2016 October
## 14401 Resort Hotel 1 45 2017 August
## 14402 Resort Hotel 0 110 2015 August
## 14403 Resort Hotel 0 101 2017 February
## 14404 Resort Hotel 0 297 2017 August
## 14405 Resort Hotel 0 106 2017 August
## 14406 Resort Hotel 0 236 2017 July
## 14407 Resort Hotel 0 1 2016 August
## 14408 Resort Hotel 0 1 2017 February
## 14409 Resort Hotel 0 187 2017 July
## 14410 Resort Hotel 0 175 2016 September
## 14411 Resort Hotel 0 58 2016 September
## 14412 Resort Hotel 0 40 2015 September
## 14413 Resort Hotel 0 176 2016 October
## 14414 Resort Hotel 0 0 2017 January
## 14415 Resort Hotel 0 0 2017 July
## 14416 Resort Hotel 0 260 2017 June
## 14417 Resort Hotel 0 0 2015 October
## 14418 Resort Hotel 0 0 2017 April
## 14419 Resort Hotel 0 1 2015 November
## 14420 Resort Hotel 0 204 2016 September
## 14421 Resort Hotel 0 0 2016 October
## 14422 Resort Hotel 0 8 2015 October
## 14423 Resort Hotel 0 8 2015 October
## 14424 Resort Hotel 0 0 2015 November
## 14425 Resort Hotel 0 0 2015 November
## 14426 Resort Hotel 0 1 2016 June
## 14427 Resort Hotel 0 1 2016 June
## 14428 Resort Hotel 0 0 2016 August
## 14429 Resort Hotel 0 0 2017 January
## 14430 Resort Hotel 0 0 2016 January
## 14431 Resort Hotel 0 1 2016 February
## 14432 Resort Hotel 0 7 2016 June
## 14433 Resort Hotel 0 1 2017 February
## 14434 Resort Hotel 0 25 2017 August
## 14435 Resort Hotel 0 0 2017 February
## 14436 Resort Hotel 0 0 2017 February
## 14437 Resort Hotel 0 4 2016 January
## 14438 Resort Hotel 0 6 2016 January
## 14439 Resort Hotel 0 2 2017 January
## 14440 Resort Hotel 0 1 2016 April
## 14441 Resort Hotel 0 6 2017 March
## 14442 Resort Hotel 0 1 2015 October
## 14443 Resort Hotel 0 1 2015 December
## 14444 Resort Hotel 0 0 2016 March
## 14445 Resort Hotel 0 3 2016 January
## 14446 Resort Hotel 0 14 2016 December
## 14447 Resort Hotel 0 0 2016 February
## 14448 Resort Hotel 0 0 2016 March
## 14449 Resort Hotel 0 1 2016 December
## 14450 Resort Hotel 0 1 2016 March
## 14451 Resort Hotel 0 3 2016 October
## 14452 Resort Hotel 0 2 2017 February
## 14453 Resort Hotel 0 7 2017 April
## 14454 Resort Hotel 0 0 2016 January
## 14455 Resort Hotel 0 0 2016 February
## 14456 Resort Hotel 0 0 2016 February
## 14457 Resort Hotel 0 0 2016 April
## 14458 Resort Hotel 0 10 2016 May
## 14459 Resort Hotel 0 11 2016 March
## 14460 Resort Hotel 0 13 2016 March
## 14461 Resort Hotel 0 2 2016 December
## 14462 Resort Hotel 0 0 2016 February
## 14463 Resort Hotel 0 23 2017 June
## 14464 Resort Hotel 0 2 2015 July
## 14465 Resort Hotel 0 1 2016 January
## 14466 Resort Hotel 0 1 2016 February
## 14467 Resort Hotel 0 0 2016 February
## 14468 Resort Hotel 0 0 2016 March
## 14469 Resort Hotel 0 0 2016 October
## 14470 Resort Hotel 0 13 2017 January
## 14471 Resort Hotel 0 12 2017 April
## 14472 Resort Hotel 0 3 2017 April
## 14473 Resort Hotel 0 22 2015 October
## 14474 Resort Hotel 1 14 2016 October
## 14475 Resort Hotel 0 0 2017 January
## 14476 Resort Hotel 0 0 2016 December
## 14477 Resort Hotel 0 0 2015 October
## 14478 Resort Hotel 0 0 2016 March
## 14479 Resort Hotel 0 0 2016 May
## 14480 Resort Hotel 0 0 2017 March
## 14481 Resort Hotel 0 2 2016 January
## 14482 Resort Hotel 0 1 2016 February
## 14483 Resort Hotel 0 0 2016 March
## 14484 Resort Hotel 0 5 2016 April
## 14485 Resort Hotel 0 20 2016 September
## 14486 Resort Hotel 0 7 2016 November
## 14487 Resort Hotel 0 6 2017 January
## 14488 Resort Hotel 0 6 2017 February
## 14489 Resort Hotel 0 2 2017 March
## 14490 Resort Hotel 0 0 2015 October
## 14491 Resort Hotel 0 0 2015 December
## 14492 Resort Hotel 0 0 2016 January
## 14493 Resort Hotel 0 0 2016 February
## 14494 Resort Hotel 0 0 2016 October
## 14495 Resort Hotel 0 1 2016 December
## 14496 Resort Hotel 0 3 2017 January
## 14497 Resort Hotel 0 40 2017 January
## 14498 Resort Hotel 0 0 2015 November
## 14499 Resort Hotel 0 1 2015 November
## 14500 Resort Hotel 0 0 2016 February
## 14501 Resort Hotel 0 0 2017 January
## 14502 Resort Hotel 0 2 2015 October
## 14503 Resort Hotel 0 11 2016 January
## 14504 Resort Hotel 0 3 2016 February
## 14505 Resort Hotel 0 0 2016 March
## 14506 Resort Hotel 0 6 2015 November
## 14507 Resort Hotel 0 5 2016 March
## 14508 Resort Hotel 0 6 2016 May
## 14509 Resort Hotel 0 3 2016 October
## 14510 Resort Hotel 0 0 2015 November
## 14511 Resort Hotel 0 1 2016 January
## 14512 Resort Hotel 0 1 2017 April
## 14513 Resort Hotel 0 0 2015 November
## 14514 Resort Hotel 0 0 2015 December
## 14515 Resort Hotel 0 0 2016 March
## 14516 Resort Hotel 1 0 2016 April
## 14517 Resort Hotel 0 4 2017 March
## 14518 Resort Hotel 0 0 2015 November
## 14519 Resort Hotel 0 0 2015 November
## 14520 Resort Hotel 1 28 2016 June
## 14521 Resort Hotel 0 0 2015 December
## 14522 Resort Hotel 0 0 2016 January
## 14523 Resort Hotel 0 0 2016 February
## 14524 Resort Hotel 0 0 2016 February
## 14525 Resort Hotel 0 0 2016 March
## 14526 Resort Hotel 0 1 2017 February
## 14527 Resort Hotel 0 0 2016 March
## 14528 Resort Hotel 0 1 2016 April
## 14529 Resort Hotel 0 3 2016 March
## 14530 Resort Hotel 0 2 2016 December
## 14531 Resort Hotel 0 2 2017 January
## 14532 Resort Hotel 0 2 2017 March
## 14533 Resort Hotel 0 29 2015 October
## 14534 Resort Hotel 0 4 2016 March
## 14535 Resort Hotel 0 1 2015 October
## 14536 Resort Hotel 1 2 2015 October
## 14537 Resort Hotel 0 0 2015 November
## 14538 Resort Hotel 0 1 2015 December
## 14539 Resort Hotel 0 6 2017 February
## 14540 Resort Hotel 0 6 2016 February
## 14541 Resort Hotel 0 0 2015 December
## 14542 Resort Hotel 0 14 2015 September
## 14543 Resort Hotel 0 2 2015 December
## 14544 Resort Hotel 0 27 2016 September
## 14545 Resort Hotel 0 17 2017 February
## 14546 Resort Hotel 0 2 2015 December
## 14547 Resort Hotel 0 0 2016 April
## 14548 Resort Hotel 0 0 2016 November
## 14549 Resort Hotel 0 0 2016 November
## 14550 Resort Hotel 0 4 2016 April
## 14551 Resort Hotel 0 3 2016 November
## 14552 Resort Hotel 0 0 2015 December
## 14553 Resort Hotel 0 0 2016 January
## 14554 Resort Hotel 0 10 2016 December
## 14555 Resort Hotel 0 81 2016 December
## 14556 Resort Hotel 0 69 2016 March
## 14557 Resort Hotel 0 66 2016 December
## 14558 Resort Hotel 0 10 2017 May
## 14559 Resort Hotel 0 2 2017 May
## 14560 Resort Hotel 0 12 2016 April
## 14561 Resort Hotel 0 8 2016 November
## 14562 Resort Hotel 0 1 2016 December
## 14563 Resort Hotel 0 0 2017 February
## 14564 Resort Hotel 0 1 2017 February
## 14565 Resort Hotel 0 2 2017 March
## 14566 Resort Hotel 0 0 2017 February
## 14567 Resort Hotel 0 1 2015 September
## 14568 Resort Hotel 0 95 2016 May
## 14569 Resort Hotel 0 181 2015 August
## 14570 Resort Hotel 0 181 2017 August
## 14571 Resort Hotel 0 0 2015 July
## 14572 Resort Hotel 0 0 2016 March
## 14573 Resort Hotel 0 43 2017 May
## 14574 Resort Hotel 0 1 2015 September
## 14575 Resort Hotel 0 5 2015 October
## 14576 Resort Hotel 0 1 2016 November
## 14577 Resort Hotel 0 10 2016 February
## 14578 Resort Hotel 0 8 2016 February
## 14579 Resort Hotel 0 0 2017 January
## 14580 Resort Hotel 0 5 2016 May
## 14581 Resort Hotel 0 74 2017 July
## 14582 Resort Hotel 1 49 2015 September
## 14583 Resort Hotel 0 50 2016 October
## 14584 Resort Hotel 0 166 2016 June
## 14585 Resort Hotel 0 1 2016 May
## 14586 Resort Hotel 0 19 2017 July
## 14587 Resort Hotel 0 327 2016 September
## 14588 Resort Hotel 1 172 2017 June
## 14589 Resort Hotel 0 14 2016 June
## 14590 Resort Hotel 0 133 2017 July
## 14591 Resort Hotel 0 8 2016 January
## 14592 Resort Hotel 0 14 2015 July
## 14593 Resort Hotel 0 0 2016 April
## 14594 Resort Hotel 0 6 2016 July
## 14595 Resort Hotel 0 103 2015 July
## 14596 Resort Hotel 0 22 2015 July
## 14597 Resort Hotel 0 22 2015 July
## 14598 Resort Hotel 0 39 2016 August
## 14599 Resort Hotel 0 19 2016 July
## 14600 Resort Hotel 0 5 2016 March
## 14601 Resort Hotel 0 139 2017 July
## 14602 Resort Hotel 0 0 2016 March
## 14603 Resort Hotel 0 37 2017 August
## 14604 Resort Hotel 0 38 2017 August
## 14605 Resort Hotel 0 1 2016 November
## 14606 Resort Hotel 0 3 2017 January
## 14607 Resort Hotel 0 2 2017 May
## 14608 Resort Hotel 0 51 2015 July
## 14609 Resort Hotel 0 1 2016 February
## 14610 Resort Hotel 0 1 2016 February
## 14611 Resort Hotel 0 1 2016 June
## 14612 Resort Hotel 0 0 2017 April
## 14613 Resort Hotel 0 147 2016 July
## 14614 Resort Hotel 0 105 2017 August
## 14615 Resort Hotel 0 25 2015 July
## 14616 Resort Hotel 0 176 2016 August
## 14617 Resort Hotel 0 0 2017 August
## 14618 Resort Hotel 0 4 2016 December
## 14619 Resort Hotel 0 126 2016 August
## 14620 Resort Hotel 0 10 2015 August
## 14621 Resort Hotel 0 155 2017 August
## 14622 Resort Hotel 0 155 2017 August
## 14623 Resort Hotel 0 159 2015 August
## 14624 Resort Hotel 0 181 2016 August
## 14625 Resort Hotel 0 250 2017 August
## 14626 Resort Hotel 0 7 2017 April
## 14627 Resort Hotel 0 33 2016 April
## 14628 Resort Hotel 1 21 2016 July
## 14629 Resort Hotel 0 212 2016 August
## 14630 Resort Hotel 0 3 2016 March
## 14631 Resort Hotel 0 63 2015 September
## 14632 Resort Hotel 0 184 2016 September
## 14633 Resort Hotel 0 169 2015 September
## 14634 Resort Hotel 0 2 2016 May
## 14635 Resort Hotel 0 348 2016 September
## 14636 Resort Hotel 0 6 2015 November
## 14637 Resort Hotel 0 0 2016 February
## 14638 Resort Hotel 0 2 2016 October
## 14639 Resort Hotel 0 7 2016 November
## 14640 Resort Hotel 0 7 2016 December
## 14641 Resort Hotel 0 6 2017 January
## 14642 Resort Hotel 0 2 2017 May
## 14643 Resort Hotel 0 8 2016 October
## 14644 Resort Hotel 0 6 2015 September
## 14645 Resort Hotel 1 152 2015 July
## 14646 Resort Hotel 0 250 2016 September
## 14647 Resort Hotel 0 151 2016 September
## 14648 Resort Hotel 0 17 2017 April
## 14649 Resort Hotel 0 48 2016 September
## 14650 Resort Hotel 0 165 2016 December
## 14651 Resort Hotel 0 266 2015 September
## 14652 Resort Hotel 0 266 2015 September
## 14653 Resort Hotel 0 266 2015 September
## 14654 Resort Hotel 0 266 2015 September
## 14655 Resort Hotel 0 40 2016 September
## 14656 Resort Hotel 0 266 2015 September
## 14657 Resort Hotel 0 152 2015 September
## 14658 Resort Hotel 0 228 2016 September
## 14659 Resort Hotel 0 9 2015 October
## 14660 Resort Hotel 0 2 2016 December
## 14661 Resort Hotel 0 185 2015 July
## 14662 Resort Hotel 0 5 2017 May
## 14663 Resort Hotel 0 0 2016 January
## 14664 Resort Hotel 0 255 2016 September
## 14665 Resort Hotel 0 41 2016 October
## 14666 Resort Hotel 0 9 2017 March
## 14667 Resort Hotel 0 11 2017 July
## 14668 Resort Hotel 0 41 2016 October
## 14669 Resort Hotel 0 1 2017 February
## 14670 Resort Hotel 0 0 2017 May
## 14671 Resort Hotel 0 0 2016 February
## 14672 Resort Hotel 0 3 2016 April
## 14673 Resort Hotel 0 10 2016 October
## 14674 Resort Hotel 0 154 2015 October
## 14675 Resort Hotel 0 17 2016 October
## 14676 Resort Hotel 0 1 2017 January
## 14677 Resort Hotel 0 0 2015 October
## 14678 Resort Hotel 0 0 2015 November
## 14679 Resort Hotel 0 0 2016 November
## 14680 Resort Hotel 0 0 2017 April
## 14681 Resort Hotel 1 399 2015 December
## 14682 Resort Hotel 1 202 2015 July
## 14683 Resort Hotel 1 259 2015 September
## 14684 Resort Hotel 1 259 2015 September
## 14685 Resort Hotel 1 259 2015 September
## 14686 Resort Hotel 1 259 2015 September
## 14687 Resort Hotel 1 259 2015 September
## 14688 Resort Hotel 1 259 2015 September
## 14689 Resort Hotel 1 259 2015 September
## 14690 Resort Hotel 1 259 2015 September
## 14691 Resort Hotel 1 259 2015 September
## 14692 Resort Hotel 1 259 2015 September
## 14693 Resort Hotel 1 259 2015 September
## 14694 Resort Hotel 1 259 2015 September
## 14695 Resort Hotel 1 259 2015 September
## 14696 Resort Hotel 1 259 2015 September
## 14697 Resort Hotel 1 259 2015 September
## 14698 Resort Hotel 1 259 2015 September
## 14699 Resort Hotel 1 259 2015 September
## 14700 Resort Hotel 1 259 2015 September
## 14701 Resort Hotel 1 259 2015 September
## 14702 Resort Hotel 1 259 2015 September
## 14703 Resort Hotel 1 259 2015 September
## 14704 Resort Hotel 1 259 2015 September
## 14705 Resort Hotel 1 259 2015 September
## 14706 Resort Hotel 1 259 2015 September
## 14707 Resort Hotel 1 259 2015 September
## 14708 Resort Hotel 1 259 2015 September
## 14709 Resort Hotel 1 259 2015 September
## 14710 Resort Hotel 1 259 2015 September
## 14711 Resort Hotel 1 259 2015 September
## 14712 Resort Hotel 1 259 2015 September
## 14713 Resort Hotel 1 259 2015 September
## 14714 Resort Hotel 1 259 2015 September
## 14715 Resort Hotel 1 259 2015 September
## 14716 Resort Hotel 1 259 2015 September
## 14717 Resort Hotel 1 259 2015 September
## 14718 Resort Hotel 1 259 2015 September
## 14719 Resort Hotel 1 259 2015 September
## 14720 Resort Hotel 1 259 2015 September
## 14721 Resort Hotel 1 259 2015 September
## 14722 Resort Hotel 1 259 2015 September
## 14723 Resort Hotel 1 259 2015 September
## 14724 Resort Hotel 1 259 2015 September
## 14725 Resort Hotel 1 259 2015 September
## 14726 Resort Hotel 1 259 2015 September
## 14727 Resort Hotel 1 259 2015 September
## 14728 Resort Hotel 1 259 2015 September
## 14729 Resort Hotel 1 259 2015 September
## 14730 Resort Hotel 1 259 2015 September
## 14731 Resort Hotel 1 259 2015 September
## 14732 Resort Hotel 1 259 2015 September
## 14733 Resort Hotel 1 259 2015 September
## 14734 Resort Hotel 1 259 2015 September
## 14735 Resort Hotel 1 259 2015 September
## 14736 Resort Hotel 1 259 2015 September
## 14737 Resort Hotel 1 259 2015 September
## 14738 Resort Hotel 1 259 2015 September
## 14739 Resort Hotel 1 259 2015 September
## 14740 Resort Hotel 1 259 2015 September
## 14741 Resort Hotel 1 259 2015 September
## 14742 Resort Hotel 1 259 2015 September
## 14743 Resort Hotel 1 259 2015 September
## 14744 Resort Hotel 1 259 2015 September
## 14745 Resort Hotel 1 259 2015 September
## 14746 Resort Hotel 1 259 2015 September
## 14747 Resort Hotel 1 259 2015 September
## 14748 Resort Hotel 1 259 2015 September
## 14749 Resort Hotel 1 259 2015 September
## 14750 Resort Hotel 1 259 2015 September
## 14751 Resort Hotel 1 259 2015 September
## 14752 Resort Hotel 1 259 2015 September
## 14753 Resort Hotel 1 259 2015 September
## 14754 Resort Hotel 1 259 2015 September
## 14755 Resort Hotel 1 259 2015 September
## 14756 Resort Hotel 1 259 2015 September
## 14757 Resort Hotel 1 259 2015 September
## 14758 Resort Hotel 1 259 2015 September
## 14759 Resort Hotel 1 259 2015 September
## 14760 Resort Hotel 1 259 2015 September
## 14761 Resort Hotel 1 259 2015 September
## 14762 Resort Hotel 1 259 2015 September
## 14763 Resort Hotel 1 259 2015 September
## 14764 Resort Hotel 1 259 2015 September
## 14765 Resort Hotel 1 259 2015 September
## 14766 Resort Hotel 1 259 2015 September
## 14767 Resort Hotel 1 259 2015 September
## 14768 Resort Hotel 1 259 2015 September
## 14769 Resort Hotel 1 259 2015 September
## 14770 Resort Hotel 1 259 2015 September
## 14771 Resort Hotel 1 259 2015 September
## 14772 Resort Hotel 1 259 2015 September
## 14773 Resort Hotel 1 256 2015 September
## 14774 Resort Hotel 1 261 2015 September
## 14775 Resort Hotel 1 195 2015 August
## 14776 Resort Hotel 1 195 2015 August
## 14777 Resort Hotel 1 216 2015 August
## 14778 Resort Hotel 1 187 2015 August
## 14779 Resort Hotel 1 275 2015 October
## 14780 Resort Hotel 1 275 2015 October
## 14781 Resort Hotel 1 275 2015 October
## 14782 Resort Hotel 1 275 2015 October
## 14783 Resort Hotel 1 275 2015 October
## 14784 Resort Hotel 1 275 2015 October
## 14785 Resort Hotel 1 275 2015 October
## 14786 Resort Hotel 1 275 2015 October
## 14787 Resort Hotel 1 275 2015 October
## 14788 Resort Hotel 1 275 2015 October
## 14789 Resort Hotel 1 275 2015 October
## 14790 Resort Hotel 1 275 2015 October
## 14791 Resort Hotel 1 275 2015 October
## 14792 Resort Hotel 1 275 2015 October
## 14793 Resort Hotel 1 275 2015 October
## 14794 Resort Hotel 1 275 2015 October
## 14795 Resort Hotel 1 275 2015 October
## 14796 Resort Hotel 1 275 2015 October
## 14797 Resort Hotel 1 275 2015 October
## 14798 Resort Hotel 1 275 2015 October
## 14799 Resort Hotel 1 275 2015 October
## 14800 Resort Hotel 1 275 2015 October
## 14801 Resort Hotel 1 275 2015 October
## 14802 Resort Hotel 1 275 2015 October
## 14803 Resort Hotel 1 275 2015 October
## 14804 Resort Hotel 1 275 2015 October
## 14805 Resort Hotel 1 275 2015 October
## 14806 Resort Hotel 1 231 2015 September
## 14807 Resort Hotel 1 231 2015 September
## 14808 Resort Hotel 1 236 2015 July
## 14809 Resort Hotel 1 179 2015 July
## 14810 Resort Hotel 1 267 2015 August
## 14811 Resort Hotel 1 210 2015 August
## 14812 Resort Hotel 1 211 2015 August
## 14813 Resort Hotel 1 209 2015 August
## 14814 Resort Hotel 1 181 2015 August
## 14815 Resort Hotel 1 200 2015 August
## 14816 Resort Hotel 1 182 2015 July
## 14817 Resort Hotel 1 195 2015 July
## 14818 Resort Hotel 1 202 2015 September
## 14819 Resort Hotel 1 180 2015 August
## 14820 Resort Hotel 1 184 2015 August
## 14821 Resort Hotel 1 252 2015 October
## 14822 Resort Hotel 1 209 2015 September
## 14823 Resort Hotel 1 213 2015 September
## 14824 Resort Hotel 1 173 2015 August
## 14825 Resort Hotel 1 179 2015 August
## 14826 Resort Hotel 1 135 2015 July
## 14827 Resort Hotel 1 137 2015 July
## 14828 Resort Hotel 1 217 2015 September
## 14829 Resort Hotel 1 222 2015 September
## 14830 Resort Hotel 1 222 2015 September
## 14831 Resort Hotel 1 222 2015 September
## 14832 Resort Hotel 1 222 2015 September
## 14833 Resort Hotel 1 222 2015 September
## 14834 Resort Hotel 1 222 2015 September
## 14835 Resort Hotel 1 222 2015 September
## 14836 Resort Hotel 1 222 2015 September
## 14837 Resort Hotel 1 222 2015 September
## 14838 Resort Hotel 1 222 2015 September
## 14839 Resort Hotel 1 222 2015 September
## 14840 Resort Hotel 1 222 2015 September
## 14841 Resort Hotel 1 222 2015 September
## 14842 Resort Hotel 1 222 2015 September
## 14843 Resort Hotel 1 222 2015 September
## 14844 Resort Hotel 1 222 2015 September
## 14845 Resort Hotel 1 222 2015 September
## 14846 Resort Hotel 1 222 2015 September
## 14847 Resort Hotel 1 222 2015 September
## 14848 Resort Hotel 1 222 2015 September
## 14849 Resort Hotel 1 222 2015 September
## 14850 Resort Hotel 1 222 2015 September
## 14851 Resort Hotel 1 222 2015 September
## 14852 Resort Hotel 1 222 2015 September
## 14853 Resort Hotel 1 222 2015 September
## 14854 Resort Hotel 1 222 2015 September
## 14855 Resort Hotel 1 207 2015 September
## 14856 Resort Hotel 1 207 2015 September
## 14857 Resort Hotel 1 207 2015 September
## 14858 Resort Hotel 1 207 2015 September
## 14859 Resort Hotel 1 207 2015 September
## 14860 Resort Hotel 1 207 2015 September
## 14861 Resort Hotel 1 207 2015 September
## 14862 Resort Hotel 1 207 2015 September
## 14863 Resort Hotel 1 207 2015 September
## 14864 Resort Hotel 1 207 2015 September
## 14865 Resort Hotel 1 129 2015 July
## 14866 Resort Hotel 1 128 2015 July
## 14867 Resort Hotel 1 268 2015 November
## 14868 Resort Hotel 1 127 2015 July
## 14869 Resort Hotel 1 289 2015 November
## 14870 Resort Hotel 1 140 2015 July
## 14871 Resort Hotel 1 141 2015 July
## 14872 Resort Hotel 1 122 2015 July
## 14873 Resort Hotel 1 187 2015 August
## 14874 Resort Hotel 1 191 2015 July
## 14875 Resort Hotel 1 131 2015 July
## 14876 Resort Hotel 1 231 2015 July
## 14877 Resort Hotel 1 132 2015 July
## 14878 Resort Hotel 1 136 2015 July
## 14879 Resort Hotel 1 139 2015 July
## 14880 Resort Hotel 1 139 2015 July
## 14881 Resort Hotel 1 187 2015 July
## 14882 Resort Hotel 0 2 2016 May
## 14883 Resort Hotel 0 1 2016 June
## 14884 Resort Hotel 0 23 2015 October
## 14885 Resort Hotel 1 265 2015 September
## 14886 Resort Hotel 1 265 2015 September
## 14887 Resort Hotel 1 265 2015 September
## 14888 Resort Hotel 1 265 2015 September
## 14889 Resort Hotel 1 265 2015 September
## 14890 Resort Hotel 1 265 2015 September
## 14891 Resort Hotel 1 265 2015 September
## 14892 Resort Hotel 1 265 2015 September
## 14893 Resort Hotel 1 265 2015 September
## 14894 Resort Hotel 1 265 2015 September
## 14895 Resort Hotel 1 265 2015 September
## 14896 Resort Hotel 1 265 2015 September
## 14897 Resort Hotel 1 265 2015 September
## 14898 Resort Hotel 1 265 2015 September
## 14899 Resort Hotel 1 265 2015 September
## 14900 Resort Hotel 1 93 2015 July
## 14901 Resort Hotel 0 109 2016 December
## 14902 Resort Hotel 1 180 2015 July
## 14903 Resort Hotel 1 237 2015 August
## 14904 Resort Hotel 1 237 2015 August
## 14905 Resort Hotel 1 237 2015 August
## 14906 Resort Hotel 1 152 2015 August
## 14907 Resort Hotel 0 31 2016 March
## 14908 Resort Hotel 0 134 2017 April
## 14909 Resort Hotel 0 148 2015 August
## 14910 Resort Hotel 0 241 2016 August
## 14911 Resort Hotel 0 192 2017 August
## 14912 Resort Hotel 1 249 2017 August
## 14913 Resort Hotel 1 57 2015 July
## 14914 Resort Hotel 0 241 2015 December
## 14915 Resort Hotel 0 97 2016 March
## 14916 Resort Hotel 0 126 2016 April
## 14917 Resort Hotel 0 132 2016 May
## 14918 Resort Hotel 0 174 2016 June
## 14919 Resort Hotel 0 288 2016 October
## 14920 Resort Hotel 0 321 2016 November
## 14921 Resort Hotel 1 355 2016 December
## 14922 Resort Hotel 0 185 2017 February
## 14923 Resort Hotel 0 134 2017 April
## 14924 Resort Hotel 1 117 2017 April
## 14925 Resort Hotel 0 125 2017 April
## 14926 Resort Hotel 1 132 2017 April
## 14927 Resort Hotel 0 12 2016 April
## 14928 Resort Hotel 0 72 2016 March
## 14929 Resort Hotel 0 107 2016 August
## 14930 Resort Hotel 0 61 2016 December
## 14931 Resort Hotel 0 61 2016 December
## 14932 Resort Hotel 0 22 2017 August
## 14933 Resort Hotel 1 37 2016 March
## 14934 Resort Hotel 0 0 2015 December
## 14935 Resort Hotel 0 0 2016 January
## 14936 Resort Hotel 0 0 2016 March
## 14937 Resort Hotel 1 228 2015 September
## 14938 Resort Hotel 1 146 2015 July
## 14939 Resort Hotel 1 177 2015 August
## 14940 Resort Hotel 1 177 2015 August
## 14941 Resort Hotel 0 169 2016 March
## 14942 Resort Hotel 0 7 2017 March
## 14943 Resort Hotel 0 152 2017 April
## 14944 Resort Hotel 0 1 2017 January
## 14945 Resort Hotel 1 226 2015 August
## 14946 Resort Hotel 1 234 2015 August
## 14947 Resort Hotel 1 270 2015 November
## 14948 Resort Hotel 1 270 2015 November
## 14949 Resort Hotel 1 149 2015 July
## 14950 Resort Hotel 1 216 2015 August
## 14951 Resort Hotel 1 256 2015 August
## 14952 Resort Hotel 1 256 2015 August
## 14953 Resort Hotel 0 1 2015 July
## 14954 Resort Hotel 0 2 2015 October
## 14955 Resort Hotel 0 8 2016 March
## 14956 Resort Hotel 0 0 2016 May
## 14957 Resort Hotel 0 7 2016 May
## 14958 Resort Hotel 0 18 2016 November
## 14959 Resort Hotel 0 75 2016 April
## 14960 Resort Hotel 1 150 2015 July
## 14961 Resort Hotel 0 3 2015 October
## 14962 Resort Hotel 0 8 2016 January
## 14963 Resort Hotel 0 15 2016 February
## 14964 Resort Hotel 0 3 2016 November
## 14965 Resort Hotel 0 4 2017 February
## 14966 Resort Hotel 1 169 2015 August
## 14967 Resort Hotel 0 0 2015 November
## 14968 Resort Hotel 0 0 2017 February
## 14969 Resort Hotel 0 280 2015 October
## 14970 Resort Hotel 0 195 2017 March
## 14971 Resort Hotel 0 252 2017 April
## 14972 Resort Hotel 1 166 2015 July
## 14973 Resort Hotel 1 166 2015 July
## 14974 Resort Hotel 1 166 2015 July
## 14975 Resort Hotel 1 166 2015 July
## 14976 Resort Hotel 1 166 2015 July
## 14977 Resort Hotel 1 166 2015 July
## 14978 Resort Hotel 1 166 2015 July
## 14979 Resort Hotel 1 166 2015 July
## 14980 Resort Hotel 1 166 2015 July
## 14981 Resort Hotel 1 166 2015 July
## 14982 Resort Hotel 1 166 2015 July
## 14983 Resort Hotel 1 166 2015 July
## 14984 Resort Hotel 1 166 2015 July
## 14985 Resort Hotel 1 166 2015 July
## 14986 Resort Hotel 1 166 2015 July
## 14987 Resort Hotel 1 166 2015 July
## 14988 Resort Hotel 1 166 2015 July
## 14989 Resort Hotel 1 166 2015 July
## 14990 Resort Hotel 1 166 2015 July
## 14991 Resort Hotel 1 166 2015 July
## 14992 Resort Hotel 1 166 2015 July
## 14993 Resort Hotel 1 166 2015 July
## 14994 Resort Hotel 1 166 2015 July
## 14995 Resort Hotel 1 166 2015 July
## 14996 Resort Hotel 1 166 2015 July
## 14997 Resort Hotel 1 244 2015 September
## 14998 Resort Hotel 1 244 2015 September
## 14999 Resort Hotel 1 244 2015 September
## 15000 Resort Hotel 1 244 2015 September
## 15001 Resort Hotel 1 244 2015 September
## 15002 Resort Hotel 1 244 2015 September
## 15003 Resort Hotel 1 244 2015 September
## 15004 Resort Hotel 1 244 2015 September
## 15005 Resort Hotel 1 244 2015 September
## 15006 Resort Hotel 1 244 2015 September
## 15007 Resort Hotel 1 244 2015 September
## 15008 Resort Hotel 1 244 2015 September
## 15009 Resort Hotel 1 244 2015 September
## 15010 Resort Hotel 1 244 2015 September
## 15011 Resort Hotel 1 244 2015 September
## 15012 Resort Hotel 1 244 2015 September
## 15013 Resort Hotel 1 244 2015 September
## 15014 Resort Hotel 1 244 2015 September
## 15015 Resort Hotel 1 244 2015 September
## 15016 Resort Hotel 1 244 2015 September
## 15017 Resort Hotel 1 203 2015 September
## 15018 Resort Hotel 1 212 2015 August
## 15019 Resort Hotel 0 2 2017 January
## 15020 Resort Hotel 0 6 2015 November
## 15021 Resort Hotel 0 6 2015 November
## 15022 Resort Hotel 0 11 2016 February
## 15023 Resort Hotel 0 14 2016 October
## 15024 Resort Hotel 0 7 2016 November
## 15025 Resort Hotel 0 14 2016 October
## 15026 Resort Hotel 0 7 2016 November
## 15027 Resort Hotel 1 299 2015 September
## 15028 Resort Hotel 0 191 2016 April
## 15029 Resort Hotel 0 96 2015 December
## 15030 Resort Hotel 0 61 2016 December
## 15031 Resort Hotel 0 89 2015 December
## 15032 Resort Hotel 0 49 2016 December
## 15033 Resort Hotel 0 0 2015 October
## 15034 Resort Hotel 0 3 2017 January
## 15035 Resort Hotel 1 3 2015 July
## 15036 Resort Hotel 0 0 2015 October
## 15037 Resort Hotel 0 3 2017 January
## 15038 Resort Hotel 1 179 2015 August
## 15039 Resort Hotel 1 200 2015 September
## 15040 Resort Hotel 1 200 2015 September
## 15041 Resort Hotel 0 81 2016 May
## 15042 Resort Hotel 1 182 2015 July
## 15043 Resort Hotel 1 155 2015 July
## 15044 Resort Hotel 0 221 2017 April
## 15045 Resort Hotel 1 250 2015 July
## 15046 Resort Hotel 1 174 2015 August
## 15047 Resort Hotel 0 0 2015 November
## 15048 Resort Hotel 0 1 2015 September
## 15049 Resort Hotel 0 1 2016 May
## 15050 Resort Hotel 0 6 2016 June
## 15051 Resort Hotel 0 6 2016 July
## 15052 Resort Hotel 0 7 2016 October
## 15053 Resort Hotel 0 1 2016 November
## 15054 Resort Hotel 0 0 2016 December
## 15055 Resort Hotel 1 2 2017 January
## 15056 Resort Hotel 0 2 2017 February
## 15057 Resort Hotel 0 1 2017 March
## 15058 Resort Hotel 0 5 2017 May
## 15059 Resort Hotel 0 0 2017 May
## 15060 Resort Hotel 0 1 2016 October
## 15061 Resort Hotel 0 2 2016 December
## 15062 Resort Hotel 0 0 2017 May
## 15063 Resort Hotel 0 0 2016 November
## 15064 Resort Hotel 0 114 2015 September
## 15065 Resort Hotel 0 1 2015 July
## 15066 Resort Hotel 0 1 2015 September
## 15067 Resort Hotel 0 0 2015 September
## 15068 Resort Hotel 0 0 2016 January
## 15069 Resort Hotel 0 0 2016 February
## 15070 Resort Hotel 0 14 2016 July
## 15071 Resort Hotel 0 0 2017 January
## 15072 Resort Hotel 0 2 2017 February
## 15073 Resort Hotel 0 0 2017 March
## 15074 Resort Hotel 0 4 2017 June
## 15075 Resort Hotel 1 198 2015 August
## 15076 Resort Hotel 1 198 2015 August
## 15077 Resort Hotel 0 0 2015 December
## 15078 Resort Hotel 1 135 2015 July
## 15079 Resort Hotel 1 252 2015 September
## 15080 Resort Hotel 1 183 2015 August
## 15081 Resort Hotel 1 277 2015 October
## 15082 Resort Hotel 1 277 2015 October
## 15083 Resort Hotel 1 152 2015 July
## 15084 Resort Hotel 0 1 2015 July
## 15085 Resort Hotel 1 144 2015 August
## 15086 Resort Hotel 0 5 2015 September
## 15087 Resort Hotel 0 1 2016 May
## 15088 Resort Hotel 0 0 2015 November
## 15089 Resort Hotel 0 0 2016 May
## 15090 Resort Hotel 0 1 2017 March
## 15091 Resort Hotel 1 167 2015 July
## 15092 Resort Hotel 0 0 2015 December
## 15093 Resort Hotel 1 155 2015 July
## 15094 Resort Hotel 1 214 2015 October
## 15095 Resort Hotel 1 214 2015 October
## 15096 Resort Hotel 1 214 2015 October
## 15097 Resort Hotel 1 214 2015 October
## 15098 Resort Hotel 1 214 2015 October
## 15099 Resort Hotel 1 214 2015 October
## 15100 Resort Hotel 1 214 2015 October
## 15101 Resort Hotel 1 214 2015 October
## 15102 Resort Hotel 1 214 2015 October
## 15103 Resort Hotel 1 214 2015 October
## 15104 Resort Hotel 1 214 2015 October
## 15105 Resort Hotel 1 214 2015 October
## 15106 Resort Hotel 1 214 2015 October
## 15107 Resort Hotel 1 214 2015 October
## 15108 Resort Hotel 1 214 2015 October
## 15109 Resort Hotel 1 214 2015 October
## 15110 Resort Hotel 1 214 2015 October
## 15111 Resort Hotel 1 214 2015 October
## 15112 Resort Hotel 1 214 2015 October
## 15113 Resort Hotel 1 214 2015 October
## 15114 Resort Hotel 1 214 2015 October
## 15115 Resort Hotel 1 214 2015 October
## 15116 Resort Hotel 1 214 2015 October
## 15117 Resort Hotel 1 214 2015 October
## 15118 Resort Hotel 1 214 2015 October
## 15119 Resort Hotel 0 39 2015 July
## 15120 Resort Hotel 0 1 2015 August
## 15121 Resort Hotel 0 29 2015 August
## 15122 Resort Hotel 0 11 2016 February
## 15123 Resort Hotel 0 23 2016 March
## 15124 Resort Hotel 0 5 2016 June
## 15125 Resort Hotel 1 127 2016 July
## 15126 Resort Hotel 0 128 2016 July
## 15127 Resort Hotel 0 157 2016 August
## 15128 Resort Hotel 0 3 2016 November
## 15129 Resort Hotel 0 46 2017 February
## 15130 Resort Hotel 0 29 2017 April
## 15131 Resort Hotel 0 108 2017 July
## 15132 Resort Hotel 0 142 2017 August
## 15133 Resort Hotel 1 114 2015 July
## 15134 Resort Hotel 1 242 2015 August
## 15135 Resort Hotel 1 235 2015 July
## 15136 Resort Hotel 1 235 2015 July
## 15137 Resort Hotel 1 235 2015 July
## 15138 Resort Hotel 0 32 2017 April
## 15139 Resort Hotel 0 289 2015 November
## 15140 Resort Hotel 1 217 2015 August
## 15141 Resort Hotel 1 178 2015 August
## 15142 Resort Hotel 0 6 2016 November
## 15143 Resort Hotel 0 4 2017 March
## 15144 Resort Hotel 0 0 2015 December
## 15145 Resort Hotel 0 0 2016 March
## 15146 Resort Hotel 0 2 2017 March
## 15147 Resort Hotel 0 8 2016 February
## 15148 Resort Hotel 0 11 2017 May
## 15149 Resort Hotel 1 158 2015 July
## 15150 Resort Hotel 1 235 2015 July
## 15151 Resort Hotel 1 244 2015 September
## 15152 Resort Hotel 1 244 2015 September
## 15153 Resort Hotel 1 244 2015 September
## 15154 Resort Hotel 1 244 2015 September
## 15155 Resort Hotel 1 244 2015 September
## 15156 Resort Hotel 1 244 2015 September
## 15157 Resort Hotel 1 244 2015 September
## 15158 Resort Hotel 1 244 2015 September
## 15159 Resort Hotel 1 244 2015 September
## 15160 Resort Hotel 1 244 2015 September
## 15161 Resort Hotel 1 244 2015 September
## 15162 Resort Hotel 1 244 2015 September
## 15163 Resort Hotel 1 244 2015 September
## 15164 Resort Hotel 1 244 2015 September
## 15165 Resort Hotel 1 244 2015 September
## 15166 Resort Hotel 1 244 2015 September
## 15167 Resort Hotel 1 244 2015 September
## 15168 Resort Hotel 1 244 2015 September
## 15169 Resort Hotel 1 244 2015 September
## 15170 Resort Hotel 1 244 2015 September
## 15171 Resort Hotel 1 244 2015 September
## 15172 Resort Hotel 1 244 2015 September
## 15173 Resort Hotel 1 244 2015 September
## 15174 Resort Hotel 1 244 2015 September
## 15175 Resort Hotel 1 246 2015 September
## 15176 Resort Hotel 1 246 2015 September
## 15177 Resort Hotel 1 246 2015 September
## 15178 Resort Hotel 1 246 2015 September
## 15179 Resort Hotel 1 246 2015 September
## 15180 Resort Hotel 1 246 2015 September
## 15181 Resort Hotel 1 246 2015 September
## 15182 Resort Hotel 1 246 2015 September
## 15183 Resort Hotel 1 246 2015 September
## 15184 Resort Hotel 1 253 2015 September
## 15185 Resort Hotel 1 253 2015 September
## 15186 Resort Hotel 1 253 2015 September
## 15187 Resort Hotel 1 253 2015 September
## 15188 Resort Hotel 1 253 2015 September
## 15189 Resort Hotel 1 253 2015 September
## 15190 Resort Hotel 1 253 2015 September
## 15191 Resort Hotel 1 253 2015 September
## 15192 Resort Hotel 1 253 2015 September
## 15193 Resort Hotel 1 253 2015 September
## 15194 Resort Hotel 1 253 2015 September
## 15195 Resort Hotel 1 253 2015 September
## 15196 Resort Hotel 1 253 2015 September
## 15197 Resort Hotel 1 260 2015 September
## 15198 Resort Hotel 1 260 2015 September
## 15199 Resort Hotel 1 260 2015 September
## 15200 Resort Hotel 1 260 2015 September
## 15201 Resort Hotel 1 260 2015 September
## 15202 Resort Hotel 1 260 2015 September
## 15203 Resort Hotel 1 260 2015 September
## 15204 Resort Hotel 1 267 2015 September
## 15205 Resort Hotel 1 267 2015 September
## 15206 Resort Hotel 1 267 2015 September
## 15207 Resort Hotel 1 267 2015 September
## 15208 Resort Hotel 1 267 2015 September
## 15209 Resort Hotel 1 267 2015 September
## 15210 Resort Hotel 1 267 2015 September
## 15211 Resort Hotel 1 267 2015 September
## 15212 Resort Hotel 1 267 2015 September
## 15213 Resort Hotel 1 267 2015 September
## 15214 Resort Hotel 1 267 2015 September
## 15215 Resort Hotel 1 267 2015 September
## 15216 Resort Hotel 1 267 2015 September
## 15217 Resort Hotel 1 274 2015 October
## 15218 Resort Hotel 1 274 2015 October
## 15219 Resort Hotel 1 274 2015 October
## 15220 Resort Hotel 1 274 2015 October
## 15221 Resort Hotel 1 274 2015 October
## 15222 Resort Hotel 1 274 2015 October
## 15223 Resort Hotel 1 274 2015 October
## 15224 Resort Hotel 0 241 2017 May
## 15225 Resort Hotel 1 196 2015 July
## 15226 Resort Hotel 1 160 2015 August
## 15227 Resort Hotel 1 186 2015 July
## 15228 Resort Hotel 0 99 2016 June
## 15229 Resort Hotel 0 178 2017 June
## 15230 Resort Hotel 0 67 2016 November
## 15231 Resort Hotel 1 152 2015 July
## 15232 Resort Hotel 0 48 2016 October
## 15233 Resort Hotel 0 321 2017 June
## 15234 Resort Hotel 0 0 2015 November
## 15235 Resort Hotel 0 0 2016 March
## 15236 Resort Hotel 0 0 2016 March
## 15237 Resort Hotel 0 0 2016 April
## 15238 Resort Hotel 0 0 2016 April
## 15239 Resort Hotel 0 0 2016 May
## 15240 Resort Hotel 0 1 2016 October
## 15241 Resort Hotel 0 0 2017 January
## 15242 Resort Hotel 0 0 2017 March
## 15243 Resort Hotel 0 0 2017 April
## 15244 Resort Hotel 0 1 2017 May
## 15245 Resort Hotel 1 207 2015 September
## 15246 Resort Hotel 1 207 2015 September
## 15247 Resort Hotel 1 207 2015 September
## 15248 Resort Hotel 1 207 2015 September
## 15249 Resort Hotel 1 207 2015 September
## 15250 Resort Hotel 1 207 2015 September
## 15251 Resort Hotel 1 207 2015 September
## 15252 Resort Hotel 1 207 2015 September
## 15253 Resort Hotel 1 207 2015 September
## 15254 Resort Hotel 0 0 2015 November
## 15255 Resort Hotel 0 4 2016 February
## 15256 Resort Hotel 1 134 2015 July
## 15257 Resort Hotel 0 6 2015 December
## 15258 Resort Hotel 0 1 2016 January
## 15259 Resort Hotel 0 0 2016 February
## 15260 Resort Hotel 0 1 2016 May
## 15261 Resort Hotel 0 0 2017 May
## 15262 Resort Hotel 0 8 2015 October
## 15263 Resort Hotel 0 20 2015 October
## 15264 Resort Hotel 0 24 2015 October
## 15265 Resort Hotel 1 22 2016 May
## 15266 Resort Hotel 0 1 2016 November
## 15267 Resort Hotel 0 26 2017 April
## 15268 Resort Hotel 0 2 2017 August
## 15269 Resort Hotel 1 183 2015 July
## 15270 Resort Hotel 1 144 2015 July
## 15271 Resort Hotel 0 8 2015 July
## 15272 Resort Hotel 0 4 2016 July
## 15273 Resort Hotel 0 4 2017 February
## 15274 Resort Hotel 0 6 2015 November
## 15275 Resort Hotel 0 4 2016 January
## 15276 Resort Hotel 0 6 2016 March
## 15277 Resort Hotel 0 7 2016 April
## 15278 Resort Hotel 0 19 2016 July
## 15279 Resort Hotel 0 8 2016 September
## 15280 Resort Hotel 0 29 2016 November
## 15281 Resort Hotel 0 7 2016 December
## 15282 Resort Hotel 0 13 2017 January
## 15283 Resort Hotel 0 29 2017 March
## 15284 Resort Hotel 0 8 2017 April
## 15285 Resort Hotel 0 22 2017 May
## 15286 Resort Hotel 0 30 2017 March
## 15287 Resort Hotel 0 150 2015 July
## 15288 Resort Hotel 0 2 2016 February
## 15289 Resort Hotel 0 0 2017 January
## 15290 Resort Hotel 0 0 2017 January
## 15291 Resort Hotel 0 0 2017 January
## 15292 Resort Hotel 0 0 2017 January
## 15293 Resort Hotel 0 1 2017 February
## 15294 Resort Hotel 0 325 2017 June
## 15295 Resort Hotel 0 131 2017 June
## 15296 Resort Hotel 0 112 2015 December
## 15297 Resort Hotel 0 31 2016 December
## 15298 Resort Hotel 0 183 2015 July
## 15299 Resort Hotel 0 181 2015 July
## 15300 Resort Hotel 0 126 2015 July
## 15301 Resort Hotel 0 116 2015 July
## 15302 Resort Hotel 0 7 2016 July
## 15303 Resort Hotel 0 135 2015 July
## 15304 Resort Hotel 0 0 2015 July
## 15305 Resort Hotel 0 110 2015 July
## 15306 Resort Hotel 1 197 2015 September
## 15307 Resort Hotel 0 134 2015 July
## 15308 Resort Hotel 1 279 2015 October
## 15309 Resort Hotel 1 279 2015 October
## 15310 Resort Hotel 1 279 2015 October
## 15311 Resort Hotel 1 279 2015 October
## 15312 Resort Hotel 1 279 2015 October
## 15313 Resort Hotel 1 279 2015 October
## 15314 Resort Hotel 1 279 2015 October
## 15315 Resort Hotel 1 279 2015 October
## 15316 Resort Hotel 1 279 2015 October
## 15317 Resort Hotel 1 279 2015 October
## 15318 Resort Hotel 1 279 2015 October
## 15319 Resort Hotel 1 279 2015 October
## 15320 Resort Hotel 1 279 2015 October
## 15321 Resort Hotel 1 279 2015 October
## 15322 Resort Hotel 1 279 2015 October
## 15323 Resort Hotel 1 279 2015 October
## 15324 Resort Hotel 1 279 2015 October
## 15325 Resort Hotel 1 279 2015 October
## 15326 Resort Hotel 1 279 2015 October
## 15327 Resort Hotel 1 279 2015 October
## 15328 Resort Hotel 1 279 2015 October
## 15329 Resort Hotel 1 279 2015 October
## 15330 Resort Hotel 1 279 2015 October
## 15331 Resort Hotel 1 279 2015 October
## 15332 Resort Hotel 1 279 2015 October
## 15333 Resort Hotel 0 145 2015 July
## 15334 Resort Hotel 0 127 2015 July
## 15335 Resort Hotel 0 149 2015 July
## 15336 Resort Hotel 0 149 2015 July
## 15337 Resort Hotel 0 139 2015 July
## 15338 Resort Hotel 1 239 2015 September
## 15339 Resort Hotel 1 239 2015 September
## 15340 Resort Hotel 1 239 2015 September
## 15341 Resort Hotel 1 246 2015 September
## 15342 Resort Hotel 1 246 2015 September
## 15343 Resort Hotel 1 246 2015 September
## 15344 Resort Hotel 1 260 2015 September
## 15345 Resort Hotel 1 260 2015 September
## 15346 Resort Hotel 1 260 2015 September
## 15347 Resort Hotel 1 260 2015 September
## 15348 Resort Hotel 1 260 2015 September
## 15349 Resort Hotel 1 260 2015 September
## 15350 Resort Hotel 0 145 2015 July
## 15351 Resort Hotel 0 152 2015 July
## 15352 Resort Hotel 0 152 2015 July
## 15353 Resort Hotel 0 183 2015 July
## 15354 Resort Hotel 0 226 2015 July
## 15355 Resort Hotel 0 128 2015 July
## 15356 Resort Hotel 0 147 2015 July
## 15357 Resort Hotel 0 121 2015 July
## 15358 Resort Hotel 0 121 2015 July
## 15359 Resort Hotel 0 20 2015 July
## 15360 Resort Hotel 0 2 2016 April
## 15361 Resort Hotel 0 1 2016 December
## 15362 Resort Hotel 0 2 2015 July
## 15363 Resort Hotel 0 2 2016 July
## 15364 Resort Hotel 0 1 2017 March
## 15365 Resort Hotel 0 0 2017 March
## 15366 Resort Hotel 0 3 2017 June
## 15367 Resort Hotel 0 183 2015 July
## 15368 Resort Hotel 0 230 2015 July
## 15369 Resort Hotel 0 186 2015 July
## 15370 Resort Hotel 0 103 2015 July
## 15371 Resort Hotel 0 15 2015 July
## 15372 Resort Hotel 0 186 2015 July
## 15373 Resort Hotel 0 186 2015 July
## 15374 Resort Hotel 0 185 2015 July
## 15375 Resort Hotel 0 128 2015 July
## 15376 Resort Hotel 0 158 2015 July
## 15377 Resort Hotel 0 183 2015 July
## 15378 Resort Hotel 0 149 2015 July
## 15379 Resort Hotel 0 151 2015 July
## 15380 Resort Hotel 0 127 2015 July
## 15381 Resort Hotel 0 151 2015 July
## 15382 Resort Hotel 0 151 2015 July
## 15383 Resort Hotel 0 137 2015 July
## 15384 Resort Hotel 1 164 2015 July
## 15385 Resort Hotel 0 58 2015 July
## 15386 Resort Hotel 0 143 2015 July
## 15387 Resort Hotel 0 123 2015 July
## 15388 Resort Hotel 0 184 2015 July
## 15389 Resort Hotel 0 130 2015 July
## 15390 Resort Hotel 0 130 2015 July
## 15391 Resort Hotel 0 130 2015 July
## 15392 Resort Hotel 0 134 2015 July
## 15393 Resort Hotel 0 123 2015 July
## 15394 Resort Hotel 0 129 2015 July
## 15395 Resort Hotel 0 143 2015 July
## 15396 Resort Hotel 0 143 2015 July
## 15397 Resort Hotel 0 135 2015 July
## 15398 Resort Hotel 0 159 2015 July
## 15399 Resort Hotel 0 84 2015 July
## 15400 Resort Hotel 0 94 2016 July
## 15401 Resort Hotel 0 109 2017 June
## 15402 Resort Hotel 0 1 2015 July
## 15403 Resort Hotel 0 6 2015 July
## 15404 Resort Hotel 0 8 2015 September
## 15405 Resort Hotel 0 30 2015 July
## 15406 Resort Hotel 0 158 2015 July
## 15407 Resort Hotel 0 185 2015 July
## 15408 Resort Hotel 0 142 2015 July
## 15409 Resort Hotel 0 143 2015 July
## 15410 Resort Hotel 0 143 2015 July
## 15411 Resort Hotel 0 157 2015 July
## 15412 Resort Hotel 0 118 2015 July
## 15413 Resort Hotel 1 165 2015 August
## 15414 Resort Hotel 0 2 2015 July
## 15415 Resort Hotel 1 159 2015 August
## 15416 Resort Hotel 1 65 2015 July
## 15417 Resort Hotel 0 187 2015 July
## 15418 Resort Hotel 0 162 2015 July
## 15419 Resort Hotel 0 162 2015 July
## 15420 Resort Hotel 0 189 2015 July
## 15421 Resort Hotel 0 189 2015 July
## 15422 Resort Hotel 0 155 2015 July
## 15423 Resort Hotel 0 152 2015 July
## 15424 Resort Hotel 0 59 2015 July
## 15425 Resort Hotel 0 59 2015 July
## 15426 Resort Hotel 0 127 2015 July
## 15427 Resort Hotel 0 188 2015 July
## 15428 Resort Hotel 0 115 2015 July
## 15429 Resort Hotel 0 0 2015 July
## 15430 Resort Hotel 0 2 2015 July
## 15431 Resort Hotel 0 129 2015 July
## 15432 Resort Hotel 0 151 2015 July
## 15433 Resort Hotel 0 134 2015 July
## 15434 Resort Hotel 0 134 2015 July
## 15435 Resort Hotel 0 158 2015 July
## 15436 Resort Hotel 0 139 2015 July
## 15437 Resort Hotel 0 129 2015 July
## 15438 Resort Hotel 0 151 2015 July
## 15439 Resort Hotel 0 237 2015 July
## 15440 Resort Hotel 0 237 2015 July
## 15441 Resort Hotel 0 185 2015 July
## 15442 Resort Hotel 0 108 2015 July
## 15443 Resort Hotel 0 62 2015 July
## 15444 Resort Hotel 0 185 2015 July
## 15445 Resort Hotel 0 237 2015 July
## 15446 Resort Hotel 0 5 2015 July
## 15447 Resort Hotel 0 0 2015 July
## 15448 Resort Hotel 0 184 2015 July
## 15449 Resort Hotel 0 0 2015 July
## 15450 Resort Hotel 0 0 2015 July
## 15451 Resort Hotel 0 16 2015 July
## 15452 Resort Hotel 0 129 2015 July
## 15453 Resort Hotel 0 0 2015 July
## 15454 Resort Hotel 0 0 2015 July
## 15455 Resort Hotel 0 148 2015 July
## 15456 Resort Hotel 0 94 2015 July
## 15457 Resort Hotel 0 188 2015 July
## 15458 Resort Hotel 0 137 2015 July
## 15459 Resort Hotel 0 29 2015 July
## 15460 Resort Hotel 0 184 2015 July
## 15461 Resort Hotel 0 93 2015 July
## 15462 Resort Hotel 0 162 2015 July
## 15463 Resort Hotel 0 98 2015 July
## 15464 Resort Hotel 0 172 2015 July
## 15465 Resort Hotel 0 2 2015 July
## 15466 Resort Hotel 0 0 2017 January
## 15467 Resort Hotel 0 6 2015 July
## 15468 Resort Hotel 0 10 2015 July
## 15469 Resort Hotel 0 3 2015 July
## 15470 Resort Hotel 0 17 2015 July
## 15471 Resort Hotel 0 125 2015 July
## 15472 Resort Hotel 0 41 2015 July
## 15473 Resort Hotel 0 41 2015 July
## 15474 Resort Hotel 0 25 2015 July
## 15475 Resort Hotel 0 131 2015 July
## 15476 Resort Hotel 0 0 2015 July
## 15477 Resort Hotel 0 17 2015 July
## 15478 Resort Hotel 0 0 2015 July
## 15479 Resort Hotel 0 0 2015 July
## 15480 Resort Hotel 0 130 2015 July
## 15481 Resort Hotel 0 0 2015 July
## 15482 Resort Hotel 0 0 2015 July
## 15483 Resort Hotel 0 189 2015 July
## 15484 Resort Hotel 0 6 2015 July
## 15485 Resort Hotel 0 133 2015 July
## 15486 Resort Hotel 0 29 2015 July
## 15487 Resort Hotel 0 29 2015 July
## 15488 Resort Hotel 0 0 2015 July
## 15489 Resort Hotel 0 133 2015 July
## 15490 Resort Hotel 0 59 2015 July
## 15491 Resort Hotel 0 35 2015 July
## 15492 Resort Hotel 0 35 2015 July
## 15493 Resort Hotel 0 241 2015 July
## 15494 Resort Hotel 0 86 2015 July
## 15495 Resort Hotel 0 194 2015 July
## 15496 Resort Hotel 0 161 2015 July
## 15497 Resort Hotel 0 90 2015 July
## 15498 Resort Hotel 0 50 2015 July
## 15499 Resort Hotel 0 104 2015 July
## 15500 Resort Hotel 0 90 2015 July
## 15501 Resort Hotel 0 48 2015 July
## 15502 Resort Hotel 0 22 2015 July
## 15503 Resort Hotel 0 39 2015 July
## 15504 Resort Hotel 0 157 2015 July
## 15505 Resort Hotel 0 140 2015 July
## 15506 Resort Hotel 0 13 2015 July
## 15507 Resort Hotel 0 50 2015 July
## 15508 Resort Hotel 0 0 2015 July
## 15509 Resort Hotel 0 97 2015 July
## 15510 Resort Hotel 0 201 2015 July
## 15511 Resort Hotel 0 36 2015 July
## 15512 Resort Hotel 0 93 2015 July
## 15513 Resort Hotel 0 45 2015 July
## 15514 Resort Hotel 0 126 2015 July
## 15515 Resort Hotel 0 44 2015 July
## 15516 Resort Hotel 0 40 2015 July
## 15517 Resort Hotel 0 28 2015 July
## 15518 Resort Hotel 0 42 2015 July
## 15519 Resort Hotel 0 64 2015 July
## 15520 Resort Hotel 0 1 2015 July
## 15521 Resort Hotel 0 190 2015 July
## 15522 Resort Hotel 0 3 2015 July
## 15523 Resort Hotel 0 151 2015 July
## 15524 Resort Hotel 0 37 2015 July
## 15525 Resort Hotel 0 37 2015 July
## 15526 Resort Hotel 0 178 2015 July
## 15527 Resort Hotel 0 37 2015 July
## 15528 Resort Hotel 0 37 2015 July
## 15529 Resort Hotel 0 35 2015 July
## 15530 Resort Hotel 0 68 2015 July
## 15531 Resort Hotel 0 0 2015 July
## 15532 Resort Hotel 0 65 2015 July
## 15533 Resort Hotel 0 44 2015 July
## 15534 Resort Hotel 0 27 2015 July
## 15535 Resort Hotel 0 0 2015 July
## 15536 Resort Hotel 0 106 2015 July
## 15537 Resort Hotel 0 2 2015 July
## 15538 Resort Hotel 0 3 2016 January
## 15539 Resort Hotel 0 0 2016 June
## 15540 Resort Hotel 0 43 2015 July
## 15541 Resort Hotel 0 1 2015 July
## 15542 Resort Hotel 0 56 2015 July
## 15543 Resort Hotel 0 55 2015 July
## 15544 Resort Hotel 0 70 2015 July
## 15545 Resort Hotel 0 71 2015 July
## 15546 Resort Hotel 0 96 2015 July
## 15547 Resort Hotel 0 96 2015 July
## 15548 Resort Hotel 0 0 2015 July
## 15549 Resort Hotel 0 44 2015 July
## 15550 Resort Hotel 0 51 2015 July
## 15551 Resort Hotel 0 25 2015 July
## 15552 Resort Hotel 0 51 2015 July
## 15553 Resort Hotel 0 94 2015 July
## 15554 Resort Hotel 0 10 2015 July
## 15555 Resort Hotel 0 63 2015 July
## 15556 Resort Hotel 0 54 2015 July
## 15557 Resort Hotel 0 153 2015 July
## 15558 Resort Hotel 0 22 2015 July
## 15559 Resort Hotel 0 39 2015 July
## 15560 Resort Hotel 0 10 2015 July
## 15561 Resort Hotel 0 57 2015 July
## 15562 Resort Hotel 0 57 2015 July
## 15563 Resort Hotel 0 8 2015 July
## 15564 Resort Hotel 0 38 2015 July
## 15565 Resort Hotel 0 67 2015 July
## 15566 Resort Hotel 0 51 2015 July
## 15567 Resort Hotel 0 33 2015 July
## 15568 Resort Hotel 0 98 2015 July
## 15569 Resort Hotel 0 98 2015 July
## 15570 Resort Hotel 0 72 2015 July
## 15571 Resort Hotel 0 33 2015 July
## 15572 Resort Hotel 0 84 2015 July
## 15573 Resort Hotel 0 11 2015 July
## 15574 Resort Hotel 0 11 2015 July
## 15575 Resort Hotel 0 11 2015 July
## 15576 Resort Hotel 0 9 2015 July
## 15577 Resort Hotel 0 1 2015 July
## 15578 Resort Hotel 0 82 2015 August
## 15579 Resort Hotel 0 262 2015 September
## 15580 Resort Hotel 0 46 2015 July
## 15581 Resort Hotel 0 55 2015 July
## 15582 Resort Hotel 0 49 2015 July
## 15583 Resort Hotel 0 52 2015 July
## 15584 Resort Hotel 0 171 2015 July
## 15585 Resort Hotel 0 62 2015 July
## 15586 Resort Hotel 0 108 2015 July
## 15587 Resort Hotel 1 209 2015 August
## 15588 Resort Hotel 0 52 2015 July
## 15589 Resort Hotel 0 33 2015 July
## 15590 Resort Hotel 0 67 2015 July
## 15591 Resort Hotel 0 30 2015 July
## 15592 Resort Hotel 0 42 2015 July
## 15593 Resort Hotel 0 42 2015 July
## 15594 Resort Hotel 0 42 2015 July
## 15595 Resort Hotel 0 14 2015 July
## 15596 Resort Hotel 0 50 2015 July
## 15597 Resort Hotel 0 7 2015 July
## 15598 Resort Hotel 0 26 2015 July
## 15599 Resort Hotel 0 59 2015 July
## 15600 Resort Hotel 0 130 2017 July
## 15601 Resort Hotel 0 66 2015 July
## 15602 Resort Hotel 1 256 2015 August
## 15603 Resort Hotel 0 160 2015 July
## 15604 Resort Hotel 0 160 2015 July
## 15605 Resort Hotel 0 136 2015 July
## 15606 Resort Hotel 0 136 2015 July
## 15607 Resort Hotel 0 26 2015 July
## 15608 Resort Hotel 0 43 2015 July
## 15609 Resort Hotel 0 42 2015 July
## 15610 Resort Hotel 0 38 2015 July
## 15611 Resort Hotel 0 42 2015 July
## 15612 Resort Hotel 0 50 2015 July
## 15613 Resort Hotel 0 46 2015 July
## 15614 Resort Hotel 0 153 2015 July
## 15615 Resort Hotel 0 153 2015 July
## 15616 Resort Hotel 0 50 2015 July
## 15617 Resort Hotel 0 50 2015 July
## 15618 Resort Hotel 0 48 2015 July
## 15619 Resort Hotel 0 48 2015 July
## 15620 Resort Hotel 1 171 2015 August
## 15621 Resort Hotel 0 41 2015 July
## 15622 Resort Hotel 1 243 2015 September
## 15623 Resort Hotel 1 243 2015 September
## 15624 Resort Hotel 1 243 2015 September
## 15625 Resort Hotel 1 243 2015 September
## 15626 Resort Hotel 1 243 2015 September
## 15627 Resort Hotel 1 243 2015 September
## 15628 Resort Hotel 1 243 2015 September
## 15629 Resort Hotel 0 44 2015 July
## 15630 Resort Hotel 0 74 2015 July
## 15631 Resort Hotel 0 73 2015 July
## 15632 Resort Hotel 0 35 2015 July
## 15633 Resort Hotel 1 153 2015 August
## 15634 Resort Hotel 0 142 2015 July
## 15635 Resort Hotel 0 142 2015 July
## 15636 Resort Hotel 0 68 2015 July
## 15637 Resort Hotel 0 24 2015 July
## 15638 Resort Hotel 0 296 2015 July
## 15639 Resort Hotel 0 296 2015 July
## 15640 Resort Hotel 0 71 2015 July
## 15641 Resort Hotel 0 13 2015 July
## 15642 Resort Hotel 0 40 2015 July
## 15643 Resort Hotel 0 9 2015 July
## 15644 Resort Hotel 1 239 2015 August
## 15645 Resort Hotel 0 93 2015 July
## 15646 Resort Hotel 0 13 2015 July
## 15647 Resort Hotel 0 13 2015 July
## 15648 Resort Hotel 0 26 2015 July
## 15649 Resort Hotel 0 26 2015 July
## 15650 Resort Hotel 0 26 2015 July
## 15651 Resort Hotel 0 72 2015 July
## 15652 Resort Hotel 0 61 2015 July
## 15653 Resort Hotel 0 56 2015 July
## 15654 Resort Hotel 0 35 2015 July
## 15655 Resort Hotel 1 468 2016 May
## 15656 Resort Hotel 1 468 2016 May
## 15657 Resort Hotel 1 468 2016 May
## 15658 Resort Hotel 1 468 2016 May
## 15659 Resort Hotel 1 468 2016 May
## 15660 Resort Hotel 1 468 2016 May
## 15661 Resort Hotel 1 468 2016 May
## 15662 Resort Hotel 1 468 2016 May
## 15663 Resort Hotel 1 468 2016 May
## 15664 Resort Hotel 1 468 2016 May
## 15665 Resort Hotel 1 468 2016 May
## 15666 Resort Hotel 1 468 2016 May
## 15667 Resort Hotel 1 468 2016 May
## 15668 Resort Hotel 1 468 2016 May
## 15669 Resort Hotel 1 468 2016 May
## 15670 Resort Hotel 1 468 2016 May
## 15671 Resort Hotel 1 468 2016 May
## 15672 Resort Hotel 1 468 2016 May
## 15673 Resort Hotel 1 468 2016 May
## 15674 Resort Hotel 1 468 2016 May
## 15675 Resort Hotel 0 143 2015 July
## 15676 Resort Hotel 0 50 2015 July
## 15677 Resort Hotel 0 47 2015 July
## 15678 Resort Hotel 0 20 2015 July
## 15679 Resort Hotel 0 30 2015 July
## 15680 Resort Hotel 0 53 2015 July
## 15681 Resort Hotel 0 53 2015 July
## 15682 Resort Hotel 0 72 2015 July
## 15683 Resort Hotel 0 72 2015 July
## 15684 Resort Hotel 0 78 2015 July
## 15685 Resort Hotel 0 36 2015 July
## 15686 Resort Hotel 0 78 2015 July
## 15687 Resort Hotel 0 152 2015 July
## 15688 Resort Hotel 0 102 2015 July
## 15689 Resort Hotel 0 64 2015 July
## 15690 Resort Hotel 0 24 2015 July
## 15691 Resort Hotel 0 48 2015 July
## 15692 Resort Hotel 0 72 2015 July
## 15693 Resort Hotel 0 27 2015 July
## 15694 Resort Hotel 0 254 2015 July
## 15695 Resort Hotel 0 28 2015 July
## 15696 Resort Hotel 0 24 2015 July
## 15697 Resort Hotel 0 0 2015 July
## 15698 Resort Hotel 0 152 2015 July
## 15699 Resort Hotel 0 53 2015 July
## 15700 Resort Hotel 0 48 2015 July
## 15701 Resort Hotel 1 245 2015 September
## 15702 Resort Hotel 1 245 2015 September
## 15703 Resort Hotel 1 245 2015 September
## 15704 Resort Hotel 1 245 2015 September
## 15705 Resort Hotel 1 245 2015 September
## 15706 Resort Hotel 1 245 2015 September
## 15707 Resort Hotel 1 245 2015 September
## 15708 Resort Hotel 1 245 2015 September
## 15709 Resort Hotel 1 245 2015 September
## 15710 Resort Hotel 1 245 2015 September
## 15711 Resort Hotel 1 245 2015 September
## 15712 Resort Hotel 1 245 2015 September
## 15713 Resort Hotel 1 245 2015 September
## 15714 Resort Hotel 1 245 2015 September
## 15715 Resort Hotel 1 245 2015 September
## 15716 Resort Hotel 1 245 2015 September
## 15717 Resort Hotel 1 245 2015 September
## 15718 Resort Hotel 1 245 2015 September
## 15719 Resort Hotel 1 245 2015 September
## 15720 Resort Hotel 1 245 2015 September
## 15721 Resort Hotel 1 245 2015 September
## 15722 Resort Hotel 1 245 2015 September
## 15723 Resort Hotel 1 245 2015 September
## 15724 Resort Hotel 1 245 2015 September
## 15725 Resort Hotel 1 245 2015 September
## 15726 Resort Hotel 1 245 2015 September
## 15727 Resort Hotel 1 245 2015 September
## 15728 Resort Hotel 0 32 2015 July
## 15729 Resort Hotel 0 45 2015 July
## 15730 Resort Hotel 0 49 2015 July
## 15731 Resort Hotel 0 67 2015 July
## 15732 Resort Hotel 0 67 2015 July
## 15733 Resort Hotel 0 53 2015 July
## 15734 Resort Hotel 0 11 2015 July
## 15735 Resort Hotel 0 204 2015 July
## 15736 Resort Hotel 0 0 2015 July
## 15737 Resort Hotel 0 3 2015 July
## 15738 Resort Hotel 0 34 2015 July
## 15739 Resort Hotel 0 55 2015 July
## 15740 Resort Hotel 0 50 2015 July
## 15741 Resort Hotel 0 42 2015 July
## 15742 Resort Hotel 0 48 2015 July
## 15743 Resort Hotel 0 33 2015 July
## 15744 Resort Hotel 0 23 2015 July
## 15745 Resort Hotel 0 53 2015 July
## 15746 Resort Hotel 0 47 2015 July
## 15747 Resort Hotel 0 156 2015 August
## 15748 Resort Hotel 0 45 2015 July
## 15749 Resort Hotel 0 29 2015 July
## 15750 Resort Hotel 0 39 2015 July
## 15751 Resort Hotel 0 3 2015 July
## 15752 Resort Hotel 0 48 2015 July
## 15753 Resort Hotel 0 53 2015 July
## 15754 Resort Hotel 1 244 2015 September
## 15755 Resort Hotel 1 244 2015 September
## 15756 Resort Hotel 1 244 2015 September
## 15757 Resort Hotel 1 244 2015 September
## 15758 Resort Hotel 1 244 2015 September
## 15759 Resort Hotel 1 244 2015 September
## 15760 Resort Hotel 1 244 2015 September
## 15761 Resort Hotel 1 244 2015 September
## 15762 Resort Hotel 1 244 2015 September
## 15763 Resort Hotel 1 244 2015 September
## 15764 Resort Hotel 1 244 2015 September
## 15765 Resort Hotel 1 244 2015 September
## 15766 Resort Hotel 1 244 2015 September
## 15767 Resort Hotel 1 244 2015 September
## 15768 Resort Hotel 1 172 2015 August
## 15769 Resort Hotel 0 25 2015 July
## 15770 Resort Hotel 0 38 2015 July
## 15771 Resort Hotel 0 50 2015 July
## 15772 Resort Hotel 0 39 2015 July
## 15773 Resort Hotel 0 31 2015 July
## 15774 Resort Hotel 0 39 2015 July
## 15775 Resort Hotel 0 31 2015 July
## 15776 Resort Hotel 0 56 2015 July
## 15777 Resort Hotel 0 222 2017 July
## 15778 Resort Hotel 0 15 2015 July
## 15779 Resort Hotel 0 16 2015 July
## 15780 Resort Hotel 0 56 2015 July
## 15781 Resort Hotel 0 49 2015 July
## 15782 Resort Hotel 0 167 2015 July
## 15783 Resort Hotel 0 15 2015 July
## 15784 Resort Hotel 0 15 2015 July
## 15785 Resort Hotel 0 14 2015 July
## 15786 Resort Hotel 0 32 2015 July
## 15787 Resort Hotel 0 39 2015 July
## 15788 Resort Hotel 0 46 2015 July
## 15789 Resort Hotel 0 32 2015 July
## 15790 Resort Hotel 0 32 2015 July
## 15791 Resort Hotel 0 51 2015 July
## 15792 Resort Hotel 0 33 2015 July
## 15793 Resort Hotel 0 33 2015 July
## 15794 Resort Hotel 0 31 2015 July
## 15795 Resort Hotel 0 0 2015 August
## 15796 Resort Hotel 0 16 2015 July
## 15797 Resort Hotel 0 25 2015 July
## 15798 Resort Hotel 0 1 2015 August
## 15799 Resort Hotel 0 157 2015 August
## 15800 Resort Hotel 0 38 2015 July
## 15801 Resort Hotel 0 82 2015 July
## 15802 Resort Hotel 0 33 2015 July
## 15803 Resort Hotel 0 43 2015 July
## 15804 Resort Hotel 0 44 2015 July
## 15805 Resort Hotel 0 21 2015 July
## 15806 Resort Hotel 0 39 2015 July
## 15807 Resort Hotel 0 53 2015 July
## 15808 Resort Hotel 0 122 2015 July
## 15809 Resort Hotel 0 1 2015 August
## 15810 Resort Hotel 0 31 2015 July
## 15811 Resort Hotel 0 3 2015 July
## 15812 Resort Hotel 0 11 2015 July
## 15813 Resort Hotel 0 146 2015 July
## 15814 Resort Hotel 0 44 2015 August
## 15815 Resort Hotel 0 77 2015 July
## 15816 Resort Hotel 1 261 2015 October
## 15817 Resort Hotel 0 118 2015 July
## 15818 Resort Hotel 0 64 2015 August
## 15819 Resort Hotel 0 49 2015 July
## 15820 Resort Hotel 0 22 2015 August
## 15821 Resort Hotel 0 11 2015 July
## 15822 Resort Hotel 0 48 2015 July
## 15823 Resort Hotel 0 58 2015 July
## 15824 Resort Hotel 0 255 2015 July
## 15825 Resort Hotel 0 209 2015 July
## 15826 Resort Hotel 0 210 2015 July
## 15827 Resort Hotel 0 25 2015 August
## 15828 Resort Hotel 0 24 2015 July
## 15829 Resort Hotel 0 24 2015 July
## 15830 Resort Hotel 0 128 2015 July
## 15831 Resort Hotel 0 156 2015 July
## 15832 Resort Hotel 0 119 2015 July
## 15833 Resort Hotel 0 49 2015 July
## 15834 Resort Hotel 0 67 2015 August
## 15835 Resort Hotel 0 67 2015 August
## 15836 Resort Hotel 0 4 2015 August
## 15837 Resort Hotel 0 1 2015 August
## 15838 Resort Hotel 0 143 2015 July
## 15839 Resort Hotel 0 143 2015 July
## 15840 Resort Hotel 0 23 2015 July
## 15841 Resort Hotel 0 2 2015 August
## 15842 Resort Hotel 0 8 2015 July
## 15843 Resort Hotel 0 0 2015 August
## 15844 Resort Hotel 0 35 2015 July
## 15845 Resort Hotel 0 0 2015 August
## 15846 Resort Hotel 0 177 2015 July
## 15847 Resort Hotel 1 218 2015 August
## 15848 Resort Hotel 0 88 2015 July
## 15849 Resort Hotel 0 123 2015 August
## 15850 Resort Hotel 0 157 2015 July
## 15851 Resort Hotel 0 123 2015 July
## 15852 Resort Hotel 0 0 2015 August
## 15853 Resort Hotel 0 158 2015 August
## 15854 Resort Hotel 0 79 2015 August
## 15855 Resort Hotel 0 77 2015 August
## 15856 Resort Hotel 0 0 2015 August
## 15857 Resort Hotel 0 79 2015 July
## 15858 Resort Hotel 0 79 2015 July
## 15859 Resort Hotel 0 0 2015 August
## 15860 Resort Hotel 0 91 2015 July
## 15861 Resort Hotel 0 82 2015 August
## 15862 Resort Hotel 0 48 2015 July
## 15863 Resort Hotel 0 264 2017 August
## 15864 Resort Hotel 0 69 2015 July
## 15865 Resort Hotel 0 182 2015 July
## 15866 Resort Hotel 0 146 2015 July
## 15867 Resort Hotel 0 107 2015 July
## 15868 Resort Hotel 0 73 2015 July
## 15869 Resort Hotel 0 73 2015 July
## 15870 Resort Hotel 0 155 2015 July
## 15871 Resort Hotel 0 155 2015 July
## 15872 Resort Hotel 0 2 2015 August
## 15873 Resort Hotel 0 1 2016 January
## 15874 Resort Hotel 0 5 2016 September
## 15875 Resort Hotel 0 12 2017 January
## 15876 Resort Hotel 0 6 2017 February
## 15877 Resort Hotel 0 6 2017 May
## 15878 Resort Hotel 0 110 2015 August
## 15879 Resort Hotel 0 2 2015 August
## 15880 Resort Hotel 0 54 2015 July
## 15881 Resort Hotel 0 5 2015 August
## 15882 Resort Hotel 0 210 2015 July
## 15883 Resort Hotel 0 202 2015 July
## 15884 Resort Hotel 0 1 2015 August
## 15885 Resort Hotel 0 0 2015 August
## 15886 Resort Hotel 0 154 2015 July
## 15887 Resort Hotel 0 311 2015 July
## 15888 Resort Hotel 0 6 2015 August
## 15889 Resort Hotel 0 155 2015 July
## 15890 Resort Hotel 0 211 2015 August
## 15891 Resort Hotel 0 5 2015 August
## 15892 Resort Hotel 0 0 2015 August
## 15893 Resort Hotel 0 55 2015 August
## 15894 Resort Hotel 0 0 2015 August
## 15895 Resort Hotel 0 328 2015 August
## 15896 Resort Hotel 0 210 2015 August
## 15897 Resort Hotel 1 219 2015 August
## 15898 Resort Hotel 0 211 2015 August
## 15899 Resort Hotel 0 88 2015 August
## 15900 Resort Hotel 0 160 2015 August
## 15901 Resort Hotel 0 82 2015 August
## 15902 Resort Hotel 0 67 2015 July
## 15903 Resort Hotel 0 67 2015 July
## 15904 Resort Hotel 0 93 2015 August
## 15905 Resort Hotel 0 82 2015 August
## 15906 Resort Hotel 0 103 2015 August
## 15907 Resort Hotel 0 142 2015 July
## 15908 Resort Hotel 0 5 2015 August
## 15909 Resort Hotel 0 66 2015 August
## 15910 Resort Hotel 0 93 2015 August
## 15911 Resort Hotel 0 85 2015 August
## 15912 Resort Hotel 0 73 2015 July
## 15913 Resort Hotel 0 3 2015 August
## 15914 Resort Hotel 0 177 2015 July
## 15915 Resort Hotel 0 160 2015 August
## 15916 Resort Hotel 0 160 2015 August
## 15917 Resort Hotel 0 160 2015 August
## 15918 Resort Hotel 0 160 2015 August
## 15919 Resort Hotel 0 258 2015 August
## 15920 Resort Hotel 0 0 2015 August
## 15921 Resort Hotel 1 195 2015 September
## 15922 Resort Hotel 0 159 2015 August
## 15923 Resort Hotel 0 112 2015 August
## 15924 Resort Hotel 0 1 2015 August
## 15925 Resort Hotel 0 0 2015 August
## 15926 Resort Hotel 0 46 2015 August
## 15927 Resort Hotel 0 107 2015 August
## 15928 Resort Hotel 0 166 2015 August
## 15929 Resort Hotel 0 157 2015 August
## 15930 Resort Hotel 0 10 2015 August
## 15931 Resort Hotel 0 82 2015 August
## 15932 Resort Hotel 0 70 2015 August
## 15933 Resort Hotel 0 51 2015 July
## 15934 Resort Hotel 0 124 2015 August
## 15935 Resort Hotel 0 86 2015 August
## 15936 Resort Hotel 0 32 2015 August
## 15937 Resort Hotel 0 156 2015 August
## 15938 Resort Hotel 0 12 2015 August
## 15939 Resort Hotel 0 75 2015 August
## 15940 Resort Hotel 0 143 2015 August
## 15941 Resort Hotel 0 4 2015 August
## 15942 Resort Hotel 0 167 2015 August
## 15943 Resort Hotel 0 194 2015 August
## 15944 Resort Hotel 0 67 2015 August
## 15945 Resort Hotel 0 55 2015 August
## 15946 Resort Hotel 0 41 2015 August
## 15947 Resort Hotel 0 157 2015 August
## 15948 Resort Hotel 0 1 2015 August
## 15949 Resort Hotel 0 78 2015 August
## 15950 Resort Hotel 0 16 2015 August
## 15951 Resort Hotel 0 6 2015 August
## 15952 Resort Hotel 0 71 2015 August
## 15953 Resort Hotel 0 0 2015 August
## 15954 Resort Hotel 0 127 2015 August
## 15955 Resort Hotel 0 129 2015 August
## 15956 Resort Hotel 0 33 2015 August
## 15957 Resort Hotel 0 2 2015 August
## 15958 Resort Hotel 0 82 2015 August
## 15959 Resort Hotel 0 177 2015 August
## 15960 Resort Hotel 0 82 2015 August
## 15961 Resort Hotel 0 53 2015 August
## 15962 Resort Hotel 0 53 2015 August
## 15963 Resort Hotel 0 53 2015 August
## 15964 Resort Hotel 0 51 2015 August
## 15965 Resort Hotel 0 0 2015 August
## 15966 Resort Hotel 0 129 2015 August
## 15967 Resort Hotel 0 195 2015 August
## 15968 Resort Hotel 1 92 2015 December
## 15969 Resort Hotel 0 67 2015 August
## 15970 Resort Hotel 0 55 2015 August
## 15971 Resort Hotel 0 61 2015 August
## 15972 Resort Hotel 0 0 2015 August
## 15973 Resort Hotel 0 310 2015 August
## 15974 Resort Hotel 0 129 2015 August
## 15975 Resort Hotel 0 460 2015 August
## 15976 Resort Hotel 0 17 2015 August
## 15977 Resort Hotel 0 460 2015 August
## 15978 Resort Hotel 0 23 2015 August
## 15979 Resort Hotel 0 62 2015 August
## 15980 Resort Hotel 0 213 2015 August
## 15981 Resort Hotel 0 202 2015 July
## 15982 Resort Hotel 0 82 2015 August
## 15983 Resort Hotel 0 105 2015 August
## 15984 Resort Hotel 0 96 2015 August
## 15985 Resort Hotel 0 131 2015 August
## 15986 Resort Hotel 0 69 2015 August
## 15987 Resort Hotel 0 68 2015 August
## 15988 Resort Hotel 0 74 2015 August
## 15989 Resort Hotel 0 130 2015 August
## 15990 Resort Hotel 0 74 2015 August
## 15991 Resort Hotel 0 74 2015 August
## 15992 Resort Hotel 0 4 2015 August
## 15993 Resort Hotel 0 0 2015 August
## 15994 Resort Hotel 0 81 2015 August
## 15995 Resort Hotel 0 179 2015 August
## 15996 Resort Hotel 1 4 2015 August
## 15997 Resort Hotel 0 103 2015 August
## 15998 Resort Hotel 0 146 2015 August
## 15999 Resort Hotel 0 146 2015 August
## 16000 Resort Hotel 0 17 2015 August
## 16001 Resort Hotel 0 146 2015 August
## 16002 Resort Hotel 0 82 2015 August
## 16003 Resort Hotel 0 108 2015 August
## 16004 Resort Hotel 0 146 2015 August
## 16005 Resort Hotel 0 126 2015 August
## 16006 Resort Hotel 0 112 2015 August
## 16007 Resort Hotel 1 181 2015 August
## 16008 Resort Hotel 0 217 2015 August
## 16009 Resort Hotel 0 227 2017 May
## 16010 Resort Hotel 0 111 2015 August
## 16011 Resort Hotel 0 129 2015 August
## 16012 Resort Hotel 0 83 2015 August
## 16013 Resort Hotel 0 135 2015 August
## 16014 Resort Hotel 0 81 2015 August
## 16015 Resort Hotel 0 107 2015 August
## 16016 Resort Hotel 0 5 2015 August
## 16017 Resort Hotel 0 155 2015 August
## 16018 Resort Hotel 0 120 2015 August
## 16019 Resort Hotel 0 120 2015 August
## 16020 Resort Hotel 0 0 2015 August
## 16021 Resort Hotel 0 61 2015 August
## 16022 Resort Hotel 0 48 2015 August
## 16023 Resort Hotel 0 67 2015 August
## 16024 Resort Hotel 0 67 2015 August
## 16025 Resort Hotel 0 211 2015 August
## 16026 Resort Hotel 0 153 2015 August
## 16027 Resort Hotel 0 153 2015 August
## 16028 Resort Hotel 0 25 2015 August
## 16029 Resort Hotel 0 153 2015 August
## 16030 Resort Hotel 0 40 2015 August
## 16031 Resort Hotel 0 40 2015 August
## 16032 Resort Hotel 0 6 2015 August
## 16033 Resort Hotel 0 94 2015 August
## 16034 Resort Hotel 0 158 2016 August
## 16035 Resort Hotel 0 151 2015 August
## 16036 Resort Hotel 0 148 2015 August
## 16037 Resort Hotel 0 0 2015 August
## 16038 Resort Hotel 0 39 2015 August
## 16039 Resort Hotel 0 4 2015 August
## 16040 Resort Hotel 0 0 2015 August
## 16041 Resort Hotel 1 274 2015 October
## 16042 Resort Hotel 1 274 2015 October
## 16043 Resort Hotel 1 274 2015 October
## 16044 Resort Hotel 1 274 2015 October
## 16045 Resort Hotel 1 274 2015 October
## 16046 Resort Hotel 1 274 2015 October
## 16047 Resort Hotel 0 41 2015 August
## 16048 Resort Hotel 1 222 2015 September
## 16049 Resort Hotel 1 222 2015 September
## 16050 Resort Hotel 1 222 2015 September
## 16051 Resort Hotel 0 174 2015 August
## 16052 Resort Hotel 0 164 2015 July
## 16053 Resort Hotel 0 164 2015 July
## 16054 Resort Hotel 0 33 2015 August
## 16055 Resort Hotel 0 107 2015 August
## 16056 Resort Hotel 0 107 2015 August
## 16057 Resort Hotel 0 70 2015 August
## 16058 Resort Hotel 0 212 2015 August
## 16059 Resort Hotel 0 212 2015 August
## 16060 Resort Hotel 0 41 2015 August
## 16061 Resort Hotel 0 34 2015 August
## 16062 Resort Hotel 0 109 2015 August
## 16063 Resort Hotel 0 33 2015 August
## 16064 Resort Hotel 0 35 2015 August
## 16065 Resort Hotel 0 114 2015 August
## 16066 Resort Hotel 0 0 2015 August
## 16067 Resort Hotel 0 0 2015 August
## 16068 Resort Hotel 0 56 2015 August
## 16069 Resort Hotel 0 190 2015 August
## 16070 Resort Hotel 0 190 2015 August
## 16071 Resort Hotel 0 190 2015 August
## 16072 Resort Hotel 0 85 2015 August
## 16073 Resort Hotel 0 85 2015 August
## 16074 Resort Hotel 0 153 2015 August
## 16075 Resort Hotel 0 65 2015 August
## 16076 Resort Hotel 0 5 2015 August
## 16077 Resort Hotel 0 49 2015 August
## 16078 Resort Hotel 0 174 2015 August
## 16079 Resort Hotel 0 21 2015 August
## 16080 Resort Hotel 0 67 2015 August
## 16081 Resort Hotel 0 0 2015 August
## 16082 Resort Hotel 0 36 2015 August
## 16083 Resort Hotel 0 29 2015 August
## 16084 Resort Hotel 0 72 2015 August
## 16085 Resort Hotel 0 69 2015 August
## 16086 Resort Hotel 0 51 2015 August
## 16087 Resort Hotel 0 1 2015 August
## 16088 Resort Hotel 0 103 2015 August
## 16089 Resort Hotel 0 175 2015 July
## 16090 Resort Hotel 0 98 2015 August
## 16091 Resort Hotel 0 269 2015 August
## 16092 Resort Hotel 0 37 2015 August
## 16093 Resort Hotel 0 33 2015 August
## 16094 Resort Hotel 0 107 2015 August
## 16095 Resort Hotel 0 34 2015 August
## 16096 Resort Hotel 0 88 2015 August
## 16097 Resort Hotel 0 28 2015 August
## 16098 Resort Hotel 0 146 2015 August
## 16099 Resort Hotel 0 88 2015 August
## 16100 Resort Hotel 0 41 2015 August
## 16101 Resort Hotel 0 40 2015 August
## 16102 Resort Hotel 0 64 2015 August
## 16103 Resort Hotel 0 130 2015 August
## 16104 Resort Hotel 0 64 2015 August
## 16105 Resort Hotel 0 64 2015 August
## 16106 Resort Hotel 0 49 2015 August
## 16107 Resort Hotel 0 14 2015 August
## 16108 Resort Hotel 0 58 2015 August
## 16109 Resort Hotel 0 38 2015 August
## 16110 Resort Hotel 0 56 2015 August
## 16111 Resort Hotel 0 0 2015 August
## 16112 Resort Hotel 0 62 2015 August
## 16113 Resort Hotel 0 164 2015 August
## 16114 Resort Hotel 0 60 2015 August
## 16115 Resort Hotel 0 0 2015 August
## 16116 Resort Hotel 0 89 2015 August
## 16117 Resort Hotel 0 40 2015 August
## 16118 Resort Hotel 0 0 2015 August
## 16119 Resort Hotel 1 34 2015 September
## 16120 Resort Hotel 0 150 2015 August
## 16121 Resort Hotel 0 329 2015 August
## 16122 Resort Hotel 0 90 2015 August
## 16123 Resort Hotel 0 90 2015 August
## 16124 Resort Hotel 0 89 2015 August
## 16125 Resort Hotel 0 173 2015 August
## 16126 Resort Hotel 0 173 2015 August
## 16127 Resort Hotel 0 176 2015 August
## 16128 Resort Hotel 0 61 2015 August
## 16129 Resort Hotel 0 61 2015 August
## 16130 Resort Hotel 0 61 2015 August
## 16131 Resort Hotel 0 108 2015 August
## 16132 Resort Hotel 0 98 2017 July
## 16133 Resort Hotel 0 136 2015 August
## 16134 Resort Hotel 0 134 2015 August
## 16135 Resort Hotel 0 191 2015 August
## 16136 Resort Hotel 0 8 2015 August
## 16137 Resort Hotel 0 3 2015 August
## 16138 Resort Hotel 0 65 2015 August
## 16139 Resort Hotel 0 48 2015 August
## 16140 Resort Hotel 0 69 2015 August
## 16141 Resort Hotel 0 48 2015 August
## 16142 Resort Hotel 0 108 2015 August
## 16143 Resort Hotel 0 182 2015 August
## 16144 Resort Hotel 0 86 2015 August
## 16145 Resort Hotel 0 76 2015 August
## 16146 Resort Hotel 0 38 2015 August
## 16147 Resort Hotel 0 48 2015 August
## 16148 Resort Hotel 0 19 2015 August
## 16149 Resort Hotel 0 151 2015 August
## 16150 Resort Hotel 0 1 2015 August
## 16151 Resort Hotel 0 100 2015 August
## 16152 Resort Hotel 0 89 2015 August
## 16153 Resort Hotel 0 62 2015 August
## 16154 Resort Hotel 0 9 2015 August
## 16155 Resort Hotel 0 72 2015 August
## 16156 Resort Hotel 0 8 2015 August
## 16157 Resort Hotel 0 72 2015 August
## 16158 Resort Hotel 0 72 2015 August
## 16159 Resort Hotel 0 68 2015 August
## 16160 Resort Hotel 0 181 2015 August
## 16161 Resort Hotel 0 101 2015 August
## 16162 Resort Hotel 0 220 2015 August
## 16163 Resort Hotel 0 0 2015 August
## 16164 Resort Hotel 0 93 2015 August
## 16165 Resort Hotel 0 45 2015 August
## 16166 Resort Hotel 0 3 2015 August
## 16167 Resort Hotel 0 37 2015 August
## 16168 Resort Hotel 0 37 2015 August
## 16169 Resort Hotel 0 21 2015 August
## 16170 Resort Hotel 0 26 2015 August
## 16171 Resort Hotel 0 2 2015 August
## 16172 Resort Hotel 0 37 2015 August
## 16173 Resort Hotel 0 222 2015 August
## 16174 Resort Hotel 0 39 2015 August
## 16175 Resort Hotel 0 159 2015 August
## 16176 Resort Hotel 0 3 2015 August
## 16177 Resort Hotel 0 115 2015 August
## 16178 Resort Hotel 1 236 2015 August
## 16179 Resort Hotel 0 37 2015 August
## 16180 Resort Hotel 0 7 2015 August
## 16181 Resort Hotel 0 37 2015 August
## 16182 Resort Hotel 0 37 2015 August
## 16183 Resort Hotel 0 118 2015 August
## 16184 Resort Hotel 0 1 2015 August
## 16185 Resort Hotel 0 32 2015 August
## 16186 Resort Hotel 0 196 2015 August
## 16187 Resort Hotel 0 196 2015 August
## 16188 Resort Hotel 0 7 2015 August
## 16189 Resort Hotel 0 81 2015 August
## 16190 Resort Hotel 0 81 2015 August
## 16191 Resort Hotel 0 71 2015 August
## 16192 Resort Hotel 0 20 2015 August
## 16193 Resort Hotel 0 68 2015 August
## 16194 Resort Hotel 0 3 2015 August
## 16195 Resort Hotel 0 3 2015 August
## 16196 Resort Hotel 1 212 2015 September
## 16197 Resort Hotel 0 0 2015 August
## 16198 Resort Hotel 0 74 2015 August
## 16199 Resort Hotel 0 75 2015 August
## 16200 Resort Hotel 0 30 2015 August
## 16201 Resort Hotel 0 0 2015 August
## 16202 Resort Hotel 0 168 2015 August
## 16203 Resort Hotel 0 79 2015 August
## 16204 Resort Hotel 0 127 2015 August
## 16205 Resort Hotel 0 64 2015 August
## 16206 Resort Hotel 0 95 2015 August
## 16207 Resort Hotel 0 195 2015 August
## 16208 Resort Hotel 0 151 2017 August
## 16209 Resort Hotel 0 2 2015 August
## 16210 Resort Hotel 0 187 2015 August
## 16211 Resort Hotel 0 118 2015 August
## 16212 Resort Hotel 0 64 2015 August
## 16213 Resort Hotel 0 68 2015 August
## 16214 Resort Hotel 0 59 2015 August
## 16215 Resort Hotel 0 82 2015 August
## 16216 Resort Hotel 0 144 2015 August
## 16217 Resort Hotel 0 169 2015 August
## 16218 Resort Hotel 0 132 2015 August
## 16219 Resort Hotel 0 8 2015 August
## 16220 Resort Hotel 0 79 2015 August
## 16221 Resort Hotel 0 63 2015 August
## 16222 Resort Hotel 1 243 2015 September
## 16223 Resort Hotel 0 13 2015 August
## 16224 Resort Hotel 0 89 2015 August
## 16225 Resort Hotel 0 77 2015 August
## 16226 Resort Hotel 0 139 2015 August
## 16227 Resort Hotel 0 167 2015 August
## 16228 Resort Hotel 0 66 2015 August
## 16229 Resort Hotel 0 10 2015 August
## 16230 Resort Hotel 0 84 2015 August
## 16231 Resort Hotel 0 94 2015 August
## 16232 Resort Hotel 0 8 2015 August
## 16233 Resort Hotel 0 1 2015 August
## 16234 Resort Hotel 0 0 2015 August
## 16235 Resort Hotel 0 0 2015 August
## 16236 Resort Hotel 0 124 2015 August
## 16237 Resort Hotel 0 71 2015 August
## 16238 Resort Hotel 0 49 2016 August
## 16239 Resort Hotel 0 2 2015 August
## 16240 Resort Hotel 0 82 2015 August
## 16241 Resort Hotel 0 190 2015 August
## 16242 Resort Hotel 0 70 2015 August
## 16243 Resort Hotel 0 175 2015 August
## 16244 Resort Hotel 0 70 2015 August
## 16245 Resort Hotel 0 81 2015 August
## 16246 Resort Hotel 0 75 2015 August
## 16247 Resort Hotel 0 84 2015 August
## 16248 Resort Hotel 0 64 2015 August
## 16249 Resort Hotel 0 95 2015 August
## 16250 Resort Hotel 0 100 2015 August
## 16251 Resort Hotel 0 74 2015 August
## 16252 Resort Hotel 0 21 2015 August
## 16253 Resort Hotel 0 8 2015 August
## 16254 Resort Hotel 0 86 2015 August
## 16255 Resort Hotel 0 41 2015 August
## 16256 Resort Hotel 0 6 2015 August
## 16257 Resort Hotel 0 2 2015 August
## 16258 Resort Hotel 1 292 2015 October
## 16259 Resort Hotel 1 292 2015 October
## 16260 Resort Hotel 1 292 2015 October
## 16261 Resort Hotel 0 77 2015 August
## 16262 Resort Hotel 0 77 2015 August
## 16263 Resort Hotel 0 73 2015 August
## 16264 Resort Hotel 0 76 2015 August
## 16265 Resort Hotel 0 318 2015 August
## 16266 Resort Hotel 0 210 2016 August
## 16267 Resort Hotel 0 53 2015 August
## 16268 Resort Hotel 0 68 2015 August
## 16269 Resort Hotel 0 32 2015 August
## 16270 Resort Hotel 0 32 2015 August
## 16271 Resort Hotel 0 86 2015 August
## 16272 Resort Hotel 0 86 2015 August
## 16273 Resort Hotel 0 86 2015 August
## 16274 Resort Hotel 0 100 2015 August
## 16275 Resort Hotel 0 173 2015 August
## 16276 Resort Hotel 0 145 2015 August
## 16277 Resort Hotel 0 117 2015 August
## 16278 Resort Hotel 0 117 2015 August
## 16279 Resort Hotel 0 171 2015 August
## 16280 Resort Hotel 0 117 2015 August
## 16281 Resort Hotel 0 81 2015 August
## 16282 Resort Hotel 0 81 2015 August
## 16283 Resort Hotel 0 81 2015 August
## 16284 Resort Hotel 0 10 2015 August
## 16285 Resort Hotel 0 90 2015 August
## 16286 Resort Hotel 0 90 2015 August
## 16287 Resort Hotel 0 83 2015 August
## 16288 Resort Hotel 0 108 2015 August
## 16289 Resort Hotel 0 113 2015 August
## 16290 Resort Hotel 0 58 2015 August
## 16291 Resort Hotel 0 14 2015 August
## 16292 Resort Hotel 0 148 2015 August
## 16293 Resort Hotel 1 232 2015 August
## 16294 Resort Hotel 0 87 2015 August
## 16295 Resort Hotel 0 159 2015 August
## 16296 Resort Hotel 0 96 2015 August
## 16297 Resort Hotel 0 144 2015 August
## 16298 Resort Hotel 0 106 2015 August
## 16299 Resort Hotel 0 15 2015 August
## 16300 Resort Hotel 0 120 2015 August
## 16301 Resort Hotel 0 120 2015 August
## 16302 Resort Hotel 0 13 2015 August
## 16303 Resort Hotel 0 78 2015 August
## 16304 Resort Hotel 0 115 2015 August
## 16305 Resort Hotel 0 84 2015 August
## 16306 Resort Hotel 0 84 2015 August
## 16307 Resort Hotel 0 81 2015 August
## 16308 Resort Hotel 0 81 2015 August
## 16309 Resort Hotel 0 13 2015 August
## 16310 Resort Hotel 0 11 2015 August
## 16311 Resort Hotel 0 71 2015 August
## 16312 Resort Hotel 0 12 2015 August
## 16313 Resort Hotel 0 7 2015 August
## 16314 Resort Hotel 0 78 2015 August
## 16315 Resort Hotel 0 54 2015 August
## 16316 Resort Hotel 0 102 2015 August
## 16317 Resort Hotel 0 66 2015 August
## 16318 Resort Hotel 0 50 2015 August
## 16319 Resort Hotel 0 61 2015 August
## 16320 Resort Hotel 0 1 2015 August
## 16321 Resort Hotel 0 147 2015 August
## 16322 Resort Hotel 0 171 2015 August
## 16323 Resort Hotel 0 125 2015 August
## 16324 Resort Hotel 0 63 2015 August
## 16325 Resort Hotel 0 63 2015 August
## 16326 Resort Hotel 0 78 2015 August
## 16327 Resort Hotel 0 87 2015 August
## 16328 Resort Hotel 0 74 2015 August
## 16329 Resort Hotel 0 91 2015 August
## 16330 Resort Hotel 0 77 2015 August
## 16331 Resort Hotel 0 272 2015 August
## 16332 Resort Hotel 0 125 2015 August
## 16333 Resort Hotel 0 107 2015 August
## 16334 Resort Hotel 0 45 2015 August
## 16335 Resort Hotel 0 35 2015 August
## 16336 Resort Hotel 0 65 2015 August
## 16337 Resort Hotel 0 0 2015 August
## 16338 Resort Hotel 0 59 2015 August
## 16339 Resort Hotel 0 80 2015 August
## 16340 Resort Hotel 0 70 2015 August
## 16341 Resort Hotel 0 12 2015 August
## 16342 Resort Hotel 0 75 2015 August
## 16343 Resort Hotel 0 159 2015 August
## 16344 Resort Hotel 0 0 2015 August
## 16345 Resort Hotel 0 0 2015 August
## 16346 Resort Hotel 0 66 2015 August
## 16347 Resort Hotel 0 68 2015 August
## 16348 Resort Hotel 0 117 2015 August
## 16349 Resort Hotel 0 117 2015 August
## 16350 Resort Hotel 0 0 2015 August
## 16351 Resort Hotel 0 58 2015 August
## 16352 Resort Hotel 0 58 2015 August
## 16353 Resort Hotel 0 85 2015 August
## 16354 Resort Hotel 0 83 2015 August
## 16355 Resort Hotel 0 83 2015 August
## 16356 Resort Hotel 1 226 2015 September
## 16357 Resort Hotel 0 74 2015 August
## 16358 Resort Hotel 0 58 2015 August
## 16359 Resort Hotel 1 218 2015 August
## 16360 Resort Hotel 0 1 2015 August
## 16361 Resort Hotel 0 272 2015 August
## 16362 Resort Hotel 0 59 2015 August
## 16363 Resort Hotel 0 0 2015 August
## 16364 Resort Hotel 0 58 2015 August
## 16365 Resort Hotel 0 107 2015 August
## 16366 Resort Hotel 0 83 2015 August
## 16367 Resort Hotel 1 0 2015 August
## 16368 Resort Hotel 0 11 2015 August
## 16369 Resort Hotel 0 22 2015 August
## 16370 Resort Hotel 0 59 2015 August
## 16371 Resort Hotel 0 21 2015 August
## 16372 Resort Hotel 0 5 2015 August
## 16373 Resort Hotel 0 79 2015 August
## 16374 Resort Hotel 0 41 2015 October
## 16375 Resort Hotel 0 62 2015 August
## 16376 Resort Hotel 0 0 2015 August
## 16377 Resort Hotel 0 100 2015 August
## 16378 Resort Hotel 0 15 2015 August
## 16379 Resort Hotel 1 266 2015 September
## 16380 Resort Hotel 0 0 2015 August
## 16381 Resort Hotel 0 21 2015 August
## 16382 Resort Hotel 0 0 2015 August
## 16383 Resort Hotel 0 57 2015 August
## 16384 Resort Hotel 0 45 2015 August
## 16385 Resort Hotel 0 17 2015 August
## 16386 Resort Hotel 0 8 2016 February
## 16387 Resort Hotel 0 1 2016 March
## 16388 Resort Hotel 0 3 2016 April
## 16389 Resort Hotel 0 6 2016 May
## 16390 Resort Hotel 0 7 2016 November
## 16391 Resort Hotel 0 8 2017 April
## 16392 Resort Hotel 0 69 2015 August
## 16393 Resort Hotel 0 150 2015 August
## 16394 Resort Hotel 0 31 2015 August
## 16395 Resort Hotel 0 31 2015 August
## 16396 Resort Hotel 0 39 2015 August
## 16397 Resort Hotel 0 100 2015 August
## 16398 Resort Hotel 0 62 2015 August
## 16399 Resort Hotel 0 97 2015 August
## 16400 Resort Hotel 0 37 2015 August
## 16401 Resort Hotel 0 37 2015 August
## 16402 Resort Hotel 0 87 2015 August
## 16403 Resort Hotel 0 10 2015 August
## 16404 Resort Hotel 0 49 2015 August
## 16405 Resort Hotel 0 38 2015 August
## 16406 Resort Hotel 0 49 2015 August
## 16407 Resort Hotel 0 49 2015 August
## 16408 Resort Hotel 0 193 2015 August
## 16409 Resort Hotel 1 289 2015 September
## 16410 Resort Hotel 1 288 2015 September
## 16411 Resort Hotel 1 288 2015 September
## 16412 Resort Hotel 1 288 2015 September
## 16413 Resort Hotel 1 288 2015 September
## 16414 Resort Hotel 0 239 2015 August
## 16415 Resort Hotel 0 32 2015 August
## 16416 Resort Hotel 0 60 2015 August
## 16417 Resort Hotel 0 59 2015 August
## 16418 Resort Hotel 0 60 2015 August
## 16419 Resort Hotel 0 258 2017 July
## 16420 Resort Hotel 0 46 2015 August
## 16421 Resort Hotel 0 26 2015 August
## 16422 Resort Hotel 0 4 2015 August
## 16423 Resort Hotel 0 36 2015 August
## 16424 Resort Hotel 0 77 2015 August
## 16425 Resort Hotel 0 15 2015 August
## 16426 Resort Hotel 0 152 2015 August
## 16427 Resort Hotel 0 12 2015 August
## 16428 Resort Hotel 0 0 2015 August
## 16429 Resort Hotel 0 82 2015 August
## 16430 Resort Hotel 0 37 2015 August
## 16431 Resort Hotel 0 62 2015 August
## 16432 Resort Hotel 0 69 2015 August
## 16433 Resort Hotel 0 233 2015 August
## 16434 Resort Hotel 0 47 2015 August
## 16435 Resort Hotel 0 42 2015 August
## 16436 Resort Hotel 0 52 2015 August
## 16437 Resort Hotel 0 146 2015 August
## 16438 Resort Hotel 0 47 2015 August
## 16439 Resort Hotel 0 55 2015 August
## 16440 Resort Hotel 0 88 2015 August
## 16441 Resort Hotel 0 0 2015 August
## 16442 Resort Hotel 1 283 2015 October
## 16443 Resort Hotel 0 84 2015 August
## 16444 Resort Hotel 0 205 2015 August
## 16445 Resort Hotel 1 244 2015 September
## 16446 Resort Hotel 0 48 2015 August
## 16447 Resort Hotel 0 62 2015 August
## 16448 Resort Hotel 0 31 2015 August
## 16449 Resort Hotel 0 31 2015 August
## 16450 Resort Hotel 0 172 2015 August
## 16451 Resort Hotel 0 101 2015 August
## 16452 Resort Hotel 0 37 2015 August
## 16453 Resort Hotel 0 29 2015 August
## 16454 Resort Hotel 0 22 2015 August
## 16455 Resort Hotel 0 77 2015 August
## 16456 Resort Hotel 0 77 2015 August
## 16457 Resort Hotel 0 9 2015 August
## 16458 Resort Hotel 0 88 2015 August
## 16459 Resort Hotel 0 58 2015 August
## 16460 Resort Hotel 0 45 2015 August
## 16461 Resort Hotel 0 45 2015 August
## 16462 Resort Hotel 0 198 2015 August
## 16463 Resort Hotel 0 198 2015 August
## 16464 Resort Hotel 0 0 2015 August
## 16465 Resort Hotel 0 212 2015 August
## 16466 Resort Hotel 0 45 2015 August
## 16467 Resort Hotel 0 86 2015 August
## 16468 Resort Hotel 0 86 2015 August
## 16469 Resort Hotel 0 56 2015 August
## 16470 Resort Hotel 0 76 2015 August
## 16471 Resort Hotel 0 12 2015 August
## 16472 Resort Hotel 0 151 2015 August
## 16473 Resort Hotel 0 204 2015 August
## 16474 Resort Hotel 0 0 2015 August
## 16475 Resort Hotel 0 22 2015 August
## 16476 Resort Hotel 0 35 2015 August
## 16477 Resort Hotel 0 201 2015 August
## 16478 Resort Hotel 0 196 2015 August
## 16479 Resort Hotel 0 128 2015 August
## 16480 Resort Hotel 0 42 2015 August
## 16481 Resort Hotel 0 37 2015 August
## 16482 Resort Hotel 0 37 2015 August
## 16483 Resort Hotel 0 163 2015 August
## 16484 Resort Hotel 0 204 2015 August
## 16485 Resort Hotel 0 37 2015 August
## 16486 Resort Hotel 0 0 2015 August
## 16487 Resort Hotel 0 52 2015 August
## 16488 Resort Hotel 0 63 2015 August
## 16489 Resort Hotel 0 12 2015 August
## 16490 Resort Hotel 0 199 2015 August
## 16491 Resort Hotel 0 39 2015 August
## 16492 Resort Hotel 0 0 2015 August
## 16493 Resort Hotel 0 48 2015 August
## 16494 Resort Hotel 1 243 2015 September
## 16495 Resort Hotel 0 124 2015 August
## 16496 Resort Hotel 0 199 2015 August
## 16497 Resort Hotel 0 186 2015 August
## 16498 Resort Hotel 0 54 2015 August
## 16499 Resort Hotel 0 0 2015 August
## 16500 Resort Hotel 0 1 2015 August
## 16501 Resort Hotel 0 0 2015 August
## 16502 Resort Hotel 1 190 2015 September
## 16503 Resort Hotel 0 59 2015 August
## 16504 Resort Hotel 0 89 2015 August
## 16505 Resort Hotel 0 89 2015 August
## 16506 Resort Hotel 0 107 2015 August
## 16507 Resort Hotel 0 1 2015 August
## 16508 Resort Hotel 0 61 2015 August
## 16509 Resort Hotel 0 61 2015 August
## 16510 Resort Hotel 0 13 2015 August
## 16511 Resort Hotel 0 0 2015 August
## 16512 Resort Hotel 0 13 2015 August
## 16513 Resort Hotel 0 236 2015 August
## 16514 Resort Hotel 0 23 2015 August
## 16515 Resort Hotel 0 27 2015 August
## 16516 Resort Hotel 0 25 2015 August
## 16517 Resort Hotel 0 1 2015 August
## 16518 Resort Hotel 0 0 2016 October
## 16519 Resort Hotel 0 0 2016 October
## 16520 Resort Hotel 0 25 2015 August
## 16521 Resort Hotel 0 107 2015 August
## 16522 Resort Hotel 0 62 2015 August
## 16523 Resort Hotel 0 24 2015 August
## 16524 Resort Hotel 0 194 2015 September
## 16525 Resort Hotel 0 28 2015 August
## 16526 Resort Hotel 0 29 2015 August
## 16527 Resort Hotel 0 97 2015 August
## 16528 Resort Hotel 0 32 2017 April
## 16529 Resort Hotel 0 39 2015 August
## 16530 Resort Hotel 0 67 2015 August
## 16531 Resort Hotel 0 13 2015 August
## 16532 Resort Hotel 0 29 2015 August
## 16533 Resort Hotel 0 29 2015 August
## 16534 Resort Hotel 0 1 2015 August
## 16535 Resort Hotel 0 1 2015 August
## 16536 Resort Hotel 0 211 2015 August
## 16537 Resort Hotel 0 90 2015 August
## 16538 Resort Hotel 0 1 2015 August
## 16539 Resort Hotel 0 35 2015 August
## 16540 Resort Hotel 0 67 2015 August
## 16541 Resort Hotel 0 236 2015 August
## 16542 Resort Hotel 0 38 2015 August
## 16543 Resort Hotel 0 67 2015 August
## 16544 Resort Hotel 1 200 2015 September
## 16545 Resort Hotel 1 200 2015 September
## 16546 Resort Hotel 1 247 2015 October
## 16547 Resort Hotel 1 247 2015 October
## 16548 Resort Hotel 1 247 2015 October
## 16549 Resort Hotel 1 247 2015 October
## 16550 Resort Hotel 1 247 2015 October
## 16551 Resort Hotel 1 247 2015 October
## 16552 Resort Hotel 1 247 2015 October
## 16553 Resort Hotel 1 247 2015 October
## 16554 Resort Hotel 1 247 2015 October
## 16555 Resort Hotel 1 247 2015 October
## 16556 Resort Hotel 1 247 2015 October
## 16557 Resort Hotel 1 247 2015 October
## 16558 Resort Hotel 1 247 2015 October
## 16559 Resort Hotel 1 247 2015 October
## 16560 Resort Hotel 1 247 2015 October
## 16561 Resort Hotel 1 247 2015 October
## 16562 Resort Hotel 1 247 2015 October
## 16563 Resort Hotel 1 247 2015 October
## 16564 Resort Hotel 1 247 2015 October
## 16565 Resort Hotel 1 247 2015 October
## 16566 Resort Hotel 1 247 2015 October
## 16567 Resort Hotel 1 247 2015 October
## 16568 Resort Hotel 1 247 2015 October
## 16569 Resort Hotel 1 247 2015 October
## 16570 Resort Hotel 1 247 2015 October
## 16571 Resort Hotel 1 247 2015 October
## 16572 Resort Hotel 1 247 2015 October
## 16573 Resort Hotel 0 57 2015 August
## 16574 Resort Hotel 0 110 2017 June
## 16575 Resort Hotel 0 26 2015 August
## 16576 Resort Hotel 0 44 2015 August
## 16577 Resort Hotel 0 31 2015 August
## 16578 Resort Hotel 0 177 2015 August
## 16579 Resort Hotel 0 139 2015 August
## 16580 Resort Hotel 0 139 2015 August
## 16581 Resort Hotel 0 101 2015 August
## 16582 Resort Hotel 0 23 2015 August
## 16583 Resort Hotel 0 78 2015 August
## 16584 Resort Hotel 0 65 2015 August
## 16585 Resort Hotel 0 26 2015 September
## 16586 Resort Hotel 0 94 2015 August
## 16587 Resort Hotel 0 94 2015 August
## 16588 Resort Hotel 0 6 2015 August
## 16589 Resort Hotel 0 19 2015 September
## 16590 Resort Hotel 0 28 2015 August
## 16591 Resort Hotel 0 38 2015 August
## 16592 Resort Hotel 0 40 2015 August
## 16593 Resort Hotel 0 23 2015 August
## 16594 Resort Hotel 0 196 2015 September
## 16595 Resort Hotel 0 31 2015 September
## 16596 Resort Hotel 0 70 2015 August
## 16597 Resort Hotel 0 17 2015 August
## 16598 Resort Hotel 0 0 2015 September
## 16599 Resort Hotel 0 134 2015 August
## 16600 Resort Hotel 0 64 2015 August
## 16601 Resort Hotel 0 18 2015 August
## 16602 Resort Hotel 0 41 2015 September
## 16603 Resort Hotel 0 23 2015 August
## 16604 Resort Hotel 0 51 2015 August
## 16605 Resort Hotel 1 216 2015 October
## 16606 Resort Hotel 0 57 2015 August
## 16607 Resort Hotel 0 34 2015 August
## 16608 Resort Hotel 0 55 2015 August
## 16609 Resort Hotel 0 29 2015 August
## 16610 Resort Hotel 0 61 2015 August
## 16611 Resort Hotel 0 68 2015 August
## 16612 Resort Hotel 0 219 2015 September
## 16613 Resort Hotel 0 220 2015 September
## 16614 Resort Hotel 0 36 2015 September
## 16615 Resort Hotel 0 210 2015 August
## 16616 Resort Hotel 0 305 2017 August
## 16617 Resort Hotel 0 74 2015 August
## 16618 Resort Hotel 0 37 2015 September
## 16619 Resort Hotel 0 218 2015 September
## 16620 Resort Hotel 0 37 2015 August
## 16621 Resort Hotel 0 104 2017 June
## 16622 Resort Hotel 0 27 2015 August
## 16623 Resort Hotel 0 74 2015 August
## 16624 Resort Hotel 0 23 2015 August
## 16625 Resort Hotel 0 10 2015 August
## 16626 Resort Hotel 0 33 2015 August
## 16627 Resort Hotel 0 27 2015 August
## 16628 Resort Hotel 0 33 2015 August
## 16629 Resort Hotel 0 74 2015 August
## 16630 Resort Hotel 0 52 2015 August
## 16631 Resort Hotel 0 185 2015 August
## 16632 Resort Hotel 0 101 2015 August
## 16633 Resort Hotel 0 36 2015 August
## 16634 Resort Hotel 0 68 2015 August
## 16635 Resort Hotel 0 68 2015 August
## 16636 Resort Hotel 0 232 2015 August
## 16637 Resort Hotel 0 55 2015 September
## 16638 Resort Hotel 0 4 2015 September
## 16639 Resort Hotel 0 47 2015 August
## 16640 Resort Hotel 0 71 2015 August
## 16641 Resort Hotel 0 112 2015 August
## 16642 Resort Hotel 0 142 2015 September
## 16643 Resort Hotel 0 199 2015 September
## 16644 Resort Hotel 0 199 2015 September
## 16645 Resort Hotel 0 154 2015 September
## 16646 Resort Hotel 0 17 2017 January
## 16647 Resort Hotel 0 289 2015 September
## 16648 Resort Hotel 0 205 2015 September
## 16649 Resort Hotel 0 154 2015 September
## 16650 Resort Hotel 0 208 2015 September
## 16651 Resort Hotel 0 205 2015 September
## 16652 Resort Hotel 0 4 2015 September
## 16653 Resort Hotel 0 25 2015 September
## 16654 Resort Hotel 0 0 2015 September
## 16655 Resort Hotel 0 70 2015 August
## 16656 Resort Hotel 0 29 2015 September
## 16657 Resort Hotel 0 199 2015 September
## 16658 Resort Hotel 0 59 2015 August
## 16659 Resort Hotel 0 44 2015 August
## 16660 Resort Hotel 0 199 2015 September
## 16661 Resort Hotel 0 199 2015 September
## 16662 Resort Hotel 0 105 2015 September
## 16663 Resort Hotel 0 67 2015 September
## 16664 Resort Hotel 0 0 2015 September
## 16665 Resort Hotel 1 222 2015 September
## 16666 Resort Hotel 0 186 2015 September
## 16667 Resort Hotel 0 186 2015 September
## 16668 Resort Hotel 0 186 2015 September
## 16669 Resort Hotel 0 297 2015 September
## 16670 Resort Hotel 0 297 2015 September
## 16671 Resort Hotel 0 189 2015 August
## 16672 Resort Hotel 0 288 2015 September
## 16673 Resort Hotel 0 288 2015 September
## 16674 Resort Hotel 0 288 2015 September
## 16675 Resort Hotel 0 288 2015 September
## 16676 Resort Hotel 0 288 2015 September
## 16677 Resort Hotel 0 290 2015 September
## 16678 Resort Hotel 0 174 2015 September
## 16679 Resort Hotel 0 136 2015 August
## 16680 Resort Hotel 0 289 2015 September
## 16681 Resort Hotel 0 182 2015 September
## 16682 Resort Hotel 0 288 2015 September
## 16683 Resort Hotel 0 288 2015 September
## 16684 Resort Hotel 0 0 2015 September
## 16685 Resort Hotel 0 186 2015 September
## 16686 Resort Hotel 0 0 2015 September
## 16687 Resort Hotel 0 15 2015 September
## 16688 Resort Hotel 0 9 2016 May
## 16689 Resort Hotel 1 250 2015 September
## 16690 Resort Hotel 0 99 2015 September
## 16691 Resort Hotel 0 199 2015 August
## 16692 Resort Hotel 0 242 2015 September
## 16693 Resort Hotel 0 242 2015 September
## 16694 Resort Hotel 0 225 2015 September
## 16695 Resort Hotel 1 240 2015 November
## 16696 Resort Hotel 1 240 2015 November
## 16697 Resort Hotel 1 240 2015 November
## 16698 Resort Hotel 1 240 2015 November
## 16699 Resort Hotel 1 240 2015 November
## 16700 Resort Hotel 0 218 2015 September
## 16701 Resort Hotel 0 218 2015 September
## 16702 Resort Hotel 0 202 2015 September
## 16703 Resort Hotel 0 205 2015 September
## 16704 Resort Hotel 0 167 2015 September
## 16705 Resort Hotel 0 244 2015 September
## 16706 Resort Hotel 0 215 2015 August
## 16707 Resort Hotel 0 244 2015 September
## 16708 Resort Hotel 0 78 2015 August
## 16709 Resort Hotel 0 262 2017 July
## 16710 Resort Hotel 0 244 2015 September
## 16711 Resort Hotel 0 244 2015 September
## 16712 Resort Hotel 0 0 2015 September
## 16713 Resort Hotel 0 208 2015 September
## 16714 Resort Hotel 0 160 2017 July
## 16715 Resort Hotel 0 243 2015 September
## 16716 Resort Hotel 0 244 2015 September
## 16717 Resort Hotel 0 244 2015 September
## 16718 Resort Hotel 0 244 2015 September
## 16719 Resort Hotel 0 183 2015 September
## 16720 Resort Hotel 0 66 2015 August
## 16721 Resort Hotel 0 183 2015 September
## 16722 Resort Hotel 0 244 2015 September
## 16723 Resort Hotel 0 244 2015 September
## 16724 Resort Hotel 0 244 2015 September
## 16725 Resort Hotel 0 71 2015 September
## 16726 Resort Hotel 0 47 2016 September
## 16727 Resort Hotel 0 23 2017 June
## 16728 Resort Hotel 0 244 2015 September
## 16729 Resort Hotel 0 14 2015 September
## 16730 Resort Hotel 0 158 2015 September
## 16731 Resort Hotel 0 29 2015 September
## 16732 Resort Hotel 0 52 2016 April
## 16733 Resort Hotel 0 206 2015 September
## 16734 Resort Hotel 0 199 2015 September
## 16735 Resort Hotel 0 286 2015 August
## 16736 Resort Hotel 0 266 2016 June
## 16737 Resort Hotel 0 199 2015 September
## 16738 Resort Hotel 0 153 2015 September
## 16739 Resort Hotel 0 15 2015 September
## 16740 Resort Hotel 0 1 2015 September
## 16741 Resort Hotel 0 1 2015 September
## 16742 Resort Hotel 0 0 2016 March
## 16743 Resort Hotel 0 0 2016 April
## 16744 Resort Hotel 0 4 2016 November
## 16745 Resort Hotel 0 34 2015 August
## 16746 Resort Hotel 0 25 2015 September
## 16747 Resort Hotel 0 89 2015 September
## 16748 Resort Hotel 0 89 2015 September
## 16749 Resort Hotel 0 242 2015 September
## 16750 Resort Hotel 0 242 2015 September
## 16751 Resort Hotel 0 1 2015 September
## 16752 Resort Hotel 0 194 2015 September
## 16753 Resort Hotel 0 216 2015 August
## 16754 Resort Hotel 0 352 2015 August
## 16755 Resort Hotel 0 48 2015 September
## 16756 Resort Hotel 0 35 2015 September
## 16757 Resort Hotel 0 27 2015 September
## 16758 Resort Hotel 0 160 2015 September
## 16759 Resort Hotel 0 81 2015 September
## 16760 Resort Hotel 0 117 2015 September
## 16761 Resort Hotel 0 37 2015 September
## 16762 Resort Hotel 0 5 2015 September
## 16763 Resort Hotel 0 81 2015 September
## 16764 Resort Hotel 0 14 2015 September
## 16765 Resort Hotel 0 10 2016 January
## 16766 Resort Hotel 0 218 2015 September
## 16767 Resort Hotel 0 48 2015 September
## 16768 Resort Hotel 0 243 2015 September
## 16769 Resort Hotel 1 258 2015 September
## 16770 Resort Hotel 1 221 2015 October
## 16771 Resort Hotel 1 221 2015 October
## 16772 Resort Hotel 1 221 2015 October
## 16773 Resort Hotel 1 221 2015 October
## 16774 Resort Hotel 1 221 2015 October
## 16775 Resort Hotel 1 221 2015 October
## 16776 Resort Hotel 1 221 2015 October
## 16777 Resort Hotel 0 246 2015 September
## 16778 Resort Hotel 0 239 2015 August
## 16779 Resort Hotel 0 0 2015 September
## 16780 Resort Hotel 0 32 2015 September
## 16781 Resort Hotel 0 1 2015 September
## 16782 Resort Hotel 0 52 2015 September
## 16783 Resort Hotel 0 32 2015 September
## 16784 Resort Hotel 0 22 2016 August
## 16785 Resort Hotel 0 4 2015 September
## 16786 Resort Hotel 0 5 2015 September
## 16787 Resort Hotel 0 31 2015 September
## 16788 Resort Hotel 0 32 2015 September
## 16789 Resort Hotel 0 94 2015 September
## 16790 Resort Hotel 0 52 2015 September
## 16791 Resort Hotel 0 37 2015 September
## 16792 Resort Hotel 0 194 2015 September
## 16793 Resort Hotel 0 287 2015 September
## 16794 Resort Hotel 0 31 2015 September
## 16795 Resort Hotel 0 205 2015 September
## 16796 Resort Hotel 0 178 2015 September
## 16797 Resort Hotel 0 178 2015 September
## 16798 Resort Hotel 0 178 2015 September
## 16799 Resort Hotel 0 178 2015 September
## 16800 Resort Hotel 0 178 2015 September
## 16801 Resort Hotel 0 2 2015 September
## 16802 Resort Hotel 0 51 2015 August
## 16803 Resort Hotel 0 178 2015 September
## 16804 Resort Hotel 0 36 2015 September
## 16805 Resort Hotel 0 128 2015 September
## 16806 Resort Hotel 0 69 2015 September
## 16807 Resort Hotel 0 81 2015 September
## 16808 Resort Hotel 0 178 2015 September
## 16809 Resort Hotel 0 117 2015 September
## 16810 Resort Hotel 1 259 2015 September
## 16811 Resort Hotel 0 53 2015 September
## 16812 Resort Hotel 0 246 2015 September
## 16813 Resort Hotel 0 1 2015 September
## 16814 Resort Hotel 0 167 2015 September
## 16815 Resort Hotel 0 65 2015 September
## 16816 Resort Hotel 0 113 2015 September
## 16817 Resort Hotel 0 113 2015 September
## 16818 Resort Hotel 0 111 2015 September
## 16819 Resort Hotel 0 113 2015 September
## 16820 Resort Hotel 0 13 2015 September
## 16821 Resort Hotel 0 17 2016 December
## 16822 Resort Hotel 1 240 2015 October
## 16823 Resort Hotel 0 334 2015 September
## 16824 Resort Hotel 0 333 2015 September
## 16825 Resort Hotel 0 0 2015 September
## 16826 Resort Hotel 0 16 2015 September
## 16827 Resort Hotel 0 25 2015 September
## 16828 Resort Hotel 0 199 2015 September
## 16829 Resort Hotel 0 199 2015 September
## 16830 Resort Hotel 0 199 2015 September
## 16831 Resort Hotel 0 187 2015 September
## 16832 Resort Hotel 0 252 2015 September
## 16833 Resort Hotel 0 194 2015 September
## 16834 Resort Hotel 0 26 2015 September
## 16835 Resort Hotel 0 146 2015 September
## 16836 Resort Hotel 0 180 2015 September
## 16837 Resort Hotel 0 214 2015 September
## 16838 Resort Hotel 0 204 2015 September
## 16839 Resort Hotel 0 222 2015 September
## 16840 Resort Hotel 0 60 2015 September
## 16841 Resort Hotel 0 180 2015 September
## 16842 Resort Hotel 0 254 2015 September
## 16843 Resort Hotel 0 254 2015 September
## 16844 Resort Hotel 0 254 2015 September
## 16845 Resort Hotel 0 254 2015 September
## 16846 Resort Hotel 0 254 2015 September
## 16847 Resort Hotel 0 254 2015 September
## 16848 Resort Hotel 0 254 2015 September
## 16849 Resort Hotel 0 254 2015 September
## 16850 Resort Hotel 0 254 2015 September
## 16851 Resort Hotel 0 254 2015 September
## 16852 Resort Hotel 0 254 2015 September
## 16853 Resort Hotel 0 254 2015 September
## 16854 Resort Hotel 0 254 2015 September
## 16855 Resort Hotel 0 254 2015 September
## 16856 Resort Hotel 0 254 2015 September
## 16857 Resort Hotel 0 254 2015 September
## 16858 Resort Hotel 0 254 2015 September
## 16859 Resort Hotel 0 254 2015 September
## 16860 Resort Hotel 0 254 2015 September
## 16861 Resort Hotel 0 254 2015 September
## 16862 Resort Hotel 0 254 2015 September
## 16863 Resort Hotel 0 254 2015 September
## 16864 Resort Hotel 0 99 2015 September
## 16865 Resort Hotel 0 118 2015 September
## 16866 Resort Hotel 0 222 2015 September
## 16867 Resort Hotel 0 222 2015 September
## 16868 Resort Hotel 0 222 2015 September
## 16869 Resort Hotel 0 222 2015 September
## 16870 Resort Hotel 0 222 2015 September
## 16871 Resort Hotel 0 222 2015 September
## 16872 Resort Hotel 0 222 2015 September
## 16873 Resort Hotel 0 222 2015 September
## 16874 Resort Hotel 0 222 2015 September
## 16875 Resort Hotel 0 222 2015 September
## 16876 Resort Hotel 0 222 2015 September
## 16877 Resort Hotel 0 222 2015 September
## 16878 Resort Hotel 0 222 2015 September
## 16879 Resort Hotel 0 222 2015 September
## 16880 Resort Hotel 0 222 2015 September
## 16881 Resort Hotel 0 222 2015 September
## 16882 Resort Hotel 0 222 2015 September
## 16883 Resort Hotel 0 222 2015 September
## 16884 Resort Hotel 0 222 2015 September
## 16885 Resort Hotel 0 222 2015 September
## 16886 Resort Hotel 0 222 2015 September
## 16887 Resort Hotel 0 222 2015 September
## 16888 Resort Hotel 0 222 2015 September
## 16889 Resort Hotel 0 41 2015 September
## 16890 Resort Hotel 0 55 2015 September
## 16891 Resort Hotel 0 57 2015 September
## 16892 Resort Hotel 0 13 2015 September
## 16893 Resort Hotel 0 200 2015 September
## 16894 Resort Hotel 0 200 2015 September
## 16895 Resort Hotel 0 89 2015 September
## 16896 Resort Hotel 0 252 2015 September
## 16897 Resort Hotel 0 217 2015 September
## 16898 Resort Hotel 0 1 2015 September
## 16899 Resort Hotel 0 1 2015 September
## 16900 Resort Hotel 0 0 2015 September
## 16901 Resort Hotel 0 0 2015 October
## 16902 Resort Hotel 0 0 2015 December
## 16903 Resort Hotel 0 0 2016 January
## 16904 Resort Hotel 0 0 2016 February
## 16905 Resort Hotel 0 1 2016 March
## 16906 Resort Hotel 0 3 2016 May
## 16907 Resort Hotel 0 1 2015 September
## 16908 Resort Hotel 0 0 2016 March
## 16909 Resort Hotel 0 1 2017 February
## 16910 Resort Hotel 0 0 2015 September
## 16911 Resort Hotel 0 71 2015 September
## 16912 Resort Hotel 0 0 2015 September
## 16913 Resort Hotel 0 12 2015 September
## 16914 Resort Hotel 0 0 2015 September
## 16915 Resort Hotel 0 2 2015 September
## 16916 Resort Hotel 0 0 2015 September
## 16917 Resort Hotel 0 116 2015 September
## 16918 Resort Hotel 0 6 2015 September
## 16919 Resort Hotel 0 169 2015 September
## 16920 Resort Hotel 0 137 2015 September
## 16921 Resort Hotel 0 205 2015 September
## 16922 Resort Hotel 0 95 2015 September
## 16923 Resort Hotel 0 226 2015 September
## 16924 Resort Hotel 0 252 2015 September
## 16925 Resort Hotel 0 246 2015 September
## 16926 Resort Hotel 0 301 2015 September
## 16927 Resort Hotel 0 97 2015 September
## 16928 Resort Hotel 0 16 2015 September
## 16929 Resort Hotel 0 211 2015 September
## 16930 Resort Hotel 0 14 2015 September
## 16931 Resort Hotel 0 11 2016 January
## 16932 Resort Hotel 0 26 2016 February
## 16933 Resort Hotel 0 5 2016 April
## 16934 Resort Hotel 1 18 2016 September
## 16935 Resort Hotel 0 6 2016 October
## 16936 Resort Hotel 0 6 2016 November
## 16937 Resort Hotel 0 4 2016 December
## 16938 Resort Hotel 0 13 2017 January
## 16939 Resort Hotel 0 7 2017 April
## 16940 Resort Hotel 0 26 2017 May
## 16941 Resort Hotel 0 203 2015 September
## 16942 Resort Hotel 0 0 2015 September
## 16943 Resort Hotel 0 6 2015 September
## 16944 Resort Hotel 0 64 2015 September
## 16945 Resort Hotel 0 152 2015 September
## 16946 Resort Hotel 0 0 2015 September
## 16947 Resort Hotel 0 119 2015 September
## 16948 Resort Hotel 0 13 2015 September
## 16949 Resort Hotel 0 64 2016 January
## 16950 Resort Hotel 0 149 2015 September
## 16951 Resort Hotel 0 169 2015 September
## 16952 Resort Hotel 0 93 2015 September
## 16953 Resort Hotel 0 101 2015 September
## 16954 Resort Hotel 0 30 2015 September
## 16955 Resort Hotel 0 4 2015 September
## 16956 Resort Hotel 0 2 2015 September
## 16957 Resort Hotel 0 254 2015 September
## 16958 Resort Hotel 0 65 2015 September
## 16959 Resort Hotel 0 14 2015 September
## 16960 Resort Hotel 0 258 2015 September
## 16961 Resort Hotel 0 258 2015 September
## 16962 Resort Hotel 0 17 2015 September
## 16963 Resort Hotel 0 258 2015 September
## 16964 Resort Hotel 0 152 2015 September
## 16965 Resort Hotel 0 258 2015 September
## 16966 Resort Hotel 0 258 2015 September
## 16967 Resort Hotel 0 35 2015 September
## 16968 Resort Hotel 0 258 2015 September
## 16969 Resort Hotel 0 258 2015 September
## 16970 Resort Hotel 0 258 2015 September
## 16971 Resort Hotel 0 258 2015 September
## 16972 Resort Hotel 0 258 2015 September
## 16973 Resort Hotel 0 208 2015 September
## 16974 Resort Hotel 0 93 2015 September
## 16975 Resort Hotel 0 93 2015 September
## 16976 Resort Hotel 0 76 2015 September
## 16977 Resort Hotel 0 258 2015 September
## 16978 Resort Hotel 0 227 2015 September
## 16979 Resort Hotel 0 193 2015 September
## 16980 Resort Hotel 0 355 2015 September
## 16981 Resort Hotel 0 206 2015 September
## 16982 Resort Hotel 0 146 2015 September
## 16983 Resort Hotel 0 92 2015 September
## 16984 Resort Hotel 0 52 2015 September
## 16985 Resort Hotel 0 120 2015 September
## 16986 Resort Hotel 0 7 2015 September
## 16987 Resort Hotel 0 257 2015 September
## 16988 Resort Hotel 0 252 2015 September
## 16989 Resort Hotel 0 120 2015 September
## 16990 Resort Hotel 0 295 2015 September
## 16991 Resort Hotel 0 146 2015 September
## 16992 Resort Hotel 0 258 2015 September
## 16993 Resort Hotel 0 258 2015 September
## 16994 Resort Hotel 0 239 2015 September
## 16995 Resort Hotel 0 293 2015 September
## 16996 Resort Hotel 0 239 2015 September
## 16997 Resort Hotel 0 239 2015 September
## 16998 Resort Hotel 0 239 2015 September
## 16999 Resort Hotel 0 239 2015 September
## 17000 Resort Hotel 0 239 2015 September
## 17001 Resort Hotel 0 239 2015 September
## 17002 Resort Hotel 0 239 2015 September
## 17003 Resort Hotel 0 239 2015 September
## 17004 Resort Hotel 0 239 2015 September
## 17005 Resort Hotel 0 239 2015 September
## 17006 Resort Hotel 0 239 2015 September
## 17007 Resort Hotel 0 239 2015 September
## 17008 Resort Hotel 0 239 2015 September
## 17009 Resort Hotel 0 239 2015 September
## 17010 Resort Hotel 0 239 2015 September
## 17011 Resort Hotel 0 239 2015 September
## 17012 Resort Hotel 0 239 2015 September
## 17013 Resort Hotel 0 239 2015 September
## 17014 Resort Hotel 0 239 2015 September
## 17015 Resort Hotel 0 239 2015 September
## 17016 Resort Hotel 0 239 2015 September
## 17017 Resort Hotel 0 239 2015 September
## 17018 Resort Hotel 0 164 2015 September
## 17019 Resort Hotel 0 88 2015 September
## 17020 Resort Hotel 0 88 2015 September
## 17021 Resort Hotel 0 172 2015 September
## 17022 Resort Hotel 0 179 2015 September
## 17023 Resort Hotel 0 3 2015 September
## 17024 Resort Hotel 0 36 2015 September
## 17025 Resort Hotel 0 31 2015 September
## 17026 Resort Hotel 0 239 2015 September
## 17027 Resort Hotel 0 107 2015 September
## 17028 Resort Hotel 0 108 2015 September
## 17029 Resort Hotel 0 85 2015 September
## 17030 Resort Hotel 0 301 2015 September
## 17031 Resort Hotel 0 172 2015 September
## 17032 Resort Hotel 0 79 2015 September
## 17033 Resort Hotel 0 138 2015 September
## 17034 Resort Hotel 0 208 2015 September
## 17035 Resort Hotel 0 148 2015 September
## 17036 Resort Hotel 0 39 2015 September
## 17037 Resort Hotel 0 203 2015 September
## 17038 Resort Hotel 0 257 2015 September
## 17039 Resort Hotel 0 78 2015 September
## 17040 Resort Hotel 0 92 2015 September
## 17041 Resort Hotel 0 92 2015 September
## 17042 Resort Hotel 0 34 2015 September
## 17043 Resort Hotel 0 85 2015 September
## 17044 Resort Hotel 0 185 2015 September
## 17045 Resort Hotel 0 185 2015 September
## 17046 Resort Hotel 0 185 2015 September
## 17047 Resort Hotel 0 33 2015 September
## 17048 Resort Hotel 0 28 2015 September
## 17049 Resort Hotel 0 34 2015 September
## 17050 Resort Hotel 0 185 2015 September
## 17051 Resort Hotel 0 185 2015 September
## 17052 Resort Hotel 0 185 2015 September
## 17053 Resort Hotel 0 185 2015 September
## 17054 Resort Hotel 0 185 2015 September
## 17055 Resort Hotel 0 185 2015 September
## 17056 Resort Hotel 0 1 2015 September
## 17057 Resort Hotel 0 0 2016 January
## 17058 Resort Hotel 0 185 2015 September
## 17059 Resort Hotel 0 185 2015 September
## 17060 Resort Hotel 0 185 2015 September
## 17061 Resort Hotel 0 185 2015 September
## 17062 Resort Hotel 0 185 2015 September
## 17063 Resort Hotel 0 185 2015 September
## 17064 Resort Hotel 0 138 2015 September
## 17065 Resort Hotel 0 70 2015 September
## 17066 Resort Hotel 0 85 2015 September
## 17067 Resort Hotel 0 185 2015 September
## 17068 Resort Hotel 0 160 2015 September
## 17069 Resort Hotel 0 160 2015 September
## 17070 Resort Hotel 0 258 2015 September
## 17071 Resort Hotel 0 163 2015 September
## 17072 Resort Hotel 0 160 2015 September
## 17073 Resort Hotel 0 167 2015 September
## 17074 Resort Hotel 0 0 2015 September
## 17075 Resort Hotel 0 305 2015 September
## 17076 Resort Hotel 0 0 2015 September
## 17077 Resort Hotel 0 115 2015 September
## 17078 Resort Hotel 0 21 2015 September
## 17079 Resort Hotel 0 21 2015 September
## 17080 Resort Hotel 0 77 2015 September
## 17081 Resort Hotel 0 66 2015 September
## 17082 Resort Hotel 0 253 2015 September
## 17083 Resort Hotel 0 95 2015 September
## 17084 Resort Hotel 0 168 2015 September
## 17085 Resort Hotel 0 197 2015 September
## 17086 Resort Hotel 0 211 2015 September
## 17087 Resort Hotel 0 77 2015 September
## 17088 Resort Hotel 0 93 2015 September
## 17089 Resort Hotel 0 262 2015 September
## 17090 Resort Hotel 0 262 2015 September
## 17091 Resort Hotel 0 262 2015 September
## 17092 Resort Hotel 0 262 2015 September
## 17093 Resort Hotel 0 343 2016 September
## 17094 Resort Hotel 0 1 2015 September
## 17095 Resort Hotel 0 262 2015 September
## 17096 Resort Hotel 0 343 2016 September
## 17097 Resort Hotel 0 262 2015 September
## 17098 Resort Hotel 0 262 2015 September
## 17099 Resort Hotel 0 262 2015 September
## 17100 Resort Hotel 0 262 2015 September
## 17101 Resort Hotel 0 262 2015 September
## 17102 Resort Hotel 0 262 2015 September
## 17103 Resort Hotel 0 262 2015 September
## 17104 Resort Hotel 0 262 2015 September
## 17105 Resort Hotel 0 99 2015 September
## 17106 Resort Hotel 0 262 2015 September
## 17107 Resort Hotel 0 37 2015 September
## 17108 Resort Hotel 0 111 2015 September
## 17109 Resort Hotel 0 66 2015 September
## 17110 Resort Hotel 0 43 2015 September
## 17111 Resort Hotel 0 47 2015 September
## 17112 Resort Hotel 0 87 2015 September
## 17113 Resort Hotel 0 234 2015 September
## 17114 Resort Hotel 0 201 2015 September
## 17115 Resort Hotel 0 224 2015 September
## 17116 Resort Hotel 0 81 2015 September
## 17117 Resort Hotel 0 241 2015 September
## 17118 Resort Hotel 0 83 2015 December
## 17119 Resort Hotel 0 0 2015 September
## 17120 Resort Hotel 0 65 2015 September
## 17121 Resort Hotel 0 27 2015 September
## 17122 Resort Hotel 0 115 2015 September
## 17123 Resort Hotel 1 277 2015 October
## 17124 Resort Hotel 1 212 2015 September
## 17125 Resort Hotel 0 125 2015 September
## 17126 Resort Hotel 0 78 2015 September
## 17127 Resort Hotel 0 167 2015 September
## 17128 Resort Hotel 0 167 2015 September
## 17129 Resort Hotel 0 170 2015 September
## 17130 Resort Hotel 0 170 2015 September
## 17131 Resort Hotel 0 170 2015 September
## 17132 Resort Hotel 0 212 2015 September
## 17133 Resort Hotel 0 115 2015 September
## 17134 Resort Hotel 0 170 2015 September
## 17135 Resort Hotel 0 77 2015 September
## 17136 Resort Hotel 0 11 2015 September
## 17137 Resort Hotel 0 33 2015 September
## 17138 Resort Hotel 0 212 2015 September
## 17139 Resort Hotel 0 166 2015 September
## 17140 Resort Hotel 0 207 2015 September
## 17141 Resort Hotel 0 207 2015 September
## 17142 Resort Hotel 0 207 2015 September
## 17143 Resort Hotel 0 207 2015 September
## 17144 Resort Hotel 0 207 2015 September
## 17145 Resort Hotel 0 207 2015 September
## 17146 Resort Hotel 0 207 2015 September
## 17147 Resort Hotel 0 207 2015 September
## 17148 Resort Hotel 0 207 2015 September
## 17149 Resort Hotel 0 207 2015 September
## 17150 Resort Hotel 0 207 2015 September
## 17151 Resort Hotel 0 207 2015 September
## 17152 Resort Hotel 0 207 2015 September
## 17153 Resort Hotel 0 207 2015 September
## 17154 Resort Hotel 0 207 2015 September
## 17155 Resort Hotel 0 257 2015 September
## 17156 Resort Hotel 0 32 2015 September
## 17157 Resort Hotel 0 0 2015 September
## 17158 Resort Hotel 0 0 2015 September
## 17159 Resort Hotel 0 0 2015 September
## 17160 Resort Hotel 0 65 2015 September
## 17161 Resort Hotel 0 1 2015 September
## 17162 Resort Hotel 0 73 2015 September
## 17163 Resort Hotel 0 43 2015 December
## 17164 Resort Hotel 0 9 2016 April
## 17165 Resort Hotel 0 0 2016 April
## 17166 Resort Hotel 1 272 2015 September
## 17167 Resort Hotel 1 272 2015 September
## 17168 Resort Hotel 1 272 2015 September
## 17169 Resort Hotel 1 272 2015 September
## 17170 Resort Hotel 0 185 2015 September
## 17171 Resort Hotel 0 68 2015 September
## 17172 Resort Hotel 0 2 2015 September
## 17173 Resort Hotel 0 75 2015 September
## 17174 Resort Hotel 0 75 2015 September
## 17175 Resort Hotel 0 0 2015 September
## 17176 Resort Hotel 0 0 2015 September
## 17177 Resort Hotel 0 29 2015 September
## 17178 Resort Hotel 0 0 2015 September
## 17179 Resort Hotel 0 13 2015 September
## 17180 Resort Hotel 0 193 2015 September
## 17181 Resort Hotel 0 13 2015 September
## 17182 Resort Hotel 0 130 2015 September
## 17183 Resort Hotel 0 34 2015 September
## 17184 Resort Hotel 0 82 2015 September
## 17185 Resort Hotel 0 202 2015 September
## 17186 Resort Hotel 0 309 2015 September
## 17187 Resort Hotel 0 225 2015 September
## 17188 Resort Hotel 0 219 2015 September
## 17189 Resort Hotel 0 222 2015 September
## 17190 Resort Hotel 0 222 2015 September
## 17191 Resort Hotel 0 266 2015 September
## 17192 Resort Hotel 0 266 2015 September
## 17193 Resort Hotel 0 266 2015 September
## 17194 Resort Hotel 0 2 2015 September
## 17195 Resort Hotel 0 93 2015 September
## 17196 Resort Hotel 0 3 2015 September
## 17197 Resort Hotel 0 160 2015 September
## 17198 Resort Hotel 0 159 2015 September
## 17199 Resort Hotel 0 42 2015 September
## 17200 Resort Hotel 0 123 2015 September
## 17201 Resort Hotel 0 70 2015 September
## 17202 Resort Hotel 0 266 2015 September
## 17203 Resort Hotel 0 3 2015 September
## 17204 Resort Hotel 0 46 2015 September
## 17205 Resort Hotel 0 34 2015 September
## 17206 Resort Hotel 0 131 2015 September
## 17207 Resort Hotel 0 236 2015 September
## 17208 Resort Hotel 0 174 2015 September
## 17209 Resort Hotel 0 174 2015 September
## 17210 Resort Hotel 0 174 2015 September
## 17211 Resort Hotel 0 0 2015 September
## 17212 Resort Hotel 0 167 2015 September
## 17213 Resort Hotel 0 237 2016 September
## 17214 Resort Hotel 0 167 2015 September
## 17215 Resort Hotel 0 167 2015 September
## 17216 Resort Hotel 0 106 2015 September
## 17217 Resort Hotel 0 225 2015 September
## 17218 Resort Hotel 0 227 2015 September
## 17219 Resort Hotel 0 167 2015 September
## 17220 Resort Hotel 0 153 2015 September
## 17221 Resort Hotel 0 167 2015 September
## 17222 Resort Hotel 0 167 2015 September
## 17223 Resort Hotel 0 246 2015 September
## 17224 Resort Hotel 0 246 2015 September
## 17225 Resort Hotel 0 52 2015 September
## 17226 Resort Hotel 0 219 2015 September
## 17227 Resort Hotel 0 130 2015 September
## 17228 Resort Hotel 0 97 2015 September
## 17229 Resort Hotel 0 224 2015 September
## 17230 Resort Hotel 0 224 2015 September
## 17231 Resort Hotel 0 174 2015 September
## 17232 Resort Hotel 0 167 2015 September
## 17233 Resort Hotel 0 260 2015 September
## 17234 Resort Hotel 0 115 2015 September
## 17235 Resort Hotel 0 260 2015 September
## 17236 Resort Hotel 0 115 2015 September
## 17237 Resort Hotel 0 58 2015 September
## 17238 Resort Hotel 0 67 2015 September
## 17239 Resort Hotel 0 74 2015 September
## 17240 Resort Hotel 0 0 2015 October
## 17241 Resort Hotel 0 60 2015 September
## 17242 Resort Hotel 0 3 2015 October
## 17243 Resort Hotel 1 289 2015 November
## 17244 Resort Hotel 1 289 2015 November
## 17245 Resort Hotel 1 289 2015 November
## 17246 Resort Hotel 1 289 2015 November
## 17247 Resort Hotel 1 289 2015 November
## 17248 Resort Hotel 1 289 2015 November
## 17249 Resort Hotel 1 289 2015 November
## 17250 Resort Hotel 0 0 2015 October
## 17251 Resort Hotel 0 67 2015 September
## 17252 Resort Hotel 1 292 2015 October
## 17253 Resort Hotel 0 0 2015 October
## 17254 Resort Hotel 1 7 2015 October
## 17255 Resort Hotel 1 277 2015 October
## 17256 Resort Hotel 1 277 2015 October
## 17257 Resort Hotel 1 277 2015 October
## 17258 Resort Hotel 1 277 2015 October
## 17259 Resort Hotel 1 277 2015 October
## 17260 Resort Hotel 1 277 2015 October
## 17261 Resort Hotel 1 277 2015 October
## 17262 Resort Hotel 1 277 2015 October
## 17263 Resort Hotel 1 277 2015 October
## 17264 Resort Hotel 1 277 2015 October
## 17265 Resort Hotel 1 277 2015 October
## 17266 Resort Hotel 1 277 2015 October
## 17267 Resort Hotel 1 277 2015 October
## 17268 Resort Hotel 1 277 2015 October
## 17269 Resort Hotel 1 277 2015 October
## 17270 Resort Hotel 1 277 2015 October
## 17271 Resort Hotel 1 277 2015 October
## 17272 Resort Hotel 0 52 2015 September
## 17273 Resort Hotel 0 272 2015 September
## 17274 Resort Hotel 0 272 2015 September
## 17275 Resort Hotel 0 272 2015 September
## 17276 Resort Hotel 0 272 2015 September
## 17277 Resort Hotel 0 272 2015 September
## 17278 Resort Hotel 0 272 2015 September
## 17279 Resort Hotel 0 272 2015 September
## 17280 Resort Hotel 0 272 2015 September
## 17281 Resort Hotel 0 272 2015 September
## 17282 Resort Hotel 0 272 2015 September
## 17283 Resort Hotel 0 272 2015 September
## 17284 Resort Hotel 0 272 2015 September
## 17285 Resort Hotel 0 272 2015 September
## 17286 Resort Hotel 0 0 2015 October
## 17287 Resort Hotel 0 272 2015 September
## 17288 Resort Hotel 0 42 2015 September
## 17289 Resort Hotel 0 64 2015 September
## 17290 Resort Hotel 0 64 2015 September
## 17291 Resort Hotel 0 169 2015 September
## 17292 Resort Hotel 0 78 2015 September
## 17293 Resort Hotel 0 56 2015 September
## 17294 Resort Hotel 0 54 2015 September
## 17295 Resort Hotel 0 51 2015 October
## 17296 Resort Hotel 0 89 2015 September
## 17297 Resort Hotel 0 0 2015 October
## 17298 Resort Hotel 0 268 2015 September
## 17299 Resort Hotel 0 170 2015 September
## 17300 Resort Hotel 0 51 2015 September
## 17301 Resort Hotel 0 138 2015 September
## 17302 Resort Hotel 0 174 2015 September
## 17303 Resort Hotel 0 89 2015 September
## 17304 Resort Hotel 0 89 2015 September
## 17305 Resort Hotel 0 0 2015 October
## 17306 Resort Hotel 0 58 2015 September
## 17307 Resort Hotel 0 55 2015 September
## 17308 Resort Hotel 0 117 2015 September
## 17309 Resort Hotel 0 28 2016 November
## 17310 Resort Hotel 0 268 2015 September
## 17311 Resort Hotel 0 16 2015 October
## 17312 Resort Hotel 0 172 2015 September
## 17313 Resort Hotel 0 42 2015 September
## 17314 Resort Hotel 0 269 2015 September
## 17315 Resort Hotel 0 1 2015 October
## 17316 Resort Hotel 0 10 2015 September
## 17317 Resort Hotel 0 74 2015 September
## 17318 Resort Hotel 0 0 2015 October
## 17319 Resort Hotel 0 51 2015 October
## 17320 Resort Hotel 0 78 2015 September
## 17321 Resort Hotel 0 0 2015 October
## 17322 Resort Hotel 0 0 2015 October
## 17323 Resort Hotel 0 44 2015 October
## 17324 Resort Hotel 0 49 2015 September
## 17325 Resort Hotel 0 53 2015 September
## 17326 Resort Hotel 0 0 2015 October
## 17327 Resort Hotel 0 1 2015 October
## 17328 Resort Hotel 0 97 2015 September
## 17329 Resort Hotel 0 202 2015 September
## 17330 Resort Hotel 0 132 2015 September
## 17331 Resort Hotel 0 230 2015 September
## 17332 Resort Hotel 0 40 2015 September
## 17333 Resort Hotel 0 64 2015 September
## 17334 Resort Hotel 0 35 2015 September
## 17335 Resort Hotel 0 106 2015 September
## 17336 Resort Hotel 0 0 2015 October
## 17337 Resort Hotel 0 54 2015 September
## 17338 Resort Hotel 0 249 2015 October
## 17339 Resort Hotel 0 1 2015 October
## 17340 Resort Hotel 0 0 2015 October
## 17341 Resort Hotel 0 0 2015 October
## 17342 Resort Hotel 0 0 2015 October
## 17343 Resort Hotel 0 0 2015 October
## 17344 Resort Hotel 0 1 2015 October
## 17345 Resort Hotel 0 86 2015 September
## 17346 Resort Hotel 0 90 2015 September
## 17347 Resort Hotel 0 1 2015 October
## 17348 Resort Hotel 0 1 2015 October
## 17349 Resort Hotel 0 25 2015 October
## 17350 Resort Hotel 0 27 2015 October
## 17351 Resort Hotel 0 50 2015 September
## 17352 Resort Hotel 0 214 2015 October
## 17353 Resort Hotel 0 192 2015 October
## 17354 Resort Hotel 0 270 2015 September
## 17355 Resort Hotel 0 84 2015 October
## 17356 Resort Hotel 0 50 2015 October
## 17357 Resort Hotel 0 50 2015 October
## 17358 Resort Hotel 0 45 2015 October
## 17359 Resort Hotel 0 55 2015 October
## 17360 Resort Hotel 0 77 2015 September
## 17361 Resort Hotel 0 112 2015 September
## 17362 Resort Hotel 0 55 2015 October
## 17363 Resort Hotel 0 4 2015 October
## 17364 Resort Hotel 0 34 2015 September
## 17365 Resort Hotel 0 315 2015 September
## 17366 Resort Hotel 0 80 2015 September
## 17367 Resort Hotel 0 7 2015 October
## 17368 Resort Hotel 0 3 2016 November
## 17369 Resort Hotel 0 80 2015 September
## 17370 Resort Hotel 0 83 2015 October
## 17371 Resort Hotel 0 0 2015 October
## 17372 Resort Hotel 0 53 2015 October
## 17373 Resort Hotel 0 273 2015 October
## 17374 Resort Hotel 0 69 2015 October
## 17375 Resort Hotel 0 1 2015 October
## 17376 Resort Hotel 0 50 2015 October
## 17377 Resort Hotel 0 20 2015 October
## 17378 Resort Hotel 0 182 2015 October
## 17379 Resort Hotel 0 35 2015 September
## 17380 Resort Hotel 0 82 2015 September
## 17381 Resort Hotel 0 67 2015 October
## 17382 Resort Hotel 0 21 2015 October
## 17383 Resort Hotel 0 53 2015 September
## 17384 Resort Hotel 0 216 2015 September
## 17385 Resort Hotel 0 64 2015 September
## 17386 Resort Hotel 0 246 2015 October
## 17387 Resort Hotel 0 239 2015 October
## 17388 Resort Hotel 0 246 2015 October
## 17389 Resort Hotel 0 0 2015 October
## 17390 Resort Hotel 0 0 2015 October
## 17391 Resort Hotel 0 246 2015 October
## 17392 Resort Hotel 0 0 2015 October
## 17393 Resort Hotel 0 13 2015 October
## 17394 Resort Hotel 0 0 2015 October
## 17395 Resort Hotel 0 0 2015 October
## 17396 Resort Hotel 0 19 2015 October
## 17397 Resort Hotel 0 62 2015 October
## 17398 Resort Hotel 0 1 2015 October
## 17399 Resort Hotel 0 47 2015 October
## 17400 Resort Hotel 0 89 2015 October
## 17401 Resort Hotel 0 0 2015 October
## 17402 Resort Hotel 0 239 2015 September
## 17403 Resort Hotel 0 69 2015 October
## 17404 Resort Hotel 0 224 2015 October
## 17405 Resort Hotel 0 90 2015 October
## 17406 Resort Hotel 0 207 2015 September
## 17407 Resort Hotel 0 88 2015 October
## 17408 Resort Hotel 0 253 2015 October
## 17409 Resort Hotel 0 53 2015 October
## 17410 Resort Hotel 0 4 2015 October
## 17411 Resort Hotel 0 7 2015 October
## 17412 Resort Hotel 0 0 2015 October
## 17413 Resort Hotel 0 12 2015 October
## 17414 Resort Hotel 0 59 2015 October
## 17415 Resort Hotel 0 55 2015 October
## 17416 Resort Hotel 0 53 2015 October
## 17417 Resort Hotel 0 16 2015 October
## 17418 Resort Hotel 0 7 2015 October
## 17419 Resort Hotel 0 0 2015 November
## 17420 Resort Hotel 0 0 2016 January
## 17421 Resort Hotel 0 0 2016 April
## 17422 Resort Hotel 0 3 2017 March
## 17423 Resort Hotel 0 43 2015 October
## 17424 Resort Hotel 0 9 2015 October
## 17425 Resort Hotel 0 31 2015 October
## 17426 Resort Hotel 0 11 2015 October
## 17427 Resort Hotel 0 59 2015 October
## 17428 Resort Hotel 0 532 2015 October
## 17429 Resort Hotel 0 7 2015 October
## 17430 Resort Hotel 0 24 2015 October
## 17431 Resort Hotel 0 17 2015 October
## 17432 Resort Hotel 0 99 2015 October
## 17433 Resort Hotel 0 16 2015 October
## 17434 Resort Hotel 0 7 2015 October
## 17435 Resort Hotel 0 1 2015 October
## 17436 Resort Hotel 0 236 2015 October
## 17437 Resort Hotel 0 5 2015 October
## 17438 Resort Hotel 0 31 2015 October
## 17439 Resort Hotel 0 11 2015 October
## 17440 Resort Hotel 0 59 2015 October
## 17441 Resort Hotel 0 44 2015 October
## 17442 Resort Hotel 0 33 2015 October
## 17443 Resort Hotel 0 33 2015 October
## 17444 Resort Hotel 0 221 2015 October
## 17445 Resort Hotel 0 221 2015 October
## 17446 Resort Hotel 0 39 2015 October
## 17447 Resort Hotel 0 221 2015 October
## 17448 Resort Hotel 0 221 2015 October
## 17449 Resort Hotel 0 221 2015 October
## 17450 Resort Hotel 0 221 2015 October
## 17451 Resort Hotel 0 221 2015 October
## 17452 Resort Hotel 0 221 2015 October
## 17453 Resort Hotel 0 221 2015 October
## 17454 Resort Hotel 0 221 2015 October
## 17455 Resort Hotel 0 221 2015 October
## 17456 Resort Hotel 0 221 2015 October
## 17457 Resort Hotel 0 221 2015 October
## 17458 Resort Hotel 0 221 2015 October
## 17459 Resort Hotel 0 221 2015 October
## 17460 Resort Hotel 0 221 2015 October
## 17461 Resort Hotel 0 221 2015 October
## 17462 Resort Hotel 0 221 2015 October
## 17463 Resort Hotel 0 1 2015 October
## 17464 Resort Hotel 0 2 2015 October
## 17465 Resort Hotel 0 8 2015 October
## 17466 Resort Hotel 0 3 2015 October
## 17467 Resort Hotel 0 35 2015 October
## 17468 Resort Hotel 0 0 2015 October
## 17469 Resort Hotel 0 19 2015 October
## 17470 Resort Hotel 0 49 2015 October
## 17471 Resort Hotel 0 12 2015 October
## 17472 Resort Hotel 0 9 2015 October
## 17473 Resort Hotel 0 5 2015 October
## 17474 Resort Hotel 1 283 2015 October
## 17475 Resort Hotel 0 36 2015 October
## 17476 Resort Hotel 0 0 2015 October
## 17477 Resort Hotel 0 17 2015 October
## 17478 Resort Hotel 0 16 2015 October
## 17479 Resort Hotel 0 2 2015 October
## 17480 Resort Hotel 0 1 2015 October
## 17481 Resort Hotel 0 1 2015 October
## 17482 Resort Hotel 0 0 2015 October
## 17483 Resort Hotel 0 0 2015 October
## 17484 Resort Hotel 1 287 2015 October
## 17485 Resort Hotel 0 0 2015 October
## 17486 Resort Hotel 0 277 2015 October
## 17487 Resort Hotel 0 277 2015 October
## 17488 Resort Hotel 0 277 2015 October
## 17489 Resort Hotel 0 277 2015 October
## 17490 Resort Hotel 0 277 2015 October
## 17491 Resort Hotel 0 123 2015 October
## 17492 Resort Hotel 0 277 2015 October
## 17493 Resort Hotel 0 277 2015 October
## 17494 Resort Hotel 0 0 2015 October
## 17495 Resort Hotel 0 277 2015 October
## 17496 Resort Hotel 0 277 2015 October
## 17497 Resort Hotel 0 277 2015 October
## 17498 Resort Hotel 0 277 2015 October
## 17499 Resort Hotel 0 277 2015 October
## 17500 Resort Hotel 0 18 2015 October
## 17501 Resort Hotel 0 26 2017 May
## 17502 Resort Hotel 0 110 2015 October
## 17503 Resort Hotel 0 153 2015 September
## 17504 Resort Hotel 0 18 2015 October
## 17505 Resort Hotel 0 26 2017 May
## 17506 Resort Hotel 0 18 2015 October
## 17507 Resort Hotel 0 18 2015 October
## 17508 Resort Hotel 0 18 2015 October
## 17509 Resort Hotel 0 12 2016 May
## 17510 Resort Hotel 0 13 2016 October
## 17511 Resort Hotel 0 27 2017 May
## 17512 Resort Hotel 0 18 2015 October
## 17513 Resort Hotel 0 18 2015 October
## 17514 Resort Hotel 0 18 2015 October
## 17515 Resort Hotel 0 8 2015 October
## 17516 Resort Hotel 0 5 2015 October
## 17517 Resort Hotel 0 3 2015 December
## 17518 Resort Hotel 0 5 2016 May
## 17519 Resort Hotel 0 4 2016 September
## 17520 Resort Hotel 0 0 2017 January
## 17521 Resort Hotel 1 0 2017 January
## 17522 Resort Hotel 0 10 2017 February
## 17523 Resort Hotel 0 18 2015 October
## 17524 Resort Hotel 0 26 2017 May
## 17525 Resort Hotel 0 18 2015 October
## 17526 Resort Hotel 0 11 2015 October
## 17527 Resort Hotel 0 26 2017 May
## 17528 Resort Hotel 0 4 2015 October
## 17529 Resort Hotel 0 44 2015 October
## 17530 Resort Hotel 0 2 2015 October
## 17531 Resort Hotel 0 5 2015 October
## 17532 Resort Hotel 0 120 2015 October
## 17533 Resort Hotel 0 152 2015 October
## 17534 Resort Hotel 0 44 2015 October
## 17535 Resort Hotel 0 277 2015 October
## 17536 Resort Hotel 0 123 2015 October
## 17537 Resort Hotel 0 201 2016 May
## 17538 Resort Hotel 0 38 2015 October
## 17539 Resort Hotel 0 0 2015 October
## 17540 Resort Hotel 0 0 2016 February
## 17541 Resort Hotel 0 56 2015 October
## 17542 Resort Hotel 0 22 2016 January
## 17543 Resort Hotel 0 0 2015 October
## 17544 Resort Hotel 0 285 2015 October
## 17545 Resort Hotel 0 285 2015 October
## 17546 Resort Hotel 0 287 2015 October
## 17547 Resort Hotel 0 6 2015 October
## 17548 Resort Hotel 0 0 2015 October
## 17549 Resort Hotel 0 2 2016 April
## 17550 Resort Hotel 0 193 2015 October
## 17551 Resort Hotel 0 14 2015 October
## 17552 Resort Hotel 0 16 2015 October
## 17553 Resort Hotel 0 0 2015 October
## 17554 Resort Hotel 0 0 2015 October
## 17555 Resort Hotel 0 1 2016 November
## 17556 Resort Hotel 0 0 2015 October
## 17557 Resort Hotel 0 204 2015 October
## 17558 Resort Hotel 0 0 2015 October
## 17559 Resort Hotel 0 2 2015 October
## 17560 Resort Hotel 0 6 2015 October
## 17561 Resort Hotel 0 1 2015 October
## 17562 Resort Hotel 0 286 2015 October
## 17563 Resort Hotel 0 1 2015 October
## 17564 Resort Hotel 0 8 2015 October
## 17565 Resort Hotel 0 5 2015 October
## 17566 Resort Hotel 0 10 2015 October
## 17567 Resort Hotel 0 22 2015 October
## 17568 Resort Hotel 0 49 2015 October
## 17569 Resort Hotel 0 0 2015 October
## 17570 Resort Hotel 0 1 2015 October
## 17571 Resort Hotel 0 0 2015 October
## 17572 Resort Hotel 0 287 2015 October
## 17573 Resort Hotel 0 167 2015 October
## 17574 Resort Hotel 0 287 2015 October
## 17575 Resort Hotel 0 172 2015 October
## 17576 Resort Hotel 0 28 2015 October
## 17577 Resort Hotel 0 287 2015 October
## 17578 Resort Hotel 0 12 2015 October
## 17579 Resort Hotel 0 5 2015 October
## 17580 Resort Hotel 0 2 2015 October
## 17581 Resort Hotel 0 0 2015 October
## 17582 Resort Hotel 0 5 2015 October
## 17583 Resort Hotel 0 0 2015 October
## 17584 Resort Hotel 0 286 2015 October
## 17585 Resort Hotel 0 286 2015 October
## 17586 Resort Hotel 0 287 2015 October
## 17587 Resort Hotel 0 287 2015 October
## 17588 Resort Hotel 0 20 2015 October
## 17589 Resort Hotel 0 167 2015 October
## 17590 Resort Hotel 0 4 2015 October
## 17591 Resort Hotel 0 0 2015 October
## 17592 Resort Hotel 0 287 2015 October
## 17593 Resort Hotel 0 67 2015 October
## 17594 Resort Hotel 0 0 2015 October
## 17595 Resort Hotel 0 0 2015 November
## 17596 Resort Hotel 0 0 2015 October
## 17597 Resort Hotel 0 141 2015 October
## 17598 Resort Hotel 0 141 2015 October
## 17599 Resort Hotel 0 7 2015 October
## 17600 Resort Hotel 0 7 2015 October
## 17601 Resort Hotel 0 7 2015 October
## 17602 Resort Hotel 0 53 2015 October
## 17603 Resort Hotel 0 7 2015 October
## 17604 Resort Hotel 0 7 2015 October
## 17605 Resort Hotel 0 7 2015 October
## 17606 Resort Hotel 0 287 2015 October
## 17607 Resort Hotel 0 7 2015 October
## 17608 Resort Hotel 0 39 2015 October
## 17609 Resort Hotel 0 8 2015 October
## 17610 Resort Hotel 0 127 2015 October
## 17611 Resort Hotel 0 287 2015 October
## 17612 Resort Hotel 0 287 2015 October
## 17613 Resort Hotel 0 125 2015 October
## 17614 Resort Hotel 0 287 2015 October
## 17615 Resort Hotel 0 287 2015 October
## 17616 Resort Hotel 0 287 2015 October
## 17617 Resort Hotel 0 287 2015 October
## 17618 Resort Hotel 0 3 2015 October
## 17619 Resort Hotel 0 174 2015 October
## 17620 Resort Hotel 0 287 2015 October
## 17621 Resort Hotel 0 0 2015 October
## 17622 Resort Hotel 0 287 2015 October
## 17623 Resort Hotel 0 287 2015 October
## 17624 Resort Hotel 0 287 2015 October
## 17625 Resort Hotel 0 287 2015 October
## 17626 Resort Hotel 0 7 2015 October
## 17627 Resort Hotel 0 5 2015 October
## 17628 Resort Hotel 0 287 2015 October
## 17629 Resort Hotel 0 287 2015 October
## 17630 Resort Hotel 0 287 2015 October
## 17631 Resort Hotel 0 84 2015 October
## 17632 Resort Hotel 0 130 2015 October
## 17633 Resort Hotel 0 0 2015 October
## 17634 Resort Hotel 0 287 2015 October
## 17635 Resort Hotel 0 275 2015 October
## 17636 Resort Hotel 0 287 2015 October
## 17637 Resort Hotel 0 73 2015 October
## 17638 Resort Hotel 0 7 2015 October
## 17639 Resort Hotel 0 73 2015 October
## 17640 Resort Hotel 0 287 2015 October
## 17641 Resort Hotel 0 3 2015 October
## 17642 Resort Hotel 0 287 2015 October
## 17643 Resort Hotel 0 3 2015 October
## 17644 Resort Hotel 0 287 2015 October
## 17645 Resort Hotel 0 59 2015 October
## 17646 Resort Hotel 0 287 2015 October
## 17647 Resort Hotel 0 287 2015 October
## 17648 Resort Hotel 0 58 2015 October
## 17649 Resort Hotel 0 287 2015 October
## 17650 Resort Hotel 0 287 2015 October
## 17651 Resort Hotel 0 287 2015 October
## 17652 Resort Hotel 0 287 2015 October
## 17653 Resort Hotel 0 287 2015 October
## 17654 Resort Hotel 0 286 2015 October
## 17655 Resort Hotel 0 287 2015 October
## 17656 Resort Hotel 0 287 2015 October
## 17657 Resort Hotel 0 287 2015 October
## 17658 Resort Hotel 0 287 2015 October
## 17659 Resort Hotel 0 287 2015 October
## 17660 Resort Hotel 0 287 2015 October
## 17661 Resort Hotel 0 287 2015 October
## 17662 Resort Hotel 0 287 2015 October
## 17663 Resort Hotel 0 287 2015 October
## 17664 Resort Hotel 0 283 2015 October
## 17665 Resort Hotel 0 287 2015 October
## 17666 Resort Hotel 0 287 2015 October
## 17667 Resort Hotel 0 287 2015 October
## 17668 Resort Hotel 0 287 2015 October
## 17669 Resort Hotel 0 287 2015 October
## 17670 Resort Hotel 0 286 2015 October
## 17671 Resort Hotel 0 287 2015 October
## 17672 Resort Hotel 0 0 2015 October
## 17673 Resort Hotel 0 287 2015 October
## 17674 Resort Hotel 0 287 2015 October
## 17675 Resort Hotel 0 287 2015 October
## 17676 Resort Hotel 0 287 2015 October
## 17677 Resort Hotel 0 287 2015 October
## 17678 Resort Hotel 0 287 2015 October
## 17679 Resort Hotel 0 287 2015 October
## 17680 Resort Hotel 0 283 2015 October
## 17681 Resort Hotel 0 287 2015 October
## 17682 Resort Hotel 0 287 2015 October
## 17683 Resort Hotel 0 287 2015 October
## 17684 Resort Hotel 0 287 2015 October
## 17685 Resort Hotel 0 287 2015 October
## 17686 Resort Hotel 0 287 2015 October
## 17687 Resort Hotel 0 287 2015 October
## 17688 Resort Hotel 0 283 2015 October
## 17689 Resort Hotel 0 283 2015 October
## 17690 Resort Hotel 0 287 2015 October
## 17691 Resort Hotel 0 283 2015 October
## 17692 Resort Hotel 0 283 2015 October
## 17693 Resort Hotel 0 283 2015 October
## 17694 Resort Hotel 0 283 2015 October
## 17695 Resort Hotel 0 283 2015 October
## 17696 Resort Hotel 0 283 2015 October
## 17697 Resort Hotel 0 283 2015 October
## 17698 Resort Hotel 0 283 2015 October
## 17699 Resort Hotel 0 287 2015 October
## 17700 Resort Hotel 0 283 2015 October
## 17701 Resort Hotel 0 0 2015 October
## 17702 Resort Hotel 0 2 2015 October
## 17703 Resort Hotel 0 287 2015 October
## 17704 Resort Hotel 0 287 2015 October
## 17705 Resort Hotel 0 0 2015 October
## 17706 Resort Hotel 0 1 2016 July
## 17707 Resort Hotel 0 283 2015 October
## 17708 Resort Hotel 0 283 2015 October
## 17709 Resort Hotel 0 283 2015 October
## 17710 Resort Hotel 0 283 2015 October
## 17711 Resort Hotel 0 283 2015 October
## 17712 Resort Hotel 0 283 2015 October
## 17713 Resort Hotel 0 283 2015 October
## 17714 Resort Hotel 0 283 2015 October
## 17715 Resort Hotel 0 283 2015 October
## 17716 Resort Hotel 0 283 2015 October
## 17717 Resort Hotel 0 283 2015 October
## 17718 Resort Hotel 0 287 2015 October
## 17719 Resort Hotel 0 287 2015 October
## 17720 Resort Hotel 1 8 2015 October
## 17721 Resort Hotel 0 287 2015 October
## 17722 Resort Hotel 0 73 2015 October
## 17723 Resort Hotel 0 52 2016 December
## 17724 Resort Hotel 0 9 2015 October
## 17725 Resort Hotel 0 153 2015 October
## 17726 Resort Hotel 0 0 2015 October
## 17727 Resort Hotel 0 6 2015 October
## 17728 Resort Hotel 0 287 2015 October
## 17729 Resort Hotel 0 285 2015 October
## 17730 Resort Hotel 0 168 2016 March
## 17731 Resort Hotel 0 7 2017 March
## 17732 Resort Hotel 0 287 2015 October
## 17733 Resort Hotel 0 287 2015 October
## 17734 Resort Hotel 0 287 2015 October
## 17735 Resort Hotel 0 287 2015 October
## 17736 Resort Hotel 0 236 2015 October
## 17737 Resort Hotel 0 236 2015 October
## 17738 Resort Hotel 0 287 2015 October
## 17739 Resort Hotel 0 286 2015 October
## 17740 Resort Hotel 0 286 2015 October
## 17741 Resort Hotel 0 3 2015 October
## 17742 Resort Hotel 0 286 2015 October
## 17743 Resort Hotel 0 287 2015 October
## 17744 Resort Hotel 0 286 2015 October
## 17745 Resort Hotel 0 286 2015 October
## 17746 Resort Hotel 0 16 2015 October
## 17747 Resort Hotel 0 278 2015 October
## 17748 Resort Hotel 0 1 2015 October
## 17749 Resort Hotel 1 3 2016 February
## 17750 Resort Hotel 0 0 2016 April
## 17751 Resort Hotel 0 0 2017 March
## 17752 Resort Hotel 0 1 2015 October
## 17753 Resort Hotel 1 3 2016 February
## 17754 Resort Hotel 0 0 2016 February
## 17755 Resort Hotel 0 0 2016 April
## 17756 Resort Hotel 0 285 2015 October
## 17757 Resort Hotel 0 76 2015 October
## 17758 Resort Hotel 0 92 2015 October
## 17759 Resort Hotel 0 93 2015 October
## 17760 Resort Hotel 0 211 2015 October
## 17761 Resort Hotel 0 85 2015 October
## 17762 Resort Hotel 0 0 2015 October
## 17763 Resort Hotel 0 286 2015 October
## 17764 Resort Hotel 0 286 2015 October
## 17765 Resort Hotel 0 286 2015 October
## 17766 Resort Hotel 0 6 2015 October
## 17767 Resort Hotel 0 7 2015 October
## 17768 Resort Hotel 0 285 2015 October
## 17769 Resort Hotel 0 7 2015 October
## 17770 Resort Hotel 0 0 2015 October
## 17771 Resort Hotel 0 0 2015 October
## 17772 Resort Hotel 0 139 2015 October
## 17773 Resort Hotel 0 0 2015 October
## 17774 Resort Hotel 0 0 2015 October
## 17775 Resort Hotel 0 286 2015 October
## 17776 Resort Hotel 0 4 2015 October
## 17777 Resort Hotel 0 11 2015 October
## 17778 Resort Hotel 0 0 2015 October
## 17779 Resort Hotel 0 287 2015 October
## 17780 Resort Hotel 0 287 2015 October
## 17781 Resort Hotel 0 157 2015 October
## 17782 Resort Hotel 0 4 2015 October
## 17783 Resort Hotel 0 4 2015 December
## 17784 Resort Hotel 0 2 2016 February
## 17785 Resort Hotel 0 6 2016 March
## 17786 Resort Hotel 0 7 2016 April
## 17787 Resort Hotel 0 21 2016 May
## 17788 Resort Hotel 0 30 2016 September
## 17789 Resort Hotel 0 5 2016 October
## 17790 Resort Hotel 0 6 2016 November
## 17791 Resort Hotel 0 8 2017 January
## 17792 Resort Hotel 1 0 2017 February
## 17793 Resort Hotel 0 20 2017 May
## 17794 Resort Hotel 0 0 2015 October
## 17795 Resort Hotel 0 1 2016 May
## 17796 Resort Hotel 0 1 2017 March
## 17797 Resort Hotel 0 9 2017 March
## 17798 Resort Hotel 0 1 2017 May
## 17799 Resort Hotel 0 11 2015 October
## 17800 Resort Hotel 0 1 2015 October
## 17801 Resort Hotel 0 35 2015 October
## 17802 Resort Hotel 0 9 2015 October
## 17803 Resort Hotel 0 2 2015 October
## 17804 Resort Hotel 0 16 2015 October
## 17805 Resort Hotel 0 0 2015 October
## 17806 Resort Hotel 0 0 2017 January
## 17807 Resort Hotel 0 1 2017 February
## 17808 Resort Hotel 0 2 2015 October
## 17809 Resort Hotel 0 5 2015 November
## 17810 Resort Hotel 0 1 2016 January
## 17811 Resort Hotel 0 24 2016 June
## 17812 Resort Hotel 0 287 2015 October
## 17813 Resort Hotel 0 5 2015 October
## 17814 Resort Hotel 0 0 2015 October
## 17815 Resort Hotel 0 101 2015 October
## 17816 Resort Hotel 0 215 2015 October
## 17817 Resort Hotel 0 223 2015 October
## 17818 Resort Hotel 0 215 2015 October
## 17819 Resort Hotel 0 0 2015 October
## 17820 Resort Hotel 0 287 2015 October
## 17821 Resort Hotel 0 292 2015 October
## 17822 Resort Hotel 0 292 2015 October
## 17823 Resort Hotel 0 292 2015 October
## 17824 Resort Hotel 0 292 2015 October
## 17825 Resort Hotel 0 292 2015 October
## 17826 Resort Hotel 0 292 2015 October
## 17827 Resort Hotel 0 292 2015 October
## 17828 Resort Hotel 0 292 2015 October
## 17829 Resort Hotel 0 292 2015 October
## 17830 Resort Hotel 0 292 2015 October
## 17831 Resort Hotel 0 292 2015 October
## 17832 Resort Hotel 0 292 2015 October
## 17833 Resort Hotel 0 292 2015 October
## 17834 Resort Hotel 0 292 2015 October
## 17835 Resort Hotel 0 292 2015 October
## 17836 Resort Hotel 0 292 2015 October
## 17837 Resort Hotel 0 292 2015 October
## 17838 Resort Hotel 0 292 2015 October
## 17839 Resort Hotel 0 292 2015 October
## 17840 Resort Hotel 0 292 2015 October
## 17841 Resort Hotel 0 292 2015 October
## 17842 Resort Hotel 0 292 2015 October
## 17843 Resort Hotel 0 292 2015 October
## 17844 Resort Hotel 0 34 2015 October
## 17845 Resort Hotel 0 10 2015 October
## 17846 Resort Hotel 0 8 2015 October
## 17847 Resort Hotel 0 28 2015 October
## 17848 Resort Hotel 0 0 2015 October
## 17849 Resort Hotel 0 75 2015 October
## 17850 Resort Hotel 0 36 2015 October
## 17851 Resort Hotel 0 32 2015 October
## 17852 Resort Hotel 0 287 2015 October
## 17853 Resort Hotel 0 24 2015 October
## 17854 Resort Hotel 0 33 2015 October
## 17855 Resort Hotel 0 48 2015 October
## 17856 Resort Hotel 0 113 2015 October
## 17857 Resort Hotel 0 113 2015 October
## 17858 Resort Hotel 0 113 2015 October
## 17859 Resort Hotel 0 5 2015 October
## 17860 Resort Hotel 0 47 2015 October
## 17861 Resort Hotel 0 47 2015 October
## 17862 Resort Hotel 0 5 2015 October
## 17863 Resort Hotel 0 1 2015 October
## 17864 Resort Hotel 0 0 2015 October
## 17865 Resort Hotel 0 43 2015 October
## 17866 Resort Hotel 0 25 2015 October
## 17867 Resort Hotel 0 91 2015 October
## 17868 Resort Hotel 0 29 2015 October
## 17869 Resort Hotel 0 7 2015 October
## 17870 Resort Hotel 0 7 2015 October
## 17871 Resort Hotel 0 7 2015 October
## 17872 Resort Hotel 0 86 2015 October
## 17873 Resort Hotel 0 0 2015 October
## 17874 Resort Hotel 0 0 2015 October
## 17875 Resort Hotel 0 121 2015 October
## 17876 Resort Hotel 0 121 2015 October
## 17877 Resort Hotel 0 0 2015 October
## 17878 Resort Hotel 0 0 2015 October
## 17879 Resort Hotel 0 1 2015 October
## 17880 Resort Hotel 0 62 2015 October
## 17881 Resort Hotel 0 55 2015 October
## 17882 Resort Hotel 0 11 2015 October
## 17883 Resort Hotel 0 62 2015 October
## 17884 Resort Hotel 0 25 2015 October
## 17885 Resort Hotel 0 44 2015 October
## 17886 Resort Hotel 0 10 2015 October
## 17887 Resort Hotel 0 7 2017 March
## 17888 Resort Hotel 0 89 2015 October
## 17889 Resort Hotel 0 29 2015 October
## 17890 Resort Hotel 0 44 2015 October
## 17891 Resort Hotel 0 44 2015 October
## 17892 Resort Hotel 0 163 2015 October
## 17893 Resort Hotel 0 0 2015 October
## 17894 Resort Hotel 0 163 2015 October
## 17895 Resort Hotel 0 51 2015 October
## 17896 Resort Hotel 0 51 2015 October
## 17897 Resort Hotel 0 51 2015 October
## 17898 Resort Hotel 0 52 2015 October
## 17899 Resort Hotel 0 0 2015 October
## 17900 Resort Hotel 0 38 2015 October
## 17901 Resort Hotel 0 107 2015 October
## 17902 Resort Hotel 0 105 2015 October
## 17903 Resort Hotel 0 146 2015 October
## 17904 Resort Hotel 0 146 2015 October
## 17905 Resort Hotel 0 146 2015 October
## 17906 Resort Hotel 0 0 2015 October
## 17907 Resort Hotel 0 77 2015 October
## 17908 Resort Hotel 0 146 2015 October
## 17909 Resort Hotel 0 146 2015 October
## 17910 Resort Hotel 0 108 2015 October
## 17911 Resort Hotel 0 84 2015 October
## 17912 Resort Hotel 0 36 2015 October
## 17913 Resort Hotel 0 3 2015 October
## 17914 Resort Hotel 0 4 2015 November
## 17915 Resort Hotel 0 3 2016 January
## 17916 Resort Hotel 0 7 2016 April
## 17917 Resort Hotel 0 3 2016 May
## 17918 Resort Hotel 0 4 2016 November
## 17919 Resort Hotel 0 0 2015 October
## 17920 Resort Hotel 0 0 2015 November
## 17921 Resort Hotel 0 0 2015 December
## 17922 Resort Hotel 0 1 2016 January
## 17923 Resort Hotel 0 1 2016 March
## 17924 Resort Hotel 0 4 2016 March
## 17925 Resort Hotel 0 0 2016 June
## 17926 Resort Hotel 0 1 2016 July
## 17927 Resort Hotel 0 4 2016 October
## 17928 Resort Hotel 0 0 2015 October
## 17929 Resort Hotel 0 0 2015 October
## 17930 Resort Hotel 0 188 2015 October
## 17931 Resort Hotel 0 1 2015 October
## 17932 Resort Hotel 0 0 2015 October
## 17933 Resort Hotel 0 0 2015 October
## 17934 Resort Hotel 0 48 2015 October
## 17935 Resort Hotel 0 40 2015 October
## 17936 Resort Hotel 0 122 2015 October
## 17937 Resort Hotel 0 0 2015 October
## 17938 Resort Hotel 0 0 2017 January
## 17939 Resort Hotel 0 21 2015 October
## 17940 Resort Hotel 0 5 2015 October
## 17941 Resort Hotel 0 5 2015 October
## 17942 Resort Hotel 0 1 2017 February
## 17943 Resort Hotel 0 0 2015 October
## 17944 Resort Hotel 0 0 2015 November
## 17945 Resort Hotel 0 0 2015 December
## 17946 Resort Hotel 0 0 2016 January
## 17947 Resort Hotel 0 0 2016 February
## 17948 Resort Hotel 0 0 2016 March
## 17949 Resort Hotel 0 0 2016 April
## 17950 Resort Hotel 0 5 2015 October
## 17951 Resort Hotel 0 7 2016 January
## 17952 Resort Hotel 0 1 2017 February
## 17953 Resort Hotel 0 43 2015 October
## 17954 Resort Hotel 0 41 2015 October
## 17955 Resort Hotel 0 5 2015 October
## 17956 Resort Hotel 1 33 2015 November
## 17957 Resort Hotel 0 6 2016 April
## 17958 Resort Hotel 0 0 2015 October
## 17959 Resort Hotel 0 0 2015 October
## 17960 Resort Hotel 0 0 2015 October
## 17961 Resort Hotel 0 0 2016 April
## 17962 Resort Hotel 0 101 2015 October
## 17963 Resort Hotel 0 21 2015 October
## 17964 Resort Hotel 0 115 2015 October
## 17965 Resort Hotel 0 0 2015 October
## 17966 Resort Hotel 0 0 2015 November
## 17967 Resort Hotel 0 0 2015 December
## 17968 Resort Hotel 0 0 2016 September
## 17969 Resort Hotel 0 0 2016 November
## 17970 Resort Hotel 0 1 2017 March
## 17971 Resort Hotel 0 38 2015 October
## 17972 Resort Hotel 0 2 2015 October
## 17973 Resort Hotel 1 2 2016 February
## 17974 Resort Hotel 0 7 2016 March
## 17975 Resort Hotel 0 45 2015 October
## 17976 Resort Hotel 0 121 2015 October
## 17977 Resort Hotel 0 0 2015 October
## 17978 Resort Hotel 0 9 2015 October
## 17979 Resort Hotel 0 22 2015 October
## 17980 Resort Hotel 0 21 2015 October
## 17981 Resort Hotel 0 21 2015 October
## 17982 Resort Hotel 1 289 2015 November
## 17983 Resort Hotel 1 289 2015 November
## 17984 Resort Hotel 0 14 2015 October
## 17985 Resort Hotel 0 0 2015 November
## 17986 Resort Hotel 0 6 2015 December
## 17987 Resort Hotel 0 10 2015 December
## 17988 Resort Hotel 0 0 2016 January
## 17989 Resort Hotel 0 24 2016 May
## 17990 Resort Hotel 0 0 2015 October
## 17991 Resort Hotel 0 1 2015 November
## 17992 Resort Hotel 1 1 2015 November
## 17993 Resort Hotel 0 0 2015 November
## 17994 Resort Hotel 0 0 2015 November
## 17995 Resort Hotel 0 0 2015 November
## 17996 Resort Hotel 0 0 2015 December
## 17997 Resort Hotel 0 0 2015 December
## 17998 Resort Hotel 0 0 2016 January
## 17999 Resort Hotel 0 0 2016 February
## 18000 Resort Hotel 0 0 2016 February
## 18001 Resort Hotel 0 0 2016 February
## 18002 Resort Hotel 0 0 2016 March
## 18003 Resort Hotel 0 0 2016 March
## 18004 Resort Hotel 0 0 2016 April
## 18005 Resort Hotel 0 0 2016 April
## 18006 Resort Hotel 0 1 2016 April
## 18007 Resort Hotel 0 0 2016 May
## 18008 Resort Hotel 0 0 2016 May
## 18009 Resort Hotel 0 0 2016 June
## 18010 Resort Hotel 0 1 2016 August
## 18011 Resort Hotel 0 0 2016 October
## 18012 Resort Hotel 0 0 2016 November
## 18013 Resort Hotel 0 0 2016 December
## 18014 Resort Hotel 0 0 2017 January
## 18015 Resort Hotel 0 0 2017 January
## 18016 Resort Hotel 0 0 2017 April
## 18017 Resort Hotel 0 0 2017 June
## 18018 Resort Hotel 0 0 2015 October
## 18019 Resort Hotel 0 5 2015 October
## 18020 Resort Hotel 0 61 2015 October
## 18021 Resort Hotel 0 7 2015 October
## 18022 Resort Hotel 0 1 2015 October
## 18023 Resort Hotel 0 1 2016 March
## 18024 Resort Hotel 0 1 2015 October
## 18025 Resort Hotel 0 0 2015 October
## 18026 Resort Hotel 0 5 2015 October
## 18027 Resort Hotel 0 129 2015 October
## 18028 Resort Hotel 0 5 2015 October
## 18029 Resort Hotel 0 79 2015 October
## 18030 Resort Hotel 0 79 2015 October
## 18031 Resort Hotel 0 8 2015 October
## 18032 Resort Hotel 0 8 2015 October
## 18033 Resort Hotel 0 1 2015 October
## 18034 Resort Hotel 0 88 2015 October
## 18035 Resort Hotel 0 103 2015 October
## 18036 Resort Hotel 0 88 2015 October
## 18037 Resort Hotel 0 0 2015 October
## 18038 Resort Hotel 0 115 2015 October
## 18039 Resort Hotel 0 130 2015 October
## 18040 Resort Hotel 0 130 2015 October
## 18041 Resort Hotel 0 9 2015 October
## 18042 Resort Hotel 0 9 2015 October
## 18043 Resort Hotel 0 0 2015 October
## 18044 Resort Hotel 0 0 2015 October
## 18045 Resort Hotel 1 155 2015 October
## 18046 Resort Hotel 0 9 2016 October
## 18047 Resort Hotel 0 101 2015 October
## 18048 Resort Hotel 0 20 2015 October
## 18049 Resort Hotel 0 48 2015 October
## 18050 Resort Hotel 0 48 2015 October
## 18051 Resort Hotel 0 159 2015 October
## 18052 Resort Hotel 0 111 2015 October
## 18053 Resort Hotel 0 3 2015 October
## 18054 Resort Hotel 0 3 2015 October
## 18055 Resort Hotel 0 153 2015 October
## 18056 Resort Hotel 0 153 2015 October
## 18057 Resort Hotel 0 155 2015 October
## 18058 Resort Hotel 0 154 2015 October
## 18059 Resort Hotel 0 2 2015 October
## 18060 Resort Hotel 0 0 2016 October
## 18061 Resort Hotel 0 155 2015 October
## 18062 Resort Hotel 0 153 2015 October
## 18063 Resort Hotel 0 155 2015 October
## 18064 Resort Hotel 0 2 2015 October
## 18065 Resort Hotel 0 153 2015 October
## 18066 Resort Hotel 0 4 2015 October
## 18067 Resort Hotel 0 4 2015 October
## 18068 Resort Hotel 0 88 2015 October
## 18069 Resort Hotel 0 74 2015 October
## 18070 Resort Hotel 0 1 2015 October
## 18071 Resort Hotel 0 2 2016 February
## 18072 Resort Hotel 1 33 2015 November
## 18073 Resort Hotel 0 6 2016 November
## 18074 Resort Hotel 0 17 2015 October
## 18075 Resort Hotel 0 58 2016 September
## 18076 Resort Hotel 0 11 2015 October
## 18077 Resort Hotel 0 0 2015 November
## 18078 Resort Hotel 0 1 2015 October
## 18079 Resort Hotel 0 0 2015 November
## 18080 Resort Hotel 0 3 2015 October
## 18081 Resort Hotel 0 6 2015 November
## 18082 Resort Hotel 0 5 2015 October
## 18083 Resort Hotel 0 3 2015 October
## 18084 Resort Hotel 0 0 2015 November
## 18085 Resort Hotel 0 74 2015 October
## 18086 Resort Hotel 0 0 2015 November
## 18087 Resort Hotel 0 6 2015 November
## 18088 Resort Hotel 0 6 2015 November
## 18089 Resort Hotel 0 1 2015 November
## 18090 Resort Hotel 0 4 2015 November
## 18091 Resort Hotel 0 0 2015 November
## 18092 Resort Hotel 0 0 2016 January
## 18093 Resort Hotel 0 0 2015 November
## 18094 Resort Hotel 0 4 2015 November
## 18095 Resort Hotel 0 0 2015 November
## 18096 Resort Hotel 0 6 2015 November
## 18097 Resort Hotel 0 5 2016 January
## 18098 Resort Hotel 0 4 2016 February
## 18099 Resort Hotel 0 11 2016 March
## 18100 Resort Hotel 0 3 2016 March
## 18101 Resort Hotel 0 10 2016 May
## 18102 Resort Hotel 0 113 2015 October
## 18103 Resort Hotel 0 0 2015 November
## 18104 Resort Hotel 0 0 2015 November
## 18105 Resort Hotel 0 0 2015 November
## 18106 Resort Hotel 0 1 2015 November
## 18107 Resort Hotel 0 1 2016 February
## 18108 Resort Hotel 0 0 2016 October
## 18109 Resort Hotel 0 6 2015 November
## 18110 Resort Hotel 0 1 2015 November
## 18111 Resort Hotel 0 0 2017 January
## 18112 Resort Hotel 0 28 2015 November
## 18113 Resort Hotel 0 9 2015 November
## 18114 Resort Hotel 0 21 2017 April
## 18115 Resort Hotel 0 1 2015 November
## 18116 Resort Hotel 0 53 2015 November
## 18117 Resort Hotel 0 1 2015 November
## 18118 Resort Hotel 0 0 2017 January
## 18119 Resort Hotel 0 0 2015 November
## 18120 Resort Hotel 0 121 2015 November
## 18121 Resort Hotel 0 0 2015 November
## 18122 Resort Hotel 0 3 2015 November
## 18123 Resort Hotel 0 27 2015 November
## 18124 Resort Hotel 0 14 2015 November
## 18125 Resort Hotel 0 5 2015 November
## 18126 Resort Hotel 0 29 2015 November
## 18127 Resort Hotel 0 17 2015 November
## 18128 Resort Hotel 0 99 2015 October
## 18129 Resort Hotel 0 0 2015 November
## 18130 Resort Hotel 0 29 2015 November
## 18131 Resort Hotel 0 11 2015 November
## 18132 Resort Hotel 0 59 2015 November
## 18133 Resort Hotel 0 15 2015 November
## 18134 Resort Hotel 0 45 2015 October
## 18135 Resort Hotel 0 7 2015 November
## 18136 Resort Hotel 0 20 2015 November
## 18137 Resort Hotel 0 16 2016 November
## 18138 Resort Hotel 0 1 2015 November
## 18139 Resort Hotel 0 19 2015 November
## 18140 Resort Hotel 0 13 2015 November
## 18141 Resort Hotel 0 1 2015 November
## 18142 Resort Hotel 0 4 2015 November
## 18143 Resort Hotel 0 34 2015 November
## 18144 Resort Hotel 0 1 2015 November
## 18145 Resort Hotel 0 1 2015 November
## 18146 Resort Hotel 0 269 2015 November
## 18147 Resort Hotel 0 69 2016 November
## 18148 Resort Hotel 0 1 2015 November
## 18149 Resort Hotel 0 23 2016 December
## 18150 Resort Hotel 0 23 2015 November
## 18151 Resort Hotel 0 39 2015 November
## 18152 Resort Hotel 0 4 2015 November
## 18153 Resort Hotel 0 94 2015 November
## 18154 Resort Hotel 0 18 2015 November
## 18155 Resort Hotel 0 170 2015 November
## 18156 Resort Hotel 0 2 2015 November
## 18157 Resort Hotel 0 1 2015 November
## 18158 Resort Hotel 0 2 2015 November
## 18159 Resort Hotel 0 0 2015 November
## 18160 Resort Hotel 0 20 2015 November
## 18161 Resort Hotel 0 20 2015 November
## 18162 Resort Hotel 0 20 2015 November
## 18163 Resort Hotel 0 305 2015 November
## 18164 Resort Hotel 0 0 2015 November
## 18165 Resort Hotel 0 22 2015 November
## 18166 Resort Hotel 0 13 2015 November
## 18167 Resort Hotel 0 0 2015 November
## 18168 Resort Hotel 0 0 2015 November
## 18169 Resort Hotel 0 11 2015 November
## 18170 Resort Hotel 0 31 2015 November
## 18171 Resort Hotel 0 0 2015 November
## 18172 Resort Hotel 0 4 2015 November
## 18173 Resort Hotel 1 289 2015 November
## 18174 Resort Hotel 1 289 2015 November
## 18175 Resort Hotel 1 289 2015 November
## 18176 Resort Hotel 1 289 2015 November
## 18177 Resort Hotel 0 0 2015 November
## 18178 Resort Hotel 0 1 2015 November
## 18179 Resort Hotel 0 0 2015 November
## 18180 Resort Hotel 0 32 2015 November
## 18181 Resort Hotel 0 0 2015 November
## 18182 Resort Hotel 0 0 2015 November
## 18183 Resort Hotel 0 0 2015 November
## 18184 Resort Hotel 0 0 2015 November
## 18185 Resort Hotel 0 2 2015 November
## 18186 Resort Hotel 0 3 2015 November
## 18187 Resort Hotel 0 1 2015 November
## 18188 Resort Hotel 0 0 2015 November
## 18189 Resort Hotel 0 34 2015 November
## 18190 Resort Hotel 0 6 2015 November
## 18191 Resort Hotel 0 1 2015 November
## 18192 Resort Hotel 0 31 2015 November
## 18193 Resort Hotel 0 31 2015 November
## 18194 Resort Hotel 0 65 2015 November
## 18195 Resort Hotel 0 33 2015 November
## 18196 Resort Hotel 0 21 2015 November
## 18197 Resort Hotel 0 5 2015 November
## 18198 Resort Hotel 0 109 2015 November
## 18199 Resort Hotel 0 109 2015 November
## 18200 Resort Hotel 0 26 2015 November
## 18201 Resort Hotel 0 26 2015 November
## 18202 Resort Hotel 0 39 2015 November
## 18203 Resort Hotel 0 36 2015 November
## 18204 Resort Hotel 0 36 2015 November
## 18205 Resort Hotel 0 14 2015 November
## 18206 Resort Hotel 0 89 2015 November
## 18207 Resort Hotel 0 3 2015 November
## 18208 Resort Hotel 0 15 2015 November
## 18209 Resort Hotel 0 36 2015 November
## 18210 Resort Hotel 0 16 2015 November
## 18211 Resort Hotel 0 29 2015 November
## 18212 Resort Hotel 0 28 2015 November
## 18213 Resort Hotel 0 28 2015 November
## 18214 Resort Hotel 0 30 2015 November
## 18215 Resort Hotel 0 42 2015 November
## 18216 Resort Hotel 0 37 2015 November
## 18217 Resort Hotel 0 37 2015 November
## 18218 Resort Hotel 0 37 2015 November
## 18219 Resort Hotel 0 27 2015 November
## 18220 Resort Hotel 0 54 2015 November
## 18221 Resort Hotel 0 54 2015 November
## 18222 Resort Hotel 0 24 2015 November
## 18223 Resort Hotel 0 37 2015 November
## 18224 Resort Hotel 0 65 2015 November
## 18225 Resort Hotel 0 65 2015 November
## 18226 Resort Hotel 0 30 2015 November
## 18227 Resort Hotel 0 25 2017 April
## 18228 Resort Hotel 0 31 2015 November
## 18229 Resort Hotel 0 31 2015 November
## 18230 Resort Hotel 0 26 2017 April
## 18231 Resort Hotel 0 26 2015 November
## 18232 Resort Hotel 0 37 2015 November
## 18233 Resort Hotel 0 37 2015 November
## 18234 Resort Hotel 0 31 2015 November
## 18235 Resort Hotel 0 2 2015 November
## 18236 Resort Hotel 0 36 2015 November
## 18237 Resort Hotel 0 31 2015 November
## 18238 Resort Hotel 0 35 2015 November
## 18239 Resort Hotel 0 31 2015 November
## 18240 Resort Hotel 0 179 2015 November
## 18241 Resort Hotel 0 163 2015 November
## 18242 Resort Hotel 0 0 2015 November
## 18243 Resort Hotel 0 35 2015 November
## 18244 Resort Hotel 0 2 2015 November
## 18245 Resort Hotel 0 8 2015 November
## 18246 Resort Hotel 0 35 2015 November
## 18247 Resort Hotel 0 37 2015 November
## 18248 Resort Hotel 0 36 2015 November
## 18249 Resort Hotel 0 35 2015 November
## 18250 Resort Hotel 0 36 2015 November
## 18251 Resort Hotel 0 0 2015 November
## 18252 Resort Hotel 0 36 2015 November
## 18253 Resort Hotel 0 36 2015 November
## 18254 Resort Hotel 0 36 2015 November
## 18255 Resort Hotel 0 27 2015 November
## 18256 Resort Hotel 0 41 2015 November
## 18257 Resort Hotel 0 41 2015 November
## 18258 Resort Hotel 0 31 2015 November
## 18259 Resort Hotel 0 12 2015 November
## 18260 Resort Hotel 0 54 2015 November
## 18261 Resort Hotel 0 163 2015 November
## 18262 Resort Hotel 1 1 2016 February
## 18263 Resort Hotel 0 0 2015 November
## 18264 Resort Hotel 0 34 2015 November
## 18265 Resort Hotel 0 19 2015 November
## 18266 Resort Hotel 0 36 2015 November
## 18267 Resort Hotel 0 15 2015 November
## 18268 Resort Hotel 0 37 2015 November
## 18269 Resort Hotel 0 34 2015 November
## 18270 Resort Hotel 0 25 2015 November
## 18271 Resort Hotel 0 12 2015 November
## 18272 Resort Hotel 0 24 2015 November
## 18273 Resort Hotel 0 0 2015 November
## 18274 Resort Hotel 0 0 2015 November
## 18275 Resort Hotel 0 0 2016 January
## 18276 Resort Hotel 0 0 2016 January
## 18277 Resort Hotel 0 2 2016 April
## 18278 Resort Hotel 0 1 2017 January
## 18279 Resort Hotel 0 2 2017 March
## 18280 Resort Hotel 0 24 2015 November
## 18281 Resort Hotel 0 24 2015 November
## 18282 Resort Hotel 0 24 2015 November
## 18283 Resort Hotel 0 24 2015 November
## 18284 Resort Hotel 0 24 2015 November
## 18285 Resort Hotel 0 36 2015 November
## 18286 Resort Hotel 0 24 2015 November
## 18287 Resort Hotel 0 0 2015 November
## 18288 Resort Hotel 0 19 2015 November
## 18289 Resort Hotel 0 1 2016 March
## 18290 Resort Hotel 0 0 2015 November
## 18291 Resort Hotel 0 0 2015 November
## 18292 Resort Hotel 1 2 2015 November
## 18293 Resort Hotel 0 24 2015 October
## 18294 Resort Hotel 0 1 2015 November
## 18295 Resort Hotel 0 0 2015 November
## 18296 Resort Hotel 0 31 2015 November
## 18297 Resort Hotel 0 24 2015 October
## 18298 Resort Hotel 0 31 2015 November
## 18299 Resort Hotel 0 31 2015 November
## 18300 Resort Hotel 0 0 2015 November
## 18301 Resort Hotel 0 2 2015 November
## 18302 Resort Hotel 0 3 2015 November
## 18303 Resort Hotel 0 4 2016 July
## 18304 Resort Hotel 0 0 2015 November
## 18305 Resort Hotel 0 0 2015 November
## 18306 Resort Hotel 0 0 2015 November
## 18307 Resort Hotel 0 6 2016 December
## 18308 Resort Hotel 0 0 2015 November
## 18309 Resort Hotel 0 6 2016 December
## 18310 Resort Hotel 0 2 2015 November
## 18311 Resort Hotel 0 12 2015 November
## 18312 Resort Hotel 0 12 2015 November
## 18313 Resort Hotel 0 3 2015 November
## 18314 Resort Hotel 0 24 2015 October
## 18315 Resort Hotel 0 10 2015 November
## 18316 Resort Hotel 0 10 2015 November
## 18317 Resort Hotel 0 31 2015 November
## 18318 Resort Hotel 0 26 2017 April
## 18319 Resort Hotel 0 0 2015 November
## 18320 Resort Hotel 0 0 2016 January
## 18321 Resort Hotel 0 0 2016 March
## 18322 Resort Hotel 1 105 2016 February
## 18323 Resort Hotel 0 2 2015 November
## 18324 Resort Hotel 1 234 2016 July
## 18325 Resort Hotel 0 82 2016 February
## 18326 Resort Hotel 0 82 2016 February
## 18327 Resort Hotel 0 82 2016 February
## 18328 Resort Hotel 0 82 2016 February
## 18329 Resort Hotel 0 82 2016 February
## 18330 Resort Hotel 0 82 2016 February
## 18331 Resort Hotel 0 82 2016 February
## 18332 Resort Hotel 0 82 2016 February
## 18333 Resort Hotel 0 82 2016 February
## 18334 Resort Hotel 0 82 2016 February
## 18335 Resort Hotel 0 82 2016 February
## 18336 Resort Hotel 0 82 2016 February
## 18337 Resort Hotel 0 82 2016 February
## 18338 Resort Hotel 1 82 2016 February
## 18339 Resort Hotel 1 82 2016 February
## 18340 Resort Hotel 1 82 2016 February
## 18341 Resort Hotel 1 82 2016 February
## 18342 Resort Hotel 1 82 2016 February
## 18343 Resort Hotel 1 82 2016 February
## 18344 Resort Hotel 1 82 2016 February
## 18345 Resort Hotel 1 82 2016 February
## 18346 Resort Hotel 1 82 2016 February
## 18347 Resort Hotel 1 82 2016 February
## 18348 Resort Hotel 1 82 2016 February
## 18349 Resort Hotel 1 82 2016 February
## 18350 Resort Hotel 1 82 2016 February
## 18351 Resort Hotel 1 82 2016 February
## 18352 Resort Hotel 1 82 2016 February
## 18353 Resort Hotel 1 82 2016 February
## 18354 Resort Hotel 1 82 2016 February
## 18355 Resort Hotel 1 82 2016 February
## 18356 Resort Hotel 1 82 2016 February
## 18357 Resort Hotel 1 82 2016 February
## 18358 Resort Hotel 1 82 2016 February
## 18359 Resort Hotel 1 82 2016 February
## 18360 Resort Hotel 1 82 2016 February
## 18361 Resort Hotel 1 82 2016 February
## 18362 Resort Hotel 1 82 2016 February
## 18363 Resort Hotel 1 82 2016 February
## 18364 Resort Hotel 1 82 2016 February
## 18365 Resort Hotel 1 82 2016 February
## 18366 Resort Hotel 1 82 2016 February
## 18367 Resort Hotel 1 215 2016 June
## 18368 Resort Hotel 0 0 2015 November
## 18369 Resort Hotel 0 0 2015 November
## 18370 Resort Hotel 1 0 2017 March
## 18371 Resort Hotel 0 6 2015 November
## 18372 Resort Hotel 0 2 2016 June
## 18373 Resort Hotel 0 4 2017 January
## 18374 Resort Hotel 0 5 2017 May
## 18375 Resort Hotel 0 0 2015 November
## 18376 Resort Hotel 0 1 2015 November
## 18377 Resort Hotel 0 1 2015 November
## 18378 Resort Hotel 0 1 2015 November
## 18379 Resort Hotel 0 78 2015 November
## 18380 Resort Hotel 0 1 2015 November
## 18381 Resort Hotel 0 5 2015 November
## 18382 Resort Hotel 0 2 2015 November
## 18383 Resort Hotel 0 50 2015 November
## 18384 Resort Hotel 0 10 2015 November
## 18385 Resort Hotel 0 1 2015 November
## 18386 Resort Hotel 0 1 2015 November
## 18387 Resort Hotel 0 12 2015 November
## 18388 Resort Hotel 0 2 2017 June
## 18389 Resort Hotel 1 1 2015 November
## 18390 Resort Hotel 0 11 2015 November
## 18391 Resort Hotel 0 5 2015 November
## 18392 Resort Hotel 0 1 2017 January
## 18393 Resort Hotel 0 7 2017 March
## 18394 Resort Hotel 0 6 2015 November
## 18395 Resort Hotel 0 0 2015 November
## 18396 Resort Hotel 0 2 2015 November
## 18397 Resort Hotel 0 2 2015 November
## 18398 Resort Hotel 0 0 2015 November
## 18399 Resort Hotel 0 0 2015 November
## 18400 Resort Hotel 0 0 2015 November
## 18401 Resort Hotel 0 0 2015 November
## 18402 Resort Hotel 0 2 2015 November
## 18403 Resort Hotel 0 6 2015 November
## 18404 Resort Hotel 0 0 2015 November
## 18405 Resort Hotel 0 2 2015 December
## 18406 Resort Hotel 0 6 2016 March
## 18407 Resort Hotel 0 2 2015 November
## 18408 Resort Hotel 0 1 2016 January
## 18409 Resort Hotel 0 8 2016 February
## 18410 Resort Hotel 0 4 2016 February
## 18411 Resort Hotel 0 2 2016 March
## 18412 Resort Hotel 0 6 2016 March
## 18413 Resort Hotel 0 2 2016 April
## 18414 Resort Hotel 0 4 2016 May
## 18415 Resort Hotel 0 5 2015 November
## 18416 Resort Hotel 0 0 2015 November
## 18417 Resort Hotel 0 3 2015 November
## 18418 Resort Hotel 0 4 2016 March
## 18419 Resort Hotel 0 2 2016 December
## 18420 Resort Hotel 0 0 2016 December
## 18421 Resort Hotel 0 1 2017 January
## 18422 Resort Hotel 0 2 2017 March
## 18423 Resort Hotel 0 0 2015 November
## 18424 Resort Hotel 0 1 2015 November
## 18425 Resort Hotel 0 2 2016 January
## 18426 Resort Hotel 0 0 2015 November
## 18427 Resort Hotel 0 22 2015 November
## 18428 Resort Hotel 0 10 2015 November
## 18429 Resort Hotel 0 6 2015 November
## 18430 Resort Hotel 0 6 2015 November
## 18431 Resort Hotel 0 6 2015 November
## 18432 Resort Hotel 0 6 2015 November
## 18433 Resort Hotel 0 6 2015 November
## 18434 Resort Hotel 1 289 2015 November
## 18435 Resort Hotel 0 1 2015 November
## 18436 Resort Hotel 0 3 2016 May
## 18437 Resort Hotel 0 23 2017 March
## 18438 Resort Hotel 0 27 2017 April
## 18439 Resort Hotel 0 14 2015 November
## 18440 Resort Hotel 0 0 2015 November
## 18441 Resort Hotel 0 0 2015 November
## 18442 Resort Hotel 0 0 2016 May
## 18443 Resort Hotel 0 1 2017 June
## 18444 Resort Hotel 0 1 2015 November
## 18445 Resort Hotel 0 1 2015 November
## 18446 Resort Hotel 0 1 2016 March
## 18447 Resort Hotel 0 0 2015 November
## 18448 Resort Hotel 0 1 2015 November
## 18449 Resort Hotel 0 0 2015 November
## 18450 Resort Hotel 0 1 2015 November
## 18451 Resort Hotel 0 0 2015 November
## 18452 Resort Hotel 0 1 2015 November
## 18453 Resort Hotel 0 2 2015 November
## 18454 Resort Hotel 0 5 2015 November
## 18455 Resort Hotel 0 3 2015 November
## 18456 Resort Hotel 1 17 2015 November
## 18457 Resort Hotel 1 19 2015 December
## 18458 Resort Hotel 1 20 2015 December
## 18459 Resort Hotel 0 1 2015 November
## 18460 Resort Hotel 0 0 2015 November
## 18461 Resort Hotel 0 0 2015 November
## 18462 Resort Hotel 0 0 2015 November
## 18463 Resort Hotel 0 0 2015 November
## 18464 Resort Hotel 0 2 2015 November
## 18465 Resort Hotel 0 0 2015 November
## 18466 Resort Hotel 0 2 2015 November
## 18467 Resort Hotel 0 20 2015 November
## 18468 Resort Hotel 0 20 2015 November
## 18469 Resort Hotel 0 0 2015 November
## 18470 Resort Hotel 0 0 2015 November
## 18471 Resort Hotel 0 0 2015 November
## 18472 Resort Hotel 0 0 2015 November
## 18473 Resort Hotel 0 0 2016 February
## 18474 Resort Hotel 0 0 2015 November
## 18475 Resort Hotel 0 0 2015 November
## 18476 Resort Hotel 0 0 2015 November
## 18477 Resort Hotel 0 1 2015 November
## 18478 Resort Hotel 0 6 2015 November
## 18479 Resort Hotel 0 12 2015 November
## 18480 Resort Hotel 0 0 2015 November
## 18481 Resort Hotel 0 4 2015 November
## 18482 Resort Hotel 0 0 2015 November
## 18483 Resort Hotel 0 0 2015 November
## 18484 Resort Hotel 0 0 2016 February
## 18485 Resort Hotel 0 0 2015 November
## 18486 Resort Hotel 0 1 2015 November
## 18487 Resort Hotel 0 0 2015 November
## 18488 Resort Hotel 0 0 2015 November
## 18489 Resort Hotel 0 0 2015 November
## 18490 Resort Hotel 0 1 2015 November
## 18491 Resort Hotel 0 11 2015 November
## 18492 Resort Hotel 0 7 2015 November
## 18493 Resort Hotel 0 0 2015 November
## 18494 Resort Hotel 0 69 2015 November
## 18495 Resort Hotel 1 7 2015 November
## 18496 Resort Hotel 1 1 2015 November
## 18497 Resort Hotel 0 21 2015 November
## 18498 Resort Hotel 0 21 2015 November
## 18499 Resort Hotel 0 7 2015 November
## 18500 Resort Hotel 0 7 2015 November
## 18501 Resort Hotel 0 7 2015 November
## 18502 Resort Hotel 0 1 2015 November
## 18503 Resort Hotel 0 43 2015 November
## 18504 Resort Hotel 0 4 2015 November
## 18505 Resort Hotel 0 9 2015 November
## 18506 Resort Hotel 0 2 2017 April
## 18507 Resort Hotel 0 4 2015 November
## 18508 Resort Hotel 0 36 2015 November
## 18509 Resort Hotel 0 1 2015 November
## 18510 Resort Hotel 0 6 2015 November
## 18511 Resort Hotel 0 53 2015 November
## 18512 Resort Hotel 0 18 2015 November
## 18513 Resort Hotel 0 1 2015 November
## 18514 Resort Hotel 0 4 2015 November
## 18515 Resort Hotel 0 4 2015 November
## 18516 Resort Hotel 0 5 2015 November
## 18517 Resort Hotel 0 5 2015 November
## 18518 Resort Hotel 0 44 2015 November
## 18519 Resort Hotel 0 7 2015 November
## 18520 Resort Hotel 0 44 2015 November
## 18521 Resort Hotel 0 0 2015 November
## 18522 Resort Hotel 0 4 2015 November
## 18523 Resort Hotel 0 4 2016 February
## 18524 Resort Hotel 0 0 2016 May
## 18525 Resort Hotel 0 0 2017 July
## 18526 Resort Hotel 0 26 2015 November
## 18527 Resort Hotel 0 4 2015 November
## 18528 Resort Hotel 0 32 2015 November
## 18529 Resort Hotel 0 32 2015 November
## 18530 Resort Hotel 0 10 2015 November
## 18531 Resort Hotel 0 184 2015 November
## 18532 Resort Hotel 0 119 2015 November
## 18533 Resort Hotel 0 3 2015 November
## 18534 Resort Hotel 0 5 2015 November
## 18535 Resort Hotel 1 7 2015 November
## 18536 Resort Hotel 0 7 2016 March
## 18537 Resort Hotel 0 5 2016 May
## 18538 Resort Hotel 0 13 2016 November
## 18539 Resort Hotel 0 289 2015 November
## 18540 Resort Hotel 0 289 2015 November
## 18541 Resort Hotel 0 289 2015 November
## 18542 Resort Hotel 0 289 2015 November
## 18543 Resort Hotel 0 289 2015 November
## 18544 Resort Hotel 0 3 2015 November
## 18545 Resort Hotel 0 289 2015 November
## 18546 Resort Hotel 0 289 2015 November
## 18547 Resort Hotel 0 289 2015 November
## 18548 Resort Hotel 0 289 2015 November
## 18549 Resort Hotel 0 289 2015 November
## 18550 Resort Hotel 0 289 2015 November
## 18551 Resort Hotel 0 289 2015 November
## 18552 Resort Hotel 0 66 2015 November
## 18553 Resort Hotel 0 29 2015 November
## 18554 Resort Hotel 1 43 2015 December
## 18555 Resort Hotel 1 43 2015 December
## 18556 Resort Hotel 1 43 2015 December
## 18557 Resort Hotel 0 66 2015 November
## 18558 Resort Hotel 0 1 2015 November
## 18559 Resort Hotel 0 62 2015 November
## 18560 Resort Hotel 0 105 2015 November
## 18561 Resort Hotel 0 105 2015 November
## 18562 Resort Hotel 0 105 2015 November
## 18563 Resort Hotel 0 105 2015 November
## 18564 Resort Hotel 0 105 2015 November
## 18565 Resort Hotel 0 105 2015 November
## 18566 Resort Hotel 0 105 2015 November
## 18567 Resort Hotel 0 78 2015 November
## 18568 Resort Hotel 0 12 2015 November
## 18569 Resort Hotel 0 90 2015 November
## 18570 Resort Hotel 0 11 2015 November
## 18571 Resort Hotel 0 0 2015 November
## 18572 Resort Hotel 0 25 2015 November
## 18573 Resort Hotel 1 12 2015 December
## 18574 Resort Hotel 0 2 2015 November
## 18575 Resort Hotel 0 25 2016 February
## 18576 Resort Hotel 0 0 2016 February
## 18577 Resort Hotel 0 1 2016 December
## 18578 Resort Hotel 0 44 2015 November
## 18579 Resort Hotel 0 0 2015 November
## 18580 Resort Hotel 0 0 2015 November
## 18581 Resort Hotel 0 5 2015 November
## 18582 Resort Hotel 0 5 2015 November
## 18583 Resort Hotel 0 5 2015 November
## 18584 Resort Hotel 0 0 2015 November
## 18585 Resort Hotel 0 105 2015 November
## 18586 Resort Hotel 0 11 2015 November
## 18587 Resort Hotel 1 187 2016 May
## 18588 Resort Hotel 1 187 2016 May
## 18589 Resort Hotel 1 287 2016 August
## 18590 Resort Hotel 1 287 2016 August
## 18591 Resort Hotel 1 287 2016 August
## 18592 Resort Hotel 1 287 2016 August
## 18593 Resort Hotel 1 287 2016 August
## 18594 Resort Hotel 1 287 2016 August
## 18595 Resort Hotel 1 219 2016 June
## 18596 Resort Hotel 1 219 2016 June
## 18597 Resort Hotel 1 219 2016 June
## 18598 Resort Hotel 1 216 2016 June
## 18599 Resort Hotel 1 216 2016 June
## 18600 Resort Hotel 1 216 2016 June
## 18601 Resort Hotel 1 108 2016 March
## 18602 Resort Hotel 1 108 2016 March
## 18603 Resort Hotel 1 108 2016 March
## 18604 Resort Hotel 1 212 2016 June
## 18605 Resort Hotel 0 0 2015 November
## 18606 Resort Hotel 0 0 2015 November
## 18607 Resort Hotel 0 1 2015 November
## 18608 Resort Hotel 0 1 2015 November
## 18609 Resort Hotel 0 1 2015 November
## 18610 Resort Hotel 0 112 2015 November
## 18611 Resort Hotel 0 4 2015 November
## 18612 Resort Hotel 0 0 2015 November
## 18613 Resort Hotel 0 0 2015 November
## 18614 Resort Hotel 0 0 2015 December
## 18615 Resort Hotel 0 0 2016 February
## 18616 Resort Hotel 0 0 2016 December
## 18617 Resort Hotel 0 1 2017 February
## 18618 Resort Hotel 0 3 2015 November
## 18619 Resort Hotel 0 4 2015 November
## 18620 Resort Hotel 0 21 2015 November
## 18621 Resort Hotel 0 0 2015 November
## 18622 Resort Hotel 0 0 2016 February
## 18623 Resort Hotel 0 21 2015 November
## 18624 Resort Hotel 0 1 2015 November
## 18625 Resort Hotel 0 1 2016 February
## 18626 Resort Hotel 0 1 2016 March
## 18627 Resort Hotel 0 2 2016 May
## 18628 Resort Hotel 0 6 2016 May
## 18629 Resort Hotel 0 1 2017 March
## 18630 Resort Hotel 0 1 2017 March
## 18631 Resort Hotel 0 2 2017 May
## 18632 Resort Hotel 0 1 2015 November
## 18633 Resort Hotel 0 1 2015 November
## 18634 Resort Hotel 0 6 2015 November
## 18635 Resort Hotel 0 5 2015 November
## 18636 Resort Hotel 0 1 2015 November
## 18637 Resort Hotel 0 1 2015 November
## 18638 Resort Hotel 0 0 2015 November
## 18639 Resort Hotel 0 0 2016 January
## 18640 Resort Hotel 0 0 2016 November
## 18641 Resort Hotel 1 19 2015 December
## 18642 Resort Hotel 0 0 2015 November
## 18643 Resort Hotel 0 1 2016 February
## 18644 Resort Hotel 0 27 2015 November
## 18645 Resort Hotel 0 21 2015 November
## 18646 Resort Hotel 0 0 2015 November
## 18647 Resort Hotel 0 0 2015 November
## 18648 Resort Hotel 0 0 2015 November
## 18649 Resort Hotel 0 0 2015 November
## 18650 Resort Hotel 0 2 2016 March
## 18651 Resort Hotel 0 1 2017 January
## 18652 Resort Hotel 0 13 2015 November
## 18653 Resort Hotel 0 7 2015 November
## 18654 Resort Hotel 0 158 2015 November
## 18655 Resort Hotel 0 5 2015 November
## 18656 Resort Hotel 0 5 2016 April
## 18657 Resort Hotel 0 6 2016 December
## 18658 Resort Hotel 0 4 2017 August
## 18659 Resort Hotel 0 0 2015 November
## 18660 Resort Hotel 0 5 2015 November
## 18661 Resort Hotel 0 5 2016 April
## 18662 Resort Hotel 0 0 2016 April
## 18663 Resort Hotel 0 1 2016 September
## 18664 Resort Hotel 0 6 2017 January
## 18665 Resort Hotel 0 2 2017 January
## 18666 Resort Hotel 0 4 2017 August
## 18667 Resort Hotel 0 0 2015 November
## 18668 Resort Hotel 0 2 2015 November
## 18669 Resort Hotel 0 6 2015 November
## 18670 Resort Hotel 0 0 2015 November
## 18671 Resort Hotel 0 0 2015 November
## 18672 Resort Hotel 0 0 2016 May
## 18673 Resort Hotel 0 0 2015 November
## 18674 Resort Hotel 0 0 2015 November
## 18675 Resort Hotel 0 0 2015 November
## 18676 Resort Hotel 0 4 2015 November
## 18677 Resort Hotel 0 3 2015 November
## 18678 Resort Hotel 0 14 2017 May
## 18679 Resort Hotel 1 273 2016 August
## 18680 Resort Hotel 1 273 2016 August
## 18681 Resort Hotel 0 26 2015 November
## 18682 Resort Hotel 0 0 2015 November
## 18683 Resort Hotel 1 15 2015 November
## 18684 Resort Hotel 1 15 2015 November
## 18685 Resort Hotel 1 15 2015 November
## 18686 Resort Hotel 1 15 2015 November
## 18687 Resort Hotel 1 15 2015 November
## 18688 Resort Hotel 0 47 2015 November
## 18689 Resort Hotel 0 0 2015 November
## 18690 Resort Hotel 1 111 2016 March
## 18691 Resort Hotel 0 1 2015 November
## 18692 Resort Hotel 0 1 2015 November
## 18693 Resort Hotel 0 40 2015 November
## 18694 Resort Hotel 0 40 2015 November
## 18695 Resort Hotel 0 2 2015 November
## 18696 Resort Hotel 0 1 2015 November
## 18697 Resort Hotel 0 5 2015 November
## 18698 Resort Hotel 0 12 2015 November
## 18699 Resort Hotel 0 7 2017 March
## 18700 Resort Hotel 0 0 2015 November
## 18701 Resort Hotel 0 1 2015 November
## 18702 Resort Hotel 0 55 2015 November
## 18703 Resort Hotel 0 11 2016 January
## 18704 Resort Hotel 0 15 2016 February
## 18705 Resort Hotel 0 27 2016 March
## 18706 Resort Hotel 1 17 2015 December
## 18707 Resort Hotel 0 15 2015 November
## 18708 Resort Hotel 0 0 2015 November
## 18709 Resort Hotel 0 40 2015 November
## 18710 Resort Hotel 0 0 2015 November
## 18711 Resort Hotel 0 0 2016 April
## 18712 Resort Hotel 0 5 2015 November
## 18713 Resort Hotel 1 11 2015 December
## 18714 Resort Hotel 1 11 2015 December
## 18715 Resort Hotel 1 11 2015 December
## 18716 Resort Hotel 0 7 2015 November
## 18717 Resort Hotel 0 5 2015 November
## 18718 Resort Hotel 0 32 2015 December
## 18719 Resort Hotel 0 0 2015 November
## 18720 Resort Hotel 0 0 2016 April
## 18721 Resort Hotel 0 3 2015 November
## 18722 Resort Hotel 0 37 2015 November
## 18723 Resort Hotel 0 1 2015 November
## 18724 Resort Hotel 0 1 2015 November
## 18725 Resort Hotel 0 0 2015 November
## 18726 Resort Hotel 0 4 2015 November
## 18727 Resort Hotel 0 17 2015 November
## 18728 Resort Hotel 0 1 2015 November
## 18729 Resort Hotel 0 1 2015 November
## 18730 Resort Hotel 0 10 2015 November
## 18731 Resort Hotel 0 0 2015 November
## 18732 Resort Hotel 0 1 2015 November
## 18733 Resort Hotel 0 4 2015 November
## 18734 Resort Hotel 0 0 2015 November
## 18735 Resort Hotel 0 15 2015 November
## 18736 Resort Hotel 0 0 2015 November
## 18737 Resort Hotel 0 0 2015 November
## 18738 Resort Hotel 0 1 2015 November
## 18739 Resort Hotel 0 11 2015 November
## 18740 Resort Hotel 0 2 2015 November
## 18741 Resort Hotel 0 2 2015 November
## 18742 Resort Hotel 0 2 2015 November
## 18743 Resort Hotel 0 1 2017 February
## 18744 Resort Hotel 1 1 2015 November
## 18745 Resort Hotel 0 0 2015 November
## 18746 Resort Hotel 0 0 2015 November
## 18747 Resort Hotel 0 8 2016 November
## 18748 Resort Hotel 0 0 2016 December
## 18749 Resort Hotel 0 6 2017 February
## 18750 Resort Hotel 0 2 2015 November
## 18751 Resort Hotel 0 2 2015 November
## 18752 Resort Hotel 0 15 2015 November
## 18753 Resort Hotel 0 4 2015 November
## 18754 Resort Hotel 0 2 2015 November
## 18755 Resort Hotel 0 15 2015 November
## 18756 Resort Hotel 0 10 2015 November
## 18757 Resort Hotel 0 10 2015 November
## 18758 Resort Hotel 0 2 2017 February
## 18759 Resort Hotel 0 15 2015 November
## 18760 Resort Hotel 0 17 2016 October
## 18761 Resort Hotel 0 3 2015 November
## 18762 Resort Hotel 0 15 2015 November
## 18763 Resort Hotel 0 17 2016 October
## 18764 Resort Hotel 0 15 2015 November
## 18765 Resort Hotel 0 15 2015 November
## 18766 Resort Hotel 0 0 2015 November
## 18767 Resort Hotel 0 2 2015 November
## 18768 Resort Hotel 0 1 2015 November
## 18769 Resort Hotel 0 3 2015 November
## 18770 Resort Hotel 0 3 2015 November
## 18771 Resort Hotel 0 3 2015 November
## 18772 Resort Hotel 0 4 2017 January
## 18773 Resort Hotel 0 11 2015 November
## 18774 Resort Hotel 0 11 2015 November
## 18775 Resort Hotel 0 1 2017 March
## 18776 Resort Hotel 0 11 2015 November
## 18777 Resort Hotel 0 9 2015 November
## 18778 Resort Hotel 0 15 2015 November
## 18779 Resort Hotel 0 2 2015 November
## 18780 Resort Hotel 0 4 2015 November
## 18781 Resort Hotel 0 10 2016 March
## 18782 Resort Hotel 0 0 2015 November
## 18783 Resort Hotel 0 2 2015 November
## 18784 Resort Hotel 0 11 2015 November
## 18785 Resort Hotel 0 9 2015 November
## 18786 Resort Hotel 0 9 2015 November
## 18787 Resort Hotel 0 0 2015 November
## 18788 Resort Hotel 0 1 2015 November
## 18789 Resort Hotel 0 116 2015 November
## 18790 Resort Hotel 0 0 2015 November
## 18791 Resort Hotel 0 1 2015 December
## 18792 Resort Hotel 1 1 2016 January
## 18793 Resort Hotel 0 0 2016 November
## 18794 Resort Hotel 0 2 2017 March
## 18795 Resort Hotel 0 1 2015 November
## 18796 Resort Hotel 0 0 2015 November
## 18797 Resort Hotel 0 0 2015 December
## 18798 Resort Hotel 0 0 2016 March
## 18799 Resort Hotel 0 0 2017 February
## 18800 Resort Hotel 0 0 2017 February
## 18801 Resort Hotel 0 27 2015 November
## 18802 Resort Hotel 0 4 2015 November
## 18803 Resort Hotel 0 2 2015 November
## 18804 Resort Hotel 0 2 2015 November
## 18805 Resort Hotel 0 5 2015 November
## 18806 Resort Hotel 0 5 2015 November
## 18807 Resort Hotel 0 1 2015 November
## 18808 Resort Hotel 0 7 2015 November
## 18809 Resort Hotel 0 1 2015 November
## 18810 Resort Hotel 0 4 2015 November
## 18811 Resort Hotel 0 1 2015 November
## 18812 Resort Hotel 0 8 2015 November
## 18813 Resort Hotel 0 25 2015 November
## 18814 Resort Hotel 0 3 2015 November
## 18815 Resort Hotel 0 35 2015 November
## 18816 Resort Hotel 0 12 2015 November
## 18817 Resort Hotel 1 27 2015 December
## 18818 Resort Hotel 0 62 2015 November
## 18819 Resort Hotel 0 4 2015 November
## 18820 Resort Hotel 1 8 2015 December
## 18821 Resort Hotel 1 8 2015 December
## 18822 Resort Hotel 1 8 2015 December
## 18823 Resort Hotel 1 8 2015 December
## 18824 Resort Hotel 1 8 2015 December
## 18825 Resort Hotel 1 8 2015 December
## 18826 Resort Hotel 1 8 2015 December
## 18827 Resort Hotel 1 8 2015 December
## 18828 Resort Hotel 0 4 2015 November
## 18829 Resort Hotel 0 4 2015 November
## 18830 Resort Hotel 0 0 2015 November
## 18831 Resort Hotel 0 1 2015 November
## 18832 Resort Hotel 1 220 2016 July
## 18833 Resort Hotel 0 0 2015 November
## 18834 Resort Hotel 1 268 2016 August
## 18835 Resort Hotel 1 8 2015 December
## 18836 Resort Hotel 1 8 2015 December
## 18837 Resort Hotel 0 0 2015 November
## 18838 Resort Hotel 0 4 2015 November
## 18839 Resort Hotel 0 0 2015 November
## 18840 Resort Hotel 0 0 2015 November
## 18841 Resort Hotel 0 0 2015 December
## 18842 Resort Hotel 0 11 2015 November
## 18843 Resort Hotel 0 0 2015 November
## 18844 Resort Hotel 1 6 2015 December
## 18845 Resort Hotel 0 0 2015 November
## 18846 Resort Hotel 0 14 2015 November
## 18847 Resort Hotel 0 0 2015 November
## 18848 Resort Hotel 0 25 2015 November
## 18849 Resort Hotel 0 0 2015 November
## 18850 Resort Hotel 0 25 2015 November
## 18851 Resort Hotel 0 75 2015 November
## 18852 Resort Hotel 0 0 2015 November
## 18853 Resort Hotel 0 0 2015 December
## 18854 Resort Hotel 1 184 2016 May
## 18855 Resort Hotel 1 168 2016 May
## 18856 Resort Hotel 0 0 2015 November
## 18857 Resort Hotel 0 1 2016 January
## 18858 Resort Hotel 0 1 2016 April
## 18859 Resort Hotel 0 6 2015 December
## 18860 Resort Hotel 0 69 2015 November
## 18861 Resort Hotel 0 5 2015 December
## 18862 Resort Hotel 0 7 2015 December
## 18863 Resort Hotel 0 15 2015 November
## 18864 Resort Hotel 0 0 2015 December
## 18865 Resort Hotel 0 0 2015 December
## 18866 Resort Hotel 0 0 2015 November
## 18867 Resort Hotel 0 34 2015 November
## 18868 Resort Hotel 0 0 2015 December
## 18869 Resort Hotel 0 5 2015 December
## 18870 Resort Hotel 0 5 2015 December
## 18871 Resort Hotel 0 5 2015 December
## 18872 Resort Hotel 0 0 2015 December
## 18873 Resort Hotel 0 2 2015 November
## 18874 Resort Hotel 0 1 2015 December
## 18875 Resort Hotel 0 6 2015 December
## 18876 Resort Hotel 1 159 2016 May
## 18877 Resort Hotel 1 11 2015 December
## 18878 Resort Hotel 1 11 2015 December
## 18879 Resort Hotel 1 11 2015 December
## 18880 Resort Hotel 1 11 2015 December
## 18881 Resort Hotel 1 11 2015 December
## 18882 Resort Hotel 1 11 2015 December
## 18883 Resort Hotel 1 11 2015 December
## 18884 Resort Hotel 1 159 2016 May
## 18885 Resort Hotel 0 1 2015 December
## 18886 Resort Hotel 0 0 2015 December
## 18887 Resort Hotel 0 1 2015 November
## 18888 Resort Hotel 0 8 2015 December
## 18889 Resort Hotel 0 5 2017 May
## 18890 Resort Hotel 0 8 2015 December
## 18891 Resort Hotel 0 1 2015 December
## 18892 Resort Hotel 1 25 2015 December
## 18893 Resort Hotel 1 25 2015 December
## 18894 Resort Hotel 0 2 2015 December
## 18895 Resort Hotel 0 0 2016 April
## 18896 Resort Hotel 0 24 2016 May
## 18897 Resort Hotel 0 7 2015 December
## 18898 Resort Hotel 0 1 2015 December
## 18899 Resort Hotel 0 0 2015 December
## 18900 Resort Hotel 0 0 2016 January
## 18901 Resort Hotel 0 0 2016 January
## 18902 Resort Hotel 0 1 2015 December
## 18903 Resort Hotel 0 2 2015 December
## 18904 Resort Hotel 0 0 2015 December
## 18905 Resort Hotel 0 9 2015 November
## 18906 Resort Hotel 0 0 2015 December
## 18907 Resort Hotel 0 0 2015 December
## 18908 Resort Hotel 0 0 2015 November
## 18909 Resort Hotel 0 7 2015 December
## 18910 Resort Hotel 0 0 2015 December
## 18911 Resort Hotel 0 2 2016 February
## 18912 Resort Hotel 0 1 2016 March
## 18913 Resort Hotel 0 1 2017 January
## 18914 Resort Hotel 0 4 2016 January
## 18915 Resort Hotel 0 6 2015 December
## 18916 Resort Hotel 0 0 2015 December
## 18917 Resort Hotel 0 0 2016 January
## 18918 Resort Hotel 0 65 2015 November
## 18919 Resort Hotel 1 5 2015 December
## 18920 Resort Hotel 0 9 2015 December
## 18921 Resort Hotel 0 19 2015 December
## 18922 Resort Hotel 0 17 2015 November
## 18923 Resort Hotel 0 17 2015 November
## 18924 Resort Hotel 0 20 2015 December
## 18925 Resort Hotel 0 17 2015 November
## 18926 Resort Hotel 0 19 2015 December
## 18927 Resort Hotel 0 17 2015 November
## 18928 Resort Hotel 0 11 2015 December
## 18929 Resort Hotel 0 19 2015 December
## 18930 Resort Hotel 0 19 2015 December
## 18931 Resort Hotel 0 17 2015 November
## 18932 Resort Hotel 0 19 2015 December
## 18933 Resort Hotel 0 19 2015 December
## 18934 Resort Hotel 0 17 2015 November
## 18935 Resort Hotel 0 17 2015 November
## 18936 Resort Hotel 0 17 2015 November
## 18937 Resort Hotel 0 17 2015 November
## 18938 Resort Hotel 0 17 2015 November
## 18939 Resort Hotel 0 17 2015 November
## 18940 Resort Hotel 0 17 2015 November
## 18941 Resort Hotel 0 17 2015 November
## 18942 Resort Hotel 0 17 2015 November
## 18943 Resort Hotel 0 7 2015 December
## 18944 Resort Hotel 0 1 2015 December
## 18945 Resort Hotel 0 0 2015 December
## 18946 Resort Hotel 0 5 2015 November
## 18947 Resort Hotel 0 0 2015 December
## 18948 Resort Hotel 0 0 2015 December
## 18949 Resort Hotel 0 1 2015 December
## 18950 Resort Hotel 0 0 2015 December
## 18951 Resort Hotel 0 0 2015 December
## 18952 Resort Hotel 0 0 2015 November
## 18953 Resort Hotel 0 0 2015 November
## 18954 Resort Hotel 0 2 2015 December
## 18955 Resort Hotel 0 16 2015 December
## 18956 Resort Hotel 0 17 2015 November
## 18957 Resort Hotel 0 20 2015 December
## 18958 Resort Hotel 0 0 2015 December
## 18959 Resort Hotel 0 13 2015 December
## 18960 Resort Hotel 0 0 2015 December
## 18961 Resort Hotel 0 1 2015 December
## 18962 Resort Hotel 0 0 2015 December
## 18963 Resort Hotel 0 17 2015 December
## 18964 Resort Hotel 0 2 2016 February
## 18965 Resort Hotel 0 2 2016 March
## 18966 Resort Hotel 0 1 2016 April
## 18967 Resort Hotel 0 0 2016 June
## 18968 Resort Hotel 0 4 2016 December
## 18969 Resort Hotel 0 5 2017 January
## 18970 Resort Hotel 0 0 2015 November
## 18971 Resort Hotel 0 21 2015 December
## 18972 Resort Hotel 0 16 2016 February
## 18973 Resort Hotel 0 1 2015 December
## 18974 Resort Hotel 1 196 2016 June
## 18975 Resort Hotel 0 0 2015 December
## 18976 Resort Hotel 0 9 2015 December
## 18977 Resort Hotel 0 2 2015 December
## 18978 Resort Hotel 0 0 2015 December
## 18979 Resort Hotel 0 0 2016 January
## 18980 Resort Hotel 0 1 2015 December
## 18981 Resort Hotel 0 95 2015 November
## 18982 Resort Hotel 0 0 2015 December
## 18983 Resort Hotel 0 0 2015 December
## 18984 Resort Hotel 0 6 2015 December
## 18985 Resort Hotel 0 21 2015 December
## 18986 Resort Hotel 0 2 2015 November
## 18987 Resort Hotel 0 8 2015 November
## 18988 Resort Hotel 1 15 2015 December
## 18989 Resort Hotel 0 0 2015 December
## 18990 Resort Hotel 0 5 2015 December
## 18991 Resort Hotel 0 9 2015 December
## 18992 Resort Hotel 0 125 2015 November
## 18993 Resort Hotel 0 0 2015 December
## 18994 Resort Hotel 0 3 2015 December
## 18995 Resort Hotel 0 2 2015 December
## 18996 Resort Hotel 0 2 2016 March
## 18997 Resort Hotel 0 3 2016 May
## 18998 Resort Hotel 0 90 2015 December
## 18999 Resort Hotel 0 226 2017 May
## 19000 Resort Hotel 1 254 2017 June
## 19001 Resort Hotel 0 16 2015 December
## 19002 Resort Hotel 0 11 2015 December
## 19003 Resort Hotel 0 16 2015 December
## 19004 Resort Hotel 0 7 2015 December
## 19005 Resort Hotel 0 4 2015 December
## 19006 Resort Hotel 0 4 2015 December
## 19007 Resort Hotel 0 4 2015 December
## 19008 Resort Hotel 0 4 2015 December
## 19009 Resort Hotel 0 1 2015 December
## 19010 Resort Hotel 0 1 2015 December
## 19011 Resort Hotel 0 0 2015 December
## 19012 Resort Hotel 0 16 2015 December
## 19013 Resort Hotel 0 68 2015 November
## 19014 Resort Hotel 0 0 2015 December
## 19015 Resort Hotel 0 22 2015 December
## 19016 Resort Hotel 0 15 2015 December
## 19017 Resort Hotel 0 15 2015 December
## 19018 Resort Hotel 0 0 2015 December
## 19019 Resort Hotel 0 0 2015 December
## 19020 Resort Hotel 0 5 2015 December
## 19021 Resort Hotel 0 50 2015 December
## 19022 Resort Hotel 0 22 2015 December
## 19023 Resort Hotel 0 18 2015 December
## 19024 Resort Hotel 0 17 2015 December
## 19025 Resort Hotel 0 5 2015 December
## 19026 Resort Hotel 0 1 2015 December
## 19027 Resort Hotel 0 0 2015 December
## 19028 Resort Hotel 1 32 2015 December
## 19029 Resort Hotel 0 3 2015 December
## 19030 Resort Hotel 0 64 2015 December
## 19031 Resort Hotel 1 28 2015 December
## 19032 Resort Hotel 0 46 2015 December
## 19033 Resort Hotel 0 0 2015 December
## 19034 Resort Hotel 0 3 2015 December
## 19035 Resort Hotel 1 73 2016 January
## 19036 Resort Hotel 0 0 2015 December
## 19037 Resort Hotel 0 1 2015 December
## 19038 Resort Hotel 1 26 2016 January
## 19039 Resort Hotel 1 26 2016 January
## 19040 Resort Hotel 1 87 2016 February
## 19041 Resort Hotel 1 177 2016 May
## 19042 Resort Hotel 1 49 2016 January
## 19043 Resort Hotel 1 49 2016 January
## 19044 Resort Hotel 1 174 2016 May
## 19045 Resort Hotel 0 6 2015 December
## 19046 Resort Hotel 0 1 2015 December
## 19047 Resort Hotel 0 0 2016 January
## 19048 Resort Hotel 0 0 2016 January
## 19049 Resort Hotel 0 0 2016 January
## 19050 Resort Hotel 0 1 2016 January
## 19051 Resort Hotel 0 0 2016 February
## 19052 Resort Hotel 0 0 2016 February
## 19053 Resort Hotel 0 0 2016 February
## 19054 Resort Hotel 0 2 2015 December
## 19055 Resort Hotel 0 3 2015 December
## 19056 Resort Hotel 0 120 2015 December
## 19057 Resort Hotel 0 3 2015 December
## 19058 Resort Hotel 0 0 2015 December
## 19059 Resort Hotel 0 3 2015 December
## 19060 Resort Hotel 0 11 2015 December
## 19061 Resort Hotel 0 11 2015 December
## 19062 Resort Hotel 0 11 2015 December
## 19063 Resort Hotel 0 11 2015 December
## 19064 Resort Hotel 0 11 2015 December
## 19065 Resort Hotel 0 11 2015 December
## 19066 Resort Hotel 0 1 2015 December
## 19067 Resort Hotel 0 11 2015 December
## 19068 Resort Hotel 0 17 2015 December
## 19069 Resort Hotel 0 11 2015 December
## 19070 Resort Hotel 0 11 2015 December
## 19071 Resort Hotel 0 11 2015 December
## 19072 Resort Hotel 0 8 2015 December
## 19073 Resort Hotel 0 11 2015 December
## 19074 Resort Hotel 0 11 2015 December
## 19075 Resort Hotel 0 11 2015 December
## 19076 Resort Hotel 0 11 2015 December
## 19077 Resort Hotel 0 11 2015 December
## 19078 Resort Hotel 0 8 2015 December
## 19079 Resort Hotel 0 8 2015 December
## 19080 Resort Hotel 0 11 2015 December
## 19081 Resort Hotel 0 11 2015 December
## 19082 Resort Hotel 0 11 2015 December
## 19083 Resort Hotel 0 11 2015 December
## 19084 Resort Hotel 0 11 2015 December
## 19085 Resort Hotel 0 11 2015 December
## 19086 Resort Hotel 0 11 2015 December
## 19087 Resort Hotel 0 5 2015 December
## 19088 Resort Hotel 0 1 2015 December
## 19089 Resort Hotel 0 11 2015 December
## 19090 Resort Hotel 0 20 2015 December
## 19091 Resort Hotel 0 20 2015 December
## 19092 Resort Hotel 0 26 2015 December
## 19093 Resort Hotel 0 7 2015 December
## 19094 Resort Hotel 0 2 2015 December
## 19095 Resort Hotel 0 10 2015 December
## 19096 Resort Hotel 0 12 2015 December
## 19097 Resort Hotel 0 0 2015 December
## 19098 Resort Hotel 0 1 2015 December
## 19099 Resort Hotel 0 17 2015 December
## 19100 Resort Hotel 0 0 2015 December
## 19101 Resort Hotel 0 0 2015 December
## 19102 Resort Hotel 0 47 2015 December
## 19103 Resort Hotel 0 12 2015 December
## 19104 Resort Hotel 0 12 2015 December
## 19105 Resort Hotel 0 0 2015 December
## 19106 Resort Hotel 0 7 2015 December
## 19107 Resort Hotel 0 94 2015 December
## 19108 Resort Hotel 0 2 2015 December
## 19109 Resort Hotel 0 0 2015 December
## 19110 Resort Hotel 0 7 2015 December
## 19111 Resort Hotel 0 7 2015 December
## 19112 Resort Hotel 0 18 2015 December
## 19113 Resort Hotel 0 5 2015 December
## 19114 Resort Hotel 0 113 2015 December
## 19115 Resort Hotel 0 11 2015 December
## 19116 Resort Hotel 0 2 2015 December
## 19117 Resort Hotel 0 11 2015 December
## 19118 Resort Hotel 0 1 2015 December
## 19119 Resort Hotel 0 12 2015 December
## 19120 Resort Hotel 0 19 2015 December
## 19121 Resort Hotel 0 0 2015 December
## 19122 Resort Hotel 0 0 2015 December
## 19123 Resort Hotel 0 1 2015 December
## 19124 Resort Hotel 0 23 2015 December
## 19125 Resort Hotel 0 11 2015 December
## 19126 Resort Hotel 0 0 2015 December
## 19127 Resort Hotel 0 0 2015 December
## 19128 Resort Hotel 0 11 2015 December
## 19129 Resort Hotel 0 11 2015 December
## 19130 Resort Hotel 0 2 2015 December
## 19131 Resort Hotel 0 1 2015 December
## 19132 Resort Hotel 0 18 2015 December
## 19133 Resort Hotel 1 14 2015 December
## 19134 Resort Hotel 1 229 2016 July
## 19135 Resort Hotel 1 193 2016 June
## 19136 Resort Hotel 1 2 2015 December
## 19137 Resort Hotel 1 2 2015 December
## 19138 Resort Hotel 0 1 2015 December
## 19139 Resort Hotel 0 2 2016 March
## 19140 Resort Hotel 1 133 2016 April
## 19141 Resort Hotel 0 0 2015 December
## 19142 Resort Hotel 0 3 2015 December
## 19143 Resort Hotel 0 3 2015 December
## 19144 Resort Hotel 0 1 2015 December
## 19145 Resort Hotel 0 0 2015 December
## 19146 Resort Hotel 0 1 2015 December
## 19147 Resort Hotel 0 27 2015 December
## 19148 Resort Hotel 0 9 2015 December
## 19149 Resort Hotel 0 24 2015 December
## 19150 Resort Hotel 0 25 2015 November
## 19151 Resort Hotel 0 17 2015 December
## 19152 Resort Hotel 0 6 2015 December
## 19153 Resort Hotel 0 4 2016 March
## 19154 Resort Hotel 0 0 2015 December
## 19155 Resort Hotel 0 0 2016 February
## 19156 Resort Hotel 0 2 2015 December
## 19157 Resort Hotel 0 2 2015 December
## 19158 Resort Hotel 0 6 2015 December
## 19159 Resort Hotel 0 6 2015 December
## 19160 Resort Hotel 0 6 2015 December
## 19161 Resort Hotel 0 4 2016 March
## 19162 Resort Hotel 0 7 2015 December
## 19163 Resort Hotel 0 1 2016 April
## 19164 Resort Hotel 0 1 2016 July
## 19165 Resort Hotel 0 4 2016 December
## 19166 Resort Hotel 0 8 2015 December
## 19167 Resort Hotel 0 8 2015 December
## 19168 Resort Hotel 0 0 2015 December
## 19169 Resort Hotel 0 27 2015 December
## 19170 Resort Hotel 1 144 2016 April
## 19171 Resort Hotel 0 0 2015 December
## 19172 Resort Hotel 0 0 2015 December
## 19173 Resort Hotel 0 0 2015 December
## 19174 Resort Hotel 0 0 2015 December
## 19175 Resort Hotel 0 8 2015 December
## 19176 Resort Hotel 0 9 2015 December
## 19177 Resort Hotel 0 10 2016 April
## 19178 Resort Hotel 0 12 2015 November
## 19179 Resort Hotel 0 1 2015 December
## 19180 Resort Hotel 0 0 2015 December
## 19181 Resort Hotel 1 25 2016 January
## 19182 Resort Hotel 1 26 2016 January
## 19183 Resort Hotel 1 237 2016 August
## 19184 Resort Hotel 1 26 2015 December
## 19185 Resort Hotel 1 92 2016 February
## 19186 Resort Hotel 1 92 2016 February
## 19187 Resort Hotel 1 92 2016 February
## 19188 Resort Hotel 1 92 2016 February
## 19189 Resort Hotel 1 92 2016 February
## 19190 Resort Hotel 1 92 2016 February
## 19191 Resort Hotel 1 92 2016 February
## 19192 Resort Hotel 1 92 2016 February
## 19193 Resort Hotel 1 92 2016 February
## 19194 Resort Hotel 1 92 2016 February
## 19195 Resort Hotel 1 92 2016 February
## 19196 Resort Hotel 1 92 2016 February
## 19197 Resort Hotel 1 92 2016 February
## 19198 Resort Hotel 1 92 2016 February
## 19199 Resort Hotel 1 92 2016 February
## 19200 Resort Hotel 1 92 2016 February
## 19201 Resort Hotel 1 92 2016 February
## 19202 Resort Hotel 1 92 2016 February
## 19203 Resort Hotel 1 92 2016 February
## 19204 Resort Hotel 1 92 2016 February
## 19205 Resort Hotel 1 92 2016 February
## 19206 Resort Hotel 1 92 2016 February
## 19207 Resort Hotel 1 92 2016 February
## 19208 Resort Hotel 1 92 2016 February
## 19209 Resort Hotel 1 92 2016 February
## 19210 Resort Hotel 1 92 2016 February
## 19211 Resort Hotel 1 92 2016 February
## 19212 Resort Hotel 1 92 2016 February
## 19213 Resort Hotel 1 92 2016 February
## 19214 Resort Hotel 1 92 2016 February
## 19215 Resort Hotel 1 92 2016 February
## 19216 Resort Hotel 1 92 2016 February
## 19217 Resort Hotel 1 92 2016 February
## 19218 Resort Hotel 1 92 2016 February
## 19219 Resort Hotel 1 92 2016 February
## 19220 Resort Hotel 1 92 2016 February
## 19221 Resort Hotel 1 92 2016 February
## 19222 Resort Hotel 1 92 2016 February
## 19223 Resort Hotel 1 92 2016 February
## 19224 Resort Hotel 1 92 2016 February
## 19225 Resort Hotel 1 92 2016 February
## 19226 Resort Hotel 1 92 2016 February
## 19227 Resort Hotel 1 92 2016 February
## 19228 Resort Hotel 1 92 2016 February
## 19229 Resort Hotel 1 92 2016 February
## 19230 Resort Hotel 1 92 2016 February
## 19231 Resort Hotel 1 92 2016 February
## 19232 Resort Hotel 1 92 2016 February
## 19233 Resort Hotel 1 92 2016 February
## 19234 Resort Hotel 1 92 2016 February
## 19235 Resort Hotel 1 92 2016 February
## 19236 Resort Hotel 1 92 2016 February
## 19237 Resort Hotel 1 92 2016 February
## 19238 Resort Hotel 1 92 2016 February
## 19239 Resort Hotel 1 92 2016 February
## 19240 Resort Hotel 0 3 2015 December
## 19241 Resort Hotel 0 4 2015 December
## 19242 Resort Hotel 0 1 2015 December
## 19243 Resort Hotel 0 15 2015 December
## 19244 Resort Hotel 0 0 2015 December
## 19245 Resort Hotel 0 0 2015 December
## 19246 Resort Hotel 0 1 2016 January
## 19247 Resort Hotel 0 9 2016 May
## 19248 Resort Hotel 0 0 2015 December
## 19249 Resort Hotel 0 1 2016 January
## 19250 Resort Hotel 0 2 2015 December
## 19251 Resort Hotel 0 0 2015 December
## 19252 Resort Hotel 0 0 2015 December
## 19253 Resort Hotel 0 0 2016 January
## 19254 Resort Hotel 0 0 2016 April
## 19255 Resort Hotel 0 4 2015 December
## 19256 Resort Hotel 1 7 2016 October
## 19257 Resort Hotel 1 86 2016 February
## 19258 Resort Hotel 1 86 2016 February
## 19259 Resort Hotel 0 1 2015 December
## 19260 Resort Hotel 0 1 2015 December
## 19261 Resort Hotel 1 40 2015 December
## 19262 Resort Hotel 1 40 2015 December
## 19263 Resort Hotel 1 147 2016 April
## 19264 Resort Hotel 1 14 2015 December
## 19265 Resort Hotel 1 16 2015 December
## 19266 Resort Hotel 1 13 2015 December
## 19267 Resort Hotel 1 3 2015 December
## 19268 Resort Hotel 0 7 2015 December
## 19269 Resort Hotel 0 6 2015 December
## 19270 Resort Hotel 0 0 2015 December
## 19271 Resort Hotel 0 5 2015 December
## 19272 Resort Hotel 0 23 2015 December
## 19273 Resort Hotel 0 11 2015 December
## 19274 Resort Hotel 0 8 2015 December
## 19275 Resort Hotel 0 3 2015 December
## 19276 Resort Hotel 0 17 2015 December
## 19277 Resort Hotel 0 0 2015 December
## 19278 Resort Hotel 0 80 2015 December
## 19279 Resort Hotel 0 0 2016 January
## 19280 Resort Hotel 0 0 2015 December
## 19281 Resort Hotel 0 0 2015 December
## 19282 Resort Hotel 0 17 2015 December
## 19283 Resort Hotel 1 28 2016 January
## 19284 Resort Hotel 1 318 2016 October
## 19285 Resort Hotel 1 28 2016 January
## 19286 Resort Hotel 1 49 2016 January
## 19287 Resort Hotel 1 12 2015 December
## 19288 Resort Hotel 0 1 2015 December
## 19289 Resort Hotel 1 8 2015 December
## 19290 Resort Hotel 0 1 2015 December
## 19291 Resort Hotel 0 0 2015 December
## 19292 Resort Hotel 0 1 2015 December
## 19293 Resort Hotel 0 11 2015 December
## 19294 Resort Hotel 0 26 2015 December
## 19295 Resort Hotel 0 1 2015 December
## 19296 Resort Hotel 0 1 2015 December
## 19297 Resort Hotel 0 1 2015 December
## 19298 Resort Hotel 0 3 2015 December
## 19299 Resort Hotel 0 26 2015 December
## 19300 Resort Hotel 0 4 2015 December
## 19301 Resort Hotel 0 1 2015 December
## 19302 Resort Hotel 0 16 2015 December
## 19303 Resort Hotel 0 3 2015 December
## 19304 Resort Hotel 0 17 2015 December
## 19305 Resort Hotel 0 1 2015 December
## 19306 Resort Hotel 0 2 2015 December
## 19307 Resort Hotel 0 3 2015 December
## 19308 Resort Hotel 0 69 2016 December
## 19309 Resort Hotel 0 0 2015 December
## 19310 Resort Hotel 0 4 2015 December
## 19311 Resort Hotel 0 14 2015 December
## 19312 Resort Hotel 0 2 2015 December
## 19313 Resort Hotel 0 4 2015 December
## 19314 Resort Hotel 0 4 2015 December
## 19315 Resort Hotel 0 63 2016 November
## 19316 Resort Hotel 0 3 2015 December
## 19317 Resort Hotel 0 3 2015 December
## 19318 Resort Hotel 0 3 2015 December
## 19319 Resort Hotel 0 1 2015 December
## 19320 Resort Hotel 0 36 2015 December
## 19321 Resort Hotel 0 9 2015 December
## 19322 Resort Hotel 0 9 2015 December
## 19323 Resort Hotel 0 5 2015 December
## 19324 Resort Hotel 0 12 2015 December
## 19325 Resort Hotel 0 0 2015 December
## 19326 Resort Hotel 0 0 2016 February
## 19327 Resort Hotel 0 23 2015 December
## 19328 Resort Hotel 0 0 2015 December
## 19329 Resort Hotel 0 0 2015 December
## 19330 Resort Hotel 0 14 2015 December
## 19331 Resort Hotel 0 12 2015 December
## 19332 Resort Hotel 1 30 2015 December
## 19333 Resort Hotel 0 1 2015 December
## 19334 Resort Hotel 1 11 2015 December
## 19335 Resort Hotel 1 11 2015 December
## 19336 Resort Hotel 0 2 2015 December
## 19337 Resort Hotel 1 1 2015 December
## 19338 Resort Hotel 0 128 2015 December
## 19339 Resort Hotel 0 3 2015 December
## 19340 Resort Hotel 0 0 2015 December
## 19341 Resort Hotel 0 0 2015 December
## 19342 Resort Hotel 0 0 2016 February
## 19343 Resort Hotel 0 6 2015 December
## 19344 Resort Hotel 1 13 2015 December
## 19345 Resort Hotel 0 23 2015 December
## 19346 Resort Hotel 0 0 2015 December
## 19347 Resort Hotel 1 17 2015 December
## 19348 Resort Hotel 0 2 2015 December
## 19349 Resort Hotel 1 2 2015 December
## 19350 Resort Hotel 1 30 2016 January
## 19351 Resort Hotel 0 1 2015 December
## 19352 Resort Hotel 0 17 2015 December
## 19353 Resort Hotel 0 1 2015 December
## 19354 Resort Hotel 0 7 2015 December
## 19355 Resort Hotel 0 1 2016 December
## 19356 Resort Hotel 1 19 2015 December
## 19357 Resort Hotel 0 0 2015 December
## 19358 Resort Hotel 0 1 2016 January
## 19359 Resort Hotel 0 0 2016 January
## 19360 Resort Hotel 0 0 2016 March
## 19361 Resort Hotel 0 5 2016 June
## 19362 Resort Hotel 0 4 2015 December
## 19363 Resort Hotel 0 0 2015 December
## 19364 Resort Hotel 0 16 2015 December
## 19365 Resort Hotel 0 11 2015 December
## 19366 Resort Hotel 1 12 2015 December
## 19367 Resort Hotel 1 12 2015 December
## 19368 Resort Hotel 1 12 2015 December
## 19369 Resort Hotel 1 12 2015 December
## 19370 Resort Hotel 0 25 2015 December
## 19371 Resort Hotel 0 2 2015 December
## 19372 Resort Hotel 0 19 2015 December
## 19373 Resort Hotel 0 19 2015 December
## 19374 Resort Hotel 0 16 2015 December
## 19375 Resort Hotel 1 29 2015 December
## 19376 Resort Hotel 1 79 2016 February
## 19377 Resort Hotel 0 4 2015 December
## 19378 Resort Hotel 1 44 2016 January
## 19379 Resort Hotel 0 2 2015 December
## 19380 Resort Hotel 0 1 2016 February
## 19381 Resort Hotel 0 0 2016 April
## 19382 Resort Hotel 0 1 2016 May
## 19383 Resort Hotel 0 2 2017 June
## 19384 Resort Hotel 0 0 2015 December
## 19385 Resort Hotel 0 5 2015 December
## 19386 Resort Hotel 0 5 2015 December
## 19387 Resort Hotel 0 0 2015 December
## 19388 Resort Hotel 0 0 2015 December
## 19389 Resort Hotel 0 0 2016 April
## 19390 Resort Hotel 0 0 2015 December
## 19391 Resort Hotel 0 7 2015 December
## 19392 Resort Hotel 0 7 2015 December
## 19393 Resort Hotel 0 0 2015 December
## 19394 Resort Hotel 0 0 2017 February
## 19395 Resort Hotel 1 196 2016 June
## 19396 Resort Hotel 1 196 2016 June
## 19397 Resort Hotel 0 0 2015 December
## 19398 Resort Hotel 0 13 2015 December
## 19399 Resort Hotel 0 11 2015 December
## 19400 Resort Hotel 0 11 2015 December
## 19401 Resort Hotel 0 0 2015 December
## 19402 Resort Hotel 0 1 2015 December
## 19403 Resort Hotel 0 0 2015 December
## 19404 Resort Hotel 0 0 2017 January
## 19405 Resort Hotel 0 0 2015 December
## 19406 Resort Hotel 0 0 2015 December
## 19407 Resort Hotel 0 0 2016 January
## 19408 Resort Hotel 0 0 2015 December
## 19409 Resort Hotel 0 0 2016 January
## 19410 Resort Hotel 0 0 2015 December
## 19411 Resort Hotel 0 3 2015 December
## 19412 Resort Hotel 0 0 2016 March
## 19413 Resort Hotel 0 0 2015 December
## 19414 Resort Hotel 0 2 2015 December
## 19415 Resort Hotel 0 0 2015 December
## 19416 Resort Hotel 0 1 2015 December
## 19417 Resort Hotel 0 2 2015 December
## 19418 Resort Hotel 0 1 2015 December
## 19419 Resort Hotel 0 33 2015 December
## 19420 Resort Hotel 0 105 2015 December
## 19421 Resort Hotel 0 1 2015 December
## 19422 Resort Hotel 0 20 2015 December
## 19423 Resort Hotel 0 17 2015 December
## 19424 Resort Hotel 0 0 2015 December
## 19425 Resort Hotel 0 11 2015 December
## 19426 Resort Hotel 0 3 2015 December
## 19427 Resort Hotel 0 3 2015 December
## 19428 Resort Hotel 0 15 2015 December
## 19429 Resort Hotel 0 3 2015 December
## 19430 Resort Hotel 0 0 2015 December
## 19431 Resort Hotel 0 2 2015 December
## 19432 Resort Hotel 0 4 2015 December
## 19433 Resort Hotel 0 0 2015 December
## 19434 Resort Hotel 0 5 2015 December
## 19435 Resort Hotel 0 3 2016 December
## 19436 Resort Hotel 0 0 2015 December
## 19437 Resort Hotel 0 39 2015 December
## 19438 Resort Hotel 0 11 2015 December
## 19439 Resort Hotel 0 5 2015 December
## 19440 Resort Hotel 0 3 2016 December
## 19441 Resort Hotel 0 5 2015 December
## 19442 Resort Hotel 0 3 2016 December
## 19443 Resort Hotel 0 16 2015 December
## 19444 Resort Hotel 0 0 2015 December
## 19445 Resort Hotel 0 15 2015 December
## 19446 Resort Hotel 0 5 2015 December
## 19447 Resort Hotel 0 5 2015 December
## 19448 Resort Hotel 0 0 2015 December
## 19449 Resort Hotel 0 2 2015 December
## 19450 Resort Hotel 0 0 2015 December
## 19451 Resort Hotel 0 4 2015 December
## 19452 Resort Hotel 0 9 2015 December
## 19453 Resort Hotel 0 17 2015 December
## 19454 Resort Hotel 0 45 2015 December
## 19455 Resort Hotel 0 13 2015 December
## 19456 Resort Hotel 0 12 2015 December
## 19457 Resort Hotel 0 24 2015 December
## 19458 Resort Hotel 0 0 2015 December
## 19459 Resort Hotel 0 0 2015 December
## 19460 Resort Hotel 0 0 2015 December
## 19461 Resort Hotel 0 203 2015 December
## 19462 Resort Hotel 0 210 2015 December
## 19463 Resort Hotel 0 2 2015 December
## 19464 Resort Hotel 0 202 2015 December
## 19465 Resort Hotel 0 35 2015 December
## 19466 Resort Hotel 0 10 2015 December
## 19467 Resort Hotel 0 0 2015 December
## 19468 Resort Hotel 0 0 2015 December
## 19469 Resort Hotel 0 19 2015 December
## 19470 Resort Hotel 0 16 2015 December
## 19471 Resort Hotel 0 8 2015 December
## 19472 Resort Hotel 0 5 2015 December
## 19473 Resort Hotel 0 5 2015 December
## 19474 Resort Hotel 0 75 2015 December
## 19475 Resort Hotel 0 22 2015 December
## 19476 Resort Hotel 0 46 2015 December
## 19477 Resort Hotel 0 46 2015 December
## 19478 Resort Hotel 0 46 2015 December
## 19479 Resort Hotel 0 46 2015 December
## 19480 Resort Hotel 0 0 2015 December
## 19481 Resort Hotel 0 0 2015 December
## 19482 Resort Hotel 0 0 2016 March
## 19483 Resort Hotel 0 0 2016 October
## 19484 Resort Hotel 0 2 2015 December
## 19485 Resort Hotel 0 121 2015 December
## 19486 Resort Hotel 0 128 2016 December
## 19487 Resort Hotel 0 19 2015 December
## 19488 Resort Hotel 0 1 2015 December
## 19489 Resort Hotel 0 19 2015 December
## 19490 Resort Hotel 0 10 2015 December
## 19491 Resort Hotel 0 25 2015 December
## 19492 Resort Hotel 0 0 2015 December
## 19493 Resort Hotel 0 6 2016 December
## 19494 Resort Hotel 0 3 2017 June
## 19495 Resort Hotel 0 0 2015 December
## 19496 Resort Hotel 0 7 2015 December
## 19497 Resort Hotel 0 1 2015 December
## 19498 Resort Hotel 0 34 2015 December
## 19499 Resort Hotel 0 34 2015 December
## 19500 Resort Hotel 0 34 2015 December
## 19501 Resort Hotel 0 22 2015 December
## 19502 Resort Hotel 0 4 2015 December
## 19503 Resort Hotel 0 24 2015 December
## 19504 Resort Hotel 1 11 2015 December
## 19505 Resort Hotel 0 0 2015 December
## 19506 Resort Hotel 0 8 2015 December
## 19507 Resort Hotel 0 1 2015 December
## 19508 Resort Hotel 0 13 2015 December
## 19509 Resort Hotel 0 3 2015 December
## 19510 Resort Hotel 0 13 2015 December
## 19511 Resort Hotel 0 10 2015 December
## 19512 Resort Hotel 0 1 2015 December
## 19513 Resort Hotel 0 0 2015 December
## 19514 Resort Hotel 0 15 2015 December
## 19515 Resort Hotel 0 1 2015 December
## 19516 Resort Hotel 0 20 2015 December
## 19517 Resort Hotel 0 7 2015 December
## 19518 Resort Hotel 0 20 2015 December
## 19519 Resort Hotel 0 17 2015 December
## 19520 Resort Hotel 0 0 2015 December
## 19521 Resort Hotel 0 1 2015 December
## 19522 Resort Hotel 0 297 2016 December
## 19523 Resort Hotel 0 24 2015 December
## 19524 Resort Hotel 0 139 2015 December
## 19525 Resort Hotel 0 27 2015 December
## 19526 Resort Hotel 0 3 2015 December
## 19527 Resort Hotel 0 50 2015 December
## 19528 Resort Hotel 0 12 2015 December
## 19529 Resort Hotel 0 93 2015 December
## 19530 Resort Hotel 0 0 2015 December
## 19531 Resort Hotel 0 40 2015 December
## 19532 Resort Hotel 0 40 2015 December
## 19533 Resort Hotel 0 4 2015 December
## 19534 Resort Hotel 0 4 2015 December
## 19535 Resort Hotel 0 73 2015 December
## 19536 Resort Hotel 0 138 2015 December
## 19537 Resort Hotel 0 138 2015 December
## 19538 Resort Hotel 0 0 2015 December
## 19539 Resort Hotel 0 7 2015 December
## 19540 Resort Hotel 0 3 2015 December
## 19541 Resort Hotel 0 0 2015 December
## 19542 Resort Hotel 0 0 2015 December
## 19543 Resort Hotel 0 29 2015 December
## 19544 Resort Hotel 0 20 2015 December
## 19545 Resort Hotel 0 20 2015 December
## 19546 Resort Hotel 0 111 2015 December
## 19547 Resort Hotel 0 111 2015 December
## 19548 Resort Hotel 0 14 2015 December
## 19549 Resort Hotel 0 29 2015 December
## 19550 Resort Hotel 0 0 2015 December
## 19551 Resort Hotel 0 10 2015 December
## 19552 Resort Hotel 0 24 2015 December
## 19553 Resort Hotel 0 30 2015 December
## 19554 Resort Hotel 0 30 2015 December
## 19555 Resort Hotel 0 29 2015 December
## 19556 Resort Hotel 0 2 2015 December
## 19557 Resort Hotel 0 6 2015 December
## 19558 Resort Hotel 0 24 2015 December
## 19559 Resort Hotel 0 3 2016 January
## 19560 Resort Hotel 0 1 2016 November
## 19561 Resort Hotel 0 0 2016 December
## 19562 Resort Hotel 0 7 2017 January
## 19563 Resort Hotel 0 3 2015 December
## 19564 Resort Hotel 0 13 2015 December
## 19565 Resort Hotel 0 18 2015 December
## 19566 Resort Hotel 0 14 2015 December
## 19567 Resort Hotel 0 1 2015 December
## 19568 Resort Hotel 0 14 2015 December
## 19569 Resort Hotel 0 18 2015 December
## 19570 Resort Hotel 1 16 2016 April
## 19571 Resort Hotel 0 13 2015 December
## 19572 Resort Hotel 0 28 2015 December
## 19573 Resort Hotel 0 0 2015 December
## 19574 Resort Hotel 0 0 2015 December
## 19575 Resort Hotel 0 23 2015 December
## 19576 Resort Hotel 0 14 2015 December
## 19577 Resort Hotel 0 14 2015 December
## 19578 Resort Hotel 0 2 2015 December
## 19579 Resort Hotel 0 8 2015 December
## 19580 Resort Hotel 0 1 2015 December
## 19581 Resort Hotel 0 0 2015 December
## 19582 Resort Hotel 0 47 2015 December
## 19583 Resort Hotel 0 0 2015 December
## 19584 Resort Hotel 0 1 2015 December
## 19585 Resort Hotel 0 0 2015 December
## 19586 Resort Hotel 0 28 2015 December
## 19587 Resort Hotel 0 26 2015 December
## 19588 Resort Hotel 0 29 2015 December
## 19589 Resort Hotel 0 29 2015 December
## 19590 Resort Hotel 0 0 2015 December
## 19591 Resort Hotel 0 5 2015 December
## 19592 Resort Hotel 0 37 2015 December
## 19593 Resort Hotel 0 0 2015 December
## 19594 Resort Hotel 0 0 2015 December
## 19595 Resort Hotel 0 14 2015 December
## 19596 Resort Hotel 0 1 2015 December
## 19597 Resort Hotel 0 4 2015 December
## 19598 Resort Hotel 0 132 2015 December
## 19599 Resort Hotel 0 47 2015 December
## 19600 Resort Hotel 0 26 2015 December
## 19601 Resort Hotel 0 131 2015 December
## 19602 Resort Hotel 0 153 2015 December
## 19603 Resort Hotel 0 4 2015 December
## 19604 Resort Hotel 0 4 2015 December
## 19605 Resort Hotel 0 3 2015 December
## 19606 Resort Hotel 0 24 2015 December
## 19607 Resort Hotel 0 24 2015 December
## 19608 Resort Hotel 0 29 2015 December
## 19609 Resort Hotel 0 3 2015 December
## 19610 Resort Hotel 0 50 2015 December
## 19611 Resort Hotel 0 34 2015 December
## 19612 Resort Hotel 0 131 2015 December
## 19613 Resort Hotel 0 29 2015 December
## 19614 Resort Hotel 0 131 2015 December
## 19615 Resort Hotel 0 131 2015 December
## 19616 Resort Hotel 0 8 2015 December
## 19617 Resort Hotel 0 19 2015 December
## 19618 Resort Hotel 0 58 2015 December
## 19619 Resort Hotel 0 131 2015 December
## 19620 Resort Hotel 0 131 2015 December
## 19621 Resort Hotel 0 24 2015 December
## 19622 Resort Hotel 0 24 2015 December
## 19623 Resort Hotel 0 10 2015 December
## 19624 Resort Hotel 0 146 2015 December
## 19625 Resort Hotel 0 36 2015 December
## 19626 Resort Hotel 0 36 2015 December
## 19627 Resort Hotel 0 25 2015 December
## 19628 Resort Hotel 0 138 2015 December
## 19629 Resort Hotel 0 0 2015 December
## 19630 Resort Hotel 0 0 2015 December
## 19631 Resort Hotel 0 0 2015 December
## 19632 Resort Hotel 0 0 2015 December
## 19633 Resort Hotel 0 14 2015 December
## 19634 Resort Hotel 0 0 2015 December
## 19635 Resort Hotel 0 0 2015 December
## 19636 Resort Hotel 0 69 2015 December
## 19637 Resort Hotel 0 0 2015 December
## 19638 Resort Hotel 0 0 2015 December
## 19639 Resort Hotel 0 0 2016 March
## 19640 Resort Hotel 0 3 2015 December
## 19641 Resort Hotel 0 1 2015 December
## 19642 Resort Hotel 0 105 2015 December
## 19643 Resort Hotel 0 14 2015 December
## 19644 Resort Hotel 0 24 2015 December
## 19645 Resort Hotel 0 29 2015 December
## 19646 Resort Hotel 0 1 2015 December
## 19647 Resort Hotel 0 1 2015 December
## 19648 Resort Hotel 0 0 2015 December
## 19649 Resort Hotel 0 0 2015 December
## 19650 Resort Hotel 0 1 2015 December
## 19651 Resort Hotel 0 32 2015 December
## 19652 Resort Hotel 0 118 2015 December
## 19653 Resort Hotel 0 35 2015 December
## 19654 Resort Hotel 0 34 2015 December
## 19655 Resort Hotel 0 1 2015 December
## 19656 Resort Hotel 0 45 2015 December
## 19657 Resort Hotel 0 7 2015 December
## 19658 Resort Hotel 0 4 2015 December
## 19659 Resort Hotel 0 44 2015 December
## 19660 Resort Hotel 0 25 2015 December
## 19661 Resort Hotel 0 46 2015 December
## 19662 Resort Hotel 0 0 2015 December
## 19663 Resort Hotel 0 36 2015 December
## 19664 Resort Hotel 0 0 2015 December
## 19665 Resort Hotel 0 1 2015 December
## 19666 Resort Hotel 0 0 2015 December
## 19667 Resort Hotel 0 3 2015 December
## 19668 Resort Hotel 0 23 2015 December
## 19669 Resort Hotel 0 5 2015 December
## 19670 Resort Hotel 0 0 2015 December
## 19671 Resort Hotel 0 0 2015 December
## 19672 Resort Hotel 0 0 2016 November
## 19673 Resort Hotel 0 22 2015 December
## 19674 Resort Hotel 0 178 2015 December
## 19675 Resort Hotel 0 16 2015 December
## 19676 Resort Hotel 0 33 2015 December
## 19677 Resort Hotel 0 30 2015 December
## 19678 Resort Hotel 0 93 2015 December
## 19679 Resort Hotel 0 23 2015 December
## 19680 Resort Hotel 0 28 2015 December
## 19681 Resort Hotel 0 17 2015 December
## 19682 Resort Hotel 0 17 2015 December
## 19683 Resort Hotel 0 17 2015 December
## 19684 Resort Hotel 0 7 2015 December
## 19685 Resort Hotel 0 3 2015 December
## 19686 Resort Hotel 0 0 2016 May
## 19687 Resort Hotel 0 0 2015 December
## 19688 Resort Hotel 0 6 2015 December
## 19689 Resort Hotel 0 0 2015 December
## 19690 Resort Hotel 0 113 2015 December
## 19691 Resort Hotel 0 11 2015 December
## 19692 Resort Hotel 0 0 2015 December
## 19693 Resort Hotel 1 67 2016 December
## 19694 Resort Hotel 0 0 2015 December
## 19695 Resort Hotel 0 16 2015 December
## 19696 Resort Hotel 0 131 2015 December
## 19697 Resort Hotel 0 82 2015 December
## 19698 Resort Hotel 0 74 2015 December
## 19699 Resort Hotel 0 88 2015 December
## 19700 Resort Hotel 0 304 2015 December
## 19701 Resort Hotel 0 47 2015 December
## 19702 Resort Hotel 0 10 2017 May
## 19703 Resort Hotel 0 36 2015 December
## 19704 Resort Hotel 0 42 2015 December
## 19705 Resort Hotel 0 37 2015 December
## 19706 Resort Hotel 0 37 2015 December
## 19707 Resort Hotel 0 64 2015 December
## 19708 Resort Hotel 0 70 2015 December
## 19709 Resort Hotel 0 42 2015 December
## 19710 Resort Hotel 0 37 2015 December
## 19711 Resort Hotel 0 38 2015 December
## 19712 Resort Hotel 0 90 2015 December
## 19713 Resort Hotel 0 152 2015 December
## 19714 Resort Hotel 0 201 2017 April
## 19715 Resort Hotel 0 42 2015 December
## 19716 Resort Hotel 0 61 2015 December
## 19717 Resort Hotel 0 14 2015 December
## 19718 Resort Hotel 0 14 2015 December
## 19719 Resort Hotel 0 0 2016 January
## 19720 Resort Hotel 0 21 2015 December
## 19721 Resort Hotel 0 14 2015 December
## 19722 Resort Hotel 0 14 2015 December
## 19723 Resort Hotel 0 77 2015 December
## 19724 Resort Hotel 0 13 2015 December
## 19725 Resort Hotel 0 112 2015 December
## 19726 Resort Hotel 0 112 2015 December
## 19727 Resort Hotel 0 31 2016 December
## 19728 Resort Hotel 0 112 2015 December
## 19729 Resort Hotel 0 31 2016 December
## 19730 Resort Hotel 0 112 2015 December
## 19731 Resort Hotel 0 112 2015 December
## 19732 Resort Hotel 0 112 2015 December
## 19733 Resort Hotel 0 112 2015 December
## 19734 Resort Hotel 0 112 2015 December
## 19735 Resort Hotel 0 112 2015 December
## 19736 Resort Hotel 0 6 2017 February
## 19737 Resort Hotel 0 112 2015 December
## 19738 Resort Hotel 0 112 2015 December
## 19739 Resort Hotel 0 31 2016 December
## 19740 Resort Hotel 0 112 2015 December
## 19741 Resort Hotel 0 112 2015 December
## 19742 Resort Hotel 0 31 2016 December
## 19743 Resort Hotel 0 112 2015 December
## 19744 Resort Hotel 0 112 2015 December
## 19745 Resort Hotel 0 112 2015 December
## 19746 Resort Hotel 0 112 2015 December
## 19747 Resort Hotel 0 112 2015 December
## 19748 Resort Hotel 0 112 2015 December
## 19749 Resort Hotel 0 0 2017 April
## 19750 Resort Hotel 0 112 2015 December
## 19751 Resort Hotel 0 112 2015 December
## 19752 Resort Hotel 0 112 2015 December
## 19753 Resort Hotel 0 112 2015 December
## 19754 Resort Hotel 0 112 2015 December
## 19755 Resort Hotel 0 112 2015 December
## 19756 Resort Hotel 0 31 2016 December
## 19757 Resort Hotel 0 112 2015 December
## 19758 Resort Hotel 0 112 2015 December
## 19759 Resort Hotel 0 112 2015 December
## 19760 Resort Hotel 0 70 2015 December
## 19761 Resort Hotel 0 105 2016 December
## 19762 Resort Hotel 0 2 2016 January
## 19763 Resort Hotel 0 44 2015 December
## 19764 Resort Hotel 0 12 2016 October
## 19765 Resort Hotel 0 116 2017 June
## 19766 Resort Hotel 0 8 2016 January
## 19767 Resort Hotel 0 13 2017 January
## 19768 Resort Hotel 0 17 2017 February
## 19769 Resort Hotel 0 3 2016 January
## 19770 Resort Hotel 0 3 2016 January
## 19771 Resort Hotel 0 20 2016 January
## 19772 Resort Hotel 0 41 2015 December
## 19773 Resort Hotel 0 53 2015 December
## 19774 Resort Hotel 0 41 2015 December
## 19775 Resort Hotel 0 49 2015 December
## 19776 Resort Hotel 0 41 2015 December
## 19777 Resort Hotel 0 59 2015 December
## 19778 Resort Hotel 0 7 2016 January
## 19779 Resort Hotel 0 26 2016 January
## 19780 Resort Hotel 0 11 2016 December
## 19781 Resort Hotel 0 16 2016 January
## 19782 Resort Hotel 0 2 2015 December
## 19783 Resort Hotel 0 4 2016 January
## 19784 Resort Hotel 0 16 2017 June
## 19785 Resort Hotel 0 5 2016 January
## 19786 Resort Hotel 0 5 2016 January
## 19787 Resort Hotel 0 48 2015 December
## 19788 Resort Hotel 0 71 2015 December
## 19789 Resort Hotel 0 120 2015 December
## 19790 Resort Hotel 0 0 2016 January
## 19791 Resort Hotel 0 1 2016 January
## 19792 Resort Hotel 0 1 2016 January
## 19793 Resort Hotel 0 42 2015 December
## 19794 Resort Hotel 0 3 2016 January
## 19795 Resort Hotel 0 3 2016 January
## 19796 Resort Hotel 0 3 2016 January
## 19797 Resort Hotel 0 26 2016 January
## 19798 Resort Hotel 0 11 2016 December
## 19799 Resort Hotel 0 53 2015 December
## 19800 Resort Hotel 0 2 2016 January
## 19801 Resort Hotel 0 2 2015 December
## 19802 Resort Hotel 0 90 2015 December
## 19803 Resort Hotel 0 100 2015 December
## 19804 Resort Hotel 0 9 2016 January
## 19805 Resort Hotel 0 15 2016 January
## 19806 Resort Hotel 0 8 2015 December
## 19807 Resort Hotel 0 70 2016 December
## 19808 Resort Hotel 0 0 2016 January
## 19809 Resort Hotel 0 0 2016 January
## 19810 Resort Hotel 0 83 2016 January
## 19811 Resort Hotel 0 89 2015 December
## 19812 Resort Hotel 0 0 2016 January
## 19813 Resort Hotel 0 2 2015 December
## 19814 Resort Hotel 0 1 2016 January
## 19815 Resort Hotel 0 1 2016 January
## 19816 Resort Hotel 0 1 2016 January
## 19817 Resort Hotel 0 0 2016 January
## 19818 Resort Hotel 0 1 2016 January
## 19819 Resort Hotel 0 100 2015 December
## 19820 Resort Hotel 0 8 2016 January
## 19821 Resort Hotel 0 1 2016 January
## 19822 Resort Hotel 0 0 2016 January
## 19823 Resort Hotel 0 17 2016 January
## 19824 Resort Hotel 1 23 2016 January
## 19825 Resort Hotel 0 148 2016 January
## 19826 Resort Hotel 0 0 2016 January
## 19827 Resort Hotel 0 148 2016 January
## 19828 Resort Hotel 0 21 2016 January
## 19829 Resort Hotel 0 148 2016 January
## 19830 Resort Hotel 0 148 2016 January
## 19831 Resort Hotel 0 138 2016 January
## 19832 Resort Hotel 0 2 2016 January
## 19833 Resort Hotel 0 5 2016 January
## 19834 Resort Hotel 0 23 2016 January
## 19835 Resort Hotel 0 0 2016 January
## 19836 Resort Hotel 0 23 2016 January
## 19837 Resort Hotel 0 7 2016 January
## 19838 Resort Hotel 0 0 2016 January
## 19839 Resort Hotel 0 28 2016 January
## 19840 Resort Hotel 0 14 2016 January
## 19841 Resort Hotel 0 0 2016 January
## 19842 Resort Hotel 0 0 2016 January
## 19843 Resort Hotel 0 4 2016 January
## 19844 Resort Hotel 0 38 2016 January
## 19845 Resort Hotel 0 0 2016 January
## 19846 Resort Hotel 0 0 2016 January
## 19847 Resort Hotel 0 0 2016 January
## 19848 Resort Hotel 0 11 2016 January
## 19849 Resort Hotel 0 0 2016 January
## 19850 Resort Hotel 0 3 2016 January
## 19851 Resort Hotel 0 3 2016 January
## 19852 Resort Hotel 0 0 2016 January
## 19853 Resort Hotel 0 38 2016 January
## 19854 Resort Hotel 0 5 2016 January
## 19855 Resort Hotel 0 2 2016 February
## 19856 Resort Hotel 0 38 2015 December
## 19857 Resort Hotel 0 1 2016 January
## 19858 Resort Hotel 0 38 2016 January
## 19859 Resort Hotel 0 0 2016 January
## 19860 Resort Hotel 0 16 2016 January
## 19861 Resort Hotel 0 24 2016 January
## 19862 Resort Hotel 0 46 2016 January
## 19863 Resort Hotel 0 157 2016 January
## 19864 Resort Hotel 0 5 2016 January
## 19865 Resort Hotel 0 11 2016 January
## 19866 Resort Hotel 0 1 2016 January
## 19867 Resort Hotel 0 5 2016 January
## 19868 Resort Hotel 0 0 2016 January
## 19869 Resort Hotel 0 0 2016 January
## 19870 Resort Hotel 0 6 2016 January
## 19871 Resort Hotel 0 75 2015 December
## 19872 Resort Hotel 0 0 2016 January
## 19873 Resort Hotel 0 3 2016 January
## 19874 Resort Hotel 0 38 2016 January
## 19875 Resort Hotel 0 0 2016 January
## 19876 Resort Hotel 0 25 2016 January
## 19877 Resort Hotel 0 0 2016 January
## 19878 Resort Hotel 0 12 2016 January
## 19879 Resort Hotel 0 5 2016 January
## 19880 Resort Hotel 0 0 2016 January
## 19881 Resort Hotel 0 0 2016 January
## 19882 Resort Hotel 0 0 2016 January
## 19883 Resort Hotel 0 0 2016 January
## 19884 Resort Hotel 0 0 2016 January
## 19885 Resort Hotel 0 0 2016 January
## 19886 Resort Hotel 0 55 2016 January
## 19887 Resort Hotel 0 37 2016 January
## 19888 Resort Hotel 0 5 2016 January
## 19889 Resort Hotel 0 5 2016 January
## 19890 Resort Hotel 0 5 2016 January
## 19891 Resort Hotel 0 5 2016 January
## 19892 Resort Hotel 0 5 2016 January
## 19893 Resort Hotel 0 5 2016 January
## 19894 Resort Hotel 0 5 2016 January
## 19895 Resort Hotel 0 0 2016 January
## 19896 Resort Hotel 0 39 2016 January
## 19897 Resort Hotel 0 0 2016 January
## 19898 Resort Hotel 0 5 2016 January
## 19899 Resort Hotel 0 1 2016 January
## 19900 Resort Hotel 0 0 2016 January
## 19901 Resort Hotel 0 0 2016 February
## 19902 Resort Hotel 0 8 2016 January
## 19903 Resort Hotel 0 0 2016 February
## 19904 Resort Hotel 0 0 2016 April
## 19905 Resort Hotel 0 5 2016 January
## 19906 Resort Hotel 1 8 2016 May
## 19907 Resort Hotel 0 0 2016 January
## 19908 Resort Hotel 0 7 2016 January
## 19909 Resort Hotel 0 0 2016 January
## 19910 Resort Hotel 0 0 2016 January
## 19911 Resort Hotel 0 5 2016 January
## 19912 Resort Hotel 0 32 2016 January
## 19913 Resort Hotel 0 27 2016 January
## 19914 Resort Hotel 0 7 2016 January
## 19915 Resort Hotel 0 2 2016 January
## 19916 Resort Hotel 0 38 2016 January
## 19917 Resort Hotel 0 10 2016 January
## 19918 Resort Hotel 0 0 2016 January
## 19919 Resort Hotel 0 0 2016 January
## 19920 Resort Hotel 0 37 2016 January
## 19921 Resort Hotel 0 9 2016 January
## 19922 Resort Hotel 0 10 2016 January
## 19923 Resort Hotel 0 0 2016 January
## 19924 Resort Hotel 0 61 2016 January
## 19925 Resort Hotel 0 0 2016 January
## 19926 Resort Hotel 0 1 2017 January
## 19927 Resort Hotel 0 11 2016 January
## 19928 Resort Hotel 0 38 2017 January
## 19929 Resort Hotel 0 10 2016 January
## 19930 Resort Hotel 0 8 2016 January
## 19931 Resort Hotel 0 8 2016 January
## 19932 Resort Hotel 0 20 2016 January
## 19933 Resort Hotel 0 0 2016 January
## 19934 Resort Hotel 0 5 2016 January
## 19935 Resort Hotel 0 0 2016 January
## 19936 Resort Hotel 0 129 2016 January
## 19937 Resort Hotel 0 1 2016 January
## 19938 Resort Hotel 0 1 2016 January
## 19939 Resort Hotel 0 5 2016 January
## 19940 Resort Hotel 0 12 2016 January
## 19941 Resort Hotel 0 19 2016 January
## 19942 Resort Hotel 0 4 2016 January
## 19943 Resort Hotel 0 1 2016 January
## 19944 Resort Hotel 0 64 2016 January
## 19945 Resort Hotel 0 5 2016 January
## 19946 Resort Hotel 0 0 2016 January
## 19947 Resort Hotel 0 5 2016 January
## 19948 Resort Hotel 0 31 2016 January
## 19949 Resort Hotel 0 1 2016 January
## 19950 Resort Hotel 0 0 2016 January
## 19951 Resort Hotel 0 1 2016 April
## 19952 Resort Hotel 0 9 2017 January
## 19953 Resort Hotel 0 2 2016 January
## 19954 Resort Hotel 0 0 2016 January
## 19955 Resort Hotel 0 0 2016 January
## 19956 Resort Hotel 0 2 2016 January
## 19957 Resort Hotel 0 2 2016 January
## 19958 Resort Hotel 0 0 2016 January
## 19959 Resort Hotel 0 0 2016 January
## 19960 Resort Hotel 0 47 2016 January
## 19961 Resort Hotel 0 20 2016 January
## 19962 Resort Hotel 0 20 2016 January
## 19963 Resort Hotel 0 23 2016 January
## 19964 Resort Hotel 0 11 2016 January
## 19965 Resort Hotel 0 3 2016 January
## 19966 Resort Hotel 0 3 2016 January
## 19967 Resort Hotel 0 0 2016 January
## 19968 Resort Hotel 0 0 2016 January
## 19969 Resort Hotel 0 4 2016 January
## 19970 Resort Hotel 0 0 2016 January
## 19971 Resort Hotel 0 13 2016 January
## 19972 Resort Hotel 0 0 2016 January
## 19973 Resort Hotel 0 0 2016 January
## 19974 Resort Hotel 0 30 2016 January
## 19975 Resort Hotel 0 62 2017 March
## 19976 Resort Hotel 0 30 2016 January
## 19977 Resort Hotel 0 44 2017 June
## 19978 Resort Hotel 0 16 2016 January
## 19979 Resort Hotel 0 0 2016 January
## 19980 Resort Hotel 0 0 2016 January
## 19981 Resort Hotel 0 0 2016 January
## 19982 Resort Hotel 0 0 2016 February
## 19983 Resort Hotel 0 0 2016 January
## 19984 Resort Hotel 0 0 2016 January
## 19985 Resort Hotel 0 0 2016 January
## 19986 Resort Hotel 0 0 2016 January
## 19987 Resort Hotel 0 0 2016 January
## 19988 Resort Hotel 0 0 2016 January
## 19989 Resort Hotel 0 0 2016 March
## 19990 Resort Hotel 0 2 2016 January
## 19991 Resort Hotel 0 0 2016 January
## 19992 Resort Hotel 0 6 2016 January
## 19993 Resort Hotel 0 0 2016 January
## 19994 Resort Hotel 0 0 2016 January
## 19995 Resort Hotel 0 0 2016 January
## 19996 Resort Hotel 0 0 2016 January
## 19997 Resort Hotel 0 3 2016 January
## 19998 Resort Hotel 0 4 2016 January
## 19999 Resort Hotel 0 5 2016 January
## [ reached 'max' / getOption("max.print") -- omitted 99391 rows ]
hotels %>%
select(ends_with("type"))
## reserved_room_type assigned_room_type deposit_type customer_type
## 1 C C No Deposit Transient
## 2 C C No Deposit Transient
## 3 A C No Deposit Transient
## 4 A A No Deposit Transient
## 5 A A No Deposit Transient
## 6 A A No Deposit Transient
## 7 C C No Deposit Transient
## 8 C C No Deposit Transient
## 9 A A No Deposit Transient
## 10 D D No Deposit Transient
## 11 E E No Deposit Transient
## 12 D D No Deposit Transient
## 13 D E No Deposit Transient
## 14 G G No Deposit Transient
## 15 E E No Deposit Transient
## 16 D E No Deposit Transient
## 17 E E No Deposit Contract
## 18 A E No Deposit Transient
## 19 A G No Deposit Transient
## 20 G G No Deposit Transient
## 21 F F No Deposit Transient
## 22 A A No Deposit Transient
## 23 A A No Deposit Transient
## 24 D D No Deposit Transient
## 25 D I No Deposit Contract
## 26 D D No Deposit Transient
## 27 D D No Deposit Contract
## 28 E E No Deposit Transient
## 29 A A No Deposit Transient
## 30 D D No Deposit Transient
## 31 A A No Deposit Transient
## 32 D D No Deposit Transient
## 33 E E No Deposit Transient
## 34 A C No Deposit Transient
## 35 D D No Deposit Transient
## 36 D D No Deposit Transient
## 37 A C No Deposit Transient
## 38 D D No Deposit Transient
## 39 D D No Deposit Transient
## 40 E E No Deposit Transient
## 41 G G No Deposit Transient
## 42 D D No Deposit Contract
## 43 F F No Deposit Transient
## 44 E E No Deposit Transient
## 45 A A No Deposit Transient
## 46 G G No Deposit Transient
## 47 A A No Deposit Transient
## 48 E E No Deposit Transient-Party
## 49 A B No Deposit Contract
## 50 E F No Deposit Transient
## 51 D D No Deposit Transient-Party
## 52 A A No Deposit Contract
## 53 D D No Deposit Contract
## 54 A C No Deposit Transient
## 55 H H No Deposit Transient
## 56 C C No Deposit Transient
## 57 H H No Deposit Transient
## 58 A D No Deposit Transient
## 59 G G No Deposit Transient
## 60 A C No Deposit Transient
## 61 G G No Deposit Transient
## 62 E E No Deposit Transient
## 63 F F No Deposit Transient
## 64 A C No Deposit Contract
## 65 A A No Deposit Transient
## 66 G H No Deposit Transient
## 67 A C No Deposit Transient
## 68 D D No Deposit Transient
## 69 A A No Deposit Transient
## 70 A A No Deposit Transient
## 71 D D No Deposit Transient
## 72 A A No Deposit Transient
## 73 A A No Deposit Transient
## 74 A A No Deposit Transient
## 75 A A No Deposit Transient
## 76 A A No Deposit Transient
## 77 E E No Deposit Transient
## 78 A A No Deposit Transient
## 79 A A No Deposit Transient
## 80 D D No Deposit Transient
## 81 A A No Deposit Contract
## 82 A A No Deposit Contract
## 83 A A No Deposit Contract
## 84 A A No Deposit Transient
## 85 E E No Deposit Contract
## 86 E E No Deposit Contract
## 87 F F No Deposit Transient
## 88 A A No Deposit Transient
## 89 A C No Deposit Transient
## 90 A C No Deposit Transient
## 91 A C No Deposit Transient
## 92 E E No Deposit Transient
## 93 C C No Deposit Transient
## 94 A A No Deposit Transient
## 95 A A No Deposit Transient
## 96 A A No Deposit Transient
## 97 F F No Deposit Transient
## 98 E E No Deposit Transient
## 99 D D No Deposit Transient
## 100 E E No Deposit Transient
## 101 A C No Deposit Transient
## 102 D D No Deposit Transient
## 103 F F No Deposit Transient
## 104 A C No Deposit Transient
## 105 E E No Deposit Transient
## 106 H H No Deposit Transient
## 107 D D No Deposit Transient
## 108 A A No Deposit Transient
## 109 A A No Deposit Transient
## 110 A A No Deposit Transient
## 111 D D No Deposit Transient
## 112 E F No Deposit Transient
## 113 A A No Deposit Transient
## 114 E E No Deposit Transient
## 115 E E No Deposit Transient
## 116 A A No Deposit Transient
## 117 D D No Deposit Contract
## 118 D D No Deposit Contract
## 119 D D No Deposit Transient
## 120 H G No Deposit Transient
## 121 D C No Deposit Contract
## 122 A A No Deposit Transient
## 123 E G No Deposit Transient
## 124 A A No Deposit Transient
## 125 D D No Deposit Transient
## 126 H H No Deposit Transient
## 127 E E No Deposit Transient
## 128 A C No Deposit Transient-Party
## 129 A A No Deposit Transient
## 130 A A No Deposit Transient-Party
## 131 A C No Deposit Transient-Party
## 132 A C No Deposit Transient
## 133 D D No Deposit Transient
## 134 A C No Deposit Transient
## 135 A A No Deposit Transient
## 136 A D No Deposit Transient
## 137 A E No Deposit Transient
## 138 A A No Deposit Transient
## 139 D D No Deposit Transient
## 140 G G No Deposit Transient
## 141 G G No Deposit Transient
## 142 D E No Deposit Transient
## 143 D D No Deposit Transient
## 144 A D No Deposit Transient
## 145 E E No Deposit Transient
## 146 E E No Deposit Transient
## 147 H H No Deposit Transient
## 148 A A No Deposit Transient
## 149 H H No Deposit Transient
## 150 D D No Deposit Transient
## 151 C C No Deposit Transient
## 152 F F No Deposit Transient
## 153 A A No Deposit Transient
## 154 E E No Deposit Transient
## 155 H H No Deposit Transient
## 156 D D No Deposit Transient
## 157 D C No Deposit Transient
## 158 D D No Deposit Contract
## 159 A A No Deposit Contract
## 160 D D No Deposit Contract
## 161 G G No Deposit Transient
## 162 A C No Deposit Transient
## 163 G G No Deposit Transient
## 164 D D No Deposit Transient
## 165 G G No Deposit Transient
## 166 D E No Deposit Transient
## 167 G G No Deposit Transient
## 168 A H No Deposit Transient
## 169 E H No Deposit Transient
## 170 A E No Deposit Transient
## 171 A E No Deposit Transient
## 172 D F No Deposit Transient
## 173 D D No Deposit Transient
## 174 E E No Deposit Transient
## 175 A E No Deposit Transient
## 176 A C No Deposit Transient
## 177 E E No Deposit Transient
## 178 F F No Deposit Transient
## 179 A C No Deposit Transient
## 180 E E No Deposit Transient
## 181 G G No Deposit Transient
## 182 A A No Deposit Transient
## 183 A A No Deposit Contract
## 184 A C No Deposit Transient
## 185 D D No Deposit Transient
## 186 A A No Deposit Transient
## 187 D D No Deposit Transient
## 188 F F No Deposit Transient
## 189 D D No Deposit Contract
## 190 A A No Deposit Transient
## 191 D D No Deposit Contract
## 192 A A No Deposit Contract
## 193 D D No Deposit Transient
## 194 A A No Deposit Transient
## 195 A A No Deposit Transient
## 196 F F No Deposit Transient
## 197 A A No Deposit Transient
## 198 A E No Deposit Transient
## 199 A A No Deposit Transient
## 200 C C No Deposit Transient
## 201 A A No Deposit Transient
## 202 H H No Deposit Transient
## 203 D D No Deposit Transient
## 204 D E No Deposit Transient
## 205 A A No Deposit Transient
## 206 A A No Deposit Transient
## 207 E E No Deposit Transient
## 208 D D No Deposit Transient
## 209 A A No Deposit Contract
## 210 D D No Deposit Contract
## 211 E E No Deposit Transient
## 212 A A No Deposit Transient
## 213 A A No Deposit Transient
## 214 A A No Deposit Transient
## 215 D D No Deposit Transient
## 216 A A No Deposit Transient
## 217 A A No Deposit Transient
## 218 A A No Deposit Transient
## 219 A A No Deposit Transient
## 220 A A No Deposit Transient
## 221 A F No Deposit Transient
## 222 A A No Deposit Transient
## 223 E E No Deposit Transient
## 224 D D No Deposit Contract
## 225 E F No Deposit Transient
## 226 D D No Deposit Contract
## 227 E E No Deposit Transient
## 228 A A No Deposit Transient
## 229 E E No Deposit Transient-Party
## 230 E E No Deposit Transient-Party
## 231 C C No Deposit Transient
## 232 A C No Deposit Transient
## 233 H G No Deposit Transient
## 234 D D No Deposit Transient
## 235 C C No Deposit Transient
## 236 G G No Deposit Transient
## 237 A A No Deposit Transient
## 238 A A No Deposit Transient
## 239 A A No Deposit Transient
## 240 A A No Deposit Transient
## 241 A A No Deposit Transient
## 242 A A No Deposit Transient
## 243 A D No Deposit Transient
## 244 A A No Deposit Contract
## 245 E E No Deposit Contract
## 246 E E No Deposit Contract
## 247 A A No Deposit Transient
## 248 A A No Deposit Transient
## 249 A A No Deposit Transient
## 250 A A No Deposit Transient
## 251 A A No Deposit Transient
## 252 A A No Deposit Transient
## 253 A A No Deposit Transient
## 254 A A No Deposit Transient
## 255 G G No Deposit Transient
## 256 D D No Deposit Transient
## 257 A A No Deposit Transient
## 258 C C No Deposit Transient
## 259 A C No Deposit Transient
## 260 E E No Deposit Transient
## 261 F F No Deposit Transient-Party
## 262 F F No Deposit Transient-Party
## 263 E E No Deposit Transient
## 264 A A No Deposit Transient
## 265 C C No Deposit Transient
## 266 G G No Deposit Transient
## 267 A A No Deposit Transient
## 268 D D No Deposit Transient
## 269 D D No Deposit Transient
## 270 E E No Deposit Transient
## 271 E E No Deposit Transient
## 272 F F No Deposit Transient
## 273 C C No Deposit Transient
## 274 C C No Deposit Transient
## 275 A A No Deposit Transient
## 276 D D No Deposit Transient
## 277 F F No Deposit Transient
## 278 C C No Deposit Transient
## 279 D D No Deposit Transient
## 280 F F No Deposit Transient
## 281 A A No Deposit Transient
## 282 A A No Deposit Transient
## 283 A A No Deposit Transient
## 284 E E No Deposit Transient
## 285 D D No Deposit Transient
## 286 A A No Deposit Transient
## 287 E E No Deposit Transient
## 288 A A No Deposit Transient
## 289 E E No Deposit Transient
## 290 E E No Deposit Transient
## 291 E E No Deposit Transient
## 292 A A No Deposit Transient
## 293 A A No Deposit Transient
## 294 G G No Deposit Transient
## 295 A A No Deposit Transient
## 296 A A No Deposit Transient
## 297 A A No Deposit Transient
## 298 C C No Deposit Transient
## 299 E F No Deposit Transient
## 300 A A No Deposit Transient
## 301 D D No Deposit Transient
## 302 A A No Deposit Transient
## 303 D D No Deposit Transient
## 304 G G No Deposit Transient
## 305 E E No Deposit Transient
## 306 A A No Deposit Transient
## 307 E E No Deposit Transient
## 308 G G No Deposit Transient
## 309 A A No Deposit Transient
## 310 A A No Deposit Transient
## 311 A A No Deposit Transient
## 312 A A No Deposit Transient
## 313 D D No Deposit Transient
## 314 A A No Deposit Transient-Party
## 315 D D No Deposit Transient
## 316 C C No Deposit Transient
## 317 A A No Deposit Contract
## 318 A A No Deposit Transient-Party
## 319 E E No Deposit Contract
## 320 D D No Deposit Transient
## 321 A A No Deposit Transient
## 322 D D No Deposit Transient
## 323 E E No Deposit Transient
## 324 E E No Deposit Transient
## 325 A A No Deposit Transient
## 326 A A No Deposit Transient
## 327 D D No Deposit Transient
## 328 A A No Deposit Contract
## 329 D D No Deposit Contract
## 330 A A No Deposit Transient
## 331 A A No Deposit Transient
## 332 G G No Deposit Transient
## 333 A A No Deposit Transient
## 334 F E No Deposit Transient
## 335 A B No Deposit Transient
## 336 A A No Deposit Transient
## 337 D D No Deposit Contract
## 338 A A No Deposit Transient
## 339 A A No Deposit Transient
## 340 A D No Deposit Transient
## 341 E E No Deposit Transient
## 342 G G No Deposit Transient
## 343 D D No Deposit Contract
## 344 F F No Deposit Transient
## 345 H H No Deposit Transient
## 346 D D No Deposit Transient
## 347 G G No Deposit Transient
## 348 A A No Deposit Transient-Party
## 349 A A No Deposit Transient
## 350 A A No Deposit Transient
## 351 A A No Deposit Transient-Party
## 352 A C No Deposit Transient
## 353 A C No Deposit Transient
## 354 A A No Deposit Transient-Party
## 355 L H No Deposit Transient
## 356 A A No Deposit Transient
## 357 A A No Deposit Transient
## 358 E E No Deposit Transient
## 359 D E No Deposit Transient
## 360 A A No Deposit Transient
## 361 A A No Deposit Transient
## 362 A A No Deposit Transient
## 363 E F No Deposit Transient
## 364 A A No Deposit Transient
## 365 D D No Deposit Transient
## 366 A A No Deposit Transient
## 367 D D No Deposit Transient
## 368 D D No Deposit Contract
## 369 D E No Deposit Transient
## 370 D D No Deposit Transient
## 371 A A No Deposit Transient
## 372 D D No Deposit Transient
## 373 D D No Deposit Transient
## 374 E E No Deposit Transient
## 375 A A No Deposit Transient
## 376 A A No Deposit Transient
## 377 D C No Deposit Transient
## 378 A A No Deposit Transient
## 379 A A No Deposit Transient-Party
## 380 D D No Deposit Transient
## 381 E E No Deposit Transient
## 382 A A No Deposit Transient
## 383 A A No Deposit Transient
## 384 A A No Deposit Transient
## 385 A A No Deposit Contract
## 386 D D No Deposit Transient
## 387 D D No Deposit Transient
## 388 A A No Deposit Transient
## 389 A A No Deposit Transient
## 390 D D No Deposit Transient
## 391 E E No Deposit Transient
## 392 A C No Deposit Transient
## 393 E F No Deposit Transient
## 394 A A No Deposit Transient
## 395 A A No Deposit Transient-Party
## 396 E E No Deposit Transient-Party
## 397 H G No Deposit Transient
## 398 A A No Deposit Transient
## 399 A A No Deposit Transient
## 400 A A No Deposit Transient
## 401 A A No Deposit Transient
## 402 A A No Deposit Transient
## 403 A A No Deposit Transient
## 404 A B No Deposit Transient
## 405 D D No Deposit Transient
## 406 D D No Deposit Transient
## 407 H H No Deposit Transient
## 408 A C No Deposit Transient
## 409 A A No Deposit Transient
## 410 D D No Deposit Transient
## 411 D D No Deposit Transient
## 412 D D No Deposit Transient
## 413 H H No Deposit Transient
## 414 A C No Deposit Transient-Party
## 415 A A No Deposit Transient-Party
## 416 A A No Deposit Transient-Party
## 417 A C No Deposit Transient-Party
## 418 A D No Deposit Transient
## 419 G G No Deposit Transient
## 420 A A No Deposit Transient
## 421 A F No Deposit Transient-Party
## 422 A A No Deposit Transient-Party
## 423 A C No Deposit Transient-Party
## 424 A C No Deposit Transient-Party
## 425 A E No Deposit Transient-Party
## 426 A D No Deposit Transient
## 427 A D No Deposit Transient
## 428 A C No Deposit Transient-Party
## 429 A A No Deposit Transient-Party
## 430 A A No Deposit Transient-Party
## 431 A A No Deposit Transient
## 432 A A No Deposit Transient
## 433 A A No Deposit Transient-Party
## 434 A C No Deposit Transient-Party
## 435 G G No Deposit Transient
## 436 A D No Deposit Transient
## 437 F F No Deposit Transient
## 438 A A No Deposit Transient
## 439 F F No Deposit Transient
## 440 C C No Deposit Transient
## 441 H G No Deposit Transient
## 442 A A No Deposit Transient
## 443 A D No Deposit Transient
## 444 A A No Deposit Transient
## 445 D D No Deposit Transient
## 446 A A No Deposit Transient
## 447 A A No Deposit Transient
## 448 A A No Deposit Transient
## 449 A D No Deposit Transient
## 450 D D No Deposit Transient-Party
## 451 E E No Deposit Transient
## 452 D D No Deposit Transient-Party
## 453 A F No Deposit Transient
## 454 D D No Deposit Transient
## 455 A A No Deposit Transient
## 456 D D No Deposit Transient
## 457 A A No Deposit Contract
## 458 A A No Deposit Transient
## 459 E E No Deposit Transient
## 460 A A No Deposit Transient
## 461 A F No Deposit Transient
## 462 E F No Deposit Transient
## 463 D E No Deposit Transient
## 464 A A No Deposit Transient
## 465 A A No Deposit Transient
## 466 A A No Deposit Transient
## 467 A D No Deposit Transient
## 468 A C No Deposit Transient
## 469 D D No Deposit Transient
## 470 D E No Deposit Transient
## 471 D F No Deposit Transient
## 472 A E No Deposit Transient
## 473 A A No Deposit Transient
## 474 A A No Deposit Transient
## 475 A A No Deposit Transient-Party
## 476 A A No Deposit Transient-Party
## 477 A D No Deposit Transient
## 478 A A No Deposit Transient-Party
## 479 A A No Deposit Transient-Party
## 480 A A No Deposit Transient-Party
## 481 A A No Deposit Transient-Party
## 482 A A No Deposit Transient-Party
## 483 G G No Deposit Transient
## 484 E E No Deposit Transient
## 485 G G No Deposit Transient
## 486 A D No Deposit Transient
## 487 G G No Deposit Transient
## 488 A A No Deposit Transient
## 489 E E No Deposit Transient
## 490 A A No Deposit Transient
## 491 A A No Deposit Transient
## 492 A A No Deposit Transient
## 493 D D No Deposit Transient
## 494 H H No Deposit Transient
## 495 F F No Deposit Transient
## 496 A A No Deposit Transient
## 497 A A No Deposit Transient
## 498 E E No Deposit Transient
## 499 D D No Deposit Contract
## 500 D D No Deposit Transient
## 501 A A No Deposit Transient
## 502 D D No Deposit Transient
## 503 A D No Deposit Transient
## 504 A D No Deposit Transient
## 505 L C No Deposit Transient
## 506 A A No Deposit Transient
## 507 A C No Deposit Transient
## 508 A A No Deposit Transient
## 509 D F No Deposit Transient
## 510 E E No Deposit Transient
## 511 A A No Deposit Transient
## 512 C C No Deposit Transient
## 513 D D No Deposit Transient
## 514 E E No Deposit Transient
## 515 E E No Deposit Transient
## 516 A A No Deposit Transient
## 517 A A No Deposit Transient
## 518 E E No Deposit Transient
## 519 H H No Deposit Transient
## 520 E E No Deposit Contract
## 521 A A No Deposit Transient
## 522 C C No Deposit Transient
## 523 D D No Deposit Transient
## 524 C C No Deposit Transient
## 525 G G No Deposit Transient
## 526 D E No Deposit Transient
## 527 D D No Deposit Transient
## 528 E E No Deposit Transient
## 529 A A No Deposit Transient
## 530 A D No Deposit Transient
## 531 D D No Deposit Transient
## 532 D D No Deposit Transient
## 533 D D No Deposit Transient
## 534 A D No Deposit Transient
## 535 A A No Deposit Transient
## 536 D D No Deposit Transient
## 537 A A No Deposit Transient
## 538 A A No Deposit Transient
## 539 A A No Deposit Transient
## 540 A A No Deposit Group
## 541 D D No Deposit Transient
## 542 A A No Deposit Group
## 543 A A No Deposit Transient
## 544 E E No Deposit Transient
## 545 E E No Deposit Transient
## 546 A A No Deposit Transient
## 547 D D No Deposit Transient
## 548 A A No Deposit Transient
## 549 D D No Deposit Transient
## 550 E E No Deposit Transient
## 551 C C No Deposit Transient
## 552 A A No Deposit Transient
## 553 D D No Deposit Contract
## 554 E E No Deposit Transient
## 555 A A No Deposit Transient
## 556 D D No Deposit Transient
## 557 D D No Deposit Transient
## 558 A A No Deposit Transient
## 559 G G No Deposit Transient
## 560 A A No Deposit Transient
## 561 D D No Deposit Contract
## 562 D D No Deposit Transient
## 563 G G No Deposit Transient
## 564 C C No Deposit Contract
## 565 D D No Deposit Transient
## 566 E E No Deposit Transient
## 567 A C No Deposit Transient
## 568 G G No Deposit Transient
## 569 A I No Deposit Transient
## 570 A I No Deposit Transient
## 571 A C No Deposit Transient
## 572 A D No Deposit Transient
## 573 A C No Deposit Transient
## 574 A A No Deposit Transient
## 575 D D No Deposit Transient
## 576 E E No Deposit Transient
## 577 D D No Deposit Transient
## 578 G G No Deposit Transient
## 579 A A No Deposit Transient
## 580 D D No Deposit Transient
## 581 G G No Deposit Transient
## 582 A D No Deposit Transient
## 583 D D No Deposit Transient
## 584 E E No Deposit Transient
## 585 F F No Deposit Transient
## 586 C C No Deposit Transient
## 587 A A No Deposit Transient
## 588 A A No Deposit Transient
## 589 D D No Deposit Transient
## 590 A A No Deposit Transient
## 591 G G No Deposit Transient
## 592 F F No Deposit Transient
## 593 A A No Deposit Transient
## 594 D D No Deposit Transient
## 595 D D No Deposit Transient
## 596 D D No Deposit Transient
## 597 D D No Deposit Transient
## 598 A A No Deposit Transient
## 599 A A No Deposit Transient
## 600 E E No Deposit Transient
## 601 A F No Deposit Transient
## 602 A A No Deposit Transient
## 603 G G No Deposit Transient
## 604 A D No Deposit Transient
## 605 G G No Deposit Transient
## 606 A D No Deposit Transient
## 607 E E No Deposit Transient
## 608 A D No Deposit Transient
## 609 A A No Deposit Transient
## 610 E E No Deposit Transient
## 611 A A No Deposit Transient
## 612 E E No Deposit Transient
## 613 A A No Deposit Transient
## 614 D D No Deposit Transient
## 615 D D No Deposit Transient
## 616 G G No Deposit Transient
## 617 D D No Deposit Transient
## 618 D D No Deposit Transient
## 619 C I No Deposit Transient
## 620 D I No Deposit Transient
## 621 D E No Deposit Transient
## 622 C C No Deposit Transient
## 623 A A No Deposit Transient
## 624 E E No Deposit Transient-Party
## 625 A A No Deposit Transient
## 626 D D No Deposit Transient
## 627 D E No Deposit Transient
## 628 H H No Deposit Transient
## 629 E E No Deposit Transient
## 630 D F No Deposit Transient
## 631 E E No Deposit Transient
## 632 D D No Deposit Transient
## 633 D D No Deposit Transient
## 634 E E No Deposit Transient-Party
## 635 D F No Deposit Transient-Party
## 636 A A No Deposit Transient
## 637 A A No Deposit Transient-Party
## 638 D D No Deposit Transient-Party
## 639 A A No Deposit Transient-Party
## 640 A D No Deposit Transient
## 641 A A No Deposit Transient-Party
## 642 G G No Deposit Transient
## 643 D G No Deposit Transient
## 644 D F No Deposit Transient-Party
## 645 D D No Deposit Transient
## 646 E E No Deposit Transient
## 647 H H No Deposit Transient
## 648 D D No Deposit Transient
## 649 A A No Deposit Transient
## 650 A A No Deposit Transient
## 651 D D No Deposit Transient
## 652 A D No Deposit Transient
## 653 A A No Deposit Transient
## 654 A A No Deposit Transient
## 655 A A No Deposit Transient-Party
## 656 A A No Deposit Transient-Party
## 657 A A No Deposit Transient
## 658 A A No Deposit Transient
## 659 A A No Deposit Transient
## 660 H H No Deposit Transient
## 661 D D No Deposit Transient
## 662 A A No Deposit Transient
## 663 E E No Deposit Transient
## 664 A A No Deposit Transient
## 665 A A No Deposit Contract
## 666 D D No Deposit Transient
## 667 A E No Deposit Transient
## 668 A F No Deposit Transient
## 669 A F No Deposit Transient
## 670 A F No Deposit Transient
## 671 A A No Deposit Transient
## 672 D E No Deposit Transient
## 673 A A No Deposit Transient
## 674 A A No Deposit Transient
## 675 A A No Deposit Transient
## 676 A E No Deposit Transient
## 677 A A No Deposit Transient
## 678 A D No Deposit Transient
## 679 A A No Deposit Transient
## 680 D D No Deposit Transient
## 681 A A No Deposit Transient
## 682 A A No Deposit Transient
## 683 C C No Deposit Transient
## 684 G G No Deposit Transient
## 685 A A No Deposit Transient
## 686 A A No Deposit Transient
## 687 A A No Deposit Transient
## 688 E E No Deposit Transient
## 689 A A No Deposit Transient
## 690 A A No Deposit Transient
## 691 A A No Deposit Transient
## 692 A A No Deposit Transient
## 693 D D No Deposit Transient
## 694 A A No Deposit Transient
## 695 A A No Deposit Transient
## 696 E E No Deposit Transient
## 697 A A No Deposit Transient
## 698 A A No Deposit Transient
## 699 A A No Deposit Transient
## 700 D D No Deposit Transient
## 701 A A No Deposit Transient
## 702 D D No Deposit Contract
## 703 A A No Deposit Contract
## 704 A D No Deposit Transient
## 705 A A No Deposit Transient
## 706 G G No Deposit Transient
## 707 E E No Deposit Transient
## 708 D D No Deposit Transient
## 709 A A No Deposit Transient
## 710 A D No Deposit Transient
## 711 A D No Deposit Transient-Party
## 712 A A No Deposit Transient
## 713 E E No Deposit Transient
## 714 E E No Deposit Transient
## 715 A A No Deposit Transient
## 716 E E No Deposit Transient
## 717 C C No Deposit Transient
## 718 A A No Deposit Transient
## 719 E E No Deposit Transient
## 720 A A No Deposit Transient
## 721 A A No Deposit Transient
## 722 A A No Deposit Transient
## 723 A I No Deposit Transient
## 724 H H No Deposit Transient
## 725 E E No Deposit Transient
## 726 G G No Deposit Transient
## 727 A A No Deposit Transient
## 728 D D No Deposit Transient
## 729 E F No Deposit Transient
## 730 A E No Deposit Transient
## 731 A G No Deposit Transient
## 732 A E No Deposit Transient
## 733 A A No Deposit Transient
## 734 F F No Deposit Transient
## 735 A D No Deposit Transient
## 736 A C No Deposit Transient
## 737 A D No Deposit Transient
## 738 A A No Deposit Transient
## 739 D F No Deposit Transient
## 740 A C No Deposit Transient
## 741 A A No Deposit Transient
## 742 F F No Deposit Transient
## 743 A A No Deposit Transient
## 744 A C No Deposit Transient
## 745 E E No Deposit Transient
## 746 D D No Deposit Transient
## 747 D D No Deposit Transient
## 748 G G No Deposit Transient
## 749 A A No Deposit Transient
## 750 A A No Deposit Transient
## 751 A A No Deposit Transient
## 752 A A No Deposit Transient
## 753 A A No Deposit Transient
## 754 A A No Deposit Transient
## 755 E E No Deposit Transient
## 756 G G No Deposit Transient
## 757 A A No Deposit Transient
## 758 E E No Deposit Transient
## 759 A A No Deposit Transient
## 760 D D No Deposit Transient
## 761 D E No Deposit Transient
## 762 D E No Deposit Transient
## 763 D E No Deposit Transient
## 764 G G No Deposit Transient
## 765 D D No Deposit Transient
## 766 A A No Deposit Transient
## 767 A A No Deposit Transient
## 768 F F No Deposit Transient
## 769 D D No Deposit Transient
## 770 D D No Deposit Transient
## 771 D D No Deposit Transient
## 772 A A No Deposit Transient
## 773 D D No Deposit Contract
## 774 A D No Deposit Transient
## 775 D I No Deposit Contract
## 776 A A No Deposit Transient
## 777 A E No Deposit Transient
## 778 D D No Deposit Transient
## 779 A C No Deposit Transient
## 780 A D No Deposit Transient
## 781 H H No Deposit Transient
## 782 A D No Deposit Transient
## 783 H H No Deposit Transient
## 784 A D No Deposit Transient
## 785 A D No Deposit Transient
## 786 A A No Deposit Transient
## 787 A A No Deposit Transient
## 788 D D No Deposit Transient
## 789 A D No Deposit Transient
## 790 F F No Deposit Transient
## 791 D D No Deposit Transient
## 792 A D No Deposit Transient
## 793 A D No Deposit Transient
## 794 A A No Deposit Transient
## 795 D D No Deposit Transient
## 796 A F No Deposit Transient
## 797 A A No Deposit Transient
## 798 A H No Deposit Transient
## 799 A E No Deposit Transient
## 800 G G No Deposit Transient
## 801 A A No Deposit Transient
## 802 D D No Deposit Transient
## 803 A A No Deposit Transient
## 804 C C No Deposit Transient
## 805 A C No Deposit Transient
## 806 A A No Deposit Transient
## 807 D D No Deposit Transient
## 808 E E No Deposit Transient
## 809 A A No Deposit Transient
## 810 A A No Deposit Transient
## 811 E E No Deposit Transient
## 812 D D No Deposit Transient-Party
## 813 D D No Deposit Transient-Party
## 814 D D No Deposit Transient
## 815 A I No Deposit Contract
## 816 E I No Deposit Transient
## 817 F F No Deposit Transient
## 818 A A No Deposit Transient
## 819 D D No Deposit Transient
## 820 D D No Deposit Transient
## 821 A A No Deposit Transient-Party
## 822 A D No Deposit Transient
## 823 D D No Deposit Transient-Party
## 824 A A No Deposit Transient
## 825 A A No Deposit Transient
## 826 D D No Deposit Transient-Party
## 827 A A No Deposit Transient
## 828 E E No Deposit Transient
## 829 H H No Deposit Transient
## 830 A C No Deposit Transient
## 831 A A No Deposit Transient
## 832 A A No Deposit Transient
## 833 A A No Deposit Transient
## 834 A A No Deposit Transient
## 835 D D No Deposit Transient
## 836 A A No Deposit Transient
## 837 A A No Deposit Transient
## 838 G G No Deposit Transient
## 839 A A No Deposit Transient
## 840 D D No Deposit Transient
## 841 E E No Deposit Transient
## 842 E E No Deposit Contract
## 843 A A No Deposit Transient
## 844 A A No Deposit Transient-Party
## 845 A A No Deposit Transient-Party
## 846 D D No Deposit Transient
## 847 F F No Deposit Transient-Party
## 848 A A No Deposit Transient
## 849 F F No Deposit Transient-Party
## 850 G G No Deposit Transient-Party
## 851 G G No Deposit Transient
## 852 D D No Deposit Transient
## 853 D D No Deposit Transient
## 854 C C No Deposit Transient
## 855 A A No Deposit Transient
## 856 A A No Deposit Transient
## 857 C C No Deposit Transient
## 858 G G No Deposit Transient
## 859 A A No Deposit Transient
## 860 D D No Deposit Transient
## 861 A A No Deposit Transient
## 862 A A No Deposit Transient
## 863 E E No Deposit Transient
## 864 A A No Deposit Transient
## 865 D D No Deposit Transient
## 866 E E No Deposit Transient
## 867 C C No Deposit Transient
## 868 D D No Deposit Transient
## 869 C C No Deposit Transient
## 870 A A No Deposit Transient
## 871 A A No Deposit Transient
## 872 A C No Deposit Transient
## 873 E E No Deposit Transient
## 874 E E No Deposit Transient
## 875 E E No Deposit Transient
## 876 A A No Deposit Transient
## 877 D D No Deposit Transient
## 878 A A No Deposit Transient
## 879 C C No Deposit Transient
## 880 D D No Deposit Transient
## 881 A A No Deposit Transient
## 882 D D No Deposit Contract
## 883 C F No Deposit Transient
## 884 C C No Deposit Transient
## 885 D D No Deposit Transient
## 886 D D No Deposit Contract
## 887 D D No Deposit Transient
## 888 C C No Deposit Contract
## 889 D D No Deposit Transient
## 890 A A No Deposit Transient
## 891 E E No Deposit Contract
## 892 A A No Deposit Transient
## 893 A A No Deposit Transient
## 894 A F No Deposit Transient
## 895 D F No Deposit Transient
## 896 A C No Deposit Transient
## 897 F F No Deposit Transient
## 898 A A No Deposit Transient
## 899 C C No Deposit Transient-Party
## 900 C C No Deposit Transient-Party
## 901 D D No Deposit Transient
## 902 D D No Deposit Transient
## 903 D D No Deposit Transient
## 904 A D No Deposit Transient-Party
## 905 A A No Deposit Transient
## 906 A D No Deposit Transient-Party
## 907 D D No Deposit Transient
## 908 D I No Deposit Transient
## 909 D I No Deposit Transient
## 910 D F No Deposit Transient
## 911 A D No Deposit Transient
## 912 L F No Deposit Transient
## 913 A A No Deposit Transient
## 914 D D No Deposit Transient
## 915 A A No Deposit Transient
## 916 A A No Deposit Transient
## 917 E E No Deposit Transient
## 918 D D No Deposit Transient
## 919 A A No Deposit Transient
## 920 A A No Deposit Transient
## 921 A A No Deposit Transient
## 922 A A No Deposit Transient
## 923 A A No Deposit Transient
## 924 A A No Deposit Transient
## 925 E F No Deposit Transient-Party
## 926 G C No Deposit Transient
## 927 E E No Deposit Transient
## 928 D D No Deposit Transient
## 929 A A No Deposit Transient
## 930 D D No Deposit Transient
## 931 A A No Deposit Transient
## 932 D D No Deposit Transient
## 933 D D No Deposit Transient
## 934 G G No Deposit Transient
## 935 E I No Deposit Transient
## 936 A F No Deposit Transient
## 937 H H No Deposit Transient
## 938 D D No Deposit Transient
## 939 D D No Deposit Transient
## 940 D F No Deposit Transient
## 941 A H No Deposit Transient
## 942 D D No Deposit Transient
## 943 E F No Deposit Transient
## 944 G G No Deposit Transient
## 945 A D No Deposit Transient
## 946 A A No Deposit Transient
## 947 D D No Deposit Transient
## 948 A A No Deposit Transient-Party
## 949 E E No Deposit Transient
## 950 A A No Deposit Transient
## 951 C C No Deposit Transient
## 952 C C No Deposit Transient
## 953 A A No Deposit Transient-Party
## 954 A A No Deposit Transient-Party
## 955 D D No Deposit Transient
## 956 A A No Deposit Transient
## 957 A A No Deposit Transient
## 958 E E No Deposit Transient
## 959 A A No Deposit Transient
## 960 G H No Deposit Transient
## 961 E F No Deposit Transient
## 962 C C No Deposit Transient
## 963 A A No Deposit Transient
## 964 D D No Deposit Transient
## 965 A D No Deposit Transient
## 966 G G No Deposit Transient
## 967 A A No Deposit Transient
## 968 D D No Deposit Transient
## 969 D D No Deposit Transient
## 970 D D No Deposit Transient
## 971 A A No Deposit Transient
## 972 G G No Deposit Transient
## 973 C C No Deposit Transient
## 974 C C No Deposit Transient
## 975 F F No Deposit Transient
## 976 A A No Deposit Transient
## 977 D D No Deposit Transient
## 978 A A No Deposit Transient
## 979 A A No Deposit Transient
## 980 A A No Deposit Contract
## 981 A A No Deposit Transient
## 982 A A No Deposit Transient
## 983 E E No Deposit Transient
## 984 D D No Deposit Transient
## 985 G G No Deposit Transient
## 986 A E No Deposit Transient
## 987 D D No Deposit Transient
## 988 D D No Deposit Transient
## 989 E E No Deposit Transient
## 990 E F No Deposit Transient
## 991 D D No Deposit Transient
## 992 D D No Deposit Transient
## 993 A A No Deposit Transient
## 994 A A No Deposit Transient
## 995 D D No Deposit Transient
## 996 A A No Deposit Transient
## 997 E E No Deposit Transient
## 998 A A No Deposit Transient
## 999 C C No Deposit Transient
## 1000 A A No Deposit Transient
## 1001 A A No Deposit Transient
## 1002 G G No Deposit Transient
## 1003 A A No Deposit Transient
## 1004 D D No Deposit Transient
## 1005 A A No Deposit Transient
## 1006 A A No Deposit Transient-Party
## 1007 A A No Deposit Transient-Party
## 1008 D F No Deposit Transient
## 1009 E E No Deposit Transient
## 1010 D D No Deposit Transient
## 1011 E F No Deposit Transient
## 1012 A A No Deposit Transient
## 1013 A C No Deposit Transient
## 1014 E E No Deposit Transient
## 1015 D D No Deposit Transient
## 1016 D D No Deposit Transient
## 1017 A A No Deposit Transient
## 1018 A A No Deposit Transient
## 1019 G G No Deposit Transient
## 1020 F F No Deposit Transient
## 1021 D D No Deposit Transient
## 1022 A A No Deposit Transient
## 1023 G G No Deposit Transient
## 1024 H H No Deposit Transient
## 1025 E E No Deposit Transient
## 1026 A A No Deposit Transient
## 1027 F F No Deposit Transient
## 1028 F F No Deposit Transient
## 1029 D D No Deposit Transient
## 1030 E E No Deposit Transient
## 1031 A D No Deposit Transient
## 1032 A A No Deposit Transient
## 1033 D D No Deposit Transient
## 1034 A A No Deposit Transient
## 1035 A A No Deposit Transient
## 1036 A A No Deposit Transient
## 1037 A A No Deposit Transient
## 1038 E E No Deposit Transient
## 1039 A A No Deposit Transient
## 1040 D D No Deposit Transient
## 1041 C C No Deposit Transient
## 1042 G G No Deposit Transient
## 1043 D D No Deposit Transient-Party
## 1044 D D No Deposit Transient
## 1045 A A No Deposit Transient
## 1046 D D No Deposit Transient-Party
## 1047 D D No Deposit Transient
## 1048 D D No Deposit Transient
## 1049 A A No Deposit Transient
## 1050 A A No Deposit Transient
## 1051 A A No Deposit Transient
## 1052 A A No Deposit Transient
## 1053 D D No Deposit Transient
## 1054 E E No Deposit Transient
## 1055 D D No Deposit Transient
## 1056 E E No Deposit Transient
## 1057 C C No Deposit Transient
## 1058 A A No Deposit Transient
## 1059 A A No Deposit Transient
## 1060 A A No Deposit Transient-Party
## 1061 E E No Deposit Transient
## 1062 G G No Deposit Transient-Party
## 1063 A A No Deposit Transient
## 1064 G G No Deposit Transient
## 1065 D D No Deposit Transient
## 1066 D D No Deposit Transient
## 1067 D D No Deposit Transient
## 1068 E E No Deposit Transient
## 1069 A D No Deposit Transient-Party
## 1070 A D No Deposit Transient-Party
## 1071 A D No Deposit Transient-Party
## 1072 A A No Deposit Transient
## 1073 A A No Deposit Transient
## 1074 A B No Deposit Transient
## 1075 E F No Deposit Transient
## 1076 A F No Deposit Transient
## 1077 E E No Deposit Transient
## 1078 A A No Deposit Transient
## 1079 A A No Deposit Transient
## 1080 D E No Deposit Contract
## 1081 A A No Deposit Transient
## 1082 C C No Deposit Transient
## 1083 A A No Deposit Transient
## 1084 E E No Deposit Transient
## 1085 A A No Deposit Transient
## 1086 E E No Deposit Transient
## 1087 A A No Deposit Transient
## 1088 D E No Deposit Transient
## 1089 D D No Deposit Transient
## 1090 D E No Deposit Transient-Party
## 1091 D D No Deposit Transient
## 1092 A A No Deposit Transient
## 1093 A B No Deposit Contract
## 1094 D D No Deposit Transient
## 1095 G G No Deposit Transient
## 1096 A D No Deposit Transient
## 1097 D F No Deposit Transient-Party
## 1098 A E No Deposit Transient
## 1099 D F No Deposit Transient-Party
## 1100 A D No Deposit Transient
## 1101 E E No Deposit Transient
## 1102 G G No Deposit Transient
## 1103 E E No Deposit Transient
## 1104 A D No Deposit Transient
## 1105 A B No Deposit Transient
## 1106 A A No Deposit Transient
## 1107 D D No Deposit Transient
## 1108 A A No Deposit Transient
## 1109 F F No Deposit Transient
## 1110 D D No Deposit Transient
## 1111 D D No Deposit Transient
## 1112 D D No Deposit Transient-Party
## 1113 C C No Deposit Transient
## 1114 E E No Deposit Transient
## 1115 A A No Deposit Transient
## 1116 A A No Deposit Transient
## 1117 C C No Deposit Transient
## 1118 D F No Deposit Transient
## 1119 D D No Deposit Transient
## 1120 D E No Deposit Transient
## 1121 G G No Deposit Transient
## 1122 D D No Deposit Transient
## 1123 A A No Deposit Transient
## 1124 E E No Deposit Transient
## 1125 A A No Deposit Transient
## 1126 A A No Deposit Transient
## 1127 A A No Deposit Transient
## 1128 A A No Deposit Transient-Party
## 1129 A A No Deposit Transient
## 1130 D D No Deposit Transient-Party
## 1131 A A No Deposit Transient
## 1132 A A No Deposit Transient
## 1133 D D No Deposit Transient-Party
## 1134 A A No Deposit Transient
## 1135 A A No Deposit Transient
## 1136 D D No Deposit Transient
## 1137 A A No Deposit Transient
## 1138 A A No Deposit Transient
## 1139 A A No Deposit Transient
## 1140 A A No Deposit Transient
## 1141 A A No Deposit Transient
## 1142 D D No Deposit Transient
## 1143 E E No Deposit Transient
## 1144 C C No Deposit Transient
## 1145 A A No Deposit Transient
## 1146 D D No Deposit Transient
## 1147 C C No Deposit Transient
## 1148 D D No Deposit Transient
## 1149 A A No Deposit Transient
## 1150 E E No Deposit Transient
## 1151 A A No Deposit Transient-Party
## 1152 A A No Deposit Transient
## 1153 E E No Deposit Transient
## 1154 A A No Deposit Transient-Party
## 1155 A A No Deposit Transient-Party
## 1156 E E No Deposit Transient
## 1157 A G No Deposit Group
## 1158 A A No Deposit Transient-Party
## 1159 A A No Deposit Transient-Party
## 1160 A E No Deposit Transient
## 1161 E E No Deposit Transient
## 1162 E E No Deposit Transient
## 1163 E E No Deposit Transient
## 1164 A A No Deposit Transient
## 1165 D D No Deposit Transient
## 1166 E E No Deposit Transient
## 1167 A A No Deposit Transient
## 1168 A A No Deposit Transient
## 1169 D D No Deposit Transient
## 1170 D D No Deposit Transient
## 1171 D D No Deposit Transient
## 1172 D D No Deposit Transient
## 1173 D D No Deposit Transient
## 1174 G G No Deposit Transient
## 1175 A A No Deposit Transient
## 1176 C C No Deposit Transient
## 1177 A A No Deposit Transient
## 1178 A A No Deposit Transient
## 1179 E E No Deposit Transient-Party
## 1180 A A No Deposit Transient
## 1181 A A No Deposit Transient
## 1182 A A No Deposit Transient
## 1183 A A No Deposit Transient-Party
## 1184 E E No Deposit Transient
## 1185 A A No Deposit Transient
## 1186 A A No Deposit Transient
## 1187 A A No Deposit Transient
## 1188 A A No Deposit Transient
## 1189 A A No Deposit Transient
## 1190 A A No Deposit Transient
## 1191 A A No Deposit Transient
## 1192 A A No Deposit Transient-Party
## 1193 A A No Deposit Transient
## 1194 A A No Deposit Transient-Party
## 1195 A A No Deposit Transient
## 1196 A A No Deposit Transient
## 1197 A A No Deposit Transient
## 1198 E E No Deposit Transient
## 1199 E E No Deposit Transient
## 1200 A A No Deposit Transient
## 1201 A A No Deposit Transient
## 1202 E E No Deposit Transient
## 1203 E E No Deposit Transient
## 1204 E E No Deposit Transient
## 1205 C C No Deposit Transient
## 1206 D D No Deposit Transient
## 1207 C C No Deposit Transient
## 1208 A A No Deposit Transient-Party
## 1209 A A No Deposit Transient-Party
## 1210 A A No Deposit Transient
## 1211 D D No Deposit Transient
## 1212 C C No Deposit Transient
## 1213 A A No Deposit Transient
## 1214 A A No Deposit Transient
## 1215 D D No Deposit Transient
## 1216 D A No Deposit Transient
## 1217 A E No Deposit Transient
## 1218 A C No Deposit Transient
## 1219 D D No Deposit Transient
## 1220 D D No Deposit Transient
## 1221 A A No Deposit Transient
## 1222 A D No Deposit Transient
## 1223 D D No Deposit Transient
## 1224 D D No Deposit Transient
## 1225 D D No Deposit Transient
## 1226 A A No Deposit Transient
## 1227 D D No Deposit Transient
## 1228 D D No Deposit Transient
## 1229 E E No Deposit Transient
## 1230 D D No Deposit Transient
## 1231 A D No Deposit Transient
## 1232 E E No Deposit Transient
## 1233 A D No Deposit Transient
## 1234 G G No Deposit Transient
## 1235 A B No Deposit Transient
## 1236 C C No Deposit Transient
## 1237 A A No Deposit Transient
## 1238 H H No Deposit Transient
## 1239 A A No Deposit Transient
## 1240 E E No Deposit Transient
## 1241 D D No Deposit Transient
## 1242 A A No Deposit Transient
## 1243 A A No Deposit Transient
## 1244 A A No Deposit Transient
## 1245 A A No Deposit Transient
## 1246 D D No Deposit Transient
## 1247 A A No Deposit Transient
## 1248 A A No Deposit Transient
## 1249 A A No Deposit Transient
## 1250 D D No Deposit Transient
## 1251 A A No Deposit Transient
## 1252 A A No Deposit Transient
## 1253 D D No Deposit Transient
## 1254 A A No Deposit Transient
## 1255 A A No Deposit Transient
## 1256 A A No Deposit Transient
## 1257 A A No Deposit Transient
## 1258 D D No Deposit Transient
## 1259 D D No Deposit Transient
## 1260 A A No Deposit Transient
## 1261 D D No Deposit Transient
## 1262 D D No Deposit Transient
## 1263 A A No Deposit Transient
## 1264 A A No Deposit Transient
## 1265 D D No Deposit Transient
## 1266 F F No Deposit Transient
## 1267 A C No Deposit Transient
## 1268 A C No Deposit Transient
## 1269 E E No Deposit Transient
## 1270 A A No Deposit Transient
## 1271 A A No Deposit Transient
## 1272 D D No Deposit Transient
## 1273 D D No Deposit Transient
## 1274 A A No Deposit Transient
## 1275 D D No Deposit Transient
## 1276 A A No Deposit Contract
## 1277 A C No Deposit Transient
## 1278 A A No Deposit Transient
## 1279 D D No Deposit Transient
## 1280 D E No Deposit Transient
## 1281 H H No Deposit Transient-Party
## 1282 A A No Deposit Transient
## 1283 A A No Deposit Transient
## 1284 A A No Deposit Transient
## 1285 D D No Deposit Transient
## 1286 D D No Deposit Transient
## 1287 D D No Deposit Transient
## 1288 D D No Deposit Transient
## 1289 A A No Deposit Transient-Party
## 1290 A A No Deposit Transient
## 1291 A A No Deposit Transient-Party
## 1292 A A No Deposit Transient
## 1293 A A No Deposit Transient
## 1294 D D No Deposit Transient
## 1295 C C No Deposit Transient
## 1296 A A No Deposit Transient
## 1297 E E No Deposit Transient
## 1298 D D No Deposit Transient
## 1299 H H No Deposit Transient
## 1300 A A No Deposit Transient
## 1301 A A No Deposit Transient
## 1302 A A No Deposit Transient
## 1303 H H No Deposit Transient
## 1304 C C No Deposit Transient
## 1305 A A No Deposit Transient
## 1306 E E No Deposit Transient
## 1307 A A No Deposit Transient
## 1308 D D No Deposit Contract
## 1309 A A No Deposit Transient
## 1310 A A No Deposit Transient
## 1311 A A No Deposit Transient
## 1312 E E No Deposit Transient
## 1313 A A No Deposit Transient
## 1314 D D No Deposit Transient
## 1315 A A No Deposit Transient
## 1316 A A No Deposit Transient
## 1317 A A No Deposit Transient
## 1318 C C No Deposit Transient
## 1319 A A No Deposit Transient
## 1320 A F No Deposit Transient
## 1321 A H No Deposit Transient
## 1322 A F No Deposit Transient
## 1323 D D No Deposit Transient
## 1324 A A No Deposit Transient
## 1325 A A No Deposit Transient
## 1326 D E No Deposit Transient
## 1327 A A No Deposit Transient
## 1328 A A No Deposit Transient
## 1329 A A No Deposit Transient
## 1330 E E No Deposit Transient
## 1331 E E No Deposit Transient
## 1332 C C No Deposit Transient
## 1333 D D No Deposit Transient
## 1334 A A No Deposit Transient
## 1335 D D No Deposit Transient
## 1336 D D No Deposit Transient
## 1337 F F No Deposit Transient
## 1338 F F No Deposit Transient
## 1339 E E No Deposit Transient
## 1340 C C No Deposit Transient
## 1341 E E No Deposit Transient
## 1342 E G No Deposit Transient
## 1343 D D No Deposit Transient
## 1344 E E No Deposit Transient
## 1345 A A No Deposit Transient
## 1346 A A No Deposit Transient
## 1347 E E No Deposit Transient
## 1348 E E No Deposit Transient
## 1349 D D No Deposit Transient
## 1350 F F No Deposit Transient
## 1351 D D No Deposit Transient
## 1352 G G No Deposit Transient
## 1353 A A No Deposit Transient
## 1354 A A No Deposit Transient
## 1355 A C No Deposit Transient
## 1356 G G No Deposit Transient
## 1357 A A No Deposit Transient-Party
## 1358 A A No Deposit Transient
## 1359 A A No Deposit Transient
## 1360 D D No Deposit Transient
## 1361 E E No Deposit Transient
## 1362 E E No Deposit Transient
## 1363 A A No Deposit Transient
## 1364 E E No Deposit Transient
## 1365 G G No Deposit Transient
## 1366 A A No Deposit Transient
## 1367 D D No Deposit Transient
## 1368 A A No Deposit Transient
## 1369 D E No Deposit Transient
## 1370 A A No Deposit Transient
## 1371 A A No Deposit Transient
## 1372 A A No Deposit Transient
## 1373 A A No Deposit Transient
## 1374 A A No Deposit Transient
## 1375 A B No Deposit Transient
## 1376 A A No Deposit Transient
## 1377 E E No Deposit Transient
## 1378 D D No Deposit Transient
## 1379 D E No Deposit Contract
## 1380 D D No Deposit Transient
## 1381 A A No Deposit Transient
## 1382 D D No Deposit Contract
## 1383 A A No Deposit Transient
## 1384 A A No Deposit Transient
## 1385 A A No Deposit Contract
## 1386 C C No Deposit Transient
## 1387 A A No Deposit Transient
## 1388 A G No Deposit Transient
## 1389 D D No Deposit Transient-Party
## 1390 D D No Deposit Transient-Party
## 1391 A A No Deposit Transient
## 1392 H H No Deposit Transient
## 1393 A A No Deposit Transient
## 1394 A A No Deposit Transient
## 1395 A A No Deposit Transient
## 1396 A A No Deposit Transient
## 1397 D G No Deposit Transient
## 1398 A D No Deposit Transient
## 1399 C C No Deposit Transient
## 1400 A A No Deposit Transient
## 1401 G G No Deposit Transient
## 1402 D D No Deposit Transient
## 1403 A A No Deposit Transient
## 1404 A A No Deposit Transient-Party
## 1405 A A No Deposit Transient-Party
## 1406 A C No Deposit Transient
## 1407 D D No Deposit Transient
## 1408 A D No Deposit Transient
## 1409 A D No Deposit Transient
## 1410 A A No Deposit Transient
## 1411 A A No Deposit Transient
## 1412 F F No Deposit Transient
## 1413 E F No Deposit Transient
## 1414 A A No Deposit Transient
## 1415 A C No Deposit Transient
## 1416 D D No Deposit Transient
## 1417 A A No Deposit Transient
## 1418 A A No Deposit Transient
## 1419 C C No Deposit Transient
## 1420 D D No Deposit Transient
## 1421 A A No Deposit Contract
## 1422 E E No Deposit Transient
## 1423 F F No Deposit Transient
## 1424 A A No Deposit Transient
## 1425 H H No Deposit Transient
## 1426 E E No Deposit Transient
## 1427 D D No Deposit Transient
## 1428 A A No Deposit Transient
## 1429 E E No Deposit Transient
## 1430 A C No Deposit Transient
## 1431 A D No Deposit Transient
## 1432 A A No Deposit Transient
## 1433 A C No Deposit Transient
## 1434 A A No Deposit Transient
## 1435 A D No Deposit Transient-Party
## 1436 A A No Deposit Transient
## 1437 D D No Deposit Transient
## 1438 A A No Deposit Transient
## 1439 D D No Deposit Transient
## 1440 A A No Deposit Transient
## 1441 C C No Deposit Transient
## 1442 A A No Deposit Transient
## 1443 D D No Deposit Transient
## 1444 E E No Deposit Transient
## 1445 D D No Deposit Transient
## 1446 A D No Deposit Transient
## 1447 A A No Deposit Transient
## 1448 A A No Deposit Transient
## 1449 A A No Deposit Transient
## 1450 A A No Deposit Transient
## 1451 A A No Deposit Transient
## 1452 D D No Deposit Contract
## 1453 A A No Deposit Transient
## 1454 E F No Deposit Transient
## 1455 D D No Deposit Transient
## 1456 D D No Deposit Transient
## 1457 E E No Deposit Transient
## 1458 G G No Deposit Transient
## 1459 A A No Deposit Transient
## 1460 E E No Deposit Transient
## 1461 A A No Deposit Transient
## 1462 F F No Deposit Transient
## 1463 E E No Deposit Transient
## 1464 A A No Deposit Transient
## 1465 A A No Deposit Transient
## 1466 A A No Deposit Transient
## 1467 A A No Deposit Transient
## 1468 A A No Deposit Transient
## 1469 D D No Deposit Transient
## 1470 D D No Deposit Transient
## 1471 E E No Deposit Transient
## 1472 A A No Deposit Transient
## 1473 A A No Deposit Transient
## 1474 A A No Deposit Transient
## 1475 D D No Deposit Transient
## 1476 A A No Deposit Transient
## 1477 C C No Deposit Transient
## 1478 E E No Deposit Contract
## 1479 D D No Deposit Transient
## 1480 D D No Deposit Transient
## 1481 G G No Deposit Transient
## 1482 A A No Deposit Transient
## 1483 A A No Deposit Transient
## 1484 E E No Deposit Transient
## 1485 D D No Deposit Transient
## 1486 C C No Deposit Transient
## 1487 A A No Deposit Transient
## 1488 A A No Deposit Transient
## 1489 A C No Deposit Transient
## 1490 C C No Deposit Transient
## 1491 D D No Deposit Transient
## 1492 E E No Deposit Transient
## 1493 E E No Deposit Transient
## 1494 C C No Deposit Transient
## 1495 E F No Deposit Transient
## 1496 D D No Deposit Transient
## 1497 A B No Deposit Transient
## 1498 A A No Deposit Transient
## 1499 D D No Deposit Transient
## 1500 A E No Deposit Transient
## 1501 D D No Deposit Transient
## 1502 A A No Deposit Transient
## 1503 D D No Deposit Transient
## 1504 A A No Deposit Transient
## 1505 A A No Deposit Contract
## 1506 E E No Deposit Transient
## 1507 A A No Deposit Transient
## 1508 A A No Deposit Transient
## 1509 E E No Deposit Transient
## 1510 D D No Deposit Transient
## 1511 E E No Deposit Transient
## 1512 G G No Deposit Transient-Party
## 1513 A A No Deposit Transient-Party
## 1514 E E No Deposit Transient
## 1515 A A No Deposit Transient
## 1516 D D No Deposit Transient
## 1517 E E No Deposit Contract
## 1518 A E No Deposit Transient
## 1519 E E No Deposit Transient-Party
## 1520 D D No Deposit Transient
## 1521 E E No Deposit Transient-Party
## 1522 D D No Deposit Transient
## 1523 A D No Deposit Transient
## 1524 A D No Deposit Transient
## 1525 G G No Deposit Transient
## 1526 A C No Deposit Transient-Party
## 1527 G G No Deposit Transient
## 1528 G G No Deposit Transient
## 1529 A A No Deposit Transient
## 1530 D E No Deposit Transient
## 1531 A A No Deposit Transient-Party
## 1532 A A No Deposit Transient-Party
## 1533 A C No Deposit Transient
## 1534 A A No Deposit Transient-Party
## 1535 D F No Deposit Transient
## 1536 A A No Deposit Transient-Party
## 1537 A A No Deposit Transient-Party
## 1538 A A No Deposit Transient
## 1539 A A No Deposit Transient-Party
## 1540 A A No Deposit Group
## 1541 E F No Deposit Contract
## 1542 A A No Deposit Transient
## 1543 D E No Deposit Contract
## 1544 E F No Deposit Contract
## 1545 A A No Deposit Transient-Party
## 1546 A A No Deposit Transient
## 1547 D D No Deposit Transient-Party
## 1548 E E No Deposit Transient
## 1549 D D No Deposit Transient-Party
## 1550 D D No Deposit Contract
## 1551 D D No Deposit Transient
## 1552 D D No Deposit Contract
## 1553 D D No Deposit Transient
## 1554 G I No Deposit Transient
## 1555 D D No Deposit Contract
## 1556 D F No Deposit Transient
## 1557 A E No Deposit Transient
## 1558 A F No Deposit Transient
## 1559 D E No Deposit Transient
## 1560 A C Refundable Transient-Party
## 1561 E E No Deposit Transient
## 1562 G G No Deposit Transient
## 1563 F F No Deposit Transient
## 1564 E E No Deposit Transient
## 1565 D E No Deposit Transient
## 1566 D D No Deposit Contract
## 1567 D D No Deposit Contract
## 1568 D D No Deposit Transient
## 1569 D E No Deposit Contract
## 1570 D D No Deposit Transient
## 1571 D D No Deposit Contract
## 1572 A C No Deposit Transient
## 1573 D D No Deposit Transient
## 1574 E E No Deposit Transient
## 1575 E E No Deposit Transient
## 1576 C C No Deposit Transient
## 1577 G G No Deposit Transient
## 1578 A A No Deposit Contract
## 1579 G G No Deposit Transient
## 1580 A A No Deposit Transient
## 1581 E E No Deposit Transient
## 1582 E E No Deposit Transient
## 1583 H H No Deposit Transient
## 1584 E E No Deposit Transient
## 1585 D D No Deposit Transient
## 1586 D D No Deposit Transient
## 1587 D D No Deposit Transient
## 1588 A A No Deposit Group
## 1589 F F No Deposit Transient
## 1590 E F No Deposit Transient
## 1591 D D No Deposit Transient
## 1592 E E No Deposit Transient
## 1593 A A No Deposit Transient
## 1594 D D No Deposit Transient
## 1595 D D No Deposit Transient
## 1596 C C No Deposit Contract
## 1597 G G No Deposit Transient
## 1598 A A No Deposit Transient
## 1599 A B No Deposit Transient
## 1600 A A No Deposit Transient
## 1601 E E No Deposit Transient
## 1602 G G No Deposit Transient
## 1603 C C No Deposit Transient
## 1604 G G No Deposit Transient
## 1605 E E No Deposit Transient-Party
## 1606 E E No Deposit Transient-Party
## 1607 E E No Deposit Transient
## 1608 E E No Deposit Transient
## 1609 D D No Deposit Contract
## 1610 H H No Deposit Transient
## 1611 A A No Deposit Transient
## 1612 A A No Deposit Transient
## 1613 A A No Deposit Transient
## 1614 A A No Deposit Transient
## 1615 A A No Deposit Transient
## 1616 C C No Deposit Transient
## 1617 A A No Deposit Transient
## 1618 A A No Deposit Transient
## 1619 F F No Deposit Transient
## 1620 C C No Deposit Contract
## 1621 A A No Deposit Transient
## 1622 A A No Deposit Transient
## 1623 A A No Deposit Transient
## 1624 D D No Deposit Transient
## 1625 A A No Deposit Transient
## 1626 A A No Deposit Transient
## 1627 A A No Deposit Transient
## 1628 D D No Deposit Contract
## 1629 A E No Deposit Transient
## 1630 D D No Deposit Transient
## 1631 H H No Deposit Transient
## 1632 D D No Deposit Transient
## 1633 D D No Deposit Transient
## 1634 D G No Deposit Transient
## 1635 F F No Deposit Transient
## 1636 D D No Deposit Contract
## 1637 E E No Deposit Transient
## 1638 D D No Deposit Transient
## 1639 D D No Deposit Transient
## 1640 E E No Deposit Contract
## 1641 E E No Deposit Contract
## 1642 G G No Deposit Transient
## 1643 A A No Deposit Transient
## 1644 A A No Deposit Group
## 1645 D D No Deposit Transient
## 1646 A C No Deposit Transient
## 1647 A C No Deposit Transient
## 1648 A A No Deposit Transient
## 1649 E E No Deposit Transient
## 1650 A A No Deposit Transient
## 1651 A A No Deposit Transient
## 1652 A A No Deposit Transient
## 1653 E E No Deposit Transient
## 1654 A A No Deposit Transient
## 1655 A A No Deposit Transient
## 1656 A I No Deposit Transient
## 1657 A A No Deposit Transient
## 1658 A A No Deposit Transient
## 1659 A C No Deposit Transient
## 1660 A A No Deposit Transient
## 1661 A A No Deposit Transient
## 1662 A A No Deposit Transient
## 1663 E E No Deposit Transient
## 1664 A A No Deposit Transient
## 1665 A A No Deposit Transient
## 1666 A A No Deposit Transient
## 1667 D C No Deposit Contract
## 1668 D C No Deposit Contract
## 1669 A A No Deposit Transient
## 1670 D D No Deposit Transient
## 1671 A A No Deposit Transient
## 1672 F G No Deposit Transient
## 1673 E E No Deposit Contract
## 1674 A F No Deposit Transient
## 1675 F F No Deposit Transient
## 1676 A A No Deposit Transient
## 1677 A A No Deposit Transient
## 1678 A A No Deposit Transient
## 1679 E E No Deposit Contract
## 1680 A A No Deposit Transient
## 1681 A D No Deposit Transient
## 1682 A A No Deposit Transient
## 1683 D D No Deposit Transient
## 1684 A A No Deposit Transient
## 1685 A A No Deposit Transient
## 1686 A A No Deposit Transient
## 1687 A A No Deposit Contract
## 1688 A A No Deposit Transient
## 1689 A A No Deposit Transient-Party
## 1690 A A No Deposit Transient
## 1691 A A No Deposit Transient-Party
## 1692 A A No Deposit Transient
## 1693 A A No Deposit Transient
## 1694 A C No Deposit Transient
## 1695 E E No Deposit Transient
## 1696 D E No Deposit Contract
## 1697 E E No Deposit Transient
## 1698 A A No Deposit Transient
## 1699 E E No Deposit Transient
## 1700 E E No Deposit Transient
## 1701 A A No Deposit Transient
## 1702 E E No Deposit Transient
## 1703 A A No Deposit Transient
## 1704 F F No Deposit Transient
## 1705 A C No Deposit Transient
## 1706 C H No Deposit Transient
## 1707 A A No Deposit Transient
## 1708 A A No Deposit Group
## 1709 A A No Deposit Transient
## 1710 H H No Deposit Transient
## 1711 A A No Deposit Transient
## 1712 D D No Deposit Contract
## 1713 A A No Deposit Transient
## 1714 A A No Deposit Transient
## 1715 A A No Deposit Contract
## 1716 D D No Deposit Transient
## 1717 D D No Deposit Contract
## 1718 F F No Deposit Transient
## 1719 E E No Deposit Transient
## 1720 E E No Deposit Transient
## 1721 D D No Deposit Contract
## 1722 A A No Deposit Contract
## 1723 D D No Deposit Transient
## 1724 A C No Deposit Transient
## 1725 A A No Deposit Transient
## 1726 A C No Deposit Transient
## 1727 A D No Deposit Transient
## 1728 A D No Deposit Transient
## 1729 D D No Deposit Transient
## 1730 A D No Deposit Transient
## 1731 D D No Deposit Transient
## 1732 D D No Deposit Transient
## 1733 G F No Deposit Transient
## 1734 H H No Deposit Group
## 1735 D F No Deposit Transient
## 1736 A A No Deposit Transient
## 1737 A A No Deposit Contract
## 1738 A A No Deposit Contract
## 1739 A A No Deposit Transient
## 1740 D D No Deposit Contract
## 1741 A A No Deposit Contract
## 1742 A A No Deposit Transient
## 1743 G G No Deposit Transient
## 1744 D D No Deposit Transient
## 1745 A A No Deposit Transient-Party
## 1746 A A No Deposit Transient
## 1747 A D No Deposit Transient
## 1748 D D No Deposit Transient
## 1749 A A No Deposit Transient
## 1750 A A No Deposit Transient
## 1751 D D No Deposit Transient
## 1752 D D No Deposit Transient
## 1753 A A No Deposit Group
## 1754 E F No Deposit Transient
## 1755 A A No Deposit Contract
## 1756 A A No Deposit Transient
## 1757 A E No Deposit Transient
## 1758 A A No Deposit Transient
## 1759 A A No Deposit Transient
## 1760 A C No Deposit Transient
## 1761 D D No Deposit Transient
## 1762 A A No Deposit Transient-Party
## 1763 D D No Deposit Transient
## 1764 A A No Deposit Transient-Party
## 1765 E F No Deposit Transient
## 1766 C C No Deposit Transient
## 1767 F F No Deposit Transient
## 1768 E E No Deposit Transient
## 1769 A A No Deposit Transient
## 1770 D D No Deposit Contract
## 1771 E E No Deposit Transient
## 1772 A A No Deposit Contract
## 1773 A A No Deposit Group
## 1774 E E No Deposit Transient
## 1775 D D No Deposit Contract
## 1776 D D No Deposit Transient
## 1777 D D No Deposit Contract
## 1778 A G No Deposit Transient
## 1779 E E No Deposit Transient
## 1780 E E No Deposit Transient
## 1781 D D No Deposit Transient
## 1782 A E No Deposit Transient
## 1783 C C No Deposit Transient
## 1784 A A No Deposit Transient
## 1785 E E No Deposit Transient
## 1786 A A No Deposit Transient
## 1787 A D No Deposit Transient
## 1788 D D No Deposit Transient
## 1789 D D No Deposit Transient
## 1790 E E No Deposit Transient
## 1791 D D No Deposit Contract
## 1792 H H No Deposit Transient
## 1793 D G No Deposit Transient
## 1794 A A No Deposit Transient-Party
## 1795 A A No Deposit Transient
## 1796 A A No Deposit Transient
## 1797 E E No Deposit Transient
## 1798 E E No Deposit Transient
## 1799 D D No Deposit Transient
## 1800 D D No Deposit Transient
## 1801 E E No Deposit Transient
## 1802 D D No Deposit Transient
## 1803 A E No Deposit Contract
## 1804 A A No Deposit Transient
## 1805 D D No Deposit Transient
## 1806 A A No Deposit Transient
## 1807 A A No Deposit Transient
## 1808 A A No Deposit Transient
## 1809 C C No Deposit Transient
## 1810 A A No Deposit Transient
## 1811 E E No Deposit Transient
## 1812 A A No Deposit Transient
## 1813 A A No Deposit Transient
## 1814 A A No Deposit Transient
## 1815 A A No Deposit Transient
## 1816 A A No Deposit Transient
## 1817 G G No Deposit Transient
## 1818 E E No Deposit Transient
## 1819 G G No Deposit Transient
## 1820 A A No Deposit Transient
## 1821 A A No Deposit Transient
## 1822 A A No Deposit Transient
## 1823 A A No Deposit Transient
## 1824 A A No Deposit Transient
## 1825 H H No Deposit Transient
## 1826 A A No Deposit Transient
## 1827 A A No Deposit Contract
## 1828 D D No Deposit Transient
## 1829 A A No Deposit Transient
## 1830 D D No Deposit Transient
## 1831 D D No Deposit Transient
## 1832 D D No Deposit Transient
## 1833 A A No Deposit Transient
## 1834 A A No Deposit Contract
## 1835 A A No Deposit Transient
## 1836 A C No Deposit Transient
## 1837 E E No Deposit Transient
## 1838 H H No Deposit Transient
## 1839 A A No Deposit Transient
## 1840 A A No Deposit Transient-Party
## 1841 A A No Deposit Transient-Party
## 1842 A A No Deposit Transient-Party
## 1843 A A No Deposit Transient-Party
## 1844 A A No Deposit Transient-Party
## 1845 A A No Deposit Transient
## 1846 D D No Deposit Transient
## 1847 A A No Deposit Transient
## 1848 A A No Deposit Transient-Party
## 1849 A A No Deposit Transient-Party
## 1850 A A No Deposit Transient
## 1851 A A No Deposit Transient
## 1852 C C No Deposit Transient
## 1853 D D No Deposit Contract
## 1854 E E No Deposit Transient
## 1855 A A No Deposit Transient
## 1856 E E No Deposit Contract
## 1857 D D No Deposit Contract
## 1858 F F No Deposit Transient
## 1859 F F No Deposit Transient
## 1860 A A No Deposit Transient
## 1861 A A No Deposit Transient
## 1862 F G No Deposit Transient
## 1863 E F No Deposit Transient
## 1864 A A No Deposit Transient
## 1865 C C No Deposit Transient
## 1866 D D No Deposit Transient
## 1867 E E No Deposit Transient
## 1868 D D No Deposit Contract
## 1869 A A No Deposit Transient
## 1870 A A No Deposit Transient
## 1871 D D No Deposit Transient
## 1872 A A No Deposit Transient-Party
## 1873 E E No Deposit Transient
## 1874 E E No Deposit Transient
## 1875 C C No Deposit Transient
## 1876 A A No Deposit Transient
## 1877 G G No Deposit Transient
## 1878 E E No Deposit Transient
## 1879 D F No Deposit Transient
## 1880 D D No Deposit Transient
## 1881 D D No Deposit Transient
## 1882 D E No Deposit Transient
## 1883 D D No Deposit Transient
## 1884 C C No Deposit Transient
## 1885 A A No Deposit Group
## 1886 A A No Deposit Transient
## 1887 D D No Deposit Transient
## 1888 A A No Deposit Transient-Party
## 1889 G G No Deposit Transient
## 1890 A A No Deposit Transient-Party
## 1891 G G No Deposit Transient
## 1892 A A No Deposit Transient
## 1893 E E No Deposit Transient
## 1894 A A No Deposit Transient
## 1895 D E No Deposit Transient
## 1896 A A No Deposit Transient
## 1897 D D No Deposit Transient
## 1898 A E No Deposit Transient
## 1899 A A No Deposit Transient
## 1900 A A No Deposit Contract
## 1901 D D No Deposit Transient
## 1902 A A No Deposit Transient
## 1903 A A No Deposit Contract
## 1904 D D No Deposit Transient
## 1905 A A No Deposit Transient-Party
## 1906 A A No Deposit Transient-Party
## 1907 A A No Deposit Transient-Party
## 1908 A F No Deposit Transient
## 1909 A A No Deposit Transient-Party
## 1910 A A No Deposit Transient-Party
## 1911 A A No Deposit Transient-Party
## 1912 A A No Deposit Transient-Party
## 1913 E G No Deposit Transient
## 1914 A A No Deposit Transient-Party
## 1915 A A No Deposit Transient-Party
## 1916 A H No Deposit Transient
## 1917 D D No Deposit Transient
## 1918 A A No Deposit Group
## 1919 A A No Deposit Transient
## 1920 A A No Deposit Transient
## 1921 A A No Deposit Transient
## 1922 D G No Deposit Transient
## 1923 D E No Deposit Contract
## 1924 F F No Deposit Transient
## 1925 A A No Deposit Transient
## 1926 E F No Deposit Transient
## 1927 E F No Deposit Transient
## 1928 D F No Deposit Transient
## 1929 D F No Deposit Transient
## 1930 A A No Deposit Transient
## 1931 E E No Deposit Contract
## 1932 A E No Deposit Transient
## 1933 C C No Deposit Transient
## 1934 A A No Deposit Transient
## 1935 A A No Deposit Transient
## 1936 A A No Deposit Transient
## 1937 A D No Deposit Transient
## 1938 A A No Deposit Transient
## 1939 E E No Deposit Transient
## 1940 E E No Deposit Transient
## 1941 G G No Deposit Transient
## 1942 D D No Deposit Transient
## 1943 A C No Deposit Transient-Party
## 1944 A C No Deposit Transient-Party
## 1945 A C No Deposit Transient-Party
## 1946 A C No Deposit Transient
## 1947 A C No Deposit Transient-Party
## 1948 E E No Deposit Transient
## 1949 A E No Deposit Transient
## 1950 F F No Deposit Transient
## 1951 F F No Deposit Transient
## 1952 A B No Deposit Transient
## 1953 A A No Deposit Transient
## 1954 E E No Deposit Transient
## 1955 A A No Deposit Transient
## 1956 G G No Deposit Transient
## 1957 E E No Deposit Contract
## 1958 D D No Deposit Transient
## 1959 D D No Deposit Contract
## 1960 A F No Deposit Transient
## 1961 A C No Deposit Transient
## 1962 A F No Deposit Transient
## 1963 A A No Deposit Group
## 1964 A E No Deposit Transient
## 1965 A E No Deposit Transient
## 1966 D D No Deposit Contract
## 1967 A D No Deposit Transient
## 1968 E E No Deposit Contract
## 1969 A A No Deposit Contract
## 1970 C G No Deposit Transient
## 1971 A A No Deposit Group
## 1972 A A No Deposit Transient-Party
## 1973 G G No Deposit Transient
## 1974 A A No Deposit Transient-Party
## 1975 A A No Deposit Transient
## 1976 D E No Deposit Transient
## 1977 E E No Deposit Transient
## 1978 A A No Deposit Transient
## 1979 D E No Deposit Transient
## 1980 E E No Deposit Transient
## 1981 D D No Deposit Transient
## 1982 D D No Deposit Transient
## 1983 D D No Deposit Transient
## 1984 A A No Deposit Transient
## 1985 D D No Deposit Transient
## 1986 D D No Deposit Transient
## 1987 D D No Deposit Transient
## 1988 A A No Deposit Transient
## 1989 F F No Deposit Transient
## 1990 D D No Deposit Transient
## 1991 D D No Deposit Transient
## 1992 A H No Deposit Transient
## 1993 E E No Deposit Transient
## 1994 D D No Deposit Transient
## 1995 E F No Deposit Transient-Party
## 1996 A A No Deposit Transient
## 1997 A A No Deposit Transient
## 1998 A A No Deposit Transient
## 1999 A A No Deposit Transient
## 2000 D D No Deposit Transient
## 2001 E G No Deposit Transient
## 2002 D D No Deposit Transient
## 2003 A A No Deposit Transient
## 2004 A A No Deposit Group
## 2005 G G No Deposit Transient
## 2006 A A No Deposit Transient
## 2007 E F No Deposit Transient
## 2008 A A No Deposit Transient
## 2009 E E No Deposit Transient
## 2010 D D No Deposit Transient-Party
## 2011 E E No Deposit Transient
## 2012 A A No Deposit Transient
## 2013 D E No Deposit Transient
## 2014 D D No Deposit Transient
## 2015 E E No Deposit Contract
## 2016 A A No Deposit Contract
## 2017 D D No Deposit Contract
## 2018 A A No Deposit Transient
## 2019 D D No Deposit Contract
## 2020 A A No Deposit Transient
## 2021 A A No Deposit Contract
## 2022 D D No Deposit Transient
## 2023 D D No Deposit Transient
## 2024 A A No Deposit Transient
## 2025 E E No Deposit Transient
## 2026 A A No Deposit Contract
## 2027 A A No Deposit Transient
## 2028 A A No Deposit Transient
## 2029 E E No Deposit Transient
## 2030 E E No Deposit Transient
## 2031 A A No Deposit Transient
## 2032 A A No Deposit Transient
## 2033 D D No Deposit Transient
## 2034 A A No Deposit Transient
## 2035 D D No Deposit Transient
## 2036 D D No Deposit Transient
## 2037 D D No Deposit Transient
## 2038 A A No Deposit Transient
## 2039 D D No Deposit Transient
## 2040 D D No Deposit Contract
## 2041 D D No Deposit Transient
## 2042 A A No Deposit Contract
## 2043 D D No Deposit Transient
## 2044 A A No Deposit Transient
## 2045 A D No Deposit Transient
## 2046 A A No Deposit Transient
## 2047 A A No Deposit Transient
## 2048 A A No Deposit Contract
## 2049 D D No Deposit Transient
## 2050 E E No Deposit Contract
## 2051 D G No Deposit Transient
## 2052 F F No Deposit Transient
## 2053 A A No Deposit Transient
## 2054 A A No Deposit Contract
## 2055 A A No Deposit Contract
## 2056 A A No Deposit Transient
## 2057 E E No Deposit Transient
## 2058 A A No Deposit Transient
## 2059 D D No Deposit Transient
## 2060 A A No Deposit Transient
## 2061 F F No Deposit Transient
## 2062 A E No Deposit Transient
## 2063 G G No Deposit Transient
## 2064 A H No Deposit Transient
## 2065 A A No Deposit Transient-Party
## 2066 A A No Deposit Transient-Party
## 2067 A C No Deposit Transient-Party
## 2068 A H No Deposit Transient
## 2069 A A No Deposit Transient-Party
## 2070 A A No Deposit Transient-Party
## 2071 A A No Deposit Transient-Party
## 2072 A C No Deposit Transient-Party
## 2073 A A No Deposit Transient-Party
## 2074 A A No Deposit Transient-Party
## 2075 D E No Deposit Transient
## 2076 E E No Deposit Transient
## 2077 D E No Deposit Transient
## 2078 A A No Deposit Transient
## 2079 A A No Deposit Transient
## 2080 D D No Deposit Transient
## 2081 A A No Deposit Transient
## 2082 A A No Deposit Transient
## 2083 E E No Deposit Transient
## 2084 D D No Deposit Transient
## 2085 A A No Deposit Transient
## 2086 A A No Deposit Transient
## 2087 A A No Deposit Contract
## 2088 A G No Deposit Transient-Party
## 2089 E E No Deposit Transient
## 2090 D D No Deposit Transient
## 2091 E F No Deposit Transient
## 2092 A C No Deposit Transient
## 2093 E E No Deposit Transient
## 2094 E E No Deposit Transient
## 2095 A D No Deposit Transient
## 2096 E E No Deposit Transient
## 2097 E E No Deposit Contract
## 2098 A C No Deposit Transient
## 2099 D D No Deposit Transient
## 2100 A A No Deposit Contract
## 2101 F F No Deposit Transient
## 2102 D D No Deposit Contract
## 2103 A A No Deposit Transient
## 2104 A A No Deposit Contract
## 2105 A A No Deposit Contract
## 2106 A A No Deposit Transient
## 2107 A A No Deposit Transient
## 2108 A A No Deposit Transient
## 2109 A A No Deposit Transient
## 2110 A A No Deposit Transient
## 2111 D D No Deposit Contract
## 2112 E F No Deposit Transient
## 2113 A D No Deposit Transient
## 2114 E F No Deposit Transient
## 2115 A H No Deposit Transient
## 2116 G G No Deposit Transient
## 2117 G G No Deposit Transient
## 2118 A E No Deposit Transient
## 2119 A E No Deposit Transient
## 2120 G G No Deposit Transient
## 2121 A A No Deposit Transient-Party
## 2122 E E No Deposit Contract
## 2123 A H No Deposit Transient
## 2124 A A No Deposit Transient
## 2125 D D No Deposit Transient
## 2126 D D No Deposit Transient
## 2127 A A No Deposit Transient
## 2128 A A No Deposit Contract
## 2129 D D No Deposit Transient
## 2130 D D No Deposit Transient
## 2131 D D No Deposit Transient
## 2132 D D No Deposit Transient
## 2133 A C No Deposit Transient
## 2134 A A Non Refund Transient
## 2135 A A Non Refund Transient
## 2136 A A Non Refund Transient
## 2137 A A Non Refund Transient
## 2138 A A No Deposit Transient-Party
## 2139 A A No Deposit Transient
## 2140 A C No Deposit Transient
## 2141 E G No Deposit Transient
## 2142 A A Non Refund Transient
## 2143 A A Non Refund Transient
## 2144 A A No Deposit Transient
## 2145 A A No Deposit Transient
## 2146 A A No Deposit Transient-Party
## 2147 A A No Deposit Transient-Party
## 2148 A C No Deposit Transient-Party
## 2149 A A No Deposit Contract
## 2150 A A No Deposit Transient
## 2151 A A No Deposit Transient
## 2152 A A No Deposit Transient-Party
## 2153 D F No Deposit Transient
## 2154 A A No Deposit Transient
## 2155 A A No Deposit Transient
## 2156 E E No Deposit Transient
## 2157 A A No Deposit Transient
## 2158 A A No Deposit Transient
## 2159 A A No Deposit Transient
## 2160 A A No Deposit Transient
## 2161 F F No Deposit Transient
## 2162 D D No Deposit Contract
## 2163 G G No Deposit Transient
## 2164 E F No Deposit Transient
## 2165 A A No Deposit Group
## 2166 A A No Deposit Transient
## 2167 D D No Deposit Transient
## 2168 A A No Deposit Transient
## 2169 G G No Deposit Transient
## 2170 D D No Deposit Transient
## 2171 A E No Deposit Transient
## 2172 A A No Deposit Transient
## 2173 A D No Deposit Transient-Party
## 2174 A A No Deposit Group
## 2175 A D No Deposit Transient-Party
## 2176 G G No Deposit Transient
## 2177 G G No Deposit Transient
## 2178 A E No Deposit Transient
## 2179 A A No Deposit Transient
## 2180 A A No Deposit Transient
## 2181 E E No Deposit Contract
## 2182 A A Non Refund Transient
## 2183 A A Non Refund Transient
## 2184 A A Non Refund Transient
## 2185 A A Non Refund Transient
## 2186 A A Non Refund Transient
## 2187 A A Non Refund Transient
## 2188 A A Non Refund Transient
## 2189 A A Non Refund Transient
## 2190 A A Non Refund Transient
## 2191 A A Non Refund Transient
## 2192 A A Non Refund Transient
## 2193 A A Non Refund Transient
## 2194 A A No Deposit Transient
## 2195 A C No Deposit Transient
## 2196 G G No Deposit Transient
## 2197 D D No Deposit Transient
## 2198 A A No Deposit Transient
## 2199 A A No Deposit Transient
## 2200 A D No Deposit Transient
## 2201 A G No Deposit Group
## 2202 A A No Deposit Transient
## 2203 A F No Deposit Transient
## 2204 A C No Deposit Transient
## 2205 A D No Deposit Contract
## 2206 A C No Deposit Transient
## 2207 E E No Deposit Transient
## 2208 C C No Deposit Transient
## 2209 A A No Deposit Transient
## 2210 A A No Deposit Transient
## 2211 A A No Deposit Transient
## 2212 A A No Deposit Transient
## 2213 A A No Deposit Transient
## 2214 A A No Deposit Transient
## 2215 D D No Deposit Transient
## 2216 A A No Deposit Transient
## 2217 A A No Deposit Transient
## 2218 A A No Deposit Transient
## 2219 A A No Deposit Transient
## 2220 A A No Deposit Transient
## 2221 A A No Deposit Transient
## 2222 A A No Deposit Transient
## 2223 G G No Deposit Transient
## 2224 A A No Deposit Transient
## 2225 A I No Deposit Transient-Party
## 2226 A A No Deposit Transient
## 2227 E G No Deposit Transient
## 2228 G G No Deposit Transient
## 2229 D D No Deposit Group
## 2230 E E No Deposit Group
## 2231 E E No Deposit Transient
## 2232 A A No Deposit Group
## 2233 E E No Deposit Transient
## 2234 D D No Deposit Transient
## 2235 A A No Deposit Transient
## 2236 A A No Deposit Transient
## 2237 A A No Deposit Transient
## 2238 A A No Deposit Transient
## 2239 A A No Deposit Transient
## 2240 A A No Deposit Transient
## 2241 F F No Deposit Transient
## 2242 A A No Deposit Transient
## 2243 A C No Deposit Transient
## 2244 A A No Deposit Transient
## 2245 A A No Deposit Transient
## 2246 A A No Deposit Transient
## 2247 A A No Deposit Transient
## 2248 A E No Deposit Transient
## 2249 D D No Deposit Transient-Party
## 2250 A A No Deposit Transient
## 2251 D D No Deposit Transient-Party
## 2252 A A No Deposit Transient
## 2253 D D No Deposit Transient-Party
## 2254 D D No Deposit Transient-Party
## 2255 A A No Deposit Transient
## 2256 A G No Deposit Transient
## 2257 A F No Deposit Transient
## 2258 A D No Deposit Transient
## 2259 A A No Deposit Transient
## 2260 F F No Deposit Transient
## 2261 A A No Deposit Transient-Party
## 2262 D D No Deposit Transient
## 2263 A A No Deposit Contract
## 2264 A A No Deposit Contract
## 2265 D E No Deposit Transient
## 2266 A A No Deposit Contract
## 2267 A A No Deposit Contract
## 2268 A A No Deposit Contract
## 2269 A D No Deposit Contract
## 2270 A A No Deposit Transient-Party
## 2271 A D No Deposit Transient
## 2272 A A No Deposit Contract
## 2273 A A No Deposit Contract
## 2274 A A No Deposit Contract
## 2275 C C No Deposit Transient
## 2276 A D No Deposit Contract
## 2277 A A No Deposit Contract
## 2278 D D No Deposit Transient
## 2279 A A No Deposit Transient-Party
## 2280 A A No Deposit Transient
## 2281 D D No Deposit Transient
## 2282 A A No Deposit Contract
## 2283 A A No Deposit Transient-Party
## 2284 F F No Deposit Transient
## 2285 D D No Deposit Transient
## 2286 E E No Deposit Transient
## 2287 A D No Deposit Transient
## 2288 A A No Deposit Transient-Party
## 2289 D D No Deposit Transient
## 2290 A A No Deposit Transient
## 2291 A A No Deposit Contract
## 2292 A A No Deposit Contract
## 2293 A A No Deposit Transient
## 2294 E E No Deposit Transient
## 2295 A A No Deposit Contract
## 2296 A A No Deposit Contract
## 2297 A A No Deposit Contract
## 2298 A A Non Refund Transient
## 2299 A A Non Refund Transient
## 2300 A A Non Refund Transient
## 2301 A A Non Refund Transient
## 2302 A A Non Refund Transient
## 2303 A A Non Refund Transient
## 2304 A A No Deposit Transient
## 2305 A A Non Refund Transient
## 2306 A A Non Refund Transient
## 2307 E E No Deposit Transient
## 2308 G G No Deposit Transient
## 2309 A C No Deposit Contract
## 2310 A A No Deposit Contract
## 2311 A A No Deposit Transient
## 2312 A A No Deposit Transient
## 2313 A A Non Refund Transient
## 2314 A A Non Refund Transient
## 2315 A A Non Refund Transient
## 2316 A A Non Refund Transient
## 2317 A A Non Refund Transient
## 2318 A A Non Refund Transient
## 2319 A A Non Refund Transient
## 2320 A A Non Refund Transient
## 2321 A A Non Refund Transient
## 2322 A A Non Refund Transient
## 2323 A A Non Refund Transient
## 2324 A A Non Refund Transient
## 2325 A A Non Refund Transient
## 2326 A A No Deposit Transient
## 2327 A A No Deposit Transient
## 2328 E E No Deposit Transient
## 2329 A A Non Refund Transient
## 2330 A A Non Refund Transient
## 2331 A A Non Refund Transient
## 2332 A A No Deposit Transient
## 2333 A A No Deposit Transient
## 2334 A A No Deposit Transient
## 2335 A A No Deposit Transient
## 2336 A A Non Refund Transient
## 2337 A A Non Refund Transient
## 2338 A A Non Refund Transient
## 2339 A A Non Refund Transient
## 2340 D D No Deposit Transient
## 2341 A A No Deposit Transient
## 2342 D D No Deposit Transient
## 2343 D D No Deposit Transient
## 2344 D D No Deposit Transient
## 2345 D D No Deposit Transient
## 2346 D D No Deposit Transient
## 2347 A A No Deposit Transient
## 2348 A E No Deposit Contract
## 2349 A E No Deposit Contract
## 2350 A E No Deposit Transient
## 2351 A A No Deposit Transient
## 2352 A D No Deposit Transient
## 2353 D D No Deposit Transient
## 2354 D D No Deposit Transient
## 2355 A E No Deposit Transient
## 2356 A A No Deposit Transient-Party
## 2357 A H No Deposit Transient
## 2358 G G No Deposit Transient
## 2359 A H No Deposit Transient
## 2360 G G No Deposit Transient
## 2361 D D No Deposit Transient
## 2362 F F No Deposit Transient
## 2363 D D No Deposit Transient
## 2364 D D No Deposit Transient
## 2365 A E No Deposit Transient
## 2366 A D No Deposit Transient
## 2367 A A No Deposit Transient-Party
## 2368 F F No Deposit Transient
## 2369 A A Non Refund Transient
## 2370 A A Non Refund Transient
## 2371 A A Non Refund Transient
## 2372 A A Non Refund Transient
## 2373 A A Non Refund Transient
## 2374 A A Non Refund Transient
## 2375 A A Non Refund Transient
## 2376 A A Non Refund Transient
## 2377 A A Non Refund Transient
## 2378 A A Non Refund Transient
## 2379 A A No Deposit Transient
## 2380 A A Non Refund Transient
## 2381 A A Non Refund Transient
## 2382 A A Non Refund Transient
## 2383 D D No Deposit Transient
## 2384 F F No Deposit Transient
## 2385 D D No Deposit Transient
## 2386 A A No Deposit Transient
## 2387 D D No Deposit Transient
## 2388 A A No Deposit Transient
## 2389 A A No Deposit Transient
## 2390 A A No Deposit Transient
## 2391 D D No Deposit Transient
## 2392 A A No Deposit Transient
## 2393 E E No Deposit Transient
## 2394 A A No Deposit Transient
## 2395 A A No Deposit Transient
## 2396 A A No Deposit Transient
## 2397 E E No Deposit Transient
## 2398 A A No Deposit Transient
## 2399 A A No Deposit Transient
## 2400 A A No Deposit Transient
## 2401 A A No Deposit Transient
## 2402 A A No Deposit Transient
## 2403 A A No Deposit Transient
## 2404 A A No Deposit Transient
## 2405 D D No Deposit Transient
## 2406 F F No Deposit Transient
## 2407 A A No Deposit Transient
## 2408 A I No Deposit Transient-Party
## 2409 D A No Deposit Transient
## 2410 A I No Deposit Transient
## 2411 A A No Deposit Transient
## 2412 A A No Deposit Transient
## 2413 A A No Deposit Transient
## 2414 A A No Deposit Transient
## 2415 A A No Deposit Transient
## 2416 A A No Deposit Transient
## 2417 E E No Deposit Transient
## 2418 E E No Deposit Group
## 2419 D D No Deposit Group
## 2420 A A No Deposit Group
## 2421 E F No Deposit Transient-Party
## 2422 C C No Deposit Transient
## 2423 A A No Deposit Transient
## 2424 A E No Deposit Transient
## 2425 A A No Deposit Transient
## 2426 A A No Deposit Transient
## 2427 A A No Deposit Transient
## 2428 A A No Deposit Transient
## 2429 G G No Deposit Transient
## 2430 G G No Deposit Transient
## 2431 E F No Deposit Transient
## 2432 E E No Deposit Transient
## 2433 A A No Deposit Transient-Party
## 2434 A A No Deposit Transient-Party
## 2435 D D No Deposit Transient
## 2436 A A No Deposit Transient-Party
## 2437 D D No Deposit Transient
## 2438 A A No Deposit Transient-Party
## 2439 A A No Deposit Transient
## 2440 A I No Deposit Transient-Party
## 2441 A E No Deposit Transient-Party
## 2442 G G No Deposit Transient
## 2443 A A No Deposit Contract
## 2444 D D No Deposit Transient-Party
## 2445 D D No Deposit Transient-Party
## 2446 D D No Deposit Transient-Party
## 2447 A A No Deposit Transient
## 2448 A A No Deposit Transient-Party
## 2449 E D No Deposit Transient
## 2450 A A No Deposit Transient-Party
## 2451 F E No Deposit Transient
## 2452 A A No Deposit Transient
## 2453 A A No Deposit Transient
## 2454 A A No Deposit Transient
## 2455 E F No Deposit Transient
## 2456 A A No Deposit Transient
## 2457 E E No Deposit Transient
## 2458 A A No Deposit Transient
## 2459 A A No Deposit Transient
## 2460 E E No Deposit Transient
## 2461 F F No Deposit Transient
## 2462 D D No Deposit Transient
## 2463 D D No Deposit Transient
## 2464 E E No Deposit Transient
## 2465 A D No Deposit Transient
## 2466 C C No Deposit Transient
## 2467 A A No Deposit Contract
## 2468 E E No Deposit Transient
## 2469 A E No Deposit Contract
## 2470 A A No Deposit Transient
## 2471 D D No Deposit Transient
## 2472 A A No Deposit Transient
## 2473 D D No Deposit Transient
## 2474 A G No Deposit Transient
## 2475 A A No Deposit Transient
## 2476 A A No Deposit Transient
## 2477 A D No Deposit Transient
## 2478 A D No Deposit Transient
## 2479 A D No Deposit Transient-Party
## 2480 A D No Deposit Transient-Party
## 2481 A F No Deposit Transient
## 2482 A D No Deposit Transient
## 2483 A D No Deposit Transient
## 2484 D D No Deposit Transient
## 2485 A D No Deposit Transient
## 2486 D D No Deposit Transient
## 2487 A A No Deposit Transient-Party
## 2488 A A No Deposit Transient-Party
## 2489 A A No Deposit Transient-Party
## 2490 A A No Deposit Transient-Party
## 2491 A A No Deposit Transient-Party
## 2492 A A No Deposit Transient-Party
## 2493 A A No Deposit Transient-Party
## 2494 A A No Deposit Transient-Party
## 2495 A A No Deposit Transient-Party
## 2496 D D No Deposit Transient
## 2497 A A No Deposit Transient-Party
## 2498 A A No Deposit Transient-Party
## 2499 A A No Deposit Transient-Party
## 2500 A A No Deposit Transient-Party
## 2501 A A No Deposit Transient-Party
## 2502 A A No Deposit Transient-Party
## 2503 A A No Deposit Transient-Party
## 2504 A A No Deposit Transient-Party
## 2505 A A No Deposit Transient-Party
## 2506 D D No Deposit Transient
## 2507 A A No Deposit Transient-Party
## 2508 A A No Deposit Transient-Party
## 2509 A A No Deposit Transient-Party
## 2510 A A No Deposit Transient
## 2511 A A No Deposit Transient-Party
## 2512 E E No Deposit Contract
## 2513 A A No Deposit Contract
## 2514 A A No Deposit Transient
## 2515 D D No Deposit Transient
## 2516 A A No Deposit Transient
## 2517 A A No Deposit Transient
## 2518 D D No Deposit Transient
## 2519 D D No Deposit Transient
## 2520 E E No Deposit Transient
## 2521 F F No Deposit Transient
## 2522 A F No Deposit Transient
## 2523 A C No Deposit Contract
## 2524 A F No Deposit Transient
## 2525 G G No Deposit Transient
## 2526 D D No Deposit Contract
## 2527 A A No Deposit Contract
## 2528 E E No Deposit Contract
## 2529 A A No Deposit Transient
## 2530 A A No Deposit Transient
## 2531 A I No Deposit Transient
## 2532 A I No Deposit Transient
## 2533 A A No Deposit Transient
## 2534 A A No Deposit Transient-Party
## 2535 A A No Deposit Transient-Party
## 2536 G G No Deposit Transient
## 2537 A A No Deposit Transient-Party
## 2538 A D No Deposit Transient-Party
## 2539 A C No Deposit Transient-Party
## 2540 A A No Deposit Transient-Party
## 2541 A A No Deposit Transient
## 2542 D D No Deposit Transient
## 2543 A A No Deposit Transient
## 2544 A A No Deposit Transient
## 2545 D D No Deposit Transient
## 2546 D D No Deposit Transient
## 2547 A A No Deposit Transient
## 2548 A A No Deposit Transient
## 2549 D D No Deposit Transient
## 2550 E E No Deposit Transient
## 2551 A D No Deposit Transient
## 2552 D E No Deposit Transient
## 2553 A D No Deposit Transient
## 2554 E E No Deposit Transient
## 2555 D D No Deposit Transient
## 2556 A A No Deposit Transient
## 2557 D D No Deposit Transient
## 2558 A E No Deposit Transient-Party
## 2559 E F No Deposit Transient
## 2560 A C No Deposit Contract
## 2561 E E No Deposit Transient-Party
## 2562 F F No Deposit Transient
## 2563 D D No Deposit Transient-Party
## 2564 A C No Deposit Transient
## 2565 A D No Deposit Transient
## 2566 A H No Deposit Transient
## 2567 D D No Deposit Transient
## 2568 A D No Deposit Transient
## 2569 D E No Deposit Transient
## 2570 A E No Deposit Transient-Party
## 2571 A A No Deposit Transient
## 2572 A E No Deposit Transient
## 2573 D E No Deposit Transient
## 2574 A D No Deposit Transient
## 2575 D E No Deposit Transient
## 2576 D E No Deposit Transient
## 2577 E E No Deposit Transient
## 2578 A E No Deposit Transient
## 2579 A A No Deposit Transient-Party
## 2580 D D No Deposit Transient
## 2581 A A No Deposit Contract
## 2582 G G No Deposit Transient
## 2583 E E No Deposit Transient-Party
## 2584 E E No Deposit Transient-Party
## 2585 E E No Deposit Transient-Party
## 2586 D D No Deposit Transient
## 2587 A F No Deposit Transient
## 2588 E G No Deposit Transient-Party
## 2589 D D No Deposit Transient-Party
## 2590 D D No Deposit Transient
## 2591 A D No Deposit Transient
## 2592 D D No Deposit Transient
## 2593 D D No Deposit Transient
## 2594 D D No Deposit Transient-Party
## 2595 A D No Deposit Transient-Party
## 2596 F G No Deposit Transient
## 2597 A D No Deposit Transient-Party
## 2598 A A No Deposit Transient
## 2599 D D No Deposit Transient
## 2600 A D No Deposit Transient-Party
## 2601 D D No Deposit Transient
## 2602 A A No Deposit Transient
## 2603 D D No Deposit Transient
## 2604 A D No Deposit Transient
## 2605 A C No Deposit Contract
## 2606 A C No Deposit Contract
## 2607 A A No Deposit Transient
## 2608 F F No Deposit Transient
## 2609 A A No Deposit Transient
## 2610 A A No Deposit Transient
## 2611 D D No Deposit Transient
## 2612 A A No Deposit Transient
## 2613 A A No Deposit Transient
## 2614 E E No Deposit Transient
## 2615 A B No Deposit Transient
## 2616 E E No Deposit Transient
## 2617 A A No Deposit Transient
## 2618 A D No Deposit Transient
## 2619 E E No Deposit Transient
## 2620 A C No Deposit Transient-Party
## 2621 D D No Deposit Transient-Party
## 2622 G G No Deposit Transient
## 2623 A D No Deposit Transient
## 2624 A A No Deposit Transient
## 2625 A A No Deposit Transient
## 2626 A A Non Refund Transient
## 2627 A A Non Refund Transient
## 2628 A A Non Refund Transient
## 2629 A A Non Refund Transient
## 2630 A A Non Refund Transient
## 2631 A A Non Refund Transient
## 2632 A A Non Refund Transient
## 2633 A A Non Refund Transient
## 2634 A A Non Refund Transient
## 2635 A A Non Refund Transient
## 2636 A A Non Refund Transient
## 2637 A A Non Refund Transient
## 2638 A A Non Refund Transient
## 2639 A A Non Refund Transient
## 2640 A A Non Refund Transient
## 2641 A A Non Refund Transient
## 2642 A A Non Refund Transient
## 2643 A A Non Refund Transient
## 2644 D D No Deposit Transient
## 2645 A A Non Refund Transient
## 2646 A A Non Refund Transient
## 2647 A A Non Refund Transient
## 2648 A A Non Refund Transient
## 2649 A A Non Refund Transient
## 2650 A A Non Refund Transient
## 2651 D D No Deposit Transient
## 2652 A A Non Refund Transient
## 2653 A A Non Refund Transient
## 2654 A A Non Refund Transient
## 2655 A A Non Refund Transient
## 2656 A A Non Refund Transient
## 2657 A A Non Refund Transient
## 2658 A A Non Refund Transient
## 2659 A A Non Refund Transient
## 2660 A A Non Refund Transient
## 2661 A A Non Refund Transient
## 2662 A A Non Refund Transient
## 2663 E E No Deposit Transient
## 2664 E E No Deposit Transient
## 2665 D D No Deposit Transient
## 2666 D D No Deposit Transient
## 2667 D D No Deposit Transient
## 2668 A A No Deposit Transient
## 2669 A A No Deposit Transient
## 2670 A A No Deposit Transient
## 2671 E E No Deposit Transient
## 2672 E E No Deposit Transient
## 2673 G G No Deposit Transient
## 2674 E E No Deposit Transient
## 2675 E E No Deposit Transient
## 2676 A A No Deposit Contract
## 2677 A A No Deposit Transient
## 2678 D D No Deposit Transient
## 2679 E F No Deposit Transient
## 2680 A A Non Refund Transient
## 2681 A A Non Refund Transient
## 2682 A A Non Refund Transient
## 2683 A A Non Refund Transient
## 2684 A A Non Refund Transient
## 2685 A D No Deposit Transient
## 2686 G G No Deposit Transient
## 2687 A A No Deposit Contract
## 2688 D D No Deposit Contract
## 2689 A A No Deposit Contract
## 2690 A A No Deposit Transient
## 2691 C C No Deposit Transient
## 2692 D D No Deposit Transient
## 2693 A A No Deposit Transient
## 2694 D D No Deposit Contract
## 2695 D D No Deposit Contract
## 2696 E E No Deposit Transient
## 2697 A E No Deposit Transient
## 2698 E G No Deposit Transient-Party
## 2699 A A Non Refund Contract
## 2700 A A Non Refund Contract
## 2701 A A Non Refund Contract
## 2702 A A Non Refund Contract
## 2703 A A Non Refund Transient
## 2704 A A No Deposit Transient
## 2705 D D No Deposit Transient
## 2706 E E No Deposit Transient
## 2707 A A No Deposit Transient
## 2708 D D No Deposit Transient
## 2709 A A No Deposit Transient
## 2710 A A No Deposit Transient
## 2711 A A No Deposit Transient-Party
## 2712 A A No Deposit Transient
## 2713 A A No Deposit Transient
## 2714 A A No Deposit Transient-Party
## 2715 A A No Deposit Transient
## 2716 D F No Deposit Transient
## 2717 D D No Deposit Transient
## 2718 A A No Deposit Transient
## 2719 A A No Deposit Transient
## 2720 D D No Deposit Transient
## 2721 A A No Deposit Transient
## 2722 A A No Deposit Transient
## 2723 A A No Deposit Transient
## 2724 A A No Deposit Transient
## 2725 A A No Deposit Transient
## 2726 A A No Deposit Transient
## 2727 A A No Deposit Transient
## 2728 A D No Deposit Transient
## 2729 A A No Deposit Transient
## 2730 A D No Deposit Transient
## 2731 A D No Deposit Transient
## 2732 A D No Deposit Transient
## 2733 A D No Deposit Transient
## 2734 A A No Deposit Transient
## 2735 A A No Deposit Transient
## 2736 A A No Deposit Transient
## 2737 A E No Deposit Transient
## 2738 A A No Deposit Transient
## 2739 A A No Deposit Transient
## 2740 A A No Deposit Transient
## 2741 E E No Deposit Transient
## 2742 A A No Deposit Transient-Party
## 2743 F F No Deposit Transient
## 2744 A D No Deposit Transient
## 2745 D D No Deposit Transient
## 2746 D D No Deposit Transient
## 2747 A A No Deposit Transient
## 2748 A A No Deposit Transient
## 2749 A A No Deposit Transient
## 2750 A D No Deposit Transient
## 2751 A A No Deposit Transient
## 2752 E E No Deposit Transient
## 2753 A A No Deposit Transient
## 2754 A A No Deposit Transient
## 2755 A D No Deposit Transient
## 2756 F F No Deposit Transient
## 2757 A A No Deposit Transient
## 2758 A A No Deposit Transient-Party
## 2759 A A No Deposit Transient-Party
## 2760 A A No Deposit Transient
## 2761 E E No Deposit Transient
## 2762 D D No Deposit Transient
## 2763 A A No Deposit Transient
## 2764 E E No Deposit Transient
## 2765 D D No Deposit Transient
## 2766 E E No Deposit Transient
## 2767 A E No Deposit Transient
## 2768 A D No Deposit Transient
## 2769 A A No Deposit Transient
## 2770 A A Non Refund Transient
## 2771 A A Non Refund Transient
## 2772 A A No Deposit Transient
## 2773 A A Non Refund Transient
## 2774 A A No Deposit Transient
## 2775 A A Non Refund Transient
## 2776 A A No Deposit Transient
## 2777 F F No Deposit Transient
## 2778 A A No Deposit Transient
## 2779 D D No Deposit Transient
## 2780 A A No Deposit Transient
## 2781 A D No Deposit Transient
## 2782 A D No Deposit Transient
## 2783 A D No Deposit Transient
## 2784 A A Non Refund Transient
## 2785 A A Non Refund Transient
## 2786 A A Non Refund Transient
## 2787 E E No Deposit Transient
## 2788 A A Non Refund Transient-Party
## 2789 A A No Deposit Transient
## 2790 A A Non Refund Transient
## 2791 A A Non Refund Transient
## 2792 A D No Deposit Transient
## 2793 A A No Deposit Transient
## 2794 A A No Deposit Transient
## 2795 A A Non Refund Transient
## 2796 A A Non Refund Transient
## 2797 A A No Deposit Transient
## 2798 A D No Deposit Transient
## 2799 A A No Deposit Transient
## 2800 A A No Deposit Transient
## 2801 A D No Deposit Transient
## 2802 A A No Deposit Transient
## 2803 A A No Deposit Transient
## 2804 A A No Deposit Transient
## 2805 A A No Deposit Transient
## 2806 A A No Deposit Transient
## 2807 A D No Deposit Transient
## 2808 A D No Deposit Transient
## 2809 A A No Deposit Transient
## 2810 A A No Deposit Transient
## 2811 A E No Deposit Transient
## 2812 A A Non Refund Transient
## 2813 A A Non Refund Transient
## 2814 A A Non Refund Transient
## 2815 A A Non Refund Transient
## 2816 A A Non Refund Transient
## 2817 A A No Deposit Transient
## 2818 E E No Deposit Transient
## 2819 A A No Deposit Transient
## 2820 H H No Deposit Transient
## 2821 A A No Deposit Transient
## 2822 A A No Deposit Transient
## 2823 A A No Deposit Transient
## 2824 D D No Deposit Transient
## 2825 A A No Deposit Transient
## 2826 E G No Deposit Transient
## 2827 A A No Deposit Transient
## 2828 A A No Deposit Transient
## 2829 A A No Deposit Transient
## 2830 A A No Deposit Transient
## 2831 A D No Deposit Transient
## 2832 A A No Deposit Transient
## 2833 A A No Deposit Transient
## 2834 A A No Deposit Transient
## 2835 E E No Deposit Transient
## 2836 A A No Deposit Transient
## 2837 A D No Deposit Transient
## 2838 A D No Deposit Transient
## 2839 A A No Deposit Transient
## 2840 A D No Deposit Transient
## 2841 A A No Deposit Transient
## 2842 D D No Deposit Contract
## 2843 A A No Deposit Transient
## 2844 F F No Deposit Transient
## 2845 E E No Deposit Transient
## 2846 A A No Deposit Transient
## 2847 A A No Deposit Transient
## 2848 D D No Deposit Transient
## 2849 A D No Deposit Transient
## 2850 A D No Deposit Transient
## 2851 A D No Deposit Transient
## 2852 E E No Deposit Transient
## 2853 A A No Deposit Transient-Party
## 2854 A A No Deposit Transient-Party
## 2855 A A No Deposit Transient-Party
## 2856 A A No Deposit Transient-Party
## 2857 A A No Deposit Transient-Party
## 2858 A A No Deposit Transient-Party
## 2859 A A No Deposit Transient-Party
## 2860 A A No Deposit Transient
## 2861 A E No Deposit Transient
## 2862 E G No Deposit Transient
## 2863 A A No Deposit Transient
## 2864 A A No Deposit Transient
## 2865 D D No Deposit Transient
## 2866 A A No Deposit Transient
## 2867 A D No Deposit Transient
## 2868 A A No Deposit Transient-Party
## 2869 A D No Deposit Transient
## 2870 D D No Deposit Transient
## 2871 C C No Deposit Transient
## 2872 A A No Deposit Transient-Party
## 2873 A D No Deposit Transient
## 2874 D D No Deposit Transient
## 2875 A A No Deposit Transient-Party
## 2876 D D No Deposit Transient
## 2877 A A No Deposit Transient
## 2878 A A No Deposit Transient-Party
## 2879 A A No Deposit Transient-Party
## 2880 A A No Deposit Transient
## 2881 A A No Deposit Transient-Party
## 2882 A A No Deposit Transient
## 2883 A A No Deposit Transient
## 2884 A A No Deposit Transient-Party
## 2885 A F No Deposit Transient-Party
## 2886 A A No Deposit Transient
## 2887 A A No Deposit Transient
## 2888 A A No Deposit Transient
## 2889 A A No Deposit Transient
## 2890 A A No Deposit Contract
## 2891 A A No Deposit Transient-Party
## 2892 A A No Deposit Transient-Party
## 2893 A A No Deposit Transient-Party
## 2894 A A No Deposit Transient
## 2895 A A No Deposit Transient
## 2896 A A No Deposit Transient
## 2897 E E No Deposit Transient
## 2898 E E No Deposit Transient
## 2899 A A No Deposit Transient-Party
## 2900 E E No Deposit Contract
## 2901 A A No Deposit Transient-Party
## 2902 A A No Deposit Transient
## 2903 A D No Deposit Transient
## 2904 A D No Deposit Transient
## 2905 A C No Deposit Transient
## 2906 A D No Deposit Transient
## 2907 D D No Deposit Transient
## 2908 A D No Deposit Transient
## 2909 A C No Deposit Transient
## 2910 A D No Deposit Contract
## 2911 D D No Deposit Transient
## 2912 D D No Deposit Transient
## 2913 A A No Deposit Transient-Party
## 2914 E E No Deposit Transient-Party
## 2915 A A No Deposit Transient-Party
## 2916 A A No Deposit Transient-Party
## 2917 A A No Deposit Transient-Party
## 2918 A A No Deposit Transient-Party
## 2919 E E No Deposit Transient-Party
## 2920 D D No Deposit Transient-Party
## 2921 D D No Deposit Transient
## 2922 A E No Deposit Transient
## 2923 A A No Deposit Transient
## 2924 E E No Deposit Transient
## 2925 A A No Deposit Transient
## 2926 A D No Deposit Transient
## 2927 E E No Deposit Transient
## 2928 E E No Deposit Transient
## 2929 E F No Deposit Transient
## 2930 A D No Deposit Transient
## 2931 E E No Deposit Transient
## 2932 E E No Deposit Transient
## 2933 E E No Deposit Transient
## 2934 E E No Deposit Transient
## 2935 A A No Deposit Transient-Party
## 2936 A A No Deposit Transient-Party
## 2937 A A No Deposit Transient-Party
## 2938 A A No Deposit Transient
## 2939 A A No Deposit Transient-Party
## 2940 A A No Deposit Transient
## 2941 A D No Deposit Transient
## 2942 A A No Deposit Transient-Party
## 2943 A A No Deposit Transient-Party
## 2944 A A No Deposit Transient-Party
## 2945 A A No Deposit Transient-Party
## 2946 A A No Deposit Transient-Party
## 2947 A D No Deposit Transient-Party
## 2948 A A No Deposit Transient-Party
## 2949 A A No Deposit Transient-Party
## 2950 A A No Deposit Transient-Party
## 2951 A A No Deposit Transient-Party
## 2952 A A No Deposit Transient-Party
## 2953 A A No Deposit Transient-Party
## 2954 A A No Deposit Transient-Party
## 2955 A A No Deposit Transient-Party
## 2956 A A No Deposit Transient
## 2957 A A No Deposit Transient
## 2958 A D No Deposit Transient
## 2959 A A No Deposit Transient
## 2960 A D No Deposit Transient
## 2961 A A No Deposit Transient
## 2962 D D No Deposit Transient
## 2963 F F No Deposit Transient
## 2964 D D No Deposit Transient
## 2965 A A No Deposit Transient-Party
## 2966 A D No Deposit Transient-Party
## 2967 A A No Deposit Transient-Party
## 2968 A D No Deposit Transient-Party
## 2969 D D No Deposit Transient
## 2970 A A No Deposit Transient-Party
## 2971 A D No Deposit Transient-Party
## 2972 A A No Deposit Transient-Party
## 2973 D D No Deposit Transient
## 2974 E E No Deposit Contract
## 2975 A D No Deposit Transient
## 2976 A D No Deposit Transient
## 2977 A D No Deposit Transient
## 2978 H H No Deposit Transient
## 2979 A A No Deposit Transient
## 2980 A C No Deposit Group
## 2981 A D No Deposit Transient
## 2982 A D No Deposit Transient
## 2983 A A No Deposit Transient
## 2984 A A No Deposit Transient-Party
## 2985 A A No Deposit Transient-Party
## 2986 E E No Deposit Contract
## 2987 E E No Deposit Contract
## 2988 A D No Deposit Transient
## 2989 A A No Deposit Transient-Party
## 2990 A D No Deposit Transient
## 2991 D D No Deposit Transient
## 2992 D D No Deposit Transient
## 2993 A A No Deposit Transient-Party
## 2994 A A No Deposit Transient-Party
## 2995 A A No Deposit Transient-Party
## 2996 A A No Deposit Transient
## 2997 A A No Deposit Transient-Party
## 2998 A D No Deposit Transient
## 2999 A E No Deposit Transient
## 3000 D D No Deposit Transient
## 3001 A A No Deposit Transient-Party
## 3002 A A No Deposit Transient-Party
## 3003 A C No Deposit Transient-Party
## 3004 A A No Deposit Transient-Party
## 3005 A A No Deposit Transient-Party
## 3006 A A No Deposit Transient-Party
## 3007 A A No Deposit Transient
## 3008 A C No Deposit Transient
## 3009 A D No Deposit Transient
## 3010 D D No Deposit Transient
## 3011 A A No Deposit Transient-Party
## 3012 A A No Deposit Contract
## 3013 E E No Deposit Transient
## 3014 A D No Deposit Transient
## 3015 A C No Deposit Contract
## 3016 A A No Deposit Transient-Party
## 3017 A A No Deposit Transient-Party
## 3018 A A No Deposit Transient-Party
## 3019 A A No Deposit Transient-Party
## 3020 A D No Deposit Transient
## 3021 A A No Deposit Transient-Party
## 3022 A C No Deposit Transient-Party
## 3023 A D No Deposit Transient
## 3024 A A No Deposit Transient-Party
## 3025 A A No Deposit Transient-Party
## 3026 A A No Deposit Transient-Party
## 3027 A D No Deposit Transient
## 3028 A A No Deposit Transient
## 3029 A D No Deposit Transient
## 3030 A A No Deposit Contract
## 3031 D D No Deposit Transient
## 3032 A A No Deposit Transient
## 3033 A A No Deposit Transient
## 3034 A A No Deposit Contract
## 3035 D D No Deposit Transient-Party
## 3036 A A No Deposit Transient-Party
## 3037 A A No Deposit Transient-Party
## 3038 A C No Deposit Transient-Party
## 3039 A A No Deposit Transient-Party
## 3040 A A No Deposit Transient-Party
## 3041 A A No Deposit Transient-Party
## 3042 A A No Deposit Transient-Party
## 3043 A A No Deposit Transient-Party
## 3044 E E No Deposit Transient-Party
## 3045 A E No Deposit Transient-Party
## 3046 A D No Deposit Transient
## 3047 A C No Deposit Transient-Party
## 3048 A A No Deposit Transient-Party
## 3049 A A No Deposit Transient-Party
## 3050 A E No Deposit Transient-Party
## 3051 A A No Deposit Transient-Party
## 3052 A E No Deposit Transient-Party
## 3053 A A No Deposit Transient-Party
## 3054 A A No Deposit Transient-Party
## 3055 A A No Deposit Transient-Party
## 3056 D D No Deposit Transient-Party
## 3057 D D No Deposit Transient-Party
## 3058 A A No Deposit Transient-Party
## 3059 A C No Deposit Transient-Party
## 3060 G G No Deposit Transient
## 3061 D D No Deposit Transient-Party
## 3062 A D No Deposit Transient-Party
## 3063 A C No Deposit Transient-Party
## 3064 E E No Deposit Transient
## 3065 A A No Deposit Transient-Party
## 3066 E E No Deposit Transient-Party
## 3067 E E No Deposit Transient-Party
## 3068 A A No Deposit Transient-Party
## 3069 A F No Deposit Transient-Party
## 3070 A I No Deposit Transient-Party
## 3071 A I No Deposit Transient-Party
## 3072 A D No Deposit Transient-Party
## 3073 D F No Deposit Transient
## 3074 A A No Deposit Transient
## 3075 F F No Deposit Transient
## 3076 D D No Deposit Transient
## 3077 A A No Deposit Transient
## 3078 E E No Deposit Transient
## 3079 E E No Deposit Transient-Party
## 3080 A A No Deposit Transient
## 3081 D D No Deposit Transient
## 3082 F F No Deposit Transient
## 3083 E E No Deposit Transient
## 3084 E E No Deposit Transient
## 3085 D D No Deposit Transient
## 3086 E E No Deposit Transient
## 3087 A A No Deposit Transient
## 3088 D D No Deposit Transient
## 3089 A A No Deposit Transient
## 3090 A A No Deposit Transient
## 3091 A A No Deposit Transient
## 3092 A A No Deposit Transient
## 3093 A A No Deposit Transient
## 3094 A A No Deposit Transient
## 3095 A A No Deposit Transient
## 3096 A A No Deposit Transient
## 3097 A A No Deposit Transient
## 3098 D D No Deposit Transient
## 3099 A A No Deposit Transient
## 3100 A A No Deposit Transient
## 3101 A E No Deposit Transient
## 3102 A A No Deposit Transient
## 3103 A A No Deposit Transient
## 3104 A A No Deposit Transient
## 3105 A D No Deposit Transient
## 3106 A D No Deposit Transient
## 3107 A A No Deposit Transient-Party
## 3108 A A No Deposit Transient-Party
## 3109 A A No Deposit Transient-Party
## 3110 A A No Deposit Transient-Party
## 3111 A A No Deposit Transient-Party
## 3112 A A No Deposit Transient-Party
## 3113 A A No Deposit Transient-Party
## 3114 A A No Deposit Transient-Party
## 3115 A A No Deposit Transient-Party
## 3116 A A No Deposit Transient-Party
## 3117 A A No Deposit Transient-Party
## 3118 A A No Deposit Transient-Party
## 3119 A A No Deposit Transient-Party
## 3120 A A No Deposit Transient-Party
## 3121 A A No Deposit Transient-Party
## 3122 A A No Deposit Transient-Party
## 3123 A A No Deposit Transient-Party
## 3124 A A No Deposit Transient-Party
## 3125 A A No Deposit Transient-Party
## 3126 A A No Deposit Transient-Party
## 3127 A A No Deposit Transient-Party
## 3128 A A No Deposit Transient-Party
## 3129 A A No Deposit Transient-Party
## 3130 A A No Deposit Transient
## 3131 A A No Deposit Transient-Party
## 3132 A A No Deposit Transient-Party
## 3133 A A No Deposit Transient-Party
## 3134 A A No Deposit Transient
## 3135 C C No Deposit Transient
## 3136 A A No Deposit Transient
## 3137 A A No Deposit Transient
## 3138 E E No Deposit Transient
## 3139 G G No Deposit Transient
## 3140 E E No Deposit Transient
## 3141 A A No Deposit Transient
## 3142 E E No Deposit Transient
## 3143 E E No Deposit Contract
## 3144 A C No Deposit Transient-Party
## 3145 A C No Deposit Transient-Party
## 3146 A A No Deposit Transient-Party
## 3147 A A No Deposit Transient-Party
## 3148 A A No Deposit Transient
## 3149 A A No Deposit Transient
## 3150 A A No Deposit Transient-Party
## 3151 A A No Deposit Transient-Party
## 3152 A A No Deposit Transient-Party
## 3153 A D No Deposit Transient
## 3154 A A No Deposit Transient
## 3155 A A No Deposit Transient
## 3156 A C No Deposit Transient-Party
## 3157 A A No Deposit Transient-Party
## 3158 A A No Deposit Transient-Party
## 3159 A A No Deposit Transient
## 3160 A A No Deposit Transient
## 3161 A A No Deposit Transient
## 3162 A C No Deposit Transient-Party
## 3163 A C No Deposit Transient-Party
## 3164 A A No Deposit Transient-Party
## 3165 A E No Deposit Transient
## 3166 A A No Deposit Transient-Party
## 3167 A C No Deposit Transient-Party
## 3168 A A No Deposit Transient-Party
## 3169 A A No Deposit Transient
## 3170 A A No Deposit Transient
## 3171 A A No Deposit Transient
## 3172 A D No Deposit Transient
## 3173 A C No Deposit Transient-Party
## 3174 A C No Deposit Transient-Party
## 3175 A A No Deposit Transient-Party
## 3176 A A No Deposit Transient-Party
## 3177 A A No Deposit Transient
## 3178 A A No Deposit Transient-Party
## 3179 A A No Deposit Transient-Party
## 3180 A A No Deposit Transient-Party
## 3181 A A No Deposit Transient
## 3182 A C No Deposit Transient-Party
## 3183 A A No Deposit Transient
## 3184 A E No Deposit Transient-Party
## 3185 A A No Deposit Transient-Party
## 3186 A C No Deposit Transient-Party
## 3187 A D No Deposit Transient-Party
## 3188 A A No Deposit Transient-Party
## 3189 A D No Deposit Transient-Party
## 3190 A E No Deposit Transient-Party
## 3191 A D No Deposit Transient-Party
## 3192 A D No Deposit Transient-Party
## 3193 A D No Deposit Transient-Party
## 3194 A G No Deposit Transient-Party
## 3195 A E No Deposit Transient-Party
## 3196 A A No Deposit Transient-Party
## 3197 C H No Deposit Transient-Party
## 3198 A D No Deposit Transient-Party
## 3199 A E No Deposit Transient-Party
## 3200 A D No Deposit Transient-Party
## 3201 A D No Deposit Transient-Party
## 3202 A D No Deposit Transient-Party
## 3203 A E No Deposit Transient-Party
## 3204 A E No Deposit Transient-Party
## 3205 A E No Deposit Transient-Party
## 3206 A E No Deposit Transient
## 3207 C H No Deposit Transient-Party
## 3208 D F No Deposit Transient
## 3209 A E No Deposit Transient
## 3210 A D No Deposit Transient-Party
## 3211 A D No Deposit Transient-Party
## 3212 A E No Deposit Transient-Party
## 3213 A A No Deposit Transient-Party
## 3214 A F No Deposit Transient-Party
## 3215 A D No Deposit Transient-Party
## 3216 A D No Deposit Transient-Party
## 3217 A D No Deposit Transient-Party
## 3218 A G No Deposit Transient-Party
## 3219 A D No Deposit Transient-Party
## 3220 A D No Deposit Transient-Party
## 3221 A D No Deposit Transient-Party
## 3222 D G No Deposit Transient
## 3223 C H No Deposit Transient-Party
## 3224 A G No Deposit Transient-Party
## 3225 A E No Deposit Transient-Party
## 3226 A E No Deposit Transient
## 3227 A D No Deposit Transient-Party
## 3228 A D No Deposit Transient-Party
## 3229 A D No Deposit Transient-Party
## 3230 D D No Deposit Transient
## 3231 A E No Deposit Transient-Party
## 3232 A G No Deposit Transient-Party
## 3233 A D No Deposit Transient
## 3234 A A No Deposit Transient
## 3235 E A No Deposit Transient
## 3236 E E No Deposit Transient
## 3237 A A No Deposit Transient
## 3238 A A No Deposit Transient
## 3239 A A No Deposit Transient
## 3240 D D No Deposit Transient
## 3241 A A No Deposit Transient
## 3242 D D No Deposit Transient
## 3243 A D No Deposit Transient
## 3244 A A No Deposit Transient
## 3245 D D No Deposit Transient
## 3246 A A No Deposit Transient
## 3247 A A No Deposit Transient
## 3248 A A No Deposit Transient
## 3249 A A No Deposit Transient
## 3250 A A No Deposit Transient
## 3251 A A No Deposit Transient
## 3252 D D No Deposit Transient
## 3253 D D No Deposit Transient
## 3254 A A No Deposit Transient
## 3255 E E No Deposit Contract
## 3256 A A No Deposit Transient
## 3257 A A No Deposit Transient
## 3258 A A No Deposit Transient
## 3259 D D No Deposit Transient
## 3260 A D No Deposit Transient
## 3261 A C No Deposit Transient
## 3262 A A No Deposit Transient
## 3263 A A No Deposit Transient
## 3264 A A No Deposit Transient
## 3265 A A No Deposit Transient
## 3266 G G No Deposit Transient
## 3267 A A No Deposit Transient
## 3268 A A No Deposit Transient
## 3269 E E No Deposit Transient
## 3270 A A No Deposit Transient
## 3271 A A No Deposit Transient
## 3272 A I No Deposit Transient
## 3273 A A No Deposit Transient
## 3274 E E No Deposit Transient
## 3275 A A No Deposit Transient
## 3276 A I No Deposit Transient
## 3277 E E No Deposit Transient
## 3278 E E No Deposit Transient
## 3279 E E No Deposit Transient
## 3280 E E No Deposit Transient
## 3281 E E No Deposit Transient
## 3282 E E No Deposit Transient
## 3283 D D No Deposit Transient
## 3284 D D No Deposit Transient
## 3285 D D No Deposit Transient
## 3286 D D No Deposit Transient
## 3287 F F No Deposit Transient
## 3288 A A No Deposit Transient
## 3289 A A No Deposit Transient
## 3290 E E No Deposit Transient
## 3291 D D No Deposit Transient
## 3292 A A No Deposit Transient
## 3293 A A No Deposit Transient
## 3294 D D No Deposit Transient
## 3295 E E No Deposit Transient
## 3296 A A No Deposit Transient
## 3297 F F No Deposit Transient
## 3298 A A No Deposit Transient
## 3299 D D No Deposit Transient
## 3300 A D No Deposit Transient
## 3301 A A No Deposit Transient
## 3302 D D No Deposit Transient
## 3303 A A No Deposit Contract
## 3304 A I No Deposit Transient-Party
## 3305 A A No Deposit Transient-Party
## 3306 A A No Deposit Transient-Party
## 3307 A A No Deposit Transient-Party
## 3308 A A No Deposit Transient-Party
## 3309 A A No Deposit Transient-Party
## 3310 A A No Deposit Transient-Party
## 3311 D D No Deposit Transient
## 3312 A A No Deposit Transient-Party
## 3313 A A No Deposit Transient-Party
## 3314 A A No Deposit Transient-Party
## 3315 A A No Deposit Transient-Party
## 3316 A A No Deposit Transient-Party
## 3317 A D No Deposit Transient
## 3318 A A No Deposit Transient-Party
## 3319 A A No Deposit Transient-Party
## 3320 A C No Deposit Transient-Party
## 3321 A A No Deposit Transient-Party
## 3322 A A No Deposit Transient-Party
## 3323 A A No Deposit Transient-Party
## 3324 A A No Deposit Transient-Party
## 3325 A A No Deposit Transient-Party
## 3326 A A No Deposit Transient-Party
## 3327 A A No Deposit Transient-Party
## 3328 A A No Deposit Transient-Party
## 3329 A A No Deposit Transient-Party
## 3330 A A No Deposit Transient-Party
## 3331 A A No Deposit Transient-Party
## 3332 A A No Deposit Transient-Party
## 3333 A A No Deposit Transient-Party
## 3334 A A No Deposit Transient-Party
## 3335 A A No Deposit Transient-Party
## 3336 A A No Deposit Transient-Party
## 3337 A D No Deposit Transient
## 3338 A D No Deposit Transient
## 3339 A A No Deposit Transient
## 3340 E E No Deposit Transient
## 3341 A A Non Refund Transient
## 3342 A A Non Refund Transient
## 3343 A A Non Refund Transient
## 3344 A A Non Refund Transient
## 3345 A A No Deposit Transient-Party
## 3346 A A No Deposit Transient-Party
## 3347 A A No Deposit Transient-Party
## 3348 A A No Deposit Transient-Party
## 3349 A A No Deposit Transient
## 3350 A D No Deposit Transient
## 3351 A A No Deposit Transient
## 3352 A A Non Refund Transient
## 3353 A A Non Refund Transient
## 3354 A A Non Refund Transient
## 3355 A A No Deposit Transient-Party
## 3356 A A No Deposit Transient-Party
## 3357 A A No Deposit Transient-Party
## 3358 A F No Deposit Transient-Party
## 3359 A A No Deposit Transient-Party
## 3360 A A No Deposit Transient-Party
## 3361 A A No Deposit Transient-Party
## 3362 A A No Deposit Transient-Party
## 3363 A A No Deposit Transient-Party
## 3364 A A No Deposit Transient-Party
## 3365 A A No Deposit Transient-Party
## 3366 A A No Deposit Transient-Party
## 3367 A A No Deposit Transient-Party
## 3368 A A No Deposit Transient-Party
## 3369 A D No Deposit Transient
## 3370 A A Non Refund Transient
## 3371 A A Non Refund Transient
## 3372 A A Non Refund Transient
## 3373 A A No Deposit Transient
## 3374 A A No Deposit Transient-Party
## 3375 A A No Deposit Transient-Party
## 3376 A A No Deposit Transient-Party
## 3377 A A No Deposit Transient-Party
## 3378 A A Non Refund Transient
## 3379 A A Non Refund Transient
## 3380 A A Non Refund Transient
## 3381 A C No Deposit Contract
## 3382 A D No Deposit Transient
## 3383 A D No Deposit Transient
## 3384 A A Non Refund Transient
## 3385 A A Non Refund Transient
## 3386 A A Non Refund Transient
## 3387 A A Non Refund Transient
## 3388 A A No Deposit Transient-Party
## 3389 A A No Deposit Transient-Party
## 3390 A A No Deposit Transient-Party
## 3391 A A No Deposit Transient-Party
## 3392 A A No Deposit Transient-Party
## 3393 A A No Deposit Transient-Party
## 3394 A A No Deposit Transient-Party
## 3395 A A No Deposit Transient-Party
## 3396 A A No Deposit Transient
## 3397 A A Non Refund Transient
## 3398 A A Non Refund Transient
## 3399 A A Non Refund Transient
## 3400 A A No Deposit Transient-Party
## 3401 A A No Deposit Transient-Party
## 3402 A A No Deposit Transient-Party
## 3403 A A No Deposit Transient-Party
## 3404 A A No Deposit Transient-Party
## 3405 A A No Deposit Transient-Party
## 3406 A A No Deposit Transient-Party
## 3407 A A No Deposit Transient-Party
## 3408 A A No Deposit Transient-Party
## 3409 A A Non Refund Transient
## 3410 A A Non Refund Transient
## 3411 F F No Deposit Transient
## 3412 A A No Deposit Transient-Party
## 3413 A A No Deposit Transient-Party
## 3414 A A No Deposit Transient-Party
## 3415 A A No Deposit Transient-Party
## 3416 A A No Deposit Transient-Party
## 3417 A A No Deposit Transient-Party
## 3418 A A Non Refund Transient
## 3419 A A Non Refund Transient
## 3420 A A Non Refund Transient
## 3421 A A No Deposit Transient-Party
## 3422 A A No Deposit Transient-Party
## 3423 A A No Deposit Transient-Party
## 3424 A A No Deposit Transient-Party
## 3425 A C No Deposit Transient-Party
## 3426 A A No Deposit Transient-Party
## 3427 A A No Deposit Transient
## 3428 E E No Deposit Transient
## 3429 D D No Deposit Transient
## 3430 D D No Deposit Transient
## 3431 A A No Deposit Transient
## 3432 A A No Deposit Transient
## 3433 A A No Deposit Transient
## 3434 A A No Deposit Transient
## 3435 A A No Deposit Transient
## 3436 D D No Deposit Transient
## 3437 A A No Deposit Transient
## 3438 A A No Deposit Transient
## 3439 A A No Deposit Transient
## 3440 A A No Deposit Transient
## 3441 D D No Deposit Transient
## 3442 E E No Deposit Transient
## 3443 E E No Deposit Transient
## 3444 D D No Deposit Transient
## 3445 A A No Deposit Transient
## 3446 A A No Deposit Transient
## 3447 E E No Deposit Transient
## 3448 F I No Deposit Transient
## 3449 A D No Deposit Transient
## 3450 A A No Deposit Transient-Party
## 3451 A A No Deposit Transient-Party
## 3452 A A No Deposit Transient-Party
## 3453 A A No Deposit Transient
## 3454 A A No Deposit Transient-Party
## 3455 A A No Deposit Transient-Party
## 3456 A A No Deposit Transient
## 3457 E E No Deposit Transient
## 3458 D D No Deposit Transient
## 3459 A A No Deposit Transient
## 3460 A A No Deposit Transient
## 3461 A A No Deposit Transient
## 3462 D D No Deposit Transient
## 3463 A A No Deposit Transient
## 3464 A I No Deposit Transient
## 3465 A A No Deposit Transient
## 3466 A A No Deposit Transient
## 3467 D E No Deposit Transient
## 3468 D D No Deposit Transient
## 3469 D D No Deposit Transient
## 3470 E E No Deposit Transient
## 3471 E E No Deposit Transient
## 3472 A I No Deposit Transient
## 3473 E E No Deposit Transient
## 3474 A F No Deposit Transient
## 3475 E E No Deposit Transient
## 3476 A A Non Refund Transient
## 3477 A A Non Refund Transient
## 3478 A A Non Refund Transient
## 3479 A A Non Refund Transient
## 3480 A A Non Refund Transient
## 3481 A A Non Refund Transient
## 3482 A A Non Refund Transient
## 3483 A A Non Refund Transient
## 3484 A A Non Refund Transient
## 3485 A A Non Refund Transient
## 3486 A A Non Refund Transient
## 3487 A A Non Refund Transient
## 3488 A A Non Refund Transient
## 3489 A A Non Refund Transient
## 3490 A A Non Refund Transient
## 3491 A A Non Refund Transient
## 3492 A A Non Refund Transient
## 3493 A A Non Refund Transient
## 3494 A A Non Refund Transient
## 3495 A A Non Refund Transient
## 3496 A A Non Refund Transient
## 3497 A A Non Refund Transient
## 3498 A A Non Refund Transient
## 3499 A A Non Refund Transient
## 3500 A A Non Refund Transient
## 3501 D D No Deposit Transient
## 3502 E E No Deposit Transient
## 3503 A A No Deposit Transient
## 3504 D D No Deposit Transient
## 3505 A A No Deposit Transient
## 3506 A A No Deposit Transient
## 3507 A A No Deposit Transient
## 3508 A A No Deposit Transient
## 3509 A A No Deposit Transient
## 3510 D D No Deposit Transient
## 3511 A D No Deposit Transient
## 3512 A A No Deposit Transient
## 3513 A A No Deposit Transient
## 3514 A A No Deposit Transient
## 3515 A A No Deposit Transient
## 3516 D D No Deposit Contract
## 3517 E E No Deposit Transient
## 3518 D D No Deposit Transient
## 3519 A A No Deposit Transient
## 3520 D D No Deposit Transient
## 3521 D D No Deposit Transient
## 3522 D D No Deposit Transient
## 3523 A A No Deposit Transient
## 3524 C C No Deposit Transient
## 3525 A A No Deposit Transient
## 3526 H H No Deposit Transient
## 3527 E E No Deposit Transient
## 3528 E E No Deposit Transient
## 3529 A A No Deposit Transient
## 3530 A A No Deposit Transient
## 3531 A A No Deposit Transient-Party
## 3532 A D No Deposit Transient
## 3533 A A No Deposit Transient
## 3534 A A No Deposit Transient-Party
## 3535 A A No Deposit Transient-Party
## 3536 A A No Deposit Transient-Party
## 3537 A A No Deposit Transient-Party
## 3538 A A No Deposit Transient
## 3539 A A No Deposit Transient-Party
## 3540 A A No Deposit Transient
## 3541 A A No Deposit Transient-Party
## 3542 A A No Deposit Transient-Party
## 3543 A D No Deposit Transient-Party
## 3544 E E No Deposit Transient-Party
## 3545 A A No Deposit Transient-Party
## 3546 A A No Deposit Transient-Party
## 3547 A A No Deposit Transient
## 3548 A A No Deposit Transient-Party
## 3549 A A No Deposit Transient-Party
## 3550 A A No Deposit Transient-Party
## 3551 A A No Deposit Transient-Party
## 3552 D D No Deposit Transient-Party
## 3553 D D No Deposit Transient-Party
## 3554 A D No Deposit Transient
## 3555 E E No Deposit Transient
## 3556 F F No Deposit Transient
## 3557 F F No Deposit Transient
## 3558 E E No Deposit Transient
## 3559 A A No Deposit Transient
## 3560 D D No Deposit Transient
## 3561 E E No Deposit Transient
## 3562 A D No Deposit Transient
## 3563 A A No Deposit Transient
## 3564 A D No Deposit Transient
## 3565 E E No Deposit Transient
## 3566 A A No Deposit Transient
## 3567 A A No Deposit Transient
## 3568 A C No Deposit Transient
## 3569 A D No Deposit Transient
## 3570 A A No Deposit Transient-Party
## 3571 C C No Deposit Transient-Party
## 3572 D D No Deposit Transient-Party
## 3573 G G No Deposit Transient-Party
## 3574 A A No Deposit Transient
## 3575 G G No Deposit Transient
## 3576 A A No Deposit Transient
## 3577 G G No Deposit Transient-Party
## 3578 G G No Deposit Transient
## 3579 A A No Deposit Transient
## 3580 A D No Deposit Transient-Party
## 3581 A A No Deposit Transient
## 3582 A A No Deposit Transient
## 3583 D D No Deposit Transient
## 3584 G G No Deposit Transient
## 3585 A A No Deposit Transient
## 3586 C C No Deposit Transient
## 3587 A D No Deposit Transient
## 3588 A A No Deposit Transient
## 3589 A A Non Refund Transient
## 3590 E F Non Refund Transient
## 3591 A A Non Refund Transient
## 3592 E F Non Refund Transient
## 3593 E F Non Refund Transient
## 3594 A A Non Refund Transient
## 3595 A A Non Refund Transient
## 3596 A A Non Refund Transient
## 3597 A A Non Refund Transient
## 3598 A A Non Refund Transient
## 3599 E F Non Refund Transient
## 3600 H H Non Refund Transient
## 3601 A A Non Refund Transient
## 3602 A A Non Refund Transient
## 3603 A A Non Refund Transient
## 3604 A A Non Refund Transient
## 3605 A A Non Refund Transient
## 3606 A A No Deposit Transient
## 3607 A A No Deposit Transient
## 3608 A A No Deposit Transient
## 3609 A A No Deposit Transient
## 3610 A A No Deposit Transient
## 3611 A A No Deposit Transient
## 3612 A A No Deposit Transient
## 3613 A A No Deposit Transient
## 3614 A A No Deposit Transient
## 3615 G G No Deposit Transient
## 3616 C C No Deposit Transient
## 3617 D D No Deposit Contract
## 3618 E E No Deposit Transient
## 3619 A A No Deposit Transient
## 3620 A A No Deposit Transient
## 3621 A A No Deposit Transient
## 3622 E E No Deposit Transient
## 3623 A A No Deposit Transient
## 3624 A A No Deposit Transient
## 3625 A A No Deposit Transient
## 3626 F F No Deposit Transient
## 3627 E E No Deposit Transient
## 3628 A A No Deposit Transient
## 3629 A D No Deposit Transient
## 3630 A A No Deposit Transient
## 3631 A D No Deposit Transient
## 3632 A A No Deposit Transient
## 3633 A A No Deposit Transient
## 3634 H H No Deposit Transient
## 3635 E E No Deposit Transient
## 3636 H H No Deposit Transient
## 3637 A A No Deposit Transient-Party
## 3638 A A No Deposit Transient-Party
## 3639 G G No Deposit Transient
## 3640 A A No Deposit Transient
## 3641 E E No Deposit Transient
## 3642 D D No Deposit Transient
## 3643 D D No Deposit Transient
## 3644 E E No Deposit Transient
## 3645 A A No Deposit Transient
## 3646 E E No Deposit Transient
## 3647 D D No Deposit Transient
## 3648 A D No Deposit Transient
## 3649 A A No Deposit Transient-Party
## 3650 A A No Deposit Transient-Party
## 3651 A C No Deposit Transient-Party
## 3652 A D No Deposit Transient-Party
## 3653 E E No Deposit Transient
## 3654 A C No Deposit Transient-Party
## 3655 A C No Deposit Transient-Party
## 3656 A A No Deposit Transient-Party
## 3657 A A No Deposit Transient-Party
## 3658 A A No Deposit Transient-Party
## 3659 A A No Deposit Transient-Party
## 3660 A A No Deposit Transient-Party
## 3661 A A No Deposit Transient-Party
## 3662 A A No Deposit Transient-Party
## 3663 A E No Deposit Transient-Party
## 3664 A A No Deposit Transient-Party
## 3665 A A No Deposit Transient-Party
## 3666 A A No Deposit Transient-Party
## 3667 A A No Deposit Transient-Party
## 3668 D D No Deposit Transient
## 3669 A A No Deposit Transient-Party
## 3670 A A No Deposit Transient-Party
## 3671 A A No Deposit Transient-Party
## 3672 A A No Deposit Transient-Party
## 3673 A C No Deposit Transient-Party
## 3674 A A No Deposit Transient-Party
## 3675 A A No Deposit Transient-Party
## 3676 A A No Deposit Transient-Party
## 3677 A A No Deposit Transient-Party
## 3678 A A No Deposit Transient-Party
## 3679 A A No Deposit Transient-Party
## 3680 A C No Deposit Transient-Party
## 3681 A C No Deposit Transient-Party
## 3682 A A No Deposit Transient-Party
## 3683 E E No Deposit Transient
## 3684 A A No Deposit Transient
## 3685 A A No Deposit Transient-Party
## 3686 A A No Deposit Transient
## 3687 C C No Deposit Transient
## 3688 A A No Deposit Transient-Party
## 3689 A A No Deposit Transient-Party
## 3690 A A No Deposit Transient-Party
## 3691 A E No Deposit Transient-Party
## 3692 A C No Deposit Transient-Party
## 3693 A A No Deposit Transient-Party
## 3694 A A No Deposit Transient-Party
## 3695 A A No Deposit Transient-Party
## 3696 A A No Deposit Transient-Party
## 3697 A A No Deposit Transient-Party
## 3698 A C No Deposit Transient-Party
## 3699 A D No Deposit Transient-Party
## 3700 A A No Deposit Transient-Party
## 3701 A A No Deposit Transient-Party
## 3702 A A No Deposit Transient-Party
## 3703 A B No Deposit Transient-Party
## 3704 A C No Deposit Transient
## 3705 A D No Deposit Transient-Party
## 3706 A A No Deposit Transient-Party
## 3707 A A No Deposit Transient-Party
## 3708 H H No Deposit Transient
## 3709 A C No Deposit Transient-Party
## 3710 D D No Deposit Transient
## 3711 H H No Deposit Transient
## 3712 D D No Deposit Transient
## 3713 E F No Deposit Transient
## 3714 F F No Deposit Transient
## 3715 A A No Deposit Transient
## 3716 E E No Deposit Transient
## 3717 A A No Deposit Transient
## 3718 G G No Deposit Transient
## 3719 G G No Deposit Transient
## 3720 A D No Deposit Transient
## 3721 D D No Deposit Transient
## 3722 E E No Deposit Transient
## 3723 D D No Deposit Transient
## 3724 A A No Deposit Transient
## 3725 E E No Deposit Transient
## 3726 D D No Deposit Transient
## 3727 D D No Deposit Transient
## 3728 C C No Deposit Transient
## 3729 D D No Deposit Transient
## 3730 D D No Deposit Transient
## 3731 D D No Deposit Transient
## 3732 E E No Deposit Transient
## 3733 D D No Deposit Transient
## 3734 D D No Deposit Transient
## 3735 A A No Deposit Transient-Party
## 3736 A A No Deposit Transient-Party
## 3737 A A No Deposit Transient-Party
## 3738 E E No Deposit Transient
## 3739 A D No Deposit Transient-Party
## 3740 H H No Deposit Transient-Party
## 3741 D D No Deposit Transient
## 3742 A D No Deposit Transient
## 3743 G G No Deposit Transient
## 3744 A A No Deposit Transient
## 3745 A D No Deposit Transient
## 3746 A A Non Refund Transient
## 3747 A A Non Refund Transient
## 3748 A A Non Refund Transient
## 3749 A A Non Refund Transient
## 3750 A A Non Refund Transient
## 3751 A A Non Refund Transient
## 3752 A A Non Refund Transient
## 3753 A A Non Refund Transient
## 3754 A A Non Refund Transient
## 3755 A A Non Refund Transient
## 3756 A A Non Refund Transient
## 3757 A A Non Refund Transient
## 3758 A A Non Refund Transient
## 3759 A A Non Refund Transient
## 3760 A A Non Refund Transient
## 3761 A A Non Refund Transient
## 3762 A A Non Refund Transient
## 3763 A A Non Refund Transient
## 3764 A A Non Refund Transient
## 3765 A A Non Refund Transient
## 3766 A A Non Refund Transient
## 3767 A A Non Refund Transient
## 3768 A A Non Refund Transient
## 3769 A A Non Refund Transient
## 3770 A A Non Refund Transient
## 3771 D E No Deposit Transient
## 3772 A A No Deposit Transient
## 3773 E E No Deposit Transient
## 3774 A A No Deposit Transient
## 3775 E E No Deposit Transient
## 3776 A A No Deposit Transient-Party
## 3777 A A No Deposit Transient-Party
## 3778 A A No Deposit Transient-Party
## 3779 A A No Deposit Transient-Party
## 3780 A A No Deposit Transient-Party
## 3781 E E No Deposit Transient
## 3782 E E No Deposit Transient
## 3783 A A No Deposit Transient
## 3784 A A No Deposit Transient
## 3785 A A No Deposit Transient
## 3786 A A No Deposit Transient
## 3787 D D No Deposit Transient
## 3788 D D No Deposit Transient
## 3789 E E No Deposit Transient
## 3790 G G No Deposit Transient
## 3791 A A No Deposit Transient
## 3792 A A No Deposit Transient
## 3793 A A No Deposit Transient
## 3794 A A No Deposit Transient
## 3795 A A No Deposit Transient
## 3796 A A No Deposit Transient
## 3797 A D No Deposit Transient
## 3798 A A No Deposit Transient
## 3799 E E No Deposit Transient
## 3800 A A No Deposit Transient
## 3801 E E No Deposit Transient
## 3802 A A No Deposit Transient
## 3803 D D No Deposit Transient
## 3804 E E No Deposit Transient
## 3805 E E No Deposit Transient
## 3806 A A No Deposit Transient
## 3807 D D No Deposit Transient
## 3808 A A No Deposit Transient
## 3809 D D No Deposit Transient
## 3810 A A No Deposit Transient
## 3811 A A No Deposit Transient
## 3812 G G No Deposit Transient
## 3813 A A No Deposit Transient
## 3814 A A No Deposit Transient
## 3815 A A No Deposit Transient
## 3816 A D No Deposit Transient
## 3817 D D No Deposit Transient
## 3818 D D No Deposit Transient
## 3819 A A No Deposit Contract
## 3820 A A No Deposit Transient
## 3821 A A No Deposit Transient
## 3822 D I No Deposit Transient
## 3823 A A No Deposit Transient
## 3824 A A No Deposit Transient
## 3825 A A No Deposit Transient
## 3826 E E No Deposit Transient
## 3827 A D No Deposit Transient-Party
## 3828 D D No Deposit Transient
## 3829 E E No Deposit Transient
## 3830 D D No Deposit Transient
## 3831 A A No Deposit Transient
## 3832 A A No Deposit Transient
## 3833 F F No Deposit Transient
## 3834 D D No Deposit Transient
## 3835 A A No Deposit Transient
## 3836 A E No Deposit Transient
## 3837 D D No Deposit Transient
## 3838 D D No Deposit Transient
## 3839 A D No Deposit Transient-Party
## 3840 E E No Deposit Transient
## 3841 A D No Deposit Transient-Party
## 3842 E E No Deposit Transient
## 3843 D D No Deposit Transient
## 3844 A D No Deposit Transient
## 3845 E F No Deposit Transient
## 3846 A A No Deposit Transient
## 3847 E E No Deposit Transient
## 3848 E E No Deposit Transient
## 3849 A D No Deposit Transient
## 3850 A A No Deposit Transient
## 3851 D D No Deposit Transient
## 3852 A D No Deposit Transient
## 3853 A D No Deposit Transient
## 3854 A A No Deposit Transient
## 3855 A A No Deposit Transient
## 3856 A A No Deposit Transient
## 3857 A A No Deposit Transient
## 3858 A A No Deposit Transient
## 3859 A A No Deposit Transient
## 3860 G G No Deposit Transient
## 3861 A A No Deposit Transient
## 3862 F F No Deposit Transient
## 3863 A A No Deposit Transient
## 3864 E E No Deposit Transient
## 3865 A D No Deposit Transient-Party
## 3866 A D No Deposit Transient-Party
## 3867 A D No Deposit Transient
## 3868 E E No Deposit Transient
## 3869 A D No Deposit Transient
## 3870 D D No Deposit Transient
## 3871 A A No Deposit Transient
## 3872 A A No Deposit Transient
## 3873 A A No Deposit Transient
## 3874 E E No Deposit Transient
## 3875 F F No Deposit Transient
## 3876 F F No Deposit Transient
## 3877 F F No Deposit Transient
## 3878 A A No Deposit Transient
## 3879 A A No Deposit Transient-Party
## 3880 A A No Deposit Transient-Party
## 3881 A A No Deposit Transient
## 3882 E E No Deposit Transient
## 3883 A A No Deposit Transient
## 3884 G G No Deposit Transient
## 3885 G G No Deposit Transient
## 3886 A A No Deposit Transient
## 3887 A A No Deposit Transient
## 3888 A C No Deposit Transient
## 3889 A D No Deposit Transient
## 3890 A D No Deposit Transient-Party
## 3891 A D No Deposit Transient-Party
## 3892 A A No Deposit Transient
## 3893 A A No Deposit Transient
## 3894 E E No Deposit Transient
## 3895 A A No Deposit Transient
## 3896 D D No Deposit Transient-Party
## 3897 D D No Deposit Transient-Party
## 3898 D D No Deposit Transient-Party
## 3899 D D No Deposit Transient-Party
## 3900 D D No Deposit Transient-Party
## 3901 D D No Deposit Transient-Party
## 3902 C C No Deposit Transient
## 3903 D D No Deposit Transient-Party
## 3904 D D No Deposit Transient-Party
## 3905 D D No Deposit Transient-Party
## 3906 D D No Deposit Transient-Party
## 3907 H H No Deposit Transient
## 3908 D D No Deposit Transient-Party
## 3909 D D No Deposit Transient-Party
## 3910 D D No Deposit Transient-Party
## 3911 D D No Deposit Transient-Party
## 3912 D D No Deposit Transient-Party
## 3913 D D No Deposit Transient-Party
## 3914 D D No Deposit Transient-Party
## 3915 D D No Deposit Transient-Party
## 3916 D D No Deposit Transient-Party
## 3917 D D No Deposit Transient-Party
## 3918 D D No Deposit Transient-Party
## 3919 D D No Deposit Transient-Party
## 3920 D D No Deposit Transient-Party
## 3921 A A No Deposit Transient
## 3922 A A No Deposit Transient
## 3923 A A No Deposit Transient
## 3924 A A No Deposit Transient
## 3925 E E No Deposit Transient
## 3926 E E No Deposit Transient
## 3927 A A No Deposit Transient
## 3928 A A No Deposit Transient
## 3929 D D No Deposit Transient
## 3930 D D No Deposit Transient
## 3931 D D No Deposit Transient
## 3932 A A No Deposit Transient-Party
## 3933 A A No Deposit Transient-Party
## 3934 A A No Deposit Transient-Party
## 3935 A A No Deposit Transient-Party
## 3936 A A No Deposit Transient-Party
## 3937 A A No Deposit Transient-Party
## 3938 G G No Deposit Transient
## 3939 D D No Deposit Transient
## 3940 D G No Deposit Transient
## 3941 E E No Deposit Transient
## 3942 A A No Deposit Transient-Party
## 3943 A A No Deposit Transient-Party
## 3944 A A No Deposit Transient-Party
## 3945 A A No Deposit Transient-Party
## 3946 A A No Deposit Transient-Party
## 3947 A A No Deposit Transient-Party
## 3948 A A No Deposit Transient-Party
## 3949 A A No Deposit Transient-Party
## 3950 A A No Deposit Transient-Party
## 3951 A A No Deposit Transient-Party
## 3952 A A No Deposit Transient-Party
## 3953 A A No Deposit Transient-Party
## 3954 A A No Deposit Transient
## 3955 A A No Deposit Transient-Party
## 3956 A A No Deposit Transient-Party
## 3957 A A No Deposit Transient-Party
## 3958 A A No Deposit Transient-Party
## 3959 A A No Deposit Transient-Party
## 3960 A A No Deposit Transient-Party
## 3961 A A No Deposit Transient
## 3962 A D No Deposit Transient
## 3963 E E No Deposit Transient
## 3964 E E No Deposit Transient
## 3965 A A No Deposit Transient
## 3966 A A No Deposit Transient
## 3967 A D No Deposit Transient
## 3968 A A No Deposit Transient
## 3969 A A Non Refund Transient
## 3970 A A Non Refund Transient
## 3971 A A Non Refund Transient
## 3972 A A No Deposit Transient
## 3973 A A Non Refund Transient
## 3974 A A Non Refund Transient
## 3975 A A Non Refund Transient
## 3976 H H No Deposit Transient
## 3977 A A Non Refund Transient
## 3978 A A Non Refund Transient
## 3979 A A Non Refund Transient
## 3980 A A Non Refund Transient
## 3981 A A Non Refund Transient
## 3982 A A Non Refund Transient
## 3983 A A Non Refund Transient
## 3984 E E No Deposit Transient
## 3985 E E No Deposit Transient
## 3986 A A Non Refund Transient
## 3987 A A Non Refund Transient
## 3988 D D No Deposit Transient
## 3989 A A No Deposit Transient-Party
## 3990 A A Non Refund Transient
## 3991 A A Non Refund Transient
## 3992 A A Non Refund Transient
## 3993 A A No Deposit Transient-Party
## 3994 A C No Deposit Transient-Party
## 3995 A A No Deposit Transient-Party
## 3996 A A No Deposit Transient-Party
## 3997 A A No Deposit Transient-Party
## 3998 A A No Deposit Transient-Party
## 3999 A A Non Refund Transient
## 4000 A A Non Refund Transient
## 4001 A A Non Refund Transient
## 4002 A A Non Refund Transient
## 4003 A A Non Refund Transient
## 4004 A A Non Refund Transient
## 4005 A A No Deposit Transient-Party
## 4006 A A No Deposit Transient-Party
## 4007 A A No Deposit Transient-Party
## 4008 A A No Deposit Transient-Party
## 4009 A A No Deposit Transient-Party
## 4010 A A No Deposit Transient-Party
## 4011 A A No Deposit Transient-Party
## 4012 A A No Deposit Transient
## 4013 A A Non Refund Transient
## 4014 A A Non Refund Transient
## 4015 A A Non Refund Transient
## 4016 A A Non Refund Transient
## 4017 A A Non Refund Transient
## 4018 A A Non Refund Transient
## 4019 A A Non Refund Transient
## 4020 A A No Deposit Transient-Party
## 4021 A A No Deposit Transient-Party
## 4022 A A No Deposit Transient-Party
## 4023 A A No Deposit Transient-Party
## 4024 A A No Deposit Transient-Party
## 4025 A A No Deposit Transient-Party
## 4026 A A No Deposit Transient-Party
## 4027 A A No Deposit Transient-Party
## 4028 A A Non Refund Transient
## 4029 A A Non Refund Transient
## 4030 A A Non Refund Transient
## 4031 A A Non Refund Transient
## 4032 A A Non Refund Transient
## 4033 A A No Deposit Transient-Party
## 4034 A A No Deposit Transient-Party
## 4035 A A No Deposit Transient-Party
## 4036 A A No Deposit Transient-Party
## 4037 A A No Deposit Transient-Party
## 4038 A A No Deposit Transient-Party
## 4039 A A No Deposit Transient-Party
## 4040 A A Non Refund Transient
## 4041 A A Non Refund Transient
## 4042 A A Non Refund Transient
## 4043 A A No Deposit Transient-Party
## 4044 A A Non Refund Transient
## 4045 A A Non Refund Transient
## 4046 A A Non Refund Transient
## 4047 A A Non Refund Transient
## 4048 A A Non Refund Transient
## 4049 A A Non Refund Transient
## 4050 A A Non Refund Transient
## 4051 A A Non Refund Transient
## 4052 A A No Deposit Transient-Party
## 4053 A A No Deposit Transient-Party
## 4054 A A No Deposit Transient-Party
## 4055 A A No Deposit Transient-Party
## 4056 A A No Deposit Transient-Party
## 4057 A A No Deposit Transient-Party
## 4058 A A No Deposit Transient-Party
## 4059 A A No Deposit Transient
## 4060 A A Non Refund Transient
## 4061 A A Non Refund Transient
## 4062 A A Non Refund Transient
## 4063 A A Non Refund Transient
## 4064 A A Non Refund Transient
## 4065 A A No Deposit Transient-Party
## 4066 A A Non Refund Transient
## 4067 A A Non Refund Transient
## 4068 A A Non Refund Transient
## 4069 A A No Deposit Transient-Party
## 4070 A C No Deposit Transient-Party
## 4071 A A No Deposit Transient-Party
## 4072 A A No Deposit Transient-Party
## 4073 A A No Deposit Transient-Party
## 4074 A A No Deposit Transient-Party
## 4075 A A Non Refund Transient
## 4076 A A Non Refund Transient
## 4077 D D No Deposit Transient
## 4078 A A Non Refund Transient
## 4079 A A Non Refund Transient
## 4080 A A Non Refund Transient
## 4081 A A No Deposit Transient-Party
## 4082 A A No Deposit Transient-Party
## 4083 A A No Deposit Transient-Party
## 4084 A A No Deposit Transient-Party
## 4085 A A No Deposit Transient-Party
## 4086 A A Non Refund Transient
## 4087 A A Non Refund Transient
## 4088 A A Non Refund Transient
## 4089 A A No Deposit Transient-Party
## 4090 A A Non Refund Transient
## 4091 A A Non Refund Transient
## 4092 A A Non Refund Transient
## 4093 A A No Deposit Transient
## 4094 A A No Deposit Transient-Party
## 4095 A C No Deposit Transient-Party
## 4096 A A No Deposit Transient-Party
## 4097 A A No Deposit Transient-Party
## 4098 A A No Deposit Transient-Party
## 4099 A A No Deposit Transient-Party
## 4100 A A No Deposit Transient-Party
## 4101 A A Non Refund Transient
## 4102 A A Non Refund Transient
## 4103 A A Non Refund Transient
## 4104 A A Non Refund Transient
## 4105 A A No Deposit Transient
## 4106 A A No Deposit Transient
## 4107 D D No Deposit Transient
## 4108 F F No Deposit Transient
## 4109 A E No Deposit Transient
## 4110 G G No Deposit Transient
## 4111 A A No Deposit Transient
## 4112 A D No Deposit Transient
## 4113 E E No Deposit Transient
## 4114 A A No Deposit Transient
## 4115 D D No Deposit Transient
## 4116 G G No Deposit Transient
## 4117 A A No Deposit Transient
## 4118 A D No Deposit Transient
## 4119 A D No Deposit Transient
## 4120 A D No Deposit Transient
## 4121 A A No Deposit Transient
## 4122 D D No Deposit Transient
## 4123 A A No Deposit Transient
## 4124 H H No Deposit Transient
## 4125 H H No Deposit Transient
## 4126 D D No Deposit Transient
## 4127 A C No Deposit Transient
## 4128 P P No Deposit Transient
## 4129 A A No Deposit Transient
## 4130 A A No Deposit Transient-Party
## 4131 A A No Deposit Transient-Party
## 4132 G G No Deposit Transient
## 4133 E E No Deposit Transient
## 4134 E E No Deposit Transient
## 4135 G G No Deposit Transient
## 4136 D D No Deposit Transient
## 4137 A A No Deposit Transient
## 4138 E E No Deposit Transient
## 4139 D D No Deposit Transient
## 4140 E F No Deposit Transient
## 4141 G G No Deposit Transient
## 4142 E E No Deposit Transient
## 4143 A A No Deposit Transient
## 4144 H H No Deposit Transient
## 4145 F F No Deposit Transient
## 4146 E E No Deposit Transient
## 4147 A D No Deposit Transient
## 4148 E E No Deposit Transient
## 4149 A D No Deposit Transient
## 4150 A C No Deposit Transient
## 4151 A A No Deposit Transient
## 4152 E E No Deposit Transient
## 4153 A A No Deposit Transient
## 4154 A A No Deposit Transient
## 4155 A A No Deposit Transient
## 4156 E E No Deposit Transient
## 4157 A D No Deposit Transient
## 4158 A A No Deposit Transient
## 4159 D D No Deposit Transient
## 4160 D D No Deposit Transient
## 4161 D D No Deposit Transient
## 4162 E E No Deposit Transient-Party
## 4163 E E No Deposit Transient-Party
## 4164 D D No Deposit Transient
## 4165 H H No Deposit Transient
## 4166 H H No Deposit Transient
## 4167 D D No Deposit Transient
## 4168 E E No Deposit Transient
## 4169 A A No Deposit Transient
## 4170 A A No Deposit Transient
## 4171 E E No Deposit Transient
## 4172 A A No Deposit Contract
## 4173 A A No Deposit Contract
## 4174 E E No Deposit Transient
## 4175 G G No Deposit Transient
## 4176 A D No Deposit Transient
## 4177 G G No Deposit Transient
## 4178 A A No Deposit Transient
## 4179 A C No Deposit Transient
## 4180 A C No Deposit Transient
## 4181 A A No Deposit Transient
## 4182 G G No Deposit Transient
## 4183 E E No Deposit Transient
## 4184 A A No Deposit Transient
## 4185 A A No Deposit Transient
## 4186 G G No Deposit Transient
## 4187 A A No Deposit Transient
## 4188 G G No Deposit Transient
## 4189 A A Non Refund Transient
## 4190 A A Non Refund Transient
## 4191 A A No Deposit Transient
## 4192 E E No Deposit Transient
## 4193 A A Non Refund Transient
## 4194 A A Non Refund Transient
## 4195 A A Non Refund Transient
## 4196 A A Non Refund Transient
## 4197 A A Non Refund Transient
## 4198 A A Non Refund Transient
## 4199 A A Non Refund Transient
## 4200 A A Non Refund Transient
## 4201 A A Non Refund Transient
## 4202 A A Non Refund Transient
## 4203 A A No Deposit Transient
## 4204 A A Non Refund Transient
## 4205 A A Non Refund Transient
## 4206 A A Non Refund Transient
## 4207 A A Non Refund Transient
## 4208 A A Non Refund Transient
## 4209 A A Non Refund Transient
## 4210 A A Non Refund Transient
## 4211 A A Non Refund Transient
## 4212 A A Non Refund Transient
## 4213 A A Non Refund Transient
## 4214 A A Non Refund Transient
## 4215 A A No Deposit Transient
## 4216 A A Non Refund Transient
## 4217 A A Non Refund Transient
## 4218 A A Non Refund Transient
## 4219 A A Non Refund Transient
## 4220 A A Non Refund Transient
## 4221 A A Non Refund Transient
## 4222 A A No Deposit Transient
## 4223 A A No Deposit Transient
## 4224 A A No Deposit Transient
## 4225 A A No Deposit Transient
## 4226 E E No Deposit Transient
## 4227 A D No Deposit Transient
## 4228 A A No Deposit Transient
## 4229 A A No Deposit Transient-Party
## 4230 A C No Deposit Transient-Party
## 4231 A A No Deposit Transient-Party
## 4232 A A No Deposit Transient
## 4233 A A No Deposit Transient
## 4234 A C No Deposit Transient-Party
## 4235 A A No Deposit Transient-Party
## 4236 A A No Deposit Transient-Party
## 4237 A A No Deposit Transient-Party
## 4238 A A No Deposit Transient-Party
## 4239 A A No Deposit Transient-Party
## 4240 A A No Deposit Transient-Party
## 4241 A C No Deposit Transient-Party
## 4242 A A No Deposit Transient-Party
## 4243 A A No Deposit Transient-Party
## 4244 A A No Deposit Transient-Party
## 4245 A A No Deposit Transient-Party
## 4246 A C No Deposit Transient-Party
## 4247 A A No Deposit Transient
## 4248 D D No Deposit Transient
## 4249 A A No Deposit Transient
## 4250 A A No Deposit Transient
## 4251 A A No Deposit Transient-Party
## 4252 A C No Deposit Transient-Party
## 4253 A A No Deposit Transient-Party
## 4254 A A No Deposit Transient-Party
## 4255 A A No Deposit Transient
## 4256 A C No Deposit Transient-Party
## 4257 A A No Deposit Transient-Party
## 4258 A A No Deposit Transient
## 4259 A A No Deposit Transient
## 4260 A A No Deposit Transient-Party
## 4261 A A No Deposit Transient-Party
## 4262 A A No Deposit Transient-Party
## 4263 C C No Deposit Transient
## 4264 A A No Deposit Transient
## 4265 A A No Deposit Transient
## 4266 A A No Deposit Transient
## 4267 A A No Deposit Transient
## 4268 G G No Deposit Transient
## 4269 A D No Deposit Transient
## 4270 A A No Deposit Transient
## 4271 A A No Deposit Transient
## 4272 A A No Deposit Transient
## 4273 A A No Deposit Transient
## 4274 A A No Deposit Transient
## 4275 A A No Deposit Transient
## 4276 A D No Deposit Transient
## 4277 A A No Deposit Transient
## 4278 E E No Deposit Transient-Party
## 4279 E E No Deposit Transient-Party
## 4280 E E No Deposit Transient-Party
## 4281 E E No Deposit Transient-Party
## 4282 A A No Deposit Transient
## 4283 E E No Deposit Transient-Party
## 4284 E E No Deposit Transient-Party
## 4285 A A No Deposit Transient-Party
## 4286 A A No Deposit Transient
## 4287 A A No Deposit Transient-Party
## 4288 A A No Deposit Transient
## 4289 A A No Deposit Transient
## 4290 A A Non Refund Transient
## 4291 A A Non Refund Transient
## 4292 A A Non Refund Transient
## 4293 A A No Deposit Transient
## 4294 A A Non Refund Transient
## 4295 A A Non Refund Transient
## 4296 A A Non Refund Transient
## 4297 A A Non Refund Transient
## 4298 A A Non Refund Transient
## 4299 A A Non Refund Transient
## 4300 A A Non Refund Transient
## 4301 A A Non Refund Transient
## 4302 A A Non Refund Transient
## 4303 A A Non Refund Transient
## 4304 A A Non Refund Transient
## 4305 A A Non Refund Transient
## 4306 A A Non Refund Transient
## 4307 A A Non Refund Transient
## 4308 A A Non Refund Transient
## 4309 A A Non Refund Transient
## 4310 A A Non Refund Transient
## 4311 D D No Deposit Transient
## 4312 A A No Deposit Transient
## 4313 A D No Deposit Transient
## 4314 A D No Deposit Transient
## 4315 F F No Deposit Transient
## 4316 A A No Deposit Transient
## 4317 A D No Deposit Transient
## 4318 A D No Deposit Transient
## 4319 A D No Deposit Transient
## 4320 A A No Deposit Transient
## 4321 E E No Deposit Transient
## 4322 A A No Deposit Transient
## 4323 A A No Deposit Transient
## 4324 A A Non Refund Transient
## 4325 A A Non Refund Transient
## 4326 A A Non Refund Transient
## 4327 A A Non Refund Transient
## 4328 A A Non Refund Transient
## 4329 A A Non Refund Transient
## 4330 A A Non Refund Transient
## 4331 A A Non Refund Transient
## 4332 A A Non Refund Transient
## 4333 A A Non Refund Transient
## 4334 A A Non Refund Transient
## 4335 A A Non Refund Transient
## 4336 A A Non Refund Transient
## 4337 A A Non Refund Transient
## 4338 A A Non Refund Transient
## 4339 A A No Deposit Transient
## 4340 E E No Deposit Transient-Party
## 4341 E E No Deposit Transient-Party
## 4342 E E No Deposit Transient-Party
## 4343 E E No Deposit Transient-Party
## 4344 E E No Deposit Transient-Party
## 4345 A A No Deposit Transient
## 4346 E E No Deposit Transient-Party
## 4347 E E No Deposit Transient-Party
## 4348 E E No Deposit Transient-Party
## 4349 E E No Deposit Transient-Party
## 4350 A A No Deposit Transient
## 4351 E E No Deposit Transient-Party
## 4352 E E No Deposit Transient-Party
## 4353 A A No Deposit Transient
## 4354 A A No Deposit Transient
## 4355 A D No Deposit Transient
## 4356 D D No Deposit Transient
## 4357 D D No Deposit Transient
## 4358 A A No Deposit Transient-Party
## 4359 A A No Deposit Transient-Party
## 4360 A A No Deposit Transient-Party
## 4361 A A No Deposit Transient-Party
## 4362 A A No Deposit Transient-Party
## 4363 A A No Deposit Transient-Party
## 4364 A D No Deposit Transient
## 4365 A A No Deposit Transient
## 4366 E E No Deposit Transient
## 4367 A A No Deposit Transient
## 4368 A A No Deposit Transient
## 4369 D D No Deposit Transient
## 4370 D D No Deposit Transient
## 4371 A A No Deposit Contract
## 4372 A A No Deposit Transient-Party
## 4373 A A No Deposit Transient-Party
## 4374 A A No Deposit Transient-Party
## 4375 A A No Deposit Transient-Party
## 4376 A A No Deposit Transient-Party
## 4377 A A No Deposit Transient-Party
## 4378 A A No Deposit Transient
## 4379 A A No Deposit Transient
## 4380 D D No Deposit Transient
## 4381 D D No Deposit Transient
## 4382 D D No Deposit Transient
## 4383 A A No Deposit Transient
## 4384 A A No Deposit Transient-Party
## 4385 A A No Deposit Transient-Party
## 4386 A A No Deposit Transient-Party
## 4387 A A No Deposit Transient-Party
## 4388 A A No Deposit Transient-Party
## 4389 A A No Deposit Transient-Party
## 4390 A A No Deposit Transient
## 4391 A A No Deposit Transient-Party
## 4392 A A No Deposit Transient
## 4393 A A No Deposit Transient
## 4394 A A No Deposit Transient
## 4395 G G No Deposit Transient
## 4396 D D No Deposit Transient
## 4397 A A No Deposit Transient
## 4398 A A No Deposit Transient
## 4399 A A Non Refund Transient-Party
## 4400 A A Non Refund Transient-Party
## 4401 A A Non Refund Transient-Party
## 4402 A A No Deposit Contract
## 4403 A A No Deposit Contract
## 4404 A A No Deposit Contract
## 4405 A A No Deposit Contract
## 4406 A A No Deposit Contract
## 4407 A A No Deposit Transient
## 4408 A A No Deposit Transient
## 4409 A A No Deposit Transient
## 4410 D D No Deposit Transient
## 4411 A A No Deposit Transient
## 4412 A A No Deposit Transient
## 4413 A A No Deposit Transient
## 4414 E E No Deposit Transient
## 4415 A A No Deposit Transient
## 4416 E E No Deposit Transient
## 4417 A A No Deposit Transient
## 4418 E E No Deposit Transient
## 4419 A A No Deposit Transient
## 4420 A A No Deposit Transient
## 4421 A A No Deposit Transient
## 4422 D D No Deposit Transient
## 4423 E E No Deposit Transient
## 4424 A A No Deposit Transient
## 4425 E E No Deposit Transient
## 4426 A D No Deposit Transient
## 4427 E E No Deposit Transient
## 4428 F F No Deposit Transient
## 4429 A D No Deposit Transient-Party
## 4430 A A No Deposit Transient
## 4431 A A No Deposit Transient
## 4432 A A No Deposit Transient-Party
## 4433 A A No Deposit Transient
## 4434 A A No Deposit Transient
## 4435 A A No Deposit Transient
## 4436 A A No Deposit Transient
## 4437 D D No Deposit Transient
## 4438 A A No Deposit Transient
## 4439 G G No Deposit Transient
## 4440 A A No Deposit Transient
## 4441 A A No Deposit Transient
## 4442 A A No Deposit Transient
## 4443 A A No Deposit Transient
## 4444 G G No Deposit Transient
## 4445 A D No Deposit Transient
## 4446 A A No Deposit Transient
## 4447 A A No Deposit Transient
## 4448 G G No Deposit Transient
## 4449 D D No Deposit Transient
## 4450 E E No Deposit Transient
## 4451 A A No Deposit Transient
## 4452 A A No Deposit Transient
## 4453 A A No Deposit Transient
## 4454 A A No Deposit Transient
## 4455 A A No Deposit Transient
## 4456 C G No Deposit Transient
## 4457 C C No Deposit Transient
## 4458 A A No Deposit Transient
## 4459 A A No Deposit Transient
## 4460 A A No Deposit Transient
## 4461 A A No Deposit Transient
## 4462 A A No Deposit Transient
## 4463 E E No Deposit Transient
## 4464 A A No Deposit Transient
## 4465 G G No Deposit Transient
## 4466 A A No Deposit Transient
## 4467 A A No Deposit Transient
## 4468 A A No Deposit Transient
## 4469 E E No Deposit Contract
## 4470 A A No Deposit Transient
## 4471 A A No Deposit Transient
## 4472 A A No Deposit Transient
## 4473 A A No Deposit Transient
## 4474 A A No Deposit Transient
## 4475 A A No Deposit Transient
## 4476 A A No Deposit Transient
## 4477 A A No Deposit Transient
## 4478 D D No Deposit Transient
## 4479 A A No Deposit Transient
## 4480 D D No Deposit Transient
## 4481 A A No Deposit Transient
## 4482 D D No Deposit Transient
## 4483 A A No Deposit Transient
## 4484 E E No Deposit Transient
## 4485 A A No Deposit Transient
## 4486 A A No Deposit Transient
## 4487 A D No Deposit Transient
## 4488 H H No Deposit Transient
## 4489 A A No Deposit Transient
## 4490 A D No Deposit Transient
## 4491 C C No Deposit Transient
## 4492 H H No Deposit Transient
## 4493 H H No Deposit Transient
## 4494 E E No Deposit Transient
## 4495 A A No Deposit Transient
## 4496 A A No Deposit Transient
## 4497 A A No Deposit Transient
## 4498 A A No Deposit Transient
## 4499 A A No Deposit Transient
## 4500 A A No Deposit Transient
## 4501 E E No Deposit Transient
## 4502 D D No Deposit Transient
## 4503 D D No Deposit Transient
## 4504 E E No Deposit Transient
## 4505 D D No Deposit Transient
## 4506 D D No Deposit Transient
## 4507 D D No Deposit Transient
## 4508 D D No Deposit Transient
## 4509 A A No Deposit Transient
## 4510 A A No Deposit Transient
## 4511 A A No Deposit Transient
## 4512 A A No Deposit Transient
## 4513 A A No Deposit Transient
## 4514 A A No Deposit Transient
## 4515 A A No Deposit Transient
## 4516 D D No Deposit Transient
## 4517 A A No Deposit Transient
## 4518 A A No Deposit Transient
## 4519 E E No Deposit Transient
## 4520 E E No Deposit Transient
## 4521 E E No Deposit Transient
## 4522 D D No Deposit Transient
## 4523 E E No Deposit Transient
## 4524 A H No Deposit Transient
## 4525 E E No Deposit Transient
## 4526 E E No Deposit Transient
## 4527 E E No Deposit Transient
## 4528 D D No Deposit Transient
## 4529 E E No Deposit Transient
## 4530 A I No Deposit Transient
## 4531 A A No Deposit Transient
## 4532 D D No Deposit Transient
## 4533 A A No Deposit Transient-Party
## 4534 A A No Deposit Transient-Party
## 4535 A A No Deposit Transient-Party
## 4536 A C No Deposit Transient-Party
## 4537 A A No Deposit Transient-Party
## 4538 A A No Deposit Transient-Party
## 4539 A A No Deposit Transient-Party
## 4540 A A No Deposit Transient-Party
## 4541 A A No Deposit Transient-Party
## 4542 A A No Deposit Transient-Party
## 4543 E E No Deposit Transient
## 4544 D D No Deposit Transient
## 4545 H H No Deposit Transient
## 4546 A A No Deposit Transient
## 4547 A A No Deposit Transient-Party
## 4548 A A No Deposit Transient-Party
## 4549 A A No Deposit Transient-Party
## 4550 A A No Deposit Transient-Party
## 4551 A A No Deposit Transient-Party
## 4552 A A No Deposit Transient-Party
## 4553 A C No Deposit Transient-Party
## 4554 A C No Deposit Transient-Party
## 4555 C C No Deposit Transient
## 4556 A A No Deposit Transient-Party
## 4557 A A No Deposit Transient-Party
## 4558 A A No Deposit Transient-Party
## 4559 G G No Deposit Transient
## 4560 C C No Deposit Transient
## 4561 E E No Deposit Transient
## 4562 A A No Deposit Transient-Party
## 4563 A A No Deposit Transient-Party
## 4564 A A No Deposit Transient-Party
## 4565 A A No Deposit Transient-Party
## 4566 A A No Deposit Transient-Party
## 4567 A A No Deposit Transient-Party
## 4568 A A No Deposit Transient-Party
## 4569 A A No Deposit Transient-Party
## 4570 D D No Deposit Transient
## 4571 G G No Deposit Transient
## 4572 A A No Deposit Transient-Party
## 4573 A A No Deposit Transient-Party
## 4574 A A No Deposit Transient-Party
## 4575 A A No Deposit Transient-Party
## 4576 A A No Deposit Transient-Party
## 4577 A A No Deposit Transient-Party
## 4578 A A No Deposit Transient-Party
## 4579 D D No Deposit Transient
## 4580 A A No Deposit Transient-Party
## 4581 A A No Deposit Transient-Party
## 4582 A C No Deposit Transient-Party
## 4583 A C No Deposit Transient-Party
## 4584 A A No Deposit Transient-Party
## 4585 A A No Deposit Transient-Party
## 4586 A A No Deposit Transient-Party
## 4587 A A No Deposit Transient-Party
## 4588 G G No Deposit Transient
## 4589 A A No Deposit Transient-Party
## 4590 A A No Deposit Transient-Party
## 4591 A A No Deposit Transient-Party
## 4592 A A No Deposit Transient
## 4593 A A No Deposit Transient-Party
## 4594 A A No Deposit Transient-Party
## 4595 A A No Deposit Transient-Party
## 4596 A A No Deposit Transient-Party
## 4597 A C No Deposit Transient-Party
## 4598 A A No Deposit Transient-Party
## 4599 A A No Deposit Transient
## 4600 A A No Deposit Transient-Party
## 4601 A C No Deposit Transient-Party
## 4602 A C No Deposit Transient-Party
## 4603 A A No Deposit Transient-Party
## 4604 A A No Deposit Transient-Party
## 4605 A A Non Refund Transient
## 4606 A A Non Refund Transient
## 4607 A A Non Refund Transient
## 4608 A A Non Refund Transient
## 4609 A A Non Refund Transient
## 4610 A A Non Refund Transient
## 4611 A I No Deposit Transient-Party
## 4612 D D No Deposit Transient
## 4613 A A Non Refund Transient
## 4614 A A Non Refund Transient
## 4615 A A Non Refund Transient
## 4616 A A Non Refund Transient
## 4617 A A Non Refund Transient
## 4618 A A Non Refund Transient
## 4619 A A Non Refund Transient
## 4620 A A Non Refund Transient
## 4621 A A No Deposit Transient
## 4622 A A Non Refund Transient
## 4623 A A Non Refund Transient
## 4624 A A Non Refund Transient
## 4625 A A Non Refund Transient
## 4626 A A Non Refund Transient
## 4627 A A Non Refund Transient
## 4628 D D No Deposit Transient
## 4629 A A Non Refund Transient
## 4630 A A Non Refund Transient
## 4631 A A Non Refund Transient
## 4632 A A Non Refund Transient
## 4633 A A Non Refund Transient
## 4634 A A Non Refund Transient
## 4635 D D No Deposit Transient
## 4636 A A Non Refund Transient
## 4637 A A Non Refund Transient
## 4638 A A Non Refund Transient
## 4639 A A Non Refund Transient
## 4640 D D No Deposit Transient
## 4641 A A Non Refund Transient
## 4642 A A Non Refund Transient
## 4643 A A Non Refund Transient
## 4644 A A Non Refund Transient
## 4645 A A Non Refund Transient
## 4646 A A Non Refund Transient
## 4647 A I No Deposit Transient-Party
## 4648 A A Non Refund Transient
## 4649 A A Non Refund Transient
## 4650 A A Non Refund Transient
## 4651 A A Non Refund Transient
## 4652 D D No Deposit Transient
## 4653 G G No Deposit Transient
## 4654 A A No Deposit Transient
## 4655 D D No Deposit Transient
## 4656 A A No Deposit Transient
## 4657 A A No Deposit Transient
## 4658 A A No Deposit Transient
## 4659 A A No Deposit Transient
## 4660 A A No Deposit Transient
## 4661 A A No Deposit Transient
## 4662 D D No Deposit Transient
## 4663 E E No Deposit Transient
## 4664 E E No Deposit Transient
## 4665 D D No Deposit Transient
## 4666 D D No Deposit Transient
## 4667 E E No Deposit Transient
## 4668 G G No Deposit Transient
## 4669 E E No Deposit Transient
## 4670 A A No Deposit Transient
## 4671 G G No Deposit Transient
## 4672 E E No Deposit Transient
## 4673 G G No Deposit Transient
## 4674 A A No Deposit Transient
## 4675 E E No Deposit Transient
## 4676 F F No Deposit Transient
## 4677 A A No Deposit Transient
## 4678 A A No Deposit Transient
## 4679 A A No Deposit Transient
## 4680 A A No Deposit Transient
## 4681 E E No Deposit Transient
## 4682 A A No Deposit Transient
## 4683 G G No Deposit Transient
## 4684 A A No Deposit Transient
## 4685 A A No Deposit Transient
## 4686 A A No Deposit Transient
## 4687 A D No Deposit Transient
## 4688 A A No Deposit Transient
## 4689 A A No Deposit Transient
## 4690 A A No Deposit Transient
## 4691 A A No Deposit Transient
## 4692 A A No Deposit Transient
## 4693 A A No Deposit Transient
## 4694 A A No Deposit Transient
## 4695 A A No Deposit Transient
## 4696 A A No Deposit Transient-Party
## 4697 A A No Deposit Transient-Party
## 4698 A D No Deposit Transient-Party
## 4699 A A No Deposit Transient
## 4700 A D No Deposit Transient-Party
## 4701 A D No Deposit Transient-Party
## 4702 A A No Deposit Transient-Party
## 4703 A D No Deposit Transient-Party
## 4704 A D No Deposit Transient-Party
## 4705 E E No Deposit Transient-Party
## 4706 A A No Deposit Transient
## 4707 A A No Deposit Transient
## 4708 A D No Deposit Transient-Party
## 4709 E E No Deposit Transient-Party
## 4710 A A No Deposit Transient-Party
## 4711 A D No Deposit Transient-Party
## 4712 A A No Deposit Transient
## 4713 A A No Deposit Transient
## 4714 A A No Deposit Transient
## 4715 A D No Deposit Transient-Party
## 4716 E E No Deposit Transient
## 4717 G G No Deposit Transient
## 4718 A A No Deposit Transient
## 4719 A D No Deposit Transient
## 4720 A D No Deposit Transient
## 4721 A A No Deposit Transient-Party
## 4722 A E No Deposit Transient-Party
## 4723 A A No Deposit Transient-Party
## 4724 A C No Deposit Transient-Party
## 4725 A E No Deposit Transient-Party
## 4726 A C No Deposit Transient-Party
## 4727 A A No Deposit Transient-Party
## 4728 A F No Deposit Transient-Party
## 4729 A A No Deposit Transient-Party
## 4730 A A No Deposit Transient
## 4731 A A No Deposit Transient-Party
## 4732 A A No Deposit Transient-Party
## 4733 A C No Deposit Transient-Party
## 4734 A A No Deposit Transient-Party
## 4735 G G No Deposit Transient
## 4736 A A No Deposit Transient
## 4737 A I No Deposit Transient-Party
## 4738 A C Refundable Transient-Party
## 4739 A D Refundable Transient-Party
## 4740 A D Refundable Transient-Party
## 4741 A E Refundable Transient-Party
## 4742 A A No Deposit Transient
## 4743 A A Refundable Transient-Party
## 4744 A D Refundable Transient-Party
## 4745 A E Refundable Transient-Party
## 4746 A B Refundable Transient-Party
## 4747 A A Refundable Transient-Party
## 4748 A E Refundable Transient-Party
## 4749 A C Refundable Transient-Party
## 4750 A A Refundable Transient-Party
## 4751 A D Refundable Transient-Party
## 4752 A A Refundable Transient-Party
## 4753 A A Refundable Transient-Party
## 4754 A A Refundable Transient-Party
## 4755 A D Refundable Transient-Party
## 4756 A E Refundable Transient-Party
## 4757 A E Refundable Transient-Party
## 4758 A D Refundable Transient-Party
## 4759 A D Refundable Transient-Party
## 4760 A D Refundable Transient-Party
## 4761 A A Refundable Transient-Party
## 4762 A A Refundable Transient-Party
## 4763 A C Refundable Transient-Party
## 4764 A A Refundable Transient-Party
## 4765 A C Refundable Transient-Party
## 4766 A C Refundable Transient-Party
## 4767 A A Refundable Transient-Party
## 4768 A A Refundable Transient-Party
## 4769 A A Refundable Transient-Party
## 4770 A A Refundable Transient-Party
## 4771 A A Refundable Transient-Party
## 4772 A A Refundable Transient-Party
## 4773 A C Refundable Transient-Party
## 4774 A A Refundable Transient-Party
## 4775 A A Refundable Transient-Party
## 4776 A A Refundable Transient-Party
## 4777 A A Refundable Transient-Party
## 4778 A A Refundable Transient-Party
## 4779 A A Refundable Transient-Party
## 4780 A A Refundable Transient-Party
## 4781 A A Refundable Transient-Party
## 4782 A A Refundable Transient-Party
## 4783 A A Refundable Transient-Party
## 4784 A A Refundable Transient-Party
## 4785 A A Refundable Transient-Party
## 4786 A A Refundable Transient-Party
## 4787 A A Refundable Transient-Party
## 4788 A A Refundable Transient-Party
## 4789 A C Refundable Transient-Party
## 4790 A A Refundable Transient-Party
## 4791 A A Refundable Transient-Party
## 4792 A A Refundable Transient-Party
## 4793 A A Refundable Transient-Party
## 4794 A A Refundable Transient-Party
## 4795 A A Refundable Transient-Party
## 4796 A A Refundable Transient-Party
## 4797 D D No Deposit Transient
## 4798 A A Refundable Transient-Party
## 4799 A E Refundable Transient-Party
## 4800 A A Refundable Transient-Party
## 4801 G G No Deposit Transient
## 4802 A A No Deposit Transient
## 4803 D D No Deposit Transient
## 4804 D D No Deposit Transient
## 4805 A D Non Refund Transient-Party
## 4806 A D No Deposit Transient-Party
## 4807 A D No Deposit Transient-Party
## 4808 A D No Deposit Transient-Party
## 4809 A D No Deposit Transient
## 4810 D D No Deposit Transient
## 4811 A D No Deposit Transient
## 4812 H H No Deposit Transient
## 4813 D D No Deposit Transient
## 4814 A A No Deposit Transient
## 4815 G G No Deposit Transient
## 4816 A A No Deposit Transient
## 4817 E E No Deposit Transient
## 4818 A D No Deposit Transient
## 4819 A A No Deposit Transient
## 4820 A F No Deposit Transient
## 4821 D D No Deposit Transient
## 4822 D D No Deposit Transient
## 4823 G G No Deposit Transient
## 4824 D I No Deposit Transient
## 4825 A A No Deposit Transient
## 4826 A A Non Refund Transient-Party
## 4827 A A Non Refund Transient-Party
## 4828 A A Non Refund Transient-Party
## 4829 A A Non Refund Transient-Party
## 4830 A A Non Refund Transient-Party
## 4831 A A Non Refund Transient-Party
## 4832 A A Non Refund Transient-Party
## 4833 A A Non Refund Transient-Party
## 4834 A A Non Refund Transient-Party
## 4835 A A Non Refund Transient-Party
## 4836 A A No Deposit Transient
## 4837 A A Non Refund Transient-Party
## 4838 A A Non Refund Transient-Party
## 4839 A A Non Refund Transient-Party
## 4840 A A Non Refund Transient-Party
## 4841 A A Non Refund Transient-Party
## 4842 A A Non Refund Transient-Party
## 4843 A A Non Refund Transient-Party
## 4844 A A Non Refund Transient-Party
## 4845 A A Non Refund Transient-Party
## 4846 A A Non Refund Transient-Party
## 4847 A A Non Refund Transient-Party
## 4848 A A Non Refund Transient-Party
## 4849 A A Non Refund Transient-Party
## 4850 A A Non Refund Transient-Party
## 4851 A A Non Refund Transient-Party
## 4852 D D No Deposit Transient
## 4853 A A Non Refund Transient-Party
## 4854 A A Non Refund Transient-Party
## 4855 A A Non Refund Transient-Party
## 4856 A A Non Refund Transient-Party
## 4857 A D Non Refund Transient-Party
## 4858 A A Non Refund Transient-Party
## 4859 A A Non Refund Transient-Party
## 4860 A A Non Refund Transient-Party
## 4861 A A Non Refund Transient-Party
## 4862 A A Non Refund Transient-Party
## 4863 A A Non Refund Transient-Party
## 4864 A A Non Refund Transient-Party
## 4865 A A Non Refund Transient-Party
## 4866 A A Non Refund Transient-Party
## 4867 A A Non Refund Transient-Party
## 4868 A D No Deposit Transient
## 4869 A I No Deposit Transient-Party
## 4870 G G No Deposit Transient
## 4871 D D Non Refund Transient
## 4872 D D Non Refund Transient
## 4873 D D Non Refund Transient
## 4874 D D Non Refund Transient
## 4875 D D Non Refund Transient
## 4876 D D Non Refund Transient
## 4877 D D Non Refund Transient
## 4878 A A No Deposit Transient
## 4879 A A No Deposit Transient
## 4880 D D Non Refund Transient
## 4881 D D Non Refund Transient
## 4882 D D Non Refund Transient
## 4883 A D No Deposit Transient
## 4884 E E No Deposit Transient
## 4885 A A No Deposit Transient
## 4886 A A No Deposit Transient
## 4887 E E No Deposit Transient-Party
## 4888 E E No Deposit Transient-Party
## 4889 A A No Deposit Transient
## 4890 A A No Deposit Transient-Party
## 4891 A A No Deposit Transient-Party
## 4892 A A No Deposit Transient-Party
## 4893 A A No Deposit Transient-Party
## 4894 A A No Deposit Transient-Party
## 4895 A A No Deposit Transient-Party
## 4896 A A No Deposit Transient-Party
## 4897 A A No Deposit Transient-Party
## 4898 A A No Deposit Transient-Party
## 4899 A A No Deposit Transient-Party
## 4900 A A No Deposit Transient-Party
## 4901 A A No Deposit Transient-Party
## 4902 A A No Deposit Transient-Party
## 4903 A A No Deposit Transient-Party
## 4904 E E No Deposit Transient
## 4905 A A No Deposit Transient-Party
## 4906 A A No Deposit Transient-Party
## 4907 A A No Deposit Transient-Party
## 4908 A A No Deposit Transient-Party
## 4909 A A No Deposit Transient-Party
## 4910 A A No Deposit Transient
## 4911 D I No Deposit Transient
## 4912 A A No Deposit Transient
## 4913 A A No Deposit Transient-Party
## 4914 A A No Deposit Transient
## 4915 A A No Deposit Transient
## 4916 A A No Deposit Transient
## 4917 H H No Deposit Transient
## 4918 C C No Deposit Transient-Party
## 4919 A A No Deposit Transient
## 4920 H H No Deposit Transient
## 4921 A A No Deposit Transient
## 4922 A A No Deposit Transient-Party
## 4923 A A No Deposit Transient
## 4924 A A No Deposit Transient
## 4925 F F No Deposit Transient
## 4926 A A No Deposit Transient
## 4927 D D Non Refund Transient
## 4928 D D Non Refund Transient
## 4929 D D Non Refund Transient
## 4930 D D Non Refund Transient
## 4931 A A No Deposit Transient-Party
## 4932 D D Non Refund Transient
## 4933 D D Non Refund Transient
## 4934 D D Non Refund Transient
## 4935 D D Non Refund Transient
## 4936 D D Non Refund Transient
## 4937 D D Non Refund Transient
## 4938 D D Non Refund Transient
## 4939 D D Non Refund Transient
## 4940 D D Non Refund Transient
## 4941 D D Non Refund Transient
## 4942 A A No Deposit Transient
## 4943 D D No Deposit Transient
## 4944 E E No Deposit Transient
## 4945 A A No Deposit Transient
## 4946 A A No Deposit Transient-Party
## 4947 A A No Deposit Transient-Party
## 4948 D D No Deposit Transient-Party
## 4949 D D No Deposit Transient-Party
## 4950 A A No Deposit Transient-Party
## 4951 D D No Deposit Transient-Party
## 4952 D D No Deposit Transient-Party
## 4953 D D No Deposit Transient-Party
## 4954 D D No Deposit Transient-Party
## 4955 A A No Deposit Transient-Party
## 4956 D D No Deposit Transient-Party
## 4957 D D No Deposit Transient-Party
## 4958 D D No Deposit Transient-Party
## 4959 D D No Deposit Transient
## 4960 D D No Deposit Transient-Party
## 4961 D D No Deposit Transient-Party
## 4962 A A No Deposit Transient-Party
## 4963 A A No Deposit Transient-Party
## 4964 D D No Deposit Transient-Party
## 4965 D D No Deposit Transient-Party
## 4966 D I No Deposit Transient-Party
## 4967 D D No Deposit Transient-Party
## 4968 A A No Deposit Transient
## 4969 A A No Deposit Transient
## 4970 A A No Deposit Transient
## 4971 A A Non Refund Transient
## 4972 A A Non Refund Transient
## 4973 D D Non Refund Transient
## 4974 D D Non Refund Transient
## 4975 D D Non Refund Transient
## 4976 A A No Deposit Transient
## 4977 A A Non Refund Transient
## 4978 A A Non Refund Transient
## 4979 D D Non Refund Transient
## 4980 D D Non Refund Transient
## 4981 D D Non Refund Transient
## 4982 A A Non Refund Transient
## 4983 A A Non Refund Transient
## 4984 A A Non Refund Transient
## 4985 D D Non Refund Transient
## 4986 D D Non Refund Transient
## 4987 D D Non Refund Transient
## 4988 E E No Deposit Transient
## 4989 E E No Deposit Transient
## 4990 A A No Deposit Transient
## 4991 A A No Deposit Transient
## 4992 A A No Deposit Transient
## 4993 A A No Deposit Transient
## 4994 A A No Deposit Transient
## 4995 A A Non Refund Transient
## 4996 D D Non Refund Transient
## 4997 D D Non Refund Transient
## 4998 A A Non Refund Transient
## 4999 A A Non Refund Transient
## 5000 D D Non Refund Transient
## 5001 D D Non Refund Transient
## 5002 E E No Deposit Transient
## 5003 D D Non Refund Transient
## 5004 D D Non Refund Transient
## 5005 A A Non Refund Transient
## 5006 A A Non Refund Transient
## 5007 A A Non Refund Transient
## 5008 A A Non Refund Transient
## 5009 A A Non Refund Transient
## 5010 A A Non Refund Transient
## 5011 A A Non Refund Transient
## 5012 A A Non Refund Transient
## 5013 A A Non Refund Transient
## 5014 A A Non Refund Transient
## 5015 A A Non Refund Transient
## 5016 A A Non Refund Transient
## 5017 A A Non Refund Transient
## 5018 A A Non Refund Transient
## 5019 A A Non Refund Transient
## 5020 A A Non Refund Transient
## 5021 A A Non Refund Transient
## 5022 A A Non Refund Transient
## 5023 A A Non Refund Transient
## 5024 A A Non Refund Transient
## 5025 A A Non Refund Transient
## 5026 A A Non Refund Transient
## 5027 A A Non Refund Transient
## 5028 A A Non Refund Transient
## 5029 A A Non Refund Transient
## 5030 A A No Deposit Transient
## 5031 A A No Deposit Transient
## 5032 D D No Deposit Transient
## 5033 D D No Deposit Transient-Party
## 5034 D D No Deposit Transient-Party
## 5035 A A No Deposit Transient
## 5036 A A No Deposit Transient
## 5037 A A No Deposit Transient
## 5038 E F No Deposit Transient
## 5039 F F No Deposit Transient
## 5040 A A No Deposit Transient
## 5041 D D No Deposit Transient
## 5042 E E No Deposit Transient
## 5043 A A No Deposit Transient
## 5044 E E No Deposit Transient
## 5045 E E No Deposit Transient
## 5046 E E No Deposit Transient
## 5047 A A No Deposit Transient-Party
## 5048 A A No Deposit Transient-Party
## 5049 A C No Deposit Transient-Party
## 5050 A A No Deposit Transient-Party
## 5051 A A Non Refund Transient-Party
## 5052 A B No Deposit Transient-Party
## 5053 A A No Deposit Transient-Party
## 5054 A A No Deposit Transient-Party
## 5055 A A Non Refund Transient-Party
## 5056 A A Non Refund Transient-Party
## 5057 A C No Deposit Transient-Party
## 5058 A A Non Refund Transient-Party
## 5059 A A No Deposit Transient-Party
## 5060 A A Non Refund Transient-Party
## 5061 A A No Deposit Transient-Party
## 5062 A A No Deposit Transient-Party
## 5063 A A No Deposit Transient-Party
## 5064 A C No Deposit Transient-Party
## 5065 A A Non Refund Transient-Party
## 5066 A A Non Refund Transient-Party
## 5067 A C No Deposit Transient-Party
## 5068 A A No Deposit Transient-Party
## 5069 A A No Deposit Transient-Party
## 5070 A A No Deposit Transient-Party
## 5071 A A No Deposit Transient-Party
## 5072 A A No Deposit Transient-Party
## 5073 A A No Deposit Transient-Party
## 5074 A A No Deposit Transient-Party
## 5075 A A Non Refund Transient-Party
## 5076 A A Non Refund Transient-Party
## 5077 A A No Deposit Transient-Party
## 5078 A A No Deposit Transient-Party
## 5079 A A Non Refund Transient-Party
## 5080 A A Non Refund Transient-Party
## 5081 A A Non Refund Transient-Party
## 5082 A C Non Refund Transient-Party
## 5083 A C No Deposit Transient-Party
## 5084 A A No Deposit Transient-Party
## 5085 A A No Deposit Transient-Party
## 5086 A A No Deposit Transient-Party
## 5087 A A Non Refund Transient-Party
## 5088 A I No Deposit Transient-Party
## 5089 A A No Deposit Transient
## 5090 A C No Deposit Transient
## 5091 E E No Deposit Transient
## 5092 A A No Deposit Transient
## 5093 A A No Deposit Transient
## 5094 D D No Deposit Transient
## 5095 A A No Deposit Transient
## 5096 A A No Deposit Transient
## 5097 D D No Deposit Transient
## 5098 F F No Deposit Transient
## 5099 A C No Deposit Transient
## 5100 A A No Deposit Transient
## 5101 D D Non Refund Transient
## 5102 G G No Deposit Transient
## 5103 A A No Deposit Transient-Party
## 5104 A A No Deposit Transient-Party
## 5105 A A No Deposit Transient-Party
## 5106 A C No Deposit Transient-Party
## 5107 A A No Deposit Transient-Party
## 5108 A A No Deposit Transient-Party
## 5109 A A No Deposit Transient-Party
## 5110 A A No Deposit Transient-Party
## 5111 A A No Deposit Transient-Party
## 5112 A A No Deposit Transient-Party
## 5113 A A No Deposit Transient-Party
## 5114 A A No Deposit Transient-Party
## 5115 A A No Deposit Transient-Party
## 5116 A C No Deposit Transient-Party
## 5117 A C No Deposit Transient-Party
## 5118 A C No Deposit Transient-Party
## 5119 A I No Deposit Transient-Party
## 5120 A A No Deposit Transient-Party
## 5121 A A No Deposit Transient-Party
## 5122 A C No Deposit Transient-Party
## 5123 A A No Deposit Transient-Party
## 5124 A A No Deposit Transient-Party
## 5125 A A No Deposit Transient-Party
## 5126 A A No Deposit Transient-Party
## 5127 A A No Deposit Transient-Party
## 5128 A A No Deposit Transient-Party
## 5129 A A No Deposit Transient-Party
## 5130 A A No Deposit Transient-Party
## 5131 A A No Deposit Transient-Party
## 5132 A C No Deposit Transient-Party
## 5133 A A No Deposit Transient-Party
## 5134 A A No Deposit Transient-Party
## 5135 A A No Deposit Transient-Party
## 5136 A C No Deposit Transient-Party
## 5137 A A No Deposit Transient-Party
## 5138 A C No Deposit Transient-Party
## 5139 A A No Deposit Transient-Party
## 5140 A A No Deposit Transient-Party
## 5141 A A No Deposit Transient-Party
## 5142 A A No Deposit Transient-Party
## 5143 A A No Deposit Transient-Party
## 5144 E E No Deposit Transient
## 5145 D D No Deposit Transient
## 5146 A A No Deposit Transient
## 5147 A A No Deposit Transient
## 5148 A A No Deposit Transient
## 5149 A A No Deposit Transient
## 5150 E E No Deposit Transient
## 5151 A A No Deposit Transient-Party
## 5152 A A No Deposit Transient-Party
## 5153 A A No Deposit Transient
## 5154 A A No Deposit Transient-Party
## 5155 A A No Deposit Transient-Party
## 5156 A A No Deposit Transient-Party
## 5157 D D No Deposit Transient-Party
## 5158 G G No Deposit Transient
## 5159 D D No Deposit Transient-Party
## 5160 A A No Deposit Transient-Party
## 5161 A A No Deposit Transient-Party
## 5162 D D No Deposit Transient
## 5163 D D No Deposit Transient
## 5164 E E No Deposit Transient
## 5165 E E Non Refund Transient
## 5166 D D Non Refund Transient
## 5167 D D No Deposit Transient-Party
## 5168 D D No Deposit Transient-Party
## 5169 A A No Deposit Transient
## 5170 A A Non Refund Transient
## 5171 D D No Deposit Transient
## 5172 D D No Deposit Transient-Party
## 5173 D D No Deposit Transient-Party
## 5174 D D No Deposit Transient-Party
## 5175 D D No Deposit Transient-Party
## 5176 D D Non Refund Transient
## 5177 A A Non Refund Transient
## 5178 D D No Deposit Transient-Party
## 5179 D D No Deposit Transient-Party
## 5180 D D Non Refund Transient
## 5181 A A Non Refund Transient
## 5182 E E Non Refund Transient
## 5183 E E Non Refund Transient
## 5184 D D No Deposit Transient-Party
## 5185 D D No Deposit Transient-Party
## 5186 E E Non Refund Transient
## 5187 D D Non Refund Transient
## 5188 A A Non Refund Transient
## 5189 E E Non Refund Transient-Party
## 5190 G G No Deposit Transient
## 5191 A A No Deposit Transient
## 5192 A A No Deposit Transient-Party
## 5193 G G No Deposit Transient
## 5194 A A No Deposit Transient
## 5195 D D No Deposit Transient
## 5196 E E No Deposit Transient
## 5197 E E No Deposit Transient
## 5198 A A No Deposit Transient
## 5199 A A No Deposit Transient-Party
## 5200 A A No Deposit Transient-Party
## 5201 A C No Deposit Transient
## 5202 A A No Deposit Transient
## 5203 E E No Deposit Transient
## 5204 A A No Deposit Transient
## 5205 D D No Deposit Transient
## 5206 A A No Deposit Transient-Party
## 5207 A A No Deposit Transient-Party
## 5208 A A No Deposit Transient-Party
## 5209 A C No Deposit Transient-Party
## 5210 A A No Deposit Transient-Party
## 5211 A A No Deposit Transient-Party
## 5212 A A No Deposit Transient-Party
## 5213 A A No Deposit Transient-Party
## 5214 A A No Deposit Transient-Party
## 5215 A A No Deposit Transient-Party
## 5216 A A No Deposit Transient-Party
## 5217 A A No Deposit Transient-Party
## 5218 A A No Deposit Transient-Party
## 5219 A A No Deposit Transient
## 5220 A A No Deposit Transient-Party
## 5221 A A No Deposit Transient-Party
## 5222 A A No Deposit Transient-Party
## 5223 A A No Deposit Transient-Party
## 5224 A C No Deposit Transient-Party
## 5225 A A No Deposit Transient
## 5226 A C No Deposit Transient-Party
## 5227 A A No Deposit Transient-Party
## 5228 A A No Deposit Transient-Party
## 5229 A A No Deposit Transient
## 5230 A C No Deposit Transient-Party
## 5231 A A No Deposit Transient-Party
## 5232 A A No Deposit Transient
## 5233 A A No Deposit Transient-Party
## 5234 A A No Deposit Transient-Party
## 5235 A A No Deposit Transient-Party
## 5236 A A No Deposit Transient-Party
## 5237 A A No Deposit Transient-Party
## 5238 A A Non Refund Transient
## 5239 D D Non Refund Transient
## 5240 A A Non Refund Transient
## 5241 D D Non Refund Transient
## 5242 D D Non Refund Transient
## 5243 E E Non Refund Transient
## 5244 D D No Deposit Transient
## 5245 D D Non Refund Transient
## 5246 D D Non Refund Transient
## 5247 A A Non Refund Transient
## 5248 A A Non Refund Transient
## 5249 A A Non Refund Transient
## 5250 D D Non Refund Transient
## 5251 D D Non Refund Transient
## 5252 E I No Deposit Transient
## 5253 A A Non Refund Transient
## 5254 E E Non Refund Transient
## 5255 A A Non Refund Transient
## 5256 A A Non Refund Transient
## 5257 E E Non Refund Transient
## 5258 D D No Deposit Transient
## 5259 D D No Deposit Transient
## 5260 A A No Deposit Transient
## 5261 A A No Deposit Transient
## 5262 D D No Deposit Transient
## 5263 D D No Deposit Transient
## 5264 E E No Deposit Transient
## 5265 E E No Deposit Transient
## 5266 D D No Deposit Transient
## 5267 D D No Deposit Transient
## 5268 A A No Deposit Transient
## 5269 G G No Deposit Transient
## 5270 D D No Deposit Transient
## 5271 G G No Deposit Transient
## 5272 A A No Deposit Transient
## 5273 A A No Deposit Transient
## 5274 A A No Deposit Transient
## 5275 A A No Deposit Transient
## 5276 A A No Deposit Transient
## 5277 A A No Deposit Transient-Party
## 5278 A A No Deposit Transient-Party
## 5279 A A No Deposit Transient-Party
## 5280 A A No Deposit Transient-Party
## 5281 D D No Deposit Transient
## 5282 A A Non Refund Transient
## 5283 A A Non Refund Transient
## 5284 A A Non Refund Transient
## 5285 A A Non Refund Transient
## 5286 A A Non Refund Transient
## 5287 A A Non Refund Transient
## 5288 D D No Deposit Transient
## 5289 A A Non Refund Transient
## 5290 A A Non Refund Transient
## 5291 A A Non Refund Transient
## 5292 A A Non Refund Transient
## 5293 A A Non Refund Transient
## 5294 A A Non Refund Transient
## 5295 A A Non Refund Transient
## 5296 A A Non Refund Transient
## 5297 A A Non Refund Transient
## 5298 A A Non Refund Transient
## 5299 A A Non Refund Transient
## 5300 A A Non Refund Transient
## 5301 A A Non Refund Transient
## 5302 A A Non Refund Transient
## 5303 A A Non Refund Transient
## 5304 A A Non Refund Transient
## 5305 A A Non Refund Transient
## 5306 A A Non Refund Transient
## 5307 A A Non Refund Transient
## 5308 D D No Deposit Transient
## 5309 H H No Deposit Transient
## 5310 D D No Deposit Transient
## 5311 E E No Deposit Transient
## 5312 C C No Deposit Transient
## 5313 A A No Deposit Transient
## 5314 A A No Deposit Transient
## 5315 A A No Deposit Transient
## 5316 E E Non Refund Transient
## 5317 E E Non Refund Transient
## 5318 E E Non Refund Transient
## 5319 E E Non Refund Transient
## 5320 E E Non Refund Transient
## 5321 E E Non Refund Transient
## 5322 E E Non Refund Transient
## 5323 E E Non Refund Transient
## 5324 E E Non Refund Transient
## 5325 E E Non Refund Transient
## 5326 E E Non Refund Transient
## 5327 E E Non Refund Transient
## 5328 E E Non Refund Transient
## 5329 E E No Deposit Transient
## 5330 E E Non Refund Transient
## 5331 E E Non Refund Transient
## 5332 E E Non Refund Transient
## 5333 E E Non Refund Transient
## 5334 E E Non Refund Transient
## 5335 E E Non Refund Transient
## 5336 E E Non Refund Transient
## 5337 E E No Deposit Transient
## 5338 A A No Deposit Transient
## 5339 E E No Deposit Transient
## 5340 A A No Deposit Transient-Party
## 5341 E E No Deposit Transient
## 5342 H H No Deposit Transient
## 5343 D D No Deposit Transient
## 5344 G G No Deposit Transient
## 5345 D D No Deposit Transient
## 5346 A A No Deposit Transient-Party
## 5347 A A No Deposit Transient
## 5348 A A No Deposit Transient
## 5349 A A No Deposit Transient
## 5350 A A No Deposit Transient-Party
## 5351 A A No Deposit Transient-Party
## 5352 A A No Deposit Transient-Party
## 5353 A A No Deposit Transient-Party
## 5354 A A No Deposit Transient-Party
## 5355 A A No Deposit Transient-Party
## 5356 A A No Deposit Transient-Party
## 5357 A A No Deposit Transient-Party
## 5358 A A No Deposit Transient-Party
## 5359 A A No Deposit Transient-Party
## 5360 A A No Deposit Transient-Party
## 5361 A A No Deposit Transient-Party
## 5362 A A No Deposit Transient-Party
## 5363 A A No Deposit Transient-Party
## 5364 A A No Deposit Transient-Party
## 5365 A A No Deposit Transient-Party
## 5366 A A No Deposit Transient-Party
## 5367 D D No Deposit Transient
## 5368 D D No Deposit Transient
## 5369 E E No Deposit Transient
## 5370 D D No Deposit Transient
## 5371 E E No Deposit Transient
## 5372 E E No Deposit Transient
## 5373 D D No Deposit Transient-Party
## 5374 D D No Deposit Transient-Party
## 5375 A A No Deposit Transient
## 5376 A A No Deposit Transient-Party
## 5377 A A No Deposit Transient-Party
## 5378 A A No Deposit Transient-Party
## 5379 G G No Deposit Transient
## 5380 A A No Deposit Transient-Party
## 5381 A A No Deposit Transient-Party
## 5382 A A No Deposit Transient-Party
## 5383 A A No Deposit Transient
## 5384 E E No Deposit Transient
## 5385 A A No Deposit Transient
## 5386 E E No Deposit Transient
## 5387 G G No Deposit Transient
## 5388 A A No Deposit Transient
## 5389 A A No Deposit Transient
## 5390 E E No Deposit Transient
## 5391 E E No Deposit Transient
## 5392 A A Non Refund Transient
## 5393 A A Non Refund Transient
## 5394 A A Non Refund Transient
## 5395 A A Non Refund Transient
## 5396 A A Non Refund Transient
## 5397 A A Non Refund Transient
## 5398 A A Non Refund Transient
## 5399 A A Non Refund Transient
## 5400 A A Non Refund Transient
## 5401 A A No Deposit Transient
## 5402 A A Non Refund Transient
## 5403 A A Non Refund Transient
## 5404 A A Non Refund Transient
## 5405 A A Non Refund Transient
## 5406 A A Non Refund Transient
## 5407 A A Non Refund Transient
## 5408 D D No Deposit Transient
## 5409 A A Non Refund Transient
## 5410 A A Non Refund Transient
## 5411 A A Non Refund Transient
## 5412 A A Non Refund Transient
## 5413 A A Non Refund Transient
## 5414 A A Non Refund Transient
## 5415 A A Non Refund Transient
## 5416 A A Non Refund Transient
## 5417 A A Non Refund Transient
## 5418 A A No Deposit Transient
## 5419 A A No Deposit Transient
## 5420 A D No Deposit Transient
## 5421 A D No Deposit Transient
## 5422 E E No Deposit Transient
## 5423 E E No Deposit Transient
## 5424 D D No Deposit Transient
## 5425 D D No Deposit Transient
## 5426 A A No Deposit Transient
## 5427 G G No Deposit Transient
## 5428 D D No Deposit Transient
## 5429 E E No Deposit Transient
## 5430 G G No Deposit Transient
## 5431 D D No Deposit Transient
## 5432 D D No Deposit Transient
## 5433 A A No Deposit Transient
## 5434 H H No Deposit Transient
## 5435 G G No Deposit Transient
## 5436 D D No Deposit Transient
## 5437 E E No Deposit Transient
## 5438 D D No Deposit Transient
## 5439 A A Non Refund Transient
## 5440 A A Non Refund Transient
## 5441 A A Non Refund Transient
## 5442 A A Non Refund Transient
## 5443 E E No Deposit Transient
## 5444 A A Non Refund Transient
## 5445 A A Non Refund Transient
## 5446 A A Non Refund Transient
## 5447 D D No Deposit Transient
## 5448 A A Non Refund Transient
## 5449 A A Non Refund Transient
## 5450 D D No Deposit Transient
## 5451 A A Non Refund Transient
## 5452 D D No Deposit Transient
## 5453 A A Non Refund Transient
## 5454 A A No Deposit Transient-Party
## 5455 D D Non Refund Transient
## 5456 A A Non Refund Transient
## 5457 A A No Deposit Transient-Party
## 5458 A A Non Refund Transient
## 5459 A A Non Refund Transient
## 5460 A A Non Refund Transient
## 5461 D D Non Refund Transient
## 5462 D D Non Refund Transient
## 5463 E E Non Refund Transient
## 5464 A A No Deposit Transient-Party
## 5465 A A No Deposit Transient-Party
## 5466 A A No Deposit Transient-Party
## 5467 D D Non Refund Transient
## 5468 D D Non Refund Transient
## 5469 D D Non Refund Transient
## 5470 A A Non Refund Transient
## 5471 A A Non Refund Transient
## 5472 A A Non Refund Transient
## 5473 A A Non Refund Transient
## 5474 A A Non Refund Transient
## 5475 A A Non Refund Transient
## 5476 D D Non Refund Transient
## 5477 E E No Deposit Transient
## 5478 A A No Deposit Transient-Party
## 5479 A A No Deposit Transient
## 5480 E E No Deposit Transient
## 5481 A A No Deposit Transient
## 5482 D D No Deposit Transient
## 5483 D D No Deposit Transient
## 5484 E F No Deposit Transient
## 5485 D D No Deposit Transient
## 5486 D D No Deposit Transient
## 5487 E E No Deposit Transient
## 5488 A C No Deposit Transient-Party
## 5489 A A No Deposit Transient-Party
## 5490 E E No Deposit Transient
## 5491 A A No Deposit Transient-Party
## 5492 A C No Deposit Transient-Party
## 5493 A A No Deposit Transient-Party
## 5494 D D No Deposit Transient
## 5495 A A No Deposit Transient-Party
## 5496 G G No Deposit Transient
## 5497 D D No Deposit Transient
## 5498 A A No Deposit Transient-Party
## 5499 A A No Deposit Transient-Party
## 5500 A A No Deposit Transient-Party
## 5501 A A No Deposit Transient-Party
## 5502 A A No Deposit Transient-Party
## 5503 A A No Deposit Transient-Party
## 5504 E E No Deposit Transient
## 5505 A A No Deposit Transient
## 5506 A C No Deposit Transient-Party
## 5507 E E No Deposit Transient
## 5508 A A No Deposit Transient
## 5509 A A No Deposit Transient
## 5510 A A No Deposit Transient
## 5511 E E No Deposit Transient
## 5512 A A No Deposit Contract
## 5513 H H No Deposit Transient
## 5514 E E No Deposit Transient
## 5515 A A No Deposit Transient
## 5516 A D No Deposit Transient
## 5517 A A No Deposit Transient
## 5518 A A No Deposit Transient
## 5519 D D No Deposit Transient
## 5520 D D No Deposit Transient
## 5521 A A No Deposit Contract
## 5522 G G No Deposit Transient
## 5523 D D No Deposit Transient
## 5524 D D No Deposit Transient
## 5525 E E No Deposit Transient
## 5526 E E No Deposit Transient
## 5527 E E No Deposit Transient
## 5528 A A No Deposit Transient
## 5529 G G No Deposit Transient
## 5530 E E No Deposit Transient
## 5531 A A No Deposit Transient
## 5532 A A No Deposit Transient-Party
## 5533 A A No Deposit Transient-Party
## 5534 A A No Deposit Transient-Party
## 5535 A A No Deposit Transient-Party
## 5536 A A No Deposit Transient-Party
## 5537 A A No Deposit Transient-Party
## 5538 A A No Deposit Transient-Party
## 5539 A A No Deposit Transient-Party
## 5540 A A No Deposit Transient-Party
## 5541 A A No Deposit Transient-Party
## 5542 A A No Deposit Transient-Party
## 5543 A A No Deposit Transient-Party
## 5544 A A No Deposit Transient-Party
## 5545 A A No Deposit Transient-Party
## 5546 A A No Deposit Transient-Party
## 5547 A A No Deposit Transient-Party
## 5548 A A No Deposit Transient-Party
## 5549 A A No Deposit Transient-Party
## 5550 A A No Deposit Transient-Party
## 5551 A A No Deposit Transient-Party
## 5552 A A No Deposit Transient-Party
## 5553 A A No Deposit Transient-Party
## 5554 A A No Deposit Transient-Party
## 5555 A A No Deposit Transient-Party
## 5556 A A No Deposit Transient-Party
## 5557 A A No Deposit Transient-Party
## 5558 A A No Deposit Transient-Party
## 5559 A A No Deposit Transient-Party
## 5560 A A No Deposit Transient-Party
## 5561 A A No Deposit Transient-Party
## 5562 A A No Deposit Transient-Party
## 5563 A A No Deposit Transient-Party
## 5564 A A No Deposit Transient-Party
## 5565 A A No Deposit Transient-Party
## 5566 A A No Deposit Transient-Party
## 5567 A A No Deposit Transient
## 5568 A A No Deposit Transient-Party
## 5569 A A No Deposit Transient-Party
## 5570 A A No Deposit Transient
## 5571 A A No Deposit Transient-Party
## 5572 A A No Deposit Transient-Party
## 5573 G G No Deposit Transient
## 5574 D D No Deposit Transient
## 5575 E E No Deposit Transient
## 5576 D D No Deposit Transient
## 5577 A A No Deposit Transient
## 5578 A A No Deposit Transient
## 5579 D D No Deposit Transient
## 5580 G G No Deposit Transient
## 5581 A A No Deposit Transient
## 5582 D D No Deposit Transient
## 5583 A A No Deposit Transient
## 5584 A A No Deposit Transient
## 5585 G G No Deposit Transient
## 5586 A A No Deposit Transient
## 5587 D D No Deposit Transient
## 5588 A E No Deposit Transient
## 5589 D D No Deposit Transient
## 5590 D D No Deposit Transient
## 5591 E E No Deposit Contract
## 5592 A A No Deposit Transient
## 5593 E E No Deposit Transient
## 5594 D D No Deposit Transient
## 5595 E E No Deposit Contract
## 5596 D D No Deposit Transient
## 5597 C C No Deposit Transient
## 5598 D D No Deposit Transient
## 5599 A A No Deposit Transient
## 5600 A A No Deposit Transient
## 5601 A A No Deposit Transient
## 5602 D D No Deposit Transient
## 5603 D D No Deposit Transient
## 5604 E E No Deposit Transient
## 5605 A A No Deposit Transient
## 5606 E E No Deposit Transient
## 5607 A A No Deposit Transient
## 5608 D D No Deposit Transient-Party
## 5609 A A No Deposit Transient
## 5610 A A No Deposit Transient
## 5611 E E No Deposit Transient
## 5612 A A No Deposit Transient
## 5613 A A No Deposit Contract
## 5614 H H No Deposit Transient
## 5615 A A No Deposit Contract
## 5616 D D No Deposit Transient
## 5617 A A No Deposit Contract
## 5618 A A No Deposit Transient
## 5619 A A No Deposit Transient
## 5620 A A No Deposit Transient
## 5621 A A No Deposit Transient
## 5622 D D No Deposit Transient-Party
## 5623 D D No Deposit Transient
## 5624 E E No Deposit Transient
## 5625 F F No Deposit Transient
## 5626 D D No Deposit Transient
## 5627 A A No Deposit Transient
## 5628 A A No Deposit Transient
## 5629 D D No Deposit Transient
## 5630 D D No Deposit Transient
## 5631 D D No Deposit Transient
## 5632 A A No Deposit Transient
## 5633 D D No Deposit Transient
## 5634 E E No Deposit Transient
## 5635 G G No Deposit Transient
## 5636 A A No Deposit Transient
## 5637 A A No Deposit Transient
## 5638 E E No Deposit Transient
## 5639 E E No Deposit Transient
## 5640 A A No Deposit Transient
## 5641 A A No Deposit Transient
## 5642 D D No Deposit Transient
## 5643 A A No Deposit Contract
## 5644 D D No Deposit Transient
## 5645 A A No Deposit Transient-Party
## 5646 E E No Deposit Transient
## 5647 A A No Deposit Transient
## 5648 D D No Deposit Transient
## 5649 D D No Deposit Contract
## 5650 A A No Deposit Transient-Party
## 5651 A A No Deposit Transient
## 5652 A A No Deposit Transient
## 5653 A A No Deposit Transient-Party
## 5654 F F No Deposit Transient
## 5655 F F No Deposit Transient
## 5656 A A No Deposit Transient
## 5657 A A No Deposit Transient
## 5658 F F No Deposit Transient
## 5659 E E No Deposit Transient
## 5660 G G No Deposit Transient
## 5661 D D No Deposit Transient
## 5662 E E No Deposit Transient
## 5663 A A No Deposit Transient
## 5664 E E No Deposit Contract
## 5665 E E No Deposit Contract
## 5666 A A No Deposit Transient
## 5667 A A No Deposit Transient
## 5668 A A No Deposit Transient
## 5669 H H No Deposit Transient
## 5670 A A No Deposit Transient
## 5671 A A No Deposit Transient
## 5672 D D No Deposit Transient
## 5673 D D No Deposit Transient
## 5674 A A No Deposit Transient
## 5675 A A No Deposit Transient
## 5676 E E No Deposit Transient
## 5677 A A No Deposit Transient-Party
## 5678 A A No Deposit Transient-Party
## 5679 A A No Deposit Transient-Party
## 5680 A A No Deposit Transient-Party
## 5681 A A No Deposit Transient-Party
## 5682 A A No Deposit Transient-Party
## 5683 A A No Deposit Transient-Party
## 5684 A A No Deposit Transient-Party
## 5685 A A No Deposit Transient-Party
## 5686 A A No Deposit Transient-Party
## 5687 A A No Deposit Transient-Party
## 5688 A A No Deposit Transient
## 5689 A A No Deposit Transient-Party
## 5690 A A No Deposit Transient-Party
## 5691 A A No Deposit Transient-Party
## 5692 A A No Deposit Transient-Party
## 5693 A A No Deposit Transient-Party
## 5694 A A No Deposit Transient-Party
## 5695 E E No Deposit Transient
## 5696 A A No Deposit Transient
## 5697 A A No Deposit Transient
## 5698 G G No Deposit Transient
## 5699 E E No Deposit Transient
## 5700 A A No Deposit Transient-Party
## 5701 A A No Deposit Transient-Party
## 5702 E E No Deposit Transient
## 5703 D D No Deposit Transient
## 5704 D D No Deposit Transient
## 5705 A A No Deposit Transient-Party
## 5706 A A No Deposit Transient-Party
## 5707 E E No Deposit Transient
## 5708 A A No Deposit Transient-Party
## 5709 A A No Deposit Transient-Party
## 5710 E E No Deposit Transient
## 5711 A A No Deposit Transient
## 5712 A A No Deposit Transient-Party
## 5713 A A No Deposit Transient-Party
## 5714 A A No Deposit Transient-Party
## 5715 A A No Deposit Transient-Party
## 5716 A A No Deposit Transient-Party
## 5717 A A No Deposit Transient-Party
## 5718 A A No Deposit Transient-Party
## 5719 A A No Deposit Transient-Party
## 5720 A A No Deposit Transient-Party
## 5721 A A No Deposit Transient-Party
## 5722 A A No Deposit Transient-Party
## 5723 A A No Deposit Transient-Party
## 5724 A A No Deposit Transient-Party
## 5725 A D No Deposit Transient-Party
## 5726 A C No Deposit Transient-Party
## 5727 A D No Deposit Transient-Party
## 5728 A A No Deposit Transient-Party
## 5729 A A No Deposit Transient-Party
## 5730 A A No Deposit Transient-Party
## 5731 A A No Deposit Transient-Party
## 5732 A A No Deposit Transient-Party
## 5733 A A No Deposit Transient-Party
## 5734 A A No Deposit Transient-Party
## 5735 A A No Deposit Transient-Party
## 5736 A A No Deposit Transient-Party
## 5737 A I No Deposit Transient-Party
## 5738 A A No Deposit Transient-Party
## 5739 A A No Deposit Transient-Party
## 5740 A A No Deposit Transient-Party
## 5741 A A No Deposit Transient-Party
## 5742 A A No Deposit Transient-Party
## 5743 A A No Deposit Transient-Party
## 5744 A A No Deposit Transient-Party
## 5745 A A No Deposit Transient-Party
## 5746 A A No Deposit Transient-Party
## 5747 A A No Deposit Transient-Party
## 5748 A A No Deposit Transient-Party
## 5749 A A No Deposit Transient-Party
## 5750 A A No Deposit Transient-Party
## 5751 D D No Deposit Transient
## 5752 A A No Deposit Transient-Party
## 5753 A A No Deposit Transient-Party
## 5754 A A No Deposit Transient-Party
## 5755 A A No Deposit Transient-Party
## 5756 A A No Deposit Transient-Party
## 5757 A A No Deposit Transient-Party
## 5758 A A No Deposit Transient-Party
## 5759 G G No Deposit Transient
## 5760 E E No Deposit Transient
## 5761 E E No Deposit Transient
## 5762 E E No Deposit Transient
## 5763 E E No Deposit Transient-Party
## 5764 E E No Deposit Transient-Party
## 5765 A A No Deposit Transient-Party
## 5766 D D No Deposit Transient
## 5767 A A No Deposit Transient-Party
## 5768 G G No Deposit Transient-Party
## 5769 E E No Deposit Transient
## 5770 E E No Deposit Transient
## 5771 D D No Deposit Transient
## 5772 F F No Deposit Transient
## 5773 E E No Deposit Transient
## 5774 G G No Deposit Transient
## 5775 E E No Deposit Transient
## 5776 A C No Deposit Transient
## 5777 A A No Deposit Transient
## 5778 A C No Deposit Transient
## 5779 A A No Deposit Transient
## 5780 A A No Deposit Transient
## 5781 D D No Deposit Transient-Party
## 5782 D D No Deposit Transient
## 5783 D D No Deposit Transient
## 5784 D D No Deposit Transient-Party
## 5785 D D No Deposit Transient
## 5786 A A No Deposit Transient
## 5787 D D No Deposit Transient
## 5788 D D No Deposit Transient-Party
## 5789 D D No Deposit Transient-Party
## 5790 D D No Deposit Transient
## 5791 E E No Deposit Transient
## 5792 D D No Deposit Transient
## 5793 D D No Deposit Transient
## 5794 E E No Deposit Transient
## 5795 A D No Deposit Transient-Party
## 5796 A E No Deposit Transient-Party
## 5797 A A No Deposit Transient-Party
## 5798 A A No Deposit Transient-Party
## 5799 A A No Deposit Transient-Party
## 5800 A A No Deposit Transient-Party
## 5801 A A No Deposit Transient-Party
## 5802 A A No Deposit Transient-Party
## 5803 A A No Deposit Transient-Party
## 5804 A A No Deposit Transient-Party
## 5805 A A No Deposit Transient-Party
## 5806 A A No Deposit Transient-Party
## 5807 A D No Deposit Transient-Party
## 5808 A A No Deposit Transient-Party
## 5809 A A No Deposit Transient-Party
## 5810 A A No Deposit Transient-Party
## 5811 A D No Deposit Transient-Party
## 5812 A E No Deposit Transient-Party
## 5813 A A No Deposit Transient-Party
## 5814 A A No Deposit Transient-Party
## 5815 A A No Deposit Transient-Party
## 5816 A D No Deposit Transient-Party
## 5817 A E No Deposit Transient-Party
## 5818 A A No Deposit Transient-Party
## 5819 A A No Deposit Transient-Party
## 5820 A A No Deposit Transient-Party
## 5821 A A No Deposit Transient-Party
## 5822 A A No Deposit Transient-Party
## 5823 A D No Deposit Transient-Party
## 5824 A A No Deposit Transient-Party
## 5825 A E No Deposit Transient-Party
## 5826 A A No Deposit Transient-Party
## 5827 A A No Deposit Transient-Party
## 5828 A A No Deposit Transient-Party
## 5829 A A No Deposit Transient-Party
## 5830 A D No Deposit Transient-Party
## 5831 A A No Deposit Transient-Party
## 5832 A C No Deposit Transient-Party
## 5833 A A No Deposit Transient-Party
## 5834 A A No Deposit Transient-Party
## 5835 A A No Deposit Transient-Party
## 5836 A A Non Refund Transient-Party
## 5837 A A No Deposit Transient-Party
## 5838 A A No Deposit Transient-Party
## 5839 A A No Deposit Transient-Party
## 5840 A A No Deposit Transient-Party
## 5841 A A No Deposit Transient-Party
## 5842 A A No Deposit Transient-Party
## 5843 A A No Deposit Transient-Party
## 5844 A A No Deposit Transient-Party
## 5845 A A No Deposit Transient-Party
## 5846 A A No Deposit Transient-Party
## 5847 A A No Deposit Transient-Party
## 5848 A A No Deposit Transient-Party
## 5849 A A No Deposit Transient-Party
## 5850 A A No Deposit Transient-Party
## 5851 A A No Deposit Transient-Party
## 5852 A A No Deposit Transient-Party
## 5853 A A Non Refund Transient-Party
## 5854 A A No Deposit Transient-Party
## 5855 A A No Deposit Transient-Party
## 5856 A A No Deposit Transient-Party
## 5857 A A No Deposit Transient-Party
## 5858 A A No Deposit Transient-Party
## 5859 A A No Deposit Transient-Party
## 5860 A A No Deposit Transient-Party
## 5861 A A No Deposit Transient-Party
## 5862 A A No Deposit Transient-Party
## 5863 A A No Deposit Transient-Party
## 5864 A A No Deposit Transient-Party
## 5865 E E No Deposit Transient
## 5866 F F No Deposit Transient
## 5867 H H No Deposit Transient
## 5868 A A No Deposit Transient
## 5869 D D No Deposit Transient
## 5870 D D No Deposit Contract
## 5871 A A No Deposit Transient
## 5872 A C No Deposit Transient
## 5873 A A No Deposit Transient
## 5874 A A No Deposit Transient
## 5875 A A No Deposit Transient
## 5876 A A No Deposit Transient
## 5877 A A No Deposit Transient
## 5878 A A No Deposit Transient-Party
## 5879 A A No Deposit Transient-Party
## 5880 A C No Deposit Transient-Party
## 5881 A A No Deposit Transient-Party
## 5882 A A No Deposit Transient-Party
## 5883 A A No Deposit Transient-Party
## 5884 A A No Deposit Transient-Party
## 5885 A A No Deposit Transient-Party
## 5886 A A No Deposit Transient-Party
## 5887 A A No Deposit Transient-Party
## 5888 A C No Deposit Transient-Party
## 5889 A C No Deposit Transient-Party
## 5890 A A No Deposit Transient-Party
## 5891 A A No Deposit Transient-Party
## 5892 A A No Deposit Transient-Party
## 5893 A I No Deposit Transient-Party
## 5894 A C No Deposit Transient-Party
## 5895 A C No Deposit Transient-Party
## 5896 A A No Deposit Transient-Party
## 5897 A A No Deposit Transient-Party
## 5898 A A No Deposit Transient-Party
## 5899 A A No Deposit Transient-Party
## 5900 A A No Deposit Transient-Party
## 5901 A A No Deposit Transient-Party
## 5902 A A No Deposit Transient-Party
## 5903 A A No Deposit Transient-Party
## 5904 A A No Deposit Transient-Party
## 5905 A A No Deposit Transient-Party
## 5906 A A No Deposit Transient-Party
## 5907 A A No Deposit Transient-Party
## 5908 A A No Deposit Transient-Party
## 5909 A A No Deposit Transient
## 5910 A C No Deposit Transient-Party
## 5911 A A No Deposit Transient-Party
## 5912 A A No Deposit Transient-Party
## 5913 A A No Deposit Transient-Party
## 5914 A A No Deposit Transient-Party
## 5915 A A No Deposit Transient-Party
## 5916 A A No Deposit Transient-Party
## 5917 A A No Deposit Transient-Party
## 5918 A A No Deposit Transient-Party
## 5919 A A No Deposit Transient-Party
## 5920 D D No Deposit Transient
## 5921 D D No Deposit Transient
## 5922 A A No Deposit Transient
## 5923 D D No Deposit Transient
## 5924 D D No Deposit Transient
## 5925 A A No Deposit Transient
## 5926 A A No Deposit Transient-Party
## 5927 H H No Deposit Transient
## 5928 D D No Deposit Contract
## 5929 E E No Deposit Transient
## 5930 G G No Deposit Transient
## 5931 D D No Deposit Transient
## 5932 D D No Deposit Contract
## 5933 D D No Deposit Transient
## 5934 A A No Deposit Transient-Party
## 5935 A A No Deposit Transient-Party
## 5936 A C No Deposit Transient-Party
## 5937 A A No Deposit Transient
## 5938 A A No Deposit Transient-Party
## 5939 A A No Deposit Transient
## 5940 A A Non Refund Transient
## 5941 A A Non Refund Transient
## 5942 A A Non Refund Transient
## 5943 A A Non Refund Transient
## 5944 A A Non Refund Transient
## 5945 A A Non Refund Transient
## 5946 A A Non Refund Transient
## 5947 A A Non Refund Transient
## 5948 A A Non Refund Transient
## 5949 A A Non Refund Transient
## 5950 A A No Deposit Transient
## 5951 A A No Deposit Transient
## 5952 A A No Deposit Contract
## 5953 A A No Deposit Contract
## 5954 E E No Deposit Transient
## 5955 A A No Deposit Transient
## 5956 E E No Deposit Transient
## 5957 E E No Deposit Transient
## 5958 E I No Deposit Transient
## 5959 E E No Deposit Transient
## 5960 A A No Deposit Transient
## 5961 A A Non Refund Transient
## 5962 A A Non Refund Transient
## 5963 D D No Deposit Transient
## 5964 A A No Deposit Transient
## 5965 A A No Deposit Transient
## 5966 A A No Deposit Transient
## 5967 A A No Deposit Transient
## 5968 A A Non Refund Transient
## 5969 A A Non Refund Transient
## 5970 A A Non Refund Transient
## 5971 A A Non Refund Transient
## 5972 A A Non Refund Transient
## 5973 A A Non Refund Transient
## 5974 A A Non Refund Transient
## 5975 A A Non Refund Transient
## 5976 A A Non Refund Transient
## 5977 A A Non Refund Transient
## 5978 A A Non Refund Transient
## 5979 A A Non Refund Transient
## 5980 A A Non Refund Transient
## 5981 A A No Deposit Transient
## 5982 D D No Deposit Transient
## 5983 A A Non Refund Transient
## 5984 A A Non Refund Transient
## 5985 A A Non Refund Transient
## 5986 A A No Deposit Transient
## 5987 A A Non Refund Transient
## 5988 A A Non Refund Transient
## 5989 E E No Deposit Transient
## 5990 E E No Deposit Transient
## 5991 A B No Deposit Transient
## 5992 F G No Deposit Transient
## 5993 D D No Deposit Transient
## 5994 A A No Deposit Transient
## 5995 A A No Deposit Contract
## 5996 A A No Deposit Transient
## 5997 G G No Deposit Transient
## 5998 A A No Deposit Contract
## 5999 A A No Deposit Transient
## 6000 D D No Deposit Transient
## 6001 E E No Deposit Transient
## 6002 E E No Deposit Contract
## 6003 E E No Deposit Transient-Party
## 6004 E E No Deposit Transient-Party
## 6005 E E No Deposit Transient-Party
## 6006 E E No Deposit Transient-Party
## 6007 D D No Deposit Transient
## 6008 A C No Deposit Transient
## 6009 E E No Deposit Transient
## 6010 E E No Deposit Transient
## 6011 A D No Deposit Transient
## 6012 A A No Deposit Transient
## 6013 E E No Deposit Transient
## 6014 E E No Deposit Transient
## 6015 A A No Deposit Transient
## 6016 E E No Deposit Transient
## 6017 A A No Deposit Transient
## 6018 A C No Deposit Transient
## 6019 A A No Deposit Transient
## 6020 A C No Deposit Transient
## 6021 D D No Deposit Transient
## 6022 D D No Deposit Transient
## 6023 H H No Deposit Transient
## 6024 A A No Deposit Transient
## 6025 F F No Deposit Transient
## 6026 D D No Deposit Transient
## 6027 D D No Deposit Transient
## 6028 A A No Deposit Transient-Party
## 6029 A A No Deposit Transient-Party
## 6030 A A No Deposit Transient
## 6031 G G No Deposit Transient
## 6032 D D No Deposit Transient
## 6033 A A No Deposit Transient
## 6034 G G No Deposit Transient
## 6035 A A No Deposit Transient
## 6036 A A No Deposit Transient-Party
## 6037 D D No Deposit Contract
## 6038 G G No Deposit Transient
## 6039 D D No Deposit Transient
## 6040 A A No Deposit Transient
## 6041 A B No Deposit Transient
## 6042 A A No Deposit Transient
## 6043 A A No Deposit Transient
## 6044 A A No Deposit Contract
## 6045 A A No Deposit Transient-Party
## 6046 D D No Deposit Transient
## 6047 E E No Deposit Transient
## 6048 D D No Deposit Transient
## 6049 D D No Deposit Transient
## 6050 A A No Deposit Transient
## 6051 A A No Deposit Transient
## 6052 D D No Deposit Transient
## 6053 A C No Deposit Transient-Party
## 6054 D D No Deposit Transient
## 6055 D D No Deposit Transient
## 6056 A A No Deposit Contract
## 6057 A A No Deposit Transient
## 6058 E E No Deposit Transient
## 6059 A A No Deposit Transient
## 6060 A A No Deposit Transient
## 6061 A A No Deposit Transient
## 6062 D D No Deposit Transient
## 6063 E E No Deposit Transient
## 6064 A E No Deposit Transient
## 6065 A A No Deposit Transient-Party
## 6066 A D No Deposit Transient-Party
## 6067 A A No Deposit Transient-Party
## 6068 A C No Deposit Transient-Party
## 6069 A A No Deposit Transient-Party
## 6070 A E No Deposit Transient-Party
## 6071 A A No Deposit Transient-Party
## 6072 A A No Deposit Transient-Party
## 6073 A E No Deposit Transient-Party
## 6074 A A No Deposit Transient-Party
## 6075 A A No Deposit Transient-Party
## 6076 A A No Deposit Transient-Party
## 6077 A E No Deposit Transient-Party
## 6078 A A No Deposit Transient-Party
## 6079 A B No Deposit Transient-Party
## 6080 A A No Deposit Transient
## 6081 A A No Deposit Transient
## 6082 A A Refundable Transient-Party
## 6083 A E Refundable Transient-Party
## 6084 A A No Deposit Transient-Party
## 6085 A A No Deposit Transient-Party
## 6086 D D No Deposit Transient
## 6087 A C No Deposit Transient
## 6088 A A No Deposit Transient-Party
## 6089 D D No Deposit Transient
## 6090 D D No Deposit Transient
## 6091 D D No Deposit Transient
## 6092 F F No Deposit Transient
## 6093 D D No Deposit Transient
## 6094 D D No Deposit Transient
## 6095 D D No Deposit Transient
## 6096 D D No Deposit Transient
## 6097 D D No Deposit Transient
## 6098 G G No Deposit Transient
## 6099 A A No Deposit Transient-Party
## 6100 A D No Deposit Transient-Party
## 6101 A A No Deposit Transient-Party
## 6102 A A No Deposit Transient-Party
## 6103 A A No Deposit Transient-Party
## 6104 E E No Deposit Transient
## 6105 A C No Deposit Transient-Party
## 6106 A A No Deposit Transient-Party
## 6107 A A No Deposit Transient-Party
## 6108 D D No Deposit Transient
## 6109 A A No Deposit Transient
## 6110 A A No Deposit Transient-Party
## 6111 A A No Deposit Transient-Party
## 6112 D D No Deposit Transient
## 6113 D D No Deposit Transient
## 6114 A A No Deposit Transient
## 6115 A A No Deposit Transient
## 6116 A A No Deposit Transient-Party
## 6117 H H No Deposit Transient
## 6118 A A No Deposit Transient-Party
## 6119 A A No Deposit Transient-Party
## 6120 A A No Deposit Transient-Party
## 6121 A F No Deposit Transient-Party
## 6122 A A No Deposit Transient-Party
## 6123 A A No Deposit Transient-Party
## 6124 A A No Deposit Transient-Party
## 6125 A A No Deposit Transient
## 6126 A A No Deposit Transient
## 6127 A C No Deposit Transient-Party
## 6128 D D No Deposit Transient
## 6129 A A No Deposit Transient-Party
## 6130 A A No Deposit Transient-Party
## 6131 A A No Deposit Transient-Party
## 6132 A A No Deposit Transient-Party
## 6133 A D No Deposit Transient-Party
## 6134 A C No Deposit Transient-Party
## 6135 A C No Deposit Transient-Party
## 6136 A D No Deposit Transient-Party
## 6137 A A No Deposit Transient-Party
## 6138 A C No Deposit Transient-Party
## 6139 A C No Deposit Transient-Party
## 6140 A A No Deposit Transient-Party
## 6141 A A No Deposit Transient-Party
## 6142 A E No Deposit Transient-Party
## 6143 A D No Deposit Transient-Party
## 6144 A A No Deposit Transient-Party
## 6145 A A No Deposit Transient-Party
## 6146 A E No Deposit Transient-Party
## 6147 A A No Deposit Transient-Party
## 6148 A A No Deposit Transient-Party
## 6149 A D No Deposit Transient-Party
## 6150 A D No Deposit Transient-Party
## 6151 A A Refundable Transient-Party
## 6152 D D No Deposit Transient
## 6153 A I Non Refund Transient-Party
## 6154 A A No Deposit Transient-Party
## 6155 A A No Deposit Transient-Party
## 6156 A A No Deposit Transient-Party
## 6157 A A No Deposit Transient-Party
## 6158 E E No Deposit Transient-Party
## 6159 A C No Deposit Contract
## 6160 E E No Deposit Transient-Party
## 6161 E E No Deposit Transient-Party
## 6162 G G No Deposit Transient
## 6163 E E No Deposit Transient
## 6164 A A No Deposit Transient
## 6165 A A No Deposit Transient
## 6166 A A Non Refund Transient
## 6167 A A Non Refund Transient
## 6168 A A Non Refund Transient
## 6169 D D No Deposit Transient
## 6170 A A Non Refund Transient
## 6171 A A Non Refund Transient
## 6172 A A No Deposit Transient
## 6173 A A Non Refund Transient
## 6174 A A Non Refund Transient
## 6175 A A Non Refund Transient
## 6176 A A No Deposit Transient
## 6177 A A No Deposit Transient
## 6178 A D Non Refund Transient-Party
## 6179 D D No Deposit Transient
## 6180 A A No Deposit Transient
## 6181 E E No Deposit Transient
## 6182 A A No Deposit Transient
## 6183 G G No Deposit Transient
## 6184 A A No Deposit Transient
## 6185 G G No Deposit Transient
## 6186 A A No Deposit Transient
## 6187 D D No Deposit Contract
## 6188 A A No Deposit Transient
## 6189 A A No Deposit Transient
## 6190 D D No Deposit Contract
## 6191 A A Non Refund Transient-Party
## 6192 A F No Deposit Transient-Party
## 6193 A E No Deposit Transient-Party
## 6194 A A No Deposit Transient-Party
## 6195 A A No Deposit Transient
## 6196 A E No Deposit Transient-Party
## 6197 A E No Deposit Transient-Party
## 6198 A F No Deposit Transient-Party
## 6199 A D No Deposit Transient-Party
## 6200 A E No Deposit Transient-Party
## 6201 A E No Deposit Transient-Party
## 6202 A A No Deposit Transient-Party
## 6203 A E No Deposit Transient
## 6204 A E No Deposit Transient-Party
## 6205 A D No Deposit Transient-Party
## 6206 A E No Deposit Transient-Party
## 6207 A F No Deposit Transient-Party
## 6208 A E No Deposit Transient-Party
## 6209 A E No Deposit Transient-Party
## 6210 A A No Deposit Transient-Party
## 6211 A A No Deposit Transient
## 6212 A A No Deposit Transient-Party
## 6213 A A No Deposit Transient-Party
## 6214 A A No Deposit Transient-Party
## 6215 A F No Deposit Transient-Party
## 6216 A D No Deposit Transient-Party
## 6217 A E No Deposit Transient-Party
## 6218 A A No Deposit Transient-Party
## 6219 D D No Deposit Transient-Party
## 6220 A A No Deposit Transient
## 6221 A A No Deposit Transient
## 6222 A A No Deposit Transient
## 6223 D D No Deposit Transient-Party
## 6224 D D No Deposit Transient
## 6225 D D No Deposit Transient
## 6226 D D No Deposit Transient
## 6227 E F No Deposit Transient
## 6228 D D No Deposit Transient
## 6229 D D No Deposit Transient
## 6230 D D No Deposit Transient
## 6231 D D No Deposit Transient
## 6232 A A No Deposit Contract
## 6233 D D No Deposit Transient
## 6234 E E No Deposit Transient
## 6235 A I No Deposit Transient-Party
## 6236 A I No Deposit Transient-Party
## 6237 A D No Deposit Transient-Party
## 6238 A A No Deposit Transient
## 6239 A A No Deposit Transient
## 6240 H H No Deposit Transient
## 6241 A A No Deposit Transient
## 6242 A A No Deposit Transient
## 6243 A A No Deposit Transient
## 6244 A A No Deposit Transient
## 6245 A A No Deposit Transient
## 6246 A A No Deposit Transient
## 6247 A A No Deposit Transient
## 6248 D D No Deposit Transient
## 6249 D D No Deposit Transient
## 6250 A A No Deposit Transient
## 6251 E E No Deposit Transient
## 6252 A A No Deposit Transient
## 6253 A A No Deposit Contract
## 6254 A A No Deposit Transient
## 6255 A A No Deposit Transient
## 6256 E E No Deposit Transient
## 6257 E E No Deposit Transient-Party
## 6258 A A No Deposit Transient-Party
## 6259 A A No Deposit Transient
## 6260 E E No Deposit Transient
## 6261 D D No Deposit Transient
## 6262 A A No Deposit Transient
## 6263 A A No Deposit Transient
## 6264 A A No Deposit Transient
## 6265 D D No Deposit Transient
## 6266 D D No Deposit Contract
## 6267 A A No Deposit Transient
## 6268 D D No Deposit Transient
## 6269 A A No Deposit Transient
## 6270 A A No Deposit Transient
## 6271 G G No Deposit Transient
## 6272 A A No Deposit Transient
## 6273 D D No Deposit Transient-Party
## 6274 D D No Deposit Transient-Party
## 6275 E F No Deposit Contract
## 6276 A A No Deposit Transient
## 6277 D D No Deposit Transient-Party
## 6278 A A No Deposit Transient
## 6279 A A Non Refund Transient
## 6280 A A Non Refund Transient
## 6281 A A Non Refund Transient
## 6282 A A Non Refund Transient
## 6283 A A Non Refund Transient
## 6284 A A No Deposit Transient
## 6285 A A No Deposit Transient
## 6286 G G No Deposit Transient
## 6287 A A Non Refund Transient
## 6288 A A Non Refund Transient
## 6289 A A No Deposit Transient
## 6290 A A Non Refund Transient
## 6291 A A Non Refund Transient
## 6292 A A Non Refund Transient
## 6293 A A Non Refund Transient
## 6294 A A Non Refund Transient
## 6295 D D No Deposit Transient
## 6296 A A No Deposit Transient
## 6297 A A No Deposit Transient
## 6298 D E No Deposit Transient
## 6299 C C No Deposit Transient
## 6300 A A No Deposit Transient
## 6301 A A No Deposit Transient
## 6302 A A No Deposit Transient
## 6303 A A No Deposit Transient
## 6304 F F No Deposit Transient
## 6305 H H No Deposit Transient
## 6306 A A No Deposit Transient
## 6307 E E No Deposit Transient
## 6308 G G No Deposit Transient
## 6309 A C No Deposit Transient-Party
## 6310 A A No Deposit Transient-Party
## 6311 D D No Deposit Transient
## 6312 G G No Deposit Transient
## 6313 A A No Deposit Transient
## 6314 A A Non Refund Transient
## 6315 A A Non Refund Transient
## 6316 A A Non Refund Transient
## 6317 A A Non Refund Transient
## 6318 A A Non Refund Transient
## 6319 E E No Deposit Transient
## 6320 A A Non Refund Transient
## 6321 A A Non Refund Transient
## 6322 A A Non Refund Transient
## 6323 A A No Deposit Transient
## 6324 A A No Deposit Transient
## 6325 A A No Deposit Transient
## 6326 A A Non Refund Transient
## 6327 A C No Deposit Contract
## 6328 D D No Deposit Transient
## 6329 A A No Deposit Transient
## 6330 A A No Deposit Transient
## 6331 E E No Deposit Transient
## 6332 A A No Deposit Transient
## 6333 A A No Deposit Transient
## 6334 A A No Deposit Transient
## 6335 D D No Deposit Transient
## 6336 A A No Deposit Transient
## 6337 D D No Deposit Transient
## 6338 A A No Deposit Transient
## 6339 A A No Deposit Contract
## 6340 A A No Deposit Contract
## 6341 A A No Deposit Transient
## 6342 A A No Deposit Transient
## 6343 A A No Deposit Transient
## 6344 A A No Deposit Transient
## 6345 A A No Deposit Transient
## 6346 D D No Deposit Transient
## 6347 G G No Deposit Transient
## 6348 A A No Deposit Transient
## 6349 H H No Deposit Transient
## 6350 A A No Deposit Transient
## 6351 E E No Deposit Transient
## 6352 A A No Deposit Transient
## 6353 D D No Deposit Transient
## 6354 A A No Deposit Contract
## 6355 A A No Deposit Transient
## 6356 A A No Deposit Transient
## 6357 G G No Deposit Transient
## 6358 G G No Deposit Transient
## 6359 A A No Deposit Transient
## 6360 A A No Deposit Transient
## 6361 A A No Deposit Transient
## 6362 A A No Deposit Transient
## 6363 D D No Deposit Transient
## 6364 E E No Deposit Transient
## 6365 G G No Deposit Transient
## 6366 D D No Deposit Transient
## 6367 A A No Deposit Transient
## 6368 G G No Deposit Transient
## 6369 A G No Deposit Transient
## 6370 A G No Deposit Transient
## 6371 A H No Deposit Transient
## 6372 A A No Deposit Transient
## 6373 A A No Deposit Transient
## 6374 E G No Deposit Transient
## 6375 A A No Deposit Transient
## 6376 A A No Deposit Transient
## 6377 E E No Deposit Transient
## 6378 D F No Deposit Transient
## 6379 A A No Deposit Transient
## 6380 A A No Deposit Transient
## 6381 H H No Deposit Transient
## 6382 A C No Deposit Contract
## 6383 A A No Deposit Contract
## 6384 A A No Deposit Transient
## 6385 A A No Deposit Transient
## 6386 A A No Deposit Transient
## 6387 A A No Deposit Transient
## 6388 A A No Deposit Transient
## 6389 A A No Deposit Transient
## 6390 A A No Deposit Transient
## 6391 D D No Deposit Transient-Party
## 6392 A A No Deposit Transient
## 6393 D D No Deposit Transient-Party
## 6394 D D No Deposit Transient
## 6395 E E No Deposit Contract
## 6396 A A No Deposit Transient
## 6397 E E No Deposit Transient
## 6398 A A No Deposit Transient
## 6399 D D No Deposit Transient
## 6400 A A No Deposit Transient
## 6401 A A No Deposit Transient
## 6402 A A No Deposit Transient
## 6403 A A No Deposit Transient
## 6404 A A No Deposit Transient
## 6405 E E No Deposit Transient
## 6406 A A No Deposit Transient
## 6407 A A No Deposit Transient
## 6408 A A No Deposit Transient
## 6409 A A No Deposit Transient
## 6410 A A No Deposit Transient
## 6411 A A No Deposit Transient
## 6412 A A No Deposit Transient
## 6413 A A No Deposit Transient
## 6414 A A No Deposit Transient
## 6415 A A No Deposit Transient
## 6416 A A No Deposit Transient
## 6417 A A No Deposit Transient
## 6418 A A No Deposit Transient
## 6419 A A No Deposit Transient
## 6420 A A No Deposit Transient-Party
## 6421 A A No Deposit Transient
## 6422 E E No Deposit Transient
## 6423 A A No Deposit Transient
## 6424 A A No Deposit Transient
## 6425 G G No Deposit Transient
## 6426 A C No Deposit Transient-Party
## 6427 A A No Deposit Transient-Party
## 6428 A A No Deposit Transient
## 6429 D D No Deposit Transient
## 6430 H H No Deposit Transient
## 6431 E E No Deposit Transient
## 6432 A A No Deposit Transient
## 6433 A A No Deposit Transient
## 6434 A A No Deposit Transient
## 6435 A A No Deposit Transient
## 6436 A A No Deposit Transient
## 6437 H H No Deposit Transient
## 6438 E E No Deposit Transient
## 6439 A A No Deposit Transient
## 6440 A A No Deposit Transient
## 6441 E E No Deposit Transient-Party
## 6442 A A No Deposit Transient
## 6443 A A No Deposit Transient
## 6444 A A No Deposit Transient
## 6445 A A No Deposit Transient
## 6446 E E No Deposit Transient-Party
## 6447 A A No Deposit Transient
## 6448 A A No Deposit Contract
## 6449 A A Non Refund Transient
## 6450 A A Non Refund Transient
## 6451 A A Non Refund Transient
## 6452 A A Non Refund Transient
## 6453 A A Non Refund Transient
## 6454 A A Non Refund Transient
## 6455 A A Non Refund Transient
## 6456 A A Non Refund Transient
## 6457 A A Non Refund Transient
## 6458 A A Non Refund Transient
## 6459 A A Non Refund Transient
## 6460 A A Non Refund Transient
## 6461 A A Non Refund Transient
## 6462 A A Non Refund Transient
## 6463 A A Non Refund Transient
## 6464 A A Non Refund Transient
## 6465 A A No Deposit Transient
## 6466 A A No Deposit Transient
## 6467 A A No Deposit Transient
## 6468 G G No Deposit Transient
## 6469 A A Non Refund Transient
## 6470 A A Non Refund Transient
## 6471 A A Non Refund Transient
## 6472 A A Non Refund Transient
## 6473 A A Non Refund Transient
## 6474 A A Non Refund Transient
## 6475 A A Non Refund Transient
## 6476 A A Non Refund Transient
## 6477 A A Non Refund Transient
## 6478 A A Non Refund Transient
## 6479 A A Non Refund Transient
## 6480 A A Non Refund Transient
## 6481 G G No Deposit Transient
## 6482 A A No Deposit Transient
## 6483 D D No Deposit Transient
## 6484 H H No Deposit Transient
## 6485 H H No Deposit Transient
## 6486 H H No Deposit Transient
## 6487 D D No Deposit Contract
## 6488 G G No Deposit Transient
## 6489 A I No Deposit Transient
## 6490 A A No Deposit Transient
## 6491 D D No Deposit Transient
## 6492 A A No Deposit Transient
## 6493 E F No Deposit Transient
## 6494 A A No Deposit Transient
## 6495 A A No Deposit Transient
## 6496 D D No Deposit Transient
## 6497 A A No Deposit Transient
## 6498 A A No Deposit Transient
## 6499 G G No Deposit Transient
## 6500 H H No Deposit Transient
## 6501 A A No Deposit Transient
## 6502 A A No Deposit Transient
## 6503 A A No Deposit Transient
## 6504 A A No Deposit Transient
## 6505 D D No Deposit Transient
## 6506 A A No Deposit Transient
## 6507 A A No Deposit Transient
## 6508 A A No Deposit Transient
## 6509 D D No Deposit Transient
## 6510 E E No Deposit Transient
## 6511 A A No Deposit Transient
## 6512 E E No Deposit Transient
## 6513 A A No Deposit Transient
## 6514 D D No Deposit Transient
## 6515 A A No Deposit Transient
## 6516 G G No Deposit Transient
## 6517 A A No Deposit Transient
## 6518 C C No Deposit Transient
## 6519 E E No Deposit Transient
## 6520 A A No Deposit Transient
## 6521 F F No Deposit Transient
## 6522 A A No Deposit Contract
## 6523 D D No Deposit Transient
## 6524 E E No Deposit Transient
## 6525 E E No Deposit Transient
## 6526 A A No Deposit Transient
## 6527 A A No Deposit Transient
## 6528 A B No Deposit Transient
## 6529 A A No Deposit Transient
## 6530 A A No Deposit Transient
## 6531 E E No Deposit Transient
## 6532 G G No Deposit Transient
## 6533 G G No Deposit Transient
## 6534 A A No Deposit Transient
## 6535 H H No Deposit Transient
## 6536 H H No Deposit Transient
## 6537 E E No Deposit Transient
## 6538 A A No Deposit Transient
## 6539 E E No Deposit Transient
## 6540 F F No Deposit Transient
## 6541 A A No Deposit Transient
## 6542 E E No Deposit Transient
## 6543 A A No Deposit Transient
## 6544 A A No Deposit Transient
## 6545 A A No Deposit Transient
## 6546 A A No Deposit Transient
## 6547 A A No Deposit Transient
## 6548 G G No Deposit Transient
## 6549 G G No Deposit Transient
## 6550 A A No Deposit Transient
## 6551 E E No Deposit Transient
## 6552 A A No Deposit Transient
## 6553 A A No Deposit Transient
## 6554 H H No Deposit Transient
## 6555 G G No Deposit Transient
## 6556 G G No Deposit Transient
## 6557 D D No Deposit Transient-Party
## 6558 G G No Deposit Transient
## 6559 D D No Deposit Transient-Party
## 6560 A A No Deposit Transient
## 6561 A A No Deposit Transient
## 6562 A A No Deposit Transient
## 6563 G G No Deposit Transient
## 6564 A A No Deposit Transient
## 6565 A A No Deposit Transient
## 6566 A A No Deposit Transient
## 6567 E E No Deposit Transient
## 6568 A D No Deposit Transient
## 6569 A A No Deposit Transient
## 6570 H H No Deposit Transient
## 6571 E E No Deposit Transient
## 6572 E E No Deposit Transient
## 6573 G G No Deposit Transient
## 6574 E E No Deposit Contract
## 6575 A A No Deposit Transient
## 6576 E E No Deposit Transient
## 6577 A A No Deposit Contract
## 6578 A A No Deposit Transient
## 6579 G G No Deposit Transient
## 6580 D D No Deposit Transient
## 6581 E E No Deposit Transient
## 6582 D D No Deposit Transient
## 6583 D D No Deposit Transient
## 6584 D D No Deposit Transient
## 6585 G G No Deposit Transient
## 6586 A A No Deposit Transient
## 6587 G G No Deposit Transient
## 6588 A A No Deposit Transient
## 6589 A A No Deposit Transient
## 6590 A A No Deposit Transient
## 6591 A A No Deposit Transient
## 6592 E E No Deposit Transient
## 6593 A A No Deposit Transient
## 6594 A A No Deposit Transient
## 6595 A A No Deposit Transient
## 6596 A A No Deposit Transient
## 6597 H H No Deposit Transient
## 6598 A A No Deposit Transient
## 6599 A A No Deposit Transient
## 6600 D D Non Refund Transient
## 6601 D D Non Refund Transient
## 6602 A A Non Refund Transient
## 6603 A A Non Refund Transient
## 6604 A A No Deposit Transient
## 6605 D D Non Refund Transient
## 6606 D D No Deposit Transient
## 6607 D D Non Refund Transient
## 6608 A A Non Refund Transient
## 6609 D D Non Refund Transient
## 6610 D D Non Refund Transient
## 6611 A A Non Refund Transient
## 6612 A A No Deposit Transient
## 6613 D D No Deposit Transient
## 6614 D D No Deposit Transient
## 6615 A A No Deposit Contract
## 6616 E E No Deposit Transient
## 6617 D D No Deposit Contract
## 6618 A A No Deposit Transient
## 6619 A A No Deposit Transient
## 6620 A A No Deposit Transient
## 6621 A A No Deposit Transient
## 6622 A A No Deposit Transient
## 6623 A A No Deposit Transient
## 6624 A A No Deposit Transient
## 6625 A A No Deposit Transient
## 6626 A A No Deposit Transient
## 6627 D D No Deposit Transient
## 6628 E E No Deposit Transient
## 6629 E F No Deposit Transient
## 6630 A A No Deposit Transient
## 6631 A A No Deposit Transient
## 6632 A A No Deposit Transient
## 6633 G G No Deposit Transient
## 6634 G G No Deposit Transient
## 6635 A A No Deposit Transient
## 6636 D D No Deposit Transient
## 6637 A A No Deposit Transient-Party
## 6638 A A No Deposit Transient-Party
## 6639 A F No Deposit Transient-Party
## 6640 A A No Deposit Transient-Party
## 6641 A A No Deposit Transient-Party
## 6642 A E No Deposit Transient-Party
## 6643 A A No Deposit Transient-Party
## 6644 A C No Deposit Transient-Party
## 6645 A A No Deposit Transient-Party
## 6646 A A No Deposit Transient-Party
## 6647 A A No Deposit Transient-Party
## 6648 A A No Deposit Transient-Party
## 6649 A C No Deposit Transient-Party
## 6650 A A No Deposit Transient-Party
## 6651 A A No Deposit Transient-Party
## 6652 A D No Deposit Transient-Party
## 6653 A A No Deposit Transient-Party
## 6654 A A No Deposit Transient-Party
## 6655 A A No Deposit Transient-Party
## 6656 A A No Deposit Transient-Party
## 6657 G G No Deposit Transient
## 6658 A D No Deposit Transient-Party
## 6659 A E No Deposit Transient-Party
## 6660 A A No Deposit Transient-Party
## 6661 A A No Deposit Transient-Party
## 6662 A A No Deposit Transient-Party
## 6663 A A No Deposit Transient-Party
## 6664 A A No Deposit Transient
## 6665 A A No Deposit Transient
## 6666 A A No Deposit Transient
## 6667 A A No Deposit Transient
## 6668 A A No Deposit Transient
## 6669 A I No Deposit Transient-Party
## 6670 E E No Deposit Transient
## 6671 A F No Deposit Transient
## 6672 D D No Deposit Transient
## 6673 E E No Deposit Contract
## 6674 H H No Deposit Transient
## 6675 A A No Deposit Transient
## 6676 A A No Deposit Transient
## 6677 D F No Deposit Transient
## 6678 A A No Deposit Transient
## 6679 A F No Deposit Transient
## 6680 A B No Deposit Transient
## 6681 D D No Deposit Transient
## 6682 H H No Deposit Transient
## 6683 G G No Deposit Transient
## 6684 H H No Deposit Transient
## 6685 E E No Deposit Transient
## 6686 A C No Deposit Transient
## 6687 G G No Deposit Transient
## 6688 D D No Deposit Contract
## 6689 A A No Deposit Transient
## 6690 E E No Deposit Contract
## 6691 D D No Deposit Transient
## 6692 A A No Deposit Transient
## 6693 A A No Deposit Transient
## 6694 H H No Deposit Transient
## 6695 A A No Deposit Transient
## 6696 A A No Deposit Transient
## 6697 A A No Deposit Transient
## 6698 F F No Deposit Transient
## 6699 A A No Deposit Transient
## 6700 G G No Deposit Transient
## 6701 G G No Deposit Transient
## 6702 G G No Deposit Transient
## 6703 E E No Deposit Transient
## 6704 E E No Deposit Transient
## 6705 G G No Deposit Transient
## 6706 C C No Deposit Transient
## 6707 D D No Deposit Transient
## 6708 G G No Deposit Transient
## 6709 H H No Deposit Transient
## 6710 A A No Deposit Transient
## 6711 A A No Deposit Transient
## 6712 A A No Deposit Transient
## 6713 A A No Deposit Transient
## 6714 A A No Deposit Transient
## 6715 A A No Deposit Transient
## 6716 G G No Deposit Transient
## 6717 D C No Deposit Transient
## 6718 A A No Deposit Transient
## 6719 D D No Deposit Transient
## 6720 C C No Deposit Transient
## 6721 C C No Deposit Transient
## 6722 D D No Deposit Transient
## 6723 E E No Deposit Transient
## 6724 A A No Deposit Transient
## 6725 A A No Deposit Transient
## 6726 A A No Deposit Transient
## 6727 A A No Deposit Transient
## 6728 A A No Deposit Transient
## 6729 D D No Deposit Transient
## 6730 A A No Deposit Transient
## 6731 D D No Deposit Transient
## 6732 D D No Deposit Transient
## 6733 A A No Deposit Transient
## 6734 A A No Deposit Transient
## 6735 A A No Deposit Transient
## 6736 A A No Deposit Transient
## 6737 D D No Deposit Transient
## 6738 A A No Deposit Transient
## 6739 G G No Deposit Transient
## 6740 D D No Deposit Transient
## 6741 A A No Deposit Transient
## 6742 A A No Deposit Transient
## 6743 A A No Deposit Transient
## 6744 F F No Deposit Transient
## 6745 D D No Deposit Contract
## 6746 D D No Deposit Contract
## 6747 A A No Deposit Transient
## 6748 A A No Deposit Transient
## 6749 H H No Deposit Transient
## 6750 A A No Deposit Transient
## 6751 A B No Deposit Contract
## 6752 A A No Deposit Transient
## 6753 E E No Deposit Contract
## 6754 A A No Deposit Transient
## 6755 D D No Deposit Transient
## 6756 A A No Deposit Transient
## 6757 A A No Deposit Transient
## 6758 A A No Deposit Transient
## 6759 E E No Deposit Transient
## 6760 G G No Deposit Transient
## 6761 A A No Deposit Transient
## 6762 D D No Deposit Transient
## 6763 F F No Deposit Transient
## 6764 A A No Deposit Transient
## 6765 A A No Deposit Contract
## 6766 H H No Deposit Transient
## 6767 G G No Deposit Transient
## 6768 F F No Deposit Transient
## 6769 G G No Deposit Transient
## 6770 G G No Deposit Transient
## 6771 A A No Deposit Transient
## 6772 A A No Deposit Transient
## 6773 A A No Deposit Transient
## 6774 A A No Deposit Transient
## 6775 A A No Deposit Transient
## 6776 A A No Deposit Transient
## 6777 E E No Deposit Transient
## 6778 A A No Deposit Contract
## 6779 A A No Deposit Contract
## 6780 E E No Deposit Contract
## 6781 G G No Deposit Transient
## 6782 A A No Deposit Contract
## 6783 A C No Deposit Transient
## 6784 C C No Deposit Transient
## 6785 D D No Deposit Transient
## 6786 A A No Deposit Transient-Party
## 6787 D D No Deposit Transient
## 6788 A A No Deposit Transient
## 6789 A A No Deposit Transient-Party
## 6790 A A No Deposit Transient
## 6791 D D No Deposit Transient
## 6792 D D No Deposit Transient
## 6793 G G No Deposit Transient
## 6794 D D No Deposit Transient
## 6795 A A No Deposit Transient
## 6796 A C No Deposit Transient
## 6797 A A No Deposit Transient
## 6798 A A No Deposit Transient
## 6799 E E No Deposit Transient
## 6800 D D No Deposit Transient
## 6801 D I No Deposit Transient
## 6802 D D No Deposit Transient
## 6803 H H No Deposit Transient
## 6804 D D No Deposit Transient
## 6805 A A No Deposit Transient
## 6806 A A No Deposit Transient
## 6807 A A No Deposit Transient
## 6808 D D No Deposit Transient
## 6809 D E No Deposit Contract
## 6810 A A No Deposit Transient
## 6811 E E No Deposit Transient
## 6812 E E No Deposit Transient
## 6813 A A No Deposit Transient
## 6814 D D No Deposit Contract
## 6815 A A No Deposit Transient
## 6816 E E No Deposit Transient
## 6817 E E No Deposit Contract
## 6818 D D No Deposit Transient
## 6819 H H No Deposit Transient
## 6820 A A No Deposit Transient
## 6821 F F No Deposit Transient
## 6822 A A No Deposit Transient
## 6823 C C No Deposit Transient
## 6824 A A No Deposit Transient
## 6825 A A No Deposit Transient
## 6826 D D No Deposit Transient
## 6827 A A No Deposit Transient
## 6828 A A No Deposit Transient
## 6829 A A No Deposit Transient
## 6830 E E No Deposit Contract
## 6831 A A No Deposit Transient
## 6832 A A No Deposit Contract
## 6833 D D No Deposit Transient
## 6834 D D No Deposit Transient
## 6835 D D No Deposit Transient
## 6836 D D No Deposit Transient
## 6837 E E No Deposit Transient
## 6838 E E No Deposit Contract
## 6839 D D No Deposit Transient
## 6840 A A No Deposit Contract
## 6841 E E No Deposit Contract
## 6842 D D No Deposit Contract
## 6843 D D No Deposit Transient
## 6844 A A No Deposit Transient
## 6845 A A No Deposit Transient
## 6846 E E No Deposit Transient
## 6847 A D No Deposit Transient
## 6848 E E No Deposit Transient
## 6849 A A No Deposit Transient
## 6850 A C No Deposit Transient
## 6851 A D No Deposit Transient
## 6852 A A No Deposit Transient
## 6853 E E No Deposit Transient
## 6854 G G No Deposit Transient
## 6855 A A No Deposit Transient
## 6856 A A No Deposit Transient
## 6857 A A No Deposit Transient
## 6858 A A No Deposit Transient
## 6859 D D No Deposit Transient
## 6860 H H No Deposit Transient
## 6861 A A No Deposit Transient
## 6862 E E No Deposit Transient
## 6863 A A No Deposit Transient
## 6864 D D No Deposit Transient
## 6865 A A No Deposit Transient
## 6866 A A No Deposit Transient
## 6867 G G No Deposit Transient
## 6868 A A No Deposit Transient
## 6869 A A No Deposit Transient
## 6870 F F No Deposit Transient
## 6871 E E No Deposit Transient
## 6872 G G No Deposit Transient
## 6873 G G No Deposit Transient
## 6874 A A No Deposit Transient
## 6875 D D No Deposit Transient
## 6876 D D No Deposit Transient
## 6877 E E No Deposit Transient
## 6878 E E No Deposit Transient
## 6879 A A No Deposit Transient
## 6880 A A No Deposit Transient
## 6881 E E No Deposit Transient
## 6882 D D No Deposit Transient
## 6883 H H No Deposit Transient
## 6884 A A No Deposit Transient
## 6885 A A No Deposit Transient
## 6886 E E No Deposit Transient
## 6887 A A No Deposit Transient
## 6888 G G No Deposit Transient
## 6889 A A No Deposit Transient
## 6890 A A No Deposit Transient
## 6891 A A No Deposit Transient
## 6892 D D No Deposit Transient
## 6893 A A No Deposit Transient
## 6894 A A No Deposit Transient
## 6895 D D No Deposit Transient
## 6896 D D No Deposit Transient
## 6897 D D No Deposit Transient
## 6898 A A No Deposit Transient
## 6899 D D No Deposit Transient
## 6900 E E No Deposit Contract
## 6901 A A No Deposit Transient
## 6902 G G No Deposit Transient
## 6903 A A No Deposit Transient
## 6904 A A No Deposit Transient
## 6905 A A No Deposit Transient
## 6906 A A No Deposit Transient
## 6907 E E No Deposit Transient
## 6908 A A No Deposit Transient
## 6909 A A No Deposit Transient
## 6910 D D No Deposit Transient
## 6911 F F No Deposit Transient
## 6912 A A No Deposit Transient
## 6913 C C No Deposit Transient
## 6914 G G No Deposit Transient
## 6915 H H No Deposit Transient
## 6916 A A No Deposit Transient
## 6917 A A No Deposit Transient
## 6918 A A No Deposit Transient
## 6919 A A No Deposit Transient
## 6920 E E No Deposit Transient
## 6921 E E No Deposit Transient
## 6922 E E No Deposit Transient
## 6923 D D No Deposit Transient
## 6924 A A No Deposit Transient
## 6925 A A No Deposit Transient
## 6926 D D No Deposit Transient
## 6927 A A No Deposit Transient
## 6928 A A No Deposit Transient
## 6929 A A No Deposit Transient
## 6930 A A No Deposit Transient
## 6931 A A No Deposit Transient
## 6932 E E No Deposit Transient
## 6933 A E No Deposit Transient
## 6934 E E No Deposit Transient
## 6935 D D No Deposit Transient
## 6936 A A No Deposit Transient
## 6937 A A No Deposit Transient
## 6938 A A No Deposit Transient
## 6939 A A No Deposit Transient
## 6940 A A No Deposit Transient
## 6941 A A No Deposit Transient
## 6942 A A No Deposit Transient
## 6943 A A No Deposit Transient
## 6944 A A No Deposit Transient
## 6945 A A No Deposit Transient
## 6946 E E No Deposit Transient
## 6947 A A No Deposit Transient
## 6948 D D No Deposit Transient
## 6949 F F No Deposit Transient
## 6950 A A No Deposit Transient
## 6951 A A No Deposit Transient
## 6952 D D No Deposit Transient
## 6953 A A No Deposit Transient
## 6954 A A No Deposit Transient
## 6955 G G No Deposit Transient
## 6956 A A No Deposit Transient
## 6957 A A No Deposit Transient
## 6958 E E No Deposit Transient
## 6959 H H No Deposit Transient
## 6960 G G No Deposit Transient
## 6961 A A No Deposit Transient
## 6962 A A No Deposit Transient
## 6963 F F No Deposit Transient
## 6964 H H No Deposit Transient
## 6965 A A No Deposit Transient
## 6966 A A No Deposit Transient
## 6967 D D No Deposit Transient
## 6968 D D No Deposit Transient
## 6969 C C No Deposit Transient
## 6970 E E No Deposit Transient
## 6971 E E No Deposit Transient
## 6972 A A No Deposit Transient
## 6973 D D No Deposit Transient
## 6974 G G No Deposit Transient
## 6975 A A No Deposit Transient
## 6976 A A No Deposit Transient
## 6977 A A No Deposit Transient
## 6978 A A No Deposit Transient
## 6979 D D No Deposit Transient
## 6980 D D No Deposit Transient
## 6981 D D No Deposit Transient
## 6982 D D No Deposit Transient
## 6983 D D No Deposit Transient
## 6984 D D No Deposit Transient
## 6985 D D No Deposit Transient
## 6986 A A No Deposit Transient
## 6987 A A No Deposit Transient
## 6988 G G No Deposit Transient
## 6989 G G No Deposit Transient
## 6990 A A No Deposit Transient
## 6991 A A No Deposit Transient
## 6992 G G No Deposit Transient
## 6993 D D No Deposit Transient
## 6994 E E No Deposit Transient
## 6995 E E No Deposit Transient
## 6996 D D No Deposit Transient
## 6997 A A No Deposit Transient
## 6998 D D No Deposit Transient
## 6999 A A No Deposit Transient
## 7000 E E No Deposit Transient
## 7001 D D No Deposit Transient
## 7002 E E No Deposit Transient
## 7003 G G No Deposit Transient
## 7004 G G No Deposit Transient
## 7005 D D No Deposit Transient
## 7006 A A No Deposit Transient
## 7007 A A No Deposit Transient
## 7008 D D No Deposit Transient
## 7009 D D No Deposit Transient
## 7010 A A No Deposit Transient
## 7011 A A No Deposit Transient
## 7012 D D No Deposit Transient
## 7013 D D No Deposit Transient
## 7014 A A No Deposit Transient
## 7015 D D No Deposit Transient
## 7016 E E No Deposit Transient
## 7017 D D No Deposit Transient
## 7018 A A No Deposit Transient
## 7019 D D No Deposit Transient
## 7020 E E No Deposit Transient
## 7021 E E No Deposit Transient
## 7022 A A No Deposit Transient
## 7023 E E No Deposit Transient
## 7024 E E No Deposit Transient
## 7025 A A No Deposit Contract
## 7026 G G No Deposit Transient
## 7027 H H No Deposit Transient
## 7028 C C No Deposit Transient
## 7029 C C No Deposit Transient
## 7030 A A No Deposit Transient
## 7031 E E No Deposit Transient
## 7032 D D No Deposit Transient
## 7033 A A No Deposit Transient
## 7034 D D No Deposit Transient
## 7035 A A No Deposit Transient
## 7036 A A No Deposit Transient
## 7037 A A No Deposit Transient
## 7038 A A No Deposit Transient
## 7039 G G No Deposit Transient
## 7040 A A No Deposit Transient
## 7041 A A No Deposit Transient
## 7042 A A No Deposit Transient
## 7043 D D No Deposit Transient
## 7044 E E No Deposit Transient
## 7045 A A No Deposit Transient
## 7046 A A No Deposit Transient
## 7047 A A No Deposit Transient
## 7048 A A No Deposit Transient
## 7049 D D No Deposit Transient
## 7050 A A No Deposit Transient
## 7051 E E No Deposit Transient
## 7052 A A No Deposit Transient
## 7053 A A No Deposit Transient
## 7054 D D No Deposit Transient
## 7055 E E No Deposit Transient
## 7056 G G No Deposit Transient
## 7057 C C No Deposit Transient
## 7058 A A No Deposit Transient
## 7059 D D No Deposit Transient
## 7060 G G No Deposit Transient
## 7061 D D No Deposit Transient
## 7062 A A No Deposit Transient
## 7063 D D No Deposit Transient-Party
## 7064 A A No Deposit Transient
## 7065 D D No Deposit Transient-Party
## 7066 D D No Deposit Transient
## 7067 D D No Deposit Transient-Party
## 7068 A A No Deposit Transient
## 7069 A A No Deposit Transient
## 7070 H H No Deposit Transient
## 7071 A D No Deposit Transient
## 7072 A A No Deposit Transient
## 7073 D D No Deposit Transient
## 7074 G G No Deposit Transient
## 7075 A A No Deposit Transient
## 7076 A A No Deposit Transient
## 7077 D D No Deposit Transient
## 7078 E E No Deposit Transient
## 7079 G G No Deposit Transient
## 7080 A A No Deposit Transient
## 7081 A A No Deposit Transient
## 7082 A A No Deposit Transient
## 7083 A A No Deposit Transient
## 7084 D D No Deposit Transient
## 7085 A A No Deposit Transient
## 7086 A A No Deposit Transient
## 7087 E E No Deposit Transient
## 7088 C C No Deposit Transient
## 7089 E E No Deposit Transient
## 7090 A A No Deposit Transient
## 7091 A A No Deposit Transient
## 7092 D D No Deposit Transient
## 7093 A A No Deposit Transient
## 7094 A A No Deposit Transient
## 7095 A A No Deposit Transient
## 7096 G G No Deposit Transient
## 7097 G G No Deposit Transient
## 7098 E E No Deposit Transient
## 7099 E E No Deposit Transient
## 7100 G G No Deposit Transient
## 7101 G G No Deposit Transient
## 7102 D D No Deposit Transient
## 7103 E E No Deposit Transient
## 7104 E E No Deposit Transient
## 7105 G G No Deposit Transient
## 7106 E E No Deposit Transient
## 7107 D D No Deposit Transient
## 7108 A A No Deposit Transient-Party
## 7109 A A No Deposit Transient
## 7110 A A No Deposit Transient
## 7111 A A No Deposit Transient-Party
## 7112 G G No Deposit Transient
## 7113 A A No Deposit Transient
## 7114 A A No Deposit Transient
## 7115 A A No Deposit Transient
## 7116 A A No Deposit Transient
## 7117 E E No Deposit Transient
## 7118 A A No Deposit Transient
## 7119 E E No Deposit Transient
## 7120 D D No Deposit Transient
## 7121 D D No Deposit Transient
## 7122 E E No Deposit Transient
## 7123 A A No Deposit Transient
## 7124 G G No Deposit Transient
## 7125 C C No Deposit Transient
## 7126 E E No Deposit Transient
## 7127 A A No Deposit Transient
## 7128 E E No Deposit Transient
## 7129 D D No Deposit Transient
## 7130 E E No Deposit Transient-Party
## 7131 D D No Deposit Transient
## 7132 A A No Deposit Transient-Party
## 7133 D D No Deposit Transient
## 7134 D D No Deposit Transient
## 7135 G G No Deposit Transient
## 7136 D D No Deposit Transient
## 7137 A A No Deposit Transient
## 7138 H H No Deposit Transient
## 7139 D D No Deposit Transient
## 7140 A A No Deposit Transient
## 7141 A A No Deposit Transient-Party
## 7142 D D No Deposit Transient
## 7143 A A No Deposit Transient
## 7144 D D No Deposit Transient
## 7145 D D No Deposit Transient
## 7146 G G No Deposit Transient
## 7147 H H No Deposit Transient
## 7148 G G No Deposit Transient
## 7149 A A No Deposit Transient-Party
## 7150 A A No Deposit Transient-Party
## 7151 A A No Deposit Transient-Party
## 7152 A A No Deposit Transient-Party
## 7153 A A No Deposit Transient-Party
## 7154 A A No Deposit Transient
## 7155 C C No Deposit Transient
## 7156 A A No Deposit Transient
## 7157 D D No Deposit Transient
## 7158 E E No Deposit Transient
## 7159 E E No Deposit Transient
## 7160 E E No Deposit Transient
## 7161 D D No Deposit Transient
## 7162 D D No Deposit Transient
## 7163 D D No Deposit Transient
## 7164 D D No Deposit Transient
## 7165 A A No Deposit Transient
## 7166 E E No Deposit Transient
## 7167 E G No Deposit Transient
## 7168 E E No Deposit Transient
## 7169 E E No Deposit Transient
## 7170 D D No Deposit Transient
## 7171 D D No Deposit Transient
## 7172 D D No Deposit Transient
## 7173 G G No Deposit Transient
## 7174 A C No Deposit Transient
## 7175 G G No Deposit Transient
## 7176 E E No Deposit Transient
## 7177 A A No Deposit Transient
## 7178 D D No Deposit Transient
## 7179 E E No Deposit Transient
## 7180 A A No Deposit Transient
## 7181 A A No Deposit Transient
## 7182 A A No Deposit Transient
## 7183 A A No Deposit Transient-Party
## 7184 D D No Deposit Transient
## 7185 A A No Deposit Group
## 7186 D D No Deposit Transient
## 7187 A A No Deposit Transient-Party
## 7188 A I No Deposit Transient-Party
## 7189 A A No Deposit Transient
## 7190 E E No Deposit Transient
## 7191 D D No Deposit Transient
## 7192 A A No Deposit Transient
## 7193 A A No Deposit Transient
## 7194 D D No Deposit Transient
## 7195 D D No Deposit Transient
## 7196 D D No Deposit Transient
## 7197 A A No Deposit Transient
## 7198 D D No Deposit Transient
## 7199 E E No Deposit Transient
## 7200 H H No Deposit Transient
## 7201 A A No Deposit Transient
## 7202 F F No Deposit Transient
## 7203 D D No Deposit Transient
## 7204 A A No Deposit Transient
## 7205 A A No Deposit Transient-Party
## 7206 A A No Deposit Transient-Party
## 7207 A A No Deposit Transient
## 7208 D D No Deposit Transient
## 7209 D D No Deposit Transient
## 7210 E E No Deposit Transient
## 7211 E E No Deposit Transient
## 7212 C C No Deposit Transient
## 7213 G G No Deposit Transient
## 7214 A A No Deposit Transient-Party
## 7215 A A No Deposit Transient-Party
## 7216 A A No Deposit Transient
## 7217 D D No Deposit Transient
## 7218 D D No Deposit Transient
## 7219 D D No Deposit Transient
## 7220 A A No Deposit Transient
## 7221 E E No Deposit Transient
## 7222 E E No Deposit Transient
## 7223 E E No Deposit Transient
## 7224 A A No Deposit Transient
## 7225 A A No Deposit Transient
## 7226 E E No Deposit Transient
## 7227 F F No Deposit Transient
## 7228 A A No Deposit Transient
## 7229 A A No Deposit Transient
## 7230 A A No Deposit Transient
## 7231 A C No Deposit Transient-Party
## 7232 D D No Deposit Transient
## 7233 A A No Deposit Transient
## 7234 D D No Deposit Transient
## 7235 D D No Deposit Transient
## 7236 A A No Deposit Transient
## 7237 A A No Deposit Transient
## 7238 A A No Deposit Transient
## 7239 A A No Deposit Transient
## 7240 D D No Deposit Transient
## 7241 A A No Deposit Transient
## 7242 D D No Deposit Transient
## 7243 C C No Deposit Transient
## 7244 E E No Deposit Transient
## 7245 C C No Deposit Transient
## 7246 A A No Deposit Transient
## 7247 A A No Deposit Transient
## 7248 A A No Deposit Transient
## 7249 A A No Deposit Transient
## 7250 A A No Deposit Transient
## 7251 C C No Deposit Transient
## 7252 C C No Deposit Transient
## 7253 C C No Deposit Transient
## 7254 A A No Deposit Transient
## 7255 A A No Deposit Transient
## 7256 A A No Deposit Transient
## 7257 A A No Deposit Transient
## 7258 D D No Deposit Transient
## 7259 A A No Deposit Transient
## 7260 D D No Deposit Transient
## 7261 G G No Deposit Transient
## 7262 G G No Deposit Transient
## 7263 A A No Deposit Transient
## 7264 C C No Deposit Transient
## 7265 E E No Deposit Transient
## 7266 D D No Deposit Transient
## 7267 A A No Deposit Transient
## 7268 D D No Deposit Transient
## 7269 E E No Deposit Transient
## 7270 E E No Deposit Transient
## 7271 A A No Deposit Transient
## 7272 A A No Deposit Transient
## 7273 A A No Deposit Transient
## 7274 D D No Deposit Transient
## 7275 G G No Deposit Transient
## 7276 G G No Deposit Transient
## 7277 G G No Deposit Transient
## 7278 D D No Deposit Transient
## 7279 E E No Deposit Transient
## 7280 A A No Deposit Transient
## 7281 D D No Deposit Transient
## 7282 A A No Deposit Transient
## 7283 A A No Deposit Transient
## 7284 G G No Deposit Transient
## 7285 A A No Deposit Transient
## 7286 A A No Deposit Transient
## 7287 A A No Deposit Transient
## 7288 A A No Deposit Transient-Party
## 7289 A A No Deposit Transient
## 7290 A A No Deposit Transient
## 7291 D D No Deposit Transient
## 7292 C C No Deposit Transient
## 7293 A A No Deposit Transient-Party
## 7294 A A No Deposit Transient
## 7295 D D No Deposit Transient
## 7296 A A No Deposit Transient-Party
## 7297 A A No Deposit Transient
## 7298 E E No Deposit Transient
## 7299 A A No Deposit Transient
## 7300 A A No Deposit Transient
## 7301 D D No Deposit Transient
## 7302 D D No Deposit Transient
## 7303 A A No Deposit Transient
## 7304 A A No Deposit Transient
## 7305 C C No Deposit Transient
## 7306 F F No Deposit Transient
## 7307 A A No Deposit Transient
## 7308 A A No Deposit Transient
## 7309 A A No Deposit Transient
## 7310 A A No Deposit Transient
## 7311 A A No Deposit Transient
## 7312 A A No Deposit Transient
## 7313 H H No Deposit Transient
## 7314 A A No Deposit Transient
## 7315 A A No Deposit Transient
## 7316 C C No Deposit Transient
## 7317 A A No Deposit Transient
## 7318 G G No Deposit Transient
## 7319 E E No Deposit Contract
## 7320 H H No Deposit Transient
## 7321 G G No Deposit Transient
## 7322 A A No Deposit Transient
## 7323 A A No Deposit Transient
## 7324 E E No Deposit Transient
## 7325 A A No Deposit Transient
## 7326 A A No Deposit Transient
## 7327 A A No Deposit Transient
## 7328 C C No Deposit Transient
## 7329 D D No Deposit Transient
## 7330 A A No Deposit Transient
## 7331 E E No Deposit Transient
## 7332 A A No Deposit Transient
## 7333 A A No Deposit Transient
## 7334 A A No Deposit Transient
## 7335 A A No Deposit Transient
## 7336 A A No Deposit Transient
## 7337 A A No Deposit Transient
## 7338 A A No Deposit Transient
## 7339 A A No Deposit Transient
## 7340 A A No Deposit Transient
## 7341 A A No Deposit Transient
## 7342 D D No Deposit Transient
## 7343 G G No Deposit Transient
## 7344 D D No Deposit Transient
## 7345 D D No Deposit Transient
## 7346 F F No Deposit Transient
## 7347 A A No Deposit Transient
## 7348 D D No Deposit Transient
## 7349 G G No Deposit Transient
## 7350 E E No Deposit Transient
## 7351 A A No Deposit Transient
## 7352 G G No Deposit Transient
## 7353 A A No Deposit Transient
## 7354 A A No Deposit Transient
## 7355 G G No Deposit Transient
## 7356 A A No Deposit Transient
## 7357 E E No Deposit Transient
## 7358 A A No Deposit Transient
## 7359 D D No Deposit Transient
## 7360 A A No Deposit Transient
## 7361 C C No Deposit Transient
## 7362 A A No Deposit Transient
## 7363 A A No Deposit Transient
## 7364 G G No Deposit Transient
## 7365 D D No Deposit Transient
## 7366 G G No Deposit Transient
## 7367 D D No Deposit Transient
## 7368 H H No Deposit Transient
## 7369 D D No Deposit Transient
## 7370 A A No Deposit Transient
## 7371 G G No Deposit Transient
## 7372 H H No Deposit Transient
## 7373 A A No Deposit Transient
## 7374 A A No Deposit Transient
## 7375 A A No Deposit Transient
## 7376 A A No Deposit Transient
## 7377 A A No Deposit Transient
## 7378 A A No Deposit Transient
## 7379 D D No Deposit Transient
## 7380 A A No Deposit Transient
## 7381 A A No Deposit Transient
## 7382 E E No Deposit Transient
## 7383 A A No Deposit Transient
## 7384 F F No Deposit Transient
## 7385 A A No Deposit Transient
## 7386 D D No Deposit Transient
## 7387 E E No Deposit Transient
## 7388 A A No Deposit Transient
## 7389 A A No Deposit Transient
## 7390 H H No Deposit Transient
## 7391 C C No Deposit Transient
## 7392 C C No Deposit Transient
## 7393 C C No Deposit Transient
## 7394 H H No Deposit Transient
## 7395 E E No Deposit Transient
## 7396 D D No Deposit Transient
## 7397 H H No Deposit Transient
## 7398 G G No Deposit Transient
## 7399 H H No Deposit Transient
## 7400 A A No Deposit Transient
## 7401 G G No Deposit Transient
## 7402 D D No Deposit Transient
## 7403 E E No Deposit Transient
## 7404 A A No Deposit Transient
## 7405 D D No Deposit Transient
## 7406 D D No Deposit Transient
## 7407 A A No Deposit Transient
## 7408 G G No Deposit Transient
## 7409 D D No Deposit Transient
## 7410 D D No Deposit Transient
## 7411 E E No Deposit Transient
## 7412 E E No Deposit Transient
## 7413 A A No Deposit Transient
## 7414 A A No Deposit Transient
## 7415 C C No Deposit Transient
## 7416 D D No Deposit Transient
## 7417 A A No Deposit Transient
## 7418 A A No Deposit Transient
## 7419 C C No Deposit Transient
## 7420 H H No Deposit Transient
## 7421 G G No Deposit Transient
## 7422 G G No Deposit Transient
## 7423 A A No Deposit Transient
## 7424 D D No Deposit Transient
## 7425 G G No Deposit Transient
## 7426 D D No Deposit Transient
## 7427 A A No Deposit Transient
## 7428 D D No Deposit Transient
## 7429 A A No Deposit Transient
## 7430 C C No Deposit Transient
## 7431 A A No Deposit Transient
## 7432 A A No Deposit Transient
## 7433 E E No Deposit Transient
## 7434 E E No Deposit Transient
## 7435 A A No Deposit Transient
## 7436 D D No Deposit Transient
## 7437 G G No Deposit Transient
## 7438 D D No Deposit Transient
## 7439 G G No Deposit Transient
## 7440 G G No Deposit Transient
## 7441 A A No Deposit Transient
## 7442 E F No Deposit Contract
## 7443 A A No Deposit Transient
## 7444 A A No Deposit Transient
## 7445 C C No Deposit Transient
## 7446 A A No Deposit Transient
## 7447 A A No Deposit Transient
## 7448 A A No Deposit Transient
## 7449 A A No Deposit Transient
## 7450 E E No Deposit Transient
## 7451 A A No Deposit Transient
## 7452 E E No Deposit Transient
## 7453 A A No Deposit Transient
## 7454 E E No Deposit Transient
## 7455 A A No Deposit Transient
## 7456 A A No Deposit Transient
## 7457 E E No Deposit Transient
## 7458 E E No Deposit Transient
## 7459 A A No Deposit Transient
## 7460 D D No Deposit Transient
## 7461 A A No Deposit Transient
## 7462 E E No Deposit Transient
## 7463 A A No Deposit Transient
## 7464 D D No Deposit Transient
## 7465 D D No Deposit Transient
## 7466 D D No Deposit Transient
## 7467 A A No Deposit Transient
## 7468 E E No Deposit Transient
## 7469 E E No Deposit Transient
## 7470 A A No Deposit Transient
## 7471 A A No Deposit Transient
## 7472 D D No Deposit Transient
## 7473 A A No Deposit Transient
## 7474 A A No Deposit Transient
## 7475 E E No Deposit Transient
## 7476 A A No Deposit Transient
## 7477 E E No Deposit Transient
## 7478 D D No Deposit Transient
## 7479 D D No Deposit Transient
## 7480 D D No Deposit Transient
## 7481 D D No Deposit Transient
## 7482 G G No Deposit Transient
## 7483 A A No Deposit Transient
## 7484 A A No Deposit Transient
## 7485 A A No Deposit Transient
## 7486 A A No Deposit Transient
## 7487 D D No Deposit Transient
## 7488 G G No Deposit Transient
## 7489 G G No Deposit Transient
## 7490 E E No Deposit Transient
## 7491 D D No Deposit Transient
## 7492 A A No Deposit Transient
## 7493 A A No Deposit Transient
## 7494 A A No Deposit Transient
## 7495 A A No Deposit Transient
## 7496 E E No Deposit Transient
## 7497 A A No Deposit Transient
## 7498 A A No Deposit Transient
## 7499 A A No Deposit Transient
## 7500 A A No Deposit Transient
## 7501 A A No Deposit Transient
## 7502 E E No Deposit Transient
## 7503 E E No Deposit Transient
## 7504 F F No Deposit Transient
## 7505 A A No Deposit Transient
## 7506 D D No Deposit Transient
## 7507 E E No Deposit Transient
## 7508 F F No Deposit Transient
## 7509 A C No Deposit Transient
## 7510 H H No Deposit Transient
## 7511 D D No Deposit Transient-Party
## 7512 A A No Deposit Transient
## 7513 D D No Deposit Transient-Party
## 7514 D D No Deposit Transient
## 7515 G G No Deposit Transient
## 7516 A A No Deposit Transient
## 7517 D D No Deposit Transient
## 7518 E E No Deposit Transient
## 7519 A A No Deposit Transient
## 7520 G G No Deposit Transient
## 7521 G G No Deposit Transient
## 7522 A A No Deposit Transient
## 7523 A A No Deposit Transient
## 7524 A A No Deposit Transient
## 7525 F F No Deposit Transient
## 7526 A A No Deposit Transient
## 7527 A A No Deposit Transient
## 7528 A A No Deposit Transient
## 7529 E E No Deposit Transient
## 7530 A A No Deposit Transient
## 7531 A A No Deposit Transient
## 7532 A A No Deposit Transient
## 7533 A A No Deposit Transient
## 7534 G G No Deposit Transient
## 7535 G G No Deposit Transient
## 7536 E E No Deposit Transient
## 7537 D D No Deposit Transient
## 7538 D D No Deposit Transient
## 7539 C C No Deposit Transient
## 7540 D D No Deposit Transient
## 7541 E E No Deposit Transient
## 7542 A A No Deposit Transient
## 7543 D D No Deposit Transient
## 7544 G G No Deposit Transient
## 7545 D D No Deposit Transient
## 7546 A A No Deposit Transient
## 7547 A A No Deposit Transient
## 7548 A A No Deposit Transient
## 7549 C C No Deposit Transient
## 7550 E E No Deposit Transient
## 7551 F F No Deposit Transient
## 7552 G G No Deposit Transient
## 7553 A A No Deposit Transient
## 7554 D D No Deposit Transient
## 7555 D D No Deposit Transient
## 7556 A A No Deposit Transient
## 7557 C C No Deposit Transient-Party
## 7558 D D No Deposit Transient
## 7559 A A No Deposit Transient
## 7560 A A No Deposit Transient
## 7561 A A No Deposit Transient
## 7562 A A No Deposit Transient
## 7563 A A No Deposit Transient
## 7564 A A No Deposit Transient
## 7565 H H No Deposit Transient
## 7566 A A No Deposit Transient
## 7567 A A No Deposit Transient
## 7568 G G No Deposit Transient
## 7569 A A No Deposit Transient
## 7570 D D No Deposit Transient
## 7571 A A No Deposit Transient
## 7572 C C No Deposit Transient
## 7573 A A No Deposit Transient
## 7574 C C No Deposit Transient
## 7575 E E No Deposit Transient
## 7576 F F No Deposit Transient
## 7577 C C No Deposit Transient
## 7578 A A No Deposit Transient
## 7579 D D No Deposit Transient-Party
## 7580 D D No Deposit Transient
## 7581 A A No Deposit Transient
## 7582 D D No Deposit Transient-Party
## 7583 A A No Deposit Transient-Party
## 7584 A A No Deposit Transient
## 7585 A A No Deposit Transient
## 7586 A A No Deposit Transient
## 7587 A A No Deposit Transient
## 7588 E E No Deposit Transient
## 7589 A A No Deposit Transient
## 7590 E E No Deposit Transient
## 7591 A A No Deposit Transient
## 7592 A A No Deposit Transient
## 7593 A A No Deposit Transient-Party
## 7594 E E No Deposit Transient-Party
## 7595 D D No Deposit Transient-Party
## 7596 A A No Deposit Transient
## 7597 A A No Deposit Transient
## 7598 A A No Deposit Transient-Party
## 7599 D D No Deposit Transient
## 7600 A A No Deposit Transient
## 7601 A A No Deposit Transient
## 7602 E E No Deposit Transient
## 7603 H H No Deposit Transient
## 7604 A A No Deposit Transient
## 7605 D D No Deposit Transient
## 7606 A A No Deposit Transient
## 7607 H H No Deposit Transient
## 7608 H H No Deposit Transient
## 7609 D D No Deposit Transient
## 7610 E E No Deposit Transient
## 7611 A A No Deposit Transient
## 7612 D D No Deposit Transient
## 7613 E E No Deposit Transient
## 7614 A A No Deposit Transient
## 7615 D D No Deposit Transient
## 7616 A A No Deposit Transient
## 7617 A A No Deposit Transient
## 7618 G G No Deposit Transient
## 7619 A A No Deposit Transient
## 7620 A A No Deposit Transient
## 7621 D D No Deposit Transient
## 7622 A A No Deposit Transient
## 7623 H H No Deposit Transient
## 7624 D D No Deposit Transient
## 7625 A A No Deposit Transient
## 7626 D D No Deposit Transient
## 7627 A A No Deposit Transient
## 7628 D D No Deposit Transient
## 7629 D D No Deposit Transient
## 7630 A A No Deposit Transient
## 7631 E E No Deposit Transient
## 7632 A A No Deposit Transient
## 7633 A A No Deposit Transient
## 7634 A A No Deposit Transient
## 7635 A A No Deposit Transient
## 7636 A A No Deposit Transient
## 7637 E E No Deposit Transient
## 7638 D D No Deposit Transient
## 7639 E E No Deposit Transient
## 7640 E E No Deposit Transient
## 7641 A A No Deposit Transient
## 7642 A A No Deposit Transient
## 7643 A A No Deposit Transient
## 7644 E E No Deposit Transient
## 7645 D D No Deposit Transient
## 7646 D D No Deposit Transient
## 7647 D D No Deposit Transient
## 7648 E E No Deposit Transient
## 7649 E E No Deposit Transient
## 7650 E E No Deposit Transient
## 7651 G G No Deposit Transient
## 7652 D D No Deposit Transient
## 7653 E E No Deposit Transient
## 7654 D D No Deposit Transient
## 7655 E E No Deposit Transient
## 7656 F F No Deposit Transient
## 7657 E E No Deposit Transient
## 7658 E E No Deposit Transient
## 7659 E E No Deposit Transient
## 7660 E E No Deposit Transient
## 7661 A A No Deposit Contract
## 7662 A A No Deposit Transient
## 7663 G G No Deposit Transient
## 7664 D D No Deposit Transient
## 7665 H H No Deposit Transient
## 7666 A A No Deposit Contract
## 7667 C C No Deposit Transient
## 7668 D D No Deposit Transient
## 7669 D D No Deposit Transient
## 7670 A A No Deposit Transient
## 7671 E E No Deposit Transient
## 7672 D D No Deposit Transient
## 7673 A A No Deposit Transient
## 7674 H H No Deposit Transient
## 7675 E E No Deposit Transient
## 7676 D D No Deposit Transient
## 7677 H H No Deposit Transient
## 7678 D D No Deposit Transient
## 7679 D D No Deposit Transient
## 7680 D D No Deposit Transient
## 7681 D D No Deposit Transient
## 7682 D D No Deposit Transient
## 7683 D D No Deposit Transient
## 7684 D D No Deposit Transient
## 7685 H H No Deposit Transient
## 7686 E E No Deposit Transient
## 7687 A A No Deposit Transient
## 7688 A A No Deposit Transient
## 7689 A A No Deposit Transient
## 7690 A A No Deposit Transient
## 7691 A A No Deposit Transient
## 7692 D D No Deposit Transient
## 7693 A A No Deposit Transient
## 7694 D D No Deposit Transient
## 7695 G G No Deposit Transient
## 7696 A A No Deposit Transient
## 7697 A A No Deposit Transient
## 7698 H H No Deposit Transient
## 7699 A A No Deposit Transient
## 7700 D D No Deposit Transient
## 7701 E E No Deposit Transient
## 7702 D D No Deposit Transient
## 7703 D D No Deposit Transient
## 7704 A A No Deposit Transient
## 7705 A A No Deposit Transient
## 7706 C C No Deposit Transient
## 7707 D D No Deposit Transient
## 7708 A A No Deposit Contract
## 7709 A A No Deposit Transient
## 7710 A A No Deposit Transient
## 7711 A A No Deposit Transient
## 7712 A A No Deposit Transient
## 7713 E E No Deposit Transient
## 7714 E E No Deposit Transient
## 7715 A A No Deposit Transient
## 7716 E E No Deposit Transient
## 7717 D D No Deposit Transient
## 7718 E E No Deposit Transient
## 7719 H H No Deposit Transient
## 7720 A A No Deposit Transient
## 7721 G G No Deposit Transient
## 7722 E E No Deposit Transient
## 7723 A A No Deposit Transient
## 7724 D D No Deposit Transient
## 7725 D D No Deposit Transient
## 7726 D A No Deposit Transient
## 7727 A A No Deposit Transient
## 7728 G G No Deposit Transient
## 7729 A A No Deposit Transient
## 7730 A A No Deposit Transient
## 7731 E E No Deposit Transient
## 7732 E E No Deposit Transient
## 7733 E E No Deposit Transient
## 7734 E E No Deposit Transient
## 7735 A A No Deposit Transient
## 7736 A A No Deposit Transient
## 7737 D D No Deposit Transient
## 7738 E E No Deposit Transient
## 7739 G G No Deposit Transient
## 7740 D D No Deposit Transient
## 7741 D D No Deposit Transient
## 7742 A A No Deposit Transient
## 7743 F F No Deposit Transient
## 7744 D F No Deposit Transient
## 7745 D D No Deposit Transient
## 7746 A A No Deposit Transient
## 7747 D D No Deposit Transient
## 7748 D D No Deposit Transient
## 7749 A A No Deposit Transient
## 7750 D D No Deposit Transient
## 7751 C C No Deposit Transient
## 7752 D D No Deposit Transient
## 7753 C C No Deposit Transient
## 7754 D D No Deposit Transient
## 7755 C C No Deposit Transient
## 7756 D D No Deposit Transient
## 7757 G G No Deposit Transient
## 7758 F F No Deposit Transient
## 7759 A A No Deposit Transient
## 7760 D D No Deposit Transient
## 7761 D D No Deposit Transient
## 7762 D D No Deposit Transient
## 7763 D D No Deposit Transient
## 7764 D D No Deposit Transient
## 7765 D D No Deposit Transient
## 7766 E E No Deposit Transient
## 7767 A A No Deposit Transient
## 7768 A A No Deposit Transient
## 7769 E E No Deposit Transient
## 7770 F F No Deposit Transient
## 7771 A A No Deposit Transient
## 7772 A A No Deposit Transient
## 7773 A A No Deposit Transient
## 7774 A A No Deposit Transient
## 7775 E E No Deposit Transient
## 7776 G G No Deposit Transient
## 7777 A A No Deposit Transient
## 7778 A A No Deposit Transient
## 7779 G G No Deposit Transient
## 7780 E E No Deposit Transient
## 7781 A A No Deposit Transient
## 7782 H H No Deposit Transient
## 7783 G G No Deposit Transient
## 7784 H H No Deposit Transient
## 7785 H H No Deposit Transient
## 7786 D D No Deposit Transient
## 7787 A A No Deposit Transient
## 7788 C C No Deposit Transient
## 7789 D D No Deposit Transient
## 7790 G G No Deposit Transient
## 7791 E E No Deposit Contract
## 7792 A A No Deposit Transient
## 7793 A A No Deposit Transient
## 7794 H H No Deposit Transient
## 7795 A A No Deposit Transient
## 7796 A A No Deposit Transient
## 7797 G G No Deposit Transient
## 7798 E E No Deposit Transient
## 7799 A A No Deposit Transient
## 7800 A A No Deposit Transient-Party
## 7801 A A No Deposit Transient
## 7802 D D No Deposit Transient
## 7803 A A No Deposit Transient
## 7804 A A No Deposit Transient-Party
## 7805 A A No Deposit Transient
## 7806 D D No Deposit Transient
## 7807 A A No Deposit Transient-Party
## 7808 H H No Deposit Transient
## 7809 A A No Deposit Transient-Party
## 7810 A A No Deposit Transient
## 7811 D D No Deposit Transient
## 7812 E E No Deposit Contract
## 7813 A A No Deposit Transient
## 7814 A A No Deposit Transient
## 7815 A A No Deposit Transient
## 7816 E E No Deposit Transient-Party
## 7817 A A No Deposit Transient
## 7818 G G No Deposit Transient
## 7819 G G No Deposit Transient
## 7820 A A No Deposit Transient
## 7821 A A No Deposit Transient
## 7822 A A No Deposit Transient
## 7823 E E No Deposit Transient
## 7824 D E No Deposit Transient
## 7825 A A No Deposit Transient
## 7826 E E No Deposit Transient
## 7827 A A No Deposit Transient
## 7828 A A No Deposit Transient
## 7829 D D No Deposit Transient
## 7830 D D No Deposit Transient
## 7831 G G No Deposit Transient
## 7832 E E No Deposit Transient
## 7833 A A No Deposit Transient
## 7834 A A No Deposit Transient
## 7835 A A No Deposit Transient
## 7836 A A No Deposit Transient
## 7837 A A No Deposit Transient
## 7838 A A No Deposit Transient
## 7839 D D No Deposit Transient
## 7840 E E No Deposit Transient
## 7841 D D No Deposit Transient
## 7842 D D No Deposit Transient
## 7843 G G No Deposit Transient
## 7844 E E No Deposit Transient
## 7845 A A No Deposit Transient
## 7846 A A No Deposit Transient
## 7847 A A No Deposit Contract
## 7848 E E No Deposit Contract
## 7849 E E No Deposit Contract
## 7850 A A No Deposit Contract
## 7851 A A No Deposit Contract
## 7852 A A No Deposit Transient
## 7853 A A No Deposit Transient
## 7854 E E No Deposit Transient
## 7855 G G No Deposit Transient
## 7856 H H No Deposit Transient
## 7857 A A No Deposit Transient
## 7858 E E No Deposit Transient
## 7859 E E No Deposit Transient
## 7860 E E No Deposit Transient
## 7861 A A No Deposit Transient
## 7862 F F No Deposit Transient
## 7863 D D No Deposit Transient
## 7864 G G No Deposit Transient
## 7865 E E No Deposit Transient
## 7866 E I No Deposit Contract
## 7867 A A No Deposit Contract
## 7868 A A No Deposit Transient
## 7869 A A No Deposit Transient
## 7870 A A No Deposit Transient
## 7871 A A No Deposit Transient
## 7872 D D No Deposit Transient
## 7873 D E No Deposit Transient
## 7874 A A No Deposit Transient
## 7875 A C No Deposit Transient
## 7876 E E No Deposit Transient
## 7877 A A No Deposit Transient
## 7878 A A No Deposit Transient
## 7879 D D No Deposit Transient
## 7880 A A No Deposit Transient
## 7881 A A No Deposit Transient
## 7882 A A No Deposit Transient
## 7883 A A No Deposit Transient
## 7884 E E No Deposit Transient
## 7885 G G No Deposit Transient
## 7886 G G No Deposit Transient
## 7887 A I No Deposit Transient
## 7888 A A No Deposit Transient
## 7889 A A No Deposit Transient
## 7890 G G No Deposit Transient
## 7891 D D No Deposit Transient
## 7892 E E No Deposit Transient
## 7893 G G No Deposit Transient
## 7894 G G No Deposit Transient
## 7895 A A No Deposit Transient
## 7896 A A No Deposit Transient
## 7897 G G No Deposit Transient
## 7898 A A No Deposit Transient
## 7899 A A No Deposit Contract
## 7900 A A No Deposit Transient
## 7901 E E No Deposit Transient
## 7902 D D No Deposit Contract
## 7903 D D No Deposit Contract
## 7904 A A No Deposit Contract
## 7905 A A No Deposit Transient
## 7906 A A No Deposit Transient
## 7907 D D No Deposit Transient
## 7908 A A No Deposit Transient
## 7909 F F No Deposit Transient
## 7910 G G No Deposit Transient
## 7911 E E No Deposit Transient
## 7912 G G No Deposit Transient
## 7913 D D No Deposit Transient
## 7914 F F No Deposit Transient
## 7915 D D No Deposit Transient
## 7916 G G No Deposit Transient
## 7917 G G No Deposit Transient
## 7918 A A No Deposit Transient
## 7919 G G No Deposit Transient
## 7920 E E No Deposit Transient
## 7921 E E No Deposit Transient
## 7922 E E No Deposit Transient
## 7923 E E No Deposit Transient
## 7924 A I No Deposit Transient
## 7925 A A No Deposit Transient
## 7926 E E No Deposit Transient
## 7927 A A No Deposit Contract
## 7928 E E No Deposit Transient
## 7929 A A No Deposit Transient
## 7930 A A No Deposit Transient
## 7931 E E No Deposit Transient
## 7932 D D No Deposit Transient
## 7933 A I No Deposit Transient
## 7934 D D No Deposit Transient
## 7935 A A No Deposit Transient
## 7936 A A No Deposit Contract
## 7937 H H No Deposit Transient
## 7938 F F No Deposit Transient
## 7939 A A No Deposit Transient
## 7940 A A No Deposit Transient
## 7941 A C No Deposit Transient
## 7942 A C No Deposit Transient
## 7943 F F No Deposit Transient
## 7944 A B No Deposit Contract
## 7945 E E No Deposit Transient
## 7946 A A No Deposit Transient
## 7947 D D No Deposit Transient
## 7948 G G No Deposit Transient
## 7949 A A No Deposit Transient
## 7950 A A No Deposit Transient
## 7951 D D No Deposit Transient
## 7952 C C No Deposit Transient
## 7953 A A No Deposit Transient
## 7954 A A No Deposit Contract
## 7955 C C No Deposit Transient
## 7956 H H No Deposit Transient
## 7957 A A No Deposit Transient
## 7958 A A No Deposit Transient
## 7959 H H No Deposit Transient
## 7960 A A No Deposit Contract
## 7961 D D No Deposit Transient
## 7962 D D No Deposit Transient
## 7963 E E No Deposit Contract
## 7964 G G No Deposit Transient
## 7965 G G No Deposit Transient
## 7966 G G No Deposit Transient
## 7967 H H No Deposit Transient
## 7968 H H No Deposit Transient
## 7969 D D No Deposit Transient
## 7970 A A No Deposit Transient
## 7971 F F No Deposit Transient
## 7972 D D No Deposit Transient
## 7973 D D No Deposit Transient
## 7974 A A No Deposit Transient
## 7975 D E No Deposit Contract
## 7976 D D No Deposit Transient
## 7977 D D No Deposit Contract
## 7978 D D No Deposit Transient
## 7979 E E No Deposit Transient
## 7980 A A No Deposit Transient
## 7981 D D No Deposit Transient
## 7982 D D No Deposit Transient
## 7983 A A No Deposit Transient
## 7984 A A No Deposit Transient
## 7985 E E No Deposit Transient
## 7986 D D No Deposit Transient
## 7987 D D No Deposit Transient
## 7988 A A No Deposit Transient
## 7989 D D Non Refund Transient
## 7990 D D Non Refund Transient
## 7991 D D Non Refund Transient
## 7992 D D Non Refund Transient
## 7993 D D Non Refund Transient
## 7994 D D Non Refund Transient
## 7995 D D Non Refund Transient
## 7996 D D Non Refund Transient
## 7997 A A No Deposit Transient
## 7998 D D Non Refund Transient
## 7999 D D Non Refund Transient
## 8000 D D Non Refund Transient
## 8001 D D Non Refund Transient
## 8002 D D Non Refund Transient
## 8003 D D Non Refund Transient
## 8004 D D Non Refund Transient
## 8005 D D Non Refund Transient
## 8006 D D Non Refund Transient
## 8007 D D Non Refund Transient
## 8008 D D Non Refund Transient
## 8009 D D Non Refund Transient
## 8010 D D Non Refund Transient
## 8011 D D Non Refund Transient
## 8012 D D Non Refund Transient
## 8013 D D Non Refund Transient
## 8014 D D Non Refund Transient
## 8015 D D Non Refund Transient
## 8016 D D Non Refund Transient
## 8017 A A No Deposit Transient
## 8018 D D Non Refund Transient
## 8019 D D Non Refund Transient
## 8020 D D Non Refund Transient
## 8021 D D Non Refund Transient
## 8022 D D Non Refund Transient
## 8023 D D Non Refund Transient
## 8024 D D Non Refund Transient
## 8025 D D Non Refund Transient
## 8026 D D Non Refund Transient
## 8027 D D Non Refund Transient
## 8028 D D Non Refund Transient
## 8029 D D Non Refund Transient
## 8030 D D Non Refund Transient
## 8031 D D Non Refund Transient
## 8032 D D Non Refund Transient
## 8033 D D Non Refund Transient
## 8034 D D Non Refund Transient
## 8035 D D Non Refund Transient
## 8036 D D Non Refund Transient
## 8037 D D Non Refund Transient
## 8038 D D Non Refund Transient
## 8039 D D Non Refund Transient
## 8040 D D Non Refund Transient
## 8041 A A No Deposit Transient
## 8042 A A No Deposit Transient
## 8043 E D No Deposit Transient
## 8044 D D No Deposit Transient
## 8045 D D No Deposit Transient
## 8046 E E No Deposit Contract
## 8047 D D No Deposit Contract
## 8048 A A No Deposit Transient
## 8049 A A No Deposit Transient
## 8050 A A No Deposit Transient
## 8051 H H No Deposit Transient
## 8052 H H No Deposit Transient
## 8053 H H No Deposit Transient
## 8054 E E No Deposit Transient
## 8055 D D No Deposit Transient
## 8056 D D No Deposit Transient
## 8057 G G No Deposit Transient
## 8058 A A No Deposit Transient
## 8059 A A No Deposit Transient
## 8060 A A No Deposit Contract
## 8061 A A No Deposit Transient
## 8062 A A No Deposit Transient
## 8063 A A No Deposit Transient
## 8064 A A No Deposit Transient
## 8065 D I No Deposit Transient
## 8066 A E No Deposit Transient
## 8067 A A No Deposit Transient
## 8068 A A No Deposit Transient
## 8069 H H No Deposit Transient
## 8070 C C No Deposit Transient
## 8071 A A No Deposit Transient
## 8072 A A No Deposit Contract
## 8073 E E No Deposit Transient
## 8074 E E No Deposit Transient
## 8075 E E No Deposit Transient
## 8076 E E No Deposit Transient
## 8077 E E No Deposit Transient
## 8078 A A No Deposit Transient
## 8079 A A No Deposit Transient
## 8080 A A No Deposit Transient
## 8081 A A No Deposit Transient
## 8082 A A No Deposit Transient
## 8083 A A No Deposit Transient
## 8084 E E No Deposit Transient
## 8085 A A No Deposit Transient
## 8086 D D No Deposit Transient
## 8087 D D No Deposit Transient
## 8088 E E No Deposit Transient
## 8089 E E No Deposit Transient
## 8090 F F No Deposit Transient
## 8091 E E No Deposit Transient
## 8092 A A No Deposit Transient
## 8093 A A No Deposit Transient
## 8094 F F No Deposit Transient
## 8095 D D No Deposit Transient
## 8096 H H No Deposit Transient
## 8097 A A No Deposit Transient
## 8098 A A No Deposit Transient
## 8099 A C No Deposit Transient
## 8100 A A No Deposit Transient
## 8101 A A No Deposit Transient
## 8102 A A No Deposit Transient
## 8103 G G No Deposit Transient
## 8104 A A No Deposit Transient
## 8105 A A No Deposit Transient
## 8106 F F No Deposit Transient
## 8107 D D No Deposit Transient
## 8108 D D No Deposit Transient
## 8109 H H No Deposit Transient
## 8110 H H No Deposit Transient
## 8111 G G No Deposit Transient
## 8112 A A No Deposit Transient
## 8113 D D No Deposit Transient
## 8114 G G No Deposit Transient
## 8115 G G No Deposit Transient
## 8116 F F No Deposit Transient
## 8117 A A No Deposit Transient
## 8118 G G No Deposit Transient
## 8119 A A No Deposit Transient
## 8120 E E No Deposit Transient
## 8121 D D No Deposit Transient
## 8122 D D No Deposit Transient
## 8123 D D No Deposit Contract
## 8124 E E No Deposit Transient
## 8125 A A No Deposit Contract
## 8126 A A No Deposit Transient
## 8127 E E No Deposit Transient
## 8128 A A No Deposit Contract
## 8129 E E No Deposit Transient
## 8130 G G No Deposit Transient
## 8131 A A No Deposit Transient
## 8132 A A No Deposit Transient
## 8133 E E No Deposit Transient
## 8134 A A No Deposit Transient
## 8135 A A No Deposit Transient-Party
## 8136 D D No Deposit Transient
## 8137 D D No Deposit Transient
## 8138 F F No Deposit Transient
## 8139 E E No Deposit Transient
## 8140 A A No Deposit Transient
## 8141 G G No Deposit Transient
## 8142 A D No Deposit Transient-Party
## 8143 A C No Deposit Transient-Party
## 8144 A A No Deposit Transient-Party
## 8145 A C No Deposit Transient-Party
## 8146 A D No Deposit Transient
## 8147 A C No Deposit Transient-Party
## 8148 D D No Deposit Transient
## 8149 E I No Deposit Transient
## 8150 A A No Deposit Transient-Party
## 8151 A A No Deposit Transient-Party
## 8152 A A No Deposit Transient-Party
## 8153 A A No Deposit Transient-Party
## 8154 A A No Deposit Transient-Party
## 8155 A A No Deposit Transient-Party
## 8156 A D No Deposit Transient-Party
## 8157 A A No Deposit Transient-Party
## 8158 A E No Deposit Transient-Party
## 8159 A A No Deposit Transient-Party
## 8160 A A No Deposit Transient
## 8161 A E No Deposit Transient-Party
## 8162 A A No Deposit Transient-Party
## 8163 A E No Deposit Transient-Party
## 8164 A D No Deposit Transient-Party
## 8165 A E No Deposit Transient-Party
## 8166 A A No Deposit Transient-Party
## 8167 A A No Deposit Transient-Party
## 8168 A E No Deposit Transient-Party
## 8169 A E No Deposit Transient-Party
## 8170 A A No Deposit Transient-Party
## 8171 A A No Deposit Transient-Party
## 8172 A E No Deposit Transient-Party
## 8173 A A No Deposit Transient-Party
## 8174 A A No Deposit Transient
## 8175 A A No Deposit Transient-Party
## 8176 A C No Deposit Transient-Party
## 8177 A A No Deposit Transient-Party
## 8178 A A No Deposit Transient-Party
## 8179 A A No Deposit Transient-Party
## 8180 H H No Deposit Transient
## 8181 A A No Deposit Transient-Party
## 8182 A A No Deposit Transient-Party
## 8183 A A No Deposit Transient-Party
## 8184 A A No Deposit Transient-Party
## 8185 A A No Deposit Transient-Party
## 8186 A A No Deposit Transient-Party
## 8187 A A No Deposit Transient-Party
## 8188 A A No Deposit Transient-Party
## 8189 A A No Deposit Transient-Party
## 8190 A A No Deposit Transient-Party
## 8191 A A No Deposit Transient-Party
## 8192 E E No Deposit Contract
## 8193 A A No Deposit Transient
## 8194 E E No Deposit Transient
## 8195 A A No Deposit Transient
## 8196 A A No Deposit Transient
## 8197 D D No Deposit Transient
## 8198 E E No Deposit Transient
## 8199 A A No Deposit Transient
## 8200 D E No Deposit Transient
## 8201 D D No Deposit Contract
## 8202 A A No Deposit Transient
## 8203 D D No Deposit Transient
## 8204 D D No Deposit Transient
## 8205 G G No Deposit Transient
## 8206 A A No Deposit Transient
## 8207 D D No Deposit Transient
## 8208 A A No Deposit Transient
## 8209 A A No Deposit Transient
## 8210 A A No Deposit Transient
## 8211 A A No Deposit Transient
## 8212 A A No Deposit Transient
## 8213 A A No Deposit Transient
## 8214 A C No Deposit Transient
## 8215 E E No Deposit Transient
## 8216 A A No Deposit Transient
## 8217 D D No Deposit Transient
## 8218 E E No Deposit Transient
## 8219 D D No Deposit Transient
## 8220 E E No Deposit Transient
## 8221 D D No Deposit Contract
## 8222 D D No Deposit Contract
## 8223 D D No Deposit Contract
## 8224 D D No Deposit Contract
## 8225 E E No Deposit Contract
## 8226 A A No Deposit Transient
## 8227 A A No Deposit Transient
## 8228 A A No Deposit Transient
## 8229 E E No Deposit Transient
## 8230 A A No Deposit Transient
## 8231 A A No Deposit Transient
## 8232 E E No Deposit Transient
## 8233 E E No Deposit Transient
## 8234 E E No Deposit Transient
## 8235 A A No Deposit Transient
## 8236 A A No Deposit Transient
## 8237 D D No Deposit Transient
## 8238 A A No Deposit Transient
## 8239 A A No Deposit Transient
## 8240 A A No Deposit Transient
## 8241 E E No Deposit Transient
## 8242 A A No Deposit Transient
## 8243 A C No Deposit Transient
## 8244 A C No Deposit Transient
## 8245 D D No Deposit Group
## 8246 A C No Deposit Transient
## 8247 A A No Deposit Transient
## 8248 D D No Deposit Transient
## 8249 A C No Deposit Transient
## 8250 A A No Deposit Transient
## 8251 A A No Deposit Transient
## 8252 H H No Deposit Transient
## 8253 A A No Deposit Transient
## 8254 A A No Deposit Transient
## 8255 A A No Deposit Transient
## 8256 A A No Deposit Transient
## 8257 A A No Deposit Transient
## 8258 A A No Deposit Transient
## 8259 A A No Deposit Transient
## 8260 G G No Deposit Transient
## 8261 D D No Deposit Transient
## 8262 A A No Deposit Transient
## 8263 A A No Deposit Transient
## 8264 A A No Deposit Transient
## 8265 A A No Deposit Transient
## 8266 A A No Deposit Transient
## 8267 A A No Deposit Transient
## 8268 A A No Deposit Transient
## 8269 A A No Deposit Transient
## 8270 A A No Deposit Transient-Party
## 8271 A A No Deposit Transient-Party
## 8272 A A Non Refund Transient
## 8273 A A Non Refund Transient
## 8274 A A Non Refund Transient
## 8275 A A No Deposit Transient-Party
## 8276 A A No Deposit Transient-Party
## 8277 A A Non Refund Transient
## 8278 A A Non Refund Transient
## 8279 A A Non Refund Transient
## 8280 A A No Deposit Transient-Party
## 8281 A D No Deposit Transient-Party
## 8282 A A No Deposit Transient-Party
## 8283 A A No Deposit Transient-Party
## 8284 A A Non Refund Transient
## 8285 A A Non Refund Transient
## 8286 A A No Deposit Transient-Party
## 8287 A A No Deposit Transient-Party
## 8288 A C No Deposit Transient-Party
## 8289 A A No Deposit Transient-Party
## 8290 A A No Deposit Transient-Party
## 8291 A A No Deposit Transient-Party
## 8292 F F No Deposit Transient
## 8293 A A No Deposit Transient
## 8294 D D No Deposit Transient
## 8295 D D Non Refund Transient
## 8296 D D Non Refund Transient
## 8297 D D Non Refund Transient
## 8298 D D Non Refund Transient
## 8299 D D Non Refund Transient
## 8300 D D Non Refund Transient
## 8301 G G No Deposit Transient
## 8302 D D No Deposit Contract
## 8303 F F No Deposit Transient
## 8304 D D No Deposit Transient
## 8305 A A No Deposit Transient-Party
## 8306 A A No Deposit Transient-Party
## 8307 A A No Deposit Transient-Party
## 8308 A A Non Refund Transient
## 8309 A A Non Refund Transient
## 8310 A A Non Refund Transient
## 8311 A A Non Refund Transient
## 8312 A A Non Refund Transient
## 8313 A A No Deposit Transient-Party
## 8314 A A No Deposit Transient-Party
## 8315 A A No Deposit Transient-Party
## 8316 A A Non Refund Transient
## 8317 A A Non Refund Transient
## 8318 A C No Deposit Transient-Party
## 8319 A C No Deposit Transient-Party
## 8320 A A No Deposit Transient-Party
## 8321 A A No Deposit Transient-Party
## 8322 A A No Deposit Transient-Party
## 8323 A A No Deposit Transient-Party
## 8324 A A Non Refund Transient
## 8325 A A Non Refund Transient
## 8326 A A No Deposit Transient-Party
## 8327 A C No Deposit Transient-Party
## 8328 A C No Deposit Transient-Party
## 8329 A A No Deposit Transient-Party
## 8330 A A No Deposit Transient-Party
## 8331 A A Non Refund Transient
## 8332 A A Non Refund Transient
## 8333 A A Non Refund Transient
## 8334 D D No Deposit Transient
## 8335 D D No Deposit Transient
## 8336 A A No Deposit Transient
## 8337 D D No Deposit Transient
## 8338 D D No Deposit Transient
## 8339 E E No Deposit Transient
## 8340 E E No Deposit Transient
## 8341 E E No Deposit Transient
## 8342 A C No Deposit Contract
## 8343 D D No Deposit Transient
## 8344 E E No Deposit Transient
## 8345 A A No Deposit Transient
## 8346 E E No Deposit Transient
## 8347 E E No Deposit Transient
## 8348 E E No Deposit Transient
## 8349 E E No Deposit Transient
## 8350 E E No Deposit Transient
## 8351 E E No Deposit Transient
## 8352 E E No Deposit Transient
## 8353 E E No Deposit Transient
## 8354 G G No Deposit Transient
## 8355 E E No Deposit Transient
## 8356 D D No Deposit Transient
## 8357 F F No Deposit Transient
## 8358 D D No Deposit Transient-Party
## 8359 A A No Deposit Transient
## 8360 D D No Deposit Transient
## 8361 G G No Deposit Transient
## 8362 G G No Deposit Transient
## 8363 D D No Deposit Transient-Party
## 8364 D D No Deposit Transient
## 8365 D D No Deposit Transient
## 8366 A A No Deposit Transient-Party
## 8367 A A No Deposit Transient-Party
## 8368 G G No Deposit Transient
## 8369 A A No Deposit Transient-Party
## 8370 G G No Deposit Transient
## 8371 A A No Deposit Transient-Party
## 8372 A A No Deposit Transient-Party
## 8373 A A No Deposit Transient-Party
## 8374 A A No Deposit Transient-Party
## 8375 E E No Deposit Transient
## 8376 A A No Deposit Transient-Party
## 8377 D D No Deposit Transient
## 8378 G G No Deposit Transient
## 8379 A A No Deposit Transient
## 8380 A A No Deposit Transient
## 8381 A A No Deposit Transient
## 8382 A A No Deposit Transient
## 8383 A A No Deposit Transient
## 8384 A A No Deposit Transient
## 8385 D D No Deposit Transient
## 8386 A A No Deposit Transient
## 8387 A A No Deposit Transient
## 8388 A A No Deposit Transient
## 8389 E E No Deposit Contract
## 8390 D D No Deposit Transient
## 8391 G G No Deposit Transient
## 8392 G G No Deposit Transient
## 8393 A A No Deposit Transient
## 8394 A A No Deposit Transient
## 8395 H H No Deposit Transient
## 8396 A A No Deposit Transient-Party
## 8397 A A No Deposit Transient
## 8398 E E No Deposit Transient-Party
## 8399 A C No Deposit Transient-Party
## 8400 E E No Deposit Transient-Party
## 8401 E E No Deposit Transient-Party
## 8402 F F No Deposit Transient
## 8403 A A Non Refund Transient
## 8404 A A Non Refund Transient
## 8405 A A Non Refund Transient
## 8406 A A Non Refund Transient
## 8407 A A Non Refund Transient
## 8408 A A Non Refund Transient
## 8409 A A Non Refund Transient
## 8410 A A Non Refund Transient
## 8411 A A Non Refund Transient
## 8412 A A Non Refund Transient
## 8413 A A Non Refund Transient
## 8414 A A Non Refund Transient
## 8415 A A Non Refund Transient
## 8416 A A Non Refund Transient
## 8417 A A Non Refund Transient
## 8418 A A No Deposit Transient
## 8419 E E No Deposit Transient
## 8420 A D No Deposit Transient-Party
## 8421 D D No Deposit Transient
## 8422 E E No Deposit Transient-Party
## 8423 E E No Deposit Transient-Party
## 8424 A C No Deposit Transient-Party
## 8425 D D No Deposit Transient
## 8426 A A No Deposit Transient-Party
## 8427 E E No Deposit Transient-Party
## 8428 A C No Deposit Transient
## 8429 A I No Deposit Transient-Party
## 8430 E E No Deposit Transient
## 8431 G G No Deposit Transient
## 8432 G G No Deposit Transient
## 8433 G G No Deposit Transient
## 8434 D D No Deposit Transient-Party
## 8435 A A No Deposit Transient
## 8436 D D No Deposit Transient-Party
## 8437 A A No Deposit Transient
## 8438 E E No Deposit Transient
## 8439 E E No Deposit Transient
## 8440 D D No Deposit Transient
## 8441 D D No Deposit Transient
## 8442 A A No Deposit Transient
## 8443 D D No Deposit Transient-Party
## 8444 D D No Deposit Transient-Party
## 8445 D D No Deposit Transient-Party
## 8446 D D No Deposit Transient-Party
## 8447 E E No Deposit Transient
## 8448 D D No Deposit Transient
## 8449 E E No Deposit Transient-Party
## 8450 D D No Deposit Transient
## 8451 A A No Deposit Transient
## 8452 D D No Deposit Transient
## 8453 A A No Deposit Transient
## 8454 E E No Deposit Transient
## 8455 E E No Deposit Transient
## 8456 G G No Deposit Transient
## 8457 A A Non Refund Transient
## 8458 A A Non Refund Transient
## 8459 A A Non Refund Transient
## 8460 F F No Deposit Transient
## 8461 A A Non Refund Transient
## 8462 A A Non Refund Transient
## 8463 A A Non Refund Transient
## 8464 E E No Deposit Transient
## 8465 A A Non Refund Transient
## 8466 A A Non Refund Transient
## 8467 A A Non Refund Transient
## 8468 A A Non Refund Transient
## 8469 A A Non Refund Transient
## 8470 A A Non Refund Transient
## 8471 A A Non Refund Transient
## 8472 A C Non Refund Transient
## 8473 A A No Deposit Transient
## 8474 E E No Deposit Transient
## 8475 A A No Deposit Transient
## 8476 A A No Deposit Transient
## 8477 A A No Deposit Transient
## 8478 D D No Deposit Transient
## 8479 E E No Deposit Transient
## 8480 D D No Deposit Transient
## 8481 D D No Deposit Transient
## 8482 A A No Deposit Transient
## 8483 E E No Deposit Transient
## 8484 G G No Deposit Transient
## 8485 E E No Deposit Transient
## 8486 D D Non Refund Transient
## 8487 D D Non Refund Transient
## 8488 D D Non Refund Transient
## 8489 D D Non Refund Transient
## 8490 D D No Deposit Transient
## 8491 D D Non Refund Transient
## 8492 D D Non Refund Transient
## 8493 D D Non Refund Transient
## 8494 D D Non Refund Transient
## 8495 D D Non Refund Transient
## 8496 D D Non Refund Transient
## 8497 D D Non Refund Transient
## 8498 D D Non Refund Transient
## 8499 D D Non Refund Transient
## 8500 D D Non Refund Transient
## 8501 D D Non Refund Transient
## 8502 D D Non Refund Transient
## 8503 E E No Deposit Transient
## 8504 D D No Deposit Transient
## 8505 A C No Deposit Transient
## 8506 A A No Deposit Transient
## 8507 A A No Deposit Transient
## 8508 E E No Deposit Transient
## 8509 A A No Deposit Transient
## 8510 A A No Deposit Transient
## 8511 A A No Deposit Transient
## 8512 G G No Deposit Transient
## 8513 A A No Deposit Transient
## 8514 G G No Deposit Transient
## 8515 G G No Deposit Transient
## 8516 A A No Deposit Transient
## 8517 E E No Deposit Transient
## 8518 D D No Deposit Transient
## 8519 A A No Deposit Transient
## 8520 A A No Deposit Transient
## 8521 A A No Deposit Transient
## 8522 D D No Deposit Transient
## 8523 E E No Deposit Transient
## 8524 D D No Deposit Transient
## 8525 D D No Deposit Transient
## 8526 D D No Deposit Transient
## 8527 A A No Deposit Transient-Party
## 8528 A A No Deposit Transient
## 8529 A A No Deposit Transient
## 8530 A A No Deposit Transient
## 8531 A A No Deposit Transient
## 8532 A A No Deposit Transient
## 8533 A A No Deposit Transient
## 8534 A A No Deposit Transient
## 8535 H H No Deposit Transient
## 8536 A A No Deposit Transient
## 8537 H H No Deposit Transient
## 8538 D D No Deposit Transient
## 8539 D D No Deposit Transient
## 8540 A A No Deposit Transient-Party
## 8541 A A No Deposit Transient-Party
## 8542 A A No Deposit Transient-Party
## 8543 D D No Deposit Transient
## 8544 E E No Deposit Transient
## 8545 A A No Deposit Transient
## 8546 D D No Deposit Transient-Party
## 8547 A D No Deposit Transient-Party
## 8548 A E No Deposit Transient-Party
## 8549 A A No Deposit Transient
## 8550 A E No Deposit Transient-Party
## 8551 A E No Deposit Transient-Party
## 8552 A A No Deposit Transient-Party
## 8553 A A No Deposit Transient-Party
## 8554 A A No Deposit Transient
## 8555 A E No Deposit Transient-Party
## 8556 A C No Deposit Transient-Party
## 8557 A A No Deposit Transient-Party
## 8558 A E No Deposit Transient-Party
## 8559 A E No Deposit Transient-Party
## 8560 A A No Deposit Transient-Party
## 8561 A A No Deposit Transient-Party
## 8562 A A No Deposit Transient-Party
## 8563 A A No Deposit Transient-Party
## 8564 A E No Deposit Transient-Party
## 8565 A A No Deposit Transient
## 8566 A A No Deposit Transient-Party
## 8567 A A No Deposit Transient-Party
## 8568 A A No Deposit Transient-Party
## 8569 A C No Deposit Transient-Party
## 8570 A D No Deposit Transient-Party
## 8571 A E No Deposit Transient-Party
## 8572 A A No Deposit Transient-Party
## 8573 A E No Deposit Transient-Party
## 8574 A A No Deposit Transient-Party
## 8575 A A No Deposit Transient-Party
## 8576 A A No Deposit Transient-Party
## 8577 A A No Deposit Transient-Party
## 8578 A A No Deposit Transient-Party
## 8579 A E No Deposit Transient-Party
## 8580 A A No Deposit Transient-Party
## 8581 A A No Deposit Transient-Party
## 8582 A A No Deposit Transient-Party
## 8583 A A No Deposit Transient-Party
## 8584 A A No Deposit Transient-Party
## 8585 A A No Deposit Transient-Party
## 8586 A A No Deposit Transient-Party
## 8587 A A No Deposit Transient-Party
## 8588 A A No Deposit Transient-Party
## 8589 G G No Deposit Transient
## 8590 A A No Deposit Transient-Party
## 8591 A A No Deposit Transient-Party
## 8592 A A No Deposit Transient-Party
## 8593 A A No Deposit Transient-Party
## 8594 A A No Deposit Transient-Party
## 8595 A A No Deposit Transient-Party
## 8596 A A No Deposit Transient-Party
## 8597 A A No Deposit Transient-Party
## 8598 A A No Deposit Transient-Party
## 8599 A A No Deposit Transient-Party
## 8600 A A No Deposit Transient-Party
## 8601 A A No Deposit Transient-Party
## 8602 G G No Deposit Transient
## 8603 F F No Deposit Transient
## 8604 A C Refundable Transient-Party
## 8605 A C No Deposit Transient
## 8606 D E No Deposit Transient
## 8607 A A No Deposit Transient
## 8608 G G No Deposit Transient
## 8609 A A No Deposit Transient
## 8610 A A No Deposit Transient-Party
## 8611 G G No Deposit Transient
## 8612 A D No Deposit Transient-Party
## 8613 H H No Deposit Transient
## 8614 A A Refundable Transient-Party
## 8615 A A No Deposit Transient
## 8616 A A No Deposit Transient
## 8617 A A No Deposit Transient
## 8618 A A Non Refund Transient
## 8619 A A Non Refund Transient
## 8620 A A Non Refund Transient
## 8621 A A Non Refund Transient
## 8622 A A Non Refund Transient
## 8623 A A Non Refund Transient
## 8624 A A Non Refund Transient
## 8625 A A Non Refund Transient
## 8626 A A Non Refund Transient
## 8627 A A Non Refund Transient
## 8628 A A Non Refund Transient
## 8629 A A Non Refund Transient
## 8630 A A Non Refund Transient
## 8631 A A Non Refund Transient
## 8632 A A Non Refund Transient
## 8633 A A Non Refund Transient
## 8634 A A Non Refund Transient
## 8635 A A Non Refund Transient
## 8636 A A Non Refund Transient
## 8637 A A No Deposit Transient-Party
## 8638 A A Non Refund Transient
## 8639 A A Non Refund Transient
## 8640 A A No Deposit Transient
## 8641 A A Non Refund Transient
## 8642 A A Non Refund Transient
## 8643 A A Non Refund Transient
## 8644 A A Non Refund Transient
## 8645 A A Non Refund Transient
## 8646 A A Non Refund Transient
## 8647 A A Non Refund Transient
## 8648 A A No Deposit Transient
## 8649 A A No Deposit Transient-Party
## 8650 A A No Deposit Transient-Party
## 8651 E E No Deposit Transient
## 8652 E E No Deposit Transient-Party
## 8653 A D No Deposit Transient-Party
## 8654 A F No Deposit Transient-Party
## 8655 E E No Deposit Transient-Party
## 8656 A A No Deposit Contract
## 8657 F F No Deposit Transient
## 8658 A A No Deposit Transient-Party
## 8659 A A No Deposit Transient-Party
## 8660 A A No Deposit Transient-Party
## 8661 A A No Deposit Transient-Party
## 8662 A A No Deposit Transient-Party
## 8663 A A No Deposit Transient-Party
## 8664 A A No Deposit Transient-Party
## 8665 A A No Deposit Transient-Party
## 8666 A A No Deposit Transient-Party
## 8667 A A No Deposit Transient-Party
## 8668 A A No Deposit Transient-Party
## 8669 A A No Deposit Transient-Party
## 8670 A A No Deposit Transient-Party
## 8671 A A No Deposit Transient-Party
## 8672 A A No Deposit Transient-Party
## 8673 A A No Deposit Transient-Party
## 8674 A A No Deposit Transient-Party
## 8675 A A No Deposit Transient-Party
## 8676 A A No Deposit Transient-Party
## 8677 A A No Deposit Transient-Party
## 8678 A A No Deposit Transient-Party
## 8679 A A No Deposit Transient-Party
## 8680 A A No Deposit Transient-Party
## 8681 A A No Deposit Transient-Party
## 8682 A A No Deposit Transient-Party
## 8683 A A No Deposit Transient-Party
## 8684 A A No Deposit Transient-Party
## 8685 A A No Deposit Transient-Party
## 8686 A A No Deposit Transient-Party
## 8687 A A No Deposit Transient-Party
## 8688 A A No Deposit Transient-Party
## 8689 A A No Deposit Transient-Party
## 8690 D D No Deposit Transient
## 8691 A A No Deposit Transient-Party
## 8692 G G No Deposit Transient
## 8693 A A No Deposit Transient-Party
## 8694 D D No Deposit Transient-Party
## 8695 D D No Deposit Transient-Party
## 8696 A A No Deposit Transient-Party
## 8697 D E No Deposit Transient-Party
## 8698 D D No Deposit Transient-Party
## 8699 A A No Deposit Transient-Party
## 8700 A A No Deposit Transient-Party
## 8701 D E No Deposit Transient-Party
## 8702 D D No Deposit Transient-Party
## 8703 D D No Deposit Transient-Party
## 8704 D E No Deposit Transient-Party
## 8705 D D No Deposit Transient-Party
## 8706 D D No Deposit Transient-Party
## 8707 D E No Deposit Transient-Party
## 8708 D E No Deposit Transient-Party
## 8709 D D No Deposit Transient-Party
## 8710 D D No Deposit Transient-Party
## 8711 A A No Deposit Transient-Party
## 8712 A A No Deposit Transient-Party
## 8713 A A No Deposit Transient-Party
## 8714 A A No Deposit Transient
## 8715 A A No Deposit Transient-Party
## 8716 A A No Deposit Transient
## 8717 A A No Deposit Transient
## 8718 A A No Deposit Transient
## 8719 A A No Deposit Transient
## 8720 E E No Deposit Transient
## 8721 D E No Deposit Transient
## 8722 E E No Deposit Transient-Party
## 8723 A F No Deposit Transient-Party
## 8724 E E Refundable Transient-Party
## 8725 A A Refundable Transient-Party
## 8726 A D No Deposit Transient-Party
## 8727 A A Refundable Transient-Party
## 8728 E E Refundable Transient-Party
## 8729 A H No Deposit Transient-Party
## 8730 A D No Deposit Transient-Party
## 8731 A A No Deposit Transient-Party
## 8732 A A No Deposit Transient-Party
## 8733 A D No Deposit Transient-Party
## 8734 A A No Deposit Transient-Party
## 8735 A A No Deposit Transient-Party
## 8736 A A No Deposit Transient
## 8737 A A No Deposit Transient-Party
## 8738 A A No Deposit Transient-Party
## 8739 A A No Deposit Transient-Party
## 8740 A A No Deposit Transient-Party
## 8741 A A No Deposit Transient-Party
## 8742 A D No Deposit Transient-Party
## 8743 A D No Deposit Transient-Party
## 8744 A H No Deposit Transient-Party
## 8745 A A No Deposit Transient-Party
## 8746 A A No Deposit Transient
## 8747 A D No Deposit Transient-Party
## 8748 A D No Deposit Transient-Party
## 8749 A A No Deposit Transient-Party
## 8750 A D No Deposit Transient-Party
## 8751 A A No Deposit Transient-Party
## 8752 A A No Deposit Transient-Party
## 8753 A A No Deposit Transient-Party
## 8754 A A No Deposit Transient-Party
## 8755 A G No Deposit Transient-Party
## 8756 A A No Deposit Transient-Party
## 8757 A C No Deposit Transient-Party
## 8758 A A No Deposit Transient-Party
## 8759 A A No Deposit Transient-Party
## 8760 A A No Deposit Transient-Party
## 8761 A A No Deposit Transient-Party
## 8762 A A No Deposit Transient-Party
## 8763 A C No Deposit Transient-Party
## 8764 A A No Deposit Transient-Party
## 8765 A A No Deposit Transient-Party
## 8766 A A No Deposit Transient-Party
## 8767 A E No Deposit Transient-Party
## 8768 A A No Deposit Transient-Party
## 8769 A A No Deposit Transient-Party
## 8770 A A No Deposit Transient-Party
## 8771 A A No Deposit Transient-Party
## 8772 A E No Deposit Transient-Party
## 8773 A D No Deposit Transient-Party
## 8774 A A No Deposit Transient-Party
## 8775 A A No Deposit Transient-Party
## 8776 A A No Deposit Transient-Party
## 8777 A A No Deposit Transient-Party
## 8778 A A No Deposit Transient-Party
## 8779 A A No Deposit Transient-Party
## 8780 A A No Deposit Transient
## 8781 F F No Deposit Transient
## 8782 A B No Deposit Transient-Party
## 8783 A H No Deposit Transient-Party
## 8784 A A No Deposit Transient-Party
## 8785 A D No Deposit Transient-Party
## 8786 E E No Deposit Transient-Party
## 8787 E E No Deposit Transient-Party
## 8788 E E No Deposit Transient-Party
## 8789 E F No Deposit Transient-Party
## 8790 E G No Deposit Transient-Party
## 8791 A A No Deposit Transient-Party
## 8792 E F No Deposit Transient-Party
## 8793 E G No Deposit Transient-Party
## 8794 E E No Deposit Transient-Party
## 8795 E E No Deposit Transient-Party
## 8796 A E No Deposit Transient-Party
## 8797 D D No Deposit Transient-Party
## 8798 E F No Deposit Transient-Party
## 8799 E E No Deposit Transient-Party
## 8800 A C No Deposit Transient-Party
## 8801 A A No Deposit Contract
## 8802 E E No Deposit Transient-Party
## 8803 G G No Deposit Transient
## 8804 A A No Deposit Transient
## 8805 A A No Deposit Transient-Party
## 8806 G G No Deposit Transient
## 8807 G G No Deposit Transient
## 8808 G G No Deposit Transient-Party
## 8809 D D No Deposit Transient-Party
## 8810 D D No Deposit Transient-Party
## 8811 D D No Deposit Transient-Party
## 8812 G G No Deposit Transient-Party
## 8813 G G No Deposit Transient-Party
## 8814 G G No Deposit Transient-Party
## 8815 G G No Deposit Transient-Party
## 8816 G G No Deposit Transient
## 8817 D D No Deposit Transient-Party
## 8818 D D No Deposit Transient-Party
## 8819 A A No Deposit Transient-Party
## 8820 H H No Deposit Transient
## 8821 D D No Deposit Transient-Party
## 8822 D D No Deposit Transient-Party
## 8823 D D No Deposit Transient-Party
## 8824 A A No Deposit Transient-Party
## 8825 G G No Deposit Transient-Party
## 8826 A A No Deposit Contract
## 8827 A A No Deposit Transient
## 8828 A A Non Refund Transient
## 8829 A A Non Refund Transient
## 8830 A A Non Refund Transient
## 8831 A A Non Refund Transient
## 8832 A A Non Refund Transient
## 8833 A A Non Refund Transient
## 8834 A A Non Refund Transient
## 8835 A A Non Refund Transient
## 8836 A A Non Refund Transient
## 8837 A A Non Refund Transient
## 8838 A A Non Refund Transient
## 8839 A A Non Refund Transient
## 8840 A A Non Refund Transient
## 8841 A A Non Refund Transient
## 8842 A A Non Refund Transient
## 8843 A A Non Refund Transient
## 8844 E E No Deposit Transient-Party
## 8845 E E No Deposit Transient-Party
## 8846 A A No Deposit Transient
## 8847 A A No Deposit Transient
## 8848 A A No Deposit Transient
## 8849 A A No Deposit Transient
## 8850 A A No Deposit Transient
## 8851 G G No Deposit Transient
## 8852 E E No Deposit Transient
## 8853 E E No Deposit Transient
## 8854 E E No Deposit Transient
## 8855 E E No Deposit Transient
## 8856 F F No Deposit Transient
## 8857 E E No Deposit Transient
## 8858 A A No Deposit Transient-Party
## 8859 D D No Deposit Transient
## 8860 A A No Deposit Transient
## 8861 D D No Deposit Transient
## 8862 D D No Deposit Transient
## 8863 A A No Deposit Transient
## 8864 A A No Deposit Transient
## 8865 A A No Deposit Transient
## 8866 A A No Deposit Transient
## 8867 A A No Deposit Transient
## 8868 D D No Deposit Transient
## 8869 A A No Deposit Transient
## 8870 A A No Deposit Transient
## 8871 A A No Deposit Transient-Party
## 8872 A A No Deposit Transient
## 8873 A A No Deposit Transient
## 8874 A A No Deposit Transient-Party
## 8875 A A No Deposit Transient
## 8876 A A No Deposit Transient
## 8877 H H No Deposit Transient
## 8878 A A No Deposit Transient-Party
## 8879 A A No Deposit Transient
## 8880 A A No Deposit Transient
## 8881 A A No Deposit Transient
## 8882 A A No Deposit Transient
## 8883 A A No Deposit Transient
## 8884 A A No Deposit Transient
## 8885 A A No Deposit Transient
## 8886 A A No Deposit Transient
## 8887 D D No Deposit Transient
## 8888 G G No Deposit Transient
## 8889 A A No Deposit Transient
## 8890 A A No Deposit Transient
## 8891 A A No Deposit Transient
## 8892 A A No Deposit Transient
## 8893 D D No Deposit Transient
## 8894 D D No Deposit Transient
## 8895 H H No Deposit Transient
## 8896 A A No Deposit Transient
## 8897 A A No Deposit Transient-Party
## 8898 D D No Deposit Transient
## 8899 D D No Deposit Transient
## 8900 D D No Deposit Transient
## 8901 G G No Deposit Transient
## 8902 A A No Deposit Transient
## 8903 D D No Deposit Transient
## 8904 A D No Deposit Transient
## 8905 A A No Deposit Transient-Party
## 8906 A A No Deposit Transient-Party
## 8907 A A No Deposit Transient-Party
## 8908 A C No Deposit Transient-Party
## 8909 G G No Deposit Transient
## 8910 A A No Deposit Transient
## 8911 A A No Deposit Transient-Party
## 8912 A C No Deposit Transient-Party
## 8913 A A No Deposit Transient
## 8914 A A No Deposit Transient
## 8915 D D No Deposit Transient
## 8916 A A No Deposit Transient-Party
## 8917 A A No Deposit Transient
## 8918 A A No Deposit Transient-Party
## 8919 A A No Deposit Transient-Party
## 8920 A A No Deposit Transient-Party
## 8921 A A No Deposit Transient-Party
## 8922 A A No Deposit Transient-Party
## 8923 A A No Deposit Transient-Party
## 8924 A A No Deposit Transient-Party
## 8925 A A No Deposit Transient-Party
## 8926 A A No Deposit Transient-Party
## 8927 A A No Deposit Transient-Party
## 8928 A A No Deposit Transient-Party
## 8929 A A No Deposit Transient-Party
## 8930 A A No Deposit Transient-Party
## 8931 A A No Deposit Transient-Party
## 8932 A A No Deposit Transient-Party
## 8933 E E No Deposit Transient-Party
## 8934 A A No Deposit Transient-Party
## 8935 G G No Deposit Transient
## 8936 E E No Deposit Transient
## 8937 D D No Deposit Transient
## 8938 D D No Deposit Transient-Party
## 8939 H H No Deposit Transient
## 8940 H H No Deposit Transient
## 8941 F F No Deposit Transient
## 8942 D D No Deposit Transient
## 8943 F F No Deposit Transient
## 8944 D D No Deposit Transient
## 8945 D D No Deposit Transient
## 8946 D D No Deposit Transient
## 8947 E E No Deposit Transient
## 8948 E E No Deposit Transient
## 8949 H H No Deposit Transient
## 8950 D D No Deposit Transient
## 8951 A A No Deposit Transient
## 8952 D D No Deposit Transient
## 8953 G G No Deposit Transient-Party
## 8954 G G No Deposit Transient
## 8955 G G No Deposit Transient-Party
## 8956 G G No Deposit Transient
## 8957 A A No Deposit Transient
## 8958 G G No Deposit Transient
## 8959 E E No Deposit Transient-Party
## 8960 D D No Deposit Transient
## 8961 E E No Deposit Transient
## 8962 E E No Deposit Transient
## 8963 E E No Deposit Transient
## 8964 H H No Deposit Transient
## 8965 G G No Deposit Transient
## 8966 G G No Deposit Transient-Party
## 8967 D D No Deposit Transient
## 8968 D D No Deposit Transient
## 8969 D D No Deposit Transient
## 8970 G G No Deposit Transient
## 8971 G G No Deposit Transient
## 8972 D D No Deposit Transient
## 8973 E E No Deposit Transient-Party
## 8974 D D No Deposit Transient
## 8975 G G No Deposit Transient
## 8976 E E No Deposit Transient
## 8977 E E No Deposit Transient
## 8978 D D No Deposit Transient
## 8979 D D No Deposit Transient
## 8980 G G No Deposit Transient
## 8981 E E No Deposit Transient
## 8982 E E No Deposit Transient-Party
## 8983 E E No Deposit Transient
## 8984 E E No Deposit Transient
## 8985 E E No Deposit Transient
## 8986 G G No Deposit Transient
## 8987 F F No Deposit Transient-Party
## 8988 D D No Deposit Transient
## 8989 G G No Deposit Transient-Party
## 8990 D D No Deposit Transient
## 8991 D D No Deposit Transient
## 8992 D D No Deposit Transient
## 8993 H H No Deposit Transient
## 8994 G G No Deposit Transient
## 8995 E E No Deposit Transient
## 8996 E E No Deposit Transient
## 8997 E E No Deposit Transient-Party
## 8998 E E No Deposit Transient-Party
## 8999 G G No Deposit Transient
## 9000 E E No Deposit Transient
## 9001 E E No Deposit Transient
## 9002 D D No Deposit Transient-Party
## 9003 D D No Deposit Transient-Party
## 9004 D D No Deposit Transient-Party
## 9005 D D No Deposit Transient-Party
## 9006 D D No Deposit Transient-Party
## 9007 D D No Deposit Transient-Party
## 9008 D D No Deposit Transient-Party
## 9009 D D No Deposit Transient
## 9010 D D No Deposit Transient
## 9011 D D No Deposit Transient
## 9012 D D No Deposit Transient
## 9013 E E No Deposit Transient
## 9014 F F No Deposit Transient
## 9015 D D No Deposit Transient
## 9016 A A No Deposit Transient
## 9017 A A No Deposit Transient
## 9018 A A No Deposit Transient
## 9019 D D No Deposit Transient
## 9020 A A No Deposit Transient
## 9021 A A No Deposit Transient
## 9022 A A No Deposit Transient
## 9023 A A No Deposit Transient
## 9024 A A No Deposit Transient
## 9025 D D No Deposit Transient
## 9026 A A No Deposit Transient
## 9027 D D No Deposit Transient-Party
## 9028 A A No Deposit Transient
## 9029 A A No Deposit Transient
## 9030 D D No Deposit Transient
## 9031 A A No Deposit Transient
## 9032 A A No Deposit Transient
## 9033 A A No Deposit Transient
## 9034 D D No Deposit Transient
## 9035 D D No Deposit Transient
## 9036 A A No Deposit Transient
## 9037 A A No Deposit Transient
## 9038 A A No Deposit Transient
## 9039 D D No Deposit Transient
## 9040 D D No Deposit Transient
## 9041 D D No Deposit Transient
## 9042 G G No Deposit Transient
## 9043 D D No Deposit Transient
## 9044 D D No Deposit Transient
## 9045 D D No Deposit Transient
## 9046 D D No Deposit Transient
## 9047 A A No Deposit Transient
## 9048 A A No Deposit Transient
## 9049 A A No Deposit Transient
## 9050 A A No Deposit Transient
## 9051 D D No Deposit Transient
## 9052 G G No Deposit Transient
## 9053 D D No Deposit Transient
## 9054 D D No Deposit Transient
## 9055 H H No Deposit Transient
## 9056 A A No Deposit Transient-Party
## 9057 A A No Deposit Transient
## 9058 A A No Deposit Transient
## 9059 D D No Deposit Transient
## 9060 A A No Deposit Transient
## 9061 D D No Deposit Transient
## 9062 D D No Deposit Transient
## 9063 D D No Deposit Transient
## 9064 D D No Deposit Transient
## 9065 D D No Deposit Transient
## 9066 A A No Deposit Transient
## 9067 D D No Deposit Transient
## 9068 D D No Deposit Transient
## 9069 A A No Deposit Transient
## 9070 D D No Deposit Transient
## 9071 D D No Deposit Transient
## 9072 A A No Deposit Transient
## 9073 D D No Deposit Transient
## 9074 D D No Deposit Transient
## 9075 A A No Deposit Transient-Party
## 9076 A A No Deposit Transient-Party
## 9077 A A No Deposit Transient
## 9078 A A No Deposit Transient
## 9079 E E No Deposit Transient
## 9080 A A No Deposit Transient
## 9081 A A No Deposit Transient
## 9082 E E No Deposit Transient
## 9083 A A No Deposit Transient
## 9084 A A No Deposit Transient
## 9085 A A No Deposit Transient
## 9086 E E No Deposit Transient
## 9087 D D No Deposit Transient
## 9088 A A No Deposit Transient
## 9089 A A No Deposit Transient
## 9090 D D No Deposit Transient
## 9091 H H No Deposit Transient
## 9092 D D No Deposit Transient
## 9093 D D No Deposit Transient
## 9094 D D No Deposit Transient
## 9095 D D No Deposit Transient-Party
## 9096 E E No Deposit Transient-Party
## 9097 E E No Deposit Transient-Party
## 9098 D D No Deposit Transient-Party
## 9099 D D No Deposit Transient-Party
## 9100 D D No Deposit Transient
## 9101 D D No Deposit Transient-Party
## 9102 E E No Deposit Transient-Party
## 9103 D D No Deposit Transient
## 9104 D D No Deposit Transient
## 9105 E E No Deposit Transient
## 9106 D D No Deposit Transient
## 9107 A A No Deposit Transient
## 9108 D D No Deposit Transient
## 9109 E E No Deposit Transient-Party
## 9110 A A No Deposit Transient
## 9111 D D No Deposit Transient
## 9112 F F No Deposit Transient
## 9113 D D No Deposit Transient
## 9114 A C No Deposit Transient
## 9115 D D No Deposit Transient
## 9116 A C No Deposit Transient
## 9117 A A No Deposit Transient
## 9118 A A No Deposit Transient-Party
## 9119 A A No Deposit Transient
## 9120 D D No Deposit Transient
## 9121 A C No Deposit Transient
## 9122 E E No Deposit Transient
## 9123 A C No Deposit Transient
## 9124 E E No Deposit Transient
## 9125 F F No Deposit Transient
## 9126 D D No Deposit Transient
## 9127 E E No Deposit Transient
## 9128 A C No Deposit Transient
## 9129 E E No Deposit Transient
## 9130 E E No Deposit Transient
## 9131 E E No Deposit Transient
## 9132 D D No Deposit Transient
## 9133 A A No Deposit Transient
## 9134 A A No Deposit Transient
## 9135 A A No Deposit Transient
## 9136 A A No Deposit Transient
## 9137 A A No Deposit Transient
## 9138 A A No Deposit Transient
## 9139 E E No Deposit Transient
## 9140 A A No Deposit Transient
## 9141 A A No Deposit Transient
## 9142 D D No Deposit Transient
## 9143 D D No Deposit Transient
## 9144 E E No Deposit Transient
## 9145 D D No Deposit Transient
## 9146 E E No Deposit Transient
## 9147 E E No Deposit Transient
## 9148 E E No Deposit Transient
## 9149 D D No Deposit Transient
## 9150 H H No Deposit Transient
## 9151 G G No Deposit Transient
## 9152 A A No Deposit Transient
## 9153 A A No Deposit Transient
## 9154 D D No Deposit Transient
## 9155 D D No Deposit Transient
## 9156 A A No Deposit Transient-Party
## 9157 A A No Deposit Transient
## 9158 A A No Deposit Transient-Party
## 9159 A A No Deposit Transient-Party
## 9160 A B No Deposit Transient
## 9161 A C No Deposit Transient
## 9162 A A No Deposit Transient
## 9163 E E No Deposit Transient
## 9164 D D No Deposit Transient
## 9165 A A No Deposit Transient
## 9166 F F No Deposit Transient
## 9167 E E No Deposit Transient
## 9168 A A No Deposit Transient
## 9169 A A No Deposit Transient
## 9170 A A No Deposit Transient
## 9171 D D No Deposit Transient
## 9172 A A No Deposit Transient
## 9173 H H No Deposit Transient
## 9174 A A No Deposit Transient
## 9175 D D No Deposit Transient
## 9176 A A No Deposit Transient-Party
## 9177 A A No Deposit Transient
## 9178 E E No Deposit Transient
## 9179 A A Non Refund Transient
## 9180 A A Non Refund Transient
## 9181 A A Non Refund Transient
## 9182 A A Non Refund Transient
## 9183 D D No Deposit Transient
## 9184 A C Non Refund Transient
## 9185 A C Non Refund Transient
## 9186 A A Non Refund Transient
## 9187 A A Non Refund Transient
## 9188 A A Non Refund Transient
## 9189 A A Non Refund Transient
## 9190 A A Non Refund Transient
## 9191 A A Non Refund Transient
## 9192 A A Non Refund Transient
## 9193 A C Non Refund Transient
## 9194 A A Non Refund Transient
## 9195 A C Non Refund Transient
## 9196 A A Non Refund Transient
## 9197 A A Non Refund Transient
## 9198 A A No Deposit Transient
## 9199 A A No Deposit Transient
## 9200 A A No Deposit Transient
## 9201 A A No Deposit Transient
## 9202 A A No Deposit Transient
## 9203 A A No Deposit Transient
## 9204 E E No Deposit Transient
## 9205 A A No Deposit Transient
## 9206 A A No Deposit Transient
## 9207 D D No Deposit Transient
## 9208 E E No Deposit Transient
## 9209 A A No Deposit Transient-Party
## 9210 A A No Deposit Transient-Party
## 9211 A A No Deposit Transient-Party
## 9212 A A No Deposit Transient-Party
## 9213 A A No Deposit Transient-Party
## 9214 A A No Deposit Transient-Party
## 9215 A A No Deposit Transient-Party
## 9216 A A No Deposit Transient-Party
## 9217 A A No Deposit Transient-Party
## 9218 A A No Deposit Transient-Party
## 9219 A A No Deposit Transient-Party
## 9220 A A No Deposit Transient-Party
## 9221 A A No Deposit Transient-Party
## 9222 A A No Deposit Transient-Party
## 9223 A A No Deposit Transient-Party
## 9224 A A No Deposit Transient-Party
## 9225 E E No Deposit Transient
## 9226 E E No Deposit Transient
## 9227 A A No Deposit Transient
## 9228 D D No Deposit Transient
## 9229 A C No Deposit Transient
## 9230 A A No Deposit Transient
## 9231 A A No Deposit Transient
## 9232 A A No Deposit Transient
## 9233 D D No Deposit Transient
## 9234 A A No Deposit Transient
## 9235 D D No Deposit Transient
## 9236 E E No Deposit Transient
## 9237 A A No Deposit Transient
## 9238 A A No Deposit Transient
## 9239 A A No Deposit Transient
## 9240 A A No Deposit Transient
## 9241 A D No Deposit Transient
## 9242 D D No Deposit Transient
## 9243 A A Non Refund Transient
## 9244 A A Non Refund Transient
## 9245 A A Non Refund Transient
## 9246 E E No Deposit Transient
## 9247 A A Non Refund Transient
## 9248 A A Non Refund Transient
## 9249 A A Non Refund Transient
## 9250 A A Non Refund Transient
## 9251 E E No Deposit Transient
## 9252 A A Non Refund Transient
## 9253 A A Non Refund Transient
## 9254 A A Non Refund Transient
## 9255 A A Non Refund Transient
## 9256 A A Non Refund Transient
## 9257 E E No Deposit Transient
## 9258 A A Non Refund Transient
## 9259 A A Non Refund Transient
## 9260 A A Non Refund Transient
## 9261 A A Non Refund Transient
## 9262 E E No Deposit Transient
## 9263 E E No Deposit Transient
## 9264 D D No Deposit Transient
## 9265 F F No Deposit Transient
## 9266 A A No Deposit Transient
## 9267 A A No Deposit Transient
## 9268 E E No Deposit Transient
## 9269 A A No Deposit Transient
## 9270 A A No Deposit Transient
## 9271 A A No Deposit Transient
## 9272 E E No Deposit Transient
## 9273 A A No Deposit Transient
## 9274 E E No Deposit Transient-Party
## 9275 E E No Deposit Transient-Party
## 9276 A A No Deposit Transient
## 9277 D D No Deposit Transient
## 9278 E E No Deposit Transient
## 9279 A A No Deposit Transient
## 9280 A A No Deposit Transient
## 9281 A A No Deposit Transient
## 9282 C C No Deposit Transient
## 9283 D D No Deposit Transient
## 9284 D D No Deposit Transient
## 9285 A A No Deposit Transient
## 9286 D D No Deposit Transient-Party
## 9287 A A No Deposit Transient
## 9288 D D No Deposit Transient
## 9289 D D No Deposit Transient
## 9290 A A No Deposit Transient
## 9291 A A No Deposit Transient
## 9292 E E No Deposit Transient
## 9293 G G No Deposit Transient
## 9294 A A No Deposit Transient
## 9295 A A No Deposit Transient
## 9296 G G No Deposit Transient
## 9297 A A No Deposit Transient
## 9298 A A No Deposit Transient
## 9299 A A No Deposit Transient
## 9300 A A No Deposit Transient
## 9301 A A No Deposit Transient
## 9302 A A No Deposit Transient
## 9303 A A No Deposit Transient
## 9304 A A No Deposit Transient
## 9305 A A No Deposit Transient
## 9306 A A No Deposit Transient
## 9307 A C No Deposit Transient
## 9308 A A No Deposit Transient
## 9309 A A No Deposit Transient
## 9310 D D No Deposit Transient
## 9311 D D No Deposit Transient
## 9312 D D No Deposit Transient
## 9313 A A No Deposit Transient
## 9314 A C No Deposit Transient
## 9315 A A No Deposit Transient
## 9316 A A No Deposit Transient
## 9317 A A No Deposit Transient
## 9318 A C No Deposit Transient
## 9319 H H No Deposit Transient
## 9320 D D No Deposit Transient
## 9321 A A No Deposit Transient
## 9322 A A No Deposit Transient
## 9323 A A No Deposit Transient
## 9324 A A No Deposit Transient
## 9325 E E No Deposit Transient
## 9326 E E No Deposit Transient
## 9327 A A No Deposit Transient
## 9328 E E No Deposit Transient
## 9329 A A No Deposit Transient
## 9330 A A No Deposit Transient
## 9331 A A No Deposit Transient
## 9332 A A No Deposit Transient
## 9333 D D No Deposit Transient
## 9334 A A No Deposit Transient
## 9335 A A No Deposit Transient
## 9336 G G No Deposit Transient
## 9337 A A No Deposit Transient
## 9338 A A No Deposit Transient
## 9339 G G No Deposit Transient
## 9340 D D No Deposit Transient
## 9341 A A No Deposit Transient
## 9342 E E No Deposit Transient
## 9343 A A No Deposit Transient
## 9344 D D No Deposit Transient
## 9345 A A No Deposit Transient
## 9346 E E No Deposit Transient
## 9347 A A No Deposit Transient
## 9348 E E No Deposit Transient
## 9349 D D No Deposit Transient
## 9350 A A No Deposit Transient
## 9351 A A No Deposit Transient-Party
## 9352 A A No Deposit Transient-Party
## 9353 A A No Deposit Transient
## 9354 A A No Deposit Transient
## 9355 A A No Deposit Transient-Party
## 9356 A A No Deposit Transient
## 9357 E E No Deposit Transient
## 9358 E E No Deposit Transient
## 9359 A A No Deposit Transient
## 9360 A D No Deposit Transient
## 9361 E E No Deposit Transient
## 9362 A A No Deposit Transient
## 9363 A A No Deposit Transient
## 9364 A A No Deposit Transient
## 9365 A A No Deposit Transient
## 9366 A A No Deposit Transient
## 9367 A A No Deposit Transient-Party
## 9368 D D No Deposit Transient
## 9369 A D No Deposit Transient
## 9370 A A No Deposit Transient
## 9371 A A No Deposit Transient
## 9372 D D No Deposit Transient
## 9373 A A No Deposit Transient
## 9374 E E No Deposit Transient
## 9375 A A No Deposit Transient
## 9376 E E No Deposit Transient
## 9377 P P No Deposit Group
## 9378 G G No Deposit Transient
## 9379 A A No Deposit Transient
## 9380 E E No Deposit Transient
## 9381 D D No Deposit Transient
## 9382 E E No Deposit Transient
## 9383 D D No Deposit Transient
## 9384 F F No Deposit Transient
## 9385 E E No Deposit Transient
## 9386 E E No Deposit Transient
## 9387 A A No Deposit Transient
## 9388 A D No Deposit Transient
## 9389 A D No Deposit Transient
## 9390 E E No Deposit Transient
## 9391 A D No Deposit Transient-Party
## 9392 A D No Deposit Transient-Party
## 9393 A D No Deposit Transient-Party
## 9394 E E No Deposit Transient
## 9395 D D No Deposit Transient
## 9396 E E No Deposit Transient
## 9397 A A No Deposit Transient
## 9398 E E No Deposit Transient
## 9399 E E No Deposit Transient
## 9400 E E No Deposit Transient
## 9401 A A No Deposit Transient
## 9402 A A No Deposit Transient
## 9403 A A No Deposit Transient
## 9404 D D No Deposit Transient
## 9405 G G No Deposit Transient
## 9406 A A No Deposit Transient
## 9407 D D No Deposit Transient
## 9408 A A No Deposit Transient
## 9409 G G No Deposit Transient
## 9410 A A No Deposit Transient
## 9411 C C No Deposit Transient
## 9412 A A No Deposit Transient
## 9413 H H No Deposit Transient
## 9414 C C No Deposit Transient
## 9415 A A Non Refund Transient
## 9416 A A Non Refund Transient
## 9417 A A Non Refund Transient
## 9418 A A Non Refund Transient
## 9419 A A Non Refund Transient
## 9420 A A Non Refund Transient
## 9421 A A Non Refund Transient
## 9422 A A Non Refund Transient
## 9423 A A Non Refund Transient
## 9424 A A Non Refund Transient
## 9425 A A Non Refund Transient
## 9426 A A Non Refund Transient
## 9427 A A Non Refund Transient
## 9428 A A Non Refund Transient
## 9429 A A Non Refund Transient
## 9430 A A Non Refund Transient
## 9431 A A No Deposit Transient
## 9432 A A No Deposit Transient
## 9433 A A No Deposit Transient
## 9434 F F No Deposit Transient
## 9435 D D No Deposit Transient
## 9436 A A No Deposit Transient
## 9437 F F No Deposit Transient
## 9438 D D No Deposit Transient
## 9439 D D No Deposit Transient
## 9440 D D No Deposit Transient
## 9441 E E No Deposit Transient-Party
## 9442 E E No Deposit Transient
## 9443 E E No Deposit Transient-Party
## 9444 E E No Deposit Transient-Party
## 9445 E E No Deposit Transient-Party
## 9446 A A No Deposit Transient
## 9447 D D No Deposit Transient
## 9448 A A No Deposit Transient
## 9449 A D No Deposit Transient
## 9450 A A No Deposit Transient
## 9451 D D No Deposit Transient
## 9452 A A No Deposit Transient
## 9453 A A No Deposit Transient
## 9454 E E No Deposit Transient-Party
## 9455 A A No Deposit Transient
## 9456 D D No Deposit Transient
## 9457 A A No Deposit Transient
## 9458 E E No Deposit Transient
## 9459 E E No Deposit Transient
## 9460 A A No Deposit Transient
## 9461 D D No Deposit Transient
## 9462 A C No Deposit Transient
## 9463 D D No Deposit Transient
## 9464 A A No Deposit Transient
## 9465 D D No Deposit Transient
## 9466 A A No Deposit Transient-Party
## 9467 A A No Deposit Transient-Party
## 9468 D D No Deposit Transient
## 9469 A A No Deposit Transient-Party
## 9470 A A No Deposit Transient-Party
## 9471 A A No Deposit Transient-Party
## 9472 A A No Deposit Transient-Party
## 9473 A A No Deposit Transient-Party
## 9474 A A No Deposit Transient-Party
## 9475 A A No Deposit Transient-Party
## 9476 A A No Deposit Transient-Party
## 9477 A C No Deposit Transient-Party
## 9478 A A Non Refund Transient
## 9479 A A Non Refund Transient
## 9480 A A Non Refund Transient
## 9481 A A Non Refund Transient
## 9482 A C Non Refund Transient
## 9483 A A Non Refund Transient
## 9484 A A Non Refund Transient
## 9485 A A Non Refund Transient
## 9486 A C Non Refund Transient
## 9487 A A Non Refund Transient
## 9488 A A Non Refund Transient
## 9489 A A Non Refund Transient
## 9490 A A Non Refund Transient
## 9491 A A Non Refund Transient
## 9492 A A Non Refund Transient
## 9493 A A Non Refund Transient
## 9494 A A Non Refund Transient
## 9495 A C Non Refund Transient
## 9496 A C Non Refund Transient
## 9497 A A Non Refund Transient
## 9498 A A Non Refund Transient
## 9499 A A Non Refund Transient
## 9500 A A Non Refund Transient
## 9501 A A Non Refund Transient
## 9502 A A Non Refund Transient
## 9503 A C Non Refund Transient
## 9504 A C Non Refund Transient
## 9505 A A Non Refund Transient
## 9506 A A Non Refund Transient
## 9507 A C Non Refund Transient
## 9508 A D No Deposit Transient
## 9509 A A No Deposit Transient-Party
## 9510 A A No Deposit Transient-Party
## 9511 A A No Deposit Transient
## 9512 A A No Deposit Transient-Party
## 9513 A A No Deposit Transient-Party
## 9514 A A No Deposit Transient-Party
## 9515 A A No Deposit Transient-Party
## 9516 A A No Deposit Transient-Party
## 9517 A A No Deposit Transient
## 9518 A A No Deposit Transient
## 9519 A A No Deposit Transient
## 9520 A D No Deposit Transient
## 9521 E E No Deposit Transient
## 9522 G G No Deposit Transient
## 9523 A A No Deposit Transient
## 9524 E E No Deposit Transient
## 9525 A A No Deposit Transient
## 9526 A A No Deposit Transient
## 9527 E E No Deposit Transient
## 9528 A A No Deposit Transient-Party
## 9529 E E No Deposit Transient
## 9530 E E No Deposit Transient
## 9531 D D No Deposit Transient
## 9532 A A No Deposit Transient
## 9533 A A No Deposit Transient
## 9534 A D No Deposit Transient-Party
## 9535 A A No Deposit Transient-Party
## 9536 A A No Deposit Transient
## 9537 A A No Deposit Transient-Party
## 9538 A A No Deposit Transient-Party
## 9539 A A No Deposit Transient-Party
## 9540 A A No Deposit Transient-Party
## 9541 A A No Deposit Transient-Party
## 9542 A A No Deposit Transient-Party
## 9543 A A No Deposit Transient-Party
## 9544 A A No Deposit Transient-Party
## 9545 A A No Deposit Transient-Party
## 9546 A A No Deposit Transient-Party
## 9547 A A No Deposit Transient
## 9548 A A No Deposit Transient
## 9549 A C No Deposit Transient
## 9550 A A No Deposit Transient
## 9551 D D No Deposit Transient
## 9552 E E No Deposit Transient
## 9553 A D No Deposit Transient
## 9554 A A No Deposit Transient
## 9555 G G No Deposit Transient
## 9556 A D No Deposit Transient
## 9557 D D No Deposit Transient
## 9558 A A No Deposit Transient
## 9559 D D No Deposit Transient
## 9560 D D No Deposit Transient
## 9561 A A No Deposit Transient
## 9562 A A No Deposit Transient
## 9563 D D No Deposit Transient
## 9564 E E No Deposit Transient
## 9565 H H No Deposit Transient
## 9566 E E No Deposit Transient
## 9567 A D No Deposit Transient
## 9568 A D No Deposit Transient
## 9569 A A No Deposit Transient
## 9570 A C No Deposit Transient
## 9571 A A No Deposit Transient
## 9572 E E No Deposit Transient
## 9573 A A No Deposit Transient
## 9574 A A No Deposit Transient
## 9575 A A No Deposit Transient
## 9576 A A No Deposit Transient
## 9577 A A No Deposit Transient
## 9578 E E No Deposit Transient
## 9579 A A No Deposit Transient
## 9580 A D No Deposit Transient
## 9581 A A No Deposit Transient
## 9582 D D No Deposit Transient
## 9583 D D No Deposit Transient
## 9584 E E No Deposit Transient
## 9585 F F No Deposit Transient-Party
## 9586 E E No Deposit Transient
## 9587 A A No Deposit Transient
## 9588 A A No Deposit Transient-Party
## 9589 A A No Deposit Transient
## 9590 A A No Deposit Transient-Party
## 9591 A A No Deposit Transient
## 9592 A A No Deposit Transient
## 9593 A A No Deposit Transient
## 9594 E E No Deposit Transient
## 9595 A A No Deposit Transient
## 9596 A A No Deposit Transient
## 9597 A A No Deposit Transient
## 9598 A A No Deposit Transient
## 9599 A A No Deposit Transient
## 9600 D D No Deposit Transient
## 9601 A A No Deposit Transient
## 9602 E E No Deposit Transient
## 9603 A A No Deposit Transient
## 9604 A A No Deposit Transient
## 9605 A A No Deposit Transient
## 9606 H H No Deposit Transient
## 9607 A A No Deposit Transient
## 9608 A A No Deposit Transient
## 9609 A A No Deposit Transient
## 9610 E E No Deposit Transient
## 9611 A D No Deposit Transient
## 9612 A A No Deposit Transient
## 9613 A D No Deposit Transient
## 9614 G G No Deposit Transient
## 9615 H H No Deposit Transient
## 9616 G G No Deposit Transient
## 9617 E E No Deposit Transient
## 9618 A A No Deposit Transient
## 9619 E E No Deposit Transient
## 9620 E E No Deposit Transient
## 9621 E E No Deposit Transient
## 9622 E E No Deposit Transient
## 9623 E E No Deposit Transient
## 9624 A A No Deposit Transient
## 9625 E E No Deposit Transient
## 9626 A A No Deposit Transient
## 9627 E E No Deposit Transient
## 9628 A A No Deposit Transient
## 9629 A A No Deposit Transient
## 9630 E E No Deposit Transient
## 9631 E E No Deposit Transient
## 9632 A A No Deposit Transient
## 9633 H H No Deposit Transient
## 9634 E E No Deposit Transient
## 9635 E E No Deposit Transient
## 9636 E E No Deposit Transient
## 9637 E E No Deposit Transient
## 9638 E E No Deposit Transient
## 9639 E E No Deposit Transient
## 9640 E E No Deposit Transient
## 9641 E E No Deposit Transient-Party
## 9642 E E No Deposit Transient
## 9643 E E No Deposit Transient
## 9644 D D No Deposit Transient
## 9645 D D No Deposit Transient
## 9646 D D No Deposit Transient
## 9647 A A No Deposit Transient
## 9648 D D No Deposit Transient
## 9649 D D No Deposit Transient
## 9650 E E No Deposit Transient-Party
## 9651 E E No Deposit Transient-Party
## 9652 A A No Deposit Transient
## 9653 A A No Deposit Transient-Party
## 9654 D D No Deposit Transient
## 9655 D D No Deposit Transient
## 9656 A D No Deposit Transient
## 9657 A D No Deposit Transient
## 9658 A A No Deposit Transient-Party
## 9659 A A No Deposit Transient-Party
## 9660 G G No Deposit Transient-Party
## 9661 A A No Deposit Transient-Party
## 9662 A A No Deposit Transient-Party
## 9663 A A No Deposit Transient
## 9664 G G No Deposit Transient
## 9665 A A No Deposit Transient
## 9666 D D No Deposit Transient
## 9667 A A No Deposit Transient
## 9668 A A No Deposit Transient
## 9669 E E No Deposit Transient
## 9670 G G No Deposit Transient
## 9671 D D No Deposit Transient
## 9672 E E No Deposit Transient
## 9673 A A No Deposit Transient
## 9674 A A No Deposit Transient
## 9675 A A No Deposit Transient
## 9676 A A No Deposit Transient
## 9677 A A No Deposit Transient
## 9678 D D No Deposit Transient
## 9679 D D No Deposit Transient
## 9680 D D No Deposit Transient
## 9681 A A No Deposit Transient
## 9682 H H No Deposit Transient
## 9683 D D No Deposit Transient
## 9684 A C No Deposit Transient
## 9685 D D No Deposit Transient
## 9686 G G No Deposit Transient
## 9687 A A No Deposit Transient
## 9688 A A No Deposit Transient
## 9689 E E No Deposit Transient
## 9690 A A No Deposit Transient
## 9691 A A No Deposit Transient
## 9692 A A No Deposit Transient
## 9693 E E No Deposit Transient
## 9694 A A No Deposit Transient
## 9695 D D No Deposit Transient-Party
## 9696 D D No Deposit Transient
## 9697 A A No Deposit Transient
## 9698 D D No Deposit Transient-Party
## 9699 D D No Deposit Transient-Party
## 9700 D D No Deposit Transient
## 9701 A A No Deposit Transient
## 9702 D D No Deposit Transient-Party
## 9703 C C No Deposit Transient
## 9704 E E No Deposit Transient
## 9705 G G No Deposit Transient
## 9706 A A No Deposit Transient
## 9707 A A No Deposit Transient
## 9708 A A No Deposit Transient
## 9709 E E No Deposit Transient
## 9710 A A No Deposit Transient
## 9711 D D No Deposit Transient
## 9712 H H No Deposit Transient
## 9713 E E No Deposit Transient
## 9714 A C No Deposit Transient
## 9715 E E No Deposit Transient
## 9716 G G No Deposit Transient
## 9717 A A No Deposit Transient
## 9718 A A No Deposit Transient
## 9719 A A No Deposit Transient
## 9720 E E No Deposit Transient
## 9721 D D No Deposit Transient
## 9722 A A No Deposit Transient
## 9723 A A No Deposit Transient
## 9724 A A No Deposit Transient
## 9725 G G No Deposit Transient
## 9726 D D No Deposit Transient
## 9727 D D No Deposit Transient
## 9728 E E No Deposit Transient-Party
## 9729 G G No Deposit Transient
## 9730 G G No Deposit Transient
## 9731 D D No Deposit Transient
## 9732 E E No Deposit Transient
## 9733 G G No Deposit Transient
## 9734 A A No Deposit Transient
## 9735 G G No Deposit Transient
## 9736 D D No Deposit Transient
## 9737 A A No Deposit Transient
## 9738 A A No Deposit Transient
## 9739 E E No Deposit Transient
## 9740 E E No Deposit Transient
## 9741 E E No Deposit Transient
## 9742 A A No Deposit Transient
## 9743 H H No Deposit Transient
## 9744 D D No Deposit Transient
## 9745 A C No Deposit Transient-Party
## 9746 A A No Deposit Transient-Party
## 9747 A A No Deposit Transient-Party
## 9748 A A No Deposit Transient
## 9749 D D No Deposit Transient
## 9750 E E No Deposit Transient
## 9751 A A No Deposit Transient-Party
## 9752 E E No Deposit Transient
## 9753 A A No Deposit Transient-Party
## 9754 A A No Deposit Transient-Party
## 9755 E E No Deposit Transient
## 9756 A A No Deposit Transient
## 9757 A A No Deposit Transient-Party
## 9758 A A No Deposit Transient
## 9759 A A No Deposit Transient-Party
## 9760 A A No Deposit Transient
## 9761 A C No Deposit Transient-Party
## 9762 A A No Deposit Transient-Party
## 9763 A A No Deposit Transient-Party
## 9764 A A No Deposit Transient-Party
## 9765 A B No Deposit Transient
## 9766 A A No Deposit Transient
## 9767 A A No Deposit Transient
## 9768 E E No Deposit Transient
## 9769 E E No Deposit Transient
## 9770 G G No Deposit Transient-Party
## 9771 E E No Deposit Transient
## 9772 G G No Deposit Transient-Party
## 9773 D D No Deposit Transient
## 9774 E E No Deposit Transient
## 9775 A A No Deposit Transient
## 9776 A A No Deposit Transient
## 9777 A A No Deposit Transient
## 9778 A A No Deposit Transient
## 9779 A A No Deposit Transient
## 9780 A A No Deposit Transient
## 9781 A A No Deposit Transient
## 9782 A A No Deposit Transient
## 9783 A A No Deposit Transient
## 9784 A A No Deposit Transient
## 9785 A A No Deposit Transient
## 9786 A A No Deposit Transient
## 9787 A A No Deposit Transient
## 9788 A A No Deposit Transient
## 9789 D D No Deposit Transient
## 9790 E E No Deposit Transient
## 9791 A A No Deposit Transient
## 9792 E E No Deposit Transient
## 9793 A A No Deposit Transient
## 9794 G G No Deposit Transient
## 9795 A A No Deposit Transient
## 9796 G G No Deposit Transient
## 9797 G G No Deposit Transient
## 9798 A A No Deposit Transient
## 9799 D D No Deposit Transient
## 9800 G G No Deposit Transient
## 9801 E E No Deposit Transient
## 9802 H H No Deposit Transient
## 9803 G G No Deposit Transient
## 9804 A A No Deposit Transient
## 9805 A A No Deposit Transient
## 9806 A A No Deposit Transient
## 9807 A A No Deposit Transient
## 9808 A A No Deposit Transient
## 9809 A A No Deposit Transient
## 9810 D D No Deposit Transient
## 9811 A A No Deposit Transient
## 9812 H H No Deposit Transient
## 9813 A A No Deposit Transient
## 9814 A A No Deposit Transient
## 9815 E E No Deposit Transient
## 9816 D D No Deposit Transient
## 9817 A A No Deposit Transient
## 9818 A A No Deposit Transient
## 9819 A A No Deposit Transient
## 9820 D D No Deposit Transient
## 9821 A A No Deposit Transient
## 9822 D D No Deposit Transient
## 9823 D D No Deposit Transient
## 9824 D D No Deposit Transient
## 9825 A A No Deposit Transient
## 9826 A A No Deposit Transient
## 9827 A A No Deposit Transient
## 9828 A C No Deposit Transient
## 9829 A A No Deposit Transient
## 9830 A A No Deposit Transient
## 9831 E E No Deposit Transient
## 9832 A A No Deposit Transient
## 9833 A A No Deposit Transient
## 9834 E E No Deposit Transient
## 9835 A A No Deposit Transient
## 9836 A A No Deposit Transient
## 9837 A A No Deposit Transient
## 9838 A A No Deposit Transient
## 9839 G G No Deposit Transient
## 9840 A A No Deposit Transient
## 9841 A A No Deposit Transient
## 9842 A D No Deposit Transient
## 9843 A D No Deposit Transient
## 9844 A D No Deposit Transient
## 9845 A A No Deposit Transient
## 9846 E E No Deposit Transient
## 9847 A A No Deposit Transient
## 9848 A A No Deposit Transient
## 9849 A A No Deposit Transient
## 9850 A A No Deposit Transient
## 9851 A A No Deposit Transient
## 9852 A A No Deposit Transient
## 9853 F F No Deposit Transient
## 9854 A A No Deposit Transient
## 9855 A A No Deposit Transient
## 9856 A A No Deposit Transient
## 9857 D D No Deposit Transient
## 9858 E E No Deposit Transient
## 9859 F F No Deposit Transient
## 9860 G G No Deposit Transient
## 9861 E E No Deposit Transient
## 9862 A A No Deposit Transient
## 9863 D D No Deposit Transient
## 9864 A A No Deposit Transient
## 9865 E E No Deposit Transient
## 9866 A A No Deposit Transient
## 9867 A A No Deposit Transient
## 9868 A A No Deposit Transient
## 9869 A A No Deposit Transient
## 9870 H H No Deposit Transient
## 9871 A F No Deposit Transient
## 9872 A A No Deposit Transient
## 9873 A A No Deposit Transient
## 9874 A A No Deposit Transient-Party
## 9875 A A No Deposit Transient-Party
## 9876 A A No Deposit Transient-Party
## 9877 A A No Deposit Transient-Party
## 9878 A A No Deposit Transient-Party
## 9879 A C No Deposit Transient-Party
## 9880 A A No Deposit Transient-Party
## 9881 A A No Deposit Transient-Party
## 9882 A A No Deposit Transient-Party
## 9883 A D No Deposit Transient-Party
## 9884 A A No Deposit Transient-Party
## 9885 A E No Deposit Transient-Party
## 9886 A A No Deposit Transient-Party
## 9887 A A No Deposit Transient-Party
## 9888 A A No Deposit Transient-Party
## 9889 A C No Deposit Transient
## 9890 A A No Deposit Transient
## 9891 D D No Deposit Transient
## 9892 A H No Deposit Transient-Party
## 9893 A D No Deposit Transient-Party
## 9894 H H No Deposit Transient-Party
## 9895 A A No Deposit Transient
## 9896 A D No Deposit Transient-Party
## 9897 A D No Deposit Transient-Party
## 9898 A A No Deposit Transient
## 9899 A A No Deposit Transient
## 9900 G G No Deposit Transient
## 9901 G G No Deposit Transient
## 9902 E E No Deposit Transient
## 9903 A A No Deposit Transient
## 9904 A A No Deposit Transient
## 9905 A A No Deposit Transient
## 9906 A A No Deposit Transient
## 9907 A A No Deposit Transient
## 9908 D D No Deposit Transient
## 9909 A A No Deposit Transient
## 9910 A A No Deposit Transient
## 9911 D D No Deposit Transient
## 9912 D D No Deposit Transient
## 9913 A A No Deposit Transient
## 9914 A A No Deposit Transient
## 9915 G G No Deposit Transient
## 9916 A A No Deposit Transient
## 9917 A D No Deposit Transient
## 9918 A D No Deposit Transient
## 9919 A D No Deposit Transient
## 9920 A D No Deposit Transient
## 9921 E E No Deposit Transient
## 9922 D D No Deposit Transient
## 9923 A A No Deposit Transient
## 9924 H H No Deposit Transient
## 9925 A A No Deposit Transient
## 9926 D D No Deposit Transient
## 9927 A A No Deposit Transient
## 9928 D D No Deposit Transient
## 9929 A A No Deposit Transient
## 9930 A A No Deposit Transient
## 9931 H H No Deposit Transient
## 9932 A D No Deposit Transient
## 9933 D D No Deposit Transient
## 9934 A A No Deposit Transient
## 9935 A A No Deposit Transient
## 9936 A A No Deposit Transient
## 9937 E E No Deposit Transient
## 9938 A A No Deposit Transient-Party
## 9939 A A No Deposit Transient-Party
## 9940 A A No Deposit Transient-Party
## 9941 A A No Deposit Transient-Party
## 9942 A A No Deposit Transient
## 9943 A A No Deposit Transient
## 9944 A A No Deposit Transient
## 9945 A A Non Refund Transient-Party
## 9946 A A No Deposit Transient
## 9947 E E No Deposit Transient
## 9948 A A Non Refund Transient-Party
## 9949 A A No Deposit Transient
## 9950 D E No Deposit Transient
## 9951 A A No Deposit Transient
## 9952 A A No Deposit Transient
## 9953 G G No Deposit Transient
## 9954 D D No Deposit Transient
## 9955 F F No Deposit Transient
## 9956 A A No Deposit Transient
## 9957 A D No Deposit Transient
## 9958 A A No Deposit Transient
## 9959 E E No Deposit Transient
## 9960 E E No Deposit Transient
## 9961 E E No Deposit Transient
## 9962 D D No Deposit Transient
## 9963 A A No Deposit Transient
## 9964 A A No Deposit Transient
## 9965 A B No Deposit Transient
## 9966 G G No Deposit Transient
## 9967 D D No Deposit Transient
## 9968 G G No Deposit Transient
## 9969 A A No Deposit Transient
## 9970 E E No Deposit Transient
## 9971 A A No Deposit Transient
## 9972 D D No Deposit Transient
## 9973 A A No Deposit Transient
## 9974 A A No Deposit Transient
## 9975 E E No Deposit Transient
## 9976 A A No Deposit Transient
## 9977 G G No Deposit Transient
## 9978 A A No Deposit Transient
## 9979 A A No Deposit Transient
## 9980 A A No Deposit Transient
## 9981 D D No Deposit Transient
## 9982 A A No Deposit Transient
## 9983 A A No Deposit Transient
## 9984 A D No Deposit Transient
## 9985 A A No Deposit Transient
## 9986 A A No Deposit Transient
## 9987 A A No Deposit Transient
## 9988 A A No Deposit Transient-Party
## 9989 A A No Deposit Transient
## 9990 A A No Deposit Transient
## 9991 A A No Deposit Transient
## 9992 D D No Deposit Transient
## 9993 A A No Deposit Transient
## 9994 D D No Deposit Transient
## 9995 D D No Deposit Transient
## 9996 A A No Deposit Transient
## 9997 D D No Deposit Transient
## 9998 A A No Deposit Transient
## 9999 E E No Deposit Transient
## 10000 A A No Deposit Transient
## 10001 A A No Deposit Transient
## 10002 A A No Deposit Transient
## 10003 A A No Deposit Transient
## 10004 A A No Deposit Transient
## 10005 A A No Deposit Transient
## 10006 A A No Deposit Transient
## 10007 A A No Deposit Transient
## 10008 E E No Deposit Transient
## 10009 A A No Deposit Transient
## 10010 E E No Deposit Transient
## 10011 A A No Deposit Transient
## 10012 E E No Deposit Transient
## 10013 A A No Deposit Transient
## 10014 D D No Deposit Transient
## 10015 A A No Deposit Transient
## 10016 E E No Deposit Transient
## 10017 E E No Deposit Transient
## 10018 E E No Deposit Transient
## 10019 D E No Deposit Transient
## 10020 H H No Deposit Transient
## 10021 D D No Deposit Transient
## 10022 A A No Deposit Transient
## 10023 A A No Deposit Transient
## 10024 A A No Deposit Transient
## 10025 E E No Deposit Transient
## 10026 E E No Deposit Transient
## 10027 D D No Deposit Transient
## 10028 E E No Deposit Transient
## 10029 H H No Deposit Transient
## 10030 D D No Deposit Transient
## 10031 G G No Deposit Transient
## 10032 D D No Deposit Transient
## 10033 A A No Deposit Transient
## 10034 A D No Deposit Transient
## 10035 D D No Deposit Transient
## 10036 A A No Deposit Transient
## 10037 E E No Deposit Transient
## 10038 D D No Deposit Transient
## 10039 A A No Deposit Transient
## 10040 D D No Deposit Transient
## 10041 C C No Deposit Transient
## 10042 A A Non Refund Transient
## 10043 A A Non Refund Transient
## 10044 A A Non Refund Transient
## 10045 A A Non Refund Transient
## 10046 A A Non Refund Transient
## 10047 E E No Deposit Transient
## 10048 A A Non Refund Transient
## 10049 A A Non Refund Transient
## 10050 A A Non Refund Transient
## 10051 A A No Deposit Transient
## 10052 A A Non Refund Transient
## 10053 A A Non Refund Transient
## 10054 A A Non Refund Transient
## 10055 A A Non Refund Transient
## 10056 A A Non Refund Transient
## 10057 A A Non Refund Transient
## 10058 A A Non Refund Transient
## 10059 A A Non Refund Transient
## 10060 A A Non Refund Transient
## 10061 A A Non Refund Transient
## 10062 A A Non Refund Transient
## 10063 D D No Deposit Transient
## 10064 A A Non Refund Transient
## 10065 A A Non Refund Transient
## 10066 A A Non Refund Transient
## 10067 A A Non Refund Transient
## 10068 A A Non Refund Transient
## 10069 A A No Deposit Transient
## 10070 H H No Deposit Transient
## 10071 A A Non Refund Transient
## 10072 A A Non Refund Transient
## 10073 A A No Deposit Transient
## 10074 A A Non Refund Transient
## 10075 A A Non Refund Transient
## 10076 A A Non Refund Transient
## 10077 A A No Deposit Transient
## 10078 D D No Deposit Transient
## 10079 A A No Deposit Transient
## 10080 D D No Deposit Transient
## 10081 A C No Deposit Transient
## 10082 A A No Deposit Transient
## 10083 A A No Deposit Transient
## 10084 D D No Deposit Transient
## 10085 A A No Deposit Transient
## 10086 A A No Deposit Transient
## 10087 A A No Deposit Transient
## 10088 A A No Deposit Transient
## 10089 A A No Deposit Transient-Party
## 10090 E E No Deposit Transient
## 10091 A A No Deposit Transient-Party
## 10092 A A No Deposit Transient
## 10093 D D No Deposit Transient
## 10094 D D No Deposit Transient
## 10095 H H No Deposit Transient
## 10096 A A No Deposit Transient
## 10097 D D No Deposit Transient
## 10098 A A No Deposit Transient
## 10099 A A No Deposit Transient
## 10100 A A No Deposit Transient
## 10101 A A No Deposit Transient
## 10102 A A No Deposit Transient
## 10103 D D No Deposit Transient
## 10104 F F No Deposit Transient
## 10105 A A No Deposit Transient
## 10106 A A No Deposit Transient
## 10107 D D No Deposit Transient
## 10108 A A No Deposit Transient
## 10109 E E No Deposit Transient
## 10110 D D No Deposit Transient
## 10111 A A No Deposit Transient
## 10112 A A No Deposit Transient
## 10113 A A No Deposit Transient
## 10114 A D No Deposit Transient
## 10115 A A No Deposit Transient
## 10116 A A No Deposit Transient
## 10117 A A No Deposit Transient
## 10118 A A No Deposit Transient
## 10119 G G No Deposit Transient
## 10120 A A No Deposit Transient
## 10121 E E No Deposit Transient
## 10122 D D No Deposit Transient
## 10123 A A No Deposit Transient
## 10124 A A No Deposit Transient
## 10125 E E No Deposit Transient
## 10126 A A No Deposit Transient
## 10127 A A No Deposit Transient
## 10128 A A No Deposit Transient
## 10129 D D No Deposit Transient
## 10130 A A No Deposit Transient-Party
## 10131 A A No Deposit Transient
## 10132 E E No Deposit Transient
## 10133 E E No Deposit Transient
## 10134 A A No Deposit Transient
## 10135 A A No Deposit Transient
## 10136 A A No Deposit Transient
## 10137 E E No Deposit Transient
## 10138 E E No Deposit Transient
## 10139 A A No Deposit Transient
## 10140 G G No Deposit Transient
## 10141 D D No Deposit Transient
## 10142 E E No Deposit Transient
## 10143 A A No Deposit Transient
## 10144 D D No Deposit Transient
## 10145 D D No Deposit Transient
## 10146 A A No Deposit Transient
## 10147 A C No Deposit Transient
## 10148 E E No Deposit Transient
## 10149 A A No Deposit Transient
## 10150 D D No Deposit Transient
## 10151 A A No Deposit Transient
## 10152 A C No Deposit Transient
## 10153 A A No Deposit Transient
## 10154 A A No Deposit Transient
## 10155 E E No Deposit Transient
## 10156 A A No Deposit Transient
## 10157 G G No Deposit Transient
## 10158 D D No Deposit Transient-Party
## 10159 A A No Deposit Transient
## 10160 D D No Deposit Transient
## 10161 D D No Deposit Transient-Party
## 10162 A A No Deposit Transient-Party
## 10163 D D No Deposit Transient
## 10164 D D No Deposit Transient
## 10165 A A No Deposit Transient-Party
## 10166 A A No Deposit Transient-Party
## 10167 G G No Deposit Transient
## 10168 D D No Deposit Transient
## 10169 A A No Deposit Transient
## 10170 D D No Deposit Transient
## 10171 D D No Deposit Transient
## 10172 A A No Deposit Transient
## 10173 A A No Deposit Transient
## 10174 A A No Deposit Transient
## 10175 G G No Deposit Transient
## 10176 A A No Deposit Transient
## 10177 A D No Deposit Transient
## 10178 A A No Deposit Transient
## 10179 A A No Deposit Transient
## 10180 A A No Deposit Transient-Party
## 10181 A A No Deposit Transient-Party
## 10182 A C No Deposit Transient-Party
## 10183 A A No Deposit Transient-Party
## 10184 A A No Deposit Transient-Party
## 10185 A A No Deposit Transient-Party
## 10186 A A No Deposit Transient-Party
## 10187 A A No Deposit Transient-Party
## 10188 A A No Deposit Transient-Party
## 10189 A A No Deposit Transient-Party
## 10190 A A No Deposit Transient-Party
## 10191 A A No Deposit Transient-Party
## 10192 A A No Deposit Transient
## 10193 D D No Deposit Transient
## 10194 G G No Deposit Transient
## 10195 G G No Deposit Transient
## 10196 E E No Deposit Transient-Party
## 10197 A C No Deposit Transient
## 10198 A A No Deposit Transient
## 10199 A A No Deposit Transient-Party
## 10200 A A No Deposit Transient
## 10201 A A No Deposit Transient
## 10202 A A No Deposit Transient
## 10203 A A No Deposit Transient
## 10204 A A No Deposit Transient
## 10205 A A No Deposit Transient
## 10206 A A No Deposit Transient-Party
## 10207 A A No Deposit Transient
## 10208 A A No Deposit Transient
## 10209 A A No Deposit Transient
## 10210 E E No Deposit Transient
## 10211 D D No Deposit Transient
## 10212 E E No Deposit Transient
## 10213 A A No Deposit Transient
## 10214 A A No Deposit Transient
## 10215 A A No Deposit Transient
## 10216 A A No Deposit Transient
## 10217 E E No Deposit Transient
## 10218 E E No Deposit Transient
## 10219 A A No Deposit Transient
## 10220 D D No Deposit Transient
## 10221 A A No Deposit Transient
## 10222 A D No Deposit Transient-Party
## 10223 A D No Deposit Transient-Party
## 10224 A A No Deposit Transient-Party
## 10225 A A No Deposit Transient-Party
## 10226 A A No Deposit Transient-Party
## 10227 A A No Deposit Transient
## 10228 D D No Deposit Transient
## 10229 A A No Deposit Transient
## 10230 F F No Deposit Transient
## 10231 A A No Deposit Transient
## 10232 A A No Deposit Transient-Party
## 10233 A A No Deposit Transient-Party
## 10234 A C No Deposit Transient-Party
## 10235 A A No Deposit Transient-Party
## 10236 A A No Deposit Transient-Party
## 10237 A A No Deposit Transient-Party
## 10238 A A No Deposit Transient-Party
## 10239 A A No Deposit Transient-Party
## 10240 A A No Deposit Transient-Party
## 10241 A A No Deposit Transient-Party
## 10242 A A No Deposit Transient-Party
## 10243 A C No Deposit Transient-Party
## 10244 A A No Deposit Transient-Party
## 10245 A A No Deposit Transient-Party
## 10246 A A No Deposit Transient-Party
## 10247 A A No Deposit Transient-Party
## 10248 A A No Deposit Transient-Party
## 10249 A A No Deposit Transient
## 10250 E E No Deposit Transient
## 10251 A A No Deposit Transient
## 10252 A A No Deposit Transient
## 10253 A D No Deposit Transient-Party
## 10254 A D No Deposit Transient-Party
## 10255 H H No Deposit Transient
## 10256 A C No Deposit Transient-Party
## 10257 A D No Deposit Transient-Party
## 10258 A D No Deposit Transient-Party
## 10259 A D No Deposit Transient-Party
## 10260 A D No Deposit Transient-Party
## 10261 A D No Deposit Transient-Party
## 10262 A D No Deposit Transient-Party
## 10263 A D No Deposit Transient-Party
## 10264 E E No Deposit Transient
## 10265 A C No Deposit Transient-Party
## 10266 A D No Deposit Transient-Party
## 10267 A D No Deposit Transient-Party
## 10268 A A No Deposit Transient
## 10269 A A No Deposit Transient
## 10270 A A No Deposit Transient-Party
## 10271 A A No Deposit Transient
## 10272 E F No Deposit Transient
## 10273 A F No Deposit Transient
## 10274 A A No Deposit Transient
## 10275 F F No Deposit Transient
## 10276 A A No Deposit Transient
## 10277 G G No Deposit Transient
## 10278 G G No Deposit Transient
## 10279 A A No Deposit Transient
## 10280 A A No Deposit Transient
## 10281 A A No Deposit Transient
## 10282 A A No Deposit Transient
## 10283 A A No Deposit Transient
## 10284 A A No Deposit Transient
## 10285 D D No Deposit Transient
## 10286 A A No Deposit Transient
## 10287 G G No Deposit Transient
## 10288 E E No Deposit Transient
## 10289 D D No Deposit Transient
## 10290 A A No Deposit Transient
## 10291 E E No Deposit Transient
## 10292 E E No Deposit Transient
## 10293 E E No Deposit Transient
## 10294 C C No Deposit Transient
## 10295 D D No Deposit Transient
## 10296 C C No Deposit Transient
## 10297 C C No Deposit Transient
## 10298 E E No Deposit Transient
## 10299 A A No Deposit Transient
## 10300 D D No Deposit Transient
## 10301 A A No Deposit Transient
## 10302 A A No Deposit Transient
## 10303 A A No Deposit Transient
## 10304 A A No Deposit Transient
## 10305 A A No Deposit Transient
## 10306 A A No Deposit Transient
## 10307 A A No Deposit Transient
## 10308 A A No Deposit Transient
## 10309 A A No Deposit Transient
## 10310 A A No Deposit Transient
## 10311 D D No Deposit Transient
## 10312 D D No Deposit Transient
## 10313 E E No Deposit Transient
## 10314 A A No Deposit Transient
## 10315 A A No Deposit Transient
## 10316 A A No Deposit Transient
## 10317 A A No Deposit Transient
## 10318 D D No Deposit Transient-Party
## 10319 A A No Deposit Transient
## 10320 F F No Deposit Transient
## 10321 E E No Deposit Transient
## 10322 D D No Deposit Transient
## 10323 A A No Deposit Transient
## 10324 A A No Deposit Transient
## 10325 E E No Deposit Transient
## 10326 A A No Deposit Transient
## 10327 C C No Deposit Transient
## 10328 A A No Deposit Transient
## 10329 A A No Deposit Transient
## 10330 F F No Deposit Transient
## 10331 A A No Deposit Transient
## 10332 A A No Deposit Transient
## 10333 D D No Deposit Transient
## 10334 E E No Deposit Transient
## 10335 A A Non Refund Transient
## 10336 A A Non Refund Transient
## 10337 A A Non Refund Transient
## 10338 A A Non Refund Transient
## 10339 A C Non Refund Transient
## 10340 A C Non Refund Transient
## 10341 A A Non Refund Transient
## 10342 A A Non Refund Transient
## 10343 A A Non Refund Transient
## 10344 A A Non Refund Transient
## 10345 A A Non Refund Transient
## 10346 A C Non Refund Transient
## 10347 A C Non Refund Transient
## 10348 D D No Deposit Transient
## 10349 A A Non Refund Transient
## 10350 A A Non Refund Transient
## 10351 A A Non Refund Transient
## 10352 A A Non Refund Transient
## 10353 A C Non Refund Transient
## 10354 A A Non Refund Transient
## 10355 A A Non Refund Transient
## 10356 A A Non Refund Transient
## 10357 A A Non Refund Transient
## 10358 A C Non Refund Transient
## 10359 A A Non Refund Transient
## 10360 A A Non Refund Transient
## 10361 E E No Deposit Transient
## 10362 G G No Deposit Transient
## 10363 A A No Deposit Transient-Party
## 10364 A A No Deposit Transient-Party
## 10365 A A No Deposit Transient-Party
## 10366 A A No Deposit Transient-Party
## 10367 A A No Deposit Transient-Party
## 10368 A A No Deposit Transient-Party
## 10369 A A No Deposit Transient-Party
## 10370 A A No Deposit Transient-Party
## 10371 A A No Deposit Transient
## 10372 A A No Deposit Transient
## 10373 A A No Deposit Transient-Party
## 10374 A A No Deposit Transient-Party
## 10375 A A No Deposit Transient-Party
## 10376 A A No Deposit Transient-Party
## 10377 A A No Deposit Transient-Party
## 10378 A A No Deposit Transient-Party
## 10379 A A No Deposit Transient-Party
## 10380 A A No Deposit Transient-Party
## 10381 A A No Deposit Transient-Party
## 10382 A A No Deposit Transient-Party
## 10383 A A No Deposit Transient-Party
## 10384 A A No Deposit Transient-Party
## 10385 A A No Deposit Transient-Party
## 10386 G G No Deposit Transient
## 10387 E E No Deposit Transient
## 10388 A C No Deposit Transient-Party
## 10389 E E No Deposit Transient
## 10390 D D No Deposit Transient-Party
## 10391 A D No Deposit Transient-Party
## 10392 A A No Deposit Transient-Party
## 10393 D D No Deposit Transient-Party
## 10394 D D No Deposit Transient-Party
## 10395 E E No Deposit Transient
## 10396 A A No Deposit Transient
## 10397 E E No Deposit Transient
## 10398 D D No Deposit Transient
## 10399 D D No Deposit Transient
## 10400 D D No Deposit Transient
## 10401 E E No Deposit Transient
## 10402 A A No Deposit Transient
## 10403 A A No Deposit Transient
## 10404 A A No Deposit Transient
## 10405 A A No Deposit Transient
## 10406 D D No Deposit Transient
## 10407 A A No Deposit Transient
## 10408 A A No Deposit Transient
## 10409 A A No Deposit Transient-Party
## 10410 A A No Deposit Transient-Party
## 10411 E E No Deposit Transient-Party
## 10412 A A No Deposit Transient-Party
## 10413 A A No Deposit Transient-Party
## 10414 A A No Deposit Transient-Party
## 10415 A A No Deposit Transient-Party
## 10416 E E No Deposit Transient-Party
## 10417 A A No Deposit Transient
## 10418 A A No Deposit Transient-Party
## 10419 A A No Deposit Transient-Party
## 10420 A A No Deposit Transient-Party
## 10421 A A No Deposit Transient-Party
## 10422 A A No Deposit Transient-Party
## 10423 A A No Deposit Transient-Party
## 10424 A A No Deposit Transient-Party
## 10425 A A No Deposit Transient-Party
## 10426 A A No Deposit Transient-Party
## 10427 A A No Deposit Transient-Party
## 10428 A A No Deposit Transient-Party
## 10429 E E No Deposit Transient-Party
## 10430 A A No Deposit Transient-Party
## 10431 A A No Deposit Transient-Party
## 10432 A A No Deposit Transient
## 10433 A A No Deposit Transient
## 10434 A A No Deposit Transient
## 10435 A A No Deposit Transient
## 10436 A A No Deposit Transient
## 10437 A A No Deposit Transient
## 10438 A A No Deposit Transient
## 10439 G G No Deposit Transient
## 10440 A A No Deposit Transient-Party
## 10441 G G No Deposit Transient
## 10442 A D No Deposit Transient
## 10443 G G No Deposit Transient
## 10444 D D No Deposit Transient
## 10445 A A No Deposit Transient
## 10446 A A No Deposit Transient
## 10447 D D No Deposit Transient
## 10448 E E No Deposit Transient-Party
## 10449 A A No Deposit Transient
## 10450 A A Non Refund Transient
## 10451 A A Non Refund Transient
## 10452 A A Non Refund Transient
## 10453 A A Non Refund Transient
## 10454 A A No Deposit Transient
## 10455 A A No Deposit Transient
## 10456 A A Non Refund Transient
## 10457 A A Non Refund Transient
## 10458 A A Non Refund Transient
## 10459 D D No Deposit Transient
## 10460 A A Non Refund Transient
## 10461 A A Non Refund Transient
## 10462 A A Non Refund Transient
## 10463 A A Non Refund Transient
## 10464 A A Non Refund Transient
## 10465 A A Non Refund Transient
## 10466 A A Non Refund Transient
## 10467 A A Non Refund Transient
## 10468 A A Non Refund Transient
## 10469 A A No Deposit Transient
## 10470 A A No Deposit Transient
## 10471 A A No Deposit Transient
## 10472 D D No Deposit Transient
## 10473 A A Non Refund Transient
## 10474 A A Non Refund Transient
## 10475 A A Non Refund Transient
## 10476 A A Non Refund Transient
## 10477 A A Non Refund Transient
## 10478 A A Non Refund Transient
## 10479 A A No Deposit Transient
## 10480 A A Non Refund Transient
## 10481 A A Non Refund Transient
## 10482 A A Non Refund Transient
## 10483 A A Non Refund Transient
## 10484 A A Non Refund Transient
## 10485 A A Non Refund Transient
## 10486 G G No Deposit Transient
## 10487 F F No Deposit Transient
## 10488 G G No Deposit Transient
## 10489 F F No Deposit Transient
## 10490 G G No Deposit Transient
## 10491 F F No Deposit Transient
## 10492 A A No Deposit Transient
## 10493 A C No Deposit Transient
## 10494 A A No Deposit Transient
## 10495 A A No Deposit Transient
## 10496 F G No Deposit Transient
## 10497 C C No Deposit Transient
## 10498 G G No Deposit Transient
## 10499 G G No Deposit Transient
## 10500 A C No Deposit Transient
## 10501 E E No Deposit Transient
## 10502 A C No Deposit Transient
## 10503 A A No Deposit Transient
## 10504 A A No Deposit Transient-Party
## 10505 D D No Deposit Transient-Party
## 10506 D D No Deposit Transient
## 10507 A C No Deposit Transient-Party
## 10508 H H No Deposit Transient
## 10509 D D No Deposit Transient-Party
## 10510 D D No Deposit Transient-Party
## 10511 D D No Deposit Transient-Party
## 10512 D D No Deposit Transient-Party
## 10513 D D No Deposit Transient-Party
## 10514 D D No Deposit Transient-Party
## 10515 D D No Deposit Transient-Party
## 10516 A A No Deposit Transient-Party
## 10517 D D No Deposit Transient-Party
## 10518 D D No Deposit Transient-Party
## 10519 G G No Deposit Transient
## 10520 D D No Deposit Transient-Party
## 10521 F F No Deposit Transient
## 10522 D D No Deposit Transient-Party
## 10523 D D No Deposit Transient-Party
## 10524 D D No Deposit Transient-Party
## 10525 D D No Deposit Transient-Party
## 10526 E E No Deposit Transient
## 10527 A A No Deposit Transient
## 10528 A D No Deposit Transient-Party
## 10529 D D No Deposit Transient
## 10530 G G No Deposit Transient
## 10531 A A No Deposit Transient-Party
## 10532 A A No Deposit Transient-Party
## 10533 A A No Deposit Transient-Party
## 10534 A A No Deposit Transient-Party
## 10535 A A No Deposit Transient
## 10536 A A No Deposit Transient-Party
## 10537 A A No Deposit Transient-Party
## 10538 A A No Deposit Transient-Party
## 10539 A A No Deposit Transient-Party
## 10540 G G No Deposit Transient
## 10541 C C No Deposit Transient
## 10542 D D No Deposit Transient
## 10543 A A No Deposit Transient
## 10544 A C No Deposit Transient
## 10545 G G No Deposit Transient
## 10546 A A No Deposit Transient-Party
## 10547 A A No Deposit Transient
## 10548 E E No Deposit Transient-Party
## 10549 E E No Deposit Transient-Party
## 10550 E E No Deposit Transient-Party
## 10551 E E No Deposit Transient-Party
## 10552 E E No Deposit Transient-Party
## 10553 A A No Deposit Transient
## 10554 A A No Deposit Transient
## 10555 E E No Deposit Transient-Party
## 10556 D D No Deposit Transient
## 10557 F F No Deposit Transient
## 10558 A A No Deposit Transient
## 10559 A C No Deposit Transient-Party
## 10560 A A No Deposit Transient-Party
## 10561 A A No Deposit Transient-Party
## 10562 A A No Deposit Transient-Party
## 10563 A A No Deposit Transient-Party
## 10564 A C No Deposit Transient-Party
## 10565 A C No Deposit Transient-Party
## 10566 A C No Deposit Transient-Party
## 10567 A C No Deposit Transient-Party
## 10568 A C No Deposit Transient-Party
## 10569 A C No Deposit Transient-Party
## 10570 A C No Deposit Transient-Party
## 10571 A A No Deposit Transient-Party
## 10572 A C No Deposit Transient-Party
## 10573 A C No Deposit Transient-Party
## 10574 A C No Deposit Transient-Party
## 10575 A A No Deposit Transient-Party
## 10576 A A No Deposit Transient
## 10577 E E No Deposit Transient
## 10578 A A No Deposit Transient-Party
## 10579 A A No Deposit Transient-Party
## 10580 A A No Deposit Transient-Party
## 10581 A A No Deposit Transient-Party
## 10582 A A No Deposit Transient-Party
## 10583 E E No Deposit Transient
## 10584 A A No Deposit Transient
## 10585 D D No Deposit Transient
## 10586 E F No Deposit Transient
## 10587 E E No Deposit Transient
## 10588 A A No Deposit Transient
## 10589 G G No Deposit Transient
## 10590 A A No Deposit Transient
## 10591 D D No Deposit Transient
## 10592 D D No Deposit Transient
## 10593 D D No Deposit Transient
## 10594 G G No Deposit Transient
## 10595 D D No Deposit Transient
## 10596 G G No Deposit Transient
## 10597 G G No Deposit Transient
## 10598 A A No Deposit Transient
## 10599 A A No Deposit Transient
## 10600 D D No Deposit Transient
## 10601 D D No Deposit Transient
## 10602 A C No Deposit Transient
## 10603 D D No Deposit Transient
## 10604 A C No Deposit Transient
## 10605 A A No Deposit Transient
## 10606 A C No Deposit Transient
## 10607 A A No Deposit Transient
## 10608 D D No Deposit Transient
## 10609 E E No Deposit Transient
## 10610 D D No Deposit Transient
## 10611 A A No Deposit Transient
## 10612 A A No Deposit Transient
## 10613 A A No Deposit Transient
## 10614 A C No Deposit Transient-Party
## 10615 A A No Deposit Transient-Party
## 10616 D D No Deposit Transient
## 10617 A D No Deposit Transient-Party
## 10618 D D No Deposit Transient
## 10619 A A No Deposit Transient
## 10620 D D No Deposit Transient
## 10621 D D No Deposit Transient
## 10622 A A Non Refund Transient
## 10623 E E No Deposit Transient
## 10624 A A Non Refund Transient
## 10625 A A Non Refund Transient
## 10626 A A Non Refund Transient
## 10627 A A Non Refund Transient
## 10628 A A Non Refund Transient
## 10629 A A Non Refund Transient
## 10630 A A Non Refund Transient
## 10631 A A Non Refund Transient
## 10632 A A Non Refund Transient
## 10633 A A Non Refund Transient
## 10634 A A Non Refund Transient
## 10635 H H No Deposit Transient
## 10636 A A Non Refund Transient
## 10637 A A Non Refund Transient
## 10638 A A Non Refund Transient
## 10639 A A Non Refund Transient
## 10640 A A No Deposit Transient-Party
## 10641 D D No Deposit Transient-Party
## 10642 A A No Deposit Transient-Party
## 10643 A A No Deposit Transient-Party
## 10644 D D No Deposit Transient-Party
## 10645 A A No Deposit Transient-Party
## 10646 A A No Deposit Transient-Party
## 10647 E E No Deposit Transient
## 10648 E E No Deposit Transient
## 10649 A A No Deposit Transient
## 10650 A A No Deposit Transient
## 10651 A A No Deposit Transient
## 10652 D D No Deposit Transient
## 10653 A A No Deposit Transient
## 10654 A A No Deposit Transient
## 10655 A A No Deposit Transient
## 10656 A A Non Refund Transient
## 10657 A A Non Refund Transient
## 10658 A A Non Refund Transient
## 10659 A A Non Refund Transient
## 10660 A A Non Refund Transient
## 10661 G G No Deposit Transient
## 10662 E E No Deposit Transient
## 10663 A A No Deposit Transient
## 10664 D D Non Refund Transient
## 10665 D D Non Refund Transient
## 10666 D D Non Refund Transient
## 10667 E E Non Refund Transient
## 10668 E E Non Refund Transient
## 10669 E E Non Refund Transient
## 10670 A A Non Refund Transient
## 10671 D D Non Refund Transient
## 10672 D D Non Refund Transient
## 10673 E E Non Refund Transient
## 10674 E E Non Refund Transient
## 10675 E E Non Refund Transient
## 10676 D D Non Refund Transient
## 10677 D D Non Refund Transient
## 10678 E E Non Refund Transient
## 10679 E E Non Refund Transient
## 10680 E E Non Refund Transient
## 10681 A A Non Refund Transient
## 10682 D D Non Refund Transient
## 10683 D D Non Refund Transient
## 10684 D D Non Refund Transient
## 10685 E E Non Refund Transient
## 10686 E E Non Refund Transient
## 10687 D D Non Refund Transient
## 10688 D D Non Refund Transient
## 10689 E E Non Refund Transient
## 10690 E E Non Refund Transient
## 10691 E E Non Refund Transient
## 10692 D D Non Refund Transient
## 10693 D D Non Refund Transient
## 10694 E E Non Refund Transient
## 10695 E E Non Refund Transient
## 10696 A A Non Refund Transient
## 10697 A A Non Refund Transient
## 10698 D D Non Refund Transient
## 10699 D D Non Refund Transient
## 10700 D D Non Refund Transient
## 10701 E E Non Refund Transient
## 10702 E E Non Refund Transient
## 10703 D D Non Refund Transient
## 10704 D D Non Refund Transient
## 10705 D D Non Refund Transient
## 10706 E E Non Refund Transient
## 10707 E E Non Refund Transient
## 10708 E E Non Refund Transient
## 10709 A A No Deposit Transient
## 10710 D D No Deposit Transient
## 10711 D D No Deposit Transient
## 10712 A A No Deposit Transient
## 10713 A A No Deposit Transient
## 10714 D D No Deposit Transient
## 10715 A A No Deposit Transient
## 10716 A A No Deposit Transient
## 10717 E E No Deposit Transient
## 10718 A A No Deposit Transient
## 10719 A A No Deposit Transient
## 10720 A A No Deposit Transient
## 10721 A A No Deposit Transient
## 10722 A A No Deposit Transient
## 10723 E E No Deposit Transient
## 10724 A A No Deposit Transient
## 10725 A A No Deposit Transient
## 10726 D D No Deposit Transient
## 10727 A A No Deposit Transient
## 10728 A D No Deposit Transient
## 10729 A A No Deposit Transient
## 10730 A A No Deposit Transient
## 10731 A A No Deposit Transient
## 10732 F F No Deposit Transient
## 10733 A A No Deposit Transient
## 10734 D D No Deposit Transient
## 10735 D D No Deposit Transient
## 10736 A A No Deposit Transient
## 10737 C C No Deposit Transient
## 10738 A A No Deposit Transient
## 10739 A A No Deposit Transient-Party
## 10740 A A No Deposit Transient-Party
## 10741 A D No Deposit Transient
## 10742 C C No Deposit Transient
## 10743 A A No Deposit Transient
## 10744 A A No Deposit Transient
## 10745 A A No Deposit Transient
## 10746 A A No Deposit Transient
## 10747 A A No Deposit Transient
## 10748 A A No Deposit Transient
## 10749 D D No Deposit Transient
## 10750 D D No Deposit Transient
## 10751 D D No Deposit Transient
## 10752 E E No Deposit Transient
## 10753 A A No Deposit Transient
## 10754 H H No Deposit Transient
## 10755 A A No Deposit Transient
## 10756 D D No Deposit Transient
## 10757 G G No Deposit Transient
## 10758 A A No Deposit Transient
## 10759 A A No Deposit Transient
## 10760 A A No Deposit Transient
## 10761 A A No Deposit Transient
## 10762 E E No Deposit Transient
## 10763 D D No Deposit Transient
## 10764 A A No Deposit Transient
## 10765 E E No Deposit Transient
## 10766 A A No Deposit Transient
## 10767 G G No Deposit Transient
## 10768 D D No Deposit Transient
## 10769 D D No Deposit Transient
## 10770 A A No Deposit Transient
## 10771 A D Non Refund Transient
## 10772 A A Non Refund Transient
## 10773 A A Non Refund Transient
## 10774 A D Non Refund Transient
## 10775 A D Non Refund Transient
## 10776 A A Non Refund Transient
## 10777 A D Non Refund Transient
## 10778 A D Non Refund Transient
## 10779 A D Non Refund Transient
## 10780 A D Non Refund Transient
## 10781 A D Non Refund Transient
## 10782 A D Non Refund Transient
## 10783 A D Non Refund Transient
## 10784 A A No Deposit Transient
## 10785 D D No Deposit Transient
## 10786 A A No Deposit Transient
## 10787 E E No Deposit Transient
## 10788 D D No Deposit Transient
## 10789 A A No Deposit Transient
## 10790 D D No Deposit Transient
## 10791 D D No Deposit Transient
## 10792 D D No Deposit Transient
## 10793 D D No Deposit Transient
## 10794 A A No Deposit Transient
## 10795 E E No Deposit Transient
## 10796 D D No Deposit Transient
## 10797 A A No Deposit Transient-Party
## 10798 D D No Deposit Transient
## 10799 E E No Deposit Transient
## 10800 A E No Deposit Transient
## 10801 G G No Deposit Transient
## 10802 A A No Deposit Transient
## 10803 D E No Deposit Transient-Party
## 10804 D D No Deposit Transient
## 10805 A A No Deposit Transient
## 10806 E E No Deposit Transient
## 10807 E E No Deposit Transient
## 10808 D E No Deposit Transient-Party
## 10809 C C No Deposit Transient-Party
## 10810 E E No Deposit Transient
## 10811 E E No Deposit Transient
## 10812 A A No Deposit Transient
## 10813 A A No Deposit Transient
## 10814 A A No Deposit Transient
## 10815 F F No Deposit Transient
## 10816 A A No Deposit Transient
## 10817 A A No Deposit Transient
## 10818 E E No Deposit Transient
## 10819 A A No Deposit Transient
## 10820 A A No Deposit Transient
## 10821 A C No Deposit Transient
## 10822 A A No Deposit Transient
## 10823 A A No Deposit Transient
## 10824 H H No Deposit Transient
## 10825 G G No Deposit Transient
## 10826 E E No Deposit Transient
## 10827 E E No Deposit Transient
## 10828 E E No Deposit Transient
## 10829 E E No Deposit Transient
## 10830 G G No Deposit Transient
## 10831 G G No Deposit Transient
## 10832 E E No Deposit Transient
## 10833 G G No Deposit Transient
## 10834 D D No Deposit Transient
## 10835 E F No Deposit Transient
## 10836 E E No Deposit Transient
## 10837 D D No Deposit Transient-Party
## 10838 H H No Deposit Transient
## 10839 H H No Deposit Transient
## 10840 E E No Deposit Transient
## 10841 E E No Deposit Transient
## 10842 E E No Deposit Transient
## 10843 G G No Deposit Transient
## 10844 H H No Deposit Transient
## 10845 E E No Deposit Transient
## 10846 A A No Deposit Transient-Party
## 10847 D D No Deposit Transient-Party
## 10848 G G No Deposit Transient
## 10849 A A No Deposit Transient
## 10850 G G No Deposit Transient
## 10851 G G No Deposit Transient
## 10852 A A No Deposit Transient-Party
## 10853 A A No Deposit Transient-Party
## 10854 D D No Deposit Transient-Party
## 10855 A A No Deposit Transient-Party
## 10856 G G No Deposit Transient
## 10857 A A No Deposit Transient-Party
## 10858 D D No Deposit Transient-Party
## 10859 D D No Deposit Transient-Party
## 10860 D D No Deposit Transient-Party
## 10861 H H No Deposit Transient
## 10862 D D No Deposit Transient-Party
## 10863 G G No Deposit Transient
## 10864 A A No Deposit Transient
## 10865 A A No Deposit Transient
## 10866 A A No Deposit Transient
## 10867 D D No Deposit Transient-Party
## 10868 D E No Deposit Transient
## 10869 A F Non Refund Transient
## 10870 C C No Deposit Transient
## 10871 A F Non Refund Transient
## 10872 A A No Deposit Transient
## 10873 F F No Deposit Transient
## 10874 A A No Deposit Transient
## 10875 A F Non Refund Transient
## 10876 A F Non Refund Transient
## 10877 D D No Deposit Transient
## 10878 G G No Deposit Transient
## 10879 A A Non Refund Transient
## 10880 A A Non Refund Transient
## 10881 A C Non Refund Transient
## 10882 E E Non Refund Transient
## 10883 A A Non Refund Transient
## 10884 A A Non Refund Transient
## 10885 A A Non Refund Transient
## 10886 A A Non Refund Transient
## 10887 A A Non Refund Transient
## 10888 A C Non Refund Transient
## 10889 A C Non Refund Transient
## 10890 A A Non Refund Transient
## 10891 A A Non Refund Transient
## 10892 G G No Deposit Transient
## 10893 H H Non Refund Transient
## 10894 A A Non Refund Transient
## 10895 A C Non Refund Transient
## 10896 A A Non Refund Transient
## 10897 A A Non Refund Transient
## 10898 A A Non Refund Transient
## 10899 A A Non Refund Transient
## 10900 A A Non Refund Transient
## 10901 A C Non Refund Transient
## 10902 A C Non Refund Transient
## 10903 A C Non Refund Transient
## 10904 A A Non Refund Transient
## 10905 A A Non Refund Transient
## 10906 A A Non Refund Transient
## 10907 A C Non Refund Transient
## 10908 D D No Deposit Transient
## 10909 E E No Deposit Transient
## 10910 E E No Deposit Transient
## 10911 G G No Deposit Transient
## 10912 A A No Deposit Transient
## 10913 C C No Deposit Transient
## 10914 A A No Deposit Transient
## 10915 A A No Deposit Transient
## 10916 A A No Deposit Transient
## 10917 D D No Deposit Transient
## 10918 E E No Deposit Transient
## 10919 D D No Deposit Transient
## 10920 G G No Deposit Transient
## 10921 C C No Deposit Transient
## 10922 A A No Deposit Transient
## 10923 E E No Deposit Transient
## 10924 D D No Deposit Transient
## 10925 D D No Deposit Transient
## 10926 E E No Deposit Transient
## 10927 D D No Deposit Transient
## 10928 A F Non Refund Transient
## 10929 A A No Deposit Transient
## 10930 H H No Deposit Transient
## 10931 A A No Deposit Transient
## 10932 A A No Deposit Transient
## 10933 A A No Deposit Transient
## 10934 A A No Deposit Transient
## 10935 A A No Deposit Transient
## 10936 D D No Deposit Transient
## 10937 E E No Deposit Transient
## 10938 E E Refundable Transient
## 10939 E E No Deposit Transient
## 10940 D D No Deposit Transient
## 10941 A A No Deposit Transient
## 10942 A A No Deposit Transient
## 10943 D D No Deposit Transient
## 10944 A A No Deposit Transient
## 10945 A A No Deposit Transient
## 10946 A A No Deposit Transient
## 10947 A A No Deposit Transient
## 10948 E E No Deposit Transient
## 10949 D D No Deposit Transient
## 10950 A A No Deposit Transient
## 10951 G G No Deposit Transient
## 10952 A A No Deposit Transient
## 10953 G G No Deposit Transient
## 10954 A A No Deposit Transient
## 10955 E E No Deposit Transient
## 10956 D D No Deposit Transient
## 10957 D D No Deposit Transient-Party
## 10958 A A No Deposit Transient
## 10959 A A No Deposit Transient
## 10960 C C No Deposit Transient
## 10961 D D No Deposit Transient
## 10962 E E No Deposit Transient
## 10963 F F No Deposit Transient
## 10964 D D No Deposit Transient-Party
## 10965 D D No Deposit Transient
## 10966 E E No Deposit Transient
## 10967 H H No Deposit Transient
## 10968 A A No Deposit Transient
## 10969 A A No Deposit Transient
## 10970 C C No Deposit Transient
## 10971 E E No Deposit Transient
## 10972 E E No Deposit Transient
## 10973 D D No Deposit Transient
## 10974 D D No Deposit Transient-Party
## 10975 E E No Deposit Transient
## 10976 G G No Deposit Transient-Party
## 10977 A A No Deposit Transient
## 10978 E E No Deposit Transient
## 10979 D D No Deposit Transient
## 10980 A A No Deposit Transient
## 10981 A A No Deposit Transient
## 10982 A A No Deposit Transient
## 10983 A A No Deposit Transient
## 10984 G G No Deposit Transient
## 10985 D D No Deposit Transient
## 10986 E E No Deposit Transient-Party
## 10987 E E No Deposit Transient-Party
## 10988 G G No Deposit Transient
## 10989 E E No Deposit Transient-Party
## 10990 D D No Deposit Transient-Party
## 10991 A A No Deposit Transient
## 10992 D D No Deposit Transient-Party
## 10993 A A No Deposit Transient
## 10994 A A No Deposit Transient
## 10995 A A No Deposit Transient
## 10996 A A No Deposit Transient
## 10997 A A No Deposit Transient-Party
## 10998 G G No Deposit Transient
## 10999 A A No Deposit Transient
## 11000 E E No Deposit Transient
## 11001 A A No Deposit Transient
## 11002 D D No Deposit Transient
## 11003 A A No Deposit Transient
## 11004 A A No Deposit Transient
## 11005 A A No Deposit Transient
## 11006 D D No Deposit Transient
## 11007 E E No Deposit Transient
## 11008 A A No Deposit Transient
## 11009 A A No Deposit Transient
## 11010 D D No Deposit Transient
## 11011 E E No Deposit Transient
## 11012 G G No Deposit Transient
## 11013 E E No Deposit Transient
## 11014 A A No Deposit Transient
## 11015 A A No Deposit Transient
## 11016 A A No Deposit Transient
## 11017 E E No Deposit Transient
## 11018 E E No Deposit Transient
## 11019 H H No Deposit Transient
## 11020 E E No Deposit Transient
## 11021 A A No Deposit Transient
## 11022 A A No Deposit Transient
## 11023 A A No Deposit Transient
## 11024 A A No Deposit Transient
## 11025 A A No Deposit Transient
## 11026 A A No Deposit Transient
## 11027 D D No Deposit Transient
## 11028 A D No Deposit Transient
## 11029 A A No Deposit Transient
## 11030 A A No Deposit Transient
## 11031 A A No Deposit Transient
## 11032 A A No Deposit Transient
## 11033 A A No Deposit Transient
## 11034 A A No Deposit Transient
## 11035 A A No Deposit Transient
## 11036 A A No Deposit Transient
## 11037 A A No Deposit Transient
## 11038 G G No Deposit Transient
## 11039 E E No Deposit Transient
## 11040 D D No Deposit Transient
## 11041 A A No Deposit Transient
## 11042 A A No Deposit Transient
## 11043 D D No Deposit Transient
## 11044 A A No Deposit Transient
## 11045 E E No Deposit Transient
## 11046 A A No Deposit Transient
## 11047 A A No Deposit Transient
## 11048 H H No Deposit Transient
## 11049 C C Refundable Transient
## 11050 D D No Deposit Transient
## 11051 D D No Deposit Transient
## 11052 H H No Deposit Transient
## 11053 E E No Deposit Transient
## 11054 D D No Deposit Transient
## 11055 E E No Deposit Transient
## 11056 A A No Deposit Transient
## 11057 A C No Deposit Transient-Party
## 11058 E E No Deposit Transient
## 11059 A A No Deposit Transient
## 11060 A A No Deposit Transient
## 11061 A A No Deposit Transient-Party
## 11062 E E No Deposit Transient
## 11063 A A No Deposit Transient
## 11064 A C No Deposit Transient-Party
## 11065 D D No Deposit Transient
## 11066 G G No Deposit Transient
## 11067 A C No Deposit Transient-Party
## 11068 A A No Deposit Transient-Party
## 11069 G G No Deposit Transient
## 11070 A A No Deposit Transient
## 11071 A A No Deposit Transient
## 11072 A A No Deposit Transient
## 11073 E E No Deposit Transient
## 11074 A A No Deposit Transient
## 11075 D D No Deposit Transient
## 11076 A A No Deposit Transient
## 11077 A A No Deposit Transient
## 11078 A A No Deposit Transient
## 11079 D D No Deposit Transient
## 11080 D D No Deposit Transient
## 11081 A A No Deposit Transient
## 11082 D D No Deposit Transient
## 11083 A A No Deposit Transient
## 11084 D D No Deposit Transient
## 11085 D D No Deposit Transient
## 11086 D D No Deposit Transient
## 11087 D D No Deposit Transient
## 11088 D D No Deposit Transient
## 11089 G G No Deposit Transient
## 11090 E E No Deposit Transient
## 11091 A A No Deposit Transient
## 11092 D D No Deposit Transient
## 11093 A A No Deposit Transient
## 11094 D D No Deposit Transient
## 11095 H H No Deposit Transient
## 11096 D D No Deposit Transient
## 11097 E E No Deposit Transient
## 11098 E E No Deposit Transient
## 11099 E E No Deposit Transient
## 11100 E E No Deposit Transient
## 11101 E E No Deposit Transient
## 11102 E E No Deposit Transient
## 11103 A A No Deposit Transient
## 11104 E E No Deposit Transient
## 11105 D D No Deposit Transient
## 11106 A A No Deposit Transient
## 11107 E E No Deposit Transient
## 11108 E E No Deposit Transient
## 11109 A D No Deposit Transient-Party
## 11110 A D No Deposit Transient-Party
## 11111 A A No Deposit Transient
## 11112 A A No Deposit Transient-Party
## 11113 D D No Deposit Transient
## 11114 E E No Deposit Transient
## 11115 D D No Deposit Transient
## 11116 A D No Deposit Transient
## 11117 A D No Deposit Transient
## 11118 A A No Deposit Transient
## 11119 A A No Deposit Transient
## 11120 G G No Deposit Transient
## 11121 A A No Deposit Transient
## 11122 E E No Deposit Transient
## 11123 A A No Deposit Transient
## 11124 A A No Deposit Transient
## 11125 A A No Deposit Transient
## 11126 E E No Deposit Transient
## 11127 A A No Deposit Transient
## 11128 E E No Deposit Transient
## 11129 A A No Deposit Transient
## 11130 E E No Deposit Transient
## 11131 A A No Deposit Contract
## 11132 D D No Deposit Transient-Party
## 11133 C C No Deposit Transient-Party
## 11134 A A No Deposit Contract
## 11135 C C No Deposit Transient-Party
## 11136 C C No Deposit Transient-Party
## 11137 G G No Deposit Transient
## 11138 C C No Deposit Transient-Party
## 11139 D D No Deposit Transient
## 11140 D D No Deposit Transient-Party
## 11141 E E No Deposit Transient
## 11142 C C No Deposit Transient-Party
## 11143 C C No Deposit Transient-Party
## 11144 D D No Deposit Transient
## 11145 C C No Deposit Transient-Party
## 11146 C C No Deposit Transient-Party
## 11147 A A No Deposit Transient-Party
## 11148 A A No Deposit Transient
## 11149 C C No Deposit Transient-Party
## 11150 A A No Deposit Contract
## 11151 D D No Deposit Transient-Party
## 11152 A E No Deposit Transient-Party
## 11153 A A No Deposit Transient
## 11154 D D No Deposit Transient-Party
## 11155 D I No Deposit Transient-Party
## 11156 A A No Deposit Transient-Party
## 11157 A A No Deposit Contract
## 11158 A C No Deposit Transient
## 11159 A A No Deposit Transient
## 11160 A A No Deposit Transient
## 11161 A E No Deposit Transient
## 11162 A A No Deposit Transient
## 11163 E E No Deposit Transient
## 11164 A A No Deposit Transient-Party
## 11165 A A No Deposit Transient-Party
## 11166 A A No Deposit Transient-Party
## 11167 A A No Deposit Transient-Party
## 11168 A A No Deposit Transient-Party
## 11169 A A No Deposit Transient-Party
## 11170 A A No Deposit Transient-Party
## 11171 E E No Deposit Transient
## 11172 G G No Deposit Transient
## 11173 G G No Deposit Transient
## 11174 E E No Deposit Transient
## 11175 A A No Deposit Transient
## 11176 G G No Deposit Transient
## 11177 A A No Deposit Transient
## 11178 E E No Deposit Transient
## 11179 A A No Deposit Transient
## 11180 A A No Deposit Transient
## 11181 E E No Deposit Transient
## 11182 G G No Deposit Transient
## 11183 E E No Deposit Transient
## 11184 E E No Deposit Transient
## 11185 E E No Deposit Transient
## 11186 E E No Deposit Transient
## 11187 D D No Deposit Transient
## 11188 E E No Deposit Transient
## 11189 E E No Deposit Transient
## 11190 C C No Deposit Transient
## 11191 A A No Deposit Transient
## 11192 G G No Deposit Transient
## 11193 A A No Deposit Transient
## 11194 A A No Deposit Transient
## 11195 C C No Deposit Transient
## 11196 E E No Deposit Transient
## 11197 E E No Deposit Transient
## 11198 E E No Deposit Transient
## 11199 E E No Deposit Transient
## 11200 E E No Deposit Transient
## 11201 A A No Deposit Transient
## 11202 A A No Deposit Transient
## 11203 E E No Deposit Transient
## 11204 E E No Deposit Transient
## 11205 A A No Deposit Transient
## 11206 D D No Deposit Transient
## 11207 A A No Deposit Transient
## 11208 E E No Deposit Transient
## 11209 C C No Deposit Transient
## 11210 C C No Deposit Transient
## 11211 A A No Deposit Transient
## 11212 D D No Deposit Transient
## 11213 E E No Deposit Transient
## 11214 C C No Deposit Transient
## 11215 C C No Deposit Transient
## 11216 D D No Deposit Transient-Party
## 11217 D D No Deposit Transient-Party
## 11218 D D No Deposit Transient-Party
## 11219 A A No Deposit Transient
## 11220 D D No Deposit Transient-Party
## 11221 D D No Deposit Transient-Party
## 11222 C C No Deposit Transient
## 11223 C C No Deposit Transient
## 11224 D D No Deposit Transient-Party
## 11225 D D No Deposit Transient-Party
## 11226 D D No Deposit Transient-Party
## 11227 D D No Deposit Transient
## 11228 D D No Deposit Transient-Party
## 11229 D D No Deposit Transient-Party
## 11230 D D No Deposit Transient-Party
## 11231 D D No Deposit Transient
## 11232 E E No Deposit Transient
## 11233 E E No Deposit Transient
## 11234 A A No Deposit Transient
## 11235 E E No Deposit Transient
## 11236 E E No Deposit Transient
## 11237 E E No Deposit Transient
## 11238 D D No Deposit Transient
## 11239 E E No Deposit Transient
## 11240 D D No Deposit Transient
## 11241 E E No Deposit Transient
## 11242 E E No Deposit Transient
## 11243 G G No Deposit Transient
## 11244 E E No Deposit Transient
## 11245 E E No Deposit Transient
## 11246 G G No Deposit Transient
## 11247 A A No Deposit Transient
## 11248 C C No Deposit Transient
## 11249 D D No Deposit Transient
## 11250 D D No Deposit Transient
## 11251 E E No Deposit Transient
## 11252 C C No Deposit Transient
## 11253 A A No Deposit Transient
## 11254 E E No Deposit Transient
## 11255 E E No Deposit Transient
## 11256 E E No Deposit Transient
## 11257 D D No Deposit Transient
## 11258 D D No Deposit Transient
## 11259 D D No Deposit Transient
## 11260 D D No Deposit Transient
## 11261 G G No Deposit Transient
## 11262 A A No Deposit Transient
## 11263 A A No Deposit Transient
## 11264 A A No Deposit Transient
## 11265 A A No Deposit Transient
## 11266 A A No Deposit Transient
## 11267 A A No Deposit Transient
## 11268 D D No Deposit Transient
## 11269 D D No Deposit Transient-Party
## 11270 A A No Deposit Transient-Party
## 11271 D D No Deposit Transient-Party
## 11272 G G No Deposit Transient
## 11273 A A No Deposit Transient-Party
## 11274 D D No Deposit Transient-Party
## 11275 D D No Deposit Transient-Party
## 11276 A A No Deposit Transient-Party
## 11277 D D No Deposit Transient-Party
## 11278 D D No Deposit Transient-Party
## 11279 D D No Deposit Transient-Party
## 11280 D D No Deposit Transient-Party
## 11281 G G No Deposit Transient
## 11282 A A No Deposit Transient-Party
## 11283 D D No Deposit Transient-Party
## 11284 D D No Deposit Transient-Party
## 11285 D D No Deposit Transient-Party
## 11286 G G No Deposit Transient
## 11287 D D No Deposit Contract
## 11288 D D No Deposit Transient
## 11289 C C No Deposit Transient
## 11290 A A No Deposit Transient
## 11291 C C No Deposit Transient
## 11292 C C No Deposit Transient
## 11293 G G No Deposit Transient
## 11294 E E No Deposit Transient
## 11295 A A No Deposit Transient
## 11296 D D No Deposit Transient
## 11297 A A No Deposit Transient
## 11298 G G No Deposit Transient
## 11299 E E No Deposit Transient
## 11300 E E No Deposit Transient
## 11301 A A No Deposit Transient
## 11302 D D No Deposit Transient
## 11303 E E No Deposit Transient
## 11304 C C No Deposit Transient
## 11305 E E No Deposit Transient
## 11306 A A No Deposit Transient
## 11307 E E No Deposit Transient
## 11308 E E No Deposit Transient
## 11309 A A No Deposit Transient
## 11310 A A No Deposit Transient
## 11311 D D No Deposit Transient
## 11312 D D No Deposit Transient
## 11313 E E No Deposit Transient-Party
## 11314 E E No Deposit Transient-Party
## 11315 A A No Deposit Transient
## 11316 A A No Deposit Transient-Party
## 11317 A A No Deposit Transient
## 11318 A A No Deposit Transient-Party
## 11319 A A No Deposit Transient-Party
## 11320 A A No Deposit Transient
## 11321 E E No Deposit Transient
## 11322 E E No Deposit Transient
## 11323 E E No Deposit Transient
## 11324 E E No Deposit Transient
## 11325 E E No Deposit Transient
## 11326 E E No Deposit Transient
## 11327 E E No Deposit Transient
## 11328 E E No Deposit Transient
## 11329 E E No Deposit Transient
## 11330 E E No Deposit Transient
## 11331 E E No Deposit Transient
## 11332 E E No Deposit Transient
## 11333 A A Non Refund Transient
## 11334 A A Non Refund Transient
## 11335 A A Non Refund Transient
## 11336 A A Non Refund Transient
## 11337 A A Non Refund Transient
## 11338 A A Non Refund Transient
## 11339 A A Non Refund Transient
## 11340 A A Non Refund Transient
## 11341 A A No Deposit Transient
## 11342 A A No Deposit Transient
## 11343 A A No Deposit Transient
## 11344 D D No Deposit Transient-Party
## 11345 D D No Deposit Transient-Party
## 11346 E E No Deposit Transient
## 11347 D D No Deposit Transient-Party
## 11348 D D No Deposit Transient-Party
## 11349 D D No Deposit Transient-Party
## 11350 D D No Deposit Transient-Party
## 11351 A A No Deposit Transient-Party
## 11352 A A No Deposit Transient
## 11353 E E No Deposit Transient
## 11354 A A No Deposit Transient
## 11355 A A No Deposit Transient
## 11356 G G No Deposit Transient
## 11357 A A No Deposit Transient
## 11358 D D No Deposit Transient
## 11359 A A No Deposit Transient
## 11360 A A No Deposit Transient
## 11361 E E No Deposit Transient
## 11362 A A No Deposit Transient
## 11363 A A No Deposit Transient
## 11364 A A No Deposit Transient
## 11365 A A No Deposit Transient
## 11366 A A No Deposit Transient
## 11367 A A No Deposit Transient
## 11368 A A No Deposit Transient
## 11369 D D No Deposit Transient
## 11370 A A No Deposit Transient
## 11371 A A No Deposit Transient
## 11372 A A No Deposit Transient
## 11373 A A No Deposit Transient
## 11374 A A No Deposit Transient
## 11375 A A No Deposit Transient
## 11376 A A No Deposit Transient
## 11377 D D No Deposit Contract
## 11378 A A No Deposit Transient
## 11379 E E No Deposit Transient
## 11380 E E No Deposit Transient
## 11381 F F No Deposit Transient
## 11382 D E No Deposit Transient
## 11383 D D No Deposit Transient
## 11384 D D No Deposit Transient
## 11385 A A No Deposit Transient
## 11386 A A No Deposit Transient
## 11387 A A No Deposit Transient
## 11388 A A No Deposit Transient
## 11389 A A No Deposit Transient
## 11390 A A No Deposit Transient
## 11391 D D No Deposit Transient
## 11392 A A No Deposit Transient
## 11393 A A No Deposit Transient
## 11394 A A No Deposit Transient
## 11395 A A No Deposit Transient
## 11396 D D No Deposit Transient
## 11397 E E No Deposit Transient
## 11398 D D No Deposit Transient
## 11399 A E Refundable Transient
## 11400 D D No Deposit Transient
## 11401 G G No Deposit Transient
## 11402 A A No Deposit Transient
## 11403 A A No Deposit Transient
## 11404 E E No Deposit Transient
## 11405 E E No Deposit Transient
## 11406 E E No Deposit Transient
## 11407 A A No Deposit Transient
## 11408 A A No Deposit Transient
## 11409 D D No Deposit Transient
## 11410 A A No Deposit Transient
## 11411 D D No Deposit Transient
## 11412 A A No Deposit Transient
## 11413 A A No Deposit Transient
## 11414 D D No Deposit Transient
## 11415 C C No Deposit Transient
## 11416 E E No Deposit Transient
## 11417 A A No Deposit Transient
## 11418 A A No Deposit Transient
## 11419 G G No Deposit Transient
## 11420 A A No Deposit Transient
## 11421 G G No Deposit Transient
## 11422 C C No Deposit Transient
## 11423 D D No Deposit Transient
## 11424 E E No Deposit Transient
## 11425 E E No Deposit Transient
## 11426 A C No Deposit Transient
## 11427 A A No Deposit Transient
## 11428 C C No Deposit Transient
## 11429 A A No Deposit Transient
## 11430 D D No Deposit Transient
## 11431 E E No Deposit Transient
## 11432 D D No Deposit Transient
## 11433 A E No Deposit Transient
## 11434 A E No Deposit Transient
## 11435 A E No Deposit Transient
## 11436 A E No Deposit Transient
## 11437 A A No Deposit Transient
## 11438 A A No Deposit Transient
## 11439 G G No Deposit Transient
## 11440 A A No Deposit Transient
## 11441 C C No Deposit Transient
## 11442 A A No Deposit Transient
## 11443 A A No Deposit Transient-Party
## 11444 A A No Deposit Transient-Party
## 11445 D D No Deposit Transient
## 11446 A A No Deposit Transient
## 11447 A A No Deposit Transient
## 11448 A A No Deposit Transient
## 11449 D D No Deposit Transient-Party
## 11450 G G No Deposit Transient
## 11451 A A No Deposit Transient-Party
## 11452 A A No Deposit Transient-Party
## 11453 A A No Deposit Transient-Party
## 11454 E E No Deposit Transient
## 11455 A A No Deposit Transient-Party
## 11456 D D No Deposit Transient-Party
## 11457 A A No Deposit Transient-Party
## 11458 A A No Deposit Transient-Party
## 11459 A A No Deposit Transient-Party
## 11460 A A No Deposit Transient-Party
## 11461 A A No Deposit Transient-Party
## 11462 A A No Deposit Transient-Party
## 11463 A A No Deposit Transient-Party
## 11464 A A No Deposit Transient-Party
## 11465 A A No Deposit Transient-Party
## 11466 A A No Deposit Transient-Party
## 11467 A A No Deposit Transient-Party
## 11468 A A No Deposit Transient-Party
## 11469 H H No Deposit Transient
## 11470 G G No Deposit Transient
## 11471 G G No Deposit Transient
## 11472 D D No Deposit Transient
## 11473 D D No Deposit Transient
## 11474 D D No Deposit Transient
## 11475 C C No Deposit Transient
## 11476 G G No Deposit Transient
## 11477 G G No Deposit Transient
## 11478 A A No Deposit Transient-Party
## 11479 A A No Deposit Transient-Party
## 11480 A A No Deposit Transient-Party
## 11481 A A No Deposit Transient-Party
## 11482 A A No Deposit Transient
## 11483 A A No Deposit Transient-Party
## 11484 A A No Deposit Transient-Party
## 11485 D D No Deposit Transient
## 11486 D D No Deposit Transient
## 11487 H H No Deposit Transient
## 11488 A A No Deposit Transient
## 11489 A A No Deposit Transient
## 11490 A A No Deposit Transient
## 11491 A C No Deposit Transient
## 11492 A A No Deposit Transient
## 11493 C C No Deposit Transient
## 11494 A A No Deposit Transient
## 11495 A A No Deposit Transient
## 11496 A A No Deposit Transient
## 11497 A A No Deposit Transient
## 11498 D D No Deposit Transient
## 11499 A A No Deposit Transient
## 11500 D D No Deposit Transient-Party
## 11501 D D No Deposit Transient
## 11502 A A No Deposit Transient
## 11503 A A No Deposit Transient
## 11504 A A No Deposit Transient
## 11505 C C No Deposit Transient
## 11506 A A No Deposit Transient
## 11507 D D No Deposit Transient
## 11508 D D No Deposit Transient
## 11509 A A No Deposit Transient-Party
## 11510 A A No Deposit Transient
## 11511 A A No Deposit Transient
## 11512 E E No Deposit Transient
## 11513 A A No Deposit Transient
## 11514 E E No Deposit Transient
## 11515 A E No Deposit Transient
## 11516 A A No Deposit Transient
## 11517 E E No Deposit Transient
## 11518 E E No Deposit Transient
## 11519 A A No Deposit Transient
## 11520 D D No Deposit Contract
## 11521 C C No Deposit Transient
## 11522 A A No Deposit Transient
## 11523 E E No Deposit Transient
## 11524 E E No Deposit Transient
## 11525 D D No Deposit Transient
## 11526 A A No Deposit Transient
## 11527 A A No Deposit Transient
## 11528 D D No Deposit Transient
## 11529 A A No Deposit Transient
## 11530 D D No Deposit Transient-Party
## 11531 A A No Deposit Transient-Party
## 11532 A A No Deposit Transient
## 11533 A A No Deposit Transient
## 11534 A A No Deposit Transient
## 11535 A A No Deposit Transient
## 11536 G G No Deposit Transient
## 11537 E E No Deposit Transient
## 11538 D D No Deposit Transient
## 11539 A A No Deposit Transient
## 11540 E E No Deposit Transient
## 11541 E E No Deposit Transient
## 11542 D D No Deposit Transient
## 11543 A I No Deposit Transient
## 11544 D D No Deposit Transient
## 11545 E E No Deposit Transient
## 11546 A A No Deposit Transient
## 11547 D D No Deposit Transient
## 11548 C C No Deposit Transient
## 11549 D D No Deposit Transient
## 11550 D D No Deposit Transient
## 11551 D D No Deposit Contract
## 11552 C C No Deposit Transient
## 11553 D D No Deposit Transient
## 11554 A A No Deposit Transient
## 11555 C C No Deposit Transient
## 11556 C C No Deposit Transient
## 11557 C C No Deposit Transient
## 11558 A A No Deposit Transient
## 11559 A A No Deposit Transient
## 11560 G G No Deposit Transient
## 11561 A A No Deposit Transient
## 11562 C C No Deposit Transient
## 11563 H H No Deposit Transient
## 11564 A A No Deposit Transient
## 11565 A A No Deposit Transient
## 11566 A A No Deposit Transient
## 11567 E E No Deposit Transient
## 11568 E E No Deposit Transient
## 11569 E E No Deposit Transient
## 11570 C C No Deposit Transient
## 11571 G G No Deposit Transient
## 11572 F F No Deposit Transient
## 11573 A A No Deposit Transient
## 11574 E E No Deposit Transient
## 11575 A A No Deposit Transient
## 11576 E E No Deposit Transient
## 11577 A A No Deposit Transient
## 11578 A A No Deposit Transient
## 11579 A A No Deposit Transient
## 11580 D D No Deposit Transient
## 11581 E E No Deposit Transient
## 11582 G G No Deposit Transient
## 11583 A A No Deposit Transient
## 11584 A A No Deposit Transient
## 11585 H H No Deposit Transient
## 11586 G G No Deposit Transient
## 11587 D D No Deposit Transient
## 11588 D D No Deposit Transient
## 11589 F F No Deposit Transient
## 11590 D D No Deposit Transient
## 11591 D D No Deposit Transient
## 11592 D D No Deposit Contract
## 11593 C C No Deposit Transient
## 11594 A C No Deposit Transient
## 11595 D D No Deposit Transient
## 11596 A A No Deposit Transient
## 11597 E E No Deposit Transient
## 11598 G G No Deposit Transient
## 11599 G G No Deposit Transient
## 11600 A A No Deposit Transient
## 11601 A A Non Refund Transient
## 11602 A A No Deposit Transient
## 11603 A A Non Refund Transient
## 11604 A A Non Refund Transient
## 11605 D D No Deposit Transient
## 11606 A A Non Refund Transient
## 11607 A A Non Refund Transient
## 11608 A A Non Refund Transient
## 11609 A A No Deposit Transient-Party
## 11610 A A No Deposit Transient-Party
## 11611 A A No Deposit Transient-Party
## 11612 A A No Deposit Transient-Party
## 11613 A A No Deposit Transient-Party
## 11614 A A No Deposit Transient-Party
## 11615 A C No Deposit Transient-Party
## 11616 A A No Deposit Transient-Party
## 11617 G G No Deposit Transient
## 11618 G G No Deposit Transient
## 11619 A C No Deposit Transient
## 11620 E E No Deposit Transient
## 11621 E E No Deposit Transient
## 11622 D D No Deposit Transient
## 11623 E E No Deposit Transient
## 11624 D D No Deposit Transient
## 11625 G G No Deposit Transient
## 11626 A A No Deposit Transient
## 11627 A A No Deposit Transient
## 11628 E E No Deposit Transient
## 11629 C C No Deposit Transient
## 11630 C C No Deposit Transient
## 11631 G G No Deposit Transient
## 11632 G G No Deposit Transient
## 11633 H H No Deposit Transient
## 11634 A A No Deposit Transient
## 11635 A A No Deposit Transient
## 11636 A A No Deposit Transient
## 11637 E E No Deposit Transient
## 11638 A A No Deposit Transient
## 11639 A A No Deposit Transient
## 11640 A A No Deposit Transient
## 11641 A A No Deposit Transient
## 11642 A A No Deposit Transient
## 11643 A A No Deposit Transient
## 11644 A A No Deposit Transient
## 11645 C C No Deposit Transient
## 11646 C C No Deposit Transient-Party
## 11647 A A No Deposit Group
## 11648 A A No Deposit Transient
## 11649 A A No Deposit Transient
## 11650 A A No Deposit Transient
## 11651 A A No Deposit Transient
## 11652 A A No Deposit Transient
## 11653 A A No Deposit Transient
## 11654 D D No Deposit Transient
## 11655 A A No Deposit Transient
## 11656 A A No Deposit Transient
## 11657 A A Non Refund Transient
## 11658 A A Non Refund Transient
## 11659 A A Non Refund Transient
## 11660 D D Refundable Transient-Party
## 11661 A A Non Refund Transient
## 11662 A A Non Refund Transient
## 11663 A D No Deposit Transient
## 11664 A A Non Refund Transient
## 11665 A A Non Refund Transient
## 11666 A A Non Refund Transient
## 11667 F F No Deposit Transient
## 11668 A A Non Refund Transient
## 11669 A A Non Refund Transient
## 11670 A A Non Refund Transient
## 11671 A A Non Refund Transient
## 11672 A A Non Refund Transient
## 11673 A A Non Refund Transient
## 11674 A A Non Refund Transient
## 11675 G G No Deposit Transient
## 11676 A A Non Refund Transient
## 11677 A A Non Refund Transient
## 11678 A A Non Refund Transient
## 11679 A A Non Refund Transient
## 11680 A A Non Refund Transient
## 11681 H H No Deposit Transient
## 11682 A A No Deposit Transient
## 11683 A A No Deposit Transient
## 11684 G G No Deposit Transient
## 11685 A A No Deposit Transient
## 11686 A A Non Refund Transient-Party
## 11687 D D No Deposit Contract
## 11688 A A Refundable Transient-Party
## 11689 A A No Deposit Transient-Party
## 11690 C C Refundable Transient-Party
## 11691 E E No Deposit Transient
## 11692 C C Refundable Transient-Party
## 11693 D D No Deposit Transient
## 11694 A A No Deposit Transient-Party
## 11695 G G No Deposit Transient-Party
## 11696 A A No Deposit Contract
## 11697 G G No Deposit Transient
## 11698 E E No Deposit Transient
## 11699 H H No Deposit Transient
## 11700 A A No Deposit Transient
## 11701 G G No Deposit Transient
## 11702 G G No Deposit Transient
## 11703 H H No Deposit Transient
## 11704 E E No Deposit Transient
## 11705 A A No Deposit Transient
## 11706 A A No Deposit Transient
## 11707 H H No Deposit Transient
## 11708 A A No Deposit Transient
## 11709 E E No Deposit Transient
## 11710 D D No Deposit Transient
## 11711 D D No Deposit Transient
## 11712 A A No Deposit Transient
## 11713 E E No Deposit Transient
## 11714 G G No Deposit Transient
## 11715 A A Refundable Contract
## 11716 A A No Deposit Transient
## 11717 A A No Deposit Transient
## 11718 A A No Deposit Transient
## 11719 E E No Deposit Transient
## 11720 A A No Deposit Transient
## 11721 A A No Deposit Transient
## 11722 A A No Deposit Transient
## 11723 E E No Deposit Transient
## 11724 A A No Deposit Transient
## 11725 D D No Deposit Transient
## 11726 A A No Deposit Transient
## 11727 E E No Deposit Transient
## 11728 E E No Deposit Transient
## 11729 E E No Deposit Transient
## 11730 D D No Deposit Transient
## 11731 D D No Deposit Transient
## 11732 A A No Deposit Transient
## 11733 A A No Deposit Transient
## 11734 A A No Deposit Transient
## 11735 A A No Deposit Transient
## 11736 E E No Deposit Transient
## 11737 D D No Deposit Transient
## 11738 H H No Deposit Transient
## 11739 A C No Deposit Transient
## 11740 D D No Deposit Transient
## 11741 A A No Deposit Transient
## 11742 D D No Deposit Transient
## 11743 A A No Deposit Transient
## 11744 E E No Deposit Transient
## 11745 A A No Deposit Transient
## 11746 D D No Deposit Transient
## 11747 D D No Deposit Transient
## 11748 D D No Deposit Transient
## 11749 E E No Deposit Transient
## 11750 E E No Deposit Transient
## 11751 A A No Deposit Transient
## 11752 A A No Deposit Transient
## 11753 A A No Deposit Transient
## 11754 A A No Deposit Transient
## 11755 A A No Deposit Transient
## 11756 G G No Deposit Transient
## 11757 A C No Deposit Transient
## 11758 G G No Deposit Transient
## 11759 G G No Deposit Transient
## 11760 A A No Deposit Transient
## 11761 A A No Deposit Transient
## 11762 E E No Deposit Transient
## 11763 E E No Deposit Transient
## 11764 G G No Deposit Transient
## 11765 A A No Deposit Transient
## 11766 D D No Deposit Transient
## 11767 E E No Deposit Transient
## 11768 A A No Deposit Contract
## 11769 D D No Deposit Transient
## 11770 E E No Deposit Transient
## 11771 E E No Deposit Transient
## 11772 E E No Deposit Transient
## 11773 A B No Deposit Transient
## 11774 H H No Deposit Transient
## 11775 F F Refundable Transient
## 11776 E E No Deposit Transient
## 11777 D D No Deposit Transient
## 11778 D D No Deposit Transient
## 11779 D D No Deposit Transient
## 11780 D D No Deposit Transient
## 11781 D D No Deposit Transient
## 11782 D D No Deposit Transient
## 11783 D D No Deposit Transient
## 11784 E E No Deposit Transient
## 11785 D D No Deposit Transient
## 11786 E E No Deposit Transient
## 11787 D D No Deposit Transient-Party
## 11788 E E No Deposit Transient
## 11789 E E No Deposit Transient
## 11790 E E No Deposit Transient
## 11791 A A No Deposit Transient
## 11792 A A No Deposit Transient
## 11793 A A No Deposit Transient-Party
## 11794 A A No Deposit Transient-Party
## 11795 D D No Deposit Transient
## 11796 A A No Deposit Transient
## 11797 E E No Deposit Transient
## 11798 A A No Deposit Transient
## 11799 D D No Deposit Transient
## 11800 A D No Deposit Transient
## 11801 D D No Deposit Transient
## 11802 A A No Deposit Transient
## 11803 G G No Deposit Transient
## 11804 A A No Deposit Transient
## 11805 G G No Deposit Transient
## 11806 A A Non Refund Transient
## 11807 A A Non Refund Transient
## 11808 A A Non Refund Transient
## 11809 A A Non Refund Transient
## 11810 A A Non Refund Transient
## 11811 A A Non Refund Transient
## 11812 A A Non Refund Transient
## 11813 A A Non Refund Transient
## 11814 A A Non Refund Transient
## 11815 A A Non Refund Transient
## 11816 A A Non Refund Transient
## 11817 A A Non Refund Transient
## 11818 A A Non Refund Transient
## 11819 A A Non Refund Transient
## 11820 A A Non Refund Transient
## 11821 A A Non Refund Transient
## 11822 A A Non Refund Transient
## 11823 A A Non Refund Transient
## 11824 A A Non Refund Transient
## 11825 A A Non Refund Transient
## 11826 A A Non Refund Transient
## 11827 A A Non Refund Transient
## 11828 A A Non Refund Transient
## 11829 A A Non Refund Transient
## 11830 A A Non Refund Transient
## 11831 G G No Deposit Transient
## 11832 A A No Deposit Transient
## 11833 A A No Deposit Transient
## 11834 A A No Deposit Transient
## 11835 E E No Deposit Transient
## 11836 A A No Deposit Transient
## 11837 A A No Deposit Transient
## 11838 A A No Deposit Transient
## 11839 D D No Deposit Transient
## 11840 A A No Deposit Transient
## 11841 D D No Deposit Transient
## 11842 D D No Deposit Transient
## 11843 E E No Deposit Transient
## 11844 E E No Deposit Transient
## 11845 A A No Deposit Transient
## 11846 G G No Deposit Transient
## 11847 A A No Deposit Transient
## 11848 D D No Deposit Contract
## 11849 D D No Deposit Contract
## 11850 D D No Deposit Transient
## 11851 G G No Deposit Transient
## 11852 A A No Deposit Contract
## 11853 D D No Deposit Transient
## 11854 A A No Deposit Transient
## 11855 A A No Deposit Transient
## 11856 C C No Deposit Transient
## 11857 A A No Deposit Transient
## 11858 A A No Deposit Transient
## 11859 D D No Deposit Transient
## 11860 A A No Deposit Transient
## 11861 C C No Deposit Transient
## 11862 C C No Deposit Transient
## 11863 H H No Deposit Transient
## 11864 A A No Deposit Transient
## 11865 C C No Deposit Transient
## 11866 A A No Deposit Transient
## 11867 A A No Deposit Transient
## 11868 A A No Deposit Transient
## 11869 A A No Deposit Transient
## 11870 D D No Deposit Transient
## 11871 A A No Deposit Transient
## 11872 D D No Deposit Transient
## 11873 A A No Deposit Transient
## 11874 A A No Deposit Transient
## 11875 A A No Deposit Transient
## 11876 A A No Deposit Transient
## 11877 A A No Deposit Transient
## 11878 A A No Deposit Transient
## 11879 D D No Deposit Transient
## 11880 D D No Deposit Contract
## 11881 D D No Deposit Transient
## 11882 A A No Deposit Transient
## 11883 A A No Deposit Transient
## 11884 F F No Deposit Transient
## 11885 C C No Deposit Transient
## 11886 E E No Deposit Transient
## 11887 G G No Deposit Transient
## 11888 C C No Deposit Transient
## 11889 G G No Deposit Transient
## 11890 E E No Deposit Transient
## 11891 A A No Deposit Transient
## 11892 D D No Deposit Transient
## 11893 A A No Deposit Transient
## 11894 F F No Deposit Transient
## 11895 D D No Deposit Transient
## 11896 A A No Deposit Transient-Party
## 11897 A A No Deposit Transient
## 11898 D D No Deposit Transient-Party
## 11899 D D No Deposit Transient
## 11900 A A Non Refund Transient
## 11901 A A Non Refund Transient
## 11902 A A No Deposit Transient
## 11903 A A Non Refund Transient
## 11904 A A Non Refund Transient
## 11905 A A Non Refund Transient
## 11906 E E No Deposit Transient
## 11907 A A No Deposit Transient
## 11908 D D No Deposit Transient
## 11909 D D No Deposit Transient
## 11910 A A Non Refund Transient
## 11911 A A Non Refund Transient
## 11912 A A Non Refund Transient
## 11913 A A Non Refund Transient
## 11914 A A Non Refund Transient
## 11915 A A Non Refund Transient
## 11916 A A Non Refund Transient
## 11917 A A Non Refund Transient
## 11918 A A No Deposit Transient
## 11919 A A No Deposit Transient
## 11920 A A No Deposit Transient
## 11921 A A No Deposit Transient
## 11922 A A Non Refund Transient
## 11923 A A Non Refund Transient
## 11924 A A No Deposit Transient
## 11925 G G No Deposit Transient
## 11926 A A Non Refund Transient
## 11927 A A Non Refund Transient
## 11928 A A Non Refund Transient
## 11929 D D No Deposit Transient-Party
## 11930 A A No Deposit Transient
## 11931 A A No Deposit Transient
## 11932 A A Non Refund Transient
## 11933 A A Non Refund Transient
## 11934 E E No Deposit Transient
## 11935 D D No Deposit Transient
## 11936 E E No Deposit Transient
## 11937 E E No Deposit Transient
## 11938 D D No Deposit Contract
## 11939 H H No Deposit Transient
## 11940 D D No Deposit Transient
## 11941 D D No Deposit Transient
## 11942 E E No Deposit Transient
## 11943 E E No Deposit Transient
## 11944 A A No Deposit Transient
## 11945 A A No Deposit Transient
## 11946 E E No Deposit Transient
## 11947 E E No Deposit Transient
## 11948 C C No Deposit Transient
## 11949 D D No Deposit Transient
## 11950 D D No Deposit Transient
## 11951 E E No Deposit Transient
## 11952 A A No Deposit Transient
## 11953 A A No Deposit Transient
## 11954 A A No Deposit Transient
## 11955 A A No Deposit Transient
## 11956 A A No Deposit Transient
## 11957 A A No Deposit Transient
## 11958 C C No Deposit Transient
## 11959 G G No Deposit Transient
## 11960 A A No Deposit Transient
## 11961 A A No Deposit Transient
## 11962 G G No Deposit Transient
## 11963 E E No Deposit Transient
## 11964 A A No Deposit Transient
## 11965 A A No Deposit Transient
## 11966 E E No Deposit Transient
## 11967 A A No Deposit Transient
## 11968 A A No Deposit Transient
## 11969 A A No Deposit Transient
## 11970 D D No Deposit Contract
## 11971 E E No Deposit Transient
## 11972 D D No Deposit Transient
## 11973 E E No Deposit Transient
## 11974 E E No Deposit Transient
## 11975 E E No Deposit Transient
## 11976 F F No Deposit Transient
## 11977 E E No Deposit Transient
## 11978 E E No Deposit Transient
## 11979 D D No Deposit Contract
## 11980 D D No Deposit Transient
## 11981 D D No Deposit Transient
## 11982 A A No Deposit Transient
## 11983 A A No Deposit Transient
## 11984 D D No Deposit Transient
## 11985 A A No Deposit Transient
## 11986 C C No Deposit Transient
## 11987 A A No Deposit Transient
## 11988 A A No Deposit Transient
## 11989 G G No Deposit Transient
## 11990 F F No Deposit Transient
## 11991 A A No Deposit Transient
## 11992 A A No Deposit Transient
## 11993 A A Non Refund Transient
## 11994 A A Non Refund Transient
## 11995 A A Non Refund Transient
## 11996 E E No Deposit Transient
## 11997 A A Non Refund Transient
## 11998 A A Non Refund Transient
## 11999 A A Non Refund Transient
## 12000 C C No Deposit Transient
## 12001 A A Non Refund Transient
## 12002 A A Non Refund Transient
## 12003 A A Non Refund Transient
## 12004 A A Non Refund Transient
## 12005 A A Non Refund Transient
## 12006 A A Non Refund Transient
## 12007 A A Non Refund Transient
## 12008 A A Non Refund Transient
## 12009 E E No Deposit Transient
## 12010 A A Non Refund Transient
## 12011 A A Non Refund Transient
## 12012 A A Non Refund Transient
## 12013 A A Non Refund Transient
## 12014 A A Non Refund Transient
## 12015 A A No Deposit Transient
## 12016 D D No Deposit Transient
## 12017 D E No Deposit Transient
## 12018 G G No Deposit Transient
## 12019 A A No Deposit Contract
## 12020 A A No Deposit Transient
## 12021 A A No Deposit Transient
## 12022 A A No Deposit Transient
## 12023 C C No Deposit Transient
## 12024 A A No Deposit Transient
## 12025 C C No Deposit Transient
## 12026 E E No Deposit Transient
## 12027 E E No Deposit Transient
## 12028 A A No Deposit Transient
## 12029 F F No Deposit Transient
## 12030 C C No Deposit Transient
## 12031 A A No Deposit Transient
## 12032 D D No Deposit Transient
## 12033 F F No Deposit Transient
## 12034 A A No Deposit Contract
## 12035 A A No Deposit Contract
## 12036 E E No Deposit Transient
## 12037 D D No Deposit Transient
## 12038 A A No Deposit Transient
## 12039 C C No Deposit Transient
## 12040 A A No Deposit Transient
## 12041 C C No Deposit Transient
## 12042 C C No Deposit Transient
## 12043 D D No Deposit Transient
## 12044 D D No Deposit Transient
## 12045 H H No Deposit Transient
## 12046 D D No Deposit Transient
## 12047 G G No Deposit Transient
## 12048 A A No Deposit Transient
## 12049 A A No Deposit Transient
## 12050 A A No Deposit Transient
## 12051 A C No Deposit Transient
## 12052 C C No Deposit Transient
## 12053 E E No Deposit Transient
## 12054 E E No Deposit Transient-Party
## 12055 E E No Deposit Transient-Party
## 12056 D D No Deposit Transient
## 12057 D D No Deposit Transient
## 12058 A C No Deposit Group
## 12059 E E No Deposit Transient
## 12060 A A No Deposit Transient
## 12061 E E No Deposit Transient
## 12062 A A No Deposit Transient
## 12063 A A No Deposit Transient
## 12064 A A No Deposit Transient
## 12065 G G No Deposit Transient
## 12066 A A No Deposit Transient
## 12067 A A No Deposit Transient
## 12068 A A No Deposit Transient
## 12069 A A No Deposit Transient
## 12070 A A No Deposit Transient
## 12071 A A No Deposit Transient
## 12072 A A No Deposit Transient
## 12073 A A No Deposit Transient
## 12074 C C No Deposit Transient-Party
## 12075 A A No Deposit Transient
## 12076 F F No Deposit Transient
## 12077 E E No Deposit Transient
## 12078 A A No Deposit Transient
## 12079 A A No Deposit Transient
## 12080 A A No Deposit Transient
## 12081 A A No Deposit Transient
## 12082 E E No Deposit Transient
## 12083 A A No Deposit Transient
## 12084 H H No Deposit Transient
## 12085 C C No Deposit Transient
## 12086 E E No Deposit Transient
## 12087 A A No Deposit Transient
## 12088 A A No Deposit Transient
## 12089 D D No Deposit Transient
## 12090 E E No Deposit Transient
## 12091 C C No Deposit Transient
## 12092 E E No Deposit Transient
## 12093 E E No Deposit Transient
## 12094 D D No Deposit Contract
## 12095 D D No Deposit Contract
## 12096 H H No Deposit Transient
## 12097 E E No Deposit Transient
## 12098 A A No Deposit Transient
## 12099 A A No Deposit Transient
## 12100 A A No Deposit Transient
## 12101 A A No Deposit Transient
## 12102 A A No Deposit Transient
## 12103 E E No Deposit Transient
## 12104 A A No Deposit Transient
## 12105 A A No Deposit Transient
## 12106 A A No Deposit Transient
## 12107 C C No Deposit Transient
## 12108 G G No Deposit Transient
## 12109 A A No Deposit Transient
## 12110 G G No Deposit Transient
## 12111 E E No Deposit Transient
## 12112 E E No Deposit Transient
## 12113 A A No Deposit Transient
## 12114 A A No Deposit Transient
## 12115 A A No Deposit Transient
## 12116 A A No Deposit Transient
## 12117 A A No Deposit Transient
## 12118 A A No Deposit Transient
## 12119 A A No Deposit Transient
## 12120 F F No Deposit Transient
## 12121 C C No Deposit Transient
## 12122 A A No Deposit Transient
## 12123 A A No Deposit Transient
## 12124 A A No Deposit Transient
## 12125 H H No Deposit Transient
## 12126 A A No Deposit Contract
## 12127 E E No Deposit Transient
## 12128 A A No Deposit Contract
## 12129 A A No Deposit Transient-Party
## 12130 A A No Deposit Transient
## 12131 A A No Deposit Transient
## 12132 A A No Deposit Transient
## 12133 A A No Deposit Transient
## 12134 A A No Deposit Transient
## 12135 A A No Deposit Transient
## 12136 E E No Deposit Transient
## 12137 A A No Deposit Transient
## 12138 A A No Deposit Transient
## 12139 A A No Deposit Transient
## 12140 A A No Deposit Transient
## 12141 A A No Deposit Transient
## 12142 A A No Deposit Transient
## 12143 A A No Deposit Transient
## 12144 A A No Deposit Transient
## 12145 E E No Deposit Transient
## 12146 A A No Deposit Transient
## 12147 G G No Deposit Transient
## 12148 C C No Deposit Transient
## 12149 A A No Deposit Contract
## 12150 D D No Deposit Transient
## 12151 E E No Deposit Transient
## 12152 A A No Deposit Transient
## 12153 H H No Deposit Transient
## 12154 E E No Deposit Transient
## 12155 A A No Deposit Contract
## 12156 C C No Deposit Transient
## 12157 A A No Deposit Transient
## 12158 C C No Deposit Transient
## 12159 A D No Deposit Transient
## 12160 A A No Deposit Transient
## 12161 E E No Deposit Transient
## 12162 D D No Deposit Transient
## 12163 D D No Deposit Transient
## 12164 A A No Deposit Transient
## 12165 A A No Deposit Transient
## 12166 A A No Deposit Transient
## 12167 C C No Deposit Transient
## 12168 G G No Deposit Transient
## 12169 G G No Deposit Transient
## 12170 E E No Deposit Transient
## 12171 A A No Deposit Transient
## 12172 A A No Deposit Transient
## 12173 A A No Deposit Transient
## 12174 A A No Deposit Transient
## 12175 A A No Deposit Transient
## 12176 A A No Deposit Transient
## 12177 A A No Deposit Transient
## 12178 C C No Deposit Transient
## 12179 C C No Deposit Transient
## 12180 C C No Deposit Transient
## 12181 A A No Deposit Transient
## 12182 A A No Deposit Transient
## 12183 A A No Deposit Transient
## 12184 A A No Deposit Transient
## 12185 A A No Deposit Transient
## 12186 A A No Deposit Transient
## 12187 A A No Deposit Transient
## 12188 A B No Deposit Transient
## 12189 E E No Deposit Transient
## 12190 E E No Deposit Transient
## 12191 G G No Deposit Transient
## 12192 D D No Deposit Transient
## 12193 E E No Deposit Transient
## 12194 A A No Deposit Transient
## 12195 G G No Deposit Transient
## 12196 A A No Deposit Transient
## 12197 C C No Deposit Transient
## 12198 G G No Deposit Transient-Party
## 12199 D D No Deposit Transient
## 12200 E E No Deposit Transient
## 12201 A A No Deposit Transient
## 12202 D D No Deposit Contract
## 12203 A A No Deposit Transient
## 12204 A A No Deposit Transient
## 12205 A A No Deposit Transient
## 12206 D D No Deposit Transient
## 12207 D D No Deposit Transient
## 12208 F F No Deposit Transient
## 12209 E E No Deposit Transient
## 12210 E E No Deposit Transient
## 12211 A A No Deposit Transient
## 12212 A A No Deposit Transient
## 12213 A A No Deposit Transient
## 12214 A A No Deposit Transient
## 12215 A A No Deposit Transient
## 12216 A A No Deposit Transient
## 12217 A A No Deposit Transient
## 12218 A A No Deposit Transient
## 12219 D D No Deposit Transient
## 12220 E E No Deposit Transient
## 12221 A A No Deposit Transient
## 12222 A A No Deposit Contract
## 12223 A A No Deposit Transient
## 12224 D D No Deposit Transient
## 12225 C C No Deposit Transient
## 12226 D D No Deposit Transient
## 12227 D D No Deposit Contract
## 12228 A A No Deposit Transient
## 12229 A A No Deposit Transient
## 12230 F F No Deposit Transient
## 12231 A A No Deposit Transient
## 12232 A A No Deposit Contract
## 12233 A A No Deposit Contract
## 12234 A A No Deposit Transient
## 12235 D D No Deposit Transient
## 12236 D D No Deposit Transient
## 12237 D D No Deposit Transient
## 12238 A A No Deposit Transient
## 12239 H H No Deposit Transient
## 12240 A A No Deposit Transient
## 12241 A A No Deposit Transient
## 12242 D D No Deposit Contract
## 12243 D D No Deposit Transient
## 12244 C C No Deposit Transient
## 12245 E E No Deposit Contract
## 12246 A A No Deposit Transient
## 12247 G G No Deposit Transient
## 12248 A A No Deposit Transient
## 12249 C C No Deposit Transient
## 12250 A A No Deposit Transient
## 12251 A A No Deposit Contract
## 12252 A A No Deposit Transient
## 12253 G G No Deposit Transient
## 12254 A A No Deposit Transient
## 12255 C C No Deposit Transient
## 12256 A A No Deposit Transient
## 12257 A A No Deposit Transient
## 12258 C C No Deposit Transient
## 12259 A A No Deposit Transient
## 12260 A A No Deposit Transient
## 12261 A A No Deposit Transient
## 12262 G G No Deposit Transient
## 12263 E E No Deposit Transient
## 12264 A A No Deposit Transient
## 12265 C C No Deposit Transient
## 12266 H H No Deposit Transient
## 12267 D D No Deposit Transient
## 12268 D D No Deposit Transient
## 12269 G G No Deposit Transient
## 12270 G G No Deposit Transient
## 12271 C C No Deposit Transient
## 12272 E E No Deposit Transient
## 12273 A C No Deposit Transient
## 12274 A A No Deposit Transient
## 12275 D D No Deposit Transient
## 12276 D D No Deposit Transient
## 12277 A A No Deposit Transient
## 12278 A A No Deposit Transient
## 12279 A A No Deposit Transient
## 12280 A A No Deposit Transient
## 12281 G G No Deposit Transient
## 12282 E E No Deposit Transient
## 12283 D D No Deposit Transient
## 12284 C C No Deposit Transient
## 12285 D D No Deposit Transient
## 12286 A A No Deposit Transient
## 12287 D D No Deposit Transient
## 12288 A A No Deposit Transient
## 12289 A A No Deposit Transient
## 12290 D D No Deposit Transient
## 12291 A A No Deposit Transient
## 12292 D D No Deposit Transient
## 12293 A A No Deposit Transient
## 12294 A A No Deposit Contract
## 12295 A A No Deposit Contract
## 12296 D D No Deposit Transient
## 12297 A A No Deposit Transient
## 12298 E E No Deposit Transient
## 12299 A A No Deposit Transient
## 12300 G G No Deposit Transient
## 12301 E E No Deposit Transient
## 12302 E E No Deposit Transient
## 12303 A A No Deposit Transient
## 12304 E E No Deposit Transient
## 12305 G G No Deposit Transient
## 12306 A A No Deposit Transient
## 12307 D D No Deposit Transient
## 12308 A A No Deposit Transient
## 12309 A A No Deposit Transient
## 12310 D D No Deposit Transient
## 12311 A A No Deposit Transient
## 12312 A A No Deposit Transient
## 12313 A A No Deposit Transient
## 12314 F F No Deposit Transient
## 12315 D D No Deposit Contract
## 12316 A A No Deposit Transient
## 12317 D D No Deposit Transient
## 12318 G G No Deposit Transient
## 12319 A A No Deposit Transient
## 12320 G G No Deposit Transient
## 12321 E E No Deposit Transient
## 12322 A A No Deposit Transient
## 12323 G G No Deposit Transient
## 12324 A A No Deposit Transient
## 12325 A A No Deposit Transient
## 12326 A A No Deposit Transient
## 12327 A A No Deposit Transient
## 12328 F F No Deposit Transient
## 12329 F F No Deposit Transient
## 12330 A A No Deposit Transient
## 12331 A A No Deposit Transient
## 12332 D D No Deposit Contract
## 12333 A A No Deposit Transient
## 12334 A A No Deposit Transient
## 12335 A A No Deposit Transient
## 12336 E E No Deposit Transient
## 12337 D D No Deposit Transient
## 12338 A A No Deposit Transient
## 12339 A A No Deposit Transient
## 12340 G G No Deposit Transient
## 12341 G G No Deposit Transient
## 12342 A A No Deposit Transient
## 12343 D D No Deposit Transient
## 12344 F F No Deposit Transient
## 12345 A A No Deposit Transient
## 12346 A A No Deposit Transient
## 12347 G G No Deposit Transient
## 12348 E E No Deposit Transient
## 12349 F F No Deposit Transient-Party
## 12350 C C No Deposit Transient
## 12351 G G No Deposit Transient
## 12352 G G No Deposit Transient
## 12353 A A No Deposit Transient
## 12354 H H No Deposit Transient
## 12355 D D No Deposit Transient
## 12356 G G No Deposit Transient
## 12357 A A No Deposit Transient
## 12358 A C No Deposit Transient
## 12359 G G No Deposit Transient
## 12360 G G No Deposit Transient
## 12361 D D No Deposit Transient
## 12362 A A No Deposit Transient
## 12363 F F No Deposit Transient-Party
## 12364 G G No Deposit Transient
## 12365 E E No Deposit Transient
## 12366 E E No Deposit Transient
## 12367 G G No Deposit Transient
## 12368 D D No Deposit Transient
## 12369 E E No Deposit Transient
## 12370 A A No Deposit Transient
## 12371 A A No Deposit Transient
## 12372 A A No Deposit Transient
## 12373 G G No Deposit Transient
## 12374 A A No Deposit Transient
## 12375 A A No Deposit Transient
## 12376 A A No Deposit Transient
## 12377 D D No Deposit Transient
## 12378 A A No Deposit Transient
## 12379 A A No Deposit Transient
## 12380 C C No Deposit Transient
## 12381 D D No Deposit Transient
## 12382 C C No Deposit Transient
## 12383 F F No Deposit Transient
## 12384 A A No Deposit Transient
## 12385 A A Refundable Contract
## 12386 A A No Deposit Transient
## 12387 A A No Deposit Transient
## 12388 C C No Deposit Transient
## 12389 A A No Deposit Transient
## 12390 A A No Deposit Transient
## 12391 D D No Deposit Transient
## 12392 G G No Deposit Transient
## 12393 E F No Deposit Transient
## 12394 H H No Deposit Transient
## 12395 D D No Deposit Transient
## 12396 A A No Deposit Transient
## 12397 A A No Deposit Transient
## 12398 D D No Deposit Transient
## 12399 A A No Deposit Transient
## 12400 G G No Deposit Transient
## 12401 A A No Deposit Transient
## 12402 A A No Deposit Transient
## 12403 A A No Deposit Transient
## 12404 A A No Deposit Transient
## 12405 A A No Deposit Transient
## 12406 D D No Deposit Transient
## 12407 A A No Deposit Transient
## 12408 A A No Deposit Transient
## 12409 G G No Deposit Transient
## 12410 A A No Deposit Transient
## 12411 H H No Deposit Transient
## 12412 E E No Deposit Transient
## 12413 F F No Deposit Transient
## 12414 F F No Deposit Transient
## 12415 A A No Deposit Transient-Party
## 12416 A A No Deposit Transient
## 12417 A A No Deposit Transient
## 12418 D D No Deposit Transient
## 12419 A A No Deposit Transient
## 12420 A A No Deposit Transient
## 12421 F F No Deposit Transient
## 12422 C C No Deposit Transient
## 12423 C C No Deposit Transient
## 12424 A A No Deposit Transient
## 12425 A A No Deposit Transient
## 12426 E E No Deposit Transient
## 12427 A A No Deposit Transient
## 12428 G G No Deposit Transient
## 12429 A A No Deposit Transient
## 12430 A A No Deposit Transient
## 12431 A A No Deposit Transient
## 12432 C C No Deposit Transient
## 12433 G G No Deposit Transient
## 12434 D D No Deposit Transient
## 12435 E E No Deposit Transient
## 12436 E E No Deposit Transient
## 12437 D D No Deposit Transient-Party
## 12438 D D No Deposit Transient
## 12439 D D No Deposit Transient
## 12440 D D No Deposit Transient
## 12441 D D No Deposit Transient
## 12442 A A No Deposit Transient
## 12443 A F No Deposit Transient
## 12444 E E No Deposit Transient
## 12445 A A No Deposit Transient
## 12446 A A No Deposit Transient
## 12447 D D No Deposit Transient-Party
## 12448 A A No Deposit Transient
## 12449 E E No Deposit Transient
## 12450 D D No Deposit Transient
## 12451 D D No Deposit Transient
## 12452 E E No Deposit Transient
## 12453 G G No Deposit Transient
## 12454 E E No Deposit Transient
## 12455 G G No Deposit Transient
## 12456 A A No Deposit Transient
## 12457 D D No Deposit Contract
## 12458 E E No Deposit Transient
## 12459 E E No Deposit Transient
## 12460 C C No Deposit Transient-Party
## 12461 D D No Deposit Transient-Party
## 12462 A A No Deposit Transient
## 12463 G G No Deposit Transient
## 12464 A A No Deposit Transient
## 12465 D D No Deposit Transient-Party
## 12466 D D No Deposit Transient-Party
## 12467 D D No Deposit Transient
## 12468 H H No Deposit Transient
## 12469 D D No Deposit Transient
## 12470 C C No Deposit Transient
## 12471 D D No Deposit Transient
## 12472 E E No Deposit Transient
## 12473 A A No Deposit Transient
## 12474 A A No Deposit Transient
## 12475 E E No Deposit Transient
## 12476 E E No Deposit Transient
## 12477 A A No Deposit Transient
## 12478 E E No Deposit Transient
## 12479 H H No Deposit Transient
## 12480 H H No Deposit Transient
## 12481 C C No Deposit Transient
## 12482 D D No Deposit Transient
## 12483 A A No Deposit Transient
## 12484 D D No Deposit Transient-Party
## 12485 C C No Deposit Transient
## 12486 D D No Deposit Transient
## 12487 A A No Deposit Transient
## 12488 D D No Deposit Transient-Party
## 12489 A A No Deposit Transient
## 12490 D D No Deposit Transient
## 12491 A A No Deposit Transient
## 12492 D D No Deposit Transient
## 12493 D D No Deposit Transient
## 12494 A A No Deposit Transient
## 12495 A A No Deposit Transient
## 12496 D D No Deposit Contract
## 12497 G G No Deposit Transient
## 12498 E E No Deposit Transient
## 12499 F F No Deposit Transient
## 12500 G G No Deposit Transient
## 12501 D D No Deposit Transient
## 12502 A A No Deposit Transient
## 12503 A A No Deposit Transient
## 12504 C C No Deposit Transient
## 12505 D D No Deposit Transient
## 12506 C C No Deposit Transient
## 12507 C C No Deposit Transient
## 12508 A A No Deposit Transient
## 12509 E E No Deposit Transient
## 12510 G G No Deposit Transient
## 12511 E E No Deposit Transient
## 12512 G G No Deposit Transient
## 12513 G G No Deposit Transient
## 12514 G G No Deposit Transient
## 12515 G G No Deposit Transient
## 12516 D D No Deposit Transient
## 12517 A A No Deposit Transient
## 12518 A A No Deposit Transient
## 12519 D D No Deposit Transient
## 12520 D D No Deposit Transient
## 12521 A A No Deposit Transient
## 12522 G G No Deposit Transient
## 12523 A A No Deposit Transient
## 12524 A A No Deposit Transient
## 12525 A A No Deposit Transient
## 12526 D D No Deposit Transient
## 12527 C C No Deposit Transient
## 12528 C C No Deposit Transient
## 12529 C C No Deposit Transient
## 12530 A A No Deposit Transient
## 12531 A A No Deposit Transient
## 12532 D D No Deposit Transient
## 12533 D D No Deposit Transient
## 12534 D D No Deposit Contract
## 12535 D D No Deposit Transient
## 12536 H H No Deposit Transient
## 12537 A A No Deposit Contract
## 12538 D D No Deposit Transient
## 12539 F F No Deposit Transient-Party
## 12540 G G No Deposit Transient
## 12541 G G No Deposit Transient
## 12542 D D No Deposit Contract
## 12543 C C No Deposit Transient
## 12544 A A No Deposit Transient
## 12545 H H No Deposit Transient
## 12546 H H No Deposit Transient
## 12547 H H No Deposit Transient
## 12548 G G No Deposit Transient
## 12549 H H No Deposit Transient
## 12550 H H No Deposit Transient
## 12551 A A No Deposit Transient
## 12552 A A No Deposit Transient
## 12553 G G No Deposit Transient
## 12554 D D No Deposit Transient
## 12555 H H No Deposit Transient
## 12556 G G No Deposit Transient
## 12557 H H No Deposit Transient
## 12558 D D No Deposit Transient
## 12559 A A No Deposit Transient
## 12560 G G No Deposit Transient
## 12561 H H No Deposit Transient
## 12562 A A No Deposit Transient
## 12563 D D No Deposit Transient
## 12564 A A No Deposit Transient
## 12565 A A No Deposit Transient
## 12566 E E No Deposit Transient
## 12567 D D No Deposit Transient
## 12568 D D No Deposit Transient
## 12569 G G No Deposit Transient
## 12570 A A No Deposit Transient
## 12571 A A No Deposit Transient
## 12572 A A No Deposit Transient
## 12573 D D No Deposit Transient
## 12574 A A No Deposit Transient
## 12575 A A No Deposit Transient
## 12576 H H No Deposit Transient
## 12577 D D No Deposit Transient
## 12578 A A No Deposit Transient-Party
## 12579 D D No Deposit Transient
## 12580 A A No Deposit Transient
## 12581 A A No Deposit Transient
## 12582 D D No Deposit Transient
## 12583 E E No Deposit Transient
## 12584 G G No Deposit Transient
## 12585 G G No Deposit Transient
## 12586 E E No Deposit Transient
## 12587 D D No Deposit Transient
## 12588 E E No Deposit Transient
## 12589 G G No Deposit Transient
## 12590 D D No Deposit Transient
## 12591 D D No Deposit Transient
## 12592 D D No Deposit Transient
## 12593 D D No Deposit Transient
## 12594 D D No Deposit Transient
## 12595 E E No Deposit Transient
## 12596 A A No Deposit Transient
## 12597 D D No Deposit Contract
## 12598 C C No Deposit Transient
## 12599 E E No Deposit Transient
## 12600 C C No Deposit Transient
## 12601 C C No Deposit Transient
## 12602 D D No Deposit Transient
## 12603 D D No Deposit Transient
## 12604 D D No Deposit Transient
## 12605 A A No Deposit Transient
## 12606 A A No Deposit Transient
## 12607 D D No Deposit Transient
## 12608 A A No Deposit Transient
## 12609 A A No Deposit Transient
## 12610 H H No Deposit Transient
## 12611 A A No Deposit Transient
## 12612 D D No Deposit Transient
## 12613 D D No Deposit Transient
## 12614 A A No Deposit Transient
## 12615 H H No Deposit Transient
## 12616 D D No Deposit Transient
## 12617 D D No Deposit Transient
## 12618 G G No Deposit Transient
## 12619 C C No Deposit Transient
## 12620 A A No Deposit Transient
## 12621 D D No Deposit Transient
## 12622 A A No Deposit Transient
## 12623 D D No Deposit Transient
## 12624 C C No Deposit Transient
## 12625 A A No Deposit Transient
## 12626 A A No Deposit Transient
## 12627 E E No Deposit Transient
## 12628 E E No Deposit Transient
## 12629 C C No Deposit Transient
## 12630 D D No Deposit Transient
## 12631 D D No Deposit Transient
## 12632 G G No Deposit Transient
## 12633 H H No Deposit Transient
## 12634 G G No Deposit Transient
## 12635 C C No Deposit Transient
## 12636 C C No Deposit Transient
## 12637 A A No Deposit Transient
## 12638 D D No Deposit Transient
## 12639 D D No Deposit Transient
## 12640 D D No Deposit Transient
## 12641 H H No Deposit Transient
## 12642 A A No Deposit Transient
## 12643 D D No Deposit Transient
## 12644 A A No Deposit Transient-Party
## 12645 A C No Deposit Transient-Party
## 12646 D D No Deposit Transient
## 12647 D D No Deposit Transient
## 12648 A A No Deposit Transient
## 12649 D D No Deposit Transient
## 12650 C C No Deposit Transient
## 12651 H H No Deposit Transient
## 12652 D D No Deposit Transient
## 12653 A A No Deposit Transient
## 12654 D D No Deposit Transient
## 12655 D D No Deposit Transient
## 12656 A A No Deposit Transient
## 12657 A A No Deposit Transient
## 12658 E E No Deposit Transient
## 12659 E E No Deposit Transient
## 12660 A A No Deposit Transient
## 12661 A A No Deposit Transient
## 12662 A A No Deposit Contract
## 12663 E E No Deposit Transient
## 12664 D D No Deposit Transient
## 12665 E E No Deposit Transient
## 12666 C C No Deposit Transient
## 12667 A A No Deposit Transient
## 12668 E E No Deposit Transient
## 12669 A A No Deposit Transient
## 12670 A A No Deposit Transient
## 12671 E E No Deposit Transient
## 12672 A A No Deposit Transient
## 12673 A A No Deposit Transient
## 12674 E E No Deposit Transient
## 12675 A A No Deposit Transient
## 12676 D D No Deposit Transient
## 12677 E E No Deposit Transient
## 12678 G G No Deposit Transient
## 12679 E E No Deposit Transient
## 12680 E E No Deposit Transient
## 12681 E E No Deposit Transient
## 12682 C C No Deposit Transient
## 12683 D D No Deposit Transient
## 12684 E E No Deposit Transient
## 12685 E E No Deposit Transient
## 12686 G G No Deposit Transient
## 12687 A C No Deposit Transient-Party
## 12688 D D No Deposit Transient
## 12689 A A No Deposit Transient
## 12690 D D No Deposit Transient
## 12691 E E No Deposit Transient
## 12692 E E No Deposit Transient
## 12693 E E No Deposit Transient
## 12694 G G No Deposit Transient
## 12695 D D No Deposit Transient
## 12696 E E No Deposit Transient
## 12697 D D No Deposit Transient
## 12698 E E No Deposit Transient
## 12699 D D No Deposit Transient
## 12700 C C No Deposit Transient
## 12701 G G No Deposit Transient
## 12702 D D No Deposit Transient
## 12703 A A No Deposit Transient
## 12704 A A No Deposit Transient
## 12705 A A No Deposit Transient
## 12706 A A No Deposit Transient
## 12707 E E No Deposit Transient
## 12708 E E No Deposit Transient
## 12709 A A No Deposit Transient
## 12710 A A No Deposit Contract
## 12711 E E No Deposit Transient
## 12712 E E No Deposit Transient
## 12713 D D No Deposit Transient
## 12714 A A No Deposit Transient
## 12715 E E No Deposit Transient
## 12716 A A No Deposit Transient
## 12717 A A No Deposit Transient
## 12718 E E No Deposit Transient
## 12719 A A Refundable Transient
## 12720 E E No Deposit Transient
## 12721 C C No Deposit Transient
## 12722 A A No Deposit Transient
## 12723 A A No Deposit Transient
## 12724 G G No Deposit Transient
## 12725 A A No Deposit Transient
## 12726 H H No Deposit Transient
## 12727 A A No Deposit Transient
## 12728 A A No Deposit Transient
## 12729 A A No Deposit Transient
## 12730 A A No Deposit Transient
## 12731 A A No Deposit Transient
## 12732 A A No Deposit Transient
## 12733 E E No Deposit Transient
## 12734 E E No Deposit Transient
## 12735 G G No Deposit Transient
## 12736 A A No Deposit Transient
## 12737 A A No Deposit Transient
## 12738 A A No Deposit Transient
## 12739 A A No Deposit Transient
## 12740 D D No Deposit Transient
## 12741 D D No Deposit Transient
## 12742 D D No Deposit Transient
## 12743 G G No Deposit Transient
## 12744 F F No Deposit Transient
## 12745 F F No Deposit Transient
## 12746 E E No Deposit Transient
## 12747 E E No Deposit Transient
## 12748 A A No Deposit Transient
## 12749 E E No Deposit Transient
## 12750 A A No Deposit Transient
## 12751 C C No Deposit Transient
## 12752 D D No Deposit Transient
## 12753 A A No Deposit Transient
## 12754 E E No Deposit Transient
## 12755 D D No Deposit Transient
## 12756 A A No Deposit Transient
## 12757 A A No Deposit Transient
## 12758 A A No Deposit Transient
## 12759 A A No Deposit Transient
## 12760 F F No Deposit Transient
## 12761 D D No Deposit Transient
## 12762 E E No Deposit Transient
## 12763 G G No Deposit Transient
## 12764 E E No Deposit Transient
## 12765 F F No Deposit Transient
## 12766 A A No Deposit Transient
## 12767 D D No Deposit Transient
## 12768 A A No Deposit Transient
## 12769 E E No Deposit Transient
## 12770 A A No Deposit Transient
## 12771 C C No Deposit Transient
## 12772 C C No Deposit Transient
## 12773 D D No Deposit Transient
## 12774 A A No Deposit Transient
## 12775 F F No Deposit Transient
## 12776 C C No Deposit Transient
## 12777 D D No Deposit Transient
## 12778 D D No Deposit Transient
## 12779 D D No Deposit Transient
## 12780 A A No Deposit Transient
## 12781 E E No Deposit Transient
## 12782 D D No Deposit Transient
## 12783 D D No Deposit Transient
## 12784 A A No Deposit Transient
## 12785 F F No Deposit Transient
## 12786 G G No Deposit Transient
## 12787 E E No Deposit Transient
## 12788 E E No Deposit Transient
## 12789 G G No Deposit Transient
## 12790 D D No Deposit Transient
## 12791 E E No Deposit Transient
## 12792 C C No Deposit Transient
## 12793 A A No Deposit Transient
## 12794 F F No Deposit Transient
## 12795 E E No Deposit Transient
## 12796 A A No Deposit Transient
## 12797 A A No Deposit Transient
## 12798 A A No Deposit Transient
## 12799 A A No Deposit Transient
## 12800 G G No Deposit Transient
## 12801 D D No Deposit Transient
## 12802 G G No Deposit Transient
## 12803 A A No Deposit Transient
## 12804 A A No Deposit Transient
## 12805 C C No Deposit Transient
## 12806 A A No Deposit Contract
## 12807 A A No Deposit Transient
## 12808 D D No Deposit Transient
## 12809 A A No Deposit Transient
## 12810 G G No Deposit Transient
## 12811 A A No Deposit Transient
## 12812 A A No Deposit Transient
## 12813 G G No Deposit Transient
## 12814 F F No Deposit Transient
## 12815 D D No Deposit Transient
## 12816 A A No Deposit Transient
## 12817 D D No Deposit Transient
## 12818 D D No Deposit Transient
## 12819 D D No Deposit Transient
## 12820 G G No Deposit Transient
## 12821 D D No Deposit Transient
## 12822 D D No Deposit Transient
## 12823 A A No Deposit Transient
## 12824 A A No Deposit Transient
## 12825 A A No Deposit Transient
## 12826 A A No Deposit Contract
## 12827 A A No Deposit Transient
## 12828 A A No Deposit Contract
## 12829 A A No Deposit Transient
## 12830 A A No Deposit Transient
## 12831 D D No Deposit Transient
## 12832 D D No Deposit Transient
## 12833 E E No Deposit Transient
## 12834 E E No Deposit Transient
## 12835 D D No Deposit Transient
## 12836 D D No Deposit Transient
## 12837 A A No Deposit Transient
## 12838 A A No Deposit Transient
## 12839 A A No Deposit Transient
## 12840 A A No Deposit Transient
## 12841 A A No Deposit Transient
## 12842 F F No Deposit Transient
## 12843 A A No Deposit Transient
## 12844 A A No Deposit Transient
## 12845 A A No Deposit Transient
## 12846 H H No Deposit Transient
## 12847 D F No Deposit Transient
## 12848 A A No Deposit Transient
## 12849 A A No Deposit Transient
## 12850 D D No Deposit Transient
## 12851 C C No Deposit Transient
## 12852 A A No Deposit Transient
## 12853 A A No Deposit Transient
## 12854 D D No Deposit Transient
## 12855 A A No Deposit Transient
## 12856 D D No Deposit Transient
## 12857 A A No Deposit Transient
## 12858 C C No Deposit Transient
## 12859 E E No Deposit Transient
## 12860 D D No Deposit Transient
## 12861 D D No Deposit Transient
## 12862 D D No Deposit Transient
## 12863 D D No Deposit Transient
## 12864 D D No Deposit Transient
## 12865 A A No Deposit Transient
## 12866 G G No Deposit Transient
## 12867 A A No Deposit Transient
## 12868 E E No Deposit Transient
## 12869 A A No Deposit Transient
## 12870 A A No Deposit Transient
## 12871 G G No Deposit Transient
## 12872 E E No Deposit Transient
## 12873 E E No Deposit Transient
## 12874 F F No Deposit Transient
## 12875 A A No Deposit Transient
## 12876 A A No Deposit Transient
## 12877 A A No Deposit Transient
## 12878 A A No Deposit Transient
## 12879 D D No Deposit Transient
## 12880 G G No Deposit Transient
## 12881 A A No Deposit Transient
## 12882 D D No Deposit Transient
## 12883 H H No Deposit Transient
## 12884 G G No Deposit Transient
## 12885 E E No Deposit Transient
## 12886 E E No Deposit Transient
## 12887 G G No Deposit Transient
## 12888 A A No Deposit Transient
## 12889 G G No Deposit Transient
## 12890 A A No Deposit Transient
## 12891 D D No Deposit Transient
## 12892 E E No Deposit Transient
## 12893 E E No Deposit Transient
## 12894 E E No Deposit Transient
## 12895 A A No Deposit Transient
## 12896 D D No Deposit Transient
## 12897 A A No Deposit Transient
## 12898 A A No Deposit Transient
## 12899 A A No Deposit Transient
## 12900 D D No Deposit Transient
## 12901 A A No Deposit Transient
## 12902 C C No Deposit Transient
## 12903 A A No Deposit Transient
## 12904 E E No Deposit Transient
## 12905 C C No Deposit Transient
## 12906 D D No Deposit Transient
## 12907 A A No Deposit Transient
## 12908 G G No Deposit Transient
## 12909 D D No Deposit Transient
## 12910 A A No Deposit Transient
## 12911 A A No Deposit Transient
## 12912 D D No Deposit Transient
## 12913 H H No Deposit Transient
## 12914 H H No Deposit Transient
## 12915 A A No Deposit Transient
## 12916 D D No Deposit Transient
## 12917 D D No Deposit Transient
## 12918 C C No Deposit Transient
## 12919 A A No Deposit Transient
## 12920 E E No Deposit Transient
## 12921 A A No Deposit Transient
## 12922 E E No Deposit Transient
## 12923 A A No Deposit Transient
## 12924 E E No Deposit Transient
## 12925 E E No Deposit Transient
## 12926 E E No Deposit Transient
## 12927 H H No Deposit Transient
## 12928 E E No Deposit Transient
## 12929 D D No Deposit Transient
## 12930 G G No Deposit Transient
## 12931 D D No Deposit Transient
## 12932 D D No Deposit Transient
## 12933 E E No Deposit Transient-Party
## 12934 D D No Deposit Transient
## 12935 A A No Deposit Transient
## 12936 A A No Deposit Transient
## 12937 D D No Deposit Transient
## 12938 E E No Deposit Transient
## 12939 G G No Deposit Transient
## 12940 A A No Deposit Transient
## 12941 G G No Deposit Transient
## 12942 A A No Deposit Transient
## 12943 G G No Deposit Transient
## 12944 E E No Deposit Transient
## 12945 E E No Deposit Transient
## 12946 D D No Deposit Transient
## 12947 A A No Deposit Transient
## 12948 D D No Deposit Transient
## 12949 E E No Deposit Transient
## 12950 A A No Deposit Transient
## 12951 G G No Deposit Transient
## 12952 G G No Deposit Transient
## 12953 A A No Deposit Transient
## 12954 E E No Deposit Contract
## 12955 A A No Deposit Transient
## 12956 A A No Deposit Transient
## 12957 D D No Deposit Transient
## 12958 A A No Deposit Transient
## 12959 A A No Deposit Transient
## 12960 D D No Deposit Transient
## 12961 D D No Deposit Transient
## 12962 D D No Deposit Transient
## 12963 E E No Deposit Transient-Party
## 12964 D D No Deposit Transient
## 12965 A A No Deposit Transient
## 12966 A A No Deposit Transient
## 12967 E E No Deposit Transient
## 12968 G G No Deposit Transient
## 12969 A A No Deposit Transient
## 12970 A A No Deposit Transient
## 12971 E E No Deposit Transient
## 12972 E E No Deposit Transient
## 12973 A A No Deposit Transient
## 12974 D D No Deposit Transient
## 12975 A A No Deposit Transient
## 12976 A A No Deposit Transient
## 12977 A A No Deposit Transient
## 12978 A A No Deposit Transient
## 12979 A A No Deposit Transient
## 12980 A A No Deposit Transient
## 12981 F F No Deposit Transient
## 12982 E E No Deposit Transient-Party
## 12983 E E No Deposit Transient
## 12984 C C No Deposit Transient-Party
## 12985 E E No Deposit Transient
## 12986 A A No Deposit Transient
## 12987 E E No Deposit Transient
## 12988 D D No Deposit Transient
## 12989 F F No Deposit Transient
## 12990 G G No Deposit Transient
## 12991 E E No Deposit Transient
## 12992 A A No Deposit Transient
## 12993 D D No Deposit Transient
## 12994 C C No Deposit Transient
## 12995 A A No Deposit Transient
## 12996 A A No Deposit Transient
## 12997 A A No Deposit Transient
## 12998 A A No Deposit Transient
## 12999 A A No Deposit Transient
## 13000 G G No Deposit Transient
## 13001 A A No Deposit Transient
## 13002 A A No Deposit Transient
## 13003 E E No Deposit Transient
## 13004 G G No Deposit Transient
## 13005 D D No Deposit Contract
## 13006 A A No Deposit Transient
## 13007 E E No Deposit Transient
## 13008 A A No Deposit Transient
## 13009 E E No Deposit Transient
## 13010 E E No Deposit Transient
## 13011 G G No Deposit Transient
## 13012 C C No Deposit Transient
## 13013 D D No Deposit Transient
## 13014 A A No Deposit Transient
## 13015 D D No Deposit Transient
## 13016 A A No Deposit Transient
## 13017 C C No Deposit Transient
## 13018 A A No Deposit Transient
## 13019 A A No Deposit Transient
## 13020 H H No Deposit Transient
## 13021 A A No Deposit Transient
## 13022 C C No Deposit Transient
## 13023 E E No Deposit Transient
## 13024 H H No Deposit Transient
## 13025 E E No Deposit Transient
## 13026 A A No Deposit Transient
## 13027 A A No Deposit Transient
## 13028 C C No Deposit Transient
## 13029 A A No Deposit Transient
## 13030 A A No Deposit Transient
## 13031 D D No Deposit Transient
## 13032 A A No Deposit Transient
## 13033 H H No Deposit Transient
## 13034 E E No Deposit Transient
## 13035 A A No Deposit Transient
## 13036 E E No Deposit Transient
## 13037 E E No Deposit Transient
## 13038 C C No Deposit Transient
## 13039 H H No Deposit Transient
## 13040 A A No Deposit Transient
## 13041 A A No Deposit Transient
## 13042 D D No Deposit Transient
## 13043 C C No Deposit Transient
## 13044 D D No Deposit Transient
## 13045 D D No Deposit Transient
## 13046 G G No Deposit Transient
## 13047 E E No Deposit Transient
## 13048 H H No Deposit Transient
## 13049 H H No Deposit Transient
## 13050 C C No Deposit Transient
## 13051 E E No Deposit Transient
## 13052 E E No Deposit Transient
## 13053 A A No Deposit Transient
## 13054 E E No Deposit Transient
## 13055 A A No Deposit Transient
## 13056 A A No Deposit Transient
## 13057 G G No Deposit Transient
## 13058 A A No Deposit Transient
## 13059 D D No Deposit Transient
## 13060 E E No Deposit Transient
## 13061 G G No Deposit Transient
## 13062 A A No Deposit Transient
## 13063 A A No Deposit Transient
## 13064 C C No Deposit Transient
## 13065 G G No Deposit Transient
## 13066 A A No Deposit Transient
## 13067 F F No Deposit Transient
## 13068 G G No Deposit Transient
## 13069 G G No Deposit Transient
## 13070 A A No Deposit Transient
## 13071 A A No Deposit Transient
## 13072 E E No Deposit Transient
## 13073 D D No Deposit Transient
## 13074 A A No Deposit Transient
## 13075 A A No Deposit Transient
## 13076 E E No Deposit Transient
## 13077 F F No Deposit Transient
## 13078 G G No Deposit Transient
## 13079 F F No Deposit Transient
## 13080 E E No Deposit Transient
## 13081 E E No Deposit Transient
## 13082 E E No Deposit Transient
## 13083 H H No Deposit Transient
## 13084 E E No Deposit Transient
## 13085 E E No Deposit Transient
## 13086 D D No Deposit Transient
## 13087 A A No Deposit Transient
## 13088 A A No Deposit Transient
## 13089 E E No Deposit Transient
## 13090 D D No Deposit Transient
## 13091 A A No Deposit Transient
## 13092 E E No Deposit Transient
## 13093 C C No Deposit Transient
## 13094 H H No Deposit Transient
## 13095 A A No Deposit Transient
## 13096 E E No Deposit Transient
## 13097 A A No Deposit Transient
## 13098 D D No Deposit Transient
## 13099 A A No Deposit Transient
## 13100 E E No Deposit Transient
## 13101 E E No Deposit Transient
## 13102 E E No Deposit Transient
## 13103 D D No Deposit Transient
## 13104 A A No Deposit Transient
## 13105 C C No Deposit Transient
## 13106 A A No Deposit Transient
## 13107 D D No Deposit Transient
## 13108 E E No Deposit Transient
## 13109 A A No Deposit Transient
## 13110 E E No Deposit Transient
## 13111 E E No Deposit Transient
## 13112 A A No Deposit Transient
## 13113 G G No Deposit Transient
## 13114 D D No Deposit Transient
## 13115 D D No Deposit Transient
## 13116 D D No Deposit Transient
## 13117 A A No Deposit Transient
## 13118 A A No Deposit Transient
## 13119 A A No Deposit Transient
## 13120 A A No Deposit Transient
## 13121 A A No Deposit Transient
## 13122 E E No Deposit Transient
## 13123 A A No Deposit Transient
## 13124 A A No Deposit Transient
## 13125 D D No Deposit Transient
## 13126 D D No Deposit Transient
## 13127 E E No Deposit Transient
## 13128 A A No Deposit Transient
## 13129 C C No Deposit Transient
## 13130 H H No Deposit Transient
## 13131 E E No Deposit Transient
## 13132 A A No Deposit Transient
## 13133 A A No Deposit Transient
## 13134 C C No Deposit Transient
## 13135 A A No Deposit Transient
## 13136 D D No Deposit Transient
## 13137 G G No Deposit Transient
## 13138 D D No Deposit Transient
## 13139 D D No Deposit Transient
## 13140 D D No Deposit Transient
## 13141 A A No Deposit Transient
## 13142 A A No Deposit Transient
## 13143 A A No Deposit Transient
## 13144 C C No Deposit Transient
## 13145 C C No Deposit Transient
## 13146 G G No Deposit Transient
## 13147 G G No Deposit Transient
## 13148 D D No Deposit Transient
## 13149 D D No Deposit Transient
## 13150 G G No Deposit Transient
## 13151 A A No Deposit Transient
## 13152 A A No Deposit Transient
## 13153 A A No Deposit Transient
## 13154 D D No Deposit Transient
## 13155 D D No Deposit Transient
## 13156 A A No Deposit Transient
## 13157 A A No Deposit Transient
## 13158 A A No Deposit Transient
## 13159 A A No Deposit Transient
## 13160 D D Refundable Transient
## 13161 A A No Deposit Transient
## 13162 A A No Deposit Transient
## 13163 D D No Deposit Transient
## 13164 A A No Deposit Transient
## 13165 A A No Deposit Transient
## 13166 A A No Deposit Transient
## 13167 A A No Deposit Transient
## 13168 A A No Deposit Transient
## 13169 D D No Deposit Transient
## 13170 A A No Deposit Transient
## 13171 A A No Deposit Transient
## 13172 E E No Deposit Transient
## 13173 A A No Deposit Transient
## 13174 A A No Deposit Transient
## 13175 A A No Deposit Transient
## 13176 C C No Deposit Transient
## 13177 E E No Deposit Transient
## 13178 A A No Deposit Transient
## 13179 A A No Deposit Transient
## 13180 D D No Deposit Transient
## 13181 D D No Deposit Transient
## 13182 E E No Deposit Transient
## 13183 A F No Deposit Transient
## 13184 A A No Deposit Transient
## 13185 A A No Deposit Transient
## 13186 D D No Deposit Transient
## 13187 A A No Deposit Transient
## 13188 A A No Deposit Transient
## 13189 A A No Deposit Transient
## 13190 A A No Deposit Transient
## 13191 D D No Deposit Transient
## 13192 A A No Deposit Transient
## 13193 D D No Deposit Transient
## 13194 A A No Deposit Transient
## 13195 A A No Deposit Transient
## 13196 G G No Deposit Transient
## 13197 D D No Deposit Transient
## 13198 G G No Deposit Transient
## 13199 E E No Deposit Transient
## 13200 C C No Deposit Transient
## 13201 E E No Deposit Transient
## 13202 A A No Deposit Transient
## 13203 C C No Deposit Transient
## 13204 E E No Deposit Transient
## 13205 C C No Deposit Transient
## 13206 A A No Deposit Transient
## 13207 A A No Deposit Transient
## 13208 A A No Deposit Transient
## 13209 E E No Deposit Transient
## 13210 E E No Deposit Transient
## 13211 D D No Deposit Transient
## 13212 D D No Deposit Transient
## 13213 G G Non Refund Transient
## 13214 D D No Deposit Transient
## 13215 C C No Deposit Transient
## 13216 A A No Deposit Transient
## 13217 D D No Deposit Transient
## 13218 A A No Deposit Transient
## 13219 A A No Deposit Transient
## 13220 G G No Deposit Transient
## 13221 A A No Deposit Transient
## 13222 A A No Deposit Transient
## 13223 D D No Deposit Transient
## 13224 G G No Deposit Transient
## 13225 D D No Deposit Transient
## 13226 C C No Deposit Transient
## 13227 A A No Deposit Transient
## 13228 C C No Deposit Transient
## 13229 A A No Deposit Transient
## 13230 A A No Deposit Transient
## 13231 G G No Deposit Transient
## 13232 A A No Deposit Transient
## 13233 A A No Deposit Transient
## 13234 A A No Deposit Transient
## 13235 H H No Deposit Transient
## 13236 A A No Deposit Transient
## 13237 A A No Deposit Transient
## 13238 A A No Deposit Transient
## 13239 E E No Deposit Transient
## 13240 E E No Deposit Transient
## 13241 E E No Deposit Transient
## 13242 D D No Deposit Transient
## 13243 D D No Deposit Transient
## 13244 D D No Deposit Transient
## 13245 E E No Deposit Transient
## 13246 D D No Deposit Transient
## 13247 E E No Deposit Transient
## 13248 C C No Deposit Transient
## 13249 D D No Deposit Transient
## 13250 D D No Deposit Transient
## 13251 D D No Deposit Transient
## 13252 D D No Deposit Transient
## 13253 D D No Deposit Transient
## 13254 A A No Deposit Transient
## 13255 D D No Deposit Transient
## 13256 E E No Deposit Transient
## 13257 A A No Deposit Transient
## 13258 E E No Deposit Transient
## 13259 A A No Deposit Transient
## 13260 D D No Deposit Transient
## 13261 D D No Deposit Transient
## 13262 E E No Deposit Transient
## 13263 E E No Deposit Transient
## 13264 A A No Deposit Transient
## 13265 A A No Deposit Transient
## 13266 E E No Deposit Transient
## 13267 D D No Deposit Transient
## 13268 A A No Deposit Transient
## 13269 D D No Deposit Transient
## 13270 D D No Deposit Transient
## 13271 E E No Deposit Transient
## 13272 A A No Deposit Transient
## 13273 H H No Deposit Transient
## 13274 E E No Deposit Transient
## 13275 G G No Deposit Transient
## 13276 E E No Deposit Transient
## 13277 D D No Deposit Transient
## 13278 D D No Deposit Transient
## 13279 D D No Deposit Transient
## 13280 C C No Deposit Transient
## 13281 A A No Deposit Transient
## 13282 C C No Deposit Transient
## 13283 F F No Deposit Transient
## 13284 A A No Deposit Transient
## 13285 C C No Deposit Transient
## 13286 A A No Deposit Transient
## 13287 E E No Deposit Transient
## 13288 A A No Deposit Transient
## 13289 E E No Deposit Transient
## 13290 E E No Deposit Transient
## 13291 D D No Deposit Transient
## 13292 D D No Deposit Transient
## 13293 A A No Deposit Transient
## 13294 D D No Deposit Transient
## 13295 A A No Deposit Transient
## 13296 A A No Deposit Transient
## 13297 A A No Deposit Transient-Party
## 13298 A A No Deposit Transient
## 13299 A A No Deposit Transient
## 13300 A A No Deposit Transient
## 13301 A A No Deposit Transient
## 13302 A A No Deposit Transient
## 13303 A A No Deposit Transient
## 13304 A A No Deposit Transient
## 13305 D D No Deposit Transient
## 13306 G G No Deposit Transient
## 13307 D D No Deposit Contract
## 13308 G G No Deposit Transient
## 13309 D D No Deposit Transient
## 13310 C C No Deposit Transient
## 13311 A A No Deposit Transient
## 13312 E E No Deposit Transient
## 13313 D D No Deposit Transient
## 13314 A A No Deposit Transient
## 13315 F F No Deposit Transient
## 13316 A A No Deposit Transient
## 13317 H H No Deposit Transient
## 13318 D D No Deposit Transient
## 13319 A A No Deposit Transient
## 13320 E E No Deposit Transient
## 13321 A A No Deposit Contract
## 13322 F F No Deposit Transient
## 13323 G G No Deposit Transient
## 13324 F F No Deposit Transient
## 13325 D D No Deposit Contract
## 13326 E E No Deposit Transient
## 13327 A A No Deposit Transient
## 13328 C C No Deposit Transient
## 13329 A A No Deposit Transient
## 13330 A A No Deposit Transient
## 13331 A A No Deposit Transient
## 13332 E E No Deposit Group
## 13333 A A No Deposit Transient
## 13334 A A No Deposit Transient
## 13335 E E No Deposit Transient
## 13336 G G No Deposit Transient
## 13337 E E No Deposit Transient
## 13338 A A No Deposit Contract
## 13339 C C No Deposit Transient
## 13340 A A No Deposit Contract
## 13341 C C No Deposit Transient
## 13342 A A No Deposit Transient
## 13343 A A No Deposit Transient
## 13344 D D No Deposit Transient
## 13345 E E No Deposit Transient
## 13346 A A No Deposit Transient
## 13347 C C No Deposit Transient
## 13348 A A No Deposit Transient
## 13349 A A No Deposit Transient
## 13350 E E No Deposit Transient
## 13351 G G No Deposit Transient
## 13352 A A No Deposit Transient
## 13353 A A No Deposit Transient
## 13354 A A No Deposit Transient
## 13355 D D No Deposit Transient
## 13356 A A No Deposit Transient
## 13357 D D No Deposit Transient
## 13358 A A No Deposit Transient
## 13359 G G No Deposit Transient
## 13360 D D No Deposit Transient
## 13361 D D No Deposit Transient
## 13362 A A No Deposit Transient
## 13363 A A No Deposit Transient
## 13364 A A No Deposit Transient
## 13365 D D No Deposit Transient
## 13366 G G No Deposit Transient
## 13367 H H No Deposit Transient
## 13368 A A No Deposit Transient
## 13369 C C No Deposit Transient
## 13370 A A No Deposit Transient
## 13371 A A No Deposit Transient
## 13372 C C No Deposit Transient
## 13373 D D No Deposit Transient
## 13374 A A No Deposit Transient
## 13375 A A No Deposit Transient
## 13376 A A No Deposit Transient
## 13377 A A No Deposit Transient
## 13378 A A No Deposit Transient
## 13379 E E No Deposit Transient
## 13380 A A No Deposit Transient
## 13381 A A No Deposit Transient
## 13382 E E No Deposit Transient
## 13383 D D No Deposit Transient
## 13384 D D No Deposit Transient
## 13385 D D No Deposit Transient
## 13386 A A No Deposit Transient
## 13387 D D No Deposit Transient
## 13388 A A No Deposit Transient
## 13389 D D No Deposit Transient
## 13390 A A No Deposit Transient
## 13391 A A No Deposit Transient
## 13392 H H No Deposit Transient
## 13393 A A No Deposit Transient
## 13394 D D No Deposit Transient
## 13395 H H No Deposit Transient
## 13396 G G No Deposit Transient
## 13397 A A No Deposit Transient
## 13398 A A No Deposit Transient
## 13399 A A No Deposit Transient
## 13400 D D No Deposit Contract
## 13401 D D No Deposit Contract
## 13402 D D No Deposit Transient
## 13403 A A No Deposit Transient
## 13404 A A No Deposit Transient
## 13405 D D No Deposit Transient
## 13406 A A No Deposit Transient
## 13407 H H No Deposit Transient
## 13408 E E No Deposit Transient
## 13409 A B No Deposit Transient
## 13410 D D No Deposit Transient
## 13411 D D No Deposit Transient
## 13412 A A No Deposit Transient
## 13413 D D No Deposit Transient
## 13414 H H No Deposit Transient
## 13415 F F No Deposit Transient
## 13416 D D No Deposit Transient
## 13417 D D No Deposit Transient
## 13418 A A No Deposit Transient
## 13419 A A No Deposit Transient
## 13420 D D No Deposit Transient
## 13421 D D No Deposit Transient
## 13422 H H No Deposit Transient
## 13423 D D No Deposit Transient
## 13424 D C No Deposit Transient
## 13425 D D No Deposit Transient
## 13426 E E No Deposit Transient
## 13427 A A No Deposit Transient
## 13428 D D No Deposit Transient
## 13429 H H No Deposit Transient
## 13430 G G No Deposit Transient
## 13431 A A No Deposit Transient
## 13432 G G No Deposit Transient
## 13433 A A No Deposit Transient
## 13434 C C No Deposit Transient
## 13435 A A No Deposit Transient
## 13436 D D No Deposit Transient
## 13437 A A No Deposit Transient
## 13438 A A No Deposit Transient
## 13439 G G No Deposit Transient
## 13440 A A No Deposit Transient
## 13441 A A No Deposit Transient
## 13442 E E No Deposit Transient
## 13443 A A No Deposit Transient
## 13444 A A No Deposit Transient
## 13445 C C No Deposit Transient
## 13446 C C No Deposit Transient
## 13447 D D No Deposit Transient
## 13448 A A No Deposit Transient
## 13449 E E No Deposit Transient
## 13450 E E No Deposit Transient
## 13451 A A No Deposit Transient
## 13452 A A No Deposit Contract
## 13453 A A No Deposit Transient-Party
## 13454 G G No Deposit Transient
## 13455 A A No Deposit Transient-Party
## 13456 A A No Deposit Transient
## 13457 F F No Deposit Transient
## 13458 H H No Deposit Transient
## 13459 A A No Deposit Group
## 13460 A A No Deposit Transient
## 13461 A A No Deposit Transient
## 13462 D D No Deposit Transient
## 13463 A A No Deposit Transient
## 13464 D D No Deposit Transient
## 13465 A A No Deposit Transient
## 13466 A A No Deposit Transient
## 13467 D D No Deposit Transient
## 13468 F F No Deposit Transient
## 13469 A A No Deposit Transient
## 13470 C C No Deposit Transient
## 13471 A A No Deposit Transient
## 13472 A A No Deposit Transient
## 13473 A A No Deposit Transient
## 13474 F F No Deposit Transient
## 13475 A A No Deposit Transient
## 13476 A A No Deposit Transient
## 13477 A A No Deposit Transient
## 13478 C C No Deposit Transient
## 13479 A A No Deposit Transient
## 13480 F F No Deposit Transient
## 13481 G G No Deposit Transient
## 13482 G G No Deposit Transient
## 13483 F F No Deposit Transient
## 13484 D D No Deposit Transient
## 13485 G G No Deposit Transient
## 13486 E E No Deposit Transient
## 13487 F F No Deposit Transient
## 13488 A A No Deposit Transient-Party
## 13489 A A No Deposit Contract
## 13490 A A No Deposit Transient
## 13491 A A No Deposit Transient-Party
## 13492 A A No Deposit Transient
## 13493 D D No Deposit Transient
## 13494 D D No Deposit Transient
## 13495 E E No Deposit Transient
## 13496 E E No Deposit Transient
## 13497 E E No Deposit Transient
## 13498 E E No Deposit Transient
## 13499 G G No Deposit Transient
## 13500 A A No Deposit Transient
## 13501 A A No Deposit Transient
## 13502 A A No Deposit Transient
## 13503 G G No Deposit Transient
## 13504 E E No Deposit Transient
## 13505 A A No Deposit Transient
## 13506 E E No Deposit Transient
## 13507 D D No Deposit Transient
## 13508 G G No Deposit Transient
## 13509 A A No Deposit Transient
## 13510 D D No Deposit Transient
## 13511 E E No Deposit Transient
## 13512 D D No Deposit Transient
## 13513 E E No Deposit Transient
## 13514 A A No Deposit Transient
## 13515 A A No Deposit Transient
## 13516 A A No Deposit Transient
## 13517 D D No Deposit Transient
## 13518 A A No Deposit Transient
## 13519 D D No Deposit Transient
## 13520 E E No Deposit Transient
## 13521 E E No Deposit Transient
## 13522 G G No Deposit Transient
## 13523 D D No Deposit Transient
## 13524 G G No Deposit Transient
## 13525 E E No Deposit Transient
## 13526 F F No Deposit Transient
## 13527 F F No Deposit Transient
## 13528 D D No Deposit Transient
## 13529 D D No Deposit Transient
## 13530 D D No Deposit Transient
## 13531 C C No Deposit Transient
## 13532 E E No Deposit Transient
## 13533 D D No Deposit Transient
## 13534 A A No Deposit Transient
## 13535 A A No Deposit Transient
## 13536 D D No Deposit Transient
## 13537 A A No Deposit Transient
## 13538 E E No Deposit Transient
## 13539 E E No Deposit Transient
## 13540 E E No Deposit Transient
## 13541 E E No Deposit Transient
## 13542 E E No Deposit Transient
## 13543 E E No Deposit Transient
## 13544 H H No Deposit Transient
## 13545 A A No Deposit Transient
## 13546 C C No Deposit Transient
## 13547 A A No Deposit Transient
## 13548 E E No Deposit Transient
## 13549 D D No Deposit Transient
## 13550 A A No Deposit Transient
## 13551 A A No Deposit Transient
## 13552 A A No Deposit Transient
## 13553 A A No Deposit Transient-Party
## 13554 A A No Deposit Transient-Party
## 13555 E E No Deposit Transient-Party
## 13556 D D No Deposit Transient
## 13557 A A No Deposit Transient
## 13558 A A No Deposit Transient-Party
## 13559 A A No Deposit Transient-Party
## 13560 H H No Deposit Transient
## 13561 G G No Deposit Transient
## 13562 G G No Deposit Transient
## 13563 D D No Deposit Transient
## 13564 E E No Deposit Transient
## 13565 A A No Deposit Transient
## 13566 A A No Deposit Transient
## 13567 A A No Deposit Transient
## 13568 D D No Deposit Transient
## 13569 A A No Deposit Transient
## 13570 E E No Deposit Transient
## 13571 E E No Deposit Transient
## 13572 A A No Deposit Transient
## 13573 H H No Deposit Transient
## 13574 E E No Deposit Transient
## 13575 E E No Deposit Transient
## 13576 D D No Deposit Transient
## 13577 A A No Deposit Transient
## 13578 D D No Deposit Transient
## 13579 F D No Deposit Transient
## 13580 E E No Deposit Transient
## 13581 E E No Deposit Transient
## 13582 D D No Deposit Transient
## 13583 D D No Deposit Transient
## 13584 A A No Deposit Transient
## 13585 C C No Deposit Transient
## 13586 E E No Deposit Transient
## 13587 A A No Deposit Contract
## 13588 A A No Deposit Transient
## 13589 H H No Deposit Transient
## 13590 A A No Deposit Transient
## 13591 E E No Deposit Transient
## 13592 G G No Deposit Transient
## 13593 H H No Deposit Transient
## 13594 A A No Deposit Transient
## 13595 G G No Deposit Transient
## 13596 A A No Deposit Transient
## 13597 A A No Deposit Transient
## 13598 A A No Deposit Transient
## 13599 A A No Deposit Transient
## 13600 A A No Deposit Transient
## 13601 A A No Deposit Transient
## 13602 A A No Deposit Transient
## 13603 A A No Deposit Transient
## 13604 A A No Deposit Transient
## 13605 E E No Deposit Transient
## 13606 D D No Deposit Transient
## 13607 A A No Deposit Transient
## 13608 C C No Deposit Transient
## 13609 A A No Deposit Transient
## 13610 C C No Deposit Transient
## 13611 C C No Deposit Transient
## 13612 D E No Deposit Transient
## 13613 C C No Deposit Transient
## 13614 A A No Deposit Transient
## 13615 F F No Deposit Transient
## 13616 D D No Deposit Transient
## 13617 C C No Deposit Transient
## 13618 D D No Deposit Transient
## 13619 E E No Deposit Transient
## 13620 E E No Deposit Transient
## 13621 A A No Deposit Transient
## 13622 A A No Deposit Transient
## 13623 E E No Deposit Transient
## 13624 E E No Deposit Transient
## 13625 A A No Deposit Transient
## 13626 D D No Deposit Transient
## 13627 D D No Deposit Transient
## 13628 D D No Deposit Transient
## 13629 A A No Deposit Transient
## 13630 A A Non Refund Transient
## 13631 A A Non Refund Transient
## 13632 A A Non Refund Transient
## 13633 A A Non Refund Transient
## 13634 A A Non Refund Transient
## 13635 A A No Deposit Transient
## 13636 A A Non Refund Transient
## 13637 A A Non Refund Transient
## 13638 A A Non Refund Transient
## 13639 A A No Deposit Transient
## 13640 D D No Deposit Transient
## 13641 A A No Deposit Transient
## 13642 E E No Deposit Transient
## 13643 A A Non Refund Transient
## 13644 A A Non Refund Transient
## 13645 E E No Deposit Transient
## 13646 A A No Deposit Transient
## 13647 C C No Deposit Transient
## 13648 E E No Deposit Transient
## 13649 A A No Deposit Transient
## 13650 A A No Deposit Transient
## 13651 A A No Deposit Transient
## 13652 A A No Deposit Transient
## 13653 A A No Deposit Transient
## 13654 C C No Deposit Transient
## 13655 A A No Deposit Transient
## 13656 A A No Deposit Transient
## 13657 A A No Deposit Transient
## 13658 A A No Deposit Transient
## 13659 A A No Deposit Transient
## 13660 E E No Deposit Transient
## 13661 C C No Deposit Transient
## 13662 C C No Deposit Transient
## 13663 C C No Deposit Transient
## 13664 A A No Deposit Transient
## 13665 A A No Deposit Transient
## 13666 G G No Deposit Transient
## 13667 A A No Deposit Transient
## 13668 A A No Deposit Transient
## 13669 A A No Deposit Transient
## 13670 A A No Deposit Transient
## 13671 C C No Deposit Transient
## 13672 A A No Deposit Transient
## 13673 H H No Deposit Transient
## 13674 G G No Deposit Transient
## 13675 A A No Deposit Transient
## 13676 D D No Deposit Transient
## 13677 E E No Deposit Transient
## 13678 G G No Deposit Transient
## 13679 G G No Deposit Transient-Party
## 13680 A A No Deposit Transient
## 13681 G G No Deposit Transient-Party
## 13682 A A No Deposit Transient
## 13683 D D No Deposit Contract
## 13684 C C No Deposit Transient
## 13685 D D No Deposit Contract
## 13686 E E No Deposit Transient
## 13687 G G No Deposit Transient
## 13688 C C No Deposit Transient
## 13689 D D No Deposit Transient
## 13690 C C No Deposit Transient
## 13691 A A No Deposit Transient
## 13692 D D No Deposit Transient
## 13693 G G No Deposit Transient
## 13694 C C No Deposit Transient
## 13695 A A No Deposit Transient
## 13696 C C No Deposit Transient
## 13697 G G No Deposit Transient
## 13698 D D No Deposit Transient
## 13699 A A No Deposit Transient
## 13700 E E No Deposit Transient
## 13701 F F No Deposit Transient
## 13702 A A No Deposit Transient
## 13703 D D No Deposit Transient
## 13704 E E No Deposit Transient
## 13705 A A No Deposit Transient
## 13706 D D No Deposit Transient-Party
## 13707 G G No Deposit Transient
## 13708 G G No Deposit Transient
## 13709 D D No Deposit Transient
## 13710 A A No Deposit Transient
## 13711 A A No Deposit Transient
## 13712 E E No Deposit Transient
## 13713 E E No Deposit Transient
## 13714 A A No Deposit Transient
## 13715 G G No Deposit Transient
## 13716 F F No Deposit Transient
## 13717 F F No Deposit Transient
## 13718 E E No Deposit Transient
## 13719 E E No Deposit Transient
## 13720 E E No Deposit Transient
## 13721 A A No Deposit Transient
## 13722 E E No Deposit Transient
## 13723 A A No Deposit Transient
## 13724 A A No Deposit Transient
## 13725 E E No Deposit Transient
## 13726 A A No Deposit Transient
## 13727 A A No Deposit Transient
## 13728 E E No Deposit Transient
## 13729 A A No Deposit Transient
## 13730 A A No Deposit Transient
## 13731 A A No Deposit Transient
## 13732 A A No Deposit Transient
## 13733 A A No Deposit Transient
## 13734 E E No Deposit Transient
## 13735 D D No Deposit Contract
## 13736 A A No Deposit Transient
## 13737 D D No Deposit Transient
## 13738 A A No Deposit Transient
## 13739 E E No Deposit Transient
## 13740 A A No Deposit Transient
## 13741 G G No Deposit Transient
## 13742 D D No Deposit Transient
## 13743 E E No Deposit Transient
## 13744 D D No Deposit Transient
## 13745 A A No Deposit Transient
## 13746 G G No Deposit Transient
## 13747 D D No Deposit Transient
## 13748 E E Refundable Transient
## 13749 D D No Deposit Transient
## 13750 A A No Deposit Transient
## 13751 C C No Deposit Transient
## 13752 D D No Deposit Transient
## 13753 A A No Deposit Transient
## 13754 D D No Deposit Transient
## 13755 A A No Deposit Transient
## 13756 D D No Deposit Transient
## 13757 D D No Deposit Transient
## 13758 D D No Deposit Transient
## 13759 A A No Deposit Transient
## 13760 A A No Deposit Transient
## 13761 H H No Deposit Transient
## 13762 E E No Deposit Group
## 13763 D D No Deposit Transient
## 13764 A A No Deposit Transient
## 13765 E E No Deposit Transient
## 13766 A C No Deposit Transient
## 13767 A A No Deposit Transient
## 13768 D D No Deposit Transient
## 13769 A A No Deposit Transient
## 13770 A A No Deposit Transient
## 13771 G G No Deposit Transient
## 13772 A A No Deposit Transient
## 13773 D D No Deposit Group
## 13774 C C No Deposit Transient
## 13775 E E No Deposit Transient
## 13776 D D No Deposit Contract
## 13777 A A No Deposit Transient
## 13778 D D No Deposit Transient
## 13779 D D No Deposit Group
## 13780 D D No Deposit Group
## 13781 D D No Deposit Transient
## 13782 C C No Deposit Transient
## 13783 A A No Deposit Transient
## 13784 C C No Deposit Transient
## 13785 A A No Deposit Transient
## 13786 C C No Deposit Transient
## 13787 A A No Deposit Transient
## 13788 A A No Deposit Transient
## 13789 D D No Deposit Transient
## 13790 A A No Deposit Transient-Party
## 13791 G G No Deposit Transient
## 13792 A A No Deposit Transient
## 13793 A A No Deposit Transient-Party
## 13794 A A No Deposit Transient
## 13795 A A No Deposit Transient
## 13796 D D No Deposit Transient
## 13797 E E No Deposit Transient
## 13798 C C No Deposit Transient
## 13799 D D No Deposit Transient
## 13800 A A No Deposit Transient
## 13801 E E No Deposit Transient
## 13802 A A No Deposit Transient
## 13803 G G No Deposit Transient
## 13804 A D No Deposit Transient
## 13805 A A No Deposit Transient
## 13806 A A No Deposit Transient
## 13807 A A No Deposit Transient
## 13808 A D No Deposit Transient
## 13809 A D No Deposit Transient
## 13810 A A No Deposit Transient
## 13811 E E No Deposit Transient
## 13812 E E No Deposit Transient
## 13813 A D No Deposit Transient
## 13814 A D No Deposit Transient
## 13815 A A No Deposit Transient
## 13816 A A No Deposit Transient
## 13817 A D No Deposit Transient
## 13818 A A No Deposit Transient-Party
## 13819 A D No Deposit Transient
## 13820 A D No Deposit Transient
## 13821 A D No Deposit Transient
## 13822 A E No Deposit Transient
## 13823 A A No Deposit Transient
## 13824 A D No Deposit Transient
## 13825 A A No Deposit Transient
## 13826 A A No Deposit Transient
## 13827 A A No Deposit Transient
## 13828 A A No Deposit Transient
## 13829 A D No Deposit Transient
## 13830 A A No Deposit Transient
## 13831 A A No Deposit Transient
## 13832 A D No Deposit Transient
## 13833 A D No Deposit Transient
## 13834 A A No Deposit Transient
## 13835 A G No Deposit Transient
## 13836 A D No Deposit Transient-Party
## 13837 A D No Deposit Transient
## 13838 A D No Deposit Transient
## 13839 E E No Deposit Transient
## 13840 E E No Deposit Transient
## 13841 A A No Deposit Transient
## 13842 A C No Deposit Transient
## 13843 E E No Deposit Transient
## 13844 A A No Deposit Transient
## 13845 D D No Deposit Transient
## 13846 E E No Deposit Transient
## 13847 A E No Deposit Transient
## 13848 A A No Deposit Transient
## 13849 E E No Deposit Transient
## 13850 E E No Deposit Transient
## 13851 E E No Deposit Transient
## 13852 E E No Deposit Transient
## 13853 E E No Deposit Transient
## 13854 A D No Deposit Transient
## 13855 A A No Deposit Transient
## 13856 A A No Deposit Transient
## 13857 A A No Deposit Transient
## 13858 A A No Deposit Transient
## 13859 A D No Deposit Transient
## 13860 F F No Deposit Transient
## 13861 E F No Deposit Transient
## 13862 F F No Deposit Transient
## 13863 D D No Deposit Transient
## 13864 G G No Deposit Transient
## 13865 E E No Deposit Transient
## 13866 A D No Deposit Transient
## 13867 A D No Deposit Transient
## 13868 A C No Deposit Transient
## 13869 A D No Deposit Transient
## 13870 A D No Deposit Transient
## 13871 A D No Deposit Transient
## 13872 A D No Deposit Transient
## 13873 E E No Deposit Transient
## 13874 A A No Deposit Transient
## 13875 A D No Deposit Transient
## 13876 A A No Deposit Transient
## 13877 A A No Deposit Transient
## 13878 A E No Deposit Transient
## 13879 A G No Deposit Transient
## 13880 A A No Deposit Transient
## 13881 A D No Deposit Transient
## 13882 A A No Deposit Transient
## 13883 A D No Deposit Transient
## 13884 A F No Deposit Transient
## 13885 G G No Deposit Transient
## 13886 G G No Deposit Transient
## 13887 A A No Deposit Transient
## 13888 D G No Deposit Transient
## 13889 F H No Deposit Transient
## 13890 F I No Deposit Transient
## 13891 A H No Deposit Transient
## 13892 A D No Deposit Transient
## 13893 A C No Deposit Transient
## 13894 A A No Deposit Transient
## 13895 A A No Deposit Transient
## 13896 A F No Deposit Transient
## 13897 A E No Deposit Transient
## 13898 A E No Deposit Transient
## 13899 A E No Deposit Transient
## 13900 A E No Deposit Transient
## 13901 A C No Deposit Transient
## 13902 A A No Deposit Transient
## 13903 A H No Deposit Transient
## 13904 A D No Deposit Transient
## 13905 A E No Deposit Transient
## 13906 A G No Deposit Transient
## 13907 A D No Deposit Transient
## 13908 A A No Deposit Transient
## 13909 A A No Deposit Transient
## 13910 E E No Deposit Transient
## 13911 F F No Deposit Transient
## 13912 C I No Deposit Transient
## 13913 A A No Deposit Transient
## 13914 A A No Deposit Transient
## 13915 A A No Deposit Transient
## 13916 A A No Deposit Transient
## 13917 A D No Deposit Transient
## 13918 A D No Deposit Transient
## 13919 A A No Deposit Transient
## 13920 A A No Deposit Transient
## 13921 A D No Deposit Transient
## 13922 A D No Deposit Transient
## 13923 A A No Deposit Transient
## 13924 A C No Deposit Transient
## 13925 A D No Deposit Transient
## 13926 A A No Deposit Transient
## 13927 A D No Deposit Transient
## 13928 E E No Deposit Transient
## 13929 A A No Deposit Transient
## 13930 A A No Deposit Transient
## 13931 D D No Deposit Transient-Party
## 13932 G F No Deposit Transient
## 13933 G G No Deposit Transient
## 13934 E E No Deposit Transient
## 13935 G G No Deposit Transient
## 13936 E E No Deposit Transient
## 13937 A C No Deposit Transient
## 13938 E E No Deposit Transient
## 13939 E E No Deposit Transient
## 13940 A A No Deposit Transient
## 13941 A A No Deposit Transient
## 13942 A A No Deposit Transient
## 13943 A A No Deposit Transient
## 13944 A A No Deposit Transient
## 13945 A A No Deposit Transient
## 13946 A D No Deposit Transient
## 13947 A G No Deposit Transient
## 13948 A A No Deposit Transient
## 13949 A D No Deposit Transient
## 13950 A E No Deposit Transient
## 13951 A A No Deposit Transient
## 13952 A E No Deposit Transient
## 13953 A A No Deposit Transient
## 13954 A E No Deposit Transient
## 13955 A D No Deposit Transient
## 13956 A H No Deposit Transient
## 13957 A E No Deposit Transient
## 13958 A E No Deposit Transient
## 13959 A D No Deposit Transient
## 13960 A G No Deposit Transient
## 13961 A E No Deposit Transient
## 13962 A E No Deposit Transient
## 13963 A A No Deposit Transient
## 13964 A D No Deposit Transient
## 13965 A D No Deposit Transient
## 13966 A D No Deposit Transient
## 13967 E E No Deposit Transient
## 13968 A A No Deposit Transient
## 13969 E E No Deposit Transient
## 13970 E E No Deposit Transient
## 13971 A E No Deposit Transient
## 13972 E E No Deposit Transient
## 13973 A C No Deposit Transient
## 13974 A A No Deposit Transient
## 13975 A G No Deposit Transient
## 13976 A E No Deposit Transient
## 13977 A D No Deposit Transient
## 13978 A A No Deposit Transient
## 13979 A D No Deposit Group
## 13980 A A No Deposit Transient
## 13981 A C No Deposit Transient
## 13982 A D No Deposit Transient
## 13983 A A No Deposit Transient
## 13984 A D No Deposit Transient
## 13985 A A No Deposit Transient-Party
## 13986 A A No Deposit Transient
## 13987 A A No Deposit Transient
## 13988 G G No Deposit Transient
## 13989 A A No Deposit Transient
## 13990 A A No Deposit Transient
## 13991 A A No Deposit Transient
## 13992 G G No Deposit Transient
## 13993 A E No Deposit Transient
## 13994 G H No Deposit Transient
## 13995 A E No Deposit Transient
## 13996 G G No Deposit Transient
## 13997 A A No Deposit Transient
## 13998 A E No Deposit Transient-Party
## 13999 E E No Deposit Transient
## 14000 A A No Deposit Transient
## 14001 E E No Deposit Transient
## 14002 D D No Deposit Transient
## 14003 A C No Deposit Transient
## 14004 A C No Deposit Transient
## 14005 A D No Deposit Transient
## 14006 A D No Deposit Transient
## 14007 D E No Deposit Transient
## 14008 D D No Deposit Transient
## 14009 A E No Deposit Transient
## 14010 A E No Deposit Transient
## 14011 A E No Deposit Transient
## 14012 A E No Deposit Transient
## 14013 A E No Deposit Transient
## 14014 A E No Deposit Transient
## 14015 A E No Deposit Transient
## 14016 A C No Deposit Transient
## 14017 A F No Deposit Transient
## 14018 A D No Deposit Transient
## 14019 A G No Deposit Transient
## 14020 A A No Deposit Transient
## 14021 A C No Deposit Transient
## 14022 A D No Deposit Transient
## 14023 A E No Deposit Transient
## 14024 A E No Deposit Transient
## 14025 A E No Deposit Transient
## 14026 A D No Deposit Transient
## 14027 A D No Deposit Transient
## 14028 A D No Deposit Transient
## 14029 A D No Deposit Transient
## 14030 A A No Deposit Transient
## 14031 E E No Deposit Transient
## 14032 A A No Deposit Transient
## 14033 A A No Deposit Transient
## 14034 D E No Deposit Transient
## 14035 A I No Deposit Transient
## 14036 A D No Deposit Transient
## 14037 A D No Deposit Transient
## 14038 E E No Deposit Transient
## 14039 E E No Deposit Transient
## 14040 E E No Deposit Transient
## 14041 A D No Deposit Transient
## 14042 A A No Deposit Transient
## 14043 A A No Deposit Transient-Party
## 14044 A F No Deposit Transient
## 14045 A E No Deposit Transient
## 14046 A D No Deposit Transient
## 14047 A E No Deposit Transient
## 14048 D D No Deposit Transient
## 14049 E I No Deposit Transient
## 14050 D D No Deposit Transient
## 14051 A E No Deposit Transient
## 14052 A D No Deposit Group
## 14053 A A No Deposit Transient
## 14054 A A No Deposit Transient
## 14055 A A No Deposit Transient
## 14056 A A No Deposit Transient
## 14057 A A No Deposit Transient
## 14058 A D No Deposit Transient
## 14059 A D No Deposit Transient
## 14060 A D No Deposit Transient
## 14061 A A No Deposit Transient
## 14062 A D No Deposit Transient
## 14063 A F No Deposit Transient-Party
## 14064 E F No Deposit Transient
## 14065 A D No Deposit Transient
## 14066 A D No Deposit Transient
## 14067 A A No Deposit Transient
## 14068 A A No Deposit Transient
## 14069 A D No Deposit Transient
## 14070 A A No Deposit Transient
## 14071 A A No Deposit Transient
## 14072 D E No Deposit Transient
## 14073 D D No Deposit Transient
## 14074 D D No Deposit Transient
## 14075 F F No Deposit Transient
## 14076 A I No Deposit Transient
## 14077 A A No Deposit Transient
## 14078 A D No Deposit Transient
## 14079 A A No Deposit Transient
## 14080 A D No Deposit Transient
## 14081 A A No Deposit Transient
## 14082 A D No Deposit Transient
## 14083 A A No Deposit Transient
## 14084 A A No Deposit Transient
## 14085 A A No Deposit Transient
## 14086 A D No Deposit Transient
## 14087 A A No Deposit Transient-Party
## 14088 E E No Deposit Transient
## 14089 D D No Deposit Transient
## 14090 D D No Deposit Transient
## 14091 A A No Deposit Transient
## 14092 A A No Deposit Transient
## 14093 E E No Deposit Transient
## 14094 E E No Deposit Transient
## 14095 E E No Deposit Transient
## 14096 E E No Deposit Transient
## 14097 E F No Deposit Transient
## 14098 D D No Deposit Transient-Party
## 14099 E F No Deposit Transient
## 14100 E F No Deposit Transient
## 14101 E E No Deposit Transient
## 14102 E E No Deposit Transient
## 14103 A D No Deposit Transient
## 14104 A A No Deposit Transient
## 14105 A C No Deposit Transient
## 14106 A E No Deposit Transient-Party
## 14107 A E No Deposit Transient
## 14108 A D No Deposit Contract
## 14109 G G No Deposit Transient
## 14110 G G No Deposit Transient
## 14111 D D No Deposit Transient
## 14112 E E No Deposit Transient
## 14113 E E No Deposit Transient
## 14114 E E No Deposit Transient
## 14115 A D No Deposit Transient
## 14116 A A No Deposit Transient
## 14117 A A No Deposit Transient
## 14118 A A No Deposit Group
## 14119 A A No Deposit Transient
## 14120 E E No Deposit Transient
## 14121 A A No Deposit Transient
## 14122 A I No Deposit Transient-Party
## 14123 A E No Deposit Transient
## 14124 A C No Deposit Transient
## 14125 A A No Deposit Transient
## 14126 E E No Deposit Transient
## 14127 A E No Deposit Transient
## 14128 A A No Deposit Transient
## 14129 A A No Deposit Transient
## 14130 A D No Deposit Transient
## 14131 A D No Deposit Transient
## 14132 A C No Deposit Transient
## 14133 E E No Deposit Transient
## 14134 D F No Deposit Transient
## 14135 A A No Deposit Transient
## 14136 A F No Deposit Transient-Party
## 14137 A A No Deposit Transient
## 14138 A D No Deposit Transient
## 14139 A D No Deposit Transient
## 14140 A A No Deposit Transient
## 14141 A D No Deposit Transient
## 14142 A F No Deposit Transient
## 14143 A A No Deposit Transient
## 14144 A A No Deposit Transient
## 14145 A A No Deposit Transient
## 14146 A A No Deposit Transient
## 14147 A D No Deposit Transient
## 14148 E E No Deposit Transient
## 14149 D F No Deposit Transient
## 14150 F F No Deposit Transient
## 14151 A D No Deposit Transient
## 14152 F F No Deposit Transient
## 14153 A D No Deposit Transient
## 14154 A D No Deposit Transient
## 14155 A A No Deposit Transient
## 14156 A D No Deposit Transient
## 14157 A D No Deposit Transient
## 14158 A A No Deposit Transient
## 14159 A I No Deposit Transient
## 14160 A D No Deposit Transient
## 14161 A A No Deposit Transient
## 14162 E E No Deposit Transient
## 14163 A A No Deposit Transient
## 14164 D D No Deposit Transient-Party
## 14165 G G No Deposit Transient
## 14166 E E No Deposit Transient
## 14167 E E No Deposit Transient
## 14168 A D No Deposit Transient
## 14169 A D No Deposit Transient
## 14170 A D No Deposit Transient
## 14171 A A No Deposit Transient
## 14172 A A No Deposit Transient
## 14173 A D No Deposit Transient
## 14174 A D No Deposit Transient
## 14175 A D No Deposit Transient
## 14176 A A No Deposit Transient
## 14177 A A No Deposit Transient
## 14178 A D No Deposit Transient
## 14179 A D No Deposit Transient
## 14180 A A No Deposit Transient
## 14181 A D No Deposit Transient
## 14182 A A No Deposit Transient
## 14183 F F No Deposit Transient
## 14184 A E No Deposit Transient
## 14185 A A No Deposit Transient
## 14186 A A No Deposit Transient
## 14187 D D No Deposit Transient
## 14188 D D No Deposit Contract
## 14189 D D No Deposit Contract
## 14190 E F No Deposit Transient
## 14191 A E No Deposit Transient
## 14192 E E No Deposit Transient
## 14193 E E No Deposit Transient
## 14194 A E No Deposit Transient
## 14195 A E No Deposit Transient
## 14196 A D No Deposit Transient
## 14197 A C No Deposit Transient
## 14198 A D No Deposit Transient
## 14199 A D No Deposit Transient
## 14200 A E No Deposit Transient
## 14201 A A No Deposit Transient
## 14202 A A No Deposit Transient
## 14203 A H No Deposit Transient
## 14204 A A No Deposit Transient
## 14205 A D No Deposit Transient
## 14206 A A No Deposit Transient
## 14207 A D No Deposit Transient
## 14208 A D No Deposit Transient
## 14209 A D No Deposit Transient
## 14210 A D No Deposit Transient
## 14211 F F No Deposit Transient
## 14212 F E No Deposit Transient
## 14213 D D No Deposit Transient
## 14214 A D No Deposit Transient
## 14215 A A No Deposit Transient
## 14216 A D No Deposit Transient
## 14217 A D No Deposit Transient
## 14218 A D No Deposit Transient
## 14219 A D No Deposit Transient
## 14220 A D No Deposit Transient
## 14221 A A No Deposit Transient
## 14222 A A No Deposit Transient
## 14223 A A No Deposit Transient
## 14224 D D No Deposit Transient
## 14225 A D No Deposit Transient
## 14226 A A No Deposit Transient
## 14227 A D No Deposit Transient
## 14228 A E No Deposit Transient
## 14229 E E No Deposit Transient
## 14230 A E No Deposit Transient
## 14231 A E No Deposit Transient
## 14232 E E No Deposit Transient
## 14233 A D No Deposit Transient-Party
## 14234 A A No Deposit Transient
## 14235 A D No Deposit Transient
## 14236 A D No Deposit Transient
## 14237 A A No Deposit Transient
## 14238 A A No Deposit Transient
## 14239 A D No Deposit Transient
## 14240 A D No Deposit Transient
## 14241 A D No Deposit Transient
## 14242 A I No Deposit Transient
## 14243 A A No Deposit Transient
## 14244 A A No Deposit Transient
## 14245 A A No Deposit Transient
## 14246 A D No Deposit Transient
## 14247 A D No Deposit Transient
## 14248 A A No Deposit Transient
## 14249 A D No Deposit Transient
## 14250 A D No Deposit Transient
## 14251 E E No Deposit Transient
## 14252 A E No Deposit Transient
## 14253 A A No Deposit Transient
## 14254 D D No Deposit Transient
## 14255 A A No Deposit Transient
## 14256 A A No Deposit Transient
## 14257 F F No Deposit Transient
## 14258 D F No Deposit Transient
## 14259 D D No Deposit Transient
## 14260 A C No Deposit Transient
## 14261 A E No Deposit Transient
## 14262 A E No Deposit Transient
## 14263 A E No Deposit Transient
## 14264 A A No Deposit Transient
## 14265 A A No Deposit Transient
## 14266 A D No Deposit Transient
## 14267 E E No Deposit Transient
## 14268 E E No Deposit Transient
## 14269 E E No Deposit Transient
## 14270 A F No Deposit Transient
## 14271 A E No Deposit Transient
## 14272 A E No Deposit Transient
## 14273 A A No Deposit Transient
## 14274 A F No Deposit Transient
## 14275 E E No Deposit Transient
## 14276 D D No Deposit Transient
## 14277 E F No Deposit Transient
## 14278 G G No Deposit Transient
## 14279 A A No Deposit Transient
## 14280 A A No Deposit Transient
## 14281 F A No Deposit Transient
## 14282 A A No Deposit Transient
## 14283 A A No Deposit Transient
## 14284 A E No Deposit Transient
## 14285 A A No Deposit Transient
## 14286 A A No Deposit Transient
## 14287 A D No Deposit Transient
## 14288 A D No Deposit Transient
## 14289 A D No Deposit Transient
## 14290 A D No Deposit Transient
## 14291 A D No Deposit Transient
## 14292 A D No Deposit Transient
## 14293 A D No Deposit Transient
## 14294 A A No Deposit Transient
## 14295 D D No Deposit Transient
## 14296 D D No Deposit Transient
## 14297 A A No Deposit Transient
## 14298 A D No Deposit Transient
## 14299 A A No Deposit Transient
## 14300 A D No Deposit Transient
## 14301 A H No Deposit Transient
## 14302 A D No Deposit Transient
## 14303 A D No Deposit Transient
## 14304 A A No Deposit Transient
## 14305 A D No Deposit Transient
## 14306 A A No Deposit Transient
## 14307 A A No Deposit Transient
## 14308 A D No Deposit Transient
## 14309 A D No Deposit Transient
## 14310 A A No Deposit Transient
## 14311 A D No Deposit Transient
## 14312 A A No Deposit Transient
## 14313 A D No Deposit Transient
## 14314 A A No Deposit Transient
## 14315 A A No Deposit Transient
## 14316 A A No Deposit Transient
## 14317 A A No Deposit Transient
## 14318 A D No Deposit Transient
## 14319 A D No Deposit Transient
## 14320 A A No Deposit Transient
## 14321 A D No Deposit Transient
## 14322 A A No Deposit Transient
## 14323 A D No Deposit Transient
## 14324 D D No Deposit Transient
## 14325 A D No Deposit Transient
## 14326 A A No Deposit Transient-Party
## 14327 A A No Deposit Transient
## 14328 A A No Deposit Transient-Party
## 14329 A A No Deposit Transient
## 14330 A D No Deposit Transient
## 14331 A D No Deposit Transient
## 14332 D E No Deposit Transient-Party
## 14333 A C No Deposit Transient
## 14334 E E No Deposit Transient
## 14335 A C No Deposit Transient
## 14336 A A No Deposit Transient
## 14337 A A No Deposit Transient
## 14338 A D No Deposit Transient
## 14339 D D No Deposit Transient-Party
## 14340 A D No Deposit Transient
## 14341 A D No Deposit Transient
## 14342 A D No Deposit Transient
## 14343 A D No Deposit Transient
## 14344 A A No Deposit Transient
## 14345 A A No Deposit Transient
## 14346 G G No Deposit Transient
## 14347 A D No Deposit Transient
## 14348 A A No Deposit Transient
## 14349 D E No Deposit Transient
## 14350 D F No Deposit Transient-Party
## 14351 A A No Deposit Transient
## 14352 A A No Deposit Transient
## 14353 A A No Deposit Group
## 14354 A A No Deposit Group
## 14355 D D No Deposit Transient
## 14356 A D No Deposit Transient
## 14357 A C No Deposit Transient-Party
## 14358 A A No Deposit Transient
## 14359 A A No Deposit Transient-Party
## 14360 E E No Deposit Transient
## 14361 A A No Deposit Transient
## 14362 E E No Deposit Transient
## 14363 A D No Deposit Transient
## 14364 A A No Deposit Transient
## 14365 A D No Deposit Transient
## 14366 A E No Deposit Transient
## 14367 A A No Deposit Transient
## 14368 D D No Deposit Transient
## 14369 A A No Deposit Transient
## 14370 A D No Deposit Transient
## 14371 A E No Deposit Transient
## 14372 A F No Deposit Transient
## 14373 A D No Deposit Transient
## 14374 A C No Deposit Transient
## 14375 D D No Deposit Transient
## 14376 A A No Deposit Transient
## 14377 D D No Deposit Contract
## 14378 A A No Deposit Transient
## 14379 D D No Deposit Transient
## 14380 A A No Deposit Transient
## 14381 C A No Deposit Transient
## 14382 L L No Deposit Transient
## 14383 A D No Deposit Transient-Party
## 14384 A D No Deposit Transient-Party
## 14385 A A No Deposit Transient
## 14386 A A No Deposit Transient-Party
## 14387 A A No Deposit Transient
## 14388 A A No Deposit Group
## 14389 A D No Deposit Transient
## 14390 A A No Deposit Group
## 14391 A A No Deposit Transient
## 14392 E E No Deposit Transient
## 14393 E E No Deposit Transient
## 14394 A A No Deposit Transient
## 14395 D D No Deposit Transient
## 14396 E E No Deposit Transient
## 14397 A C No Deposit Transient
## 14398 A C No Deposit Transient
## 14399 A A No Deposit Transient
## 14400 A A Non Refund Transient-Party
## 14401 A A No Deposit Transient
## 14402 A A No Deposit Transient
## 14403 G G No Deposit Transient
## 14404 D D No Deposit Transient
## 14405 D D No Deposit Transient
## 14406 A C No Deposit Transient
## 14407 A A No Deposit Transient
## 14408 A A No Deposit Transient-Party
## 14409 A A No Deposit Transient
## 14410 E E No Deposit Transient
## 14411 D E No Deposit Transient
## 14412 F F No Deposit Transient
## 14413 D D No Deposit Transient
## 14414 A A No Deposit Transient
## 14415 A A No Deposit Transient
## 14416 D D No Deposit Contract
## 14417 A A No Deposit Transient
## 14418 A B No Deposit Transient
## 14419 A A No Deposit Transient
## 14420 D D No Deposit Transient
## 14421 A A No Deposit Transient-Party
## 14422 F F No Deposit Transient
## 14423 A A No Deposit Transient
## 14424 A A No Deposit Transient
## 14425 A E No Deposit Transient
## 14426 A A No Deposit Transient
## 14427 A C No Deposit Transient
## 14428 A A No Deposit Transient
## 14429 A D No Deposit Transient
## 14430 G G No Deposit Transient
## 14431 A D No Deposit Transient
## 14432 A C No Deposit Transient
## 14433 A D No Deposit Transient
## 14434 F F No Deposit Transient
## 14435 A D No Deposit Transient
## 14436 A A No Deposit Transient
## 14437 A D No Deposit Transient
## 14438 A D No Deposit Transient
## 14439 A A No Deposit Transient
## 14440 A D No Deposit Transient
## 14441 A A No Deposit Transient
## 14442 A D No Deposit Transient
## 14443 A D No Deposit Transient
## 14444 A A No Deposit Transient
## 14445 A D No Deposit Transient
## 14446 A I No Deposit Transient
## 14447 A D No Deposit Transient
## 14448 A D No Deposit Transient
## 14449 A A No Deposit Transient
## 14450 A A No Deposit Transient
## 14451 A A No Deposit Transient
## 14452 A D No Deposit Transient
## 14453 A A No Deposit Transient
## 14454 A D No Deposit Transient
## 14455 A D No Deposit Transient
## 14456 A A No Deposit Transient
## 14457 A A No Deposit Transient
## 14458 A C No Deposit Transient
## 14459 D I No Deposit Transient
## 14460 D D No Deposit Transient
## 14461 A E No Deposit Transient
## 14462 A D No Deposit Transient
## 14463 A A No Deposit Transient
## 14464 A C No Deposit Transient
## 14465 A D No Deposit Group
## 14466 A D No Deposit Transient
## 14467 A A No Deposit Transient
## 14468 A A No Deposit Transient
## 14469 E E No Deposit Transient
## 14470 A A No Deposit Transient
## 14471 A A No Deposit Transient
## 14472 A A No Deposit Group
## 14473 A E No Deposit Transient
## 14474 A E No Deposit Transient
## 14475 A A No Deposit Transient
## 14476 A A No Deposit Transient
## 14477 A A No Deposit Transient
## 14478 A D No Deposit Transient
## 14479 A E No Deposit Transient
## 14480 A D No Deposit Transient
## 14481 A D No Deposit Transient
## 14482 A D No Deposit Transient
## 14483 A A No Deposit Transient
## 14484 A D No Deposit Transient
## 14485 A A No Deposit Transient
## 14486 A A No Deposit Transient
## 14487 A A No Deposit Transient
## 14488 A A No Deposit Transient
## 14489 A D No Deposit Transient
## 14490 A D No Deposit Transient
## 14491 A D No Deposit Transient
## 14492 A D No Deposit Transient
## 14493 A D No Deposit Transient
## 14494 C E No Deposit Transient
## 14495 A A No Deposit Transient
## 14496 A A No Deposit Transient
## 14497 A D No Deposit Transient-Party
## 14498 A D No Deposit Transient
## 14499 A D No Deposit Transient
## 14500 A D No Deposit Transient
## 14501 G G No Deposit Transient
## 14502 A F No Deposit Transient
## 14503 A I No Deposit Transient
## 14504 A I No Deposit Transient
## 14505 A E No Deposit Transient
## 14506 A E No Deposit Transient
## 14507 A D No Deposit Transient
## 14508 A D No Deposit Transient
## 14509 A A No Deposit Transient
## 14510 A D No Deposit Transient
## 14511 A A No Deposit Transient
## 14512 A E No Deposit Transient
## 14513 A D No Deposit Transient
## 14514 A E No Deposit Transient
## 14515 A D No Deposit Transient
## 14516 A D No Deposit Transient
## 14517 A A No Deposit Transient
## 14518 A D No Deposit Transient
## 14519 A D No Deposit Transient
## 14520 A A No Deposit Transient
## 14521 E E No Deposit Transient
## 14522 E E No Deposit Transient
## 14523 A E No Deposit Transient
## 14524 A A No Deposit Transient
## 14525 F F No Deposit Transient
## 14526 A A No Deposit Transient
## 14527 A A No Deposit Transient
## 14528 D D No Deposit Transient
## 14529 A E No Deposit Transient
## 14530 A D No Deposit Transient
## 14531 A D No Deposit Transient
## 14532 A A No Deposit Transient
## 14533 D D No Deposit Transient-Party
## 14534 A D No Deposit Transient
## 14535 A A No Deposit Transient
## 14536 A A No Deposit Transient
## 14537 A A No Deposit Group
## 14538 A D No Deposit Transient
## 14539 A A No Deposit Transient-Party
## 14540 A D No Deposit Transient
## 14541 E E No Deposit Transient
## 14542 A H No Deposit Transient
## 14543 A D No Deposit Transient
## 14544 A A No Deposit Transient
## 14545 A D No Deposit Transient
## 14546 A A No Deposit Transient
## 14547 A A No Deposit Transient
## 14548 A G No Deposit Transient
## 14549 A D No Deposit Transient
## 14550 A D No Deposit Transient
## 14551 A D No Deposit Transient
## 14552 A A No Deposit Transient
## 14553 A D No Deposit Transient
## 14554 A E No Deposit Transient
## 14555 D D No Deposit Transient
## 14556 D D No Deposit Transient
## 14557 G G No Deposit Transient
## 14558 G G No Deposit Transient
## 14559 G G No Deposit Transient
## 14560 A F No Deposit Transient
## 14561 A E No Deposit Transient
## 14562 A D No Deposit Group
## 14563 A D No Deposit Transient
## 14564 D D No Deposit Transient
## 14565 D D No Deposit Transient
## 14566 F F No Deposit Transient
## 14567 A C No Deposit Transient
## 14568 D D No Deposit Transient
## 14569 A A No Deposit Transient
## 14570 A A No Deposit Transient
## 14571 L A No Deposit Transient
## 14572 A F No Deposit Transient
## 14573 A I No Deposit Transient-Party
## 14574 A A No Deposit Transient
## 14575 A A No Deposit Transient
## 14576 A A No Deposit Transient
## 14577 A D No Deposit Transient
## 14578 A D No Deposit Transient
## 14579 A A No Deposit Transient
## 14580 A A No Deposit Transient
## 14581 F F No Deposit Transient
## 14582 E F No Deposit Transient
## 14583 D D No Deposit Transient
## 14584 A A No Deposit Transient
## 14585 A D No Deposit Transient
## 14586 D D No Deposit Transient
## 14587 D D No Deposit Transient
## 14588 E E No Deposit Transient
## 14589 A A No Deposit Transient
## 14590 D D No Deposit Transient
## 14591 A D No Deposit Transient
## 14592 A C No Deposit Transient
## 14593 D D No Deposit Transient
## 14594 A A No Deposit Transient
## 14595 A A No Deposit Transient
## 14596 E E No Deposit Transient-Party
## 14597 E E No Deposit Transient-Party
## 14598 E E No Deposit Transient
## 14599 F F No Deposit Transient
## 14600 A D No Deposit Transient
## 14601 D D No Deposit Transient
## 14602 A A No Deposit Transient
## 14603 C C No Deposit Transient
## 14604 F G No Deposit Transient
## 14605 A A No Deposit Transient
## 14606 A E No Deposit Transient
## 14607 E E No Deposit Transient
## 14608 A A No Deposit Transient
## 14609 A D No Deposit Transient
## 14610 A D No Deposit Transient
## 14611 A A No Deposit Transient
## 14612 A A No Deposit Transient
## 14613 E E No Deposit Transient
## 14614 A A No Deposit Transient
## 14615 D D No Deposit Transient
## 14616 D D No Deposit Transient
## 14617 A H No Deposit Transient
## 14618 A D No Deposit Transient
## 14619 D D No Deposit Transient
## 14620 C C No Deposit Transient
## 14621 D D No Deposit Transient-Party
## 14622 D D No Deposit Transient-Party
## 14623 E E No Deposit Transient-Party
## 14624 E E No Deposit Transient-Party
## 14625 E E No Deposit Transient
## 14626 A D No Deposit Transient-Party
## 14627 A I No Deposit Transient-Party
## 14628 A A No Deposit Transient
## 14629 D D No Deposit Contract
## 14630 D D No Deposit Transient
## 14631 A C No Deposit Transient
## 14632 F F No Deposit Transient
## 14633 D D No Deposit Transient
## 14634 A A No Deposit Transient
## 14635 D D No Deposit Contract
## 14636 E E No Deposit Transient
## 14637 D D No Deposit Transient
## 14638 E E No Deposit Transient
## 14639 A D No Deposit Transient
## 14640 A A No Deposit Transient
## 14641 A A No Deposit Group
## 14642 A A No Deposit Transient
## 14643 A A No Deposit Transient
## 14644 A C No Deposit Transient
## 14645 D D No Deposit Contract
## 14646 D E No Deposit Transient
## 14647 E E No Deposit Transient
## 14648 D D No Deposit Transient
## 14649 G G No Deposit Transient
## 14650 E E No Deposit Transient-Party
## 14651 A C No Deposit Transient-Party
## 14652 A A No Deposit Transient-Party
## 14653 A C No Deposit Transient-Party
## 14654 A C No Deposit Transient-Party
## 14655 D D No Deposit Group
## 14656 A A No Deposit Transient-Party
## 14657 D D No Deposit Transient
## 14658 D D No Deposit Transient
## 14659 D D No Deposit Transient
## 14660 A D No Deposit Transient
## 14661 E E No Deposit Transient
## 14662 A A No Deposit Transient
## 14663 A A No Deposit Transient
## 14664 A B No Deposit Transient
## 14665 A A No Deposit Transient
## 14666 A A No Deposit Transient
## 14667 A D No Deposit Transient
## 14668 A A No Deposit Transient
## 14669 A A No Deposit Transient
## 14670 A A No Deposit Transient
## 14671 A D No Deposit Transient
## 14672 A D No Deposit Transient
## 14673 A A No Deposit Transient
## 14674 A A No Deposit Transient
## 14675 A A No Deposit Transient
## 14676 A D No Deposit Transient
## 14677 A A No Deposit Transient
## 14678 A D No Deposit Transient
## 14679 A D No Deposit Transient
## 14680 A D No Deposit Transient
## 14681 A A No Deposit Transient
## 14682 A A No Deposit Contract
## 14683 A A Non Refund Transient
## 14684 A A Non Refund Transient
## 14685 A A Non Refund Transient
## 14686 A A Non Refund Transient
## 14687 A A Non Refund Transient
## 14688 A A Non Refund Transient
## 14689 A A Non Refund Transient
## 14690 A A Non Refund Transient
## 14691 A A Non Refund Transient
## 14692 A A Non Refund Transient
## 14693 A A Non Refund Transient
## 14694 A A Non Refund Transient
## 14695 A A Non Refund Transient
## 14696 A A Non Refund Transient
## 14697 A A Non Refund Transient
## 14698 A A Non Refund Transient
## 14699 A A Non Refund Transient
## 14700 A A Non Refund Transient
## 14701 A A Non Refund Transient
## 14702 A A Non Refund Transient
## 14703 A A Non Refund Transient
## 14704 A A Non Refund Transient
## 14705 A A Non Refund Transient
## 14706 A A Non Refund Transient
## 14707 A A Non Refund Transient
## 14708 A A Non Refund Transient
## 14709 A A Non Refund Transient
## 14710 A A Non Refund Transient
## 14711 A A Non Refund Transient
## 14712 A A Non Refund Transient
## 14713 A A Non Refund Transient
## 14714 A A Non Refund Transient
## 14715 A A Non Refund Transient
## 14716 A A Non Refund Transient
## 14717 A A Non Refund Transient
## 14718 A A Non Refund Transient
## 14719 A A Non Refund Transient
## 14720 A A Non Refund Transient
## 14721 A A Non Refund Transient
## 14722 A A Non Refund Transient
## 14723 A A Non Refund Transient
## 14724 A A Non Refund Transient
## 14725 A A Non Refund Transient
## 14726 A A Non Refund Transient
## 14727 A A Non Refund Transient
## 14728 A A Non Refund Transient
## 14729 A A Non Refund Transient
## 14730 A A Non Refund Transient
## 14731 A A Non Refund Transient
## 14732 A A Non Refund Transient
## 14733 A A Non Refund Transient
## 14734 A A Non Refund Transient
## 14735 A A Non Refund Transient
## 14736 A A Non Refund Transient
## 14737 A A Non Refund Transient
## 14738 A A Non Refund Transient
## 14739 A A Non Refund Transient
## 14740 A A Non Refund Transient
## 14741 A A Non Refund Transient
## 14742 A A Non Refund Transient
## 14743 A A Non Refund Transient
## 14744 A A Non Refund Transient
## 14745 A A Non Refund Transient
## 14746 A A Non Refund Transient
## 14747 A A Non Refund Transient
## 14748 A A Non Refund Transient
## 14749 A A Non Refund Transient
## 14750 A A Non Refund Transient
## 14751 A A Non Refund Transient
## 14752 A A Non Refund Transient
## 14753 A A Non Refund Transient
## 14754 A A Non Refund Transient
## 14755 A A Non Refund Transient
## 14756 A A Non Refund Transient
## 14757 A A Non Refund Transient
## 14758 A A Non Refund Transient
## 14759 A A Non Refund Transient
## 14760 A A Non Refund Transient
## 14761 A A Non Refund Transient
## 14762 A A Non Refund Transient
## 14763 A A Non Refund Transient
## 14764 A A Non Refund Transient
## 14765 A A Non Refund Transient
## 14766 A A Non Refund Transient
## 14767 A A Non Refund Transient
## 14768 A A Non Refund Transient
## 14769 A A Non Refund Transient
## 14770 A A Non Refund Transient
## 14771 A A Non Refund Transient
## 14772 A A Non Refund Transient
## 14773 A A No Deposit Transient
## 14774 A A No Deposit Transient
## 14775 E E No Deposit Transient
## 14776 E E No Deposit Transient
## 14777 H H No Deposit Transient
## 14778 E E No Deposit Transient
## 14779 A A Non Refund Transient
## 14780 A A Non Refund Transient
## 14781 A A Non Refund Transient
## 14782 A A Non Refund Transient
## 14783 A A Non Refund Transient
## 14784 A A Non Refund Transient
## 14785 A A Non Refund Transient
## 14786 A A Non Refund Transient
## 14787 A A Non Refund Transient
## 14788 A A Non Refund Transient
## 14789 A A Non Refund Transient
## 14790 A A Non Refund Transient
## 14791 A A Non Refund Transient
## 14792 A A Non Refund Transient
## 14793 A A Non Refund Transient
## 14794 A A Non Refund Transient
## 14795 A A Non Refund Transient
## 14796 A A Non Refund Transient
## 14797 A A Non Refund Transient
## 14798 A A Non Refund Transient
## 14799 A A Non Refund Transient
## 14800 A A Non Refund Transient
## 14801 A A Non Refund Transient
## 14802 A A Non Refund Transient
## 14803 A A Non Refund Transient
## 14804 A A Non Refund Transient
## 14805 A A Non Refund Transient
## 14806 A A No Deposit Transient
## 14807 A A No Deposit Transient
## 14808 A A No Deposit Transient
## 14809 A A No Deposit Transient
## 14810 E E No Deposit Transient
## 14811 A A No Deposit Transient
## 14812 A A No Deposit Transient
## 14813 H H No Deposit Transient
## 14814 A A No Deposit Transient
## 14815 E E No Deposit Transient
## 14816 A A No Deposit Transient
## 14817 A A No Deposit Transient
## 14818 A A No Deposit Contract
## 14819 A A No Deposit Transient
## 14820 A A No Deposit Transient
## 14821 G G No Deposit Transient
## 14822 A A No Deposit Transient
## 14823 A A No Deposit Transient
## 14824 D D No Deposit Transient
## 14825 A A No Deposit Transient
## 14826 A A No Deposit Transient
## 14827 A A No Deposit Transient
## 14828 C C No Deposit Contract
## 14829 A A Non Refund Transient
## 14830 A A Non Refund Transient
## 14831 A A Non Refund Transient
## 14832 A A Non Refund Transient
## 14833 A A Non Refund Transient
## 14834 A A Non Refund Transient
## 14835 A A Non Refund Transient
## 14836 A A Non Refund Transient
## 14837 A A Non Refund Transient
## 14838 A A Non Refund Transient
## 14839 A A Non Refund Transient
## 14840 A A Non Refund Transient
## 14841 A A Non Refund Transient
## 14842 A A Non Refund Transient
## 14843 A A Non Refund Transient
## 14844 A A Non Refund Transient
## 14845 A A Non Refund Transient
## 14846 A A Non Refund Transient
## 14847 A A Non Refund Transient
## 14848 A A Non Refund Transient
## 14849 A A Non Refund Transient
## 14850 A A Non Refund Transient
## 14851 A A Non Refund Transient
## 14852 A A Non Refund Transient
## 14853 A A Non Refund Transient
## 14854 A A Non Refund Transient
## 14855 A A No Deposit Transient
## 14856 A A No Deposit Transient
## 14857 A A No Deposit Transient
## 14858 A A No Deposit Transient
## 14859 A A No Deposit Transient
## 14860 A A No Deposit Transient
## 14861 A A No Deposit Transient
## 14862 A A No Deposit Transient
## 14863 A A No Deposit Transient
## 14864 A A No Deposit Transient
## 14865 D D No Deposit Transient
## 14866 A A No Deposit Transient
## 14867 A A No Deposit Transient
## 14868 D D No Deposit Transient
## 14869 A A No Deposit Transient
## 14870 A A No Deposit Transient
## 14871 A A No Deposit Transient
## 14872 A A No Deposit Transient
## 14873 A A No Deposit Transient
## 14874 A A No Deposit Transient
## 14875 A A No Deposit Transient
## 14876 A A No Deposit Transient
## 14877 A A No Deposit Transient
## 14878 G G No Deposit Transient
## 14879 D D No Deposit Contract
## 14880 D D No Deposit Contract
## 14881 D D No Deposit Transient
## 14882 A A No Deposit Transient
## 14883 A A No Deposit Transient
## 14884 A E No Deposit Contract
## 14885 A A Non Refund Transient
## 14886 A A Non Refund Transient
## 14887 A A Non Refund Transient
## 14888 A A Non Refund Transient
## 14889 A A Non Refund Transient
## 14890 A A Non Refund Transient
## 14891 A A Non Refund Transient
## 14892 A A Non Refund Transient
## 14893 A A Non Refund Transient
## 14894 A A Non Refund Transient
## 14895 A A Non Refund Transient
## 14896 A A Non Refund Transient
## 14897 A A Non Refund Transient
## 14898 A A Non Refund Transient
## 14899 A A Non Refund Transient
## 14900 A A No Deposit Contract
## 14901 A C No Deposit Transient
## 14902 A A No Deposit Transient
## 14903 A A No Deposit Transient
## 14904 A A No Deposit Transient
## 14905 A A No Deposit Transient
## 14906 A A No Deposit Transient
## 14907 E E No Deposit Group
## 14908 D D No Deposit Group
## 14909 E E No Deposit Transient
## 14910 E E No Deposit Transient
## 14911 E E No Deposit Transient
## 14912 E E No Deposit Transient
## 14913 A A No Deposit Transient
## 14914 A E No Deposit Transient
## 14915 A D No Deposit Transient
## 14916 A D No Deposit Transient
## 14917 A A No Deposit Transient
## 14918 A A No Deposit Transient
## 14919 A A No Deposit Transient
## 14920 A A No Deposit Transient
## 14921 A A No Deposit Transient
## 14922 A A No Deposit Transient
## 14923 A A No Deposit Transient
## 14924 A A No Deposit Transient
## 14925 A A No Deposit Transient
## 14926 A A No Deposit Transient
## 14927 D E No Deposit Transient
## 14928 D D No Deposit Transient
## 14929 F F No Deposit Transient
## 14930 A C No Deposit Transient-Party
## 14931 A C No Deposit Transient-Party
## 14932 A A No Deposit Transient
## 14933 A A No Deposit Transient
## 14934 D D No Deposit Transient
## 14935 A D No Deposit Transient
## 14936 A B No Deposit Transient
## 14937 A A No Deposit Transient
## 14938 A E No Deposit Transient
## 14939 A A No Deposit Transient-Party
## 14940 A A No Deposit Transient-Party
## 14941 A A Refundable Transient-Party
## 14942 A E No Deposit Transient-Party
## 14943 A E No Deposit Transient-Party
## 14944 A A No Deposit Transient-Party
## 14945 A A No Deposit Transient
## 14946 A A No Deposit Transient
## 14947 A E No Deposit Transient-Party
## 14948 A E No Deposit Transient-Party
## 14949 G G No Deposit Transient
## 14950 E E No Deposit Transient
## 14951 E E No Deposit Transient-Party
## 14952 A A No Deposit Transient-Party
## 14953 A B No Deposit Transient
## 14954 A A No Deposit Transient
## 14955 A A No Deposit Transient
## 14956 A D No Deposit Transient
## 14957 A A No Deposit Transient
## 14958 A C No Deposit Transient
## 14959 E E No Deposit Transient
## 14960 A A No Deposit Transient
## 14961 A D No Deposit Transient-Party
## 14962 A E No Deposit Transient
## 14963 A E No Deposit Transient
## 14964 A D No Deposit Transient
## 14965 A D No Deposit Transient
## 14966 A A No Deposit Transient
## 14967 A D No Deposit Transient
## 14968 A A No Deposit Transient
## 14969 E F No Deposit Group
## 14970 A H No Deposit Transient-Party
## 14971 A H No Deposit Transient-Party
## 14972 A A Non Refund Transient
## 14973 A A Non Refund Transient
## 14974 A A Non Refund Transient
## 14975 A A Non Refund Transient
## 14976 A A Non Refund Transient
## 14977 A A Non Refund Transient
## 14978 A A Non Refund Transient
## 14979 A A Non Refund Transient
## 14980 A A Non Refund Transient
## 14981 A A Non Refund Transient
## 14982 A A Non Refund Transient
## 14983 A A Non Refund Transient
## 14984 A A Non Refund Transient
## 14985 A A Non Refund Transient
## 14986 A A Non Refund Transient
## 14987 A A Non Refund Transient
## 14988 A A Non Refund Transient
## 14989 A A Non Refund Transient
## 14990 A A Non Refund Transient
## 14991 A A Non Refund Transient
## 14992 A A Non Refund Transient
## 14993 A A Non Refund Transient
## 14994 A A Non Refund Transient
## 14995 A A Non Refund Transient
## 14996 A A Non Refund Transient
## 14997 A A Non Refund Transient
## 14998 A A Non Refund Transient
## 14999 A A Non Refund Transient
## 15000 A A Non Refund Transient
## 15001 A A Non Refund Transient
## 15002 A A Non Refund Transient
## 15003 A A Non Refund Transient
## 15004 A A Non Refund Transient
## 15005 A A Non Refund Transient
## 15006 A A Non Refund Transient
## 15007 A A Non Refund Transient
## 15008 A A Non Refund Transient
## 15009 A A Non Refund Transient
## 15010 A A Non Refund Transient
## 15011 A A Non Refund Transient
## 15012 A A Non Refund Transient
## 15013 A A Non Refund Transient
## 15014 A A Non Refund Transient
## 15015 A A Non Refund Transient
## 15016 A A Non Refund Transient
## 15017 A A No Deposit Transient
## 15018 D D No Deposit Transient
## 15019 A A No Deposit Transient
## 15020 A E No Deposit Transient
## 15021 A E No Deposit Transient
## 15022 A D No Deposit Transient
## 15023 A A No Deposit Transient
## 15024 A D No Deposit Transient
## 15025 A A No Deposit Transient
## 15026 A D No Deposit Transient
## 15027 D D No Deposit Transient
## 15028 A A No Deposit Transient-Party
## 15029 A D No Deposit Transient
## 15030 D D No Deposit Transient
## 15031 A D No Deposit Transient
## 15032 D D No Deposit Transient
## 15033 A E No Deposit Transient
## 15034 A A No Deposit Transient-Party
## 15035 A A No Deposit Transient
## 15036 A E No Deposit Transient
## 15037 A A No Deposit Transient-Party
## 15038 E F No Deposit Transient
## 15039 A A No Deposit Transient-Party
## 15040 A A No Deposit Transient-Party
## 15041 D D No Deposit Transient
## 15042 A A No Deposit Transient
## 15043 A A No Deposit Contract
## 15044 A A No Deposit Transient-Party
## 15045 E E No Deposit Transient
## 15046 G G No Deposit Transient
## 15047 A F No Deposit Transient
## 15048 A A No Deposit Transient
## 15049 A D No Deposit Transient
## 15050 A A No Deposit Transient
## 15051 A D No Deposit Transient
## 15052 A E No Deposit Transient
## 15053 A D No Deposit Transient
## 15054 A E No Deposit Transient
## 15055 A A No Deposit Transient
## 15056 A D No Deposit Transient
## 15057 A D No Deposit Transient
## 15058 A A No Deposit Transient
## 15059 A D No Deposit Transient
## 15060 A A No Deposit Transient
## 15061 A D No Deposit Transient
## 15062 A C No Deposit Transient
## 15063 A D No Deposit Transient
## 15064 A A No Deposit Transient
## 15065 A E No Deposit Transient
## 15066 A A No Deposit Transient
## 15067 D I No Deposit Transient
## 15068 D D No Deposit Transient
## 15069 A A No Deposit Transient
## 15070 A A No Deposit Transient
## 15071 A D No Deposit Transient
## 15072 A I No Deposit Transient
## 15073 A D No Deposit Transient
## 15074 A D No Deposit Transient
## 15075 A A No Deposit Transient-Party
## 15076 A A No Deposit Transient-Party
## 15077 A A No Deposit Transient
## 15078 A A No Deposit Transient
## 15079 A A No Deposit Transient
## 15080 A A No Deposit Transient
## 15081 E E No Deposit Transient-Party
## 15082 E E No Deposit Transient-Party
## 15083 A A No Deposit Contract
## 15084 A C No Deposit Transient
## 15085 A D No Deposit Transient
## 15086 A C No Deposit Transient
## 15087 A A No Deposit Transient
## 15088 A A No Deposit Transient
## 15089 A A No Deposit Transient
## 15090 A D No Deposit Transient
## 15091 A A No Deposit Transient
## 15092 A D No Deposit Transient
## 15093 A A No Deposit Contract
## 15094 A A No Deposit Transient
## 15095 A A No Deposit Transient
## 15096 A A No Deposit Transient
## 15097 A A No Deposit Transient
## 15098 A A No Deposit Transient
## 15099 A A No Deposit Transient
## 15100 A A No Deposit Transient
## 15101 A A No Deposit Transient
## 15102 A A No Deposit Transient
## 15103 A A No Deposit Transient
## 15104 A A No Deposit Transient
## 15105 A A No Deposit Transient
## 15106 A A No Deposit Transient
## 15107 A A No Deposit Transient
## 15108 A A No Deposit Transient
## 15109 A A No Deposit Transient
## 15110 A A No Deposit Transient
## 15111 A A No Deposit Transient
## 15112 A A No Deposit Transient
## 15113 A A No Deposit Transient
## 15114 A A No Deposit Transient
## 15115 A A No Deposit Transient
## 15116 A A No Deposit Transient
## 15117 A A No Deposit Transient
## 15118 A A No Deposit Transient
## 15119 E E No Deposit Transient
## 15120 E E No Deposit Transient
## 15121 E E No Deposit Transient
## 15122 E E No Deposit Transient
## 15123 E E No Deposit Transient
## 15124 E E No Deposit Transient
## 15125 E E No Deposit Transient
## 15126 E E No Deposit Transient
## 15127 E E No Deposit Transient
## 15128 E E No Deposit Transient
## 15129 E E No Deposit Transient
## 15130 E E No Deposit Transient
## 15131 E E No Deposit Transient
## 15132 E E No Deposit Transient
## 15133 A A No Deposit Contract
## 15134 A A No Deposit Transient
## 15135 D D No Deposit Transient
## 15136 D D No Deposit Transient
## 15137 A A No Deposit Transient
## 15138 C C No Deposit Transient
## 15139 A E No Deposit Transient-Party
## 15140 A A No Deposit Contract
## 15141 E E No Deposit Transient
## 15142 A D No Deposit Group
## 15143 A A No Deposit Transient
## 15144 A A No Deposit Transient
## 15145 A D No Deposit Transient
## 15146 A D No Deposit Transient
## 15147 A D No Deposit Transient
## 15148 A D No Deposit Transient
## 15149 A A No Deposit Transient-Party
## 15150 A A No Deposit Transient
## 15151 A A No Deposit Transient-Party
## 15152 A A No Deposit Transient-Party
## 15153 A A No Deposit Transient-Party
## 15154 A A No Deposit Transient-Party
## 15155 A A No Deposit Transient-Party
## 15156 A A No Deposit Transient-Party
## 15157 A A No Deposit Transient-Party
## 15158 A A No Deposit Transient-Party
## 15159 A A No Deposit Transient-Party
## 15160 A A No Deposit Transient-Party
## 15161 A A No Deposit Transient-Party
## 15162 A A No Deposit Transient-Party
## 15163 A A No Deposit Transient-Party
## 15164 A A No Deposit Transient-Party
## 15165 A A No Deposit Transient-Party
## 15166 A A No Deposit Transient-Party
## 15167 A A No Deposit Transient-Party
## 15168 A A No Deposit Transient-Party
## 15169 A A No Deposit Transient-Party
## 15170 A A No Deposit Transient-Party
## 15171 A A No Deposit Transient-Party
## 15172 A A No Deposit Transient-Party
## 15173 A A No Deposit Transient-Party
## 15174 A A No Deposit Transient-Party
## 15175 A A No Deposit Transient-Party
## 15176 A A No Deposit Transient-Party
## 15177 A A No Deposit Transient-Party
## 15178 A A No Deposit Transient-Party
## 15179 A A No Deposit Transient-Party
## 15180 A A No Deposit Transient-Party
## 15181 A A No Deposit Transient-Party
## 15182 A A No Deposit Transient-Party
## 15183 A A No Deposit Transient-Party
## 15184 A A Non Refund Transient
## 15185 A A Non Refund Transient
## 15186 A A Non Refund Transient
## 15187 A A Non Refund Transient
## 15188 A A Non Refund Transient
## 15189 A A Non Refund Transient
## 15190 A A Non Refund Transient
## 15191 A A Non Refund Transient
## 15192 A A Non Refund Transient
## 15193 A A Non Refund Transient
## 15194 A A Non Refund Transient
## 15195 A A Non Refund Transient
## 15196 A A Non Refund Transient
## 15197 A A Non Refund Transient
## 15198 A A Non Refund Transient
## 15199 A A Non Refund Transient
## 15200 A A Non Refund Transient
## 15201 A A Non Refund Transient
## 15202 A A Non Refund Transient
## 15203 A A Non Refund Transient
## 15204 A A Non Refund Transient
## 15205 A A Non Refund Transient
## 15206 A A Non Refund Transient
## 15207 A A Non Refund Transient
## 15208 A A Non Refund Transient
## 15209 A A Non Refund Transient
## 15210 A A Non Refund Transient
## 15211 A A Non Refund Transient
## 15212 A A Non Refund Transient
## 15213 A A Non Refund Transient
## 15214 A A Non Refund Transient
## 15215 A A Non Refund Transient
## 15216 A A Non Refund Transient
## 15217 A A Non Refund Transient
## 15218 A A Non Refund Transient
## 15219 A A Non Refund Transient
## 15220 A A Non Refund Transient
## 15221 A A Non Refund Transient
## 15222 A A Non Refund Transient
## 15223 A A Non Refund Transient
## 15224 D D No Deposit Contract
## 15225 A A No Deposit Transient
## 15226 F F No Deposit Transient
## 15227 E E No Deposit Contract
## 15228 E E No Deposit Transient
## 15229 E E No Deposit Transient
## 15230 A F No Deposit Group
## 15231 E E No Deposit Transient
## 15232 A A No Deposit Transient-Party
## 15233 D D No Deposit Group
## 15234 A F No Deposit Transient
## 15235 A D No Deposit Transient
## 15236 A A No Deposit Transient
## 15237 A D No Deposit Transient
## 15238 A C No Deposit Transient
## 15239 A A No Deposit Transient
## 15240 A A No Deposit Transient-Party
## 15241 A D No Deposit Transient
## 15242 A D No Deposit Transient
## 15243 A G No Deposit Transient
## 15244 A C No Deposit Transient
## 15245 A A No Deposit Transient
## 15246 A A No Deposit Transient
## 15247 A A No Deposit Transient
## 15248 A A No Deposit Transient
## 15249 A A No Deposit Transient
## 15250 A A No Deposit Transient
## 15251 A A No Deposit Transient
## 15252 A A No Deposit Transient
## 15253 A A No Deposit Transient
## 15254 E E No Deposit Transient
## 15255 E F No Deposit Transient
## 15256 E E No Deposit Transient
## 15257 A A No Deposit Transient
## 15258 A D No Deposit Transient
## 15259 A D No Deposit Transient
## 15260 A A No Deposit Transient
## 15261 A A No Deposit Transient
## 15262 A I No Deposit Contract
## 15263 A G No Deposit Transient
## 15264 E I No Deposit Transient-Party
## 15265 A A No Deposit Transient
## 15266 A E No Deposit Transient
## 15267 E F No Deposit Transient-Party
## 15268 D D No Deposit Transient
## 15269 A A No Deposit Transient-Party
## 15270 A A No Deposit Transient
## 15271 A C No Deposit Transient
## 15272 A A No Deposit Transient
## 15273 A D No Deposit Transient
## 15274 A A No Deposit Transient
## 15275 A A No Deposit Transient
## 15276 A D No Deposit Transient
## 15277 A A No Deposit Transient
## 15278 A A No Deposit Transient
## 15279 A A No Deposit Transient
## 15280 A A No Deposit Transient
## 15281 A D No Deposit Transient
## 15282 A D No Deposit Transient
## 15283 A A No Deposit Transient
## 15284 A A No Deposit Transient
## 15285 A D No Deposit Transient
## 15286 A A No Deposit Transient
## 15287 A A No Deposit Contract
## 15288 A D No Deposit Transient-Party
## 15289 A A No Deposit Transient-Party
## 15290 A A No Deposit Transient-Party
## 15291 A A No Deposit Transient-Party
## 15292 A D No Deposit Transient
## 15293 A D No Deposit Transient
## 15294 A A No Deposit Transient
## 15295 D D No Deposit Transient
## 15296 G G No Deposit Transient-Party
## 15297 E E No Deposit Transient-Party
## 15298 A A No Deposit Contract
## 15299 D E No Deposit Transient
## 15300 A A No Deposit Transient
## 15301 G G No Deposit Transient
## 15302 E E No Deposit Transient
## 15303 E G No Deposit Transient
## 15304 G G No Deposit Group
## 15305 A C No Deposit Transient
## 15306 A A No Deposit Transient
## 15307 D D No Deposit Contract
## 15308 A A No Deposit Transient-Party
## 15309 A A No Deposit Transient-Party
## 15310 A A No Deposit Transient-Party
## 15311 A A No Deposit Transient-Party
## 15312 A A No Deposit Transient-Party
## 15313 A A No Deposit Transient-Party
## 15314 A A No Deposit Transient-Party
## 15315 A A No Deposit Transient-Party
## 15316 A A No Deposit Transient-Party
## 15317 A A No Deposit Transient-Party
## 15318 A A No Deposit Transient-Party
## 15319 A A No Deposit Transient-Party
## 15320 A A No Deposit Transient-Party
## 15321 A A No Deposit Transient-Party
## 15322 A A No Deposit Transient-Party
## 15323 A A No Deposit Transient-Party
## 15324 A A No Deposit Transient-Party
## 15325 A A No Deposit Transient-Party
## 15326 A A No Deposit Transient-Party
## 15327 A A No Deposit Transient-Party
## 15328 A A No Deposit Transient-Party
## 15329 A A No Deposit Transient-Party
## 15330 A A No Deposit Transient-Party
## 15331 A A No Deposit Transient-Party
## 15332 A A No Deposit Transient-Party
## 15333 A A No Deposit Contract
## 15334 A A No Deposit Contract
## 15335 A A No Deposit Contract
## 15336 A A No Deposit Contract
## 15337 A C No Deposit Transient
## 15338 A A No Deposit Transient-Party
## 15339 A A No Deposit Transient-Party
## 15340 A A No Deposit Transient-Party
## 15341 A A No Deposit Transient-Party
## 15342 A A No Deposit Transient-Party
## 15343 A A No Deposit Transient-Party
## 15344 A A Non Refund Transient
## 15345 A A Non Refund Transient
## 15346 A A Non Refund Transient
## 15347 A A Non Refund Transient
## 15348 A A Non Refund Transient
## 15349 A A Non Refund Transient
## 15350 A A No Deposit Transient
## 15351 A A No Deposit Contract
## 15352 A A No Deposit Contract
## 15353 A A No Deposit Transient-Party
## 15354 E E No Deposit Contract
## 15355 A A No Deposit Transient
## 15356 A A No Deposit Transient
## 15357 A A No Deposit Contract
## 15358 A A No Deposit Contract
## 15359 A A No Deposit Transient
## 15360 A A No Deposit Transient
## 15361 A D No Deposit Transient
## 15362 A A No Deposit Transient
## 15363 A A No Deposit Transient
## 15364 A D No Deposit Transient
## 15365 C C No Deposit Transient
## 15366 A D No Deposit Transient
## 15367 A A No Deposit Contract
## 15368 A C No Deposit Transient
## 15369 A A No Deposit Transient
## 15370 A A No Deposit Transient
## 15371 C E No Deposit Transient
## 15372 E E No Deposit Transient
## 15373 A A No Deposit Transient
## 15374 A A No Deposit Contract
## 15375 D D No Deposit Transient
## 15376 E E No Deposit Transient
## 15377 A A No Deposit Contract
## 15378 A A No Deposit Transient
## 15379 G G No Deposit Transient
## 15380 A A No Deposit Transient
## 15381 G G No Deposit Transient
## 15382 E E No Deposit Transient
## 15383 A A No Deposit Transient
## 15384 E H No Deposit Transient
## 15385 D D No Deposit Transient
## 15386 A A No Deposit Transient
## 15387 A A No Deposit Transient
## 15388 A A No Deposit Contract
## 15389 A A No Deposit Transient
## 15390 D D No Deposit Transient
## 15391 A A No Deposit Transient
## 15392 D D No Deposit Transient
## 15393 A B No Deposit Transient
## 15394 A A No Deposit Contract
## 15395 A A No Deposit Contract
## 15396 A A No Deposit Contract
## 15397 A A No Deposit Contract
## 15398 D D No Deposit Transient
## 15399 E E No Deposit Transient
## 15400 F F No Deposit Transient
## 15401 F F No Deposit Transient
## 15402 A A No Deposit Transient
## 15403 A A No Deposit Transient
## 15404 G G No Deposit Transient
## 15405 E E No Deposit Transient
## 15406 A A No Deposit Transient
## 15407 E E No Deposit Transient
## 15408 D D No Deposit Contract
## 15409 A A No Deposit Contract
## 15410 A A No Deposit Contract
## 15411 A A No Deposit Contract
## 15412 A D No Deposit Transient
## 15413 G G No Deposit Transient
## 15414 A A No Deposit Transient
## 15415 D D No Deposit Transient
## 15416 E E No Deposit Transient
## 15417 D D No Deposit Contract
## 15418 D D No Deposit Contract
## 15419 D D No Deposit Contract
## 15420 D D No Deposit Transient
## 15421 A A No Deposit Transient
## 15422 A A No Deposit Contract
## 15423 A A No Deposit Contract
## 15424 A F No Deposit Transient
## 15425 A A No Deposit Transient
## 15426 D D No Deposit Contract
## 15427 D D No Deposit Transient
## 15428 A A No Deposit Contract
## 15429 E E No Deposit Transient
## 15430 A F No Deposit Transient
## 15431 D D No Deposit Transient
## 15432 G G No Deposit Transient
## 15433 A A No Deposit Contract
## 15434 A A No Deposit Contract
## 15435 A A No Deposit Transient-Party
## 15436 A A No Deposit Transient
## 15437 D D No Deposit Contract
## 15438 D D No Deposit Contract
## 15439 D D No Deposit Contract
## 15440 G G No Deposit Transient
## 15441 A A No Deposit Contract
## 15442 E E No Deposit Transient
## 15443 A E No Deposit Transient
## 15444 A A No Deposit Contract
## 15445 A A No Deposit Transient
## 15446 A A No Deposit Transient
## 15447 A A No Deposit Group
## 15448 A A No Deposit Contract
## 15449 F F No Deposit Transient
## 15450 D D No Deposit Transient
## 15451 A A No Deposit Transient
## 15452 A A No Deposit Contract
## 15453 A E No Deposit Transient
## 15454 A E No Deposit Transient
## 15455 A A No Deposit Transient
## 15456 A D No Deposit Transient
## 15457 D D No Deposit Contract
## 15458 D D No Deposit Transient
## 15459 E E No Deposit Transient
## 15460 A A No Deposit Contract
## 15461 A A No Deposit Contract
## 15462 A A No Deposit Contract
## 15463 A A No Deposit Transient
## 15464 A A No Deposit Transient
## 15465 D D No Deposit Transient
## 15466 A D No Deposit Transient
## 15467 A A No Deposit Transient
## 15468 A A No Deposit Transient
## 15469 A C No Deposit Transient
## 15470 A E No Deposit Transient
## 15471 A A No Deposit Contract
## 15472 D D No Deposit Transient
## 15473 A A No Deposit Transient
## 15474 A D No Deposit Transient
## 15475 A A No Deposit Contract
## 15476 A D No Deposit Transient
## 15477 D D No Deposit Transient
## 15478 A A No Deposit Group
## 15479 A C No Deposit Transient
## 15480 D D No Deposit Contract
## 15481 A A No Deposit Transient
## 15482 G G No Deposit Transient
## 15483 E E No Deposit Transient
## 15484 E G No Deposit Transient
## 15485 E E No Deposit Contract
## 15486 A D No Deposit Transient
## 15487 A D No Deposit Transient
## 15488 F E No Deposit Transient
## 15489 E E No Deposit Contract
## 15490 A A No Deposit Transient
## 15491 D D No Deposit Transient
## 15492 D D No Deposit Transient
## 15493 E E No Deposit Contract
## 15494 D D No Deposit Transient
## 15495 E E No Deposit Transient
## 15496 G G No Deposit Transient
## 15497 A A No Deposit Contract
## 15498 A A No Deposit Transient
## 15499 A A No Deposit Contract
## 15500 A A No Deposit Contract
## 15501 A A No Deposit Transient
## 15502 F F No Deposit Transient
## 15503 D D No Deposit Transient
## 15504 A A No Deposit Contract
## 15505 A A No Deposit Transient
## 15506 F F No Deposit Transient
## 15507 D D No Deposit Contract
## 15508 A A No Deposit Transient
## 15509 C C No Deposit Transient
## 15510 A A No Deposit Contract
## 15511 E E No Deposit Transient
## 15512 E E No Deposit Transient
## 15513 A A No Deposit Transient
## 15514 A A No Deposit Transient
## 15515 E E No Deposit Transient
## 15516 F F No Deposit Transient
## 15517 A E No Deposit Transient
## 15518 E E No Deposit Transient
## 15519 E E No Deposit Transient
## 15520 E E No Deposit Transient
## 15521 E E No Deposit Contract
## 15522 D E No Deposit Transient
## 15523 D D No Deposit Contract
## 15524 D D No Deposit Transient
## 15525 D D No Deposit Transient
## 15526 A E No Deposit Transient
## 15527 D D No Deposit Transient
## 15528 D D No Deposit Transient
## 15529 C G No Deposit Transient
## 15530 D D No Deposit Transient
## 15531 A A No Deposit Transient
## 15532 A A No Deposit Transient
## 15533 G G No Deposit Transient
## 15534 A E No Deposit Transient
## 15535 A A No Deposit Transient
## 15536 A F No Deposit Transient
## 15537 A A No Deposit Transient
## 15538 A D No Deposit Transient
## 15539 A A No Deposit Transient
## 15540 E E No Deposit Transient
## 15541 E F No Deposit Transient
## 15542 A E No Deposit Transient
## 15543 E F No Deposit Transient
## 15544 D D No Deposit Transient
## 15545 E E No Deposit Transient
## 15546 A A No Deposit Transient
## 15547 A A No Deposit Transient
## 15548 A C No Deposit Transient
## 15549 A C No Deposit Transient
## 15550 A A No Deposit Transient
## 15551 F F No Deposit Transient
## 15552 D E No Deposit Transient
## 15553 A A No Deposit Transient
## 15554 E E No Deposit Transient
## 15555 A A No Deposit Transient
## 15556 D D No Deposit Transient
## 15557 A A No Deposit Contract
## 15558 A D No Deposit Transient
## 15559 A A No Deposit Contract
## 15560 A E No Deposit Transient
## 15561 A A No Deposit Transient-Party
## 15562 A A No Deposit Transient-Party
## 15563 E E No Deposit Transient
## 15564 A A No Deposit Transient
## 15565 D D No Deposit Transient
## 15566 A A No Deposit Transient
## 15567 D E No Deposit Transient-Party
## 15568 A A No Deposit Transient
## 15569 A A No Deposit Transient
## 15570 A A No Deposit Transient
## 15571 E G No Deposit Transient-Party
## 15572 G G No Deposit Transient
## 15573 D E No Deposit Transient
## 15574 D E No Deposit Transient
## 15575 D E No Deposit Transient
## 15576 E E No Deposit Transient
## 15577 E E No Deposit Transient
## 15578 D D No Deposit Transient-Party
## 15579 A A No Deposit Transient-Party
## 15580 A C No Deposit Transient
## 15581 A A No Deposit Transient
## 15582 A A No Deposit Transient
## 15583 A D No Deposit Transient
## 15584 E E No Deposit Transient
## 15585 D D No Deposit Transient
## 15586 D D No Deposit Transient
## 15587 A A No Deposit Transient
## 15588 D D No Deposit Transient
## 15589 C C No Deposit Transient
## 15590 A A No Deposit Transient
## 15591 A A No Deposit Transient
## 15592 A D No Deposit Transient
## 15593 A A No Deposit Transient
## 15594 D A No Deposit Transient
## 15595 A D No Deposit Transient
## 15596 A A No Deposit Transient
## 15597 A A No Deposit Transient
## 15598 G G No Deposit Transient
## 15599 A A No Deposit Transient
## 15600 A A No Deposit Transient
## 15601 A A No Deposit Transient
## 15602 G G No Deposit Transient-Party
## 15603 A A No Deposit Contract
## 15604 A A No Deposit Contract
## 15605 C C No Deposit Transient-Party
## 15606 C C No Deposit Transient-Party
## 15607 E E No Deposit Transient
## 15608 E E No Deposit Transient
## 15609 A A No Deposit Transient
## 15610 C C No Deposit Transient
## 15611 C C No Deposit Transient
## 15612 A A No Deposit Transient
## 15613 D D No Deposit Transient
## 15614 A A No Deposit Transient
## 15615 A A No Deposit Transient
## 15616 D D No Deposit Transient
## 15617 D D No Deposit Transient
## 15618 A D No Deposit Transient-Party
## 15619 A D No Deposit Transient-Party
## 15620 A A No Deposit Transient
## 15621 D D No Deposit Transient
## 15622 A A No Deposit Transient-Party
## 15623 A A No Deposit Transient-Party
## 15624 A A No Deposit Transient-Party
## 15625 A A No Deposit Transient-Party
## 15626 A A No Deposit Transient-Party
## 15627 D D No Deposit Transient-Party
## 15628 D D No Deposit Transient-Party
## 15629 A A No Deposit Transient
## 15630 A H No Deposit Transient
## 15631 E E No Deposit Transient
## 15632 D D No Deposit Transient
## 15633 D D No Deposit Transient
## 15634 A A No Deposit Contract
## 15635 A A No Deposit Contract
## 15636 F F No Deposit Transient
## 15637 F F No Deposit Transient
## 15638 A A No Deposit Contract
## 15639 A A No Deposit Contract
## 15640 A A No Deposit Transient
## 15641 D E No Deposit Transient
## 15642 A D No Deposit Transient
## 15643 C C No Deposit Transient
## 15644 A A No Deposit Contract
## 15645 G G No Deposit Transient
## 15646 A C No Deposit Transient
## 15647 A C No Deposit Transient
## 15648 A E No Deposit Transient-Party
## 15649 D F No Deposit Transient-Party
## 15650 D F No Deposit Transient-Party
## 15651 E E No Deposit Transient
## 15652 D D No Deposit Transient
## 15653 D D No Deposit Transient
## 15654 D D No Deposit Transient
## 15655 A A No Deposit Transient-Party
## 15656 A A No Deposit Transient-Party
## 15657 A A No Deposit Transient-Party
## 15658 A A No Deposit Transient-Party
## 15659 A A No Deposit Transient-Party
## 15660 A A No Deposit Transient-Party
## 15661 A A No Deposit Transient-Party
## 15662 A A No Deposit Transient-Party
## 15663 A A No Deposit Transient-Party
## 15664 A A No Deposit Transient-Party
## 15665 A A No Deposit Transient-Party
## 15666 A A No Deposit Transient-Party
## 15667 A A No Deposit Transient-Party
## 15668 A A No Deposit Transient-Party
## 15669 A A No Deposit Transient-Party
## 15670 A A No Deposit Transient-Party
## 15671 A A No Deposit Transient-Party
## 15672 A A No Deposit Transient-Party
## 15673 A A No Deposit Transient-Party
## 15674 A A No Deposit Transient-Party
## 15675 A D No Deposit Transient-Party
## 15676 A A No Deposit Transient
## 15677 A B No Deposit Transient
## 15678 A H No Deposit Transient
## 15679 A A No Deposit Transient
## 15680 A C No Deposit Transient
## 15681 A D No Deposit Transient
## 15682 A D No Deposit Transient
## 15683 A D No Deposit Transient
## 15684 A A No Deposit Transient-Party
## 15685 E E No Deposit Transient
## 15686 A D No Deposit Transient-Party
## 15687 A A No Deposit Transient-Party
## 15688 D D No Deposit Transient
## 15689 A A No Deposit Transient
## 15690 A A No Deposit Transient
## 15691 D D No Deposit Transient
## 15692 D D No Deposit Transient
## 15693 A D No Deposit Transient
## 15694 A A No Deposit Contract
## 15695 A A No Deposit Transient
## 15696 A A No Deposit Transient
## 15697 A C No Deposit Transient
## 15698 A A No Deposit Transient-Party
## 15699 E F No Deposit Transient
## 15700 A A No Deposit Transient
## 15701 A A Non Refund Transient
## 15702 A A Non Refund Transient
## 15703 A A Non Refund Transient
## 15704 A A Non Refund Transient
## 15705 A A Non Refund Transient
## 15706 A A Non Refund Transient
## 15707 A A Non Refund Transient
## 15708 A A Non Refund Transient
## 15709 A A Non Refund Transient
## 15710 A A Non Refund Transient
## 15711 A A Non Refund Transient
## 15712 A A Non Refund Transient
## 15713 A A Non Refund Transient
## 15714 A A Non Refund Transient
## 15715 A A Non Refund Transient
## 15716 A A Non Refund Transient
## 15717 A A Non Refund Transient
## 15718 A A Non Refund Transient
## 15719 A A Non Refund Transient
## 15720 A A Non Refund Transient
## 15721 A A Non Refund Transient
## 15722 A A Non Refund Transient
## 15723 A A Non Refund Transient
## 15724 A A Non Refund Transient
## 15725 A A Non Refund Transient
## 15726 A A Non Refund Transient
## 15727 A A Non Refund Transient
## 15728 D D No Deposit Transient
## 15729 A A No Deposit Transient
## 15730 A D No Deposit Transient
## 15731 A D No Deposit Transient
## 15732 A D No Deposit Transient
## 15733 D D No Deposit Transient
## 15734 E E No Deposit Transient
## 15735 A A No Deposit Transient
## 15736 D D No Deposit Transient
## 15737 A A No Deposit Transient
## 15738 A A No Deposit Transient
## 15739 A A No Deposit Contract
## 15740 G G No Deposit Transient
## 15741 A A No Deposit Transient
## 15742 D D No Deposit Transient
## 15743 E E No Deposit Transient
## 15744 E E No Deposit Transient
## 15745 H H No Deposit Transient
## 15746 D D No Deposit Transient
## 15747 A A No Deposit Transient
## 15748 A A No Deposit Transient
## 15749 D D No Deposit Transient
## 15750 A A No Deposit Transient
## 15751 G G No Deposit Transient
## 15752 A A No Deposit Transient
## 15753 D D No Deposit Transient
## 15754 A A No Deposit Transient-Party
## 15755 A A No Deposit Transient-Party
## 15756 A A No Deposit Transient-Party
## 15757 A A No Deposit Transient-Party
## 15758 A A No Deposit Transient-Party
## 15759 A A No Deposit Transient-Party
## 15760 A A No Deposit Transient-Party
## 15761 A A No Deposit Transient-Party
## 15762 A A No Deposit Transient-Party
## 15763 A A No Deposit Transient-Party
## 15764 A A No Deposit Transient-Party
## 15765 A A No Deposit Transient-Party
## 15766 A A No Deposit Transient-Party
## 15767 A A No Deposit Transient-Party
## 15768 A A No Deposit Transient
## 15769 E E No Deposit Transient
## 15770 D D No Deposit Transient
## 15771 G G No Deposit Transient
## 15772 A A No Deposit Transient
## 15773 A A No Deposit Transient
## 15774 A A No Deposit Transient
## 15775 A A No Deposit Transient
## 15776 E E No Deposit Transient
## 15777 E E No Deposit Transient
## 15778 D D No Deposit Transient
## 15779 E F No Deposit Transient
## 15780 D D No Deposit Transient
## 15781 A A No Deposit Transient
## 15782 A D No Deposit Transient
## 15783 H H No Deposit Transient
## 15784 D D No Deposit Transient
## 15785 A E No Deposit Transient
## 15786 A A No Deposit Transient
## 15787 E E No Deposit Transient
## 15788 A A No Deposit Transient
## 15789 A A No Deposit Transient
## 15790 A A No Deposit Transient
## 15791 A A No Deposit Transient
## 15792 A A No Deposit Transient
## 15793 A A No Deposit Transient
## 15794 A F No Deposit Transient
## 15795 A A No Deposit Transient
## 15796 A A No Deposit Transient-Party
## 15797 B B No Deposit Transient
## 15798 A I No Deposit Group
## 15799 A A No Deposit Transient-Party
## 15800 A E No Deposit Transient
## 15801 A A No Deposit Transient
## 15802 A A No Deposit Transient
## 15803 A A No Deposit Transient
## 15804 C C No Deposit Transient
## 15805 C C No Deposit Transient
## 15806 A A No Deposit Transient-Party
## 15807 D D No Deposit Transient
## 15808 A E No Deposit Transient
## 15809 A D No Deposit Transient
## 15810 A A No Deposit Transient
## 15811 C C No Deposit Transient
## 15812 F F No Deposit Transient
## 15813 A E No Deposit Transient
## 15814 D D No Deposit Transient
## 15815 C C No Deposit Transient
## 15816 D D No Deposit Transient
## 15817 D D No Deposit Contract
## 15818 D D No Deposit Transient
## 15819 A A No Deposit Transient
## 15820 A A No Deposit Transient
## 15821 E E No Deposit Transient
## 15822 A A No Deposit Contract
## 15823 D D No Deposit Transient
## 15824 A A No Deposit Contract
## 15825 A A No Deposit Contract
## 15826 E F No Deposit Transient
## 15827 E F No Deposit Transient
## 15828 F F No Deposit Transient
## 15829 F F No Deposit Transient
## 15830 A A No Deposit Transient
## 15831 A A No Deposit Transient
## 15832 E E No Deposit Contract
## 15833 A A No Deposit Transient
## 15834 D D No Deposit Transient
## 15835 D D No Deposit Transient
## 15836 A C No Deposit Transient
## 15837 G G No Deposit Transient
## 15838 A D No Deposit Transient-Party
## 15839 A D No Deposit Transient-Party
## 15840 F F No Deposit Transient
## 15841 A A No Deposit Transient
## 15842 A A No Deposit Transient
## 15843 A C No Deposit Transient
## 15844 A D No Deposit Transient
## 15845 D D No Deposit Transient
## 15846 E E No Deposit Contract
## 15847 A A No Deposit Transient
## 15848 E E No Deposit Transient
## 15849 D D No Deposit Transient
## 15850 A A No Deposit Contract
## 15851 A A No Deposit Contract
## 15852 F F No Deposit Transient
## 15853 A A No Deposit Transient
## 15854 D D No Deposit Transient
## 15855 D D No Deposit Transient
## 15856 L B No Deposit Transient
## 15857 A A No Deposit Transient-Party
## 15858 A A No Deposit Transient-Party
## 15859 D D No Deposit Transient
## 15860 A A No Deposit Contract
## 15861 A A No Deposit Transient
## 15862 E E No Deposit Transient
## 15863 E E No Deposit Transient
## 15864 D D No Deposit Transient
## 15865 E E No Deposit Transient
## 15866 A A No Deposit Transient
## 15867 A A No Deposit Transient
## 15868 A A No Deposit Contract
## 15869 A A No Deposit Contract
## 15870 A A No Deposit Contract
## 15871 A A No Deposit Contract
## 15872 A D No Deposit Transient
## 15873 A D No Deposit Transient
## 15874 A C No Deposit Transient
## 15875 A A No Deposit Transient
## 15876 A E No Deposit Transient
## 15877 A E No Deposit Transient
## 15878 E F No Deposit Transient
## 15879 E E No Deposit Transient
## 15880 C C No Deposit Transient
## 15881 A A No Deposit Transient
## 15882 A A No Deposit Contract
## 15883 A A No Deposit Transient
## 15884 A D No Deposit Transient
## 15885 D D No Deposit Transient
## 15886 A A No Deposit Contract
## 15887 E E No Deposit Transient
## 15888 A A No Deposit Transient
## 15889 D D No Deposit Contract
## 15890 G H No Deposit Transient
## 15891 A B No Deposit Transient
## 15892 C C No Deposit Transient
## 15893 F F No Deposit Transient
## 15894 A A No Deposit Transient
## 15895 A E No Deposit Transient
## 15896 A A No Deposit Transient
## 15897 E E No Deposit Transient
## 15898 G H No Deposit Transient
## 15899 G G No Deposit Transient
## 15900 E F No Deposit Transient
## 15901 D D No Deposit Transient
## 15902 D D No Deposit Transient
## 15903 D D No Deposit Transient
## 15904 A A No Deposit Transient
## 15905 D D No Deposit Transient
## 15906 F F No Deposit Transient
## 15907 A A No Deposit Contract
## 15908 A D No Deposit Transient
## 15909 D F No Deposit Transient
## 15910 A A No Deposit Transient
## 15911 D D No Deposit Transient
## 15912 D D No Deposit Transient
## 15913 C C No Deposit Transient
## 15914 A A No Deposit Contract
## 15915 A A No Deposit Transient
## 15916 A A No Deposit Transient
## 15917 A A No Deposit Transient
## 15918 A A No Deposit Transient
## 15919 A A No Deposit Transient
## 15920 A D No Deposit Transient
## 15921 D D No Deposit Transient
## 15922 A A No Deposit Transient
## 15923 E E No Deposit Transient
## 15924 F F No Deposit Transient
## 15925 D F No Deposit Transient
## 15926 A A No Deposit Transient
## 15927 A A No Deposit Transient
## 15928 G G No Deposit Transient
## 15929 A A No Deposit Transient
## 15930 D D No Deposit Transient
## 15931 D D No Deposit Transient
## 15932 E E No Deposit Transient
## 15933 E E No Deposit Transient
## 15934 A A No Deposit Transient
## 15935 A A No Deposit Transient
## 15936 A A No Deposit Transient
## 15937 E E No Deposit Transient
## 15938 F G No Deposit Transient
## 15939 D D No Deposit Transient
## 15940 A A No Deposit Transient
## 15941 D D No Deposit Transient
## 15942 A A No Deposit Transient
## 15943 E E No Deposit Transient
## 15944 D D No Deposit Transient
## 15945 F F No Deposit Transient
## 15946 A A No Deposit Transient
## 15947 A A No Deposit Transient-Party
## 15948 A A No Deposit Transient
## 15949 A A No Deposit Transient
## 15950 F G No Deposit Transient
## 15951 A C No Deposit Transient
## 15952 D D No Deposit Transient
## 15953 D A No Deposit Transient
## 15954 G G No Deposit Transient
## 15955 D E No Deposit Transient-Party
## 15956 C C No Deposit Transient
## 15957 A C No Deposit Transient
## 15958 A A No Deposit Transient
## 15959 E E No Deposit Transient
## 15960 E E No Deposit Transient
## 15961 C C No Deposit Transient
## 15962 C C No Deposit Transient
## 15963 C C No Deposit Transient
## 15964 D E No Deposit Transient
## 15965 F F No Deposit Transient
## 15966 E F No Deposit Transient-Party
## 15967 E E No Deposit Transient
## 15968 E E No Deposit Transient
## 15969 D D No Deposit Transient
## 15970 F F No Deposit Transient
## 15971 E E No Deposit Transient
## 15972 E E No Deposit Transient
## 15973 A D No Deposit Transient
## 15974 A A No Deposit Transient
## 15975 E E No Deposit Contract
## 15976 A C No Deposit Transient
## 15977 E E No Deposit Contract
## 15978 A A No Deposit Transient
## 15979 C C No Deposit Transient
## 15980 A A No Deposit Transient
## 15981 E E No Deposit Transient
## 15982 A A No Deposit Transient-Party
## 15983 A A No Deposit Transient
## 15984 D D No Deposit Transient
## 15985 A A No Deposit Transient
## 15986 A E No Deposit Transient
## 15987 D D No Deposit Transient
## 15988 A E No Deposit Transient
## 15989 D D No Deposit Transient
## 15990 A C No Deposit Transient
## 15991 A C No Deposit Transient
## 15992 D D No Deposit Transient
## 15993 F F No Deposit Transient
## 15994 D D No Deposit Transient
## 15995 A A No Deposit Transient
## 15996 G G No Deposit Transient
## 15997 A A No Deposit Transient
## 15998 A A No Deposit Contract
## 15999 A A No Deposit Contract
## 16000 D D No Deposit Transient
## 16001 A A No Deposit Contract
## 16002 A A No Deposit Transient-Party
## 16003 D D No Deposit Transient
## 16004 A A No Deposit Contract
## 16005 D D No Deposit Transient
## 16006 A A No Deposit Transient
## 16007 G G No Deposit Transient
## 16008 A E No Deposit Transient
## 16009 A A No Deposit Transient
## 16010 A A No Deposit Contract
## 16011 C C No Deposit Transient
## 16012 A A No Deposit Transient-Party
## 16013 D D No Deposit Contract
## 16014 E E No Deposit Transient
## 16015 A D No Deposit Transient
## 16016 E E No Deposit Transient
## 16017 F G No Deposit Transient
## 16018 A D No Deposit Transient-Party
## 16019 A D No Deposit Transient-Party
## 16020 A C No Deposit Transient
## 16021 A A No Deposit Transient
## 16022 A A No Deposit Transient
## 16023 D D No Deposit Transient
## 16024 D D No Deposit Transient
## 16025 E E No Deposit Contract
## 16026 A A No Deposit Contract
## 16027 A A No Deposit Contract
## 16028 A A No Deposit Contract
## 16029 A A No Deposit Transient
## 16030 A A No Deposit Transient
## 16031 A A No Deposit Transient
## 16032 A A No Deposit Transient
## 16033 E E No Deposit Transient
## 16034 E E No Deposit Transient
## 16035 D D No Deposit Transient
## 16036 A D No Deposit Transient
## 16037 D D No Deposit Transient
## 16038 A B No Deposit Transient
## 16039 A C No Deposit Transient
## 16040 E F No Deposit Transient
## 16041 A A Non Refund Transient
## 16042 A A Non Refund Transient
## 16043 A A Non Refund Transient
## 16044 A A Non Refund Transient
## 16045 A A Non Refund Transient
## 16046 A A Non Refund Transient
## 16047 A A No Deposit Transient
## 16048 A A No Deposit Transient-Party
## 16049 A A No Deposit Transient-Party
## 16050 A A No Deposit Transient-Party
## 16051 E E No Deposit Transient
## 16052 E E No Deposit Contract
## 16053 E E No Deposit Contract
## 16054 A A No Deposit Transient-Party
## 16055 A A No Deposit Transient-Party
## 16056 A A No Deposit Transient-Party
## 16057 D F No Deposit Transient
## 16058 A A No Deposit Transient-Party
## 16059 A A No Deposit Transient-Party
## 16060 E F No Deposit Transient
## 16061 A A No Deposit Transient
## 16062 A A No Deposit Transient
## 16063 A D No Deposit Transient
## 16064 F F No Deposit Transient
## 16065 E E No Deposit Transient
## 16066 A A No Deposit Transient
## 16067 A D No Deposit Transient
## 16068 D D No Deposit Transient
## 16069 D D No Deposit Contract
## 16070 D D No Deposit Contract
## 16071 D D No Deposit Contract
## 16072 A A No Deposit Transient
## 16073 A A No Deposit Transient
## 16074 A E No Deposit Transient
## 16075 F F No Deposit Transient
## 16076 D E No Deposit Transient
## 16077 D E No Deposit Transient
## 16078 G G No Deposit Transient
## 16079 D D No Deposit Transient
## 16080 A A No Deposit Transient
## 16081 G G No Deposit Transient
## 16082 A E No Deposit Transient
## 16083 A A No Deposit Transient
## 16084 E E No Deposit Transient
## 16085 A A No Deposit Transient
## 16086 A A No Deposit Transient
## 16087 F F No Deposit Transient
## 16088 H H No Deposit Transient
## 16089 D D No Deposit Contract
## 16090 D D No Deposit Transient
## 16091 E E No Deposit Transient
## 16092 A A No Deposit Transient
## 16093 D D No Deposit Transient
## 16094 D D No Deposit Contract
## 16095 D D No Deposit Transient
## 16096 A A No Deposit Transient
## 16097 A A No Deposit Transient
## 16098 A C No Deposit Transient
## 16099 A A No Deposit Transient
## 16100 E E No Deposit Transient
## 16101 D D No Deposit Transient
## 16102 A D No Deposit Transient
## 16103 A A No Deposit Transient
## 16104 A D No Deposit Transient
## 16105 A D No Deposit Transient
## 16106 E E No Deposit Transient
## 16107 E F No Deposit Transient
## 16108 F F No Deposit Transient
## 16109 A A No Deposit Transient
## 16110 H H No Deposit Transient
## 16111 A A No Deposit Transient
## 16112 C C No Deposit Transient
## 16113 A A No Deposit Transient
## 16114 C C No Deposit Transient
## 16115 D G No Deposit Transient
## 16116 D F No Deposit Transient
## 16117 E E No Deposit Transient
## 16118 A C No Deposit Transient
## 16119 C C No Deposit Transient
## 16120 A C No Deposit Transient
## 16121 E E No Deposit Contract
## 16122 E E No Deposit Transient
## 16123 E E No Deposit Transient
## 16124 E E No Deposit Transient
## 16125 A A No Deposit Transient-Party
## 16126 A A No Deposit Transient-Party
## 16127 E E No Deposit Transient
## 16128 A A No Deposit Transient
## 16129 A A No Deposit Transient
## 16130 A A No Deposit Transient
## 16131 A A No Deposit Transient
## 16132 D D No Deposit Transient
## 16133 A A No Deposit Transient
## 16134 A A No Deposit Transient
## 16135 A H No Deposit Transient
## 16136 C C No Deposit Transient
## 16137 F F No Deposit Transient
## 16138 A A No Deposit Transient
## 16139 A A No Deposit Transient
## 16140 A A No Deposit Transient
## 16141 D D No Deposit Transient
## 16142 A A No Deposit Transient
## 16143 E E No Deposit Transient
## 16144 A A No Deposit Transient
## 16145 D D No Deposit Transient
## 16146 A F No Deposit Transient
## 16147 A A No Deposit Transient
## 16148 D D No Deposit Transient
## 16149 A A No Deposit Transient
## 16150 D E No Deposit Transient
## 16151 G G No Deposit Transient
## 16152 H H No Deposit Transient
## 16153 D D No Deposit Transient
## 16154 A A No Deposit Transient
## 16155 A A No Deposit Transient
## 16156 D D No Deposit Transient
## 16157 A A No Deposit Transient
## 16158 A A No Deposit Transient
## 16159 A A No Deposit Transient
## 16160 D D No Deposit Contract
## 16161 D D No Deposit Transient
## 16162 E E No Deposit Contract
## 16163 E E No Deposit Transient
## 16164 E E No Deposit Transient
## 16165 E G No Deposit Transient
## 16166 A C No Deposit Transient
## 16167 A A No Deposit Transient
## 16168 A A No Deposit Transient-Party
## 16169 D D No Deposit Transient
## 16170 D C No Deposit Transient
## 16171 D E No Deposit Transient
## 16172 A A No Deposit Transient-Party
## 16173 A A No Deposit Transient
## 16174 D D No Deposit Transient
## 16175 A A No Deposit Transient
## 16176 D D No Deposit Transient
## 16177 F F No Deposit Transient
## 16178 A A No Deposit Transient
## 16179 A A No Deposit Transient-Party
## 16180 D D No Deposit Transient
## 16181 A A No Deposit Transient-Party
## 16182 A A No Deposit Transient-Party
## 16183 A A No Deposit Transient
## 16184 A A No Deposit Transient
## 16185 A A No Deposit Transient
## 16186 A A No Deposit Contract
## 16187 A A No Deposit Contract
## 16188 C C No Deposit Transient
## 16189 A D No Deposit Transient
## 16190 A D No Deposit Transient
## 16191 A A No Deposit Transient
## 16192 D E No Deposit Transient
## 16193 A A No Deposit Transient
## 16194 D D No Deposit Transient
## 16195 A A No Deposit Transient
## 16196 G G No Deposit Transient
## 16197 A C No Deposit Transient
## 16198 D D No Deposit Transient
## 16199 C C No Deposit Transient
## 16200 E F No Deposit Transient
## 16201 A C No Deposit Transient
## 16202 D D No Deposit Contract
## 16203 D D No Deposit Transient
## 16204 E E No Deposit Transient
## 16205 D D No Deposit Transient
## 16206 A C No Deposit Transient
## 16207 E E No Deposit Transient
## 16208 D D No Deposit Transient
## 16209 A C No Deposit Transient
## 16210 A A No Deposit Contract
## 16211 D D No Deposit Transient
## 16212 A C No Deposit Contract
## 16213 A A No Deposit Transient
## 16214 D F No Deposit Transient
## 16215 D D No Deposit Transient-Party
## 16216 E F No Deposit Contract
## 16217 D D No Deposit Contract
## 16218 D D No Deposit Contract
## 16219 A A No Deposit Transient
## 16220 A A No Deposit Transient
## 16221 D E No Deposit Transient
## 16222 D D No Deposit Transient-Party
## 16223 A E No Deposit Transient
## 16224 A F No Deposit Transient
## 16225 A A No Deposit Transient-Party
## 16226 A A No Deposit Transient
## 16227 A A No Deposit Contract
## 16228 A E No Deposit Transient
## 16229 A A No Deposit Transient
## 16230 E E No Deposit Transient
## 16231 G G No Deposit Transient
## 16232 A A No Deposit Transient
## 16233 A A No Deposit Transient
## 16234 A E No Deposit Transient
## 16235 D E No Deposit Transient
## 16236 A B No Deposit Transient
## 16237 D D No Deposit Transient
## 16238 D D No Deposit Transient
## 16239 A E No Deposit Transient
## 16240 A A No Deposit Transient
## 16241 A A No Deposit Transient
## 16242 A A No Deposit Transient
## 16243 A A No Deposit Transient
## 16244 D D No Deposit Transient
## 16245 C C No Deposit Transient
## 16246 A A No Deposit Transient
## 16247 A A No Deposit Transient
## 16248 D D No Deposit Transient-Party
## 16249 A A No Deposit Transient
## 16250 A A No Deposit Transient
## 16251 A A No Deposit Transient
## 16252 F F No Deposit Transient
## 16253 A A No Deposit Transient
## 16254 A A No Deposit Transient
## 16255 A F No Deposit Transient
## 16256 D D No Deposit Transient
## 16257 G G No Deposit Transient
## 16258 A A No Deposit Transient-Party
## 16259 A A No Deposit Transient-Party
## 16260 A A No Deposit Transient-Party
## 16261 E E No Deposit Transient-Party
## 16262 E E No Deposit Transient-Party
## 16263 D D No Deposit Transient
## 16264 A A No Deposit Transient
## 16265 A A No Deposit Transient
## 16266 A A No Deposit Transient
## 16267 G G No Deposit Transient
## 16268 E E No Deposit Transient
## 16269 C C No Deposit Transient
## 16270 D E No Deposit Transient
## 16271 D D No Deposit Transient
## 16272 D D No Deposit Transient
## 16273 D D No Deposit Transient
## 16274 A A No Deposit Transient
## 16275 D D No Deposit Transient
## 16276 G G No Deposit Transient
## 16277 A E No Deposit Transient
## 16278 A A No Deposit Transient
## 16279 F F No Deposit Transient
## 16280 A A No Deposit Transient
## 16281 A A No Deposit Contract
## 16282 D D No Deposit Contract
## 16283 D D No Deposit Contract
## 16284 C C No Deposit Contract
## 16285 A A No Deposit Transient-Party
## 16286 A A No Deposit Transient-Party
## 16287 A A No Deposit Transient
## 16288 A A No Deposit Contract
## 16289 E E No Deposit Transient
## 16290 E E No Deposit Transient
## 16291 H H No Deposit Transient
## 16292 G G No Deposit Transient
## 16293 E E No Deposit Contract
## 16294 E E No Deposit Contract
## 16295 E E No Deposit Transient-Party
## 16296 A A No Deposit Transient-Party
## 16297 A A No Deposit Transient
## 16298 A A No Deposit Transient
## 16299 F F No Deposit Transient
## 16300 E E No Deposit Transient
## 16301 E E No Deposit Transient
## 16302 D D No Deposit Transient
## 16303 D D No Deposit Transient
## 16304 E F No Deposit Transient
## 16305 A A No Deposit Transient
## 16306 A A No Deposit Transient
## 16307 D D No Deposit Transient
## 16308 D D No Deposit Transient
## 16309 F F No Deposit Transient
## 16310 D D No Deposit Transient
## 16311 E E No Deposit Transient
## 16312 A A No Deposit Transient
## 16313 A A No Deposit Transient
## 16314 H H No Deposit Transient
## 16315 A A No Deposit Transient
## 16316 A A No Deposit Transient
## 16317 D D No Deposit Transient
## 16318 D E No Deposit Transient
## 16319 D D No Deposit Transient
## 16320 D G No Deposit Transient
## 16321 D E No Deposit Transient
## 16322 D D No Deposit Transient
## 16323 E E No Deposit Transient
## 16324 D D No Deposit Transient-Party
## 16325 D D No Deposit Transient-Party
## 16326 A A No Deposit Transient
## 16327 A A No Deposit Transient
## 16328 A A No Deposit Transient
## 16329 A A No Deposit Transient
## 16330 D E No Deposit Transient
## 16331 G G No Deposit Transient
## 16332 A D No Deposit Transient
## 16333 E F No Deposit Transient
## 16334 A A No Deposit Transient-Party
## 16335 F F No Deposit Transient
## 16336 F F No Deposit Transient
## 16337 A D No Deposit Transient
## 16338 E E No Deposit Transient
## 16339 A A No Deposit Transient
## 16340 E D No Deposit Transient
## 16341 A A No Deposit Transient
## 16342 D E No Deposit Transient
## 16343 G G No Deposit Transient
## 16344 A A No Deposit Transient
## 16345 E E No Deposit Transient
## 16346 D D No Deposit Transient
## 16347 D D No Deposit Transient
## 16348 D D No Deposit Transient-Party
## 16349 D D No Deposit Transient-Party
## 16350 A A No Deposit Transient
## 16351 A A No Deposit Transient
## 16352 A A No Deposit Transient
## 16353 F F No Deposit Transient
## 16354 A A No Deposit Transient-Party
## 16355 A A No Deposit Transient-Party
## 16356 A A No Deposit Transient
## 16357 A A No Deposit Transient
## 16358 A A No Deposit Transient
## 16359 A A No Deposit Transient
## 16360 D D No Deposit Transient
## 16361 G G No Deposit Transient
## 16362 A A No Deposit Transient
## 16363 A A No Deposit Transient
## 16364 C E No Deposit Transient
## 16365 E E No Deposit Transient
## 16366 E I No Deposit Transient
## 16367 C C No Deposit Transient
## 16368 A A No Deposit Transient
## 16369 A B No Deposit Transient
## 16370 C D No Deposit Transient
## 16371 A A No Deposit Transient
## 16372 D E No Deposit Transient
## 16373 H H No Deposit Transient
## 16374 C H No Deposit Transient-Party
## 16375 A H No Deposit Transient
## 16376 A I No Deposit Transient
## 16377 C C No Deposit Transient
## 16378 D E No Deposit Transient
## 16379 A A No Deposit Transient-Party
## 16380 A A No Deposit Transient
## 16381 A A No Deposit Transient
## 16382 E D No Deposit Transient
## 16383 F F No Deposit Transient
## 16384 A A No Deposit Transient-Party
## 16385 A A No Deposit Transient
## 16386 A D No Deposit Transient
## 16387 A A No Deposit Transient
## 16388 A D No Deposit Transient
## 16389 A A No Deposit Transient
## 16390 A A No Deposit Transient
## 16391 A C No Deposit Transient
## 16392 A A No Deposit Transient
## 16393 G G No Deposit Transient
## 16394 A E No Deposit Transient
## 16395 E E No Deposit Transient
## 16396 A A No Deposit Transient
## 16397 A A No Deposit Transient
## 16398 A A No Deposit Transient
## 16399 A A No Deposit Transient
## 16400 A D No Deposit Transient
## 16401 A D No Deposit Transient
## 16402 A A No Deposit Transient
## 16403 D D No Deposit Contract
## 16404 D D No Deposit Transient
## 16405 F F No Deposit Transient
## 16406 E F No Deposit Transient
## 16407 E F No Deposit Transient
## 16408 A A No Deposit Transient
## 16409 A A No Deposit Transient
## 16410 A A No Deposit Transient-Party
## 16411 A A No Deposit Transient-Party
## 16412 A A No Deposit Transient-Party
## 16413 A A No Deposit Transient-Party
## 16414 D D No Deposit Transient
## 16415 E E No Deposit Transient
## 16416 A A No Deposit Transient
## 16417 A A No Deposit Transient
## 16418 A A No Deposit Transient
## 16419 A A No Deposit Transient
## 16420 D D No Deposit Transient
## 16421 E E No Deposit Transient
## 16422 A D No Deposit Transient
## 16423 D E No Deposit Contract
## 16424 D D No Deposit Transient
## 16425 F G No Deposit Transient
## 16426 A A No Deposit Transient
## 16427 A A No Deposit Transient-Party
## 16428 C C No Deposit Transient
## 16429 D D No Deposit Transient
## 16430 E E No Deposit Transient
## 16431 C C No Deposit Transient
## 16432 C C No Deposit Transient
## 16433 A D No Deposit Transient
## 16434 A C No Deposit Transient
## 16435 A A No Deposit Transient
## 16436 A A No Deposit Transient
## 16437 A A No Deposit Contract
## 16438 D E No Deposit Transient
## 16439 A A No Deposit Transient
## 16440 G G No Deposit Transient
## 16441 A D No Deposit Transient
## 16442 A A No Deposit Transient-Party
## 16443 D E No Deposit Transient
## 16444 D D No Deposit Contract
## 16445 A A No Deposit Transient-Party
## 16446 A A No Deposit Transient
## 16447 A A No Deposit Transient
## 16448 A A No Deposit Transient
## 16449 D H No Deposit Transient
## 16450 A A No Deposit Contract
## 16451 E E No Deposit Transient
## 16452 D D No Deposit Transient
## 16453 D D No Deposit Transient
## 16454 D D No Deposit Transient
## 16455 D D No Deposit Transient
## 16456 D D No Deposit Transient
## 16457 D D No Deposit Transient
## 16458 E F No Deposit Transient
## 16459 A A No Deposit Transient
## 16460 A A No Deposit Contract
## 16461 A A No Deposit Contract
## 16462 E F No Deposit Transient
## 16463 A A No Deposit Contract
## 16464 E E No Deposit Transient
## 16465 A A No Deposit Contract
## 16466 A A No Deposit Transient
## 16467 D D No Deposit Transient
## 16468 D D No Deposit Transient
## 16469 A A No Deposit Transient
## 16470 A A No Deposit Transient
## 16471 D D No Deposit Transient
## 16472 C C No Deposit Transient
## 16473 A A No Deposit Contract
## 16474 A E No Deposit Transient
## 16475 D D No Deposit Transient
## 16476 A A No Deposit Transient
## 16477 A A No Deposit Transient
## 16478 A A No Deposit Transient
## 16479 A A No Deposit Transient
## 16480 A A No Deposit Transient
## 16481 A A No Deposit Transient
## 16482 D D No Deposit Transient
## 16483 E E No Deposit Transient
## 16484 A A No Deposit Transient
## 16485 A A No Deposit Transient
## 16486 A A No Deposit Transient
## 16487 E F No Deposit Transient
## 16488 A A No Deposit Transient
## 16489 A A No Deposit Transient
## 16490 E E No Deposit Transient-Party
## 16491 A A No Deposit Transient
## 16492 A A No Deposit Transient
## 16493 A A No Deposit Transient
## 16494 D D No Deposit Transient
## 16495 D D No Deposit Contract
## 16496 E E No Deposit Transient-Party
## 16497 E E No Deposit Transient
## 16498 C C No Deposit Transient
## 16499 A E No Deposit Transient
## 16500 A A No Deposit Group
## 16501 A A No Deposit Group
## 16502 A A No Deposit Transient
## 16503 G G No Deposit Transient
## 16504 A A No Deposit Transient
## 16505 A A No Deposit Transient
## 16506 E E No Deposit Transient
## 16507 A A No Deposit Transient
## 16508 A D No Deposit Transient
## 16509 A D No Deposit Transient
## 16510 D D No Deposit Transient
## 16511 A A No Deposit Transient
## 16512 A A No Deposit Transient
## 16513 E E No Deposit Contract
## 16514 A A No Deposit Transient
## 16515 A A No Deposit Transient
## 16516 A A No Deposit Transient
## 16517 A A No Deposit Transient
## 16518 A A No Deposit Transient
## 16519 D D No Deposit Transient
## 16520 D E No Deposit Transient
## 16521 E E No Deposit Transient
## 16522 E E No Deposit Contract
## 16523 E E No Deposit Transient
## 16524 A A No Deposit Transient
## 16525 A A No Deposit Transient
## 16526 D D No Deposit Contract
## 16527 A A No Deposit Transient
## 16528 D D No Deposit Transient-Party
## 16529 A A No Deposit Contract
## 16530 D D No Deposit Transient
## 16531 F G No Deposit Transient
## 16532 E E No Deposit Transient
## 16533 E E No Deposit Transient
## 16534 A D No Deposit Transient-Party
## 16535 C C No Deposit Transient
## 16536 A A No Deposit Transient
## 16537 E E No Deposit Transient
## 16538 D D No Deposit Transient
## 16539 A D No Deposit Transient
## 16540 A A No Deposit Transient
## 16541 A A No Deposit Transient
## 16542 A A No Deposit Transient
## 16543 A A No Deposit Transient
## 16544 A A No Deposit Contract
## 16545 A A No Deposit Contract
## 16546 A A Non Refund Transient
## 16547 A A Non Refund Transient
## 16548 A A Non Refund Transient
## 16549 A A Non Refund Transient
## 16550 A A Non Refund Transient
## 16551 A A Non Refund Transient
## 16552 A A Non Refund Transient
## 16553 A A Non Refund Transient
## 16554 A A Non Refund Transient
## 16555 A A Non Refund Transient
## 16556 A A Non Refund Transient
## 16557 A A Non Refund Transient
## 16558 A A Non Refund Transient
## 16559 A A Non Refund Transient
## 16560 A A Non Refund Transient
## 16561 A A Non Refund Transient
## 16562 A A Non Refund Transient
## 16563 A A Non Refund Transient
## 16564 A A Non Refund Transient
## 16565 A A Non Refund Transient
## 16566 A A Non Refund Transient
## 16567 A A Non Refund Transient
## 16568 A A Non Refund Transient
## 16569 A A Non Refund Transient
## 16570 A A Non Refund Transient
## 16571 A A Non Refund Transient
## 16572 A A Non Refund Transient
## 16573 A A No Deposit Transient
## 16574 C C No Deposit Transient
## 16575 A A No Deposit Contract
## 16576 E E No Deposit Contract
## 16577 A D No Deposit Transient
## 16578 A A No Deposit Contract
## 16579 A A No Deposit Contract
## 16580 A A No Deposit Contract
## 16581 A A No Deposit Contract
## 16582 F F No Deposit Transient
## 16583 D D No Deposit Transient
## 16584 A D No Deposit Transient
## 16585 D D No Deposit Transient
## 16586 A A No Deposit Transient
## 16587 A A No Deposit Transient
## 16588 C C No Deposit Transient
## 16589 E F No Deposit Transient
## 16590 A D No Deposit Transient
## 16591 D D No Deposit Transient
## 16592 A D No Deposit Transient
## 16593 A D No Deposit Transient
## 16594 A D No Deposit Contract
## 16595 D D No Deposit Transient
## 16596 A A No Deposit Transient
## 16597 E F No Deposit Transient
## 16598 D E No Deposit Transient
## 16599 E E No Deposit Transient
## 16600 A A No Deposit Transient
## 16601 A C No Deposit Transient
## 16602 A A No Deposit Transient
## 16603 A C No Deposit Contract
## 16604 D D No Deposit Transient
## 16605 E E No Deposit Transient
## 16606 D D No Deposit Transient
## 16607 E F No Deposit Transient
## 16608 A A No Deposit Transient
## 16609 D D No Deposit Contract
## 16610 E E No Deposit Transient
## 16611 A A No Deposit Transient
## 16612 A D No Deposit Transient
## 16613 D D No Deposit Group
## 16614 E E No Deposit Transient
## 16615 E E No Deposit Transient
## 16616 D D No Deposit Transient
## 16617 E E No Deposit Transient-Party
## 16618 G G No Deposit Transient
## 16619 A D No Deposit Transient
## 16620 H H No Deposit Transient
## 16621 E F No Deposit Transient
## 16622 E E No Deposit Transient
## 16623 D D No Deposit Transient
## 16624 A A No Deposit Transient
## 16625 D D No Deposit Transient
## 16626 E E No Deposit Transient
## 16627 H H No Deposit Transient
## 16628 G G No Deposit Transient
## 16629 E E No Deposit Transient-Party
## 16630 A A No Deposit Transient
## 16631 A A No Deposit Transient
## 16632 E E No Deposit Transient
## 16633 F E No Deposit Transient
## 16634 D D No Deposit Transient
## 16635 D D No Deposit Transient
## 16636 D D No Deposit Contract
## 16637 A A No Deposit Transient
## 16638 D D No Deposit Transient
## 16639 D D No Deposit Transient
## 16640 E E No Deposit Transient
## 16641 G G No Deposit Transient
## 16642 G G No Deposit Transient
## 16643 D D No Deposit Transient-Party
## 16644 D D No Deposit Transient-Party
## 16645 A A No Deposit Transient-Party
## 16646 A A No Deposit Transient-Party
## 16647 A A No Deposit Transient-Party
## 16648 A C No Deposit Transient-Party
## 16649 A A No Deposit Transient-Party
## 16650 A A No Deposit Transient
## 16651 A A No Deposit Transient-Party
## 16652 A E No Deposit Transient-Party
## 16653 D D No Deposit Transient
## 16654 D E No Deposit Transient
## 16655 E E No Deposit Transient
## 16656 D H No Deposit Transient
## 16657 D D No Deposit Transient-Party
## 16658 D D No Deposit Transient
## 16659 G G No Deposit Transient
## 16660 D D No Deposit Transient-Party
## 16661 D D No Deposit Transient-Party
## 16662 E E No Deposit Transient
## 16663 D D No Deposit Transient
## 16664 A G No Deposit Transient
## 16665 A A No Deposit Transient
## 16666 A C No Deposit Transient-Party
## 16667 A C No Deposit Contract
## 16668 A C No Deposit Transient-Party
## 16669 A A No Deposit Transient-Party
## 16670 A A No Deposit Transient-Party
## 16671 E E No Deposit Transient
## 16672 D D No Deposit Transient-Party
## 16673 A A No Deposit Transient-Party
## 16674 A A No Deposit Transient-Party
## 16675 D D No Deposit Transient-Party
## 16676 A A No Deposit Transient-Party
## 16677 A A No Deposit Transient
## 16678 C C No Deposit Transient
## 16679 G G No Deposit Transient
## 16680 A A No Deposit Transient-Party
## 16681 D D No Deposit Transient
## 16682 A A No Deposit Transient-Party
## 16683 A A No Deposit Transient-Party
## 16684 A C No Deposit Transient
## 16685 A E No Deposit Transient-Party
## 16686 A C No Deposit Transient
## 16687 D F No Deposit Transient
## 16688 C C Refundable Transient-Party
## 16689 A A No Deposit Transient
## 16690 E E No Deposit Transient
## 16691 E E No Deposit Contract
## 16692 E E No Deposit Transient-Party
## 16693 E E No Deposit Transient-Party
## 16694 E E No Deposit Transient
## 16695 A A No Deposit Transient
## 16696 A A No Deposit Transient
## 16697 A A No Deposit Transient
## 16698 A A No Deposit Transient
## 16699 A A No Deposit Transient
## 16700 A A No Deposit Transient
## 16701 A A No Deposit Transient
## 16702 A A No Deposit Contract
## 16703 A A No Deposit Contract
## 16704 A A No Deposit Transient
## 16705 A A No Deposit Transient-Party
## 16706 D D No Deposit Contract
## 16707 A A No Deposit Transient-Party
## 16708 F F No Deposit Transient
## 16709 E E No Deposit Transient
## 16710 A A No Deposit Transient-Party
## 16711 A A No Deposit Transient-Party
## 16712 A C No Deposit Transient
## 16713 A A No Deposit Transient
## 16714 A A No Deposit Transient
## 16715 A A No Deposit Contract
## 16716 A A No Deposit Transient-Party
## 16717 A A No Deposit Transient-Party
## 16718 A A No Deposit Transient-Party
## 16719 A A No Deposit Transient
## 16720 A A No Deposit Transient
## 16721 A A No Deposit Transient
## 16722 A A No Deposit Transient-Party
## 16723 A A No Deposit Transient-Party
## 16724 A A No Deposit Transient
## 16725 H H No Deposit Transient
## 16726 F F No Deposit Transient
## 16727 D D No Deposit Transient
## 16728 A A No Deposit Transient
## 16729 F F No Deposit Transient
## 16730 A A No Deposit Transient
## 16731 D D No Deposit Transient
## 16732 G G No Deposit Transient
## 16733 A A No Deposit Transient
## 16734 D D No Deposit Transient
## 16735 A A No Deposit Contract
## 16736 A A No Deposit Contract
## 16737 D D No Deposit Transient
## 16738 D E No Deposit Contract
## 16739 A E No Deposit Transient
## 16740 A A No Deposit Transient-Party
## 16741 A A No Deposit Transient-Party
## 16742 A D No Deposit Transient
## 16743 A D No Deposit Transient
## 16744 A D No Deposit Transient
## 16745 D D No Deposit Transient
## 16746 A C No Deposit Transient
## 16747 G G No Deposit Transient
## 16748 D E No Deposit Transient
## 16749 A A No Deposit Contract
## 16750 A A No Deposit Contract
## 16751 A A No Deposit Transient
## 16752 D D No Deposit Contract
## 16753 D D No Deposit Contract
## 16754 D D No Deposit Contract
## 16755 D D No Deposit Transient
## 16756 E E No Deposit Transient
## 16757 A C No Deposit Transient
## 16758 D D No Deposit Transient
## 16759 E E No Deposit Transient-Party
## 16760 A A No Deposit Transient
## 16761 E F No Deposit Transient
## 16762 A C No Deposit Transient
## 16763 E E No Deposit Transient-Party
## 16764 H H No Deposit Transient
## 16765 A G No Deposit Transient
## 16766 A A No Deposit Contract
## 16767 D D No Deposit Transient
## 16768 A C No Deposit Contract
## 16769 A A No Deposit Transient-Party
## 16770 A A No Deposit Transient
## 16771 A A No Deposit Transient
## 16772 A A No Deposit Transient
## 16773 A A No Deposit Transient
## 16774 A A No Deposit Transient
## 16775 A A No Deposit Transient
## 16776 A A No Deposit Transient
## 16777 A A No Deposit Transient-Party
## 16778 A A No Deposit Contract
## 16779 A A No Deposit Transient
## 16780 A A No Deposit Transient
## 16781 A C No Deposit Transient
## 16782 E F No Deposit Transient
## 16783 E E No Deposit Transient
## 16784 D D No Deposit Transient-Party
## 16785 A A No Deposit Transient
## 16786 A A No Deposit Transient
## 16787 D D No Deposit Transient
## 16788 A A No Deposit Transient
## 16789 A A No Deposit Transient
## 16790 D D No Deposit Contract
## 16791 E E No Deposit Contract
## 16792 E F No Deposit Transient-Party
## 16793 A A No Deposit Transient
## 16794 A A No Deposit Transient
## 16795 A A No Deposit Transient
## 16796 A D No Deposit Transient
## 16797 A F No Deposit Transient
## 16798 A A No Deposit Transient
## 16799 A C No Deposit Transient
## 16800 A A No Deposit Transient
## 16801 A C No Deposit Transient
## 16802 F F No Deposit Transient
## 16803 A D No Deposit Transient
## 16804 A C No Deposit Transient
## 16805 E E No Deposit Transient
## 16806 E E No Deposit Transient
## 16807 D D No Deposit Transient
## 16808 A F No Deposit Transient
## 16809 A A No Deposit Transient
## 16810 A A No Deposit Transient
## 16811 E E No Deposit Transient
## 16812 A A No Deposit Transient
## 16813 A D No Deposit Transient
## 16814 E E No Deposit Transient
## 16815 E E No Deposit Transient
## 16816 F G No Deposit Transient
## 16817 F G No Deposit Transient
## 16818 F F No Deposit Transient
## 16819 F G No Deposit Transient
## 16820 A D No Deposit Transient
## 16821 A A No Deposit Transient
## 16822 A A No Deposit Transient
## 16823 A A No Deposit Transient
## 16824 D D No Deposit Transient
## 16825 A C No Deposit Transient
## 16826 A A No Deposit Transient
## 16827 A A No Deposit Transient
## 16828 E E No Deposit Transient
## 16829 E E No Deposit Transient
## 16830 E E No Deposit Transient
## 16831 A A No Deposit Transient
## 16832 A A No Deposit Contract
## 16833 E I No Deposit Transient-Party
## 16834 A A No Deposit Transient
## 16835 A A No Deposit Contract
## 16836 D D No Deposit Transient
## 16837 A A No Deposit Contract
## 16838 A A No Deposit Contract
## 16839 A G No Deposit Transient
## 16840 D E No Deposit Transient
## 16841 D D No Deposit Contract
## 16842 A D No Deposit Transient-Party
## 16843 A A No Deposit Transient-Party
## 16844 A A No Deposit Transient-Party
## 16845 A A No Deposit Transient-Party
## 16846 A A No Deposit Transient-Party
## 16847 A A No Deposit Transient-Party
## 16848 A C No Deposit Transient-Party
## 16849 E E No Deposit Transient-Party
## 16850 A A No Deposit Transient-Party
## 16851 A A No Deposit Transient-Party
## 16852 A A No Deposit Transient-Party
## 16853 A A No Deposit Transient-Party
## 16854 A A No Deposit Transient-Party
## 16855 A A No Deposit Transient-Party
## 16856 A A No Deposit Transient-Party
## 16857 A A No Deposit Transient-Party
## 16858 A A No Deposit Transient-Party
## 16859 A C No Deposit Transient-Party
## 16860 A C No Deposit Transient-Party
## 16861 A C No Deposit Transient-Party
## 16862 A C No Deposit Transient-Party
## 16863 A A No Deposit Transient-Party
## 16864 E F No Deposit Transient
## 16865 A A No Deposit Contract
## 16866 A E No Deposit Transient-Party
## 16867 A F No Deposit Transient-Party
## 16868 A D No Deposit Transient-Party
## 16869 A D No Deposit Transient-Party
## 16870 A F No Deposit Transient-Party
## 16871 A A No Deposit Transient-Party
## 16872 A A No Deposit Transient-Party
## 16873 A H No Deposit Transient-Party
## 16874 A E No Deposit Transient-Party
## 16875 A F No Deposit Transient-Party
## 16876 A E No Deposit Transient-Party
## 16877 A G No Deposit Transient-Party
## 16878 A A No Deposit Transient-Party
## 16879 A F No Deposit Transient-Party
## 16880 A A No Deposit Transient-Party
## 16881 A A No Deposit Transient-Party
## 16882 A F No Deposit Transient-Party
## 16883 A E No Deposit Transient
## 16884 A E No Deposit Transient
## 16885 A D No Deposit Transient
## 16886 A D No Deposit Transient
## 16887 A A No Deposit Transient
## 16888 A A No Deposit Transient
## 16889 A A No Deposit Transient
## 16890 A G No Deposit Transient
## 16891 A A No Deposit Transient
## 16892 A G No Deposit Transient
## 16893 A A No Deposit Contract
## 16894 A A No Deposit Contract
## 16895 D D No Deposit Transient
## 16896 D D No Deposit Contract
## 16897 D D No Deposit Contract
## 16898 A A No Deposit Transient
## 16899 A A No Deposit Transient
## 16900 A A No Deposit Group
## 16901 A A No Deposit Transient
## 16902 D D No Deposit Transient
## 16903 D D No Deposit Transient
## 16904 A D No Deposit Transient
## 16905 A D No Deposit Transient
## 16906 A A No Deposit Transient
## 16907 A A No Deposit Transient
## 16908 A A No Deposit Transient
## 16909 A D No Deposit Transient-Party
## 16910 A A No Deposit Transient
## 16911 E E No Deposit Transient
## 16912 A C No Deposit Group
## 16913 A H No Deposit Transient
## 16914 G G No Deposit Transient
## 16915 E E No Deposit Transient
## 16916 A C No Deposit Transient
## 16917 A B No Deposit Transient
## 16918 A A No Deposit Transient
## 16919 D D No Deposit Transient
## 16920 D D No Deposit Transient
## 16921 D D No Deposit Contract
## 16922 D D No Deposit Transient
## 16923 D D No Deposit Contract
## 16924 A A No Deposit Contract
## 16925 A A No Deposit Contract
## 16926 E E No Deposit Contract
## 16927 A A No Deposit Transient
## 16928 A A No Deposit Transient
## 16929 E E No Deposit Contract
## 16930 A E No Deposit Transient
## 16931 A D No Deposit Transient
## 16932 A D No Deposit Transient
## 16933 A D No Deposit Transient
## 16934 A A No Deposit Transient
## 16935 A E No Deposit Transient
## 16936 A E No Deposit Transient
## 16937 A A No Deposit Transient
## 16938 A D No Deposit Transient
## 16939 A A No Deposit Transient
## 16940 A H No Deposit Transient
## 16941 D D No Deposit Contract
## 16942 G G No Deposit Transient
## 16943 F F No Deposit Transient
## 16944 A G No Deposit Transient
## 16945 A A No Deposit Transient
## 16946 G G No Deposit Transient
## 16947 A D No Deposit Transient
## 16948 F F No Deposit Transient
## 16949 A E No Deposit Transient
## 16950 A A No Deposit Transient
## 16951 A A No Deposit Contract
## 16952 E E No Deposit Transient
## 16953 D D No Deposit Contract
## 16954 E E No Deposit Transient
## 16955 C C No Deposit Transient
## 16956 D A No Deposit Transient
## 16957 D D No Deposit Contract
## 16958 A A No Deposit Transient
## 16959 G G No Deposit Transient
## 16960 A A No Deposit Transient-Party
## 16961 A C No Deposit Transient-Party
## 16962 A D No Deposit Transient
## 16963 A C No Deposit Transient-Party
## 16964 D D No Deposit Transient
## 16965 A B No Deposit Transient-Party
## 16966 A A No Deposit Transient-Party
## 16967 E G No Deposit Transient
## 16968 A C No Deposit Transient-Party
## 16969 A A No Deposit Transient-Party
## 16970 A C No Deposit Transient-Party
## 16971 A C No Deposit Transient-Party
## 16972 A C No Deposit Transient-Party
## 16973 D D No Deposit Contract
## 16974 E F No Deposit Transient
## 16975 D D No Deposit Transient
## 16976 F F No Deposit Transient
## 16977 A C No Deposit Transient-Party
## 16978 A A No Deposit Transient
## 16979 D D No Deposit Contract
## 16980 A E No Deposit Transient
## 16981 A A No Deposit Contract
## 16982 A A No Deposit Contract
## 16983 E F No Deposit Transient
## 16984 G G No Deposit Transient
## 16985 E E No Deposit Transient
## 16986 H H No Deposit Transient
## 16987 A A No Deposit Contract
## 16988 D D No Deposit Transient
## 16989 A A No Deposit Transient
## 16990 A A No Deposit Transient
## 16991 D D No Deposit Contract
## 16992 A A No Deposit Contract
## 16993 A A No Deposit Contract
## 16994 A E No Deposit Transient-Party
## 16995 A A No Deposit Contract
## 16996 A C No Deposit Transient-Party
## 16997 A C No Deposit Transient-Party
## 16998 A C No Deposit Transient-Party
## 16999 A C No Deposit Transient-Party
## 17000 A E No Deposit Transient-Party
## 17001 A C No Deposit Transient-Party
## 17002 A A No Deposit Transient-Party
## 17003 A B No Deposit Transient-Party
## 17004 A C No Deposit Transient-Party
## 17005 A C No Deposit Transient-Party
## 17006 A A No Deposit Transient-Party
## 17007 A G No Deposit Transient-Party
## 17008 A A No Deposit Transient-Party
## 17009 A A No Deposit Transient-Party
## 17010 A H No Deposit Transient-Party
## 17011 A A No Deposit Transient-Party
## 17012 A C No Deposit Transient-Party
## 17013 A C No Deposit Transient-Party
## 17014 A A No Deposit Transient-Party
## 17015 A A No Deposit Transient-Party
## 17016 A A No Deposit Transient-Party
## 17017 A A No Deposit Transient-Party
## 17018 A A No Deposit Contract
## 17019 D D No Deposit Transient
## 17020 A A No Deposit Transient
## 17021 A A No Deposit Contract
## 17022 A A No Deposit Contract
## 17023 G G No Deposit Transient
## 17024 F F No Deposit Transient
## 17025 C C No Deposit Transient
## 17026 A F No Deposit Transient-Party
## 17027 A A No Deposit Transient
## 17028 G G No Deposit Transient
## 17029 E E No Deposit Transient
## 17030 E E No Deposit Contract
## 17031 E E No Deposit Contract
## 17032 E E No Deposit Transient
## 17033 A A No Deposit Transient
## 17034 A G No Deposit Transient
## 17035 A A No Deposit Transient
## 17036 C H No Deposit Transient
## 17037 A A No Deposit Contract
## 17038 D D No Deposit Contract
## 17039 A A No Deposit Transient
## 17040 E E No Deposit Transient
## 17041 E E No Deposit Transient
## 17042 A A No Deposit Transient-Party
## 17043 E E No Deposit Transient
## 17044 A C No Deposit Transient-Party
## 17045 A C No Deposit Transient-Party
## 17046 A C No Deposit Transient-Party
## 17047 A A No Deposit Transient-Party
## 17048 E E No Deposit Contract
## 17049 A A No Deposit Transient-Party
## 17050 A B No Deposit Transient-Party
## 17051 A A No Deposit Transient-Party
## 17052 A C No Deposit Transient-Party
## 17053 A A No Deposit Transient-Party
## 17054 A C No Deposit Transient-Party
## 17055 A A No Deposit Transient-Party
## 17056 A H No Deposit Transient
## 17057 G G No Deposit Transient
## 17058 A C No Deposit Transient-Party
## 17059 A A No Deposit Transient-Party
## 17060 A C No Deposit Transient-Party
## 17061 A C No Deposit Transient-Party
## 17062 A C No Deposit Transient-Party
## 17063 A C No Deposit Transient-Party
## 17064 D D No Deposit Transient
## 17065 E E No Deposit Transient
## 17066 A A No Deposit Transient
## 17067 A A No Deposit Transient-Party
## 17068 A A No Deposit Contract
## 17069 A A No Deposit Contract
## 17070 D D No Deposit Contract
## 17071 D D No Deposit Contract
## 17072 D D No Deposit Contract
## 17073 A F No Deposit Contract
## 17074 A F No Deposit Transient
## 17075 A C No Deposit Contract
## 17076 A C No Deposit Transient
## 17077 D D No Deposit Transient
## 17078 A C No Deposit Transient-Party
## 17079 A C No Deposit Transient-Party
## 17080 E E No Deposit Contract
## 17081 G G No Deposit Transient
## 17082 D D No Deposit Transient
## 17083 D D No Deposit Transient
## 17084 D D No Deposit Contract
## 17085 D D No Deposit Contract
## 17086 D D No Deposit Contract
## 17087 A A No Deposit Transient
## 17088 D D No Deposit Transient
## 17089 A A No Deposit Transient-Party
## 17090 A A No Deposit Transient-Party
## 17091 A A No Deposit Transient-Party
## 17092 A A No Deposit Transient-Party
## 17093 A E No Deposit Transient-Party
## 17094 E E No Deposit Transient
## 17095 A A No Deposit Transient-Party
## 17096 A E No Deposit Transient-Party
## 17097 A A No Deposit Transient-Party
## 17098 A A No Deposit Transient-Party
## 17099 A A No Deposit Transient-Party
## 17100 A A No Deposit Transient-Party
## 17101 A A No Deposit Transient-Party
## 17102 A A No Deposit Transient-Party
## 17103 A A No Deposit Transient-Party
## 17104 A A No Deposit Transient-Party
## 17105 D D No Deposit Transient
## 17106 A A No Deposit Transient
## 17107 G G No Deposit Transient
## 17108 A A No Deposit Transient
## 17109 A A No Deposit Group
## 17110 A D No Deposit Transient
## 17111 E E No Deposit Contract
## 17112 D D No Deposit Contract
## 17113 A A No Deposit Transient
## 17114 D D No Deposit Transient
## 17115 D D No Deposit Contract
## 17116 A A No Deposit Transient
## 17117 A H No Deposit Transient
## 17118 E E No Deposit Transient
## 17119 F F No Deposit Transient
## 17120 A A No Deposit Transient
## 17121 G G No Deposit Transient
## 17122 A A No Deposit Transient
## 17123 D D No Deposit Transient-Party
## 17124 A D No Deposit Transient-Party
## 17125 D D No Deposit Contract
## 17126 D D No Deposit Transient
## 17127 D D No Deposit Contract
## 17128 A A No Deposit Contract
## 17129 A A No Deposit Contract
## 17130 A A No Deposit Contract
## 17131 A A No Deposit Contract
## 17132 A D No Deposit Transient
## 17133 D D No Deposit Transient
## 17134 A A No Deposit Contract
## 17135 A H No Deposit Transient
## 17136 F G No Deposit Transient
## 17137 D D No Deposit Transient
## 17138 A D No Deposit Transient-Party
## 17139 E E No Deposit Contract
## 17140 A A No Deposit Transient
## 17141 A A No Deposit Transient
## 17142 A C No Deposit Transient-Party
## 17143 A A No Deposit Transient-Party
## 17144 A A No Deposit Transient-Party
## 17145 A A No Deposit Transient-Party
## 17146 A A No Deposit Transient-Party
## 17147 A A No Deposit Transient-Party
## 17148 A A No Deposit Transient-Party
## 17149 A A No Deposit Transient-Party
## 17150 A D No Deposit Transient-Party
## 17151 A A No Deposit Transient-Party
## 17152 A A No Deposit Transient-Party
## 17153 A D No Deposit Transient-Party
## 17154 A A No Deposit Transient
## 17155 E E No Deposit Contract
## 17156 D D No Deposit Transient
## 17157 A A No Deposit Transient
## 17158 A A No Deposit Group
## 17159 A C No Deposit Transient
## 17160 D I No Deposit Transient
## 17161 A H No Deposit Transient
## 17162 D E No Deposit Transient
## 17163 E E No Deposit Group
## 17164 D E No Deposit Transient
## 17165 A F No Deposit Transient
## 17166 A A No Deposit Transient-Party
## 17167 A A No Deposit Transient-Party
## 17168 A A No Deposit Transient-Party
## 17169 A A No Deposit Transient-Party
## 17170 A A No Deposit Contract
## 17171 A D No Deposit Transient
## 17172 F F No Deposit Transient
## 17173 A A No Deposit Transient
## 17174 A A No Deposit Transient
## 17175 A C No Deposit Transient
## 17176 A E No Deposit Transient
## 17177 G G No Deposit Transient
## 17178 A G No Deposit Transient
## 17179 E E No Deposit Transient
## 17180 A A No Deposit Contract
## 17181 A B No Deposit Transient
## 17182 A A No Deposit Transient
## 17183 E E No Deposit Contract
## 17184 E E No Deposit Transient
## 17185 A C No Deposit Transient
## 17186 A A No Deposit Transient
## 17187 A A No Deposit Contract
## 17188 A C No Deposit Contract
## 17189 A A No Deposit Contract
## 17190 A A No Deposit Contract
## 17191 A C No Deposit Transient-Party
## 17192 A A No Deposit Transient-Party
## 17193 A A No Deposit Transient-Party
## 17194 A C No Deposit Transient
## 17195 D D No Deposit Contract
## 17196 D D No Deposit Transient
## 17197 A A No Deposit Transient-Party
## 17198 A A No Deposit Transient-Party
## 17199 A C No Deposit Transient
## 17200 A A No Deposit Transient
## 17201 A A No Deposit Transient
## 17202 A C No Deposit Transient-Party
## 17203 A A No Deposit Transient
## 17204 A A No Deposit Transient
## 17205 E E No Deposit Contract
## 17206 E E No Deposit Transient
## 17207 E E No Deposit Transient
## 17208 A A No Deposit Contract
## 17209 A A No Deposit Contract
## 17210 A C No Deposit Contract
## 17211 D D No Deposit Transient
## 17212 D D No Deposit Contract
## 17213 D D No Deposit Contract
## 17214 D D No Deposit Contract
## 17215 D D No Deposit Contract
## 17216 D E No Deposit Contract
## 17217 A A No Deposit Contract
## 17218 A A No Deposit Contract
## 17219 D D No Deposit Contract
## 17220 A A No Deposit Contract
## 17221 D F No Deposit Contract
## 17222 A A No Deposit Contract
## 17223 A A No Deposit Transient-Party
## 17224 D D No Deposit Transient-Party
## 17225 A A No Deposit Transient
## 17226 A D No Deposit Contract
## 17227 E G No Deposit Transient
## 17228 G G No Deposit Transient
## 17229 A A No Deposit Contract
## 17230 A C No Deposit Contract
## 17231 A A No Deposit Contract
## 17232 D D No Deposit Contract
## 17233 A A No Deposit Transient
## 17234 D D No Deposit Transient
## 17235 A A No Deposit Transient
## 17236 D D No Deposit Transient
## 17237 D D No Deposit Transient
## 17238 D D No Deposit Transient
## 17239 D F No Deposit Transient
## 17240 F F No Deposit Transient
## 17241 A H No Deposit Transient
## 17242 A D No Deposit Transient-Party
## 17243 A A No Deposit Transient-Party
## 17244 A A No Deposit Transient-Party
## 17245 A A No Deposit Transient-Party
## 17246 A A No Deposit Transient-Party
## 17247 A A No Deposit Transient-Party
## 17248 A A No Deposit Transient-Party
## 17249 A A No Deposit Transient-Party
## 17250 A G No Deposit Transient-Party
## 17251 F F No Deposit Transient
## 17252 A A No Deposit Transient-Party
## 17253 A G No Deposit Transient
## 17254 H H No Deposit Transient
## 17255 E E Non Refund Transient
## 17256 E E Non Refund Transient
## 17257 D D Non Refund Transient
## 17258 D D Non Refund Transient
## 17259 D D Non Refund Transient
## 17260 D D Non Refund Transient
## 17261 D D Non Refund Transient
## 17262 D D Non Refund Transient
## 17263 D D Non Refund Transient
## 17264 D D Non Refund Transient
## 17265 D D Non Refund Transient
## 17266 D D Non Refund Transient
## 17267 D D Non Refund Transient
## 17268 A A Non Refund Transient
## 17269 A A Non Refund Transient
## 17270 A A Non Refund Transient
## 17271 A A Non Refund Transient
## 17272 A A No Deposit Transient
## 17273 A A No Deposit Transient-Party
## 17274 A A No Deposit Transient-Party
## 17275 A A No Deposit Transient-Party
## 17276 A C No Deposit Transient-Party
## 17277 A C No Deposit Transient-Party
## 17278 A C No Deposit Transient-Party
## 17279 A C No Deposit Transient-Party
## 17280 A C No Deposit Transient-Party
## 17281 A C No Deposit Transient-Party
## 17282 A C No Deposit Transient-Party
## 17283 A A No Deposit Transient-Party
## 17284 A A No Deposit Transient-Party
## 17285 A A No Deposit Transient-Party
## 17286 G G No Deposit Transient
## 17287 A C No Deposit Transient
## 17288 A A No Deposit Transient
## 17289 E E No Deposit Transient
## 17290 E G No Deposit Transient
## 17291 A A No Deposit Transient
## 17292 A A No Deposit Transient
## 17293 A A No Deposit Transient
## 17294 D E No Deposit Contract
## 17295 E E No Deposit Transient
## 17296 D D No Deposit Transient
## 17297 A C No Deposit Transient
## 17298 A A No Deposit Contract
## 17299 D D No Deposit Contract
## 17300 D D No Deposit Contract
## 17301 D D No Deposit Contract
## 17302 A A No Deposit Contract
## 17303 A A No Deposit Transient
## 17304 E E No Deposit Contract
## 17305 A C No Deposit Transient
## 17306 E E No Deposit Transient
## 17307 D E No Deposit Transient
## 17308 A A No Deposit Contract
## 17309 A A No Deposit Transient
## 17310 A A No Deposit Contract
## 17311 E G No Deposit Transient
## 17312 A D No Deposit Transient
## 17313 A A No Deposit Contract
## 17314 E E No Deposit Contract
## 17315 A A No Deposit Transient
## 17316 A A No Deposit Contract
## 17317 E E No Deposit Transient
## 17318 C C No Deposit Transient
## 17319 A D No Deposit Transient
## 17320 D D No Deposit Transient
## 17321 D D No Deposit Transient-Party
## 17322 A C No Deposit Transient
## 17323 A F No Deposit Transient
## 17324 D G No Deposit Transient
## 17325 D D No Deposit Transient
## 17326 D D No Deposit Transient-Party
## 17327 F F No Deposit Transient
## 17328 D D No Deposit Transient
## 17329 E G No Deposit Transient
## 17330 A A No Deposit Transient
## 17331 E F No Deposit Transient
## 17332 A A No Deposit Contract
## 17333 A B No Deposit Contract
## 17334 A A No Deposit Contract
## 17335 D D No Deposit Transient
## 17336 A D No Deposit Transient
## 17337 A A No Deposit Transient
## 17338 A C No Deposit Transient
## 17339 E E No Deposit Transient
## 17340 D D No Deposit Transient
## 17341 A E No Deposit Transient
## 17342 F F No Deposit Transient
## 17343 A G No Deposit Transient
## 17344 A C No Deposit Transient
## 17345 E E No Deposit Transient
## 17346 D D No Deposit Contract
## 17347 A C No Deposit Transient-Party
## 17348 A A No Deposit Transient-Party
## 17349 A D No Deposit Transient
## 17350 A A No Deposit Group
## 17351 D D No Deposit Transient
## 17352 A F No Deposit Transient
## 17353 A A No Deposit Transient-Party
## 17354 A A No Deposit Transient
## 17355 D D No Deposit Contract
## 17356 A A No Deposit Transient
## 17357 A A No Deposit Transient
## 17358 A A No Deposit Transient
## 17359 A A No Deposit Contract
## 17360 A A No Deposit Contract
## 17361 E E No Deposit Transient
## 17362 A A No Deposit Contract
## 17363 A A No Deposit Transient
## 17364 A A No Deposit Contract
## 17365 D D No Deposit Contract
## 17366 A D No Deposit Contract
## 17367 A A No Deposit Transient
## 17368 A D No Deposit Transient
## 17369 D D No Deposit Contract
## 17370 A A No Deposit Transient
## 17371 A F No Deposit Transient
## 17372 D F No Deposit Transient
## 17373 D D No Deposit Contract
## 17374 D D No Deposit Transient
## 17375 F F No Deposit Transient
## 17376 D D No Deposit Transient
## 17377 A A No Deposit Transient-Party
## 17378 A A No Deposit Transient
## 17379 A A No Deposit Contract
## 17380 A A No Deposit Contract
## 17381 A A No Deposit Transient
## 17382 A A No Deposit Transient
## 17383 D D No Deposit Contract
## 17384 E E No Deposit Transient
## 17385 E E No Deposit Contract
## 17386 A G No Deposit Transient-Party
## 17387 A A No Deposit Contract
## 17388 A G No Deposit Transient-Party
## 17389 A D No Deposit Transient-Party
## 17390 A D No Deposit Transient-Party
## 17391 A D No Deposit Transient-Party
## 17392 A A No Deposit Transient-Party
## 17393 F F No Deposit Transient
## 17394 A H No Deposit Transient-Party
## 17395 A H No Deposit Transient-Party
## 17396 A C No Deposit Transient
## 17397 A C No Deposit Transient
## 17398 A A No Deposit Transient-Party
## 17399 A E No Deposit Transient
## 17400 A C No Deposit Transient
## 17401 A D No Deposit Transient-Party
## 17402 A A No Deposit Contract
## 17403 A C No Deposit Transient
## 17404 D D No Deposit Contract
## 17405 A A No Deposit Transient
## 17406 A E No Deposit Contract
## 17407 A C No Deposit Transient
## 17408 E E No Deposit Contract
## 17409 D E No Deposit Contract
## 17410 A A No Deposit Transient
## 17411 A A No Deposit Transient
## 17412 A E No Deposit Transient
## 17413 A A No Deposit Transient
## 17414 E E No Deposit Contract
## 17415 D E No Deposit Contract
## 17416 F F No Deposit Transient
## 17417 A A No Deposit Transient-Party
## 17418 A A No Deposit Transient
## 17419 A D No Deposit Transient
## 17420 A D No Deposit Transient
## 17421 A A No Deposit Transient
## 17422 A A No Deposit Transient
## 17423 A A No Deposit Contract
## 17424 A A No Deposit Contract
## 17425 A A No Deposit Transient
## 17426 A E No Deposit Contract
## 17427 A A No Deposit Contract
## 17428 D D No Deposit Contract
## 17429 A C No Deposit Contract
## 17430 A F No Deposit Transient
## 17431 A A No Deposit Transient
## 17432 A F No Deposit Transient
## 17433 A A No Deposit Transient-Party
## 17434 A A No Deposit Transient
## 17435 A A No Deposit Group
## 17436 D D No Deposit Transient
## 17437 A H No Deposit Transient
## 17438 A D No Deposit Transient
## 17439 A E No Deposit Contract
## 17440 A A No Deposit Contract
## 17441 A A No Deposit Contract
## 17442 A A No Deposit Transient
## 17443 A A No Deposit Transient
## 17444 A A No Deposit Transient-Party
## 17445 A A No Deposit Transient-Party
## 17446 D D No Deposit Contract
## 17447 A C No Deposit Transient-Party
## 17448 A A No Deposit Transient-Party
## 17449 A A No Deposit Transient-Party
## 17450 A A No Deposit Transient-Party
## 17451 A C No Deposit Transient-Party
## 17452 A C No Deposit Transient-Party
## 17453 A C No Deposit Transient-Party
## 17454 A C No Deposit Transient-Party
## 17455 A C No Deposit Transient-Party
## 17456 A C No Deposit Transient-Party
## 17457 A A No Deposit Transient-Party
## 17458 A A No Deposit Transient-Party
## 17459 A A No Deposit Transient-Party
## 17460 A A No Deposit Transient-Party
## 17461 A A No Deposit Transient-Party
## 17462 A A No Deposit Transient-Party
## 17463 E E No Deposit Transient
## 17464 A A No Deposit Transient
## 17465 A C No Deposit Contract
## 17466 E E No Deposit Transient
## 17467 A B No Deposit Transient
## 17468 D D No Deposit Transient
## 17469 A F No Deposit Transient
## 17470 A A No Deposit Transient
## 17471 A A No Deposit Transient
## 17472 D D No Deposit Transient
## 17473 A G No Deposit Transient
## 17474 E E No Deposit Transient-Party
## 17475 G G No Deposit Transient
## 17476 A A No Deposit Transient
## 17477 A A No Deposit Transient
## 17478 A D No Deposit Transient
## 17479 A A No Deposit Transient
## 17480 A A No Deposit Transient
## 17481 E E No Deposit Transient
## 17482 F F No Deposit Transient
## 17483 G H No Deposit Transient
## 17484 A I No Deposit Transient-Party
## 17485 A I No Deposit Transient
## 17486 E E No Deposit Transient-Party
## 17487 D E No Deposit Transient-Party
## 17488 D E No Deposit Transient-Party
## 17489 D E No Deposit Transient-Party
## 17490 D D No Deposit Transient-Party
## 17491 D D No Deposit Transient
## 17492 A A No Deposit Transient-Party
## 17493 D E No Deposit Transient-Party
## 17494 A A No Deposit Transient
## 17495 D E No Deposit Transient-Party
## 17496 D D No Deposit Transient-Party
## 17497 D E No Deposit Transient-Party
## 17498 D D No Deposit Transient-Party
## 17499 D D No Deposit Transient-Party
## 17500 A A No Deposit Transient-Party
## 17501 A E No Deposit Transient
## 17502 D D No Deposit Transient
## 17503 D D No Deposit Contract
## 17504 A A No Deposit Transient-Party
## 17505 A A No Deposit Group
## 17506 A A No Deposit Transient-Party
## 17507 A A No Deposit Transient-Party
## 17508 A A No Deposit Transient
## 17509 A A No Deposit Group
## 17510 A A No Deposit Transient
## 17511 A E No Deposit Group
## 17512 A A No Deposit Transient-Party
## 17513 A A No Deposit Transient-Party
## 17514 A A No Deposit Transient-Party
## 17515 A A No Deposit Contract
## 17516 A A No Deposit Transient
## 17517 A A No Deposit Transient
## 17518 A A No Deposit Transient
## 17519 A D No Deposit Transient
## 17520 A D No Deposit Transient
## 17521 A D No Deposit Transient
## 17522 A D No Deposit Transient
## 17523 A E No Deposit Transient-Party
## 17524 A E No Deposit Group
## 17525 A A No Deposit Transient
## 17526 A A No Deposit Transient
## 17527 A E No Deposit Group
## 17528 A A No Deposit Transient
## 17529 A A No Deposit Contract
## 17530 E E No Deposit Transient
## 17531 A D No Deposit Transient
## 17532 E E No Deposit Transient
## 17533 E F No Deposit Transient
## 17534 A E No Deposit Transient
## 17535 D D No Deposit Transient-Party
## 17536 D D No Deposit Transient
## 17537 D D No Deposit Transient
## 17538 G G No Deposit Transient
## 17539 A A No Deposit Transient
## 17540 A A No Deposit Transient
## 17541 A A No Deposit Transient
## 17542 A D No Deposit Transient
## 17543 A A No Deposit Transient
## 17544 A I No Deposit Transient-Party
## 17545 E E No Deposit Transient-Party
## 17546 A I No Deposit Transient-Party
## 17547 D D No Deposit Transient
## 17548 A A No Deposit Transient
## 17549 A A No Deposit Transient
## 17550 A A No Deposit Transient
## 17551 A D No Deposit Transient
## 17552 A D No Deposit Transient
## 17553 F F No Deposit Transient
## 17554 A A No Deposit Transient
## 17555 A D No Deposit Transient
## 17556 A A No Deposit Transient
## 17557 D D No Deposit Contract
## 17558 E E No Deposit Transient
## 17559 A A No Deposit Transient
## 17560 E E No Deposit Transient
## 17561 D D No Deposit Transient
## 17562 A D No Deposit Transient-Party
## 17563 D D No Deposit Transient
## 17564 E E No Deposit Transient
## 17565 D D No Deposit Transient
## 17566 A A No Deposit Transient
## 17567 A A No Deposit Contract
## 17568 E E No Deposit Contract
## 17569 A A No Deposit Transient
## 17570 A A No Deposit Transient
## 17571 E E No Deposit Transient
## 17572 A E No Deposit Transient-Party
## 17573 A D No Deposit Transient
## 17574 A D No Deposit Transient-Party
## 17575 A D No Deposit Transient
## 17576 A D No Deposit Transient
## 17577 A D No Deposit Transient-Party
## 17578 D D No Deposit Transient
## 17579 D D No Deposit Transient
## 17580 A A No Deposit Transient
## 17581 D D No Deposit Transient
## 17582 A A No Deposit Transient
## 17583 A E No Deposit Transient
## 17584 A A No Deposit Transient-Party
## 17585 A A No Deposit Transient-Party
## 17586 A I No Deposit Transient-Party
## 17587 A I No Deposit Transient-Party
## 17588 A A No Deposit Transient
## 17589 D D No Deposit Contract
## 17590 F F No Deposit Transient
## 17591 A A No Deposit Transient
## 17592 A A No Deposit Transient-Party
## 17593 D D No Deposit Transient
## 17594 A D No Deposit Transient
## 17595 A D No Deposit Transient-Party
## 17596 A D No Deposit Transient
## 17597 E E No Deposit Contract
## 17598 E E No Deposit Contract
## 17599 A A Non Refund Transient-Party
## 17600 A A Non Refund Transient-Party
## 17601 A A Non Refund Transient-Party
## 17602 D D No Deposit Contract
## 17603 A A Non Refund Transient-Party
## 17604 A A Non Refund Transient-Party
## 17605 A A Non Refund Transient-Party
## 17606 A A No Deposit Transient-Party
## 17607 A A No Deposit Transient
## 17608 G G No Deposit Transient
## 17609 D F No Deposit Transient
## 17610 D D No Deposit Transient
## 17611 A C No Deposit Transient-Party
## 17612 A E No Deposit Transient-Party
## 17613 A E No Deposit Transient
## 17614 A A No Deposit Transient-Party
## 17615 A F No Deposit Transient-Party
## 17616 A A No Deposit Transient-Party
## 17617 A F No Deposit Transient-Party
## 17618 A F No Deposit Transient
## 17619 D F No Deposit Contract
## 17620 A A No Deposit Transient-Party
## 17621 A D No Deposit Transient
## 17622 A E No Deposit Transient-Party
## 17623 A D No Deposit Transient-Party
## 17624 A E No Deposit Transient-Party
## 17625 A E No Deposit Transient-Party
## 17626 A A No Deposit Transient-Party
## 17627 A A No Deposit Transient
## 17628 A E No Deposit Transient-Party
## 17629 A A No Deposit Transient-Party
## 17630 A E No Deposit Transient-Party
## 17631 G G No Deposit Transient
## 17632 F E No Deposit Transient
## 17633 H H No Deposit Transient
## 17634 A E No Deposit Transient-Party
## 17635 D D No Deposit Contract
## 17636 A G No Deposit Transient-Party
## 17637 E E No Deposit Transient
## 17638 A E No Deposit Transient-Party
## 17639 E E No Deposit Transient
## 17640 A A No Deposit Transient-Party
## 17641 A A No Deposit Transient
## 17642 A E No Deposit Transient-Party
## 17643 A E No Deposit Transient
## 17644 A E No Deposit Transient-Party
## 17645 A E No Deposit Transient
## 17646 A A No Deposit Transient-Party
## 17647 A E No Deposit Transient-Party
## 17648 A E No Deposit Transient
## 17649 A D No Deposit Transient-Party
## 17650 A A No Deposit Transient-Party
## 17651 A D No Deposit Transient-Party
## 17652 A A No Deposit Transient-Party
## 17653 A A No Deposit Transient-Party
## 17654 A A No Deposit Transient-Party
## 17655 A A No Deposit Transient-Party
## 17656 A A No Deposit Transient-Party
## 17657 A D No Deposit Transient-Party
## 17658 A A No Deposit Transient-Party
## 17659 A A No Deposit Transient-Party
## 17660 A D No Deposit Transient-Party
## 17661 A A No Deposit Transient-Party
## 17662 A D No Deposit Transient-Party
## 17663 A D No Deposit Transient-Party
## 17664 D D No Deposit Transient-Party
## 17665 A A No Deposit Transient-Party
## 17666 A D No Deposit Transient-Party
## 17667 A E No Deposit Transient-Party
## 17668 A D No Deposit Transient-Party
## 17669 A A No Deposit Transient-Party
## 17670 A A No Deposit Transient-Party
## 17671 A A No Deposit Transient-Party
## 17672 A A No Deposit Transient
## 17673 A A No Deposit Transient-Party
## 17674 A A No Deposit Transient-Party
## 17675 A A No Deposit Transient-Party
## 17676 A C No Deposit Transient-Party
## 17677 A A No Deposit Transient-Party
## 17678 A C No Deposit Transient-Party
## 17679 A A No Deposit Transient-Party
## 17680 A A No Deposit Transient-Party
## 17681 A A No Deposit Transient-Party
## 17682 A D No Deposit Transient-Party
## 17683 A A No Deposit Transient-Party
## 17684 A D No Deposit Transient-Party
## 17685 A C No Deposit Transient-Party
## 17686 A D No Deposit Transient-Party
## 17687 A A No Deposit Transient-Party
## 17688 D D No Deposit Transient-Party
## 17689 A A No Deposit Transient-Party
## 17690 A C No Deposit Transient-Party
## 17691 D D No Deposit Transient-Party
## 17692 E E No Deposit Transient-Party
## 17693 A A No Deposit Transient-Party
## 17694 A A No Deposit Transient-Party
## 17695 A A No Deposit Transient-Party
## 17696 A A No Deposit Transient-Party
## 17697 A A No Deposit Transient-Party
## 17698 E E No Deposit Transient-Party
## 17699 A B No Deposit Transient-Party
## 17700 D D No Deposit Transient-Party
## 17701 A F No Deposit Transient
## 17702 D D No Deposit Transient
## 17703 A C No Deposit Transient-Party
## 17704 A D No Deposit Transient-Party
## 17705 D D No Deposit Transient
## 17706 A A No Deposit Transient
## 17707 D D No Deposit Transient-Party
## 17708 A A No Deposit Transient-Party
## 17709 A A No Deposit Transient-Party
## 17710 A A No Deposit Transient-Party
## 17711 D D No Deposit Transient-Party
## 17712 D D No Deposit Transient-Party
## 17713 D D No Deposit Transient-Party
## 17714 A A No Deposit Transient-Party
## 17715 D D No Deposit Transient-Party
## 17716 A A No Deposit Transient-Party
## 17717 D D No Deposit Transient-Party
## 17718 A A No Deposit Transient-Party
## 17719 A C No Deposit Transient-Party
## 17720 A A No Deposit Transient
## 17721 A A No Deposit Transient-Party
## 17722 E G No Deposit Transient
## 17723 D D No Deposit Transient
## 17724 A A No Deposit Transient
## 17725 E E No Deposit Contract
## 17726 E E No Deposit Transient
## 17727 D D No Deposit Transient
## 17728 A D No Deposit Transient-Party
## 17729 A G No Deposit Transient-Party
## 17730 A I No Deposit Transient-Party
## 17731 D F No Deposit Transient-Party
## 17732 A A No Deposit Transient-Party
## 17733 A A No Deposit Transient-Party
## 17734 A D No Deposit Transient-Party
## 17735 A D No Deposit Transient-Party
## 17736 E E No Deposit Transient
## 17737 E E No Deposit Transient
## 17738 A C No Deposit Transient-Party
## 17739 A A No Deposit Transient-Party
## 17740 A A No Deposit Transient-Party
## 17741 A D No Deposit Transient
## 17742 A E No Deposit Transient-Party
## 17743 A D No Deposit Transient-Party
## 17744 C C No Deposit Transient-Party
## 17745 A E No Deposit Transient-Party
## 17746 A D No Deposit Transient
## 17747 D D No Deposit Contract
## 17748 A D No Deposit Transient
## 17749 A D No Deposit Transient-Party
## 17750 A E No Deposit Transient-Party
## 17751 A A No Deposit Transient
## 17752 A D No Deposit Transient
## 17753 A D No Deposit Transient-Party
## 17754 A A No Deposit Transient
## 17755 A E No Deposit Transient-Party
## 17756 A A No Deposit Contract
## 17757 E E No Deposit Transient
## 17758 D D No Deposit Transient
## 17759 A A No Deposit Transient
## 17760 A D No Deposit Transient
## 17761 E E No Deposit Transient
## 17762 A A No Deposit Transient
## 17763 A G No Deposit Transient-Party
## 17764 A G No Deposit Transient-Party
## 17765 A C No Deposit Transient-Party
## 17766 D D No Deposit Transient
## 17767 A D No Deposit Transient-Party
## 17768 A A No Deposit Transient-Party
## 17769 A D No Deposit Transient-Party
## 17770 E E No Deposit Transient
## 17771 E E No Deposit Transient
## 17772 D D No Deposit Transient
## 17773 D D No Deposit Transient
## 17774 A D No Deposit Transient
## 17775 A H No Deposit Transient
## 17776 A D No Deposit Transient
## 17777 E E No Deposit Transient
## 17778 A D No Deposit Transient
## 17779 A D No Deposit Transient
## 17780 A D No Deposit Transient
## 17781 D D No Deposit Transient
## 17782 A D No Deposit Transient
## 17783 A D No Deposit Transient
## 17784 A D No Deposit Transient
## 17785 A D No Deposit Transient
## 17786 A D No Deposit Transient
## 17787 A A No Deposit Transient
## 17788 A A No Deposit Transient
## 17789 A A No Deposit Transient
## 17790 A D No Deposit Transient
## 17791 A D No Deposit Transient
## 17792 A D No Deposit Transient
## 17793 A A No Deposit Transient
## 17794 A D No Deposit Transient
## 17795 A F No Deposit Transient
## 17796 A A No Deposit Transient
## 17797 A D No Deposit Transient
## 17798 A E No Deposit Transient
## 17799 A D No Deposit Transient
## 17800 E E No Deposit Transient
## 17801 D D No Deposit Transient
## 17802 A C No Deposit Transient
## 17803 A E No Deposit Transient
## 17804 A A No Deposit Transient
## 17805 A A No Deposit Transient
## 17806 A D No Deposit Transient
## 17807 A A No Deposit Transient
## 17808 A D No Deposit Transient
## 17809 A D No Deposit Transient
## 17810 A D No Deposit Transient
## 17811 H H No Deposit Transient
## 17812 A D No Deposit Transient
## 17813 A D No Deposit Transient
## 17814 D E No Deposit Transient
## 17815 A A No Deposit Transient
## 17816 E E No Deposit Transient
## 17817 D D No Deposit Contract
## 17818 E E No Deposit Transient
## 17819 G G No Deposit Transient
## 17820 A A No Deposit Transient-Party
## 17821 A D No Deposit Transient-Party
## 17822 A D No Deposit Transient-Party
## 17823 A D No Deposit Transient-Party
## 17824 A C No Deposit Transient-Party
## 17825 A D No Deposit Transient-Party
## 17826 A C No Deposit Transient-Party
## 17827 A D No Deposit Transient-Party
## 17828 A D No Deposit Transient-Party
## 17829 A D No Deposit Transient-Party
## 17830 A D No Deposit Transient-Party
## 17831 A D No Deposit Transient-Party
## 17832 A C No Deposit Transient-Party
## 17833 A D No Deposit Transient-Party
## 17834 A B No Deposit Transient-Party
## 17835 A A No Deposit Transient-Party
## 17836 A C No Deposit Transient-Party
## 17837 A C No Deposit Transient-Party
## 17838 A D No Deposit Transient-Party
## 17839 A D No Deposit Transient-Party
## 17840 A D No Deposit Transient-Party
## 17841 A D No Deposit Transient-Party
## 17842 A D No Deposit Transient-Party
## 17843 A D No Deposit Transient-Party
## 17844 G G No Deposit Transient
## 17845 E G No Deposit Transient
## 17846 A E No Deposit Transient
## 17847 E E No Deposit Transient
## 17848 G G No Deposit Transient
## 17849 A A No Deposit Transient
## 17850 D D No Deposit Transient
## 17851 D D No Deposit Transient
## 17852 A A No Deposit Transient-Party
## 17853 G G No Deposit Transient
## 17854 E E No Deposit Transient
## 17855 A E No Deposit Contract
## 17856 A A No Deposit Contract
## 17857 A A No Deposit Contract
## 17858 A A No Deposit Contract
## 17859 A A No Deposit Transient-Party
## 17860 A A No Deposit Transient-Party
## 17861 A A No Deposit Transient-Party
## 17862 A A No Deposit Transient-Party
## 17863 D D No Deposit Transient
## 17864 D D No Deposit Transient
## 17865 A D No Deposit Transient
## 17866 D D No Deposit Transient
## 17867 E E No Deposit Transient
## 17868 A D No Deposit Transient
## 17869 A A No Deposit Transient
## 17870 A A No Deposit Transient
## 17871 A A No Deposit Transient
## 17872 D D No Deposit Transient
## 17873 A A No Deposit Transient
## 17874 A A No Deposit Transient
## 17875 A A No Deposit Transient
## 17876 A A No Deposit Transient
## 17877 A A No Deposit Transient
## 17878 A A No Deposit Transient
## 17879 A A No Deposit Transient
## 17880 A A No Deposit Transient
## 17881 F F No Deposit Transient
## 17882 F G No Deposit Transient
## 17883 A A No Deposit Transient
## 17884 D D No Deposit Transient
## 17885 A C No Deposit Contract
## 17886 E E No Deposit Transient
## 17887 D D No Deposit Transient
## 17888 F F No Deposit Transient
## 17889 A D No Deposit Transient-Party
## 17890 A A No Deposit Transient
## 17891 A A No Deposit Transient
## 17892 A C No Deposit Transient-Party
## 17893 A A No Deposit Transient-Party
## 17894 A C No Deposit Transient-Party
## 17895 A D No Deposit Transient
## 17896 A D No Deposit Transient
## 17897 A D No Deposit Transient
## 17898 A C No Deposit Transient
## 17899 A A No Deposit Transient
## 17900 D F No Deposit Transient
## 17901 A A No Deposit Transient
## 17902 A A No Deposit Transient
## 17903 A A No Deposit Transient
## 17904 A A No Deposit Transient
## 17905 A E No Deposit Transient
## 17906 A A No Deposit Transient
## 17907 A A No Deposit Contract
## 17908 A A No Deposit Transient
## 17909 A A No Deposit Transient
## 17910 A A No Deposit Contract
## 17911 E E No Deposit Transient
## 17912 A A No Deposit Transient
## 17913 A A No Deposit Transient
## 17914 A A No Deposit Transient
## 17915 A D No Deposit Transient
## 17916 A A No Deposit Transient-Party
## 17917 A A No Deposit Transient
## 17918 A D No Deposit Transient
## 17919 A A No Deposit Transient
## 17920 A D No Deposit Transient
## 17921 A E No Deposit Transient
## 17922 A D No Deposit Transient
## 17923 A A No Deposit Transient
## 17924 A A No Deposit Transient
## 17925 D D No Deposit Transient
## 17926 A E No Deposit Transient
## 17927 A A No Deposit Transient
## 17928 A A No Deposit Transient-Party
## 17929 A A No Deposit Transient-Party
## 17930 E E No Deposit Contract
## 17931 A A No Deposit Transient
## 17932 A A No Deposit Transient
## 17933 A D No Deposit Transient
## 17934 A D No Deposit Transient
## 17935 A A No Deposit Contract
## 17936 A A No Deposit Transient
## 17937 A A No Deposit Transient
## 17938 A A No Deposit Transient
## 17939 A A No Deposit Transient
## 17940 A A No Deposit Transient
## 17941 A A No Deposit Transient
## 17942 A A No Deposit Transient-Party
## 17943 A A No Deposit Transient
## 17944 A A No Deposit Transient
## 17945 D D No Deposit Transient
## 17946 A D No Deposit Transient
## 17947 A D No Deposit Transient
## 17948 A D No Deposit Transient
## 17949 A D No Deposit Transient
## 17950 A A No Deposit Transient
## 17951 A A No Deposit Transient
## 17952 A B No Deposit Transient-Party
## 17953 D D No Deposit Transient
## 17954 C H No Deposit Transient-Party
## 17955 A A No Deposit Transient
## 17956 A A No Deposit Transient
## 17957 A D No Deposit Transient
## 17958 A A No Deposit Transient
## 17959 A D No Deposit Transient
## 17960 A D No Deposit Transient
## 17961 A A No Deposit Transient
## 17962 A D No Deposit Transient
## 17963 A A No Deposit Transient
## 17964 D D No Deposit Transient
## 17965 A A No Deposit Transient
## 17966 A A No Deposit Transient
## 17967 A A No Deposit Transient
## 17968 A A No Deposit Transient
## 17969 A C No Deposit Transient
## 17970 A B No Deposit Transient
## 17971 A F No Deposit Transient
## 17972 A A No Deposit Transient
## 17973 A D No Deposit Transient
## 17974 A D No Deposit Transient
## 17975 A A No Deposit Contract
## 17976 A A No Deposit Transient
## 17977 A A No Deposit Transient-Party
## 17978 A A No Deposit Transient
## 17979 A A No Deposit Transient
## 17980 D D No Deposit Transient
## 17981 A A No Deposit Transient
## 17982 A A No Deposit Transient-Party
## 17983 A A No Deposit Transient-Party
## 17984 A A No Deposit Transient
## 17985 A A No Deposit Transient
## 17986 A A No Deposit Transient
## 17987 A D No Deposit Transient
## 17988 A E No Deposit Transient
## 17989 A A No Deposit Transient
## 17990 A A No Deposit Transient
## 17991 A A No Deposit Transient
## 17992 A F No Deposit Transient
## 17993 A F No Deposit Transient
## 17994 A F No Deposit Transient
## 17995 A A No Deposit Transient
## 17996 A D No Deposit Transient
## 17997 A A No Deposit Transient
## 17998 A D No Deposit Transient
## 17999 A A No Deposit Transient
## 18000 A D No Deposit Transient
## 18001 A D No Deposit Transient
## 18002 A A No Deposit Transient
## 18003 A D No Deposit Transient
## 18004 A D No Deposit Transient
## 18005 A B No Deposit Transient
## 18006 A A No Deposit Transient
## 18007 A A No Deposit Transient
## 18008 A A No Deposit Transient
## 18009 A C No Deposit Transient
## 18010 A A No Deposit Transient
## 18011 A F No Deposit Group
## 18012 A D No Deposit Transient
## 18013 A D No Deposit Transient
## 18014 A D No Deposit Transient
## 18015 A D No Deposit Transient
## 18016 A F No Deposit Transient
## 18017 A A No Deposit Transient
## 18018 A A No Deposit Transient
## 18019 A A No Deposit Transient-Party
## 18020 A A No Deposit Transient
## 18021 D D No Deposit Transient
## 18022 A D No Deposit Transient
## 18023 A D No Deposit Transient
## 18024 A D No Deposit Transient
## 18025 A A No Deposit Transient
## 18026 A A No Deposit Transient-Party
## 18027 A A No Deposit Transient
## 18028 D D No Deposit Transient
## 18029 A A No Deposit Transient
## 18030 A A No Deposit Transient
## 18031 A A No Deposit Transient-Party
## 18032 A A No Deposit Transient-Party
## 18033 A A No Deposit Transient
## 18034 G G No Deposit Transient
## 18035 E E No Deposit Transient
## 18036 D D No Deposit Contract
## 18037 A A No Deposit Transient
## 18038 A A No Deposit Contract
## 18039 C G No Deposit Contract
## 18040 A F No Deposit Contract
## 18041 F F No Deposit Transient
## 18042 F F No Deposit Transient
## 18043 D D No Deposit Transient
## 18044 D D No Deposit Transient
## 18045 A A No Deposit Transient
## 18046 A A No Deposit Transient
## 18047 A E No Deposit Contract
## 18048 A A No Deposit Transient
## 18049 A A No Deposit Contract
## 18050 A A No Deposit Contract
## 18051 A A No Deposit Contract
## 18052 A D No Deposit Transient
## 18053 A E No Deposit Transient
## 18054 A E No Deposit Transient
## 18055 A A No Deposit Transient
## 18056 A A No Deposit Transient
## 18057 A A No Deposit Transient
## 18058 A A No Deposit Transient
## 18059 A D No Deposit Transient
## 18060 A H No Deposit Transient
## 18061 A A No Deposit Transient
## 18062 A A No Deposit Transient
## 18063 A D No Deposit Transient
## 18064 D D No Deposit Transient
## 18065 A A No Deposit Transient
## 18066 A A No Deposit Transient
## 18067 A A No Deposit Transient
## 18068 D D No Deposit Contract
## 18069 A A No Deposit Transient
## 18070 A D No Deposit Transient
## 18071 A D No Deposit Transient
## 18072 A A No Deposit Transient
## 18073 A A No Deposit Transient
## 18074 E E No Deposit Transient
## 18075 E E No Deposit Transient
## 18076 E E No Deposit Transient-Party
## 18077 A D No Deposit Transient
## 18078 C C No Deposit Transient
## 18079 E E No Deposit Group
## 18080 A A No Deposit Transient
## 18081 A D No Deposit Transient
## 18082 A A No Deposit Transient
## 18083 H G No Deposit Transient
## 18084 A A No Deposit Transient
## 18085 E E No Deposit Transient
## 18086 A D No Deposit Transient
## 18087 D D No Deposit Transient
## 18088 D D No Deposit Transient
## 18089 A A No Deposit Transient
## 18090 A A No Deposit Transient
## 18091 A D No Deposit Transient
## 18092 A D No Deposit Transient
## 18093 A D No Deposit Transient
## 18094 A A No Deposit Transient
## 18095 A A No Deposit Transient
## 18096 A D No Deposit Transient
## 18097 A D No Deposit Transient
## 18098 A D No Deposit Transient
## 18099 A A No Deposit Transient
## 18100 A A No Deposit Transient-Party
## 18101 A A No Deposit Transient
## 18102 D D No Deposit Transient
## 18103 A D No Deposit Transient-Party
## 18104 A D No Deposit Transient-Party
## 18105 A D No Deposit Transient-Party
## 18106 A A No Deposit Transient
## 18107 A D No Deposit Transient
## 18108 A E No Deposit Transient
## 18109 A D No Deposit Transient
## 18110 A A No Deposit Transient
## 18111 A D No Deposit Transient
## 18112 D D No Deposit Transient
## 18113 A D No Deposit Transient
## 18114 A A No Deposit Transient
## 18115 D D No Deposit Transient
## 18116 D D No Deposit Transient
## 18117 A A No Deposit Transient
## 18118 A A No Deposit Transient
## 18119 E E No Deposit Transient
## 18120 D D No Deposit Transient
## 18121 A A No Deposit Transient
## 18122 A A No Deposit Transient
## 18123 A A No Deposit Transient
## 18124 A D No Deposit Transient
## 18125 F F No Deposit Transient
## 18126 D D No Deposit Transient
## 18127 A A No Deposit Transient
## 18128 A A No Deposit Transient
## 18129 D D No Deposit Transient
## 18130 D D No Deposit Transient
## 18131 A A No Deposit Transient-Party
## 18132 A A No Deposit Transient
## 18133 A A No Deposit Transient
## 18134 D D No Deposit Transient
## 18135 A D No Deposit Transient
## 18136 D D No Deposit Transient
## 18137 D D No Deposit Transient
## 18138 D D No Deposit Transient
## 18139 A D No Deposit Transient
## 18140 D D No Deposit Transient
## 18141 A D No Deposit Transient
## 18142 A D No Deposit Transient
## 18143 D D No Deposit Transient
## 18144 D D No Deposit Transient
## 18145 A A No Deposit Transient
## 18146 A D No Deposit Transient
## 18147 D D No Deposit Transient
## 18148 A D No Deposit Transient
## 18149 G G No Deposit Transient
## 18150 A A No Deposit Transient
## 18151 D D No Deposit Transient
## 18152 A D No Deposit Transient
## 18153 A A No Deposit Transient
## 18154 A C No Deposit Transient
## 18155 A D No Deposit Contract
## 18156 A A No Deposit Transient
## 18157 A A No Deposit Transient
## 18158 A A No Deposit Transient
## 18159 D D No Deposit Transient
## 18160 A D No Deposit Transient
## 18161 A D No Deposit Transient
## 18162 A D No Deposit Transient
## 18163 E E No Deposit Transient
## 18164 D D No Deposit Transient
## 18165 E E No Deposit Transient
## 18166 A A No Deposit Transient
## 18167 A D No Deposit Transient
## 18168 A D No Deposit Transient
## 18169 D D No Deposit Transient
## 18170 A A No Deposit Transient-Party
## 18171 A A No Deposit Transient
## 18172 A D No Deposit Transient
## 18173 A A No Deposit Transient-Party
## 18174 A A No Deposit Transient-Party
## 18175 A A No Deposit Transient-Party
## 18176 A A No Deposit Transient-Party
## 18177 A D No Deposit Transient
## 18178 D D No Deposit Transient
## 18179 F F No Deposit Transient
## 18180 A D No Deposit Transient
## 18181 E F No Deposit Transient
## 18182 D D No Deposit Transient
## 18183 D D No Deposit Transient
## 18184 C C No Deposit Transient
## 18185 D E No Deposit Transient
## 18186 A D No Deposit Transient
## 18187 D D No Deposit Transient
## 18188 F F No Deposit Transient
## 18189 D D No Deposit Transient
## 18190 A E No Deposit Transient
## 18191 D D No Deposit Transient
## 18192 A C No Deposit Transient-Party
## 18193 A C No Deposit Transient-Party
## 18194 A D No Deposit Transient
## 18195 A C No Deposit Transient-Party
## 18196 A B No Deposit Transient-Party
## 18197 D D No Deposit Transient
## 18198 F F No Deposit Transient
## 18199 F F No Deposit Transient
## 18200 G G No Deposit Transient
## 18201 D D No Deposit Transient
## 18202 A D No Deposit Transient-Party
## 18203 A A No Deposit Transient-Party
## 18204 A A No Deposit Transient-Party
## 18205 E F No Deposit Transient-Party
## 18206 E G No Deposit Contract
## 18207 D D No Deposit Transient
## 18208 E E No Deposit Transient-Party
## 18209 E E No Deposit Transient-Party
## 18210 D D No Deposit Transient
## 18211 A C No Deposit Transient
## 18212 A A No Deposit Transient-Party
## 18213 A A No Deposit Transient-Party
## 18214 A A No Deposit Transient-Party
## 18215 H H No Deposit Transient
## 18216 A A No Deposit Transient-Party
## 18217 E E No Deposit Transient-Party
## 18218 A A No Deposit Transient-Party
## 18219 A A No Deposit Transient-Party
## 18220 E E No Deposit Transient-Party
## 18221 E E No Deposit Transient-Party
## 18222 A A No Deposit Transient-Party
## 18223 A A No Deposit Transient-Party
## 18224 A D No Deposit Transient
## 18225 A D No Deposit Transient
## 18226 A A No Deposit Transient-Party
## 18227 E E No Deposit Transient-Party
## 18228 E E No Deposit Transient-Party
## 18229 A A No Deposit Transient-Party
## 18230 E E No Deposit Group
## 18231 D D No Deposit Transient
## 18232 A D No Deposit Transient
## 18233 A D No Deposit Transient
## 18234 A A No Deposit Transient-Party
## 18235 H H No Deposit Transient
## 18236 A A No Deposit Transient-Party
## 18237 A A No Deposit Transient-Party
## 18238 E E No Deposit Transient-Party
## 18239 A A No Deposit Transient-Party
## 18240 A D No Deposit Transient
## 18241 A D No Deposit Transient
## 18242 A D No Deposit Transient
## 18243 A A No Deposit Transient-Party
## 18244 G G No Deposit Transient
## 18245 D D No Deposit Transient
## 18246 E E No Deposit Transient-Party
## 18247 E E No Deposit Transient-Party
## 18248 A A No Deposit Transient-Party
## 18249 E E No Deposit Transient-Party
## 18250 A A No Deposit Transient-Party
## 18251 D D No Deposit Transient
## 18252 E E No Deposit Transient-Party
## 18253 A A No Deposit Transient-Party
## 18254 A A No Deposit Transient-Party
## 18255 D D No Deposit Transient
## 18256 A D No Deposit Transient-Party
## 18257 E E No Deposit Transient-Party
## 18258 A A No Deposit Transient-Party
## 18259 A D No Deposit Transient
## 18260 D D No Deposit Transient-Party
## 18261 A D No Deposit Transient
## 18262 A D No Deposit Transient
## 18263 A D No Deposit Transient
## 18264 A A No Deposit Transient-Party
## 18265 A A Non Refund Transient-Party
## 18266 A A No Deposit Transient-Party
## 18267 A A No Deposit Transient-Party
## 18268 A A No Deposit Transient-Party
## 18269 A F No Deposit Transient-Party
## 18270 A A No Deposit Transient-Party
## 18271 A A No Deposit Transient-Party
## 18272 A A No Deposit Transient
## 18273 A D No Deposit Transient
## 18274 A D No Deposit Transient
## 18275 A D No Deposit Transient
## 18276 A D No Deposit Transient
## 18277 A E No Deposit Transient
## 18278 A A No Deposit Group
## 18279 A A No Deposit Transient
## 18280 A A No Deposit Transient-Party
## 18281 A A No Deposit Transient-Party
## 18282 A A No Deposit Transient-Party
## 18283 A A No Deposit Transient-Party
## 18284 A A No Deposit Transient-Party
## 18285 A A No Deposit Transient-Party
## 18286 A A No Deposit Transient-Party
## 18287 F F No Deposit Transient
## 18288 F F No Deposit Transient
## 18289 A D No Deposit Transient
## 18290 A D No Deposit Transient
## 18291 D D No Deposit Transient
## 18292 A A No Deposit Transient
## 18293 E G No Deposit Transient-Party
## 18294 A E No Deposit Transient
## 18295 A A No Deposit Transient
## 18296 E E No Deposit Transient-Party
## 18297 E G No Deposit Transient-Party
## 18298 E G No Deposit Transient-Party
## 18299 E E No Deposit Transient-Party
## 18300 D D No Deposit Transient
## 18301 A A No Deposit Transient
## 18302 A A No Deposit Transient
## 18303 A A No Deposit Transient
## 18304 A A No Deposit Transient
## 18305 A D No Deposit Transient
## 18306 A D No Deposit Transient
## 18307 A A No Deposit Transient
## 18308 A D No Deposit Transient
## 18309 A A No Deposit Transient
## 18310 A A No Deposit Transient
## 18311 A A No Deposit Transient
## 18312 A A No Deposit Transient
## 18313 D D No Deposit Transient
## 18314 E F No Deposit Transient-Party
## 18315 A A No Deposit Transient
## 18316 A A No Deposit Transient
## 18317 E E No Deposit Transient-Party
## 18318 E E No Deposit Group
## 18319 A D No Deposit Transient
## 18320 A A No Deposit Transient
## 18321 A F No Deposit Transient
## 18322 D D No Deposit Transient
## 18323 A A No Deposit Transient
## 18324 C C No Deposit Transient
## 18325 A A No Deposit Transient-Party
## 18326 A A No Deposit Transient-Party
## 18327 A A No Deposit Transient-Party
## 18328 A A No Deposit Transient-Party
## 18329 A A No Deposit Transient-Party
## 18330 A C No Deposit Transient-Party
## 18331 A A No Deposit Transient-Party
## 18332 A A No Deposit Transient-Party
## 18333 A A No Deposit Transient-Party
## 18334 A A No Deposit Transient-Party
## 18335 A A No Deposit Transient-Party
## 18336 A A No Deposit Transient-Party
## 18337 A A No Deposit Transient-Party
## 18338 A A No Deposit Transient-Party
## 18339 A A No Deposit Transient-Party
## 18340 A A No Deposit Transient-Party
## 18341 A A No Deposit Transient-Party
## 18342 A A No Deposit Transient-Party
## 18343 A A No Deposit Transient-Party
## 18344 A A No Deposit Transient-Party
## 18345 A A No Deposit Transient-Party
## 18346 A A No Deposit Transient-Party
## 18347 A A No Deposit Transient-Party
## 18348 A A No Deposit Transient-Party
## 18349 A A No Deposit Transient-Party
## 18350 A A No Deposit Transient-Party
## 18351 A A No Deposit Transient-Party
## 18352 A A No Deposit Transient-Party
## 18353 A A No Deposit Transient-Party
## 18354 A A No Deposit Transient-Party
## 18355 A A No Deposit Transient-Party
## 18356 A A No Deposit Transient-Party
## 18357 A A No Deposit Transient-Party
## 18358 A A No Deposit Transient-Party
## 18359 A A No Deposit Transient-Party
## 18360 A A No Deposit Transient-Party
## 18361 A A No Deposit Transient-Party
## 18362 A A No Deposit Transient-Party
## 18363 A A No Deposit Transient-Party
## 18364 A A No Deposit Transient-Party
## 18365 A A No Deposit Transient-Party
## 18366 A A No Deposit Transient-Party
## 18367 D D No Deposit Contract
## 18368 A D No Deposit Transient
## 18369 A D No Deposit Transient
## 18370 A D No Deposit Transient
## 18371 F F No Deposit Transient
## 18372 A C No Deposit Transient
## 18373 F F No Deposit Transient
## 18374 E E No Deposit Transient
## 18375 A A No Deposit Transient
## 18376 D D No Deposit Transient
## 18377 A A No Deposit Transient
## 18378 A A No Deposit Transient
## 18379 A A No Deposit Transient
## 18380 D D No Deposit Transient
## 18381 D D No Deposit Transient
## 18382 A D No Deposit Transient
## 18383 A A No Deposit Transient
## 18384 A A No Deposit Transient
## 18385 A A No Deposit Transient
## 18386 A A No Deposit Transient
## 18387 E E No Deposit Transient
## 18388 A A No Deposit Transient
## 18389 A A No Deposit Transient
## 18390 A A No Deposit Transient
## 18391 A A No Deposit Transient-Party
## 18392 A D No Deposit Group
## 18393 A A No Deposit Transient
## 18394 A D No Deposit Transient
## 18395 A A No Deposit Transient
## 18396 A D No Deposit Transient
## 18397 A A No Deposit Transient
## 18398 A A No Deposit Transient-Party
## 18399 A D No Deposit Transient
## 18400 A D No Deposit Transient
## 18401 A D No Deposit Transient
## 18402 A D No Deposit Transient
## 18403 A D No Deposit Transient
## 18404 A A No Deposit Transient
## 18405 A A No Deposit Transient
## 18406 A A No Deposit Transient
## 18407 A D No Deposit Transient
## 18408 A A No Deposit Transient
## 18409 A D No Deposit Transient
## 18410 A D No Deposit Group
## 18411 A A No Deposit Transient
## 18412 A D No Deposit Transient
## 18413 A A No Deposit Transient
## 18414 A A No Deposit Group
## 18415 A A No Deposit Transient
## 18416 A D No Deposit Transient
## 18417 E E No Deposit Transient
## 18418 A D No Deposit Transient
## 18419 A A No Deposit Transient
## 18420 A A No Deposit Transient
## 18421 A D No Deposit Transient
## 18422 A D No Deposit Transient
## 18423 A D No Deposit Transient
## 18424 A F No Deposit Transient
## 18425 A D No Deposit Transient
## 18426 D E No Deposit Transient
## 18427 A D No Deposit Transient
## 18428 A D No Deposit Transient
## 18429 A A No Deposit Transient-Party
## 18430 A A No Deposit Transient-Party
## 18431 A A No Deposit Transient-Party
## 18432 A A No Deposit Transient-Party
## 18433 A A No Deposit Transient-Party
## 18434 A A No Deposit Transient-Party
## 18435 A A No Deposit Transient
## 18436 A A No Deposit Transient
## 18437 A D No Deposit Transient
## 18438 A C No Deposit Transient
## 18439 E E No Deposit Transient
## 18440 A D No Deposit Transient
## 18441 A A No Deposit Transient
## 18442 A A No Deposit Transient
## 18443 A A No Deposit Transient
## 18444 A E No Deposit Transient
## 18445 A A No Deposit Transient
## 18446 A D No Deposit Transient
## 18447 A A No Deposit Transient
## 18448 A A No Deposit Transient
## 18449 A D No Deposit Transient
## 18450 A A No Deposit Transient
## 18451 A A No Deposit Transient
## 18452 D D No Deposit Transient
## 18453 A D No Deposit Transient
## 18454 A A No Deposit Transient
## 18455 A A No Deposit Transient
## 18456 A A No Deposit Transient-Party
## 18457 A A No Deposit Transient-Party
## 18458 A A No Deposit Transient-Party
## 18459 A A No Deposit Transient
## 18460 A A No Deposit Transient
## 18461 A A No Deposit Transient
## 18462 A D No Deposit Transient
## 18463 A A No Deposit Transient
## 18464 D D No Deposit Transient
## 18465 H D No Deposit Group
## 18466 A A No Deposit Transient
## 18467 D D No Deposit Transient
## 18468 D D No Deposit Transient
## 18469 A D No Deposit Transient
## 18470 A D No Deposit Transient-Party
## 18471 A D No Deposit Transient-Party
## 18472 A D No Deposit Transient-Party
## 18473 A A No Deposit Transient
## 18474 A D No Deposit Transient-Party
## 18475 A D No Deposit Transient-Party
## 18476 A D No Deposit Transient-Party
## 18477 D D No Deposit Transient
## 18478 A D No Deposit Transient
## 18479 E E No Deposit Transient
## 18480 A D No Deposit Transient-Party
## 18481 A D No Deposit Transient
## 18482 A D No Deposit Transient-Party
## 18483 A D No Deposit Transient-Party
## 18484 A A No Deposit Transient
## 18485 A D No Deposit Transient-Party
## 18486 F F No Deposit Transient
## 18487 A D No Deposit Transient-Party
## 18488 A A No Deposit Transient-Party
## 18489 F F No Deposit Transient
## 18490 A D No Deposit Transient
## 18491 A A No Deposit Transient
## 18492 D D No Deposit Transient
## 18493 A A No Deposit Transient
## 18494 A A No Deposit Transient
## 18495 A A No Deposit Transient-Party
## 18496 F F No Deposit Transient
## 18497 D D No Deposit Transient
## 18498 A A No Deposit Transient
## 18499 A B No Deposit Transient-Party
## 18500 A E No Deposit Transient-Party
## 18501 A E No Deposit Transient-Party
## 18502 A A No Deposit Transient-Party
## 18503 D D No Deposit Transient
## 18504 D D No Deposit Transient
## 18505 F F No Deposit Transient
## 18506 E G No Deposit Transient
## 18507 D D No Deposit Transient
## 18508 A A No Deposit Transient-Party
## 18509 A F No Deposit Transient
## 18510 D D No Deposit Transient
## 18511 A D No Deposit Transient
## 18512 A A No Deposit Transient
## 18513 D A No Deposit Transient
## 18514 F F No Deposit Transient
## 18515 F F No Deposit Transient
## 18516 D F No Deposit Transient
## 18517 D F No Deposit Transient
## 18518 A E No Deposit Transient
## 18519 A D No Deposit Transient
## 18520 A E No Deposit Transient
## 18521 A D No Deposit Transient
## 18522 D F No Deposit Transient
## 18523 A A No Deposit Transient
## 18524 F F No Deposit Transient
## 18525 A A No Deposit Transient
## 18526 A G No Deposit Transient
## 18527 F G No Deposit Transient
## 18528 A D No Deposit Transient
## 18529 A D No Deposit Transient
## 18530 E E No Deposit Transient
## 18531 A A No Deposit Transient
## 18532 D D No Deposit Contract
## 18533 A D No Deposit Transient
## 18534 D D No Deposit Transient
## 18535 A D No Deposit Transient
## 18536 A D No Deposit Transient
## 18537 A D No Deposit Transient
## 18538 A A No Deposit Transient
## 18539 A A No Deposit Transient-Party
## 18540 A A No Deposit Transient-Party
## 18541 A A No Deposit Transient-Party
## 18542 A A No Deposit Transient-Party
## 18543 A A No Deposit Transient-Party
## 18544 A D No Deposit Transient
## 18545 A A No Deposit Transient-Party
## 18546 A A No Deposit Transient-Party
## 18547 A A No Deposit Transient-Party
## 18548 A C No Deposit Transient-Party
## 18549 A C No Deposit Transient-Party
## 18550 A A No Deposit Transient-Party
## 18551 A A No Deposit Transient-Party
## 18552 A D No Deposit Transient
## 18553 A A No Deposit Transient
## 18554 E E No Deposit Transient
## 18555 E E No Deposit Transient
## 18556 E E No Deposit Transient
## 18557 A D No Deposit Transient
## 18558 D D No Deposit Transient
## 18559 A A No Deposit Transient-Party
## 18560 A A No Deposit Transient-Party
## 18561 A A No Deposit Transient-Party
## 18562 A A No Deposit Transient-Party
## 18563 A A No Deposit Transient-Party
## 18564 A A No Deposit Transient-Party
## 18565 A A No Deposit Transient-Party
## 18566 A A No Deposit Transient-Party
## 18567 D D No Deposit Transient
## 18568 A A No Deposit Transient
## 18569 E E No Deposit Transient
## 18570 A A No Deposit Transient
## 18571 D D No Deposit Transient
## 18572 A A No Deposit Transient
## 18573 G G No Deposit Transient
## 18574 D D No Deposit Transient
## 18575 A A No Deposit Transient
## 18576 A A No Deposit Transient
## 18577 E E No Deposit Transient
## 18578 A A No Deposit Transient
## 18579 A E No Deposit Transient
## 18580 E E No Deposit Transient
## 18581 A D No Deposit Transient
## 18582 A D No Deposit Transient
## 18583 A D No Deposit Transient
## 18584 A D No Deposit Transient
## 18585 A A No Deposit Transient-Party
## 18586 A D No Deposit Transient
## 18587 A A No Deposit Transient
## 18588 A A No Deposit Transient
## 18589 D D Non Refund Transient
## 18590 D D Non Refund Transient
## 18591 D D Non Refund Transient
## 18592 D D Non Refund Transient
## 18593 D D Non Refund Transient
## 18594 D D Non Refund Transient
## 18595 A A No Deposit Transient-Party
## 18596 A A No Deposit Transient-Party
## 18597 A A No Deposit Transient-Party
## 18598 A A No Deposit Transient
## 18599 A A No Deposit Transient
## 18600 A A No Deposit Transient
## 18601 D D No Deposit Transient
## 18602 D D No Deposit Transient
## 18603 G G No Deposit Transient
## 18604 D D No Deposit Transient
## 18605 A A No Deposit Transient
## 18606 A A No Deposit Transient
## 18607 A A No Deposit Transient
## 18608 A A No Deposit Transient
## 18609 A A No Deposit Transient
## 18610 D D No Deposit Contract
## 18611 A D No Deposit Transient
## 18612 A A No Deposit Transient
## 18613 A D No Deposit Transient
## 18614 D D No Deposit Transient
## 18615 A D No Deposit Transient
## 18616 A A No Deposit Transient
## 18617 A D No Deposit Transient
## 18618 A D No Deposit Transient
## 18619 A D No Deposit Transient
## 18620 A A No Deposit Transient
## 18621 A A No Deposit Transient
## 18622 A D No Deposit Transient
## 18623 A A No Deposit Transient
## 18624 A D No Deposit Transient
## 18625 A D No Deposit Transient
## 18626 A D No Deposit Transient
## 18627 A A No Deposit Transient
## 18628 A H No Deposit Transient
## 18629 A A No Deposit Transient
## 18630 A D No Deposit Transient
## 18631 A A No Deposit Transient
## 18632 A D No Deposit Transient
## 18633 A D No Deposit Transient
## 18634 A D No Deposit Transient
## 18635 A D No Deposit Transient
## 18636 A A No Deposit Transient
## 18637 A A No Deposit Transient
## 18638 A A No Deposit Transient
## 18639 A D No Deposit Transient
## 18640 A I No Deposit Transient
## 18641 D D No Deposit Transient
## 18642 G G No Deposit Transient
## 18643 A D No Deposit Transient
## 18644 A A No Deposit Transient
## 18645 A A No Deposit Transient
## 18646 A A No Deposit Transient
## 18647 A A No Deposit Transient
## 18648 A A No Deposit Transient
## 18649 A E No Deposit Transient
## 18650 A D No Deposit Transient
## 18651 A D No Deposit Transient
## 18652 A A No Deposit Transient
## 18653 E E No Deposit Transient
## 18654 E E No Deposit Transient
## 18655 A A No Deposit Transient
## 18656 A D No Deposit Transient
## 18657 A A No Deposit Transient
## 18658 A A No Deposit Transient
## 18659 A A No Deposit Transient
## 18660 A A No Deposit Transient
## 18661 A D No Deposit Transient
## 18662 A A No Deposit Transient
## 18663 A F No Deposit Transient
## 18664 A A No Deposit Transient
## 18665 A D No Deposit Transient-Party
## 18666 A D No Deposit Transient
## 18667 D D No Deposit Transient
## 18668 A A No Deposit Transient
## 18669 A A No Deposit Transient
## 18670 D D No Deposit Transient
## 18671 D D No Deposit Transient
## 18672 A E No Deposit Transient
## 18673 A D No Deposit Transient
## 18674 A D No Deposit Transient
## 18675 A D No Deposit Transient
## 18676 A A No Deposit Transient
## 18677 H H No Deposit Transient
## 18678 F F No Deposit Transient
## 18679 A A No Deposit Transient
## 18680 A A No Deposit Transient
## 18681 A A No Deposit Transient
## 18682 A E No Deposit Transient
## 18683 D D No Deposit Transient-Party
## 18684 D D No Deposit Transient-Party
## 18685 D D No Deposit Transient-Party
## 18686 D D No Deposit Transient-Party
## 18687 D D No Deposit Transient-Party
## 18688 D D No Deposit Transient
## 18689 A D No Deposit Transient
## 18690 A A No Deposit Transient
## 18691 A D No Deposit Transient
## 18692 A A No Deposit Transient
## 18693 A A No Deposit Transient
## 18694 D D No Deposit Transient
## 18695 D D No Deposit Transient
## 18696 E E No Deposit Transient
## 18697 A A No Deposit Transient
## 18698 A A No Deposit Transient
## 18699 A A No Deposit Transient
## 18700 A A No Deposit Transient
## 18701 A A No Deposit Transient
## 18702 A D No Deposit Group
## 18703 A D No Deposit Transient
## 18704 A D No Deposit Transient
## 18705 A A No Deposit Transient
## 18706 D D No Deposit Transient
## 18707 E E No Deposit Transient
## 18708 A D No Deposit Transient
## 18709 D D No Deposit Transient
## 18710 A D No Deposit Transient
## 18711 A H No Deposit Transient
## 18712 D E No Deposit Transient
## 18713 A A No Deposit Transient-Party
## 18714 A A No Deposit Transient-Party
## 18715 D D No Deposit Transient
## 18716 A A No Deposit Transient
## 18717 A A No Deposit Transient
## 18718 A D No Deposit Transient
## 18719 A E No Deposit Transient
## 18720 A E No Deposit Transient
## 18721 A A No Deposit Transient
## 18722 A A No Deposit Transient
## 18723 A A No Deposit Transient
## 18724 A A No Deposit Transient
## 18725 A A No Deposit Transient
## 18726 A D No Deposit Transient-Party
## 18727 A D No Deposit Transient-Party
## 18728 A D No Deposit Transient
## 18729 A D No Deposit Transient
## 18730 A A No Deposit Transient
## 18731 E E No Deposit Transient
## 18732 A D No Deposit Transient
## 18733 A A No Deposit Transient
## 18734 A A No Deposit Transient
## 18735 D D No Deposit Transient
## 18736 A A No Deposit Transient
## 18737 A A No Deposit Transient
## 18738 A A No Deposit Transient
## 18739 A A No Deposit Transient
## 18740 A A No Deposit Transient-Party
## 18741 A A No Deposit Transient-Party
## 18742 A A No Deposit Transient-Party
## 18743 A A No Deposit Group
## 18744 A D No Deposit Transient
## 18745 A A No Deposit Transient
## 18746 G G No Deposit Transient
## 18747 H H No Deposit Transient
## 18748 C C No Deposit Transient
## 18749 C C No Deposit Group
## 18750 A D No Deposit Transient
## 18751 D D No Deposit Transient-Party
## 18752 D D No Deposit Transient-Party
## 18753 A A No Deposit Transient
## 18754 E E No Deposit Transient
## 18755 D D No Deposit Transient-Party
## 18756 A A No Deposit Transient-Party
## 18757 A A No Deposit Transient-Party
## 18758 D D No Deposit Transient
## 18759 D D No Deposit Transient-Party
## 18760 A A No Deposit Transient
## 18761 D D No Deposit Transient
## 18762 D D No Deposit Transient-Party
## 18763 A A No Deposit Transient-Party
## 18764 D D No Deposit Transient-Party
## 18765 D D No Deposit Transient-Party
## 18766 A A No Deposit Transient
## 18767 A A No Deposit Transient
## 18768 D D No Deposit Transient
## 18769 A A No Deposit Transient
## 18770 A A No Deposit Transient
## 18771 A A No Deposit Transient
## 18772 A A No Deposit Transient
## 18773 D D No Deposit Transient
## 18774 D D No Deposit Transient
## 18775 A D No Deposit Transient
## 18776 D D No Deposit Transient
## 18777 A C No Deposit Transient
## 18778 D D No Deposit Transient
## 18779 H H No Deposit Transient
## 18780 A A No Deposit Transient
## 18781 A A No Deposit Transient
## 18782 A D No Deposit Transient
## 18783 A D No Deposit Transient
## 18784 A A No Deposit Transient
## 18785 A D No Deposit Transient
## 18786 A D No Deposit Transient
## 18787 D D No Deposit Transient
## 18788 A A No Deposit Transient
## 18789 A D No Deposit Transient
## 18790 D D No Deposit Transient
## 18791 D D No Deposit Transient
## 18792 D D No Deposit Transient
## 18793 A D No Deposit Transient
## 18794 D D No Deposit Transient
## 18795 A A No Deposit Transient
## 18796 A A No Deposit Transient
## 18797 D D No Deposit Transient
## 18798 D D No Deposit Transient
## 18799 A A No Deposit Transient
## 18800 A A No Deposit Transient
## 18801 D D No Deposit Transient
## 18802 A A No Deposit Transient
## 18803 D D No Deposit Transient
## 18804 A D No Deposit Transient
## 18805 A A No Deposit Transient
## 18806 A A No Deposit Transient
## 18807 A D No Deposit Transient
## 18808 A A No Deposit Transient
## 18809 A D No Deposit Transient
## 18810 A A No Deposit Transient
## 18811 A D No Deposit Transient
## 18812 D D No Deposit Transient
## 18813 A A No Deposit Transient
## 18814 A D No Deposit Transient
## 18815 E E No Deposit Transient
## 18816 E E No Deposit Transient
## 18817 D D No Deposit Transient
## 18818 A A No Deposit Transient
## 18819 A A No Deposit Transient
## 18820 A A No Deposit Transient-Party
## 18821 A A No Deposit Transient-Party
## 18822 A A No Deposit Transient-Party
## 18823 A A No Deposit Transient-Party
## 18824 A A No Deposit Transient-Party
## 18825 A A No Deposit Transient-Party
## 18826 A A No Deposit Transient-Party
## 18827 A A No Deposit Transient-Party
## 18828 G G No Deposit Transient-Party
## 18829 G G No Deposit Transient-Party
## 18830 A E No Deposit Transient
## 18831 G G No Deposit Transient
## 18832 A A No Deposit Transient
## 18833 A C No Deposit Transient
## 18834 A A No Deposit Transient
## 18835 E E No Deposit Transient
## 18836 E E No Deposit Transient
## 18837 A D No Deposit Transient
## 18838 A I No Deposit Transient-Party
## 18839 A A No Deposit Transient
## 18840 A A No Deposit Transient
## 18841 A A No Deposit Transient
## 18842 A D No Deposit Transient
## 18843 A A No Deposit Transient
## 18844 D D No Deposit Transient
## 18845 A A No Deposit Transient
## 18846 A D No Deposit Transient
## 18847 A D No Deposit Transient
## 18848 D D No Deposit Transient-Party
## 18849 D D No Deposit Transient
## 18850 D D No Deposit Transient-Party
## 18851 A D No Deposit Transient
## 18852 A A No Deposit Transient
## 18853 A A No Deposit Transient
## 18854 E E No Deposit Transient
## 18855 E E No Deposit Transient
## 18856 D D No Deposit Transient
## 18857 D D No Deposit Transient
## 18858 D E No Deposit Transient
## 18859 A D No Deposit Transient
## 18860 A A No Deposit Transient
## 18861 A D No Deposit Transient-Party
## 18862 A A No Deposit Transient
## 18863 D D No Deposit Transient
## 18864 A D No Deposit Transient
## 18865 A A No Deposit Transient
## 18866 A A No Deposit Transient
## 18867 A A No Deposit Transient
## 18868 A E No Deposit Transient
## 18869 A D No Deposit Transient-Party
## 18870 A D No Deposit Transient-Party
## 18871 A D No Deposit Transient-Party
## 18872 A A No Deposit Transient
## 18873 D D No Deposit Transient
## 18874 E E No Deposit Transient
## 18875 A A No Deposit Transient
## 18876 F F No Deposit Transient
## 18877 A A No Deposit Transient-Party
## 18878 A A No Deposit Transient-Party
## 18879 A A No Deposit Transient-Party
## 18880 A A No Deposit Transient-Party
## 18881 A A No Deposit Transient-Party
## 18882 A A No Deposit Transient-Party
## 18883 A A No Deposit Transient-Party
## 18884 A A No Deposit Transient
## 18885 D D No Deposit Transient
## 18886 D D No Deposit Transient
## 18887 D D No Deposit Transient
## 18888 A D No Deposit Transient
## 18889 A C No Deposit Group
## 18890 A D No Deposit Transient
## 18891 A A No Deposit Transient
## 18892 E E No Deposit Group
## 18893 E E No Deposit Transient
## 18894 A D No Deposit Transient
## 18895 A D No Deposit Transient
## 18896 G G No Deposit Transient
## 18897 D D No Deposit Transient-Party
## 18898 A A No Deposit Transient-Party
## 18899 A G No Deposit Transient
## 18900 A F No Deposit Transient
## 18901 A F No Deposit Transient
## 18902 G G No Deposit Transient
## 18903 A D No Deposit Transient
## 18904 A D No Deposit Transient
## 18905 D D No Deposit Transient
## 18906 D D No Deposit Transient
## 18907 A A No Deposit Transient
## 18908 E E No Deposit Transient
## 18909 D D No Deposit Transient-Party
## 18910 A A No Deposit Transient
## 18911 A D No Deposit Transient
## 18912 A D No Deposit Transient
## 18913 A A No Deposit Transient
## 18914 A D No Deposit Transient
## 18915 A E No Deposit Transient-Party
## 18916 A D No Deposit Transient
## 18917 A D No Deposit Transient
## 18918 A A No Deposit Transient
## 18919 E E No Deposit Transient
## 18920 A D No Deposit Transient-Party
## 18921 A A No Deposit Transient-Party
## 18922 A A No Deposit Transient-Party
## 18923 A A No Deposit Transient-Party
## 18924 A D No Deposit Transient-Party
## 18925 A A No Deposit Transient-Party
## 18926 A A No Deposit Transient-Party
## 18927 A D No Deposit Transient-Party
## 18928 A A No Deposit Transient-Party
## 18929 A A No Deposit Transient-Party
## 18930 A A No Deposit Transient-Party
## 18931 A D No Deposit Transient-Party
## 18932 A A No Deposit Transient-Party
## 18933 A A No Deposit Transient-Party
## 18934 A A No Deposit Transient-Party
## 18935 A D No Deposit Transient-Party
## 18936 A D No Deposit Transient-Party
## 18937 A A No Deposit Transient-Party
## 18938 A A No Deposit Transient-Party
## 18939 A A No Deposit Transient-Party
## 18940 A A No Deposit Transient-Party
## 18941 A A No Deposit Transient-Party
## 18942 A A No Deposit Transient-Party
## 18943 A A No Deposit Transient
## 18944 A D No Deposit Transient
## 18945 D E No Deposit Transient
## 18946 A A No Deposit Transient
## 18947 A D No Deposit Transient
## 18948 A D No Deposit Transient
## 18949 A D No Deposit Transient
## 18950 A D No Deposit Transient
## 18951 A D No Deposit Transient
## 18952 A A No Deposit Transient-Party
## 18953 A A No Deposit Transient-Party
## 18954 A A No Deposit Transient
## 18955 D D No Deposit Transient
## 18956 A D No Deposit Transient-Party
## 18957 A D No Deposit Transient-Party
## 18958 E E No Deposit Transient
## 18959 A D No Deposit Transient
## 18960 F F No Deposit Transient
## 18961 A D No Deposit Transient
## 18962 A E No Deposit Transient
## 18963 E E No Deposit Transient
## 18964 A D No Deposit Transient
## 18965 A D No Deposit Transient
## 18966 A D No Deposit Transient
## 18967 A F No Deposit Transient
## 18968 A D No Deposit Group
## 18969 A D No Deposit Transient
## 18970 A A No Deposit Transient
## 18971 A D No Deposit Transient
## 18972 A D No Deposit Transient
## 18973 A D No Deposit Transient
## 18974 E E No Deposit Transient
## 18975 A A No Deposit Transient
## 18976 E E No Deposit Transient
## 18977 A A No Deposit Transient
## 18978 A A No Deposit Transient
## 18979 A A No Deposit Transient
## 18980 A D No Deposit Transient
## 18981 A D No Deposit Transient
## 18982 D D No Deposit Transient
## 18983 D D No Deposit Transient
## 18984 D D No Deposit Transient
## 18985 A D No Deposit Transient
## 18986 E E No Deposit Transient
## 18987 D D No Deposit Transient
## 18988 D E No Deposit Transient
## 18989 E E No Deposit Transient
## 18990 D D No Deposit Transient
## 18991 A D No Deposit Transient
## 18992 E E No Deposit Transient
## 18993 A D No Deposit Transient
## 18994 D D No Deposit Transient
## 18995 E E No Deposit Transient
## 18996 E E No Deposit Transient
## 18997 F F No Deposit Transient
## 18998 A D No Deposit Transient
## 18999 A A No Deposit Transient
## 19000 A A No Deposit Transient
## 19001 D D No Deposit Transient
## 19002 E F No Deposit Transient
## 19003 D D No Deposit Transient
## 19004 D D No Deposit Transient
## 19005 A D No Deposit Transient
## 19006 D D No Deposit Transient
## 19007 A D No Deposit Transient
## 19008 A D No Deposit Transient
## 19009 D D No Deposit Transient-Party
## 19010 D D No Deposit Transient-Party
## 19011 E E No Deposit Transient
## 19012 F F No Deposit Transient
## 19013 A E No Deposit Transient
## 19014 D D No Deposit Transient
## 19015 A D No Deposit Transient
## 19016 D D No Deposit Transient-Party
## 19017 D D No Deposit Transient-Party
## 19018 E E No Deposit Transient
## 19019 D E No Deposit Transient
## 19020 A D No Deposit Transient
## 19021 A D No Deposit Transient
## 19022 E F No Deposit Transient
## 19023 H H No Deposit Transient
## 19024 A D No Deposit Transient
## 19025 A D No Deposit Transient
## 19026 A D No Deposit Transient
## 19027 E E No Deposit Transient
## 19028 A A No Deposit Transient
## 19029 D D No Deposit Transient
## 19030 A D No Deposit Transient
## 19031 D D No Deposit Transient
## 19032 D D No Deposit Transient
## 19033 G G No Deposit Transient
## 19034 A A No Deposit Transient
## 19035 D D No Deposit Transient
## 19036 D D No Deposit Transient
## 19037 F F No Deposit Transient
## 19038 E E No Deposit Transient
## 19039 D D No Deposit Transient
## 19040 D D No Deposit Transient
## 19041 D D No Deposit Transient
## 19042 D D No Deposit Transient
## 19043 G G No Deposit Transient
## 19044 F F No Deposit Transient
## 19045 E E No Deposit Transient
## 19046 A E No Deposit Transient
## 19047 A D No Deposit Transient
## 19048 A A No Deposit Transient
## 19049 A D No Deposit Transient
## 19050 A D No Deposit Transient
## 19051 A D No Deposit Transient
## 19052 A D No Deposit Transient
## 19053 A D No Deposit Transient
## 19054 A A No Deposit Transient-Party
## 19055 A A No Deposit Transient-Party
## 19056 A E No Deposit Transient
## 19057 A D No Deposit Transient
## 19058 A A No Deposit Transient-Party
## 19059 A A No Deposit Transient-Party
## 19060 A A No Deposit Transient-Party
## 19061 A D No Deposit Transient-Party
## 19062 A A No Deposit Transient-Party
## 19063 A A No Deposit Transient-Party
## 19064 A A No Deposit Transient-Party
## 19065 A A No Deposit Transient-Party
## 19066 A E No Deposit Transient
## 19067 A A No Deposit Transient-Party
## 19068 A A No Deposit Transient
## 19069 A A No Deposit Transient-Party
## 19070 A A No Deposit Transient-Party
## 19071 A A No Deposit Transient-Party
## 19072 A C No Deposit Transient-Party
## 19073 A A No Deposit Transient-Party
## 19074 A A No Deposit Transient-Party
## 19075 A A No Deposit Transient-Party
## 19076 A A No Deposit Transient-Party
## 19077 A A No Deposit Transient-Party
## 19078 A C No Deposit Transient-Party
## 19079 A C No Deposit Transient-Party
## 19080 A A No Deposit Transient-Party
## 19081 A A No Deposit Transient-Party
## 19082 A A No Deposit Transient-Party
## 19083 A A No Deposit Transient-Party
## 19084 A A No Deposit Transient-Party
## 19085 A A No Deposit Transient-Party
## 19086 A A No Deposit Transient-Party
## 19087 F F No Deposit Transient
## 19088 A A No Deposit Transient
## 19089 A A No Deposit Transient-Party
## 19090 A D No Deposit Transient
## 19091 A D No Deposit Transient
## 19092 A D No Deposit Transient
## 19093 C C No Deposit Transient
## 19094 A D No Deposit Transient
## 19095 D D No Deposit Transient
## 19096 A E No Deposit Transient
## 19097 A E No Deposit Transient
## 19098 H H No Deposit Transient
## 19099 C C No Deposit Transient
## 19100 A A No Deposit Transient-Party
## 19101 A A No Deposit Transient-Party
## 19102 A A No Deposit Transient
## 19103 A E No Deposit Transient-Party
## 19104 A E No Deposit Transient-Party
## 19105 A A No Deposit Transient
## 19106 A D No Deposit Transient
## 19107 A D No Deposit Transient
## 19108 A D No Deposit Transient
## 19109 G G No Deposit Transient
## 19110 A D No Deposit Transient
## 19111 C C No Deposit Transient
## 19112 D D No Deposit Transient
## 19113 D D No Deposit Transient
## 19114 A E No Deposit Transient
## 19115 D D No Deposit Transient
## 19116 A C No Deposit Transient
## 19117 D D No Deposit Transient
## 19118 A A No Deposit Transient
## 19119 D E No Deposit Transient
## 19120 A D No Deposit Transient
## 19121 G G No Deposit Transient
## 19122 G G No Deposit Transient
## 19123 A D No Deposit Transient
## 19124 A D No Deposit Transient
## 19125 A D No Deposit Transient
## 19126 A A No Deposit Transient
## 19127 G G No Deposit Transient
## 19128 A A No Deposit Transient-Party
## 19129 A A No Deposit Transient-Party
## 19130 D D No Deposit Transient
## 19131 A E No Deposit Transient
## 19132 D D No Deposit Transient
## 19133 D D No Deposit Transient
## 19134 A A No Deposit Transient
## 19135 A A No Deposit Transient
## 19136 A D No Deposit Transient
## 19137 A D No Deposit Transient
## 19138 A A No Deposit Transient
## 19139 A D No Deposit Transient
## 19140 A A No Deposit Transient
## 19141 E E No Deposit Transient
## 19142 A D No Deposit Transient
## 19143 A A No Deposit Transient
## 19144 D D No Deposit Transient
## 19145 D D No Deposit Transient
## 19146 A A No Deposit Group
## 19147 A D No Deposit Transient
## 19148 A D No Deposit Transient
## 19149 A D No Deposit Transient
## 19150 D D No Deposit Transient
## 19151 A A No Deposit Transient
## 19152 A A No Deposit Transient-Party
## 19153 A A No Deposit Transient
## 19154 A A No Deposit Transient
## 19155 A D No Deposit Transient
## 19156 A A No Deposit Transient-Party
## 19157 A A No Deposit Transient-Party
## 19158 D D No Deposit Transient-Party
## 19159 D D No Deposit Transient-Party
## 19160 A A No Deposit Transient-Party
## 19161 A A No Deposit Group
## 19162 A A No Deposit Transient
## 19163 A C No Deposit Transient
## 19164 A A No Deposit Transient
## 19165 A D No Deposit Transient
## 19166 D D No Deposit Transient
## 19167 A A No Deposit Transient
## 19168 D D No Deposit Transient
## 19169 A D No Deposit Transient
## 19170 A A No Deposit Transient
## 19171 D D No Deposit Transient
## 19172 A A No Deposit Transient
## 19173 A D No Deposit Transient
## 19174 A D No Deposit Transient
## 19175 A A No Deposit Transient
## 19176 A D No Deposit Transient
## 19177 A D No Deposit Transient
## 19178 D D No Deposit Transient
## 19179 A D No Deposit Transient
## 19180 A A No Deposit Transient
## 19181 A A No Deposit Transient
## 19182 E E No Deposit Transient
## 19183 A A No Deposit Transient
## 19184 D D No Deposit Transient
## 19185 A A Non Refund Transient
## 19186 A A Non Refund Transient
## 19187 A A Non Refund Transient
## 19188 A A Non Refund Transient
## 19189 A A Non Refund Transient
## 19190 A A Non Refund Transient
## 19191 A A Non Refund Transient
## 19192 A A Non Refund Transient
## 19193 A A Non Refund Transient
## 19194 A A Non Refund Transient
## 19195 A A Non Refund Transient
## 19196 A A Non Refund Transient
## 19197 A A Non Refund Transient
## 19198 A A Non Refund Transient
## 19199 A A Non Refund Transient
## 19200 A A Non Refund Transient
## 19201 A A Non Refund Transient
## 19202 A A Non Refund Transient
## 19203 A A Non Refund Transient
## 19204 A A Non Refund Transient
## 19205 A A Non Refund Transient
## 19206 A A Non Refund Transient
## 19207 A A Non Refund Transient
## 19208 A A Non Refund Transient
## 19209 A A Non Refund Transient
## 19210 A A Non Refund Transient
## 19211 A A Non Refund Transient
## 19212 A A Non Refund Transient
## 19213 A A Non Refund Transient
## 19214 A A Non Refund Transient
## 19215 A A Non Refund Transient
## 19216 A A Non Refund Transient
## 19217 A A Non Refund Transient
## 19218 A A Non Refund Transient
## 19219 A A Non Refund Transient
## 19220 A A Non Refund Transient
## 19221 A A Non Refund Transient
## 19222 A A Non Refund Transient
## 19223 A A Non Refund Transient
## 19224 A A Non Refund Transient
## 19225 A A Non Refund Transient
## 19226 A A Non Refund Transient
## 19227 A A Non Refund Transient
## 19228 A A Non Refund Transient
## 19229 A A Non Refund Transient
## 19230 A A Non Refund Transient
## 19231 A A Non Refund Transient
## 19232 A A Non Refund Transient
## 19233 A A Non Refund Transient
## 19234 A A Non Refund Transient
## 19235 A A Non Refund Transient
## 19236 A A Non Refund Transient
## 19237 A A Non Refund Transient
## 19238 A A Non Refund Transient
## 19239 A A Non Refund Transient
## 19240 D D No Deposit Transient
## 19241 A D No Deposit Transient
## 19242 A A No Deposit Transient
## 19243 A D No Deposit Transient
## 19244 A D No Deposit Transient
## 19245 A E No Deposit Transient
## 19246 E G No Deposit Transient
## 19247 E F No Deposit Transient
## 19248 A E No Deposit Transient
## 19249 A I No Deposit Transient-Party
## 19250 A D No Deposit Transient
## 19251 A A No Deposit Transient
## 19252 A A No Deposit Transient
## 19253 D D No Deposit Transient
## 19254 A A No Deposit Transient
## 19255 A A No Deposit Transient
## 19256 A H No Deposit Transient
## 19257 A A Non Refund Transient
## 19258 A A Non Refund Transient
## 19259 E E No Deposit Transient
## 19260 D D No Deposit Transient
## 19261 A A No Deposit Transient-Party
## 19262 A A No Deposit Transient-Party
## 19263 E E No Deposit Transient
## 19264 H H No Deposit Transient
## 19265 A A No Deposit Transient
## 19266 E E No Deposit Transient
## 19267 A D No Deposit Transient
## 19268 D D No Deposit Transient
## 19269 A D No Deposit Transient
## 19270 D E No Deposit Transient
## 19271 E E No Deposit Transient
## 19272 A D No Deposit Transient
## 19273 A D No Deposit Transient
## 19274 A D No Deposit Transient
## 19275 D D No Deposit Transient
## 19276 A D No Deposit Transient
## 19277 A A No Deposit Transient
## 19278 A D No Deposit Transient
## 19279 A D No Deposit Transient
## 19280 A A No Deposit Transient
## 19281 A D No Deposit Transient
## 19282 E E No Deposit Transient
## 19283 G G No Deposit Transient
## 19284 A A No Deposit Transient
## 19285 D D No Deposit Transient
## 19286 E E No Deposit Transient
## 19287 E E No Deposit Transient
## 19288 D D No Deposit Transient
## 19289 H H No Deposit Transient
## 19290 D D No Deposit Transient
## 19291 D D No Deposit Transient
## 19292 A D No Deposit Transient
## 19293 D D No Deposit Transient
## 19294 E E No Deposit Transient
## 19295 A D No Deposit Transient
## 19296 A D No Deposit Transient
## 19297 E E No Deposit Transient
## 19298 D D No Deposit Transient
## 19299 A A No Deposit Transient
## 19300 A D No Deposit Transient
## 19301 D D No Deposit Transient
## 19302 D D No Deposit Transient
## 19303 A A No Deposit Transient
## 19304 A D No Deposit Transient
## 19305 E E No Deposit Transient
## 19306 D D No Deposit Transient
## 19307 H H No Deposit Transient
## 19308 G G No Deposit Transient-Party
## 19309 A A No Deposit Transient
## 19310 D D No Deposit Transient
## 19311 A D No Deposit Transient
## 19312 A A No Deposit Transient
## 19313 A D No Deposit Transient
## 19314 D D No Deposit Transient
## 19315 A A No Deposit Transient
## 19316 A D No Deposit Transient-Party
## 19317 A D No Deposit Transient-Party
## 19318 A D No Deposit Transient-Party
## 19319 A D No Deposit Transient
## 19320 A D No Deposit Transient
## 19321 D D No Deposit Transient
## 19322 A A No Deposit Transient
## 19323 E E No Deposit Transient
## 19324 A A No Deposit Transient
## 19325 D D No Deposit Transient
## 19326 A D No Deposit Transient
## 19327 A D No Deposit Transient
## 19328 A E No Deposit Transient
## 19329 D D No Deposit Transient
## 19330 A D No Deposit Transient
## 19331 D D No Deposit Transient
## 19332 D D No Deposit Transient
## 19333 E E No Deposit Transient
## 19334 D D No Deposit Transient
## 19335 D D No Deposit Transient
## 19336 A A No Deposit Transient
## 19337 A D No Deposit Transient
## 19338 A A No Deposit Transient
## 19339 A D No Deposit Transient
## 19340 A D No Deposit Transient
## 19341 A A No Deposit Transient
## 19342 A D No Deposit Group
## 19343 A D No Deposit Transient
## 19344 A A No Deposit Transient
## 19345 D D No Deposit Transient
## 19346 G G No Deposit Transient
## 19347 A A No Deposit Transient
## 19348 A D No Deposit Transient
## 19349 A A No Deposit Transient
## 19350 D D No Deposit Transient
## 19351 A D No Deposit Transient
## 19352 A D No Deposit Transient
## 19353 A D No Deposit Transient
## 19354 D D No Deposit Transient
## 19355 A A No Deposit Transient
## 19356 D D No Deposit Transient
## 19357 A A No Deposit Transient
## 19358 A D No Deposit Transient
## 19359 A D No Deposit Transient
## 19360 A A No Deposit Transient
## 19361 A C No Deposit Transient
## 19362 A D No Deposit Transient
## 19363 A D No Deposit Transient
## 19364 A I No Deposit Transient
## 19365 E E No Deposit Transient
## 19366 D D No Deposit Transient
## 19367 D D No Deposit Transient
## 19368 D D No Deposit Transient
## 19369 D D No Deposit Transient
## 19370 A D No Deposit Transient
## 19371 A D No Deposit Transient
## 19372 E E No Deposit Transient
## 19373 E E No Deposit Transient
## 19374 A A No Deposit Transient
## 19375 A A No Deposit Transient
## 19376 G G No Deposit Transient
## 19377 A D No Deposit Transient
## 19378 E E No Deposit Transient
## 19379 A D No Deposit Transient
## 19380 A D No Deposit Transient
## 19381 A E No Deposit Transient
## 19382 A A No Deposit Transient
## 19383 A A No Deposit Transient
## 19384 D D No Deposit Transient
## 19385 D D No Deposit Transient
## 19386 A D No Deposit Transient
## 19387 A A No Deposit Transient
## 19388 A A No Deposit Transient
## 19389 A A No Deposit Transient
## 19390 A A No Deposit Transient
## 19391 A F No Deposit Transient
## 19392 A F No Deposit Transient
## 19393 A D No Deposit Transient
## 19394 A A No Deposit Transient
## 19395 E E No Deposit Transient
## 19396 E E No Deposit Transient
## 19397 A D No Deposit Transient
## 19398 A F No Deposit Transient
## 19399 D D No Deposit Transient
## 19400 D D No Deposit Transient
## 19401 A E No Deposit Transient
## 19402 D D No Deposit Transient
## 19403 A E No Deposit Transient
## 19404 A D No Deposit Transient
## 19405 A D No Deposit Transient
## 19406 A A No Deposit Transient
## 19407 A A No Deposit Transient-Party
## 19408 A A No Deposit Transient
## 19409 A A No Deposit Transient-Party
## 19410 A D No Deposit Transient
## 19411 D D No Deposit Transient
## 19412 D F No Deposit Transient
## 19413 D D No Deposit Transient
## 19414 A A No Deposit Transient
## 19415 D D No Deposit Transient
## 19416 D D No Deposit Transient
## 19417 A A No Deposit Transient
## 19418 A D No Deposit Group
## 19419 A D No Deposit Transient
## 19420 D D No Deposit Transient
## 19421 D D No Deposit Transient
## 19422 D D No Deposit Transient
## 19423 A A No Deposit Transient
## 19424 A A No Deposit Group
## 19425 A D No Deposit Transient
## 19426 E E No Deposit Transient
## 19427 A E No Deposit Transient
## 19428 A D No Deposit Transient
## 19429 A A No Deposit Transient
## 19430 G G No Deposit Transient
## 19431 A D No Deposit Transient
## 19432 E E No Deposit Transient
## 19433 D D No Deposit Transient
## 19434 A D No Deposit Transient-Party
## 19435 A A No Deposit Transient-Party
## 19436 D G No Deposit Transient
## 19437 A A No Deposit Transient
## 19438 D D No Deposit Transient
## 19439 A D No Deposit Transient-Party
## 19440 A A No Deposit Transient-Party
## 19441 A D No Deposit Transient-Party
## 19442 A A No Deposit Transient-Party
## 19443 C G No Deposit Transient
## 19444 A D No Deposit Transient
## 19445 D D No Deposit Transient
## 19446 A D No Deposit Transient-Party
## 19447 A D No Deposit Transient-Party
## 19448 D D No Deposit Transient
## 19449 A D No Deposit Transient
## 19450 A D No Deposit Transient
## 19451 A D No Deposit Transient
## 19452 A D No Deposit Transient
## 19453 A D No Deposit Transient
## 19454 E E No Deposit Transient
## 19455 A E No Deposit Transient
## 19456 D G No Deposit Transient
## 19457 A D No Deposit Transient
## 19458 E E No Deposit Transient
## 19459 D D No Deposit Transient
## 19460 A A No Deposit Transient
## 19461 A D No Deposit Contract
## 19462 E E No Deposit Contract
## 19463 A D No Deposit Transient
## 19464 D D No Deposit Transient
## 19465 D D No Deposit Transient
## 19466 F F No Deposit Transient
## 19467 D D No Deposit Transient
## 19468 E E No Deposit Transient
## 19469 A D No Deposit Transient
## 19470 A A No Deposit Transient
## 19471 E F No Deposit Transient
## 19472 A D No Deposit Transient
## 19473 A D No Deposit Transient
## 19474 E E No Deposit Transient
## 19475 A D No Deposit Transient
## 19476 D D No Deposit Transient-Party
## 19477 D D No Deposit Transient-Party
## 19478 A D No Deposit Transient-Party
## 19479 A D No Deposit Transient-Party
## 19480 A A No Deposit Transient
## 19481 A D No Deposit Transient
## 19482 A A No Deposit Transient
## 19483 A E No Deposit Transient
## 19484 A D No Deposit Transient
## 19485 A D No Deposit Transient
## 19486 A A No Deposit Transient
## 19487 A A No Deposit Transient
## 19488 A D No Deposit Transient
## 19489 A C No Deposit Transient
## 19490 A A No Deposit Transient
## 19491 D D No Deposit Transient
## 19492 A A No Deposit Transient
## 19493 A A No Deposit Transient
## 19494 A A No Deposit Group
## 19495 A A No Deposit Transient
## 19496 A E No Deposit Transient
## 19497 D F No Deposit Transient
## 19498 D D No Deposit Transient
## 19499 A D No Deposit Transient
## 19500 D D No Deposit Transient
## 19501 A D No Deposit Transient
## 19502 D E No Deposit Transient
## 19503 D D No Deposit Transient
## 19504 A A No Deposit Transient
## 19505 A I No Deposit Transient
## 19506 A A No Deposit Transient
## 19507 A D No Deposit Transient
## 19508 E E No Deposit Transient
## 19509 A A No Deposit Transient
## 19510 D D No Deposit Transient
## 19511 D D No Deposit Transient
## 19512 A D No Deposit Transient
## 19513 G G No Deposit Transient
## 19514 A D No Deposit Transient
## 19515 A A No Deposit Transient
## 19516 F F No Deposit Transient
## 19517 C C No Deposit Transient
## 19518 F F No Deposit Transient
## 19519 D D No Deposit Transient
## 19520 F F No Deposit Transient
## 19521 D E No Deposit Transient
## 19522 E E No Deposit Transient-Party
## 19523 G G No Deposit Transient
## 19524 A D No Deposit Transient
## 19525 A E No Deposit Transient
## 19526 A D No Deposit Transient
## 19527 D D No Deposit Transient
## 19528 D D No Deposit Transient
## 19529 A A No Deposit Transient
## 19530 A A No Deposit Transient
## 19531 A D No Deposit Transient-Party
## 19532 A D No Deposit Transient-Party
## 19533 A C No Deposit Transient
## 19534 A A No Deposit Transient
## 19535 A A No Deposit Transient
## 19536 A D No Deposit Transient
## 19537 A D No Deposit Transient
## 19538 A A No Deposit Transient
## 19539 D D No Deposit Transient
## 19540 F F No Deposit Transient
## 19541 A E No Deposit Transient
## 19542 A E No Deposit Transient
## 19543 E E No Deposit Transient
## 19544 D D No Deposit Transient
## 19545 D D No Deposit Transient
## 19546 A D No Deposit Transient
## 19547 A D No Deposit Transient
## 19548 E E No Deposit Transient
## 19549 D D No Deposit Transient
## 19550 A D No Deposit Transient
## 19551 C C No Deposit Transient
## 19552 A A No Deposit Transient
## 19553 D D No Deposit Transient
## 19554 D D No Deposit Transient
## 19555 A D No Deposit Transient
## 19556 A D No Deposit Transient
## 19557 C C No Deposit Transient
## 19558 D D No Deposit Transient
## 19559 D E No Deposit Transient
## 19560 A E No Deposit Transient
## 19561 E E No Deposit Transient
## 19562 E E No Deposit Transient
## 19563 A A No Deposit Transient
## 19564 D E No Deposit Transient
## 19565 A D No Deposit Transient
## 19566 A C No Deposit Transient
## 19567 A A No Deposit Transient
## 19568 A E No Deposit Transient
## 19569 E E No Deposit Transient
## 19570 E E No Deposit Transient
## 19571 E E No Deposit Transient
## 19572 A A No Deposit Transient
## 19573 D D No Deposit Transient
## 19574 D D No Deposit Transient
## 19575 D D No Deposit Transient
## 19576 A D No Deposit Transient
## 19577 A D No Deposit Transient
## 19578 H H No Deposit Transient
## 19579 A A No Deposit Transient
## 19580 A C No Deposit Transient
## 19581 D D No Deposit Transient
## 19582 E E No Deposit Transient
## 19583 A A No Deposit Transient
## 19584 A A No Deposit Transient
## 19585 F F No Deposit Transient
## 19586 G G No Deposit Transient
## 19587 A D No Deposit Transient
## 19588 D D No Deposit Transient-Party
## 19589 D D No Deposit Transient-Party
## 19590 E E No Deposit Transient
## 19591 A D No Deposit Transient
## 19592 D D No Deposit Transient
## 19593 A A No Deposit Transient
## 19594 F F No Deposit Transient
## 19595 A E No Deposit Transient
## 19596 E E No Deposit Transient
## 19597 A A No Deposit Transient-Party
## 19598 A D No Deposit Transient
## 19599 A A No Deposit Transient
## 19600 A D No Deposit Transient
## 19601 E E No Deposit Transient
## 19602 E E No Deposit Transient
## 19603 A A No Deposit Transient-Party
## 19604 A A No Deposit Transient-Party
## 19605 A A No Deposit Transient
## 19606 A A No Deposit Transient-Party
## 19607 A A No Deposit Transient-Party
## 19608 D D No Deposit Transient-Party
## 19609 A A No Deposit Transient
## 19610 D D No Deposit Transient
## 19611 A A No Deposit Transient
## 19612 A A No Deposit Transient-Party
## 19613 D D No Deposit Transient-Party
## 19614 A D No Deposit Transient-Party
## 19615 A A No Deposit Transient-Party
## 19616 D D No Deposit Transient
## 19617 A A No Deposit Transient-Party
## 19618 E E No Deposit Transient
## 19619 A A No Deposit Transient-Party
## 19620 A B No Deposit Transient-Party
## 19621 D D No Deposit Transient
## 19622 D D No Deposit Transient
## 19623 A A No Deposit Transient
## 19624 A A No Deposit Transient
## 19625 A D No Deposit Transient
## 19626 A D No Deposit Transient
## 19627 A D No Deposit Transient
## 19628 A A No Deposit Transient
## 19629 A D No Deposit Transient
## 19630 A D No Deposit Transient
## 19631 A A No Deposit Group
## 19632 A C No Deposit Transient
## 19633 A D No Deposit Transient
## 19634 A F No Deposit Transient
## 19635 F F No Deposit Transient
## 19636 A A No Deposit Transient
## 19637 A G No Deposit Transient
## 19638 H H No Deposit Transient
## 19639 D D No Deposit Transient
## 19640 E E No Deposit Transient
## 19641 E E No Deposit Transient
## 19642 D D No Deposit Transient
## 19643 A D No Deposit Transient
## 19644 A A No Deposit Transient
## 19645 D D No Deposit Transient
## 19646 D D No Deposit Transient
## 19647 D D No Deposit Transient
## 19648 A A No Deposit Transient-Party
## 19649 A A No Deposit Transient-Party
## 19650 D D No Deposit Transient
## 19651 A D No Deposit Transient
## 19652 A A No Deposit Contract
## 19653 D D No Deposit Transient
## 19654 A D No Deposit Transient
## 19655 D D No Deposit Transient
## 19656 C C No Deposit Transient
## 19657 A A No Deposit Transient
## 19658 E F No Deposit Transient
## 19659 H H No Deposit Transient
## 19660 A A No Deposit Transient
## 19661 A D No Deposit Transient
## 19662 D D No Deposit Transient
## 19663 E E No Deposit Transient
## 19664 A D No Deposit Transient
## 19665 A D No Deposit Transient
## 19666 E E No Deposit Transient
## 19667 A A No Deposit Transient
## 19668 C C No Deposit Transient
## 19669 D D No Deposit Transient
## 19670 A A No Deposit Transient
## 19671 E E No Deposit Transient
## 19672 E E No Deposit Transient
## 19673 A A No Deposit Transient
## 19674 D D No Deposit Transient
## 19675 D D No Deposit Transient
## 19676 D D No Deposit Transient
## 19677 A D No Deposit Transient
## 19678 E F No Deposit Transient
## 19679 D D No Deposit Transient
## 19680 A A No Deposit Transient
## 19681 A D No Deposit Transient
## 19682 A D No Deposit Transient
## 19683 A D No Deposit Transient
## 19684 A F No Deposit Transient
## 19685 F F No Deposit Transient
## 19686 D D No Deposit Transient
## 19687 F F No Deposit Transient
## 19688 A A No Deposit Transient
## 19689 H H No Deposit Transient
## 19690 A A No Deposit Transient
## 19691 F F No Deposit Transient
## 19692 F F No Deposit Transient
## 19693 A A No Deposit Transient
## 19694 A D No Deposit Transient
## 19695 H H No Deposit Transient
## 19696 G G No Deposit Transient
## 19697 A D No Deposit Transient
## 19698 A D No Deposit Transient
## 19699 A D No Deposit Transient
## 19700 D D No Deposit Transient
## 19701 D D No Deposit Transient
## 19702 A A No Deposit Transient
## 19703 D D No Deposit Transient
## 19704 E F No Deposit Transient
## 19705 D D No Deposit Transient
## 19706 D D No Deposit Transient
## 19707 D D No Deposit Transient
## 19708 E E No Deposit Transient
## 19709 E F No Deposit Transient
## 19710 D D No Deposit Transient
## 19711 E E No Deposit Transient
## 19712 A D No Deposit Transient
## 19713 D D No Deposit Transient
## 19714 F F No Deposit Transient
## 19715 E F No Deposit Transient
## 19716 A D No Deposit Transient
## 19717 A A No Deposit Transient
## 19718 A A No Deposit Transient
## 19719 A G No Deposit Transient
## 19720 G G No Deposit Transient
## 19721 A E No Deposit Transient
## 19722 C C No Deposit Transient
## 19723 E E No Deposit Transient
## 19724 E E No Deposit Transient
## 19725 A A No Deposit Transient-Party
## 19726 A A No Deposit Transient-Party
## 19727 A A No Deposit Transient-Party
## 19728 A A No Deposit Transient-Party
## 19729 A A No Deposit Transient-Party
## 19730 A A No Deposit Transient-Party
## 19731 A A No Deposit Transient-Party
## 19732 D D No Deposit Transient-Party
## 19733 D D No Deposit Transient-Party
## 19734 D D No Deposit Transient-Party
## 19735 D D No Deposit Transient-Party
## 19736 E E No Deposit Transient
## 19737 D D No Deposit Transient-Party
## 19738 A A No Deposit Transient-Party
## 19739 A A No Deposit Transient-Party
## 19740 A A No Deposit Transient-Party
## 19741 A A No Deposit Transient-Party
## 19742 A A No Deposit Transient-Party
## 19743 A A No Deposit Transient-Party
## 19744 E E No Deposit Transient-Party
## 19745 E E No Deposit Transient-Party
## 19746 E E No Deposit Transient-Party
## 19747 E E No Deposit Transient-Party
## 19748 A A No Deposit Transient-Party
## 19749 A A No Deposit Transient
## 19750 A A No Deposit Transient-Party
## 19751 D D No Deposit Transient-Party
## 19752 D D No Deposit Transient-Party
## 19753 A A No Deposit Transient-Party
## 19754 A A No Deposit Transient-Party
## 19755 A A No Deposit Transient-Party
## 19756 A A No Deposit Transient-Party
## 19757 A A No Deposit Transient-Party
## 19758 A A No Deposit Transient-Party
## 19759 A A No Deposit Transient-Party
## 19760 H H No Deposit Transient
## 19761 E E No Deposit Transient
## 19762 A D No Deposit Transient
## 19763 E F No Deposit Transient
## 19764 E E No Deposit Transient
## 19765 E E No Deposit Transient
## 19766 D D No Deposit Transient
## 19767 A D No Deposit Transient
## 19768 A A No Deposit Transient
## 19769 D D No Deposit Transient
## 19770 D D No Deposit Transient
## 19771 A A No Deposit Transient
## 19772 D D No Deposit Transient
## 19773 D D No Deposit Transient
## 19774 D D No Deposit Transient
## 19775 D D No Deposit Transient
## 19776 D D No Deposit Transient
## 19777 D F No Deposit Transient
## 19778 D D No Deposit Transient
## 19779 E E No Deposit Transient
## 19780 D D No Deposit Group
## 19781 D D No Deposit Transient
## 19782 E E No Deposit Transient
## 19783 G G No Deposit Transient
## 19784 C C No Deposit Transient
## 19785 D D No Deposit Transient
## 19786 D D No Deposit Transient
## 19787 D D No Deposit Transient
## 19788 A A No Deposit Transient
## 19789 D D No Deposit Transient
## 19790 F F No Deposit Transient
## 19791 A D No Deposit Transient
## 19792 A D No Deposit Transient
## 19793 D D No Deposit Transient
## 19794 A A No Deposit Transient
## 19795 A A No Deposit Transient
## 19796 A A No Deposit Transient
## 19797 E E No Deposit Transient
## 19798 D D No Deposit Group
## 19799 D D No Deposit Transient
## 19800 E F No Deposit Transient
## 19801 A A No Deposit Transient
## 19802 A A No Deposit Transient
## 19803 G G No Deposit Transient
## 19804 A A No Deposit Transient
## 19805 G G No Deposit Transient
## 19806 A F No Deposit Transient
## 19807 E E No Deposit Transient
## 19808 A F No Deposit Transient
## 19809 A E No Deposit Group
## 19810 F F No Deposit Transient
## 19811 A D No Deposit Transient
## 19812 D A No Deposit Transient
## 19813 E E No Deposit Transient
## 19814 A D No Deposit Transient
## 19815 A D No Deposit Transient
## 19816 A D No Deposit Group
## 19817 A A No Deposit Group
## 19818 A A No Deposit Group
## 19819 G G No Deposit Transient
## 19820 A D No Deposit Transient
## 19821 A D No Deposit Transient
## 19822 A D No Deposit Transient
## 19823 E E No Deposit Transient
## 19824 D D No Deposit Transient
## 19825 E E No Deposit Transient
## 19826 D A No Deposit Transient
## 19827 E E No Deposit Transient
## 19828 F F No Deposit Transient
## 19829 E E No Deposit Transient
## 19830 E E No Deposit Transient
## 19831 E E No Deposit Transient
## 19832 D D No Deposit Transient
## 19833 A D No Deposit Transient
## 19834 A A No Deposit Transient
## 19835 D D No Deposit Transient
## 19836 A A No Deposit Transient
## 19837 D D No Deposit Transient
## 19838 A A No Deposit Transient
## 19839 A A No Deposit Transient
## 19840 A D No Deposit Transient
## 19841 D D No Deposit Group
## 19842 E F No Deposit Transient
## 19843 A A No Deposit Transient
## 19844 A D No Deposit Transient
## 19845 A D No Deposit Transient
## 19846 A E No Deposit Transient
## 19847 A E No Deposit Transient
## 19848 A D No Deposit Transient
## 19849 A D No Deposit Transient
## 19850 A D No Deposit Transient
## 19851 A D No Deposit Transient
## 19852 A A No Deposit Transient
## 19853 A D No Deposit Transient
## 19854 A D No Deposit Transient
## 19855 A D No Deposit Transient
## 19856 D F No Deposit Transient
## 19857 A A No Deposit Group
## 19858 A D No Deposit Transient
## 19859 D D No Deposit Transient
## 19860 E E No Deposit Transient
## 19861 A A No Deposit Transient
## 19862 E E No Deposit Transient
## 19863 A D No Deposit Transient
## 19864 E E No Deposit Transient
## 19865 A A No Deposit Transient
## 19866 E E No Deposit Transient
## 19867 A D No Deposit Transient
## 19868 A D No Deposit Group
## 19869 A E No Deposit Transient
## 19870 A A No Deposit Transient-Party
## 19871 A A No Deposit Transient
## 19872 A D No Deposit Transient
## 19873 A D No Deposit Transient
## 19874 A D No Deposit Transient
## 19875 A D No Deposit Transient
## 19876 A A No Deposit Transient
## 19877 A A No Deposit Transient
## 19878 A A No Deposit Transient
## 19879 A A No Deposit Transient-Party
## 19880 A D No Deposit Transient
## 19881 A D No Deposit Transient
## 19882 A D No Deposit Transient
## 19883 A D No Deposit Transient
## 19884 A D No Deposit Transient
## 19885 A D No Deposit Transient
## 19886 A D No Deposit Transient
## 19887 A D No Deposit Transient
## 19888 A A No Deposit Transient-Party
## 19889 A A No Deposit Transient-Party
## 19890 A A No Deposit Transient-Party
## 19891 A A No Deposit Transient-Party
## 19892 A A No Deposit Transient-Party
## 19893 A A No Deposit Transient-Party
## 19894 A A No Deposit Transient-Party
## 19895 A A No Deposit Transient-Party
## 19896 A A No Deposit Transient
## 19897 A D No Deposit Transient
## 19898 A A No Deposit Transient-Party
## 19899 A D No Deposit Transient
## 19900 E E No Deposit Transient
## 19901 A A No Deposit Transient
## 19902 A A No Deposit Transient
## 19903 A D No Deposit Transient
## 19904 A A No Deposit Transient
## 19905 A A No Deposit Transient-Party
## 19906 D D Non Refund Transient-Party
## 19907 A A No Deposit Transient
## 19908 A A No Deposit Transient-Party
## 19909 A D No Deposit Transient
## 19910 A D No Deposit Transient
## 19911 A A No Deposit Transient-Party
## 19912 A C No Deposit Transient
## 19913 A A No Deposit Transient
## 19914 E E No Deposit Transient
## 19915 E F No Deposit Transient
## 19916 D D No Deposit Transient
## 19917 G G No Deposit Transient
## 19918 C C No Deposit Transient
## 19919 A A No Deposit Transient
## 19920 A D No Deposit Transient
## 19921 A D No Deposit Transient
## 19922 D D No Deposit Transient
## 19923 A A No Deposit Transient
## 19924 E E No Deposit Transient
## 19925 E E No Deposit Transient
## 19926 A D No Deposit Transient
## 19927 F F No Deposit Transient
## 19928 F F No Deposit Transient
## 19929 D D No Deposit Transient
## 19930 A D No Deposit Transient
## 19931 A D No Deposit Transient
## 19932 A A No Deposit Transient
## 19933 A D No Deposit Transient
## 19934 A D No Deposit Transient
## 19935 G G No Deposit Transient
## 19936 E E No Deposit Transient
## 19937 E E No Deposit Transient
## 19938 E E No Deposit Transient
## 19939 A D No Deposit Transient
## 19940 D D No Deposit Transient
## 19941 D D No Deposit Transient
## 19942 A D No Deposit Transient
## 19943 A D No Deposit Transient
## 19944 D D No Deposit Transient
## 19945 A D No Deposit Transient
## 19946 D D No Deposit Transient
## 19947 A D No Deposit Transient
## 19948 A A No Deposit Transient
## 19949 A A No Deposit Transient
## 19950 A A No Deposit Transient
## 19951 A A No Deposit Transient
## 19952 A D No Deposit Transient
## 19953 A D No Deposit Transient
## 19954 E E No Deposit Transient
## 19955 A A No Deposit Transient
## 19956 A D No Deposit Transient
## 19957 A D No Deposit Transient
## 19958 A D No Deposit Transient
## 19959 D D No Deposit Transient
## 19960 A D No Deposit Transient
## 19961 E E No Deposit Transient
## 19962 E E No Deposit Transient
## 19963 E E No Deposit Transient
## 19964 E E No Deposit Transient
## 19965 A D No Deposit Transient
## 19966 E E No Deposit Transient
## 19967 A A No Deposit Transient
## 19968 A D No Deposit Transient
## 19969 A D No Deposit Transient
## 19970 F F No Deposit Transient
## 19971 D D No Deposit Transient
## 19972 D D No Deposit Transient
## 19973 D D No Deposit Transient
## 19974 A A No Deposit Transient
## 19975 A D No Deposit Transient
## 19976 A A No Deposit Transient
## 19977 A A No Deposit Transient-Party
## 19978 A A No Deposit Transient
## 19979 A D No Deposit Transient
## 19980 A A No Deposit Transient
## 19981 A A No Deposit Transient
## 19982 A A No Deposit Group
## 19983 A A No Deposit Transient
## 19984 A A No Deposit Transient
## 19985 A A No Deposit Transient
## 19986 A A No Deposit Transient
## 19987 A A No Deposit Transient
## 19988 A A No Deposit Transient
## 19989 A E No Deposit Transient
## 19990 D D No Deposit Transient
## 19991 E E No Deposit Transient
## 19992 A D No Deposit Transient
## 19993 A D No Deposit Transient
## 19994 A D No Deposit Transient
## 19995 E F No Deposit Transient
## 19996 A E No Deposit Transient
## 19997 A D No Deposit Transient
## 19998 A D No Deposit Transient
## 19999 A A No Deposit Transient
## 20000 A A No Deposit Transient
## 20001 A A No Deposit Transient
## 20002 A A No Deposit Transient
## 20003 A D No Deposit Transient
## 20004 A D No Deposit Transient
## 20005 A D No Deposit Transient
## 20006 D D No Deposit Transient-Party
## 20007 A D No Deposit Transient
## 20008 A A No Deposit Transient
## 20009 A A No Deposit Transient
## 20010 A A No Deposit Transient
## 20011 A D No Deposit Transient
## 20012 A A No Deposit Transient
## 20013 A D No Deposit Transient
## 20014 A A No Deposit Transient
## 20015 A D No Deposit Transient
## 20016 A D No Deposit Transient
## 20017 E E No Deposit Transient
## 20018 A D No Deposit Transient
## 20019 A E No Deposit Transient
## 20020 A F No Deposit Transient
## 20021 A D No Deposit Transient
## 20022 D D No Deposit Transient
## 20023 A D No Deposit Transient
## 20024 A D No Deposit Transient
## 20025 D D No Deposit Transient-Party
## 20026 D D No Deposit Transient-Party
## 20027 A D No Deposit Transient
## 20028 D D No Deposit Transient
## 20029 E E No Deposit Transient
## 20030 A D No Deposit Transient
## 20031 A D No Deposit Transient
## 20032 A D No Deposit Transient
## 20033 D D No Deposit Transient
## 20034 A A No Deposit Transient
## 20035 E E No Deposit Transient
## 20036 A D No Deposit Transient
## 20037 A A No Deposit Transient
## 20038 A A No Deposit Transient
## 20039 A D No Deposit Transient
## 20040 A D No Deposit Transient
## 20041 D D No Deposit Transient
## 20042 A A No Deposit Transient
## 20043 A D No Deposit Transient
## 20044 A D No Deposit Transient
## 20045 A A No Deposit Transient
## 20046 A D No Deposit Transient
## 20047 A D No Deposit Transient
## 20048 A E No Deposit Transient
## 20049 A D No Deposit Transient
## 20050 A D No Deposit Transient
## 20051 A D No Deposit Transient
## 20052 A D No Deposit Transient
## 20053 A D No Deposit Transient
## 20054 A D No Deposit Transient
## 20055 A A No Deposit Transient-Party
## 20056 A D No Deposit Transient
## 20057 D D No Deposit Transient
## 20058 A A No Deposit Transient-Party
## 20059 A D No Deposit Transient
## 20060 A D No Deposit Transient
## 20061 F F No Deposit Transient
## 20062 A D No Deposit Transient
## 20063 A D No Deposit Transient
## 20064 A A No Deposit Transient
## 20065 A D No Deposit Transient
## 20066 A D No Deposit Transient
## 20067 G G No Deposit Transient
## 20068 D D No Deposit Transient
## 20069 A D No Deposit Transient
## 20070 D D No Deposit Transient
## 20071 A D No Deposit Transient
## 20072 G G No Deposit Transient
## 20073 D D No Deposit Transient
## 20074 G G No Deposit Transient
## 20075 A A No Deposit Transient
## 20076 A D No Deposit Transient
## 20077 A D No Deposit Transient
## 20078 A D No Deposit Transient
## 20079 E E No Deposit Transient
## 20080 A D No Deposit Transient
## 20081 A D No Deposit Transient
## 20082 E E No Deposit Transient
## 20083 E E No Deposit Transient
## 20084 D D No Deposit Transient
## 20085 A D No Deposit Transient
## 20086 A D No Deposit Transient
## 20087 A D No Deposit Transient
## 20088 A D No Deposit Group
## 20089 A D No Deposit Transient
## 20090 A D No Deposit Transient
## 20091 A D No Deposit Transient
## 20092 A A No Deposit Transient
## 20093 A D No Deposit Transient
## 20094 A E No Deposit Transient
## 20095 A D No Deposit Group
## 20096 A D No Deposit Transient
## 20097 A D No Deposit Transient
## 20098 A A No Deposit Transient
## 20099 A C No Deposit Transient-Party
## 20100 A C No Deposit Transient-Party
## 20101 A D No Deposit Transient
## 20102 A I No Deposit Transient
## 20103 A E No Deposit Transient
## 20104 A E No Deposit Transient
## 20105 E E No Deposit Transient
## 20106 A D No Deposit Transient
## 20107 A A No Deposit Transient
## 20108 D D No Deposit Transient
## 20109 A A No Deposit Transient
## 20110 E F No Deposit Transient
## 20111 D I No Deposit Transient
## 20112 D D No Deposit Transient
## 20113 D D No Deposit Transient
## 20114 G G No Deposit Transient
## 20115 A A No Deposit Transient
## 20116 E G No Deposit Transient
## 20117 A D No Deposit Transient
## 20118 D D No Deposit Transient
## 20119 E E No Deposit Transient
## 20120 D D No Deposit Transient
## 20121 G G No Deposit Transient
## 20122 D D No Deposit Transient
## 20123 E E No Deposit Transient
## 20124 D E No Deposit Transient
## 20125 A A No Deposit Transient
## 20126 A D No Deposit Transient
## 20127 E E No Deposit Transient
## 20128 D D No Deposit Transient
## 20129 A A No Deposit Transient
## 20130 A D No Deposit Transient
## 20131 A D No Deposit Transient
## 20132 A D No Deposit Transient
## 20133 A A No Deposit Transient
## 20134 H H No Deposit Transient
## 20135 A D No Deposit Transient
## 20136 A D No Deposit Transient
## 20137 A A No Deposit Transient
## 20138 F F No Deposit Transient
## 20139 G G No Deposit Transient
## 20140 A D No Deposit Transient
## 20141 A D No Deposit Transient
## 20142 A A No Deposit Transient
## 20143 A A No Deposit Transient
## 20144 A A No Deposit Transient
## 20145 E E No Deposit Transient
## 20146 A E No Deposit Transient
## 20147 A A No Deposit Transient
## 20148 A E No Deposit Transient
## 20149 A D No Deposit Transient
## 20150 A D No Deposit Transient
## 20151 A D No Deposit Transient
## 20152 E E No Deposit Transient
## 20153 A D No Deposit Transient
## 20154 A A No Deposit Transient
## 20155 A D No Deposit Transient
## 20156 A I No Deposit Transient-Party
## 20157 A D No Deposit Transient
## 20158 A D No Deposit Transient
## 20159 A D No Deposit Transient
## 20160 E I No Deposit Transient
## 20161 E E No Deposit Transient
## 20162 H H No Deposit Transient
## 20163 A A No Deposit Transient
## 20164 A D No Deposit Transient
## 20165 A D No Deposit Transient
## 20166 G G No Deposit Transient
## 20167 G G No Deposit Transient
## 20168 D D No Deposit Transient
## 20169 A A No Deposit Transient
## 20170 A D No Deposit Transient
## 20171 A D No Deposit Transient
## 20172 A D No Deposit Transient
## 20173 A D No Deposit Transient
## 20174 A E No Deposit Transient
## 20175 A D No Deposit Transient
## 20176 A D No Deposit Transient
## 20177 A D No Deposit Transient
## 20178 A D No Deposit Transient
## 20179 A A No Deposit Transient
## 20180 A A No Deposit Transient
## 20181 A D No Deposit Transient
## 20182 A A No Deposit Transient
## 20183 A D No Deposit Transient
## 20184 A D No Deposit Transient
## 20185 A D No Deposit Transient
## 20186 A A No Deposit Transient
## 20187 A A No Deposit Transient
## 20188 A A No Deposit Transient
## 20189 D D No Deposit Transient
## 20190 A D No Deposit Transient
## 20191 A D No Deposit Transient-Party
## 20192 A A No Deposit Transient
## 20193 A A No Deposit Transient
## 20194 A D No Deposit Transient-Party
## 20195 A D No Deposit Group
## 20196 A D No Deposit Transient-Party
## 20197 E I No Deposit Transient
## 20198 G G No Deposit Transient
## 20199 A A No Deposit Transient
## 20200 A A No Deposit Transient
## 20201 A A No Deposit Transient
## 20202 A D No Deposit Transient
## 20203 A D No Deposit Transient
## 20204 A E No Deposit Transient
## 20205 A D No Deposit Transient
## 20206 E E No Deposit Transient
## 20207 E E No Deposit Transient
## 20208 A A No Deposit Transient
## 20209 E E No Deposit Transient
## 20210 D D No Deposit Transient
## 20211 A D No Deposit Transient
## 20212 A D No Deposit Transient
## 20213 A D No Deposit Transient
## 20214 A A No Deposit Transient
## 20215 A D No Deposit Transient
## 20216 A D No Deposit Transient
## 20217 A D No Deposit Transient
## 20218 A D No Deposit Transient
## 20219 F F No Deposit Transient
## 20220 F F No Deposit Transient-Party
## 20221 G G No Deposit Group
## 20222 A D No Deposit Transient
## 20223 A A No Deposit Transient
## 20224 A D No Deposit Transient
## 20225 A D No Deposit Transient
## 20226 A D No Deposit Transient
## 20227 A E No Deposit Transient
## 20228 A D No Deposit Transient
## 20229 A A No Deposit Transient
## 20230 A D No Deposit Transient-Party
## 20231 A D No Deposit Transient-Party
## 20232 A D No Deposit Transient
## 20233 A F No Deposit Transient
## 20234 A C No Deposit Transient
## 20235 A D No Deposit Transient
## 20236 A D No Deposit Transient
## 20237 A D No Deposit Transient-Party
## 20238 A D No Deposit Transient-Party
## 20239 D D No Deposit Transient
## 20240 A D No Deposit Transient
## 20241 A D No Deposit Transient-Party
## 20242 A D No Deposit Transient-Party
## 20243 D D No Deposit Transient
## 20244 A D No Deposit Transient
## 20245 A D No Deposit Transient
## 20246 D D No Deposit Transient
## 20247 A A No Deposit Transient
## 20248 A D No Deposit Group
## 20249 D D No Deposit Transient
## 20250 A D No Deposit Transient
## 20251 A D No Deposit Transient
## 20252 A A No Deposit Transient
## 20253 A D No Deposit Transient
## 20254 A D No Deposit Transient
## 20255 A D No Deposit Transient
## 20256 A A No Deposit Transient
## 20257 A A No Deposit Transient
## 20258 A D No Deposit Transient-Party
## 20259 A A No Deposit Transient-Party
## 20260 D F No Deposit Transient
## 20261 E E No Deposit Transient
## 20262 E E No Deposit Transient
## 20263 A D No Deposit Transient
## 20264 A D No Deposit Transient
## 20265 A D No Deposit Transient-Party
## 20266 A A No Deposit Transient-Party
## 20267 A D No Deposit Transient
## 20268 A D No Deposit Transient
## 20269 A D No Deposit Transient-Party
## 20270 E E No Deposit Transient
## 20271 A A No Deposit Transient
## 20272 A A No Deposit Transient
## 20273 E E No Deposit Transient
## 20274 D D No Deposit Transient
## 20275 A A No Deposit Transient
## 20276 D D No Deposit Transient
## 20277 C C No Deposit Transient
## 20278 A D No Deposit Group
## 20279 A A No Deposit Transient
## 20280 A E No Deposit Transient
## 20281 D D No Deposit Transient
## 20282 D D No Deposit Transient
## 20283 A D No Deposit Transient
## 20284 A D No Deposit Transient
## 20285 A A No Deposit Transient
## 20286 A D No Deposit Transient-Party
## 20287 A D No Deposit Transient
## 20288 A D No Deposit Transient
## 20289 G G No Deposit Transient
## 20290 A D No Deposit Transient-Party
## 20291 A D No Deposit Transient-Party
## 20292 A D No Deposit Transient
## 20293 G G No Deposit Transient
## 20294 A A No Deposit Group
## 20295 A D No Deposit Transient
## 20296 A A No Deposit Transient
## 20297 A A No Deposit Transient
## 20298 A A No Deposit Transient
## 20299 A D No Deposit Transient
## 20300 A D No Deposit Transient
## 20301 A D No Deposit Transient
## 20302 A D No Deposit Transient
## 20303 A D No Deposit Transient
## 20304 E E No Deposit Transient
## 20305 D D No Deposit Transient
## 20306 A D No Deposit Transient
## 20307 A D No Deposit Transient
## 20308 A D No Deposit Transient
## 20309 A A No Deposit Transient-Party
## 20310 A A No Deposit Transient-Party
## 20311 A A No Deposit Transient
## 20312 A A No Deposit Transient-Party
## 20313 A G No Deposit Transient
## 20314 A A No Deposit Transient
## 20315 A D No Deposit Transient
## 20316 D D No Deposit Transient
## 20317 A D No Deposit Transient
## 20318 A D No Deposit Transient
## 20319 A D No Deposit Transient
## 20320 A D No Deposit Transient
## 20321 D D No Deposit Transient
## 20322 A D No Deposit Transient
## 20323 A D No Deposit Transient
## 20324 A D No Deposit Transient
## 20325 A D No Deposit Transient
## 20326 A D No Deposit Transient
## 20327 A D No Deposit Transient
## 20328 A E No Deposit Transient
## 20329 D D No Deposit Transient
## 20330 F F No Deposit Transient
## 20331 A D No Deposit Transient
## 20332 A A No Deposit Transient
## 20333 A D No Deposit Transient
## 20334 A A No Deposit Transient
## 20335 A A No Deposit Transient
## 20336 H H No Deposit Transient
## 20337 A E No Deposit Transient
## 20338 E I No Deposit Transient
## 20339 A A No Deposit Transient
## 20340 A A No Deposit Transient
## 20341 A D No Deposit Transient
## 20342 D D No Deposit Transient
## 20343 A D No Deposit Transient
## 20344 E E No Deposit Transient
## 20345 E E No Deposit Transient
## 20346 E E No Deposit Transient
## 20347 F F No Deposit Transient
## 20348 D D No Deposit Transient
## 20349 E E No Deposit Transient
## 20350 A D No Deposit Transient
## 20351 A D No Deposit Transient
## 20352 A E No Deposit Transient
## 20353 A D No Deposit Transient
## 20354 A D No Deposit Transient
## 20355 A A No Deposit Transient
## 20356 A D No Deposit Transient
## 20357 A A No Deposit Group
## 20358 A F No Deposit Transient
## 20359 A A No Deposit Transient
## 20360 A C No Deposit Transient
## 20361 A D No Deposit Transient
## 20362 A I No Deposit Transient-Party
## 20363 A I No Deposit Transient-Party
## 20364 A D No Deposit Transient
## 20365 A A No Deposit Transient
## 20366 A D No Deposit Transient
## 20367 A C No Deposit Transient
## 20368 A D No Deposit Transient
## 20369 A A No Deposit Transient
## 20370 A D No Deposit Transient
## 20371 A D No Deposit Transient
## 20372 A D No Deposit Transient-Party
## 20373 A D No Deposit Transient
## 20374 A D No Deposit Transient
## 20375 A D No Deposit Transient
## 20376 A D No Deposit Transient
## 20377 A D No Deposit Transient
## 20378 A D No Deposit Transient
## 20379 A A No Deposit Transient
## 20380 A D No Deposit Transient
## 20381 A D No Deposit Transient
## 20382 A D No Deposit Group
## 20383 A A No Deposit Transient
## 20384 A D No Deposit Transient
## 20385 A D No Deposit Transient
## 20386 A D No Deposit Transient
## 20387 A D No Deposit Transient
## 20388 A E No Deposit Transient
## 20389 F F No Deposit Transient
## 20390 E E No Deposit Transient
## 20391 A D No Deposit Transient
## 20392 A D No Deposit Transient
## 20393 H H No Deposit Transient
## 20394 C C No Deposit Transient
## 20395 C C No Deposit Transient
## 20396 A D No Deposit Transient
## 20397 A D No Deposit Transient
## 20398 E F No Deposit Transient
## 20399 A D No Deposit Transient
## 20400 A D No Deposit Transient
## 20401 A D No Deposit Transient
## 20402 A D No Deposit Transient
## 20403 D D No Deposit Transient
## 20404 A A No Deposit Transient
## 20405 A D No Deposit Transient
## 20406 A D No Deposit Transient
## 20407 E E No Deposit Transient
## 20408 A D No Deposit Transient
## 20409 A D No Deposit Transient
## 20410 D D No Deposit Transient
## 20411 D D No Deposit Transient
## 20412 A E No Deposit Transient
## 20413 A D No Deposit Transient
## 20414 A D No Deposit Transient
## 20415 A D No Deposit Transient
## 20416 A D No Deposit Transient
## 20417 A A No Deposit Transient
## 20418 A A No Deposit Transient
## 20419 A D No Deposit Transient
## 20420 A D No Deposit Transient
## 20421 A A No Deposit Transient
## 20422 A G No Deposit Group
## 20423 A A No Deposit Transient
## 20424 A A No Deposit Transient
## 20425 A A No Deposit Transient
## 20426 A A No Deposit Transient
## 20427 A D No Deposit Transient
## 20428 A D No Deposit Transient
## 20429 A D No Deposit Transient
## 20430 A A No Deposit Transient
## 20431 A A No Deposit Transient
## 20432 A D No Deposit Transient
## 20433 A A No Deposit Transient
## 20434 A A No Deposit Transient
## 20435 A D No Deposit Transient
## 20436 A F No Deposit Transient
## 20437 A D No Deposit Transient
## 20438 A D No Deposit Transient
## 20439 A D No Deposit Transient
## 20440 A D No Deposit Transient
## 20441 A D No Deposit Transient
## 20442 F F No Deposit Transient
## 20443 A D No Deposit Transient
## 20444 E E No Deposit Transient
## 20445 G G No Deposit Transient
## 20446 F F No Deposit Transient
## 20447 F F No Deposit Transient
## 20448 E E No Deposit Transient
## 20449 A D No Deposit Transient
## 20450 A D No Deposit Transient
## 20451 G G No Deposit Transient
## 20452 G G No Deposit Transient
## 20453 C C No Deposit Transient
## 20454 A F No Deposit Transient
## 20455 A D No Deposit Transient
## 20456 A D No Deposit Transient
## 20457 A I No Deposit Transient-Party
## 20458 A I No Deposit Transient-Party
## 20459 E E No Deposit Transient
## 20460 A A No Deposit Transient
## 20461 A I No Deposit Transient
## 20462 A A No Deposit Transient
## 20463 A A No Deposit Transient
## 20464 D D No Deposit Transient
## 20465 D D No Deposit Transient
## 20466 A F No Deposit Transient
## 20467 E E No Deposit Transient
## 20468 E D No Deposit Transient
## 20469 A D No Deposit Transient
## 20470 A A No Deposit Transient
## 20471 E E No Deposit Transient
## 20472 E E No Deposit Transient
## 20473 A D No Deposit Transient
## 20474 A D No Deposit Transient
## 20475 A D No Deposit Transient
## 20476 A D No Deposit Transient
## 20477 D D No Deposit Transient
## 20478 D D No Deposit Transient
## 20479 A D No Deposit Transient
## 20480 A D No Deposit Transient
## 20481 D D No Deposit Transient
## 20482 H H No Deposit Transient
## 20483 E E No Deposit Contract
## 20484 F F No Deposit Transient
## 20485 A D No Deposit Transient
## 20486 H H No Deposit Transient
## 20487 A D No Deposit Transient
## 20488 F F No Deposit Transient
## 20489 F F No Deposit Transient
## 20490 A D No Deposit Transient
## 20491 C C No Deposit Transient
## 20492 A D No Deposit Transient
## 20493 A D No Deposit Transient
## 20494 G G No Deposit Transient
## 20495 D D No Deposit Transient
## 20496 A D No Deposit Transient
## 20497 A D No Deposit Transient
## 20498 A D No Deposit Transient
## 20499 A D No Deposit Transient
## 20500 A D No Deposit Transient
## 20501 G G No Deposit Transient
## 20502 A D No Deposit Transient
## 20503 A E No Deposit Transient
## 20504 D E No Deposit Transient
## 20505 A A No Deposit Transient
## 20506 A D No Deposit Transient
## 20507 A D No Deposit Transient
## 20508 E E No Deposit Transient
## 20509 A D No Deposit Transient
## 20510 A A No Deposit Transient
## 20511 A D No Deposit Transient
## 20512 E E No Deposit Transient
## 20513 E E No Deposit Transient
## 20514 A A No Deposit Transient
## 20515 A D No Deposit Transient
## 20516 E E No Deposit Transient
## 20517 A F No Deposit Transient
## 20518 E E No Deposit Transient
## 20519 A A No Deposit Transient
## 20520 E E No Deposit Transient
## 20521 E E No Deposit Transient
## 20522 A D No Deposit Transient
## 20523 E E No Deposit Transient
## 20524 A E No Deposit Transient
## 20525 D D No Deposit Transient
## 20526 A A No Deposit Transient
## 20527 A C No Deposit Transient
## 20528 A C No Deposit Transient
## 20529 D D No Deposit Transient
## 20530 D D No Deposit Transient
## 20531 A D No Deposit Transient
## 20532 G G No Deposit Transient
## 20533 F F No Deposit Transient
## 20534 G G No Deposit Transient
## 20535 D D No Deposit Transient
## 20536 A D No Deposit Transient
## 20537 A A No Deposit Transient
## 20538 D D No Deposit Transient
## 20539 A A No Deposit Transient
## 20540 A D No Deposit Transient
## 20541 A D No Deposit Transient
## 20542 A D No Deposit Transient
## 20543 G G No Deposit Transient
## 20544 A D No Deposit Transient
## 20545 A D No Deposit Transient
## 20546 A D No Deposit Transient
## 20547 A D No Deposit Transient
## 20548 A C No Deposit Transient
## 20549 A A No Deposit Transient
## 20550 A D No Deposit Transient
## 20551 A D No Deposit Transient
## 20552 A A No Deposit Group
## 20553 A D No Deposit Transient
## 20554 A D No Deposit Transient
## 20555 A D No Deposit Transient
## 20556 A A No Deposit Transient
## 20557 A D No Deposit Transient
## 20558 A A No Deposit Transient
## 20559 A A No Deposit Transient
## 20560 E E No Deposit Transient
## 20561 A D No Deposit Transient
## 20562 A A No Deposit Transient
## 20563 A A No Deposit Transient
## 20564 A D No Deposit Transient
## 20565 F F No Deposit Transient
## 20566 F F No Deposit Transient
## 20567 G G No Deposit Transient
## 20568 A D No Deposit Transient
## 20569 A D No Deposit Transient
## 20570 A D No Deposit Transient
## 20571 A D No Deposit Transient
## 20572 A D No Deposit Transient
## 20573 A D No Deposit Transient
## 20574 A A No Deposit Transient
## 20575 D E No Deposit Group
## 20576 A D No Deposit Transient
## 20577 A D No Deposit Transient
## 20578 A D No Deposit Transient
## 20579 A D No Deposit Transient
## 20580 A A No Deposit Transient
## 20581 E E No Deposit Transient
## 20582 A A No Deposit Transient
## 20583 A A No Deposit Transient
## 20584 D D No Deposit Transient
## 20585 A A No Deposit Transient
## 20586 A D No Deposit Transient
## 20587 A D No Deposit Transient
## 20588 D D No Deposit Transient
## 20589 A A No Deposit Transient
## 20590 A D No Deposit Transient
## 20591 A A No Deposit Transient
## 20592 A D No Deposit Transient
## 20593 A D No Deposit Transient
## 20594 A A No Deposit Transient
## 20595 E G No Deposit Transient
## 20596 F F No Deposit Transient
## 20597 D D No Deposit Transient
## 20598 A D No Deposit Transient
## 20599 A A No Deposit Transient
## 20600 A A No Deposit Transient
## 20601 D D No Deposit Transient-Party
## 20602 A A No Deposit Transient
## 20603 A A No Deposit Transient
## 20604 A D No Deposit Transient
## 20605 A D No Deposit Transient
## 20606 A D No Deposit Transient
## 20607 A A No Deposit Transient
## 20608 A A No Deposit Transient
## 20609 A D No Deposit Transient
## 20610 A D No Deposit Transient
## 20611 A D No Deposit Transient
## 20612 A D No Deposit Transient
## 20613 A D No Deposit Transient
## 20614 A D No Deposit Transient
## 20615 A E No Deposit Transient
## 20616 A D No Deposit Transient
## 20617 A D No Deposit Transient
## 20618 A D No Deposit Transient
## 20619 A D No Deposit Transient
## 20620 A D No Deposit Transient
## 20621 D D No Deposit Transient
## 20622 A D No Deposit Transient
## 20623 A A No Deposit Transient
## 20624 A A No Deposit Transient
## 20625 A A No Deposit Transient
## 20626 E E No Deposit Transient
## 20627 E E No Deposit Transient
## 20628 E E No Deposit Transient
## 20629 A A No Deposit Transient
## 20630 A A No Deposit Transient
## 20631 A D No Deposit Transient
## 20632 A D No Deposit Transient
## 20633 A A No Deposit Transient
## 20634 A A No Deposit Transient
## 20635 A D No Deposit Transient
## 20636 A D No Deposit Transient
## 20637 D D No Deposit Transient
## 20638 A A No Deposit Transient
## 20639 E E No Deposit Transient
## 20640 A D No Deposit Transient
## 20641 A A No Deposit Transient-Party
## 20642 A A No Deposit Transient-Party
## 20643 A A No Deposit Group
## 20644 E D No Deposit Transient
## 20645 A D No Deposit Transient
## 20646 A D No Deposit Transient
## 20647 A A No Deposit Transient
## 20648 A A No Deposit Transient-Party
## 20649 A A No Deposit Transient
## 20650 D F No Deposit Transient
## 20651 A A No Deposit Transient
## 20652 E E No Deposit Transient
## 20653 A A No Deposit Transient-Party
## 20654 A D No Deposit Transient
## 20655 A D No Deposit Transient
## 20656 A D No Deposit Transient
## 20657 G G No Deposit Transient
## 20658 G G No Deposit Transient
## 20659 A A No Deposit Transient
## 20660 A E No Deposit Transient
## 20661 A A No Deposit Transient
## 20662 D E No Deposit Transient
## 20663 A A No Deposit Transient
## 20664 A C No Deposit Transient
## 20665 A D No Deposit Contract
## 20666 A A No Deposit Transient
## 20667 A A No Deposit Transient
## 20668 E E No Deposit Transient
## 20669 E E No Deposit Transient
## 20670 E E No Deposit Transient
## 20671 E F No Deposit Transient-Party
## 20672 E F No Deposit Transient-Party
## 20673 D D No Deposit Transient
## 20674 A A No Deposit Transient
## 20675 G G No Deposit Transient
## 20676 A D No Deposit Transient
## 20677 D E No Deposit Transient
## 20678 A D No Deposit Transient
## 20679 A A No Deposit Transient
## 20680 G G No Deposit Transient-Party
## 20681 A C No Deposit Transient-Party
## 20682 A E No Deposit Transient
## 20683 A A No Deposit Transient
## 20684 A D No Deposit Transient
## 20685 F F No Deposit Transient
## 20686 A A No Deposit Transient
## 20687 F F No Deposit Transient
## 20688 A A No Deposit Transient
## 20689 A A No Deposit Group
## 20690 A D No Deposit Transient
## 20691 A E No Deposit Transient
## 20692 D D No Deposit Transient
## 20693 A A No Deposit Transient
## 20694 A E No Deposit Transient
## 20695 A A No Deposit Transient
## 20696 D A No Deposit Transient
## 20697 E E No Deposit Transient
## 20698 A D No Deposit Transient
## 20699 E E No Deposit Transient-Party
## 20700 D D No Deposit Group
## 20701 A D No Deposit Transient
## 20702 A D No Deposit Transient
## 20703 A A No Deposit Transient
## 20704 A A No Deposit Transient
## 20705 A A No Deposit Transient-Party
## 20706 A C No Deposit Transient
## 20707 A A No Deposit Transient
## 20708 D D No Deposit Group
## 20709 A D No Deposit Transient
## 20710 A A No Deposit Contract
## 20711 A A No Deposit Transient-Party
## 20712 A A No Deposit Transient
## 20713 E E No Deposit Transient
## 20714 A D No Deposit Group
## 20715 A A No Deposit Transient
## 20716 C C No Deposit Transient
## 20717 E F No Deposit Transient
## 20718 A D No Deposit Transient
## 20719 A D No Deposit Transient
## 20720 E F No Deposit Transient
## 20721 A A No Deposit Transient
## 20722 E E No Deposit Transient
## 20723 A E No Deposit Transient
## 20724 A A No Deposit Transient-Party
## 20725 A A No Deposit Transient-Party
## 20726 D D No Deposit Group
## 20727 D D No Deposit Transient
## 20728 A A No Deposit Transient
## 20729 D D No Deposit Transient-Party
## 20730 D D No Deposit Transient
## 20731 D D No Deposit Transient-Party
## 20732 A A No Deposit Transient
## 20733 A E No Deposit Transient
## 20734 A E No Deposit Transient
## 20735 D D No Deposit Transient-Party
## 20736 A A No Deposit Transient
## 20737 D E No Deposit Transient-Party
## 20738 D E No Deposit Transient-Party
## 20739 D D No Deposit Transient-Party
## 20740 D D No Deposit Transient-Party
## 20741 D D No Deposit Transient-Party
## 20742 D D No Deposit Transient-Party
## 20743 A D No Deposit Transient
## 20744 D D No Deposit Transient-Party
## 20745 D D No Deposit Transient-Party
## 20746 A A No Deposit Transient
## 20747 E E No Deposit Transient
## 20748 D D No Deposit Transient-Party
## 20749 A D No Deposit Transient
## 20750 D D No Deposit Transient-Party
## 20751 D D No Deposit Transient-Party
## 20752 E E No Deposit Transient-Party
## 20753 D D No Deposit Transient-Party
## 20754 A D No Deposit Transient
## 20755 A A No Deposit Transient
## 20756 D D No Deposit Transient
## 20757 E E No Deposit Transient
## 20758 G G No Deposit Transient
## 20759 A A No Deposit Transient
## 20760 G G No Deposit Transient
## 20761 A A No Deposit Transient-Party
## 20762 A D No Deposit Transient
## 20763 A A No Deposit Transient-Party
## 20764 A A No Deposit Transient
## 20765 A A No Deposit Transient
## 20766 A A No Deposit Transient
## 20767 A A No Deposit Transient
## 20768 D D No Deposit Transient
## 20769 H H No Deposit Transient
## 20770 A A No Deposit Transient
## 20771 A D No Deposit Transient
## 20772 H H No Deposit Transient
## 20773 A D No Deposit Transient
## 20774 A D No Deposit Transient
## 20775 A A No Deposit Transient
## 20776 A A No Deposit Transient
## 20777 A A No Deposit Transient
## 20778 A D No Deposit Transient
## 20779 A A No Deposit Transient
## 20780 A I No Deposit Transient-Party
## 20781 D D No Deposit Transient-Party
## 20782 D D No Deposit Transient-Party
## 20783 D D No Deposit Transient
## 20784 A A No Deposit Transient
## 20785 A A No Deposit Transient
## 20786 A A No Deposit Transient-Party
## 20787 A A No Deposit Transient
## 20788 A A No Deposit Transient
## 20789 A A No Deposit Transient-Party
## 20790 A A No Deposit Transient
## 20791 D D No Deposit Group
## 20792 A A No Deposit Transient
## 20793 A A No Deposit Transient
## 20794 A A No Deposit Transient
## 20795 E E No Deposit Transient
## 20796 E E No Deposit Transient-Party
## 20797 D D No Deposit Transient
## 20798 A A No Deposit Transient
## 20799 H H No Deposit Transient-Party
## 20800 H G No Deposit Transient-Party
## 20801 A D No Deposit Transient
## 20802 A D No Deposit Transient-Party
## 20803 A D No Deposit Transient-Party
## 20804 E E No Deposit Transient
## 20805 A D No Deposit Transient
## 20806 A A No Deposit Transient
## 20807 G G No Deposit Transient
## 20808 A A No Deposit Transient
## 20809 A A No Deposit Transient
## 20810 A G No Deposit Transient
## 20811 G G No Deposit Transient
## 20812 A D No Deposit Transient-Party
## 20813 E E No Deposit Transient
## 20814 A D No Deposit Transient
## 20815 A A No Deposit Transient
## 20816 E F No Deposit Transient
## 20817 D D No Deposit Transient
## 20818 G G No Deposit Transient
## 20819 A A No Deposit Transient
## 20820 A A No Deposit Transient
## 20821 A C No Deposit Transient
## 20822 A A No Deposit Transient-Party
## 20823 A A No Deposit Transient-Party
## 20824 A A No Deposit Transient-Party
## 20825 A D No Deposit Transient
## 20826 A D No Deposit Transient
## 20827 A D No Deposit Transient
## 20828 D D No Deposit Transient
## 20829 A D No Deposit Transient
## 20830 A D No Deposit Transient
## 20831 A A No Deposit Transient
## 20832 A G No Deposit Transient
## 20833 A D No Deposit Transient
## 20834 A A No Deposit Transient
## 20835 A G No Deposit Transient
## 20836 A A No Deposit Contract
## 20837 E E No Deposit Transient
## 20838 E E No Deposit Transient
## 20839 D D No Deposit Transient
## 20840 A D No Deposit Transient
## 20841 D D No Deposit Transient
## 20842 A D No Deposit Group
## 20843 A A No Deposit Group
## 20844 A A No Deposit Group
## 20845 A D No Deposit Group
## 20846 A A No Deposit Group
## 20847 A E No Deposit Transient
## 20848 A D No Deposit Transient
## 20849 A D No Deposit Transient
## 20850 E E No Deposit Transient
## 20851 A A No Deposit Contract
## 20852 D D No Deposit Transient
## 20853 A D No Deposit Transient
## 20854 A D No Deposit Transient
## 20855 A D No Deposit Transient
## 20856 A A No Deposit Transient
## 20857 A D No Deposit Transient
## 20858 A A No Deposit Transient
## 20859 D D No Deposit Transient
## 20860 E E No Deposit Transient
## 20861 A A No Deposit Transient
## 20862 A A No Deposit Transient
## 20863 A D No Deposit Transient
## 20864 E E No Deposit Contract
## 20865 A D No Deposit Transient-Party
## 20866 A A No Deposit Transient
## 20867 A D No Deposit Transient-Party
## 20868 A D No Deposit Transient
## 20869 A D No Deposit Transient
## 20870 A D No Deposit Transient
## 20871 D D No Deposit Transient
## 20872 A A No Deposit Transient
## 20873 A D No Deposit Transient
## 20874 A D No Deposit Transient
## 20875 A C No Deposit Transient
## 20876 G G No Deposit Transient
## 20877 A A No Deposit Transient-Party
## 20878 E E No Deposit Transient
## 20879 E E No Deposit Transient
## 20880 A E No Deposit Transient
## 20881 D D No Deposit Transient
## 20882 A A No Deposit Transient-Party
## 20883 A A No Deposit Transient
## 20884 A A No Deposit Transient
## 20885 A A No Deposit Transient-Party
## 20886 A A No Deposit Transient
## 20887 D D No Deposit Transient
## 20888 G G No Deposit Transient
## 20889 A A No Deposit Transient
## 20890 E E No Deposit Transient
## 20891 A D No Deposit Transient
## 20892 A E No Deposit Transient
## 20893 E E No Deposit Transient
## 20894 A E No Deposit Transient
## 20895 A A No Deposit Transient
## 20896 A A No Deposit Transient
## 20897 A A No Deposit Transient-Party
## 20898 D D No Deposit Transient
## 20899 A A No Deposit Transient
## 20900 A D No Deposit Contract
## 20901 E F No Deposit Transient
## 20902 A E No Deposit Transient
## 20903 D D No Deposit Transient
## 20904 A A No Deposit Transient
## 20905 A A No Deposit Transient
## 20906 F F No Deposit Transient
## 20907 D D No Deposit Transient
## 20908 D D No Deposit Transient
## 20909 D D No Deposit Transient
## 20910 A E No Deposit Transient
## 20911 A D No Deposit Transient
## 20912 A A No Deposit Transient
## 20913 A D No Deposit Transient
## 20914 A D No Deposit Transient
## 20915 E E No Deposit Transient
## 20916 A A No Deposit Transient
## 20917 A A No Deposit Transient
## 20918 E E No Deposit Transient
## 20919 D D No Deposit Transient
## 20920 A A No Deposit Transient
## 20921 D D No Deposit Transient
## 20922 A D No Deposit Transient
## 20923 A D No Deposit Transient
## 20924 F F No Deposit Transient
## 20925 G G No Deposit Transient
## 20926 A A No Deposit Transient
## 20927 A A No Deposit Transient
## 20928 E E No Deposit Transient
## 20929 A A No Deposit Transient
## 20930 A D No Deposit Transient
## 20931 A D No Deposit Transient
## 20932 A D No Deposit Transient
## 20933 D D No Deposit Transient
## 20934 H H No Deposit Transient
## 20935 E F No Deposit Transient
## 20936 A D No Deposit Transient
## 20937 E E No Deposit Transient
## 20938 A A No Deposit Transient
## 20939 D D No Deposit Transient
## 20940 A C No Deposit Transient
## 20941 A A No Deposit Group
## 20942 A D No Deposit Transient
## 20943 E F No Deposit Transient
## 20944 E E No Deposit Transient
## 20945 E E No Deposit Transient
## 20946 F F No Deposit Transient
## 20947 D D No Deposit Transient
## 20948 E E No Deposit Transient
## 20949 E E No Deposit Transient
## 20950 A A No Deposit Transient
## 20951 A A No Deposit Transient
## 20952 A D No Deposit Transient
## 20953 A A No Deposit Transient
## 20954 E E No Deposit Transient
## 20955 E E No Deposit Transient
## 20956 D D No Deposit Transient
## 20957 A A No Deposit Transient
## 20958 A D No Deposit Transient
## 20959 D D No Deposit Transient
## 20960 A C No Deposit Transient
## 20961 D D No Deposit Transient
## 20962 A D No Deposit Transient
## 20963 D D No Deposit Transient
## 20964 A A No Deposit Transient
## 20965 D D No Deposit Transient
## 20966 D D No Deposit Transient
## 20967 A D No Deposit Transient
## 20968 A D No Deposit Transient
## 20969 H H No Deposit Transient
## 20970 D D No Deposit Transient
## 20971 A D No Deposit Transient
## 20972 A E No Deposit Transient
## 20973 A A No Deposit Transient
## 20974 A A No Deposit Transient
## 20975 A A No Deposit Transient
## 20976 A A No Deposit Transient
## 20977 A A No Deposit Transient
## 20978 A D No Deposit Transient
## 20979 A E No Deposit Transient
## 20980 A A No Deposit Transient
## 20981 E E No Deposit Transient
## 20982 D D No Deposit Transient
## 20983 A A No Deposit Transient
## 20984 A A No Deposit Transient
## 20985 D D No Deposit Transient
## 20986 D D No Deposit Transient
## 20987 D E No Deposit Transient
## 20988 A A No Deposit Transient
## 20989 A D No Deposit Transient
## 20990 D D No Deposit Transient
## 20991 E F No Deposit Transient
## 20992 A A No Deposit Transient
## 20993 E E No Deposit Transient
## 20994 A D No Deposit Transient
## 20995 E E No Deposit Transient
## 20996 A D No Deposit Transient
## 20997 E E No Deposit Transient
## 20998 D D No Deposit Transient
## 20999 D D No Deposit Transient
## 21000 A E No Deposit Transient
## 21001 A A No Deposit Transient
## 21002 A C No Deposit Transient
## 21003 A A No Deposit Transient
## 21004 A A No Deposit Transient
## 21005 D D No Deposit Transient
## 21006 H H No Deposit Transient
## 21007 E E No Deposit Transient
## 21008 A A No Deposit Transient
## 21009 A A No Deposit Transient
## 21010 G G No Deposit Transient
## 21011 E E No Deposit Transient
## 21012 A A No Deposit Transient
## 21013 D C No Deposit Transient
## 21014 A A No Deposit Transient
## 21015 A A No Deposit Transient
## 21016 E E No Deposit Transient
## 21017 A D No Deposit Transient
## 21018 F F No Deposit Transient
## 21019 D D No Deposit Transient
## 21020 D E No Deposit Transient
## 21021 D D No Deposit Transient
## 21022 A D No Deposit Transient
## 21023 E E No Deposit Transient
## 21024 A A No Deposit Transient
## 21025 A D No Deposit Transient
## 21026 D D No Deposit Transient
## 21027 D D No Deposit Transient
## 21028 A D No Deposit Transient
## 21029 A D No Deposit Transient
## 21030 A D No Deposit Transient
## 21031 A D No Deposit Transient
## 21032 A A No Deposit Transient
## 21033 A D No Deposit Transient
## 21034 A A No Deposit Transient
## 21035 A A No Deposit Transient
## 21036 A D No Deposit Transient
## 21037 C C No Deposit Transient
## 21038 A D No Deposit Transient
## 21039 A D No Deposit Transient
## 21040 A D No Deposit Transient
## 21041 D D No Deposit Transient
## 21042 A D No Deposit Transient
## 21043 A D No Deposit Transient
## 21044 A D No Deposit Transient
## 21045 D D No Deposit Transient
## 21046 A F No Deposit Transient
## 21047 A E No Deposit Transient
## 21048 A D No Deposit Transient
## 21049 A D No Deposit Transient
## 21050 A A No Deposit Transient
## 21051 A D No Deposit Transient
## 21052 A D No Deposit Transient
## 21053 A D No Deposit Transient
## 21054 A D No Deposit Transient
## 21055 A A No Deposit Transient
## 21056 A A No Deposit Transient
## 21057 A D No Deposit Transient
## 21058 A A No Deposit Transient
## 21059 A D No Deposit Transient
## 21060 A D No Deposit Transient
## 21061 A D No Deposit Transient
## 21062 A D No Deposit Transient
## 21063 A D No Deposit Transient
## 21064 A D No Deposit Transient
## 21065 A A No Deposit Transient-Party
## 21066 F F No Deposit Transient
## 21067 E E No Deposit Transient
## 21068 A A No Deposit Transient-Party
## 21069 A A No Deposit Transient-Party
## 21070 A A No Deposit Transient-Party
## 21071 A A No Deposit Transient-Party
## 21072 A D No Deposit Transient
## 21073 C C No Deposit Transient
## 21074 A D No Deposit Transient
## 21075 G G No Deposit Transient
## 21076 E E No Deposit Transient
## 21077 A A No Deposit Transient
## 21078 A D No Deposit Transient
## 21079 A A No Deposit Transient
## 21080 A A No Deposit Transient
## 21081 A D No Deposit Transient
## 21082 A D No Deposit Transient
## 21083 E E No Deposit Transient
## 21084 H H No Deposit Transient
## 21085 A A No Deposit Transient
## 21086 A A No Deposit Transient
## 21087 D D No Deposit Transient
## 21088 A A No Deposit Transient
## 21089 D D No Deposit Transient
## 21090 A A No Deposit Transient
## 21091 D D No Deposit Transient
## 21092 A A No Deposit Transient
## 21093 A G No Deposit Transient
## 21094 E E No Deposit Transient
## 21095 E E No Deposit Transient
## 21096 A A No Deposit Transient
## 21097 E E No Deposit Transient
## 21098 A D No Deposit Transient
## 21099 A F No Deposit Transient
## 21100 A A No Deposit Transient
## 21101 A A No Deposit Transient
## 21102 A D No Deposit Transient
## 21103 E E No Deposit Transient
## 21104 E E No Deposit Transient
## 21105 A A No Deposit Transient
## 21106 A A No Deposit Transient
## 21107 A A No Deposit Transient
## 21108 A A No Deposit Transient
## 21109 E E No Deposit Transient
## 21110 A D No Deposit Transient
## 21111 D D No Deposit Transient
## 21112 A D No Deposit Transient-Party
## 21113 A A No Deposit Transient
## 21114 D E No Deposit Transient
## 21115 A I No Deposit Transient
## 21116 A A No Deposit Transient
## 21117 A D No Deposit Transient
## 21118 A D No Deposit Transient
## 21119 A A No Deposit Transient
## 21120 A D No Deposit Transient
## 21121 A D No Deposit Transient
## 21122 A A No Deposit Transient
## 21123 A D No Deposit Transient
## 21124 A D No Deposit Transient
## 21125 A A No Deposit Transient
## 21126 A A No Deposit Transient
## 21127 A D No Deposit Transient
## 21128 A D No Deposit Transient
## 21129 A D No Deposit Transient
## 21130 E E No Deposit Transient
## 21131 G G No Deposit Transient
## 21132 C C No Deposit Transient
## 21133 A A No Deposit Transient
## 21134 D D No Deposit Transient
## 21135 A A No Deposit Transient
## 21136 A D No Deposit Transient
## 21137 A A No Deposit Transient
## 21138 D D No Deposit Transient
## 21139 A A No Deposit Transient
## 21140 A A No Deposit Group
## 21141 E E No Deposit Transient
## 21142 E E No Deposit Transient
## 21143 G G No Deposit Transient
## 21144 D D No Deposit Transient
## 21145 A D No Deposit Transient
## 21146 D D No Deposit Transient
## 21147 A D No Deposit Transient
## 21148 A A No Deposit Transient
## 21149 A D No Deposit Transient
## 21150 D D No Deposit Transient
## 21151 A D No Deposit Transient-Party
## 21152 E E No Deposit Transient
## 21153 A A No Deposit Transient
## 21154 A A No Deposit Transient
## 21155 A A No Deposit Transient
## 21156 A A No Deposit Transient
## 21157 A D No Deposit Transient
## 21158 A D No Deposit Transient
## 21159 A A No Deposit Transient
## 21160 E E No Deposit Transient
## 21161 G G No Deposit Transient
## 21162 E E No Deposit Transient
## 21163 A D No Deposit Transient
## 21164 A D No Deposit Transient
## 21165 A D No Deposit Transient-Party
## 21166 A D No Deposit Transient-Party
## 21167 A A No Deposit Transient
## 21168 E E No Deposit Transient
## 21169 A D No Deposit Transient-Party
## 21170 E E No Deposit Transient
## 21171 E E No Deposit Transient
## 21172 F F No Deposit Transient
## 21173 A A No Deposit Transient-Party
## 21174 A A No Deposit Transient-Party
## 21175 A A No Deposit Transient-Party
## 21176 A A No Deposit Transient-Party
## 21177 D D No Deposit Transient
## 21178 A G No Deposit Transient
## 21179 E E No Deposit Transient
## 21180 D D No Deposit Transient
## 21181 G G No Deposit Transient
## 21182 A A No Deposit Transient
## 21183 E E No Deposit Transient
## 21184 A D No Deposit Transient
## 21185 A A No Deposit Transient
## 21186 H H No Deposit Transient
## 21187 A A No Deposit Transient
## 21188 D D No Deposit Transient
## 21189 A D No Deposit Transient
## 21190 A C No Deposit Transient
## 21191 A D No Deposit Transient
## 21192 D D No Deposit Transient
## 21193 G G No Deposit Transient
## 21194 A D No Deposit Transient
## 21195 A D No Deposit Transient
## 21196 A D No Deposit Transient
## 21197 D D No Deposit Transient
## 21198 A D No Deposit Transient
## 21199 F F No Deposit Transient
## 21200 E E No Deposit Transient
## 21201 A D No Deposit Transient
## 21202 D D No Deposit Transient
## 21203 D D No Deposit Transient
## 21204 A D No Deposit Transient
## 21205 E E No Deposit Transient
## 21206 D D No Deposit Transient
## 21207 A D No Deposit Transient
## 21208 A D No Deposit Transient
## 21209 A D No Deposit Transient
## 21210 A E No Deposit Transient
## 21211 A D No Deposit Transient
## 21212 A C No Deposit Transient
## 21213 A D No Deposit Transient
## 21214 A D No Deposit Transient
## 21215 D D No Deposit Transient
## 21216 D D No Deposit Transient
## 21217 D D No Deposit Transient
## 21218 D D No Deposit Transient
## 21219 A A No Deposit Transient
## 21220 D D No Deposit Transient
## 21221 A A No Deposit Transient
## 21222 D D No Deposit Transient
## 21223 E I No Deposit Transient
## 21224 A D No Deposit Transient
## 21225 A A No Deposit Transient
## 21226 D D No Deposit Transient
## 21227 E E No Deposit Transient
## 21228 A A No Deposit Transient
## 21229 A A No Deposit Transient
## 21230 G G No Deposit Transient
## 21231 A D No Deposit Transient
## 21232 A A No Deposit Transient
## 21233 D D No Deposit Group
## 21234 A D No Deposit Transient
## 21235 A D No Deposit Transient
## 21236 A D No Deposit Transient
## 21237 E E No Deposit Transient
## 21238 E E No Deposit Transient
## 21239 E E No Deposit Transient
## 21240 F F No Deposit Transient
## 21241 F F No Deposit Transient
## 21242 D D No Deposit Transient
## 21243 A D No Deposit Transient
## 21244 A D No Deposit Transient
## 21245 A D No Deposit Transient
## 21246 A D No Deposit Transient
## 21247 A A No Deposit Transient
## 21248 A D No Deposit Transient
## 21249 A A No Deposit Transient
## 21250 A A No Deposit Transient
## 21251 A D No Deposit Transient
## 21252 A A No Deposit Transient
## 21253 A D No Deposit Transient
## 21254 A A No Deposit Transient
## 21255 A D No Deposit Transient
## 21256 A D No Deposit Transient
## 21257 G G No Deposit Transient
## 21258 A A No Deposit Transient
## 21259 A A No Deposit Transient
## 21260 A D No Deposit Transient
## 21261 A D No Deposit Transient
## 21262 A D No Deposit Transient
## 21263 A D No Deposit Transient
## 21264 A D No Deposit Transient
## 21265 D D No Deposit Transient
## 21266 A D No Deposit Transient
## 21267 A A No Deposit Transient
## 21268 A D No Deposit Transient
## 21269 A D No Deposit Transient
## 21270 A D No Deposit Transient
## 21271 E E No Deposit Transient
## 21272 A D No Deposit Transient
## 21273 A D No Deposit Transient
## 21274 E E No Deposit Transient
## 21275 A A No Deposit Transient
## 21276 D D No Deposit Transient
## 21277 A D No Deposit Transient
## 21278 A D No Deposit Transient
## 21279 A D No Deposit Transient
## 21280 A A No Deposit Transient
## 21281 E E No Deposit Transient
## 21282 A D No Deposit Transient
## 21283 A D No Deposit Transient
## 21284 E E No Deposit Transient
## 21285 E E No Deposit Transient
## 21286 A A No Deposit Transient
## 21287 A D No Deposit Transient
## 21288 A D No Deposit Transient
## 21289 A A No Deposit Transient
## 21290 A A No Deposit Transient
## 21291 A D No Deposit Transient-Party
## 21292 A D No Deposit Transient-Party
## 21293 A D No Deposit Transient
## 21294 D D No Deposit Group
## 21295 A D No Deposit Transient
## 21296 A D No Deposit Transient
## 21297 D D No Deposit Group
## 21298 A I No Deposit Transient
## 21299 E E No Deposit Transient
## 21300 A D No Deposit Transient
## 21301 A D No Deposit Transient
## 21302 A A No Deposit Transient
## 21303 A A No Deposit Transient
## 21304 A A No Deposit Transient
## 21305 A I No Deposit Transient
## 21306 A E No Deposit Transient
## 21307 A D No Deposit Transient
## 21308 A D No Deposit Transient
## 21309 A A No Deposit Transient
## 21310 A D No Deposit Transient
## 21311 A A No Deposit Transient
## 21312 A D No Deposit Transient
## 21313 A D No Deposit Transient
## 21314 A D No Deposit Transient
## 21315 A A No Deposit Transient
## 21316 A D No Deposit Transient
## 21317 A D No Deposit Transient
## 21318 A A No Deposit Transient
## 21319 A A No Deposit Transient
## 21320 G G No Deposit Transient
## 21321 A A No Deposit Transient
## 21322 A A No Deposit Transient
## 21323 A A No Deposit Transient
## 21324 A A No Deposit Transient
## 21325 A D No Deposit Transient
## 21326 D D No Deposit Transient
## 21327 A A No Deposit Transient
## 21328 A A No Deposit Transient
## 21329 E E No Deposit Transient
## 21330 A D No Deposit Transient
## 21331 A D No Deposit Transient
## 21332 A D No Deposit Transient
## 21333 A A No Deposit Transient
## 21334 A D No Deposit Transient
## 21335 A A No Deposit Transient
## 21336 A D No Deposit Transient
## 21337 C C No Deposit Transient
## 21338 A D No Deposit Transient
## 21339 A A No Deposit Transient
## 21340 A D No Deposit Transient
## 21341 A F No Deposit Transient
## 21342 A D No Deposit Transient-Party
## 21343 A D No Deposit Transient
## 21344 A A No Deposit Transient-Party
## 21345 A C No Deposit Transient
## 21346 A I No Deposit Transient-Party
## 21347 A D No Deposit Transient
## 21348 A D No Deposit Transient
## 21349 A A No Deposit Transient-Party
## 21350 A C No Deposit Transient
## 21351 E E No Deposit Transient
## 21352 A E No Deposit Transient
## 21353 A B No Deposit Transient
## 21354 E F No Deposit Transient
## 21355 E A No Deposit Transient
## 21356 E E No Deposit Transient
## 21357 A A No Deposit Transient
## 21358 A D No Deposit Transient
## 21359 A D No Deposit Transient
## 21360 A I No Deposit Transient
## 21361 A A No Deposit Transient
## 21362 D D No Deposit Transient
## 21363 A A No Deposit Transient
## 21364 A A No Deposit Transient
## 21365 E E No Deposit Transient
## 21366 A A No Deposit Transient-Party
## 21367 A D No Deposit Transient
## 21368 A D No Deposit Transient
## 21369 A D No Deposit Transient-Party
## 21370 A D No Deposit Transient-Party
## 21371 A A No Deposit Transient
## 21372 A E No Deposit Contract
## 21373 A A No Deposit Transient-Party
## 21374 A F No Deposit Contract
## 21375 D D No Deposit Transient-Party
## 21376 G G No Deposit Transient
## 21377 A A No Deposit Transient
## 21378 A A No Deposit Transient
## 21379 A F No Deposit Transient
## 21380 A A No Deposit Transient
## 21381 A D No Deposit Transient
## 21382 C G No Deposit Transient
## 21383 F F No Deposit Transient
## 21384 A D No Deposit Transient
## 21385 F F No Deposit Transient
## 21386 H H No Deposit Transient
## 21387 G G No Deposit Transient
## 21388 E E No Deposit Transient
## 21389 A A No Deposit Transient
## 21390 D D No Deposit Transient
## 21391 D D No Deposit Transient
## 21392 G G No Deposit Transient
## 21393 D D No Deposit Transient
## 21394 C C No Deposit Transient
## 21395 A D No Deposit Transient
## 21396 A A No Deposit Transient-Party
## 21397 A A No Deposit Transient-Party
## 21398 A F No Deposit Transient
## 21399 F F No Deposit Transient
## 21400 D D No Deposit Transient-Party
## 21401 D D No Deposit Transient-Party
## 21402 A E No Deposit Transient
## 21403 A A No Deposit Transient
## 21404 E E No Deposit Transient
## 21405 D E No Deposit Transient
## 21406 D D No Deposit Transient-Party
## 21407 E E No Deposit Transient
## 21408 E E No Deposit Transient
## 21409 A A No Deposit Transient-Party
## 21410 A A No Deposit Transient-Party
## 21411 A A No Deposit Transient-Party
## 21412 C C No Deposit Transient-Party
## 21413 A A No Deposit Transient-Party
## 21414 A E No Deposit Transient
## 21415 A D No Deposit Transient
## 21416 A D No Deposit Transient
## 21417 A A No Deposit Transient
## 21418 A A No Deposit Transient
## 21419 G G No Deposit Transient
## 21420 E E No Deposit Transient
## 21421 A C No Deposit Transient
## 21422 A A No Deposit Transient
## 21423 A A No Deposit Transient
## 21424 D D No Deposit Transient
## 21425 A A No Deposit Transient
## 21426 A D No Deposit Transient
## 21427 A A No Deposit Transient
## 21428 A A No Deposit Transient
## 21429 A A No Deposit Transient
## 21430 E E No Deposit Transient
## 21431 A D No Deposit Transient
## 21432 A F No Deposit Transient
## 21433 E E No Deposit Transient
## 21434 A E No Deposit Transient
## 21435 A A No Deposit Transient
## 21436 D D No Deposit Transient
## 21437 A E No Deposit Transient
## 21438 D F No Deposit Transient
## 21439 A A No Deposit Transient
## 21440 A A No Deposit Transient
## 21441 A D No Deposit Transient
## 21442 A A No Deposit Transient
## 21443 A A No Deposit Transient
## 21444 A D No Deposit Transient
## 21445 A A No Deposit Transient
## 21446 A D No Deposit Transient-Party
## 21447 A D No Deposit Transient-Party
## 21448 A A No Deposit Transient
## 21449 A D No Deposit Transient
## 21450 A A No Deposit Transient
## 21451 D D No Deposit Transient
## 21452 A E No Deposit Transient
## 21453 A A No Deposit Transient-Party
## 21454 A D No Deposit Transient
## 21455 A A No Deposit Transient-Party
## 21456 D D No Deposit Transient
## 21457 A A No Deposit Transient-Party
## 21458 H H No Deposit Transient
## 21459 A A No Deposit Transient
## 21460 G G No Deposit Transient
## 21461 C C No Deposit Transient
## 21462 D E No Deposit Transient
## 21463 A A No Deposit Transient
## 21464 C C No Deposit Transient
## 21465 A D No Deposit Transient
## 21466 A D No Deposit Transient
## 21467 A E No Deposit Transient
## 21468 E F No Deposit Transient
## 21469 A D No Deposit Transient
## 21470 A D No Deposit Transient
## 21471 A E No Deposit Transient
## 21472 E E No Deposit Transient
## 21473 A A No Deposit Transient
## 21474 D D No Deposit Transient
## 21475 D D No Deposit Transient
## 21476 A D No Deposit Transient
## 21477 D D No Deposit Transient
## 21478 D D No Deposit Transient
## 21479 A A No Deposit Transient
## 21480 A A No Deposit Transient-Party
## 21481 G G No Deposit Transient
## 21482 A D No Deposit Transient
## 21483 A D No Deposit Transient
## 21484 A D No Deposit Transient
## 21485 D D No Deposit Transient
## 21486 A A No Deposit Transient
## 21487 E E No Deposit Transient
## 21488 A A No Deposit Transient-Party
## 21489 A C No Deposit Transient
## 21490 A A No Deposit Transient
## 21491 A D No Deposit Transient
## 21492 A D No Deposit Transient-Party
## 21493 E E No Deposit Transient
## 21494 A A No Deposit Transient
## 21495 A A No Deposit Transient
## 21496 D D No Deposit Transient
## 21497 D D No Deposit Transient
## 21498 A D No Deposit Transient
## 21499 A A No Deposit Transient
## 21500 A D No Deposit Transient
## 21501 A D No Deposit Transient
## 21502 A A No Deposit Transient
## 21503 A A No Deposit Transient-Party
## 21504 A D No Deposit Transient
## 21505 A A No Deposit Transient
## 21506 A D No Deposit Transient
## 21507 A D No Deposit Transient
## 21508 A D No Deposit Transient
## 21509 A D No Deposit Transient
## 21510 A A No Deposit Transient
## 21511 D D No Deposit Transient
## 21512 A A No Deposit Transient
## 21513 E E No Deposit Transient
## 21514 A D No Deposit Transient
## 21515 A D No Deposit Transient
## 21516 A A No Deposit Transient-Party
## 21517 A A No Deposit Transient-Party
## 21518 A D No Deposit Transient
## 21519 A A No Deposit Transient
## 21520 A D No Deposit Transient
## 21521 A E No Deposit Transient
## 21522 A D No Deposit Transient
## 21523 D D No Deposit Transient
## 21524 A A No Deposit Contract
## 21525 A A No Deposit Transient
## 21526 A D No Deposit Transient
## 21527 A A No Deposit Transient
## 21528 A D No Deposit Transient
## 21529 D D No Deposit Transient
## 21530 D D No Deposit Transient
## 21531 A D No Deposit Transient
## 21532 A D No Deposit Transient
## 21533 A A No Deposit Transient
## 21534 A D No Deposit Transient
## 21535 D D No Deposit Transient
## 21536 A A No Deposit Transient
## 21537 E E No Deposit Transient
## 21538 A A No Deposit Transient
## 21539 A A No Deposit Transient
## 21540 A A No Deposit Transient
## 21541 F F No Deposit Transient
## 21542 D D No Deposit Transient
## 21543 A D No Deposit Transient
## 21544 A D No Deposit Transient
## 21545 E F No Deposit Transient
## 21546 A A No Deposit Transient
## 21547 A D No Deposit Transient
## 21548 A A No Deposit Transient
## 21549 G G No Deposit Transient
## 21550 E E No Deposit Transient
## 21551 A D No Deposit Transient
## 21552 A D No Deposit Transient
## 21553 G G No Deposit Transient
## 21554 F F No Deposit Transient
## 21555 A A No Deposit Transient
## 21556 A D No Deposit Transient
## 21557 A D No Deposit Transient
## 21558 A A No Deposit Transient
## 21559 D D No Deposit Transient
## 21560 D F No Deposit Transient
## 21561 A A No Deposit Transient
## 21562 D E No Deposit Transient
## 21563 E F No Deposit Transient
## 21564 A A No Deposit Transient
## 21565 A A No Deposit Transient
## 21566 G G No Deposit Transient
## 21567 A D No Deposit Transient
## 21568 E E No Deposit Transient
## 21569 A D No Deposit Transient
## 21570 A D No Deposit Transient
## 21571 A D No Deposit Transient
## 21572 A D No Deposit Transient
## 21573 A D No Deposit Transient
## 21574 A D No Deposit Transient
## 21575 A D No Deposit Transient
## 21576 A A No Deposit Transient
## 21577 A I No Deposit Transient
## 21578 A I No Deposit Transient
## 21579 A I No Deposit Transient
## 21580 A D No Deposit Transient
## 21581 A D No Deposit Transient
## 21582 A D No Deposit Transient
## 21583 A A No Deposit Transient
## 21584 A I No Deposit Transient
## 21585 A D No Deposit Transient
## 21586 E E No Deposit Transient
## 21587 D D No Deposit Transient
## 21588 A A No Deposit Transient
## 21589 A D No Deposit Transient
## 21590 A A No Deposit Transient
## 21591 A D No Deposit Transient
## 21592 F F No Deposit Transient
## 21593 A A No Deposit Transient
## 21594 D D No Deposit Transient
## 21595 A A No Deposit Transient
## 21596 A D No Deposit Transient
## 21597 D D No Deposit Transient
## 21598 A D No Deposit Transient
## 21599 A D No Deposit Transient
## 21600 G G No Deposit Transient
## 21601 F F No Deposit Transient
## 21602 A A No Deposit Transient
## 21603 A A No Deposit Transient-Party
## 21604 A A No Deposit Transient-Party
## 21605 A A No Deposit Transient-Party
## 21606 D D No Deposit Transient
## 21607 E G No Deposit Transient
## 21608 E E No Deposit Transient-Party
## 21609 A A No Deposit Transient
## 21610 A D No Deposit Transient
## 21611 E F No Deposit Transient
## 21612 E E No Deposit Transient
## 21613 D D No Deposit Transient
## 21614 E E No Deposit Transient
## 21615 D D No Deposit Transient
## 21616 A D No Deposit Transient
## 21617 A D No Deposit Transient
## 21618 A D No Deposit Transient
## 21619 D D No Deposit Transient
## 21620 A D No Deposit Transient
## 21621 A C No Deposit Transient
## 21622 C C No Deposit Transient
## 21623 A A No Deposit Transient
## 21624 A A No Deposit Transient
## 21625 E F No Deposit Transient
## 21626 F G No Deposit Transient
## 21627 E F No Deposit Transient
## 21628 E F No Deposit Transient
## 21629 A A No Deposit Transient
## 21630 A A No Deposit Transient
## 21631 A A No Deposit Transient
## 21632 A A No Deposit Transient
## 21633 A D No Deposit Transient
## 21634 A A No Deposit Transient
## 21635 E F No Deposit Transient
## 21636 E F No Deposit Transient
## 21637 D D No Deposit Transient
## 21638 A D No Deposit Transient
## 21639 A A No Deposit Transient
## 21640 A D No Deposit Transient
## 21641 E E No Deposit Transient
## 21642 A D No Deposit Transient
## 21643 E F No Deposit Transient
## 21644 E E No Deposit Transient-Party
## 21645 A D No Deposit Transient
## 21646 D D No Deposit Transient
## 21647 D D No Deposit Transient
## 21648 A D No Deposit Transient
## 21649 E E No Deposit Transient-Party
## 21650 E E No Deposit Transient-Party
## 21651 A A No Deposit Transient
## 21652 F F No Deposit Transient
## 21653 A A No Deposit Transient
## 21654 A A No Deposit Transient
## 21655 A A No Deposit Transient
## 21656 E E No Deposit Transient-Party
## 21657 A D No Deposit Transient
## 21658 A A No Deposit Transient
## 21659 D D No Deposit Transient
## 21660 D D No Deposit Transient
## 21661 A D No Deposit Transient
## 21662 D D No Deposit Transient
## 21663 A D No Deposit Transient
## 21664 E E No Deposit Transient-Party
## 21665 A A No Deposit Transient
## 21666 A D No Deposit Transient
## 21667 A D No Deposit Transient
## 21668 A A No Deposit Transient
## 21669 D D No Deposit Transient
## 21670 A A No Deposit Transient
## 21671 H H No Deposit Transient
## 21672 H H No Deposit Transient
## 21673 F F No Deposit Transient
## 21674 E E No Deposit Transient-Party
## 21675 G G No Deposit Transient
## 21676 A A No Deposit Transient
## 21677 A A No Deposit Transient
## 21678 A A No Deposit Transient
## 21679 A A No Deposit Transient
## 21680 A A No Deposit Transient-Party
## 21681 A A No Deposit Transient-Party
## 21682 A A No Deposit Transient
## 21683 A A No Deposit Transient
## 21684 F F No Deposit Transient
## 21685 F F No Deposit Group
## 21686 E E No Deposit Transient
## 21687 F F No Deposit Transient
## 21688 D D No Deposit Transient
## 21689 E E No Deposit Transient-Party
## 21690 D D No Deposit Transient
## 21691 D D No Deposit Transient
## 21692 A D No Deposit Transient-Party
## 21693 A D No Deposit Transient-Party
## 21694 A A No Deposit Transient
## 21695 A A No Deposit Transient
## 21696 A D No Deposit Transient
## 21697 D D No Deposit Transient-Party
## 21698 A D No Deposit Transient
## 21699 A D No Deposit Transient
## 21700 A A No Deposit Transient
## 21701 D D No Deposit Group
## 21702 A D No Deposit Transient
## 21703 A D No Deposit Transient
## 21704 A A No Deposit Group
## 21705 A A No Deposit Transient
## 21706 D D No Deposit Transient
## 21707 A D No Deposit Transient
## 21708 G G No Deposit Transient
## 21709 G G No Deposit Transient
## 21710 A D No Deposit Transient
## 21711 A A No Deposit Transient-Party
## 21712 D D No Deposit Transient-Party
## 21713 E E No Deposit Transient-Party
## 21714 E E No Deposit Transient-Party
## 21715 E E No Deposit Transient
## 21716 A F No Deposit Transient
## 21717 A A No Deposit Transient
## 21718 E E No Deposit Transient-Party
## 21719 A A No Deposit Transient
## 21720 E E No Deposit Transient-Party
## 21721 E E No Deposit Transient-Party
## 21722 E E No Deposit Transient-Party
## 21723 E E No Deposit Transient-Party
## 21724 A D No Deposit Transient
## 21725 A D No Deposit Transient
## 21726 A A No Deposit Transient
## 21727 A D No Deposit Transient
## 21728 A E No Deposit Transient
## 21729 A E No Deposit Transient
## 21730 A D No Deposit Transient
## 21731 D D No Deposit Transient
## 21732 D D No Deposit Transient
## 21733 E E No Deposit Transient
## 21734 A A No Deposit Transient
## 21735 G G No Deposit Transient
## 21736 G G No Deposit Transient
## 21737 G G No Deposit Transient
## 21738 G G No Deposit Transient
## 21739 A D No Deposit Transient
## 21740 A A No Deposit Transient
## 21741 A A No Deposit Transient
## 21742 E E No Deposit Transient
## 21743 A A No Deposit Transient
## 21744 A A No Deposit Transient-Party
## 21745 E I No Deposit Transient-Party
## 21746 E E No Deposit Transient-Party
## 21747 E E No Deposit Transient-Party
## 21748 A A No Deposit Transient
## 21749 D D No Deposit Transient
## 21750 A D No Deposit Transient
## 21751 E E No Deposit Contract
## 21752 A A No Deposit Transient
## 21753 D D No Deposit Transient
## 21754 A A No Deposit Transient
## 21755 E E No Deposit Transient
## 21756 A A No Deposit Transient
## 21757 A A No Deposit Transient
## 21758 A A No Deposit Transient
## 21759 A A No Deposit Transient-Party
## 21760 A A No Deposit Transient
## 21761 E E No Deposit Transient
## 21762 A A No Deposit Transient-Party
## 21763 A A No Deposit Transient-Party
## 21764 A A No Deposit Transient
## 21765 A D No Deposit Transient
## 21766 A A No Deposit Transient
## 21767 A A No Deposit Transient
## 21768 A D No Deposit Transient
## 21769 A D No Deposit Transient
## 21770 A A No Deposit Transient
## 21771 A E No Deposit Transient
## 21772 A D No Deposit Transient
## 21773 A A No Deposit Transient
## 21774 A E No Deposit Transient
## 21775 A A No Deposit Transient
## 21776 A A No Deposit Transient
## 21777 A D No Deposit Group
## 21778 A F No Deposit Transient
## 21779 A A No Deposit Transient
## 21780 E E No Deposit Transient
## 21781 A A No Deposit Transient
## 21782 A D No Deposit Transient
## 21783 A A No Deposit Transient
## 21784 A A No Deposit Transient
## 21785 A A No Deposit Transient
## 21786 A A No Deposit Transient
## 21787 D D No Deposit Transient
## 21788 A E No Deposit Transient
## 21789 A A No Deposit Transient
## 21790 A E No Deposit Transient
## 21791 A A No Deposit Transient
## 21792 D D No Deposit Transient
## 21793 A D No Deposit Transient
## 21794 A A No Deposit Transient
## 21795 A D No Deposit Transient
## 21796 A D No Deposit Transient
## 21797 A A No Deposit Transient
## 21798 F F No Deposit Transient
## 21799 A D No Deposit Transient
## 21800 A A No Deposit Transient-Party
## 21801 A A No Deposit Transient-Party
## 21802 A D No Deposit Transient-Party
## 21803 D D No Deposit Transient
## 21804 D D No Deposit Transient
## 21805 A A No Deposit Transient-Party
## 21806 A A No Deposit Transient-Party
## 21807 A C No Deposit Transient-Party
## 21808 A D No Deposit Transient-Party
## 21809 A A No Deposit Transient-Party
## 21810 A A No Deposit Transient-Party
## 21811 A D No Deposit Transient-Party
## 21812 A D No Deposit Transient-Party
## 21813 A D No Deposit Transient-Party
## 21814 A D No Deposit Transient-Party
## 21815 A A No Deposit Transient
## 21816 A A No Deposit Transient
## 21817 A C No Deposit Transient-Party
## 21818 A C No Deposit Transient-Party
## 21819 A D No Deposit Transient-Party
## 21820 A C No Deposit Transient
## 21821 A D No Deposit Transient-Party
## 21822 A C No Deposit Transient-Party
## 21823 A C No Deposit Transient-Party
## 21824 A C No Deposit Transient-Party
## 21825 A C No Deposit Transient-Party
## 21826 E G No Deposit Transient-Party
## 21827 A D No Deposit Transient-Party
## 21828 A A No Deposit Transient-Party
## 21829 A D No Deposit Transient-Party
## 21830 A C No Deposit Transient-Party
## 21831 A C No Deposit Transient-Party
## 21832 A A No Deposit Transient
## 21833 A D No Deposit Transient-Party
## 21834 A A No Deposit Transient
## 21835 E E No Deposit Transient
## 21836 A A No Deposit Transient-Party
## 21837 A A No Deposit Transient-Party
## 21838 A A No Deposit Transient-Party
## 21839 A A No Deposit Transient
## 21840 A A No Deposit Transient-Party
## 21841 A D No Deposit Transient-Party
## 21842 A A No Deposit Transient-Party
## 21843 A A No Deposit Transient-Party
## 21844 A A No Deposit Transient-Party
## 21845 A E No Deposit Transient-Party
## 21846 A A No Deposit Transient-Party
## 21847 A A No Deposit Transient-Party
## 21848 A E No Deposit Transient-Party
## 21849 A D No Deposit Transient-Party
## 21850 A A No Deposit Transient-Party
## 21851 A A No Deposit Transient-Party
## 21852 D D No Deposit Transient
## 21853 E E No Deposit Transient
## 21854 D D No Deposit Transient
## 21855 A A No Deposit Transient
## 21856 A A No Deposit Transient
## 21857 A C No Deposit Transient-Party
## 21858 A A No Deposit Transient-Party
## 21859 A D No Deposit Transient
## 21860 A D No Deposit Transient
## 21861 A A No Deposit Transient
## 21862 D F No Deposit Transient
## 21863 A E No Deposit Transient-Party
## 21864 A A No Deposit Transient
## 21865 H H No Deposit Transient-Party
## 21866 E E No Deposit Transient
## 21867 F F No Deposit Transient
## 21868 D D No Deposit Transient
## 21869 D D No Deposit Contract
## 21870 A D No Deposit Transient-Party
## 21871 C D No Deposit Transient
## 21872 C D No Deposit Transient
## 21873 D D No Deposit Transient
## 21874 A A No Deposit Transient-Party
## 21875 A A No Deposit Transient-Party
## 21876 A A No Deposit Transient-Party
## 21877 A A No Deposit Transient-Party
## 21878 A A No Deposit Transient-Party
## 21879 A A No Deposit Transient-Party
## 21880 A A No Deposit Transient-Party
## 21881 A A No Deposit Transient-Party
## 21882 A A No Deposit Transient-Party
## 21883 A A No Deposit Transient-Party
## 21884 A A No Deposit Transient-Party
## 21885 A A No Deposit Transient-Party
## 21886 A A No Deposit Transient-Party
## 21887 A A No Deposit Transient-Party
## 21888 A A No Deposit Transient-Party
## 21889 A A No Deposit Transient-Party
## 21890 A A No Deposit Transient-Party
## 21891 A A No Deposit Transient-Party
## 21892 A A No Deposit Transient-Party
## 21893 A A No Deposit Transient-Party
## 21894 A A No Deposit Transient-Party
## 21895 A A No Deposit Transient-Party
## 21896 A A No Deposit Transient-Party
## 21897 G G No Deposit Transient
## 21898 G G No Deposit Transient
## 21899 A B No Deposit Transient
## 21900 A D No Deposit Transient
## 21901 D D No Deposit Transient
## 21902 A D No Deposit Transient
## 21903 A A No Deposit Transient
## 21904 C C No Deposit Transient
## 21905 A D No Deposit Transient
## 21906 A A No Deposit Transient-Party
## 21907 D E No Deposit Transient-Party
## 21908 D E No Deposit Transient-Party
## 21909 A A No Deposit Transient-Party
## 21910 A A No Deposit Transient
## 21911 D D No Deposit Transient
## 21912 D E No Deposit Transient
## 21913 A E No Deposit Transient
## 21914 D G No Deposit Transient
## 21915 A E No Deposit Transient
## 21916 E F No Deposit Transient
## 21917 A D No Deposit Transient
## 21918 A D No Deposit Transient
## 21919 A A No Deposit Transient
## 21920 A C No Deposit Transient
## 21921 A D No Deposit Transient
## 21922 A D No Deposit Transient
## 21923 A D No Deposit Transient
## 21924 A A No Deposit Transient-Party
## 21925 C C No Deposit Transient
## 21926 A D No Deposit Transient-Party
## 21927 A A No Deposit Transient-Party
## 21928 D D No Deposit Transient
## 21929 A A No Deposit Transient
## 21930 A A No Deposit Transient
## 21931 D D No Deposit Transient
## 21932 D E No Deposit Transient
## 21933 A E No Deposit Transient
## 21934 C C No Deposit Transient
## 21935 E E No Deposit Transient
## 21936 F F No Deposit Transient
## 21937 D D No Deposit Transient
## 21938 A D No Deposit Transient-Party
## 21939 A D No Deposit Transient-Party
## 21940 A D No Deposit Transient-Party
## 21941 D D No Deposit Transient
## 21942 A A No Deposit Transient
## 21943 A A No Deposit Transient-Party
## 21944 A D No Deposit Transient
## 21945 C C No Deposit Transient
## 21946 D D No Deposit Transient
## 21947 D D No Deposit Transient
## 21948 A D No Deposit Transient
## 21949 A D No Deposit Transient-Party
## 21950 A A No Deposit Transient
## 21951 A A No Deposit Transient-Party
## 21952 A A No Deposit Transient-Party
## 21953 A A No Deposit Transient
## 21954 F F No Deposit Transient
## 21955 A A No Deposit Transient
## 21956 A D No Deposit Transient
## 21957 A D No Deposit Transient
## 21958 D D No Deposit Transient
## 21959 E E No Deposit Transient
## 21960 A I No Deposit Transient-Party
## 21961 A D No Deposit Transient
## 21962 A I No Deposit Transient-Party
## 21963 A D No Deposit Transient
## 21964 A A No Deposit Transient
## 21965 A D No Deposit Transient
## 21966 A D No Deposit Transient
## 21967 E E No Deposit Transient
## 21968 E E No Deposit Transient
## 21969 C C No Deposit Transient
## 21970 A D No Deposit Transient
## 21971 D D No Deposit Transient
## 21972 A I No Deposit Transient
## 21973 E E No Deposit Transient
## 21974 A D No Deposit Transient
## 21975 A A No Deposit Transient
## 21976 A A No Deposit Transient
## 21977 A D No Deposit Transient
## 21978 A D No Deposit Transient
## 21979 A D No Deposit Transient
## 21980 A D No Deposit Transient
## 21981 F F No Deposit Transient
## 21982 A D No Deposit Transient
## 21983 E F No Deposit Transient
## 21984 A D No Deposit Transient
## 21985 A A No Deposit Transient
## 21986 A D No Deposit Transient
## 21987 C C No Deposit Transient
## 21988 E E No Deposit Transient
## 21989 E E No Deposit Transient
## 21990 A D No Deposit Transient
## 21991 A A No Deposit Transient
## 21992 A A No Deposit Transient
## 21993 A A No Deposit Transient
## 21994 E E No Deposit Transient
## 21995 A A No Deposit Transient
## 21996 D D No Deposit Transient
## 21997 A D No Deposit Transient
## 21998 D D No Deposit Transient
## 21999 E E No Deposit Transient
## 22000 F F No Deposit Transient
## 22001 A D No Deposit Transient
## 22002 E E No Deposit Transient
## 22003 A D No Deposit Transient
## 22004 A A No Deposit Transient
## 22005 E E No Deposit Transient
## 22006 A A No Deposit Transient
## 22007 A A No Deposit Transient
## 22008 A A No Deposit Transient-Party
## 22009 D D No Deposit Transient
## 22010 A D No Deposit Transient-Party
## 22011 A D No Deposit Transient
## 22012 D D No Deposit Transient
## 22013 A A No Deposit Transient-Party
## 22014 A A No Deposit Transient-Party
## 22015 G G No Deposit Transient
## 22016 D D No Deposit Transient
## 22017 D D No Deposit Transient
## 22018 A D No Deposit Transient
## 22019 E E No Deposit Transient
## 22020 A A No Deposit Transient
## 22021 A D No Deposit Transient
## 22022 A D No Deposit Transient-Party
## 22023 A A No Deposit Transient-Party
## 22024 A D No Deposit Transient
## 22025 E E No Deposit Transient
## 22026 G G No Deposit Transient
## 22027 D D No Deposit Transient
## 22028 D F No Deposit Transient
## 22029 E E No Deposit Transient
## 22030 E E No Deposit Transient
## 22031 D I No Deposit Transient
## 22032 A A No Deposit Transient
## 22033 A A No Deposit Transient
## 22034 A D No Deposit Transient
## 22035 A D No Deposit Transient
## 22036 A A No Deposit Transient
## 22037 A D No Deposit Transient
## 22038 A E No Deposit Transient
## 22039 A D No Deposit Transient
## 22040 A D No Deposit Transient
## 22041 A A No Deposit Transient
## 22042 A A No Deposit Transient
## 22043 A D No Deposit Transient
## 22044 A E No Deposit Transient
## 22045 F F No Deposit Transient
## 22046 A A No Deposit Transient
## 22047 A A No Deposit Transient
## 22048 A A No Deposit Transient
## 22049 D D No Deposit Transient
## 22050 A C No Deposit Transient
## 22051 A A No Deposit Group
## 22052 A A No Deposit Transient
## 22053 A A No Deposit Transient
## 22054 A A No Deposit Transient
## 22055 A A No Deposit Transient
## 22056 A D No Deposit Transient
## 22057 A A No Deposit Transient
## 22058 A A No Deposit Transient
## 22059 D D No Deposit Transient
## 22060 A D No Deposit Transient
## 22061 F F No Deposit Transient
## 22062 A D No Deposit Transient
## 22063 A A No Deposit Transient
## 22064 A A No Deposit Transient
## 22065 A D No Deposit Transient
## 22066 F F No Deposit Transient
## 22067 A A No Deposit Transient
## 22068 A A No Deposit Transient
## 22069 A A No Deposit Transient
## 22070 A D No Deposit Transient
## 22071 D D No Deposit Transient
## 22072 H H No Deposit Transient
## 22073 A A No Deposit Transient
## 22074 E E No Deposit Transient
## 22075 A A No Deposit Transient
## 22076 A D No Deposit Transient
## 22077 D D No Deposit Transient
## 22078 F F No Deposit Transient
## 22079 A D No Deposit Transient
## 22080 A A No Deposit Transient
## 22081 A D No Deposit Transient
## 22082 E E No Deposit Transient
## 22083 A C No Deposit Transient-Party
## 22084 A C No Deposit Transient-Party
## 22085 D D No Deposit Transient
## 22086 A A No Deposit Transient
## 22087 A A No Deposit Transient
## 22088 A A No Deposit Transient
## 22089 A A No Deposit Transient
## 22090 A A No Deposit Transient
## 22091 A A No Deposit Transient-Party
## 22092 A A No Deposit Transient-Party
## 22093 A A No Deposit Transient-Party
## 22094 A A No Deposit Transient
## 22095 A C No Deposit Transient
## 22096 A D No Deposit Transient
## 22097 A D No Deposit Transient
## 22098 A A No Deposit Transient
## 22099 A A No Deposit Transient
## 22100 A A No Deposit Transient-Party
## 22101 A D No Deposit Transient-Party
## 22102 A E No Deposit Transient-Party
## 22103 A D No Deposit Transient-Party
## 22104 A A No Deposit Transient
## 22105 A A No Deposit Transient-Party
## 22106 A A No Deposit Transient-Party
## 22107 A D No Deposit Transient-Party
## 22108 A D No Deposit Transient-Party
## 22109 A D No Deposit Transient-Party
## 22110 A D No Deposit Transient-Party
## 22111 A D No Deposit Transient-Party
## 22112 A D No Deposit Transient-Party
## 22113 A D No Deposit Transient-Party
## 22114 A E No Deposit Transient-Party
## 22115 A E No Deposit Transient-Party
## 22116 A D No Deposit Transient-Party
## 22117 A D No Deposit Transient-Party
## 22118 A D No Deposit Transient-Party
## 22119 A D No Deposit Transient-Party
## 22120 A D No Deposit Transient-Party
## 22121 A A No Deposit Transient
## 22122 A A No Deposit Transient
## 22123 F F No Deposit Transient
## 22124 E E No Deposit Transient
## 22125 A A No Deposit Transient
## 22126 D D No Deposit Transient
## 22127 D D No Deposit Transient
## 22128 A A No Deposit Transient
## 22129 A A No Deposit Transient-Party
## 22130 A A No Deposit Transient-Party
## 22131 A A No Deposit Transient-Party
## 22132 D D No Deposit Transient
## 22133 A A No Deposit Transient
## 22134 A A No Deposit Transient
## 22135 A D No Deposit Transient
## 22136 D D No Deposit Transient
## 22137 A A No Deposit Transient
## 22138 A A No Deposit Transient
## 22139 A A No Deposit Transient
## 22140 A A No Deposit Transient
## 22141 E E No Deposit Contract
## 22142 A D No Deposit Transient
## 22143 A D No Deposit Transient
## 22144 C D No Deposit Contract
## 22145 E E No Deposit Transient
## 22146 G G No Deposit Transient
## 22147 H H No Deposit Transient
## 22148 A A No Deposit Transient
## 22149 A A No Deposit Transient
## 22150 A A No Deposit Transient
## 22151 E E No Deposit Transient
## 22152 A C No Deposit Transient
## 22153 A F No Deposit Transient
## 22154 A D No Deposit Transient
## 22155 E E No Deposit Transient
## 22156 A A No Deposit Transient
## 22157 A A No Deposit Transient
## 22158 A D No Deposit Transient
## 22159 G G No Deposit Transient
## 22160 C C No Deposit Transient
## 22161 A A No Deposit Contract
## 22162 A A No Deposit Transient
## 22163 E E No Deposit Transient
## 22164 E E No Deposit Transient
## 22165 E E No Deposit Transient
## 22166 A D No Deposit Transient
## 22167 E E No Deposit Transient
## 22168 D D No Deposit Transient-Party
## 22169 D D No Deposit Transient-Party
## 22170 D D No Deposit Transient-Party
## 22171 E E No Deposit Transient
## 22172 A A No Deposit Transient
## 22173 A A No Deposit Transient
## 22174 A D No Deposit Transient
## 22175 A A No Deposit Transient
## 22176 D D No Deposit Transient
## 22177 A A No Deposit Transient
## 22178 A A No Deposit Transient
## 22179 D D No Deposit Transient
## 22180 E E No Deposit Transient
## 22181 H H No Deposit Transient
## 22182 A A No Deposit Transient
## 22183 A A No Deposit Transient
## 22184 A A No Deposit Transient
## 22185 A E No Deposit Transient
## 22186 A A No Deposit Transient
## 22187 A A No Deposit Transient
## 22188 A D No Deposit Transient
## 22189 G G No Deposit Transient
## 22190 G G No Deposit Transient
## 22191 D D No Deposit Transient
## 22192 A A No Deposit Transient
## 22193 A D No Deposit Transient
## 22194 A A No Deposit Transient
## 22195 A D No Deposit Transient
## 22196 A A No Deposit Transient
## 22197 A A No Deposit Transient
## 22198 A A No Deposit Transient
## 22199 A A No Deposit Transient
## 22200 A A No Deposit Transient
## 22201 A D No Deposit Transient
## 22202 A D No Deposit Transient
## 22203 E F No Deposit Transient
## 22204 D D No Deposit Transient
## 22205 A A No Deposit Transient
## 22206 A D No Deposit Transient
## 22207 A D No Deposit Transient
## 22208 E F No Deposit Transient
## 22209 A A No Deposit Transient
## 22210 A A No Deposit Transient
## 22211 A A No Deposit Transient
## 22212 A A No Deposit Transient
## 22213 A A No Deposit Transient
## 22214 E E No Deposit Transient
## 22215 A A No Deposit Transient
## 22216 C C No Deposit Transient
## 22217 D D No Deposit Transient
## 22218 D D No Deposit Transient
## 22219 C C No Deposit Transient
## 22220 A C No Deposit Transient
## 22221 C C No Deposit Transient
## 22222 A C No Deposit Transient-Party
## 22223 A C No Deposit Transient-Party
## 22224 A A No Deposit Transient
## 22225 E E No Deposit Transient
## 22226 A A No Deposit Transient
## 22227 E E No Deposit Transient
## 22228 D D No Deposit Transient-Party
## 22229 D D No Deposit Transient-Party
## 22230 G G No Deposit Transient
## 22231 A A No Deposit Transient
## 22232 A A No Deposit Transient
## 22233 G G No Deposit Transient
## 22234 F F No Deposit Transient
## 22235 A C No Deposit Transient
## 22236 D D No Deposit Transient
## 22237 A A No Deposit Transient
## 22238 A F No Deposit Transient
## 22239 A I No Deposit Transient
## 22240 E I No Deposit Transient
## 22241 A A No Deposit Transient
## 22242 A A No Deposit Transient
## 22243 D D No Deposit Transient
## 22244 E E No Deposit Transient
## 22245 A A No Deposit Transient
## 22246 A A No Deposit Transient
## 22247 G G No Deposit Transient
## 22248 D D No Deposit Transient
## 22249 A A No Deposit Transient
## 22250 D D No Deposit Transient
## 22251 A A No Deposit Transient
## 22252 D D No Deposit Transient
## 22253 D D No Deposit Transient
## 22254 D D No Deposit Transient
## 22255 A A No Deposit Transient-Party
## 22256 A A No Deposit Transient
## 22257 A A No Deposit Transient-Party
## 22258 A A No Deposit Transient-Party
## 22259 A B No Deposit Transient
## 22260 C C No Deposit Transient
## 22261 A A No Deposit Transient
## 22262 D D No Deposit Transient
## 22263 E E No Deposit Transient
## 22264 A C No Deposit Transient
## 22265 E E No Deposit Transient
## 22266 A A No Deposit Transient
## 22267 D D No Deposit Transient
## 22268 E E No Deposit Transient
## 22269 A A No Deposit Transient
## 22270 E E No Deposit Transient
## 22271 A A No Deposit Transient
## 22272 A C No Deposit Transient
## 22273 A D No Deposit Transient
## 22274 A D No Deposit Transient
## 22275 A D No Deposit Group
## 22276 A A No Deposit Transient
## 22277 E F No Deposit Transient
## 22278 D D No Deposit Transient
## 22279 E F No Deposit Transient
## 22280 D D No Deposit Transient
## 22281 A A No Deposit Transient
## 22282 A A No Deposit Transient
## 22283 A D No Deposit Transient
## 22284 A A No Deposit Transient
## 22285 D D No Deposit Transient
## 22286 A A No Deposit Transient
## 22287 A A No Deposit Transient
## 22288 D D No Deposit Transient-Party
## 22289 D D No Deposit Transient-Party
## 22290 D D No Deposit Transient-Party
## 22291 A E No Deposit Transient
## 22292 D D No Deposit Transient
## 22293 A A No Deposit Transient
## 22294 A D No Deposit Transient
## 22295 A A No Deposit Transient
## 22296 D D No Deposit Transient
## 22297 A D No Deposit Transient
## 22298 A C No Deposit Transient
## 22299 A A No Deposit Transient
## 22300 D D No Deposit Transient
## 22301 A F No Deposit Transient
## 22302 A D No Deposit Transient
## 22303 A D No Deposit Transient-Party
## 22304 A A No Deposit Transient
## 22305 A A No Deposit Transient
## 22306 A A No Deposit Transient
## 22307 A C No Deposit Transient
## 22308 A A No Deposit Transient
## 22309 E E No Deposit Transient
## 22310 D D No Deposit Transient
## 22311 A A No Deposit Transient
## 22312 C A No Deposit Transient
## 22313 E F No Deposit Transient-Party
## 22314 D D No Deposit Transient-Party
## 22315 A C No Deposit Transient
## 22316 D D No Deposit Transient
## 22317 A A No Deposit Transient
## 22318 A A No Deposit Transient
## 22319 D E No Deposit Transient
## 22320 D G No Deposit Transient
## 22321 E E No Deposit Transient
## 22322 A A No Deposit Transient
## 22323 D D No Deposit Transient
## 22324 D D No Deposit Transient
## 22325 A D No Deposit Transient
## 22326 A A No Deposit Transient-Party
## 22327 A A No Deposit Transient-Party
## 22328 D D No Deposit Transient
## 22329 A A No Deposit Transient
## 22330 A A No Deposit Transient
## 22331 A D No Deposit Transient
## 22332 A A No Deposit Transient
## 22333 A A No Deposit Transient
## 22334 A C No Deposit Transient
## 22335 A A No Deposit Transient
## 22336 E E No Deposit Transient
## 22337 E E No Deposit Transient
## 22338 A A No Deposit Transient
## 22339 D D No Deposit Transient-Party
## 22340 D D No Deposit Transient-Party
## 22341 A D No Deposit Transient
## 22342 D D No Deposit Transient
## 22343 E E No Deposit Transient
## 22344 A A No Deposit Transient
## 22345 D D No Deposit Transient
## 22346 A A No Deposit Transient
## 22347 E E No Deposit Contract
## 22348 E E No Deposit Transient
## 22349 A A No Deposit Transient
## 22350 A A No Deposit Transient
## 22351 A A No Deposit Transient
## 22352 E E No Deposit Transient
## 22353 A A No Deposit Transient
## 22354 F G No Deposit Transient
## 22355 E G No Deposit Group
## 22356 A A No Deposit Transient
## 22357 A A No Deposit Transient
## 22358 D D No Deposit Transient
## 22359 A C No Deposit Transient
## 22360 A A No Deposit Transient
## 22361 A A No Deposit Transient
## 22362 E E No Deposit Transient
## 22363 A A No Deposit Transient
## 22364 A A No Deposit Transient
## 22365 A D No Deposit Transient
## 22366 A A No Deposit Transient
## 22367 D D No Deposit Transient
## 22368 G I No Deposit Transient
## 22369 E E No Deposit Transient
## 22370 D D No Deposit Transient
## 22371 A A No Deposit Transient
## 22372 E E No Deposit Transient
## 22373 E E No Deposit Transient
## 22374 F F No Deposit Transient
## 22375 G G No Deposit Transient
## 22376 D D No Deposit Transient
## 22377 A A No Deposit Transient
## 22378 A A No Deposit Transient
## 22379 G G No Deposit Transient
## 22380 A C No Deposit Transient
## 22381 A A No Deposit Transient
## 22382 A A No Deposit Transient
## 22383 A C No Deposit Transient
## 22384 H H No Deposit Transient
## 22385 A C No Deposit Transient
## 22386 A C No Deposit Transient
## 22387 A D No Deposit Transient
## 22388 A A No Deposit Transient
## 22389 A A No Deposit Transient
## 22390 D I No Deposit Transient
## 22391 D D No Deposit Group
## 22392 D D No Deposit Transient
## 22393 A A No Deposit Transient
## 22394 C C No Deposit Transient
## 22395 E E No Deposit Transient
## 22396 A A No Deposit Transient
## 22397 E E No Deposit Transient
## 22398 A A No Deposit Transient
## 22399 G G No Deposit Transient
## 22400 A A No Deposit Transient
## 22401 E E No Deposit Transient
## 22402 A A No Deposit Transient
## 22403 A A No Deposit Transient
## 22404 A C No Deposit Transient
## 22405 A C No Deposit Transient
## 22406 D D No Deposit Transient
## 22407 E E No Deposit Transient
## 22408 D D No Deposit Transient
## 22409 A A No Deposit Transient
## 22410 A D No Deposit Transient
## 22411 A A No Deposit Transient
## 22412 A A No Deposit Transient-Party
## 22413 A A No Deposit Transient-Party
## 22414 A A No Deposit Transient
## 22415 A A No Deposit Transient
## 22416 A A No Deposit Group
## 22417 A A No Deposit Transient
## 22418 A A No Deposit Transient
## 22419 D D No Deposit Transient
## 22420 G G No Deposit Transient
## 22421 F F No Deposit Transient
## 22422 A D No Deposit Transient
## 22423 D D No Deposit Transient
## 22424 G G No Deposit Transient
## 22425 D D No Deposit Transient
## 22426 E E No Deposit Transient
## 22427 D D No Deposit Transient
## 22428 A A No Deposit Group
## 22429 E E No Deposit Transient
## 22430 E E No Deposit Transient
## 22431 D D No Deposit Transient
## 22432 A D No Deposit Transient
## 22433 F F No Deposit Transient
## 22434 F F No Deposit Transient
## 22435 A D No Deposit Transient
## 22436 A A No Deposit Transient-Party
## 22437 A A No Deposit Transient-Party
## 22438 E E No Deposit Transient
## 22439 H H No Deposit Transient
## 22440 E E No Deposit Transient
## 22441 D D No Deposit Transient
## 22442 E E No Deposit Transient
## 22443 D I No Deposit Transient
## 22444 E E No Deposit Transient
## 22445 D D No Deposit Transient
## 22446 F F No Deposit Transient
## 22447 D D No Deposit Transient
## 22448 A D No Deposit Transient
## 22449 E E No Deposit Transient
## 22450 E E No Deposit Transient
## 22451 D D No Deposit Transient
## 22452 D D No Deposit Transient
## 22453 A A No Deposit Transient
## 22454 G G No Deposit Transient
## 22455 G G No Deposit Transient
## 22456 E E No Deposit Transient
## 22457 F F No Deposit Transient
## 22458 F F No Deposit Transient
## 22459 D D No Deposit Transient
## 22460 E E No Deposit Transient
## 22461 E E No Deposit Transient
## 22462 D E No Deposit Transient
## 22463 A A No Deposit Transient
## 22464 A A No Deposit Transient-Party
## 22465 D D No Deposit Transient
## 22466 G G No Deposit Transient
## 22467 D D No Deposit Transient
## 22468 E E No Deposit Transient
## 22469 A A No Deposit Transient-Party
## 22470 E E No Deposit Transient
## 22471 D D No Deposit Transient
## 22472 A A No Deposit Transient
## 22473 E F No Deposit Transient
## 22474 E E No Deposit Transient
## 22475 E E No Deposit Transient
## 22476 E E No Deposit Transient
## 22477 A D No Deposit Transient
## 22478 E E No Deposit Transient
## 22479 F F No Deposit Transient
## 22480 A A No Deposit Transient
## 22481 G G No Deposit Transient
## 22482 D D No Deposit Transient
## 22483 A A No Deposit Transient
## 22484 E G No Deposit Transient
## 22485 E E No Deposit Transient
## 22486 C C No Deposit Transient
## 22487 A A No Deposit Transient
## 22488 A D No Deposit Transient
## 22489 D D No Deposit Transient
## 22490 C C No Deposit Transient
## 22491 F F No Deposit Transient
## 22492 H H No Deposit Transient
## 22493 G G No Deposit Transient
## 22494 G G No Deposit Transient
## 22495 G G No Deposit Transient
## 22496 D D No Deposit Transient
## 22497 D D No Deposit Transient
## 22498 D D No Deposit Transient-Party
## 22499 A D No Deposit Transient-Party
## 22500 D D No Deposit Transient
## 22501 D D No Deposit Transient
## 22502 D D No Deposit Transient
## 22503 F F No Deposit Transient
## 22504 A A No Deposit Transient
## 22505 F F No Deposit Transient
## 22506 F F No Deposit Transient
## 22507 D D No Deposit Transient
## 22508 D D No Deposit Transient
## 22509 E E No Deposit Transient
## 22510 E E No Deposit Transient
## 22511 E G No Deposit Transient
## 22512 D D No Deposit Transient
## 22513 D D No Deposit Transient
## 22514 D D No Deposit Transient
## 22515 H H No Deposit Transient
## 22516 A A No Deposit Transient
## 22517 A A No Deposit Transient
## 22518 E E No Deposit Transient
## 22519 D D No Deposit Transient
## 22520 A C No Deposit Transient
## 22521 D D No Deposit Transient
## 22522 A A No Deposit Transient
## 22523 A A No Deposit Transient
## 22524 A I No Deposit Transient
## 22525 H H No Deposit Transient
## 22526 D D No Deposit Transient
## 22527 A D No Deposit Transient
## 22528 A A No Deposit Transient
## 22529 A A No Deposit Transient
## 22530 D D No Deposit Transient
## 22531 D D No Deposit Transient
## 22532 A A No Deposit Transient
## 22533 A D No Deposit Transient
## 22534 A A No Deposit Transient
## 22535 A A No Deposit Transient
## 22536 E E No Deposit Transient
## 22537 D D No Deposit Transient
## 22538 E E No Deposit Transient
## 22539 A A No Deposit Transient
## 22540 E E No Deposit Transient
## 22541 C C No Deposit Transient
## 22542 A A No Deposit Transient
## 22543 A B No Deposit Transient
## 22544 A A No Deposit Transient
## 22545 E E No Deposit Transient
## 22546 D D No Deposit Transient
## 22547 A A No Deposit Transient
## 22548 A A No Deposit Transient
## 22549 E E No Deposit Transient
## 22550 A A No Deposit Transient
## 22551 F F No Deposit Transient
## 22552 D E No Deposit Transient
## 22553 D D No Deposit Transient
## 22554 D D No Deposit Transient
## 22555 E E No Deposit Transient
## 22556 D D No Deposit Transient
## 22557 D D No Deposit Transient
## 22558 A D No Deposit Transient
## 22559 A A No Deposit Transient
## 22560 A D No Deposit Transient
## 22561 D D No Deposit Transient
## 22562 D D No Deposit Transient-Party
## 22563 E E No Deposit Transient
## 22564 A D No Deposit Transient
## 22565 D D No Deposit Transient-Party
## 22566 D D No Deposit Transient
## 22567 A A No Deposit Transient
## 22568 A A No Deposit Transient
## 22569 A A No Deposit Transient
## 22570 E E No Deposit Transient
## 22571 C D No Deposit Transient
## 22572 G G No Deposit Transient
## 22573 A D No Deposit Transient
## 22574 E E No Deposit Transient
## 22575 E E No Deposit Transient
## 22576 A A No Deposit Transient
## 22577 A A No Deposit Transient
## 22578 C C No Deposit Transient
## 22579 A A No Deposit Transient
## 22580 A A No Deposit Transient
## 22581 A A No Deposit Transient-Party
## 22582 E E No Deposit Transient
## 22583 E E No Deposit Transient
## 22584 F E No Deposit Transient
## 22585 D D No Deposit Transient
## 22586 E E No Deposit Transient
## 22587 A A No Deposit Transient
## 22588 D D No Deposit Transient
## 22589 E E No Deposit Transient
## 22590 D D No Deposit Transient
## 22591 A A No Deposit Transient
## 22592 A A No Deposit Transient-Party
## 22593 D E No Deposit Transient
## 22594 A A No Deposit Transient
## 22595 D D No Deposit Transient
## 22596 A D No Deposit Transient
## 22597 A A No Deposit Transient
## 22598 A A No Deposit Transient
## 22599 D D No Deposit Transient
## 22600 A A No Deposit Transient
## 22601 A D No Deposit Transient
## 22602 A A No Deposit Transient
## 22603 A A No Deposit Transient
## 22604 D D No Deposit Transient
## 22605 A A No Deposit Transient
## 22606 A D No Deposit Transient
## 22607 A A No Deposit Transient
## 22608 E E No Deposit Transient
## 22609 A A No Deposit Transient
## 22610 D D No Deposit Transient
## 22611 A D No Deposit Transient
## 22612 A D No Deposit Transient
## 22613 D D No Deposit Transient
## 22614 A D No Deposit Transient
## 22615 A A No Deposit Transient
## 22616 A A No Deposit Transient
## 22617 A A No Deposit Transient-Party
## 22618 A A No Deposit Transient-Party
## 22619 A A No Deposit Transient
## 22620 A A No Deposit Transient
## 22621 E E No Deposit Transient
## 22622 A A No Deposit Transient-Party
## 22623 A E No Deposit Transient-Party
## 22624 A D No Deposit Transient
## 22625 A F No Deposit Transient-Party
## 22626 A A No Deposit Transient-Party
## 22627 A E No Deposit Transient-Party
## 22628 A E No Deposit Transient-Party
## 22629 A E No Deposit Transient
## 22630 A A No Deposit Transient
## 22631 A D No Deposit Transient
## 22632 D D No Deposit Transient
## 22633 A D No Deposit Transient
## 22634 A A No Deposit Transient
## 22635 A A No Deposit Transient
## 22636 E E No Deposit Transient
## 22637 G G No Deposit Transient
## 22638 E E No Deposit Transient
## 22639 A A No Deposit Transient
## 22640 E E No Deposit Transient
## 22641 A A No Deposit Transient
## 22642 A D No Deposit Transient
## 22643 C C No Deposit Transient
## 22644 A D No Deposit Transient
## 22645 A D No Deposit Transient
## 22646 A A No Deposit Transient
## 22647 A A No Deposit Transient
## 22648 A A No Deposit Transient
## 22649 D D No Deposit Transient
## 22650 A A No Deposit Transient
## 22651 F F No Deposit Transient
## 22652 G G No Deposit Transient-Party
## 22653 E E No Deposit Transient
## 22654 A A No Deposit Transient
## 22655 A A No Deposit Transient-Party
## 22656 A A No Deposit Transient
## 22657 E E No Deposit Transient
## 22658 A C No Deposit Transient
## 22659 A D No Deposit Transient
## 22660 G G No Deposit Transient
## 22661 A D No Deposit Transient
## 22662 A A No Deposit Transient
## 22663 A A No Deposit Transient-Party
## 22664 D D No Deposit Transient
## 22665 D E No Deposit Transient
## 22666 D D No Deposit Transient
## 22667 A A No Deposit Transient
## 22668 A A No Deposit Transient
## 22669 E E No Deposit Transient
## 22670 D D No Deposit Transient
## 22671 D D No Deposit Transient
## 22672 D E No Deposit Transient
## 22673 D E No Deposit Transient
## 22674 E E No Deposit Transient
## 22675 D D No Deposit Transient
## 22676 E E No Deposit Transient
## 22677 E E No Deposit Transient
## 22678 D D No Deposit Transient
## 22679 G G No Deposit Transient
## 22680 D E No Deposit Transient
## 22681 A A No Deposit Transient-Party
## 22682 F F No Deposit Transient
## 22683 F F No Deposit Transient
## 22684 A D No Deposit Transient
## 22685 A A No Deposit Transient
## 22686 A A No Deposit Transient
## 22687 A A No Deposit Transient
## 22688 A A No Deposit Transient
## 22689 A A No Deposit Transient
## 22690 A D No Deposit Transient
## 22691 G G No Deposit Transient
## 22692 E E No Deposit Transient
## 22693 H H No Deposit Transient
## 22694 G G No Deposit Transient
## 22695 E E No Deposit Transient-Party
## 22696 E E No Deposit Transient-Party
## 22697 A D No Deposit Transient
## 22698 A A No Deposit Transient
## 22699 A A Refundable Transient-Party
## 22700 A A Refundable Transient-Party
## 22701 A A Refundable Transient-Party
## 22702 A A Refundable Transient-Party
## 22703 D G No Deposit Transient
## 22704 D G No Deposit Transient
## 22705 D D No Deposit Transient
## 22706 G G No Deposit Transient
## 22707 E E No Deposit Transient
## 22708 D D No Deposit Transient
## 22709 G G No Deposit Transient
## 22710 D D No Deposit Transient
## 22711 A A Refundable Transient-Party
## 22712 A A No Deposit Transient
## 22713 D D No Deposit Transient
## 22714 D E No Deposit Transient
## 22715 G G No Deposit Transient
## 22716 A D No Deposit Transient
## 22717 A D No Deposit Transient
## 22718 A D No Deposit Transient
## 22719 A A No Deposit Transient
## 22720 A A Refundable Transient-Party
## 22721 A A Refundable Transient-Party
## 22722 A E Refundable Transient-Party
## 22723 A A Refundable Transient-Party
## 22724 A A Refundable Transient-Party
## 22725 A A Refundable Transient-Party
## 22726 A A No Deposit Transient
## 22727 C C No Deposit Transient
## 22728 A A No Deposit Transient-Party
## 22729 D D No Deposit Transient
## 22730 A A Refundable Transient-Party
## 22731 A A Refundable Transient-Party
## 22732 A A Refundable Transient-Party
## 22733 A A Refundable Transient-Party
## 22734 A A Refundable Transient-Party
## 22735 A D Refundable Transient-Party
## 22736 A D No Deposit Transient-Party
## 22737 A D No Deposit Transient-Party
## 22738 A D No Deposit Transient-Party
## 22739 A D No Deposit Transient
## 22740 A D No Deposit Transient
## 22741 E E No Deposit Transient
## 22742 E F No Deposit Transient
## 22743 A E No Deposit Transient
## 22744 C C No Deposit Transient
## 22745 E E No Deposit Transient
## 22746 G G No Deposit Transient
## 22747 A E Refundable Transient-Party
## 22748 A A Refundable Transient-Party
## 22749 A A No Deposit Transient-Party
## 22750 A A No Deposit Transient
## 22751 A A No Deposit Transient
## 22752 A I No Deposit Transient
## 22753 H H No Deposit Transient
## 22754 A D No Deposit Transient
## 22755 A A No Deposit Transient
## 22756 A D No Deposit Transient
## 22757 D D No Deposit Transient
## 22758 D D No Deposit Transient
## 22759 D D No Deposit Transient-Party
## 22760 D D No Deposit Transient-Party
## 22761 A A No Deposit Transient
## 22762 A A No Deposit Transient
## 22763 D D No Deposit Transient
## 22764 A A No Deposit Transient
## 22765 A A No Deposit Transient
## 22766 A E No Deposit Transient
## 22767 A D No Deposit Transient
## 22768 A I No Deposit Transient
## 22769 A C No Deposit Transient
## 22770 A D No Deposit Transient
## 22771 D D No Deposit Transient
## 22772 A A Non Refund Transient-Party
## 22773 A A Non Refund Transient-Party
## 22774 A A Non Refund Transient-Party
## 22775 A A Non Refund Transient-Party
## 22776 A A Non Refund Transient-Party
## 22777 A A Non Refund Transient-Party
## 22778 A A Non Refund Transient-Party
## 22779 A D Non Refund Transient-Party
## 22780 A A No Deposit Transient
## 22781 A D No Deposit Transient
## 22782 D D No Deposit Transient
## 22783 A D No Deposit Transient
## 22784 E E No Deposit Transient
## 22785 E E No Deposit Transient
## 22786 A A No Deposit Transient
## 22787 D D No Deposit Transient
## 22788 A E No Deposit Transient
## 22789 E E No Deposit Transient
## 22790 A D No Deposit Transient
## 22791 E E No Deposit Transient
## 22792 E E No Deposit Transient
## 22793 E E No Deposit Transient
## 22794 F F No Deposit Transient
## 22795 D D No Deposit Transient
## 22796 D D No Deposit Transient
## 22797 A D No Deposit Transient
## 22798 D D No Deposit Transient
## 22799 D D No Deposit Transient
## 22800 A A No Deposit Group
## 22801 D D No Deposit Transient
## 22802 A A No Deposit Transient
## 22803 A A No Deposit Transient
## 22804 D D No Deposit Transient-Party
## 22805 E E No Deposit Transient
## 22806 D D No Deposit Transient-Party
## 22807 A A No Deposit Transient-Party
## 22808 A D No Deposit Transient
## 22809 A A No Deposit Transient
## 22810 D D No Deposit Transient
## 22811 A D No Deposit Transient
## 22812 D D No Deposit Transient
## 22813 A A No Deposit Transient
## 22814 D D No Deposit Transient
## 22815 C C No Deposit Transient
## 22816 F F No Deposit Transient
## 22817 A A No Deposit Transient
## 22818 A A No Deposit Transient
## 22819 A A No Deposit Transient
## 22820 A A No Deposit Transient
## 22821 A A No Deposit Transient
## 22822 A A No Deposit Transient
## 22823 A D No Deposit Transient
## 22824 A D No Deposit Transient
## 22825 A D No Deposit Transient
## 22826 A A No Deposit Transient
## 22827 G G No Deposit Transient
## 22828 A E No Deposit Transient
## 22829 H H No Deposit Transient
## 22830 A D No Deposit Transient
## 22831 A D No Deposit Transient
## 22832 F F No Deposit Transient
## 22833 E E No Deposit Transient
## 22834 E E No Deposit Transient
## 22835 H H No Deposit Transient
## 22836 A C No Deposit Transient
## 22837 A A No Deposit Transient
## 22838 A D No Deposit Transient
## 22839 A A No Deposit Transient
## 22840 D D No Deposit Transient
## 22841 D D No Deposit Transient
## 22842 E E No Deposit Transient
## 22843 D D No Deposit Transient
## 22844 A C No Deposit Transient-Party
## 22845 E G No Deposit Transient
## 22846 A A No Deposit Transient-Party
## 22847 A C No Deposit Transient-Party
## 22848 A C No Deposit Transient-Party
## 22849 A C No Deposit Transient-Party
## 22850 A C No Deposit Transient-Party
## 22851 A A No Deposit Transient-Party
## 22852 A A No Deposit Transient-Party
## 22853 A C No Deposit Transient
## 22854 D D No Deposit Transient
## 22855 A C No Deposit Transient
## 22856 A A No Deposit Transient
## 22857 D D No Deposit Transient
## 22858 G G No Deposit Transient
## 22859 D D No Deposit Transient
## 22860 A D No Deposit Transient
## 22861 D D No Deposit Transient
## 22862 A A No Deposit Transient
## 22863 A A No Deposit Transient
## 22864 A A No Deposit Transient
## 22865 D D No Deposit Transient
## 22866 G G No Deposit Transient
## 22867 D D No Deposit Transient
## 22868 A A No Deposit Transient
## 22869 A D No Deposit Transient-Party
## 22870 A D No Deposit Transient-Party
## 22871 A A No Deposit Transient
## 22872 A A No Deposit Transient
## 22873 A D No Deposit Transient
## 22874 A D No Deposit Transient
## 22875 A A No Deposit Transient
## 22876 D D No Deposit Transient
## 22877 A D No Deposit Transient
## 22878 D D No Deposit Transient
## 22879 D D No Deposit Transient
## 22880 A A No Deposit Transient
## 22881 A A No Deposit Transient-Party
## 22882 A A No Deposit Transient-Party
## 22883 A A No Deposit Transient-Party
## 22884 A A No Deposit Transient-Party
## 22885 A A No Deposit Transient-Party
## 22886 A A No Deposit Transient-Party
## 22887 A A No Deposit Transient-Party
## 22888 A A No Deposit Transient-Party
## 22889 A A No Deposit Transient-Party
## 22890 A A No Deposit Transient-Party
## 22891 A A No Deposit Transient-Party
## 22892 A A No Deposit Transient-Party
## 22893 A A No Deposit Transient-Party
## 22894 A A No Deposit Transient-Party
## 22895 A A No Deposit Transient-Party
## 22896 A A No Deposit Transient-Party
## 22897 A A No Deposit Transient-Party
## 22898 A A No Deposit Transient-Party
## 22899 A A No Deposit Transient-Party
## 22900 A A No Deposit Transient-Party
## 22901 A A No Deposit Transient-Party
## 22902 A A No Deposit Transient-Party
## 22903 A A No Deposit Transient-Party
## 22904 A A No Deposit Transient-Party
## 22905 A A No Deposit Transient-Party
## 22906 A A No Deposit Transient-Party
## 22907 A A No Deposit Transient-Party
## 22908 A A No Deposit Transient-Party
## 22909 E E No Deposit Transient
## 22910 E E No Deposit Transient
## 22911 F F No Deposit Transient
## 22912 A A No Deposit Transient
## 22913 A C No Deposit Transient-Party
## 22914 A A No Deposit Transient-Party
## 22915 A A No Deposit Transient-Party
## 22916 A D No Deposit Transient-Party
## 22917 A D No Deposit Transient
## 22918 A D No Deposit Transient-Party
## 22919 A D No Deposit Transient
## 22920 E E No Deposit Transient
## 22921 D D No Deposit Transient
## 22922 A D No Deposit Transient
## 22923 A D No Deposit Transient
## 22924 A D No Deposit Transient
## 22925 A A No Deposit Transient
## 22926 G G No Deposit Transient
## 22927 A D No Deposit Transient
## 22928 A D No Deposit Transient
## 22929 A D No Deposit Transient-Party
## 22930 A D No Deposit Transient-Party
## 22931 F F No Deposit Transient
## 22932 D D No Deposit Transient
## 22933 D D No Deposit Transient
## 22934 E E No Deposit Transient-Party
## 22935 E E No Deposit Transient-Party
## 22936 E E No Deposit Transient
## 22937 A E No Deposit Transient
## 22938 D D No Deposit Transient
## 22939 A A No Deposit Group
## 22940 D D No Deposit Transient
## 22941 A D No Deposit Transient
## 22942 F F No Deposit Transient
## 22943 E E No Deposit Transient-Party
## 22944 A A No Deposit Transient
## 22945 E E No Deposit Transient
## 22946 G G No Deposit Transient
## 22947 A E No Deposit Transient
## 22948 E E No Deposit Transient
## 22949 A A No Deposit Transient
## 22950 A A No Deposit Transient-Party
## 22951 A A No Deposit Transient-Party
## 22952 F F No Deposit Transient
## 22953 A I No Deposit Transient-Party
## 22954 F F No Deposit Transient
## 22955 D G No Deposit Transient
## 22956 A G No Deposit Transient
## 22957 A A No Deposit Transient
## 22958 A D No Deposit Transient
## 22959 E E No Deposit Transient
## 22960 F F No Deposit Transient
## 22961 A E No Deposit Transient
## 22962 D D No Deposit Transient
## 22963 E I No Deposit Transient
## 22964 A A No Deposit Transient
## 22965 E E No Deposit Transient
## 22966 A A No Deposit Transient
## 22967 E E No Deposit Transient
## 22968 A A No Deposit Transient
## 22969 E E No Deposit Transient
## 22970 A I No Deposit Transient
## 22971 A D No Deposit Transient-Party
## 22972 E E No Deposit Transient
## 22973 D D No Deposit Transient
## 22974 A A No Deposit Transient
## 22975 A A No Deposit Transient
## 22976 E E No Deposit Transient
## 22977 A A No Deposit Transient
## 22978 A A No Deposit Transient
## 22979 A A No Deposit Transient
## 22980 A A No Deposit Transient-Party
## 22981 A A No Deposit Transient-Party
## 22982 A A No Deposit Transient
## 22983 E E No Deposit Transient
## 22984 A C No Deposit Transient
## 22985 D D No Deposit Transient-Party
## 22986 A D No Deposit Transient
## 22987 D D No Deposit Transient-Party
## 22988 D D No Deposit Transient
## 22989 D E No Deposit Transient
## 22990 E E No Deposit Transient
## 22991 A A No Deposit Transient
## 22992 D D No Deposit Transient-Party
## 22993 A A No Deposit Transient
## 22994 A A No Deposit Transient
## 22995 A C No Deposit Transient
## 22996 A A No Deposit Transient
## 22997 A E No Deposit Transient
## 22998 A A No Deposit Transient
## 22999 A A No Deposit Transient
## 23000 A A No Deposit Transient
## 23001 A F No Deposit Transient
## 23002 G F No Deposit Transient
## 23003 D E No Deposit Transient-Party
## 23004 D E No Deposit Transient-Party
## 23005 A A No Deposit Transient
## 23006 A D No Deposit Transient
## 23007 D D No Deposit Transient
## 23008 A A No Deposit Transient
## 23009 A B No Deposit Transient
## 23010 E E No Deposit Transient
## 23011 H H No Deposit Transient
## 23012 A A No Deposit Transient
## 23013 A A No Deposit Transient
## 23014 A A No Deposit Transient
## 23015 A A No Deposit Transient
## 23016 E G No Deposit Transient
## 23017 E E No Deposit Transient
## 23018 A A No Deposit Transient
## 23019 E F No Deposit Transient
## 23020 E F No Deposit Contract
## 23021 A A No Deposit Contract
## 23022 D F No Deposit Transient
## 23023 A A No Deposit Transient
## 23024 A A No Deposit Transient
## 23025 A D No Deposit Transient-Party
## 23026 E E No Deposit Transient
## 23027 A C No Deposit Transient
## 23028 D I No Deposit Transient
## 23029 D D No Deposit Transient
## 23030 A A No Deposit Transient
## 23031 A A No Deposit Transient
## 23032 A E No Deposit Transient
## 23033 A A No Deposit Transient
## 23034 A A No Deposit Transient
## 23035 A F No Deposit Transient
## 23036 A A No Deposit Transient
## 23037 A B No Deposit Transient
## 23038 A C No Deposit Transient
## 23039 A D No Deposit Transient
## 23040 A A No Deposit Transient
## 23041 A A No Deposit Transient
## 23042 A A No Deposit Transient
## 23043 A D No Deposit Transient
## 23044 A D No Deposit Transient
## 23045 A E No Deposit Transient
## 23046 A A No Deposit Transient
## 23047 A A No Deposit Transient
## 23048 A A No Deposit Transient
## 23049 A D No Deposit Transient
## 23050 A C No Deposit Transient
## 23051 F F No Deposit Transient
## 23052 D D No Deposit Transient
## 23053 A A No Deposit Transient
## 23054 G H No Deposit Transient
## 23055 D D No Deposit Contract
## 23056 A E No Deposit Transient
## 23057 A E No Deposit Transient
## 23058 E E No Deposit Transient
## 23059 A I No Deposit Transient-Party
## 23060 A I No Deposit Transient-Party
## 23061 A A No Deposit Transient
## 23062 A A No Deposit Transient
## 23063 F F No Deposit Transient
## 23064 F F No Deposit Transient
## 23065 F F No Deposit Transient
## 23066 A C No Deposit Transient
## 23067 A A No Deposit Transient
## 23068 A E No Deposit Transient
## 23069 A A No Deposit Transient
## 23070 E E No Deposit Transient
## 23071 E E No Deposit Transient
## 23072 D D No Deposit Transient-Party
## 23073 A A No Deposit Transient-Party
## 23074 G G No Deposit Group
## 23075 E E No Deposit Contract
## 23076 A D No Deposit Transient
## 23077 A C No Deposit Transient
## 23078 A C No Deposit Transient
## 23079 A A No Deposit Transient
## 23080 A A No Deposit Transient
## 23081 A D No Deposit Transient
## 23082 A A No Deposit Transient
## 23083 A F No Deposit Transient
## 23084 A A No Deposit Transient
## 23085 E E No Deposit Transient
## 23086 D D No Deposit Transient
## 23087 A E No Deposit Transient
## 23088 A A No Deposit Transient
## 23089 D D No Deposit Transient
## 23090 A E No Deposit Transient
## 23091 G G No Deposit Transient
## 23092 A A No Deposit Transient
## 23093 A A No Deposit Transient
## 23094 A B No Deposit Transient
## 23095 A A No Deposit Transient
## 23096 A A No Deposit Transient
## 23097 A A No Deposit Transient
## 23098 A A No Deposit Transient
## 23099 E E No Deposit Transient-Party
## 23100 E E No Deposit Transient-Party
## 23101 A A No Deposit Transient
## 23102 A C No Deposit Group
## 23103 A A No Deposit Transient
## 23104 E E No Deposit Transient
## 23105 A C No Deposit Transient
## 23106 A A No Deposit Transient
## 23107 A A No Deposit Transient
## 23108 E E No Deposit Transient
## 23109 A E No Deposit Transient
## 23110 A A No Deposit Transient
## 23111 A A No Deposit Transient-Party
## 23112 D D No Deposit Contract
## 23113 A A No Deposit Transient
## 23114 A A No Deposit Transient
## 23115 A A No Deposit Transient
## 23116 E E No Deposit Transient
## 23117 E E No Deposit Transient
## 23118 E E No Deposit Transient
## 23119 A A No Deposit Transient
## 23120 A A No Deposit Transient
## 23121 A A No Deposit Transient
## 23122 A A No Deposit Transient
## 23123 F F No Deposit Transient
## 23124 A A No Deposit Transient
## 23125 E G No Deposit Transient
## 23126 E E No Deposit Transient
## 23127 A A No Deposit Transient-Party
## 23128 D D No Deposit Transient-Party
## 23129 A A No Deposit Transient-Party
## 23130 A A No Deposit Transient-Party
## 23131 A A No Deposit Transient
## 23132 A A No Deposit Transient
## 23133 A C No Deposit Transient-Party
## 23134 F F No Deposit Transient
## 23135 D D No Deposit Transient-Party
## 23136 A A No Deposit Transient-Party
## 23137 A D No Deposit Transient
## 23138 A A No Deposit Transient
## 23139 A F No Deposit Transient
## 23140 D D No Deposit Transient
## 23141 E E No Deposit Transient
## 23142 A C No Deposit Transient-Party
## 23143 A A No Deposit Transient
## 23144 A A No Deposit Transient
## 23145 A D No Deposit Transient
## 23146 A A No Deposit Transient-Party
## 23147 A C No Deposit Transient-Party
## 23148 A C No Deposit Transient-Party
## 23149 A D No Deposit Contract
## 23150 A A No Deposit Transient-Party
## 23151 A A No Deposit Transient-Party
## 23152 A C No Deposit Transient-Party
## 23153 A A No Deposit Transient-Party
## 23154 A A No Deposit Transient-Party
## 23155 A A No Deposit Transient-Party
## 23156 A A No Deposit Transient-Party
## 23157 A A No Deposit Transient
## 23158 E E No Deposit Transient-Party
## 23159 A A No Deposit Transient
## 23160 A A No Deposit Transient-Party
## 23161 D D No Deposit Transient-Party
## 23162 A A No Deposit Transient-Party
## 23163 D D No Deposit Transient
## 23164 D D No Deposit Transient
## 23165 A A No Deposit Transient
## 23166 A A No Deposit Transient
## 23167 A A No Deposit Transient
## 23168 D E No Deposit Transient-Party
## 23169 D D No Deposit Transient-Party
## 23170 D D Non Refund Transient-Party
## 23171 A E No Deposit Transient-Party
## 23172 D D No Deposit Transient-Party
## 23173 A A No Deposit Group
## 23174 A D No Deposit Transient-Party
## 23175 A D No Deposit Transient-Party
## 23176 D D No Deposit Transient
## 23177 A D No Deposit Transient-Party
## 23178 A D No Deposit Transient-Party
## 23179 A D No Deposit Transient
## 23180 E E No Deposit Transient
## 23181 E E No Deposit Transient
## 23182 D E No Deposit Transient
## 23183 A A No Deposit Transient
## 23184 A E No Deposit Transient
## 23185 A A No Deposit Transient
## 23186 E F No Deposit Transient
## 23187 E E No Deposit Transient
## 23188 D D No Deposit Transient
## 23189 G G No Deposit Transient
## 23190 D D No Deposit Transient
## 23191 D D No Deposit Transient
## 23192 E E No Deposit Transient
## 23193 D D No Deposit Transient
## 23194 H H No Deposit Transient-Party
## 23195 A A No Deposit Transient
## 23196 D E No Deposit Transient
## 23197 A D No Deposit Transient-Party
## 23198 E E No Deposit Transient
## 23199 A D No Deposit Transient-Party
## 23200 C C No Deposit Transient
## 23201 A D No Deposit Transient
## 23202 D D No Deposit Transient
## 23203 D D No Deposit Transient
## 23204 E E No Deposit Transient
## 23205 D D No Deposit Transient
## 23206 A A No Deposit Transient
## 23207 A A No Deposit Transient
## 23208 F F No Deposit Transient
## 23209 A D No Deposit Transient
## 23210 D D No Deposit Transient
## 23211 E E No Deposit Transient
## 23212 D D No Deposit Transient
## 23213 E E No Deposit Transient
## 23214 E E No Deposit Transient
## 23215 D D No Deposit Transient
## 23216 D E No Deposit Transient
## 23217 A E No Deposit Transient
## 23218 E E No Deposit Transient
## 23219 D E No Deposit Transient
## 23220 A A No Deposit Transient
## 23221 A A No Deposit Transient
## 23222 A A No Deposit Transient
## 23223 A A No Deposit Transient
## 23224 E E No Deposit Transient
## 23225 D D No Deposit Transient-Party
## 23226 A A No Deposit Transient
## 23227 A D No Deposit Transient
## 23228 D D No Deposit Transient-Party
## 23229 D D No Deposit Transient-Party
## 23230 D D No Deposit Transient
## 23231 A A No Deposit Transient
## 23232 A A No Deposit Transient
## 23233 A D No Deposit Transient
## 23234 A A No Deposit Transient
## 23235 F F No Deposit Transient
## 23236 A D No Deposit Transient
## 23237 D D No Deposit Transient
## 23238 A A No Deposit Transient
## 23239 A D No Deposit Transient
## 23240 A D No Deposit Transient
## 23241 A D No Deposit Transient
## 23242 A D No Deposit Transient
## 23243 A D No Deposit Transient
## 23244 A A No Deposit Transient
## 23245 A A No Deposit Transient-Party
## 23246 E E No Deposit Transient
## 23247 E E No Deposit Transient
## 23248 F F No Deposit Transient
## 23249 E E No Deposit Transient
## 23250 D D No Deposit Transient-Party
## 23251 E E No Deposit Transient
## 23252 D D No Deposit Transient-Party
## 23253 E E No Deposit Transient-Party
## 23254 D D No Deposit Transient
## 23255 A A No Deposit Transient-Party
## 23256 A E No Deposit Transient-Party
## 23257 A F No Deposit Transient-Party
## 23258 A E No Deposit Transient-Party
## 23259 A E No Deposit Transient-Party
## 23260 A G No Deposit Transient-Party
## 23261 A E No Deposit Transient-Party
## 23262 A E No Deposit Transient-Party
## 23263 A G No Deposit Transient-Party
## 23264 A G No Deposit Transient-Party
## 23265 A E No Deposit Transient-Party
## 23266 A F No Deposit Transient-Party
## 23267 A G No Deposit Transient-Party
## 23268 E E No Deposit Transient
## 23269 A F No Deposit Transient
## 23270 D D No Deposit Transient
## 23271 D D No Deposit Transient-Party
## 23272 A G No Deposit Transient
## 23273 D D No Deposit Transient
## 23274 A E No Deposit Transient
## 23275 A C No Deposit Transient
## 23276 E E No Deposit Transient-Party
## 23277 D D No Deposit Transient-Party
## 23278 D D No Deposit Transient-Party
## 23279 H H No Deposit Transient
## 23280 A A No Deposit Group
## 23281 A A No Deposit Transient
## 23282 E E No Deposit Contract
## 23283 D D No Deposit Contract
## 23284 A A No Deposit Transient
## 23285 A E No Deposit Transient-Party
## 23286 E E No Deposit Transient
## 23287 D D No Deposit Contract
## 23288 A D No Deposit Transient
## 23289 D D No Deposit Transient
## 23290 D D No Deposit Transient-Party
## 23291 D D No Deposit Transient-Party
## 23292 C C No Deposit Transient
## 23293 D D No Deposit Transient-Party
## 23294 D D No Deposit Transient-Party
## 23295 A A No Deposit Transient
## 23296 A E No Deposit Transient-Party
## 23297 A D No Deposit Transient
## 23298 D D No Deposit Transient
## 23299 A D No Deposit Transient
## 23300 A C No Deposit Transient
## 23301 E E No Deposit Transient
## 23302 A A No Deposit Transient
## 23303 A E No Deposit Transient-Party
## 23304 A E No Deposit Transient-Party
## 23305 A A No Deposit Transient
## 23306 A A No Deposit Transient
## 23307 A A No Deposit Transient
## 23308 D D No Deposit Transient
## 23309 D D No Deposit Transient
## 23310 A A No Deposit Transient
## 23311 D D No Deposit Transient
## 23312 D D No Deposit Transient
## 23313 A A No Deposit Transient
## 23314 D F No Deposit Transient
## 23315 D F No Deposit Transient
## 23316 D D No Deposit Transient
## 23317 A A No Deposit Transient
## 23318 A A No Deposit Transient
## 23319 A A No Deposit Transient
## 23320 D D No Deposit Transient
## 23321 D D No Deposit Transient
## 23322 E E No Deposit Contract
## 23323 A A No Deposit Transient
## 23324 D D No Deposit Transient
## 23325 G G No Deposit Transient
## 23326 A A No Deposit Transient
## 23327 E E No Deposit Transient
## 23328 D D No Deposit Transient
## 23329 A A No Deposit Transient
## 23330 D D No Deposit Transient
## 23331 D D No Deposit Transient
## 23332 D F No Deposit Transient
## 23333 E E No Deposit Transient-Party
## 23334 E E No Deposit Transient-Party
## 23335 E E No Deposit Contract
## 23336 A A No Deposit Transient
## 23337 D E No Deposit Transient
## 23338 D D No Deposit Transient
## 23339 D D No Deposit Transient
## 23340 D D No Deposit Transient
## 23341 D D No Deposit Transient
## 23342 A A No Deposit Transient
## 23343 E E No Deposit Transient
## 23344 D E No Deposit Transient
## 23345 A A No Deposit Transient
## 23346 D D No Deposit Transient
## 23347 E E No Deposit Transient
## 23348 A D No Deposit Transient
## 23349 D D No Deposit Transient
## 23350 F F No Deposit Transient
## 23351 A A No Deposit Transient
## 23352 D D No Deposit Transient
## 23353 A A No Deposit Transient
## 23354 A A No Deposit Transient
## 23355 H H No Deposit Transient
## 23356 A A No Deposit Transient
## 23357 D D No Deposit Transient
## 23358 D D No Deposit Transient
## 23359 D D No Deposit Transient
## 23360 E E No Deposit Transient
## 23361 A F No Deposit Transient
## 23362 D D No Deposit Transient
## 23363 E E No Deposit Transient
## 23364 F F No Deposit Transient
## 23365 A A No Deposit Contract
## 23366 E E No Deposit Transient
## 23367 E E No Deposit Contract
## 23368 D D No Deposit Transient
## 23369 D D No Deposit Transient
## 23370 F F No Deposit Transient-Party
## 23371 D D No Deposit Transient-Party
## 23372 D D No Deposit Transient
## 23373 A C No Deposit Transient
## 23374 A C No Deposit Transient-Party
## 23375 D D No Deposit Transient-Party
## 23376 D D No Deposit Transient-Party
## 23377 H H No Deposit Transient
## 23378 A B No Deposit Transient
## 23379 G G No Deposit Transient
## 23380 D D No Deposit Transient
## 23381 A A No Deposit Transient-Party
## 23382 A C No Deposit Transient-Party
## 23383 A C No Deposit Transient-Party
## 23384 A D No Deposit Transient
## 23385 A C No Deposit Transient-Party
## 23386 A C No Deposit Transient-Party
## 23387 A A No Deposit Transient-Party
## 23388 A A No Deposit Transient-Party
## 23389 D D No Deposit Transient
## 23390 C C No Deposit Group
## 23391 G G No Deposit Transient
## 23392 F F No Deposit Transient
## 23393 D D No Deposit Transient
## 23394 A A No Deposit Transient
## 23395 D D No Deposit Transient
## 23396 A C No Deposit Transient
## 23397 A A No Deposit Transient
## 23398 E E No Deposit Transient
## 23399 D D No Deposit Transient
## 23400 A A No Deposit Transient
## 23401 E E No Deposit Transient
## 23402 D D No Deposit Transient
## 23403 F F No Deposit Transient
## 23404 A D No Deposit Transient
## 23405 E E No Deposit Transient
## 23406 E E No Deposit Transient
## 23407 D D No Deposit Transient
## 23408 H H No Deposit Transient
## 23409 E E No Deposit Transient
## 23410 F F No Deposit Transient
## 23411 D D No Deposit Transient
## 23412 E E No Deposit Transient
## 23413 E E No Deposit Transient
## 23414 D D No Deposit Transient
## 23415 F F No Deposit Transient
## 23416 D D No Deposit Transient
## 23417 E E No Deposit Transient
## 23418 C C No Deposit Transient
## 23419 C C No Deposit Transient
## 23420 D D No Deposit Transient
## 23421 E E No Deposit Transient
## 23422 E E No Deposit Transient
## 23423 H H No Deposit Transient
## 23424 A B No Deposit Transient
## 23425 E E No Deposit Transient
## 23426 F F No Deposit Transient
## 23427 A D No Deposit Transient
## 23428 A D No Deposit Transient
## 23429 D D No Deposit Transient
## 23430 D D No Deposit Transient
## 23431 D D No Deposit Transient-Party
## 23432 D D No Deposit Transient
## 23433 E E No Deposit Transient
## 23434 A A No Deposit Transient
## 23435 F F No Deposit Transient
## 23436 F F No Deposit Transient-Party
## 23437 F F No Deposit Transient-Party
## 23438 D D No Deposit Transient
## 23439 A C No Deposit Transient
## 23440 A F No Deposit Transient
## 23441 E E No Deposit Transient-Party
## 23442 E E No Deposit Transient-Party
## 23443 E E No Deposit Transient-Party
## 23444 D D No Deposit Transient-Party
## 23445 D D No Deposit Transient-Party
## 23446 A A No Deposit Transient-Party
## 23447 A A No Deposit Transient-Party
## 23448 A C No Deposit Transient-Party
## 23449 A C No Deposit Transient-Party
## 23450 D D No Deposit Transient-Party
## 23451 E E No Deposit Transient-Party
## 23452 D D No Deposit Transient-Party
## 23453 A A No Deposit Transient
## 23454 A A No Deposit Transient-Party
## 23455 G G No Deposit Transient
## 23456 E I No Deposit Transient
## 23457 A A No Deposit Transient
## 23458 D D No Deposit Transient
## 23459 E E No Deposit Transient
## 23460 D D No Deposit Transient
## 23461 A A No Deposit Transient-Party
## 23462 A A No Deposit Transient-Party
## 23463 A A No Deposit Transient
## 23464 A A No Deposit Transient-Party
## 23465 D D No Deposit Transient
## 23466 A A No Deposit Transient-Party
## 23467 A A No Deposit Transient
## 23468 A A No Deposit Transient-Party
## 23469 A A No Deposit Transient
## 23470 A A No Deposit Transient
## 23471 A A No Deposit Transient-Party
## 23472 D D No Deposit Transient
## 23473 A A No Deposit Transient
## 23474 D D No Deposit Transient
## 23475 D D No Deposit Transient
## 23476 A A No Deposit Transient-Party
## 23477 A D No Deposit Transient
## 23478 D D No Deposit Transient
## 23479 A A No Deposit Transient
## 23480 D D No Deposit Transient
## 23481 D D No Deposit Transient
## 23482 A A No Deposit Transient
## 23483 D D No Deposit Transient
## 23484 A A No Deposit Transient-Party
## 23485 A I No Deposit Transient-Party
## 23486 D I No Deposit Transient
## 23487 E E No Deposit Transient
## 23488 A D No Deposit Transient
## 23489 E E No Deposit Transient
## 23490 A A No Deposit Transient
## 23491 D D No Deposit Transient
## 23492 A D No Deposit Transient
## 23493 A A No Deposit Transient
## 23494 D D No Deposit Transient
## 23495 A A No Deposit Transient
## 23496 A D No Deposit Transient
## 23497 G G No Deposit Transient
## 23498 D D No Deposit Transient
## 23499 A D No Deposit Transient-Party
## 23500 D D No Deposit Transient
## 23501 D D No Deposit Transient
## 23502 A A No Deposit Transient
## 23503 A A No Deposit Transient
## 23504 A D No Deposit Transient-Party
## 23505 A A No Deposit Transient
## 23506 A A No Deposit Transient
## 23507 F F No Deposit Transient
## 23508 A D No Deposit Transient
## 23509 A D No Deposit Transient
## 23510 A D No Deposit Transient
## 23511 A A No Deposit Transient
## 23512 A C No Deposit Transient
## 23513 D D No Deposit Transient
## 23514 D D No Deposit Transient
## 23515 G G No Deposit Transient
## 23516 G G No Deposit Transient
## 23517 G G No Deposit Transient
## 23518 A A No Deposit Transient
## 23519 A C No Deposit Transient
## 23520 A C No Deposit Transient
## 23521 A A No Deposit Transient
## 23522 A A No Deposit Transient
## 23523 A A No Deposit Transient
## 23524 A D No Deposit Transient
## 23525 A D No Deposit Transient
## 23526 D D No Deposit Transient
## 23527 A D No Deposit Transient
## 23528 A A No Deposit Transient
## 23529 A A No Deposit Transient-Party
## 23530 A E No Deposit Transient
## 23531 A D No Deposit Transient
## 23532 A D No Deposit Transient-Party
## 23533 A D No Deposit Transient-Party
## 23534 A D No Deposit Transient
## 23535 E E No Deposit Transient
## 23536 D D No Deposit Transient
## 23537 A A No Deposit Transient
## 23538 A A No Deposit Transient
## 23539 D D No Deposit Transient
## 23540 E E No Deposit Transient
## 23541 D D No Deposit Transient
## 23542 D D No Deposit Transient-Party
## 23543 A D No Deposit Group
## 23544 A A No Deposit Transient
## 23545 A A No Deposit Transient
## 23546 F F No Deposit Transient
## 23547 F F No Deposit Transient
## 23548 D D No Deposit Transient
## 23549 E E No Deposit Transient
## 23550 A I No Deposit Transient-Party
## 23551 A E No Deposit Transient
## 23552 A A No Deposit Transient
## 23553 E E No Deposit Contract
## 23554 E E No Deposit Transient
## 23555 D F No Deposit Transient
## 23556 A A No Deposit Transient
## 23557 G G No Deposit Transient
## 23558 D D No Deposit Transient
## 23559 D D No Deposit Transient
## 23560 D D No Deposit Transient
## 23561 D D No Deposit Transient
## 23562 E E No Deposit Transient
## 23563 D D No Deposit Transient
## 23564 E E No Deposit Transient
## 23565 D D No Deposit Transient
## 23566 E E No Deposit Transient
## 23567 A A No Deposit Transient
## 23568 D D No Deposit Transient
## 23569 A A No Deposit Transient
## 23570 A D No Deposit Group
## 23571 A D No Deposit Transient
## 23572 E E No Deposit Transient
## 23573 A D No Deposit Transient
## 23574 A D No Deposit Transient
## 23575 A D No Deposit Transient
## 23576 A D No Deposit Transient
## 23577 A D No Deposit Transient
## 23578 A D No Deposit Transient
## 23579 D D No Deposit Transient
## 23580 D D No Deposit Transient
## 23581 A A No Deposit Transient-Party
## 23582 A A No Deposit Transient
## 23583 A D No Deposit Transient-Party
## 23584 A A No Deposit Transient-Party
## 23585 A A No Deposit Transient
## 23586 A G No Deposit Transient
## 23587 A A No Deposit Transient
## 23588 A A No Deposit Transient
## 23589 E E No Deposit Transient
## 23590 E E No Deposit Transient
## 23591 D D No Deposit Transient
## 23592 A A No Deposit Transient
## 23593 A A No Deposit Transient-Party
## 23594 A A No Deposit Transient-Party
## 23595 D D No Deposit Transient
## 23596 A A No Deposit Transient
## 23597 A A No Deposit Transient
## 23598 G G No Deposit Transient
## 23599 A A No Deposit Transient
## 23600 E E No Deposit Transient
## 23601 A D No Deposit Transient
## 23602 D D No Deposit Transient
## 23603 F I No Deposit Transient
## 23604 F F No Deposit Transient
## 23605 A A No Deposit Transient
## 23606 A A No Deposit Transient
## 23607 A I No Deposit Transient
## 23608 D D No Deposit Transient
## 23609 A A No Deposit Transient-Party
## 23610 E E No Deposit Transient
## 23611 A A No Deposit Transient-Party
## 23612 A A No Deposit Transient-Party
## 23613 A A No Deposit Transient-Party
## 23614 A A No Deposit Transient-Party
## 23615 A A No Deposit Transient-Party
## 23616 A A No Deposit Transient-Party
## 23617 A A No Deposit Transient-Party
## 23618 A A No Deposit Transient-Party
## 23619 A A No Deposit Transient-Party
## 23620 A A No Deposit Transient-Party
## 23621 A A No Deposit Contract
## 23622 A A No Deposit Contract
## 23623 A A No Deposit Transient-Party
## 23624 A A No Deposit Transient-Party
## 23625 A A No Deposit Transient-Party
## 23626 A A No Deposit Transient-Party
## 23627 A A No Deposit Transient-Party
## 23628 A A No Deposit Transient-Party
## 23629 A A No Deposit Transient-Party
## 23630 A A No Deposit Transient-Party
## 23631 A A No Deposit Transient-Party
## 23632 A A No Deposit Transient-Party
## 23633 A A No Deposit Transient-Party
## 23634 A D No Deposit Transient
## 23635 A F No Deposit Transient
## 23636 D D No Deposit Transient
## 23637 A A No Deposit Transient
## 23638 E E No Deposit Transient
## 23639 A A No Deposit Transient
## 23640 E E No Deposit Transient-Party
## 23641 E E No Deposit Transient-Party
## 23642 E E No Deposit Transient-Party
## 23643 A C No Deposit Transient
## 23644 A C No Deposit Transient
## 23645 A C No Deposit Transient
## 23646 D D No Deposit Transient
## 23647 A A No Deposit Transient
## 23648 A A No Deposit Transient
## 23649 D I No Deposit Transient
## 23650 D I No Deposit Transient
## 23651 D D No Deposit Transient
## 23652 D D No Deposit Transient
## 23653 D D No Deposit Transient
## 23654 G G No Deposit Transient
## 23655 D D No Deposit Transient
## 23656 D D No Deposit Transient
## 23657 E F No Deposit Transient
## 23658 D D No Deposit Transient
## 23659 E E No Deposit Transient
## 23660 E E No Deposit Transient
## 23661 A A No Deposit Transient
## 23662 E E No Deposit Transient
## 23663 E E No Deposit Transient
## 23664 A A No Deposit Transient
## 23665 E E No Deposit Transient
## 23666 G G No Deposit Transient
## 23667 A D No Deposit Transient
## 23668 A A No Deposit Contract
## 23669 A A No Deposit Transient
## 23670 D D No Deposit Transient
## 23671 A C No Deposit Transient
## 23672 D D No Deposit Transient
## 23673 E E No Deposit Transient
## 23674 F F No Deposit Transient-Party
## 23675 F F No Deposit Transient-Party
## 23676 E E No Deposit Transient
## 23677 F F No Deposit Transient
## 23678 F F No Deposit Transient
## 23679 E E No Deposit Transient
## 23680 D D No Deposit Transient
## 23681 A D No Deposit Transient
## 23682 A D No Deposit Transient
## 23683 D D No Deposit Transient
## 23684 G G No Deposit Transient
## 23685 E E No Deposit Transient
## 23686 F F No Deposit Transient
## 23687 D D No Deposit Transient
## 23688 E E No Deposit Transient
## 23689 G G No Deposit Transient
## 23690 F F No Deposit Transient
## 23691 D D No Deposit Transient
## 23692 A C No Deposit Transient-Party
## 23693 A C No Deposit Transient-Party
## 23694 A A No Deposit Transient-Party
## 23695 A A No Deposit Transient-Party
## 23696 A A No Deposit Transient-Party
## 23697 A A No Deposit Transient-Party
## 23698 A A No Deposit Transient-Party
## 23699 A A No Deposit Transient-Party
## 23700 A A No Deposit Transient-Party
## 23701 A A No Deposit Transient-Party
## 23702 A A No Deposit Transient-Party
## 23703 A A No Deposit Transient-Party
## 23704 A A No Deposit Transient-Party
## 23705 A A No Deposit Transient-Party
## 23706 A D No Deposit Transient-Party
## 23707 A D No Deposit Transient-Party
## 23708 A A No Deposit Transient-Party
## 23709 A A No Deposit Transient-Party
## 23710 A A No Deposit Transient-Party
## 23711 A A No Deposit Transient-Party
## 23712 A A No Deposit Transient-Party
## 23713 A A No Deposit Transient-Party
## 23714 A A No Deposit Transient-Party
## 23715 A D No Deposit Transient-Party
## 23716 A D No Deposit Transient-Party
## 23717 A A No Deposit Transient-Party
## 23718 A A No Deposit Transient-Party
## 23719 A A No Deposit Transient-Party
## 23720 A A No Deposit Transient-Party
## 23721 A A No Deposit Transient-Party
## 23722 A B No Deposit Transient-Party
## 23723 A A No Deposit Transient-Party
## 23724 A A No Deposit Transient-Party
## 23725 A A No Deposit Transient-Party
## 23726 A A No Deposit Transient
## 23727 A D No Deposit Transient-Party
## 23728 D D No Deposit Transient
## 23729 D D No Deposit Transient
## 23730 D E No Deposit Transient
## 23731 A C No Deposit Transient-Party
## 23732 A C No Deposit Transient-Party
## 23733 D D No Deposit Transient
## 23734 D D No Deposit Transient
## 23735 D D No Deposit Transient
## 23736 H H No Deposit Transient
## 23737 D I No Deposit Transient
## 23738 D I No Deposit Transient
## 23739 D D No Deposit Transient
## 23740 D D No Deposit Transient
## 23741 D D No Deposit Transient
## 23742 E E No Deposit Transient
## 23743 A A No Deposit Transient
## 23744 D D No Deposit Transient
## 23745 F F No Deposit Transient
## 23746 D D No Deposit Transient
## 23747 E E No Deposit Transient-Party
## 23748 F F No Deposit Transient
## 23749 D D No Deposit Transient
## 23750 D D No Deposit Transient
## 23751 D D No Deposit Transient
## 23752 H H No Deposit Transient
## 23753 E E No Deposit Transient
## 23754 E E No Deposit Transient-Party
## 23755 G G No Deposit Transient
## 23756 D D No Deposit Transient
## 23757 A A No Deposit Transient
## 23758 E E No Deposit Transient-Party
## 23759 D D No Deposit Transient-Party
## 23760 D D No Deposit Transient-Party
## 23761 E E No Deposit Transient
## 23762 D D No Deposit Transient
## 23763 F F No Deposit Transient
## 23764 E E No Deposit Transient
## 23765 A A No Deposit Transient
## 23766 A B No Deposit Transient
## 23767 A A No Deposit Transient
## 23768 A D No Deposit Transient
## 23769 G I No Deposit Transient
## 23770 E I No Deposit Transient
## 23771 D D No Deposit Transient
## 23772 A D No Deposit Transient
## 23773 D D No Deposit Transient
## 23774 E E No Deposit Transient
## 23775 A D No Deposit Transient
## 23776 A I No Deposit Transient
## 23777 E E No Deposit Transient
## 23778 E E No Deposit Transient
## 23779 A A No Deposit Transient
## 23780 D D No Deposit Transient
## 23781 G G No Deposit Transient
## 23782 A C No Deposit Contract
## 23783 A A No Deposit Transient
## 23784 A A No Deposit Transient-Party
## 23785 A A No Deposit Transient-Party
## 23786 A D No Deposit Transient
## 23787 A A No Deposit Transient
## 23788 A D No Deposit Transient
## 23789 A D No Deposit Transient
## 23790 A D No Deposit Transient
## 23791 A A No Deposit Transient
## 23792 A A No Deposit Transient
## 23793 A E No Deposit Transient
## 23794 G G No Deposit Transient
## 23795 D D No Deposit Transient-Party
## 23796 D D No Deposit Transient-Party
## 23797 D D No Deposit Transient-Party
## 23798 F F No Deposit Transient
## 23799 A D No Deposit Transient
## 23800 A A No Deposit Transient
## 23801 A A No Deposit Transient
## 23802 A A No Deposit Transient
## 23803 A A No Deposit Transient
## 23804 A A No Deposit Transient
## 23805 A A No Deposit Transient
## 23806 A A No Deposit Transient
## 23807 A A No Deposit Transient
## 23808 A A No Deposit Transient
## 23809 A A No Deposit Transient
## 23810 G G No Deposit Transient
## 23811 D D No Deposit Transient
## 23812 D D No Deposit Transient
## 23813 E E No Deposit Transient
## 23814 E E No Deposit Transient
## 23815 D D No Deposit Transient
## 23816 A A No Deposit Transient
## 23817 A A No Deposit Transient
## 23818 G G No Deposit Transient
## 23819 E E No Deposit Contract
## 23820 D D No Deposit Transient
## 23821 E E No Deposit Transient
## 23822 D D No Deposit Transient
## 23823 A A No Deposit Transient
## 23824 A A No Deposit Transient
## 23825 A A No Deposit Transient
## 23826 D D No Deposit Transient
## 23827 D D No Deposit Transient
## 23828 D D No Deposit Transient
## 23829 E E No Deposit Transient
## 23830 A A No Deposit Transient
## 23831 A D No Deposit Transient
## 23832 F F No Deposit Transient
## 23833 D D No Deposit Transient
## 23834 D D No Deposit Transient
## 23835 A A No Deposit Transient
## 23836 A A No Deposit Transient
## 23837 A A No Deposit Transient
## 23838 F F No Deposit Transient
## 23839 A A No Deposit Transient-Party
## 23840 A A No Deposit Transient
## 23841 F F No Deposit Transient
## 23842 A A No Deposit Transient
## 23843 D I No Deposit Transient
## 23844 D E No Deposit Transient
## 23845 A E No Deposit Transient
## 23846 E E No Deposit Transient
## 23847 A A No Deposit Transient-Party
## 23848 A A No Deposit Transient-Party
## 23849 A A No Deposit Transient-Party
## 23850 A A No Deposit Transient-Party
## 23851 A A No Deposit Transient
## 23852 F F No Deposit Transient
## 23853 A A No Deposit Transient-Party
## 23854 A E No Deposit Transient
## 23855 E E No Deposit Transient
## 23856 D D No Deposit Transient
## 23857 E E No Deposit Transient
## 23858 A B No Deposit Transient
## 23859 F F No Deposit Transient
## 23860 F F No Deposit Transient
## 23861 A D No Deposit Transient
## 23862 A C No Deposit Transient-Party
## 23863 G G No Deposit Transient
## 23864 A A No Deposit Transient
## 23865 D I No Deposit Contract
## 23866 A A No Deposit Transient
## 23867 F F No Deposit Transient
## 23868 F F No Deposit Transient
## 23869 A A No Deposit Group
## 23870 A A No Deposit Transient
## 23871 D D No Deposit Transient
## 23872 A A No Deposit Transient
## 23873 A A No Deposit Transient-Party
## 23874 A A No Deposit Transient-Party
## 23875 A C No Deposit Transient
## 23876 A A No Deposit Transient-Party
## 23877 A A No Deposit Transient
## 23878 D D No Deposit Transient
## 23879 A A No Deposit Transient-Party
## 23880 A A No Deposit Transient-Party
## 23881 A C No Deposit Transient-Party
## 23882 A A No Deposit Transient
## 23883 A I No Deposit Transient-Party
## 23884 A A No Deposit Transient-Party
## 23885 A A No Deposit Group
## 23886 A A No Deposit Transient
## 23887 G G No Deposit Transient
## 23888 E E No Deposit Transient
## 23889 D D No Deposit Transient
## 23890 A A No Deposit Transient
## 23891 D D No Deposit Transient
## 23892 D D No Deposit Transient
## 23893 A A No Deposit Contract
## 23894 D D No Deposit Transient
## 23895 A D No Deposit Contract
## 23896 D D No Deposit Contract
## 23897 E E No Deposit Contract
## 23898 E E No Deposit Transient
## 23899 A A No Deposit Transient
## 23900 D D No Deposit Transient
## 23901 A C No Deposit Transient
## 23902 D F No Deposit Transient-Party
## 23903 D F No Deposit Transient-Party
## 23904 A A No Deposit Transient
## 23905 A A No Deposit Transient
## 23906 A A No Deposit Transient-Party
## 23907 A A No Deposit Transient-Party
## 23908 D D No Deposit Transient
## 23909 E E No Deposit Transient
## 23910 E E No Deposit Transient
## 23911 A E No Deposit Transient
## 23912 D D No Deposit Transient
## 23913 D D No Deposit Transient
## 23914 D D No Deposit Transient
## 23915 A A No Deposit Transient
## 23916 A C No Deposit Transient
## 23917 E E No Deposit Transient
## 23918 E E No Deposit Transient
## 23919 A A No Deposit Transient
## 23920 E E No Deposit Transient
## 23921 G G No Deposit Transient
## 23922 C H No Deposit Transient-Party
## 23923 A A No Deposit Transient
## 23924 G G No Deposit Transient
## 23925 D D No Deposit Transient
## 23926 A A No Deposit Transient
## 23927 F F No Deposit Transient
## 23928 A D No Deposit Transient
## 23929 A C No Deposit Transient
## 23930 A A No Deposit Transient
## 23931 A A No Deposit Transient
## 23932 A A No Deposit Transient
## 23933 A A No Deposit Transient
## 23934 A A No Deposit Transient
## 23935 A A No Deposit Transient
## 23936 A A No Deposit Transient
## 23937 E E No Deposit Transient
## 23938 E E No Deposit Transient
## 23939 H H No Deposit Transient-Party
## 23940 E E No Deposit Group
## 23941 E E No Deposit Transient-Party
## 23942 G G No Deposit Transient
## 23943 A D No Deposit Transient
## 23944 E F No Deposit Transient
## 23945 E F No Deposit Transient
## 23946 A A No Deposit Transient
## 23947 A A No Deposit Transient
## 23948 A A No Deposit Transient
## 23949 E E No Deposit Transient
## 23950 D E No Deposit Transient
## 23951 A E No Deposit Transient
## 23952 E E No Deposit Transient
## 23953 A A No Deposit Transient
## 23954 A A No Deposit Transient
## 23955 E E No Deposit Contract
## 23956 A A No Deposit Transient
## 23957 A D No Deposit Transient
## 23958 A A No Deposit Transient
## 23959 E E No Deposit Transient
## 23960 D I No Deposit Transient
## 23961 G G No Deposit Transient
## 23962 A A No Deposit Transient
## 23963 G G No Deposit Transient
## 23964 A A No Deposit Transient
## 23965 A A No Deposit Transient-Party
## 23966 A A No Deposit Transient-Party
## 23967 A A No Deposit Transient-Party
## 23968 A A No Deposit Transient-Party
## 23969 A A No Deposit Transient-Party
## 23970 A C No Deposit Contract
## 23971 A A No Deposit Transient
## 23972 D D No Deposit Transient
## 23973 D D No Deposit Transient
## 23974 D D No Deposit Transient
## 23975 A C No Deposit Transient
## 23976 A C No Deposit Transient
## 23977 H H No Deposit Transient
## 23978 D G No Deposit Transient
## 23979 D D No Deposit Transient
## 23980 E E No Deposit Transient
## 23981 A I No Deposit Transient-Party
## 23982 A D No Deposit Transient
## 23983 A A No Deposit Transient-Party
## 23984 A A No Deposit Transient-Party
## 23985 D D No Deposit Transient
## 23986 D E No Deposit Transient
## 23987 A D No Deposit Transient-Party
## 23988 E E No Deposit Transient
## 23989 A A No Deposit Transient-Party
## 23990 D D No Deposit Transient-Party
## 23991 A F No Deposit Transient
## 23992 A I No Deposit Transient-Party
## 23993 A A No Deposit Transient-Party
## 23994 A D No Deposit Transient
## 23995 A F No Deposit Transient
## 23996 A A No Deposit Transient
## 23997 A F No Deposit Transient-Party
## 23998 A C No Deposit Transient-Party
## 23999 A A No Deposit Transient-Party
## 24000 A A No Deposit Transient-Party
## 24001 A A No Deposit Transient-Party
## 24002 A A No Deposit Transient-Party
## 24003 A A No Deposit Transient
## 24004 E E No Deposit Transient
## 24005 D D No Deposit Transient
## 24006 A A No Deposit Transient
## 24007 A A No Deposit Transient-Party
## 24008 A A No Deposit Transient-Party
## 24009 A F No Deposit Transient
## 24010 A F No Deposit Transient
## 24011 A A No Deposit Transient
## 24012 A H No Deposit Transient
## 24013 A A No Deposit Group
## 24014 A E No Deposit Transient-Party
## 24015 A A No Deposit Transient-Party
## 24016 A D No Deposit Transient
## 24017 A A No Deposit Transient
## 24018 A A No Deposit Transient-Party
## 24019 A F No Deposit Transient-Party
## 24020 A F No Deposit Transient
## 24021 D D No Deposit Transient
## 24022 D D No Deposit Transient
## 24023 A A No Deposit Transient
## 24024 A D No Deposit Transient
## 24025 A A No Deposit Transient-Party
## 24026 E E No Deposit Transient
## 24027 E E No Deposit Transient
## 24028 A A No Deposit Transient
## 24029 A I No Deposit Transient-Party
## 24030 A E No Deposit Transient-Party
## 24031 A A No Deposit Transient
## 24032 A C No Deposit Transient
## 24033 A F No Deposit Transient-Party
## 24034 A D No Deposit Transient
## 24035 A A No Deposit Transient
## 24036 A A No Deposit Transient
## 24037 A C No Deposit Transient
## 24038 A C No Deposit Transient
## 24039 A A No Deposit Transient-Party
## 24040 A A No Deposit Transient-Party
## 24041 D D No Deposit Transient
## 24042 D D No Deposit Transient-Party
## 24043 E E No Deposit Transient-Party
## 24044 E E No Deposit Transient-Party
## 24045 E E No Deposit Transient-Party
## 24046 E E No Deposit Transient-Party
## 24047 A C No Deposit Transient
## 24048 D D No Deposit Transient
## 24049 A C No Deposit Transient
## 24050 E I No Deposit Transient
## 24051 D D No Deposit Transient
## 24052 D D No Deposit Transient
## 24053 E F No Deposit Transient
## 24054 A A No Deposit Transient
## 24055 E E No Deposit Transient
## 24056 D D No Deposit Transient
## 24057 A A No Deposit Transient
## 24058 D D No Deposit Contract
## 24059 D D No Deposit Contract
## 24060 E E No Deposit Transient
## 24061 A A No Deposit Transient
## 24062 D D No Deposit Transient
## 24063 D D No Deposit Transient
## 24064 D E No Deposit Transient
## 24065 D D No Deposit Contract
## 24066 D D No Deposit Transient
## 24067 D E No Deposit Contract
## 24068 D D No Deposit Contract
## 24069 A C No Deposit Transient-Party
## 24070 D D No Deposit Contract
## 24071 A A No Deposit Transient
## 24072 D D No Deposit Contract
## 24073 A A No Deposit Contract
## 24074 A A No Deposit Contract
## 24075 A D No Deposit Contract
## 24076 A A No Deposit Contract
## 24077 D D No Deposit Transient
## 24078 D D No Deposit Contract
## 24079 A A No Deposit Transient
## 24080 E E No Deposit Transient
## 24081 A D No Deposit Transient
## 24082 A A No Deposit Transient-Party
## 24083 A C No Deposit Transient-Party
## 24084 D F No Deposit Contract
## 24085 A A No Deposit Transient-Party
## 24086 A E No Deposit Transient
## 24087 A A No Deposit Transient
## 24088 A A No Deposit Transient
## 24089 A A No Deposit Transient
## 24090 A A No Deposit Transient-Party
## 24091 A A No Deposit Contract
## 24092 A D No Deposit Contract
## 24093 A A No Deposit Transient-Party
## 24094 A D No Deposit Contract
## 24095 D D No Deposit Contract
## 24096 A A No Deposit Transient-Party
## 24097 A C No Deposit Transient-Party
## 24098 A A No Deposit Transient-Party
## 24099 A A No Deposit Transient
## 24100 A A No Deposit Contract
## 24101 A A No Deposit Contract
## 24102 D D No Deposit Transient
## 24103 D D No Deposit Transient
## 24104 D D No Deposit Transient
## 24105 A G No Deposit Transient
## 24106 A A No Deposit Transient
## 24107 A A No Deposit Contract
## 24108 A C No Deposit Transient
## 24109 D E No Deposit Contract
## 24110 D D No Deposit Transient
## 24111 H H No Deposit Transient-Party
## 24112 G G No Deposit Transient
## 24113 G G No Deposit Transient
## 24114 A E No Deposit Transient
## 24115 A C No Deposit Transient-Party
## 24116 A C No Deposit Transient-Party
## 24117 A C Refundable Transient-Party
## 24118 A E No Deposit Transient
## 24119 A A No Deposit Transient-Party
## 24120 E E No Deposit Transient
## 24121 A A No Deposit Transient
## 24122 A C No Deposit Transient-Party
## 24123 A C No Deposit Transient-Party
## 24124 A C No Deposit Transient-Party
## 24125 A A No Deposit Transient-Party
## 24126 A D No Deposit Transient-Party
## 24127 A A No Deposit Transient
## 24128 A A No Deposit Transient
## 24129 E E No Deposit Transient-Party
## 24130 A C No Deposit Transient
## 24131 E E No Deposit Transient
## 24132 E E No Deposit Transient
## 24133 G G No Deposit Transient
## 24134 D G No Deposit Transient
## 24135 E E No Deposit Transient
## 24136 D G No Deposit Transient
## 24137 E F No Deposit Transient
## 24138 D D No Deposit Contract
## 24139 A C No Deposit Transient
## 24140 A A No Deposit Transient
## 24141 A A No Deposit Transient
## 24142 D D No Deposit Transient
## 24143 A D No Deposit Transient
## 24144 D D No Deposit Transient
## 24145 A B No Deposit Transient
## 24146 A A No Deposit Transient-Party
## 24147 A A No Deposit Transient-Party
## 24148 A A No Deposit Transient-Party
## 24149 A A No Deposit Transient-Party
## 24150 A A No Deposit Transient-Party
## 24151 A A No Deposit Transient-Party
## 24152 A A No Deposit Transient-Party
## 24153 A A No Deposit Transient-Party
## 24154 A A No Deposit Transient-Party
## 24155 A A No Deposit Transient-Party
## 24156 A A No Deposit Transient-Party
## 24157 A A No Deposit Transient-Party
## 24158 A A No Deposit Transient-Party
## 24159 A A No Deposit Transient-Party
## 24160 A A No Deposit Transient-Party
## 24161 G G No Deposit Transient
## 24162 A A No Deposit Transient
## 24163 D D No Deposit Transient
## 24164 A D No Deposit Transient
## 24165 A H No Deposit Transient-Party
## 24166 A E No Deposit Transient-Party
## 24167 A D No Deposit Transient-Party
## 24168 A F No Deposit Transient-Party
## 24169 A E No Deposit Transient-Party
## 24170 A E No Deposit Transient-Party
## 24171 A E No Deposit Transient-Party
## 24172 A E No Deposit Transient-Party
## 24173 A F No Deposit Transient-Party
## 24174 A F No Deposit Transient-Party
## 24175 A E No Deposit Transient-Party
## 24176 A F No Deposit Transient
## 24177 A D No Deposit Transient-Party
## 24178 E E No Deposit Transient
## 24179 A D No Deposit Transient-Party
## 24180 A E No Deposit Transient-Party
## 24181 A E No Deposit Transient-Party
## 24182 A D No Deposit Transient-Party
## 24183 A D No Deposit Transient-Party
## 24184 A A No Deposit Transient-Party
## 24185 D H No Deposit Transient
## 24186 D D No Deposit Transient
## 24187 A D No Deposit Transient-Party
## 24188 E E No Deposit Transient-Party
## 24189 D D No Deposit Transient
## 24190 A F No Deposit Transient
## 24191 A I No Deposit Transient-Party
## 24192 G G No Deposit Transient-Party
## 24193 A A No Deposit Transient-Party
## 24194 G G No Deposit Transient
## 24195 A C No Deposit Transient
## 24196 A A No Deposit Transient-Party
## 24197 D D No Deposit Transient
## 24198 A I No Deposit Transient-Party
## 24199 A A Refundable Transient-Party
## 24200 A I No Deposit Transient-Party
## 24201 A A Refundable Transient-Party
## 24202 E E No Deposit Transient
## 24203 D D No Deposit Transient
## 24204 E F No Deposit Transient
## 24205 A D No Deposit Transient-Party
## 24206 A D Refundable Transient-Party
## 24207 E F No Deposit Transient
## 24208 G G No Deposit Transient-Party
## 24209 F F No Deposit Transient
## 24210 D D No Deposit Transient
## 24211 A A No Deposit Transient-Party
## 24212 A A No Deposit Group
## 24213 F F No Deposit Transient
## 24214 D E No Deposit Transient
## 24215 A A No Deposit Transient-Party
## 24216 A A No Deposit Group
## 24217 F F No Deposit Transient
## 24218 A A No Deposit Transient-Party
## 24219 A A No Deposit Group
## 24220 D E No Deposit Transient
## 24221 A C No Deposit Transient-Party
## 24222 C C Refundable Transient-Party
## 24223 E E No Deposit Transient
## 24224 A A No Deposit Transient
## 24225 A C No Deposit Transient-Party
## 24226 A D No Deposit Transient-Party
## 24227 A D Refundable Transient-Party
## 24228 D D No Deposit Transient
## 24229 A A No Deposit Transient-Party
## 24230 A I No Deposit Transient-Party
## 24231 A A No Deposit Transient
## 24232 A A No Deposit Transient-Party
## 24233 A A Refundable Transient-Party
## 24234 A C No Deposit Transient-Party
## 24235 A C Refundable Transient-Party
## 24236 A A No Deposit Transient-Party
## 24237 A A Refundable Transient-Party
## 24238 A A No Deposit Transient-Party
## 24239 A A Refundable Transient-Party
## 24240 A A No Deposit Transient-Party
## 24241 A A Refundable Transient-Party
## 24242 A A No Deposit Transient-Party
## 24243 A A Refundable Transient-Party
## 24244 D E No Deposit Transient
## 24245 D E No Deposit Transient
## 24246 A A No Deposit Transient-Party
## 24247 A A Refundable Group
## 24248 A A No Deposit Transient-Party
## 24249 A A Refundable Group
## 24250 A A No Deposit Transient-Party
## 24251 A A Refundable Transient-Party
## 24252 D D No Deposit Transient
## 24253 A A No Deposit Transient-Party
## 24254 A A Refundable Group
## 24255 A A No Deposit Transient
## 24256 A A No Deposit Transient-Party
## 24257 A A Refundable Transient-Party
## 24258 A A No Deposit Transient-Party
## 24259 A A Refundable Transient-Party
## 24260 A A No Deposit Transient-Party
## 24261 A A Refundable Group
## 24262 A A No Deposit Transient-Party
## 24263 A A No Deposit Transient
## 24264 A A No Deposit Transient-Party
## 24265 A A Refundable Group
## 24266 A A No Deposit Transient-Party
## 24267 A A Refundable Transient-Party
## 24268 A A No Deposit Transient-Party
## 24269 A A Refundable Group
## 24270 E E No Deposit Transient
## 24271 A D No Deposit Transient-Party
## 24272 A D No Deposit Transient-Party
## 24273 A D No Deposit Transient
## 24274 A A No Deposit Transient
## 24275 G G No Deposit Transient-Party
## 24276 A A No Deposit Transient
## 24277 A C No Deposit Contract
## 24278 A D No Deposit Transient-Party
## 24279 A D Refundable Group
## 24280 A D No Deposit Transient-Party
## 24281 A D Refundable Group
## 24282 D D No Deposit Transient
## 24283 A A No Deposit Transient
## 24284 D D No Deposit Transient
## 24285 H H No Deposit Transient
## 24286 G G No Deposit Transient
## 24287 E E No Deposit Transient
## 24288 D D No Deposit Transient
## 24289 C C No Deposit Transient-Party
## 24290 A A No Deposit Transient-Party
## 24291 A A No Deposit Transient
## 24292 A A No Deposit Transient-Party
## 24293 D E No Deposit Transient
## 24294 E E No Deposit Transient
## 24295 A A No Deposit Transient
## 24296 D I No Deposit Transient
## 24297 D D No Deposit Transient
## 24298 A I No Deposit Transient-Party
## 24299 A A No Deposit Transient-Party
## 24300 A A No Deposit Transient-Party
## 24301 E E No Deposit Transient
## 24302 A D No Deposit Transient
## 24303 A A No Deposit Transient
## 24304 D D No Deposit Transient
## 24305 D D No Deposit Transient
## 24306 A D No Deposit Transient
## 24307 A A No Deposit Transient
## 24308 G G No Deposit Transient
## 24309 D D No Deposit Transient
## 24310 A I No Deposit Transient
## 24311 A C No Deposit Transient
## 24312 A A No Deposit Transient
## 24313 D D No Deposit Transient
## 24314 D D No Deposit Transient
## 24315 E E No Deposit Transient
## 24316 A A No Deposit Transient
## 24317 A A No Deposit Group
## 24318 A A No Deposit Transient
## 24319 E F No Deposit Transient
## 24320 D D No Deposit Transient
## 24321 A A No Deposit Transient
## 24322 D D No Deposit Transient
## 24323 E E No Deposit Transient
## 24324 A B No Deposit Transient
## 24325 D I No Deposit Transient
## 24326 A A No Deposit Transient
## 24327 D D No Deposit Transient
## 24328 E E No Deposit Transient
## 24329 D D No Deposit Transient
## 24330 D D No Deposit Transient
## 24331 E E No Deposit Transient
## 24332 G G No Deposit Transient
## 24333 D D No Deposit Transient
## 24334 D F No Deposit Transient
## 24335 A A No Deposit Transient
## 24336 A E No Deposit Transient
## 24337 A A No Deposit Transient
## 24338 A E No Deposit Transient
## 24339 D F No Deposit Transient
## 24340 E E No Deposit Transient
## 24341 A I No Deposit Transient
## 24342 E E No Deposit Transient
## 24343 E E No Deposit Transient
## 24344 D E No Deposit Transient
## 24345 E E No Deposit Transient
## 24346 D D No Deposit Transient
## 24347 A C No Deposit Transient
## 24348 A C No Deposit Transient
## 24349 D I No Deposit Transient
## 24350 E E No Deposit Transient
## 24351 A D No Deposit Transient-Party
## 24352 A A No Deposit Transient-Party
## 24353 A D No Deposit Transient-Party
## 24354 A D No Deposit Transient-Party
## 24355 A D No Deposit Transient-Party
## 24356 A D No Deposit Transient-Party
## 24357 A D No Deposit Transient-Party
## 24358 A B No Deposit Transient-Party
## 24359 A H No Deposit Transient-Party
## 24360 D D No Deposit Contract
## 24361 D F No Deposit Contract
## 24362 A A No Deposit Contract
## 24363 D D No Deposit Contract
## 24364 A F No Deposit Contract
## 24365 D D No Deposit Contract
## 24366 A A No Deposit Transient
## 24367 D D No Deposit Transient
## 24368 D D No Deposit Transient
## 24369 D D No Deposit Contract
## 24370 A A No Deposit Transient
## 24371 A A No Deposit Transient
## 24372 A A No Deposit Transient
## 24373 A A No Deposit Transient
## 24374 A A No Deposit Transient
## 24375 C C No Deposit Transient
## 24376 A C No Deposit Transient
## 24377 D D No Deposit Contract
## 24378 A D No Deposit Transient
## 24379 H H No Deposit Transient
## 24380 A C No Deposit Transient
## 24381 E E No Deposit Transient
## 24382 G G No Deposit Transient-Party
## 24383 G G No Deposit Transient-Party
## 24384 G G No Deposit Transient-Party
## 24385 A A No Deposit Transient
## 24386 A A No Deposit Transient
## 24387 G G No Deposit Transient
## 24388 D D No Deposit Transient
## 24389 E E No Deposit Transient
## 24390 A I No Deposit Transient
## 24391 F F No Deposit Transient
## 24392 D D No Deposit Transient
## 24393 E E No Deposit Transient
## 24394 A D No Deposit Transient-Party
## 24395 A A No Deposit Transient
## 24396 A A No Deposit Transient
## 24397 A A No Deposit Transient
## 24398 A A No Deposit Transient
## 24399 A A No Deposit Transient
## 24400 A E No Deposit Transient
## 24401 A A No Deposit Transient
## 24402 A D No Deposit Transient
## 24403 A A No Deposit Transient
## 24404 A D No Deposit Transient-Party
## 24405 A A No Deposit Transient
## 24406 A A No Deposit Transient
## 24407 A D No Deposit Transient
## 24408 A G No Deposit Transient
## 24409 A B No Deposit Transient
## 24410 H H No Deposit Transient
## 24411 D D No Deposit Transient
## 24412 E E No Deposit Transient
## 24413 A A No Deposit Transient
## 24414 F F No Deposit Transient
## 24415 A F No Deposit Transient
## 24416 E E No Deposit Transient
## 24417 D D No Deposit Transient-Party
## 24418 D D No Deposit Transient
## 24419 G G No Deposit Transient
## 24420 A C No Deposit Transient
## 24421 D D No Deposit Transient
## 24422 A A No Deposit Transient
## 24423 D D No Deposit Transient
## 24424 G G No Deposit Transient
## 24425 H I No Deposit Transient
## 24426 D D No Deposit Transient
## 24427 E E No Deposit Transient
## 24428 A D No Deposit Transient
## 24429 D D No Deposit Transient
## 24430 A C No Deposit Transient
## 24431 A A No Deposit Transient
## 24432 A A No Deposit Transient
## 24433 E F No Deposit Transient
## 24434 F F No Deposit Transient-Party
## 24435 F F No Deposit Transient-Party
## 24436 D D No Deposit Transient-Party
## 24437 D D No Deposit Transient-Party
## 24438 D D No Deposit Transient
## 24439 G G No Deposit Transient
## 24440 A A No Deposit Transient
## 24441 A A No Deposit Transient
## 24442 E E No Deposit Transient
## 24443 A A No Deposit Transient
## 24444 A A No Deposit Transient
## 24445 D I No Deposit Transient
## 24446 A B No Deposit Transient
## 24447 A A No Deposit Transient
## 24448 E I No Deposit Transient
## 24449 A A No Deposit Transient
## 24450 D E No Deposit Transient
## 24451 D D No Deposit Contract
## 24452 A A No Deposit Contract
## 24453 E E No Deposit Transient
## 24454 D E No Deposit Transient
## 24455 D D No Deposit Transient
## 24456 D D No Deposit Transient
## 24457 A A No Deposit Transient
## 24458 A A No Deposit Contract
## 24459 A A No Deposit Transient
## 24460 A A No Deposit Transient
## 24461 A A No Deposit Transient
## 24462 A F No Deposit Transient
## 24463 A F No Deposit Transient
## 24464 A A No Deposit Transient
## 24465 A A No Deposit Transient
## 24466 C C No Deposit Transient
## 24467 H H No Deposit Transient
## 24468 D D No Deposit Transient
## 24469 A A No Deposit Transient
## 24470 G G No Deposit Transient
## 24471 A A No Deposit Transient
## 24472 D D No Deposit Transient
## 24473 D D No Deposit Transient
## 24474 A A No Deposit Transient
## 24475 A F No Deposit Transient
## 24476 A D No Deposit Transient
## 24477 A I No Deposit Transient
## 24478 A A No Deposit Transient
## 24479 G I No Deposit Transient
## 24480 G G No Deposit Transient
## 24481 E E No Deposit Transient
## 24482 E E No Deposit Transient-Party
## 24483 A A No Deposit Transient
## 24484 D F No Deposit Transient
## 24485 E F No Deposit Transient
## 24486 A E No Deposit Transient
## 24487 D D No Deposit Transient
## 24488 A A No Deposit Transient
## 24489 E E No Deposit Transient
## 24490 A A No Deposit Transient
## 24491 D D No Deposit Transient
## 24492 A D No Deposit Transient
## 24493 E E No Deposit Transient
## 24494 G G No Deposit Transient
## 24495 D D No Deposit Transient
## 24496 A I No Deposit Transient
## 24497 A A No Deposit Transient
## 24498 A A No Deposit Transient
## 24499 A A No Deposit Transient
## 24500 A A No Deposit Transient
## 24501 A A No Deposit Transient
## 24502 A A No Deposit Transient
## 24503 A A No Deposit Transient
## 24504 A A No Deposit Transient
## 24505 G G No Deposit Transient
## 24506 A A No Deposit Transient
## 24507 A A No Deposit Transient
## 24508 D D No Deposit Transient-Party
## 24509 A H No Deposit Transient
## 24510 E E No Deposit Transient
## 24511 E E No Deposit Transient-Party
## 24512 E E No Deposit Transient-Party
## 24513 A E No Deposit Transient
## 24514 F F No Deposit Transient
## 24515 D D No Deposit Transient
## 24516 D D No Deposit Transient-Party
## 24517 D D No Deposit Transient-Party
## 24518 A A No Deposit Transient
## 24519 A A No Deposit Transient
## 24520 A C No Deposit Transient
## 24521 E E No Deposit Transient
## 24522 E E No Deposit Transient
## 24523 A A No Deposit Transient
## 24524 A C No Deposit Transient
## 24525 A A No Deposit Transient
## 24526 E E No Deposit Transient
## 24527 A E No Deposit Transient
## 24528 A G No Deposit Transient
## 24529 A A No Deposit Transient
## 24530 E E No Deposit Transient
## 24531 D E No Deposit Transient
## 24532 A C No Deposit Transient
## 24533 A A No Deposit Transient
## 24534 D F No Deposit Transient
## 24535 A A No Deposit Transient
## 24536 A A No Deposit Transient
## 24537 D D No Deposit Transient-Party
## 24538 D D No Deposit Transient-Party
## 24539 F F No Deposit Transient
## 24540 A E No Deposit Transient
## 24541 A G No Deposit Transient
## 24542 D G No Deposit Transient
## 24543 D F No Deposit Transient
## 24544 D D No Deposit Transient
## 24545 D D No Deposit Transient
## 24546 E F No Deposit Transient
## 24547 D E No Deposit Transient
## 24548 A H No Deposit Transient
## 24549 E E No Deposit Transient
## 24550 D E No Deposit Transient
## 24551 A A No Deposit Transient
## 24552 E E No Deposit Transient
## 24553 A A No Deposit Transient
## 24554 D F No Deposit Transient
## 24555 A C No Deposit Transient
## 24556 E H No Deposit Transient
## 24557 A A No Deposit Transient
## 24558 D D No Deposit Transient
## 24559 A A No Deposit Transient
## 24560 A C No Deposit Transient
## 24561 A A No Deposit Transient
## 24562 A A No Deposit Transient
## 24563 A A No Deposit Contract
## 24564 D D No Deposit Contract
## 24565 A A No Deposit Contract
## 24566 A A No Deposit Contract
## 24567 D D No Deposit Contract
## 24568 D D No Deposit Contract
## 24569 D D No Deposit Transient
## 24570 A G No Deposit Transient
## 24571 D D No Deposit Contract
## 24572 A A No Deposit Contract
## 24573 A A No Deposit Contract
## 24574 D D No Deposit Transient
## 24575 A A No Deposit Contract
## 24576 A A No Deposit Contract
## 24577 A A No Deposit Contract
## 24578 E E No Deposit Contract
## 24579 D D No Deposit Contract
## 24580 F F No Deposit Transient
## 24581 D F No Deposit Transient
## 24582 D D No Deposit Contract
## 24583 A A No Deposit Transient
## 24584 D E No Deposit Transient
## 24585 A A No Deposit Contract
## 24586 A A No Deposit Contract
## 24587 A A No Deposit Transient
## 24588 A F No Deposit Contract
## 24589 D E No Deposit Transient
## 24590 A A No Deposit Transient
## 24591 D E No Deposit Transient-Party
## 24592 D D No Deposit Transient
## 24593 G G No Deposit Transient
## 24594 D E No Deposit Transient-Party
## 24595 D E No Deposit Transient
## 24596 A C No Deposit Transient-Party
## 24597 A C No Deposit Transient-Party
## 24598 D D No Deposit Transient
## 24599 A H No Deposit Transient
## 24600 F F No Deposit Transient-Party
## 24601 A A No Deposit Transient
## 24602 D D No Deposit Transient
## 24603 A C No Deposit Transient
## 24604 F F No Deposit Transient-Party
## 24605 G I No Deposit Transient
## 24606 A A No Deposit Transient
## 24607 E E No Deposit Transient
## 24608 A A No Deposit Contract
## 24609 A A No Deposit Contract
## 24610 D D No Deposit Contract
## 24611 C C No Deposit Transient
## 24612 D I No Deposit Contract
## 24613 D D No Deposit Transient
## 24614 D D No Deposit Contract
## 24615 E E No Deposit Transient
## 24616 A A No Deposit Transient
## 24617 A A No Deposit Transient
## 24618 D D No Deposit Transient
## 24619 E E No Deposit Transient
## 24620 F F No Deposit Transient
## 24621 E F No Deposit Transient
## 24622 D E No Deposit Transient
## 24623 E E No Deposit Transient
## 24624 A A No Deposit Transient
## 24625 A A No Deposit Transient
## 24626 D D No Deposit Transient
## 24627 D D No Deposit Transient
## 24628 A E No Deposit Transient
## 24629 A A No Deposit Transient
## 24630 G G No Deposit Transient-Party
## 24631 G G No Deposit Transient-Party
## 24632 D E No Deposit Transient-Party
## 24633 D E No Deposit Transient-Party
## 24634 D D No Deposit Transient
## 24635 E E No Deposit Transient
## 24636 E E No Deposit Transient
## 24637 D D No Deposit Transient
## 24638 H H No Deposit Transient
## 24639 D D No Deposit Transient
## 24640 G G No Deposit Transient
## 24641 G G No Deposit Transient
## 24642 A A No Deposit Transient
## 24643 D D No Deposit Transient
## 24644 D E No Deposit Transient
## 24645 F F No Deposit Transient
## 24646 D D No Deposit Transient
## 24647 D D No Deposit Contract
## 24648 D D No Deposit Transient
## 24649 D D No Deposit Transient
## 24650 D D No Deposit Transient
## 24651 D D No Deposit Contract
## 24652 A A No Deposit Transient
## 24653 D E No Deposit Contract
## 24654 A A No Deposit Transient
## 24655 D D No Deposit Transient
## 24656 D D No Deposit Transient
## 24657 D E No Deposit Transient
## 24658 G G No Deposit Transient
## 24659 A A No Deposit Transient
## 24660 H H No Deposit Transient
## 24661 C I No Deposit Transient
## 24662 G G No Deposit Transient
## 24663 F F No Deposit Transient
## 24664 A A No Deposit Transient
## 24665 A A No Deposit Transient
## 24666 A A No Deposit Transient
## 24667 D D No Deposit Transient
## 24668 F F No Deposit Transient
## 24669 D D No Deposit Transient
## 24670 E E No Deposit Transient
## 24671 E E No Deposit Transient-Party
## 24672 A A No Deposit Transient-Party
## 24673 G G No Deposit Transient
## 24674 D E No Deposit Transient
## 24675 D H No Deposit Transient
## 24676 A A No Deposit Group
## 24677 A A No Deposit Group
## 24678 A A No Deposit Transient
## 24679 D E No Deposit Transient
## 24680 A A No Deposit Transient
## 24681 F F No Deposit Transient
## 24682 A C No Deposit Transient-Party
## 24683 D D No Deposit Contract
## 24684 A A No Deposit Transient
## 24685 C C No Deposit Transient
## 24686 F F No Deposit Transient
## 24687 G G No Deposit Transient
## 24688 G G No Deposit Transient
## 24689 C C No Deposit Group
## 24690 D D No Deposit Transient
## 24691 D D No Deposit Transient
## 24692 D D No Deposit Transient
## 24693 H H No Deposit Transient
## 24694 A A No Deposit Transient
## 24695 A C No Deposit Transient
## 24696 D D No Deposit Transient
## 24697 A C No Deposit Transient
## 24698 F F No Deposit Transient
## 24699 A A No Deposit Contract
## 24700 D D No Deposit Transient
## 24701 A C No Deposit Transient
## 24702 A D No Deposit Transient
## 24703 A A No Deposit Transient
## 24704 G G No Deposit Transient
## 24705 A A No Deposit Transient
## 24706 E E No Deposit Transient
## 24707 A C No Deposit Transient
## 24708 A A No Deposit Transient
## 24709 A A No Deposit Transient
## 24710 D E No Deposit Transient
## 24711 A A No Deposit Transient
## 24712 A A No Deposit Transient
## 24713 D E No Deposit Transient
## 24714 A A No Deposit Transient
## 24715 A C No Deposit Transient
## 24716 A A No Deposit Transient
## 24717 A A No Deposit Transient
## 24718 A A No Deposit Transient
## 24719 E E No Deposit Transient
## 24720 A D No Deposit Transient
## 24721 A C No Deposit Transient
## 24722 D D No Deposit Transient
## 24723 F F No Deposit Transient
## 24724 A D No Deposit Transient
## 24725 A D No Deposit Transient
## 24726 D D No Deposit Transient
## 24727 A A No Deposit Transient
## 24728 E E No Deposit Transient
## 24729 D D No Deposit Transient
## 24730 D D No Deposit Transient
## 24731 D D No Deposit Transient
## 24732 C C No Deposit Transient
## 24733 D D No Deposit Contract
## 24734 D E No Deposit Transient
## 24735 D F No Deposit Transient-Party
## 24736 D F No Deposit Transient-Party
## 24737 D F No Deposit Transient-Party
## 24738 A A No Deposit Transient
## 24739 A A No Deposit Transient
## 24740 A A No Deposit Transient
## 24741 A A No Deposit Transient
## 24742 A A No Deposit Transient
## 24743 A A No Deposit Transient
## 24744 A A No Deposit Transient
## 24745 A A No Deposit Transient-Party
## 24746 A A No Deposit Transient
## 24747 D D No Deposit Transient
## 24748 A C No Deposit Transient
## 24749 A A No Deposit Transient
## 24750 D D No Deposit Transient
## 24751 G G No Deposit Transient
## 24752 A A No Deposit Transient
## 24753 A A No Deposit Transient
## 24754 A A No Deposit Transient
## 24755 E F No Deposit Transient
## 24756 D D No Deposit Transient
## 24757 D D No Deposit Transient
## 24758 D D No Deposit Transient
## 24759 A A No Deposit Transient
## 24760 A A No Deposit Transient
## 24761 D G No Deposit Transient
## 24762 A A No Deposit Transient
## 24763 D D No Deposit Contract
## 24764 D D No Deposit Transient
## 24765 A C No Deposit Transient
## 24766 E E No Deposit Transient
## 24767 A C No Deposit Transient
## 24768 A C No Deposit Transient
## 24769 D D No Deposit Transient-Party
## 24770 D D No Deposit Transient-Party
## 24771 A A No Deposit Transient
## 24772 A C No Deposit Transient-Party
## 24773 D E No Deposit Transient
## 24774 A A No Deposit Transient-Party
## 24775 G G No Deposit Transient
## 24776 A A No Deposit Transient
## 24777 A A No Deposit Transient-Party
## 24778 A A No Deposit Transient-Party
## 24779 D E No Deposit Transient
## 24780 A A No Deposit Transient-Party
## 24781 D E No Deposit Transient
## 24782 A A No Deposit Transient
## 24783 A B No Deposit Transient
## 24784 D E No Deposit Transient
## 24785 A F No Deposit Transient
## 24786 A E No Deposit Transient
## 24787 H H No Deposit Transient
## 24788 A A No Deposit Transient
## 24789 A A No Deposit Transient
## 24790 A A No Deposit Transient
## 24791 A A No Deposit Transient
## 24792 A A No Deposit Transient
## 24793 A C No Deposit Transient
## 24794 A A No Deposit Transient
## 24795 A A No Deposit Transient
## 24796 A A No Deposit Transient
## 24797 D D No Deposit Transient
## 24798 E E No Deposit Transient
## 24799 A A No Deposit Transient
## 24800 A A No Deposit Transient
## 24801 A A No Deposit Transient
## 24802 A A No Deposit Transient
## 24803 A A No Deposit Transient
## 24804 D D No Deposit Transient
## 24805 D D No Deposit Transient
## 24806 F F No Deposit Transient
## 24807 D D No Deposit Group
## 24808 A C No Deposit Transient
## 24809 A A No Deposit Transient
## 24810 D D No Deposit Transient
## 24811 A A No Deposit Transient
## 24812 D D No Deposit Transient
## 24813 G G No Deposit Transient
## 24814 D D No Deposit Transient
## 24815 G G No Deposit Transient
## 24816 E E No Deposit Transient
## 24817 D D No Deposit Transient
## 24818 D D No Deposit Transient
## 24819 A A No Deposit Transient-Party
## 24820 A A No Deposit Transient
## 24821 F F No Deposit Transient
## 24822 F F No Deposit Transient
## 24823 D D No Deposit Transient
## 24824 A A No Deposit Transient
## 24825 D D No Deposit Transient
## 24826 D D No Deposit Transient
## 24827 C C No Deposit Transient
## 24828 A A No Deposit Transient
## 24829 G G No Deposit Transient
## 24830 H H No Deposit Transient
## 24831 D D No Deposit Contract
## 24832 A D No Deposit Contract
## 24833 H H No Deposit Transient
## 24834 G G No Deposit Transient
## 24835 D D No Deposit Transient
## 24836 F F No Deposit Transient
## 24837 A A No Deposit Transient
## 24838 E E No Deposit Transient
## 24839 G G No Deposit Transient
## 24840 A A No Deposit Transient
## 24841 A A No Deposit Transient
## 24842 A A No Deposit Transient
## 24843 D D No Deposit Transient
## 24844 D E No Deposit Transient
## 24845 A A No Deposit Transient
## 24846 F F No Deposit Transient
## 24847 A F No Deposit Transient
## 24848 D D No Deposit Transient
## 24849 A A No Deposit Transient
## 24850 A C No Deposit Transient
## 24851 A C No Deposit Transient
## 24852 A A No Deposit Transient
## 24853 A A No Deposit Transient
## 24854 E E No Deposit Transient
## 24855 D D No Deposit Transient
## 24856 H H No Deposit Transient
## 24857 A A No Deposit Transient
## 24858 D D No Deposit Transient
## 24859 H I No Deposit Transient
## 24860 H H No Deposit Transient
## 24861 A C No Deposit Transient
## 24862 E F No Deposit Transient
## 24863 A A No Deposit Transient
## 24864 A C No Deposit Transient
## 24865 F F No Deposit Transient
## 24866 A C No Deposit Transient
## 24867 A C No Deposit Transient
## 24868 A A No Deposit Transient
## 24869 G G No Deposit Transient
## 24870 A A No Deposit Contract
## 24871 A B No Deposit Transient
## 24872 A I No Deposit Transient
## 24873 E E No Deposit Transient
## 24874 A A No Deposit Contract
## 24875 A A No Deposit Transient
## 24876 A A No Deposit Transient
## 24877 A A No Deposit Transient
## 24878 A A No Deposit Transient-Party
## 24879 D D No Deposit Transient
## 24880 D E No Deposit Transient
## 24881 A A No Deposit Transient-Party
## 24882 D E No Deposit Transient
## 24883 D E No Deposit Transient-Party
## 24884 D D No Deposit Transient
## 24885 A A No Deposit Transient
## 24886 E E No Deposit Transient
## 24887 A A No Deposit Transient
## 24888 A B No Deposit Transient
## 24889 E E No Deposit Transient
## 24890 E E No Deposit Transient
## 24891 E E No Deposit Transient
## 24892 A C No Deposit Transient
## 24893 A A No Deposit Transient
## 24894 A A No Deposit Transient
## 24895 C C No Deposit Transient
## 24896 C C No Deposit Transient
## 24897 A A No Deposit Transient
## 24898 A A No Deposit Transient-Party
## 24899 A A No Deposit Transient-Party
## 24900 D D No Deposit Transient
## 24901 A A No Deposit Transient
## 24902 A A No Deposit Transient
## 24903 A B No Deposit Transient
## 24904 D E No Deposit Transient
## 24905 F I No Deposit Transient
## 24906 A A No Deposit Contract
## 24907 D D No Deposit Contract
## 24908 A A No Deposit Transient
## 24909 D D No Deposit Contract
## 24910 D D No Deposit Transient
## 24911 D D No Deposit Contract
## 24912 A A No Deposit Contract
## 24913 A A No Deposit Transient
## 24914 D D No Deposit Contract
## 24915 D D No Deposit Contract
## 24916 D D No Deposit Group
## 24917 A C No Deposit Transient
## 24918 D E No Deposit Transient
## 24919 A A No Deposit Transient
## 24920 D D No Deposit Contract
## 24921 D D No Deposit Contract
## 24922 F G No Deposit Transient
## 24923 D E No Deposit Transient
## 24924 A A No Deposit Transient
## 24925 A A No Deposit Transient
## 24926 A A No Deposit Transient
## 24927 A A No Deposit Transient
## 24928 A C No Deposit Transient
## 24929 H H No Deposit Transient
## 24930 H H No Deposit Transient
## 24931 A A No Deposit Transient
## 24932 A A No Deposit Transient
## 24933 G G No Deposit Transient
## 24934 A A No Deposit Contract
## 24935 A A No Deposit Transient
## 24936 A C No Deposit Transient
## 24937 E G No Deposit Transient
## 24938 D D No Deposit Transient
## 24939 A C No Deposit Transient
## 24940 E F No Deposit Transient
## 24941 D D No Deposit Contract
## 24942 A A No Deposit Transient
## 24943 A A No Deposit Transient
## 24944 E E No Deposit Transient
## 24945 E E No Deposit Transient
## 24946 A B No Deposit Transient
## 24947 E E No Deposit Transient
## 24948 D D No Deposit Contract
## 24949 A A No Deposit Transient-Party
## 24950 A A No Deposit Transient
## 24951 A A No Deposit Transient
## 24952 E E No Deposit Transient
## 24953 E E No Deposit Transient
## 24954 A A No Deposit Transient-Party
## 24955 A A No Deposit Transient-Party
## 24956 A A No Deposit Transient-Party
## 24957 A A No Deposit Transient
## 24958 E E No Deposit Contract
## 24959 A A No Deposit Transient
## 24960 A A No Deposit Transient
## 24961 A A No Deposit Transient
## 24962 A A No Deposit Transient
## 24963 D D No Deposit Transient
## 24964 D D No Deposit Contract
## 24965 A A No Deposit Transient
## 24966 D D No Deposit Transient
## 24967 A A No Deposit Transient
## 24968 D D No Deposit Transient
## 24969 E E No Deposit Transient
## 24970 A G No Deposit Transient
## 24971 C C No Deposit Transient
## 24972 A C No Deposit Transient
## 24973 D D No Deposit Transient
## 24974 E E No Deposit Contract
## 24975 A A No Deposit Transient
## 24976 D D No Deposit Contract
## 24977 A A No Deposit Transient
## 24978 A A No Deposit Transient
## 24979 A A No Deposit Transient-Party
## 24980 C C No Deposit Transient
## 24981 A A No Deposit Transient
## 24982 E E No Deposit Transient
## 24983 A A No Deposit Transient
## 24984 A A No Deposit Transient
## 24985 A A No Deposit Transient
## 24986 A A No Deposit Contract
## 24987 A A No Deposit Transient
## 24988 A C No Deposit Transient
## 24989 A A No Deposit Transient
## 24990 G G No Deposit Transient
## 24991 E E No Deposit Transient
## 24992 E E No Deposit Transient
## 24993 E E No Deposit Transient
## 24994 A A No Deposit Transient
## 24995 D F No Deposit Contract
## 24996 G G No Deposit Transient
## 24997 A A No Deposit Transient-Party
## 24998 A A No Deposit Transient-Party
## 24999 D D No Deposit Contract
## [ reached 'max' / getOption("max.print") -- omitted 94391 rows ]
hotels %>%
select(starts_with("arrival"))
## arrival_date_year arrival_date_month arrival_date_week_number
## 1 2015 July 27
## 2 2015 July 27
## 3 2015 July 27
## 4 2015 July 27
## 5 2015 July 27
## 6 2015 July 27
## 7 2015 July 27
## 8 2015 July 27
## 9 2015 July 27
## 10 2015 July 27
## 11 2015 July 27
## 12 2015 July 27
## 13 2015 July 27
## 14 2015 July 27
## 15 2015 July 27
## 16 2015 July 27
## 17 2015 July 27
## 18 2015 July 27
## 19 2015 July 27
## 20 2015 July 27
## 21 2015 July 27
## 22 2015 July 27
## 23 2015 July 27
## 24 2015 July 27
## 25 2015 July 27
## 26 2015 July 27
## 27 2015 July 27
## 28 2015 July 27
## 29 2015 July 27
## 30 2015 July 27
## 31 2015 July 27
## 32 2015 July 27
## 33 2015 July 27
## 34 2015 July 27
## 35 2015 July 27
## 36 2015 July 27
## 37 2015 July 27
## 38 2015 July 27
## 39 2015 July 27
## 40 2015 July 27
## 41 2015 July 27
## 42 2015 July 27
## 43 2015 July 27
## 44 2015 July 27
## 45 2015 July 27
## 46 2015 July 27
## 47 2015 July 27
## 48 2015 July 27
## 49 2015 July 27
## 50 2015 July 27
## 51 2015 July 27
## 52 2015 July 27
## 53 2015 July 27
## 54 2015 July 27
## 55 2015 July 27
## 56 2015 July 27
## 57 2015 July 27
## 58 2015 July 27
## 59 2015 July 27
## 60 2015 July 27
## 61 2015 July 27
## 62 2015 July 27
## 63 2015 July 27
## 64 2015 July 27
## 65 2015 July 27
## 66 2015 July 27
## 67 2015 July 27
## 68 2015 July 27
## 69 2015 July 27
## 70 2015 July 27
## 71 2015 July 27
## 72 2015 July 27
## 73 2015 July 27
## 74 2015 July 27
## 75 2015 July 27
## 76 2015 July 27
## 77 2015 July 27
## 78 2015 July 27
## 79 2015 July 27
## 80 2015 July 27
## 81 2015 July 27
## 82 2015 July 27
## 83 2015 July 27
## 84 2015 July 27
## 85 2015 July 27
## 86 2015 July 27
## 87 2015 July 27
## 88 2015 July 27
## 89 2015 July 27
## 90 2015 July 27
## 91 2015 July 27
## 92 2015 July 27
## 93 2015 July 27
## 94 2015 July 27
## 95 2015 July 27
## 96 2015 July 27
## 97 2015 July 27
## 98 2015 July 27
## 99 2015 July 27
## 100 2015 July 27
## 101 2015 July 27
## 102 2015 July 27
## 103 2015 July 27
## 104 2015 July 27
## 105 2015 July 27
## 106 2015 July 27
## 107 2015 July 27
## 108 2015 July 27
## 109 2015 July 27
## 110 2015 July 27
## 111 2015 July 27
## 112 2015 July 27
## 113 2015 July 27
## 114 2015 July 27
## 115 2015 July 27
## 116 2015 July 27
## 117 2015 July 27
## 118 2015 July 27
## 119 2015 July 27
## 120 2015 July 27
## 121 2015 July 27
## 122 2015 July 27
## 123 2015 July 27
## 124 2015 July 27
## 125 2015 July 27
## 126 2015 July 27
## 127 2015 July 27
## 128 2015 July 27
## 129 2015 July 27
## 130 2015 July 27
## 131 2015 July 27
## 132 2015 July 28
## 133 2015 July 28
## 134 2015 July 28
## 135 2015 July 28
## 136 2015 July 28
## 137 2015 July 28
## 138 2015 July 28
## 139 2015 July 28
## 140 2015 July 28
## 141 2015 July 28
## 142 2015 July 28
## 143 2015 July 28
## 144 2015 July 28
## 145 2015 July 28
## 146 2015 July 28
## 147 2015 July 28
## 148 2015 July 28
## 149 2015 July 28
## 150 2015 July 28
## 151 2015 July 28
## 152 2015 July 28
## 153 2015 July 28
## 154 2015 July 28
## 155 2015 July 28
## 156 2015 July 28
## 157 2015 July 28
## 158 2015 July 28
## 159 2015 July 28
## 160 2015 July 28
## 161 2015 July 28
## 162 2015 July 28
## 163 2015 July 28
## 164 2015 July 28
## 165 2015 July 28
## 166 2015 July 28
## 167 2015 July 28
## 168 2015 July 28
## 169 2015 July 28
## 170 2015 July 28
## 171 2015 July 28
## 172 2015 July 28
## 173 2015 July 28
## 174 2015 July 28
## 175 2015 July 28
## 176 2015 July 28
## 177 2015 July 28
## 178 2015 July 28
## 179 2015 July 28
## 180 2015 July 28
## 181 2015 July 28
## 182 2015 July 28
## 183 2015 July 28
## 184 2015 July 28
## 185 2015 July 28
## 186 2015 July 28
## 187 2015 July 28
## 188 2015 July 28
## 189 2015 July 28
## 190 2015 July 28
## 191 2015 July 28
## 192 2015 July 28
## 193 2015 July 28
## 194 2015 July 28
## 195 2015 July 28
## 196 2015 July 28
## 197 2015 July 28
## 198 2015 July 28
## 199 2015 July 28
## 200 2015 July 28
## 201 2015 July 28
## 202 2015 July 28
## 203 2015 July 28
## 204 2015 July 28
## 205 2015 July 28
## 206 2015 July 28
## 207 2015 July 28
## 208 2015 July 28
## 209 2015 July 28
## 210 2015 July 28
## 211 2015 July 28
## 212 2015 July 28
## 213 2015 July 28
## 214 2015 July 28
## 215 2015 July 28
## 216 2015 July 28
## 217 2015 July 28
## 218 2015 July 28
## 219 2015 July 28
## 220 2015 July 28
## 221 2015 July 28
## 222 2015 July 28
## 223 2015 July 28
## 224 2015 July 28
## 225 2015 July 28
## 226 2015 July 28
## 227 2015 July 28
## 228 2015 July 28
## 229 2015 July 28
## 230 2015 July 28
## 231 2015 July 28
## 232 2015 July 28
## 233 2015 July 28
## 234 2015 July 28
## 235 2015 July 28
## 236 2015 July 28
## 237 2015 July 28
## 238 2015 July 28
## 239 2015 July 28
## 240 2015 July 28
## 241 2015 July 28
## 242 2015 July 28
## 243 2015 July 28
## 244 2015 July 28
## 245 2015 July 28
## 246 2015 July 28
## 247 2015 July 28
## 248 2015 July 28
## 249 2015 July 28
## 250 2015 July 28
## 251 2015 July 28
## 252 2015 July 28
## 253 2015 July 28
## 254 2015 July 28
## 255 2015 July 28
## 256 2015 July 28
## 257 2015 July 28
## 258 2015 July 28
## 259 2015 July 28
## 260 2015 July 28
## 261 2015 July 28
## 262 2015 July 28
## 263 2015 July 28
## 264 2015 July 28
## 265 2015 July 28
## 266 2015 July 28
## 267 2015 July 28
## 268 2015 July 28
## 269 2015 July 28
## 270 2015 July 28
## 271 2015 July 28
## 272 2015 July 28
## 273 2015 July 28
## 274 2015 July 28
## 275 2015 July 28
## 276 2015 July 28
## 277 2015 July 28
## 278 2015 July 28
## 279 2015 July 28
## 280 2015 July 28
## 281 2015 July 28
## 282 2015 July 28
## 283 2015 July 28
## 284 2015 July 28
## 285 2015 July 28
## 286 2015 July 28
## 287 2015 July 28
## 288 2015 July 28
## 289 2015 July 28
## 290 2015 July 28
## 291 2015 July 28
## 292 2015 July 28
## 293 2015 July 28
## 294 2015 July 28
## 295 2015 July 28
## 296 2015 July 28
## 297 2015 July 28
## 298 2015 July 28
## 299 2015 July 28
## 300 2015 July 28
## 301 2015 July 28
## 302 2015 July 28
## 303 2015 July 28
## 304 2015 July 28
## 305 2015 July 28
## 306 2015 July 28
## 307 2015 July 28
## 308 2015 July 29
## 309 2015 July 29
## 310 2015 July 29
## 311 2015 July 29
## 312 2015 July 29
## 313 2015 July 29
## 314 2015 July 29
## 315 2015 July 29
## 316 2015 July 29
## 317 2015 July 29
## 318 2015 July 29
## 319 2015 July 29
## 320 2015 July 29
## 321 2015 July 29
## 322 2015 July 29
## 323 2015 July 29
## 324 2015 July 29
## 325 2015 July 29
## 326 2015 July 29
## 327 2015 July 29
## 328 2015 July 29
## 329 2015 July 29
## 330 2015 July 29
## 331 2015 July 29
## 332 2015 July 29
## 333 2015 July 29
## 334 2015 July 29
## 335 2015 July 29
## 336 2015 July 29
## 337 2015 July 29
## 338 2015 July 29
## 339 2015 July 29
## 340 2015 July 29
## 341 2015 July 29
## 342 2015 July 29
## 343 2015 July 29
## 344 2015 July 29
## 345 2015 July 29
## 346 2015 July 29
## 347 2015 July 29
## 348 2015 July 29
## 349 2015 July 29
## 350 2015 July 29
## 351 2015 July 29
## 352 2015 July 29
## 353 2015 July 29
## 354 2015 July 29
## 355 2015 July 29
## 356 2015 July 29
## 357 2015 July 29
## 358 2015 July 29
## 359 2015 July 29
## 360 2015 July 29
## 361 2015 July 29
## 362 2015 July 29
## 363 2015 July 29
## 364 2015 July 29
## 365 2015 July 29
## 366 2015 July 29
## 367 2015 July 29
## 368 2015 July 29
## 369 2015 July 29
## 370 2015 July 29
## 371 2015 July 29
## 372 2015 July 29
## 373 2015 July 29
## 374 2015 July 29
## 375 2015 July 29
## 376 2015 July 29
## 377 2015 July 29
## 378 2015 July 29
## 379 2015 July 29
## 380 2015 July 29
## 381 2015 July 29
## 382 2015 July 29
## 383 2015 July 29
## 384 2015 July 29
## 385 2015 July 29
## 386 2015 July 29
## 387 2015 July 29
## 388 2015 July 29
## 389 2015 July 29
## 390 2015 July 29
## 391 2015 July 29
## 392 2015 July 29
## 393 2015 July 29
## 394 2015 July 29
## 395 2015 July 29
## 396 2015 July 29
## 397 2015 July 29
## 398 2015 July 29
## 399 2015 July 29
## 400 2015 July 29
## 401 2015 July 29
## 402 2015 July 29
## 403 2015 July 29
## 404 2015 July 29
## 405 2015 July 29
## 406 2015 July 29
## 407 2015 July 29
## 408 2015 July 29
## 409 2015 July 29
## 410 2015 July 29
## 411 2015 July 29
## 412 2015 July 29
## 413 2015 July 29
## 414 2015 July 29
## 415 2015 July 29
## 416 2015 July 29
## 417 2015 July 29
## 418 2015 July 29
## 419 2015 July 29
## 420 2015 July 29
## 421 2015 July 29
## 422 2015 July 29
## 423 2015 July 29
## 424 2015 July 29
## 425 2015 July 29
## 426 2015 July 29
## 427 2015 July 29
## 428 2015 July 29
## 429 2015 July 29
## 430 2015 July 29
## 431 2015 July 29
## 432 2015 July 29
## 433 2015 July 29
## 434 2015 July 29
## 435 2015 July 29
## 436 2015 July 29
## 437 2015 July 29
## 438 2015 July 29
## 439 2015 July 29
## 440 2015 July 29
## 441 2015 July 29
## 442 2015 July 29
## 443 2015 July 29
## 444 2015 July 29
## 445 2015 July 29
## 446 2015 July 29
## 447 2015 July 29
## 448 2015 July 29
## 449 2015 July 29
## 450 2015 July 29
## 451 2015 July 29
## 452 2015 July 29
## 453 2015 July 29
## 454 2015 July 29
## 455 2015 July 29
## 456 2015 July 29
## 457 2015 July 29
## 458 2015 July 29
## 459 2015 July 29
## 460 2015 July 29
## 461 2015 July 29
## 462 2015 July 29
## 463 2015 July 29
## 464 2015 July 29
## 465 2015 July 29
## 466 2015 July 29
## 467 2015 July 29
## 468 2015 July 29
## 469 2015 July 29
## 470 2015 July 29
## 471 2015 July 29
## 472 2015 July 29
## 473 2015 July 29
## 474 2015 July 29
## 475 2015 July 29
## 476 2015 July 29
## 477 2015 July 29
## 478 2015 July 29
## 479 2015 July 29
## 480 2015 July 29
## 481 2015 July 29
## 482 2015 July 29
## 483 2015 July 29
## 484 2015 July 29
## 485 2015 July 29
## 486 2015 July 29
## 487 2015 July 29
## 488 2015 July 29
## 489 2015 July 29
## 490 2015 July 29
## 491 2015 July 29
## 492 2015 July 29
## 493 2015 July 29
## 494 2015 July 29
## 495 2015 July 29
## 496 2015 July 29
## 497 2015 July 29
## 498 2015 July 29
## 499 2015 July 29
## 500 2015 July 29
## 501 2015 July 29
## 502 2015 July 29
## 503 2015 July 29
## 504 2015 July 29
## 505 2015 July 29
## 506 2015 July 29
## 507 2015 July 29
## 508 2015 July 29
## 509 2015 July 29
## 510 2015 July 29
## 511 2015 July 29
## 512 2015 July 29
## 513 2015 July 29
## 514 2015 July 29
## 515 2015 July 29
## 516 2015 July 29
## 517 2015 July 29
## 518 2015 July 29
## 519 2015 July 29
## 520 2015 July 29
## 521 2015 July 29
## 522 2015 July 29
## 523 2015 July 29
## 524 2015 July 29
## 525 2015 July 29
## 526 2015 July 29
## 527 2015 July 29
## 528 2015 July 29
## 529 2015 July 29
## 530 2015 July 29
## 531 2015 July 29
## 532 2015 July 29
## 533 2015 July 29
## 534 2015 July 29
## 535 2015 July 29
## 536 2015 July 29
## 537 2015 July 29
## 538 2015 July 29
## 539 2015 July 30
## 540 2015 July 30
## 541 2015 July 30
## 542 2015 July 30
## 543 2015 July 30
## 544 2015 July 30
## 545 2015 July 30
## 546 2015 July 30
## 547 2015 July 30
## 548 2015 July 30
## 549 2015 July 30
## 550 2015 July 30
## 551 2015 July 30
## 552 2015 July 30
## 553 2015 July 30
## 554 2015 July 30
## 555 2015 July 30
## 556 2015 July 30
## 557 2015 July 30
## 558 2015 July 30
## 559 2015 July 30
## 560 2015 July 30
## 561 2015 July 30
## 562 2015 July 30
## 563 2015 July 30
## 564 2015 July 30
## 565 2015 July 30
## 566 2015 July 30
## 567 2015 July 30
## 568 2015 July 30
## 569 2015 July 30
## 570 2015 July 30
## 571 2015 July 30
## 572 2015 July 30
## 573 2015 July 30
## 574 2015 July 30
## 575 2015 July 30
## 576 2015 July 30
## 577 2015 July 30
## 578 2015 July 30
## 579 2015 July 30
## 580 2015 July 30
## 581 2015 July 30
## 582 2015 July 30
## 583 2015 July 30
## 584 2015 July 30
## 585 2015 July 30
## 586 2015 July 30
## 587 2015 July 30
## 588 2015 July 30
## 589 2015 July 30
## 590 2015 July 30
## 591 2015 July 30
## 592 2015 July 30
## 593 2015 July 30
## 594 2015 July 30
## 595 2015 July 30
## 596 2015 July 30
## 597 2015 July 30
## 598 2015 July 30
## 599 2015 July 30
## 600 2015 July 30
## 601 2015 July 30
## 602 2015 July 30
## 603 2015 July 30
## 604 2015 July 30
## 605 2015 July 30
## 606 2015 July 30
## 607 2015 July 30
## 608 2015 July 30
## 609 2015 July 30
## 610 2015 July 30
## 611 2015 July 30
## 612 2015 July 30
## 613 2015 July 30
## 614 2015 July 30
## 615 2015 July 30
## 616 2015 July 30
## 617 2015 July 30
## 618 2015 July 30
## 619 2015 July 30
## 620 2015 July 30
## 621 2015 July 30
## 622 2015 July 30
## 623 2015 July 30
## 624 2015 July 30
## 625 2015 July 30
## 626 2015 July 30
## 627 2015 July 30
## 628 2015 July 30
## 629 2015 July 30
## 630 2015 July 30
## 631 2015 July 30
## 632 2015 July 30
## 633 2015 July 30
## 634 2015 July 30
## 635 2015 July 30
## 636 2015 July 30
## 637 2015 July 30
## 638 2015 July 30
## 639 2015 July 30
## 640 2015 July 30
## 641 2015 July 30
## 642 2015 July 30
## 643 2015 July 30
## 644 2015 July 30
## 645 2015 July 30
## 646 2015 July 30
## 647 2015 July 30
## 648 2015 July 30
## 649 2015 July 30
## 650 2015 July 30
## 651 2015 July 30
## 652 2015 July 30
## 653 2015 July 30
## 654 2015 July 30
## 655 2015 July 30
## 656 2015 July 30
## 657 2015 July 30
## 658 2015 July 30
## 659 2015 July 30
## 660 2015 July 30
## 661 2015 July 30
## 662 2015 July 30
## 663 2015 July 30
## 664 2015 July 30
## 665 2015 July 30
## 666 2015 July 30
## 667 2015 July 30
## 668 2015 July 30
## 669 2015 July 30
## 670 2015 July 30
## 671 2015 July 30
## 672 2015 July 30
## 673 2015 July 30
## 674 2015 July 30
## 675 2015 July 30
## 676 2015 July 30
## 677 2015 July 30
## 678 2015 July 30
## 679 2015 July 30
## 680 2015 July 30
## 681 2015 July 30
## 682 2015 July 30
## 683 2015 July 30
## 684 2015 July 30
## 685 2015 July 30
## 686 2015 July 30
## 687 2015 July 30
## 688 2015 July 30
## 689 2015 July 30
## 690 2015 July 30
## 691 2015 July 30
## 692 2015 July 30
## 693 2015 July 30
## 694 2015 July 30
## 695 2015 July 30
## 696 2015 July 30
## 697 2015 July 30
## 698 2015 July 30
## 699 2015 July 30
## 700 2015 July 30
## 701 2015 July 30
## 702 2015 July 30
## 703 2015 July 30
## 704 2015 July 30
## 705 2015 July 30
## 706 2015 July 30
## 707 2015 July 30
## 708 2015 July 31
## 709 2015 July 31
## 710 2015 July 31
## 711 2015 July 31
## 712 2015 July 31
## 713 2015 July 31
## 714 2015 July 31
## 715 2015 July 31
## 716 2015 July 31
## 717 2015 July 31
## 718 2015 July 31
## 719 2015 July 31
## 720 2015 July 31
## 721 2015 July 31
## 722 2015 July 31
## 723 2015 July 31
## 724 2015 July 31
## 725 2015 July 31
## 726 2015 July 31
## 727 2015 July 31
## 728 2015 July 31
## 729 2015 July 31
## 730 2015 July 31
## 731 2015 July 31
## 732 2015 July 31
## 733 2015 July 31
## 734 2015 July 31
## 735 2015 July 31
## 736 2015 July 31
## 737 2015 July 31
## 738 2015 July 31
## 739 2015 July 31
## 740 2015 July 31
## 741 2015 July 31
## 742 2015 July 31
## 743 2015 July 31
## 744 2015 July 31
## 745 2015 July 31
## 746 2015 July 31
## 747 2015 July 31
## 748 2015 July 31
## 749 2015 July 31
## 750 2015 July 31
## 751 2015 July 31
## 752 2015 July 31
## 753 2015 July 31
## 754 2015 July 31
## 755 2015 July 31
## 756 2015 July 31
## 757 2015 July 31
## 758 2015 July 31
## 759 2015 July 31
## 760 2015 July 31
## 761 2015 July 31
## 762 2015 July 31
## 763 2015 July 31
## 764 2015 July 31
## 765 2015 July 31
## 766 2015 July 31
## 767 2015 July 31
## 768 2015 July 31
## 769 2015 July 31
## 770 2015 July 31
## 771 2015 July 31
## 772 2015 July 31
## 773 2015 July 31
## 774 2015 July 31
## 775 2015 July 31
## 776 2015 July 31
## 777 2015 July 31
## 778 2015 July 31
## 779 2015 July 31
## 780 2015 July 31
## 781 2015 July 31
## 782 2015 July 31
## 783 2015 July 31
## 784 2015 July 31
## 785 2015 July 31
## 786 2015 July 31
## 787 2015 July 31
## 788 2015 July 31
## 789 2015 July 31
## 790 2015 July 31
## 791 2015 July 31
## 792 2015 July 31
## 793 2015 July 31
## 794 2015 July 31
## 795 2015 July 31
## 796 2015 July 31
## 797 2015 July 31
## 798 2015 July 31
## 799 2015 July 31
## 800 2015 July 31
## 801 2015 July 31
## 802 2015 July 31
## 803 2015 July 31
## 804 2015 July 31
## 805 2015 July 31
## 806 2015 July 31
## 807 2015 July 31
## 808 2015 July 31
## 809 2015 July 31
## 810 2015 July 31
## 811 2015 July 31
## 812 2015 July 31
## 813 2015 July 31
## 814 2015 July 31
## 815 2015 July 31
## 816 2015 July 31
## 817 2015 July 31
## 818 2015 July 31
## 819 2015 July 31
## 820 2015 July 31
## 821 2015 July 31
## 822 2015 July 31
## 823 2015 July 31
## 824 2015 July 31
## 825 2015 July 31
## 826 2015 July 31
## 827 2015 July 31
## 828 2015 July 31
## 829 2015 July 31
## 830 2015 July 31
## 831 2015 July 31
## 832 2015 July 31
## 833 2015 July 31
## 834 2015 July 31
## 835 2015 July 31
## 836 2015 July 31
## 837 2015 July 31
## 838 2015 July 31
## 839 2015 July 31
## 840 2015 July 31
## 841 2015 July 31
## 842 2015 July 31
## 843 2015 August 31
## 844 2015 August 31
## 845 2015 August 31
## 846 2015 August 31
## 847 2015 August 31
## 848 2015 August 31
## 849 2015 August 31
## 850 2015 August 31
## 851 2015 August 31
## 852 2015 August 31
## 853 2015 August 31
## 854 2015 August 31
## 855 2015 August 31
## 856 2015 August 31
## 857 2015 August 31
## 858 2015 August 31
## 859 2015 August 31
## 860 2015 August 31
## 861 2015 August 31
## 862 2015 August 31
## 863 2015 August 31
## 864 2015 August 31
## 865 2015 August 31
## 866 2015 August 31
## 867 2015 August 31
## 868 2015 August 31
## 869 2015 August 31
## 870 2015 August 31
## 871 2015 August 32
## 872 2015 August 32
## 873 2015 August 32
## 874 2015 August 32
## 875 2015 August 32
## 876 2015 August 32
## 877 2015 August 32
## 878 2015 August 32
## 879 2015 August 32
## 880 2015 August 32
## 881 2015 August 32
## 882 2015 August 32
## 883 2015 August 32
## 884 2015 August 32
## 885 2015 August 32
## 886 2015 August 32
## 887 2015 August 32
## 888 2015 August 32
## 889 2015 August 32
## 890 2015 August 32
## 891 2015 August 32
## 892 2015 August 32
## 893 2015 August 32
## 894 2015 August 32
## 895 2015 August 32
## 896 2015 August 32
## 897 2015 August 32
## 898 2015 August 32
## 899 2015 August 32
## 900 2015 August 32
## 901 2015 August 32
## 902 2015 August 32
## 903 2015 August 32
## 904 2015 August 32
## 905 2015 August 32
## 906 2015 August 32
## 907 2015 August 32
## 908 2015 August 32
## 909 2015 August 32
## 910 2015 August 32
## 911 2015 August 32
## 912 2015 August 32
## 913 2015 August 32
## 914 2015 August 32
## 915 2015 August 32
## 916 2015 August 32
## 917 2015 August 32
## 918 2015 August 32
## 919 2015 August 32
## 920 2015 August 32
## 921 2015 August 32
## 922 2015 August 32
## 923 2015 August 32
## 924 2015 August 32
## 925 2015 August 32
## 926 2015 August 32
## 927 2015 August 32
## 928 2015 August 32
## 929 2015 August 32
## 930 2015 August 32
## 931 2015 August 32
## 932 2015 August 32
## 933 2015 August 32
## 934 2015 August 32
## 935 2015 August 32
## 936 2015 August 32
## 937 2015 August 32
## 938 2015 August 32
## 939 2015 August 32
## 940 2015 August 32
## 941 2015 August 32
## 942 2015 August 32
## 943 2015 August 32
## 944 2015 August 32
## 945 2015 August 32
## 946 2015 August 32
## 947 2015 August 32
## 948 2015 August 32
## 949 2015 August 32
## 950 2015 August 32
## 951 2015 August 32
## 952 2015 August 32
## 953 2015 August 32
## 954 2015 August 32
## 955 2015 August 32
## 956 2015 August 32
## 957 2015 August 32
## 958 2015 August 32
## 959 2015 August 32
## 960 2015 August 32
## 961 2015 August 32
## 962 2015 August 32
## 963 2015 August 32
## 964 2015 August 32
## 965 2015 August 32
## 966 2015 August 32
## 967 2015 August 32
## 968 2015 August 32
## 969 2015 August 32
## 970 2015 August 32
## 971 2015 August 32
## 972 2015 August 32
## 973 2015 August 32
## 974 2015 August 32
## 975 2015 August 32
## 976 2015 August 32
## 977 2015 August 32
## 978 2015 August 32
## 979 2015 August 32
## 980 2015 August 32
## 981 2015 August 32
## 982 2015 August 32
## 983 2015 August 32
## 984 2015 August 32
## 985 2015 August 33
## 986 2015 August 33
## 987 2015 August 33
## 988 2015 August 33
## 989 2015 August 33
## 990 2015 August 33
## 991 2015 August 33
## 992 2015 August 33
## 993 2015 August 33
## 994 2015 August 33
## 995 2015 August 33
## 996 2015 August 33
## 997 2015 August 33
## 998 2015 August 33
## 999 2015 August 33
## 1000 2015 August 33
## 1001 2015 August 33
## 1002 2015 August 33
## 1003 2015 August 33
## 1004 2015 August 33
## 1005 2015 August 33
## 1006 2015 August 33
## 1007 2015 August 33
## 1008 2015 August 33
## 1009 2015 August 33
## 1010 2015 August 33
## 1011 2015 August 33
## 1012 2015 August 33
## 1013 2015 August 33
## 1014 2015 August 33
## 1015 2015 August 33
## 1016 2015 August 33
## 1017 2015 August 33
## 1018 2015 August 33
## 1019 2015 August 33
## 1020 2015 August 33
## 1021 2015 August 33
## 1022 2015 August 33
## 1023 2015 August 33
## 1024 2015 August 33
## 1025 2015 August 33
## 1026 2015 August 33
## 1027 2015 August 33
## 1028 2015 August 33
## 1029 2015 August 33
## 1030 2015 August 33
## 1031 2015 August 33
## 1032 2015 August 33
## 1033 2015 August 33
## 1034 2015 August 33
## 1035 2015 August 33
## 1036 2015 August 33
## 1037 2015 August 33
## 1038 2015 August 33
## 1039 2015 August 33
## 1040 2015 August 33
## 1041 2015 August 33
## 1042 2015 August 33
## 1043 2015 August 33
## 1044 2015 August 33
## 1045 2015 August 33
## 1046 2015 August 33
## 1047 2015 August 33
## 1048 2015 August 33
## 1049 2015 August 33
## 1050 2015 August 33
## 1051 2015 August 33
## 1052 2015 August 33
## 1053 2015 August 33
## 1054 2015 August 33
## 1055 2015 August 33
## 1056 2015 August 33
## 1057 2015 August 33
## 1058 2015 August 33
## 1059 2015 August 33
## 1060 2015 August 33
## 1061 2015 August 33
## 1062 2015 August 33
## 1063 2015 August 33
## 1064 2015 August 33
## 1065 2015 August 33
## 1066 2015 August 33
## 1067 2015 August 33
## 1068 2015 August 33
## 1069 2015 August 33
## 1070 2015 August 33
## 1071 2015 August 33
## 1072 2015 August 33
## 1073 2015 August 33
## 1074 2015 August 33
## 1075 2015 August 33
## 1076 2015 August 33
## 1077 2015 August 33
## 1078 2015 August 33
## 1079 2015 August 33
## 1080 2015 August 33
## 1081 2015 August 33
## 1082 2015 August 33
## 1083 2015 August 33
## 1084 2015 August 33
## 1085 2015 August 33
## 1086 2015 August 33
## 1087 2015 August 33
## 1088 2015 August 33
## 1089 2015 August 33
## 1090 2015 August 33
## 1091 2015 August 33
## 1092 2015 August 33
## 1093 2015 August 33
## 1094 2015 August 33
## 1095 2015 August 33
## 1096 2015 August 33
## 1097 2015 August 33
## 1098 2015 August 33
## 1099 2015 August 33
## 1100 2015 August 33
## 1101 2015 August 33
## 1102 2015 August 33
## 1103 2015 August 33
## 1104 2015 August 33
## 1105 2015 August 33
## 1106 2015 August 33
## 1107 2015 August 33
## 1108 2015 August 33
## 1109 2015 August 33
## 1110 2015 August 33
## 1111 2015 August 33
## 1112 2015 August 33
## 1113 2015 August 33
## 1114 2015 August 33
## 1115 2015 August 33
## 1116 2015 August 33
## 1117 2015 August 33
## 1118 2015 August 33
## 1119 2015 August 33
## 1120 2015 August 33
## 1121 2015 August 33
## 1122 2015 August 33
## 1123 2015 August 33
## 1124 2015 August 33
## 1125 2015 August 33
## 1126 2015 August 33
## 1127 2015 August 33
## 1128 2015 August 33
## 1129 2015 August 33
## 1130 2015 August 33
## 1131 2015 August 33
## 1132 2015 August 33
## 1133 2015 August 33
## 1134 2015 August 33
## 1135 2015 August 33
## 1136 2015 August 33
## 1137 2015 August 33
## 1138 2015 August 33
## 1139 2015 August 33
## 1140 2015 August 33
## 1141 2015 August 33
## 1142 2015 August 33
## 1143 2015 August 33
## 1144 2015 August 33
## 1145 2015 August 33
## 1146 2015 August 33
## 1147 2015 August 33
## 1148 2015 August 33
## 1149 2015 August 33
## 1150 2015 August 33
## 1151 2015 August 34
## 1152 2015 August 34
## 1153 2015 August 34
## 1154 2015 August 34
## 1155 2015 August 34
## 1156 2015 August 34
## 1157 2015 August 34
## 1158 2015 August 34
## 1159 2015 August 34
## 1160 2015 August 34
## 1161 2015 August 34
## 1162 2015 August 34
## 1163 2015 August 34
## 1164 2015 August 34
## 1165 2015 August 34
## 1166 2015 August 34
## 1167 2015 August 34
## 1168 2015 August 34
## 1169 2015 August 34
## 1170 2015 August 34
## 1171 2015 August 34
## 1172 2015 August 34
## 1173 2015 August 34
## 1174 2015 August 34
## 1175 2015 August 34
## 1176 2015 August 34
## 1177 2015 August 34
## 1178 2015 August 34
## 1179 2015 August 34
## 1180 2015 August 34
## 1181 2015 August 34
## 1182 2015 August 34
## 1183 2015 August 34
## 1184 2015 August 34
## 1185 2015 August 34
## 1186 2015 August 34
## 1187 2015 August 34
## 1188 2015 August 34
## 1189 2015 August 34
## 1190 2015 August 34
## 1191 2015 August 34
## 1192 2015 August 34
## 1193 2015 August 34
## 1194 2015 August 34
## 1195 2015 August 34
## 1196 2015 August 34
## 1197 2015 August 34
## 1198 2015 August 34
## 1199 2015 August 34
## 1200 2015 August 34
## 1201 2015 August 34
## 1202 2015 August 34
## 1203 2015 August 34
## 1204 2015 August 34
## 1205 2015 August 34
## 1206 2015 August 34
## 1207 2015 August 34
## 1208 2015 August 34
## 1209 2015 August 34
## 1210 2015 August 34
## 1211 2015 August 34
## 1212 2015 August 34
## 1213 2015 August 34
## 1214 2015 August 34
## 1215 2015 August 34
## 1216 2015 August 34
## 1217 2015 August 34
## 1218 2015 August 34
## 1219 2015 August 34
## 1220 2015 August 34
## 1221 2015 August 34
## 1222 2015 August 34
## 1223 2015 August 34
## 1224 2015 August 34
## 1225 2015 August 34
## 1226 2015 August 34
## 1227 2015 August 34
## 1228 2015 August 34
## 1229 2015 August 34
## 1230 2015 August 34
## 1231 2015 August 34
## 1232 2015 August 34
## 1233 2015 August 34
## 1234 2015 August 34
## 1235 2015 August 34
## 1236 2015 August 34
## 1237 2015 August 34
## 1238 2015 August 34
## 1239 2015 August 34
## 1240 2015 August 34
## 1241 2015 August 34
## 1242 2015 August 34
## 1243 2015 August 34
## 1244 2015 August 34
## 1245 2015 August 34
## 1246 2015 August 34
## 1247 2015 August 34
## 1248 2015 August 34
## 1249 2015 August 34
## 1250 2015 August 34
## 1251 2015 August 34
## 1252 2015 August 34
## 1253 2015 August 34
## 1254 2015 August 34
## 1255 2015 August 34
## 1256 2015 August 34
## 1257 2015 August 34
## 1258 2015 August 34
## 1259 2015 August 34
## 1260 2015 August 34
## 1261 2015 August 34
## 1262 2015 August 34
## 1263 2015 August 34
## 1264 2015 August 34
## 1265 2015 August 34
## 1266 2015 August 34
## 1267 2015 August 34
## 1268 2015 August 34
## 1269 2015 August 34
## 1270 2015 August 34
## 1271 2015 August 34
## 1272 2015 August 34
## 1273 2015 August 34
## 1274 2015 August 34
## 1275 2015 August 34
## 1276 2015 August 34
## 1277 2015 August 34
## 1278 2015 August 34
## 1279 2015 August 34
## 1280 2015 August 34
## 1281 2015 August 34
## 1282 2015 August 34
## 1283 2015 August 34
## 1284 2015 August 34
## 1285 2015 August 34
## 1286 2015 August 34
## 1287 2015 August 34
## 1288 2015 August 34
## 1289 2015 August 34
## 1290 2015 August 34
## 1291 2015 August 34
## 1292 2015 August 34
## 1293 2015 August 34
## 1294 2015 August 34
## 1295 2015 August 34
## 1296 2015 August 35
## 1297 2015 August 35
## 1298 2015 August 35
## 1299 2015 August 35
## 1300 2015 August 35
## 1301 2015 August 35
## 1302 2015 August 35
## 1303 2015 August 35
## 1304 2015 August 35
## 1305 2015 August 35
## 1306 2015 August 35
## 1307 2015 August 35
## 1308 2015 August 35
## 1309 2015 August 35
## 1310 2015 August 35
## 1311 2015 August 35
## 1312 2015 August 35
## 1313 2015 August 35
## 1314 2015 August 35
## 1315 2015 August 35
## 1316 2015 August 35
## 1317 2015 August 35
## 1318 2015 August 35
## 1319 2015 August 35
## 1320 2015 August 35
## 1321 2015 August 35
## 1322 2015 August 35
## 1323 2015 August 35
## 1324 2015 August 35
## 1325 2015 August 35
## 1326 2015 August 35
## 1327 2015 August 35
## 1328 2015 August 35
## 1329 2015 August 35
## 1330 2015 August 35
## 1331 2015 August 35
## 1332 2015 August 35
## 1333 2015 August 35
## 1334 2015 August 35
## 1335 2015 August 35
## 1336 2015 August 35
## 1337 2015 August 35
## 1338 2015 August 35
## 1339 2015 August 35
## 1340 2015 August 35
## 1341 2015 August 35
## 1342 2015 August 35
## 1343 2015 August 35
## 1344 2015 August 35
## 1345 2015 August 35
## 1346 2015 August 35
## 1347 2015 August 35
## 1348 2015 August 35
## 1349 2015 August 35
## 1350 2015 August 35
## 1351 2015 August 35
## 1352 2015 August 35
## 1353 2015 August 35
## 1354 2015 August 35
## 1355 2015 August 35
## 1356 2015 August 35
## 1357 2015 August 35
## 1358 2015 August 35
## 1359 2015 August 35
## 1360 2015 August 35
## 1361 2015 August 35
## 1362 2015 August 35
## 1363 2015 August 35
## 1364 2015 August 35
## 1365 2015 August 35
## 1366 2015 August 35
## 1367 2015 August 35
## 1368 2015 August 35
## 1369 2015 August 35
## 1370 2015 August 35
## 1371 2015 August 35
## 1372 2015 August 35
## 1373 2015 August 35
## 1374 2015 August 35
## 1375 2015 August 35
## 1376 2015 August 35
## 1377 2015 August 35
## 1378 2015 August 35
## 1379 2015 August 35
## 1380 2015 August 35
## 1381 2015 August 35
## 1382 2015 August 35
## 1383 2015 August 35
## 1384 2015 August 35
## 1385 2015 August 35
## 1386 2015 August 35
## 1387 2015 August 35
## 1388 2015 August 35
## 1389 2015 August 35
## 1390 2015 August 35
## 1391 2015 August 35
## 1392 2015 August 35
## 1393 2015 August 35
## 1394 2015 August 35
## 1395 2015 August 35
## 1396 2015 August 35
## 1397 2015 August 35
## 1398 2015 August 35
## 1399 2015 August 35
## 1400 2015 August 35
## 1401 2015 August 35
## 1402 2015 August 35
## 1403 2015 August 35
## 1404 2015 August 35
## 1405 2015 August 35
## 1406 2015 August 35
## 1407 2015 August 35
## 1408 2015 August 35
## 1409 2015 August 35
## 1410 2015 August 35
## 1411 2015 August 35
## 1412 2015 August 35
## 1413 2015 August 35
## 1414 2015 August 35
## 1415 2015 August 35
## 1416 2015 August 35
## 1417 2015 August 35
## 1418 2015 August 35
## 1419 2015 August 35
## 1420 2015 August 35
## 1421 2015 August 35
## 1422 2015 August 35
## 1423 2015 August 35
## 1424 2015 August 35
## 1425 2015 August 35
## 1426 2015 August 35
## 1427 2015 August 35
## 1428 2015 August 35
## 1429 2015 August 35
## 1430 2015 August 35
## 1431 2015 August 35
## 1432 2015 August 35
## 1433 2015 August 35
## 1434 2015 August 35
## 1435 2015 August 35
## 1436 2015 August 35
## 1437 2015 August 35
## 1438 2015 August 35
## 1439 2015 August 35
## 1440 2015 August 35
## 1441 2015 August 35
## 1442 2015 August 35
## 1443 2015 August 35
## 1444 2015 August 35
## 1445 2015 August 35
## 1446 2015 August 36
## 1447 2015 August 36
## 1448 2015 August 36
## 1449 2015 August 36
## 1450 2015 August 36
## 1451 2015 August 36
## 1452 2015 August 36
## 1453 2015 August 36
## 1454 2015 August 36
## 1455 2015 August 36
## 1456 2015 August 36
## 1457 2015 August 36
## 1458 2015 August 36
## 1459 2015 August 36
## 1460 2015 August 36
## 1461 2015 August 36
## 1462 2015 August 36
## 1463 2015 August 36
## 1464 2015 August 36
## 1465 2015 August 36
## 1466 2015 August 36
## 1467 2015 August 36
## 1468 2015 August 36
## 1469 2015 August 36
## 1470 2015 August 36
## 1471 2015 August 36
## 1472 2015 August 36
## 1473 2015 August 36
## 1474 2015 August 36
## 1475 2015 August 36
## 1476 2015 August 36
## 1477 2015 August 36
## 1478 2015 August 36
## 1479 2015 August 36
## 1480 2015 August 36
## 1481 2015 August 36
## 1482 2015 August 36
## 1483 2015 August 36
## 1484 2015 August 36
## 1485 2015 August 36
## 1486 2015 September 36
## 1487 2015 September 36
## 1488 2015 September 36
## 1489 2015 September 36
## 1490 2015 September 36
## 1491 2015 September 36
## 1492 2015 September 36
## 1493 2015 September 36
## 1494 2015 September 36
## 1495 2015 September 36
## 1496 2015 September 36
## 1497 2015 September 36
## 1498 2015 September 36
## 1499 2015 September 36
## 1500 2015 September 36
## 1501 2015 September 36
## 1502 2015 September 36
## 1503 2015 September 36
## 1504 2015 September 36
## 1505 2015 September 36
## 1506 2015 September 36
## 1507 2015 September 36
## 1508 2015 September 36
## 1509 2015 September 36
## 1510 2015 September 36
## 1511 2015 September 36
## 1512 2015 September 36
## 1513 2015 September 36
## 1514 2015 September 36
## 1515 2015 September 36
## 1516 2015 September 36
## 1517 2015 September 36
## 1518 2015 September 36
## 1519 2015 September 36
## 1520 2015 September 36
## 1521 2015 September 36
## 1522 2015 September 36
## 1523 2015 September 36
## 1524 2015 September 36
## 1525 2015 September 36
## 1526 2015 September 36
## 1527 2015 September 36
## 1528 2015 September 36
## 1529 2015 September 36
## 1530 2015 September 36
## 1531 2015 September 36
## 1532 2015 September 36
## 1533 2015 September 36
## 1534 2015 September 36
## 1535 2015 September 36
## 1536 2015 September 36
## 1537 2015 September 36
## 1538 2015 September 36
## 1539 2015 September 36
## 1540 2015 September 36
## 1541 2015 September 36
## 1542 2015 September 36
## 1543 2015 September 36
## 1544 2015 September 36
## 1545 2015 September 36
## 1546 2015 September 36
## 1547 2015 September 36
## 1548 2015 September 36
## 1549 2015 September 36
## 1550 2015 September 36
## 1551 2015 September 36
## 1552 2015 September 36
## 1553 2015 September 36
## 1554 2015 September 36
## 1555 2015 September 36
## 1556 2015 September 36
## 1557 2015 September 36
## 1558 2015 September 36
## 1559 2015 September 36
## 1560 2015 September 36
## 1561 2015 September 36
## 1562 2015 September 36
## 1563 2015 September 36
## 1564 2015 September 36
## 1565 2015 September 36
## 1566 2015 September 36
## 1567 2015 September 36
## 1568 2015 September 36
## 1569 2015 September 36
## 1570 2015 September 36
## 1571 2015 September 36
## 1572 2015 September 36
## 1573 2015 September 36
## 1574 2015 September 36
## 1575 2015 September 36
## 1576 2015 September 36
## 1577 2015 September 36
## 1578 2015 September 36
## 1579 2015 September 36
## 1580 2015 September 36
## 1581 2015 September 36
## 1582 2015 September 36
## 1583 2015 September 36
## 1584 2015 September 36
## 1585 2015 September 36
## 1586 2015 September 36
## 1587 2015 September 36
## 1588 2015 September 36
## 1589 2015 September 36
## 1590 2015 September 36
## 1591 2015 September 36
## 1592 2015 September 36
## 1593 2015 September 36
## 1594 2015 September 36
## 1595 2015 September 36
## 1596 2015 September 36
## 1597 2015 September 36
## 1598 2015 September 36
## 1599 2015 September 36
## 1600 2015 September 36
## 1601 2015 September 36
## 1602 2015 September 36
## 1603 2015 September 36
## 1604 2015 September 36
## 1605 2015 September 36
## 1606 2015 September 36
## 1607 2015 September 36
## 1608 2015 September 36
## 1609 2015 September 36
## 1610 2015 September 37
## 1611 2015 September 37
## 1612 2015 September 37
## 1613 2015 September 37
## 1614 2015 September 37
## 1615 2015 September 37
## 1616 2015 September 37
## 1617 2015 September 37
## 1618 2015 September 37
## 1619 2015 September 37
## 1620 2015 September 37
## 1621 2015 September 37
## 1622 2015 September 37
## 1623 2015 September 37
## 1624 2015 September 37
## 1625 2015 September 37
## 1626 2015 September 37
## 1627 2015 September 37
## 1628 2015 September 37
## 1629 2015 September 37
## 1630 2015 September 37
## 1631 2015 September 37
## 1632 2015 September 37
## 1633 2015 September 37
## 1634 2015 September 37
## 1635 2015 September 37
## 1636 2015 September 37
## 1637 2015 September 37
## 1638 2015 September 37
## 1639 2015 September 37
## 1640 2015 September 37
## 1641 2015 September 37
## 1642 2015 September 37
## 1643 2015 September 37
## 1644 2015 September 37
## 1645 2015 September 37
## 1646 2015 September 37
## 1647 2015 September 37
## 1648 2015 September 37
## 1649 2015 September 37
## 1650 2015 September 37
## 1651 2015 September 37
## 1652 2015 September 37
## 1653 2015 September 37
## 1654 2015 September 37
## 1655 2015 September 37
## 1656 2015 September 37
## 1657 2015 September 37
## 1658 2015 September 37
## 1659 2015 September 37
## 1660 2015 September 37
## 1661 2015 September 37
## 1662 2015 September 37
## 1663 2015 September 37
## 1664 2015 September 37
## 1665 2015 September 37
## 1666 2015 September 37
## 1667 2015 September 37
## 1668 2015 September 37
## 1669 2015 September 37
## 1670 2015 September 37
## 1671 2015 September 37
## 1672 2015 September 37
## 1673 2015 September 37
## 1674 2015 September 37
## 1675 2015 September 37
## 1676 2015 September 37
## 1677 2015 September 37
## 1678 2015 September 37
## 1679 2015 September 37
## 1680 2015 September 37
## 1681 2015 September 37
## 1682 2015 September 37
## 1683 2015 September 37
## 1684 2015 September 37
## 1685 2015 September 37
## 1686 2015 September 37
## 1687 2015 September 37
## 1688 2015 September 37
## 1689 2015 September 37
## 1690 2015 September 37
## 1691 2015 September 37
## 1692 2015 September 37
## 1693 2015 September 37
## 1694 2015 September 37
## 1695 2015 September 37
## 1696 2015 September 37
## 1697 2015 September 37
## 1698 2015 September 37
## 1699 2015 September 37
## 1700 2015 September 37
## 1701 2015 September 37
## 1702 2015 September 37
## 1703 2015 September 37
## 1704 2015 September 37
## 1705 2015 September 37
## 1706 2015 September 37
## 1707 2015 September 37
## 1708 2015 September 37
## 1709 2015 September 37
## 1710 2015 September 37
## 1711 2015 September 37
## 1712 2015 September 37
## 1713 2015 September 37
## 1714 2015 September 37
## 1715 2015 September 37
## 1716 2015 September 37
## 1717 2015 September 37
## 1718 2015 September 37
## 1719 2015 September 37
## 1720 2015 September 37
## 1721 2015 September 37
## 1722 2015 September 37
## 1723 2015 September 37
## 1724 2015 September 37
## 1725 2015 September 37
## 1726 2015 September 37
## 1727 2015 September 37
## 1728 2015 September 37
## 1729 2015 September 37
## 1730 2015 September 37
## 1731 2015 September 37
## 1732 2015 September 37
## 1733 2015 September 37
## 1734 2015 September 37
## 1735 2015 September 37
## 1736 2015 September 37
## 1737 2015 September 37
## 1738 2015 September 37
## 1739 2015 September 37
## 1740 2015 September 37
## 1741 2015 September 37
## 1742 2015 September 37
## 1743 2015 September 37
## 1744 2015 September 37
## 1745 2015 September 37
## 1746 2015 September 37
## 1747 2015 September 37
## 1748 2015 September 37
## 1749 2015 September 37
## 1750 2015 September 37
## 1751 2015 September 37
## 1752 2015 September 37
## 1753 2015 September 37
## 1754 2015 September 37
## 1755 2015 September 37
## 1756 2015 September 37
## 1757 2015 September 38
## 1758 2015 September 38
## 1759 2015 September 38
## 1760 2015 September 38
## 1761 2015 September 38
## 1762 2015 September 38
## 1763 2015 September 38
## 1764 2015 September 38
## 1765 2015 September 38
## 1766 2015 September 38
## 1767 2015 September 38
## 1768 2015 September 38
## 1769 2015 September 38
## 1770 2015 September 38
## 1771 2015 September 38
## 1772 2015 September 38
## 1773 2015 September 38
## 1774 2015 September 38
## 1775 2015 September 38
## 1776 2015 September 38
## 1777 2015 September 38
## 1778 2015 September 38
## 1779 2015 September 38
## 1780 2015 September 38
## 1781 2015 September 38
## 1782 2015 September 38
## 1783 2015 September 38
## 1784 2015 September 38
## 1785 2015 September 38
## 1786 2015 September 38
## 1787 2015 September 38
## 1788 2015 September 38
## 1789 2015 September 38
## 1790 2015 September 38
## 1791 2015 September 38
## 1792 2015 September 38
## 1793 2015 September 38
## 1794 2015 September 38
## 1795 2015 September 38
## 1796 2015 September 38
## 1797 2015 September 38
## 1798 2015 September 38
## 1799 2015 September 38
## 1800 2015 September 38
## 1801 2015 September 38
## 1802 2015 September 38
## 1803 2015 September 38
## 1804 2015 September 38
## 1805 2015 September 38
## 1806 2015 September 38
## 1807 2015 September 38
## 1808 2015 September 38
## 1809 2015 September 38
## 1810 2015 September 38
## 1811 2015 September 38
## 1812 2015 September 38
## 1813 2015 September 38
## 1814 2015 September 38
## 1815 2015 September 38
## 1816 2015 September 38
## 1817 2015 September 38
## 1818 2015 September 38
## 1819 2015 September 38
## 1820 2015 September 38
## 1821 2015 September 38
## 1822 2015 September 38
## 1823 2015 September 38
## 1824 2015 September 38
## 1825 2015 September 38
## 1826 2015 September 38
## 1827 2015 September 38
## 1828 2015 September 38
## 1829 2015 September 38
## 1830 2015 September 38
## 1831 2015 September 38
## 1832 2015 September 38
## 1833 2015 September 38
## 1834 2015 September 38
## 1835 2015 September 38
## 1836 2015 September 38
## 1837 2015 September 38
## 1838 2015 September 38
## 1839 2015 September 38
## 1840 2015 September 38
## 1841 2015 September 38
## 1842 2015 September 38
## 1843 2015 September 38
## 1844 2015 September 38
## 1845 2015 September 38
## 1846 2015 September 38
## 1847 2015 September 38
## 1848 2015 September 38
## 1849 2015 September 38
## 1850 2015 September 38
## 1851 2015 September 38
## 1852 2015 September 38
## 1853 2015 September 38
## 1854 2015 September 38
## 1855 2015 September 38
## 1856 2015 September 38
## 1857 2015 September 38
## 1858 2015 September 38
## 1859 2015 September 38
## 1860 2015 September 38
## 1861 2015 September 38
## 1862 2015 September 38
## 1863 2015 September 38
## 1864 2015 September 38
## 1865 2015 September 38
## 1866 2015 September 38
## 1867 2015 September 38
## 1868 2015 September 38
## 1869 2015 September 38
## 1870 2015 September 38
## 1871 2015 September 38
## 1872 2015 September 38
## 1873 2015 September 38
## 1874 2015 September 38
## 1875 2015 September 38
## 1876 2015 September 38
## 1877 2015 September 38
## 1878 2015 September 38
## 1879 2015 September 38
## 1880 2015 September 38
## 1881 2015 September 38
## 1882 2015 September 38
## 1883 2015 September 38
## 1884 2015 September 38
## 1885 2015 September 38
## 1886 2015 September 38
## 1887 2015 September 38
## 1888 2015 September 38
## 1889 2015 September 38
## 1890 2015 September 38
## 1891 2015 September 38
## 1892 2015 September 39
## 1893 2015 September 39
## 1894 2015 September 39
## 1895 2015 September 39
## 1896 2015 September 39
## 1897 2015 September 39
## 1898 2015 September 39
## 1899 2015 September 39
## 1900 2015 September 39
## 1901 2015 September 39
## 1902 2015 September 39
## 1903 2015 September 39
## 1904 2015 September 39
## 1905 2015 September 39
## 1906 2015 September 39
## 1907 2015 September 39
## 1908 2015 September 39
## 1909 2015 September 39
## 1910 2015 September 39
## 1911 2015 September 39
## 1912 2015 September 39
## 1913 2015 September 39
## 1914 2015 September 39
## 1915 2015 September 39
## 1916 2015 September 39
## 1917 2015 September 39
## 1918 2015 September 39
## 1919 2015 September 39
## 1920 2015 September 39
## 1921 2015 September 39
## 1922 2015 September 39
## 1923 2015 September 39
## 1924 2015 September 39
## 1925 2015 September 39
## 1926 2015 September 39
## 1927 2015 September 39
## 1928 2015 September 39
## 1929 2015 September 39
## 1930 2015 September 39
## 1931 2015 September 39
## 1932 2015 September 39
## 1933 2015 September 39
## 1934 2015 September 39
## 1935 2015 September 39
## 1936 2015 September 39
## 1937 2015 September 39
## 1938 2015 September 39
## 1939 2015 September 39
## 1940 2015 September 39
## 1941 2015 September 39
## 1942 2015 September 39
## 1943 2015 September 39
## 1944 2015 September 39
## 1945 2015 September 39
## 1946 2015 September 39
## 1947 2015 September 39
## 1948 2015 September 39
## 1949 2015 September 39
## 1950 2015 September 39
## 1951 2015 September 39
## 1952 2015 September 39
## 1953 2015 September 39
## 1954 2015 September 39
## 1955 2015 September 39
## 1956 2015 September 39
## 1957 2015 September 39
## 1958 2015 September 39
## 1959 2015 September 39
## 1960 2015 September 39
## 1961 2015 September 39
## 1962 2015 September 39
## 1963 2015 September 39
## 1964 2015 September 39
## 1965 2015 September 39
## 1966 2015 September 39
## 1967 2015 September 39
## 1968 2015 September 39
## 1969 2015 September 39
## 1970 2015 September 39
## 1971 2015 September 39
## 1972 2015 September 39
## 1973 2015 September 39
## 1974 2015 September 39
## 1975 2015 September 39
## 1976 2015 September 39
## 1977 2015 September 39
## 1978 2015 September 39
## 1979 2015 September 39
## 1980 2015 September 39
## 1981 2015 September 39
## 1982 2015 September 39
## 1983 2015 September 39
## 1984 2015 September 39
## 1985 2015 September 39
## 1986 2015 September 39
## 1987 2015 September 39
## 1988 2015 September 39
## 1989 2015 September 39
## 1990 2015 September 39
## 1991 2015 September 39
## 1992 2015 September 39
## 1993 2015 September 39
## 1994 2015 September 39
## 1995 2015 September 39
## 1996 2015 September 39
## 1997 2015 September 39
## 1998 2015 September 39
## 1999 2015 September 39
## 2000 2015 September 39
## 2001 2015 September 39
## 2002 2015 September 39
## 2003 2015 September 39
## 2004 2015 September 39
## 2005 2015 September 39
## 2006 2015 September 39
## 2007 2015 September 39
## 2008 2015 September 39
## 2009 2015 September 40
## 2010 2015 September 40
## 2011 2015 September 40
## 2012 2015 September 40
## 2013 2015 September 40
## 2014 2015 September 40
## 2015 2015 September 40
## 2016 2015 September 40
## 2017 2015 September 40
## 2018 2015 September 40
## 2019 2015 September 40
## 2020 2015 September 40
## 2021 2015 September 40
## 2022 2015 September 40
## 2023 2015 September 40
## 2024 2015 September 40
## 2025 2015 September 40
## 2026 2015 September 40
## 2027 2015 September 40
## 2028 2015 September 40
## 2029 2015 September 40
## 2030 2015 September 40
## 2031 2015 September 40
## 2032 2015 September 40
## 2033 2015 September 40
## 2034 2015 September 40
## 2035 2015 September 40
## 2036 2015 September 40
## 2037 2015 September 40
## 2038 2015 September 40
## 2039 2015 September 40
## 2040 2015 September 40
## 2041 2015 September 40
## 2042 2015 September 40
## 2043 2015 September 40
## 2044 2015 September 40
## 2045 2015 September 40
## 2046 2015 September 40
## 2047 2015 September 40
## 2048 2015 September 40
## 2049 2015 September 40
## 2050 2015 September 40
## 2051 2015 September 40
## 2052 2015 September 40
## 2053 2015 September 40
## 2054 2015 September 40
## 2055 2015 September 40
## 2056 2015 September 40
## 2057 2015 September 40
## 2058 2015 September 40
## 2059 2015 September 40
## 2060 2015 September 40
## 2061 2015 September 40
## 2062 2015 September 40
## 2063 2015 September 40
## 2064 2015 September 40
## 2065 2015 September 40
## 2066 2015 September 40
## 2067 2015 September 40
## 2068 2015 September 40
## 2069 2015 September 40
## 2070 2015 September 40
## 2071 2015 September 40
## 2072 2015 September 40
## 2073 2015 September 40
## 2074 2015 September 40
## 2075 2015 September 40
## 2076 2015 September 40
## 2077 2015 September 40
## 2078 2015 September 40
## 2079 2015 September 40
## 2080 2015 September 40
## 2081 2015 September 40
## 2082 2015 September 40
## 2083 2015 September 40
## 2084 2015 September 40
## 2085 2015 September 40
## 2086 2015 September 40
## 2087 2015 September 40
## 2088 2015 October 40
## 2089 2015 October 40
## 2090 2015 October 40
## 2091 2015 October 40
## 2092 2015 October 40
## 2093 2015 October 40
## 2094 2015 October 40
## 2095 2015 October 40
## 2096 2015 October 40
## 2097 2015 October 40
## 2098 2015 October 40
## 2099 2015 October 40
## 2100 2015 October 40
## 2101 2015 October 40
## 2102 2015 October 40
## 2103 2015 October 40
## 2104 2015 October 40
## 2105 2015 October 40
## 2106 2015 October 40
## 2107 2015 October 40
## 2108 2015 October 40
## 2109 2015 October 40
## 2110 2015 October 40
## 2111 2015 October 40
## 2112 2015 October 40
## 2113 2015 October 40
## 2114 2015 October 40
## 2115 2015 October 40
## 2116 2015 October 40
## 2117 2015 October 40
## 2118 2015 October 40
## 2119 2015 October 40
## 2120 2015 October 40
## 2121 2015 October 40
## 2122 2015 October 40
## 2123 2015 October 40
## 2124 2015 October 40
## 2125 2015 October 40
## 2126 2015 October 40
## 2127 2015 October 40
## 2128 2015 October 40
## 2129 2015 October 40
## 2130 2015 October 40
## 2131 2015 October 40
## 2132 2015 October 40
## 2133 2015 October 40
## 2134 2015 October 40
## 2135 2015 October 40
## 2136 2015 October 40
## 2137 2015 October 40
## 2138 2015 October 40
## 2139 2015 October 40
## 2140 2015 October 40
## 2141 2015 October 40
## 2142 2015 October 40
## 2143 2015 October 40
## 2144 2015 October 40
## 2145 2015 October 40
## 2146 2015 October 40
## 2147 2015 October 40
## 2148 2015 October 40
## 2149 2015 October 40
## 2150 2015 October 40
## 2151 2015 October 40
## 2152 2015 October 40
## 2153 2015 October 40
## 2154 2015 October 40
## 2155 2015 October 40
## 2156 2015 October 40
## 2157 2015 October 40
## 2158 2015 October 40
## 2159 2015 October 40
## 2160 2015 October 40
## 2161 2015 October 40
## 2162 2015 October 40
## 2163 2015 October 40
## 2164 2015 October 40
## 2165 2015 October 40
## 2166 2015 October 40
## 2167 2015 October 40
## 2168 2015 October 40
## 2169 2015 October 40
## 2170 2015 October 40
## 2171 2015 October 41
## 2172 2015 October 41
## 2173 2015 October 41
## 2174 2015 October 41
## 2175 2015 October 41
## 2176 2015 October 41
## 2177 2015 October 41
## 2178 2015 October 41
## 2179 2015 October 41
## 2180 2015 October 41
## 2181 2015 October 41
## 2182 2015 October 41
## 2183 2015 October 41
## 2184 2015 October 41
## 2185 2015 October 41
## 2186 2015 October 41
## 2187 2015 October 41
## 2188 2015 October 41
## 2189 2015 October 41
## 2190 2015 October 41
## 2191 2015 October 41
## 2192 2015 October 41
## 2193 2015 October 41
## 2194 2015 October 41
## 2195 2015 October 41
## 2196 2015 October 41
## 2197 2015 October 41
## 2198 2015 October 41
## 2199 2015 October 41
## 2200 2015 October 41
## 2201 2015 October 41
## 2202 2015 October 41
## 2203 2015 October 41
## 2204 2015 October 41
## 2205 2015 October 41
## 2206 2015 October 41
## 2207 2015 October 41
## 2208 2015 October 41
## 2209 2015 October 41
## 2210 2015 October 41
## 2211 2015 October 41
## 2212 2015 October 41
## 2213 2015 October 41
## 2214 2015 October 41
## 2215 2015 October 41
## 2216 2015 October 41
## 2217 2015 October 41
## 2218 2015 October 41
## 2219 2015 October 41
## 2220 2015 October 41
## 2221 2015 October 41
## 2222 2015 October 41
## 2223 2015 October 41
## 2224 2015 October 41
## 2225 2015 October 41
## 2226 2015 October 41
## 2227 2015 October 41
## 2228 2015 October 41
## 2229 2015 October 41
## 2230 2015 October 41
## 2231 2015 October 41
## 2232 2015 October 41
## 2233 2015 October 41
## 2234 2015 October 41
## 2235 2015 October 41
## 2236 2015 October 41
## 2237 2015 October 41
## 2238 2015 October 41
## 2239 2015 October 41
## 2240 2015 October 41
## 2241 2015 October 41
## 2242 2015 October 41
## 2243 2015 October 41
## 2244 2015 October 41
## 2245 2015 October 41
## 2246 2015 October 41
## 2247 2015 October 41
## 2248 2015 October 41
## 2249 2015 October 41
## 2250 2015 October 41
## 2251 2015 October 41
## 2252 2015 October 41
## 2253 2015 October 41
## 2254 2015 October 41
## 2255 2015 October 41
## 2256 2015 October 41
## 2257 2015 October 41
## 2258 2015 October 41
## 2259 2015 October 41
## 2260 2015 October 41
## 2261 2015 October 41
## 2262 2015 October 41
## 2263 2015 October 41
## 2264 2015 October 41
## 2265 2015 October 41
## 2266 2015 October 41
## 2267 2015 October 41
## 2268 2015 October 41
## 2269 2015 October 41
## 2270 2015 October 41
## 2271 2015 October 41
## 2272 2015 October 41
## 2273 2015 October 41
## 2274 2015 October 41
## 2275 2015 October 41
## 2276 2015 October 41
## 2277 2015 October 41
## 2278 2015 October 41
## 2279 2015 October 41
## 2280 2015 October 41
## 2281 2015 October 41
## 2282 2015 October 41
## 2283 2015 October 41
## 2284 2015 October 41
## 2285 2015 October 41
## 2286 2015 October 41
## 2287 2015 October 41
## 2288 2015 October 41
## 2289 2015 October 41
## 2290 2015 October 41
## 2291 2015 October 41
## 2292 2015 October 41
## 2293 2015 October 41
## 2294 2015 October 41
## 2295 2015 October 41
## 2296 2015 October 41
## 2297 2015 October 41
## 2298 2015 October 41
## 2299 2015 October 41
## 2300 2015 October 41
## 2301 2015 October 41
## 2302 2015 October 41
## 2303 2015 October 41
## 2304 2015 October 41
## 2305 2015 October 41
## 2306 2015 October 41
## 2307 2015 October 41
## 2308 2015 October 41
## 2309 2015 October 41
## 2310 2015 October 41
## 2311 2015 October 41
## 2312 2015 October 41
## 2313 2015 October 41
## 2314 2015 October 41
## 2315 2015 October 41
## 2316 2015 October 41
## 2317 2015 October 41
## 2318 2015 October 41
## 2319 2015 October 41
## 2320 2015 October 41
## 2321 2015 October 41
## 2322 2015 October 41
## 2323 2015 October 41
## 2324 2015 October 41
## 2325 2015 October 41
## 2326 2015 October 41
## 2327 2015 October 41
## 2328 2015 October 41
## 2329 2015 October 41
## 2330 2015 October 41
## 2331 2015 October 41
## 2332 2015 October 41
## 2333 2015 October 41
## 2334 2015 October 41
## 2335 2015 October 41
## 2336 2015 October 41
## 2337 2015 October 41
## 2338 2015 October 41
## 2339 2015 October 41
## 2340 2015 October 41
## 2341 2015 October 41
## 2342 2015 October 41
## 2343 2015 October 41
## 2344 2015 October 41
## 2345 2015 October 41
## 2346 2015 October 41
## 2347 2015 October 41
## 2348 2015 October 41
## 2349 2015 October 41
## 2350 2015 October 41
## 2351 2015 October 41
## 2352 2015 October 41
## 2353 2015 October 41
## 2354 2015 October 41
## 2355 2015 October 41
## 2356 2015 October 41
## 2357 2015 October 41
## 2358 2015 October 41
## 2359 2015 October 41
## 2360 2015 October 41
## 2361 2015 October 41
## 2362 2015 October 41
## 2363 2015 October 41
## 2364 2015 October 41
## 2365 2015 October 41
## 2366 2015 October 41
## 2367 2015 October 41
## 2368 2015 October 41
## 2369 2015 October 41
## 2370 2015 October 41
## 2371 2015 October 41
## 2372 2015 October 41
## 2373 2015 October 41
## 2374 2015 October 41
## 2375 2015 October 41
## 2376 2015 October 41
## 2377 2015 October 41
## 2378 2015 October 41
## 2379 2015 October 41
## 2380 2015 October 41
## 2381 2015 October 41
## 2382 2015 October 41
## 2383 2015 October 41
## 2384 2015 October 41
## 2385 2015 October 41
## 2386 2015 October 42
## 2387 2015 October 42
## 2388 2015 October 42
## 2389 2015 October 42
## 2390 2015 October 42
## 2391 2015 October 42
## 2392 2015 October 42
## 2393 2015 October 42
## 2394 2015 October 42
## 2395 2015 October 42
## 2396 2015 October 42
## 2397 2015 October 42
## 2398 2015 October 42
## 2399 2015 October 42
## 2400 2015 October 42
## 2401 2015 October 42
## 2402 2015 October 42
## 2403 2015 October 42
## 2404 2015 October 42
## 2405 2015 October 42
## 2406 2015 October 42
## 2407 2015 October 42
## 2408 2015 October 42
## 2409 2015 October 42
## 2410 2015 October 42
## 2411 2015 October 42
## 2412 2015 October 42
## 2413 2015 October 42
## 2414 2015 October 42
## 2415 2015 October 42
## 2416 2015 October 42
## 2417 2015 October 42
## 2418 2015 October 42
## 2419 2015 October 42
## 2420 2015 October 42
## 2421 2015 October 42
## 2422 2015 October 42
## 2423 2015 October 42
## 2424 2015 October 42
## 2425 2015 October 42
## 2426 2015 October 42
## 2427 2015 October 42
## 2428 2015 October 42
## 2429 2015 October 42
## 2430 2015 October 42
## 2431 2015 October 42
## 2432 2015 October 42
## 2433 2015 October 42
## 2434 2015 October 42
## 2435 2015 October 42
## 2436 2015 October 42
## 2437 2015 October 42
## 2438 2015 October 42
## 2439 2015 October 42
## 2440 2015 October 42
## 2441 2015 October 42
## 2442 2015 October 42
## 2443 2015 October 42
## 2444 2015 October 42
## 2445 2015 October 42
## 2446 2015 October 42
## 2447 2015 October 42
## 2448 2015 October 42
## 2449 2015 October 42
## 2450 2015 October 42
## 2451 2015 October 42
## 2452 2015 October 42
## 2453 2015 October 42
## 2454 2015 October 42
## 2455 2015 October 42
## 2456 2015 October 42
## 2457 2015 October 42
## 2458 2015 October 42
## 2459 2015 October 42
## 2460 2015 October 43
## 2461 2015 October 43
## 2462 2015 October 43
## 2463 2015 October 43
## 2464 2015 October 43
## 2465 2015 October 43
## 2466 2015 October 43
## 2467 2015 October 43
## 2468 2015 October 43
## 2469 2015 October 43
## 2470 2015 October 43
## 2471 2015 October 43
## 2472 2015 October 43
## 2473 2015 October 43
## 2474 2015 October 43
## 2475 2015 October 43
## 2476 2015 October 43
## 2477 2015 October 43
## 2478 2015 October 43
## 2479 2015 October 43
## 2480 2015 October 43
## 2481 2015 October 43
## 2482 2015 October 43
## 2483 2015 October 43
## 2484 2015 October 43
## 2485 2015 October 43
## 2486 2015 October 43
## 2487 2015 October 43
## 2488 2015 October 43
## 2489 2015 October 43
## 2490 2015 October 43
## 2491 2015 October 43
## 2492 2015 October 43
## 2493 2015 October 43
## 2494 2015 October 43
## 2495 2015 October 43
## 2496 2015 October 43
## 2497 2015 October 43
## 2498 2015 October 43
## 2499 2015 October 43
## 2500 2015 October 43
## 2501 2015 October 43
## 2502 2015 October 43
## 2503 2015 October 43
## 2504 2015 October 43
## 2505 2015 October 43
## 2506 2015 October 43
## 2507 2015 October 43
## 2508 2015 October 43
## 2509 2015 October 43
## 2510 2015 October 43
## 2511 2015 October 43
## 2512 2015 October 43
## 2513 2015 October 43
## 2514 2015 October 43
## 2515 2015 October 43
## 2516 2015 October 43
## 2517 2015 October 43
## 2518 2015 October 43
## 2519 2015 October 43
## 2520 2015 October 43
## 2521 2015 October 43
## 2522 2015 October 43
## 2523 2015 October 43
## 2524 2015 October 43
## 2525 2015 October 43
## 2526 2015 October 43
## 2527 2015 October 43
## 2528 2015 October 43
## 2529 2015 October 43
## 2530 2015 October 43
## 2531 2015 October 43
## 2532 2015 October 43
## 2533 2015 October 43
## 2534 2015 October 43
## 2535 2015 October 43
## 2536 2015 October 43
## 2537 2015 October 43
## 2538 2015 October 43
## 2539 2015 October 43
## 2540 2015 October 43
## 2541 2015 October 43
## 2542 2015 October 43
## 2543 2015 October 43
## 2544 2015 October 43
## 2545 2015 October 43
## 2546 2015 October 43
## 2547 2015 October 43
## 2548 2015 October 43
## 2549 2015 October 43
## 2550 2015 October 43
## 2551 2015 October 43
## 2552 2015 October 43
## 2553 2015 October 43
## 2554 2015 October 43
## 2555 2015 October 43
## 2556 2015 October 43
## 2557 2015 October 43
## 2558 2015 October 43
## 2559 2015 October 43
## 2560 2015 October 43
## 2561 2015 October 43
## 2562 2015 October 43
## 2563 2015 October 43
## 2564 2015 October 43
## 2565 2015 October 43
## 2566 2015 October 43
## 2567 2015 October 43
## 2568 2015 October 43
## 2569 2015 October 43
## 2570 2015 October 43
## 2571 2015 October 43
## 2572 2015 October 43
## 2573 2015 October 43
## 2574 2015 October 43
## 2575 2015 October 43
## 2576 2015 October 43
## 2577 2015 October 43
## 2578 2015 October 43
## 2579 2015 October 43
## 2580 2015 October 43
## 2581 2015 October 43
## 2582 2015 October 43
## 2583 2015 October 43
## 2584 2015 October 43
## 2585 2015 October 43
## 2586 2015 October 43
## 2587 2015 October 43
## 2588 2015 October 43
## 2589 2015 October 43
## 2590 2015 October 43
## 2591 2015 October 43
## 2592 2015 October 43
## 2593 2015 October 43
## 2594 2015 October 43
## 2595 2015 October 43
## 2596 2015 October 43
## 2597 2015 October 43
## 2598 2015 October 43
## 2599 2015 October 43
## 2600 2015 October 43
## 2601 2015 October 43
## 2602 2015 October 43
## 2603 2015 October 43
## 2604 2015 October 43
## 2605 2015 October 43
## 2606 2015 October 43
## 2607 2015 October 43
## 2608 2015 October 43
## 2609 2015 October 43
## 2610 2015 October 43
## 2611 2015 October 43
## 2612 2015 October 43
## 2613 2015 October 43
## 2614 2015 October 43
## 2615 2015 October 43
## 2616 2015 October 43
## 2617 2015 October 43
## 2618 2015 October 43
## 2619 2015 October 43
## 2620 2015 October 43
## 2621 2015 October 43
## 2622 2015 October 43
## 2623 2015 October 43
## 2624 2015 October 43
## 2625 2015 October 43
## 2626 2015 October 43
## 2627 2015 October 43
## 2628 2015 October 43
## 2629 2015 October 43
## 2630 2015 October 43
## 2631 2015 October 43
## 2632 2015 October 43
## 2633 2015 October 43
## 2634 2015 October 43
## 2635 2015 October 43
## 2636 2015 October 43
## 2637 2015 October 43
## 2638 2015 October 43
## 2639 2015 October 43
## 2640 2015 October 43
## 2641 2015 October 43
## 2642 2015 October 43
## 2643 2015 October 43
## 2644 2015 October 43
## 2645 2015 October 43
## 2646 2015 October 43
## 2647 2015 October 43
## 2648 2015 October 43
## 2649 2015 October 43
## 2650 2015 October 43
## 2651 2015 October 43
## 2652 2015 October 43
## 2653 2015 October 43
## 2654 2015 October 43
## 2655 2015 October 43
## 2656 2015 October 43
## 2657 2015 October 43
## 2658 2015 October 43
## 2659 2015 October 43
## 2660 2015 October 43
## 2661 2015 October 43
## 2662 2015 October 43
## 2663 2015 October 43
## 2664 2015 October 43
## 2665 2015 October 43
## 2666 2015 October 43
## 2667 2015 October 43
## 2668 2015 October 43
## 2669 2015 October 43
## 2670 2015 October 43
## 2671 2015 October 43
## 2672 2015 October 43
## 2673 2015 October 43
## 2674 2015 October 43
## 2675 2015 October 43
## 2676 2015 October 43
## 2677 2015 October 43
## 2678 2015 October 43
## 2679 2015 October 43
## 2680 2015 October 43
## 2681 2015 October 43
## 2682 2015 October 43
## 2683 2015 October 43
## 2684 2015 October 43
## 2685 2015 October 43
## 2686 2015 October 44
## 2687 2015 October 44
## 2688 2015 October 44
## 2689 2015 October 44
## 2690 2015 October 44
## 2691 2015 October 44
## 2692 2015 October 44
## 2693 2015 October 44
## 2694 2015 October 44
## 2695 2015 October 44
## 2696 2015 October 44
## 2697 2015 October 44
## 2698 2015 October 44
## 2699 2015 October 44
## 2700 2015 October 44
## 2701 2015 October 44
## 2702 2015 October 44
## 2703 2015 October 44
## 2704 2015 October 44
## 2705 2015 October 44
## 2706 2015 October 44
## 2707 2015 October 44
## 2708 2015 October 44
## 2709 2015 October 44
## 2710 2015 October 44
## 2711 2015 October 44
## 2712 2015 October 44
## 2713 2015 October 44
## 2714 2015 October 44
## 2715 2015 October 44
## 2716 2015 October 44
## 2717 2015 October 44
## 2718 2015 October 44
## 2719 2015 October 44
## 2720 2015 October 44
## 2721 2015 October 44
## 2722 2015 October 44
## 2723 2015 October 44
## 2724 2015 October 44
## 2725 2015 October 44
## 2726 2015 October 44
## 2727 2015 October 44
## 2728 2015 October 44
## 2729 2015 October 44
## 2730 2015 October 44
## 2731 2015 October 44
## 2732 2015 October 44
## 2733 2015 October 44
## 2734 2015 October 44
## 2735 2015 October 44
## 2736 2015 October 44
## 2737 2015 October 44
## 2738 2015 October 44
## 2739 2015 October 44
## 2740 2015 October 44
## 2741 2015 October 44
## 2742 2015 October 44
## 2743 2015 October 44
## 2744 2015 October 44
## 2745 2015 October 44
## 2746 2015 October 44
## 2747 2015 October 44
## 2748 2015 October 44
## 2749 2015 October 44
## 2750 2015 October 44
## 2751 2015 October 44
## 2752 2015 October 44
## 2753 2015 October 44
## 2754 2015 October 44
## 2755 2015 October 44
## 2756 2015 October 44
## 2757 2015 October 44
## 2758 2015 October 44
## 2759 2015 October 44
## 2760 2015 October 44
## 2761 2015 October 44
## 2762 2015 October 44
## 2763 2015 October 44
## 2764 2015 October 44
## 2765 2015 October 44
## 2766 2015 October 44
## 2767 2015 October 44
## 2768 2015 October 44
## 2769 2015 October 44
## 2770 2015 October 44
## 2771 2015 October 44
## 2772 2015 October 44
## 2773 2015 October 44
## 2774 2015 October 44
## 2775 2015 October 44
## 2776 2015 October 44
## 2777 2015 October 44
## 2778 2015 October 44
## 2779 2015 October 44
## 2780 2015 October 44
## 2781 2015 October 44
## 2782 2015 October 44
## 2783 2015 October 44
## 2784 2015 October 44
## 2785 2015 October 44
## 2786 2015 October 44
## 2787 2015 October 44
## 2788 2015 October 44
## 2789 2015 October 44
## 2790 2015 October 44
## 2791 2015 October 44
## 2792 2015 October 44
## 2793 2015 October 44
## 2794 2015 October 44
## 2795 2015 October 44
## 2796 2015 October 44
## 2797 2015 October 44
## 2798 2015 October 44
## 2799 2015 October 44
## 2800 2015 October 44
## 2801 2015 October 44
## 2802 2015 October 44
## 2803 2015 October 44
## 2804 2015 October 44
## 2805 2015 October 44
## 2806 2015 October 44
## 2807 2015 October 44
## 2808 2015 October 44
## 2809 2015 October 44
## 2810 2015 October 44
## 2811 2015 October 44
## 2812 2015 October 44
## 2813 2015 October 44
## 2814 2015 October 44
## 2815 2015 October 44
## 2816 2015 October 44
## 2817 2015 October 44
## 2818 2015 October 44
## 2819 2015 October 44
## 2820 2015 October 44
## 2821 2015 October 44
## 2822 2015 October 44
## 2823 2015 October 44
## 2824 2015 October 44
## 2825 2015 October 44
## 2826 2015 October 44
## 2827 2015 October 44
## 2828 2015 October 44
## 2829 2015 October 44
## 2830 2015 October 44
## 2831 2015 October 44
## 2832 2015 October 44
## 2833 2015 October 44
## 2834 2015 October 44
## 2835 2015 October 44
## 2836 2015 November 45
## 2837 2015 November 45
## 2838 2015 November 45
## 2839 2015 November 45
## 2840 2015 November 45
## 2841 2015 November 45
## 2842 2015 November 45
## 2843 2015 November 45
## 2844 2015 November 45
## 2845 2015 November 45
## 2846 2015 November 45
## 2847 2015 November 45
## 2848 2015 November 45
## 2849 2015 November 45
## 2850 2015 November 45
## 2851 2015 November 45
## 2852 2015 November 45
## 2853 2015 November 45
## 2854 2015 November 45
## 2855 2015 November 45
## 2856 2015 November 45
## 2857 2015 November 45
## 2858 2015 November 45
## 2859 2015 November 45
## 2860 2015 November 45
## 2861 2015 November 45
## 2862 2015 November 45
## 2863 2015 November 45
## 2864 2015 November 45
## 2865 2015 November 45
## 2866 2015 November 45
## 2867 2015 November 45
## 2868 2015 November 45
## 2869 2015 November 45
## 2870 2015 November 45
## 2871 2015 November 45
## 2872 2015 November 45
## 2873 2015 November 45
## 2874 2015 November 45
## 2875 2015 November 45
## 2876 2015 November 45
## 2877 2015 November 45
## 2878 2015 November 45
## 2879 2015 November 45
## 2880 2015 November 45
## 2881 2015 November 45
## 2882 2015 November 45
## 2883 2015 November 45
## 2884 2015 November 45
## 2885 2015 November 45
## 2886 2015 November 45
## 2887 2015 November 45
## 2888 2015 November 45
## 2889 2015 November 45
## 2890 2015 November 45
## 2891 2015 November 45
## 2892 2015 November 45
## 2893 2015 November 45
## 2894 2015 November 45
## 2895 2015 November 45
## 2896 2015 November 45
## 2897 2015 November 45
## 2898 2015 November 45
## 2899 2015 November 45
## 2900 2015 November 45
## 2901 2015 November 45
## 2902 2015 November 45
## 2903 2015 November 45
## 2904 2015 November 45
## 2905 2015 November 45
## 2906 2015 November 45
## 2907 2015 November 45
## 2908 2015 November 45
## 2909 2015 November 45
## 2910 2015 November 45
## 2911 2015 November 45
## 2912 2015 November 45
## 2913 2015 November 45
## 2914 2015 November 45
## 2915 2015 November 45
## 2916 2015 November 45
## 2917 2015 November 45
## 2918 2015 November 45
## 2919 2015 November 45
## 2920 2015 November 45
## 2921 2015 November 45
## 2922 2015 November 45
## 2923 2015 November 45
## 2924 2015 November 45
## 2925 2015 November 45
## 2926 2015 November 45
## 2927 2015 November 45
## 2928 2015 November 45
## 2929 2015 November 45
## 2930 2015 November 45
## 2931 2015 November 45
## 2932 2015 November 45
## 2933 2015 November 45
## 2934 2015 November 45
## 2935 2015 November 45
## 2936 2015 November 45
## 2937 2015 November 45
## 2938 2015 November 45
## 2939 2015 November 45
## 2940 2015 November 45
## 2941 2015 November 45
## 2942 2015 November 45
## 2943 2015 November 45
## 2944 2015 November 45
## 2945 2015 November 45
## 2946 2015 November 45
## 2947 2015 November 45
## 2948 2015 November 45
## 2949 2015 November 45
## 2950 2015 November 45
## 2951 2015 November 45
## 2952 2015 November 45
## 2953 2015 November 45
## 2954 2015 November 45
## 2955 2015 November 45
## 2956 2015 November 45
## 2957 2015 November 45
## 2958 2015 November 45
## 2959 2015 November 46
## 2960 2015 November 46
## 2961 2015 November 46
## 2962 2015 November 46
## 2963 2015 November 46
## 2964 2015 November 46
## 2965 2015 November 46
## 2966 2015 November 46
## 2967 2015 November 46
## 2968 2015 November 46
## 2969 2015 November 46
## 2970 2015 November 46
## 2971 2015 November 46
## 2972 2015 November 46
## 2973 2015 November 46
## 2974 2015 November 46
## 2975 2015 November 46
## 2976 2015 November 46
## 2977 2015 November 46
## 2978 2015 November 46
## 2979 2015 November 46
## 2980 2015 November 46
## 2981 2015 November 46
## 2982 2015 November 46
## 2983 2015 November 46
## 2984 2015 November 46
## 2985 2015 November 46
## 2986 2015 November 46
## 2987 2015 November 46
## 2988 2015 November 46
## 2989 2015 November 46
## 2990 2015 November 46
## 2991 2015 November 46
## 2992 2015 November 46
## 2993 2015 November 46
## 2994 2015 November 46
## 2995 2015 November 46
## 2996 2015 November 46
## 2997 2015 November 46
## 2998 2015 November 46
## 2999 2015 November 46
## 3000 2015 November 46
## 3001 2015 November 46
## 3002 2015 November 46
## 3003 2015 November 46
## 3004 2015 November 46
## 3005 2015 November 46
## 3006 2015 November 46
## 3007 2015 November 46
## 3008 2015 November 46
## 3009 2015 November 46
## 3010 2015 November 46
## 3011 2015 November 46
## 3012 2015 November 46
## 3013 2015 November 46
## 3014 2015 November 46
## 3015 2015 November 46
## 3016 2015 November 46
## 3017 2015 November 46
## 3018 2015 November 46
## 3019 2015 November 46
## 3020 2015 November 46
## 3021 2015 November 46
## 3022 2015 November 46
## 3023 2015 November 46
## 3024 2015 November 46
## 3025 2015 November 46
## 3026 2015 November 46
## 3027 2015 November 46
## 3028 2015 November 46
## 3029 2015 November 46
## 3030 2015 November 46
## 3031 2015 November 46
## 3032 2015 November 46
## 3033 2015 November 46
## 3034 2015 November 46
## 3035 2015 November 46
## 3036 2015 November 46
## 3037 2015 November 46
## 3038 2015 November 46
## 3039 2015 November 46
## 3040 2015 November 46
## 3041 2015 November 46
## 3042 2015 November 46
## 3043 2015 November 46
## 3044 2015 November 46
## 3045 2015 November 46
## 3046 2015 November 46
## 3047 2015 November 46
## 3048 2015 November 46
## 3049 2015 November 46
## 3050 2015 November 46
## 3051 2015 November 46
## 3052 2015 November 46
## 3053 2015 November 46
## 3054 2015 November 46
## 3055 2015 November 46
## 3056 2015 November 46
## 3057 2015 November 46
## 3058 2015 November 46
## 3059 2015 November 46
## 3060 2015 November 46
## 3061 2015 November 46
## 3062 2015 November 46
## 3063 2015 November 46
## 3064 2015 November 46
## 3065 2015 November 46
## 3066 2015 November 46
## 3067 2015 November 46
## 3068 2015 November 46
## 3069 2015 November 46
## 3070 2015 November 46
## 3071 2015 November 46
## 3072 2015 November 46
## 3073 2015 November 46
## 3074 2015 November 46
## 3075 2015 November 46
## 3076 2015 November 46
## 3077 2015 November 46
## 3078 2015 November 46
## 3079 2015 November 46
## 3080 2015 November 46
## 3081 2015 November 46
## 3082 2015 November 46
## 3083 2015 November 46
## 3084 2015 November 46
## 3085 2015 November 47
## 3086 2015 November 47
## 3087 2015 November 47
## 3088 2015 November 47
## 3089 2015 November 47
## 3090 2015 November 47
## 3091 2015 November 47
## 3092 2015 November 47
## 3093 2015 November 47
## 3094 2015 November 47
## 3095 2015 November 47
## 3096 2015 November 47
## 3097 2015 November 47
## 3098 2015 November 47
## 3099 2015 November 47
## 3100 2015 November 47
## 3101 2015 November 47
## 3102 2015 November 47
## 3103 2015 November 47
## 3104 2015 November 47
## 3105 2015 November 47
## 3106 2015 November 47
## 3107 2015 November 47
## 3108 2015 November 47
## 3109 2015 November 47
## 3110 2015 November 47
## 3111 2015 November 47
## 3112 2015 November 47
## 3113 2015 November 47
## 3114 2015 November 47
## 3115 2015 November 47
## 3116 2015 November 47
## 3117 2015 November 47
## 3118 2015 November 47
## 3119 2015 November 47
## 3120 2015 November 47
## 3121 2015 November 47
## 3122 2015 November 47
## 3123 2015 November 47
## 3124 2015 November 47
## 3125 2015 November 47
## 3126 2015 November 47
## 3127 2015 November 47
## 3128 2015 November 47
## 3129 2015 November 47
## 3130 2015 November 47
## 3131 2015 November 47
## 3132 2015 November 47
## 3133 2015 November 47
## 3134 2015 November 47
## 3135 2015 November 47
## 3136 2015 November 47
## 3137 2015 November 47
## 3138 2015 November 47
## 3139 2015 November 47
## 3140 2015 November 47
## 3141 2015 November 47
## 3142 2015 November 47
## 3143 2015 November 47
## 3144 2015 November 47
## 3145 2015 November 47
## 3146 2015 November 47
## 3147 2015 November 47
## 3148 2015 November 47
## 3149 2015 November 47
## 3150 2015 November 47
## 3151 2015 November 47
## 3152 2015 November 47
## 3153 2015 November 47
## 3154 2015 November 47
## 3155 2015 November 47
## 3156 2015 November 47
## 3157 2015 November 47
## 3158 2015 November 47
## 3159 2015 November 47
## 3160 2015 November 47
## 3161 2015 November 47
## 3162 2015 November 47
## 3163 2015 November 47
## 3164 2015 November 47
## 3165 2015 November 47
## 3166 2015 November 47
## 3167 2015 November 47
## 3168 2015 November 47
## 3169 2015 November 47
## 3170 2015 November 47
## 3171 2015 November 47
## 3172 2015 November 47
## 3173 2015 November 47
## 3174 2015 November 47
## 3175 2015 November 47
## 3176 2015 November 47
## 3177 2015 November 47
## 3178 2015 November 47
## 3179 2015 November 47
## 3180 2015 November 47
## 3181 2015 November 47
## 3182 2015 November 47
## 3183 2015 November 47
## 3184 2015 November 47
## 3185 2015 November 47
## 3186 2015 November 47
## 3187 2015 November 47
## 3188 2015 November 47
## 3189 2015 November 47
## 3190 2015 November 47
## 3191 2015 November 47
## 3192 2015 November 47
## 3193 2015 November 47
## 3194 2015 November 47
## 3195 2015 November 47
## 3196 2015 November 47
## 3197 2015 November 47
## 3198 2015 November 47
## 3199 2015 November 47
## 3200 2015 November 47
## 3201 2015 November 47
## 3202 2015 November 47
## 3203 2015 November 47
## 3204 2015 November 47
## 3205 2015 November 47
## 3206 2015 November 47
## 3207 2015 November 47
## 3208 2015 November 47
## 3209 2015 November 47
## 3210 2015 November 47
## 3211 2015 November 47
## 3212 2015 November 47
## 3213 2015 November 47
## 3214 2015 November 47
## 3215 2015 November 47
## 3216 2015 November 47
## 3217 2015 November 47
## 3218 2015 November 47
## 3219 2015 November 47
## 3220 2015 November 47
## 3221 2015 November 47
## 3222 2015 November 47
## 3223 2015 November 47
## 3224 2015 November 47
## 3225 2015 November 47
## 3226 2015 November 47
## 3227 2015 November 47
## 3228 2015 November 47
## 3229 2015 November 47
## 3230 2015 November 47
## 3231 2015 November 47
## 3232 2015 November 47
## 3233 2015 November 47
## 3234 2015 November 48
## 3235 2015 November 48
## 3236 2015 November 48
## 3237 2015 November 48
## 3238 2015 November 48
## 3239 2015 November 48
## 3240 2015 November 48
## 3241 2015 November 48
## 3242 2015 November 48
## 3243 2015 November 48
## 3244 2015 November 48
## 3245 2015 November 48
## 3246 2015 November 48
## 3247 2015 November 48
## 3248 2015 November 48
## 3249 2015 November 48
## 3250 2015 November 48
## 3251 2015 November 48
## 3252 2015 November 48
## 3253 2015 November 48
## 3254 2015 November 48
## 3255 2015 November 48
## 3256 2015 November 48
## 3257 2015 November 48
## 3258 2015 November 48
## 3259 2015 November 48
## 3260 2015 November 48
## 3261 2015 November 48
## 3262 2015 November 48
## 3263 2015 November 48
## 3264 2015 November 48
## 3265 2015 November 48
## 3266 2015 November 48
## 3267 2015 November 49
## 3268 2015 November 49
## 3269 2015 November 49
## 3270 2015 November 49
## 3271 2015 November 49
## 3272 2015 December 49
## 3273 2015 December 49
## 3274 2015 December 49
## 3275 2015 December 49
## 3276 2015 December 49
## 3277 2015 December 49
## 3278 2015 December 49
## 3279 2015 December 49
## 3280 2015 December 49
## 3281 2015 December 49
## 3282 2015 December 49
## 3283 2015 December 49
## 3284 2015 December 49
## 3285 2015 December 49
## 3286 2015 December 49
## 3287 2015 December 49
## 3288 2015 December 49
## 3289 2015 December 49
## 3290 2015 December 49
## 3291 2015 December 49
## 3292 2015 December 49
## 3293 2015 December 49
## 3294 2015 December 49
## 3295 2015 December 49
## 3296 2015 December 49
## 3297 2015 December 49
## 3298 2015 December 49
## 3299 2015 December 49
## 3300 2015 December 49
## 3301 2015 December 49
## 3302 2015 December 49
## 3303 2015 December 49
## 3304 2015 December 49
## 3305 2015 December 49
## 3306 2015 December 49
## 3307 2015 December 49
## 3308 2015 December 49
## 3309 2015 December 49
## 3310 2015 December 49
## 3311 2015 December 49
## 3312 2015 December 49
## 3313 2015 December 49
## 3314 2015 December 49
## 3315 2015 December 49
## 3316 2015 December 49
## 3317 2015 December 49
## 3318 2015 December 49
## 3319 2015 December 49
## 3320 2015 December 49
## 3321 2015 December 49
## 3322 2015 December 49
## 3323 2015 December 49
## 3324 2015 December 49
## 3325 2015 December 49
## 3326 2015 December 49
## 3327 2015 December 49
## 3328 2015 December 49
## 3329 2015 December 49
## 3330 2015 December 49
## 3331 2015 December 49
## 3332 2015 December 49
## 3333 2015 December 49
## 3334 2015 December 49
## 3335 2015 December 49
## 3336 2015 December 49
## 3337 2015 December 49
## 3338 2015 December 49
## 3339 2015 December 49
## 3340 2015 December 49
## 3341 2015 December 49
## 3342 2015 December 49
## 3343 2015 December 49
## 3344 2015 December 49
## 3345 2015 December 49
## 3346 2015 December 49
## 3347 2015 December 49
## 3348 2015 December 49
## 3349 2015 December 49
## 3350 2015 December 49
## 3351 2015 December 49
## 3352 2015 December 49
## 3353 2015 December 49
## 3354 2015 December 49
## 3355 2015 December 49
## 3356 2015 December 49
## 3357 2015 December 49
## 3358 2015 December 49
## 3359 2015 December 49
## 3360 2015 December 49
## 3361 2015 December 49
## 3362 2015 December 49
## 3363 2015 December 49
## 3364 2015 December 49
## 3365 2015 December 49
## 3366 2015 December 49
## 3367 2015 December 49
## 3368 2015 December 49
## 3369 2015 December 49
## 3370 2015 December 49
## 3371 2015 December 49
## 3372 2015 December 49
## 3373 2015 December 49
## 3374 2015 December 49
## 3375 2015 December 49
## 3376 2015 December 49
## 3377 2015 December 49
## 3378 2015 December 49
## 3379 2015 December 49
## 3380 2015 December 49
## 3381 2015 December 49
## 3382 2015 December 49
## 3383 2015 December 49
## 3384 2015 December 49
## 3385 2015 December 49
## 3386 2015 December 49
## 3387 2015 December 49
## 3388 2015 December 49
## 3389 2015 December 49
## 3390 2015 December 49
## 3391 2015 December 49
## 3392 2015 December 49
## 3393 2015 December 49
## 3394 2015 December 49
## 3395 2015 December 49
## 3396 2015 December 49
## 3397 2015 December 49
## 3398 2015 December 49
## 3399 2015 December 49
## 3400 2015 December 49
## 3401 2015 December 49
## 3402 2015 December 49
## 3403 2015 December 49
## 3404 2015 December 49
## 3405 2015 December 49
## 3406 2015 December 49
## 3407 2015 December 49
## 3408 2015 December 49
## 3409 2015 December 49
## 3410 2015 December 49
## 3411 2015 December 49
## 3412 2015 December 49
## 3413 2015 December 49
## 3414 2015 December 49
## 3415 2015 December 49
## 3416 2015 December 49
## 3417 2015 December 49
## 3418 2015 December 49
## 3419 2015 December 49
## 3420 2015 December 49
## 3421 2015 December 49
## 3422 2015 December 49
## 3423 2015 December 49
## 3424 2015 December 49
## 3425 2015 December 49
## 3426 2015 December 49
## 3427 2015 December 49
## 3428 2015 December 50
## 3429 2015 December 50
## 3430 2015 December 50
## 3431 2015 December 50
## 3432 2015 December 50
## 3433 2015 December 50
## 3434 2015 December 50
## 3435 2015 December 50
## 3436 2015 December 50
## 3437 2015 December 50
## 3438 2015 December 50
## 3439 2015 December 50
## 3440 2015 December 50
## 3441 2015 December 50
## 3442 2015 December 50
## 3443 2015 December 50
## 3444 2015 December 50
## 3445 2015 December 50
## 3446 2015 December 50
## 3447 2015 December 50
## 3448 2015 December 50
## 3449 2015 December 50
## 3450 2015 December 50
## 3451 2015 December 50
## 3452 2015 December 50
## 3453 2015 December 50
## 3454 2015 December 50
## 3455 2015 December 50
## 3456 2015 December 50
## 3457 2015 December 50
## 3458 2015 December 50
## 3459 2015 December 50
## 3460 2015 December 51
## 3461 2015 December 51
## 3462 2015 December 51
## 3463 2015 December 51
## 3464 2015 December 51
## 3465 2015 December 51
## 3466 2015 December 51
## 3467 2015 December 51
## 3468 2015 December 51
## 3469 2015 December 51
## 3470 2015 December 51
## 3471 2015 December 51
## 3472 2015 December 51
## 3473 2015 December 51
## 3474 2015 December 51
## 3475 2015 December 51
## 3476 2015 December 51
## 3477 2015 December 51
## 3478 2015 December 51
## 3479 2015 December 51
## 3480 2015 December 51
## 3481 2015 December 51
## 3482 2015 December 51
## 3483 2015 December 51
## 3484 2015 December 51
## 3485 2015 December 51
## 3486 2015 December 51
## 3487 2015 December 51
## 3488 2015 December 51
## 3489 2015 December 51
## 3490 2015 December 51
## 3491 2015 December 51
## 3492 2015 December 51
## 3493 2015 December 51
## 3494 2015 December 51
## 3495 2015 December 51
## 3496 2015 December 51
## 3497 2015 December 51
## 3498 2015 December 51
## 3499 2015 December 51
## 3500 2015 December 51
## 3501 2015 December 51
## 3502 2015 December 51
## 3503 2015 December 51
## 3504 2015 December 52
## 3505 2015 December 52
## 3506 2015 December 52
## 3507 2015 December 52
## 3508 2015 December 52
## 3509 2015 December 52
## 3510 2015 December 52
## 3511 2015 December 52
## 3512 2015 December 52
## 3513 2015 December 52
## 3514 2015 December 52
## 3515 2015 December 52
## 3516 2015 December 52
## 3517 2015 December 52
## 3518 2015 December 52
## 3519 2015 December 52
## 3520 2015 December 52
## 3521 2015 December 52
## 3522 2015 December 52
## 3523 2015 December 52
## 3524 2015 December 52
## 3525 2015 December 52
## 3526 2015 December 52
## 3527 2015 December 52
## 3528 2015 December 52
## 3529 2015 December 52
## 3530 2015 December 52
## 3531 2015 December 52
## 3532 2015 December 52
## 3533 2015 December 52
## 3534 2015 December 52
## 3535 2015 December 52
## 3536 2015 December 52
## 3537 2015 December 52
## 3538 2015 December 52
## 3539 2015 December 52
## 3540 2015 December 52
## 3541 2015 December 52
## 3542 2015 December 52
## 3543 2015 December 52
## 3544 2015 December 52
## 3545 2015 December 52
## 3546 2015 December 52
## 3547 2015 December 52
## 3548 2015 December 52
## 3549 2015 December 52
## 3550 2015 December 52
## 3551 2015 December 52
## 3552 2015 December 52
## 3553 2015 December 52
## 3554 2015 December 52
## 3555 2015 December 52
## 3556 2015 December 52
## 3557 2015 December 52
## 3558 2015 December 52
## 3559 2015 December 52
## 3560 2015 December 52
## 3561 2015 December 52
## 3562 2015 December 52
## 3563 2015 December 52
## 3564 2015 December 52
## 3565 2015 December 52
## 3566 2015 December 52
## 3567 2015 December 52
## 3568 2015 December 52
## 3569 2015 December 52
## 3570 2015 December 52
## 3571 2015 December 52
## 3572 2015 December 52
## 3573 2015 December 52
## 3574 2015 December 52
## 3575 2015 December 52
## 3576 2015 December 52
## 3577 2015 December 52
## 3578 2015 December 52
## 3579 2015 December 52
## 3580 2015 December 52
## 3581 2015 December 52
## 3582 2015 December 52
## 3583 2015 December 52
## 3584 2015 December 52
## 3585 2015 December 52
## 3586 2015 December 52
## 3587 2015 December 52
## 3588 2015 December 52
## 3589 2015 December 52
## 3590 2015 December 52
## 3591 2015 December 52
## 3592 2015 December 52
## 3593 2015 December 52
## 3594 2015 December 52
## 3595 2015 December 52
## 3596 2015 December 52
## 3597 2015 December 52
## 3598 2015 December 52
## 3599 2015 December 52
## 3600 2015 December 52
## 3601 2015 December 52
## 3602 2015 December 52
## 3603 2015 December 52
## 3604 2015 December 52
## 3605 2015 December 52
## 3606 2015 December 52
## 3607 2015 December 52
## 3608 2015 December 52
## 3609 2015 December 52
## 3610 2015 December 52
## 3611 2015 December 52
## 3612 2015 December 52
## 3613 2015 December 52
## 3614 2015 December 52
## 3615 2015 December 52
## 3616 2015 December 52
## 3617 2015 December 52
## 3618 2015 December 52
## 3619 2015 December 52
## 3620 2015 December 52
## 3621 2015 December 52
## 3622 2015 December 52
## 3623 2015 December 53
## 3624 2015 December 53
## 3625 2015 December 53
## 3626 2015 December 53
## 3627 2015 December 53
## 3628 2015 December 53
## 3629 2015 December 53
## 3630 2015 December 53
## 3631 2015 December 53
## 3632 2015 December 53
## 3633 2015 December 53
## 3634 2015 December 53
## 3635 2015 December 53
## 3636 2015 December 53
## 3637 2015 December 53
## 3638 2015 December 53
## 3639 2015 December 53
## 3640 2015 December 53
## 3641 2015 December 53
## 3642 2015 December 53
## 3643 2015 December 53
## 3644 2015 December 53
## 3645 2015 December 53
## 3646 2015 December 53
## 3647 2015 December 53
## 3648 2015 December 53
## 3649 2015 December 53
## 3650 2015 December 53
## 3651 2015 December 53
## 3652 2015 December 53
## 3653 2015 December 53
## 3654 2015 December 53
## 3655 2015 December 53
## 3656 2015 December 53
## 3657 2015 December 53
## 3658 2015 December 53
## 3659 2015 December 53
## 3660 2015 December 53
## 3661 2015 December 53
## 3662 2015 December 53
## 3663 2015 December 53
## 3664 2015 December 53
## 3665 2015 December 53
## 3666 2015 December 53
## 3667 2015 December 53
## 3668 2015 December 53
## 3669 2015 December 53
## 3670 2015 December 53
## 3671 2015 December 53
## 3672 2015 December 53
## 3673 2015 December 53
## 3674 2015 December 53
## 3675 2015 December 53
## 3676 2015 December 53
## 3677 2015 December 53
## 3678 2015 December 53
## 3679 2015 December 53
## 3680 2015 December 53
## 3681 2015 December 53
## 3682 2015 December 53
## 3683 2015 December 53
## 3684 2015 December 53
## 3685 2015 December 53
## 3686 2015 December 53
## 3687 2015 December 53
## 3688 2015 December 53
## 3689 2015 December 53
## 3690 2015 December 53
## 3691 2015 December 53
## 3692 2015 December 53
## 3693 2015 December 53
## 3694 2015 December 53
## 3695 2015 December 53
## 3696 2015 December 53
## 3697 2015 December 53
## 3698 2015 December 53
## 3699 2015 December 53
## 3700 2015 December 53
## 3701 2015 December 53
## 3702 2015 December 53
## 3703 2015 December 53
## 3704 2015 December 53
## 3705 2015 December 53
## 3706 2015 December 53
## 3707 2015 December 53
## 3708 2015 December 53
## 3709 2015 December 53
## 3710 2015 December 53
## 3711 2015 December 53
## 3712 2015 December 53
## 3713 2015 December 53
## 3714 2015 December 53
## 3715 2015 December 53
## 3716 2015 December 53
## 3717 2015 December 53
## 3718 2015 December 53
## 3719 2015 December 53
## 3720 2015 December 53
## 3721 2015 December 53
## 3722 2015 December 53
## 3723 2015 December 53
## 3724 2015 December 53
## 3725 2015 December 53
## 3726 2015 December 53
## 3727 2015 December 53
## 3728 2015 December 53
## 3729 2015 December 53
## 3730 2015 December 53
## 3731 2015 December 53
## 3732 2015 December 53
## 3733 2015 December 53
## 3734 2015 December 53
## 3735 2015 December 53
## 3736 2015 December 53
## 3737 2015 December 53
## 3738 2015 December 53
## 3739 2016 January 1
## 3740 2016 January 1
## 3741 2016 January 1
## 3742 2016 January 1
## 3743 2016 January 1
## 3744 2016 January 1
## 3745 2016 January 1
## 3746 2016 January 1
## 3747 2016 January 1
## 3748 2016 January 1
## 3749 2016 January 1
## 3750 2016 January 1
## 3751 2016 January 1
## 3752 2016 January 1
## 3753 2016 January 1
## 3754 2016 January 1
## 3755 2016 January 1
## 3756 2016 January 1
## 3757 2016 January 1
## 3758 2016 January 1
## 3759 2016 January 1
## 3760 2016 January 1
## 3761 2016 January 1
## 3762 2016 January 1
## 3763 2016 January 1
## 3764 2016 January 1
## 3765 2016 January 1
## 3766 2016 January 1
## 3767 2016 January 1
## 3768 2016 January 1
## 3769 2016 January 1
## 3770 2016 January 1
## 3771 2016 January 1
## 3772 2016 January 2
## 3773 2016 January 2
## 3774 2016 January 2
## 3775 2016 January 2
## 3776 2016 January 2
## 3777 2016 January 2
## 3778 2016 January 2
## 3779 2016 January 2
## 3780 2016 January 2
## 3781 2016 January 2
## 3782 2016 January 2
## 3783 2016 January 2
## 3784 2016 January 2
## 3785 2016 January 2
## 3786 2016 January 2
## 3787 2016 January 2
## 3788 2016 January 2
## 3789 2016 January 2
## 3790 2016 January 2
## 3791 2016 January 2
## 3792 2016 January 2
## 3793 2016 January 2
## 3794 2016 January 2
## 3795 2016 January 2
## 3796 2016 January 2
## 3797 2016 January 2
## 3798 2016 January 2
## 3799 2016 January 2
## 3800 2016 January 2
## 3801 2016 January 2
## 3802 2016 January 2
## 3803 2016 January 2
## 3804 2016 January 2
## 3805 2016 January 2
## 3806 2016 January 2
## 3807 2016 January 2
## 3808 2016 January 2
## 3809 2016 January 2
## 3810 2016 January 2
## 3811 2016 January 2
## 3812 2016 January 2
## 3813 2016 January 2
## 3814 2016 January 3
## 3815 2016 January 3
## 3816 2016 January 3
## 3817 2016 January 3
## 3818 2016 January 3
## 3819 2016 January 3
## 3820 2016 January 3
## 3821 2016 January 3
## 3822 2016 January 3
## 3823 2016 January 3
## 3824 2016 January 3
## 3825 2016 January 3
## 3826 2016 January 3
## 3827 2016 January 3
## 3828 2016 January 3
## 3829 2016 January 3
## 3830 2016 January 3
## 3831 2016 January 4
## 3832 2016 January 4
## 3833 2016 January 4
## 3834 2016 January 4
## 3835 2016 January 4
## 3836 2016 January 4
## 3837 2016 January 4
## 3838 2016 January 4
## 3839 2016 January 4
## 3840 2016 January 4
## 3841 2016 January 4
## 3842 2016 January 4
## 3843 2016 January 4
## 3844 2016 January 4
## 3845 2016 January 4
## 3846 2016 January 5
## 3847 2016 January 5
## 3848 2016 January 5
## 3849 2016 January 5
## 3850 2016 January 5
## 3851 2016 January 5
## 3852 2016 January 5
## 3853 2016 January 5
## 3854 2016 January 5
## 3855 2016 January 5
## 3856 2016 January 5
## 3857 2016 January 5
## 3858 2016 January 5
## 3859 2016 January 5
## 3860 2016 January 5
## 3861 2016 January 5
## 3862 2016 January 5
## 3863 2016 January 5
## 3864 2016 January 6
## 3865 2016 February 6
## 3866 2016 February 6
## 3867 2016 February 6
## 3868 2016 February 6
## 3869 2016 February 6
## 3870 2016 February 6
## 3871 2016 February 6
## 3872 2016 February 6
## 3873 2016 February 6
## 3874 2016 February 6
## 3875 2016 February 6
## 3876 2016 February 6
## 3877 2016 February 6
## 3878 2016 February 6
## 3879 2016 February 6
## 3880 2016 February 6
## 3881 2016 February 6
## 3882 2016 February 6
## 3883 2016 February 6
## 3884 2016 February 6
## 3885 2016 February 6
## 3886 2016 February 6
## 3887 2016 February 6
## 3888 2016 February 6
## 3889 2016 February 6
## 3890 2016 February 6
## 3891 2016 February 6
## 3892 2016 February 6
## 3893 2016 February 6
## 3894 2016 February 6
## 3895 2016 February 6
## 3896 2016 February 6
## 3897 2016 February 6
## 3898 2016 February 6
## 3899 2016 February 6
## 3900 2016 February 6
## 3901 2016 February 6
## 3902 2016 February 6
## 3903 2016 February 6
## 3904 2016 February 6
## 3905 2016 February 6
## 3906 2016 February 6
## 3907 2016 February 6
## 3908 2016 February 6
## 3909 2016 February 6
## 3910 2016 February 6
## 3911 2016 February 6
## 3912 2016 February 6
## 3913 2016 February 6
## 3914 2016 February 6
## 3915 2016 February 6
## 3916 2016 February 6
## 3917 2016 February 6
## 3918 2016 February 6
## 3919 2016 February 6
## 3920 2016 February 6
## 3921 2016 February 6
## 3922 2016 February 6
## 3923 2016 February 6
## 3924 2016 February 6
## 3925 2016 February 6
## 3926 2016 February 6
## 3927 2016 February 6
## 3928 2016 February 7
## 3929 2016 February 7
## 3930 2016 February 7
## 3931 2016 February 7
## 3932 2016 February 7
## 3933 2016 February 7
## 3934 2016 February 7
## 3935 2016 February 7
## 3936 2016 February 7
## 3937 2016 February 7
## 3938 2016 February 7
## 3939 2016 February 7
## 3940 2016 February 7
## 3941 2016 February 7
## 3942 2016 February 7
## 3943 2016 February 7
## 3944 2016 February 7
## 3945 2016 February 7
## 3946 2016 February 7
## 3947 2016 February 7
## 3948 2016 February 7
## 3949 2016 February 7
## 3950 2016 February 7
## 3951 2016 February 7
## 3952 2016 February 7
## 3953 2016 February 7
## 3954 2016 February 7
## 3955 2016 February 7
## 3956 2016 February 7
## 3957 2016 February 7
## 3958 2016 February 7
## 3959 2016 February 7
## 3960 2016 February 7
## 3961 2016 February 7
## 3962 2016 February 7
## 3963 2016 February 7
## 3964 2016 February 7
## 3965 2016 February 7
## 3966 2016 February 7
## 3967 2016 February 7
## 3968 2016 February 7
## 3969 2016 February 7
## 3970 2016 February 7
## 3971 2016 February 7
## 3972 2016 February 7
## 3973 2016 February 7
## 3974 2016 February 7
## 3975 2016 February 7
## 3976 2016 February 7
## 3977 2016 February 7
## 3978 2016 February 7
## 3979 2016 February 7
## 3980 2016 February 7
## 3981 2016 February 7
## 3982 2016 February 7
## 3983 2016 February 7
## 3984 2016 February 7
## 3985 2016 February 7
## 3986 2016 February 7
## 3987 2016 February 7
## 3988 2016 February 7
## 3989 2016 February 7
## 3990 2016 February 7
## 3991 2016 February 7
## 3992 2016 February 7
## 3993 2016 February 7
## 3994 2016 February 7
## 3995 2016 February 7
## 3996 2016 February 7
## 3997 2016 February 7
## 3998 2016 February 7
## 3999 2016 February 7
## 4000 2016 February 7
## 4001 2016 February 7
## 4002 2016 February 7
## 4003 2016 February 7
## 4004 2016 February 7
## 4005 2016 February 7
## 4006 2016 February 7
## 4007 2016 February 7
## 4008 2016 February 7
## 4009 2016 February 7
## 4010 2016 February 7
## 4011 2016 February 7
## 4012 2016 February 7
## 4013 2016 February 7
## 4014 2016 February 7
## 4015 2016 February 7
## 4016 2016 February 7
## 4017 2016 February 7
## 4018 2016 February 7
## 4019 2016 February 7
## 4020 2016 February 7
## 4021 2016 February 7
## 4022 2016 February 7
## 4023 2016 February 7
## 4024 2016 February 7
## 4025 2016 February 7
## 4026 2016 February 7
## 4027 2016 February 7
## 4028 2016 February 7
## 4029 2016 February 7
## 4030 2016 February 7
## 4031 2016 February 7
## 4032 2016 February 7
## 4033 2016 February 7
## 4034 2016 February 7
## 4035 2016 February 7
## 4036 2016 February 7
## 4037 2016 February 7
## 4038 2016 February 7
## 4039 2016 February 7
## 4040 2016 February 7
## 4041 2016 February 7
## 4042 2016 February 7
## 4043 2016 February 7
## 4044 2016 February 7
## 4045 2016 February 7
## 4046 2016 February 7
## 4047 2016 February 7
## 4048 2016 February 7
## 4049 2016 February 7
## 4050 2016 February 7
## 4051 2016 February 7
## 4052 2016 February 7
## 4053 2016 February 7
## 4054 2016 February 7
## 4055 2016 February 7
## 4056 2016 February 7
## 4057 2016 February 7
## 4058 2016 February 7
## 4059 2016 February 7
## 4060 2016 February 7
## 4061 2016 February 7
## 4062 2016 February 7
## 4063 2016 February 7
## 4064 2016 February 7
## 4065 2016 February 7
## 4066 2016 February 7
## 4067 2016 February 7
## 4068 2016 February 7
## 4069 2016 February 7
## 4070 2016 February 7
## 4071 2016 February 7
## 4072 2016 February 7
## 4073 2016 February 7
## 4074 2016 February 7
## 4075 2016 February 7
## 4076 2016 February 7
## 4077 2016 February 7
## 4078 2016 February 7
## 4079 2016 February 7
## 4080 2016 February 7
## 4081 2016 February 7
## 4082 2016 February 7
## 4083 2016 February 7
## 4084 2016 February 7
## 4085 2016 February 7
## 4086 2016 February 7
## 4087 2016 February 7
## 4088 2016 February 7
## 4089 2016 February 7
## 4090 2016 February 7
## 4091 2016 February 7
## 4092 2016 February 7
## 4093 2016 February 7
## 4094 2016 February 7
## 4095 2016 February 7
## 4096 2016 February 7
## 4097 2016 February 7
## 4098 2016 February 7
## 4099 2016 February 7
## 4100 2016 February 7
## 4101 2016 February 7
## 4102 2016 February 7
## 4103 2016 February 7
## 4104 2016 February 7
## 4105 2016 February 7
## 4106 2016 February 7
## 4107 2016 February 7
## 4108 2016 February 7
## 4109 2016 February 7
## 4110 2016 February 7
## 4111 2016 February 7
## 4112 2016 February 7
## 4113 2016 February 7
## 4114 2016 February 7
## 4115 2016 February 7
## 4116 2016 February 7
## 4117 2016 February 8
## 4118 2016 February 8
## 4119 2016 February 8
## 4120 2016 February 8
## 4121 2016 February 8
## 4122 2016 February 8
## 4123 2016 February 8
## 4124 2016 February 8
## 4125 2016 February 8
## 4126 2016 February 8
## 4127 2016 February 8
## 4128 2016 February 8
## 4129 2016 February 8
## 4130 2016 February 8
## 4131 2016 February 8
## 4132 2016 February 8
## 4133 2016 February 8
## 4134 2016 February 8
## 4135 2016 February 8
## 4136 2016 February 8
## 4137 2016 February 8
## 4138 2016 February 8
## 4139 2016 February 8
## 4140 2016 February 8
## 4141 2016 February 8
## 4142 2016 February 8
## 4143 2016 February 8
## 4144 2016 February 8
## 4145 2016 February 8
## 4146 2016 February 8
## 4147 2016 February 8
## 4148 2016 February 8
## 4149 2016 February 8
## 4150 2016 February 8
## 4151 2016 February 8
## 4152 2016 February 8
## 4153 2016 February 8
## 4154 2016 February 8
## 4155 2016 February 8
## 4156 2016 February 8
## 4157 2016 February 8
## 4158 2016 February 8
## 4159 2016 February 8
## 4160 2016 February 8
## 4161 2016 February 8
## 4162 2016 February 8
## 4163 2016 February 8
## 4164 2016 February 9
## 4165 2016 February 9
## 4166 2016 February 9
## 4167 2016 February 9
## 4168 2016 February 9
## 4169 2016 February 9
## 4170 2016 February 9
## 4171 2016 February 9
## 4172 2016 February 9
## 4173 2016 February 9
## 4174 2016 February 9
## 4175 2016 February 9
## 4176 2016 February 9
## 4177 2016 February 9
## 4178 2016 February 9
## 4179 2016 February 9
## 4180 2016 February 9
## 4181 2016 February 9
## 4182 2016 February 9
## 4183 2016 February 9
## 4184 2016 February 9
## 4185 2016 February 9
## 4186 2016 February 9
## 4187 2016 February 9
## 4188 2016 February 9
## 4189 2016 February 9
## 4190 2016 February 9
## 4191 2016 February 9
## 4192 2016 February 9
## 4193 2016 February 9
## 4194 2016 February 9
## 4195 2016 February 9
## 4196 2016 February 9
## 4197 2016 February 9
## 4198 2016 February 9
## 4199 2016 February 9
## 4200 2016 February 9
## 4201 2016 February 9
## 4202 2016 February 9
## 4203 2016 February 9
## 4204 2016 February 9
## 4205 2016 February 9
## 4206 2016 February 9
## 4207 2016 February 9
## 4208 2016 February 9
## 4209 2016 February 9
## 4210 2016 February 9
## 4211 2016 February 9
## 4212 2016 February 9
## 4213 2016 February 9
## 4214 2016 February 9
## 4215 2016 February 9
## 4216 2016 February 9
## 4217 2016 February 9
## 4218 2016 February 9
## 4219 2016 February 9
## 4220 2016 February 9
## 4221 2016 February 9
## 4222 2016 February 9
## 4223 2016 February 9
## 4224 2016 February 9
## 4225 2016 February 9
## 4226 2016 February 9
## 4227 2016 February 9
## 4228 2016 February 9
## 4229 2016 February 9
## 4230 2016 February 9
## 4231 2016 February 9
## 4232 2016 February 9
## 4233 2016 February 9
## 4234 2016 February 9
## 4235 2016 February 9
## 4236 2016 February 9
## 4237 2016 February 9
## 4238 2016 February 9
## 4239 2016 February 9
## 4240 2016 February 9
## 4241 2016 February 9
## 4242 2016 February 9
## 4243 2016 February 9
## 4244 2016 February 9
## 4245 2016 February 9
## 4246 2016 February 9
## 4247 2016 February 9
## 4248 2016 February 9
## 4249 2016 February 9
## 4250 2016 February 9
## 4251 2016 February 9
## 4252 2016 February 9
## 4253 2016 February 9
## 4254 2016 February 9
## 4255 2016 February 9
## 4256 2016 February 9
## 4257 2016 February 9
## 4258 2016 February 9
## 4259 2016 February 9
## 4260 2016 February 9
## 4261 2016 February 9
## 4262 2016 February 9
## 4263 2016 February 9
## 4264 2016 February 9
## 4265 2016 February 9
## 4266 2016 February 9
## 4267 2016 February 10
## 4268 2016 February 10
## 4269 2016 February 10
## 4270 2016 February 10
## 4271 2016 February 10
## 4272 2016 February 10
## 4273 2016 February 10
## 4274 2016 February 10
## 4275 2016 February 10
## 4276 2016 March 10
## 4277 2016 March 10
## 4278 2016 March 10
## 4279 2016 March 10
## 4280 2016 March 10
## 4281 2016 March 10
## 4282 2016 March 10
## 4283 2016 March 10
## 4284 2016 March 10
## 4285 2016 March 10
## 4286 2016 March 10
## 4287 2016 March 10
## 4288 2016 March 10
## 4289 2016 March 10
## 4290 2016 March 10
## 4291 2016 March 10
## 4292 2016 March 10
## 4293 2016 March 10
## 4294 2016 March 10
## 4295 2016 March 10
## 4296 2016 March 10
## 4297 2016 March 10
## 4298 2016 March 10
## 4299 2016 March 10
## 4300 2016 March 10
## 4301 2016 March 10
## 4302 2016 March 10
## 4303 2016 March 10
## 4304 2016 March 10
## 4305 2016 March 10
## 4306 2016 March 10
## 4307 2016 March 10
## 4308 2016 March 10
## 4309 2016 March 10
## 4310 2016 March 10
## 4311 2016 March 10
## 4312 2016 March 10
## 4313 2016 March 10
## 4314 2016 March 10
## 4315 2016 March 10
## 4316 2016 March 10
## 4317 2016 March 10
## 4318 2016 March 10
## 4319 2016 March 10
## 4320 2016 March 10
## 4321 2016 March 10
## 4322 2016 March 10
## 4323 2016 March 10
## 4324 2016 March 10
## 4325 2016 March 10
## 4326 2016 March 10
## 4327 2016 March 10
## 4328 2016 March 10
## 4329 2016 March 10
## 4330 2016 March 10
## 4331 2016 March 10
## 4332 2016 March 10
## 4333 2016 March 10
## 4334 2016 March 10
## 4335 2016 March 10
## 4336 2016 March 10
## 4337 2016 March 10
## 4338 2016 March 10
## 4339 2016 March 10
## 4340 2016 March 10
## 4341 2016 March 10
## 4342 2016 March 10
## 4343 2016 March 10
## 4344 2016 March 10
## 4345 2016 March 10
## 4346 2016 March 10
## 4347 2016 March 10
## 4348 2016 March 10
## 4349 2016 March 10
## 4350 2016 March 10
## 4351 2016 March 10
## 4352 2016 March 10
## 4353 2016 March 10
## 4354 2016 March 11
## 4355 2016 March 11
## 4356 2016 March 11
## 4357 2016 March 11
## 4358 2016 March 11
## 4359 2016 March 11
## 4360 2016 March 11
## 4361 2016 March 11
## 4362 2016 March 11
## 4363 2016 March 11
## 4364 2016 March 11
## 4365 2016 March 11
## 4366 2016 March 11
## 4367 2016 March 11
## 4368 2016 March 11
## 4369 2016 March 11
## 4370 2016 March 11
## 4371 2016 March 11
## 4372 2016 March 11
## 4373 2016 March 11
## 4374 2016 March 11
## 4375 2016 March 11
## 4376 2016 March 11
## 4377 2016 March 11
## 4378 2016 March 11
## 4379 2016 March 11
## 4380 2016 March 11
## 4381 2016 March 11
## 4382 2016 March 11
## 4383 2016 March 11
## 4384 2016 March 11
## 4385 2016 March 11
## 4386 2016 March 11
## 4387 2016 March 11
## 4388 2016 March 11
## 4389 2016 March 11
## 4390 2016 March 11
## 4391 2016 March 11
## 4392 2016 March 11
## 4393 2016 March 11
## 4394 2016 March 11
## 4395 2016 March 11
## 4396 2016 March 11
## 4397 2016 March 11
## 4398 2016 March 11
## 4399 2016 March 11
## 4400 2016 March 11
## 4401 2016 March 11
## 4402 2016 March 11
## 4403 2016 March 11
## 4404 2016 March 11
## 4405 2016 March 11
## 4406 2016 March 11
## 4407 2016 March 12
## 4408 2016 March 12
## 4409 2016 March 12
## 4410 2016 March 12
## 4411 2016 March 12
## 4412 2016 March 12
## 4413 2016 March 12
## 4414 2016 March 12
## 4415 2016 March 12
## 4416 2016 March 12
## 4417 2016 March 12
## 4418 2016 March 12
## 4419 2016 March 12
## 4420 2016 March 12
## 4421 2016 March 12
## 4422 2016 March 12
## 4423 2016 March 12
## 4424 2016 March 12
## 4425 2016 March 12
## 4426 2016 March 12
## 4427 2016 March 12
## 4428 2016 March 12
## 4429 2016 March 12
## 4430 2016 March 12
## 4431 2016 March 12
## 4432 2016 March 12
## 4433 2016 March 12
## 4434 2016 March 12
## 4435 2016 March 12
## 4436 2016 March 12
## 4437 2016 March 12
## 4438 2016 March 12
## 4439 2016 March 12
## 4440 2016 March 12
## 4441 2016 March 12
## 4442 2016 March 12
## 4443 2016 March 12
## 4444 2016 March 12
## 4445 2016 March 12
## 4446 2016 March 12
## 4447 2016 March 12
## 4448 2016 March 12
## 4449 2016 March 12
## 4450 2016 March 12
## 4451 2016 March 12
## 4452 2016 March 12
## 4453 2016 March 12
## 4454 2016 March 12
## 4455 2016 March 12
## 4456 2016 March 12
## 4457 2016 March 12
## 4458 2016 March 12
## 4459 2016 March 12
## 4460 2016 March 12
## 4461 2016 March 12
## 4462 2016 March 12
## 4463 2016 March 12
## 4464 2016 March 12
## 4465 2016 March 12
## 4466 2016 March 12
## 4467 2016 March 12
## 4468 2016 March 12
## 4469 2016 March 12
## 4470 2016 March 12
## 4471 2016 March 12
## 4472 2016 March 12
## 4473 2016 March 12
## 4474 2016 March 12
## 4475 2016 March 12
## 4476 2016 March 12
## 4477 2016 March 12
## 4478 2016 March 12
## 4479 2016 March 12
## 4480 2016 March 12
## 4481 2016 March 12
## 4482 2016 March 12
## 4483 2016 March 13
## 4484 2016 March 13
## 4485 2016 March 13
## 4486 2016 March 13
## 4487 2016 March 13
## 4488 2016 March 13
## 4489 2016 March 13
## 4490 2016 March 13
## 4491 2016 March 13
## 4492 2016 March 13
## 4493 2016 March 13
## 4494 2016 March 13
## 4495 2016 March 13
## 4496 2016 March 13
## 4497 2016 March 13
## 4498 2016 March 13
## 4499 2016 March 13
## 4500 2016 March 13
## 4501 2016 March 13
## 4502 2016 March 13
## 4503 2016 March 13
## 4504 2016 March 13
## 4505 2016 March 13
## 4506 2016 March 13
## 4507 2016 March 13
## 4508 2016 March 13
## 4509 2016 March 13
## 4510 2016 March 13
## 4511 2016 March 13
## 4512 2016 March 13
## 4513 2016 March 13
## 4514 2016 March 13
## 4515 2016 March 13
## 4516 2016 March 13
## 4517 2016 March 13
## 4518 2016 March 13
## 4519 2016 March 13
## 4520 2016 March 13
## 4521 2016 March 13
## 4522 2016 March 13
## 4523 2016 March 13
## 4524 2016 March 13
## 4525 2016 March 13
## 4526 2016 March 13
## 4527 2016 March 13
## 4528 2016 March 13
## 4529 2016 March 13
## 4530 2016 March 13
## 4531 2016 March 13
## 4532 2016 March 13
## 4533 2016 March 13
## 4534 2016 March 13
## 4535 2016 March 13
## 4536 2016 March 13
## 4537 2016 March 13
## 4538 2016 March 13
## 4539 2016 March 13
## 4540 2016 March 13
## 4541 2016 March 13
## 4542 2016 March 13
## 4543 2016 March 13
## 4544 2016 March 13
## 4545 2016 March 13
## 4546 2016 March 13
## 4547 2016 March 13
## 4548 2016 March 13
## 4549 2016 March 13
## 4550 2016 March 13
## 4551 2016 March 13
## 4552 2016 March 13
## 4553 2016 March 13
## 4554 2016 March 13
## 4555 2016 March 13
## 4556 2016 March 13
## 4557 2016 March 13
## 4558 2016 March 13
## 4559 2016 March 13
## 4560 2016 March 13
## 4561 2016 March 13
## 4562 2016 March 13
## 4563 2016 March 13
## 4564 2016 March 13
## 4565 2016 March 13
## 4566 2016 March 13
## 4567 2016 March 13
## 4568 2016 March 13
## 4569 2016 March 13
## 4570 2016 March 13
## 4571 2016 March 13
## 4572 2016 March 13
## 4573 2016 March 13
## 4574 2016 March 13
## 4575 2016 March 13
## 4576 2016 March 13
## 4577 2016 March 13
## 4578 2016 March 13
## 4579 2016 March 13
## 4580 2016 March 13
## 4581 2016 March 13
## 4582 2016 March 13
## 4583 2016 March 13
## 4584 2016 March 13
## 4585 2016 March 13
## 4586 2016 March 13
## 4587 2016 March 13
## 4588 2016 March 13
## 4589 2016 March 13
## 4590 2016 March 13
## 4591 2016 March 13
## 4592 2016 March 13
## 4593 2016 March 13
## 4594 2016 March 13
## 4595 2016 March 13
## 4596 2016 March 13
## 4597 2016 March 13
## 4598 2016 March 13
## 4599 2016 March 13
## 4600 2016 March 13
## 4601 2016 March 13
## 4602 2016 March 13
## 4603 2016 March 13
## 4604 2016 March 13
## 4605 2016 March 13
## 4606 2016 March 13
## 4607 2016 March 13
## 4608 2016 March 13
## 4609 2016 March 13
## 4610 2016 March 13
## 4611 2016 March 13
## 4612 2016 March 13
## 4613 2016 March 13
## 4614 2016 March 13
## 4615 2016 March 13
## 4616 2016 March 13
## 4617 2016 March 13
## 4618 2016 March 13
## 4619 2016 March 13
## 4620 2016 March 13
## 4621 2016 March 13
## 4622 2016 March 13
## 4623 2016 March 13
## 4624 2016 March 13
## 4625 2016 March 13
## 4626 2016 March 13
## 4627 2016 March 13
## 4628 2016 March 13
## 4629 2016 March 13
## 4630 2016 March 13
## 4631 2016 March 13
## 4632 2016 March 13
## 4633 2016 March 13
## 4634 2016 March 13
## 4635 2016 March 13
## 4636 2016 March 13
## 4637 2016 March 13
## 4638 2016 March 13
## 4639 2016 March 13
## 4640 2016 March 13
## 4641 2016 March 13
## 4642 2016 March 13
## 4643 2016 March 13
## 4644 2016 March 13
## 4645 2016 March 13
## 4646 2016 March 13
## 4647 2016 March 13
## 4648 2016 March 13
## 4649 2016 March 13
## 4650 2016 March 13
## 4651 2016 March 13
## 4652 2016 March 13
## 4653 2016 March 13
## 4654 2016 March 13
## 4655 2016 March 13
## 4656 2016 March 13
## 4657 2016 March 13
## 4658 2016 March 13
## 4659 2016 March 13
## 4660 2016 March 13
## 4661 2016 March 13
## 4662 2016 March 13
## 4663 2016 March 13
## 4664 2016 March 13
## 4665 2016 March 13
## 4666 2016 March 13
## 4667 2016 March 13
## 4668 2016 March 13
## 4669 2016 March 13
## 4670 2016 March 13
## 4671 2016 March 14
## 4672 2016 March 14
## 4673 2016 March 14
## 4674 2016 March 14
## 4675 2016 March 14
## 4676 2016 March 14
## 4677 2016 March 14
## 4678 2016 March 14
## 4679 2016 March 14
## 4680 2016 March 14
## 4681 2016 March 14
## 4682 2016 March 14
## 4683 2016 March 14
## 4684 2016 March 14
## 4685 2016 March 14
## 4686 2016 March 14
## 4687 2016 March 14
## 4688 2016 March 14
## 4689 2016 March 14
## 4690 2016 March 14
## 4691 2016 March 14
## 4692 2016 March 14
## 4693 2016 March 14
## 4694 2016 March 14
## 4695 2016 March 14
## 4696 2016 March 14
## 4697 2016 March 14
## 4698 2016 March 14
## 4699 2016 March 14
## 4700 2016 March 14
## 4701 2016 March 14
## 4702 2016 March 14
## 4703 2016 March 14
## 4704 2016 March 14
## 4705 2016 March 14
## 4706 2016 March 14
## 4707 2016 March 14
## 4708 2016 March 14
## 4709 2016 March 14
## 4710 2016 March 14
## 4711 2016 March 14
## 4712 2016 March 14
## 4713 2016 March 14
## 4714 2016 March 14
## 4715 2016 March 14
## 4716 2016 March 14
## 4717 2016 March 14
## 4718 2016 March 14
## 4719 2016 March 14
## 4720 2016 March 14
## 4721 2016 March 14
## 4722 2016 March 14
## 4723 2016 March 14
## 4724 2016 March 14
## 4725 2016 March 14
## 4726 2016 March 14
## 4727 2016 March 14
## 4728 2016 March 14
## 4729 2016 March 14
## 4730 2016 March 14
## 4731 2016 March 14
## 4732 2016 March 14
## 4733 2016 March 14
## 4734 2016 March 14
## 4735 2016 March 14
## 4736 2016 March 14
## 4737 2016 March 14
## 4738 2016 March 14
## 4739 2016 March 14
## 4740 2016 March 14
## 4741 2016 March 14
## 4742 2016 March 14
## 4743 2016 March 14
## 4744 2016 March 14
## 4745 2016 March 14
## 4746 2016 March 14
## 4747 2016 March 14
## 4748 2016 March 14
## 4749 2016 March 14
## 4750 2016 March 14
## 4751 2016 March 14
## 4752 2016 March 14
## 4753 2016 March 14
## 4754 2016 March 14
## 4755 2016 March 14
## 4756 2016 March 14
## 4757 2016 March 14
## 4758 2016 March 14
## 4759 2016 March 14
## 4760 2016 March 14
## 4761 2016 March 14
## 4762 2016 March 14
## 4763 2016 March 14
## 4764 2016 March 14
## 4765 2016 March 14
## 4766 2016 March 14
## 4767 2016 March 14
## 4768 2016 March 14
## 4769 2016 March 14
## 4770 2016 March 14
## 4771 2016 March 14
## 4772 2016 March 14
## 4773 2016 March 14
## 4774 2016 March 14
## 4775 2016 March 14
## 4776 2016 March 14
## 4777 2016 March 14
## 4778 2016 March 14
## 4779 2016 March 14
## 4780 2016 March 14
## 4781 2016 March 14
## 4782 2016 March 14
## 4783 2016 March 14
## 4784 2016 March 14
## 4785 2016 March 14
## 4786 2016 March 14
## 4787 2016 March 14
## 4788 2016 March 14
## 4789 2016 March 14
## 4790 2016 March 14
## 4791 2016 March 14
## 4792 2016 March 14
## 4793 2016 March 14
## 4794 2016 March 14
## 4795 2016 March 14
## 4796 2016 March 14
## 4797 2016 March 14
## 4798 2016 March 14
## 4799 2016 March 14
## 4800 2016 March 14
## 4801 2016 March 14
## 4802 2016 March 14
## 4803 2016 March 14
## 4804 2016 April 14
## 4805 2016 April 14
## 4806 2016 April 14
## 4807 2016 April 14
## 4808 2016 April 14
## 4809 2016 April 14
## 4810 2016 April 14
## 4811 2016 April 14
## 4812 2016 April 14
## 4813 2016 April 14
## 4814 2016 April 14
## 4815 2016 April 14
## 4816 2016 April 14
## 4817 2016 April 14
## 4818 2016 April 15
## 4819 2016 April 15
## 4820 2016 April 15
## 4821 2016 April 15
## 4822 2016 April 15
## 4823 2016 April 15
## 4824 2016 April 15
## 4825 2016 April 15
## 4826 2016 April 15
## 4827 2016 April 15
## 4828 2016 April 15
## 4829 2016 April 15
## 4830 2016 April 15
## 4831 2016 April 15
## 4832 2016 April 15
## 4833 2016 April 15
## 4834 2016 April 15
## 4835 2016 April 15
## 4836 2016 April 15
## 4837 2016 April 15
## 4838 2016 April 15
## 4839 2016 April 15
## 4840 2016 April 15
## 4841 2016 April 15
## 4842 2016 April 15
## 4843 2016 April 15
## 4844 2016 April 15
## 4845 2016 April 15
## 4846 2016 April 15
## 4847 2016 April 15
## 4848 2016 April 15
## 4849 2016 April 15
## 4850 2016 April 15
## 4851 2016 April 15
## 4852 2016 April 15
## 4853 2016 April 15
## 4854 2016 April 15
## 4855 2016 April 15
## 4856 2016 April 15
## 4857 2016 April 15
## 4858 2016 April 15
## 4859 2016 April 15
## 4860 2016 April 15
## 4861 2016 April 15
## 4862 2016 April 15
## 4863 2016 April 15
## 4864 2016 April 15
## 4865 2016 April 15
## 4866 2016 April 15
## 4867 2016 April 15
## 4868 2016 April 15
## 4869 2016 April 15
## 4870 2016 April 15
## 4871 2016 April 15
## 4872 2016 April 15
## 4873 2016 April 15
## 4874 2016 April 15
## 4875 2016 April 15
## 4876 2016 April 15
## 4877 2016 April 15
## 4878 2016 April 15
## 4879 2016 April 15
## 4880 2016 April 15
## 4881 2016 April 15
## 4882 2016 April 15
## 4883 2016 April 15
## 4884 2016 April 15
## 4885 2016 April 15
## 4886 2016 April 15
## 4887 2016 April 15
## 4888 2016 April 15
## 4889 2016 April 15
## 4890 2016 April 15
## 4891 2016 April 15
## 4892 2016 April 15
## 4893 2016 April 15
## 4894 2016 April 15
## 4895 2016 April 15
## 4896 2016 April 15
## 4897 2016 April 15
## 4898 2016 April 15
## 4899 2016 April 15
## 4900 2016 April 15
## 4901 2016 April 15
## 4902 2016 April 15
## 4903 2016 April 15
## 4904 2016 April 15
## 4905 2016 April 15
## 4906 2016 April 15
## 4907 2016 April 15
## 4908 2016 April 15
## 4909 2016 April 15
## 4910 2016 April 15
## 4911 2016 April 15
## 4912 2016 April 15
## 4913 2016 April 15
## 4914 2016 April 15
## 4915 2016 April 15
## 4916 2016 April 15
## 4917 2016 April 15
## 4918 2016 April 15
## 4919 2016 April 15
## 4920 2016 April 15
## 4921 2016 April 15
## 4922 2016 April 15
## 4923 2016 April 15
## 4924 2016 April 15
## 4925 2016 April 15
## 4926 2016 April 15
## 4927 2016 April 15
## 4928 2016 April 15
## 4929 2016 April 15
## 4930 2016 April 15
## 4931 2016 April 15
## 4932 2016 April 15
## 4933 2016 April 15
## 4934 2016 April 15
## 4935 2016 April 15
## 4936 2016 April 15
## 4937 2016 April 15
## 4938 2016 April 15
## 4939 2016 April 15
## 4940 2016 April 15
## 4941 2016 April 15
## 4942 2016 April 16
## 4943 2016 April 16
## 4944 2016 April 16
## 4945 2016 April 16
## 4946 2016 April 16
## 4947 2016 April 16
## 4948 2016 April 16
## 4949 2016 April 16
## 4950 2016 April 16
## 4951 2016 April 16
## 4952 2016 April 16
## 4953 2016 April 16
## 4954 2016 April 16
## 4955 2016 April 16
## 4956 2016 April 16
## 4957 2016 April 16
## 4958 2016 April 16
## 4959 2016 April 16
## 4960 2016 April 16
## 4961 2016 April 16
## 4962 2016 April 16
## 4963 2016 April 16
## 4964 2016 April 16
## 4965 2016 April 16
## 4966 2016 April 16
## 4967 2016 April 16
## 4968 2016 April 16
## 4969 2016 April 16
## 4970 2016 April 16
## 4971 2016 April 16
## 4972 2016 April 16
## 4973 2016 April 16
## 4974 2016 April 16
## 4975 2016 April 16
## 4976 2016 April 16
## 4977 2016 April 16
## 4978 2016 April 16
## 4979 2016 April 16
## 4980 2016 April 16
## 4981 2016 April 16
## 4982 2016 April 16
## 4983 2016 April 16
## 4984 2016 April 16
## 4985 2016 April 16
## 4986 2016 April 16
## 4987 2016 April 16
## 4988 2016 April 16
## 4989 2016 April 16
## 4990 2016 April 16
## 4991 2016 April 16
## 4992 2016 April 16
## 4993 2016 April 16
## 4994 2016 April 16
## 4995 2016 April 16
## 4996 2016 April 16
## 4997 2016 April 16
## 4998 2016 April 16
## 4999 2016 April 16
## 5000 2016 April 16
## 5001 2016 April 16
## 5002 2016 April 16
## 5003 2016 April 16
## 5004 2016 April 16
## 5005 2016 April 16
## 5006 2016 April 16
## 5007 2016 April 16
## 5008 2016 April 16
## 5009 2016 April 16
## 5010 2016 April 16
## 5011 2016 April 16
## 5012 2016 April 16
## 5013 2016 April 16
## 5014 2016 April 16
## 5015 2016 April 16
## 5016 2016 April 16
## 5017 2016 April 16
## 5018 2016 April 16
## 5019 2016 April 16
## 5020 2016 April 16
## 5021 2016 April 16
## 5022 2016 April 16
## 5023 2016 April 16
## 5024 2016 April 16
## 5025 2016 April 16
## 5026 2016 April 16
## 5027 2016 April 16
## 5028 2016 April 16
## 5029 2016 April 16
## 5030 2016 April 16
## 5031 2016 April 16
## 5032 2016 April 16
## 5033 2016 April 16
## 5034 2016 April 16
## 5035 2016 April 16
## 5036 2016 April 16
## 5037 2016 April 16
## 5038 2016 April 16
## 5039 2016 April 16
## 5040 2016 April 16
## 5041 2016 April 16
## 5042 2016 April 16
## 5043 2016 April 16
## 5044 2016 April 16
## 5045 2016 April 16
## 5046 2016 April 16
## 5047 2016 April 16
## 5048 2016 April 16
## 5049 2016 April 16
## 5050 2016 April 16
## 5051 2016 April 16
## 5052 2016 April 16
## 5053 2016 April 16
## 5054 2016 April 16
## 5055 2016 April 16
## 5056 2016 April 16
## 5057 2016 April 16
## 5058 2016 April 16
## 5059 2016 April 16
## 5060 2016 April 16
## 5061 2016 April 16
## 5062 2016 April 16
## 5063 2016 April 16
## 5064 2016 April 16
## 5065 2016 April 16
## 5066 2016 April 16
## 5067 2016 April 16
## 5068 2016 April 16
## 5069 2016 April 16
## 5070 2016 April 16
## 5071 2016 April 16
## 5072 2016 April 16
## 5073 2016 April 16
## 5074 2016 April 16
## 5075 2016 April 16
## 5076 2016 April 16
## 5077 2016 April 16
## 5078 2016 April 16
## 5079 2016 April 16
## 5080 2016 April 16
## 5081 2016 April 16
## 5082 2016 April 16
## 5083 2016 April 16
## 5084 2016 April 16
## 5085 2016 April 16
## 5086 2016 April 16
## 5087 2016 April 16
## 5088 2016 April 16
## 5089 2016 April 16
## 5090 2016 April 16
## 5091 2016 April 16
## 5092 2016 April 16
## 5093 2016 April 16
## 5094 2016 April 16
## 5095 2016 April 17
## 5096 2016 April 17
## 5097 2016 April 17
## 5098 2016 April 17
## 5099 2016 April 17
## 5100 2016 April 17
## 5101 2016 April 17
## 5102 2016 April 17
## 5103 2016 April 17
## 5104 2016 April 17
## 5105 2016 April 17
## 5106 2016 April 17
## 5107 2016 April 17
## 5108 2016 April 17
## 5109 2016 April 17
## 5110 2016 April 17
## 5111 2016 April 17
## 5112 2016 April 17
## 5113 2016 April 17
## 5114 2016 April 17
## 5115 2016 April 17
## 5116 2016 April 17
## 5117 2016 April 17
## 5118 2016 April 17
## 5119 2016 April 17
## 5120 2016 April 17
## 5121 2016 April 17
## 5122 2016 April 17
## 5123 2016 April 17
## 5124 2016 April 17
## 5125 2016 April 17
## 5126 2016 April 17
## 5127 2016 April 17
## 5128 2016 April 17
## 5129 2016 April 17
## 5130 2016 April 17
## 5131 2016 April 17
## 5132 2016 April 17
## 5133 2016 April 17
## 5134 2016 April 17
## 5135 2016 April 17
## 5136 2016 April 17
## 5137 2016 April 17
## 5138 2016 April 17
## 5139 2016 April 17
## 5140 2016 April 17
## 5141 2016 April 17
## 5142 2016 April 17
## 5143 2016 April 17
## 5144 2016 April 17
## 5145 2016 April 17
## 5146 2016 April 17
## 5147 2016 April 17
## 5148 2016 April 17
## 5149 2016 April 17
## 5150 2016 April 17
## 5151 2016 April 17
## 5152 2016 April 17
## 5153 2016 April 17
## 5154 2016 April 17
## 5155 2016 April 17
## 5156 2016 April 17
## 5157 2016 April 17
## 5158 2016 April 17
## 5159 2016 April 17
## 5160 2016 April 17
## 5161 2016 April 17
## 5162 2016 April 17
## 5163 2016 April 17
## 5164 2016 April 17
## 5165 2016 April 17
## 5166 2016 April 17
## 5167 2016 April 17
## 5168 2016 April 17
## 5169 2016 April 17
## 5170 2016 April 17
## 5171 2016 April 17
## 5172 2016 April 17
## 5173 2016 April 17
## 5174 2016 April 17
## 5175 2016 April 17
## 5176 2016 April 17
## 5177 2016 April 17
## 5178 2016 April 17
## 5179 2016 April 17
## 5180 2016 April 17
## 5181 2016 April 17
## 5182 2016 April 17
## 5183 2016 April 17
## 5184 2016 April 17
## 5185 2016 April 17
## 5186 2016 April 17
## 5187 2016 April 17
## 5188 2016 April 17
## 5189 2016 April 17
## 5190 2016 April 17
## 5191 2016 April 17
## 5192 2016 April 17
## 5193 2016 April 17
## 5194 2016 April 17
## 5195 2016 April 17
## 5196 2016 April 17
## 5197 2016 April 17
## 5198 2016 April 17
## 5199 2016 April 17
## 5200 2016 April 17
## 5201 2016 April 17
## 5202 2016 April 17
## 5203 2016 April 17
## 5204 2016 April 17
## 5205 2016 April 17
## 5206 2016 April 17
## 5207 2016 April 17
## 5208 2016 April 17
## 5209 2016 April 17
## 5210 2016 April 17
## 5211 2016 April 17
## 5212 2016 April 17
## 5213 2016 April 17
## 5214 2016 April 17
## 5215 2016 April 17
## 5216 2016 April 17
## 5217 2016 April 17
## 5218 2016 April 17
## 5219 2016 April 17
## 5220 2016 April 17
## 5221 2016 April 17
## 5222 2016 April 17
## 5223 2016 April 17
## 5224 2016 April 17
## 5225 2016 April 17
## 5226 2016 April 17
## 5227 2016 April 17
## 5228 2016 April 17
## 5229 2016 April 17
## 5230 2016 April 17
## 5231 2016 April 17
## 5232 2016 April 17
## 5233 2016 April 17
## 5234 2016 April 17
## 5235 2016 April 17
## 5236 2016 April 17
## 5237 2016 April 17
## 5238 2016 April 17
## 5239 2016 April 17
## 5240 2016 April 17
## 5241 2016 April 17
## 5242 2016 April 17
## 5243 2016 April 17
## 5244 2016 April 17
## 5245 2016 April 17
## 5246 2016 April 17
## 5247 2016 April 17
## 5248 2016 April 17
## 5249 2016 April 17
## 5250 2016 April 17
## 5251 2016 April 17
## 5252 2016 April 17
## 5253 2016 April 17
## 5254 2016 April 17
## 5255 2016 April 17
## 5256 2016 April 17
## 5257 2016 April 17
## 5258 2016 April 17
## 5259 2016 April 17
## 5260 2016 April 17
## 5261 2016 April 17
## 5262 2016 April 17
## 5263 2016 April 17
## 5264 2016 April 17
## 5265 2016 April 17
## 5266 2016 April 17
## 5267 2016 April 17
## 5268 2016 April 17
## 5269 2016 April 17
## 5270 2016 April 17
## 5271 2016 April 17
## 5272 2016 April 17
## 5273 2016 April 17
## 5274 2016 April 17
## 5275 2016 April 17
## 5276 2016 April 17
## 5277 2016 April 17
## 5278 2016 April 17
## 5279 2016 April 17
## 5280 2016 April 17
## 5281 2016 April 18
## 5282 2016 April 18
## 5283 2016 April 18
## 5284 2016 April 18
## 5285 2016 April 18
## 5286 2016 April 18
## 5287 2016 April 18
## 5288 2016 April 18
## 5289 2016 April 18
## 5290 2016 April 18
## 5291 2016 April 18
## 5292 2016 April 18
## 5293 2016 April 18
## 5294 2016 April 18
## 5295 2016 April 18
## 5296 2016 April 18
## 5297 2016 April 18
## 5298 2016 April 18
## 5299 2016 April 18
## 5300 2016 April 18
## 5301 2016 April 18
## 5302 2016 April 18
## 5303 2016 April 18
## 5304 2016 April 18
## 5305 2016 April 18
## 5306 2016 April 18
## 5307 2016 April 18
## 5308 2016 April 18
## 5309 2016 April 18
## 5310 2016 April 18
## 5311 2016 April 18
## 5312 2016 April 18
## 5313 2016 April 18
## 5314 2016 April 18
## 5315 2016 April 18
## 5316 2016 April 18
## 5317 2016 April 18
## 5318 2016 April 18
## 5319 2016 April 18
## 5320 2016 April 18
## 5321 2016 April 18
## 5322 2016 April 18
## 5323 2016 April 18
## 5324 2016 April 18
## 5325 2016 April 18
## 5326 2016 April 18
## 5327 2016 April 18
## 5328 2016 April 18
## 5329 2016 April 18
## 5330 2016 April 18
## 5331 2016 April 18
## 5332 2016 April 18
## 5333 2016 April 18
## 5334 2016 April 18
## 5335 2016 April 18
## 5336 2016 April 18
## 5337 2016 April 18
## 5338 2016 April 18
## 5339 2016 April 18
## 5340 2016 April 18
## 5341 2016 April 18
## 5342 2016 April 18
## 5343 2016 April 18
## 5344 2016 April 18
## 5345 2016 April 18
## 5346 2016 April 18
## 5347 2016 April 18
## 5348 2016 April 18
## 5349 2016 April 18
## 5350 2016 April 18
## 5351 2016 April 18
## 5352 2016 April 18
## 5353 2016 April 18
## 5354 2016 April 18
## 5355 2016 April 18
## 5356 2016 April 18
## 5357 2016 April 18
## 5358 2016 April 18
## 5359 2016 April 18
## 5360 2016 April 18
## 5361 2016 April 18
## 5362 2016 April 18
## 5363 2016 April 18
## 5364 2016 April 18
## 5365 2016 April 18
## 5366 2016 April 18
## 5367 2016 April 18
## 5368 2016 April 18
## 5369 2016 April 18
## 5370 2016 April 18
## 5371 2016 April 18
## 5372 2016 April 18
## 5373 2016 April 18
## 5374 2016 April 18
## 5375 2016 April 18
## 5376 2016 April 18
## 5377 2016 April 18
## 5378 2016 April 18
## 5379 2016 April 18
## 5380 2016 April 18
## 5381 2016 April 18
## 5382 2016 April 18
## 5383 2016 April 18
## 5384 2016 April 18
## 5385 2016 April 18
## 5386 2016 April 18
## 5387 2016 April 18
## 5388 2016 April 18
## 5389 2016 April 18
## 5390 2016 April 18
## 5391 2016 April 18
## 5392 2016 April 18
## 5393 2016 April 18
## 5394 2016 April 18
## 5395 2016 April 18
## 5396 2016 April 18
## 5397 2016 April 18
## 5398 2016 April 18
## 5399 2016 April 18
## 5400 2016 April 18
## 5401 2016 April 18
## 5402 2016 April 18
## 5403 2016 April 18
## 5404 2016 April 18
## 5405 2016 April 18
## 5406 2016 April 18
## 5407 2016 April 18
## 5408 2016 April 18
## 5409 2016 April 18
## 5410 2016 April 18
## 5411 2016 April 18
## 5412 2016 April 18
## 5413 2016 April 18
## 5414 2016 April 18
## 5415 2016 April 18
## 5416 2016 April 18
## 5417 2016 April 18
## 5418 2016 April 18
## 5419 2016 April 18
## 5420 2016 April 18
## 5421 2016 April 18
## 5422 2016 April 18
## 5423 2016 April 18
## 5424 2016 April 18
## 5425 2016 April 18
## 5426 2016 April 18
## 5427 2016 April 18
## 5428 2016 April 18
## 5429 2016 April 18
## 5430 2016 April 18
## 5431 2016 April 18
## 5432 2016 April 18
## 5433 2016 April 18
## 5434 2016 April 18
## 5435 2016 April 18
## 5436 2016 April 18
## 5437 2016 April 18
## 5438 2016 April 18
## 5439 2016 April 18
## 5440 2016 April 18
## 5441 2016 April 18
## 5442 2016 April 18
## 5443 2016 April 18
## 5444 2016 April 18
## 5445 2016 April 18
## 5446 2016 April 18
## 5447 2016 April 18
## 5448 2016 April 18
## 5449 2016 April 18
## 5450 2016 April 18
## 5451 2016 April 18
## 5452 2016 April 18
## 5453 2016 April 18
## 5454 2016 April 18
## 5455 2016 April 18
## 5456 2016 April 18
## 5457 2016 April 18
## 5458 2016 April 18
## 5459 2016 April 18
## 5460 2016 April 18
## 5461 2016 April 18
## 5462 2016 April 18
## 5463 2016 April 18
## 5464 2016 April 18
## 5465 2016 April 18
## 5466 2016 April 18
## 5467 2016 April 18
## 5468 2016 April 18
## 5469 2016 April 18
## 5470 2016 April 18
## 5471 2016 April 18
## 5472 2016 April 18
## 5473 2016 April 18
## 5474 2016 April 18
## 5475 2016 April 18
## 5476 2016 April 18
## 5477 2016 April 18
## 5478 2016 April 18
## 5479 2016 April 18
## 5480 2016 April 18
## 5481 2016 April 18
## 5482 2016 April 18
## 5483 2016 April 18
## 5484 2016 April 18
## 5485 2016 April 18
## 5486 2016 April 18
## 5487 2016 April 18
## 5488 2016 April 18
## 5489 2016 April 18
## 5490 2016 April 18
## 5491 2016 April 18
## 5492 2016 April 18
## 5493 2016 April 18
## 5494 2016 April 18
## 5495 2016 April 18
## 5496 2016 April 18
## 5497 2016 April 18
## 5498 2016 April 18
## 5499 2016 April 18
## 5500 2016 April 18
## 5501 2016 April 18
## 5502 2016 April 18
## 5503 2016 April 18
## 5504 2016 April 18
## 5505 2016 April 18
## 5506 2016 April 18
## 5507 2016 April 18
## 5508 2016 April 18
## 5509 2016 April 18
## 5510 2016 April 18
## 5511 2016 April 18
## 5512 2016 April 18
## 5513 2016 April 18
## 5514 2016 April 18
## 5515 2016 April 18
## 5516 2016 April 18
## 5517 2016 April 18
## 5518 2016 April 18
## 5519 2016 April 18
## 5520 2016 April 18
## 5521 2016 April 18
## 5522 2016 May 19
## 5523 2016 May 19
## 5524 2016 May 19
## 5525 2016 May 19
## 5526 2016 May 19
## 5527 2016 May 19
## 5528 2016 May 19
## 5529 2016 May 19
## 5530 2016 May 19
## 5531 2016 May 19
## 5532 2016 May 19
## 5533 2016 May 19
## 5534 2016 May 19
## 5535 2016 May 19
## 5536 2016 May 19
## 5537 2016 May 19
## 5538 2016 May 19
## 5539 2016 May 19
## 5540 2016 May 19
## 5541 2016 May 19
## 5542 2016 May 19
## 5543 2016 May 19
## 5544 2016 May 19
## 5545 2016 May 19
## 5546 2016 May 19
## 5547 2016 May 19
## 5548 2016 May 19
## 5549 2016 May 19
## 5550 2016 May 19
## 5551 2016 May 19
## 5552 2016 May 19
## 5553 2016 May 19
## 5554 2016 May 19
## 5555 2016 May 19
## 5556 2016 May 19
## 5557 2016 May 19
## 5558 2016 May 19
## 5559 2016 May 19
## 5560 2016 May 19
## 5561 2016 May 19
## 5562 2016 May 19
## 5563 2016 May 19
## 5564 2016 May 19
## 5565 2016 May 19
## 5566 2016 May 19
## 5567 2016 May 19
## 5568 2016 May 19
## 5569 2016 May 19
## 5570 2016 May 19
## 5571 2016 May 19
## 5572 2016 May 19
## 5573 2016 May 19
## 5574 2016 May 19
## 5575 2016 May 19
## 5576 2016 May 19
## 5577 2016 May 19
## 5578 2016 May 19
## 5579 2016 May 19
## 5580 2016 May 19
## 5581 2016 May 19
## 5582 2016 May 19
## 5583 2016 May 19
## 5584 2016 May 19
## 5585 2016 May 19
## 5586 2016 May 19
## 5587 2016 May 19
## 5588 2016 May 19
## 5589 2016 May 19
## 5590 2016 May 19
## 5591 2016 May 19
## 5592 2016 May 19
## 5593 2016 May 19
## 5594 2016 May 19
## 5595 2016 May 19
## 5596 2016 May 19
## 5597 2016 May 19
## 5598 2016 May 19
## 5599 2016 May 19
## 5600 2016 May 19
## 5601 2016 May 19
## 5602 2016 May 19
## 5603 2016 May 19
## 5604 2016 May 19
## 5605 2016 May 19
## 5606 2016 May 19
## 5607 2016 May 19
## 5608 2016 May 19
## 5609 2016 May 19
## 5610 2016 May 19
## 5611 2016 May 19
## 5612 2016 May 19
## 5613 2016 May 19
## 5614 2016 May 19
## 5615 2016 May 19
## 5616 2016 May 19
## 5617 2016 May 19
## 5618 2016 May 19
## 5619 2016 May 19
## 5620 2016 May 19
## 5621 2016 May 19
## 5622 2016 May 19
## 5623 2016 May 19
## 5624 2016 May 19
## 5625 2016 May 19
## 5626 2016 May 19
## 5627 2016 May 19
## 5628 2016 May 19
## 5629 2016 May 19
## 5630 2016 May 19
## 5631 2016 May 19
## 5632 2016 May 19
## 5633 2016 May 19
## 5634 2016 May 19
## 5635 2016 May 19
## 5636 2016 May 19
## 5637 2016 May 19
## 5638 2016 May 19
## 5639 2016 May 19
## 5640 2016 May 19
## 5641 2016 May 19
## 5642 2016 May 19
## 5643 2016 May 19
## 5644 2016 May 19
## 5645 2016 May 19
## 5646 2016 May 19
## 5647 2016 May 19
## 5648 2016 May 19
## 5649 2016 May 19
## 5650 2016 May 20
## 5651 2016 May 20
## 5652 2016 May 20
## 5653 2016 May 20
## 5654 2016 May 20
## 5655 2016 May 20
## 5656 2016 May 20
## 5657 2016 May 20
## 5658 2016 May 20
## 5659 2016 May 20
## 5660 2016 May 20
## 5661 2016 May 20
## 5662 2016 May 20
## 5663 2016 May 20
## 5664 2016 May 20
## 5665 2016 May 20
## 5666 2016 May 20
## 5667 2016 May 20
## 5668 2016 May 20
## 5669 2016 May 20
## 5670 2016 May 20
## 5671 2016 May 20
## 5672 2016 May 20
## 5673 2016 May 20
## 5674 2016 May 20
## 5675 2016 May 20
## 5676 2016 May 20
## 5677 2016 May 20
## 5678 2016 May 20
## 5679 2016 May 20
## 5680 2016 May 20
## 5681 2016 May 20
## 5682 2016 May 20
## 5683 2016 May 20
## 5684 2016 May 20
## 5685 2016 May 20
## 5686 2016 May 20
## 5687 2016 May 20
## 5688 2016 May 20
## 5689 2016 May 20
## 5690 2016 May 20
## 5691 2016 May 20
## 5692 2016 May 20
## 5693 2016 May 20
## 5694 2016 May 20
## 5695 2016 May 20
## 5696 2016 May 20
## 5697 2016 May 20
## 5698 2016 May 20
## 5699 2016 May 20
## 5700 2016 May 20
## 5701 2016 May 20
## 5702 2016 May 20
## 5703 2016 May 20
## 5704 2016 May 20
## 5705 2016 May 20
## 5706 2016 May 20
## 5707 2016 May 20
## 5708 2016 May 20
## 5709 2016 May 20
## 5710 2016 May 20
## 5711 2016 May 20
## 5712 2016 May 20
## 5713 2016 May 20
## 5714 2016 May 20
## 5715 2016 May 20
## 5716 2016 May 20
## 5717 2016 May 20
## 5718 2016 May 20
## 5719 2016 May 20
## 5720 2016 May 20
## 5721 2016 May 20
## 5722 2016 May 20
## 5723 2016 May 20
## 5724 2016 May 20
## 5725 2016 May 20
## 5726 2016 May 20
## 5727 2016 May 20
## 5728 2016 May 20
## 5729 2016 May 20
## 5730 2016 May 20
## 5731 2016 May 20
## 5732 2016 May 20
## 5733 2016 May 20
## 5734 2016 May 20
## 5735 2016 May 20
## 5736 2016 May 20
## 5737 2016 May 20
## 5738 2016 May 20
## 5739 2016 May 20
## 5740 2016 May 20
## 5741 2016 May 20
## 5742 2016 May 20
## 5743 2016 May 20
## 5744 2016 May 20
## 5745 2016 May 20
## 5746 2016 May 20
## 5747 2016 May 20
## 5748 2016 May 20
## 5749 2016 May 20
## 5750 2016 May 20
## 5751 2016 May 20
## 5752 2016 May 20
## 5753 2016 May 20
## 5754 2016 May 20
## 5755 2016 May 20
## 5756 2016 May 20
## 5757 2016 May 20
## 5758 2016 May 20
## 5759 2016 May 20
## 5760 2016 May 20
## 5761 2016 May 20
## 5762 2016 May 20
## 5763 2016 May 20
## 5764 2016 May 20
## 5765 2016 May 20
## 5766 2016 May 20
## 5767 2016 May 20
## 5768 2016 May 20
## 5769 2016 May 20
## 5770 2016 May 20
## 5771 2016 May 20
## 5772 2016 May 20
## 5773 2016 May 20
## 5774 2016 May 20
## 5775 2016 May 20
## 5776 2016 May 20
## 5777 2016 May 20
## 5778 2016 May 20
## 5779 2016 May 20
## 5780 2016 May 20
## 5781 2016 May 20
## 5782 2016 May 20
## 5783 2016 May 20
## 5784 2016 May 20
## 5785 2016 May 20
## 5786 2016 May 20
## 5787 2016 May 20
## 5788 2016 May 20
## 5789 2016 May 20
## 5790 2016 May 20
## 5791 2016 May 20
## 5792 2016 May 20
## 5793 2016 May 20
## 5794 2016 May 20
## 5795 2016 May 20
## 5796 2016 May 20
## 5797 2016 May 20
## 5798 2016 May 20
## 5799 2016 May 20
## 5800 2016 May 20
## 5801 2016 May 20
## 5802 2016 May 20
## 5803 2016 May 20
## 5804 2016 May 20
## 5805 2016 May 20
## 5806 2016 May 20
## 5807 2016 May 20
## 5808 2016 May 20
## 5809 2016 May 20
## 5810 2016 May 20
## 5811 2016 May 20
## 5812 2016 May 20
## 5813 2016 May 20
## 5814 2016 May 20
## 5815 2016 May 20
## 5816 2016 May 20
## 5817 2016 May 20
## 5818 2016 May 20
## 5819 2016 May 20
## 5820 2016 May 20
## 5821 2016 May 20
## 5822 2016 May 20
## 5823 2016 May 20
## 5824 2016 May 20
## 5825 2016 May 20
## 5826 2016 May 20
## 5827 2016 May 20
## 5828 2016 May 20
## 5829 2016 May 20
## 5830 2016 May 20
## 5831 2016 May 20
## 5832 2016 May 20
## 5833 2016 May 20
## 5834 2016 May 20
## 5835 2016 May 21
## 5836 2016 May 21
## 5837 2016 May 21
## 5838 2016 May 21
## 5839 2016 May 21
## 5840 2016 May 21
## 5841 2016 May 21
## 5842 2016 May 21
## 5843 2016 May 21
## 5844 2016 May 21
## 5845 2016 May 21
## 5846 2016 May 21
## 5847 2016 May 21
## 5848 2016 May 21
## 5849 2016 May 21
## 5850 2016 May 21
## 5851 2016 May 21
## 5852 2016 May 21
## 5853 2016 May 21
## 5854 2016 May 21
## 5855 2016 May 21
## 5856 2016 May 21
## 5857 2016 May 21
## 5858 2016 May 21
## 5859 2016 May 21
## 5860 2016 May 21
## 5861 2016 May 21
## 5862 2016 May 21
## 5863 2016 May 21
## 5864 2016 May 21
## 5865 2016 May 21
## 5866 2016 May 21
## 5867 2016 May 21
## 5868 2016 May 21
## 5869 2016 May 21
## 5870 2016 May 21
## 5871 2016 May 21
## 5872 2016 May 21
## 5873 2016 May 21
## 5874 2016 May 21
## 5875 2016 May 21
## 5876 2016 May 21
## 5877 2016 May 21
## 5878 2016 May 21
## 5879 2016 May 21
## 5880 2016 May 21
## 5881 2016 May 21
## 5882 2016 May 21
## 5883 2016 May 21
## 5884 2016 May 21
## 5885 2016 May 21
## 5886 2016 May 21
## 5887 2016 May 21
## 5888 2016 May 21
## 5889 2016 May 21
## 5890 2016 May 21
## 5891 2016 May 21
## 5892 2016 May 21
## 5893 2016 May 21
## 5894 2016 May 21
## 5895 2016 May 21
## 5896 2016 May 21
## 5897 2016 May 21
## 5898 2016 May 21
## 5899 2016 May 21
## 5900 2016 May 21
## 5901 2016 May 21
## 5902 2016 May 21
## 5903 2016 May 21
## 5904 2016 May 21
## 5905 2016 May 21
## 5906 2016 May 21
## 5907 2016 May 21
## 5908 2016 May 21
## 5909 2016 May 21
## 5910 2016 May 21
## 5911 2016 May 21
## 5912 2016 May 21
## 5913 2016 May 21
## 5914 2016 May 21
## 5915 2016 May 21
## 5916 2016 May 21
## 5917 2016 May 21
## 5918 2016 May 21
## 5919 2016 May 21
## 5920 2016 May 21
## 5921 2016 May 21
## 5922 2016 May 21
## 5923 2016 May 21
## 5924 2016 May 21
## 5925 2016 May 21
## 5926 2016 May 21
## 5927 2016 May 21
## 5928 2016 May 21
## 5929 2016 May 21
## 5930 2016 May 21
## 5931 2016 May 21
## 5932 2016 May 21
## 5933 2016 May 21
## 5934 2016 May 21
## 5935 2016 May 21
## 5936 2016 May 21
## 5937 2016 May 21
## 5938 2016 May 21
## 5939 2016 May 21
## 5940 2016 May 21
## 5941 2016 May 21
## 5942 2016 May 21
## 5943 2016 May 21
## 5944 2016 May 21
## 5945 2016 May 21
## 5946 2016 May 21
## 5947 2016 May 21
## 5948 2016 May 21
## 5949 2016 May 21
## 5950 2016 May 21
## 5951 2016 May 21
## 5952 2016 May 21
## 5953 2016 May 21
## 5954 2016 May 21
## 5955 2016 May 21
## 5956 2016 May 21
## 5957 2016 May 21
## 5958 2016 May 21
## 5959 2016 May 21
## 5960 2016 May 21
## 5961 2016 May 21
## 5962 2016 May 21
## 5963 2016 May 21
## 5964 2016 May 21
## 5965 2016 May 21
## 5966 2016 May 21
## 5967 2016 May 21
## 5968 2016 May 21
## 5969 2016 May 21
## 5970 2016 May 21
## 5971 2016 May 21
## 5972 2016 May 21
## 5973 2016 May 21
## 5974 2016 May 21
## 5975 2016 May 21
## 5976 2016 May 21
## 5977 2016 May 21
## 5978 2016 May 21
## 5979 2016 May 21
## 5980 2016 May 21
## 5981 2016 May 21
## 5982 2016 May 21
## 5983 2016 May 21
## 5984 2016 May 21
## 5985 2016 May 21
## 5986 2016 May 21
## 5987 2016 May 21
## 5988 2016 May 21
## 5989 2016 May 21
## 5990 2016 May 21
## 5991 2016 May 21
## 5992 2016 May 21
## 5993 2016 May 21
## 5994 2016 May 21
## 5995 2016 May 21
## 5996 2016 May 21
## 5997 2016 May 21
## 5998 2016 May 21
## 5999 2016 May 21
## 6000 2016 May 21
## 6001 2016 May 21
## 6002 2016 May 21
## 6003 2016 May 21
## 6004 2016 May 21
## 6005 2016 May 21
## 6006 2016 May 21
## 6007 2016 May 21
## 6008 2016 May 21
## 6009 2016 May 21
## 6010 2016 May 21
## 6011 2016 May 21
## 6012 2016 May 21
## 6013 2016 May 21
## 6014 2016 May 21
## 6015 2016 May 21
## 6016 2016 May 21
## 6017 2016 May 21
## 6018 2016 May 21
## 6019 2016 May 21
## 6020 2016 May 21
## 6021 2016 May 21
## 6022 2016 May 21
## 6023 2016 May 21
## 6024 2016 May 21
## 6025 2016 May 21
## 6026 2016 May 21
## 6027 2016 May 21
## 6028 2016 May 21
## 6029 2016 May 21
## 6030 2016 May 21
## 6031 2016 May 21
## 6032 2016 May 21
## 6033 2016 May 21
## 6034 2016 May 21
## 6035 2016 May 21
## 6036 2016 May 21
## 6037 2016 May 21
## 6038 2016 May 21
## 6039 2016 May 21
## 6040 2016 May 22
## 6041 2016 May 22
## 6042 2016 May 22
## 6043 2016 May 22
## 6044 2016 May 22
## 6045 2016 May 22
## 6046 2016 May 22
## 6047 2016 May 22
## 6048 2016 May 22
## 6049 2016 May 22
## 6050 2016 May 22
## 6051 2016 May 22
## 6052 2016 May 22
## 6053 2016 May 22
## 6054 2016 May 22
## 6055 2016 May 22
## 6056 2016 May 22
## 6057 2016 May 22
## 6058 2016 May 22
## 6059 2016 May 22
## 6060 2016 May 22
## 6061 2016 May 22
## 6062 2016 May 22
## 6063 2016 May 22
## 6064 2016 May 22
## 6065 2016 May 22
## 6066 2016 May 22
## 6067 2016 May 22
## 6068 2016 May 22
## 6069 2016 May 22
## 6070 2016 May 22
## 6071 2016 May 22
## 6072 2016 May 22
## 6073 2016 May 22
## 6074 2016 May 22
## 6075 2016 May 22
## 6076 2016 May 22
## 6077 2016 May 22
## 6078 2016 May 22
## 6079 2016 May 22
## 6080 2016 May 22
## 6081 2016 May 22
## 6082 2016 May 22
## 6083 2016 May 22
## 6084 2016 May 22
## 6085 2016 May 22
## 6086 2016 May 22
## 6087 2016 May 22
## 6088 2016 May 22
## 6089 2016 May 22
## 6090 2016 May 22
## 6091 2016 May 22
## 6092 2016 May 22
## 6093 2016 May 22
## 6094 2016 May 22
## 6095 2016 May 22
## 6096 2016 May 22
## 6097 2016 May 22
## 6098 2016 May 22
## 6099 2016 May 22
## 6100 2016 May 22
## 6101 2016 May 22
## 6102 2016 May 22
## 6103 2016 May 22
## 6104 2016 May 22
## 6105 2016 May 22
## 6106 2016 May 22
## 6107 2016 May 22
## 6108 2016 May 22
## 6109 2016 May 22
## 6110 2016 May 22
## 6111 2016 May 22
## 6112 2016 May 22
## 6113 2016 May 22
## 6114 2016 May 22
## 6115 2016 May 22
## 6116 2016 May 22
## 6117 2016 May 22
## 6118 2016 May 22
## 6119 2016 May 22
## 6120 2016 May 22
## 6121 2016 May 22
## 6122 2016 May 22
## 6123 2016 May 22
## 6124 2016 May 22
## 6125 2016 May 22
## 6126 2016 May 22
## 6127 2016 May 22
## 6128 2016 May 22
## 6129 2016 May 22
## 6130 2016 May 22
## 6131 2016 May 22
## 6132 2016 May 22
## 6133 2016 May 22
## 6134 2016 May 22
## 6135 2016 May 22
## 6136 2016 May 22
## 6137 2016 May 22
## 6138 2016 May 22
## 6139 2016 May 22
## 6140 2016 May 22
## 6141 2016 May 22
## 6142 2016 May 22
## 6143 2016 May 22
## 6144 2016 May 22
## 6145 2016 May 22
## 6146 2016 May 22
## 6147 2016 May 22
## 6148 2016 May 22
## 6149 2016 May 22
## 6150 2016 May 22
## 6151 2016 May 22
## 6152 2016 May 22
## 6153 2016 May 22
## 6154 2016 May 22
## 6155 2016 May 22
## 6156 2016 May 22
## 6157 2016 May 22
## 6158 2016 May 22
## 6159 2016 May 22
## 6160 2016 May 22
## 6161 2016 May 22
## 6162 2016 May 22
## 6163 2016 May 22
## 6164 2016 May 22
## 6165 2016 May 22
## 6166 2016 May 22
## 6167 2016 May 22
## 6168 2016 May 22
## 6169 2016 May 22
## 6170 2016 May 22
## 6171 2016 May 22
## 6172 2016 May 22
## 6173 2016 May 22
## 6174 2016 May 22
## 6175 2016 May 22
## 6176 2016 May 22
## 6177 2016 May 22
## 6178 2016 May 22
## 6179 2016 May 22
## 6180 2016 May 22
## 6181 2016 May 22
## 6182 2016 May 22
## 6183 2016 May 22
## 6184 2016 May 22
## 6185 2016 May 22
## 6186 2016 May 22
## 6187 2016 May 22
## 6188 2016 May 22
## 6189 2016 May 22
## 6190 2016 May 22
## 6191 2016 May 22
## 6192 2016 May 22
## 6193 2016 May 22
## 6194 2016 May 22
## 6195 2016 May 22
## 6196 2016 May 22
## 6197 2016 May 22
## 6198 2016 May 22
## 6199 2016 May 22
## 6200 2016 May 22
## 6201 2016 May 22
## 6202 2016 May 22
## 6203 2016 May 22
## 6204 2016 May 22
## 6205 2016 May 22
## 6206 2016 May 22
## 6207 2016 May 22
## 6208 2016 May 22
## 6209 2016 May 22
## 6210 2016 May 22
## 6211 2016 May 22
## 6212 2016 May 22
## 6213 2016 May 22
## 6214 2016 May 22
## 6215 2016 May 22
## 6216 2016 May 22
## 6217 2016 May 22
## 6218 2016 May 22
## 6219 2016 May 22
## 6220 2016 May 22
## 6221 2016 May 22
## 6222 2016 May 22
## 6223 2016 May 22
## 6224 2016 May 22
## 6225 2016 May 22
## 6226 2016 May 22
## 6227 2016 May 23
## 6228 2016 May 23
## 6229 2016 May 23
## 6230 2016 May 23
## 6231 2016 May 23
## 6232 2016 May 23
## 6233 2016 May 23
## 6234 2016 May 23
## 6235 2016 May 23
## 6236 2016 May 23
## 6237 2016 May 23
## 6238 2016 May 23
## 6239 2016 May 23
## 6240 2016 May 23
## 6241 2016 May 23
## 6242 2016 May 23
## 6243 2016 May 23
## 6244 2016 May 23
## 6245 2016 May 23
## 6246 2016 May 23
## 6247 2016 May 23
## 6248 2016 May 23
## 6249 2016 May 23
## 6250 2016 May 23
## 6251 2016 May 23
## 6252 2016 May 23
## 6253 2016 May 23
## 6254 2016 May 23
## 6255 2016 May 23
## 6256 2016 May 23
## 6257 2016 May 23
## 6258 2016 May 23
## 6259 2016 May 23
## 6260 2016 May 23
## 6261 2016 May 23
## 6262 2016 May 23
## 6263 2016 May 23
## 6264 2016 May 23
## 6265 2016 May 23
## 6266 2016 May 23
## 6267 2016 May 23
## 6268 2016 May 23
## 6269 2016 May 23
## 6270 2016 May 23
## 6271 2016 May 23
## 6272 2016 May 23
## 6273 2016 May 23
## 6274 2016 May 23
## 6275 2016 May 23
## 6276 2016 June 23
## 6277 2016 June 23
## 6278 2016 June 23
## 6279 2016 June 23
## 6280 2016 June 23
## 6281 2016 June 23
## 6282 2016 June 23
## 6283 2016 June 23
## 6284 2016 June 23
## 6285 2016 June 23
## 6286 2016 June 23
## 6287 2016 June 23
## 6288 2016 June 23
## 6289 2016 June 23
## 6290 2016 June 23
## 6291 2016 June 23
## 6292 2016 June 23
## 6293 2016 June 23
## 6294 2016 June 23
## 6295 2016 June 23
## 6296 2016 June 23
## 6297 2016 June 23
## 6298 2016 June 23
## 6299 2016 June 23
## 6300 2016 June 23
## 6301 2016 June 23
## 6302 2016 June 23
## 6303 2016 June 23
## 6304 2016 June 23
## 6305 2016 June 23
## 6306 2016 June 23
## 6307 2016 June 23
## 6308 2016 June 23
## 6309 2016 June 23
## 6310 2016 June 23
## 6311 2016 June 23
## 6312 2016 June 23
## 6313 2016 June 23
## 6314 2016 June 23
## 6315 2016 June 23
## 6316 2016 June 23
## 6317 2016 June 23
## 6318 2016 June 23
## 6319 2016 June 23
## 6320 2016 June 23
## 6321 2016 June 23
## 6322 2016 June 23
## 6323 2016 June 23
## 6324 2016 June 23
## 6325 2016 June 23
## 6326 2016 June 23
## 6327 2016 June 23
## 6328 2016 June 23
## 6329 2016 June 23
## 6330 2016 June 23
## 6331 2016 June 23
## 6332 2016 June 23
## 6333 2016 June 23
## 6334 2016 June 23
## 6335 2016 June 23
## 6336 2016 June 23
## 6337 2016 June 23
## 6338 2016 June 23
## 6339 2016 June 23
## 6340 2016 June 23
## 6341 2016 June 23
## 6342 2016 June 23
## 6343 2016 June 23
## 6344 2016 June 23
## 6345 2016 June 23
## 6346 2016 June 23
## 6347 2016 June 23
## 6348 2016 June 23
## 6349 2016 June 23
## 6350 2016 June 23
## 6351 2016 June 23
## 6352 2016 June 23
## 6353 2016 June 23
## 6354 2016 June 23
## 6355 2016 June 23
## 6356 2016 June 24
## 6357 2016 June 24
## 6358 2016 June 24
## 6359 2016 June 24
## 6360 2016 June 24
## 6361 2016 June 24
## 6362 2016 June 24
## 6363 2016 June 24
## 6364 2016 June 24
## 6365 2016 June 24
## 6366 2016 June 24
## 6367 2016 June 24
## 6368 2016 June 24
## 6369 2016 June 24
## 6370 2016 June 24
## 6371 2016 June 24
## 6372 2016 June 24
## 6373 2016 June 24
## 6374 2016 June 24
## 6375 2016 June 24
## 6376 2016 June 24
## 6377 2016 June 24
## 6378 2016 June 24
## 6379 2016 June 24
## 6380 2016 June 24
## 6381 2016 June 24
## 6382 2016 June 24
## 6383 2016 June 24
## 6384 2016 June 24
## 6385 2016 June 24
## 6386 2016 June 24
## 6387 2016 June 24
## 6388 2016 June 24
## 6389 2016 June 24
## 6390 2016 June 24
## 6391 2016 June 24
## 6392 2016 June 24
## 6393 2016 June 24
## 6394 2016 June 24
## 6395 2016 June 24
## 6396 2016 June 24
## 6397 2016 June 24
## 6398 2016 June 24
## 6399 2016 June 24
## 6400 2016 June 24
## 6401 2016 June 24
## 6402 2016 June 24
## 6403 2016 June 24
## 6404 2016 June 24
## 6405 2016 June 24
## 6406 2016 June 24
## 6407 2016 June 24
## 6408 2016 June 24
## 6409 2016 June 24
## 6410 2016 June 24
## 6411 2016 June 24
## 6412 2016 June 24
## 6413 2016 June 24
## 6414 2016 June 24
## 6415 2016 June 24
## 6416 2016 June 24
## 6417 2016 June 24
## 6418 2016 June 24
## 6419 2016 June 24
## 6420 2016 June 24
## 6421 2016 June 24
## 6422 2016 June 24
## 6423 2016 June 24
## 6424 2016 June 24
## 6425 2016 June 24
## 6426 2016 June 24
## 6427 2016 June 24
## 6428 2016 June 24
## 6429 2016 June 24
## 6430 2016 June 24
## 6431 2016 June 24
## 6432 2016 June 24
## 6433 2016 June 24
## 6434 2016 June 24
## 6435 2016 June 24
## 6436 2016 June 24
## 6437 2016 June 24
## 6438 2016 June 24
## 6439 2016 June 24
## 6440 2016 June 24
## 6441 2016 June 24
## 6442 2016 June 24
## 6443 2016 June 24
## 6444 2016 June 24
## 6445 2016 June 24
## 6446 2016 June 24
## 6447 2016 June 24
## 6448 2016 June 24
## 6449 2016 June 25
## 6450 2016 June 25
## 6451 2016 June 25
## 6452 2016 June 25
## 6453 2016 June 25
## 6454 2016 June 25
## 6455 2016 June 25
## 6456 2016 June 25
## 6457 2016 June 25
## 6458 2016 June 25
## 6459 2016 June 25
## 6460 2016 June 25
## 6461 2016 June 25
## 6462 2016 June 25
## 6463 2016 June 25
## 6464 2016 June 25
## 6465 2016 June 25
## 6466 2016 June 25
## 6467 2016 June 25
## 6468 2016 June 25
## 6469 2016 June 25
## 6470 2016 June 25
## 6471 2016 June 25
## 6472 2016 June 25
## 6473 2016 June 25
## 6474 2016 June 25
## 6475 2016 June 25
## 6476 2016 June 25
## 6477 2016 June 25
## 6478 2016 June 25
## 6479 2016 June 25
## 6480 2016 June 25
## 6481 2016 June 25
## 6482 2016 June 25
## 6483 2016 June 25
## 6484 2016 June 25
## 6485 2016 June 25
## 6486 2016 June 25
## 6487 2016 June 25
## 6488 2016 June 25
## 6489 2016 June 25
## 6490 2016 June 25
## 6491 2016 June 25
## 6492 2016 June 25
## 6493 2016 June 25
## 6494 2016 June 25
## 6495 2016 June 25
## 6496 2016 June 25
## 6497 2016 June 25
## 6498 2016 June 25
## 6499 2016 June 25
## 6500 2016 June 25
## 6501 2016 June 25
## 6502 2016 June 25
## 6503 2016 June 25
## 6504 2016 June 25
## 6505 2016 June 25
## 6506 2016 June 25
## 6507 2016 June 25
## 6508 2016 June 25
## 6509 2016 June 25
## 6510 2016 June 25
## 6511 2016 June 25
## 6512 2016 June 25
## 6513 2016 June 25
## 6514 2016 June 25
## 6515 2016 June 25
## 6516 2016 June 25
## 6517 2016 June 25
## 6518 2016 June 25
## 6519 2016 June 25
## 6520 2016 June 25
## 6521 2016 June 25
## 6522 2016 June 25
## 6523 2016 June 25
## 6524 2016 June 25
## 6525 2016 June 25
## 6526 2016 June 25
## 6527 2016 June 25
## 6528 2016 June 25
## 6529 2016 June 25
## 6530 2016 June 25
## 6531 2016 June 25
## 6532 2016 June 25
## 6533 2016 June 25
## 6534 2016 June 25
## 6535 2016 June 25
## 6536 2016 June 25
## 6537 2016 June 25
## 6538 2016 June 25
## 6539 2016 June 25
## 6540 2016 June 25
## 6541 2016 June 25
## 6542 2016 June 25
## 6543 2016 June 25
## 6544 2016 June 25
## 6545 2016 June 25
## 6546 2016 June 25
## 6547 2016 June 25
## 6548 2016 June 25
## 6549 2016 June 25
## 6550 2016 June 25
## 6551 2016 June 25
## 6552 2016 June 25
## 6553 2016 June 25
## 6554 2016 June 25
## 6555 2016 June 25
## 6556 2016 June 25
## 6557 2016 June 25
## 6558 2016 June 25
## 6559 2016 June 25
## 6560 2016 June 25
## 6561 2016 June 25
## 6562 2016 June 25
## 6563 2016 June 25
## 6564 2016 June 25
## 6565 2016 June 25
## 6566 2016 June 25
## 6567 2016 June 25
## 6568 2016 June 25
## 6569 2016 June 25
## 6570 2016 June 25
## 6571 2016 June 25
## 6572 2016 June 25
## 6573 2016 June 25
## 6574 2016 June 25
## 6575 2016 June 25
## 6576 2016 June 25
## 6577 2016 June 25
## 6578 2016 June 25
## 6579 2016 June 25
## 6580 2016 June 25
## 6581 2016 June 25
## 6582 2016 June 25
## 6583 2016 June 25
## 6584 2016 June 25
## 6585 2016 June 25
## 6586 2016 June 25
## 6587 2016 June 26
## 6588 2016 June 26
## 6589 2016 June 26
## 6590 2016 June 26
## 6591 2016 June 26
## 6592 2016 June 26
## 6593 2016 June 26
## 6594 2016 June 26
## 6595 2016 June 26
## 6596 2016 June 26
## 6597 2016 June 26
## 6598 2016 June 26
## 6599 2016 June 26
## 6600 2016 June 26
## 6601 2016 June 26
## 6602 2016 June 26
## 6603 2016 June 26
## 6604 2016 June 26
## 6605 2016 June 26
## 6606 2016 June 26
## 6607 2016 June 26
## 6608 2016 June 26
## 6609 2016 June 26
## 6610 2016 June 26
## 6611 2016 June 26
## 6612 2016 June 26
## 6613 2016 June 26
## 6614 2016 June 26
## 6615 2016 June 26
## 6616 2016 June 26
## 6617 2016 June 26
## 6618 2016 June 26
## 6619 2016 June 26
## 6620 2016 June 26
## 6621 2016 June 26
## 6622 2016 June 26
## 6623 2016 June 26
## 6624 2016 June 26
## 6625 2016 June 26
## 6626 2016 June 26
## 6627 2016 June 26
## 6628 2016 June 26
## 6629 2016 June 26
## 6630 2016 June 26
## 6631 2016 June 26
## 6632 2016 June 26
## 6633 2016 June 26
## 6634 2016 June 26
## 6635 2016 June 26
## 6636 2016 June 26
## 6637 2016 June 26
## 6638 2016 June 26
## 6639 2016 June 26
## 6640 2016 June 26
## 6641 2016 June 26
## 6642 2016 June 26
## 6643 2016 June 26
## 6644 2016 June 26
## 6645 2016 June 26
## 6646 2016 June 26
## 6647 2016 June 26
## 6648 2016 June 26
## 6649 2016 June 26
## 6650 2016 June 26
## 6651 2016 June 26
## 6652 2016 June 26
## 6653 2016 June 26
## 6654 2016 June 26
## 6655 2016 June 26
## 6656 2016 June 26
## 6657 2016 June 26
## 6658 2016 June 26
## 6659 2016 June 26
## 6660 2016 June 26
## 6661 2016 June 26
## 6662 2016 June 26
## 6663 2016 June 26
## 6664 2016 June 26
## 6665 2016 June 26
## 6666 2016 June 26
## 6667 2016 June 26
## 6668 2016 June 26
## 6669 2016 June 26
## 6670 2016 June 26
## 6671 2016 June 26
## 6672 2016 June 26
## 6673 2016 June 26
## 6674 2016 June 26
## 6675 2016 June 26
## 6676 2016 June 26
## 6677 2016 June 26
## 6678 2016 June 26
## 6679 2016 June 26
## 6680 2016 June 26
## 6681 2016 June 26
## 6682 2016 June 26
## 6683 2016 June 26
## 6684 2016 June 26
## 6685 2016 June 26
## 6686 2016 June 26
## 6687 2016 June 26
## 6688 2016 June 26
## 6689 2016 June 26
## 6690 2016 June 26
## 6691 2016 June 26
## 6692 2016 June 26
## 6693 2016 June 26
## 6694 2016 June 26
## 6695 2016 June 26
## 6696 2016 June 26
## 6697 2016 June 26
## 6698 2016 June 26
## 6699 2016 June 26
## 6700 2016 June 26
## 6701 2016 June 26
## 6702 2016 June 26
## 6703 2016 June 26
## 6704 2016 June 26
## 6705 2016 June 26
## 6706 2016 June 26
## 6707 2016 June 26
## 6708 2016 June 26
## 6709 2016 June 26
## 6710 2016 June 27
## 6711 2016 June 27
## 6712 2016 June 27
## 6713 2016 June 27
## 6714 2016 June 27
## 6715 2016 June 27
## 6716 2016 June 27
## 6717 2016 June 27
## 6718 2016 June 27
## 6719 2016 June 27
## 6720 2016 June 27
## 6721 2016 June 27
## 6722 2016 June 27
## 6723 2016 June 27
## 6724 2016 June 27
## 6725 2016 June 27
## 6726 2016 June 27
## 6727 2016 June 27
## 6728 2016 June 27
## 6729 2016 June 27
## 6730 2016 June 27
## 6731 2016 June 27
## 6732 2016 June 27
## 6733 2016 June 27
## 6734 2016 June 27
## 6735 2016 June 27
## 6736 2016 June 27
## 6737 2016 June 27
## 6738 2016 June 27
## 6739 2016 June 27
## 6740 2016 June 27
## 6741 2016 June 27
## 6742 2016 June 27
## 6743 2016 June 27
## 6744 2016 June 27
## 6745 2016 June 27
## 6746 2016 June 27
## 6747 2016 June 27
## 6748 2016 June 27
## 6749 2016 June 27
## 6750 2016 June 27
## 6751 2016 June 27
## 6752 2016 June 27
## 6753 2016 June 27
## 6754 2016 June 27
## 6755 2016 June 27
## 6756 2016 June 27
## 6757 2016 June 27
## 6758 2016 June 27
## 6759 2016 June 27
## 6760 2016 June 27
## 6761 2016 June 27
## 6762 2016 June 27
## 6763 2016 June 27
## 6764 2016 June 27
## 6765 2016 June 27
## 6766 2016 July 27
## 6767 2016 July 27
## 6768 2016 July 27
## 6769 2016 July 27
## 6770 2016 July 27
## 6771 2016 July 27
## 6772 2016 July 27
## 6773 2016 July 27
## 6774 2016 July 27
## 6775 2016 July 27
## 6776 2016 July 27
## 6777 2016 July 27
## 6778 2016 July 27
## 6779 2016 July 27
## 6780 2016 July 27
## 6781 2016 July 27
## 6782 2016 July 27
## 6783 2016 July 27
## 6784 2016 July 27
## 6785 2016 July 27
## 6786 2016 July 27
## 6787 2016 July 27
## 6788 2016 July 27
## 6789 2016 July 27
## 6790 2016 July 27
## 6791 2016 July 27
## 6792 2016 July 27
## 6793 2016 July 27
## 6794 2016 July 27
## 6795 2016 July 27
## 6796 2016 July 27
## 6797 2016 July 27
## 6798 2016 July 27
## 6799 2016 July 27
## 6800 2016 July 27
## 6801 2016 July 27
## 6802 2016 July 27
## 6803 2016 July 27
## 6804 2016 July 27
## 6805 2016 July 27
## 6806 2016 July 27
## 6807 2016 July 28
## 6808 2016 July 28
## 6809 2016 July 28
## 6810 2016 July 28
## 6811 2016 July 28
## 6812 2016 July 28
## 6813 2016 July 28
## 6814 2016 July 28
## 6815 2016 July 28
## 6816 2016 July 28
## 6817 2016 July 28
## 6818 2016 July 28
## 6819 2016 July 28
## 6820 2016 July 28
## 6821 2016 July 28
## 6822 2016 July 28
## 6823 2016 July 28
## 6824 2016 July 28
## 6825 2016 July 28
## 6826 2016 July 28
## 6827 2016 July 28
## 6828 2016 July 28
## 6829 2016 July 28
## 6830 2016 July 28
## 6831 2016 July 28
## 6832 2016 July 28
## 6833 2016 July 28
## 6834 2016 July 28
## 6835 2016 July 28
## 6836 2016 July 28
## 6837 2016 July 28
## 6838 2016 July 28
## 6839 2016 July 28
## 6840 2016 July 28
## 6841 2016 July 28
## 6842 2016 July 28
## 6843 2016 July 28
## 6844 2016 July 28
## 6845 2016 July 28
## 6846 2016 July 28
## 6847 2016 July 28
## 6848 2016 July 28
## 6849 2016 July 28
## 6850 2016 July 28
## 6851 2016 July 28
## 6852 2016 July 28
## 6853 2016 July 28
## 6854 2016 July 28
## 6855 2016 July 28
## 6856 2016 July 28
## 6857 2016 July 28
## 6858 2016 July 28
## 6859 2016 July 28
## 6860 2016 July 28
## 6861 2016 July 28
## 6862 2016 July 28
## 6863 2016 July 28
## 6864 2016 July 28
## 6865 2016 July 28
## 6866 2016 July 28
## 6867 2016 July 28
## 6868 2016 July 28
## 6869 2016 July 28
## 6870 2016 July 28
## 6871 2016 July 28
## 6872 2016 July 28
## 6873 2016 July 28
## 6874 2016 July 28
## 6875 2016 July 28
## 6876 2016 July 28
## 6877 2016 July 28
## 6878 2016 July 28
## 6879 2016 July 28
## 6880 2016 July 28
## 6881 2016 July 28
## 6882 2016 July 28
## 6883 2016 July 28
## 6884 2016 July 28
## 6885 2016 July 28
## 6886 2016 July 28
## 6887 2016 July 28
## 6888 2016 July 28
## 6889 2016 July 28
## 6890 2016 July 28
## 6891 2016 July 28
## 6892 2016 July 28
## 6893 2016 July 28
## 6894 2016 July 28
## 6895 2016 July 28
## 6896 2016 July 28
## 6897 2016 July 28
## 6898 2016 July 28
## 6899 2016 July 28
## 6900 2016 July 29
## 6901 2016 July 29
## 6902 2016 July 29
## 6903 2016 July 29
## 6904 2016 July 29
## 6905 2016 July 29
## 6906 2016 July 29
## 6907 2016 July 29
## 6908 2016 July 29
## 6909 2016 July 29
## 6910 2016 July 29
## 6911 2016 July 29
## 6912 2016 July 29
## 6913 2016 July 29
## 6914 2016 July 29
## 6915 2016 July 29
## 6916 2016 July 29
## 6917 2016 July 29
## 6918 2016 July 29
## 6919 2016 July 29
## 6920 2016 July 29
## 6921 2016 July 29
## 6922 2016 July 29
## 6923 2016 July 29
## 6924 2016 July 29
## 6925 2016 July 29
## 6926 2016 July 29
## 6927 2016 July 29
## 6928 2016 July 29
## 6929 2016 July 29
## 6930 2016 July 29
## 6931 2016 July 29
## 6932 2016 July 29
## 6933 2016 July 29
## 6934 2016 July 29
## 6935 2016 July 29
## 6936 2016 July 29
## 6937 2016 July 29
## 6938 2016 July 29
## 6939 2016 July 29
## 6940 2016 July 29
## 6941 2016 July 29
## 6942 2016 July 29
## 6943 2016 July 29
## 6944 2016 July 29
## 6945 2016 July 29
## 6946 2016 July 29
## 6947 2016 July 29
## 6948 2016 July 29
## 6949 2016 July 29
## 6950 2016 July 29
## 6951 2016 July 29
## 6952 2016 July 29
## 6953 2016 July 29
## 6954 2016 July 29
## 6955 2016 July 29
## 6956 2016 July 29
## 6957 2016 July 29
## 6958 2016 July 29
## 6959 2016 July 29
## 6960 2016 July 29
## 6961 2016 July 29
## 6962 2016 July 29
## 6963 2016 July 29
## 6964 2016 July 29
## 6965 2016 July 29
## 6966 2016 July 29
## 6967 2016 July 29
## 6968 2016 July 29
## 6969 2016 July 29
## 6970 2016 July 29
## 6971 2016 July 29
## 6972 2016 July 29
## 6973 2016 July 29
## 6974 2016 July 29
## 6975 2016 July 29
## 6976 2016 July 29
## 6977 2016 July 29
## 6978 2016 July 29
## 6979 2016 July 29
## 6980 2016 July 29
## 6981 2016 July 29
## 6982 2016 July 29
## 6983 2016 July 29
## 6984 2016 July 29
## 6985 2016 July 29
## 6986 2016 July 29
## 6987 2016 July 29
## 6988 2016 July 29
## 6989 2016 July 29
## 6990 2016 July 29
## 6991 2016 July 29
## 6992 2016 July 29
## 6993 2016 July 29
## 6994 2016 July 29
## 6995 2016 July 29
## 6996 2016 July 29
## 6997 2016 July 29
## 6998 2016 July 29
## 6999 2016 July 29
## 7000 2016 July 29
## 7001 2016 July 29
## 7002 2016 July 29
## 7003 2016 July 29
## 7004 2016 July 29
## 7005 2016 July 29
## 7006 2016 July 29
## 7007 2016 July 29
## 7008 2016 July 29
## 7009 2016 July 29
## 7010 2016 July 29
## 7011 2016 July 29
## 7012 2016 July 29
## 7013 2016 July 29
## 7014 2016 July 29
## 7015 2016 July 29
## 7016 2016 July 29
## 7017 2016 July 29
## 7018 2016 July 29
## 7019 2016 July 29
## 7020 2016 July 29
## 7021 2016 July 29
## 7022 2016 July 29
## 7023 2016 July 29
## 7024 2016 July 29
## 7025 2016 July 29
## 7026 2016 July 29
## 7027 2016 July 30
## 7028 2016 July 30
## 7029 2016 July 30
## 7030 2016 July 30
## 7031 2016 July 30
## 7032 2016 July 30
## 7033 2016 July 30
## 7034 2016 July 30
## 7035 2016 July 30
## 7036 2016 July 30
## 7037 2016 July 30
## 7038 2016 July 30
## 7039 2016 July 30
## 7040 2016 July 30
## 7041 2016 July 30
## 7042 2016 July 30
## 7043 2016 July 30
## 7044 2016 July 30
## 7045 2016 July 30
## 7046 2016 July 30
## 7047 2016 July 30
## 7048 2016 July 30
## 7049 2016 July 30
## 7050 2016 July 30
## 7051 2016 July 30
## 7052 2016 July 30
## 7053 2016 July 30
## 7054 2016 July 30
## 7055 2016 July 30
## 7056 2016 July 30
## 7057 2016 July 30
## 7058 2016 July 30
## 7059 2016 July 30
## 7060 2016 July 30
## 7061 2016 July 30
## 7062 2016 July 30
## 7063 2016 July 30
## 7064 2016 July 30
## 7065 2016 July 30
## 7066 2016 July 30
## 7067 2016 July 30
## 7068 2016 July 30
## 7069 2016 July 30
## 7070 2016 July 30
## 7071 2016 July 30
## 7072 2016 July 30
## 7073 2016 July 30
## 7074 2016 July 30
## 7075 2016 July 30
## 7076 2016 July 30
## 7077 2016 July 30
## 7078 2016 July 30
## 7079 2016 July 30
## 7080 2016 July 30
## 7081 2016 July 30
## 7082 2016 July 30
## 7083 2016 July 30
## 7084 2016 July 30
## 7085 2016 July 30
## 7086 2016 July 30
## 7087 2016 July 30
## 7088 2016 July 30
## 7089 2016 July 30
## 7090 2016 July 30
## 7091 2016 July 30
## 7092 2016 July 30
## 7093 2016 July 30
## 7094 2016 July 30
## 7095 2016 July 30
## 7096 2016 July 30
## 7097 2016 July 30
## 7098 2016 July 30
## 7099 2016 July 30
## 7100 2016 July 30
## 7101 2016 July 30
## 7102 2016 July 30
## 7103 2016 July 30
## 7104 2016 July 30
## 7105 2016 July 30
## 7106 2016 July 30
## 7107 2016 July 30
## 7108 2016 July 30
## 7109 2016 July 30
## 7110 2016 July 30
## 7111 2016 July 30
## 7112 2016 July 30
## 7113 2016 July 30
## 7114 2016 July 30
## 7115 2016 July 30
## 7116 2016 July 30
## 7117 2016 July 30
## 7118 2016 July 30
## 7119 2016 July 30
## 7120 2016 July 30
## 7121 2016 July 30
## 7122 2016 July 30
## 7123 2016 July 30
## 7124 2016 July 30
## 7125 2016 July 30
## 7126 2016 July 30
## 7127 2016 July 30
## 7128 2016 July 30
## 7129 2016 July 30
## 7130 2016 July 30
## 7131 2016 July 30
## 7132 2016 July 30
## 7133 2016 July 30
## 7134 2016 July 30
## 7135 2016 July 30
## 7136 2016 July 30
## 7137 2016 July 30
## 7138 2016 July 30
## 7139 2016 July 30
## 7140 2016 July 30
## 7141 2016 July 30
## 7142 2016 July 30
## 7143 2016 July 30
## 7144 2016 July 30
## 7145 2016 July 30
## 7146 2016 July 30
## 7147 2016 July 30
## 7148 2016 July 30
## 7149 2016 July 31
## 7150 2016 July 31
## 7151 2016 July 31
## 7152 2016 July 31
## 7153 2016 July 31
## 7154 2016 July 31
## 7155 2016 July 31
## 7156 2016 July 31
## 7157 2016 July 31
## 7158 2016 July 31
## 7159 2016 July 31
## 7160 2016 July 31
## 7161 2016 July 31
## 7162 2016 July 31
## 7163 2016 July 31
## 7164 2016 July 31
## 7165 2016 July 31
## 7166 2016 July 31
## 7167 2016 July 31
## 7168 2016 July 31
## 7169 2016 July 31
## 7170 2016 July 31
## 7171 2016 July 31
## 7172 2016 July 31
## 7173 2016 July 31
## 7174 2016 July 31
## 7175 2016 July 31
## 7176 2016 July 31
## 7177 2016 July 31
## 7178 2016 July 31
## 7179 2016 July 31
## 7180 2016 July 31
## 7181 2016 July 31
## 7182 2016 July 31
## 7183 2016 July 31
## 7184 2016 July 31
## 7185 2016 July 31
## 7186 2016 July 31
## 7187 2016 July 31
## 7188 2016 July 31
## 7189 2016 July 31
## 7190 2016 July 31
## 7191 2016 July 31
## 7192 2016 July 31
## 7193 2016 July 31
## 7194 2016 July 31
## 7195 2016 July 31
## 7196 2016 July 31
## 7197 2016 July 31
## 7198 2016 July 31
## 7199 2016 July 31
## 7200 2016 July 31
## 7201 2016 July 31
## 7202 2016 July 31
## 7203 2016 July 31
## 7204 2016 July 31
## 7205 2016 July 31
## 7206 2016 July 31
## 7207 2016 July 31
## 7208 2016 July 31
## 7209 2016 July 31
## 7210 2016 July 31
## 7211 2016 July 31
## 7212 2016 July 31
## 7213 2016 July 31
## 7214 2016 July 31
## 7215 2016 July 31
## 7216 2016 July 31
## 7217 2016 July 31
## 7218 2016 July 31
## 7219 2016 July 31
## 7220 2016 July 31
## 7221 2016 July 31
## 7222 2016 July 31
## 7223 2016 July 31
## 7224 2016 July 31
## 7225 2016 July 31
## 7226 2016 July 31
## 7227 2016 July 31
## 7228 2016 July 31
## 7229 2016 July 31
## 7230 2016 July 31
## 7231 2016 July 31
## 7232 2016 July 31
## 7233 2016 July 31
## 7234 2016 July 31
## 7235 2016 July 31
## 7236 2016 July 31
## 7237 2016 July 31
## 7238 2016 July 31
## 7239 2016 July 31
## 7240 2016 July 31
## 7241 2016 July 31
## 7242 2016 July 31
## 7243 2016 July 31
## 7244 2016 July 31
## 7245 2016 July 31
## 7246 2016 July 31
## 7247 2016 July 31
## 7248 2016 July 31
## 7249 2016 July 31
## 7250 2016 July 31
## 7251 2016 July 31
## 7252 2016 July 31
## 7253 2016 July 31
## 7254 2016 July 31
## 7255 2016 July 31
## 7256 2016 July 31
## 7257 2016 July 31
## 7258 2016 July 32
## 7259 2016 July 32
## 7260 2016 July 32
## 7261 2016 July 32
## 7262 2016 July 32
## 7263 2016 July 32
## 7264 2016 July 32
## 7265 2016 July 32
## 7266 2016 July 32
## 7267 2016 July 32
## 7268 2016 July 32
## 7269 2016 July 32
## 7270 2016 July 32
## 7271 2016 August 32
## 7272 2016 August 32
## 7273 2016 August 32
## 7274 2016 August 32
## 7275 2016 August 32
## 7276 2016 August 32
## 7277 2016 August 32
## 7278 2016 August 32
## 7279 2016 August 32
## 7280 2016 August 32
## 7281 2016 August 32
## 7282 2016 August 32
## 7283 2016 August 32
## 7284 2016 August 32
## 7285 2016 August 32
## 7286 2016 August 32
## 7287 2016 August 32
## 7288 2016 August 32
## 7289 2016 August 32
## 7290 2016 August 32
## 7291 2016 August 32
## 7292 2016 August 32
## 7293 2016 August 32
## 7294 2016 August 32
## 7295 2016 August 32
## 7296 2016 August 32
## 7297 2016 August 32
## 7298 2016 August 32
## 7299 2016 August 32
## 7300 2016 August 32
## 7301 2016 August 32
## 7302 2016 August 32
## 7303 2016 August 32
## 7304 2016 August 32
## 7305 2016 August 32
## 7306 2016 August 32
## 7307 2016 August 32
## 7308 2016 August 32
## 7309 2016 August 32
## 7310 2016 August 32
## 7311 2016 August 32
## 7312 2016 August 32
## 7313 2016 August 32
## 7314 2016 August 32
## 7315 2016 August 32
## 7316 2016 August 32
## 7317 2016 August 32
## 7318 2016 August 32
## 7319 2016 August 32
## 7320 2016 August 32
## 7321 2016 August 32
## 7322 2016 August 32
## 7323 2016 August 32
## 7324 2016 August 32
## 7325 2016 August 32
## 7326 2016 August 32
## 7327 2016 August 32
## 7328 2016 August 32
## 7329 2016 August 32
## 7330 2016 August 32
## 7331 2016 August 32
## 7332 2016 August 32
## 7333 2016 August 32
## 7334 2016 August 32
## 7335 2016 August 32
## 7336 2016 August 32
## 7337 2016 August 32
## 7338 2016 August 32
## 7339 2016 August 32
## 7340 2016 August 32
## 7341 2016 August 32
## 7342 2016 August 32
## 7343 2016 August 32
## 7344 2016 August 32
## 7345 2016 August 32
## 7346 2016 August 32
## 7347 2016 August 32
## 7348 2016 August 32
## 7349 2016 August 32
## 7350 2016 August 32
## 7351 2016 August 32
## 7352 2016 August 32
## 7353 2016 August 32
## 7354 2016 August 32
## 7355 2016 August 32
## 7356 2016 August 32
## 7357 2016 August 32
## 7358 2016 August 32
## 7359 2016 August 32
## 7360 2016 August 32
## 7361 2016 August 32
## 7362 2016 August 32
## 7363 2016 August 32
## 7364 2016 August 32
## 7365 2016 August 32
## 7366 2016 August 32
## 7367 2016 August 32
## 7368 2016 August 32
## 7369 2016 August 32
## 7370 2016 August 32
## 7371 2016 August 32
## 7372 2016 August 32
## 7373 2016 August 32
## 7374 2016 August 32
## 7375 2016 August 32
## 7376 2016 August 32
## 7377 2016 August 32
## 7378 2016 August 32
## 7379 2016 August 32
## 7380 2016 August 32
## 7381 2016 August 32
## 7382 2016 August 32
## 7383 2016 August 32
## 7384 2016 August 32
## 7385 2016 August 32
## 7386 2016 August 32
## 7387 2016 August 32
## 7388 2016 August 32
## 7389 2016 August 33
## 7390 2016 August 33
## 7391 2016 August 33
## 7392 2016 August 33
## 7393 2016 August 33
## 7394 2016 August 33
## 7395 2016 August 33
## 7396 2016 August 33
## 7397 2016 August 33
## 7398 2016 August 33
## 7399 2016 August 33
## 7400 2016 August 33
## 7401 2016 August 33
## 7402 2016 August 33
## 7403 2016 August 33
## 7404 2016 August 33
## 7405 2016 August 33
## 7406 2016 August 33
## 7407 2016 August 33
## 7408 2016 August 33
## 7409 2016 August 33
## 7410 2016 August 33
## 7411 2016 August 33
## 7412 2016 August 33
## 7413 2016 August 33
## 7414 2016 August 33
## 7415 2016 August 33
## 7416 2016 August 33
## 7417 2016 August 33
## 7418 2016 August 33
## 7419 2016 August 33
## 7420 2016 August 33
## 7421 2016 August 33
## 7422 2016 August 33
## 7423 2016 August 33
## 7424 2016 August 33
## 7425 2016 August 33
## 7426 2016 August 33
## 7427 2016 August 33
## 7428 2016 August 33
## 7429 2016 August 33
## 7430 2016 August 33
## 7431 2016 August 33
## 7432 2016 August 33
## 7433 2016 August 33
## 7434 2016 August 33
## 7435 2016 August 33
## 7436 2016 August 33
## 7437 2016 August 33
## 7438 2016 August 33
## 7439 2016 August 33
## 7440 2016 August 33
## 7441 2016 August 33
## 7442 2016 August 33
## 7443 2016 August 33
## 7444 2016 August 33
## 7445 2016 August 33
## 7446 2016 August 33
## 7447 2016 August 33
## 7448 2016 August 33
## 7449 2016 August 33
## 7450 2016 August 33
## 7451 2016 August 33
## 7452 2016 August 33
## 7453 2016 August 33
## 7454 2016 August 33
## 7455 2016 August 33
## 7456 2016 August 33
## 7457 2016 August 33
## 7458 2016 August 33
## 7459 2016 August 33
## 7460 2016 August 33
## 7461 2016 August 33
## 7462 2016 August 33
## 7463 2016 August 33
## 7464 2016 August 33
## 7465 2016 August 33
## 7466 2016 August 33
## 7467 2016 August 33
## 7468 2016 August 33
## 7469 2016 August 33
## 7470 2016 August 33
## 7471 2016 August 33
## 7472 2016 August 33
## 7473 2016 August 33
## 7474 2016 August 33
## 7475 2016 August 33
## 7476 2016 August 33
## 7477 2016 August 33
## 7478 2016 August 33
## 7479 2016 August 33
## 7480 2016 August 33
## 7481 2016 August 33
## 7482 2016 August 33
## 7483 2016 August 33
## 7484 2016 August 33
## 7485 2016 August 33
## 7486 2016 August 33
## 7487 2016 August 33
## 7488 2016 August 33
## 7489 2016 August 33
## 7490 2016 August 33
## 7491 2016 August 33
## 7492 2016 August 33
## 7493 2016 August 33
## 7494 2016 August 33
## 7495 2016 August 33
## 7496 2016 August 33
## 7497 2016 August 33
## 7498 2016 August 33
## 7499 2016 August 33
## 7500 2016 August 33
## 7501 2016 August 33
## 7502 2016 August 33
## 7503 2016 August 33
## 7504 2016 August 33
## 7505 2016 August 33
## 7506 2016 August 33
## 7507 2016 August 33
## 7508 2016 August 33
## 7509 2016 August 33
## 7510 2016 August 33
## 7511 2016 August 33
## 7512 2016 August 33
## 7513 2016 August 33
## 7514 2016 August 33
## 7515 2016 August 33
## 7516 2016 August 33
## 7517 2016 August 33
## 7518 2016 August 33
## 7519 2016 August 33
## 7520 2016 August 33
## 7521 2016 August 33
## 7522 2016 August 33
## 7523 2016 August 33
## 7524 2016 August 33
## 7525 2016 August 33
## 7526 2016 August 33
## 7527 2016 August 33
## 7528 2016 August 33
## 7529 2016 August 33
## 7530 2016 August 33
## 7531 2016 August 33
## 7532 2016 August 33
## 7533 2016 August 33
## 7534 2016 August 33
## 7535 2016 August 33
## 7536 2016 August 33
## 7537 2016 August 33
## 7538 2016 August 33
## 7539 2016 August 33
## 7540 2016 August 33
## 7541 2016 August 33
## 7542 2016 August 33
## 7543 2016 August 33
## 7544 2016 August 33
## 7545 2016 August 33
## 7546 2016 August 34
## 7547 2016 August 34
## 7548 2016 August 34
## 7549 2016 August 34
## 7550 2016 August 34
## 7551 2016 August 34
## 7552 2016 August 34
## 7553 2016 August 34
## 7554 2016 August 34
## 7555 2016 August 34
## 7556 2016 August 34
## 7557 2016 August 34
## 7558 2016 August 34
## 7559 2016 August 34
## 7560 2016 August 34
## 7561 2016 August 34
## 7562 2016 August 34
## 7563 2016 August 34
## 7564 2016 August 34
## 7565 2016 August 34
## 7566 2016 August 34
## 7567 2016 August 34
## 7568 2016 August 34
## 7569 2016 August 34
## 7570 2016 August 34
## 7571 2016 August 34
## 7572 2016 August 34
## 7573 2016 August 34
## 7574 2016 August 34
## 7575 2016 August 34
## 7576 2016 August 34
## 7577 2016 August 34
## 7578 2016 August 34
## 7579 2016 August 34
## 7580 2016 August 34
## 7581 2016 August 34
## 7582 2016 August 34
## 7583 2016 August 34
## 7584 2016 August 34
## 7585 2016 August 34
## 7586 2016 August 34
## 7587 2016 August 34
## 7588 2016 August 34
## 7589 2016 August 34
## 7590 2016 August 34
## 7591 2016 August 34
## 7592 2016 August 34
## 7593 2016 August 34
## 7594 2016 August 34
## 7595 2016 August 34
## 7596 2016 August 34
## 7597 2016 August 34
## 7598 2016 August 34
## 7599 2016 August 34
## 7600 2016 August 34
## 7601 2016 August 34
## 7602 2016 August 34
## 7603 2016 August 34
## 7604 2016 August 34
## 7605 2016 August 34
## 7606 2016 August 34
## 7607 2016 August 34
## 7608 2016 August 34
## 7609 2016 August 34
## 7610 2016 August 34
## 7611 2016 August 34
## 7612 2016 August 34
## 7613 2016 August 34
## 7614 2016 August 34
## 7615 2016 August 34
## 7616 2016 August 34
## 7617 2016 August 34
## 7618 2016 August 34
## 7619 2016 August 34
## 7620 2016 August 34
## 7621 2016 August 34
## 7622 2016 August 34
## 7623 2016 August 34
## 7624 2016 August 34
## 7625 2016 August 34
## 7626 2016 August 34
## 7627 2016 August 34
## 7628 2016 August 34
## 7629 2016 August 34
## 7630 2016 August 34
## 7631 2016 August 34
## 7632 2016 August 34
## 7633 2016 August 34
## 7634 2016 August 34
## 7635 2016 August 34
## 7636 2016 August 34
## 7637 2016 August 34
## 7638 2016 August 34
## 7639 2016 August 34
## 7640 2016 August 34
## 7641 2016 August 34
## 7642 2016 August 34
## 7643 2016 August 34
## 7644 2016 August 34
## 7645 2016 August 34
## 7646 2016 August 34
## 7647 2016 August 34
## 7648 2016 August 34
## 7649 2016 August 34
## 7650 2016 August 34
## 7651 2016 August 34
## 7652 2016 August 34
## 7653 2016 August 34
## 7654 2016 August 34
## 7655 2016 August 34
## 7656 2016 August 34
## 7657 2016 August 34
## 7658 2016 August 34
## 7659 2016 August 34
## 7660 2016 August 34
## 7661 2016 August 34
## 7662 2016 August 34
## 7663 2016 August 34
## 7664 2016 August 34
## 7665 2016 August 34
## 7666 2016 August 34
## 7667 2016 August 34
## 7668 2016 August 34
## 7669 2016 August 34
## 7670 2016 August 34
## 7671 2016 August 34
## 7672 2016 August 34
## 7673 2016 August 34
## 7674 2016 August 34
## 7675 2016 August 34
## 7676 2016 August 34
## 7677 2016 August 34
## 7678 2016 August 34
## 7679 2016 August 34
## 7680 2016 August 34
## 7681 2016 August 34
## 7682 2016 August 34
## 7683 2016 August 34
## 7684 2016 August 34
## 7685 2016 August 34
## 7686 2016 August 34
## 7687 2016 August 34
## 7688 2016 August 34
## 7689 2016 August 34
## 7690 2016 August 34
## 7691 2016 August 34
## 7692 2016 August 34
## 7693 2016 August 34
## 7694 2016 August 34
## 7695 2016 August 34
## 7696 2016 August 34
## 7697 2016 August 35
## 7698 2016 August 35
## 7699 2016 August 35
## 7700 2016 August 35
## 7701 2016 August 35
## 7702 2016 August 35
## 7703 2016 August 35
## 7704 2016 August 35
## 7705 2016 August 35
## 7706 2016 August 35
## 7707 2016 August 35
## 7708 2016 August 35
## 7709 2016 August 35
## 7710 2016 August 35
## 7711 2016 August 35
## 7712 2016 August 35
## 7713 2016 August 35
## 7714 2016 August 35
## 7715 2016 August 35
## 7716 2016 August 35
## 7717 2016 August 35
## 7718 2016 August 35
## 7719 2016 August 35
## 7720 2016 August 35
## 7721 2016 August 35
## 7722 2016 August 35
## 7723 2016 August 35
## 7724 2016 August 35
## 7725 2016 August 35
## 7726 2016 August 35
## 7727 2016 August 35
## 7728 2016 August 35
## 7729 2016 August 35
## 7730 2016 August 35
## 7731 2016 August 35
## 7732 2016 August 35
## 7733 2016 August 35
## 7734 2016 August 35
## 7735 2016 August 35
## 7736 2016 August 35
## 7737 2016 August 35
## 7738 2016 August 35
## 7739 2016 August 35
## 7740 2016 August 35
## 7741 2016 August 35
## 7742 2016 August 35
## 7743 2016 August 35
## 7744 2016 August 35
## 7745 2016 August 35
## 7746 2016 August 35
## 7747 2016 August 35
## 7748 2016 August 35
## 7749 2016 August 35
## 7750 2016 August 35
## 7751 2016 August 35
## 7752 2016 August 35
## 7753 2016 August 35
## 7754 2016 August 35
## 7755 2016 August 35
## 7756 2016 August 35
## 7757 2016 August 35
## 7758 2016 August 35
## 7759 2016 August 35
## 7760 2016 August 35
## 7761 2016 August 35
## 7762 2016 August 35
## 7763 2016 August 35
## 7764 2016 August 35
## 7765 2016 August 35
## 7766 2016 August 35
## 7767 2016 August 35
## 7768 2016 August 35
## 7769 2016 August 35
## 7770 2016 August 35
## 7771 2016 August 35
## 7772 2016 August 35
## 7773 2016 August 35
## 7774 2016 August 35
## 7775 2016 August 35
## 7776 2016 August 35
## 7777 2016 August 35
## 7778 2016 August 35
## 7779 2016 August 35
## 7780 2016 August 35
## 7781 2016 August 35
## 7782 2016 August 35
## 7783 2016 August 35
## 7784 2016 August 35
## 7785 2016 August 35
## 7786 2016 August 35
## 7787 2016 August 35
## 7788 2016 August 35
## 7789 2016 August 35
## 7790 2016 August 35
## 7791 2016 August 35
## 7792 2016 August 35
## 7793 2016 August 35
## 7794 2016 August 35
## 7795 2016 August 35
## 7796 2016 August 35
## 7797 2016 August 35
## 7798 2016 August 35
## 7799 2016 August 35
## 7800 2016 August 35
## 7801 2016 August 35
## 7802 2016 August 35
## 7803 2016 August 35
## 7804 2016 August 35
## 7805 2016 August 35
## 7806 2016 August 35
## 7807 2016 August 35
## 7808 2016 August 35
## 7809 2016 August 35
## 7810 2016 August 35
## 7811 2016 August 35
## 7812 2016 August 35
## 7813 2016 August 36
## 7814 2016 August 36
## 7815 2016 August 36
## 7816 2016 August 36
## 7817 2016 August 36
## 7818 2016 August 36
## 7819 2016 August 36
## 7820 2016 August 36
## 7821 2016 August 36
## 7822 2016 August 36
## 7823 2016 August 36
## 7824 2016 August 36
## 7825 2016 August 36
## 7826 2016 August 36
## 7827 2016 August 36
## 7828 2016 August 36
## 7829 2016 August 36
## 7830 2016 August 36
## 7831 2016 August 36
## 7832 2016 August 36
## 7833 2016 August 36
## 7834 2016 August 36
## 7835 2016 August 36
## 7836 2016 August 36
## 7837 2016 August 36
## 7838 2016 August 36
## 7839 2016 August 36
## 7840 2016 August 36
## 7841 2016 August 36
## 7842 2016 August 36
## 7843 2016 August 36
## 7844 2016 August 36
## 7845 2016 August 36
## 7846 2016 August 36
## 7847 2016 August 36
## 7848 2016 August 36
## 7849 2016 August 36
## 7850 2016 August 36
## 7851 2016 August 36
## 7852 2016 August 36
## 7853 2016 August 36
## 7854 2016 August 36
## 7855 2016 August 36
## 7856 2016 August 36
## 7857 2016 August 36
## 7858 2016 August 36
## 7859 2016 August 36
## 7860 2016 August 36
## 7861 2016 August 36
## 7862 2016 August 36
## 7863 2016 August 36
## 7864 2016 August 36
## 7865 2016 August 36
## 7866 2016 August 36
## 7867 2016 August 36
## 7868 2016 August 36
## 7869 2016 August 36
## 7870 2016 August 36
## 7871 2016 August 36
## 7872 2016 August 36
## 7873 2016 August 36
## 7874 2016 August 36
## 7875 2016 August 36
## 7876 2016 August 36
## 7877 2016 August 36
## 7878 2016 August 36
## 7879 2016 August 36
## 7880 2016 September 36
## 7881 2016 September 36
## 7882 2016 September 36
## 7883 2016 September 36
## 7884 2016 September 36
## 7885 2016 September 36
## 7886 2016 September 36
## 7887 2016 September 36
## 7888 2016 September 36
## 7889 2016 September 36
## 7890 2016 September 36
## 7891 2016 September 36
## 7892 2016 September 36
## 7893 2016 September 36
## 7894 2016 September 36
## 7895 2016 September 36
## 7896 2016 September 36
## 7897 2016 September 36
## 7898 2016 September 36
## 7899 2016 September 36
## 7900 2016 September 36
## 7901 2016 September 36
## 7902 2016 September 36
## 7903 2016 September 36
## 7904 2016 September 36
## 7905 2016 September 36
## 7906 2016 September 36
## 7907 2016 September 36
## 7908 2016 September 36
## 7909 2016 September 36
## 7910 2016 September 36
## 7911 2016 September 36
## 7912 2016 September 36
## 7913 2016 September 36
## 7914 2016 September 36
## 7915 2016 September 36
## 7916 2016 September 36
## 7917 2016 September 36
## 7918 2016 September 36
## 7919 2016 September 36
## 7920 2016 September 36
## 7921 2016 September 36
## 7922 2016 September 36
## 7923 2016 September 36
## 7924 2016 September 36
## 7925 2016 September 36
## 7926 2016 September 36
## 7927 2016 September 36
## 7928 2016 September 36
## 7929 2016 September 36
## 7930 2016 September 36
## 7931 2016 September 36
## 7932 2016 September 36
## 7933 2016 September 36
## 7934 2016 September 36
## 7935 2016 September 36
## 7936 2016 September 36
## 7937 2016 September 36
## 7938 2016 September 36
## 7939 2016 September 36
## 7940 2016 September 36
## 7941 2016 September 36
## 7942 2016 September 36
## 7943 2016 September 36
## 7944 2016 September 36
## 7945 2016 September 36
## 7946 2016 September 36
## 7947 2016 September 37
## 7948 2016 September 37
## 7949 2016 September 37
## 7950 2016 September 37
## 7951 2016 September 37
## 7952 2016 September 37
## 7953 2016 September 37
## 7954 2016 September 37
## 7955 2016 September 37
## 7956 2016 September 37
## 7957 2016 September 37
## 7958 2016 September 37
## 7959 2016 September 37
## 7960 2016 September 37
## 7961 2016 September 37
## 7962 2016 September 37
## 7963 2016 September 37
## 7964 2016 September 37
## 7965 2016 September 37
## 7966 2016 September 37
## 7967 2016 September 37
## 7968 2016 September 37
## 7969 2016 September 37
## 7970 2016 September 37
## 7971 2016 September 37
## 7972 2016 September 37
## 7973 2016 September 37
## 7974 2016 September 37
## 7975 2016 September 37
## 7976 2016 September 37
## 7977 2016 September 37
## 7978 2016 September 37
## 7979 2016 September 37
## 7980 2016 September 37
## 7981 2016 September 37
## 7982 2016 September 37
## 7983 2016 September 37
## 7984 2016 September 37
## 7985 2016 September 37
## 7986 2016 September 37
## 7987 2016 September 37
## 7988 2016 September 37
## 7989 2016 September 37
## 7990 2016 September 37
## 7991 2016 September 37
## 7992 2016 September 37
## 7993 2016 September 37
## 7994 2016 September 37
## 7995 2016 September 37
## 7996 2016 September 37
## 7997 2016 September 37
## 7998 2016 September 37
## 7999 2016 September 37
## 8000 2016 September 37
## 8001 2016 September 37
## 8002 2016 September 37
## 8003 2016 September 37
## 8004 2016 September 37
## 8005 2016 September 37
## 8006 2016 September 37
## 8007 2016 September 37
## 8008 2016 September 37
## 8009 2016 September 37
## 8010 2016 September 37
## 8011 2016 September 37
## 8012 2016 September 37
## 8013 2016 September 37
## 8014 2016 September 37
## 8015 2016 September 37
## 8016 2016 September 37
## 8017 2016 September 37
## 8018 2016 September 37
## 8019 2016 September 37
## 8020 2016 September 37
## 8021 2016 September 37
## 8022 2016 September 37
## 8023 2016 September 37
## 8024 2016 September 37
## 8025 2016 September 37
## 8026 2016 September 37
## 8027 2016 September 37
## 8028 2016 September 37
## 8029 2016 September 37
## 8030 2016 September 37
## 8031 2016 September 37
## 8032 2016 September 37
## 8033 2016 September 37
## 8034 2016 September 37
## 8035 2016 September 37
## 8036 2016 September 37
## 8037 2016 September 37
## 8038 2016 September 37
## 8039 2016 September 37
## 8040 2016 September 37
## 8041 2016 September 37
## 8042 2016 September 37
## 8043 2016 September 37
## 8044 2016 September 37
## 8045 2016 September 37
## 8046 2016 September 37
## 8047 2016 September 37
## 8048 2016 September 37
## 8049 2016 September 37
## 8050 2016 September 37
## 8051 2016 September 37
## 8052 2016 September 37
## 8053 2016 September 37
## 8054 2016 September 37
## 8055 2016 September 37
## 8056 2016 September 37
## 8057 2016 September 37
## 8058 2016 September 37
## 8059 2016 September 37
## 8060 2016 September 37
## 8061 2016 September 37
## 8062 2016 September 37
## 8063 2016 September 37
## 8064 2016 September 37
## 8065 2016 September 37
## 8066 2016 September 37
## 8067 2016 September 37
## 8068 2016 September 37
## 8069 2016 September 37
## 8070 2016 September 37
## 8071 2016 September 37
## 8072 2016 September 37
## 8073 2016 September 37
## 8074 2016 September 37
## 8075 2016 September 37
## 8076 2016 September 37
## 8077 2016 September 37
## 8078 2016 September 37
## 8079 2016 September 37
## 8080 2016 September 37
## 8081 2016 September 37
## 8082 2016 September 37
## 8083 2016 September 37
## 8084 2016 September 37
## 8085 2016 September 37
## 8086 2016 September 37
## 8087 2016 September 37
## 8088 2016 September 38
## 8089 2016 September 38
## 8090 2016 September 38
## 8091 2016 September 38
## 8092 2016 September 38
## 8093 2016 September 38
## 8094 2016 September 38
## 8095 2016 September 38
## 8096 2016 September 38
## 8097 2016 September 38
## 8098 2016 September 38
## 8099 2016 September 38
## 8100 2016 September 38
## 8101 2016 September 38
## 8102 2016 September 38
## 8103 2016 September 38
## 8104 2016 September 38
## 8105 2016 September 38
## 8106 2016 September 38
## 8107 2016 September 38
## 8108 2016 September 38
## 8109 2016 September 38
## 8110 2016 September 38
## 8111 2016 September 38
## 8112 2016 September 38
## 8113 2016 September 38
## 8114 2016 September 38
## 8115 2016 September 38
## 8116 2016 September 38
## 8117 2016 September 38
## 8118 2016 September 38
## 8119 2016 September 38
## 8120 2016 September 38
## 8121 2016 September 38
## 8122 2016 September 38
## 8123 2016 September 38
## 8124 2016 September 38
## 8125 2016 September 38
## 8126 2016 September 38
## 8127 2016 September 38
## 8128 2016 September 38
## 8129 2016 September 38
## 8130 2016 September 38
## 8131 2016 September 38
## 8132 2016 September 38
## 8133 2016 September 38
## 8134 2016 September 38
## 8135 2016 September 38
## 8136 2016 September 38
## 8137 2016 September 38
## 8138 2016 September 38
## 8139 2016 September 38
## 8140 2016 September 38
## 8141 2016 September 38
## 8142 2016 September 38
## 8143 2016 September 38
## 8144 2016 September 38
## 8145 2016 September 38
## 8146 2016 September 38
## 8147 2016 September 38
## 8148 2016 September 38
## 8149 2016 September 38
## 8150 2016 September 38
## 8151 2016 September 38
## 8152 2016 September 38
## 8153 2016 September 38
## 8154 2016 September 38
## 8155 2016 September 38
## 8156 2016 September 38
## 8157 2016 September 38
## 8158 2016 September 38
## 8159 2016 September 38
## 8160 2016 September 38
## 8161 2016 September 38
## 8162 2016 September 38
## 8163 2016 September 38
## 8164 2016 September 38
## 8165 2016 September 38
## 8166 2016 September 38
## 8167 2016 September 38
## 8168 2016 September 38
## 8169 2016 September 38
## 8170 2016 September 38
## 8171 2016 September 38
## 8172 2016 September 38
## 8173 2016 September 38
## 8174 2016 September 38
## 8175 2016 September 38
## 8176 2016 September 38
## 8177 2016 September 38
## 8178 2016 September 38
## 8179 2016 September 38
## 8180 2016 September 38
## 8181 2016 September 38
## 8182 2016 September 38
## 8183 2016 September 38
## 8184 2016 September 38
## 8185 2016 September 38
## 8186 2016 September 38
## 8187 2016 September 38
## 8188 2016 September 38
## 8189 2016 September 38
## 8190 2016 September 38
## 8191 2016 September 38
## 8192 2016 September 38
## 8193 2016 September 38
## 8194 2016 September 38
## 8195 2016 September 38
## 8196 2016 September 38
## 8197 2016 September 38
## 8198 2016 September 38
## 8199 2016 September 38
## 8200 2016 September 38
## 8201 2016 September 38
## 8202 2016 September 38
## 8203 2016 September 38
## 8204 2016 September 38
## 8205 2016 September 38
## 8206 2016 September 38
## 8207 2016 September 38
## 8208 2016 September 38
## 8209 2016 September 38
## 8210 2016 September 39
## 8211 2016 September 39
## 8212 2016 September 39
## 8213 2016 September 39
## 8214 2016 September 39
## 8215 2016 September 39
## 8216 2016 September 39
## 8217 2016 September 39
## 8218 2016 September 39
## 8219 2016 September 39
## 8220 2016 September 39
## 8221 2016 September 39
## 8222 2016 September 39
## 8223 2016 September 39
## 8224 2016 September 39
## 8225 2016 September 39
## 8226 2016 September 39
## 8227 2016 September 39
## 8228 2016 September 39
## 8229 2016 September 39
## 8230 2016 September 39
## 8231 2016 September 39
## 8232 2016 September 39
## 8233 2016 September 39
## 8234 2016 September 39
## 8235 2016 September 39
## 8236 2016 September 39
## 8237 2016 September 39
## 8238 2016 September 39
## 8239 2016 September 39
## 8240 2016 September 39
## 8241 2016 September 39
## 8242 2016 September 39
## 8243 2016 September 39
## 8244 2016 September 39
## 8245 2016 September 39
## 8246 2016 September 39
## 8247 2016 September 39
## 8248 2016 September 39
## 8249 2016 September 39
## 8250 2016 September 39
## 8251 2016 September 39
## 8252 2016 September 39
## 8253 2016 September 39
## 8254 2016 September 39
## 8255 2016 September 39
## 8256 2016 September 39
## 8257 2016 September 39
## 8258 2016 September 39
## 8259 2016 September 39
## 8260 2016 September 39
## 8261 2016 September 39
## 8262 2016 September 39
## 8263 2016 September 39
## 8264 2016 September 39
## 8265 2016 September 39
## 8266 2016 September 39
## 8267 2016 September 39
## 8268 2016 September 39
## 8269 2016 September 39
## 8270 2016 September 39
## 8271 2016 September 39
## 8272 2016 September 39
## 8273 2016 September 39
## 8274 2016 September 39
## 8275 2016 September 39
## 8276 2016 September 39
## 8277 2016 September 39
## 8278 2016 September 39
## 8279 2016 September 39
## 8280 2016 September 39
## 8281 2016 September 39
## 8282 2016 September 39
## 8283 2016 September 39
## 8284 2016 September 39
## 8285 2016 September 39
## 8286 2016 September 39
## 8287 2016 September 39
## 8288 2016 September 39
## 8289 2016 September 39
## 8290 2016 September 39
## 8291 2016 September 39
## 8292 2016 September 39
## 8293 2016 September 39
## 8294 2016 September 39
## 8295 2016 September 39
## 8296 2016 September 39
## 8297 2016 September 39
## 8298 2016 September 39
## 8299 2016 September 39
## 8300 2016 September 39
## 8301 2016 September 39
## 8302 2016 September 39
## 8303 2016 September 39
## 8304 2016 September 39
## 8305 2016 September 39
## 8306 2016 September 39
## 8307 2016 September 39
## 8308 2016 September 39
## 8309 2016 September 39
## 8310 2016 September 39
## 8311 2016 September 39
## 8312 2016 September 39
## 8313 2016 September 39
## 8314 2016 September 39
## 8315 2016 September 39
## 8316 2016 September 39
## 8317 2016 September 39
## 8318 2016 September 39
## 8319 2016 September 39
## 8320 2016 September 39
## 8321 2016 September 39
## 8322 2016 September 39
## 8323 2016 September 39
## 8324 2016 September 39
## 8325 2016 September 39
## 8326 2016 September 39
## 8327 2016 September 39
## 8328 2016 September 39
## 8329 2016 September 39
## 8330 2016 September 39
## 8331 2016 September 39
## 8332 2016 September 39
## 8333 2016 September 39
## 8334 2016 September 39
## 8335 2016 September 39
## 8336 2016 September 39
## 8337 2016 September 39
## 8338 2016 September 39
## 8339 2016 September 39
## 8340 2016 September 39
## 8341 2016 September 39
## 8342 2016 September 39
## 8343 2016 September 39
## 8344 2016 September 39
## 8345 2016 September 39
## 8346 2016 September 39
## 8347 2016 September 39
## 8348 2016 September 39
## 8349 2016 September 39
## 8350 2016 September 39
## 8351 2016 September 39
## 8352 2016 September 39
## 8353 2016 September 39
## 8354 2016 September 39
## 8355 2016 September 39
## 8356 2016 September 39
## 8357 2016 September 39
## 8358 2016 September 39
## 8359 2016 September 39
## 8360 2016 September 39
## 8361 2016 September 39
## 8362 2016 September 39
## 8363 2016 September 39
## 8364 2016 September 39
## 8365 2016 September 39
## 8366 2016 September 39
## 8367 2016 September 39
## 8368 2016 September 39
## 8369 2016 September 39
## 8370 2016 September 39
## 8371 2016 September 39
## 8372 2016 September 39
## 8373 2016 September 39
## 8374 2016 September 39
## 8375 2016 September 39
## 8376 2016 September 39
## 8377 2016 September 39
## 8378 2016 September 39
## 8379 2016 September 40
## 8380 2016 September 40
## 8381 2016 September 40
## 8382 2016 September 40
## 8383 2016 September 40
## 8384 2016 September 40
## 8385 2016 September 40
## 8386 2016 September 40
## 8387 2016 September 40
## 8388 2016 September 40
## 8389 2016 September 40
## 8390 2016 September 40
## 8391 2016 September 40
## 8392 2016 September 40
## 8393 2016 September 40
## 8394 2016 September 40
## 8395 2016 September 40
## 8396 2016 September 40
## 8397 2016 September 40
## 8398 2016 September 40
## 8399 2016 September 40
## 8400 2016 September 40
## 8401 2016 September 40
## 8402 2016 September 40
## 8403 2016 September 40
## 8404 2016 September 40
## 8405 2016 September 40
## 8406 2016 September 40
## 8407 2016 September 40
## 8408 2016 September 40
## 8409 2016 September 40
## 8410 2016 September 40
## 8411 2016 September 40
## 8412 2016 September 40
## 8413 2016 September 40
## 8414 2016 September 40
## 8415 2016 September 40
## 8416 2016 September 40
## 8417 2016 September 40
## 8418 2016 September 40
## 8419 2016 September 40
## 8420 2016 September 40
## 8421 2016 September 40
## 8422 2016 September 40
## 8423 2016 September 40
## 8424 2016 September 40
## 8425 2016 September 40
## 8426 2016 September 40
## 8427 2016 September 40
## 8428 2016 September 40
## 8429 2016 September 40
## 8430 2016 September 40
## 8431 2016 September 40
## 8432 2016 September 40
## 8433 2016 September 40
## 8434 2016 September 40
## 8435 2016 September 40
## 8436 2016 September 40
## 8437 2016 September 40
## 8438 2016 September 40
## 8439 2016 September 40
## 8440 2016 September 40
## 8441 2016 September 40
## 8442 2016 September 40
## 8443 2016 September 40
## 8444 2016 September 40
## 8445 2016 September 40
## 8446 2016 September 40
## 8447 2016 September 40
## 8448 2016 September 40
## 8449 2016 September 40
## 8450 2016 September 40
## 8451 2016 September 40
## 8452 2016 September 40
## 8453 2016 September 40
## 8454 2016 September 40
## 8455 2016 September 40
## 8456 2016 September 40
## 8457 2016 September 40
## 8458 2016 September 40
## 8459 2016 September 40
## 8460 2016 September 40
## 8461 2016 September 40
## 8462 2016 September 40
## 8463 2016 September 40
## 8464 2016 September 40
## 8465 2016 September 40
## 8466 2016 September 40
## 8467 2016 September 40
## 8468 2016 September 40
## 8469 2016 September 40
## 8470 2016 September 40
## 8471 2016 September 40
## 8472 2016 September 40
## 8473 2016 September 40
## 8474 2016 September 40
## 8475 2016 September 40
## 8476 2016 September 40
## 8477 2016 September 40
## 8478 2016 September 40
## 8479 2016 September 40
## 8480 2016 September 40
## 8481 2016 September 40
## 8482 2016 September 40
## 8483 2016 October 40
## 8484 2016 October 40
## 8485 2016 October 40
## 8486 2016 October 40
## 8487 2016 October 40
## 8488 2016 October 40
## 8489 2016 October 40
## 8490 2016 October 40
## 8491 2016 October 40
## 8492 2016 October 40
## 8493 2016 October 40
## 8494 2016 October 40
## 8495 2016 October 40
## 8496 2016 October 40
## 8497 2016 October 40
## 8498 2016 October 40
## 8499 2016 October 40
## 8500 2016 October 40
## 8501 2016 October 40
## 8502 2016 October 40
## 8503 2016 October 40
## 8504 2016 October 40
## 8505 2016 October 40
## 8506 2016 October 40
## 8507 2016 October 40
## 8508 2016 October 41
## 8509 2016 October 41
## 8510 2016 October 41
## 8511 2016 October 41
## 8512 2016 October 41
## 8513 2016 October 41
## 8514 2016 October 41
## 8515 2016 October 41
## 8516 2016 October 41
## 8517 2016 October 41
## 8518 2016 October 41
## 8519 2016 October 41
## 8520 2016 October 41
## 8521 2016 October 41
## 8522 2016 October 41
## 8523 2016 October 41
## 8524 2016 October 41
## 8525 2016 October 41
## 8526 2016 October 41
## 8527 2016 October 41
## 8528 2016 October 41
## 8529 2016 October 41
## 8530 2016 October 41
## 8531 2016 October 41
## 8532 2016 October 41
## 8533 2016 October 41
## 8534 2016 October 41
## 8535 2016 October 41
## 8536 2016 October 41
## 8537 2016 October 41
## 8538 2016 October 41
## 8539 2016 October 41
## 8540 2016 October 41
## 8541 2016 October 41
## 8542 2016 October 41
## 8543 2016 October 41
## 8544 2016 October 41
## 8545 2016 October 41
## 8546 2016 October 41
## 8547 2016 October 41
## 8548 2016 October 41
## 8549 2016 October 41
## 8550 2016 October 41
## 8551 2016 October 41
## 8552 2016 October 41
## 8553 2016 October 41
## 8554 2016 October 41
## 8555 2016 October 41
## 8556 2016 October 41
## 8557 2016 October 41
## 8558 2016 October 41
## 8559 2016 October 41
## 8560 2016 October 41
## 8561 2016 October 41
## 8562 2016 October 41
## 8563 2016 October 41
## 8564 2016 October 41
## 8565 2016 October 41
## 8566 2016 October 41
## 8567 2016 October 41
## 8568 2016 October 41
## 8569 2016 October 41
## 8570 2016 October 41
## 8571 2016 October 41
## 8572 2016 October 41
## 8573 2016 October 41
## 8574 2016 October 41
## 8575 2016 October 41
## 8576 2016 October 41
## 8577 2016 October 41
## 8578 2016 October 41
## 8579 2016 October 41
## 8580 2016 October 41
## 8581 2016 October 41
## 8582 2016 October 41
## 8583 2016 October 41
## 8584 2016 October 41
## 8585 2016 October 41
## 8586 2016 October 41
## 8587 2016 October 41
## 8588 2016 October 41
## 8589 2016 October 41
## 8590 2016 October 41
## 8591 2016 October 41
## 8592 2016 October 41
## 8593 2016 October 41
## 8594 2016 October 41
## 8595 2016 October 41
## 8596 2016 October 41
## 8597 2016 October 41
## 8598 2016 October 41
## 8599 2016 October 41
## 8600 2016 October 41
## 8601 2016 October 41
## 8602 2016 October 41
## 8603 2016 October 41
## 8604 2016 October 41
## 8605 2016 October 41
## 8606 2016 October 41
## 8607 2016 October 41
## 8608 2016 October 41
## 8609 2016 October 41
## 8610 2016 October 41
## 8611 2016 October 41
## 8612 2016 October 41
## 8613 2016 October 41
## 8614 2016 October 41
## 8615 2016 October 41
## 8616 2016 October 41
## 8617 2016 October 41
## 8618 2016 October 41
## 8619 2016 October 41
## 8620 2016 October 41
## 8621 2016 October 41
## 8622 2016 October 41
## 8623 2016 October 41
## 8624 2016 October 41
## 8625 2016 October 41
## 8626 2016 October 41
## 8627 2016 October 41
## 8628 2016 October 41
## 8629 2016 October 41
## 8630 2016 October 41
## 8631 2016 October 41
## 8632 2016 October 41
## 8633 2016 October 41
## 8634 2016 October 41
## 8635 2016 October 41
## 8636 2016 October 41
## 8637 2016 October 41
## 8638 2016 October 41
## 8639 2016 October 41
## 8640 2016 October 41
## 8641 2016 October 41
## 8642 2016 October 41
## 8643 2016 October 41
## 8644 2016 October 41
## 8645 2016 October 41
## 8646 2016 October 41
## 8647 2016 October 41
## 8648 2016 October 41
## 8649 2016 October 41
## 8650 2016 October 41
## 8651 2016 October 41
## 8652 2016 October 41
## 8653 2016 October 41
## 8654 2016 October 41
## 8655 2016 October 41
## 8656 2016 October 41
## 8657 2016 October 42
## 8658 2016 October 42
## 8659 2016 October 42
## 8660 2016 October 42
## 8661 2016 October 42
## 8662 2016 October 42
## 8663 2016 October 42
## 8664 2016 October 42
## 8665 2016 October 42
## 8666 2016 October 42
## 8667 2016 October 42
## 8668 2016 October 42
## 8669 2016 October 42
## 8670 2016 October 42
## 8671 2016 October 42
## 8672 2016 October 42
## 8673 2016 October 42
## 8674 2016 October 42
## 8675 2016 October 42
## 8676 2016 October 42
## 8677 2016 October 42
## 8678 2016 October 42
## 8679 2016 October 42
## 8680 2016 October 42
## 8681 2016 October 42
## 8682 2016 October 42
## 8683 2016 October 42
## 8684 2016 October 42
## 8685 2016 October 42
## 8686 2016 October 42
## 8687 2016 October 42
## 8688 2016 October 42
## 8689 2016 October 42
## 8690 2016 October 42
## 8691 2016 October 42
## 8692 2016 October 42
## 8693 2016 October 42
## 8694 2016 October 42
## 8695 2016 October 42
## 8696 2016 October 42
## 8697 2016 October 42
## 8698 2016 October 42
## 8699 2016 October 42
## 8700 2016 October 42
## 8701 2016 October 42
## 8702 2016 October 42
## 8703 2016 October 42
## 8704 2016 October 42
## 8705 2016 October 42
## 8706 2016 October 42
## 8707 2016 October 42
## 8708 2016 October 42
## 8709 2016 October 42
## 8710 2016 October 42
## 8711 2016 October 42
## 8712 2016 October 42
## 8713 2016 October 42
## 8714 2016 October 42
## 8715 2016 October 42
## 8716 2016 October 42
## 8717 2016 October 42
## 8718 2016 October 42
## 8719 2016 October 42
## 8720 2016 October 42
## 8721 2016 October 42
## 8722 2016 October 42
## 8723 2016 October 42
## 8724 2016 October 42
## 8725 2016 October 42
## 8726 2016 October 42
## 8727 2016 October 42
## 8728 2016 October 42
## 8729 2016 October 42
## 8730 2016 October 42
## 8731 2016 October 42
## 8732 2016 October 42
## 8733 2016 October 42
## 8734 2016 October 42
## 8735 2016 October 42
## 8736 2016 October 42
## 8737 2016 October 42
## 8738 2016 October 42
## 8739 2016 October 42
## 8740 2016 October 42
## 8741 2016 October 42
## 8742 2016 October 42
## 8743 2016 October 42
## 8744 2016 October 42
## 8745 2016 October 42
## 8746 2016 October 42
## 8747 2016 October 42
## 8748 2016 October 42
## 8749 2016 October 42
## 8750 2016 October 42
## 8751 2016 October 42
## 8752 2016 October 42
## 8753 2016 October 42
## 8754 2016 October 42
## 8755 2016 October 42
## 8756 2016 October 42
## 8757 2016 October 42
## 8758 2016 October 42
## 8759 2016 October 42
## 8760 2016 October 42
## 8761 2016 October 42
## 8762 2016 October 42
## 8763 2016 October 42
## 8764 2016 October 42
## 8765 2016 October 42
## 8766 2016 October 42
## 8767 2016 October 42
## 8768 2016 October 42
## 8769 2016 October 42
## 8770 2016 October 42
## 8771 2016 October 42
## 8772 2016 October 42
## 8773 2016 October 42
## 8774 2016 October 42
## 8775 2016 October 42
## 8776 2016 October 42
## 8777 2016 October 42
## 8778 2016 October 42
## 8779 2016 October 42
## 8780 2016 October 42
## 8781 2016 October 42
## 8782 2016 October 42
## 8783 2016 October 42
## 8784 2016 October 42
## 8785 2016 October 42
## 8786 2016 October 42
## 8787 2016 October 42
## 8788 2016 October 42
## 8789 2016 October 42
## 8790 2016 October 42
## 8791 2016 October 42
## 8792 2016 October 42
## 8793 2016 October 42
## 8794 2016 October 42
## 8795 2016 October 42
## 8796 2016 October 42
## 8797 2016 October 42
## 8798 2016 October 42
## 8799 2016 October 42
## 8800 2016 October 42
## 8801 2016 October 42
## 8802 2016 October 42
## 8803 2016 October 42
## 8804 2016 October 42
## 8805 2016 October 42
## 8806 2016 October 42
## 8807 2016 October 42
## 8808 2016 October 42
## 8809 2016 October 42
## 8810 2016 October 42
## 8811 2016 October 42
## 8812 2016 October 42
## 8813 2016 October 42
## 8814 2016 October 42
## 8815 2016 October 42
## 8816 2016 October 42
## 8817 2016 October 42
## 8818 2016 October 42
## 8819 2016 October 42
## 8820 2016 October 42
## 8821 2016 October 42
## 8822 2016 October 42
## 8823 2016 October 42
## 8824 2016 October 42
## 8825 2016 October 42
## 8826 2016 October 42
## 8827 2016 October 43
## 8828 2016 October 43
## 8829 2016 October 43
## 8830 2016 October 43
## 8831 2016 October 43
## 8832 2016 October 43
## 8833 2016 October 43
## 8834 2016 October 43
## 8835 2016 October 43
## 8836 2016 October 43
## 8837 2016 October 43
## 8838 2016 October 43
## 8839 2016 October 43
## 8840 2016 October 43
## 8841 2016 October 43
## 8842 2016 October 43
## 8843 2016 October 43
## 8844 2016 October 43
## 8845 2016 October 43
## 8846 2016 October 43
## 8847 2016 October 43
## 8848 2016 October 43
## 8849 2016 October 43
## 8850 2016 October 43
## 8851 2016 October 43
## 8852 2016 October 43
## 8853 2016 October 43
## 8854 2016 October 43
## 8855 2016 October 43
## 8856 2016 October 43
## 8857 2016 October 43
## 8858 2016 October 43
## 8859 2016 October 43
## 8860 2016 October 43
## 8861 2016 October 43
## 8862 2016 October 43
## 8863 2016 October 43
## 8864 2016 October 43
## 8865 2016 October 43
## 8866 2016 October 43
## 8867 2016 October 43
## 8868 2016 October 43
## 8869 2016 October 43
## 8870 2016 October 43
## 8871 2016 October 43
## 8872 2016 October 43
## 8873 2016 October 43
## 8874 2016 October 43
## 8875 2016 October 43
## 8876 2016 October 43
## 8877 2016 October 43
## 8878 2016 October 43
## 8879 2016 October 43
## 8880 2016 October 43
## 8881 2016 October 43
## 8882 2016 October 43
## 8883 2016 October 43
## 8884 2016 October 43
## 8885 2016 October 43
## 8886 2016 October 43
## 8887 2016 October 43
## 8888 2016 October 43
## 8889 2016 October 43
## 8890 2016 October 43
## 8891 2016 October 43
## 8892 2016 October 43
## 8893 2016 October 43
## 8894 2016 October 43
## 8895 2016 October 43
## 8896 2016 October 43
## 8897 2016 October 43
## 8898 2016 October 43
## 8899 2016 October 43
## 8900 2016 October 43
## 8901 2016 October 43
## 8902 2016 October 43
## 8903 2016 October 43
## 8904 2016 October 43
## 8905 2016 October 43
## 8906 2016 October 43
## 8907 2016 October 43
## 8908 2016 October 43
## 8909 2016 October 43
## 8910 2016 October 43
## 8911 2016 October 43
## 8912 2016 October 43
## 8913 2016 October 43
## 8914 2016 October 43
## 8915 2016 October 43
## 8916 2016 October 43
## 8917 2016 October 43
## 8918 2016 October 43
## 8919 2016 October 43
## 8920 2016 October 43
## 8921 2016 October 43
## 8922 2016 October 43
## 8923 2016 October 43
## 8924 2016 October 43
## 8925 2016 October 43
## 8926 2016 October 43
## 8927 2016 October 43
## 8928 2016 October 43
## 8929 2016 October 43
## 8930 2016 October 43
## 8931 2016 October 43
## 8932 2016 October 43
## 8933 2016 October 43
## 8934 2016 October 43
## 8935 2016 October 43
## 8936 2016 October 43
## 8937 2016 October 43
## 8938 2016 October 43
## 8939 2016 October 43
## 8940 2016 October 43
## 8941 2016 October 43
## 8942 2016 October 43
## 8943 2016 October 43
## 8944 2016 October 43
## 8945 2016 October 43
## 8946 2016 October 43
## 8947 2016 October 43
## 8948 2016 October 43
## 8949 2016 October 43
## 8950 2016 October 43
## 8951 2016 October 43
## 8952 2016 October 43
## 8953 2016 October 43
## 8954 2016 October 43
## 8955 2016 October 43
## 8956 2016 October 43
## 8957 2016 October 43
## 8958 2016 October 43
## 8959 2016 October 43
## 8960 2016 October 43
## 8961 2016 October 43
## 8962 2016 October 43
## 8963 2016 October 43
## 8964 2016 October 43
## 8965 2016 October 43
## 8966 2016 October 43
## 8967 2016 October 43
## 8968 2016 October 43
## 8969 2016 October 43
## 8970 2016 October 43
## 8971 2016 October 43
## 8972 2016 October 43
## 8973 2016 October 43
## 8974 2016 October 43
## 8975 2016 October 43
## 8976 2016 October 43
## 8977 2016 October 43
## 8978 2016 October 43
## 8979 2016 October 43
## 8980 2016 October 43
## 8981 2016 October 43
## 8982 2016 October 43
## 8983 2016 October 43
## 8984 2016 October 43
## 8985 2016 October 43
## 8986 2016 October 43
## 8987 2016 October 43
## 8988 2016 October 43
## 8989 2016 October 43
## 8990 2016 October 43
## 8991 2016 October 43
## 8992 2016 October 43
## 8993 2016 October 43
## 8994 2016 October 43
## 8995 2016 October 43
## 8996 2016 October 43
## 8997 2016 October 43
## 8998 2016 October 43
## 8999 2016 October 43
## 9000 2016 October 43
## 9001 2016 October 43
## 9002 2016 October 43
## 9003 2016 October 43
## 9004 2016 October 43
## 9005 2016 October 43
## 9006 2016 October 43
## 9007 2016 October 43
## 9008 2016 October 43
## 9009 2016 October 43
## 9010 2016 October 43
## 9011 2016 October 43
## 9012 2016 October 43
## 9013 2016 October 43
## 9014 2016 October 43
## 9015 2016 October 43
## 9016 2016 October 43
## 9017 2016 October 44
## 9018 2016 October 44
## 9019 2016 October 44
## 9020 2016 October 44
## 9021 2016 October 44
## 9022 2016 October 44
## 9023 2016 October 44
## 9024 2016 October 44
## 9025 2016 October 44
## 9026 2016 October 44
## 9027 2016 October 44
## 9028 2016 October 44
## 9029 2016 October 44
## 9030 2016 October 44
## 9031 2016 October 44
## 9032 2016 October 44
## 9033 2016 October 44
## 9034 2016 October 44
## 9035 2016 October 44
## 9036 2016 October 44
## 9037 2016 October 44
## 9038 2016 October 44
## 9039 2016 October 44
## 9040 2016 October 44
## 9041 2016 October 44
## 9042 2016 October 44
## 9043 2016 October 44
## 9044 2016 October 44
## 9045 2016 October 44
## 9046 2016 October 44
## 9047 2016 October 44
## 9048 2016 October 44
## 9049 2016 October 44
## 9050 2016 October 44
## 9051 2016 October 44
## 9052 2016 October 44
## 9053 2016 October 44
## 9054 2016 October 44
## 9055 2016 October 44
## 9056 2016 October 44
## 9057 2016 October 44
## 9058 2016 October 44
## 9059 2016 October 44
## 9060 2016 October 44
## 9061 2016 October 44
## 9062 2016 October 44
## 9063 2016 October 44
## 9064 2016 October 44
## 9065 2016 October 44
## 9066 2016 October 44
## 9067 2016 October 44
## 9068 2016 October 44
## 9069 2016 October 44
## 9070 2016 October 44
## 9071 2016 October 44
## 9072 2016 October 44
## 9073 2016 October 44
## 9074 2016 October 44
## 9075 2016 October 44
## 9076 2016 October 44
## 9077 2016 October 44
## 9078 2016 October 44
## 9079 2016 October 44
## 9080 2016 October 44
## 9081 2016 October 44
## 9082 2016 October 44
## 9083 2016 October 44
## 9084 2016 October 44
## 9085 2016 October 44
## 9086 2016 October 44
## 9087 2016 October 44
## 9088 2016 October 44
## 9089 2016 October 44
## 9090 2016 October 44
## 9091 2016 October 44
## 9092 2016 October 44
## 9093 2016 October 44
## 9094 2016 October 44
## 9095 2016 October 44
## 9096 2016 October 44
## 9097 2016 October 44
## 9098 2016 October 44
## 9099 2016 October 44
## 9100 2016 October 44
## 9101 2016 October 44
## 9102 2016 October 44
## 9103 2016 October 44
## 9104 2016 October 44
## 9105 2016 October 44
## 9106 2016 October 44
## 9107 2016 October 44
## 9108 2016 October 44
## 9109 2016 October 44
## 9110 2016 October 44
## 9111 2016 October 44
## 9112 2016 October 44
## 9113 2016 October 44
## 9114 2016 October 44
## 9115 2016 October 44
## 9116 2016 October 44
## 9117 2016 October 44
## 9118 2016 October 44
## 9119 2016 October 44
## 9120 2016 October 44
## 9121 2016 October 44
## 9122 2016 October 44
## 9123 2016 October 44
## 9124 2016 October 44
## 9125 2016 October 44
## 9126 2016 October 44
## 9127 2016 October 44
## 9128 2016 October 44
## 9129 2016 October 44
## 9130 2016 October 44
## 9131 2016 October 44
## 9132 2016 October 44
## 9133 2016 October 44
## 9134 2016 October 44
## 9135 2016 October 44
## 9136 2016 October 44
## 9137 2016 October 44
## 9138 2016 October 44
## 9139 2016 October 44
## 9140 2016 October 44
## 9141 2016 October 44
## 9142 2016 October 44
## 9143 2016 October 44
## 9144 2016 October 44
## 9145 2016 October 44
## 9146 2016 October 44
## 9147 2016 October 44
## 9148 2016 October 44
## 9149 2016 October 44
## 9150 2016 October 44
## 9151 2016 October 44
## 9152 2016 October 44
## 9153 2016 October 44
## 9154 2016 October 44
## 9155 2016 October 44
## 9156 2016 October 45
## 9157 2016 October 45
## 9158 2016 October 45
## 9159 2016 October 45
## 9160 2016 October 45
## 9161 2016 October 45
## 9162 2016 October 45
## 9163 2016 October 45
## 9164 2016 October 45
## 9165 2016 October 45
## 9166 2016 October 45
## 9167 2016 October 45
## 9168 2016 October 45
## 9169 2016 October 45
## 9170 2016 October 45
## 9171 2016 October 45
## 9172 2016 October 45
## 9173 2016 October 45
## 9174 2016 October 45
## 9175 2016 October 45
## 9176 2016 October 45
## 9177 2016 October 45
## 9178 2016 November 45
## 9179 2016 November 45
## 9180 2016 November 45
## 9181 2016 November 45
## 9182 2016 November 45
## 9183 2016 November 45
## 9184 2016 November 45
## 9185 2016 November 45
## 9186 2016 November 45
## 9187 2016 November 45
## 9188 2016 November 45
## 9189 2016 November 45
## 9190 2016 November 45
## 9191 2016 November 45
## 9192 2016 November 45
## 9193 2016 November 45
## 9194 2016 November 45
## 9195 2016 November 45
## 9196 2016 November 45
## 9197 2016 November 45
## 9198 2016 November 45
## 9199 2016 November 45
## 9200 2016 November 45
## 9201 2016 November 45
## 9202 2016 November 45
## 9203 2016 November 45
## 9204 2016 November 45
## 9205 2016 November 45
## 9206 2016 November 45
## 9207 2016 November 45
## 9208 2016 November 45
## 9209 2016 November 45
## 9210 2016 November 45
## 9211 2016 November 45
## 9212 2016 November 45
## 9213 2016 November 45
## 9214 2016 November 45
## 9215 2016 November 45
## 9216 2016 November 45
## 9217 2016 November 45
## 9218 2016 November 45
## 9219 2016 November 45
## 9220 2016 November 45
## 9221 2016 November 45
## 9222 2016 November 45
## 9223 2016 November 45
## 9224 2016 November 45
## 9225 2016 November 45
## 9226 2016 November 45
## 9227 2016 November 45
## 9228 2016 November 45
## 9229 2016 November 45
## 9230 2016 November 45
## 9231 2016 November 45
## 9232 2016 November 45
## 9233 2016 November 45
## 9234 2016 November 45
## 9235 2016 November 45
## 9236 2016 November 45
## 9237 2016 November 45
## 9238 2016 November 45
## 9239 2016 November 45
## 9240 2016 November 45
## 9241 2016 November 45
## 9242 2016 November 45
## 9243 2016 November 45
## 9244 2016 November 45
## 9245 2016 November 45
## 9246 2016 November 45
## 9247 2016 November 45
## 9248 2016 November 45
## 9249 2016 November 45
## 9250 2016 November 45
## 9251 2016 November 45
## 9252 2016 November 45
## 9253 2016 November 45
## 9254 2016 November 45
## 9255 2016 November 45
## 9256 2016 November 45
## 9257 2016 November 45
## 9258 2016 November 45
## 9259 2016 November 45
## 9260 2016 November 45
## 9261 2016 November 45
## 9262 2016 November 45
## 9263 2016 November 45
## 9264 2016 November 45
## 9265 2016 November 45
## 9266 2016 November 46
## 9267 2016 November 46
## 9268 2016 November 46
## 9269 2016 November 46
## 9270 2016 November 46
## 9271 2016 November 46
## 9272 2016 November 46
## 9273 2016 November 46
## 9274 2016 November 46
## 9275 2016 November 46
## 9276 2016 November 46
## 9277 2016 November 46
## 9278 2016 November 46
## 9279 2016 November 46
## 9280 2016 November 46
## 9281 2016 November 46
## 9282 2016 November 46
## 9283 2016 November 46
## 9284 2016 November 46
## 9285 2016 November 46
## 9286 2016 November 46
## 9287 2016 November 46
## 9288 2016 November 46
## 9289 2016 November 46
## 9290 2016 November 46
## 9291 2016 November 46
## 9292 2016 November 46
## 9293 2016 November 46
## 9294 2016 November 46
## 9295 2016 November 46
## 9296 2016 November 46
## 9297 2016 November 46
## 9298 2016 November 46
## 9299 2016 November 46
## 9300 2016 November 46
## 9301 2016 November 46
## 9302 2016 November 46
## 9303 2016 November 46
## 9304 2016 November 46
## 9305 2016 November 46
## 9306 2016 November 46
## 9307 2016 November 46
## 9308 2016 November 46
## 9309 2016 November 46
## 9310 2016 November 46
## 9311 2016 November 46
## 9312 2016 November 46
## 9313 2016 November 46
## 9314 2016 November 46
## 9315 2016 November 46
## 9316 2016 November 46
## 9317 2016 November 46
## 9318 2016 November 46
## 9319 2016 November 46
## 9320 2016 November 46
## 9321 2016 November 46
## 9322 2016 November 46
## 9323 2016 November 46
## 9324 2016 November 46
## 9325 2016 November 46
## 9326 2016 November 46
## 9327 2016 November 46
## 9328 2016 November 46
## 9329 2016 November 46
## 9330 2016 November 46
## 9331 2016 November 46
## 9332 2016 November 46
## 9333 2016 November 46
## 9334 2016 November 46
## 9335 2016 November 46
## 9336 2016 November 47
## 9337 2016 November 47
## 9338 2016 November 47
## 9339 2016 November 47
## 9340 2016 November 47
## 9341 2016 November 47
## 9342 2016 November 47
## 9343 2016 November 47
## 9344 2016 November 47
## 9345 2016 November 47
## 9346 2016 November 47
## 9347 2016 November 47
## 9348 2016 November 47
## 9349 2016 November 47
## 9350 2016 November 47
## 9351 2016 November 47
## 9352 2016 November 47
## 9353 2016 November 47
## 9354 2016 November 47
## 9355 2016 November 47
## 9356 2016 November 47
## 9357 2016 November 47
## 9358 2016 November 47
## 9359 2016 November 47
## 9360 2016 November 47
## 9361 2016 November 47
## 9362 2016 November 47
## 9363 2016 November 47
## 9364 2016 November 47
## 9365 2016 November 47
## 9366 2016 November 47
## 9367 2016 November 47
## 9368 2016 November 47
## 9369 2016 November 47
## 9370 2016 November 47
## 9371 2016 November 47
## 9372 2016 November 47
## 9373 2016 November 47
## 9374 2016 November 47
## 9375 2016 November 48
## 9376 2016 November 48
## 9377 2016 November 48
## 9378 2016 November 48
## 9379 2016 November 48
## 9380 2016 November 48
## 9381 2016 November 48
## 9382 2016 November 48
## 9383 2016 November 48
## 9384 2016 November 48
## 9385 2016 November 48
## 9386 2016 November 48
## 9387 2016 November 48
## 9388 2016 November 48
## 9389 2016 November 48
## 9390 2016 November 48
## 9391 2016 November 48
## 9392 2016 November 48
## 9393 2016 November 48
## 9394 2016 November 48
## 9395 2016 November 48
## 9396 2016 November 48
## 9397 2016 November 48
## 9398 2016 November 48
## 9399 2016 November 48
## 9400 2016 November 48
## 9401 2016 November 48
## 9402 2016 November 48
## 9403 2016 November 48
## 9404 2016 November 48
## 9405 2016 November 48
## 9406 2016 November 48
## 9407 2016 November 48
## 9408 2016 November 48
## 9409 2016 November 48
## 9410 2016 November 48
## 9411 2016 November 48
## 9412 2016 November 48
## 9413 2016 November 48
## 9414 2016 November 48
## 9415 2016 November 48
## 9416 2016 November 48
## 9417 2016 November 48
## 9418 2016 November 48
## 9419 2016 November 48
## 9420 2016 November 48
## 9421 2016 November 48
## 9422 2016 November 48
## 9423 2016 November 48
## 9424 2016 November 48
## 9425 2016 November 48
## 9426 2016 November 48
## 9427 2016 November 48
## 9428 2016 November 48
## 9429 2016 November 48
## 9430 2016 November 48
## 9431 2016 November 48
## 9432 2016 November 48
## 9433 2016 November 48
## 9434 2016 November 49
## 9435 2016 November 49
## 9436 2016 November 49
## 9437 2016 November 49
## 9438 2016 November 49
## 9439 2016 November 49
## 9440 2016 November 49
## 9441 2016 November 49
## 9442 2016 November 49
## 9443 2016 November 49
## 9444 2016 November 49
## 9445 2016 November 49
## 9446 2016 November 49
## 9447 2016 November 49
## 9448 2016 November 49
## 9449 2016 November 49
## 9450 2016 November 49
## 9451 2016 November 49
## 9452 2016 November 49
## 9453 2016 November 49
## 9454 2016 December 49
## 9455 2016 December 49
## 9456 2016 December 49
## 9457 2016 December 49
## 9458 2016 December 49
## 9459 2016 December 49
## 9460 2016 December 49
## 9461 2016 December 49
## 9462 2016 December 49
## 9463 2016 December 49
## 9464 2016 December 49
## 9465 2016 December 49
## 9466 2016 December 49
## 9467 2016 December 49
## 9468 2016 December 49
## 9469 2016 December 49
## 9470 2016 December 49
## 9471 2016 December 49
## 9472 2016 December 49
## 9473 2016 December 49
## 9474 2016 December 49
## 9475 2016 December 49
## 9476 2016 December 49
## 9477 2016 December 49
## 9478 2016 December 49
## 9479 2016 December 49
## 9480 2016 December 49
## 9481 2016 December 49
## 9482 2016 December 49
## 9483 2016 December 49
## 9484 2016 December 49
## 9485 2016 December 49
## 9486 2016 December 49
## 9487 2016 December 49
## 9488 2016 December 49
## 9489 2016 December 49
## 9490 2016 December 49
## 9491 2016 December 49
## 9492 2016 December 49
## 9493 2016 December 49
## 9494 2016 December 49
## 9495 2016 December 49
## 9496 2016 December 49
## 9497 2016 December 49
## 9498 2016 December 49
## 9499 2016 December 49
## 9500 2016 December 49
## 9501 2016 December 49
## 9502 2016 December 49
## 9503 2016 December 49
## 9504 2016 December 49
## 9505 2016 December 49
## 9506 2016 December 49
## 9507 2016 December 49
## 9508 2016 December 50
## 9509 2016 December 50
## 9510 2016 December 50
## 9511 2016 December 50
## 9512 2016 December 50
## 9513 2016 December 50
## 9514 2016 December 50
## 9515 2016 December 50
## 9516 2016 December 50
## 9517 2016 December 50
## 9518 2016 December 50
## 9519 2016 December 50
## 9520 2016 December 50
## 9521 2016 December 50
## 9522 2016 December 50
## 9523 2016 December 50
## 9524 2016 December 50
## 9525 2016 December 50
## 9526 2016 December 50
## 9527 2016 December 50
## 9528 2016 December 50
## 9529 2016 December 50
## 9530 2016 December 50
## 9531 2016 December 50
## 9532 2016 December 50
## 9533 2016 December 50
## 9534 2016 December 50
## 9535 2016 December 50
## 9536 2016 December 50
## 9537 2016 December 50
## 9538 2016 December 50
## 9539 2016 December 50
## 9540 2016 December 50
## 9541 2016 December 50
## 9542 2016 December 50
## 9543 2016 December 50
## 9544 2016 December 50
## 9545 2016 December 50
## 9546 2016 December 50
## 9547 2016 December 50
## 9548 2016 December 50
## 9549 2016 December 50
## 9550 2016 December 50
## 9551 2016 December 50
## 9552 2016 December 50
## 9553 2016 December 50
## 9554 2016 December 50
## 9555 2016 December 50
## 9556 2016 December 50
## 9557 2016 December 50
## 9558 2016 December 50
## 9559 2016 December 50
## 9560 2016 December 50
## 9561 2016 December 50
## 9562 2016 December 50
## 9563 2016 December 50
## 9564 2016 December 51
## 9565 2016 December 51
## 9566 2016 December 51
## 9567 2016 December 51
## 9568 2016 December 51
## 9569 2016 December 51
## 9570 2016 December 51
## 9571 2016 December 51
## 9572 2016 December 51
## 9573 2016 December 51
## 9574 2016 December 51
## 9575 2016 December 51
## 9576 2016 December 51
## 9577 2016 December 51
## 9578 2016 December 51
## 9579 2016 December 51
## 9580 2016 December 51
## 9581 2016 December 51
## 9582 2016 December 51
## 9583 2016 December 51
## 9584 2016 December 51
## 9585 2016 December 51
## 9586 2016 December 51
## 9587 2016 December 51
## 9588 2016 December 51
## 9589 2016 December 51
## 9590 2016 December 51
## 9591 2016 December 51
## 9592 2016 December 51
## 9593 2016 December 51
## 9594 2016 December 51
## 9595 2016 December 51
## 9596 2016 December 51
## 9597 2016 December 51
## 9598 2016 December 51
## 9599 2016 December 51
## 9600 2016 December 52
## 9601 2016 December 52
## 9602 2016 December 52
## 9603 2016 December 52
## 9604 2016 December 52
## 9605 2016 December 52
## 9606 2016 December 52
## 9607 2016 December 52
## 9608 2016 December 52
## 9609 2016 December 52
## 9610 2016 December 52
## 9611 2016 December 52
## 9612 2016 December 52
## 9613 2016 December 52
## 9614 2016 December 52
## 9615 2016 December 52
## 9616 2016 December 52
## 9617 2016 December 52
## 9618 2016 December 52
## 9619 2016 December 52
## 9620 2016 December 52
## 9621 2016 December 52
## 9622 2016 December 52
## 9623 2016 December 52
## 9624 2016 December 52
## 9625 2016 December 52
## 9626 2016 December 52
## 9627 2016 December 52
## 9628 2016 December 52
## 9629 2016 December 52
## 9630 2016 December 52
## 9631 2016 December 52
## 9632 2016 December 52
## 9633 2016 December 52
## 9634 2016 December 52
## 9635 2016 December 52
## 9636 2016 December 52
## 9637 2016 December 52
## 9638 2016 December 52
## 9639 2016 December 52
## 9640 2016 December 52
## 9641 2016 December 52
## 9642 2016 December 52
## 9643 2016 December 52
## 9644 2016 December 52
## 9645 2016 December 52
## 9646 2016 December 52
## 9647 2016 December 52
## 9648 2016 December 52
## 9649 2016 December 52
## 9650 2016 December 52
## 9651 2016 December 52
## 9652 2016 December 52
## 9653 2016 December 52
## 9654 2016 December 52
## 9655 2016 December 52
## 9656 2016 December 52
## 9657 2016 December 52
## 9658 2016 December 52
## 9659 2016 December 52
## 9660 2016 December 52
## 9661 2016 December 52
## 9662 2016 December 52
## 9663 2016 December 52
## 9664 2016 December 52
## 9665 2016 December 52
## 9666 2016 December 52
## 9667 2016 December 52
## 9668 2016 December 52
## 9669 2016 December 52
## 9670 2016 December 52
## 9671 2016 December 52
## 9672 2016 December 52
## 9673 2016 December 52
## 9674 2016 December 52
## 9675 2016 December 52
## 9676 2016 December 52
## 9677 2016 December 52
## 9678 2016 December 52
## 9679 2016 December 52
## 9680 2016 December 52
## 9681 2016 December 52
## 9682 2016 December 52
## 9683 2016 December 53
## 9684 2016 December 53
## 9685 2016 December 53
## 9686 2016 December 53
## 9687 2016 December 53
## 9688 2016 December 53
## 9689 2016 December 53
## 9690 2016 December 53
## 9691 2016 December 53
## 9692 2016 December 53
## 9693 2016 December 53
## 9694 2016 December 53
## 9695 2016 December 53
## 9696 2016 December 53
## 9697 2016 December 53
## 9698 2016 December 53
## 9699 2016 December 53
## 9700 2016 December 53
## 9701 2016 December 53
## 9702 2016 December 53
## 9703 2016 December 53
## 9704 2016 December 53
## 9705 2016 December 53
## 9706 2016 December 53
## 9707 2016 December 53
## 9708 2016 December 53
## 9709 2016 December 53
## 9710 2016 December 53
## 9711 2016 December 53
## 9712 2016 December 53
## 9713 2016 December 53
## 9714 2016 December 53
## 9715 2016 December 53
## 9716 2016 December 53
## 9717 2016 December 53
## 9718 2016 December 53
## 9719 2016 December 53
## 9720 2016 December 53
## 9721 2016 December 53
## 9722 2016 December 53
## 9723 2016 December 53
## 9724 2016 December 53
## 9725 2016 December 53
## 9726 2016 December 53
## 9727 2016 December 53
## 9728 2016 December 53
## 9729 2016 December 53
## 9730 2016 December 53
## 9731 2016 December 53
## 9732 2016 December 53
## 9733 2016 December 53
## 9734 2016 December 53
## 9735 2016 December 53
## 9736 2016 December 53
## 9737 2016 December 53
## 9738 2016 December 53
## 9739 2016 December 53
## 9740 2016 December 53
## 9741 2016 December 53
## 9742 2016 December 53
## 9743 2016 December 53
## 9744 2016 December 53
## 9745 2016 December 53
## 9746 2016 December 53
## 9747 2016 December 53
## 9748 2016 December 53
## 9749 2016 December 53
## 9750 2016 December 53
## 9751 2016 December 53
## 9752 2016 December 53
## 9753 2016 December 53
## 9754 2016 December 53
## 9755 2016 December 53
## 9756 2016 December 53
## 9757 2016 December 53
## 9758 2016 December 53
## 9759 2016 December 53
## 9760 2016 December 53
## 9761 2016 December 53
## 9762 2016 December 53
## 9763 2016 December 53
## 9764 2016 December 53
## 9765 2016 December 53
## 9766 2016 December 53
## 9767 2016 December 53
## 9768 2016 December 53
## 9769 2016 December 53
## 9770 2016 December 53
## 9771 2016 December 53
## 9772 2016 December 53
## 9773 2016 December 53
## 9774 2016 December 53
## 9775 2016 December 53
## 9776 2017 January 1
## 9777 2017 January 1
## 9778 2017 January 1
## 9779 2017 January 1
## 9780 2017 January 1
## 9781 2017 January 1
## 9782 2017 January 1
## 9783 2017 January 1
## 9784 2017 January 1
## 9785 2017 January 1
## 9786 2017 January 1
## 9787 2017 January 1
## 9788 2017 January 1
## 9789 2017 January 1
## 9790 2017 January 1
## 9791 2017 January 1
## 9792 2017 January 1
## 9793 2017 January 1
## 9794 2017 January 1
## 9795 2017 January 1
## 9796 2017 January 1
## 9797 2017 January 1
## 9798 2017 January 1
## 9799 2017 January 1
## 9800 2017 January 1
## 9801 2017 January 1
## 9802 2017 January 1
## 9803 2017 January 1
## 9804 2017 January 1
## 9805 2017 January 1
## 9806 2017 January 1
## 9807 2017 January 1
## 9808 2017 January 1
## 9809 2017 January 1
## 9810 2017 January 1
## 9811 2017 January 1
## 9812 2017 January 1
## 9813 2017 January 1
## 9814 2017 January 1
## 9815 2017 January 1
## 9816 2017 January 1
## 9817 2017 January 1
## 9818 2017 January 1
## 9819 2017 January 1
## 9820 2017 January 1
## 9821 2017 January 1
## 9822 2017 January 1
## 9823 2017 January 1
## 9824 2017 January 1
## 9825 2017 January 1
## 9826 2017 January 1
## 9827 2017 January 1
## 9828 2017 January 1
## 9829 2017 January 2
## 9830 2017 January 2
## 9831 2017 January 2
## 9832 2017 January 2
## 9833 2017 January 2
## 9834 2017 January 2
## 9835 2017 January 2
## 9836 2017 January 2
## 9837 2017 January 2
## 9838 2017 January 2
## 9839 2017 January 2
## 9840 2017 January 2
## 9841 2017 January 2
## 9842 2017 January 2
## 9843 2017 January 2
## 9844 2017 January 2
## 9845 2017 January 2
## 9846 2017 January 2
## 9847 2017 January 2
## 9848 2017 January 2
## 9849 2017 January 2
## 9850 2017 January 2
## 9851 2017 January 2
## 9852 2017 January 2
## 9853 2017 January 2
## 9854 2017 January 2
## 9855 2017 January 2
## 9856 2017 January 2
## 9857 2017 January 2
## 9858 2017 January 2
## 9859 2017 January 2
## 9860 2017 January 2
## 9861 2017 January 2
## 9862 2017 January 2
## 9863 2017 January 2
## 9864 2017 January 2
## 9865 2017 January 2
## 9866 2017 January 2
## 9867 2017 January 2
## 9868 2017 January 2
## 9869 2017 January 2
## 9870 2017 January 3
## 9871 2017 January 3
## 9872 2017 January 3
## 9873 2017 January 3
## 9874 2017 January 3
## 9875 2017 January 3
## 9876 2017 January 3
## 9877 2017 January 3
## 9878 2017 January 3
## 9879 2017 January 3
## 9880 2017 January 3
## 9881 2017 January 3
## 9882 2017 January 3
## 9883 2017 January 3
## 9884 2017 January 3
## 9885 2017 January 3
## 9886 2017 January 3
## 9887 2017 January 3
## 9888 2017 January 3
## 9889 2017 January 3
## 9890 2017 January 3
## 9891 2017 January 3
## 9892 2017 January 3
## 9893 2017 January 3
## 9894 2017 January 3
## 9895 2017 January 3
## 9896 2017 January 3
## 9897 2017 January 3
## 9898 2017 January 3
## 9899 2017 January 3
## 9900 2017 January 3
## 9901 2017 January 3
## 9902 2017 January 3
## 9903 2017 January 3
## 9904 2017 January 3
## 9905 2017 January 3
## 9906 2017 January 3
## 9907 2017 January 3
## 9908 2017 January 3
## 9909 2017 January 3
## 9910 2017 January 3
## 9911 2017 January 3
## 9912 2017 January 4
## 9913 2017 January 4
## 9914 2017 January 4
## 9915 2017 January 4
## 9916 2017 January 4
## 9917 2017 January 4
## 9918 2017 January 4
## 9919 2017 January 4
## 9920 2017 January 4
## 9921 2017 January 4
## 9922 2017 January 4
## 9923 2017 January 4
## 9924 2017 January 4
## 9925 2017 January 4
## 9926 2017 January 4
## 9927 2017 January 4
## 9928 2017 January 4
## 9929 2017 January 4
## 9930 2017 January 4
## 9931 2017 January 4
## 9932 2017 January 4
## 9933 2017 January 4
## 9934 2017 January 4
## 9935 2017 January 4
## 9936 2017 January 4
## 9937 2017 January 4
## 9938 2017 January 4
## 9939 2017 January 4
## 9940 2017 January 4
## 9941 2017 January 4
## 9942 2017 January 4
## 9943 2017 January 4
## 9944 2017 January 4
## 9945 2017 January 4
## 9946 2017 January 4
## 9947 2017 January 4
## 9948 2017 January 4
## 9949 2017 January 4
## 9950 2017 January 4
## 9951 2017 January 4
## 9952 2017 January 4
## 9953 2017 January 4
## 9954 2017 January 4
## 9955 2017 January 4
## 9956 2017 January 4
## 9957 2017 January 4
## 9958 2017 January 4
## 9959 2017 January 4
## 9960 2017 January 4
## 9961 2017 January 4
## 9962 2017 January 4
## 9963 2017 January 5
## 9964 2017 January 5
## 9965 2017 January 5
## 9966 2017 January 5
## 9967 2017 January 5
## 9968 2017 January 5
## 9969 2017 January 5
## 9970 2017 January 5
## 9971 2017 January 5
## 9972 2017 January 5
## 9973 2017 January 5
## 9974 2017 January 5
## 9975 2017 January 5
## 9976 2017 January 5
## 9977 2017 January 5
## 9978 2017 January 5
## 9979 2017 February 5
## 9980 2017 February 5
## 9981 2017 February 5
## 9982 2017 February 5
## 9983 2017 February 5
## 9984 2017 February 5
## 9985 2017 February 5
## 9986 2017 February 5
## 9987 2017 February 5
## 9988 2017 February 5
## 9989 2017 February 5
## 9990 2017 February 5
## 9991 2017 February 5
## 9992 2017 February 5
## 9993 2017 February 5
## 9994 2017 February 5
## 9995 2017 February 5
## 9996 2017 February 5
## 9997 2017 February 5
## 9998 2017 February 5
## 9999 2017 February 5
## 10000 2017 February 5
## 10001 2017 February 5
## 10002 2017 February 5
## 10003 2017 February 5
## 10004 2017 February 5
## 10005 2017 February 5
## 10006 2017 February 5
## 10007 2017 February 5
## 10008 2017 February 5
## 10009 2017 February 5
## 10010 2017 February 5
## 10011 2017 February 5
## 10012 2017 February 5
## 10013 2017 February 6
## 10014 2017 February 6
## 10015 2017 February 6
## 10016 2017 February 6
## 10017 2017 February 6
## 10018 2017 February 6
## 10019 2017 February 6
## 10020 2017 February 6
## 10021 2017 February 6
## 10022 2017 February 6
## 10023 2017 February 6
## 10024 2017 February 6
## 10025 2017 February 6
## 10026 2017 February 6
## 10027 2017 February 6
## 10028 2017 February 6
## 10029 2017 February 6
## 10030 2017 February 6
## 10031 2017 February 6
## 10032 2017 February 6
## 10033 2017 February 6
## 10034 2017 February 6
## 10035 2017 February 6
## 10036 2017 February 6
## 10037 2017 February 6
## 10038 2017 February 6
## 10039 2017 February 6
## 10040 2017 February 6
## 10041 2017 February 6
## 10042 2017 February 6
## 10043 2017 February 6
## 10044 2017 February 6
## 10045 2017 February 6
## 10046 2017 February 6
## 10047 2017 February 6
## 10048 2017 February 6
## 10049 2017 February 6
## 10050 2017 February 6
## 10051 2017 February 6
## 10052 2017 February 6
## 10053 2017 February 6
## 10054 2017 February 6
## 10055 2017 February 6
## 10056 2017 February 6
## 10057 2017 February 6
## 10058 2017 February 6
## 10059 2017 February 6
## 10060 2017 February 6
## 10061 2017 February 6
## 10062 2017 February 6
## 10063 2017 February 6
## 10064 2017 February 6
## 10065 2017 February 6
## 10066 2017 February 6
## 10067 2017 February 6
## 10068 2017 February 6
## 10069 2017 February 6
## 10070 2017 February 6
## 10071 2017 February 6
## 10072 2017 February 6
## 10073 2017 February 6
## 10074 2017 February 6
## 10075 2017 February 6
## 10076 2017 February 6
## 10077 2017 February 6
## 10078 2017 February 6
## 10079 2017 February 6
## 10080 2017 February 6
## 10081 2017 February 6
## 10082 2017 February 6
## 10083 2017 February 6
## 10084 2017 February 6
## 10085 2017 February 6
## 10086 2017 February 6
## 10087 2017 February 6
## 10088 2017 February 6
## 10089 2017 February 6
## 10090 2017 February 6
## 10091 2017 February 6
## 10092 2017 February 6
## 10093 2017 February 6
## 10094 2017 February 6
## 10095 2017 February 6
## 10096 2017 February 6
## 10097 2017 February 6
## 10098 2017 February 6
## 10099 2017 February 6
## 10100 2017 February 6
## 10101 2017 February 6
## 10102 2017 February 7
## 10103 2017 February 7
## 10104 2017 February 7
## 10105 2017 February 7
## 10106 2017 February 7
## 10107 2017 February 7
## 10108 2017 February 7
## 10109 2017 February 7
## 10110 2017 February 7
## 10111 2017 February 7
## 10112 2017 February 7
## 10113 2017 February 7
## 10114 2017 February 7
## 10115 2017 February 7
## 10116 2017 February 7
## 10117 2017 February 7
## 10118 2017 February 7
## 10119 2017 February 7
## 10120 2017 February 7
## 10121 2017 February 7
## 10122 2017 February 7
## 10123 2017 February 7
## 10124 2017 February 7
## 10125 2017 February 7
## 10126 2017 February 7
## 10127 2017 February 7
## 10128 2017 February 7
## 10129 2017 February 7
## 10130 2017 February 7
## 10131 2017 February 7
## 10132 2017 February 7
## 10133 2017 February 7
## 10134 2017 February 7
## 10135 2017 February 7
## 10136 2017 February 7
## 10137 2017 February 7
## 10138 2017 February 7
## 10139 2017 February 7
## 10140 2017 February 7
## 10141 2017 February 7
## 10142 2017 February 7
## 10143 2017 February 7
## 10144 2017 February 7
## 10145 2017 February 7
## 10146 2017 February 7
## 10147 2017 February 7
## 10148 2017 February 7
## 10149 2017 February 7
## 10150 2017 February 7
## 10151 2017 February 7
## 10152 2017 February 7
## 10153 2017 February 7
## 10154 2017 February 7
## 10155 2017 February 7
## 10156 2017 February 7
## 10157 2017 February 7
## 10158 2017 February 7
## 10159 2017 February 7
## 10160 2017 February 7
## 10161 2017 February 7
## 10162 2017 February 7
## 10163 2017 February 7
## 10164 2017 February 7
## 10165 2017 February 7
## 10166 2017 February 7
## 10167 2017 February 7
## 10168 2017 February 7
## 10169 2017 February 7
## 10170 2017 February 7
## 10171 2017 February 7
## 10172 2017 February 7
## 10173 2017 February 7
## 10174 2017 February 7
## 10175 2017 February 7
## 10176 2017 February 7
## 10177 2017 February 7
## 10178 2017 February 7
## 10179 2017 February 7
## 10180 2017 February 7
## 10181 2017 February 7
## 10182 2017 February 7
## 10183 2017 February 7
## 10184 2017 February 7
## 10185 2017 February 7
## 10186 2017 February 7
## 10187 2017 February 7
## 10188 2017 February 7
## 10189 2017 February 7
## 10190 2017 February 7
## 10191 2017 February 7
## 10192 2017 February 7
## 10193 2017 February 7
## 10194 2017 February 7
## 10195 2017 February 7
## 10196 2017 February 8
## 10197 2017 February 8
## 10198 2017 February 8
## 10199 2017 February 8
## 10200 2017 February 8
## 10201 2017 February 8
## 10202 2017 February 8
## 10203 2017 February 8
## 10204 2017 February 8
## 10205 2017 February 8
## 10206 2017 February 8
## 10207 2017 February 8
## 10208 2017 February 8
## 10209 2017 February 8
## 10210 2017 February 8
## 10211 2017 February 8
## 10212 2017 February 8
## 10213 2017 February 8
## 10214 2017 February 8
## 10215 2017 February 8
## 10216 2017 February 8
## 10217 2017 February 8
## 10218 2017 February 8
## 10219 2017 February 8
## 10220 2017 February 8
## 10221 2017 February 8
## 10222 2017 February 8
## 10223 2017 February 8
## 10224 2017 February 8
## 10225 2017 February 8
## 10226 2017 February 8
## 10227 2017 February 8
## 10228 2017 February 8
## 10229 2017 February 8
## 10230 2017 February 8
## 10231 2017 February 8
## 10232 2017 February 8
## 10233 2017 February 8
## 10234 2017 February 8
## 10235 2017 February 8
## 10236 2017 February 8
## 10237 2017 February 8
## 10238 2017 February 8
## 10239 2017 February 8
## 10240 2017 February 8
## 10241 2017 February 8
## 10242 2017 February 8
## 10243 2017 February 8
## 10244 2017 February 8
## 10245 2017 February 8
## 10246 2017 February 8
## 10247 2017 February 8
## 10248 2017 February 8
## 10249 2017 February 8
## 10250 2017 February 8
## 10251 2017 February 8
## 10252 2017 February 8
## 10253 2017 February 8
## 10254 2017 February 8
## 10255 2017 February 8
## 10256 2017 February 8
## 10257 2017 February 8
## 10258 2017 February 8
## 10259 2017 February 8
## 10260 2017 February 8
## 10261 2017 February 8
## 10262 2017 February 8
## 10263 2017 February 8
## 10264 2017 February 8
## 10265 2017 February 8
## 10266 2017 February 8
## 10267 2017 February 8
## 10268 2017 February 8
## 10269 2017 February 8
## 10270 2017 February 8
## 10271 2017 February 8
## 10272 2017 February 8
## 10273 2017 February 8
## 10274 2017 February 8
## 10275 2017 February 8
## 10276 2017 February 8
## 10277 2017 February 8
## 10278 2017 February 8
## 10279 2017 February 8
## 10280 2017 February 8
## 10281 2017 February 8
## 10282 2017 February 8
## 10283 2017 February 8
## 10284 2017 February 8
## 10285 2017 February 8
## 10286 2017 February 8
## 10287 2017 February 8
## 10288 2017 February 8
## 10289 2017 February 8
## 10290 2017 February 8
## 10291 2017 February 8
## 10292 2017 February 8
## 10293 2017 February 8
## 10294 2017 February 8
## 10295 2017 February 8
## 10296 2017 February 8
## 10297 2017 February 8
## 10298 2017 February 8
## 10299 2017 February 8
## 10300 2017 February 8
## 10301 2017 February 8
## 10302 2017 February 8
## 10303 2017 February 8
## 10304 2017 February 8
## 10305 2017 February 8
## 10306 2017 February 8
## 10307 2017 February 8
## 10308 2017 February 8
## 10309 2017 February 8
## 10310 2017 February 8
## 10311 2017 February 8
## 10312 2017 February 8
## 10313 2017 February 8
## 10314 2017 February 8
## 10315 2017 February 8
## 10316 2017 February 8
## 10317 2017 February 8
## 10318 2017 February 8
## 10319 2017 February 8
## 10320 2017 February 8
## 10321 2017 February 8
## 10322 2017 February 8
## 10323 2017 February 8
## 10324 2017 February 8
## 10325 2017 February 9
## 10326 2017 February 9
## 10327 2017 February 9
## 10328 2017 February 9
## 10329 2017 February 9
## 10330 2017 February 9
## 10331 2017 February 9
## 10332 2017 February 9
## 10333 2017 February 9
## 10334 2017 February 9
## 10335 2017 February 9
## 10336 2017 February 9
## 10337 2017 February 9
## 10338 2017 February 9
## 10339 2017 February 9
## 10340 2017 February 9
## 10341 2017 February 9
## 10342 2017 February 9
## 10343 2017 February 9
## 10344 2017 February 9
## 10345 2017 February 9
## 10346 2017 February 9
## 10347 2017 February 9
## 10348 2017 February 9
## 10349 2017 February 9
## 10350 2017 February 9
## 10351 2017 February 9
## 10352 2017 February 9
## 10353 2017 February 9
## 10354 2017 February 9
## 10355 2017 February 9
## 10356 2017 February 9
## 10357 2017 February 9
## 10358 2017 February 9
## 10359 2017 February 9
## 10360 2017 February 9
## 10361 2017 February 9
## 10362 2017 March 9
## 10363 2017 March 9
## 10364 2017 March 9
## 10365 2017 March 9
## 10366 2017 March 9
## 10367 2017 March 9
## 10368 2017 March 9
## 10369 2017 March 9
## 10370 2017 March 9
## 10371 2017 March 9
## 10372 2017 March 9
## 10373 2017 March 9
## 10374 2017 March 9
## 10375 2017 March 9
## 10376 2017 March 9
## 10377 2017 March 9
## 10378 2017 March 9
## 10379 2017 March 9
## 10380 2017 March 9
## 10381 2017 March 9
## 10382 2017 March 9
## 10383 2017 March 9
## 10384 2017 March 9
## 10385 2017 March 9
## 10386 2017 March 9
## 10387 2017 March 9
## 10388 2017 March 9
## 10389 2017 March 9
## 10390 2017 March 9
## 10391 2017 March 9
## 10392 2017 March 9
## 10393 2017 March 9
## 10394 2017 March 9
## 10395 2017 March 9
## 10396 2017 March 9
## 10397 2017 March 9
## 10398 2017 March 9
## 10399 2017 March 9
## 10400 2017 March 9
## 10401 2017 March 9
## 10402 2017 March 10
## 10403 2017 March 10
## 10404 2017 March 10
## 10405 2017 March 10
## 10406 2017 March 10
## 10407 2017 March 10
## 10408 2017 March 10
## 10409 2017 March 10
## 10410 2017 March 10
## 10411 2017 March 10
## 10412 2017 March 10
## 10413 2017 March 10
## 10414 2017 March 10
## 10415 2017 March 10
## 10416 2017 March 10
## 10417 2017 March 10
## 10418 2017 March 10
## 10419 2017 March 10
## 10420 2017 March 10
## 10421 2017 March 10
## 10422 2017 March 10
## 10423 2017 March 10
## 10424 2017 March 10
## 10425 2017 March 10
## 10426 2017 March 10
## 10427 2017 March 10
## 10428 2017 March 10
## 10429 2017 March 10
## 10430 2017 March 10
## 10431 2017 March 10
## 10432 2017 March 10
## 10433 2017 March 10
## 10434 2017 March 10
## 10435 2017 March 10
## 10436 2017 March 10
## 10437 2017 March 10
## 10438 2017 March 10
## 10439 2017 March 10
## 10440 2017 March 10
## 10441 2017 March 10
## 10442 2017 March 10
## 10443 2017 March 10
## 10444 2017 March 10
## 10445 2017 March 10
## 10446 2017 March 10
## 10447 2017 March 10
## 10448 2017 March 10
## 10449 2017 March 10
## 10450 2017 March 10
## 10451 2017 March 10
## 10452 2017 March 10
## 10453 2017 March 10
## 10454 2017 March 10
## 10455 2017 March 10
## 10456 2017 March 10
## 10457 2017 March 10
## 10458 2017 March 10
## 10459 2017 March 10
## 10460 2017 March 10
## 10461 2017 March 10
## 10462 2017 March 10
## 10463 2017 March 10
## 10464 2017 March 10
## 10465 2017 March 10
## 10466 2017 March 10
## 10467 2017 March 10
## 10468 2017 March 10
## 10469 2017 March 10
## 10470 2017 March 10
## 10471 2017 March 10
## 10472 2017 March 10
## 10473 2017 March 10
## 10474 2017 March 10
## 10475 2017 March 10
## 10476 2017 March 10
## 10477 2017 March 10
## 10478 2017 March 10
## 10479 2017 March 10
## 10480 2017 March 10
## 10481 2017 March 10
## 10482 2017 March 10
## 10483 2017 March 10
## 10484 2017 March 10
## 10485 2017 March 10
## 10486 2017 March 10
## 10487 2017 March 10
## 10488 2017 March 10
## 10489 2017 March 10
## 10490 2017 March 10
## 10491 2017 March 10
## 10492 2017 March 10
## 10493 2017 March 10
## 10494 2017 March 10
## 10495 2017 March 10
## 10496 2017 March 10
## 10497 2017 March 10
## 10498 2017 March 10
## 10499 2017 March 10
## 10500 2017 March 10
## 10501 2017 March 10
## 10502 2017 March 10
## 10503 2017 March 10
## 10504 2017 March 10
## 10505 2017 March 10
## 10506 2017 March 10
## 10507 2017 March 10
## 10508 2017 March 10
## 10509 2017 March 10
## 10510 2017 March 10
## 10511 2017 March 10
## 10512 2017 March 10
## 10513 2017 March 10
## 10514 2017 March 10
## 10515 2017 March 10
## 10516 2017 March 10
## 10517 2017 March 10
## 10518 2017 March 10
## 10519 2017 March 10
## 10520 2017 March 10
## 10521 2017 March 10
## 10522 2017 March 10
## 10523 2017 March 10
## 10524 2017 March 10
## 10525 2017 March 10
## 10526 2017 March 10
## 10527 2017 March 11
## 10528 2017 March 11
## 10529 2017 March 11
## 10530 2017 March 11
## 10531 2017 March 11
## 10532 2017 March 11
## 10533 2017 March 11
## 10534 2017 March 11
## 10535 2017 March 11
## 10536 2017 March 11
## 10537 2017 March 11
## 10538 2017 March 11
## 10539 2017 March 11
## 10540 2017 March 11
## 10541 2017 March 11
## 10542 2017 March 11
## 10543 2017 March 11
## 10544 2017 March 11
## 10545 2017 March 11
## 10546 2017 March 11
## 10547 2017 March 11
## 10548 2017 March 11
## 10549 2017 March 11
## 10550 2017 March 11
## 10551 2017 March 11
## 10552 2017 March 11
## 10553 2017 March 11
## 10554 2017 March 11
## 10555 2017 March 11
## 10556 2017 March 11
## 10557 2017 March 11
## 10558 2017 March 11
## 10559 2017 March 11
## 10560 2017 March 11
## 10561 2017 March 11
## 10562 2017 March 11
## 10563 2017 March 11
## 10564 2017 March 11
## 10565 2017 March 11
## 10566 2017 March 11
## 10567 2017 March 11
## 10568 2017 March 11
## 10569 2017 March 11
## 10570 2017 March 11
## 10571 2017 March 11
## 10572 2017 March 11
## 10573 2017 March 11
## 10574 2017 March 11
## 10575 2017 March 11
## 10576 2017 March 11
## 10577 2017 March 11
## 10578 2017 March 11
## 10579 2017 March 11
## 10580 2017 March 11
## 10581 2017 March 11
## 10582 2017 March 11
## 10583 2017 March 11
## 10584 2017 March 11
## 10585 2017 March 11
## 10586 2017 March 11
## 10587 2017 March 11
## 10588 2017 March 11
## 10589 2017 March 11
## 10590 2017 March 11
## 10591 2017 March 11
## 10592 2017 March 11
## 10593 2017 March 11
## 10594 2017 March 11
## 10595 2017 March 11
## 10596 2017 March 11
## 10597 2017 March 11
## 10598 2017 March 11
## 10599 2017 March 11
## 10600 2017 March 11
## 10601 2017 March 11
## 10602 2017 March 11
## 10603 2017 March 11
## 10604 2017 March 11
## 10605 2017 March 11
## 10606 2017 March 11
## 10607 2017 March 11
## 10608 2017 March 11
## 10609 2017 March 11
## 10610 2017 March 12
## 10611 2017 March 12
## 10612 2017 March 12
## 10613 2017 March 12
## 10614 2017 March 12
## 10615 2017 March 12
## 10616 2017 March 12
## 10617 2017 March 12
## 10618 2017 March 12
## 10619 2017 March 12
## 10620 2017 March 12
## 10621 2017 March 12
## 10622 2017 March 12
## 10623 2017 March 12
## 10624 2017 March 12
## 10625 2017 March 12
## 10626 2017 March 12
## 10627 2017 March 12
## 10628 2017 March 12
## 10629 2017 March 12
## 10630 2017 March 12
## 10631 2017 March 12
## 10632 2017 March 12
## 10633 2017 March 12
## 10634 2017 March 12
## 10635 2017 March 12
## 10636 2017 March 12
## 10637 2017 March 12
## 10638 2017 March 12
## 10639 2017 March 12
## 10640 2017 March 12
## 10641 2017 March 12
## 10642 2017 March 12
## 10643 2017 March 12
## 10644 2017 March 12
## 10645 2017 March 12
## 10646 2017 March 12
## 10647 2017 March 12
## 10648 2017 March 12
## 10649 2017 March 12
## 10650 2017 March 12
## 10651 2017 March 12
## 10652 2017 March 12
## 10653 2017 March 12
## 10654 2017 March 12
## 10655 2017 March 12
## 10656 2017 March 13
## 10657 2017 March 13
## 10658 2017 March 13
## 10659 2017 March 13
## 10660 2017 March 13
## 10661 2017 March 13
## 10662 2017 March 13
## 10663 2017 March 13
## 10664 2017 March 13
## 10665 2017 March 13
## 10666 2017 March 13
## 10667 2017 March 13
## 10668 2017 March 13
## 10669 2017 March 13
## 10670 2017 March 13
## 10671 2017 March 13
## 10672 2017 March 13
## 10673 2017 March 13
## 10674 2017 March 13
## 10675 2017 March 13
## 10676 2017 March 13
## 10677 2017 March 13
## 10678 2017 March 13
## 10679 2017 March 13
## 10680 2017 March 13
## 10681 2017 March 13
## 10682 2017 March 13
## 10683 2017 March 13
## 10684 2017 March 13
## 10685 2017 March 13
## 10686 2017 March 13
## 10687 2017 March 13
## 10688 2017 March 13
## 10689 2017 March 13
## 10690 2017 March 13
## 10691 2017 March 13
## 10692 2017 March 13
## 10693 2017 March 13
## 10694 2017 March 13
## 10695 2017 March 13
## 10696 2017 March 13
## 10697 2017 March 13
## 10698 2017 March 13
## 10699 2017 March 13
## 10700 2017 March 13
## 10701 2017 March 13
## 10702 2017 March 13
## 10703 2017 March 13
## 10704 2017 March 13
## 10705 2017 March 13
## 10706 2017 March 13
## 10707 2017 March 13
## 10708 2017 March 13
## 10709 2017 March 13
## 10710 2017 March 13
## 10711 2017 March 13
## 10712 2017 March 13
## 10713 2017 March 13
## 10714 2017 March 13
## 10715 2017 March 13
## 10716 2017 March 13
## 10717 2017 March 13
## 10718 2017 March 13
## 10719 2017 March 13
## 10720 2017 March 13
## 10721 2017 March 13
## 10722 2017 March 13
## 10723 2017 March 13
## 10724 2017 March 13
## 10725 2017 March 13
## 10726 2017 March 13
## 10727 2017 March 13
## 10728 2017 March 13
## 10729 2017 March 13
## 10730 2017 March 13
## 10731 2017 March 13
## 10732 2017 March 13
## 10733 2017 March 13
## 10734 2017 March 13
## 10735 2017 March 13
## 10736 2017 March 13
## 10737 2017 March 13
## 10738 2017 March 13
## 10739 2017 March 13
## 10740 2017 March 13
## 10741 2017 March 13
## 10742 2017 March 13
## 10743 2017 March 13
## 10744 2017 March 13
## 10745 2017 March 13
## 10746 2017 March 13
## 10747 2017 March 13
## 10748 2017 March 13
## 10749 2017 March 13
## 10750 2017 March 13
## 10751 2017 March 13
## 10752 2017 March 13
## 10753 2017 April 13
## 10754 2017 April 13
## 10755 2017 April 13
## 10756 2017 April 13
## 10757 2017 April 13
## 10758 2017 April 13
## 10759 2017 April 13
## 10760 2017 April 13
## 10761 2017 April 14
## 10762 2017 April 14
## 10763 2017 April 14
## 10764 2017 April 14
## 10765 2017 April 14
## 10766 2017 April 14
## 10767 2017 April 14
## 10768 2017 April 14
## 10769 2017 April 14
## 10770 2017 April 14
## 10771 2017 April 14
## 10772 2017 April 14
## 10773 2017 April 14
## 10774 2017 April 14
## 10775 2017 April 14
## 10776 2017 April 14
## 10777 2017 April 14
## 10778 2017 April 14
## 10779 2017 April 14
## 10780 2017 April 14
## 10781 2017 April 14
## 10782 2017 April 14
## 10783 2017 April 14
## 10784 2017 April 14
## 10785 2017 April 14
## 10786 2017 April 14
## 10787 2017 April 14
## 10788 2017 April 14
## 10789 2017 April 14
## 10790 2017 April 14
## 10791 2017 April 14
## 10792 2017 April 14
## 10793 2017 April 14
## 10794 2017 April 14
## 10795 2017 April 14
## 10796 2017 April 14
## 10797 2017 April 14
## 10798 2017 April 14
## 10799 2017 April 14
## 10800 2017 April 14
## 10801 2017 April 14
## 10802 2017 April 14
## 10803 2017 April 14
## 10804 2017 April 14
## 10805 2017 April 14
## 10806 2017 April 14
## 10807 2017 April 14
## 10808 2017 April 14
## 10809 2017 April 14
## 10810 2017 April 14
## 10811 2017 April 14
## 10812 2017 April 14
## 10813 2017 April 14
## 10814 2017 April 14
## 10815 2017 April 14
## 10816 2017 April 14
## 10817 2017 April 14
## 10818 2017 April 14
## 10819 2017 April 14
## 10820 2017 April 14
## 10821 2017 April 14
## 10822 2017 April 14
## 10823 2017 April 14
## 10824 2017 April 14
## 10825 2017 April 14
## 10826 2017 April 14
## 10827 2017 April 14
## 10828 2017 April 14
## 10829 2017 April 14
## 10830 2017 April 14
## 10831 2017 April 14
## 10832 2017 April 14
## 10833 2017 April 14
## 10834 2017 April 14
## 10835 2017 April 14
## 10836 2017 April 14
## 10837 2017 April 14
## 10838 2017 April 14
## 10839 2017 April 14
## 10840 2017 April 14
## 10841 2017 April 14
## 10842 2017 April 14
## 10843 2017 April 14
## 10844 2017 April 14
## 10845 2017 April 14
## 10846 2017 April 14
## 10847 2017 April 14
## 10848 2017 April 14
## 10849 2017 April 14
## 10850 2017 April 14
## 10851 2017 April 14
## 10852 2017 April 14
## 10853 2017 April 14
## 10854 2017 April 14
## 10855 2017 April 14
## 10856 2017 April 14
## 10857 2017 April 14
## 10858 2017 April 14
## 10859 2017 April 14
## 10860 2017 April 14
## 10861 2017 April 14
## 10862 2017 April 14
## 10863 2017 April 14
## 10864 2017 April 14
## 10865 2017 April 14
## 10866 2017 April 14
## 10867 2017 April 14
## 10868 2017 April 14
## 10869 2017 April 15
## 10870 2017 April 15
## 10871 2017 April 15
## 10872 2017 April 15
## 10873 2017 April 15
## 10874 2017 April 15
## 10875 2017 April 15
## 10876 2017 April 15
## 10877 2017 April 15
## 10878 2017 April 15
## 10879 2017 April 15
## 10880 2017 April 15
## 10881 2017 April 15
## 10882 2017 April 15
## 10883 2017 April 15
## 10884 2017 April 15
## 10885 2017 April 15
## 10886 2017 April 15
## 10887 2017 April 15
## 10888 2017 April 15
## 10889 2017 April 15
## 10890 2017 April 15
## 10891 2017 April 15
## 10892 2017 April 15
## 10893 2017 April 15
## 10894 2017 April 15
## 10895 2017 April 15
## 10896 2017 April 15
## 10897 2017 April 15
## 10898 2017 April 15
## 10899 2017 April 15
## 10900 2017 April 15
## 10901 2017 April 15
## 10902 2017 April 15
## 10903 2017 April 15
## 10904 2017 April 15
## 10905 2017 April 15
## 10906 2017 April 15
## 10907 2017 April 15
## 10908 2017 April 15
## 10909 2017 April 15
## 10910 2017 April 15
## 10911 2017 April 15
## 10912 2017 April 15
## 10913 2017 April 15
## 10914 2017 April 15
## 10915 2017 April 15
## 10916 2017 April 15
## 10917 2017 April 15
## 10918 2017 April 15
## 10919 2017 April 15
## 10920 2017 April 15
## 10921 2017 April 15
## 10922 2017 April 15
## 10923 2017 April 15
## 10924 2017 April 15
## 10925 2017 April 15
## 10926 2017 April 15
## 10927 2017 April 15
## 10928 2017 April 15
## 10929 2017 April 15
## 10930 2017 April 15
## 10931 2017 April 15
## 10932 2017 April 15
## 10933 2017 April 15
## 10934 2017 April 15
## 10935 2017 April 15
## 10936 2017 April 15
## 10937 2017 April 15
## 10938 2017 April 15
## 10939 2017 April 15
## 10940 2017 April 15
## 10941 2017 April 15
## 10942 2017 April 15
## 10943 2017 April 15
## 10944 2017 April 15
## 10945 2017 April 15
## 10946 2017 April 15
## 10947 2017 April 15
## 10948 2017 April 15
## 10949 2017 April 15
## 10950 2017 April 15
## 10951 2017 April 15
## 10952 2017 April 15
## 10953 2017 April 15
## 10954 2017 April 15
## 10955 2017 April 15
## 10956 2017 April 15
## 10957 2017 April 15
## 10958 2017 April 15
## 10959 2017 April 15
## 10960 2017 April 15
## 10961 2017 April 15
## 10962 2017 April 15
## 10963 2017 April 15
## 10964 2017 April 15
## 10965 2017 April 15
## 10966 2017 April 15
## 10967 2017 April 15
## 10968 2017 April 15
## 10969 2017 April 15
## 10970 2017 April 15
## 10971 2017 April 15
## 10972 2017 April 15
## 10973 2017 April 15
## 10974 2017 April 15
## 10975 2017 April 15
## 10976 2017 April 15
## 10977 2017 April 15
## 10978 2017 April 15
## 10979 2017 April 15
## 10980 2017 April 15
## 10981 2017 April 15
## 10982 2017 April 15
## 10983 2017 April 15
## 10984 2017 April 15
## 10985 2017 April 15
## 10986 2017 April 15
## 10987 2017 April 15
## 10988 2017 April 15
## 10989 2017 April 15
## 10990 2017 April 15
## 10991 2017 April 15
## 10992 2017 April 15
## 10993 2017 April 15
## 10994 2017 April 15
## 10995 2017 April 15
## 10996 2017 April 15
## 10997 2017 April 15
## 10998 2017 April 15
## 10999 2017 April 15
## 11000 2017 April 15
## 11001 2017 April 15
## 11002 2017 April 15
## 11003 2017 April 15
## 11004 2017 April 15
## 11005 2017 April 15
## 11006 2017 April 15
## 11007 2017 April 15
## 11008 2017 April 15
## 11009 2017 April 15
## 11010 2017 April 15
## 11011 2017 April 15
## 11012 2017 April 15
## 11013 2017 April 15
## 11014 2017 April 15
## 11015 2017 April 15
## 11016 2017 April 15
## 11017 2017 April 15
## 11018 2017 April 15
## 11019 2017 April 15
## 11020 2017 April 15
## 11021 2017 April 15
## 11022 2017 April 15
## 11023 2017 April 15
## 11024 2017 April 15
## 11025 2017 April 15
## 11026 2017 April 15
## 11027 2017 April 15
## 11028 2017 April 15
## 11029 2017 April 15
## 11030 2017 April 15
## 11031 2017 April 15
## 11032 2017 April 15
## 11033 2017 April 15
## 11034 2017 April 15
## 11035 2017 April 15
## 11036 2017 April 15
## 11037 2017 April 15
## 11038 2017 April 15
## 11039 2017 April 15
## 11040 2017 April 15
## 11041 2017 April 15
## 11042 2017 April 15
## 11043 2017 April 15
## 11044 2017 April 15
## 11045 2017 April 15
## 11046 2017 April 16
## 11047 2017 April 16
## 11048 2017 April 16
## 11049 2017 April 16
## 11050 2017 April 16
## 11051 2017 April 16
## 11052 2017 April 16
## 11053 2017 April 16
## 11054 2017 April 16
## 11055 2017 April 16
## 11056 2017 April 16
## 11057 2017 April 16
## 11058 2017 April 16
## 11059 2017 April 16
## 11060 2017 April 16
## 11061 2017 April 16
## 11062 2017 April 16
## 11063 2017 April 16
## 11064 2017 April 16
## 11065 2017 April 16
## 11066 2017 April 16
## 11067 2017 April 16
## 11068 2017 April 16
## 11069 2017 April 16
## 11070 2017 April 16
## 11071 2017 April 16
## 11072 2017 April 16
## 11073 2017 April 16
## 11074 2017 April 16
## 11075 2017 April 16
## 11076 2017 April 16
## 11077 2017 April 16
## 11078 2017 April 16
## 11079 2017 April 16
## 11080 2017 April 16
## 11081 2017 April 16
## 11082 2017 April 16
## 11083 2017 April 16
## 11084 2017 April 16
## 11085 2017 April 16
## 11086 2017 April 16
## 11087 2017 April 16
## 11088 2017 April 16
## 11089 2017 April 16
## 11090 2017 April 16
## 11091 2017 April 16
## 11092 2017 April 16
## 11093 2017 April 16
## 11094 2017 April 16
## 11095 2017 April 16
## 11096 2017 April 16
## 11097 2017 April 16
## 11098 2017 April 16
## 11099 2017 April 16
## 11100 2017 April 16
## 11101 2017 April 16
## 11102 2017 April 16
## 11103 2017 April 16
## 11104 2017 April 16
## 11105 2017 April 16
## 11106 2017 April 16
## 11107 2017 April 16
## 11108 2017 April 16
## 11109 2017 April 16
## 11110 2017 April 16
## 11111 2017 April 16
## 11112 2017 April 16
## 11113 2017 April 16
## 11114 2017 April 16
## 11115 2017 April 16
## 11116 2017 April 16
## 11117 2017 April 16
## 11118 2017 April 16
## 11119 2017 April 16
## 11120 2017 April 16
## 11121 2017 April 16
## 11122 2017 April 16
## 11123 2017 April 16
## 11124 2017 April 16
## 11125 2017 April 16
## 11126 2017 April 16
## 11127 2017 April 16
## 11128 2017 April 16
## 11129 2017 April 16
## 11130 2017 April 16
## 11131 2017 April 16
## 11132 2017 April 16
## 11133 2017 April 16
## 11134 2017 April 16
## 11135 2017 April 16
## 11136 2017 April 16
## 11137 2017 April 16
## 11138 2017 April 16
## 11139 2017 April 16
## 11140 2017 April 16
## 11141 2017 April 16
## 11142 2017 April 16
## 11143 2017 April 16
## 11144 2017 April 16
## 11145 2017 April 16
## 11146 2017 April 16
## 11147 2017 April 16
## 11148 2017 April 16
## 11149 2017 April 16
## 11150 2017 April 16
## 11151 2017 April 16
## 11152 2017 April 17
## 11153 2017 April 17
## 11154 2017 April 17
## 11155 2017 April 17
## 11156 2017 April 17
## 11157 2017 April 17
## 11158 2017 April 17
## 11159 2017 April 17
## 11160 2017 April 17
## 11161 2017 April 17
## 11162 2017 April 17
## 11163 2017 April 17
## 11164 2017 April 17
## 11165 2017 April 17
## 11166 2017 April 17
## 11167 2017 April 17
## 11168 2017 April 17
## 11169 2017 April 17
## 11170 2017 April 17
## 11171 2017 April 17
## 11172 2017 April 17
## 11173 2017 April 17
## 11174 2017 April 17
## 11175 2017 April 17
## 11176 2017 April 17
## 11177 2017 April 17
## 11178 2017 April 17
## 11179 2017 April 17
## 11180 2017 April 17
## 11181 2017 April 17
## 11182 2017 April 17
## 11183 2017 April 17
## 11184 2017 April 17
## 11185 2017 April 17
## 11186 2017 April 17
## 11187 2017 April 17
## 11188 2017 April 17
## 11189 2017 April 17
## 11190 2017 April 17
## 11191 2017 April 17
## 11192 2017 April 17
## 11193 2017 April 17
## 11194 2017 April 17
## 11195 2017 April 17
## 11196 2017 April 17
## 11197 2017 April 17
## 11198 2017 April 17
## 11199 2017 April 17
## 11200 2017 April 17
## 11201 2017 April 17
## 11202 2017 April 17
## 11203 2017 April 17
## 11204 2017 April 17
## 11205 2017 April 17
## 11206 2017 April 17
## 11207 2017 April 17
## 11208 2017 April 17
## 11209 2017 April 17
## 11210 2017 April 17
## 11211 2017 April 17
## 11212 2017 April 17
## 11213 2017 April 17
## 11214 2017 April 17
## 11215 2017 April 17
## 11216 2017 April 17
## 11217 2017 April 17
## 11218 2017 April 17
## 11219 2017 April 17
## 11220 2017 April 17
## 11221 2017 April 17
## 11222 2017 April 17
## 11223 2017 April 17
## 11224 2017 April 17
## 11225 2017 April 17
## 11226 2017 April 17
## 11227 2017 April 17
## 11228 2017 April 17
## 11229 2017 April 17
## 11230 2017 April 17
## 11231 2017 April 17
## 11232 2017 April 17
## 11233 2017 April 17
## 11234 2017 April 17
## 11235 2017 April 17
## 11236 2017 April 17
## 11237 2017 April 17
## 11238 2017 April 17
## 11239 2017 April 17
## 11240 2017 April 17
## 11241 2017 April 17
## 11242 2017 April 17
## 11243 2017 April 17
## 11244 2017 April 17
## 11245 2017 April 17
## 11246 2017 April 17
## 11247 2017 April 17
## 11248 2017 April 17
## 11249 2017 April 17
## 11250 2017 April 17
## 11251 2017 April 17
## 11252 2017 April 17
## 11253 2017 April 17
## 11254 2017 April 17
## 11255 2017 April 17
## 11256 2017 April 17
## 11257 2017 April 17
## 11258 2017 April 18
## 11259 2017 April 18
## 11260 2017 April 18
## 11261 2017 April 18
## 11262 2017 April 18
## 11263 2017 April 18
## 11264 2017 April 18
## 11265 2017 April 18
## 11266 2017 April 18
## 11267 2017 April 18
## 11268 2017 April 18
## 11269 2017 April 18
## 11270 2017 April 18
## 11271 2017 April 18
## 11272 2017 April 18
## 11273 2017 April 18
## 11274 2017 April 18
## 11275 2017 April 18
## 11276 2017 April 18
## 11277 2017 April 18
## 11278 2017 April 18
## 11279 2017 April 18
## 11280 2017 April 18
## 11281 2017 April 18
## 11282 2017 April 18
## 11283 2017 April 18
## 11284 2017 April 18
## 11285 2017 April 18
## 11286 2017 April 18
## 11287 2017 April 18
## 11288 2017 April 18
## 11289 2017 May 18
## 11290 2017 May 18
## 11291 2017 May 18
## 11292 2017 May 18
## 11293 2017 May 18
## 11294 2017 May 18
## 11295 2017 May 18
## 11296 2017 May 18
## 11297 2017 May 18
## 11298 2017 May 18
## 11299 2017 May 18
## 11300 2017 May 18
## 11301 2017 May 18
## 11302 2017 May 18
## 11303 2017 May 18
## 11304 2017 May 18
## 11305 2017 May 18
## 11306 2017 May 18
## 11307 2017 May 18
## 11308 2017 May 18
## 11309 2017 May 18
## 11310 2017 May 18
## 11311 2017 May 18
## 11312 2017 May 18
## 11313 2017 May 18
## 11314 2017 May 18
## 11315 2017 May 18
## 11316 2017 May 18
## 11317 2017 May 18
## 11318 2017 May 18
## 11319 2017 May 18
## 11320 2017 May 18
## 11321 2017 May 18
## 11322 2017 May 18
## 11323 2017 May 18
## 11324 2017 May 18
## 11325 2017 May 18
## 11326 2017 May 18
## 11327 2017 May 18
## 11328 2017 May 18
## 11329 2017 May 18
## 11330 2017 May 18
## 11331 2017 May 18
## 11332 2017 May 18
## 11333 2017 May 18
## 11334 2017 May 18
## 11335 2017 May 18
## 11336 2017 May 18
## 11337 2017 May 18
## 11338 2017 May 18
## 11339 2017 May 18
## 11340 2017 May 18
## 11341 2017 May 18
## 11342 2017 May 18
## 11343 2017 May 18
## 11344 2017 May 18
## 11345 2017 May 18
## 11346 2017 May 18
## 11347 2017 May 18
## 11348 2017 May 18
## 11349 2017 May 18
## 11350 2017 May 18
## 11351 2017 May 18
## 11352 2017 May 18
## 11353 2017 May 18
## 11354 2017 May 18
## 11355 2017 May 18
## 11356 2017 May 18
## 11357 2017 May 18
## 11358 2017 May 18
## 11359 2017 May 18
## 11360 2017 May 18
## 11361 2017 May 18
## 11362 2017 May 18
## 11363 2017 May 18
## 11364 2017 May 18
## 11365 2017 May 18
## 11366 2017 May 18
## 11367 2017 May 18
## 11368 2017 May 18
## 11369 2017 May 18
## 11370 2017 May 18
## 11371 2017 May 18
## 11372 2017 May 18
## 11373 2017 May 18
## 11374 2017 May 18
## 11375 2017 May 18
## 11376 2017 May 18
## 11377 2017 May 18
## 11378 2017 May 18
## 11379 2017 May 18
## 11380 2017 May 18
## 11381 2017 May 18
## 11382 2017 May 18
## 11383 2017 May 18
## 11384 2017 May 18
## 11385 2017 May 18
## 11386 2017 May 18
## 11387 2017 May 18
## 11388 2017 May 18
## 11389 2017 May 18
## 11390 2017 May 18
## 11391 2017 May 18
## 11392 2017 May 18
## 11393 2017 May 18
## 11394 2017 May 18
## 11395 2017 May 18
## 11396 2017 May 18
## 11397 2017 May 18
## 11398 2017 May 18
## 11399 2017 May 18
## 11400 2017 May 18
## 11401 2017 May 18
## 11402 2017 May 18
## 11403 2017 May 18
## 11404 2017 May 18
## 11405 2017 May 18
## 11406 2017 May 18
## 11407 2017 May 18
## 11408 2017 May 18
## 11409 2017 May 18
## 11410 2017 May 18
## 11411 2017 May 18
## 11412 2017 May 18
## 11413 2017 May 18
## 11414 2017 May 18
## 11415 2017 May 18
## 11416 2017 May 18
## 11417 2017 May 18
## 11418 2017 May 18
## 11419 2017 May 18
## 11420 2017 May 18
## 11421 2017 May 18
## 11422 2017 May 18
## 11423 2017 May 19
## 11424 2017 May 19
## 11425 2017 May 19
## 11426 2017 May 19
## 11427 2017 May 19
## 11428 2017 May 19
## 11429 2017 May 19
## 11430 2017 May 19
## 11431 2017 May 19
## 11432 2017 May 19
## 11433 2017 May 19
## 11434 2017 May 19
## 11435 2017 May 19
## 11436 2017 May 19
## 11437 2017 May 19
## 11438 2017 May 19
## 11439 2017 May 19
## 11440 2017 May 19
## 11441 2017 May 19
## 11442 2017 May 19
## 11443 2017 May 19
## 11444 2017 May 19
## 11445 2017 May 19
## 11446 2017 May 19
## 11447 2017 May 19
## 11448 2017 May 19
## 11449 2017 May 19
## 11450 2017 May 19
## 11451 2017 May 19
## 11452 2017 May 19
## 11453 2017 May 19
## 11454 2017 May 19
## 11455 2017 May 19
## 11456 2017 May 19
## 11457 2017 May 19
## 11458 2017 May 19
## 11459 2017 May 19
## 11460 2017 May 19
## 11461 2017 May 19
## 11462 2017 May 19
## 11463 2017 May 19
## 11464 2017 May 19
## 11465 2017 May 19
## 11466 2017 May 19
## 11467 2017 May 19
## 11468 2017 May 19
## 11469 2017 May 19
## 11470 2017 May 19
## 11471 2017 May 19
## 11472 2017 May 19
## 11473 2017 May 19
## 11474 2017 May 19
## 11475 2017 May 19
## 11476 2017 May 19
## 11477 2017 May 19
## 11478 2017 May 19
## 11479 2017 May 19
## 11480 2017 May 19
## 11481 2017 May 19
## 11482 2017 May 19
## 11483 2017 May 19
## 11484 2017 May 19
## 11485 2017 May 19
## 11486 2017 May 19
## 11487 2017 May 19
## 11488 2017 May 19
## 11489 2017 May 19
## 11490 2017 May 19
## 11491 2017 May 19
## 11492 2017 May 19
## 11493 2017 May 19
## 11494 2017 May 19
## 11495 2017 May 19
## 11496 2017 May 19
## 11497 2017 May 19
## 11498 2017 May 19
## 11499 2017 May 19
## 11500 2017 May 19
## 11501 2017 May 19
## 11502 2017 May 19
## 11503 2017 May 19
## 11504 2017 May 19
## 11505 2017 May 19
## 11506 2017 May 19
## 11507 2017 May 19
## 11508 2017 May 19
## 11509 2017 May 19
## 11510 2017 May 19
## 11511 2017 May 19
## 11512 2017 May 19
## 11513 2017 May 19
## 11514 2017 May 19
## 11515 2017 May 19
## 11516 2017 May 19
## 11517 2017 May 19
## 11518 2017 May 19
## 11519 2017 May 19
## 11520 2017 May 19
## 11521 2017 May 19
## 11522 2017 May 19
## 11523 2017 May 19
## 11524 2017 May 19
## 11525 2017 May 19
## 11526 2017 May 19
## 11527 2017 May 19
## 11528 2017 May 19
## 11529 2017 May 20
## 11530 2017 May 20
## 11531 2017 May 20
## 11532 2017 May 20
## 11533 2017 May 20
## 11534 2017 May 20
## 11535 2017 May 20
## 11536 2017 May 20
## 11537 2017 May 20
## 11538 2017 May 20
## 11539 2017 May 20
## 11540 2017 May 20
## 11541 2017 May 20
## 11542 2017 May 20
## 11543 2017 May 20
## 11544 2017 May 20
## 11545 2017 May 20
## 11546 2017 May 20
## 11547 2017 May 20
## 11548 2017 May 20
## 11549 2017 May 20
## 11550 2017 May 20
## 11551 2017 May 20
## 11552 2017 May 20
## 11553 2017 May 20
## 11554 2017 May 20
## 11555 2017 May 20
## 11556 2017 May 20
## 11557 2017 May 20
## 11558 2017 May 20
## 11559 2017 May 20
## 11560 2017 May 20
## 11561 2017 May 20
## 11562 2017 May 20
## 11563 2017 May 20
## 11564 2017 May 20
## 11565 2017 May 20
## 11566 2017 May 20
## 11567 2017 May 20
## 11568 2017 May 20
## 11569 2017 May 20
## 11570 2017 May 20
## 11571 2017 May 20
## 11572 2017 May 20
## 11573 2017 May 20
## 11574 2017 May 20
## 11575 2017 May 20
## 11576 2017 May 20
## 11577 2017 May 20
## 11578 2017 May 20
## 11579 2017 May 20
## 11580 2017 May 20
## 11581 2017 May 20
## 11582 2017 May 20
## 11583 2017 May 20
## 11584 2017 May 20
## 11585 2017 May 20
## 11586 2017 May 20
## 11587 2017 May 20
## 11588 2017 May 20
## 11589 2017 May 20
## 11590 2017 May 20
## 11591 2017 May 20
## 11592 2017 May 20
## 11593 2017 May 20
## 11594 2017 May 20
## 11595 2017 May 20
## 11596 2017 May 20
## 11597 2017 May 20
## 11598 2017 May 20
## 11599 2017 May 20
## 11600 2017 May 20
## 11601 2017 May 20
## 11602 2017 May 20
## 11603 2017 May 20
## 11604 2017 May 20
## 11605 2017 May 20
## 11606 2017 May 20
## 11607 2017 May 20
## 11608 2017 May 20
## 11609 2017 May 21
## 11610 2017 May 21
## 11611 2017 May 21
## 11612 2017 May 21
## 11613 2017 May 21
## 11614 2017 May 21
## 11615 2017 May 21
## 11616 2017 May 21
## 11617 2017 May 21
## 11618 2017 May 21
## 11619 2017 May 21
## 11620 2017 May 21
## 11621 2017 May 21
## 11622 2017 May 21
## 11623 2017 May 21
## 11624 2017 May 21
## 11625 2017 May 21
## 11626 2017 May 21
## 11627 2017 May 21
## 11628 2017 May 21
## 11629 2017 May 21
## 11630 2017 May 21
## 11631 2017 May 21
## 11632 2017 May 21
## 11633 2017 May 21
## 11634 2017 May 21
## 11635 2017 May 21
## 11636 2017 May 21
## 11637 2017 May 21
## 11638 2017 May 21
## 11639 2017 May 21
## 11640 2017 May 21
## 11641 2017 May 21
## 11642 2017 May 21
## 11643 2017 May 21
## 11644 2017 May 21
## 11645 2017 May 21
## 11646 2017 May 21
## 11647 2017 May 21
## 11648 2017 May 21
## 11649 2017 May 21
## 11650 2017 May 21
## 11651 2017 May 21
## 11652 2017 May 21
## 11653 2017 May 21
## 11654 2017 May 21
## 11655 2017 May 21
## 11656 2017 May 21
## 11657 2017 May 21
## 11658 2017 May 21
## 11659 2017 May 21
## 11660 2017 May 21
## 11661 2017 May 21
## 11662 2017 May 21
## 11663 2017 May 21
## 11664 2017 May 21
## 11665 2017 May 21
## 11666 2017 May 21
## 11667 2017 May 21
## 11668 2017 May 21
## 11669 2017 May 21
## 11670 2017 May 21
## 11671 2017 May 21
## 11672 2017 May 21
## 11673 2017 May 21
## 11674 2017 May 21
## 11675 2017 May 21
## 11676 2017 May 21
## 11677 2017 May 21
## 11678 2017 May 21
## 11679 2017 May 21
## 11680 2017 May 21
## 11681 2017 May 21
## 11682 2017 May 21
## 11683 2017 May 21
## 11684 2017 May 21
## 11685 2017 May 21
## 11686 2017 May 21
## 11687 2017 May 21
## 11688 2017 May 21
## 11689 2017 May 21
## 11690 2017 May 21
## 11691 2017 May 21
## 11692 2017 May 21
## 11693 2017 May 21
## 11694 2017 May 21
## 11695 2017 May 21
## 11696 2017 May 21
## 11697 2017 May 21
## 11698 2017 May 21
## 11699 2017 May 21
## 11700 2017 May 21
## 11701 2017 May 21
## 11702 2017 May 21
## 11703 2017 May 21
## 11704 2017 May 21
## 11705 2017 May 21
## 11706 2017 May 21
## 11707 2017 May 21
## 11708 2017 May 21
## 11709 2017 May 21
## 11710 2017 May 21
## 11711 2017 May 21
## 11712 2017 May 21
## 11713 2017 May 21
## 11714 2017 May 21
## 11715 2017 May 21
## 11716 2017 May 21
## 11717 2017 May 21
## 11718 2017 May 21
## 11719 2017 May 21
## 11720 2017 May 21
## 11721 2017 May 21
## 11722 2017 May 21
## 11723 2017 May 21
## 11724 2017 May 21
## 11725 2017 May 21
## 11726 2017 May 21
## 11727 2017 May 21
## 11728 2017 May 21
## 11729 2017 May 21
## 11730 2017 May 21
## 11731 2017 May 21
## 11732 2017 May 21
## 11733 2017 May 21
## 11734 2017 May 21
## 11735 2017 May 21
## 11736 2017 May 21
## 11737 2017 May 21
## 11738 2017 May 21
## 11739 2017 May 22
## 11740 2017 May 22
## 11741 2017 May 22
## 11742 2017 May 22
## 11743 2017 May 22
## 11744 2017 May 22
## 11745 2017 May 22
## 11746 2017 May 22
## 11747 2017 May 22
## 11748 2017 May 22
## 11749 2017 May 22
## 11750 2017 May 22
## 11751 2017 May 22
## 11752 2017 May 22
## 11753 2017 May 22
## 11754 2017 May 22
## 11755 2017 May 22
## 11756 2017 May 22
## 11757 2017 May 22
## 11758 2017 May 22
## 11759 2017 May 22
## 11760 2017 May 22
## 11761 2017 May 22
## 11762 2017 May 22
## 11763 2017 May 22
## 11764 2017 May 22
## 11765 2017 May 22
## 11766 2017 May 22
## 11767 2017 May 22
## 11768 2017 May 22
## 11769 2017 May 22
## 11770 2017 May 22
## 11771 2017 May 22
## 11772 2017 May 22
## 11773 2017 May 22
## 11774 2017 May 22
## 11775 2017 May 22
## 11776 2017 May 22
## 11777 2017 May 22
## 11778 2017 May 22
## 11779 2017 May 22
## 11780 2017 May 22
## 11781 2017 May 22
## 11782 2017 May 22
## 11783 2017 May 22
## 11784 2017 May 22
## 11785 2017 May 22
## 11786 2017 May 22
## 11787 2017 May 22
## 11788 2017 May 22
## 11789 2017 May 22
## 11790 2017 May 22
## 11791 2017 May 22
## 11792 2017 May 22
## 11793 2017 May 22
## 11794 2017 May 22
## 11795 2017 May 22
## 11796 2017 May 22
## 11797 2017 May 22
## 11798 2017 May 22
## 11799 2017 May 22
## 11800 2017 May 22
## 11801 2017 May 22
## 11802 2017 May 22
## 11803 2017 May 22
## 11804 2017 May 22
## 11805 2017 May 22
## 11806 2017 May 22
## 11807 2017 May 22
## 11808 2017 May 22
## 11809 2017 May 22
## 11810 2017 May 22
## 11811 2017 May 22
## 11812 2017 May 22
## 11813 2017 May 22
## 11814 2017 May 22
## 11815 2017 May 22
## 11816 2017 May 22
## 11817 2017 May 22
## 11818 2017 May 22
## 11819 2017 May 22
## 11820 2017 May 22
## 11821 2017 May 22
## 11822 2017 May 22
## 11823 2017 May 22
## 11824 2017 May 22
## 11825 2017 May 22
## 11826 2017 May 22
## 11827 2017 May 22
## 11828 2017 May 22
## 11829 2017 May 22
## 11830 2017 May 22
## 11831 2017 May 22
## 11832 2017 June 22
## 11833 2017 June 22
## 11834 2017 June 22
## 11835 2017 June 22
## 11836 2017 June 22
## 11837 2017 June 22
## 11838 2017 June 22
## 11839 2017 June 22
## 11840 2017 June 22
## 11841 2017 June 22
## 11842 2017 June 22
## 11843 2017 June 22
## 11844 2017 June 22
## 11845 2017 June 22
## 11846 2017 June 22
## 11847 2017 June 22
## 11848 2017 June 22
## 11849 2017 June 22
## 11850 2017 June 22
## 11851 2017 June 22
## 11852 2017 June 22
## 11853 2017 June 22
## 11854 2017 June 22
## 11855 2017 June 22
## 11856 2017 June 22
## 11857 2017 June 22
## 11858 2017 June 22
## 11859 2017 June 22
## 11860 2017 June 22
## 11861 2017 June 22
## 11862 2017 June 22
## 11863 2017 June 22
## 11864 2017 June 22
## 11865 2017 June 22
## 11866 2017 June 22
## 11867 2017 June 22
## 11868 2017 June 22
## 11869 2017 June 22
## 11870 2017 June 22
## 11871 2017 June 22
## 11872 2017 June 22
## 11873 2017 June 22
## 11874 2017 June 22
## 11875 2017 June 22
## 11876 2017 June 22
## 11877 2017 June 22
## 11878 2017 June 22
## 11879 2017 June 22
## 11880 2017 June 22
## 11881 2017 June 22
## 11882 2017 June 22
## 11883 2017 June 22
## 11884 2017 June 22
## 11885 2017 June 22
## 11886 2017 June 22
## 11887 2017 June 22
## 11888 2017 June 22
## 11889 2017 June 22
## 11890 2017 June 22
## 11891 2017 June 22
## 11892 2017 June 22
## 11893 2017 June 22
## 11894 2017 June 22
## 11895 2017 June 22
## 11896 2017 June 22
## 11897 2017 June 22
## 11898 2017 June 22
## 11899 2017 June 22
## 11900 2017 June 22
## 11901 2017 June 22
## 11902 2017 June 22
## 11903 2017 June 22
## 11904 2017 June 22
## 11905 2017 June 22
## 11906 2017 June 22
## 11907 2017 June 22
## 11908 2017 June 22
## 11909 2017 June 22
## 11910 2017 June 22
## 11911 2017 June 22
## 11912 2017 June 22
## 11913 2017 June 22
## 11914 2017 June 22
## 11915 2017 June 22
## 11916 2017 June 22
## 11917 2017 June 22
## 11918 2017 June 22
## 11919 2017 June 22
## 11920 2017 June 22
## 11921 2017 June 22
## 11922 2017 June 22
## 11923 2017 June 22
## 11924 2017 June 22
## 11925 2017 June 22
## 11926 2017 June 22
## 11927 2017 June 22
## 11928 2017 June 22
## 11929 2017 June 22
## 11930 2017 June 22
## 11931 2017 June 22
## 11932 2017 June 22
## 11933 2017 June 22
## 11934 2017 June 22
## 11935 2017 June 22
## 11936 2017 June 22
## 11937 2017 June 22
## 11938 2017 June 22
## 11939 2017 June 22
## 11940 2017 June 23
## 11941 2017 June 23
## 11942 2017 June 23
## 11943 2017 June 23
## 11944 2017 June 23
## 11945 2017 June 23
## 11946 2017 June 23
## 11947 2017 June 23
## 11948 2017 June 23
## 11949 2017 June 23
## 11950 2017 June 23
## 11951 2017 June 23
## 11952 2017 June 23
## 11953 2017 June 23
## 11954 2017 June 23
## 11955 2017 June 23
## 11956 2017 June 23
## 11957 2017 June 23
## 11958 2017 June 23
## 11959 2017 June 23
## 11960 2017 June 23
## 11961 2017 June 23
## 11962 2017 June 23
## 11963 2017 June 23
## 11964 2017 June 23
## 11965 2017 June 23
## 11966 2017 June 23
## 11967 2017 June 23
## 11968 2017 June 23
## 11969 2017 June 23
## 11970 2017 June 23
## 11971 2017 June 23
## 11972 2017 June 23
## 11973 2017 June 23
## 11974 2017 June 23
## 11975 2017 June 23
## 11976 2017 June 23
## 11977 2017 June 23
## 11978 2017 June 23
## 11979 2017 June 23
## 11980 2017 June 23
## 11981 2017 June 23
## 11982 2017 June 23
## 11983 2017 June 23
## 11984 2017 June 23
## 11985 2017 June 23
## 11986 2017 June 23
## 11987 2017 June 23
## 11988 2017 June 23
## 11989 2017 June 23
## 11990 2017 June 23
## 11991 2017 June 23
## 11992 2017 June 23
## 11993 2017 June 23
## 11994 2017 June 23
## 11995 2017 June 23
## 11996 2017 June 23
## 11997 2017 June 23
## 11998 2017 June 23
## 11999 2017 June 23
## 12000 2017 June 23
## 12001 2017 June 23
## 12002 2017 June 23
## 12003 2017 June 23
## 12004 2017 June 23
## 12005 2017 June 23
## 12006 2017 June 23
## 12007 2017 June 23
## 12008 2017 June 23
## 12009 2017 June 23
## 12010 2017 June 23
## 12011 2017 June 23
## 12012 2017 June 23
## 12013 2017 June 23
## 12014 2017 June 23
## 12015 2017 June 23
## 12016 2017 June 23
## 12017 2017 June 23
## 12018 2017 June 23
## 12019 2017 June 23
## 12020 2017 June 23
## 12021 2017 June 23
## 12022 2017 June 23
## 12023 2017 June 23
## 12024 2017 June 23
## 12025 2017 June 23
## 12026 2017 June 23
## 12027 2017 June 23
## 12028 2017 June 23
## 12029 2017 June 23
## 12030 2017 June 23
## 12031 2017 June 23
## 12032 2017 June 23
## 12033 2017 June 23
## 12034 2017 June 23
## 12035 2017 June 23
## 12036 2017 June 23
## 12037 2017 June 23
## 12038 2017 June 23
## 12039 2017 June 23
## 12040 2017 June 23
## 12041 2017 June 23
## 12042 2017 June 23
## 12043 2017 June 23
## 12044 2017 June 23
## 12045 2017 June 23
## 12046 2017 June 23
## 12047 2017 June 23
## 12048 2017 June 23
## 12049 2017 June 23
## 12050 2017 June 23
## 12051 2017 June 23
## 12052 2017 June 23
## 12053 2017 June 23
## 12054 2017 June 23
## 12055 2017 June 23
## 12056 2017 June 24
## 12057 2017 June 24
## 12058 2017 June 24
## 12059 2017 June 24
## 12060 2017 June 24
## 12061 2017 June 24
## 12062 2017 June 24
## 12063 2017 June 24
## 12064 2017 June 24
## 12065 2017 June 24
## 12066 2017 June 24
## 12067 2017 June 24
## 12068 2017 June 24
## 12069 2017 June 24
## 12070 2017 June 24
## 12071 2017 June 24
## 12072 2017 June 24
## 12073 2017 June 24
## 12074 2017 June 24
## 12075 2017 June 24
## 12076 2017 June 24
## 12077 2017 June 24
## 12078 2017 June 24
## 12079 2017 June 24
## 12080 2017 June 24
## 12081 2017 June 24
## 12082 2017 June 24
## 12083 2017 June 24
## 12084 2017 June 24
## 12085 2017 June 24
## 12086 2017 June 24
## 12087 2017 June 24
## 12088 2017 June 24
## 12089 2017 June 24
## 12090 2017 June 24
## 12091 2017 June 24
## 12092 2017 June 24
## 12093 2017 June 24
## 12094 2017 June 24
## 12095 2017 June 24
## 12096 2017 June 24
## 12097 2017 June 24
## 12098 2017 June 24
## 12099 2017 June 24
## 12100 2017 June 24
## 12101 2017 June 24
## 12102 2017 June 24
## 12103 2017 June 24
## 12104 2017 June 24
## 12105 2017 June 24
## 12106 2017 June 24
## 12107 2017 June 24
## 12108 2017 June 24
## 12109 2017 June 24
## 12110 2017 June 24
## 12111 2017 June 24
## 12112 2017 June 24
## 12113 2017 June 24
## 12114 2017 June 24
## 12115 2017 June 24
## 12116 2017 June 24
## 12117 2017 June 24
## 12118 2017 June 24
## 12119 2017 June 24
## 12120 2017 June 24
## 12121 2017 June 24
## 12122 2017 June 24
## 12123 2017 June 24
## 12124 2017 June 24
## 12125 2017 June 24
## 12126 2017 June 24
## 12127 2017 June 24
## 12128 2017 June 24
## 12129 2017 June 24
## 12130 2017 June 24
## 12131 2017 June 24
## 12132 2017 June 24
## 12133 2017 June 24
## 12134 2017 June 24
## 12135 2017 June 24
## 12136 2017 June 24
## 12137 2017 June 24
## 12138 2017 June 24
## 12139 2017 June 24
## 12140 2017 June 24
## 12141 2017 June 24
## 12142 2017 June 24
## 12143 2017 June 24
## 12144 2017 June 24
## 12145 2017 June 24
## 12146 2017 June 24
## 12147 2017 June 24
## 12148 2017 June 24
## 12149 2017 June 24
## 12150 2017 June 24
## 12151 2017 June 24
## 12152 2017 June 24
## 12153 2017 June 24
## 12154 2017 June 24
## 12155 2017 June 24
## 12156 2017 June 24
## 12157 2017 June 24
## 12158 2017 June 24
## 12159 2017 June 24
## 12160 2017 June 24
## 12161 2017 June 24
## 12162 2017 June 24
## 12163 2017 June 24
## 12164 2017 June 24
## 12165 2017 June 24
## 12166 2017 June 24
## 12167 2017 June 24
## 12168 2017 June 24
## 12169 2017 June 24
## 12170 2017 June 24
## 12171 2017 June 24
## 12172 2017 June 24
## 12173 2017 June 24
## 12174 2017 June 24
## 12175 2017 June 24
## 12176 2017 June 24
## 12177 2017 June 24
## 12178 2017 June 24
## 12179 2017 June 24
## 12180 2017 June 24
## 12181 2017 June 24
## 12182 2017 June 24
## 12183 2017 June 24
## 12184 2017 June 24
## 12185 2017 June 24
## 12186 2017 June 24
## 12187 2017 June 24
## 12188 2017 June 24
## 12189 2017 June 24
## 12190 2017 June 24
## 12191 2017 June 24
## 12192 2017 June 24
## 12193 2017 June 24
## 12194 2017 June 24
## 12195 2017 June 24
## 12196 2017 June 24
## 12197 2017 June 24
## 12198 2017 June 24
## 12199 2017 June 24
## 12200 2017 June 24
## 12201 2017 June 24
## 12202 2017 June 24
## 12203 2017 June 24
## 12204 2017 June 24
## 12205 2017 June 24
## 12206 2017 June 25
## 12207 2017 June 25
## 12208 2017 June 25
## 12209 2017 June 25
## 12210 2017 June 25
## 12211 2017 June 25
## 12212 2017 June 25
## 12213 2017 June 25
## 12214 2017 June 25
## 12215 2017 June 25
## 12216 2017 June 25
## 12217 2017 June 25
## 12218 2017 June 25
## 12219 2017 June 25
## 12220 2017 June 25
## 12221 2017 June 25
## 12222 2017 June 25
## 12223 2017 June 25
## 12224 2017 June 25
## 12225 2017 June 25
## 12226 2017 June 25
## 12227 2017 June 25
## 12228 2017 June 25
## 12229 2017 June 25
## 12230 2017 June 25
## 12231 2017 June 25
## 12232 2017 June 25
## 12233 2017 June 25
## 12234 2017 June 25
## 12235 2017 June 25
## 12236 2017 June 25
## 12237 2017 June 25
## 12238 2017 June 25
## 12239 2017 June 25
## 12240 2017 June 25
## 12241 2017 June 25
## 12242 2017 June 25
## 12243 2017 June 25
## 12244 2017 June 25
## 12245 2017 June 25
## 12246 2017 June 25
## 12247 2017 June 25
## 12248 2017 June 25
## 12249 2017 June 25
## 12250 2017 June 25
## 12251 2017 June 25
## 12252 2017 June 25
## 12253 2017 June 25
## 12254 2017 June 25
## 12255 2017 June 25
## 12256 2017 June 25
## 12257 2017 June 25
## 12258 2017 June 25
## 12259 2017 June 25
## 12260 2017 June 25
## 12261 2017 June 25
## 12262 2017 June 25
## 12263 2017 June 25
## 12264 2017 June 25
## 12265 2017 June 25
## 12266 2017 June 25
## 12267 2017 June 25
## 12268 2017 June 25
## 12269 2017 June 25
## 12270 2017 June 25
## 12271 2017 June 25
## 12272 2017 June 25
## 12273 2017 June 25
## 12274 2017 June 25
## 12275 2017 June 25
## 12276 2017 June 25
## 12277 2017 June 25
## 12278 2017 June 25
## 12279 2017 June 25
## 12280 2017 June 25
## 12281 2017 June 25
## 12282 2017 June 25
## 12283 2017 June 25
## 12284 2017 June 25
## 12285 2017 June 25
## 12286 2017 June 25
## 12287 2017 June 25
## 12288 2017 June 25
## 12289 2017 June 25
## 12290 2017 June 25
## 12291 2017 June 25
## 12292 2017 June 25
## 12293 2017 June 25
## 12294 2017 June 25
## 12295 2017 June 25
## 12296 2017 June 25
## 12297 2017 June 25
## 12298 2017 June 25
## 12299 2017 June 25
## 12300 2017 June 25
## 12301 2017 June 25
## 12302 2017 June 25
## 12303 2017 June 25
## 12304 2017 June 25
## 12305 2017 June 25
## 12306 2017 June 25
## 12307 2017 June 25
## 12308 2017 June 25
## 12309 2017 June 25
## 12310 2017 June 25
## 12311 2017 June 25
## 12312 2017 June 25
## 12313 2017 June 25
## 12314 2017 June 25
## 12315 2017 June 25
## 12316 2017 June 25
## 12317 2017 June 25
## 12318 2017 June 25
## 12319 2017 June 25
## 12320 2017 June 25
## 12321 2017 June 25
## 12322 2017 June 25
## 12323 2017 June 25
## 12324 2017 June 25
## 12325 2017 June 25
## 12326 2017 June 25
## 12327 2017 June 25
## 12328 2017 June 25
## 12329 2017 June 25
## 12330 2017 June 25
## 12331 2017 June 25
## 12332 2017 June 25
## 12333 2017 June 25
## 12334 2017 June 25
## 12335 2017 June 25
## 12336 2017 June 25
## 12337 2017 June 26
## 12338 2017 June 26
## 12339 2017 June 26
## 12340 2017 June 26
## 12341 2017 June 26
## 12342 2017 June 26
## 12343 2017 June 26
## 12344 2017 June 26
## 12345 2017 June 26
## 12346 2017 June 26
## 12347 2017 June 26
## 12348 2017 June 26
## 12349 2017 June 26
## 12350 2017 June 26
## 12351 2017 June 26
## 12352 2017 June 26
## 12353 2017 June 26
## 12354 2017 June 26
## 12355 2017 June 26
## 12356 2017 June 26
## 12357 2017 June 26
## 12358 2017 June 26
## 12359 2017 June 26
## 12360 2017 June 26
## 12361 2017 June 26
## 12362 2017 June 26
## 12363 2017 June 26
## 12364 2017 June 26
## 12365 2017 June 26
## 12366 2017 June 26
## 12367 2017 June 26
## 12368 2017 June 26
## 12369 2017 June 26
## 12370 2017 June 26
## 12371 2017 June 26
## 12372 2017 June 26
## 12373 2017 June 26
## 12374 2017 June 26
## 12375 2017 June 26
## 12376 2017 June 26
## 12377 2017 June 26
## 12378 2017 June 26
## 12379 2017 June 26
## 12380 2017 June 26
## 12381 2017 June 26
## 12382 2017 June 26
## 12383 2017 June 26
## 12384 2017 June 26
## 12385 2017 June 26
## 12386 2017 June 26
## 12387 2017 June 26
## 12388 2017 June 26
## 12389 2017 June 26
## 12390 2017 June 26
## 12391 2017 June 26
## 12392 2017 June 26
## 12393 2017 June 26
## 12394 2017 June 26
## 12395 2017 June 26
## 12396 2017 June 26
## 12397 2017 June 26
## 12398 2017 June 26
## 12399 2017 June 26
## 12400 2017 June 26
## 12401 2017 June 26
## 12402 2017 June 26
## 12403 2017 June 26
## 12404 2017 June 26
## 12405 2017 June 26
## 12406 2017 June 26
## 12407 2017 June 26
## 12408 2017 June 26
## 12409 2017 June 26
## 12410 2017 June 26
## 12411 2017 June 26
## 12412 2017 June 26
## 12413 2017 June 26
## 12414 2017 June 26
## 12415 2017 June 26
## 12416 2017 June 26
## 12417 2017 June 26
## 12418 2017 June 26
## 12419 2017 June 26
## 12420 2017 June 26
## 12421 2017 June 26
## 12422 2017 June 26
## 12423 2017 June 26
## 12424 2017 June 26
## 12425 2017 June 26
## 12426 2017 June 26
## 12427 2017 June 26
## 12428 2017 June 26
## 12429 2017 June 26
## 12430 2017 June 26
## 12431 2017 June 26
## 12432 2017 June 26
## 12433 2017 June 26
## 12434 2017 June 26
## 12435 2017 June 26
## 12436 2017 June 26
## 12437 2017 June 26
## 12438 2017 June 26
## 12439 2017 June 26
## 12440 2017 June 26
## 12441 2017 June 26
## 12442 2017 June 26
## 12443 2017 June 26
## 12444 2017 June 26
## 12445 2017 June 26
## 12446 2017 June 26
## 12447 2017 June 26
## 12448 2017 June 26
## 12449 2017 June 26
## 12450 2017 June 26
## 12451 2017 June 26
## 12452 2017 June 26
## 12453 2017 June 26
## 12454 2017 June 26
## 12455 2017 June 26
## 12456 2017 June 26
## 12457 2017 June 26
## 12458 2017 June 26
## 12459 2017 June 26
## 12460 2017 July 26
## 12461 2017 July 26
## 12462 2017 July 26
## 12463 2017 July 26
## 12464 2017 July 26
## 12465 2017 July 26
## 12466 2017 July 26
## 12467 2017 July 26
## 12468 2017 July 26
## 12469 2017 July 26
## 12470 2017 July 26
## 12471 2017 July 26
## 12472 2017 July 26
## 12473 2017 July 26
## 12474 2017 July 26
## 12475 2017 July 26
## 12476 2017 July 26
## 12477 2017 July 26
## 12478 2017 July 26
## 12479 2017 July 26
## 12480 2017 July 26
## 12481 2017 July 26
## 12482 2017 July 26
## 12483 2017 July 26
## 12484 2017 July 26
## 12485 2017 July 26
## 12486 2017 July 26
## 12487 2017 July 26
## 12488 2017 July 26
## 12489 2017 July 26
## 12490 2017 July 26
## 12491 2017 July 26
## 12492 2017 July 26
## 12493 2017 July 26
## 12494 2017 July 26
## 12495 2017 July 26
## 12496 2017 July 26
## 12497 2017 July 26
## 12498 2017 July 27
## 12499 2017 July 27
## 12500 2017 July 27
## 12501 2017 July 27
## 12502 2017 July 27
## 12503 2017 July 27
## 12504 2017 July 27
## 12505 2017 July 27
## 12506 2017 July 27
## 12507 2017 July 27
## 12508 2017 July 27
## 12509 2017 July 27
## 12510 2017 July 27
## 12511 2017 July 27
## 12512 2017 July 27
## 12513 2017 July 27
## 12514 2017 July 27
## 12515 2017 July 27
## 12516 2017 July 27
## 12517 2017 July 27
## 12518 2017 July 27
## 12519 2017 July 27
## 12520 2017 July 27
## 12521 2017 July 27
## 12522 2017 July 27
## 12523 2017 July 27
## 12524 2017 July 27
## 12525 2017 July 27
## 12526 2017 July 27
## 12527 2017 July 27
## 12528 2017 July 27
## 12529 2017 July 27
## 12530 2017 July 27
## 12531 2017 July 27
## 12532 2017 July 27
## 12533 2017 July 27
## 12534 2017 July 27
## 12535 2017 July 27
## 12536 2017 July 27
## 12537 2017 July 27
## 12538 2017 July 27
## 12539 2017 July 27
## 12540 2017 July 27
## 12541 2017 July 27
## 12542 2017 July 27
## 12543 2017 July 27
## 12544 2017 July 27
## 12545 2017 July 27
## 12546 2017 July 27
## 12547 2017 July 27
## 12548 2017 July 27
## 12549 2017 July 27
## 12550 2017 July 27
## 12551 2017 July 27
## 12552 2017 July 27
## 12553 2017 July 27
## 12554 2017 July 27
## 12555 2017 July 27
## 12556 2017 July 27
## 12557 2017 July 27
## 12558 2017 July 27
## 12559 2017 July 27
## 12560 2017 July 27
## 12561 2017 July 27
## 12562 2017 July 27
## 12563 2017 July 27
## 12564 2017 July 27
## 12565 2017 July 27
## 12566 2017 July 27
## 12567 2017 July 27
## 12568 2017 July 27
## 12569 2017 July 27
## 12570 2017 July 27
## 12571 2017 July 27
## 12572 2017 July 27
## 12573 2017 July 27
## 12574 2017 July 27
## 12575 2017 July 27
## 12576 2017 July 27
## 12577 2017 July 27
## 12578 2017 July 27
## 12579 2017 July 27
## 12580 2017 July 27
## 12581 2017 July 27
## 12582 2017 July 27
## 12583 2017 July 27
## 12584 2017 July 27
## 12585 2017 July 27
## 12586 2017 July 27
## 12587 2017 July 27
## 12588 2017 July 27
## 12589 2017 July 27
## 12590 2017 July 27
## 12591 2017 July 27
## 12592 2017 July 27
## 12593 2017 July 27
## 12594 2017 July 27
## 12595 2017 July 27
## 12596 2017 July 27
## 12597 2017 July 27
## 12598 2017 July 27
## 12599 2017 July 27
## 12600 2017 July 27
## 12601 2017 July 27
## 12602 2017 July 27
## 12603 2017 July 27
## 12604 2017 July 27
## 12605 2017 July 27
## 12606 2017 July 27
## 12607 2017 July 27
## 12608 2017 July 27
## 12609 2017 July 27
## 12610 2017 July 27
## 12611 2017 July 27
## 12612 2017 July 27
## 12613 2017 July 27
## 12614 2017 July 27
## 12615 2017 July 27
## 12616 2017 July 27
## 12617 2017 July 27
## 12618 2017 July 27
## 12619 2017 July 27
## 12620 2017 July 27
## 12621 2017 July 27
## 12622 2017 July 27
## 12623 2017 July 27
## 12624 2017 July 27
## 12625 2017 July 27
## 12626 2017 July 27
## 12627 2017 July 27
## 12628 2017 July 27
## 12629 2017 July 28
## 12630 2017 July 28
## 12631 2017 July 28
## 12632 2017 July 28
## 12633 2017 July 28
## 12634 2017 July 28
## 12635 2017 July 28
## 12636 2017 July 28
## 12637 2017 July 28
## 12638 2017 July 28
## 12639 2017 July 28
## 12640 2017 July 28
## 12641 2017 July 28
## 12642 2017 July 28
## 12643 2017 July 28
## 12644 2017 July 28
## 12645 2017 July 28
## 12646 2017 July 28
## 12647 2017 July 28
## 12648 2017 July 28
## 12649 2017 July 28
## 12650 2017 July 28
## 12651 2017 July 28
## 12652 2017 July 28
## 12653 2017 July 28
## 12654 2017 July 28
## 12655 2017 July 28
## 12656 2017 July 28
## 12657 2017 July 28
## 12658 2017 July 28
## 12659 2017 July 28
## 12660 2017 July 28
## 12661 2017 July 28
## 12662 2017 July 28
## 12663 2017 July 28
## 12664 2017 July 28
## 12665 2017 July 28
## 12666 2017 July 28
## 12667 2017 July 28
## 12668 2017 July 28
## 12669 2017 July 28
## 12670 2017 July 28
## 12671 2017 July 28
## 12672 2017 July 28
## 12673 2017 July 28
## 12674 2017 July 28
## 12675 2017 July 28
## 12676 2017 July 28
## 12677 2017 July 28
## 12678 2017 July 28
## 12679 2017 July 28
## 12680 2017 July 28
## 12681 2017 July 28
## 12682 2017 July 28
## 12683 2017 July 28
## 12684 2017 July 28
## 12685 2017 July 28
## 12686 2017 July 28
## 12687 2017 July 28
## 12688 2017 July 28
## 12689 2017 July 28
## 12690 2017 July 28
## 12691 2017 July 28
## 12692 2017 July 28
## 12693 2017 July 28
## 12694 2017 July 28
## 12695 2017 July 28
## 12696 2017 July 28
## 12697 2017 July 28
## 12698 2017 July 28
## 12699 2017 July 28
## 12700 2017 July 28
## 12701 2017 July 28
## 12702 2017 July 28
## 12703 2017 July 28
## 12704 2017 July 28
## 12705 2017 July 28
## 12706 2017 July 28
## 12707 2017 July 28
## 12708 2017 July 28
## 12709 2017 July 28
## 12710 2017 July 28
## 12711 2017 July 28
## 12712 2017 July 28
## 12713 2017 July 28
## 12714 2017 July 28
## 12715 2017 July 28
## 12716 2017 July 28
## 12717 2017 July 28
## 12718 2017 July 28
## 12719 2017 July 28
## 12720 2017 July 28
## 12721 2017 July 28
## 12722 2017 July 28
## 12723 2017 July 28
## 12724 2017 July 28
## 12725 2017 July 28
## 12726 2017 July 28
## 12727 2017 July 28
## 12728 2017 July 28
## 12729 2017 July 28
## 12730 2017 July 28
## 12731 2017 July 28
## 12732 2017 July 28
## 12733 2017 July 28
## 12734 2017 July 28
## 12735 2017 July 28
## 12736 2017 July 28
## 12737 2017 July 28
## 12738 2017 July 28
## 12739 2017 July 28
## 12740 2017 July 28
## 12741 2017 July 28
## 12742 2017 July 28
## 12743 2017 July 28
## 12744 2017 July 28
## 12745 2017 July 28
## 12746 2017 July 28
## 12747 2017 July 28
## 12748 2017 July 28
## 12749 2017 July 28
## 12750 2017 July 28
## 12751 2017 July 28
## 12752 2017 July 28
## 12753 2017 July 28
## 12754 2017 July 28
## 12755 2017 July 28
## 12756 2017 July 28
## 12757 2017 July 28
## 12758 2017 July 28
## 12759 2017 July 28
## 12760 2017 July 28
## 12761 2017 July 28
## 12762 2017 July 28
## 12763 2017 July 28
## 12764 2017 July 28
## 12765 2017 July 29
## 12766 2017 July 29
## 12767 2017 July 29
## 12768 2017 July 29
## 12769 2017 July 29
## 12770 2017 July 29
## 12771 2017 July 29
## 12772 2017 July 29
## 12773 2017 July 29
## 12774 2017 July 29
## 12775 2017 July 29
## 12776 2017 July 29
## 12777 2017 July 29
## 12778 2017 July 29
## 12779 2017 July 29
## 12780 2017 July 29
## 12781 2017 July 29
## 12782 2017 July 29
## 12783 2017 July 29
## 12784 2017 July 29
## 12785 2017 July 29
## 12786 2017 July 29
## 12787 2017 July 29
## 12788 2017 July 29
## 12789 2017 July 29
## 12790 2017 July 29
## 12791 2017 July 29
## 12792 2017 July 29
## 12793 2017 July 29
## 12794 2017 July 29
## 12795 2017 July 29
## 12796 2017 July 29
## 12797 2017 July 29
## 12798 2017 July 29
## 12799 2017 July 29
## 12800 2017 July 29
## 12801 2017 July 29
## 12802 2017 July 29
## 12803 2017 July 29
## 12804 2017 July 29
## 12805 2017 July 29
## 12806 2017 July 29
## 12807 2017 July 29
## 12808 2017 July 29
## 12809 2017 July 29
## 12810 2017 July 29
## 12811 2017 July 29
## 12812 2017 July 29
## 12813 2017 July 29
## 12814 2017 July 29
## 12815 2017 July 29
## 12816 2017 July 29
## 12817 2017 July 29
## 12818 2017 July 29
## 12819 2017 July 29
## 12820 2017 July 29
## 12821 2017 July 29
## 12822 2017 July 29
## 12823 2017 July 29
## 12824 2017 July 29
## 12825 2017 July 29
## 12826 2017 July 29
## 12827 2017 July 29
## 12828 2017 July 29
## 12829 2017 July 29
## 12830 2017 July 29
## 12831 2017 July 29
## 12832 2017 July 29
## 12833 2017 July 29
## 12834 2017 July 29
## 12835 2017 July 29
## 12836 2017 July 29
## 12837 2017 July 29
## 12838 2017 July 29
## 12839 2017 July 29
## 12840 2017 July 29
## 12841 2017 July 29
## 12842 2017 July 29
## 12843 2017 July 29
## 12844 2017 July 29
## 12845 2017 July 29
## 12846 2017 July 29
## 12847 2017 July 29
## 12848 2017 July 29
## 12849 2017 July 29
## 12850 2017 July 29
## 12851 2017 July 29
## 12852 2017 July 29
## 12853 2017 July 29
## 12854 2017 July 29
## 12855 2017 July 29
## 12856 2017 July 29
## 12857 2017 July 29
## 12858 2017 July 29
## 12859 2017 July 29
## 12860 2017 July 29
## 12861 2017 July 29
## 12862 2017 July 29
## 12863 2017 July 29
## 12864 2017 July 29
## 12865 2017 July 29
## 12866 2017 July 29
## 12867 2017 July 29
## 12868 2017 July 29
## 12869 2017 July 29
## 12870 2017 July 29
## 12871 2017 July 29
## 12872 2017 July 29
## 12873 2017 July 29
## 12874 2017 July 29
## 12875 2017 July 29
## 12876 2017 July 29
## 12877 2017 July 29
## 12878 2017 July 29
## 12879 2017 July 29
## 12880 2017 July 29
## 12881 2017 July 29
## 12882 2017 July 29
## 12883 2017 July 29
## 12884 2017 July 29
## 12885 2017 July 29
## 12886 2017 July 29
## 12887 2017 July 29
## 12888 2017 July 29
## 12889 2017 July 29
## 12890 2017 July 29
## 12891 2017 July 29
## 12892 2017 July 29
## 12893 2017 July 29
## 12894 2017 July 29
## 12895 2017 July 29
## 12896 2017 July 29
## 12897 2017 July 29
## 12898 2017 July 29
## 12899 2017 July 29
## 12900 2017 July 29
## 12901 2017 July 29
## 12902 2017 July 29
## 12903 2017 July 29
## 12904 2017 July 29
## 12905 2017 July 29
## 12906 2017 July 29
## 12907 2017 July 29
## 12908 2017 July 29
## 12909 2017 July 29
## 12910 2017 July 29
## 12911 2017 July 29
## 12912 2017 July 29
## 12913 2017 July 29
## 12914 2017 July 30
## 12915 2017 July 30
## 12916 2017 July 30
## 12917 2017 July 30
## 12918 2017 July 30
## 12919 2017 July 30
## 12920 2017 July 30
## 12921 2017 July 30
## 12922 2017 July 30
## 12923 2017 July 30
## 12924 2017 July 30
## 12925 2017 July 30
## 12926 2017 July 30
## 12927 2017 July 30
## 12928 2017 July 30
## 12929 2017 July 30
## 12930 2017 July 30
## 12931 2017 July 30
## 12932 2017 July 30
## 12933 2017 July 30
## 12934 2017 July 30
## 12935 2017 July 30
## 12936 2017 July 30
## 12937 2017 July 30
## 12938 2017 July 30
## 12939 2017 July 30
## 12940 2017 July 30
## 12941 2017 July 30
## 12942 2017 July 30
## 12943 2017 July 30
## 12944 2017 July 30
## 12945 2017 July 30
## 12946 2017 July 30
## 12947 2017 July 30
## 12948 2017 July 30
## 12949 2017 July 30
## 12950 2017 July 30
## 12951 2017 July 30
## 12952 2017 July 30
## 12953 2017 July 30
## 12954 2017 July 30
## 12955 2017 July 30
## 12956 2017 July 30
## 12957 2017 July 30
## 12958 2017 July 30
## 12959 2017 July 30
## 12960 2017 July 30
## 12961 2017 July 30
## 12962 2017 July 30
## 12963 2017 July 30
## 12964 2017 July 30
## 12965 2017 July 30
## 12966 2017 July 30
## 12967 2017 July 30
## 12968 2017 July 30
## 12969 2017 July 30
## 12970 2017 July 30
## 12971 2017 July 30
## 12972 2017 July 30
## 12973 2017 July 30
## 12974 2017 July 30
## 12975 2017 July 30
## 12976 2017 July 30
## 12977 2017 July 30
## 12978 2017 July 30
## 12979 2017 July 30
## 12980 2017 July 30
## 12981 2017 July 30
## 12982 2017 July 30
## 12983 2017 July 30
## 12984 2017 July 30
## 12985 2017 July 30
## 12986 2017 July 30
## 12987 2017 July 30
## 12988 2017 July 30
## 12989 2017 July 30
## 12990 2017 July 30
## 12991 2017 July 30
## 12992 2017 July 30
## 12993 2017 July 30
## 12994 2017 July 30
## 12995 2017 July 30
## 12996 2017 July 30
## 12997 2017 July 30
## 12998 2017 July 30
## 12999 2017 July 30
## 13000 2017 July 30
## 13001 2017 July 30
## 13002 2017 July 30
## 13003 2017 July 30
## 13004 2017 July 30
## 13005 2017 July 30
## 13006 2017 July 30
## 13007 2017 July 30
## 13008 2017 July 30
## 13009 2017 July 30
## 13010 2017 July 30
## 13011 2017 July 30
## 13012 2017 July 30
## 13013 2017 July 30
## 13014 2017 July 30
## 13015 2017 July 30
## 13016 2017 July 30
## 13017 2017 July 30
## 13018 2017 July 30
## 13019 2017 July 30
## 13020 2017 July 30
## 13021 2017 July 30
## 13022 2017 July 30
## 13023 2017 July 30
## 13024 2017 July 30
## 13025 2017 July 30
## 13026 2017 July 30
## 13027 2017 July 30
## 13028 2017 July 30
## 13029 2017 July 30
## 13030 2017 July 30
## 13031 2017 July 30
## 13032 2017 July 30
## 13033 2017 July 30
## 13034 2017 July 30
## 13035 2017 July 30
## 13036 2017 July 30
## 13037 2017 July 30
## 13038 2017 July 30
## 13039 2017 July 30
## 13040 2017 July 30
## 13041 2017 July 30
## 13042 2017 July 30
## 13043 2017 July 30
## 13044 2017 July 30
## 13045 2017 July 30
## 13046 2017 July 30
## 13047 2017 July 30
## 13048 2017 July 30
## 13049 2017 July 30
## 13050 2017 July 30
## 13051 2017 July 30
## 13052 2017 July 30
## 13053 2017 July 30
## 13054 2017 July 30
## 13055 2017 July 30
## 13056 2017 July 30
## 13057 2017 July 30
## 13058 2017 July 30
## 13059 2017 July 30
## 13060 2017 July 30
## 13061 2017 July 30
## 13062 2017 July 30
## 13063 2017 July 30
## 13064 2017 July 30
## 13065 2017 July 30
## 13066 2017 July 30
## 13067 2017 July 30
## 13068 2017 July 30
## 13069 2017 July 30
## 13070 2017 July 30
## 13071 2017 July 31
## 13072 2017 July 31
## 13073 2017 July 31
## 13074 2017 July 31
## 13075 2017 July 31
## 13076 2017 July 31
## 13077 2017 July 31
## 13078 2017 July 31
## 13079 2017 July 31
## 13080 2017 July 31
## 13081 2017 July 31
## 13082 2017 July 31
## 13083 2017 July 31
## 13084 2017 July 31
## 13085 2017 July 31
## 13086 2017 July 31
## 13087 2017 July 31
## 13088 2017 July 31
## 13089 2017 July 31
## 13090 2017 July 31
## 13091 2017 July 31
## 13092 2017 July 31
## 13093 2017 July 31
## 13094 2017 July 31
## 13095 2017 July 31
## 13096 2017 July 31
## 13097 2017 July 31
## 13098 2017 July 31
## 13099 2017 July 31
## 13100 2017 July 31
## 13101 2017 July 31
## 13102 2017 July 31
## 13103 2017 July 31
## 13104 2017 July 31
## 13105 2017 July 31
## 13106 2017 July 31
## 13107 2017 July 31
## 13108 2017 July 31
## 13109 2017 July 31
## 13110 2017 July 31
## 13111 2017 July 31
## 13112 2017 July 31
## 13113 2017 July 31
## 13114 2017 July 31
## 13115 2017 July 31
## 13116 2017 August 31
## 13117 2017 August 31
## 13118 2017 August 31
## 13119 2017 August 31
## 13120 2017 August 31
## 13121 2017 August 31
## 13122 2017 August 31
## 13123 2017 August 31
## 13124 2017 August 31
## 13125 2017 August 31
## 13126 2017 August 31
## 13127 2017 August 31
## 13128 2017 August 31
## 13129 2017 August 31
## 13130 2017 August 31
## 13131 2017 August 31
## 13132 2017 August 31
## 13133 2017 August 31
## 13134 2017 August 31
## 13135 2017 August 31
## 13136 2017 August 31
## 13137 2017 August 31
## 13138 2017 August 31
## 13139 2017 August 31
## 13140 2017 August 31
## 13141 2017 August 31
## 13142 2017 August 31
## 13143 2017 August 31
## 13144 2017 August 31
## 13145 2017 August 31
## 13146 2017 August 31
## 13147 2017 August 31
## 13148 2017 August 31
## 13149 2017 August 31
## 13150 2017 August 31
## 13151 2017 August 31
## 13152 2017 August 31
## 13153 2017 August 31
## 13154 2017 August 31
## 13155 2017 August 31
## 13156 2017 August 31
## 13157 2017 August 31
## 13158 2017 August 31
## 13159 2017 August 31
## 13160 2017 August 31
## 13161 2017 August 31
## 13162 2017 August 31
## 13163 2017 August 31
## 13164 2017 August 31
## 13165 2017 August 31
## 13166 2017 August 31
## 13167 2017 August 31
## 13168 2017 August 31
## 13169 2017 August 31
## 13170 2017 August 31
## 13171 2017 August 31
## 13172 2017 August 31
## 13173 2017 August 31
## 13174 2017 August 31
## 13175 2017 August 31
## 13176 2017 August 31
## 13177 2017 August 31
## 13178 2017 August 31
## 13179 2017 August 31
## 13180 2017 August 31
## 13181 2017 August 31
## 13182 2017 August 31
## 13183 2017 August 31
## 13184 2017 August 31
## 13185 2017 August 31
## 13186 2017 August 31
## 13187 2017 August 31
## 13188 2017 August 31
## 13189 2017 August 31
## 13190 2017 August 31
## 13191 2017 August 31
## 13192 2017 August 31
## 13193 2017 August 31
## 13194 2017 August 31
## 13195 2017 August 31
## 13196 2017 August 31
## 13197 2017 August 31
## 13198 2017 August 31
## 13199 2017 August 31
## 13200 2017 August 31
## 13201 2017 August 31
## 13202 2017 August 31
## 13203 2017 August 31
## 13204 2017 August 31
## 13205 2017 August 31
## 13206 2017 August 31
## 13207 2017 August 31
## 13208 2017 August 31
## 13209 2017 August 31
## 13210 2017 August 31
## 13211 2017 August 31
## 13212 2017 August 31
## 13213 2017 August 31
## 13214 2017 August 31
## 13215 2017 August 31
## 13216 2017 August 31
## 13217 2017 August 31
## 13218 2017 August 31
## 13219 2017 August 31
## 13220 2017 August 31
## 13221 2017 August 31
## 13222 2017 August 31
## 13223 2017 August 31
## 13224 2017 August 31
## 13225 2017 August 31
## 13226 2017 August 31
## 13227 2017 August 31
## 13228 2017 August 31
## 13229 2017 August 31
## 13230 2017 August 31
## 13231 2017 August 31
## 13232 2017 August 31
## 13233 2017 August 31
## 13234 2017 August 31
## 13235 2017 August 31
## 13236 2017 August 31
## 13237 2017 August 31
## 13238 2017 August 31
## 13239 2017 August 31
## 13240 2017 August 31
## 13241 2017 August 31
## 13242 2017 August 32
## 13243 2017 August 32
## 13244 2017 August 32
## 13245 2017 August 32
## 13246 2017 August 32
## 13247 2017 August 32
## 13248 2017 August 32
## 13249 2017 August 32
## 13250 2017 August 32
## 13251 2017 August 32
## 13252 2017 August 32
## 13253 2017 August 32
## 13254 2017 August 32
## 13255 2017 August 32
## 13256 2017 August 32
## 13257 2017 August 32
## 13258 2017 August 32
## 13259 2017 August 32
## 13260 2017 August 32
## 13261 2017 August 32
## 13262 2017 August 32
## 13263 2017 August 32
## 13264 2017 August 32
## 13265 2017 August 32
## 13266 2017 August 32
## 13267 2017 August 32
## 13268 2017 August 32
## 13269 2017 August 32
## 13270 2017 August 32
## 13271 2017 August 32
## 13272 2017 August 32
## 13273 2017 August 32
## 13274 2017 August 32
## 13275 2017 August 32
## 13276 2017 August 32
## 13277 2017 August 32
## 13278 2017 August 32
## 13279 2017 August 32
## 13280 2017 August 32
## 13281 2017 August 32
## 13282 2017 August 32
## 13283 2017 August 32
## 13284 2017 August 32
## 13285 2017 August 32
## 13286 2017 August 32
## 13287 2017 August 32
## 13288 2017 August 32
## 13289 2017 August 32
## 13290 2017 August 32
## 13291 2017 August 32
## 13292 2017 August 32
## 13293 2017 August 32
## 13294 2017 August 32
## 13295 2017 August 32
## 13296 2017 August 32
## 13297 2017 August 32
## 13298 2017 August 32
## 13299 2017 August 32
## 13300 2017 August 32
## 13301 2017 August 32
## 13302 2017 August 32
## 13303 2017 August 32
## 13304 2017 August 32
## 13305 2017 August 32
## 13306 2017 August 32
## 13307 2017 August 32
## 13308 2017 August 32
## 13309 2017 August 32
## 13310 2017 August 32
## 13311 2017 August 32
## 13312 2017 August 32
## 13313 2017 August 32
## 13314 2017 August 32
## 13315 2017 August 32
## 13316 2017 August 32
## 13317 2017 August 32
## 13318 2017 August 32
## 13319 2017 August 32
## 13320 2017 August 32
## 13321 2017 August 32
## 13322 2017 August 32
## 13323 2017 August 32
## 13324 2017 August 32
## 13325 2017 August 32
## 13326 2017 August 32
## 13327 2017 August 32
## 13328 2017 August 32
## 13329 2017 August 32
## 13330 2017 August 32
## 13331 2017 August 32
## 13332 2017 August 32
## 13333 2017 August 32
## 13334 2017 August 32
## 13335 2017 August 32
## 13336 2017 August 32
## 13337 2017 August 32
## 13338 2017 August 32
## 13339 2017 August 32
## 13340 2017 August 32
## 13341 2017 August 32
## 13342 2017 August 32
## 13343 2017 August 32
## 13344 2017 August 32
## 13345 2017 August 32
## 13346 2017 August 32
## 13347 2017 August 32
## 13348 2017 August 32
## 13349 2017 August 32
## 13350 2017 August 32
## 13351 2017 August 32
## 13352 2017 August 32
## 13353 2017 August 32
## 13354 2017 August 32
## 13355 2017 August 32
## 13356 2017 August 32
## 13357 2017 August 32
## 13358 2017 August 32
## 13359 2017 August 32
## 13360 2017 August 32
## 13361 2017 August 32
## 13362 2017 August 32
## 13363 2017 August 32
## 13364 2017 August 32
## 13365 2017 August 32
## 13366 2017 August 32
## 13367 2017 August 32
## 13368 2017 August 32
## 13369 2017 August 32
## 13370 2017 August 32
## 13371 2017 August 32
## 13372 2017 August 32
## 13373 2017 August 32
## 13374 2017 August 32
## 13375 2017 August 32
## 13376 2017 August 32
## 13377 2017 August 32
## 13378 2017 August 32
## 13379 2017 August 32
## 13380 2017 August 32
## 13381 2017 August 32
## 13382 2017 August 33
## 13383 2017 August 33
## 13384 2017 August 33
## 13385 2017 August 33
## 13386 2017 August 33
## 13387 2017 August 33
## 13388 2017 August 33
## 13389 2017 August 33
## 13390 2017 August 33
## 13391 2017 August 33
## 13392 2017 August 33
## 13393 2017 August 33
## 13394 2017 August 33
## 13395 2017 August 33
## 13396 2017 August 33
## 13397 2017 August 33
## 13398 2017 August 33
## 13399 2017 August 33
## 13400 2017 August 33
## 13401 2017 August 33
## 13402 2017 August 33
## 13403 2017 August 33
## 13404 2017 August 33
## 13405 2017 August 33
## 13406 2017 August 33
## 13407 2017 August 33
## 13408 2017 August 33
## 13409 2017 August 33
## 13410 2017 August 33
## 13411 2017 August 33
## 13412 2017 August 33
## 13413 2017 August 33
## 13414 2017 August 33
## 13415 2017 August 33
## 13416 2017 August 33
## 13417 2017 August 33
## 13418 2017 August 33
## 13419 2017 August 33
## 13420 2017 August 33
## 13421 2017 August 33
## 13422 2017 August 33
## 13423 2017 August 33
## 13424 2017 August 33
## 13425 2017 August 33
## 13426 2017 August 33
## 13427 2017 August 33
## 13428 2017 August 33
## 13429 2017 August 33
## 13430 2017 August 33
## 13431 2017 August 33
## 13432 2017 August 33
## 13433 2017 August 33
## 13434 2017 August 33
## 13435 2017 August 33
## 13436 2017 August 33
## 13437 2017 August 33
## 13438 2017 August 33
## 13439 2017 August 33
## 13440 2017 August 33
## 13441 2017 August 33
## 13442 2017 August 33
## 13443 2017 August 33
## 13444 2017 August 33
## 13445 2017 August 33
## 13446 2017 August 33
## 13447 2017 August 33
## 13448 2017 August 33
## 13449 2017 August 33
## 13450 2017 August 33
## 13451 2017 August 33
## 13452 2017 August 33
## 13453 2017 August 33
## 13454 2017 August 33
## 13455 2017 August 33
## 13456 2017 August 33
## 13457 2017 August 33
## 13458 2017 August 33
## 13459 2017 August 33
## 13460 2017 August 33
## 13461 2017 August 33
## 13462 2017 August 33
## 13463 2017 August 33
## 13464 2017 August 33
## 13465 2017 August 33
## 13466 2017 August 33
## 13467 2017 August 33
## 13468 2017 August 33
## 13469 2017 August 33
## 13470 2017 August 33
## 13471 2017 August 33
## 13472 2017 August 33
## 13473 2017 August 33
## 13474 2017 August 33
## 13475 2017 August 33
## 13476 2017 August 33
## 13477 2017 August 33
## 13478 2017 August 33
## 13479 2017 August 33
## 13480 2017 August 33
## 13481 2017 August 33
## 13482 2017 August 33
## 13483 2017 August 33
## 13484 2017 August 33
## 13485 2017 August 33
## 13486 2017 August 33
## 13487 2017 August 33
## 13488 2017 August 33
## 13489 2017 August 33
## 13490 2017 August 33
## 13491 2017 August 33
## 13492 2017 August 33
## 13493 2017 August 33
## 13494 2017 August 33
## 13495 2017 August 33
## 13496 2017 August 33
## 13497 2017 August 33
## 13498 2017 August 33
## 13499 2017 August 33
## 13500 2017 August 33
## 13501 2017 August 33
## 13502 2017 August 33
## 13503 2017 August 33
## 13504 2017 August 33
## 13505 2017 August 33
## 13506 2017 August 33
## 13507 2017 August 33
## 13508 2017 August 33
## 13509 2017 August 33
## 13510 2017 August 33
## 13511 2017 August 33
## 13512 2017 August 33
## 13513 2017 August 33
## 13514 2017 August 33
## 13515 2017 August 33
## 13516 2017 August 33
## 13517 2017 August 33
## 13518 2017 August 33
## 13519 2017 August 33
## 13520 2017 August 33
## 13521 2017 August 33
## 13522 2017 August 33
## 13523 2017 August 33
## 13524 2017 August 33
## 13525 2017 August 33
## 13526 2017 August 33
## 13527 2017 August 33
## 13528 2017 August 33
## 13529 2017 August 33
## 13530 2017 August 33
## 13531 2017 August 33
## 13532 2017 August 33
## 13533 2017 August 33
## 13534 2017 August 33
## 13535 2017 August 33
## 13536 2017 August 33
## 13537 2017 August 33
## 13538 2017 August 33
## 13539 2017 August 33
## 13540 2017 August 33
## 13541 2017 August 33
## 13542 2017 August 33
## 13543 2017 August 33
## 13544 2017 August 33
## 13545 2017 August 33
## 13546 2017 August 33
## 13547 2017 August 33
## 13548 2017 August 33
## 13549 2017 August 33
## 13550 2017 August 33
## 13551 2017 August 33
## 13552 2017 August 33
## 13553 2017 August 33
## 13554 2017 August 33
## 13555 2017 August 33
## 13556 2017 August 33
## 13557 2017 August 33
## 13558 2017 August 33
## 13559 2017 August 33
## 13560 2017 August 33
## 13561 2017 August 33
## 13562 2017 August 33
## 13563 2017 August 34
## 13564 2017 August 34
## 13565 2017 August 34
## 13566 2017 August 34
## 13567 2017 August 34
## 13568 2017 August 34
## 13569 2017 August 34
## 13570 2017 August 34
## 13571 2017 August 34
## 13572 2017 August 34
## 13573 2017 August 34
## 13574 2017 August 34
## 13575 2017 August 34
## 13576 2017 August 34
## 13577 2017 August 34
## 13578 2017 August 34
## 13579 2017 August 34
## 13580 2017 August 34
## 13581 2017 August 34
## 13582 2017 August 34
## 13583 2017 August 34
## 13584 2017 August 34
## 13585 2017 August 34
## 13586 2017 August 34
## 13587 2017 August 34
## 13588 2017 August 34
## 13589 2017 August 34
## 13590 2017 August 34
## 13591 2017 August 34
## 13592 2017 August 34
## 13593 2017 August 34
## 13594 2017 August 34
## 13595 2017 August 34
## 13596 2017 August 34
## 13597 2017 August 34
## 13598 2017 August 34
## 13599 2017 August 34
## 13600 2017 August 34
## 13601 2017 August 34
## 13602 2017 August 34
## 13603 2017 August 34
## 13604 2017 August 34
## 13605 2017 August 34
## 13606 2017 August 34
## 13607 2017 August 34
## 13608 2017 August 34
## 13609 2017 August 34
## 13610 2017 August 34
## 13611 2017 August 34
## 13612 2017 August 34
## 13613 2017 August 34
## 13614 2017 August 34
## 13615 2017 August 34
## 13616 2017 August 34
## 13617 2017 August 34
## 13618 2017 August 34
## 13619 2017 August 34
## 13620 2017 August 34
## 13621 2017 August 34
## 13622 2017 August 34
## 13623 2017 August 34
## 13624 2017 August 34
## 13625 2017 August 34
## 13626 2017 August 34
## 13627 2017 August 34
## 13628 2017 August 34
## 13629 2017 August 34
## 13630 2017 August 34
## 13631 2017 August 34
## 13632 2017 August 34
## 13633 2017 August 34
## 13634 2017 August 34
## 13635 2017 August 34
## 13636 2017 August 34
## 13637 2017 August 34
## 13638 2017 August 34
## 13639 2017 August 34
## 13640 2017 August 34
## 13641 2017 August 34
## 13642 2017 August 34
## 13643 2017 August 34
## 13644 2017 August 34
## 13645 2017 August 34
## 13646 2017 August 34
## 13647 2017 August 34
## 13648 2017 August 34
## 13649 2017 August 34
## 13650 2017 August 34
## 13651 2017 August 34
## 13652 2017 August 34
## 13653 2017 August 34
## 13654 2017 August 34
## 13655 2017 August 34
## 13656 2017 August 34
## 13657 2017 August 34
## 13658 2017 August 34
## 13659 2017 August 34
## 13660 2017 August 34
## 13661 2017 August 34
## 13662 2017 August 34
## 13663 2017 August 34
## 13664 2017 August 34
## 13665 2017 August 34
## 13666 2017 August 34
## 13667 2017 August 34
## 13668 2017 August 34
## 13669 2017 August 34
## 13670 2017 August 34
## 13671 2017 August 34
## 13672 2017 August 34
## 13673 2017 August 34
## 13674 2017 August 34
## 13675 2017 August 34
## 13676 2017 August 34
## 13677 2017 August 34
## 13678 2017 August 34
## 13679 2017 August 34
## 13680 2017 August 34
## 13681 2017 August 34
## 13682 2017 August 34
## 13683 2017 August 34
## 13684 2017 August 34
## 13685 2017 August 34
## 13686 2017 August 34
## 13687 2017 August 34
## 13688 2017 August 34
## 13689 2017 August 34
## 13690 2017 August 34
## 13691 2017 August 34
## 13692 2017 August 34
## 13693 2017 August 34
## 13694 2017 August 34
## 13695 2017 August 34
## 13696 2017 August 34
## 13697 2017 August 34
## 13698 2017 August 34
## 13699 2017 August 34
## 13700 2017 August 34
## 13701 2017 August 34
## 13702 2017 August 34
## 13703 2017 August 34
## 13704 2017 August 34
## 13705 2017 August 35
## 13706 2017 August 35
## 13707 2017 August 35
## 13708 2017 August 35
## 13709 2017 August 35
## 13710 2017 August 35
## 13711 2017 August 35
## 13712 2017 August 35
## 13713 2017 August 35
## 13714 2017 August 35
## 13715 2017 August 35
## 13716 2017 August 35
## 13717 2017 August 35
## 13718 2017 August 35
## 13719 2017 August 35
## 13720 2017 August 35
## 13721 2017 August 35
## 13722 2017 August 35
## 13723 2017 August 35
## 13724 2017 August 35
## 13725 2017 August 35
## 13726 2017 August 35
## 13727 2017 August 35
## 13728 2017 August 35
## 13729 2017 August 35
## 13730 2017 August 35
## 13731 2017 August 35
## 13732 2017 August 35
## 13733 2017 August 35
## 13734 2017 August 35
## 13735 2017 August 35
## 13736 2017 August 35
## 13737 2017 August 35
## 13738 2017 August 35
## 13739 2017 August 35
## 13740 2017 August 35
## 13741 2017 August 35
## 13742 2017 August 35
## 13743 2017 August 35
## 13744 2017 August 35
## 13745 2017 August 35
## 13746 2017 August 35
## 13747 2017 August 35
## 13748 2017 August 35
## 13749 2017 August 35
## 13750 2017 August 35
## 13751 2017 August 35
## 13752 2017 August 35
## 13753 2017 August 35
## 13754 2017 August 35
## 13755 2017 August 35
## 13756 2017 August 35
## 13757 2017 August 35
## 13758 2017 August 35
## 13759 2017 August 35
## 13760 2017 August 35
## 13761 2017 August 35
## 13762 2017 August 35
## 13763 2017 August 35
## 13764 2017 August 35
## 13765 2017 August 35
## 13766 2017 August 35
## 13767 2017 August 35
## 13768 2017 August 35
## 13769 2017 August 35
## 13770 2017 August 35
## 13771 2017 August 35
## 13772 2017 August 35
## 13773 2017 August 35
## 13774 2017 August 35
## 13775 2017 August 35
## 13776 2017 August 35
## 13777 2017 August 35
## 13778 2017 August 35
## 13779 2017 August 35
## 13780 2017 August 35
## 13781 2017 August 35
## 13782 2017 August 35
## 13783 2017 August 35
## 13784 2017 August 35
## 13785 2017 August 35
## 13786 2017 August 35
## 13787 2017 August 35
## 13788 2017 August 35
## 13789 2017 August 35
## 13790 2017 August 35
## 13791 2017 August 35
## 13792 2017 August 35
## 13793 2017 August 35
## 13794 2017 August 35
## 13795 2017 August 35
## 13796 2017 August 35
## 13797 2017 August 35
## 13798 2017 August 35
## 13799 2017 August 35
## 13800 2017 August 35
## 13801 2017 August 35
## 13802 2017 August 35
## 13803 2017 August 35
## 13804 2016 January 3
## 13805 2016 January 4
## 13806 2016 October 42
## 13807 2017 February 8
## 13808 2016 January 3
## 13809 2016 January 5
## 13810 2016 September 38
## 13811 2015 September 39
## 13812 2016 July 29
## 13813 2016 January 5
## 13814 2016 February 6
## 13815 2016 November 47
## 13816 2017 January 3
## 13817 2016 April 15
## 13818 2017 February 8
## 13819 2017 August 31
## 13820 2016 February 6
## 13821 2016 March 11
## 13822 2016 September 38
## 13823 2017 February 8
## 13824 2016 January 4
## 13825 2016 March 12
## 13826 2016 March 13
## 13827 2016 June 26
## 13828 2016 September 40
## 13829 2016 March 11
## 13830 2016 October 44
## 13831 2016 June 24
## 13832 2016 December 50
## 13833 2017 April 16
## 13834 2017 July 28
## 13835 2016 September 38
## 13836 2017 January 4
## 13837 2016 January 3
## 13838 2016 April 18
## 13839 2016 July 29
## 13840 2017 July 28
## 13841 2016 March 11
## 13842 2016 May 19
## 13843 2015 July 27
## 13844 2016 September 39
## 13845 2015 September 37
## 13846 2016 September 37
## 13847 2016 March 12
## 13848 2017 June 23
## 13849 2015 December 53
## 13850 2015 December 53
## 13851 2016 March 13
## 13852 2016 December 53
## 13853 2017 April 15
## 13854 2016 April 15
## 13855 2015 November 45
## 13856 2015 November 48
## 13857 2015 December 52
## 13858 2016 January 4
## 13859 2016 April 15
## 13860 2015 August 31
## 13861 2016 August 32
## 13862 2017 August 31
## 13863 2017 July 29
## 13864 2015 August 35
## 13865 2016 July 29
## 13866 2015 November 48
## 13867 2016 February 9
## 13868 2016 April 16
## 13869 2016 January 4
## 13870 2016 January 5
## 13871 2016 April 15
## 13872 2016 October 41
## 13873 2016 November 46
## 13874 2015 September 37
## 13875 2016 February 6
## 13876 2016 April 17
## 13877 2016 May 21
## 13878 2016 September 38
## 13879 2016 November 46
## 13880 2017 January 5
## 13881 2017 March 11
## 13882 2017 April 16
## 13883 2016 January 4
## 13884 2017 January 3
## 13885 2015 July 30
## 13886 2016 January 5
## 13887 2016 June 25
## 13888 2016 November 47
## 13889 2017 March 12
## 13890 2017 July 30
## 13891 2015 September 40
## 13892 2016 April 15
## 13893 2016 July 29
## 13894 2016 September 39
## 13895 2015 September 40
## 13896 2015 September 40
## 13897 2015 November 45
## 13898 2016 January 5
## 13899 2016 March 11
## 13900 2016 April 15
## 13901 2016 June 23
## 13902 2016 September 40
## 13903 2016 November 46
## 13904 2016 December 51
## 13905 2017 February 5
## 13906 2017 March 11
## 13907 2017 May 22
## 13908 2016 February 8
## 13909 2017 June 25
## 13910 2017 January 4
## 13911 2016 September 37
## 13912 2016 July 28
## 13913 2016 March 11
## 13914 2017 January 2
## 13915 2017 March 13
## 13916 2017 June 22
## 13917 2017 April 16
## 13918 2017 May 20
## 13919 2017 July 28
## 13920 2015 November 45
## 13921 2016 February 8
## 13922 2016 April 18
## 13923 2016 July 30
## 13924 2016 November 46
## 13925 2017 February 8
## 13926 2017 April 17
## 13927 2017 July 30
## 13928 2017 June 25
## 13929 2015 September 39
## 13930 2016 September 39
## 13931 2017 April 15
## 13932 2015 July 31
## 13933 2015 August 35
## 13934 2016 July 31
## 13935 2016 September 36
## 13936 2017 July 30
## 13937 2016 February 6
## 13938 2016 April 17
## 13939 2015 September 36
## 13940 2016 November 47
## 13941 2016 February 8
## 13942 2016 December 51
## 13943 2016 July 28
## 13944 2017 July 26
## 13945 2015 July 29
## 13946 2015 November 48
## 13947 2016 November 46
## 13948 2017 March 13
## 13949 2015 October 42
## 13950 2015 October 43
## 13951 2015 October 43
## 13952 2015 October 44
## 13953 2015 December 51
## 13954 2016 January 4
## 13955 2016 June 26
## 13956 2016 November 46
## 13957 2017 January 4
## 13958 2017 February 7
## 13959 2017 February 8
## 13960 2017 March 9
## 13961 2017 April 17
## 13962 2017 May 22
## 13963 2017 June 24
## 13964 2016 February 6
## 13965 2017 January 4
## 13966 2016 January 3
## 13967 2016 June 25
## 13968 2017 April 16
## 13969 2015 December 53
## 13970 2016 April 17
## 13971 2016 February 8
## 13972 2017 August 35
## 13973 2016 April 18
## 13974 2016 December 51
## 13975 2017 April 14
## 13976 2017 June 25
## 13977 2015 November 47
## 13978 2015 December 51
## 13979 2016 February 6
## 13980 2016 March 13
## 13981 2016 June 25
## 13982 2017 January 4
## 13983 2017 February 6
## 13984 2017 May 19
## 13985 2016 April 18
## 13986 2017 February 8
## 13987 2016 November 47
## 13988 2016 September 39
## 13989 2016 July 28
## 13990 2016 October 44
## 13991 2016 November 45
## 13992 2015 August 31
## 13993 2015 August 35
## 13994 2015 October 40
## 13995 2016 January 4
## 13996 2016 March 14
## 13997 2016 August 35
## 13998 2016 January 3
## 13999 2015 December 52
## 14000 2016 June 26
## 14001 2016 December 52
## 14002 2017 June 23
## 14003 2015 July 27
## 14004 2015 July 29
## 14005 2015 November 45
## 14006 2015 November 48
## 14007 2015 December 51
## 14008 2015 December 52
## 14009 2016 January 2
## 14010 2016 February 6
## 14011 2016 February 8
## 14012 2016 March 11
## 14013 2016 April 15
## 14014 2016 April 17
## 14015 2016 May 20
## 14016 2016 June 25
## 14017 2016 July 28
## 14018 2016 July 28
## 14019 2016 July 30
## 14020 2016 September 40
## 14021 2016 November 46
## 14022 2016 December 51
## 14023 2017 January 4
## 14024 2017 February 6
## 14025 2017 February 6
## 14026 2017 March 10
## 14027 2017 March 11
## 14028 2017 March 13
## 14029 2017 April 15
## 14030 2017 June 22
## 14031 2016 September 39
## 14032 2015 September 39
## 14033 2015 November 48
## 14034 2016 April 16
## 14035 2016 September 40
## 14036 2017 January 4
## 14037 2017 June 23
## 14038 2015 August 31
## 14039 2016 July 28
## 14040 2017 July 26
## 14041 2016 February 6
## 14042 2016 April 18
## 14043 2016 May 23
## 14044 2016 October 43
## 14045 2017 February 7
## 14046 2016 February 6
## 14047 2017 February 7
## 14048 2015 July 27
## 14049 2016 October 45
## 14050 2016 November 45
## 14051 2016 January 5
## 14052 2017 January 2
## 14053 2017 March 9
## 14054 2015 November 48
## 14055 2016 January 4
## 14056 2016 May 23
## 14057 2016 October 44
## 14058 2017 January 1
## 14059 2017 January 5
## 14060 2016 December 51
## 14061 2017 January 2
## 14062 2017 July 28
## 14063 2017 April 14
## 14064 2017 April 15
## 14065 2016 March 12
## 14066 2016 October 43
## 14067 2017 February 6
## 14068 2016 June 25
## 14069 2016 January 3
## 14070 2016 March 14
## 14071 2016 July 27
## 14072 2017 July 26
## 14073 2015 August 33
## 14074 2015 August 36
## 14075 2016 August 35
## 14076 2016 July 29
## 14077 2016 December 51
## 14078 2016 January 1
## 14079 2015 November 48
## 14080 2016 November 49
## 14081 2017 February 5
## 14082 2016 March 12
## 14083 2017 February 8
## 14084 2016 October 43
## 14085 2015 October 42
## 14086 2016 March 14
## 14087 2016 October 44
## 14088 2016 August 33
## 14089 2017 August 32
## 14090 2017 March 13
## 14091 2015 December 50
## 14092 2015 December 49
## 14093 2015 July 28
## 14094 2015 August 32
## 14095 2016 July 29
## 14096 2016 August 32
## 14097 2017 July 29
## 14098 2017 August 31
## 14099 2017 August 33
## 14100 2015 August 35
## 14101 2016 March 14
## 14102 2016 August 35
## 14103 2017 April 15
## 14104 2015 September 37
## 14105 2016 September 37
## 14106 2016 January 3
## 14107 2016 February 7
## 14108 2016 September 38
## 14109 2016 September 38
## 14110 2016 September 40
## 14111 2016 September 39
## 14112 2015 September 38
## 14113 2016 April 18
## 14114 2016 September 38
## 14115 2015 November 46
## 14116 2016 September 40
## 14117 2016 November 46
## 14118 2017 May 21
## 14119 2016 March 13
## 14120 2016 December 53
## 14121 2016 October 43
## 14122 2017 February 5
## 14123 2017 March 9
## 14124 2017 March 12
## 14125 2017 April 16
## 14126 2016 December 52
## 14127 2017 April 15
## 14128 2016 April 18
## 14129 2016 February 9
## 14130 2016 February 10
## 14131 2017 February 6
## 14132 2016 February 6
## 14133 2017 January 3
## 14134 2017 March 9
## 14135 2017 June 22
## 14136 2016 September 38
## 14137 2016 March 12
## 14138 2016 November 49
## 14139 2017 February 8
## 14140 2015 November 45
## 14141 2015 November 46
## 14142 2015 November 46
## 14143 2016 February 9
## 14144 2016 April 17
## 14145 2016 June 25
## 14146 2015 December 50
## 14147 2016 April 17
## 14148 2016 April 18
## 14149 2016 July 31
## 14150 2016 September 40
## 14151 2016 December 50
## 14152 2017 April 17
## 14153 2017 February 7
## 14154 2016 March 14
## 14155 2016 June 23
## 14156 2016 December 51
## 14157 2017 June 25
## 14158 2015 December 49
## 14159 2016 May 21
## 14160 2016 November 48
## 14161 2017 April 15
## 14162 2017 January 1
## 14163 2017 May 18
## 14164 2017 April 15
## 14165 2015 July 31
## 14166 2016 July 30
## 14167 2017 July 29
## 14168 2015 November 46
## 14169 2016 January 4
## 14170 2016 February 8
## 14171 2016 March 12
## 14172 2016 April 15
## 14173 2016 November 47
## 14174 2016 December 51
## 14175 2017 February 8
## 14176 2017 March 10
## 14177 2017 April 16
## 14178 2017 January 2
## 14179 2015 November 48
## 14180 2016 January 3
## 14181 2015 October 41
## 14182 2016 December 53
## 14183 2017 June 23
## 14184 2016 December 49
## 14185 2015 August 33
## 14186 2016 August 33
## 14187 2017 August 32
## 14188 2016 September 37
## 14189 2016 August 36
## 14190 2015 October 41
## 14191 2016 April 15
## 14192 2016 October 42
## 14193 2017 April 14
## 14194 2016 January 4
## 14195 2016 January 2
## 14196 2016 January 4
## 14197 2016 May 20
## 14198 2016 January 3
## 14199 2016 March 10
## 14200 2017 February 6
## 14201 2017 February 8
## 14202 2017 March 11
## 14203 2015 July 31
## 14204 2015 October 44
## 14205 2016 January 5
## 14206 2016 March 14
## 14207 2015 December 51
## 14208 2016 January 2
## 14209 2016 January 5
## 14210 2016 March 12
## 14211 2015 July 27
## 14212 2016 July 28
## 14213 2017 July 26
## 14214 2016 November 49
## 14215 2016 March 12
## 14216 2015 October 44
## 14217 2015 November 47
## 14218 2015 December 52
## 14219 2016 February 6
## 14220 2016 December 50
## 14221 2015 November 47
## 14222 2017 February 7
## 14223 2017 March 9
## 14224 2017 March 9
## 14225 2015 November 47
## 14226 2017 February 8
## 14227 2016 April 15
## 14228 2015 September 40
## 14229 2015 December 53
## 14230 2016 February 9
## 14231 2016 July 29
## 14232 2016 September 39
## 14233 2017 January 5
## 14234 2016 May 19
## 14235 2017 January 3
## 14236 2016 February 9
## 14237 2015 November 45
## 14238 2015 December 50
## 14239 2016 January 3
## 14240 2016 January 5
## 14241 2016 February 9
## 14242 2016 February 9
## 14243 2016 March 13
## 14244 2016 April 16
## 14245 2016 May 23
## 14246 2016 January 4
## 14247 2016 February 8
## 14248 2016 May 19
## 14249 2016 June 23
## 14250 2017 January 4
## 14251 2017 April 14
## 14252 2016 March 14
## 14253 2015 August 33
## 14254 2016 August 33
## 14255 2015 August 32
## 14256 2016 July 31
## 14257 2016 September 39
## 14258 2015 October 43
## 14259 2016 March 11
## 14260 2015 September 36
## 14261 2015 October 43
## 14262 2015 December 49
## 14263 2016 March 13
## 14264 2016 May 22
## 14265 2016 September 40
## 14266 2016 November 47
## 14267 2016 December 50
## 14268 2016 December 52
## 14269 2017 February 8
## 14270 2017 March 11
## 14271 2017 April 16
## 14272 2017 May 19
## 14273 2017 June 24
## 14274 2017 July 30
## 14275 2016 August 34
## 14276 2015 August 34
## 14277 2015 September 37
## 14278 2016 September 38
## 14279 2015 September 38
## 14280 2016 June 24
## 14281 2016 June 25
## 14282 2016 October 41
## 14283 2017 June 22
## 14284 2015 September 36
## 14285 2015 September 38
## 14286 2015 September 40
## 14287 2015 October 44
## 14288 2015 November 48
## 14289 2016 June 26
## 14290 2016 July 30
## 14291 2017 February 8
## 14292 2017 March 12
## 14293 2016 February 9
## 14294 2016 October 42
## 14295 2016 December 50
## 14296 2016 December 50
## 14297 2015 November 45
## 14298 2016 February 6
## 14299 2016 February 8
## 14300 2016 March 11
## 14301 2016 June 27
## 14302 2017 April 16
## 14303 2017 April 16
## 14304 2015 October 42
## 14305 2015 November 48
## 14306 2016 October 44
## 14307 2015 December 51
## 14308 2016 February 6
## 14309 2016 April 15
## 14310 2016 June 26
## 14311 2016 October 43
## 14312 2016 December 51
## 14313 2017 January 4
## 14314 2017 March 10
## 14315 2017 April 14
## 14316 2015 October 44
## 14317 2016 October 44
## 14318 2017 March 11
## 14319 2016 November 49
## 14320 2016 December 51
## 14321 2015 December 52
## 14322 2016 March 12
## 14323 2017 February 8
## 14324 2016 March 14
## 14325 2016 December 50
## 14326 2015 October 44
## 14327 2016 November 45
## 14328 2016 December 53
## 14329 2016 October 44
## 14330 2017 January 3
## 14331 2016 March 14
## 14332 2015 August 33
## 14333 2016 July 30
## 14334 2017 January 2
## 14335 2016 September 39
## 14336 2017 March 9
## 14337 2015 October 42
## 14338 2016 February 6
## 14339 2017 March 11
## 14340 2016 January 3
## 14341 2016 January 5
## 14342 2016 February 9
## 14343 2016 February 6
## 14344 2016 March 10
## 14345 2017 March 11
## 14346 2015 July 27
## 14347 2015 October 44
## 14348 2016 April 16
## 14349 2015 November 47
## 14350 2016 February 6
## 14351 2017 April 14
## 14352 2017 January 4
## 14353 2017 April 14
## 14354 2017 May 21
## 14355 2016 May 19
## 14356 2015 December 51
## 14357 2015 September 36
## 14358 2015 October 42
## 14359 2016 October 44
## 14360 2016 February 7
## 14361 2016 October 43
## 14362 2017 February 8
## 14363 2015 December 50
## 14364 2016 June 24
## 14365 2016 March 10
## 14366 2017 January 2
## 14367 2016 April 18
## 14368 2016 May 21
## 14369 2016 July 30
## 14370 2017 January 4
## 14371 2016 June 27
## 14372 2016 July 31
## 14373 2016 November 45
## 14374 2017 March 12
## 14375 2017 July 28
## 14376 2017 April 17
## 14377 2017 June 25
## 14378 2016 May 19
## 14379 2015 July 29
## 14380 2015 October 41
## 14381 2017 June 23
## 14382 2015 July 29
## 14383 2017 January 5
## 14384 2017 January 5
## 14385 2017 January 5
## 14386 2017 July 30
## 14387 2015 November 45
## 14388 2015 December 49
## 14389 2016 January 3
## 14390 2017 January 4
## 14391 2017 March 13
## 14392 2016 July 30
## 14393 2017 July 29
## 14394 2016 August 36
## 14395 2017 July 27
## 14396 2017 May 21
## 14397 2015 July 29
## 14398 2015 July 29
## 14399 2015 October 44
## 14400 2016 October 44
## 14401 2017 August 31
## 14402 2015 August 32
## 14403 2017 February 8
## 14404 2017 August 32
## 14405 2017 August 34
## 14406 2017 July 27
## 14407 2016 August 36
## 14408 2017 February 6
## 14409 2017 July 27
## 14410 2016 September 36
## 14411 2016 September 37
## 14412 2015 September 37
## 14413 2016 October 41
## 14414 2017 January 1
## 14415 2017 July 30
## 14416 2017 June 24
## 14417 2015 October 44
## 14418 2017 April 17
## 14419 2015 November 47
## 14420 2016 September 38
## 14421 2016 October 41
## 14422 2015 October 42
## 14423 2015 October 42
## 14424 2015 November 45
## 14425 2015 November 48
## 14426 2016 June 23
## 14427 2016 June 25
## 14428 2016 August 35
## 14429 2017 January 4
## 14430 2016 January 3
## 14431 2016 February 8
## 14432 2016 June 25
## 14433 2017 February 7
## 14434 2017 August 34
## 14435 2017 February 6
## 14436 2017 February 7
## 14437 2016 January 5
## 14438 2016 January 5
## 14439 2017 January 4
## 14440 2016 April 15
## 14441 2017 March 13
## 14442 2015 October 41
## 14443 2015 December 49
## 14444 2016 March 12
## 14445 2016 January 5
## 14446 2016 December 50
## 14447 2016 February 6
## 14448 2016 March 12
## 14449 2016 December 52
## 14450 2016 March 11
## 14451 2016 October 43
## 14452 2017 February 7
## 14453 2017 April 16
## 14454 2016 January 2
## 14455 2016 February 6
## 14456 2016 February 10
## 14457 2016 April 16
## 14458 2016 May 20
## 14459 2016 March 12
## 14460 2016 March 12
## 14461 2016 December 49
## 14462 2016 February 6
## 14463 2017 June 23
## 14464 2015 July 27
## 14465 2016 January 5
## 14466 2016 February 6
## 14467 2016 February 8
## 14468 2016 March 12
## 14469 2016 October 45
## 14470 2017 January 3
## 14471 2017 April 14
## 14472 2017 April 15
## 14473 2015 October 44
## 14474 2016 October 44
## 14475 2017 January 3
## 14476 2016 December 51
## 14477 2015 October 44
## 14478 2016 March 11
## 14479 2016 May 21
## 14480 2017 March 13
## 14481 2016 January 3
## 14482 2016 February 9
## 14483 2016 March 13
## 14484 2016 April 18
## 14485 2016 September 38
## 14486 2016 November 47
## 14487 2017 January 3
## 14488 2017 February 8
## 14489 2017 March 12
## 14490 2015 October 44
## 14491 2015 December 50
## 14492 2016 January 5
## 14493 2016 February 9
## 14494 2016 October 44
## 14495 2016 December 52
## 14496 2017 January 4
## 14497 2017 January 3
## 14498 2015 November 47
## 14499 2015 November 48
## 14500 2016 February 8
## 14501 2017 January 2
## 14502 2015 October 40
## 14503 2016 January 4
## 14504 2016 February 9
## 14505 2016 March 11
## 14506 2015 November 46
## 14507 2016 March 12
## 14508 2016 May 21
## 14509 2016 October 43
## 14510 2015 November 47
## 14511 2016 January 3
## 14512 2017 April 15
## 14513 2015 November 46
## 14514 2015 December 50
## 14515 2016 March 10
## 14516 2016 April 15
## 14517 2017 March 10
## 14518 2015 November 48
## 14519 2015 November 47
## 14520 2016 June 25
## 14521 2015 December 49
## 14522 2016 January 4
## 14523 2016 February 7
## 14524 2016 February 9
## 14525 2016 March 14
## 14526 2017 February 6
## 14527 2016 March 10
## 14528 2016 April 15
## 14529 2016 March 14
## 14530 2016 December 51
## 14531 2017 January 3
## 14532 2017 March 13
## 14533 2015 October 43
## 14534 2016 March 12
## 14535 2015 October 42
## 14536 2015 October 42
## 14537 2015 November 47
## 14538 2015 December 51
## 14539 2017 February 5
## 14540 2016 February 7
## 14541 2015 December 52
## 14542 2015 September 38
## 14543 2015 December 51
## 14544 2016 September 37
## 14545 2017 February 6
## 14546 2015 December 50
## 14547 2016 April 16
## 14548 2016 November 46
## 14549 2016 November 47
## 14550 2016 April 15
## 14551 2016 November 49
## 14552 2015 December 49
## 14553 2016 January 4
## 14554 2016 December 51
## 14555 2016 December 53
## 14556 2016 March 13
## 14557 2016 December 53
## 14558 2017 May 18
## 14559 2017 May 19
## 14560 2016 April 18
## 14561 2016 November 47
## 14562 2016 December 51
## 14563 2017 February 5
## 14564 2017 February 7
## 14565 2017 March 9
## 14566 2017 February 6
## 14567 2015 September 36
## 14568 2016 May 21
## 14569 2015 August 33
## 14570 2017 August 31
## 14571 2015 July 28
## 14572 2016 March 12
## 14573 2017 May 18
## 14574 2015 September 39
## 14575 2015 October 44
## 14576 2016 November 46
## 14577 2016 February 7
## 14578 2016 February 7
## 14579 2017 January 4
## 14580 2016 May 20
## 14581 2017 July 28
## 14582 2015 September 38
## 14583 2016 October 41
## 14584 2016 June 24
## 14585 2016 May 21
## 14586 2017 July 28
## 14587 2016 September 38
## 14588 2017 June 24
## 14589 2016 June 27
## 14590 2017 July 27
## 14591 2016 January 6
## 14592 2015 July 28
## 14593 2016 April 14
## 14594 2016 July 29
## 14595 2015 July 28
## 14596 2015 July 28
## 14597 2015 July 28
## 14598 2016 August 36
## 14599 2016 July 31
## 14600 2016 March 11
## 14601 2017 July 27
## 14602 2016 March 12
## 14603 2017 August 32
## 14604 2017 August 33
## 14605 2016 November 48
## 14606 2017 January 4
## 14607 2017 May 19
## 14608 2015 July 30
## 14609 2016 February 6
## 14610 2016 February 6
## 14611 2016 June 25
## 14612 2017 April 17
## 14613 2016 July 31
## 14614 2017 August 32
## 14615 2015 July 30
## 14616 2016 August 34
## 14617 2017 August 31
## 14618 2016 December 50
## 14619 2016 August 33
## 14620 2015 August 34
## 14621 2017 August 32
## 14622 2017 August 32
## 14623 2015 August 33
## 14624 2016 August 33
## 14625 2017 August 32
## 14626 2017 April 16
## 14627 2016 April 16
## 14628 2016 July 31
## 14629 2016 August 35
## 14630 2016 March 12
## 14631 2015 September 36
## 14632 2016 September 36
## 14633 2015 September 36
## 14634 2016 May 19
## 14635 2016 September 37
## 14636 2015 November 48
## 14637 2016 February 6
## 14638 2016 October 44
## 14639 2016 November 48
## 14640 2016 December 52
## 14641 2017 January 5
## 14642 2017 May 21
## 14643 2016 October 43
## 14644 2015 September 37
## 14645 2015 July 27
## 14646 2016 September 38
## 14647 2016 September 38
## 14648 2017 April 15
## 14649 2016 September 39
## 14650 2016 December 52
## 14651 2015 September 39
## 14652 2015 September 39
## 14653 2015 September 39
## 14654 2015 September 39
## 14655 2016 September 40
## 14656 2015 September 39
## 14657 2015 September 37
## 14658 2016 September 37
## 14659 2015 October 44
## 14660 2016 December 51
## 14661 2015 July 28
## 14662 2017 May 21
## 14663 2016 January 2
## 14664 2016 September 38
## 14665 2016 October 43
## 14666 2017 March 13
## 14667 2017 July 28
## 14668 2016 October 43
## 14669 2017 February 7
## 14670 2017 May 20
## 14671 2016 February 6
## 14672 2016 April 14
## 14673 2016 October 44
## 14674 2015 October 44
## 14675 2016 October 44
## 14676 2017 January 3
## 14677 2015 October 44
## 14678 2015 November 48
## 14679 2016 November 48
## 14680 2017 April 16
## 14681 2015 December 52
## 14682 2015 July 30
## 14683 2015 September 38
## 14684 2015 September 38
## 14685 2015 September 38
## 14686 2015 September 38
## 14687 2015 September 38
## 14688 2015 September 38
## 14689 2015 September 38
## 14690 2015 September 38
## 14691 2015 September 38
## 14692 2015 September 38
## 14693 2015 September 38
## 14694 2015 September 38
## 14695 2015 September 38
## 14696 2015 September 38
## 14697 2015 September 38
## 14698 2015 September 38
## 14699 2015 September 38
## 14700 2015 September 38
## 14701 2015 September 38
## 14702 2015 September 38
## 14703 2015 September 38
## 14704 2015 September 38
## 14705 2015 September 38
## 14706 2015 September 38
## 14707 2015 September 38
## 14708 2015 September 38
## 14709 2015 September 38
## 14710 2015 September 38
## 14711 2015 September 38
## 14712 2015 September 38
## 14713 2015 September 38
## 14714 2015 September 38
## 14715 2015 September 38
## 14716 2015 September 38
## 14717 2015 September 38
## 14718 2015 September 38
## 14719 2015 September 38
## 14720 2015 September 38
## 14721 2015 September 38
## 14722 2015 September 38
## 14723 2015 September 38
## 14724 2015 September 38
## 14725 2015 September 38
## 14726 2015 September 38
## 14727 2015 September 38
## 14728 2015 September 38
## 14729 2015 September 38
## 14730 2015 September 38
## 14731 2015 September 38
## 14732 2015 September 38
## 14733 2015 September 38
## 14734 2015 September 38
## 14735 2015 September 38
## 14736 2015 September 38
## 14737 2015 September 38
## 14738 2015 September 38
## 14739 2015 September 38
## 14740 2015 September 38
## 14741 2015 September 38
## 14742 2015 September 38
## 14743 2015 September 38
## 14744 2015 September 38
## 14745 2015 September 38
## 14746 2015 September 38
## 14747 2015 September 38
## 14748 2015 September 38
## 14749 2015 September 38
## 14750 2015 September 38
## 14751 2015 September 38
## 14752 2015 September 38
## 14753 2015 September 38
## 14754 2015 September 38
## 14755 2015 September 38
## 14756 2015 September 38
## 14757 2015 September 38
## 14758 2015 September 38
## 14759 2015 September 38
## 14760 2015 September 38
## 14761 2015 September 38
## 14762 2015 September 38
## 14763 2015 September 38
## 14764 2015 September 38
## 14765 2015 September 38
## 14766 2015 September 38
## 14767 2015 September 38
## 14768 2015 September 38
## 14769 2015 September 38
## 14770 2015 September 38
## 14771 2015 September 38
## 14772 2015 September 38
## 14773 2015 September 38
## 14774 2015 September 39
## 14775 2015 August 32
## 14776 2015 August 32
## 14777 2015 August 32
## 14778 2015 August 32
## 14779 2015 October 41
## 14780 2015 October 41
## 14781 2015 October 41
## 14782 2015 October 41
## 14783 2015 October 41
## 14784 2015 October 41
## 14785 2015 October 41
## 14786 2015 October 41
## 14787 2015 October 41
## 14788 2015 October 41
## 14789 2015 October 41
## 14790 2015 October 41
## 14791 2015 October 41
## 14792 2015 October 41
## 14793 2015 October 41
## 14794 2015 October 41
## 14795 2015 October 41
## 14796 2015 October 41
## 14797 2015 October 41
## 14798 2015 October 41
## 14799 2015 October 41
## 14800 2015 October 41
## 14801 2015 October 41
## 14802 2015 October 41
## 14803 2015 October 41
## 14804 2015 October 41
## 14805 2015 October 41
## 14806 2015 September 38
## 14807 2015 September 38
## 14808 2015 July 29
## 14809 2015 July 31
## 14810 2015 August 33
## 14811 2015 August 35
## 14812 2015 August 35
## 14813 2015 August 31
## 14814 2015 August 32
## 14815 2015 August 35
## 14816 2015 July 27
## 14817 2015 July 29
## 14818 2015 September 36
## 14819 2015 August 33
## 14820 2015 August 32
## 14821 2015 October 43
## 14822 2015 September 36
## 14823 2015 September 38
## 14824 2015 August 34
## 14825 2015 August 33
## 14826 2015 July 28
## 14827 2015 July 29
## 14828 2015 September 39
## 14829 2015 September 38
## 14830 2015 September 38
## 14831 2015 September 38
## 14832 2015 September 38
## 14833 2015 September 38
## 14834 2015 September 38
## 14835 2015 September 38
## 14836 2015 September 38
## 14837 2015 September 38
## 14838 2015 September 38
## 14839 2015 September 38
## 14840 2015 September 38
## 14841 2015 September 38
## 14842 2015 September 38
## 14843 2015 September 38
## 14844 2015 September 38
## 14845 2015 September 38
## 14846 2015 September 38
## 14847 2015 September 38
## 14848 2015 September 38
## 14849 2015 September 38
## 14850 2015 September 38
## 14851 2015 September 38
## 14852 2015 September 38
## 14853 2015 September 38
## 14854 2015 September 38
## 14855 2015 September 39
## 14856 2015 September 39
## 14857 2015 September 39
## 14858 2015 September 39
## 14859 2015 September 39
## 14860 2015 September 39
## 14861 2015 September 39
## 14862 2015 September 39
## 14863 2015 September 39
## 14864 2015 September 39
## 14865 2015 July 27
## 14866 2015 July 28
## 14867 2015 November 47
## 14868 2015 July 28
## 14869 2015 November 48
## 14870 2015 July 28
## 14871 2015 July 27
## 14872 2015 July 27
## 14873 2015 August 32
## 14874 2015 July 28
## 14875 2015 July 27
## 14876 2015 July 28
## 14877 2015 July 30
## 14878 2015 July 30
## 14879 2015 July 29
## 14880 2015 July 29
## 14881 2015 July 28
## 14882 2016 May 19
## 14883 2016 June 26
## 14884 2015 October 41
## 14885 2015 September 39
## 14886 2015 September 39
## 14887 2015 September 39
## 14888 2015 September 39
## 14889 2015 September 39
## 14890 2015 September 39
## 14891 2015 September 39
## 14892 2015 September 39
## 14893 2015 September 39
## 14894 2015 September 39
## 14895 2015 September 39
## 14896 2015 September 39
## 14897 2015 September 39
## 14898 2015 September 39
## 14899 2015 September 39
## 14900 2015 July 28
## 14901 2016 December 50
## 14902 2015 July 30
## 14903 2015 August 35
## 14904 2015 August 35
## 14905 2015 August 35
## 14906 2015 August 31
## 14907 2016 March 13
## 14908 2017 April 15
## 14909 2015 August 33
## 14910 2016 August 33
## 14911 2017 August 33
## 14912 2017 August 33
## 14913 2015 July 27
## 14914 2015 December 49
## 14915 2016 March 13
## 14916 2016 April 17
## 14917 2016 May 22
## 14918 2016 June 24
## 14919 2016 October 44
## 14920 2016 November 49
## 14921 2016 December 50
## 14922 2017 February 8
## 14923 2017 April 15
## 14924 2017 April 15
## 14925 2017 April 16
## 14926 2017 April 17
## 14927 2016 April 16
## 14928 2016 March 13
## 14929 2016 August 35
## 14930 2016 December 53
## 14931 2016 December 53
## 14932 2017 August 34
## 14933 2016 March 13
## 14934 2015 December 50
## 14935 2016 January 4
## 14936 2016 March 13
## 14937 2015 September 37
## 14938 2015 July 31
## 14939 2015 August 33
## 14940 2015 August 33
## 14941 2016 March 14
## 14942 2017 March 9
## 14943 2017 April 14
## 14944 2017 January 2
## 14945 2015 August 33
## 14946 2015 August 35
## 14947 2015 November 47
## 14948 2015 November 47
## 14949 2015 July 31
## 14950 2015 August 32
## 14951 2015 August 31
## 14952 2015 August 31
## 14953 2015 July 27
## 14954 2015 October 43
## 14955 2016 March 14
## 14956 2016 May 19
## 14957 2016 May 20
## 14958 2016 November 46
## 14959 2016 April 15
## 14960 2015 July 28
## 14961 2015 October 40
## 14962 2016 January 2
## 14963 2016 February 9
## 14964 2016 November 48
## 14965 2017 February 6
## 14966 2015 August 31
## 14967 2015 November 47
## 14968 2017 February 7
## 14969 2015 October 41
## 14970 2017 March 10
## 14971 2017 April 16
## 14972 2015 July 29
## 14973 2015 July 29
## 14974 2015 July 29
## 14975 2015 July 29
## 14976 2015 July 29
## 14977 2015 July 29
## 14978 2015 July 29
## 14979 2015 July 29
## 14980 2015 July 29
## 14981 2015 July 29
## 14982 2015 July 29
## 14983 2015 July 29
## 14984 2015 July 29
## 14985 2015 July 29
## 14986 2015 July 29
## 14987 2015 July 29
## 14988 2015 July 29
## 14989 2015 July 29
## 14990 2015 July 29
## 14991 2015 July 29
## 14992 2015 July 29
## 14993 2015 July 29
## 14994 2015 July 29
## 14995 2015 July 29
## 14996 2015 July 29
## 14997 2015 September 36
## 14998 2015 September 36
## 14999 2015 September 36
## 15000 2015 September 36
## 15001 2015 September 36
## 15002 2015 September 36
## 15003 2015 September 36
## 15004 2015 September 36
## 15005 2015 September 36
## 15006 2015 September 36
## 15007 2015 September 36
## 15008 2015 September 36
## 15009 2015 September 36
## 15010 2015 September 36
## 15011 2015 September 36
## 15012 2015 September 36
## 15013 2015 September 36
## 15014 2015 September 36
## 15015 2015 September 36
## 15016 2015 September 36
## 15017 2015 September 36
## 15018 2015 August 31
## 15019 2017 January 5
## 15020 2015 November 46
## 15021 2015 November 46
## 15022 2016 February 6
## 15023 2016 October 44
## 15024 2016 November 45
## 15025 2016 October 44
## 15026 2016 November 45
## 15027 2015 September 38
## 15028 2016 April 17
## 15029 2015 December 53
## 15030 2016 December 53
## 15031 2015 December 53
## 15032 2016 December 53
## 15033 2015 October 43
## 15034 2017 January 2
## 15035 2015 July 29
## 15036 2015 October 43
## 15037 2017 January 2
## 15038 2015 August 32
## 15039 2015 September 37
## 15040 2015 September 37
## 15041 2016 May 19
## 15042 2015 July 27
## 15043 2015 July 29
## 15044 2017 April 18
## 15045 2015 July 31
## 15046 2015 August 33
## 15047 2015 November 46
## 15048 2015 September 37
## 15049 2016 May 21
## 15050 2016 June 24
## 15051 2016 July 29
## 15052 2016 October 43
## 15053 2016 November 48
## 15054 2016 December 51
## 15055 2017 January 1
## 15056 2017 February 7
## 15057 2017 March 13
## 15058 2017 May 19
## 15059 2017 May 18
## 15060 2016 October 41
## 15061 2016 December 51
## 15062 2017 May 19
## 15063 2016 November 47
## 15064 2015 September 40
## 15065 2015 July 30
## 15066 2015 September 38
## 15067 2015 September 39
## 15068 2016 January 5
## 15069 2016 February 9
## 15070 2016 July 30
## 15071 2017 January 5
## 15072 2017 February 7
## 15073 2017 March 12
## 15074 2017 June 24
## 15075 2015 August 34
## 15076 2015 August 34
## 15077 2015 December 52
## 15078 2015 July 28
## 15079 2015 September 37
## 15080 2015 August 32
## 15081 2015 October 41
## 15082 2015 October 41
## 15083 2015 July 29
## 15084 2015 July 29
## 15085 2015 August 31
## 15086 2015 September 37
## 15087 2016 May 20
## 15088 2015 November 49
## 15089 2016 May 23
## 15090 2017 March 10
## 15091 2015 July 28
## 15092 2015 December 49
## 15093 2015 July 29
## 15094 2015 October 40
## 15095 2015 October 40
## 15096 2015 October 40
## 15097 2015 October 40
## 15098 2015 October 40
## 15099 2015 October 40
## 15100 2015 October 40
## 15101 2015 October 40
## 15102 2015 October 40
## 15103 2015 October 40
## 15104 2015 October 40
## 15105 2015 October 40
## 15106 2015 October 40
## 15107 2015 October 40
## 15108 2015 October 40
## 15109 2015 October 40
## 15110 2015 October 40
## 15111 2015 October 40
## 15112 2015 October 40
## 15113 2015 October 40
## 15114 2015 October 40
## 15115 2015 October 40
## 15116 2015 October 40
## 15117 2015 October 40
## 15118 2015 October 40
## 15119 2015 July 28
## 15120 2015 August 33
## 15121 2015 August 33
## 15122 2016 February 6
## 15123 2016 March 13
## 15124 2016 June 23
## 15125 2016 July 28
## 15126 2016 July 28
## 15127 2016 August 33
## 15128 2016 November 45
## 15129 2017 February 8
## 15130 2017 April 15
## 15131 2017 July 28
## 15132 2017 August 32
## 15133 2015 July 31
## 15134 2015 August 36
## 15135 2015 July 28
## 15136 2015 July 28
## 15137 2015 July 28
## 15138 2017 April 15
## 15139 2015 November 47
## 15140 2015 August 35
## 15141 2015 August 33
## 15142 2016 November 47
## 15143 2017 March 12
## 15144 2015 December 51
## 15145 2016 March 12
## 15146 2017 March 11
## 15147 2016 February 6
## 15148 2017 May 21
## 15149 2015 July 28
## 15150 2015 July 28
## 15151 2015 September 36
## 15152 2015 September 36
## 15153 2015 September 36
## 15154 2015 September 36
## 15155 2015 September 36
## 15156 2015 September 36
## 15157 2015 September 36
## 15158 2015 September 36
## 15159 2015 September 36
## 15160 2015 September 36
## 15161 2015 September 36
## 15162 2015 September 36
## 15163 2015 September 36
## 15164 2015 September 36
## 15165 2015 September 36
## 15166 2015 September 36
## 15167 2015 September 36
## 15168 2015 September 36
## 15169 2015 September 36
## 15170 2015 September 36
## 15171 2015 September 36
## 15172 2015 September 36
## 15173 2015 September 36
## 15174 2015 September 36
## 15175 2015 September 36
## 15176 2015 September 36
## 15177 2015 September 36
## 15178 2015 September 36
## 15179 2015 September 36
## 15180 2015 September 36
## 15181 2015 September 36
## 15182 2015 September 36
## 15183 2015 September 36
## 15184 2015 September 37
## 15185 2015 September 37
## 15186 2015 September 37
## 15187 2015 September 37
## 15188 2015 September 37
## 15189 2015 September 37
## 15190 2015 September 37
## 15191 2015 September 37
## 15192 2015 September 37
## 15193 2015 September 37
## 15194 2015 September 37
## 15195 2015 September 37
## 15196 2015 September 37
## 15197 2015 September 38
## 15198 2015 September 38
## 15199 2015 September 38
## 15200 2015 September 38
## 15201 2015 September 38
## 15202 2015 September 38
## 15203 2015 September 38
## 15204 2015 September 39
## 15205 2015 September 39
## 15206 2015 September 39
## 15207 2015 September 39
## 15208 2015 September 39
## 15209 2015 September 39
## 15210 2015 September 39
## 15211 2015 September 39
## 15212 2015 September 39
## 15213 2015 September 39
## 15214 2015 September 39
## 15215 2015 September 39
## 15216 2015 September 39
## 15217 2015 October 40
## 15218 2015 October 40
## 15219 2015 October 40
## 15220 2015 October 40
## 15221 2015 October 40
## 15222 2015 October 40
## 15223 2015 October 40
## 15224 2017 May 21
## 15225 2015 July 29
## 15226 2015 August 32
## 15227 2015 July 28
## 15228 2016 June 23
## 15229 2017 June 23
## 15230 2016 November 47
## 15231 2015 July 30
## 15232 2016 October 44
## 15233 2017 June 25
## 15234 2015 November 46
## 15235 2016 March 10
## 15236 2016 March 12
## 15237 2016 April 15
## 15238 2016 April 18
## 15239 2016 May 23
## 15240 2016 October 44
## 15241 2017 January 2
## 15242 2017 March 13
## 15243 2017 April 17
## 15244 2017 May 20
## 15245 2015 September 39
## 15246 2015 September 39
## 15247 2015 September 39
## 15248 2015 September 39
## 15249 2015 September 39
## 15250 2015 September 39
## 15251 2015 September 39
## 15252 2015 September 39
## 15253 2015 September 39
## 15254 2015 November 48
## 15255 2016 February 8
## 15256 2015 July 30
## 15257 2015 December 53
## 15258 2016 January 4
## 15259 2016 February 9
## 15260 2016 May 20
## 15261 2017 May 22
## 15262 2015 October 41
## 15263 2015 October 43
## 15264 2015 October 44
## 15265 2016 May 22
## 15266 2016 November 46
## 15267 2017 April 14
## 15268 2017 August 31
## 15269 2015 July 28
## 15270 2015 July 27
## 15271 2015 July 29
## 15272 2016 July 30
## 15273 2017 February 8
## 15274 2015 November 47
## 15275 2016 January 3
## 15276 2016 March 11
## 15277 2016 April 18
## 15278 2016 July 30
## 15279 2016 September 39
## 15280 2016 November 47
## 15281 2016 December 51
## 15282 2017 January 4
## 15283 2017 March 10
## 15284 2017 April 16
## 15285 2017 May 22
## 15286 2017 March 10
## 15287 2015 July 27
## 15288 2016 February 6
## 15289 2017 January 1
## 15290 2017 January 3
## 15291 2017 January 3
## 15292 2017 January 4
## 15293 2017 February 9
## 15294 2017 June 25
## 15295 2017 June 23
## 15296 2015 December 53
## 15297 2016 December 53
## 15298 2015 July 27
## 15299 2015 July 27
## 15300 2015 July 27
## 15301 2015 July 27
## 15302 2016 July 28
## 15303 2015 July 27
## 15304 2015 July 28
## 15305 2015 July 27
## 15306 2015 September 36
## 15307 2015 July 28
## 15308 2015 October 41
## 15309 2015 October 41
## 15310 2015 October 41
## 15311 2015 October 41
## 15312 2015 October 41
## 15313 2015 October 41
## 15314 2015 October 41
## 15315 2015 October 41
## 15316 2015 October 41
## 15317 2015 October 41
## 15318 2015 October 41
## 15319 2015 October 41
## 15320 2015 October 41
## 15321 2015 October 41
## 15322 2015 October 41
## 15323 2015 October 41
## 15324 2015 October 41
## 15325 2015 October 41
## 15326 2015 October 41
## 15327 2015 October 41
## 15328 2015 October 41
## 15329 2015 October 41
## 15330 2015 October 41
## 15331 2015 October 41
## 15332 2015 October 41
## 15333 2015 July 27
## 15334 2015 July 27
## 15335 2015 July 27
## 15336 2015 July 27
## 15337 2015 July 28
## 15338 2015 September 38
## 15339 2015 September 38
## 15340 2015 September 38
## 15341 2015 September 36
## 15342 2015 September 36
## 15343 2015 September 36
## 15344 2015 September 38
## 15345 2015 September 38
## 15346 2015 September 38
## 15347 2015 September 38
## 15348 2015 September 38
## 15349 2015 September 38
## 15350 2015 July 27
## 15351 2015 July 27
## 15352 2015 July 27
## 15353 2015 July 28
## 15354 2015 July 27
## 15355 2015 July 28
## 15356 2015 July 28
## 15357 2015 July 27
## 15358 2015 July 27
## 15359 2015 July 28
## 15360 2016 April 17
## 15361 2016 December 50
## 15362 2015 July 28
## 15363 2016 July 29
## 15364 2017 March 11
## 15365 2017 March 12
## 15366 2017 June 23
## 15367 2015 July 27
## 15368 2015 July 28
## 15369 2015 July 28
## 15370 2015 July 28
## 15371 2015 July 28
## 15372 2015 July 28
## 15373 2015 July 28
## 15374 2015 July 28
## 15375 2015 July 28
## 15376 2015 July 27
## 15377 2015 July 28
## 15378 2015 July 27
## 15379 2015 July 28
## 15380 2015 July 27
## 15381 2015 July 28
## 15382 2015 July 28
## 15383 2015 July 28
## 15384 2015 July 28
## 15385 2015 July 27
## 15386 2015 July 28
## 15387 2015 July 28
## 15388 2015 July 28
## 15389 2015 July 28
## 15390 2015 July 27
## 15391 2015 July 27
## 15392 2015 July 28
## 15393 2015 July 28
## 15394 2015 July 28
## 15395 2015 July 28
## 15396 2015 July 28
## 15397 2015 July 28
## 15398 2015 July 28
## 15399 2015 July 27
## 15400 2016 July 27
## 15401 2017 June 24
## 15402 2015 July 29
## 15403 2015 July 29
## 15404 2015 September 37
## 15405 2015 July 28
## 15406 2015 July 28
## 15407 2015 July 28
## 15408 2015 July 27
## 15409 2015 July 28
## 15410 2015 July 28
## 15411 2015 July 27
## 15412 2015 July 28
## 15413 2015 August 32
## 15414 2015 July 29
## 15415 2015 August 32
## 15416 2015 July 29
## 15417 2015 July 28
## 15418 2015 July 28
## 15419 2015 July 28
## 15420 2015 July 28
## 15421 2015 July 28
## 15422 2015 July 28
## 15423 2015 July 27
## 15424 2015 July 29
## 15425 2015 July 29
## 15426 2015 July 27
## 15427 2015 July 28
## 15428 2015 July 28
## 15429 2015 July 29
## 15430 2015 July 29
## 15431 2015 July 28
## 15432 2015 July 28
## 15433 2015 July 28
## 15434 2015 July 28
## 15435 2015 July 28
## 15436 2015 July 28
## 15437 2015 July 28
## 15438 2015 July 28
## 15439 2015 July 29
## 15440 2015 July 29
## 15441 2015 July 28
## 15442 2015 July 28
## 15443 2015 July 29
## 15444 2015 July 28
## 15445 2015 July 29
## 15446 2015 July 29
## 15447 2015 July 29
## 15448 2015 July 28
## 15449 2015 July 29
## 15450 2015 July 29
## 15451 2015 July 29
## 15452 2015 July 28
## 15453 2015 July 29
## 15454 2015 July 29
## 15455 2015 July 28
## 15456 2015 July 29
## 15457 2015 July 28
## 15458 2015 July 28
## 15459 2015 July 29
## 15460 2015 July 27
## 15461 2015 July 28
## 15462 2015 July 29
## 15463 2015 July 29
## 15464 2015 July 29
## 15465 2015 July 29
## 15466 2017 January 5
## 15467 2015 July 29
## 15468 2015 July 29
## 15469 2015 July 29
## 15470 2015 July 29
## 15471 2015 July 28
## 15472 2015 July 29
## 15473 2015 July 30
## 15474 2015 July 29
## 15475 2015 July 29
## 15476 2015 July 30
## 15477 2015 July 29
## 15478 2015 July 30
## 15479 2015 July 30
## 15480 2015 July 28
## 15481 2015 July 30
## 15482 2015 July 30
## 15483 2015 July 28
## 15484 2015 July 30
## 15485 2015 July 29
## 15486 2015 July 29
## 15487 2015 July 29
## 15488 2015 July 29
## 15489 2015 July 29
## 15490 2015 July 29
## 15491 2015 July 29
## 15492 2015 July 29
## 15493 2015 July 29
## 15494 2015 July 28
## 15495 2015 July 29
## 15496 2015 July 29
## 15497 2015 July 29
## 15498 2015 July 30
## 15499 2015 July 29
## 15500 2015 July 29
## 15501 2015 July 30
## 15502 2015 July 29
## 15503 2015 July 30
## 15504 2015 July 30
## 15505 2015 July 29
## 15506 2015 July 30
## 15507 2015 July 30
## 15508 2015 July 30
## 15509 2015 July 30
## 15510 2015 July 30
## 15511 2015 July 29
## 15512 2015 July 29
## 15513 2015 July 30
## 15514 2015 July 29
## 15515 2015 July 30
## 15516 2015 July 30
## 15517 2015 July 30
## 15518 2015 July 30
## 15519 2015 July 30
## 15520 2015 July 30
## 15521 2015 July 28
## 15522 2015 July 30
## 15523 2015 July 29
## 15524 2015 July 30
## 15525 2015 July 30
## 15526 2015 July 30
## 15527 2015 July 30
## 15528 2015 July 30
## 15529 2015 July 30
## 15530 2015 July 30
## 15531 2015 July 30
## 15532 2015 July 29
## 15533 2015 July 30
## 15534 2015 July 29
## 15535 2015 July 30
## 15536 2015 July 30
## 15537 2015 July 30
## 15538 2016 January 4
## 15539 2016 June 26
## 15540 2015 July 30
## 15541 2015 July 29
## 15542 2015 July 30
## 15543 2015 July 30
## 15544 2015 July 30
## 15545 2015 July 30
## 15546 2015 July 30
## 15547 2015 July 29
## 15548 2015 July 30
## 15549 2015 July 29
## 15550 2015 July 30
## 15551 2015 July 30
## 15552 2015 July 30
## 15553 2015 July 30
## 15554 2015 July 30
## 15555 2015 July 30
## 15556 2015 July 30
## 15557 2015 July 30
## 15558 2015 July 30
## 15559 2015 July 30
## 15560 2015 July 30
## 15561 2015 July 29
## 15562 2015 July 29
## 15563 2015 July 30
## 15564 2015 July 30
## 15565 2015 July 30
## 15566 2015 July 30
## 15567 2015 July 30
## 15568 2015 July 30
## 15569 2015 July 30
## 15570 2015 July 30
## 15571 2015 July 30
## 15572 2015 July 30
## 15573 2015 July 30
## 15574 2015 July 30
## 15575 2015 July 30
## 15576 2015 July 30
## 15577 2015 July 30
## 15578 2015 August 34
## 15579 2015 September 39
## 15580 2015 July 30
## 15581 2015 July 30
## 15582 2015 July 30
## 15583 2015 July 30
## 15584 2015 July 30
## 15585 2015 July 30
## 15586 2015 July 29
## 15587 2015 August 31
## 15588 2015 July 30
## 15589 2015 July 30
## 15590 2015 July 30
## 15591 2015 July 30
## 15592 2015 July 30
## 15593 2015 July 30
## 15594 2015 July 30
## 15595 2015 July 30
## 15596 2015 July 30
## 15597 2015 July 30
## 15598 2015 July 30
## 15599 2015 July 30
## 15600 2017 July 29
## 15601 2015 July 30
## 15602 2015 August 31
## 15603 2015 July 30
## 15604 2015 July 30
## 15605 2015 July 29
## 15606 2015 July 29
## 15607 2015 July 30
## 15608 2015 July 30
## 15609 2015 July 30
## 15610 2015 July 30
## 15611 2015 July 30
## 15612 2015 July 30
## 15613 2015 July 30
## 15614 2015 July 30
## 15615 2015 July 30
## 15616 2015 July 30
## 15617 2015 July 30
## 15618 2015 July 31
## 15619 2015 July 31
## 15620 2015 August 32
## 15621 2015 July 30
## 15622 2015 September 36
## 15623 2015 September 36
## 15624 2015 September 36
## 15625 2015 September 36
## 15626 2015 September 36
## 15627 2015 September 36
## 15628 2015 September 36
## 15629 2015 July 30
## 15630 2015 July 31
## 15631 2015 July 30
## 15632 2015 July 29
## 15633 2015 August 32
## 15634 2015 July 29
## 15635 2015 July 29
## 15636 2015 July 30
## 15637 2015 July 30
## 15638 2015 July 30
## 15639 2015 July 30
## 15640 2015 July 31
## 15641 2015 July 31
## 15642 2015 July 30
## 15643 2015 July 30
## 15644 2015 August 35
## 15645 2015 July 30
## 15646 2015 July 31
## 15647 2015 July 31
## 15648 2015 July 31
## 15649 2015 July 31
## 15650 2015 July 31
## 15651 2015 July 31
## 15652 2015 July 30
## 15653 2015 July 30
## 15654 2015 July 29
## 15655 2016 May 20
## 15656 2016 May 20
## 15657 2016 May 20
## 15658 2016 May 20
## 15659 2016 May 20
## 15660 2016 May 20
## 15661 2016 May 20
## 15662 2016 May 20
## 15663 2016 May 20
## 15664 2016 May 20
## 15665 2016 May 20
## 15666 2016 May 20
## 15667 2016 May 20
## 15668 2016 May 20
## 15669 2016 May 20
## 15670 2016 May 20
## 15671 2016 May 20
## 15672 2016 May 20
## 15673 2016 May 20
## 15674 2016 May 20
## 15675 2015 July 31
## 15676 2015 July 30
## 15677 2015 July 30
## 15678 2015 July 31
## 15679 2015 July 30
## 15680 2015 July 30
## 15681 2015 July 30
## 15682 2015 July 31
## 15683 2015 July 31
## 15684 2015 July 31
## 15685 2015 July 30
## 15686 2015 July 31
## 15687 2015 July 31
## 15688 2015 July 30
## 15689 2015 July 30
## 15690 2015 July 30
## 15691 2015 July 31
## 15692 2015 July 31
## 15693 2015 July 31
## 15694 2015 July 30
## 15695 2015 July 31
## 15696 2015 July 30
## 15697 2015 July 31
## 15698 2015 July 31
## 15699 2015 July 31
## 15700 2015 July 31
## 15701 2015 September 39
## 15702 2015 September 39
## 15703 2015 September 39
## 15704 2015 September 39
## 15705 2015 September 39
## 15706 2015 September 39
## 15707 2015 September 39
## 15708 2015 September 39
## 15709 2015 September 39
## 15710 2015 September 39
## 15711 2015 September 39
## 15712 2015 September 39
## 15713 2015 September 39
## 15714 2015 September 39
## 15715 2015 September 39
## 15716 2015 September 39
## 15717 2015 September 39
## 15718 2015 September 39
## 15719 2015 September 39
## 15720 2015 September 39
## 15721 2015 September 39
## 15722 2015 September 39
## 15723 2015 September 39
## 15724 2015 September 39
## 15725 2015 September 39
## 15726 2015 September 39
## 15727 2015 September 39
## 15728 2015 July 31
## 15729 2015 July 30
## 15730 2015 July 31
## 15731 2015 July 31
## 15732 2015 July 31
## 15733 2015 July 31
## 15734 2015 July 30
## 15735 2015 July 31
## 15736 2015 July 31
## 15737 2015 July 31
## 15738 2015 July 31
## 15739 2015 July 31
## 15740 2015 July 31
## 15741 2015 July 31
## 15742 2015 July 31
## 15743 2015 July 31
## 15744 2015 July 31
## 15745 2015 July 30
## 15746 2015 July 31
## 15747 2015 August 31
## 15748 2015 July 31
## 15749 2015 July 30
## 15750 2015 July 30
## 15751 2015 July 31
## 15752 2015 July 30
## 15753 2015 July 30
## 15754 2015 September 36
## 15755 2015 September 36
## 15756 2015 September 36
## 15757 2015 September 36
## 15758 2015 September 36
## 15759 2015 September 36
## 15760 2015 September 36
## 15761 2015 September 36
## 15762 2015 September 36
## 15763 2015 September 36
## 15764 2015 September 36
## 15765 2015 September 36
## 15766 2015 September 36
## 15767 2015 September 36
## 15768 2015 August 32
## 15769 2015 July 31
## 15770 2015 July 31
## 15771 2015 July 31
## 15772 2015 July 31
## 15773 2015 July 31
## 15774 2015 July 31
## 15775 2015 July 31
## 15776 2015 July 30
## 15777 2017 July 29
## 15778 2015 July 31
## 15779 2015 July 31
## 15780 2015 July 30
## 15781 2015 July 31
## 15782 2015 July 31
## 15783 2015 July 31
## 15784 2015 July 31
## 15785 2015 July 31
## 15786 2015 July 31
## 15787 2015 July 31
## 15788 2015 July 31
## 15789 2015 July 31
## 15790 2015 July 30
## 15791 2015 July 31
## 15792 2015 July 31
## 15793 2015 July 31
## 15794 2015 July 31
## 15795 2015 August 31
## 15796 2015 July 31
## 15797 2015 July 31
## 15798 2015 August 32
## 15799 2015 August 32
## 15800 2015 July 31
## 15801 2015 July 31
## 15802 2015 July 31
## 15803 2015 July 31
## 15804 2015 July 31
## 15805 2015 July 31
## 15806 2015 July 31
## 15807 2015 July 31
## 15808 2015 July 31
## 15809 2015 August 31
## 15810 2015 July 31
## 15811 2015 July 31
## 15812 2015 July 31
## 15813 2015 July 31
## 15814 2015 August 31
## 15815 2015 July 31
## 15816 2015 October 42
## 15817 2015 July 31
## 15818 2015 August 31
## 15819 2015 July 31
## 15820 2015 August 31
## 15821 2015 July 31
## 15822 2015 July 31
## 15823 2015 July 31
## 15824 2015 July 31
## 15825 2015 July 31
## 15826 2015 July 31
## 15827 2015 August 32
## 15828 2015 July 31
## 15829 2015 July 31
## 15830 2015 July 30
## 15831 2015 July 31
## 15832 2015 July 31
## 15833 2015 July 31
## 15834 2015 August 32
## 15835 2015 August 32
## 15836 2015 August 32
## 15837 2015 August 31
## 15838 2015 July 31
## 15839 2015 July 31
## 15840 2015 July 31
## 15841 2015 August 32
## 15842 2015 July 31
## 15843 2015 August 32
## 15844 2015 July 31
## 15845 2015 August 32
## 15846 2015 July 31
## 15847 2015 August 32
## 15848 2015 July 31
## 15849 2015 August 32
## 15850 2015 July 31
## 15851 2015 July 31
## 15852 2015 August 32
## 15853 2015 August 32
## 15854 2015 August 31
## 15855 2015 August 31
## 15856 2015 August 32
## 15857 2015 July 31
## 15858 2015 July 31
## 15859 2015 August 32
## 15860 2015 July 31
## 15861 2015 August 31
## 15862 2015 July 31
## 15863 2017 August 32
## 15864 2015 July 31
## 15865 2015 July 31
## 15866 2015 July 31
## 15867 2015 July 31
## 15868 2015 July 31
## 15869 2015 July 31
## 15870 2015 July 31
## 15871 2015 July 31
## 15872 2015 August 32
## 15873 2016 January 3
## 15874 2016 September 39
## 15875 2017 January 1
## 15876 2017 February 8
## 15877 2017 May 20
## 15878 2015 August 32
## 15879 2015 August 32
## 15880 2015 July 31
## 15881 2015 August 31
## 15882 2015 July 31
## 15883 2015 July 30
## 15884 2015 August 32
## 15885 2015 August 32
## 15886 2015 July 31
## 15887 2015 July 30
## 15888 2015 August 32
## 15889 2015 July 31
## 15890 2015 August 32
## 15891 2015 August 32
## 15892 2015 August 32
## 15893 2015 August 32
## 15894 2015 August 32
## 15895 2015 August 32
## 15896 2015 August 32
## 15897 2015 August 32
## 15898 2015 August 32
## 15899 2015 August 32
## 15900 2015 August 32
## 15901 2015 August 32
## 15902 2015 July 31
## 15903 2015 July 31
## 15904 2015 August 32
## 15905 2015 August 32
## 15906 2015 August 31
## 15907 2015 July 31
## 15908 2015 August 32
## 15909 2015 August 32
## 15910 2015 August 32
## 15911 2015 August 32
## 15912 2015 July 31
## 15913 2015 August 31
## 15914 2015 July 31
## 15915 2015 August 32
## 15916 2015 August 32
## 15917 2015 August 32
## 15918 2015 August 32
## 15919 2015 August 32
## 15920 2015 August 31
## 15921 2015 September 37
## 15922 2015 August 32
## 15923 2015 August 32
## 15924 2015 August 32
## 15925 2015 August 32
## 15926 2015 August 32
## 15927 2015 August 32
## 15928 2015 August 31
## 15929 2015 August 31
## 15930 2015 August 31
## 15931 2015 August 31
## 15932 2015 August 31
## 15933 2015 July 31
## 15934 2015 August 31
## 15935 2015 August 32
## 15936 2015 August 31
## 15937 2015 August 32
## 15938 2015 August 32
## 15939 2015 August 32
## 15940 2015 August 32
## 15941 2015 August 32
## 15942 2015 August 32
## 15943 2015 August 32
## 15944 2015 August 31
## 15945 2015 August 32
## 15946 2015 August 32
## 15947 2015 August 32
## 15948 2015 August 32
## 15949 2015 August 32
## 15950 2015 August 32
## 15951 2015 August 32
## 15952 2015 August 31
## 15953 2015 August 34
## 15954 2015 August 32
## 15955 2015 August 32
## 15956 2015 August 32
## 15957 2015 August 32
## 15958 2015 August 32
## 15959 2015 August 31
## 15960 2015 August 32
## 15961 2015 August 32
## 15962 2015 August 32
## 15963 2015 August 32
## 15964 2015 August 32
## 15965 2015 August 32
## 15966 2015 August 32
## 15967 2015 August 32
## 15968 2015 December 53
## 15969 2015 August 31
## 15970 2015 August 32
## 15971 2015 August 32
## 15972 2015 August 33
## 15973 2015 August 32
## 15974 2015 August 31
## 15975 2015 August 32
## 15976 2015 August 32
## 15977 2015 August 32
## 15978 2015 August 32
## 15979 2015 August 32
## 15980 2015 August 32
## 15981 2015 July 30
## 15982 2015 August 32
## 15983 2015 August 31
## 15984 2015 August 32
## 15985 2015 August 32
## 15986 2015 August 33
## 15987 2015 August 32
## 15988 2015 August 33
## 15989 2015 August 31
## 15990 2015 August 33
## 15991 2015 August 33
## 15992 2015 August 33
## 15993 2015 August 33
## 15994 2015 August 32
## 15995 2015 August 32
## 15996 2015 August 33
## 15997 2015 August 32
## 15998 2015 August 32
## 15999 2015 August 32
## 16000 2015 August 32
## 16001 2015 August 32
## 16002 2015 August 32
## 16003 2015 August 32
## 16004 2015 August 32
## 16005 2015 August 32
## 16006 2015 August 32
## 16007 2015 August 35
## 16008 2015 August 32
## 16009 2017 May 18
## 16010 2015 August 32
## 16011 2015 August 33
## 16012 2015 August 32
## 16013 2015 August 32
## 16014 2015 August 32
## 16015 2015 August 32
## 16016 2015 August 33
## 16017 2015 August 31
## 16018 2015 August 32
## 16019 2015 August 32
## 16020 2015 August 33
## 16021 2015 August 33
## 16022 2015 August 32
## 16023 2015 August 31
## 16024 2015 August 31
## 16025 2015 August 31
## 16026 2015 August 32
## 16027 2015 August 32
## 16028 2015 August 32
## 16029 2015 August 32
## 16030 2015 August 33
## 16031 2015 August 33
## 16032 2015 August 32
## 16033 2015 August 32
## 16034 2016 August 32
## 16035 2015 August 32
## 16036 2015 August 32
## 16037 2015 August 33
## 16038 2015 August 32
## 16039 2015 August 33
## 16040 2015 August 33
## 16041 2015 October 40
## 16042 2015 October 40
## 16043 2015 October 40
## 16044 2015 October 40
## 16045 2015 October 40
## 16046 2015 October 40
## 16047 2015 August 33
## 16048 2015 September 38
## 16049 2015 September 38
## 16050 2015 September 38
## 16051 2015 August 32
## 16052 2015 July 31
## 16053 2015 July 31
## 16054 2015 August 33
## 16055 2015 August 33
## 16056 2015 August 33
## 16057 2015 August 33
## 16058 2015 August 31
## 16059 2015 August 31
## 16060 2015 August 33
## 16061 2015 August 33
## 16062 2015 August 32
## 16063 2015 August 33
## 16064 2015 August 33
## 16065 2015 August 32
## 16066 2015 August 33
## 16067 2015 August 33
## 16068 2015 August 32
## 16069 2015 August 32
## 16070 2015 August 32
## 16071 2015 August 32
## 16072 2015 August 32
## 16073 2015 August 32
## 16074 2015 August 33
## 16075 2015 August 32
## 16076 2015 August 33
## 16077 2015 August 33
## 16078 2015 August 32
## 16079 2015 August 33
## 16080 2015 August 32
## 16081 2015 August 33
## 16082 2015 August 33
## 16083 2015 August 32
## 16084 2015 August 33
## 16085 2015 August 33
## 16086 2015 August 32
## 16087 2015 August 33
## 16088 2015 August 31
## 16089 2015 July 31
## 16090 2015 August 32
## 16091 2015 August 32
## 16092 2015 August 33
## 16093 2015 August 32
## 16094 2015 August 32
## 16095 2015 August 33
## 16096 2015 August 32
## 16097 2015 August 33
## 16098 2015 August 33
## 16099 2015 August 32
## 16100 2015 August 33
## 16101 2015 August 33
## 16102 2015 August 33
## 16103 2015 August 32
## 16104 2015 August 33
## 16105 2015 August 33
## 16106 2015 August 33
## 16107 2015 August 35
## 16108 2015 August 33
## 16109 2015 August 32
## 16110 2015 August 33
## 16111 2015 August 33
## 16112 2015 August 33
## 16113 2015 August 33
## 16114 2015 August 33
## 16115 2015 August 33
## 16116 2015 August 33
## 16117 2015 August 33
## 16118 2015 August 33
## 16119 2015 September 38
## 16120 2015 August 33
## 16121 2015 August 32
## 16122 2015 August 33
## 16123 2015 August 33
## 16124 2015 August 33
## 16125 2015 August 32
## 16126 2015 August 32
## 16127 2015 August 32
## 16128 2015 August 33
## 16129 2015 August 33
## 16130 2015 August 33
## 16131 2015 August 33
## 16132 2017 July 28
## 16133 2015 August 33
## 16134 2015 August 32
## 16135 2015 August 33
## 16136 2015 August 33
## 16137 2015 August 33
## 16138 2015 August 33
## 16139 2015 August 33
## 16140 2015 August 33
## 16141 2015 August 33
## 16142 2015 August 33
## 16143 2015 August 33
## 16144 2015 August 33
## 16145 2015 August 32
## 16146 2015 August 33
## 16147 2015 August 33
## 16148 2015 August 33
## 16149 2015 August 32
## 16150 2015 August 33
## 16151 2015 August 33
## 16152 2015 August 33
## 16153 2015 August 33
## 16154 2015 August 33
## 16155 2015 August 33
## 16156 2015 August 33
## 16157 2015 August 33
## 16158 2015 August 33
## 16159 2015 August 33
## 16160 2015 August 33
## 16161 2015 August 33
## 16162 2015 August 33
## 16163 2015 August 33
## 16164 2015 August 33
## 16165 2015 August 33
## 16166 2015 August 34
## 16167 2015 August 34
## 16168 2015 August 34
## 16169 2015 August 33
## 16170 2015 August 33
## 16171 2015 August 34
## 16172 2015 August 34
## 16173 2015 August 33
## 16174 2015 August 33
## 16175 2015 August 33
## 16176 2015 August 32
## 16177 2015 August 33
## 16178 2015 August 35
## 16179 2015 August 34
## 16180 2015 August 32
## 16181 2015 August 34
## 16182 2015 August 34
## 16183 2015 August 33
## 16184 2015 August 33
## 16185 2015 August 34
## 16186 2015 August 33
## 16187 2015 August 33
## 16188 2015 August 33
## 16189 2015 August 33
## 16190 2015 August 33
## 16191 2015 August 33
## 16192 2015 August 34
## 16193 2015 August 33
## 16194 2015 August 33
## 16195 2015 August 34
## 16196 2015 September 39
## 16197 2015 August 34
## 16198 2015 August 33
## 16199 2015 August 33
## 16200 2015 August 33
## 16201 2015 August 34
## 16202 2015 August 33
## 16203 2015 August 33
## 16204 2015 August 32
## 16205 2015 August 33
## 16206 2015 August 33
## 16207 2015 August 33
## 16208 2017 August 32
## 16209 2015 August 34
## 16210 2015 August 33
## 16211 2015 August 33
## 16212 2015 August 33
## 16213 2015 August 34
## 16214 2015 August 33
## 16215 2015 August 34
## 16216 2015 August 33
## 16217 2015 August 33
## 16218 2015 August 33
## 16219 2015 August 34
## 16220 2015 August 33
## 16221 2015 August 34
## 16222 2015 September 36
## 16223 2015 August 34
## 16224 2015 August 33
## 16225 2015 August 33
## 16226 2015 August 33
## 16227 2015 August 34
## 16228 2015 August 34
## 16229 2015 August 34
## 16230 2015 August 33
## 16231 2015 August 33
## 16232 2015 August 33
## 16233 2015 August 34
## 16234 2015 August 34
## 16235 2015 August 34
## 16236 2015 August 34
## 16237 2015 August 33
## 16238 2016 August 36
## 16239 2015 August 34
## 16240 2015 August 34
## 16241 2015 August 33
## 16242 2015 August 34
## 16243 2015 August 34
## 16244 2015 August 34
## 16245 2015 August 34
## 16246 2015 August 33
## 16247 2015 August 33
## 16248 2015 August 33
## 16249 2015 August 34
## 16250 2015 August 34
## 16251 2015 August 33
## 16252 2015 August 34
## 16253 2015 August 34
## 16254 2015 August 34
## 16255 2015 August 34
## 16256 2015 August 33
## 16257 2015 August 34
## 16258 2015 October 43
## 16259 2015 October 43
## 16260 2015 October 43
## 16261 2015 August 33
## 16262 2015 August 33
## 16263 2015 August 32
## 16264 2015 August 34
## 16265 2015 August 33
## 16266 2016 August 33
## 16267 2015 August 33
## 16268 2015 August 34
## 16269 2015 August 33
## 16270 2015 August 34
## 16271 2015 August 34
## 16272 2015 August 34
## 16273 2015 August 34
## 16274 2015 August 34
## 16275 2015 August 34
## 16276 2015 August 34
## 16277 2015 August 34
## 16278 2015 August 34
## 16279 2015 August 34
## 16280 2015 August 34
## 16281 2015 August 33
## 16282 2015 August 33
## 16283 2015 August 33
## 16284 2015 August 34
## 16285 2015 August 34
## 16286 2015 August 34
## 16287 2015 August 34
## 16288 2015 August 32
## 16289 2015 August 33
## 16290 2015 August 34
## 16291 2015 August 34
## 16292 2015 August 34
## 16293 2015 August 34
## 16294 2015 August 34
## 16295 2015 August 33
## 16296 2015 August 34
## 16297 2015 August 34
## 16298 2015 August 34
## 16299 2015 August 34
## 16300 2015 August 34
## 16301 2015 August 34
## 16302 2015 August 34
## 16303 2015 August 34
## 16304 2015 August 34
## 16305 2015 August 33
## 16306 2015 August 33
## 16307 2015 August 34
## 16308 2015 August 34
## 16309 2015 August 34
## 16310 2015 August 34
## 16311 2015 August 34
## 16312 2015 August 34
## 16313 2015 August 33
## 16314 2015 August 34
## 16315 2015 August 34
## 16316 2015 August 34
## 16317 2015 August 34
## 16318 2015 August 34
## 16319 2015 August 34
## 16320 2015 August 34
## 16321 2015 August 34
## 16322 2015 August 33
## 16323 2015 August 34
## 16324 2015 August 34
## 16325 2015 August 34
## 16326 2015 August 33
## 16327 2015 August 34
## 16328 2015 August 34
## 16329 2015 August 34
## 16330 2015 August 34
## 16331 2015 August 34
## 16332 2015 August 34
## 16333 2015 August 33
## 16334 2015 August 34
## 16335 2015 August 34
## 16336 2015 August 34
## 16337 2015 August 35
## 16338 2015 August 34
## 16339 2015 August 34
## 16340 2015 August 34
## 16341 2015 August 34
## 16342 2015 August 34
## 16343 2015 August 34
## 16344 2015 August 35
## 16345 2015 August 35
## 16346 2015 August 34
## 16347 2015 August 34
## 16348 2015 August 34
## 16349 2015 August 34
## 16350 2015 August 35
## 16351 2015 August 34
## 16352 2015 August 34
## 16353 2015 August 34
## 16354 2015 August 34
## 16355 2015 August 34
## 16356 2015 September 39
## 16357 2015 August 34
## 16358 2015 August 34
## 16359 2015 August 35
## 16360 2015 August 35
## 16361 2015 August 34
## 16362 2015 August 34
## 16363 2015 August 35
## 16364 2015 August 34
## 16365 2015 August 33
## 16366 2015 August 35
## 16367 2015 August 35
## 16368 2015 August 34
## 16369 2015 August 35
## 16370 2015 August 34
## 16371 2015 August 35
## 16372 2015 August 35
## 16373 2015 August 33
## 16374 2015 October 43
## 16375 2015 August 35
## 16376 2015 August 35
## 16377 2015 August 35
## 16378 2015 August 35
## 16379 2015 September 39
## 16380 2015 August 35
## 16381 2015 August 35
## 16382 2015 August 35
## 16383 2015 August 34
## 16384 2015 August 34
## 16385 2015 August 35
## 16386 2016 February 6
## 16387 2016 March 10
## 16388 2016 April 15
## 16389 2016 May 23
## 16390 2016 November 48
## 16391 2017 April 17
## 16392 2015 August 35
## 16393 2015 August 34
## 16394 2015 August 35
## 16395 2015 August 35
## 16396 2015 August 35
## 16397 2015 August 34
## 16398 2015 August 35
## 16399 2015 August 35
## 16400 2015 August 35
## 16401 2015 August 35
## 16402 2015 August 33
## 16403 2015 August 35
## 16404 2015 August 34
## 16405 2015 August 34
## 16406 2015 August 35
## 16407 2015 August 35
## 16408 2015 August 35
## 16409 2015 September 36
## 16410 2015 September 36
## 16411 2015 September 36
## 16412 2015 September 36
## 16413 2015 September 36
## 16414 2015 August 35
## 16415 2015 August 35
## 16416 2015 August 34
## 16417 2015 August 34
## 16418 2015 August 34
## 16419 2017 July 26
## 16420 2015 August 34
## 16421 2015 August 34
## 16422 2015 August 34
## 16423 2015 August 34
## 16424 2015 August 33
## 16425 2015 August 34
## 16426 2015 August 34
## 16427 2015 August 34
## 16428 2015 August 35
## 16429 2015 August 33
## 16430 2015 August 35
## 16431 2015 August 35
## 16432 2015 August 35
## 16433 2015 August 34
## 16434 2015 August 34
## 16435 2015 August 34
## 16436 2015 August 35
## 16437 2015 August 35
## 16438 2015 August 34
## 16439 2015 August 35
## 16440 2015 August 35
## 16441 2015 August 35
## 16442 2015 October 42
## 16443 2015 August 35
## 16444 2015 August 33
## 16445 2015 September 36
## 16446 2015 August 35
## 16447 2015 August 34
## 16448 2015 August 35
## 16449 2015 August 35
## 16450 2015 August 34
## 16451 2015 August 34
## 16452 2015 August 35
## 16453 2015 August 34
## 16454 2015 August 35
## 16455 2015 August 35
## 16456 2015 August 35
## 16457 2015 August 35
## 16458 2015 August 35
## 16459 2015 August 35
## 16460 2015 August 35
## 16461 2015 August 35
## 16462 2015 August 35
## 16463 2015 August 35
## 16464 2015 August 35
## 16465 2015 August 35
## 16466 2015 August 35
## 16467 2015 August 34
## 16468 2015 August 34
## 16469 2015 August 35
## 16470 2015 August 35
## 16471 2015 August 35
## 16472 2015 August 35
## 16473 2015 August 35
## 16474 2015 August 35
## 16475 2015 August 35
## 16476 2015 August 35
## 16477 2015 August 35
## 16478 2015 August 35
## 16479 2015 August 35
## 16480 2015 August 35
## 16481 2015 August 35
## 16482 2015 August 35
## 16483 2015 August 34
## 16484 2015 August 35
## 16485 2015 August 35
## 16486 2015 August 36
## 16487 2015 August 35
## 16488 2015 August 35
## 16489 2015 August 35
## 16490 2015 August 35
## 16491 2015 August 35
## 16492 2015 August 36
## 16493 2015 August 35
## 16494 2015 September 36
## 16495 2015 August 34
## 16496 2015 August 35
## 16497 2015 August 34
## 16498 2015 August 35
## 16499 2015 August 35
## 16500 2015 August 36
## 16501 2015 August 36
## 16502 2015 September 37
## 16503 2015 August 35
## 16504 2015 August 34
## 16505 2015 August 34
## 16506 2015 August 35
## 16507 2015 August 36
## 16508 2015 August 35
## 16509 2015 August 35
## 16510 2015 August 35
## 16511 2015 August 36
## 16512 2015 August 36
## 16513 2015 August 35
## 16514 2015 August 36
## 16515 2015 August 36
## 16516 2015 August 35
## 16517 2015 August 36
## 16518 2016 October 45
## 16519 2016 October 45
## 16520 2015 August 35
## 16521 2015 August 35
## 16522 2015 August 35
## 16523 2015 August 35
## 16524 2015 September 36
## 16525 2015 August 35
## 16526 2015 August 35
## 16527 2015 August 35
## 16528 2017 April 15
## 16529 2015 August 35
## 16530 2015 August 35
## 16531 2015 August 36
## 16532 2015 August 35
## 16533 2015 August 35
## 16534 2015 August 35
## 16535 2015 August 35
## 16536 2015 August 35
## 16537 2015 August 36
## 16538 2015 August 35
## 16539 2015 August 35
## 16540 2015 August 35
## 16541 2015 August 35
## 16542 2015 August 35
## 16543 2015 August 35
## 16544 2015 September 37
## 16545 2015 September 37
## 16546 2015 October 41
## 16547 2015 October 41
## 16548 2015 October 41
## 16549 2015 October 41
## 16550 2015 October 41
## 16551 2015 October 41
## 16552 2015 October 41
## 16553 2015 October 41
## 16554 2015 October 41
## 16555 2015 October 41
## 16556 2015 October 41
## 16557 2015 October 41
## 16558 2015 October 41
## 16559 2015 October 41
## 16560 2015 October 41
## 16561 2015 October 41
## 16562 2015 October 41
## 16563 2015 October 41
## 16564 2015 October 41
## 16565 2015 October 41
## 16566 2015 October 41
## 16567 2015 October 41
## 16568 2015 October 41
## 16569 2015 October 41
## 16570 2015 October 41
## 16571 2015 October 41
## 16572 2015 October 41
## 16573 2015 August 35
## 16574 2017 June 24
## 16575 2015 August 35
## 16576 2015 August 35
## 16577 2015 August 35
## 16578 2015 August 34
## 16579 2015 August 34
## 16580 2015 August 34
## 16581 2015 August 35
## 16582 2015 August 35
## 16583 2015 August 35
## 16584 2015 August 35
## 16585 2015 September 36
## 16586 2015 August 35
## 16587 2015 August 35
## 16588 2015 August 36
## 16589 2015 September 36
## 16590 2015 August 35
## 16591 2015 August 35
## 16592 2015 August 35
## 16593 2015 August 35
## 16594 2015 September 36
## 16595 2015 September 37
## 16596 2015 August 36
## 16597 2015 August 36
## 16598 2015 September 36
## 16599 2015 August 35
## 16600 2015 August 36
## 16601 2015 August 35
## 16602 2015 September 36
## 16603 2015 August 35
## 16604 2015 August 35
## 16605 2015 October 41
## 16606 2015 August 35
## 16607 2015 August 36
## 16608 2015 August 36
## 16609 2015 August 35
## 16610 2015 August 34
## 16611 2015 August 36
## 16612 2015 September 36
## 16613 2015 September 36
## 16614 2015 September 36
## 16615 2015 August 35
## 16616 2017 August 34
## 16617 2015 August 36
## 16618 2015 September 36
## 16619 2015 September 36
## 16620 2015 August 35
## 16621 2017 June 26
## 16622 2015 August 36
## 16623 2015 August 35
## 16624 2015 August 35
## 16625 2015 August 36
## 16626 2015 August 35
## 16627 2015 August 36
## 16628 2015 August 36
## 16629 2015 August 36
## 16630 2015 August 35
## 16631 2015 August 35
## 16632 2015 August 35
## 16633 2015 August 34
## 16634 2015 August 36
## 16635 2015 August 36
## 16636 2015 August 34
## 16637 2015 September 36
## 16638 2015 September 36
## 16639 2015 August 36
## 16640 2015 August 36
## 16641 2015 August 34
## 16642 2015 September 36
## 16643 2015 September 36
## 16644 2015 September 36
## 16645 2015 September 36
## 16646 2017 January 5
## 16647 2015 September 36
## 16648 2015 September 36
## 16649 2015 September 36
## 16650 2015 September 36
## 16651 2015 September 36
## 16652 2015 September 36
## 16653 2015 September 36
## 16654 2015 September 36
## 16655 2015 August 36
## 16656 2015 September 36
## 16657 2015 September 36
## 16658 2015 August 36
## 16659 2015 August 35
## 16660 2015 September 36
## 16661 2015 September 36
## 16662 2015 September 36
## 16663 2015 September 36
## 16664 2015 September 36
## 16665 2015 September 37
## 16666 2015 September 36
## 16667 2015 September 36
## 16668 2015 September 36
## 16669 2015 September 36
## 16670 2015 September 36
## 16671 2015 August 36
## 16672 2015 September 36
## 16673 2015 September 36
## 16674 2015 September 36
## 16675 2015 September 36
## 16676 2015 September 36
## 16677 2015 September 36
## 16678 2015 September 36
## 16679 2015 August 35
## 16680 2015 September 36
## 16681 2015 September 36
## 16682 2015 September 36
## 16683 2015 September 36
## 16684 2015 September 37
## 16685 2015 September 36
## 16686 2015 September 37
## 16687 2015 September 36
## 16688 2016 May 21
## 16689 2015 September 37
## 16690 2015 September 36
## 16691 2015 August 35
## 16692 2015 September 36
## 16693 2015 September 36
## 16694 2015 September 36
## 16695 2015 November 45
## 16696 2015 November 45
## 16697 2015 November 45
## 16698 2015 November 45
## 16699 2015 November 45
## 16700 2015 September 36
## 16701 2015 September 36
## 16702 2015 September 36
## 16703 2015 September 36
## 16704 2015 September 36
## 16705 2015 September 36
## 16706 2015 August 36
## 16707 2015 September 36
## 16708 2015 August 36
## 16709 2017 July 27
## 16710 2015 September 36
## 16711 2015 September 36
## 16712 2015 September 37
## 16713 2015 September 36
## 16714 2017 July 28
## 16715 2015 September 36
## 16716 2015 September 36
## 16717 2015 September 36
## 16718 2015 September 36
## 16719 2015 September 36
## 16720 2015 August 35
## 16721 2015 September 36
## 16722 2015 September 36
## 16723 2015 September 36
## 16724 2015 September 36
## 16725 2015 September 36
## 16726 2016 September 36
## 16727 2017 June 24
## 16728 2015 September 36
## 16729 2015 September 37
## 16730 2015 September 37
## 16731 2015 September 36
## 16732 2016 April 17
## 16733 2015 September 36
## 16734 2015 September 37
## 16735 2015 August 36
## 16736 2016 June 25
## 16737 2015 September 37
## 16738 2015 September 36
## 16739 2015 September 36
## 16740 2015 September 37
## 16741 2015 September 37
## 16742 2016 March 14
## 16743 2016 April 17
## 16744 2016 November 48
## 16745 2015 August 35
## 16746 2015 September 37
## 16747 2015 September 37
## 16748 2015 September 37
## 16749 2015 September 36
## 16750 2015 September 36
## 16751 2015 September 37
## 16752 2015 September 36
## 16753 2015 August 36
## 16754 2015 August 36
## 16755 2015 September 37
## 16756 2015 September 37
## 16757 2015 September 37
## 16758 2015 September 37
## 16759 2015 September 37
## 16760 2015 September 37
## 16761 2015 September 37
## 16762 2015 September 37
## 16763 2015 September 37
## 16764 2015 September 37
## 16765 2016 January 4
## 16766 2015 September 36
## 16767 2015 September 37
## 16768 2015 September 36
## 16769 2015 September 38
## 16770 2015 October 41
## 16771 2015 October 41
## 16772 2015 October 41
## 16773 2015 October 41
## 16774 2015 October 41
## 16775 2015 October 41
## 16776 2015 October 41
## 16777 2015 September 36
## 16778 2015 August 35
## 16779 2015 September 37
## 16780 2015 September 37
## 16781 2015 September 37
## 16782 2015 September 37
## 16783 2015 September 37
## 16784 2016 August 34
## 16785 2015 September 37
## 16786 2015 September 37
## 16787 2015 September 36
## 16788 2015 September 37
## 16789 2015 September 37
## 16790 2015 September 37
## 16791 2015 September 37
## 16792 2015 September 37
## 16793 2015 September 36
## 16794 2015 September 37
## 16795 2015 September 36
## 16796 2015 September 37
## 16797 2015 September 37
## 16798 2015 September 37
## 16799 2015 September 37
## 16800 2015 September 37
## 16801 2015 September 37
## 16802 2015 August 36
## 16803 2015 September 37
## 16804 2015 September 37
## 16805 2015 September 37
## 16806 2015 September 37
## 16807 2015 September 37
## 16808 2015 September 37
## 16809 2015 September 37
## 16810 2015 September 38
## 16811 2015 September 37
## 16812 2015 September 37
## 16813 2015 September 37
## 16814 2015 September 37
## 16815 2015 September 37
## 16816 2015 September 37
## 16817 2015 September 37
## 16818 2015 September 37
## 16819 2015 September 37
## 16820 2015 September 37
## 16821 2016 December 53
## 16822 2015 October 40
## 16823 2015 September 37
## 16824 2015 September 37
## 16825 2015 September 37
## 16826 2015 September 37
## 16827 2015 September 37
## 16828 2015 September 37
## 16829 2015 September 37
## 16830 2015 September 37
## 16831 2015 September 37
## 16832 2015 September 37
## 16833 2015 September 37
## 16834 2015 September 36
## 16835 2015 September 37
## 16836 2015 September 36
## 16837 2015 September 37
## 16838 2015 September 37
## 16839 2015 September 38
## 16840 2015 September 37
## 16841 2015 September 36
## 16842 2015 September 37
## 16843 2015 September 37
## 16844 2015 September 37
## 16845 2015 September 37
## 16846 2015 September 37
## 16847 2015 September 37
## 16848 2015 September 37
## 16849 2015 September 37
## 16850 2015 September 37
## 16851 2015 September 37
## 16852 2015 September 37
## 16853 2015 September 37
## 16854 2015 September 37
## 16855 2015 September 37
## 16856 2015 September 37
## 16857 2015 September 37
## 16858 2015 September 37
## 16859 2015 September 37
## 16860 2015 September 37
## 16861 2015 September 37
## 16862 2015 September 37
## 16863 2015 September 37
## 16864 2015 September 37
## 16865 2015 September 37
## 16866 2015 September 38
## 16867 2015 September 38
## 16868 2015 September 38
## 16869 2015 September 38
## 16870 2015 September 38
## 16871 2015 September 38
## 16872 2015 September 38
## 16873 2015 September 38
## 16874 2015 September 38
## 16875 2015 September 38
## 16876 2015 September 38
## 16877 2015 September 38
## 16878 2015 September 38
## 16879 2015 September 38
## 16880 2015 September 38
## 16881 2015 September 38
## 16882 2015 September 38
## 16883 2015 September 38
## 16884 2015 September 38
## 16885 2015 September 38
## 16886 2015 September 38
## 16887 2015 September 38
## 16888 2015 September 38
## 16889 2015 September 38
## 16890 2015 September 38
## 16891 2015 September 38
## 16892 2015 September 38
## 16893 2015 September 37
## 16894 2015 September 37
## 16895 2015 September 37
## 16896 2015 September 37
## 16897 2015 September 37
## 16898 2015 September 38
## 16899 2015 September 38
## 16900 2015 September 38
## 16901 2015 October 44
## 16902 2015 December 51
## 16903 2016 January 4
## 16904 2016 February 8
## 16905 2016 March 11
## 16906 2016 May 21
## 16907 2015 September 38
## 16908 2016 March 10
## 16909 2017 February 7
## 16910 2015 September 38
## 16911 2015 September 37
## 16912 2015 September 38
## 16913 2015 September 38
## 16914 2015 September 38
## 16915 2015 September 38
## 16916 2015 September 38
## 16917 2015 September 37
## 16918 2015 September 38
## 16919 2015 September 36
## 16920 2015 September 37
## 16921 2015 September 36
## 16922 2015 September 37
## 16923 2015 September 36
## 16924 2015 September 37
## 16925 2015 September 36
## 16926 2015 September 37
## 16927 2015 September 37
## 16928 2015 September 38
## 16929 2015 September 36
## 16930 2015 September 38
## 16931 2016 January 4
## 16932 2016 February 8
## 16933 2016 April 17
## 16934 2016 September 39
## 16935 2016 October 43
## 16936 2016 November 48
## 16937 2016 December 52
## 16938 2017 January 4
## 16939 2017 April 16
## 16940 2017 May 20
## 16941 2015 September 37
## 16942 2015 September 38
## 16943 2015 September 38
## 16944 2015 September 38
## 16945 2015 September 37
## 16946 2015 September 38
## 16947 2015 September 37
## 16948 2015 September 38
## 16949 2016 January 4
## 16950 2015 September 37
## 16951 2015 September 37
## 16952 2015 September 37
## 16953 2015 September 37
## 16954 2015 September 38
## 16955 2015 September 38
## 16956 2015 September 38
## 16957 2015 September 38
## 16958 2015 September 38
## 16959 2015 September 38
## 16960 2015 September 38
## 16961 2015 September 38
## 16962 2015 September 38
## 16963 2015 September 38
## 16964 2015 September 37
## 16965 2015 September 38
## 16966 2015 September 38
## 16967 2015 September 38
## 16968 2015 September 38
## 16969 2015 September 38
## 16970 2015 September 38
## 16971 2015 September 38
## 16972 2015 September 38
## 16973 2015 September 37
## 16974 2015 September 38
## 16975 2015 September 38
## 16976 2015 September 38
## 16977 2015 September 38
## 16978 2015 September 38
## 16979 2015 September 37
## 16980 2015 September 37
## 16981 2015 September 38
## 16982 2015 September 37
## 16983 2015 September 38
## 16984 2015 September 38
## 16985 2015 September 38
## 16986 2015 September 38
## 16987 2015 September 38
## 16988 2015 September 38
## 16989 2015 September 38
## 16990 2015 September 37
## 16991 2015 September 37
## 16992 2015 September 38
## 16993 2015 September 38
## 16994 2015 September 38
## 16995 2015 September 37
## 16996 2015 September 38
## 16997 2015 September 38
## 16998 2015 September 38
## 16999 2015 September 38
## 17000 2015 September 38
## 17001 2015 September 38
## 17002 2015 September 38
## 17003 2015 September 38
## 17004 2015 September 38
## 17005 2015 September 38
## 17006 2015 September 38
## 17007 2015 September 38
## 17008 2015 September 38
## 17009 2015 September 38
## 17010 2015 September 38
## 17011 2015 September 38
## 17012 2015 September 38
## 17013 2015 September 38
## 17014 2015 September 38
## 17015 2015 September 38
## 17016 2015 September 38
## 17017 2015 September 38
## 17018 2015 September 38
## 17019 2015 September 38
## 17020 2015 September 38
## 17021 2015 September 38
## 17022 2015 September 39
## 17023 2015 September 38
## 17024 2015 September 38
## 17025 2015 September 38
## 17026 2015 September 38
## 17027 2015 September 38
## 17028 2015 September 38
## 17029 2015 September 38
## 17030 2015 September 37
## 17031 2015 September 37
## 17032 2015 September 38
## 17033 2015 September 38
## 17034 2015 September 39
## 17035 2015 September 37
## 17036 2015 September 39
## 17037 2015 September 38
## 17038 2015 September 38
## 17039 2015 September 38
## 17040 2015 September 38
## 17041 2015 September 38
## 17042 2015 September 39
## 17043 2015 September 38
## 17044 2015 September 39
## 17045 2015 September 39
## 17046 2015 September 39
## 17047 2015 September 39
## 17048 2015 September 38
## 17049 2015 September 39
## 17050 2015 September 39
## 17051 2015 September 39
## 17052 2015 September 39
## 17053 2015 September 39
## 17054 2015 September 39
## 17055 2015 September 39
## 17056 2015 September 39
## 17057 2016 January 3
## 17058 2015 September 39
## 17059 2015 September 39
## 17060 2015 September 39
## 17061 2015 September 39
## 17062 2015 September 39
## 17063 2015 September 39
## 17064 2015 September 38
## 17065 2015 September 38
## 17066 2015 September 38
## 17067 2015 September 39
## 17068 2015 September 37
## 17069 2015 September 37
## 17070 2015 September 38
## 17071 2015 September 38
## 17072 2015 September 37
## 17073 2015 September 38
## 17074 2015 September 39
## 17075 2015 September 38
## 17076 2015 September 39
## 17077 2015 September 38
## 17078 2015 September 39
## 17079 2015 September 39
## 17080 2015 September 38
## 17081 2015 September 38
## 17082 2015 September 37
## 17083 2015 September 38
## 17084 2015 September 38
## 17085 2015 September 38
## 17086 2015 September 38
## 17087 2015 September 38
## 17088 2015 September 38
## 17089 2015 September 39
## 17090 2015 September 39
## 17091 2015 September 39
## 17092 2015 September 39
## 17093 2016 September 39
## 17094 2015 September 39
## 17095 2015 September 39
## 17096 2016 September 39
## 17097 2015 September 39
## 17098 2015 September 39
## 17099 2015 September 39
## 17100 2015 September 39
## 17101 2015 September 39
## 17102 2015 September 39
## 17103 2015 September 39
## 17104 2015 September 39
## 17105 2015 September 38
## 17106 2015 September 39
## 17107 2015 September 39
## 17108 2015 September 38
## 17109 2015 September 39
## 17110 2015 September 39
## 17111 2015 September 39
## 17112 2015 September 38
## 17113 2015 September 38
## 17114 2015 September 38
## 17115 2015 September 37
## 17116 2015 September 39
## 17117 2015 September 39
## 17118 2015 December 52
## 17119 2015 September 39
## 17120 2015 September 38
## 17121 2015 September 39
## 17122 2015 September 38
## 17123 2015 October 41
## 17124 2015 September 39
## 17125 2015 September 39
## 17126 2015 September 38
## 17127 2015 September 38
## 17128 2015 September 38
## 17129 2015 September 39
## 17130 2015 September 39
## 17131 2015 September 39
## 17132 2015 September 39
## 17133 2015 September 39
## 17134 2015 September 39
## 17135 2015 September 39
## 17136 2015 September 39
## 17137 2015 September 38
## 17138 2015 September 39
## 17139 2015 September 37
## 17140 2015 September 39
## 17141 2015 September 39
## 17142 2015 September 39
## 17143 2015 September 39
## 17144 2015 September 39
## 17145 2015 September 39
## 17146 2015 September 39
## 17147 2015 September 39
## 17148 2015 September 39
## 17149 2015 September 39
## 17150 2015 September 39
## 17151 2015 September 39
## 17152 2015 September 39
## 17153 2015 September 39
## 17154 2015 September 39
## 17155 2015 September 38
## 17156 2015 September 39
## 17157 2015 September 39
## 17158 2015 September 40
## 17159 2015 September 40
## 17160 2015 September 39
## 17161 2015 September 39
## 17162 2015 September 40
## 17163 2015 December 53
## 17164 2016 April 16
## 17165 2016 April 16
## 17166 2015 September 40
## 17167 2015 September 40
## 17168 2015 September 40
## 17169 2015 September 40
## 17170 2015 September 38
## 17171 2015 September 39
## 17172 2015 September 39
## 17173 2015 September 39
## 17174 2015 September 39
## 17175 2015 September 40
## 17176 2015 September 40
## 17177 2015 September 39
## 17178 2015 September 40
## 17179 2015 September 40
## 17180 2015 September 38
## 17181 2015 September 40
## 17182 2015 September 39
## 17183 2015 September 39
## 17184 2015 September 39
## 17185 2015 September 39
## 17186 2015 September 39
## 17187 2015 September 39
## 17188 2015 September 39
## 17189 2015 September 39
## 17190 2015 September 39
## 17191 2015 September 39
## 17192 2015 September 39
## 17193 2015 September 39
## 17194 2015 September 40
## 17195 2015 September 39
## 17196 2015 September 39
## 17197 2015 September 39
## 17198 2015 September 39
## 17199 2015 September 39
## 17200 2015 September 39
## 17201 2015 September 39
## 17202 2015 September 39
## 17203 2015 September 40
## 17204 2015 September 40
## 17205 2015 September 39
## 17206 2015 September 39
## 17207 2015 September 39
## 17208 2015 September 39
## 17209 2015 September 39
## 17210 2015 September 39
## 17211 2015 September 39
## 17212 2015 September 38
## 17213 2016 September 38
## 17214 2015 September 38
## 17215 2015 September 38
## 17216 2015 September 39
## 17217 2015 September 39
## 17218 2015 September 38
## 17219 2015 September 38
## 17220 2015 September 38
## 17221 2015 September 38
## 17222 2015 September 38
## 17223 2015 September 39
## 17224 2015 September 39
## 17225 2015 September 39
## 17226 2015 September 39
## 17227 2015 September 40
## 17228 2015 September 40
## 17229 2015 September 39
## 17230 2015 September 39
## 17231 2015 September 39
## 17232 2015 September 38
## 17233 2015 September 38
## 17234 2015 September 39
## 17235 2015 September 38
## 17236 2015 September 39
## 17237 2015 September 39
## 17238 2015 September 40
## 17239 2015 September 40
## 17240 2015 October 40
## 17241 2015 September 40
## 17242 2015 October 40
## 17243 2015 November 47
## 17244 2015 November 47
## 17245 2015 November 47
## 17246 2015 November 47
## 17247 2015 November 47
## 17248 2015 November 47
## 17249 2015 November 47
## 17250 2015 October 40
## 17251 2015 September 40
## 17252 2015 October 43
## 17253 2015 October 40
## 17254 2015 October 40
## 17255 2015 October 41
## 17256 2015 October 41
## 17257 2015 October 41
## 17258 2015 October 41
## 17259 2015 October 41
## 17260 2015 October 41
## 17261 2015 October 41
## 17262 2015 October 41
## 17263 2015 October 41
## 17264 2015 October 41
## 17265 2015 October 41
## 17266 2015 October 41
## 17267 2015 October 41
## 17268 2015 October 41
## 17269 2015 October 41
## 17270 2015 October 41
## 17271 2015 October 41
## 17272 2015 September 39
## 17273 2015 September 40
## 17274 2015 September 40
## 17275 2015 September 40
## 17276 2015 September 40
## 17277 2015 September 40
## 17278 2015 September 40
## 17279 2015 September 40
## 17280 2015 September 40
## 17281 2015 September 40
## 17282 2015 September 40
## 17283 2015 September 40
## 17284 2015 September 40
## 17285 2015 September 40
## 17286 2015 October 40
## 17287 2015 September 40
## 17288 2015 September 40
## 17289 2015 September 40
## 17290 2015 September 40
## 17291 2015 September 38
## 17292 2015 September 39
## 17293 2015 September 40
## 17294 2015 September 40
## 17295 2015 October 40
## 17296 2015 September 40
## 17297 2015 October 40
## 17298 2015 September 40
## 17299 2015 September 39
## 17300 2015 September 40
## 17301 2015 September 39
## 17302 2015 September 39
## 17303 2015 September 40
## 17304 2015 September 39
## 17305 2015 October 40
## 17306 2015 September 40
## 17307 2015 September 40
## 17308 2015 September 40
## 17309 2016 November 47
## 17310 2015 September 40
## 17311 2015 October 40
## 17312 2015 September 40
## 17313 2015 September 40
## 17314 2015 September 40
## 17315 2015 October 41
## 17316 2015 September 40
## 17317 2015 September 39
## 17318 2015 October 41
## 17319 2015 October 40
## 17320 2015 September 39
## 17321 2015 October 41
## 17322 2015 October 41
## 17323 2015 October 40
## 17324 2015 September 40
## 17325 2015 September 40
## 17326 2015 October 41
## 17327 2015 October 41
## 17328 2015 September 40
## 17329 2015 September 40
## 17330 2015 September 40
## 17331 2015 September 40
## 17332 2015 September 40
## 17333 2015 September 40
## 17334 2015 September 40
## 17335 2015 September 39
## 17336 2015 October 41
## 17337 2015 September 40
## 17338 2015 October 41
## 17339 2015 October 41
## 17340 2015 October 41
## 17341 2015 October 41
## 17342 2015 October 41
## 17343 2015 October 41
## 17344 2015 October 41
## 17345 2015 September 39
## 17346 2015 September 39
## 17347 2015 October 41
## 17348 2015 October 41
## 17349 2015 October 41
## 17350 2015 October 41
## 17351 2015 September 40
## 17352 2015 October 40
## 17353 2015 October 40
## 17354 2015 September 40
## 17355 2015 October 40
## 17356 2015 October 40
## 17357 2015 October 40
## 17358 2015 October 40
## 17359 2015 October 40
## 17360 2015 September 40
## 17361 2015 September 40
## 17362 2015 October 40
## 17363 2015 October 41
## 17364 2015 September 40
## 17365 2015 September 40
## 17366 2015 September 40
## 17367 2015 October 41
## 17368 2016 November 48
## 17369 2015 September 40
## 17370 2015 October 41
## 17371 2015 October 41
## 17372 2015 October 41
## 17373 2015 October 41
## 17374 2015 October 40
## 17375 2015 October 41
## 17376 2015 October 40
## 17377 2015 October 40
## 17378 2015 October 40
## 17379 2015 September 40
## 17380 2015 September 40
## 17381 2015 October 41
## 17382 2015 October 41
## 17383 2015 September 40
## 17384 2015 September 40
## 17385 2015 September 40
## 17386 2015 October 41
## 17387 2015 October 40
## 17388 2015 October 41
## 17389 2015 October 41
## 17390 2015 October 41
## 17391 2015 October 41
## 17392 2015 October 41
## 17393 2015 October 41
## 17394 2015 October 41
## 17395 2015 October 41
## 17396 2015 October 41
## 17397 2015 October 41
## 17398 2015 October 41
## 17399 2015 October 41
## 17400 2015 October 41
## 17401 2015 October 41
## 17402 2015 September 40
## 17403 2015 October 41
## 17404 2015 October 40
## 17405 2015 October 41
## 17406 2015 September 40
## 17407 2015 October 41
## 17408 2015 October 40
## 17409 2015 October 40
## 17410 2015 October 41
## 17411 2015 October 41
## 17412 2015 October 41
## 17413 2015 October 40
## 17414 2015 October 40
## 17415 2015 October 41
## 17416 2015 October 41
## 17417 2015 October 41
## 17418 2015 October 44
## 17419 2015 November 47
## 17420 2016 January 3
## 17421 2016 April 17
## 17422 2017 March 10
## 17423 2015 October 41
## 17424 2015 October 41
## 17425 2015 October 41
## 17426 2015 October 41
## 17427 2015 October 41
## 17428 2015 October 40
## 17429 2015 October 41
## 17430 2015 October 41
## 17431 2015 October 41
## 17432 2015 October 41
## 17433 2015 October 41
## 17434 2015 October 44
## 17435 2015 October 41
## 17436 2015 October 41
## 17437 2015 October 41
## 17438 2015 October 41
## 17439 2015 October 41
## 17440 2015 October 41
## 17441 2015 October 41
## 17442 2015 October 41
## 17443 2015 October 41
## 17444 2015 October 41
## 17445 2015 October 41
## 17446 2015 October 40
## 17447 2015 October 41
## 17448 2015 October 41
## 17449 2015 October 41
## 17450 2015 October 41
## 17451 2015 October 41
## 17452 2015 October 41
## 17453 2015 October 41
## 17454 2015 October 41
## 17455 2015 October 41
## 17456 2015 October 41
## 17457 2015 October 41
## 17458 2015 October 41
## 17459 2015 October 41
## 17460 2015 October 41
## 17461 2015 October 41
## 17462 2015 October 41
## 17463 2015 October 42
## 17464 2015 October 42
## 17465 2015 October 41
## 17466 2015 October 42
## 17467 2015 October 41
## 17468 2015 October 42
## 17469 2015 October 41
## 17470 2015 October 41
## 17471 2015 October 41
## 17472 2015 October 41
## 17473 2015 October 41
## 17474 2015 October 42
## 17475 2015 October 41
## 17476 2015 October 42
## 17477 2015 October 41
## 17478 2015 October 41
## 17479 2015 October 42
## 17480 2015 October 42
## 17481 2015 October 42
## 17482 2015 October 42
## 17483 2015 October 42
## 17484 2015 October 42
## 17485 2015 October 42
## 17486 2015 October 41
## 17487 2015 October 41
## 17488 2015 October 41
## 17489 2015 October 41
## 17490 2015 October 41
## 17491 2015 October 41
## 17492 2015 October 41
## 17493 2015 October 41
## 17494 2015 October 42
## 17495 2015 October 41
## 17496 2015 October 41
## 17497 2015 October 41
## 17498 2015 October 41
## 17499 2015 October 41
## 17500 2015 October 42
## 17501 2017 May 21
## 17502 2015 October 41
## 17503 2015 September 40
## 17504 2015 October 42
## 17505 2017 May 21
## 17506 2015 October 42
## 17507 2015 October 42
## 17508 2015 October 42
## 17509 2016 May 21
## 17510 2016 October 44
## 17511 2017 May 21
## 17512 2015 October 42
## 17513 2015 October 42
## 17514 2015 October 42
## 17515 2015 October 41
## 17516 2015 October 42
## 17517 2015 December 50
## 17518 2016 May 19
## 17519 2016 September 40
## 17520 2017 January 2
## 17521 2017 January 4
## 17522 2017 February 6
## 17523 2015 October 42
## 17524 2017 May 21
## 17525 2015 October 42
## 17526 2015 October 42
## 17527 2017 May 21
## 17528 2015 October 42
## 17529 2015 October 40
## 17530 2015 October 42
## 17531 2015 October 41
## 17532 2015 October 41
## 17533 2015 October 42
## 17534 2015 October 40
## 17535 2015 October 41
## 17536 2015 October 41
## 17537 2016 May 21
## 17538 2015 October 40
## 17539 2015 October 42
## 17540 2016 February 6
## 17541 2015 October 42
## 17542 2016 January 4
## 17543 2015 October 42
## 17544 2015 October 42
## 17545 2015 October 42
## 17546 2015 October 42
## 17547 2015 October 42
## 17548 2015 October 42
## 17549 2016 April 17
## 17550 2015 October 42
## 17551 2015 October 42
## 17552 2015 October 42
## 17553 2015 October 42
## 17554 2015 October 42
## 17555 2016 November 48
## 17556 2015 October 42
## 17557 2015 October 41
## 17558 2015 October 42
## 17559 2015 October 42
## 17560 2015 October 42
## 17561 2015 October 42
## 17562 2015 October 42
## 17563 2015 October 42
## 17564 2015 October 42
## 17565 2015 October 42
## 17566 2015 October 42
## 17567 2015 October 41
## 17568 2015 October 41
## 17569 2015 October 42
## 17570 2015 October 42
## 17571 2015 October 42
## 17572 2015 October 42
## 17573 2015 October 42
## 17574 2015 October 42
## 17575 2015 October 43
## 17576 2015 October 42
## 17577 2015 October 42
## 17578 2015 October 42
## 17579 2015 October 41
## 17580 2015 October 42
## 17581 2015 October 42
## 17582 2015 October 42
## 17583 2015 October 42
## 17584 2015 October 42
## 17585 2015 October 42
## 17586 2015 October 42
## 17587 2015 October 42
## 17588 2015 October 42
## 17589 2015 October 40
## 17590 2015 October 42
## 17591 2015 October 42
## 17592 2015 October 42
## 17593 2015 October 42
## 17594 2015 October 42
## 17595 2015 November 48
## 17596 2015 October 42
## 17597 2015 October 42
## 17598 2015 October 42
## 17599 2015 October 42
## 17600 2015 October 42
## 17601 2015 October 42
## 17602 2015 October 42
## 17603 2015 October 42
## 17604 2015 October 42
## 17605 2015 October 42
## 17606 2015 October 42
## 17607 2015 October 42
## 17608 2015 October 41
## 17609 2015 October 42
## 17610 2015 October 42
## 17611 2015 October 42
## 17612 2015 October 42
## 17613 2015 October 43
## 17614 2015 October 42
## 17615 2015 October 42
## 17616 2015 October 42
## 17617 2015 October 42
## 17618 2015 October 43
## 17619 2015 October 41
## 17620 2015 October 42
## 17621 2015 October 43
## 17622 2015 October 42
## 17623 2015 October 42
## 17624 2015 October 42
## 17625 2015 October 42
## 17626 2015 October 42
## 17627 2015 October 41
## 17628 2015 October 42
## 17629 2015 October 42
## 17630 2015 October 42
## 17631 2015 October 42
## 17632 2015 October 42
## 17633 2015 October 42
## 17634 2015 October 42
## 17635 2015 October 41
## 17636 2015 October 42
## 17637 2015 October 43
## 17638 2015 October 42
## 17639 2015 October 43
## 17640 2015 October 42
## 17641 2015 October 43
## 17642 2015 October 42
## 17643 2015 October 43
## 17644 2015 October 42
## 17645 2015 October 43
## 17646 2015 October 42
## 17647 2015 October 42
## 17648 2015 October 43
## 17649 2015 October 42
## 17650 2015 October 42
## 17651 2015 October 42
## 17652 2015 October 42
## 17653 2015 October 42
## 17654 2015 October 42
## 17655 2015 October 42
## 17656 2015 October 42
## 17657 2015 October 42
## 17658 2015 October 42
## 17659 2015 October 42
## 17660 2015 October 42
## 17661 2015 October 42
## 17662 2015 October 42
## 17663 2015 October 42
## 17664 2015 October 42
## 17665 2015 October 42
## 17666 2015 October 42
## 17667 2015 October 42
## 17668 2015 October 42
## 17669 2015 October 42
## 17670 2015 October 42
## 17671 2015 October 42
## 17672 2015 October 43
## 17673 2015 October 42
## 17674 2015 October 42
## 17675 2015 October 42
## 17676 2015 October 42
## 17677 2015 October 42
## 17678 2015 October 42
## 17679 2015 October 42
## 17680 2015 October 42
## 17681 2015 October 42
## 17682 2015 October 42
## 17683 2015 October 42
## 17684 2015 October 42
## 17685 2015 October 42
## 17686 2015 October 42
## 17687 2015 October 42
## 17688 2015 October 42
## 17689 2015 October 42
## 17690 2015 October 42
## 17691 2015 October 42
## 17692 2015 October 42
## 17693 2015 October 42
## 17694 2015 October 42
## 17695 2015 October 42
## 17696 2015 October 42
## 17697 2015 October 42
## 17698 2015 October 42
## 17699 2015 October 42
## 17700 2015 October 42
## 17701 2015 October 43
## 17702 2015 October 42
## 17703 2015 October 42
## 17704 2015 October 42
## 17705 2015 October 42
## 17706 2016 July 29
## 17707 2015 October 42
## 17708 2015 October 42
## 17709 2015 October 42
## 17710 2015 October 42
## 17711 2015 October 42
## 17712 2015 October 42
## 17713 2015 October 42
## 17714 2015 October 42
## 17715 2015 October 42
## 17716 2015 October 42
## 17717 2015 October 42
## 17718 2015 October 42
## 17719 2015 October 42
## 17720 2015 October 43
## 17721 2015 October 42
## 17722 2015 October 42
## 17723 2016 December 50
## 17724 2015 October 42
## 17725 2015 October 42
## 17726 2015 October 43
## 17727 2015 October 42
## 17728 2015 October 42
## 17729 2015 October 42
## 17730 2016 March 14
## 17731 2017 March 9
## 17732 2015 October 42
## 17733 2015 October 42
## 17734 2015 October 42
## 17735 2015 October 42
## 17736 2015 October 42
## 17737 2015 October 42
## 17738 2015 October 42
## 17739 2015 October 42
## 17740 2015 October 42
## 17741 2015 October 43
## 17742 2015 October 42
## 17743 2015 October 42
## 17744 2015 October 42
## 17745 2015 October 42
## 17746 2015 October 43
## 17747 2015 October 41
## 17748 2015 October 43
## 17749 2016 February 6
## 17750 2016 April 15
## 17751 2017 March 12
## 17752 2015 October 43
## 17753 2016 February 6
## 17754 2016 February 8
## 17755 2016 April 15
## 17756 2015 October 42
## 17757 2015 October 42
## 17758 2015 October 42
## 17759 2015 October 42
## 17760 2015 October 42
## 17761 2015 October 42
## 17762 2015 October 42
## 17763 2015 October 42
## 17764 2015 October 42
## 17765 2015 October 42
## 17766 2015 October 42
## 17767 2015 October 43
## 17768 2015 October 42
## 17769 2015 October 43
## 17770 2015 October 43
## 17771 2015 October 43
## 17772 2015 October 41
## 17773 2015 October 43
## 17774 2015 October 43
## 17775 2015 October 42
## 17776 2015 October 43
## 17777 2015 October 42
## 17778 2015 October 43
## 17779 2015 October 42
## 17780 2015 October 42
## 17781 2015 October 43
## 17782 2015 October 43
## 17783 2015 December 49
## 17784 2016 February 6
## 17785 2016 March 12
## 17786 2016 April 15
## 17787 2016 May 20
## 17788 2016 September 40
## 17789 2016 October 43
## 17790 2016 November 48
## 17791 2017 January 5
## 17792 2017 February 9
## 17793 2017 May 22
## 17794 2015 October 43
## 17795 2016 May 20
## 17796 2017 March 10
## 17797 2017 March 12
## 17798 2017 May 19
## 17799 2015 October 43
## 17800 2015 October 43
## 17801 2015 October 43
## 17802 2015 October 42
## 17803 2015 October 43
## 17804 2015 October 43
## 17805 2015 October 43
## 17806 2017 January 5
## 17807 2017 February 6
## 17808 2015 October 43
## 17809 2015 November 46
## 17810 2016 January 5
## 17811 2016 June 25
## 17812 2015 October 42
## 17813 2015 October 43
## 17814 2015 October 43
## 17815 2015 October 43
## 17816 2015 October 42
## 17817 2015 October 42
## 17818 2015 October 42
## 17819 2015 October 43
## 17820 2015 October 42
## 17821 2015 October 43
## 17822 2015 October 43
## 17823 2015 October 43
## 17824 2015 October 43
## 17825 2015 October 43
## 17826 2015 October 43
## 17827 2015 October 43
## 17828 2015 October 43
## 17829 2015 October 43
## 17830 2015 October 43
## 17831 2015 October 43
## 17832 2015 October 43
## 17833 2015 October 43
## 17834 2015 October 43
## 17835 2015 October 43
## 17836 2015 October 43
## 17837 2015 October 43
## 17838 2015 October 43
## 17839 2015 October 43
## 17840 2015 October 43
## 17841 2015 October 43
## 17842 2015 October 43
## 17843 2015 October 43
## 17844 2015 October 43
## 17845 2015 October 43
## 17846 2015 October 43
## 17847 2015 October 43
## 17848 2015 October 43
## 17849 2015 October 43
## 17850 2015 October 43
## 17851 2015 October 42
## 17852 2015 October 42
## 17853 2015 October 43
## 17854 2015 October 42
## 17855 2015 October 43
## 17856 2015 October 43
## 17857 2015 October 43
## 17858 2015 October 43
## 17859 2015 October 43
## 17860 2015 October 43
## 17861 2015 October 43
## 17862 2015 October 43
## 17863 2015 October 43
## 17864 2015 October 43
## 17865 2015 October 43
## 17866 2015 October 43
## 17867 2015 October 43
## 17868 2015 October 43
## 17869 2015 October 43
## 17870 2015 October 43
## 17871 2015 October 43
## 17872 2015 October 43
## 17873 2015 October 43
## 17874 2015 October 43
## 17875 2015 October 43
## 17876 2015 October 43
## 17877 2015 October 43
## 17878 2015 October 43
## 17879 2015 October 43
## 17880 2015 October 43
## 17881 2015 October 43
## 17882 2015 October 43
## 17883 2015 October 43
## 17884 2015 October 43
## 17885 2015 October 43
## 17886 2015 October 43
## 17887 2017 March 10
## 17888 2015 October 43
## 17889 2015 October 43
## 17890 2015 October 43
## 17891 2015 October 43
## 17892 2015 October 43
## 17893 2015 October 43
## 17894 2015 October 43
## 17895 2015 October 43
## 17896 2015 October 43
## 17897 2015 October 43
## 17898 2015 October 43
## 17899 2015 October 43
## 17900 2015 October 43
## 17901 2015 October 43
## 17902 2015 October 43
## 17903 2015 October 43
## 17904 2015 October 43
## 17905 2015 October 43
## 17906 2015 October 44
## 17907 2015 October 43
## 17908 2015 October 43
## 17909 2015 October 43
## 17910 2015 October 43
## 17911 2015 October 43
## 17912 2015 October 43
## 17913 2015 October 44
## 17914 2015 November 49
## 17915 2016 January 2
## 17916 2016 April 15
## 17917 2016 May 23
## 17918 2016 November 48
## 17919 2015 October 44
## 17920 2015 November 48
## 17921 2015 December 49
## 17922 2016 January 5
## 17923 2016 March 12
## 17924 2016 March 13
## 17925 2016 June 25
## 17926 2016 July 29
## 17927 2016 October 44
## 17928 2015 October 44
## 17929 2015 October 44
## 17930 2015 October 43
## 17931 2015 October 44
## 17932 2015 October 44
## 17933 2015 October 44
## 17934 2015 October 43
## 17935 2015 October 43
## 17936 2015 October 43
## 17937 2015 October 44
## 17938 2017 January 2
## 17939 2015 October 44
## 17940 2015 October 44
## 17941 2015 October 44
## 17942 2017 February 8
## 17943 2015 October 44
## 17944 2015 November 48
## 17945 2015 December 52
## 17946 2016 January 4
## 17947 2016 February 6
## 17948 2016 March 10
## 17949 2016 April 15
## 17950 2015 October 44
## 17951 2016 January 4
## 17952 2017 February 8
## 17953 2015 October 43
## 17954 2015 October 43
## 17955 2015 October 44
## 17956 2015 November 45
## 17957 2016 April 15
## 17958 2015 October 44
## 17959 2015 October 44
## 17960 2015 October 44
## 17961 2016 April 18
## 17962 2015 October 43
## 17963 2015 October 43
## 17964 2015 October 43
## 17965 2015 October 44
## 17966 2015 November 46
## 17967 2015 December 52
## 17968 2016 September 38
## 17969 2016 November 45
## 17970 2017 March 11
## 17971 2015 October 43
## 17972 2015 October 44
## 17973 2016 February 6
## 17974 2016 March 10
## 17975 2015 October 43
## 17976 2015 October 43
## 17977 2015 October 44
## 17978 2015 October 43
## 17979 2015 October 44
## 17980 2015 October 43
## 17981 2015 October 43
## 17982 2015 November 47
## 17983 2015 November 47
## 17984 2015 October 44
## 17985 2015 November 48
## 17986 2015 December 50
## 17987 2015 December 52
## 17988 2016 January 4
## 17989 2016 May 22
## 17990 2015 October 44
## 17991 2015 November 45
## 17992 2015 November 46
## 17993 2015 November 46
## 17994 2015 November 48
## 17995 2015 November 49
## 17996 2015 December 51
## 17997 2015 December 53
## 17998 2016 January 4
## 17999 2016 February 6
## 18000 2016 February 7
## 18001 2016 February 9
## 18002 2016 March 12
## 18003 2016 March 13
## 18004 2016 April 15
## 18005 2016 April 16
## 18006 2016 April 17
## 18007 2016 May 19
## 18008 2016 May 23
## 18009 2016 June 27
## 18010 2016 August 32
## 18011 2016 October 44
## 18012 2016 November 48
## 18013 2016 December 53
## 18014 2017 January 2
## 18015 2017 January 5
## 18016 2017 April 15
## 18017 2017 June 22
## 18018 2015 October 44
## 18019 2015 October 44
## 18020 2015 October 44
## 18021 2015 October 44
## 18022 2015 October 44
## 18023 2016 March 10
## 18024 2015 October 44
## 18025 2015 October 44
## 18026 2015 October 44
## 18027 2015 October 44
## 18028 2015 October 44
## 18029 2015 October 44
## 18030 2015 October 44
## 18031 2015 October 44
## 18032 2015 October 44
## 18033 2015 October 44
## 18034 2015 October 43
## 18035 2015 October 43
## 18036 2015 October 44
## 18037 2015 October 44
## 18038 2015 October 44
## 18039 2015 October 43
## 18040 2015 October 43
## 18041 2015 October 44
## 18042 2015 October 44
## 18043 2015 October 44
## 18044 2015 October 44
## 18045 2015 October 44
## 18046 2016 October 44
## 18047 2015 October 43
## 18048 2015 October 44
## 18049 2015 October 44
## 18050 2015 October 44
## 18051 2015 October 44
## 18052 2015 October 43
## 18053 2015 October 44
## 18054 2015 October 44
## 18055 2015 October 44
## 18056 2015 October 44
## 18057 2015 October 44
## 18058 2015 October 44
## 18059 2015 October 44
## 18060 2016 October 44
## 18061 2015 October 44
## 18062 2015 October 44
## 18063 2015 October 44
## 18064 2015 October 44
## 18065 2015 October 44
## 18066 2015 October 44
## 18067 2015 October 44
## 18068 2015 October 44
## 18069 2015 October 44
## 18070 2015 October 44
## 18071 2016 February 8
## 18072 2015 November 45
## 18073 2016 November 47
## 18074 2015 October 44
## 18075 2016 September 40
## 18076 2015 October 44
## 18077 2015 November 45
## 18078 2015 October 44
## 18079 2015 November 45
## 18080 2015 October 44
## 18081 2015 November 45
## 18082 2015 October 44
## 18083 2015 October 44
## 18084 2015 November 45
## 18085 2015 October 44
## 18086 2015 November 45
## 18087 2015 November 45
## 18088 2015 November 45
## 18089 2015 November 45
## 18090 2015 November 45
## 18091 2015 November 45
## 18092 2016 January 4
## 18093 2015 November 45
## 18094 2015 November 45
## 18095 2015 November 45
## 18096 2015 November 45
## 18097 2016 January 2
## 18098 2016 February 7
## 18099 2016 March 10
## 18100 2016 March 11
## 18101 2016 May 19
## 18102 2015 October 44
## 18103 2015 November 45
## 18104 2015 November 45
## 18105 2015 November 45
## 18106 2015 November 45
## 18107 2016 February 7
## 18108 2016 October 44
## 18109 2015 November 45
## 18110 2015 November 45
## 18111 2017 January 5
## 18112 2015 November 45
## 18113 2015 November 45
## 18114 2017 April 16
## 18115 2015 November 45
## 18116 2015 November 45
## 18117 2015 November 45
## 18118 2017 January 5
## 18119 2015 November 45
## 18120 2015 November 45
## 18121 2015 November 45
## 18122 2015 November 45
## 18123 2015 November 45
## 18124 2015 November 45
## 18125 2015 November 45
## 18126 2015 November 45
## 18127 2015 November 45
## 18128 2015 October 44
## 18129 2015 November 45
## 18130 2015 November 45
## 18131 2015 November 45
## 18132 2015 November 45
## 18133 2015 November 45
## 18134 2015 October 44
## 18135 2015 November 45
## 18136 2015 November 45
## 18137 2016 November 45
## 18138 2015 November 45
## 18139 2015 November 45
## 18140 2015 November 45
## 18141 2015 November 45
## 18142 2015 November 45
## 18143 2015 November 45
## 18144 2015 November 45
## 18145 2015 November 45
## 18146 2015 November 45
## 18147 2016 November 47
## 18148 2015 November 45
## 18149 2016 December 49
## 18150 2015 November 45
## 18151 2015 November 45
## 18152 2015 November 45
## 18153 2015 November 45
## 18154 2015 November 45
## 18155 2015 November 45
## 18156 2015 November 45
## 18157 2015 November 45
## 18158 2015 November 45
## 18159 2015 November 45
## 18160 2015 November 45
## 18161 2015 November 45
## 18162 2015 November 45
## 18163 2015 November 45
## 18164 2015 November 45
## 18165 2015 November 45
## 18166 2015 November 45
## 18167 2015 November 46
## 18168 2015 November 46
## 18169 2015 November 45
## 18170 2015 November 45
## 18171 2015 November 46
## 18172 2015 November 45
## 18173 2015 November 47
## 18174 2015 November 47
## 18175 2015 November 47
## 18176 2015 November 47
## 18177 2015 November 46
## 18178 2015 November 46
## 18179 2015 November 46
## 18180 2015 November 46
## 18181 2015 November 46
## 18182 2015 November 46
## 18183 2015 November 46
## 18184 2015 November 46
## 18185 2015 November 46
## 18186 2015 November 46
## 18187 2015 November 46
## 18188 2015 November 46
## 18189 2015 November 45
## 18190 2015 November 46
## 18191 2015 November 45
## 18192 2015 November 46
## 18193 2015 November 46
## 18194 2015 November 46
## 18195 2015 November 46
## 18196 2015 November 46
## 18197 2015 November 46
## 18198 2015 November 46
## 18199 2015 November 46
## 18200 2015 November 45
## 18201 2015 November 45
## 18202 2015 November 46
## 18203 2015 November 45
## 18204 2015 November 45
## 18205 2015 November 46
## 18206 2015 November 46
## 18207 2015 November 46
## 18208 2015 November 46
## 18209 2015 November 45
## 18210 2015 November 46
## 18211 2015 November 46
## 18212 2015 November 45
## 18213 2015 November 45
## 18214 2015 November 46
## 18215 2015 November 46
## 18216 2015 November 46
## 18217 2015 November 46
## 18218 2015 November 46
## 18219 2015 November 45
## 18220 2015 November 45
## 18221 2015 November 45
## 18222 2015 November 45
## 18223 2015 November 46
## 18224 2015 November 46
## 18225 2015 November 46
## 18226 2015 November 45
## 18227 2017 April 14
## 18228 2015 November 45
## 18229 2015 November 45
## 18230 2017 April 14
## 18231 2015 November 45
## 18232 2015 November 45
## 18233 2015 November 45
## 18234 2015 November 45
## 18235 2015 November 46
## 18236 2015 November 45
## 18237 2015 November 45
## 18238 2015 November 45
## 18239 2015 November 45
## 18240 2015 November 46
## 18241 2015 November 45
## 18242 2015 November 46
## 18243 2015 November 45
## 18244 2015 November 46
## 18245 2015 November 46
## 18246 2015 November 45
## 18247 2015 November 46
## 18248 2015 November 45
## 18249 2015 November 45
## 18250 2015 November 45
## 18251 2015 November 46
## 18252 2015 November 45
## 18253 2015 November 45
## 18254 2015 November 45
## 18255 2015 November 46
## 18256 2015 November 46
## 18257 2015 November 46
## 18258 2015 November 45
## 18259 2015 November 45
## 18260 2015 November 45
## 18261 2015 November 45
## 18262 2016 February 9
## 18263 2015 November 46
## 18264 2015 November 45
## 18265 2015 November 46
## 18266 2015 November 45
## 18267 2015 November 45
## 18268 2015 November 46
## 18269 2015 November 45
## 18270 2015 November 45
## 18271 2015 November 45
## 18272 2015 November 45
## 18273 2015 November 47
## 18274 2015 November 48
## 18275 2016 January 4
## 18276 2016 January 4
## 18277 2016 April 15
## 18278 2017 January 1
## 18279 2017 March 10
## 18280 2015 November 45
## 18281 2015 November 45
## 18282 2015 November 45
## 18283 2015 November 45
## 18284 2015 November 45
## 18285 2015 November 45
## 18286 2015 November 45
## 18287 2015 November 47
## 18288 2015 November 47
## 18289 2016 March 10
## 18290 2015 November 47
## 18291 2015 November 47
## 18292 2015 November 47
## 18293 2015 October 44
## 18294 2015 November 47
## 18295 2015 November 47
## 18296 2015 November 45
## 18297 2015 October 44
## 18298 2015 November 45
## 18299 2015 November 45
## 18300 2015 November 47
## 18301 2015 November 47
## 18302 2015 November 47
## 18303 2016 July 31
## 18304 2015 November 47
## 18305 2015 November 47
## 18306 2015 November 47
## 18307 2016 December 53
## 18308 2015 November 47
## 18309 2016 December 53
## 18310 2015 November 47
## 18311 2015 November 47
## 18312 2015 November 47
## 18313 2015 November 47
## 18314 2015 October 44
## 18315 2015 November 47
## 18316 2015 November 47
## 18317 2015 November 45
## 18318 2017 April 14
## 18319 2015 November 47
## 18320 2016 January 3
## 18321 2016 March 11
## 18322 2016 February 9
## 18323 2015 November 47
## 18324 2016 July 28
## 18325 2016 February 7
## 18326 2016 February 7
## 18327 2016 February 7
## 18328 2016 February 7
## 18329 2016 February 7
## 18330 2016 February 7
## 18331 2016 February 7
## 18332 2016 February 7
## 18333 2016 February 7
## 18334 2016 February 7
## 18335 2016 February 7
## 18336 2016 February 7
## 18337 2016 February 7
## 18338 2016 February 7
## 18339 2016 February 7
## 18340 2016 February 7
## 18341 2016 February 7
## 18342 2016 February 7
## 18343 2016 February 7
## 18344 2016 February 7
## 18345 2016 February 7
## 18346 2016 February 7
## 18347 2016 February 7
## 18348 2016 February 7
## 18349 2016 February 7
## 18350 2016 February 7
## 18351 2016 February 7
## 18352 2016 February 7
## 18353 2016 February 7
## 18354 2016 February 7
## 18355 2016 February 7
## 18356 2016 February 7
## 18357 2016 February 7
## 18358 2016 February 7
## 18359 2016 February 7
## 18360 2016 February 7
## 18361 2016 February 7
## 18362 2016 February 7
## 18363 2016 February 7
## 18364 2016 February 7
## 18365 2016 February 7
## 18366 2016 February 7
## 18367 2016 June 26
## 18368 2015 November 47
## 18369 2015 November 47
## 18370 2017 March 12
## 18371 2015 November 47
## 18372 2016 June 24
## 18373 2017 January 5
## 18374 2017 May 20
## 18375 2015 November 47
## 18376 2015 November 47
## 18377 2015 November 47
## 18378 2015 November 47
## 18379 2015 November 47
## 18380 2015 November 47
## 18381 2015 November 47
## 18382 2015 November 47
## 18383 2015 November 45
## 18384 2015 November 47
## 18385 2015 November 47
## 18386 2015 November 47
## 18387 2015 November 47
## 18388 2017 June 26
## 18389 2015 November 47
## 18390 2015 November 47
## 18391 2015 November 47
## 18392 2017 January 2
## 18393 2017 March 11
## 18394 2015 November 47
## 18395 2015 November 47
## 18396 2015 November 47
## 18397 2015 November 47
## 18398 2015 November 47
## 18399 2015 November 47
## 18400 2015 November 47
## 18401 2015 November 47
## 18402 2015 November 47
## 18403 2015 November 47
## 18404 2015 November 47
## 18405 2015 December 51
## 18406 2016 March 12
## 18407 2015 November 47
## 18408 2016 January 3
## 18409 2016 February 6
## 18410 2016 February 9
## 18411 2016 March 11
## 18412 2016 March 14
## 18413 2016 April 17
## 18414 2016 May 23
## 18415 2015 November 47
## 18416 2015 November 47
## 18417 2015 November 47
## 18418 2016 March 12
## 18419 2016 December 51
## 18420 2016 December 51
## 18421 2017 January 4
## 18422 2017 March 9
## 18423 2015 November 47
## 18424 2015 November 47
## 18425 2016 January 2
## 18426 2015 November 47
## 18427 2015 November 47
## 18428 2015 November 48
## 18429 2015 November 47
## 18430 2015 November 47
## 18431 2015 November 47
## 18432 2015 November 47
## 18433 2015 November 47
## 18434 2015 November 47
## 18435 2015 November 47
## 18436 2016 May 22
## 18437 2017 March 13
## 18438 2017 April 14
## 18439 2015 November 47
## 18440 2015 November 47
## 18441 2015 November 47
## 18442 2016 May 20
## 18443 2017 June 24
## 18444 2015 November 47
## 18445 2015 November 47
## 18446 2016 March 11
## 18447 2015 November 47
## 18448 2015 November 47
## 18449 2015 November 47
## 18450 2015 November 47
## 18451 2015 November 48
## 18452 2015 November 47
## 18453 2015 November 47
## 18454 2015 November 47
## 18455 2015 November 47
## 18456 2015 November 49
## 18457 2015 December 49
## 18458 2015 December 49
## 18459 2015 November 47
## 18460 2015 November 48
## 18461 2015 November 47
## 18462 2015 November 47
## 18463 2015 November 47
## 18464 2015 November 47
## 18465 2015 November 47
## 18466 2015 November 47
## 18467 2015 November 47
## 18468 2015 November 47
## 18469 2015 November 47
## 18470 2015 November 47
## 18471 2015 November 47
## 18472 2015 November 48
## 18473 2016 February 6
## 18474 2015 November 47
## 18475 2015 November 48
## 18476 2015 November 47
## 18477 2015 November 47
## 18478 2015 November 47
## 18479 2015 November 47
## 18480 2015 November 47
## 18481 2015 November 47
## 18482 2015 November 47
## 18483 2015 November 48
## 18484 2016 February 6
## 18485 2015 November 47
## 18486 2015 November 47
## 18487 2015 November 47
## 18488 2015 November 48
## 18489 2015 November 47
## 18490 2015 November 47
## 18491 2015 November 47
## 18492 2015 November 47
## 18493 2015 November 47
## 18494 2015 November 47
## 18495 2015 November 47
## 18496 2015 November 47
## 18497 2015 November 47
## 18498 2015 November 47
## 18499 2015 November 47
## 18500 2015 November 47
## 18501 2015 November 47
## 18502 2015 November 47
## 18503 2015 November 47
## 18504 2015 November 47
## 18505 2015 November 47
## 18506 2017 April 16
## 18507 2015 November 47
## 18508 2015 November 47
## 18509 2015 November 47
## 18510 2015 November 47
## 18511 2015 November 47
## 18512 2015 November 47
## 18513 2015 November 48
## 18514 2015 November 47
## 18515 2015 November 47
## 18516 2015 November 47
## 18517 2015 November 47
## 18518 2015 November 47
## 18519 2015 November 47
## 18520 2015 November 47
## 18521 2015 November 47
## 18522 2015 November 47
## 18523 2016 February 9
## 18524 2016 May 19
## 18525 2017 July 27
## 18526 2015 November 47
## 18527 2015 November 47
## 18528 2015 November 47
## 18529 2015 November 47
## 18530 2015 November 47
## 18531 2015 November 47
## 18532 2015 November 47
## 18533 2015 November 47
## 18534 2015 November 47
## 18535 2015 November 48
## 18536 2016 March 10
## 18537 2016 May 19
## 18538 2016 November 47
## 18539 2015 November 47
## 18540 2015 November 47
## 18541 2015 November 47
## 18542 2015 November 47
## 18543 2015 November 47
## 18544 2015 November 47
## 18545 2015 November 47
## 18546 2015 November 47
## 18547 2015 November 47
## 18548 2015 November 47
## 18549 2015 November 47
## 18550 2015 November 47
## 18551 2015 November 47
## 18552 2015 November 47
## 18553 2015 November 47
## 18554 2015 December 53
## 18555 2015 December 53
## 18556 2015 December 53
## 18557 2015 November 47
## 18558 2015 November 48
## 18559 2015 November 47
## 18560 2015 November 47
## 18561 2015 November 47
## 18562 2015 November 47
## 18563 2015 November 47
## 18564 2015 November 47
## 18565 2015 November 47
## 18566 2015 November 47
## 18567 2015 November 47
## 18568 2015 November 47
## 18569 2015 November 47
## 18570 2015 November 48
## 18571 2015 November 48
## 18572 2015 November 47
## 18573 2015 December 49
## 18574 2015 November 47
## 18575 2016 February 9
## 18576 2016 February 9
## 18577 2016 December 51
## 18578 2015 November 48
## 18579 2015 November 48
## 18580 2015 November 48
## 18581 2015 November 48
## 18582 2015 November 48
## 18583 2015 November 48
## 18584 2015 November 48
## 18585 2015 November 47
## 18586 2015 November 47
## 18587 2016 May 22
## 18588 2016 May 22
## 18589 2016 August 35
## 18590 2016 August 35
## 18591 2016 August 35
## 18592 2016 August 35
## 18593 2016 August 35
## 18594 2016 August 35
## 18595 2016 June 27
## 18596 2016 June 27
## 18597 2016 June 27
## 18598 2016 June 27
## 18599 2016 June 27
## 18600 2016 June 27
## 18601 2016 March 10
## 18602 2016 March 10
## 18603 2016 March 10
## 18604 2016 June 25
## 18605 2015 November 48
## 18606 2015 November 48
## 18607 2015 November 48
## 18608 2015 November 48
## 18609 2015 November 48
## 18610 2015 November 46
## 18611 2015 November 48
## 18612 2015 November 48
## 18613 2015 November 48
## 18614 2015 December 51
## 18615 2016 February 6
## 18616 2016 December 51
## 18617 2017 February 6
## 18618 2015 November 48
## 18619 2015 November 48
## 18620 2015 November 48
## 18621 2015 November 48
## 18622 2016 February 9
## 18623 2015 November 48
## 18624 2015 November 48
## 18625 2016 February 6
## 18626 2016 March 13
## 18627 2016 May 20
## 18628 2016 May 22
## 18629 2017 March 9
## 18630 2017 March 11
## 18631 2017 May 21
## 18632 2015 November 48
## 18633 2015 November 48
## 18634 2015 November 48
## 18635 2015 November 48
## 18636 2015 November 48
## 18637 2015 November 48
## 18638 2015 November 48
## 18639 2016 January 3
## 18640 2016 November 48
## 18641 2015 December 49
## 18642 2015 November 48
## 18643 2016 February 8
## 18644 2015 November 47
## 18645 2015 November 48
## 18646 2015 November 48
## 18647 2015 November 48
## 18648 2015 November 48
## 18649 2015 November 48
## 18650 2016 March 14
## 18651 2017 January 2
## 18652 2015 November 48
## 18653 2015 November 47
## 18654 2015 November 47
## 18655 2015 November 48
## 18656 2016 April 18
## 18657 2016 December 53
## 18658 2017 August 31
## 18659 2015 November 48
## 18660 2015 November 48
## 18661 2016 April 15
## 18662 2016 April 15
## 18663 2016 September 38
## 18664 2017 January 3
## 18665 2017 January 4
## 18666 2017 August 31
## 18667 2015 November 48
## 18668 2015 November 48
## 18669 2015 November 48
## 18670 2015 November 48
## 18671 2015 November 48
## 18672 2016 May 19
## 18673 2015 November 48
## 18674 2015 November 48
## 18675 2015 November 48
## 18676 2015 November 48
## 18677 2015 November 48
## 18678 2017 May 22
## 18679 2016 August 35
## 18680 2016 August 35
## 18681 2015 November 47
## 18682 2015 November 48
## 18683 2015 November 48
## 18684 2015 November 48
## 18685 2015 November 48
## 18686 2015 November 48
## 18687 2015 November 48
## 18688 2015 November 48
## 18689 2015 November 48
## 18690 2016 March 11
## 18691 2015 November 48
## 18692 2015 November 48
## 18693 2015 November 47
## 18694 2015 November 48
## 18695 2015 November 46
## 18696 2015 November 48
## 18697 2015 November 48
## 18698 2015 November 48
## 18699 2017 March 11
## 18700 2015 November 48
## 18701 2015 November 48
## 18702 2015 November 48
## 18703 2016 January 2
## 18704 2016 February 7
## 18705 2016 March 11
## 18706 2015 December 50
## 18707 2015 November 48
## 18708 2015 November 48
## 18709 2015 November 48
## 18710 2015 November 48
## 18711 2016 April 17
## 18712 2015 November 48
## 18713 2015 December 49
## 18714 2015 December 49
## 18715 2015 December 50
## 18716 2015 November 48
## 18717 2015 November 48
## 18718 2015 December 53
## 18719 2015 November 48
## 18720 2016 April 16
## 18721 2015 November 48
## 18722 2015 November 48
## 18723 2015 November 48
## 18724 2015 November 48
## 18725 2015 November 48
## 18726 2015 November 48
## 18727 2015 November 49
## 18728 2015 November 48
## 18729 2015 November 48
## 18730 2015 November 48
## 18731 2015 November 48
## 18732 2015 November 48
## 18733 2015 November 48
## 18734 2015 November 48
## 18735 2015 November 47
## 18736 2015 November 48
## 18737 2015 November 48
## 18738 2015 November 48
## 18739 2015 November 48
## 18740 2015 November 48
## 18741 2015 November 48
## 18742 2015 November 48
## 18743 2017 February 5
## 18744 2015 November 48
## 18745 2015 November 48
## 18746 2015 November 48
## 18747 2016 November 48
## 18748 2016 December 50
## 18749 2017 February 7
## 18750 2015 November 48
## 18751 2015 November 48
## 18752 2015 November 48
## 18753 2015 November 48
## 18754 2015 November 48
## 18755 2015 November 48
## 18756 2015 November 48
## 18757 2015 November 48
## 18758 2017 February 7
## 18759 2015 November 48
## 18760 2016 October 45
## 18761 2015 November 48
## 18762 2015 November 48
## 18763 2016 October 45
## 18764 2015 November 48
## 18765 2015 November 48
## 18766 2015 November 48
## 18767 2015 November 48
## 18768 2015 November 48
## 18769 2015 November 48
## 18770 2015 November 48
## 18771 2015 November 48
## 18772 2017 January 3
## 18773 2015 November 48
## 18774 2015 November 48
## 18775 2017 March 9
## 18776 2015 November 48
## 18777 2015 November 48
## 18778 2015 November 48
## 18779 2015 November 48
## 18780 2015 November 48
## 18781 2016 March 12
## 18782 2015 November 48
## 18783 2015 November 48
## 18784 2015 November 48
## 18785 2015 November 48
## 18786 2015 November 48
## 18787 2015 November 48
## 18788 2015 November 48
## 18789 2015 November 46
## 18790 2015 November 48
## 18791 2015 December 51
## 18792 2016 January 5
## 18793 2016 November 46
## 18794 2017 March 11
## 18795 2015 November 48
## 18796 2015 November 48
## 18797 2015 December 52
## 18798 2016 March 10
## 18799 2017 February 5
## 18800 2017 February 6
## 18801 2015 November 48
## 18802 2015 November 48
## 18803 2015 November 48
## 18804 2015 November 48
## 18805 2015 November 48
## 18806 2015 November 48
## 18807 2015 November 48
## 18808 2015 November 48
## 18809 2015 November 48
## 18810 2015 November 48
## 18811 2015 November 48
## 18812 2015 November 48
## 18813 2015 November 48
## 18814 2015 November 47
## 18815 2015 November 47
## 18816 2015 November 48
## 18817 2015 December 52
## 18818 2015 November 48
## 18819 2015 November 48
## 18820 2015 December 49
## 18821 2015 December 49
## 18822 2015 December 49
## 18823 2015 December 49
## 18824 2015 December 49
## 18825 2015 December 49
## 18826 2015 December 49
## 18827 2015 December 49
## 18828 2015 November 48
## 18829 2015 November 48
## 18830 2015 November 48
## 18831 2015 November 48
## 18832 2016 July 28
## 18833 2015 November 48
## 18834 2016 August 34
## 18835 2015 December 49
## 18836 2015 December 49
## 18837 2015 November 49
## 18838 2015 November 48
## 18839 2015 November 49
## 18840 2015 November 49
## 18841 2015 December 49
## 18842 2015 November 48
## 18843 2015 November 49
## 18844 2015 December 50
## 18845 2015 November 48
## 18846 2015 November 48
## 18847 2015 November 49
## 18848 2015 November 48
## 18849 2015 November 49
## 18850 2015 November 48
## 18851 2015 November 48
## 18852 2015 November 49
## 18853 2015 December 49
## 18854 2016 May 22
## 18855 2016 May 21
## 18856 2015 November 49
## 18857 2016 January 3
## 18858 2016 April 17
## 18859 2015 December 49
## 18860 2015 November 49
## 18861 2015 December 49
## 18862 2015 December 49
## 18863 2015 November 49
## 18864 2015 December 49
## 18865 2015 December 49
## 18866 2015 November 49
## 18867 2015 November 49
## 18868 2015 December 49
## 18869 2015 December 49
## 18870 2015 December 49
## 18871 2015 December 49
## 18872 2015 December 49
## 18873 2015 November 49
## 18874 2015 December 49
## 18875 2015 December 49
## 18876 2016 May 20
## 18877 2015 December 49
## 18878 2015 December 49
## 18879 2015 December 49
## 18880 2015 December 49
## 18881 2015 December 49
## 18882 2015 December 49
## 18883 2015 December 49
## 18884 2016 May 19
## 18885 2015 December 49
## 18886 2015 December 49
## 18887 2015 November 48
## 18888 2015 December 49
## 18889 2017 May 21
## 18890 2015 December 49
## 18891 2015 December 49
## 18892 2015 December 52
## 18893 2015 December 52
## 18894 2015 December 49
## 18895 2016 April 17
## 18896 2016 May 19
## 18897 2015 December 49
## 18898 2015 December 49
## 18899 2015 December 49
## 18900 2016 January 2
## 18901 2016 January 3
## 18902 2015 December 49
## 18903 2015 December 49
## 18904 2015 December 49
## 18905 2015 November 49
## 18906 2015 December 49
## 18907 2015 December 49
## 18908 2015 November 49
## 18909 2015 December 49
## 18910 2015 December 49
## 18911 2016 February 8
## 18912 2016 March 12
## 18913 2017 January 1
## 18914 2016 January 2
## 18915 2015 December 49
## 18916 2015 December 49
## 18917 2016 January 4
## 18918 2015 November 47
## 18919 2015 December 50
## 18920 2015 December 49
## 18921 2015 December 49
## 18922 2015 November 49
## 18923 2015 November 49
## 18924 2015 December 49
## 18925 2015 November 49
## 18926 2015 December 49
## 18927 2015 November 49
## 18928 2015 December 49
## 18929 2015 December 49
## 18930 2015 December 49
## 18931 2015 November 49
## 18932 2015 December 49
## 18933 2015 December 49
## 18934 2015 November 49
## 18935 2015 November 49
## 18936 2015 November 49
## 18937 2015 November 49
## 18938 2015 November 49
## 18939 2015 November 49
## 18940 2015 November 49
## 18941 2015 November 49
## 18942 2015 November 49
## 18943 2015 December 49
## 18944 2015 December 49
## 18945 2015 December 49
## 18946 2015 November 49
## 18947 2015 December 49
## 18948 2015 December 49
## 18949 2015 December 49
## 18950 2015 December 49
## 18951 2015 December 49
## 18952 2015 November 49
## 18953 2015 November 49
## 18954 2015 December 49
## 18955 2015 December 49
## 18956 2015 November 49
## 18957 2015 December 49
## 18958 2015 December 49
## 18959 2015 December 49
## 18960 2015 December 49
## 18961 2015 December 49
## 18962 2015 December 49
## 18963 2015 December 49
## 18964 2016 February 6
## 18965 2016 March 11
## 18966 2016 April 15
## 18967 2016 June 26
## 18968 2016 December 51
## 18969 2017 January 2
## 18970 2015 November 48
## 18971 2015 December 49
## 18972 2016 February 6
## 18973 2015 December 49
## 18974 2016 June 25
## 18975 2015 December 49
## 18976 2015 December 49
## 18977 2015 December 49
## 18978 2015 December 50
## 18979 2016 January 3
## 18980 2015 December 49
## 18981 2015 November 48
## 18982 2015 December 49
## 18983 2015 December 49
## 18984 2015 December 49
## 18985 2015 December 49
## 18986 2015 November 48
## 18987 2015 November 45
## 18988 2015 December 49
## 18989 2015 December 49
## 18990 2015 December 49
## 18991 2015 December 49
## 18992 2015 November 48
## 18993 2015 December 49
## 18994 2015 December 49
## 18995 2015 December 49
## 18996 2016 March 11
## 18997 2016 May 20
## 18998 2015 December 49
## 18999 2017 May 19
## 19000 2017 June 23
## 19001 2015 December 49
## 19002 2015 December 49
## 19003 2015 December 49
## 19004 2015 December 49
## 19005 2015 December 49
## 19006 2015 December 49
## 19007 2015 December 49
## 19008 2015 December 49
## 19009 2015 December 49
## 19010 2015 December 49
## 19011 2015 December 49
## 19012 2015 December 49
## 19013 2015 November 48
## 19014 2015 December 49
## 19015 2015 December 49
## 19016 2015 December 49
## 19017 2015 December 49
## 19018 2015 December 50
## 19019 2015 December 50
## 19020 2015 December 49
## 19021 2015 December 49
## 19022 2015 December 49
## 19023 2015 December 49
## 19024 2015 December 50
## 19025 2015 December 49
## 19026 2015 December 49
## 19027 2015 December 50
## 19028 2015 December 51
## 19029 2015 December 50
## 19030 2015 December 50
## 19031 2015 December 51
## 19032 2015 December 49
## 19033 2015 December 49
## 19034 2015 December 49
## 19035 2016 January 5
## 19036 2015 December 49
## 19037 2015 December 49
## 19038 2016 January 1
## 19039 2016 January 1
## 19040 2016 February 7
## 19041 2016 May 23
## 19042 2016 January 2
## 19043 2016 January 2
## 19044 2016 May 22
## 19045 2015 December 50
## 19046 2015 December 50
## 19047 2016 January 1
## 19048 2016 January 3
## 19049 2016 January 3
## 19050 2016 January 5
## 19051 2016 February 6
## 19052 2016 February 7
## 19053 2016 February 9
## 19054 2015 December 49
## 19055 2015 December 49
## 19056 2015 December 49
## 19057 2015 December 50
## 19058 2015 December 49
## 19059 2015 December 49
## 19060 2015 December 49
## 19061 2015 December 49
## 19062 2015 December 49
## 19063 2015 December 49
## 19064 2015 December 49
## 19065 2015 December 49
## 19066 2015 December 49
## 19067 2015 December 49
## 19068 2015 December 49
## 19069 2015 December 49
## 19070 2015 December 49
## 19071 2015 December 49
## 19072 2015 December 49
## 19073 2015 December 49
## 19074 2015 December 49
## 19075 2015 December 49
## 19076 2015 December 49
## 19077 2015 December 49
## 19078 2015 December 49
## 19079 2015 December 49
## 19080 2015 December 49
## 19081 2015 December 49
## 19082 2015 December 49
## 19083 2015 December 49
## 19084 2015 December 49
## 19085 2015 December 49
## 19086 2015 December 49
## 19087 2015 December 49
## 19088 2015 December 49
## 19089 2015 December 49
## 19090 2015 December 50
## 19091 2015 December 50
## 19092 2015 December 49
## 19093 2015 December 49
## 19094 2015 December 49
## 19095 2015 December 50
## 19096 2015 December 49
## 19097 2015 December 49
## 19098 2015 December 49
## 19099 2015 December 49
## 19100 2015 December 50
## 19101 2015 December 50
## 19102 2015 December 49
## 19103 2015 December 49
## 19104 2015 December 49
## 19105 2015 December 50
## 19106 2015 December 50
## 19107 2015 December 50
## 19108 2015 December 49
## 19109 2015 December 50
## 19110 2015 December 50
## 19111 2015 December 49
## 19112 2015 December 50
## 19113 2015 December 49
## 19114 2015 December 49
## 19115 2015 December 50
## 19116 2015 December 49
## 19117 2015 December 50
## 19118 2015 December 49
## 19119 2015 December 49
## 19120 2015 December 49
## 19121 2015 December 50
## 19122 2015 December 50
## 19123 2015 December 49
## 19124 2015 December 49
## 19125 2015 December 50
## 19126 2015 December 49
## 19127 2015 December 49
## 19128 2015 December 49
## 19129 2015 December 49
## 19130 2015 December 50
## 19131 2015 December 49
## 19132 2015 December 50
## 19133 2015 December 51
## 19134 2016 July 30
## 19135 2016 June 25
## 19136 2015 December 50
## 19137 2015 December 50
## 19138 2015 December 50
## 19139 2016 March 10
## 19140 2016 April 17
## 19141 2015 December 50
## 19142 2015 December 49
## 19143 2015 December 50
## 19144 2015 December 50
## 19145 2015 December 50
## 19146 2015 December 50
## 19147 2015 December 50
## 19148 2015 December 50
## 19149 2015 December 50
## 19150 2015 November 49
## 19151 2015 December 49
## 19152 2015 December 50
## 19153 2016 March 12
## 19154 2015 December 50
## 19155 2016 February 9
## 19156 2015 December 50
## 19157 2015 December 50
## 19158 2015 December 50
## 19159 2015 December 50
## 19160 2015 December 50
## 19161 2016 March 12
## 19162 2015 December 50
## 19163 2016 April 18
## 19164 2016 July 30
## 19165 2016 December 50
## 19166 2015 December 50
## 19167 2015 December 50
## 19168 2015 December 50
## 19169 2015 December 50
## 19170 2016 April 15
## 19171 2015 December 50
## 19172 2015 December 50
## 19173 2015 December 50
## 19174 2015 December 50
## 19175 2015 December 50
## 19176 2015 December 50
## 19177 2016 April 17
## 19178 2015 November 49
## 19179 2015 December 50
## 19180 2015 December 50
## 19181 2016 January 1
## 19182 2016 January 1
## 19183 2016 August 32
## 19184 2015 December 51
## 19185 2016 February 9
## 19186 2016 February 9
## 19187 2016 February 9
## 19188 2016 February 9
## 19189 2016 February 9
## 19190 2016 February 9
## 19191 2016 February 9
## 19192 2016 February 9
## 19193 2016 February 9
## 19194 2016 February 9
## 19195 2016 February 9
## 19196 2016 February 9
## 19197 2016 February 9
## 19198 2016 February 9
## 19199 2016 February 9
## 19200 2016 February 9
## 19201 2016 February 9
## 19202 2016 February 9
## 19203 2016 February 9
## 19204 2016 February 9
## 19205 2016 February 9
## 19206 2016 February 9
## 19207 2016 February 9
## 19208 2016 February 9
## 19209 2016 February 9
## 19210 2016 February 9
## 19211 2016 February 9
## 19212 2016 February 9
## 19213 2016 February 9
## 19214 2016 February 9
## 19215 2016 February 9
## 19216 2016 February 9
## 19217 2016 February 9
## 19218 2016 February 9
## 19219 2016 February 9
## 19220 2016 February 9
## 19221 2016 February 9
## 19222 2016 February 9
## 19223 2016 February 9
## 19224 2016 February 9
## 19225 2016 February 9
## 19226 2016 February 9
## 19227 2016 February 9
## 19228 2016 February 9
## 19229 2016 February 9
## 19230 2016 February 9
## 19231 2016 February 9
## 19232 2016 February 9
## 19233 2016 February 9
## 19234 2016 February 9
## 19235 2016 February 9
## 19236 2016 February 9
## 19237 2016 February 9
## 19238 2016 February 9
## 19239 2016 February 9
## 19240 2015 December 50
## 19241 2015 December 50
## 19242 2015 December 50
## 19243 2015 December 50
## 19244 2015 December 50
## 19245 2015 December 50
## 19246 2016 January 3
## 19247 2016 May 19
## 19248 2015 December 50
## 19249 2016 January 3
## 19250 2015 December 50
## 19251 2015 December 50
## 19252 2015 December 50
## 19253 2016 January 3
## 19254 2016 April 16
## 19255 2015 December 50
## 19256 2016 October 43
## 19257 2016 February 7
## 19258 2016 February 7
## 19259 2015 December 50
## 19260 2015 December 50
## 19261 2015 December 52
## 19262 2015 December 52
## 19263 2016 April 18
## 19264 2015 December 52
## 19265 2015 December 52
## 19266 2015 December 52
## 19267 2015 December 50
## 19268 2015 December 50
## 19269 2015 December 50
## 19270 2015 December 50
## 19271 2015 December 50
## 19272 2015 December 50
## 19273 2015 December 50
## 19274 2015 December 49
## 19275 2015 December 50
## 19276 2015 December 50
## 19277 2015 December 50
## 19278 2015 December 50
## 19279 2016 January 2
## 19280 2015 December 50
## 19281 2015 December 50
## 19282 2015 December 49
## 19283 2016 January 1
## 19284 2016 October 43
## 19285 2016 January 2
## 19286 2016 January 2
## 19287 2015 December 52
## 19288 2015 December 50
## 19289 2015 December 50
## 19290 2015 December 50
## 19291 2015 December 50
## 19292 2015 December 50
## 19293 2015 December 50
## 19294 2015 December 50
## 19295 2015 December 50
## 19296 2015 December 50
## 19297 2015 December 50
## 19298 2015 December 50
## 19299 2015 December 50
## 19300 2015 December 50
## 19301 2015 December 50
## 19302 2015 December 50
## 19303 2015 December 50
## 19304 2015 December 50
## 19305 2015 December 50
## 19306 2015 December 50
## 19307 2015 December 50
## 19308 2016 December 52
## 19309 2015 December 50
## 19310 2015 December 50
## 19311 2015 December 50
## 19312 2015 December 50
## 19313 2015 December 50
## 19314 2015 December 50
## 19315 2016 November 47
## 19316 2015 December 50
## 19317 2015 December 50
## 19318 2015 December 50
## 19319 2015 December 50
## 19320 2015 December 50
## 19321 2015 December 50
## 19322 2015 December 51
## 19323 2015 December 50
## 19324 2015 December 50
## 19325 2015 December 51
## 19326 2016 February 9
## 19327 2015 December 50
## 19328 2015 December 51
## 19329 2015 December 51
## 19330 2015 December 50
## 19331 2015 December 51
## 19332 2015 December 53
## 19333 2015 December 50
## 19334 2015 December 52
## 19335 2015 December 52
## 19336 2015 December 50
## 19337 2015 December 51
## 19338 2015 December 50
## 19339 2015 December 51
## 19340 2015 December 51
## 19341 2015 December 51
## 19342 2016 February 9
## 19343 2015 December 51
## 19344 2015 December 51
## 19345 2015 December 51
## 19346 2015 December 51
## 19347 2015 December 53
## 19348 2015 December 51
## 19349 2015 December 51
## 19350 2016 January 1
## 19351 2015 December 51
## 19352 2015 December 50
## 19353 2015 December 51
## 19354 2015 December 51
## 19355 2016 December 51
## 19356 2015 December 53
## 19357 2015 December 51
## 19358 2016 January 3
## 19359 2016 January 5
## 19360 2016 March 14
## 19361 2016 June 26
## 19362 2015 December 51
## 19363 2015 December 51
## 19364 2015 December 51
## 19365 2015 December 51
## 19366 2015 December 52
## 19367 2015 December 52
## 19368 2015 December 52
## 19369 2015 December 52
## 19370 2015 December 51
## 19371 2015 December 49
## 19372 2015 December 51
## 19373 2015 December 51
## 19374 2015 December 51
## 19375 2015 December 53
## 19376 2016 February 8
## 19377 2015 December 51
## 19378 2016 January 1
## 19379 2015 December 51
## 19380 2016 February 6
## 19381 2016 April 16
## 19382 2016 May 20
## 19383 2017 June 26
## 19384 2015 December 51
## 19385 2015 December 51
## 19386 2015 December 51
## 19387 2015 December 51
## 19388 2015 December 51
## 19389 2016 April 15
## 19390 2015 December 51
## 19391 2015 December 51
## 19392 2015 December 51
## 19393 2015 December 51
## 19394 2017 February 8
## 19395 2016 June 27
## 19396 2016 June 27
## 19397 2015 December 51
## 19398 2015 December 51
## 19399 2015 December 51
## 19400 2015 December 51
## 19401 2015 December 51
## 19402 2015 December 51
## 19403 2015 December 51
## 19404 2017 January 3
## 19405 2015 December 51
## 19406 2015 December 51
## 19407 2016 January 2
## 19408 2015 December 51
## 19409 2016 January 2
## 19410 2015 December 51
## 19411 2015 December 51
## 19412 2016 March 11
## 19413 2015 December 51
## 19414 2015 December 51
## 19415 2015 December 51
## 19416 2015 December 51
## 19417 2015 December 51
## 19418 2015 December 51
## 19419 2015 December 50
## 19420 2015 December 51
## 19421 2015 December 51
## 19422 2015 December 51
## 19423 2015 December 51
## 19424 2015 December 51
## 19425 2015 December 51
## 19426 2015 December 51
## 19427 2015 December 51
## 19428 2015 December 51
## 19429 2015 December 51
## 19430 2015 December 51
## 19431 2015 December 51
## 19432 2015 December 51
## 19433 2015 December 51
## 19434 2015 December 51
## 19435 2016 December 51
## 19436 2015 December 51
## 19437 2015 December 51
## 19438 2015 December 51
## 19439 2015 December 51
## 19440 2016 December 51
## 19441 2015 December 51
## 19442 2016 December 51
## 19443 2015 December 51
## 19444 2015 December 51
## 19445 2015 December 51
## 19446 2015 December 51
## 19447 2015 December 51
## 19448 2015 December 51
## 19449 2015 December 51
## 19450 2015 December 51
## 19451 2015 December 51
## 19452 2015 December 51
## 19453 2015 December 51
## 19454 2015 December 51
## 19455 2015 December 51
## 19456 2015 December 51
## 19457 2015 December 51
## 19458 2015 December 51
## 19459 2015 December 52
## 19460 2015 December 51
## 19461 2015 December 51
## 19462 2015 December 52
## 19463 2015 December 51
## 19464 2015 December 51
## 19465 2015 December 52
## 19466 2015 December 52
## 19467 2015 December 52
## 19468 2015 December 52
## 19469 2015 December 52
## 19470 2015 December 49
## 19471 2015 December 51
## 19472 2015 December 52
## 19473 2015 December 52
## 19474 2015 December 51
## 19475 2015 December 52
## 19476 2015 December 52
## 19477 2015 December 52
## 19478 2015 December 52
## 19479 2015 December 52
## 19480 2015 December 52
## 19481 2015 December 52
## 19482 2016 March 11
## 19483 2016 October 44
## 19484 2015 December 52
## 19485 2015 December 51
## 19486 2016 December 51
## 19487 2015 December 51
## 19488 2015 December 52
## 19489 2015 December 51
## 19490 2015 December 51
## 19491 2015 December 52
## 19492 2015 December 52
## 19493 2016 December 53
## 19494 2017 June 23
## 19495 2015 December 52
## 19496 2015 December 52
## 19497 2015 December 52
## 19498 2015 December 52
## 19499 2015 December 52
## 19500 2015 December 52
## 19501 2015 December 52
## 19502 2015 December 52
## 19503 2015 December 51
## 19504 2015 December 52
## 19505 2015 December 52
## 19506 2015 December 52
## 19507 2015 December 52
## 19508 2015 December 52
## 19509 2015 December 52
## 19510 2015 December 52
## 19511 2015 December 52
## 19512 2015 December 52
## 19513 2015 December 52
## 19514 2015 December 52
## 19515 2015 December 52
## 19516 2015 December 52
## 19517 2015 December 52
## 19518 2015 December 52
## 19519 2015 December 52
## 19520 2015 December 52
## 19521 2015 December 52
## 19522 2016 December 52
## 19523 2015 December 52
## 19524 2015 December 52
## 19525 2015 December 52
## 19526 2015 December 52
## 19527 2015 December 51
## 19528 2015 December 52
## 19529 2015 December 51
## 19530 2015 December 52
## 19531 2015 December 51
## 19532 2015 December 51
## 19533 2015 December 52
## 19534 2015 December 52
## 19535 2015 December 50
## 19536 2015 December 52
## 19537 2015 December 52
## 19538 2015 December 52
## 19539 2015 December 52
## 19540 2015 December 52
## 19541 2015 December 52
## 19542 2015 December 52
## 19543 2015 December 52
## 19544 2015 December 52
## 19545 2015 December 52
## 19546 2015 December 52
## 19547 2015 December 52
## 19548 2015 December 52
## 19549 2015 December 52
## 19550 2015 December 52
## 19551 2015 December 52
## 19552 2015 December 52
## 19553 2015 December 52
## 19554 2015 December 52
## 19555 2015 December 52
## 19556 2015 December 52
## 19557 2015 December 52
## 19558 2015 December 52
## 19559 2016 January 3
## 19560 2016 November 47
## 19561 2016 December 50
## 19562 2017 January 4
## 19563 2015 December 52
## 19564 2015 December 52
## 19565 2015 December 52
## 19566 2015 December 52
## 19567 2015 December 52
## 19568 2015 December 52
## 19569 2015 December 52
## 19570 2016 April 17
## 19571 2015 December 52
## 19572 2015 December 52
## 19573 2015 December 52
## 19574 2015 December 52
## 19575 2015 December 51
## 19576 2015 December 52
## 19577 2015 December 52
## 19578 2015 December 52
## 19579 2015 December 52
## 19580 2015 December 53
## 19581 2015 December 52
## 19582 2015 December 52
## 19583 2015 December 52
## 19584 2015 December 52
## 19585 2015 December 53
## 19586 2015 December 52
## 19587 2015 December 53
## 19588 2015 December 52
## 19589 2015 December 52
## 19590 2015 December 53
## 19591 2015 December 53
## 19592 2015 December 53
## 19593 2015 December 52
## 19594 2015 December 53
## 19595 2015 December 52
## 19596 2015 December 52
## 19597 2015 December 53
## 19598 2015 December 52
## 19599 2015 December 52
## 19600 2015 December 53
## 19601 2015 December 52
## 19602 2015 December 53
## 19603 2015 December 53
## 19604 2015 December 53
## 19605 2015 December 53
## 19606 2015 December 53
## 19607 2015 December 53
## 19608 2015 December 52
## 19609 2015 December 52
## 19610 2015 December 52
## 19611 2015 December 52
## 19612 2015 December 52
## 19613 2015 December 52
## 19614 2015 December 52
## 19615 2015 December 52
## 19616 2015 December 52
## 19617 2015 December 52
## 19618 2015 December 52
## 19619 2015 December 52
## 19620 2015 December 52
## 19621 2015 December 53
## 19622 2015 December 53
## 19623 2015 December 53
## 19624 2015 December 52
## 19625 2015 December 53
## 19626 2015 December 53
## 19627 2015 December 52
## 19628 2015 December 52
## 19629 2015 December 53
## 19630 2015 December 53
## 19631 2015 December 53
## 19632 2015 December 53
## 19633 2015 December 53
## 19634 2015 December 53
## 19635 2015 December 53
## 19636 2015 December 53
## 19637 2015 December 53
## 19638 2015 December 53
## 19639 2016 March 12
## 19640 2015 December 53
## 19641 2015 December 53
## 19642 2015 December 51
## 19643 2015 December 53
## 19644 2015 December 52
## 19645 2015 December 52
## 19646 2015 December 53
## 19647 2015 December 53
## 19648 2015 December 53
## 19649 2015 December 53
## 19650 2015 December 53
## 19651 2015 December 53
## 19652 2015 December 52
## 19653 2015 December 52
## 19654 2015 December 53
## 19655 2015 December 53
## 19656 2015 December 52
## 19657 2015 December 52
## 19658 2015 December 53
## 19659 2015 December 52
## 19660 2015 December 52
## 19661 2015 December 52
## 19662 2015 December 53
## 19663 2015 December 52
## 19664 2015 December 53
## 19665 2015 December 53
## 19666 2015 December 53
## 19667 2015 December 52
## 19668 2015 December 53
## 19669 2015 December 53
## 19670 2015 December 53
## 19671 2015 December 53
## 19672 2016 November 48
## 19673 2015 December 52
## 19674 2015 December 53
## 19675 2015 December 52
## 19676 2015 December 53
## 19677 2015 December 53
## 19678 2015 December 53
## 19679 2015 December 53
## 19680 2015 December 53
## 19681 2015 December 53
## 19682 2015 December 53
## 19683 2015 December 53
## 19684 2015 December 53
## 19685 2015 December 53
## 19686 2016 May 19
## 19687 2015 December 53
## 19688 2015 December 53
## 19689 2015 December 53
## 19690 2015 December 53
## 19691 2015 December 53
## 19692 2015 December 53
## 19693 2016 December 53
## 19694 2015 December 53
## 19695 2015 December 53
## 19696 2015 December 53
## 19697 2015 December 53
## 19698 2015 December 53
## 19699 2015 December 53
## 19700 2015 December 53
## 19701 2015 December 53
## 19702 2017 May 20
## 19703 2015 December 53
## 19704 2015 December 53
## 19705 2015 December 53
## 19706 2015 December 53
## 19707 2015 December 53
## 19708 2015 December 53
## 19709 2015 December 53
## 19710 2015 December 53
## 19711 2015 December 53
## 19712 2015 December 53
## 19713 2015 December 52
## 19714 2017 April 16
## 19715 2015 December 53
## 19716 2015 December 53
## 19717 2015 December 53
## 19718 2015 December 53
## 19719 2016 January 1
## 19720 2015 December 53
## 19721 2015 December 53
## 19722 2015 December 53
## 19723 2015 December 53
## 19724 2015 December 53
## 19725 2015 December 53
## 19726 2015 December 53
## 19727 2016 December 53
## 19728 2015 December 53
## 19729 2016 December 53
## 19730 2015 December 53
## 19731 2015 December 53
## 19732 2015 December 53
## 19733 2015 December 53
## 19734 2015 December 53
## 19735 2015 December 53
## 19736 2017 February 7
## 19737 2015 December 53
## 19738 2015 December 53
## 19739 2016 December 53
## 19740 2015 December 53
## 19741 2015 December 53
## 19742 2016 December 53
## 19743 2015 December 53
## 19744 2015 December 53
## 19745 2015 December 53
## 19746 2015 December 53
## 19747 2015 December 53
## 19748 2015 December 53
## 19749 2017 April 14
## 19750 2015 December 53
## 19751 2015 December 53
## 19752 2015 December 53
## 19753 2015 December 53
## 19754 2015 December 53
## 19755 2015 December 53
## 19756 2016 December 53
## 19757 2015 December 53
## 19758 2015 December 53
## 19759 2015 December 53
## 19760 2015 December 52
## 19761 2016 December 52
## 19762 2016 January 1
## 19763 2015 December 53
## 19764 2016 October 40
## 19765 2017 June 22
## 19766 2016 January 1
## 19767 2017 January 2
## 19768 2017 February 9
## 19769 2016 January 1
## 19770 2016 January 1
## 19771 2016 January 1
## 19772 2015 December 53
## 19773 2015 December 53
## 19774 2015 December 53
## 19775 2015 December 53
## 19776 2015 December 53
## 19777 2015 December 52
## 19778 2016 January 1
## 19779 2016 January 1
## 19780 2016 December 53
## 19781 2016 January 1
## 19782 2015 December 53
## 19783 2016 January 1
## 19784 2017 June 26
## 19785 2016 January 1
## 19786 2016 January 1
## 19787 2015 December 53
## 19788 2015 December 53
## 19789 2015 December 53
## 19790 2016 January 1
## 19791 2016 January 1
## 19792 2016 January 1
## 19793 2015 December 53
## 19794 2016 January 1
## 19795 2016 January 1
## 19796 2016 January 1
## 19797 2016 January 1
## 19798 2016 December 53
## 19799 2015 December 53
## 19800 2016 January 1
## 19801 2015 December 53
## 19802 2015 December 53
## 19803 2015 December 52
## 19804 2016 January 2
## 19805 2016 January 1
## 19806 2015 December 53
## 19807 2016 December 53
## 19808 2016 January 1
## 19809 2016 January 2
## 19810 2016 January 2
## 19811 2015 December 53
## 19812 2016 January 2
## 19813 2015 December 53
## 19814 2016 January 2
## 19815 2016 January 2
## 19816 2016 January 1
## 19817 2016 January 2
## 19818 2016 January 1
## 19819 2015 December 52
## 19820 2016 January 2
## 19821 2016 January 2
## 19822 2016 January 2
## 19823 2016 January 1
## 19824 2016 January 2
## 19825 2016 January 1
## 19826 2016 January 2
## 19827 2016 January 1
## 19828 2016 January 2
## 19829 2016 January 1
## 19830 2016 January 1
## 19831 2016 January 1
## 19832 2016 January 1
## 19833 2016 January 2
## 19834 2016 January 1
## 19835 2016 January 2
## 19836 2016 January 1
## 19837 2016 January 1
## 19838 2016 January 2
## 19839 2016 January 1
## 19840 2016 January 2
## 19841 2016 January 2
## 19842 2016 January 1
## 19843 2016 January 1
## 19844 2016 January 2
## 19845 2016 January 2
## 19846 2016 January 2
## 19847 2016 January 2
## 19848 2016 January 2
## 19849 2016 January 2
## 19850 2016 January 2
## 19851 2016 January 2
## 19852 2016 January 2
## 19853 2016 January 2
## 19854 2016 January 2
## 19855 2016 February 8
## 19856 2015 December 53
## 19857 2016 January 2
## 19858 2016 January 2
## 19859 2016 January 2
## 19860 2016 January 2
## 19861 2016 January 2
## 19862 2016 January 1
## 19863 2016 January 2
## 19864 2016 January 1
## 19865 2016 January 2
## 19866 2016 January 2
## 19867 2016 January 2
## 19868 2016 January 2
## 19869 2016 January 2
## 19870 2016 January 2
## 19871 2015 December 53
## 19872 2016 January 2
## 19873 2016 January 2
## 19874 2016 January 2
## 19875 2016 January 2
## 19876 2016 January 2
## 19877 2016 January 2
## 19878 2016 January 2
## 19879 2016 January 2
## 19880 2016 January 2
## 19881 2016 January 3
## 19882 2016 January 2
## 19883 2016 January 3
## 19884 2016 January 2
## 19885 2016 January 2
## 19886 2016 January 2
## 19887 2016 January 2
## 19888 2016 January 2
## 19889 2016 January 2
## 19890 2016 January 2
## 19891 2016 January 2
## 19892 2016 January 2
## 19893 2016 January 2
## 19894 2016 January 2
## 19895 2016 January 2
## 19896 2016 January 1
## 19897 2016 January 2
## 19898 2016 January 2
## 19899 2016 January 2
## 19900 2016 January 2
## 19901 2016 February 7
## 19902 2016 January 2
## 19903 2016 February 10
## 19904 2016 April 16
## 19905 2016 January 2
## 19906 2016 May 21
## 19907 2016 January 2
## 19908 2016 January 2
## 19909 2016 January 2
## 19910 2016 January 2
## 19911 2016 January 2
## 19912 2016 January 2
## 19913 2016 January 2
## 19914 2016 January 2
## 19915 2016 January 2
## 19916 2016 January 1
## 19917 2016 January 2
## 19918 2016 January 2
## 19919 2016 January 2
## 19920 2016 January 2
## 19921 2016 January 2
## 19922 2016 January 2
## 19923 2016 January 2
## 19924 2016 January 2
## 19925 2016 January 2
## 19926 2017 January 1
## 19927 2016 January 2
## 19928 2017 January 1
## 19929 2016 January 2
## 19930 2016 January 2
## 19931 2016 January 2
## 19932 2016 January 2
## 19933 2016 January 2
## 19934 2016 January 2
## 19935 2016 January 2
## 19936 2016 January 2
## 19937 2016 January 2
## 19938 2016 January 2
## 19939 2016 January 2
## 19940 2016 January 2
## 19941 2016 January 2
## 19942 2016 January 2
## 19943 2016 January 2
## 19944 2016 January 2
## 19945 2016 January 2
## 19946 2016 January 2
## 19947 2016 January 2
## 19948 2016 January 3
## 19949 2016 January 3
## 19950 2016 January 3
## 19951 2016 April 16
## 19952 2017 January 2
## 19953 2016 January 3
## 19954 2016 January 2
## 19955 2016 January 2
## 19956 2016 January 3
## 19957 2016 January 3
## 19958 2016 January 2
## 19959 2016 January 3
## 19960 2016 January 2
## 19961 2016 January 2
## 19962 2016 January 2
## 19963 2016 January 2
## 19964 2016 January 2
## 19965 2016 January 2
## 19966 2016 January 2
## 19967 2016 January 2
## 19968 2016 January 4
## 19969 2016 January 3
## 19970 2016 January 2
## 19971 2016 January 2
## 19972 2016 January 2
## 19973 2016 January 2
## 19974 2016 January 3
## 19975 2017 March 11
## 19976 2016 January 3
## 19977 2017 June 23
## 19978 2016 January 3
## 19979 2016 January 3
## 19980 2016 January 3
## 19981 2016 January 3
## 19982 2016 February 10
## 19983 2016 January 3
## 19984 2016 January 3
## 19985 2016 January 3
## 19986 2016 January 3
## 19987 2016 January 3
## 19988 2016 January 3
## 19989 2016 March 11
## 19990 2016 January 3
## 19991 2016 January 3
## 19992 2016 January 3
## 19993 2016 January 3
## 19994 2016 January 3
## 19995 2016 January 3
## 19996 2016 January 3
## 19997 2016 January 2
## 19998 2016 January 3
## 19999 2016 January 3
## 20000 2016 January 2
## 20001 2016 January 2
## 20002 2016 January 2
## 20003 2016 January 3
## 20004 2016 January 3
## 20005 2016 February 7
## 20006 2016 May 19
## 20007 2016 January 3
## 20008 2016 January 3
## 20009 2016 January 3
## 20010 2016 January 3
## 20011 2016 January 3
## 20012 2016 January 3
## 20013 2016 January 3
## 20014 2016 January 2
## 20015 2016 January 3
## 20016 2016 January 3
## 20017 2016 January 3
## 20018 2016 January 3
## 20019 2016 January 3
## 20020 2016 March 10
## 20021 2016 January 3
## 20022 2016 January 3
## 20023 2016 January 3
## 20024 2016 January 2
## 20025 2016 January 3
## 20026 2016 January 3
## 20027 2016 January 3
## 20028 2016 January 3
## 20029 2015 December 51
## 20030 2016 January 3
## 20031 2016 January 3
## 20032 2016 January 3
## 20033 2016 January 5
## 20034 2016 January 3
## 20035 2016 January 3
## 20036 2016 January 3
## 20037 2016 June 27
## 20038 2016 January 2
## 20039 2016 January 3
## 20040 2016 January 3
## 20041 2017 February 8
## 20042 2016 January 3
## 20043 2016 January 3
## 20044 2016 January 3
## 20045 2016 February 8
## 20046 2016 January 3
## 20047 2016 January 3
## 20048 2016 January 3
## 20049 2016 January 3
## 20050 2016 November 47
## 20051 2016 January 3
## 20052 2016 January 3
## 20053 2016 January 3
## 20054 2016 January 3
## 20055 2016 January 3
## 20056 2016 January 3
## 20057 2016 January 2
## 20058 2016 January 3
## 20059 2016 January 3
## 20060 2016 January 3
## 20061 2016 January 3
## 20062 2016 January 3
## 20063 2016 January 3
## 20064 2016 January 2
## 20065 2016 January 3
## 20066 2016 January 3
## 20067 2016 January 3
## 20068 2016 January 3
## 20069 2016 January 3
## 20070 2016 January 3
## 20071 2016 January 3
## 20072 2016 January 3
## 20073 2017 January 1
## 20074 2017 January 2
## 20075 2016 January 2
## 20076 2016 January 3
## 20077 2016 January 3
## 20078 2016 April 15
## 20079 2016 January 3
## 20080 2016 January 3
## 20081 2016 January 3
## 20082 2016 January 1
## 20083 2016 January 3
## 20084 2016 January 3
## 20085 2016 January 3
## 20086 2016 January 4
## 20087 2016 January 5
## 20088 2016 February 6
## 20089 2016 February 7
## 20090 2016 February 8
## 20091 2016 March 11
## 20092 2016 March 13
## 20093 2016 March 14
## 20094 2016 March 14
## 20095 2016 April 15
## 20096 2016 April 16
## 20097 2016 December 50
## 20098 2017 January 2
## 20099 2017 February 8
## 20100 2017 February 8
## 20101 2017 March 13
## 20102 2016 January 2
## 20103 2016 January 3
## 20104 2016 January 1
## 20105 2016 January 3
## 20106 2016 February 8
## 20107 2016 January 3
## 20108 2016 January 3
## 20109 2016 January 3
## 20110 2016 January 3
## 20111 2016 November 45
## 20112 2016 November 45
## 20113 2016 January 3
## 20114 2016 January 3
## 20115 2016 January 3
## 20116 2016 January 3
## 20117 2016 January 3
## 20118 2016 January 3
## 20119 2016 January 2
## 20120 2016 January 3
## 20121 2016 January 3
## 20122 2017 March 11
## 20123 2016 January 3
## 20124 2016 January 3
## 20125 2016 January 3
## 20126 2016 January 3
## 20127 2016 January 3
## 20128 2016 January 3
## 20129 2016 January 3
## 20130 2016 January 3
## 20131 2016 January 3
## 20132 2016 January 3
## 20133 2016 January 3
## 20134 2016 January 3
## 20135 2016 January 3
## 20136 2016 January 3
## 20137 2016 January 3
## 20138 2016 January 3
## 20139 2016 January 3
## 20140 2016 January 3
## 20141 2016 January 3
## 20142 2016 January 3
## 20143 2016 January 3
## 20144 2016 January 3
## 20145 2016 January 3
## 20146 2016 January 3
## 20147 2016 January 3
## 20148 2016 January 3
## 20149 2016 January 3
## 20150 2016 January 3
## 20151 2016 January 3
## 20152 2016 January 3
## 20153 2016 January 3
## 20154 2016 January 2
## 20155 2016 January 4
## 20156 2016 January 3
## 20157 2016 January 4
## 20158 2016 January 3
## 20159 2016 January 3
## 20160 2016 January 4
## 20161 2016 January 4
## 20162 2016 January 3
## 20163 2016 January 3
## 20164 2016 January 4
## 20165 2016 January 4
## 20166 2016 February 7
## 20167 2016 January 4
## 20168 2016 January 3
## 20169 2016 January 3
## 20170 2016 January 4
## 20171 2016 January 4
## 20172 2016 January 4
## 20173 2016 April 16
## 20174 2016 May 20
## 20175 2016 January 4
## 20176 2016 March 10
## 20177 2016 April 18
## 20178 2017 February 7
## 20179 2017 March 12
## 20180 2017 May 19
## 20181 2016 January 4
## 20182 2017 March 12
## 20183 2016 January 4
## 20184 2016 January 4
## 20185 2016 January 4
## 20186 2016 November 47
## 20187 2017 February 8
## 20188 2017 May 21
## 20189 2016 January 2
## 20190 2016 January 4
## 20191 2016 January 4
## 20192 2016 January 3
## 20193 2016 January 4
## 20194 2016 January 4
## 20195 2016 December 51
## 20196 2016 January 4
## 20197 2016 January 4
## 20198 2016 January 3
## 20199 2016 January 3
## 20200 2016 January 3
## 20201 2016 January 3
## 20202 2016 January 4
## 20203 2016 January 4
## 20204 2016 January 4
## 20205 2016 January 4
## 20206 2016 January 4
## 20207 2016 January 4
## 20208 2016 January 3
## 20209 2016 January 3
## 20210 2016 January 4
## 20211 2016 January 4
## 20212 2016 January 4
## 20213 2016 January 4
## 20214 2016 January 3
## 20215 2016 January 4
## 20216 2016 January 4
## 20217 2016 January 4
## 20218 2016 January 4
## 20219 2016 January 3
## 20220 2017 January 2
## 20221 2017 March 13
## 20222 2016 January 3
## 20223 2016 January 3
## 20224 2016 January 4
## 20225 2016 January 3
## 20226 2016 January 3
## 20227 2016 January 4
## 20228 2016 January 4
## 20229 2016 January 4
## 20230 2016 January 4
## 20231 2016 January 4
## 20232 2016 January 4
## 20233 2016 January 4
## 20234 2016 January 4
## 20235 2016 January 4
## 20236 2016 January 4
## 20237 2016 January 4
## 20238 2016 January 4
## 20239 2016 January 4
## 20240 2016 January 4
## 20241 2016 January 4
## 20242 2016 January 4
## 20243 2016 January 4
## 20244 2016 January 4
## 20245 2016 February 9
## 20246 2016 May 19
## 20247 2016 October 42
## 20248 2017 February 7
## 20249 2016 January 4
## 20250 2016 January 4
## 20251 2016 February 8
## 20252 2016 March 12
## 20253 2016 January 4
## 20254 2016 January 4
## 20255 2016 January 5
## 20256 2016 January 4
## 20257 2016 November 47
## 20258 2017 January 4
## 20259 2017 February 8
## 20260 2016 January 4
## 20261 2016 January 4
## 20262 2016 January 4
## 20263 2016 January 4
## 20264 2016 February 9
## 20265 2017 January 2
## 20266 2017 March 10
## 20267 2016 January 4
## 20268 2016 February 9
## 20269 2017 January 2
## 20270 2016 January 4
## 20271 2016 January 4
## 20272 2016 January 4
## 20273 2016 January 4
## 20274 2016 January 4
## 20275 2016 January 4
## 20276 2016 January 4
## 20277 2016 January 4
## 20278 2016 November 48
## 20279 2016 January 4
## 20280 2016 January 4
## 20281 2016 January 4
## 20282 2016 January 4
## 20283 2016 January 3
## 20284 2016 January 3
## 20285 2016 January 4
## 20286 2016 January 4
## 20287 2016 January 3
## 20288 2016 January 4
## 20289 2016 January 4
## 20290 2016 January 4
## 20291 2016 January 4
## 20292 2016 January 4
## 20293 2016 January 4
## 20294 2016 January 4
## 20295 2016 January 4
## 20296 2016 January 4
## 20297 2016 January 4
## 20298 2016 January 4
## 20299 2016 January 4
## 20300 2016 January 4
## 20301 2016 January 4
## 20302 2016 January 4
## 20303 2016 January 4
## 20304 2016 January 4
## 20305 2016 January 4
## 20306 2016 January 4
## 20307 2016 January 4
## 20308 2016 January 4
## 20309 2016 January 4
## 20310 2016 January 4
## 20311 2016 January 4
## 20312 2016 January 4
## 20313 2016 January 4
## 20314 2016 January 3
## 20315 2016 January 4
## 20316 2016 January 4
## 20317 2016 January 4
## 20318 2016 January 4
## 20319 2016 January 4
## 20320 2016 January 4
## 20321 2016 January 4
## 20322 2016 February 7
## 20323 2017 May 19
## 20324 2016 January 4
## 20325 2016 January 4
## 20326 2016 January 4
## 20327 2016 January 4
## 20328 2016 January 4
## 20329 2016 January 4
## 20330 2016 January 4
## 20331 2016 January 4
## 20332 2016 January 3
## 20333 2016 January 4
## 20334 2016 January 4
## 20335 2016 January 4
## 20336 2016 January 4
## 20337 2016 January 5
## 20338 2016 January 5
## 20339 2016 January 4
## 20340 2016 January 4
## 20341 2016 January 4
## 20342 2016 January 4
## 20343 2016 January 4
## 20344 2016 January 4
## 20345 2016 January 5
## 20346 2016 January 4
## 20347 2016 January 4
## 20348 2016 January 4
## 20349 2016 January 4
## 20350 2016 January 5
## 20351 2016 February 8
## 20352 2016 November 48
## 20353 2017 February 7
## 20354 2016 January 5
## 20355 2016 January 5
## 20356 2016 January 5
## 20357 2017 January 2
## 20358 2017 March 11
## 20359 2017 May 22
## 20360 2017 July 29
## 20361 2016 January 5
## 20362 2016 January 5
## 20363 2016 January 5
## 20364 2016 January 5
## 20365 2016 January 4
## 20366 2016 January 5
## 20367 2016 January 5
## 20368 2016 January 5
## 20369 2016 January 5
## 20370 2016 January 5
## 20371 2016 January 5
## 20372 2017 January 5
## 20373 2016 January 5
## 20374 2016 January 5
## 20375 2016 January 5
## 20376 2016 January 5
## 20377 2016 January 5
## 20378 2016 January 5
## 20379 2016 March 11
## 20380 2016 January 5
## 20381 2016 January 5
## 20382 2016 December 51
## 20383 2016 January 5
## 20384 2016 January 5
## 20385 2016 January 5
## 20386 2016 January 5
## 20387 2016 January 5
## 20388 2016 January 4
## 20389 2016 January 5
## 20390 2016 January 5
## 20391 2016 January 5
## 20392 2016 January 5
## 20393 2016 January 5
## 20394 2016 January 5
## 20395 2016 January 5
## 20396 2016 January 4
## 20397 2016 January 4
## 20398 2016 January 4
## 20399 2016 January 5
## 20400 2016 January 5
## 20401 2016 January 5
## 20402 2016 January 5
## 20403 2016 April 15
## 20404 2016 November 46
## 20405 2016 December 50
## 20406 2016 January 5
## 20407 2016 January 4
## 20408 2016 January 5
## 20409 2016 January 5
## 20410 2016 January 5
## 20411 2016 January 5
## 20412 2016 January 5
## 20413 2016 January 5
## 20414 2016 January 5
## 20415 2016 January 5
## 20416 2016 January 5
## 20417 2016 May 20
## 20418 2017 January 4
## 20419 2016 January 5
## 20420 2016 March 12
## 20421 2016 April 17
## 20422 2016 June 24
## 20423 2016 June 26
## 20424 2016 September 38
## 20425 2016 October 43
## 20426 2016 October 44
## 20427 2016 November 48
## 20428 2016 December 50
## 20429 2017 January 4
## 20430 2017 February 6
## 20431 2017 March 10
## 20432 2017 April 15
## 20433 2017 April 17
## 20434 2017 June 23
## 20435 2016 January 5
## 20436 2016 March 10
## 20437 2017 February 5
## 20438 2017 May 18
## 20439 2017 May 20
## 20440 2016 January 5
## 20441 2016 January 5
## 20442 2016 January 5
## 20443 2016 January 5
## 20444 2016 January 5
## 20445 2017 June 26
## 20446 2016 January 5
## 20447 2016 January 5
## 20448 2016 January 5
## 20449 2016 January 5
## 20450 2016 January 5
## 20451 2016 January 5
## 20452 2016 July 29
## 20453 2017 July 30
## 20454 2017 July 30
## 20455 2016 January 5
## 20456 2016 January 5
## 20457 2016 January 5
## 20458 2016 January 5
## 20459 2016 January 5
## 20460 2016 January 5
## 20461 2016 January 4
## 20462 2016 January 5
## 20463 2016 February 6
## 20464 2016 January 4
## 20465 2016 January 4
## 20466 2016 January 5
## 20467 2016 January 5
## 20468 2016 March 12
## 20469 2016 November 48
## 20470 2017 March 11
## 20471 2016 January 5
## 20472 2017 January 4
## 20473 2016 January 5
## 20474 2016 January 5
## 20475 2016 January 5
## 20476 2017 January 5
## 20477 2016 January 5
## 20478 2016 January 5
## 20479 2016 January 5
## 20480 2016 January 5
## 20481 2016 January 4
## 20482 2016 January 4
## 20483 2016 January 5
## 20484 2016 January 5
## 20485 2016 January 5
## 20486 2016 January 5
## 20487 2016 January 5
## 20488 2016 January 5
## 20489 2016 January 5
## 20490 2016 January 5
## 20491 2016 January 5
## 20492 2016 January 5
## 20493 2016 January 5
## 20494 2016 January 5
## 20495 2016 January 5
## 20496 2016 January 5
## 20497 2016 January 5
## 20498 2016 January 5
## 20499 2016 January 5
## 20500 2016 January 5
## 20501 2016 January 5
## 20502 2016 January 5
## 20503 2016 January 5
## 20504 2016 January 5
## 20505 2016 June 23
## 20506 2016 November 48
## 20507 2017 February 5
## 20508 2016 January 5
## 20509 2016 January 5
## 20510 2017 June 24
## 20511 2016 January 5
## 20512 2016 January 5
## 20513 2016 January 5
## 20514 2016 January 5
## 20515 2016 January 5
## 20516 2016 January 5
## 20517 2016 January 5
## 20518 2016 January 5
## 20519 2016 January 5
## 20520 2016 January 5
## 20521 2016 January 5
## 20522 2016 February 6
## 20523 2016 January 6
## 20524 2016 February 6
## 20525 2016 January 5
## 20526 2016 January 5
## 20527 2016 January 6
## 20528 2016 February 6
## 20529 2016 January 6
## 20530 2016 January 5
## 20531 2016 January 6
## 20532 2016 January 5
## 20533 2017 January 3
## 20534 2016 January 5
## 20535 2016 January 5
## 20536 2016 February 6
## 20537 2016 January 5
## 20538 2016 January 5
## 20539 2016 January 5
## 20540 2016 February 6
## 20541 2016 February 6
## 20542 2016 January 6
## 20543 2016 January 5
## 20544 2016 January 6
## 20545 2016 February 6
## 20546 2016 February 6
## 20547 2016 February 6
## 20548 2017 January 3
## 20549 2017 June 23
## 20550 2016 February 6
## 20551 2016 March 10
## 20552 2016 December 51
## 20553 2016 February 6
## 20554 2016 February 6
## 20555 2016 December 51
## 20556 2017 April 15
## 20557 2016 February 6
## 20558 2016 February 6
## 20559 2016 March 11
## 20560 2016 January 5
## 20561 2016 January 5
## 20562 2016 January 5
## 20563 2016 February 6
## 20564 2016 February 6
## 20565 2016 February 6
## 20566 2016 February 6
## 20567 2016 February 6
## 20568 2016 January 5
## 20569 2016 February 6
## 20570 2016 February 8
## 20571 2016 March 10
## 20572 2016 March 12
## 20573 2016 March 14
## 20574 2016 April 16
## 20575 2016 February 6
## 20576 2016 February 6
## 20577 2016 February 6
## 20578 2016 February 6
## 20579 2016 February 6
## 20580 2016 February 8
## 20581 2016 January 5
## 20582 2016 February 6
## 20583 2016 February 6
## 20584 2016 February 6
## 20585 2016 April 15
## 20586 2016 January 6
## 20587 2017 January 4
## 20588 2016 February 6
## 20589 2016 February 6
## 20590 2016 February 6
## 20591 2016 February 7
## 20592 2016 February 8
## 20593 2016 February 9
## 20594 2016 January 5
## 20595 2016 February 6
## 20596 2016 February 6
## 20597 2016 February 6
## 20598 2016 February 6
## 20599 2016 February 6
## 20600 2016 February 6
## 20601 2016 February 9
## 20602 2016 January 5
## 20603 2016 January 5
## 20604 2016 February 6
## 20605 2016 February 6
## 20606 2016 February 6
## 20607 2016 February 6
## 20608 2016 March 11
## 20609 2016 February 6
## 20610 2016 November 45
## 20611 2016 February 6
## 20612 2016 February 6
## 20613 2016 April 15
## 20614 2016 February 6
## 20615 2016 February 6
## 20616 2016 February 6
## 20617 2016 February 6
## 20618 2016 February 6
## 20619 2016 February 6
## 20620 2016 February 6
## 20621 2017 March 13
## 20622 2016 February 6
## 20623 2016 February 6
## 20624 2016 February 6
## 20625 2016 February 6
## 20626 2016 February 6
## 20627 2016 February 6
## 20628 2016 February 6
## 20629 2016 February 6
## 20630 2016 February 6
## 20631 2016 February 6
## 20632 2016 February 6
## 20633 2017 January 4
## 20634 2017 March 13
## 20635 2016 February 6
## 20636 2016 February 6
## 20637 2016 February 6
## 20638 2016 January 6
## 20639 2016 February 6
## 20640 2016 February 6
## 20641 2016 February 6
## 20642 2016 February 6
## 20643 2017 March 10
## 20644 2016 February 6
## 20645 2016 February 6
## 20646 2016 February 6
## 20647 2016 February 6
## 20648 2016 February 6
## 20649 2016 February 6
## 20650 2016 January 6
## 20651 2016 February 6
## 20652 2016 February 6
## 20653 2016 February 6
## 20654 2016 February 6
## 20655 2016 February 6
## 20656 2016 February 6
## 20657 2016 February 6
## 20658 2016 February 6
## 20659 2016 February 6
## 20660 2016 February 6
## 20661 2016 February 6
## 20662 2016 February 6
## 20663 2016 February 6
## 20664 2016 February 6
## 20665 2016 February 6
## 20666 2016 February 6
## 20667 2016 February 6
## 20668 2016 February 6
## 20669 2016 February 6
## 20670 2016 February 6
## 20671 2016 February 6
## 20672 2016 February 6
## 20673 2016 February 6
## 20674 2016 February 6
## 20675 2016 February 6
## 20676 2016 February 6
## 20677 2016 February 6
## 20678 2016 February 6
## 20679 2016 February 6
## 20680 2016 February 6
## 20681 2016 February 6
## 20682 2016 February 6
## 20683 2016 February 6
## 20684 2016 February 6
## 20685 2016 February 6
## 20686 2016 February 6
## 20687 2016 February 6
## 20688 2016 February 6
## 20689 2016 February 9
## 20690 2016 February 6
## 20691 2016 February 6
## 20692 2017 March 10
## 20693 2016 February 6
## 20694 2016 February 6
## 20695 2016 February 6
## 20696 2016 February 6
## 20697 2016 February 6
## 20698 2016 February 6
## 20699 2016 February 6
## 20700 2016 February 9
## 20701 2016 February 6
## 20702 2016 February 6
## 20703 2016 February 7
## 20704 2016 February 6
## 20705 2016 February 6
## 20706 2016 February 6
## 20707 2016 February 6
## 20708 2016 February 9
## 20709 2016 February 6
## 20710 2016 February 6
## 20711 2016 February 6
## 20712 2016 February 6
## 20713 2016 February 6
## 20714 2016 February 7
## 20715 2016 February 6
## 20716 2016 February 6
## 20717 2016 February 6
## 20718 2016 February 6
## 20719 2016 February 7
## 20720 2016 February 6
## 20721 2016 February 6
## 20722 2016 February 6
## 20723 2016 February 7
## 20724 2016 February 6
## 20725 2016 February 6
## 20726 2016 February 9
## 20727 2016 February 6
## 20728 2016 February 7
## 20729 2016 February 6
## 20730 2016 February 6
## 20731 2016 February 6
## 20732 2016 February 6
## 20733 2016 February 6
## 20734 2016 February 7
## 20735 2016 February 6
## 20736 2016 February 7
## 20737 2016 February 6
## 20738 2016 February 6
## 20739 2016 February 6
## 20740 2016 February 6
## 20741 2016 February 6
## 20742 2016 February 6
## 20743 2016 February 7
## 20744 2016 February 6
## 20745 2016 February 6
## 20746 2016 January 5
## 20747 2016 February 7
## 20748 2016 February 6
## 20749 2016 February 6
## 20750 2016 February 6
## 20751 2016 February 6
## 20752 2016 February 6
## 20753 2016 February 6
## 20754 2016 February 6
## 20755 2016 February 6
## 20756 2016 February 6
## 20757 2016 February 7
## 20758 2016 February 6
## 20759 2016 February 6
## 20760 2016 February 6
## 20761 2016 February 7
## 20762 2017 February 9
## 20763 2017 January 1
## 20764 2016 February 7
## 20765 2016 February 7
## 20766 2016 February 7
## 20767 2016 February 7
## 20768 2016 February 6
## 20769 2016 February 7
## 20770 2016 February 6
## 20771 2016 February 7
## 20772 2016 February 7
## 20773 2016 February 6
## 20774 2016 February 7
## 20775 2016 February 6
## 20776 2016 February 6
## 20777 2016 February 6
## 20778 2016 February 7
## 20779 2016 February 6
## 20780 2016 February 7
## 20781 2016 February 6
## 20782 2016 February 6
## 20783 2016 February 7
## 20784 2016 February 6
## 20785 2016 February 6
## 20786 2016 February 7
## 20787 2016 February 7
## 20788 2016 February 6
## 20789 2016 February 7
## 20790 2016 February 6
## 20791 2017 February 6
## 20792 2016 February 6
## 20793 2016 January 6
## 20794 2016 February 6
## 20795 2016 February 6
## 20796 2017 April 14
## 20797 2016 February 7
## 20798 2016 February 7
## 20799 2016 February 7
## 20800 2016 February 7
## 20801 2016 February 7
## 20802 2016 February 7
## 20803 2016 February 7
## 20804 2016 February 7
## 20805 2016 February 6
## 20806 2016 February 7
## 20807 2016 February 7
## 20808 2016 February 6
## 20809 2016 February 6
## 20810 2016 February 6
## 20811 2016 February 6
## 20812 2016 February 7
## 20813 2016 January 5
## 20814 2016 February 7
## 20815 2016 February 7
## 20816 2016 February 7
## 20817 2016 February 6
## 20818 2016 February 7
## 20819 2016 February 6
## 20820 2016 February 7
## 20821 2016 February 7
## 20822 2016 February 7
## 20823 2016 February 7
## 20824 2016 February 7
## 20825 2016 February 7
## 20826 2016 February 7
## 20827 2016 February 7
## 20828 2016 February 9
## 20829 2016 April 15
## 20830 2016 February 7
## 20831 2016 April 16
## 20832 2016 June 25
## 20833 2016 February 7
## 20834 2016 April 16
## 20835 2016 June 25
## 20836 2016 January 2
## 20837 2016 February 6
## 20838 2016 October 44
## 20839 2016 December 53
## 20840 2016 February 7
## 20841 2016 March 11
## 20842 2016 April 15
## 20843 2016 May 19
## 20844 2016 November 46
## 20845 2016 December 52
## 20846 2017 February 7
## 20847 2016 February 7
## 20848 2016 February 7
## 20849 2016 February 7
## 20850 2016 February 7
## 20851 2016 February 6
## 20852 2016 February 7
## 20853 2016 February 7
## 20854 2016 February 7
## 20855 2016 February 7
## 20856 2016 February 7
## 20857 2016 February 7
## 20858 2016 March 14
## 20859 2016 February 7
## 20860 2016 February 6
## 20861 2016 February 6
## 20862 2016 February 6
## 20863 2016 February 7
## 20864 2016 February 7
## 20865 2016 February 7
## 20866 2016 April 17
## 20867 2016 February 7
## 20868 2016 February 7
## 20869 2016 February 7
## 20870 2016 February 7
## 20871 2016 February 6
## 20872 2016 February 6
## 20873 2016 February 7
## 20874 2016 February 7
## 20875 2016 February 7
## 20876 2016 February 7
## 20877 2016 February 7
## 20878 2016 January 5
## 20879 2016 February 6
## 20880 2016 February 7
## 20881 2016 February 7
## 20882 2016 February 7
## 20883 2016 September 40
## 20884 2016 December 49
## 20885 2016 February 7
## 20886 2016 September 40
## 20887 2016 February 6
## 20888 2016 February 7
## 20889 2016 February 7
## 20890 2016 February 6
## 20891 2016 February 7
## 20892 2016 February 7
## 20893 2016 February 6
## 20894 2016 February 7
## 20895 2016 February 7
## 20896 2016 February 7
## 20897 2016 February 7
## 20898 2016 February 7
## 20899 2016 January 4
## 20900 2016 February 7
## 20901 2016 February 7
## 20902 2016 February 7
## 20903 2016 February 7
## 20904 2016 February 7
## 20905 2016 February 7
## 20906 2016 February 7
## 20907 2016 February 7
## 20908 2016 February 7
## 20909 2016 February 7
## 20910 2016 February 7
## 20911 2016 February 7
## 20912 2016 February 7
## 20913 2016 February 8
## 20914 2016 March 13
## 20915 2016 March 14
## 20916 2016 June 25
## 20917 2016 July 30
## 20918 2017 January 4
## 20919 2017 January 5
## 20920 2017 May 22
## 20921 2017 June 23
## 20922 2016 February 7
## 20923 2016 February 7
## 20924 2016 February 7
## 20925 2016 February 7
## 20926 2016 February 7
## 20927 2016 February 7
## 20928 2016 February 7
## 20929 2016 February 7
## 20930 2016 February 7
## 20931 2016 February 7
## 20932 2016 February 7
## 20933 2016 February 7
## 20934 2016 September 37
## 20935 2016 February 7
## 20936 2016 February 7
## 20937 2016 February 7
## 20938 2016 February 7
## 20939 2016 February 7
## 20940 2016 February 7
## 20941 2016 February 7
## 20942 2016 February 7
## 20943 2016 February 7
## 20944 2016 February 7
## 20945 2016 February 7
## 20946 2016 February 7
## 20947 2016 February 7
## 20948 2016 February 7
## 20949 2016 February 7
## 20950 2016 February 7
## 20951 2016 February 7
## 20952 2016 February 7
## 20953 2016 February 7
## 20954 2016 February 6
## 20955 2016 February 7
## 20956 2016 February 7
## 20957 2016 February 7
## 20958 2016 February 7
## 20959 2016 February 7
## 20960 2016 September 36
## 20961 2016 February 7
## 20962 2016 February 7
## 20963 2016 February 7
## 20964 2016 February 7
## 20965 2016 February 7
## 20966 2016 February 7
## 20967 2016 February 7
## 20968 2016 February 7
## 20969 2016 February 7
## 20970 2016 February 7
## 20971 2016 February 7
## 20972 2016 February 7
## 20973 2016 February 7
## 20974 2016 February 7
## 20975 2016 February 7
## 20976 2016 February 7
## 20977 2016 February 7
## 20978 2016 February 7
## 20979 2016 February 7
## 20980 2016 February 7
## 20981 2016 February 7
## 20982 2016 January 6
## 20983 2016 February 7
## 20984 2016 February 7
## 20985 2016 February 7
## 20986 2016 February 7
## 20987 2016 February 7
## 20988 2016 February 7
## 20989 2016 February 7
## 20990 2016 February 7
## 20991 2016 February 7
## 20992 2016 February 7
## 20993 2016 February 8
## 20994 2016 February 8
## 20995 2016 February 7
## 20996 2016 February 7
## 20997 2016 February 7
## 20998 2016 February 8
## 20999 2016 February 7
## 21000 2016 February 7
## 21001 2016 February 7
## 21002 2016 February 7
## 21003 2016 February 7
## 21004 2016 February 6
## 21005 2016 February 7
## 21006 2016 February 7
## 21007 2016 February 7
## 21008 2016 February 7
## 21009 2016 February 8
## 21010 2016 February 7
## 21011 2016 February 8
## 21012 2016 February 7
## 21013 2016 February 7
## 21014 2016 February 7
## 21015 2016 February 7
## 21016 2016 February 8
## 21017 2016 February 8
## 21018 2016 February 7
## 21019 2016 February 8
## 21020 2016 February 7
## 21021 2016 February 8
## 21022 2016 February 8
## 21023 2016 February 8
## 21024 2016 February 7
## 21025 2016 February 7
## 21026 2017 February 7
## 21027 2016 February 8
## 21028 2016 February 8
## 21029 2016 February 8
## 21030 2016 February 8
## 21031 2016 February 8
## 21032 2016 February 7
## 21033 2016 February 8
## 21034 2016 February 7
## 21035 2016 February 7
## 21036 2016 February 8
## 21037 2016 February 7
## 21038 2016 February 8
## 21039 2017 February 8
## 21040 2016 February 8
## 21041 2016 February 8
## 21042 2016 February 8
## 21043 2016 February 8
## 21044 2016 February 7
## 21045 2016 February 8
## 21046 2016 February 6
## 21047 2016 February 7
## 21048 2016 February 8
## 21049 2016 February 8
## 21050 2016 March 10
## 21051 2016 November 49
## 21052 2016 December 51
## 21053 2016 February 8
## 21054 2016 February 8
## 21055 2016 February 7
## 21056 2016 February 8
## 21057 2016 February 8
## 21058 2016 February 8
## 21059 2016 February 8
## 21060 2016 February 8
## 21061 2016 February 8
## 21062 2016 February 8
## 21063 2016 February 8
## 21064 2016 February 8
## 21065 2016 February 8
## 21066 2016 February 7
## 21067 2016 February 7
## 21068 2016 February 8
## 21069 2016 February 8
## 21070 2017 March 11
## 21071 2016 February 8
## 21072 2016 February 8
## 21073 2016 February 8
## 21074 2016 February 8
## 21075 2016 February 8
## 21076 2016 February 8
## 21077 2016 February 8
## 21078 2016 February 8
## 21079 2016 February 8
## 21080 2016 March 12
## 21081 2016 April 15
## 21082 2016 April 18
## 21083 2016 February 8
## 21084 2016 February 8
## 21085 2016 February 8
## 21086 2016 April 18
## 21087 2017 May 22
## 21088 2016 February 8
## 21089 2016 February 7
## 21090 2016 February 7
## 21091 2016 February 8
## 21092 2016 February 8
## 21093 2016 April 16
## 21094 2016 February 8
## 21095 2016 February 8
## 21096 2016 February 8
## 21097 2016 February 8
## 21098 2016 February 8
## 21099 2016 February 8
## 21100 2016 February 7
## 21101 2016 February 7
## 21102 2016 February 8
## 21103 2016 February 7
## 21104 2016 February 7
## 21105 2016 February 8
## 21106 2016 February 8
## 21107 2016 February 8
## 21108 2016 March 12
## 21109 2016 February 8
## 21110 2016 February 8
## 21111 2016 February 8
## 21112 2016 February 8
## 21113 2016 February 8
## 21114 2016 March 11
## 21115 2016 March 12
## 21116 2017 January 3
## 21117 2016 February 8
## 21118 2016 March 14
## 21119 2016 April 16
## 21120 2016 December 51
## 21121 2017 March 13
## 21122 2016 February 8
## 21123 2016 February 8
## 21124 2016 February 8
## 21125 2016 February 8
## 21126 2017 March 9
## 21127 2016 February 8
## 21128 2016 February 8
## 21129 2016 February 8
## 21130 2016 February 8
## 21131 2016 February 8
## 21132 2016 February 8
## 21133 2016 February 8
## 21134 2017 February 6
## 21135 2016 February 8
## 21136 2016 February 8
## 21137 2016 May 23
## 21138 2016 February 8
## 21139 2016 February 8
## 21140 2017 February 6
## 21141 2016 February 8
## 21142 2016 February 8
## 21143 2016 February 8
## 21144 2016 February 8
## 21145 2016 February 8
## 21146 2016 February 8
## 21147 2016 March 10
## 21148 2016 February 8
## 21149 2016 February 8
## 21150 2016 February 7
## 21151 2016 February 8
## 21152 2016 February 7
## 21153 2016 February 7
## 21154 2016 February 7
## 21155 2016 February 8
## 21156 2016 February 6
## 21157 2016 February 8
## 21158 2016 February 8
## 21159 2016 February 8
## 21160 2016 February 8
## 21161 2016 February 7
## 21162 2016 February 7
## 21163 2016 February 8
## 21164 2016 February 8
## 21165 2016 February 8
## 21166 2016 February 8
## 21167 2016 February 8
## 21168 2016 February 8
## 21169 2016 February 8
## 21170 2016 February 8
## 21171 2016 February 6
## 21172 2016 February 8
## 21173 2016 February 8
## 21174 2016 February 8
## 21175 2016 February 8
## 21176 2016 February 8
## 21177 2016 February 8
## 21178 2016 February 8
## 21179 2016 February 8
## 21180 2016 February 8
## 21181 2016 February 8
## 21182 2016 February 8
## 21183 2016 February 8
## 21184 2016 February 8
## 21185 2016 February 8
## 21186 2016 February 8
## 21187 2016 July 30
## 21188 2016 February 8
## 21189 2016 February 8
## 21190 2016 February 8
## 21191 2016 February 8
## 21192 2016 February 8
## 21193 2016 February 8
## 21194 2016 February 8
## 21195 2016 February 8
## 21196 2016 February 8
## 21197 2016 February 8
## 21198 2016 February 8
## 21199 2016 February 8
## 21200 2016 February 8
## 21201 2016 February 8
## 21202 2016 February 8
## 21203 2016 February 8
## 21204 2016 February 8
## 21205 2016 February 8
## 21206 2016 February 8
## 21207 2016 February 8
## 21208 2016 February 8
## 21209 2016 February 8
## 21210 2016 February 8
## 21211 2016 February 8
## 21212 2016 February 8
## 21213 2016 February 8
## 21214 2016 February 8
## 21215 2016 February 8
## 21216 2016 February 8
## 21217 2016 February 8
## 21218 2016 February 8
## 21219 2016 February 8
## 21220 2016 February 8
## 21221 2016 February 8
## 21222 2016 February 9
## 21223 2016 February 9
## 21224 2016 February 9
## 21225 2016 May 21
## 21226 2016 February 8
## 21227 2016 February 8
## 21228 2016 February 8
## 21229 2016 February 8
## 21230 2016 February 8
## 21231 2016 February 9
## 21232 2016 February 9
## 21233 2017 February 8
## 21234 2016 January 5
## 21235 2016 February 8
## 21236 2016 March 12
## 21237 2016 February 8
## 21238 2016 February 9
## 21239 2016 February 9
## 21240 2016 February 9
## 21241 2016 February 9
## 21242 2016 February 8
## 21243 2016 February 8
## 21244 2016 February 9
## 21245 2016 February 9
## 21246 2016 February 9
## 21247 2016 February 8
## 21248 2016 February 9
## 21249 2016 October 43
## 21250 2016 February 9
## 21251 2016 February 9
## 21252 2016 March 13
## 21253 2016 February 9
## 21254 2016 February 8
## 21255 2016 February 9
## 21256 2016 February 9
## 21257 2016 February 8
## 21258 2016 February 9
## 21259 2016 February 9
## 21260 2016 February 9
## 21261 2016 February 9
## 21262 2016 February 9
## 21263 2016 December 50
## 21264 2016 February 9
## 21265 2016 February 7
## 21266 2016 February 9
## 21267 2016 February 9
## 21268 2016 February 9
## 21269 2016 February 9
## 21270 2016 February 9
## 21271 2016 March 14
## 21272 2016 February 9
## 21273 2016 February 9
## 21274 2016 February 9
## 21275 2016 February 9
## 21276 2016 February 8
## 21277 2016 February 9
## 21278 2016 February 8
## 21279 2016 February 9
## 21280 2016 March 13
## 21281 2016 February 8
## 21282 2016 February 9
## 21283 2016 February 9
## 21284 2016 February 9
## 21285 2016 February 9
## 21286 2016 February 9
## 21287 2016 February 9
## 21288 2016 February 9
## 21289 2016 February 8
## 21290 2016 February 9
## 21291 2016 February 9
## 21292 2016 February 9
## 21293 2016 February 9
## 21294 2016 February 9
## 21295 2016 February 9
## 21296 2016 February 9
## 21297 2016 February 9
## 21298 2016 February 9
## 21299 2016 February 9
## 21300 2016 February 9
## 21301 2016 February 9
## 21302 2016 February 9
## 21303 2016 February 9
## 21304 2016 February 9
## 21305 2016 February 9
## 21306 2016 February 9
## 21307 2016 February 9
## 21308 2016 February 9
## 21309 2016 March 12
## 21310 2017 February 6
## 21311 2017 February 8
## 21312 2016 February 9
## 21313 2016 February 9
## 21314 2016 April 18
## 21315 2016 December 51
## 21316 2017 February 7
## 21317 2016 February 9
## 21318 2016 February 9
## 21319 2016 March 11
## 21320 2016 February 9
## 21321 2016 February 9
## 21322 2016 February 9
## 21323 2016 February 9
## 21324 2016 February 10
## 21325 2016 February 9
## 21326 2016 February 9
## 21327 2016 February 9
## 21328 2016 February 9
## 21329 2016 February 9
## 21330 2016 February 9
## 21331 2016 February 9
## 21332 2016 February 9
## 21333 2017 April 14
## 21334 2016 February 9
## 21335 2017 April 14
## 21336 2016 February 9
## 21337 2016 February 9
## 21338 2016 February 9
## 21339 2017 March 11
## 21340 2016 February 9
## 21341 2016 February 8
## 21342 2016 February 9
## 21343 2016 April 15
## 21344 2016 April 16
## 21345 2016 April 18
## 21346 2016 February 9
## 21347 2016 February 9
## 21348 2016 April 15
## 21349 2016 April 16
## 21350 2016 April 18
## 21351 2016 February 9
## 21352 2016 February 8
## 21353 2016 February 9
## 21354 2016 February 9
## 21355 2016 February 9
## 21356 2016 February 8
## 21357 2016 February 9
## 21358 2016 February 9
## 21359 2016 April 18
## 21360 2016 February 9
## 21361 2016 February 9
## 21362 2016 February 9
## 21363 2016 February 8
## 21364 2016 February 9
## 21365 2016 February 8
## 21366 2016 February 9
## 21367 2016 February 9
## 21368 2016 February 9
## 21369 2016 February 9
## 21370 2016 February 9
## 21371 2016 February 9
## 21372 2016 February 8
## 21373 2016 February 9
## 21374 2016 February 7
## 21375 2016 February 9
## 21376 2016 February 9
## 21377 2016 February 9
## 21378 2016 February 9
## 21379 2016 February 9
## 21380 2016 February 9
## 21381 2016 February 9
## 21382 2016 February 9
## 21383 2016 February 9
## 21384 2016 February 9
## 21385 2016 February 9
## 21386 2016 February 9
## 21387 2016 February 9
## 21388 2016 February 9
## 21389 2016 February 9
## 21390 2016 February 9
## 21391 2016 February 9
## 21392 2016 February 9
## 21393 2016 March 10
## 21394 2016 February 9
## 21395 2016 February 9
## 21396 2016 February 9
## 21397 2016 February 9
## 21398 2016 February 9
## 21399 2016 February 9
## 21400 2016 February 9
## 21401 2016 February 9
## 21402 2016 February 9
## 21403 2016 February 9
## 21404 2016 February 9
## 21405 2016 February 9
## 21406 2016 February 9
## 21407 2016 February 9
## 21408 2016 February 9
## 21409 2016 February 9
## 21410 2016 February 9
## 21411 2016 February 9
## 21412 2016 February 9
## 21413 2016 February 9
## 21414 2016 February 7
## 21415 2016 February 10
## 21416 2016 February 10
## 21417 2016 February 9
## 21418 2016 February 9
## 21419 2016 February 9
## 21420 2016 February 9
## 21421 2016 February 9
## 21422 2016 February 9
## 21423 2016 February 9
## 21424 2016 February 9
## 21425 2016 February 9
## 21426 2016 February 9
## 21427 2016 February 9
## 21428 2016 February 9
## 21429 2016 February 9
## 21430 2016 February 10
## 21431 2016 February 9
## 21432 2016 February 9
## 21433 2016 February 9
## 21434 2016 February 9
## 21435 2016 February 9
## 21436 2016 February 9
## 21437 2016 February 9
## 21438 2016 February 9
## 21439 2016 February 10
## 21440 2016 February 10
## 21441 2016 February 9
## 21442 2016 February 9
## 21443 2016 February 9
## 21444 2016 February 9
## 21445 2016 February 9
## 21446 2016 February 9
## 21447 2016 February 9
## 21448 2016 February 9
## 21449 2016 February 9
## 21450 2016 February 9
## 21451 2016 February 9
## 21452 2016 February 9
## 21453 2016 February 9
## 21454 2016 February 10
## 21455 2016 February 9
## 21456 2016 February 9
## 21457 2016 February 9
## 21458 2016 February 9
## 21459 2016 February 9
## 21460 2016 February 9
## 21461 2016 February 9
## 21462 2016 February 9
## 21463 2016 February 9
## 21464 2016 February 9
## 21465 2016 February 9
## 21466 2016 February 9
## 21467 2016 February 9
## 21468 2016 February 9
## 21469 2016 February 9
## 21470 2016 February 9
## 21471 2016 February 9
## 21472 2016 February 9
## 21473 2016 February 9
## 21474 2016 February 9
## 21475 2016 February 9
## 21476 2016 February 9
## 21477 2016 February 9
## 21478 2016 February 9
## 21479 2016 February 9
## 21480 2016 February 10
## 21481 2016 February 9
## 21482 2016 February 10
## 21483 2016 February 10
## 21484 2017 January 1
## 21485 2016 February 9
## 21486 2016 February 9
## 21487 2016 February 9
## 21488 2016 February 10
## 21489 2016 February 9
## 21490 2016 March 10
## 21491 2017 February 7
## 21492 2017 April 17
## 21493 2016 February 9
## 21494 2016 February 10
## 21495 2016 February 10
## 21496 2016 March 13
## 21497 2016 May 19
## 21498 2016 November 49
## 21499 2017 January 3
## 21500 2017 January 4
## 21501 2017 February 6
## 21502 2017 March 13
## 21503 2017 May 22
## 21504 2016 March 10
## 21505 2016 March 10
## 21506 2016 March 10
## 21507 2016 March 10
## 21508 2016 March 10
## 21509 2017 March 11
## 21510 2016 March 10
## 21511 2016 February 9
## 21512 2016 March 10
## 21513 2016 February 10
## 21514 2016 February 10
## 21515 2016 March 10
## 21516 2016 February 9
## 21517 2016 February 9
## 21518 2016 February 8
## 21519 2016 February 9
## 21520 2016 February 9
## 21521 2016 February 6
## 21522 2016 March 10
## 21523 2016 February 9
## 21524 2016 February 9
## 21525 2016 March 10
## 21526 2016 March 10
## 21527 2016 March 10
## 21528 2016 March 10
## 21529 2016 February 10
## 21530 2016 February 10
## 21531 2016 March 10
## 21532 2016 March 10
## 21533 2016 February 10
## 21534 2016 February 10
## 21535 2016 February 10
## 21536 2016 February 9
## 21537 2016 March 10
## 21538 2016 March 10
## 21539 2016 February 10
## 21540 2016 March 10
## 21541 2016 March 10
## 21542 2016 March 10
## 21543 2016 February 10
## 21544 2016 February 10
## 21545 2016 February 10
## 21546 2016 March 10
## 21547 2016 February 10
## 21548 2016 February 8
## 21549 2016 February 10
## 21550 2016 March 10
## 21551 2016 February 10
## 21552 2016 March 10
## 21553 2016 March 10
## 21554 2016 March 10
## 21555 2016 September 38
## 21556 2016 March 10
## 21557 2016 March 10
## 21558 2017 January 4
## 21559 2017 February 6
## 21560 2017 March 11
## 21561 2016 February 10
## 21562 2016 February 8
## 21563 2016 March 10
## 21564 2016 March 10
## 21565 2016 June 26
## 21566 2016 February 10
## 21567 2016 February 9
## 21568 2016 March 10
## 21569 2016 February 9
## 21570 2016 February 10
## 21571 2016 March 10
## 21572 2016 November 48
## 21573 2016 March 10
## 21574 2016 March 10
## 21575 2016 February 10
## 21576 2016 February 10
## 21577 2016 March 10
## 21578 2016 March 10
## 21579 2016 March 10
## 21580 2016 March 10
## 21581 2016 March 10
## 21582 2016 March 10
## 21583 2016 March 10
## 21584 2016 March 10
## 21585 2016 March 10
## 21586 2016 February 9
## 21587 2016 February 9
## 21588 2016 February 9
## 21589 2016 March 10
## 21590 2016 February 9
## 21591 2016 March 10
## 21592 2016 February 9
## 21593 2016 February 9
## 21594 2016 March 10
## 21595 2016 February 8
## 21596 2016 March 10
## 21597 2016 March 10
## 21598 2016 March 10
## 21599 2016 March 10
## 21600 2016 February 9
## 21601 2016 March 10
## 21602 2016 February 10
## 21603 2016 March 10
## 21604 2016 March 10
## 21605 2016 March 10
## 21606 2016 March 10
## 21607 2016 March 10
## 21608 2016 March 10
## 21609 2016 March 10
## 21610 2016 March 10
## 21611 2016 March 10
## 21612 2016 March 10
## 21613 2016 March 10
## 21614 2016 March 10
## 21615 2016 March 10
## 21616 2016 March 10
## 21617 2016 March 10
## 21618 2016 March 10
## 21619 2016 March 10
## 21620 2016 March 10
## 21621 2016 March 10
## 21622 2016 March 10
## 21623 2016 March 10
## 21624 2016 March 10
## 21625 2016 March 10
## 21626 2016 March 10
## 21627 2016 March 10
## 21628 2016 March 10
## 21629 2016 March 10
## 21630 2016 March 10
## 21631 2016 March 10
## 21632 2016 March 10
## 21633 2016 March 10
## 21634 2016 February 9
## 21635 2016 March 10
## 21636 2016 March 10
## 21637 2016 February 10
## 21638 2016 March 10
## 21639 2016 February 9
## 21640 2016 March 10
## 21641 2016 February 10
## 21642 2016 March 10
## 21643 2016 March 10
## 21644 2016 March 10
## 21645 2016 March 10
## 21646 2017 May 18
## 21647 2016 March 10
## 21648 2016 March 10
## 21649 2016 March 10
## 21650 2017 March 11
## 21651 2016 March 10
## 21652 2016 February 10
## 21653 2016 March 10
## 21654 2016 March 10
## 21655 2016 March 10
## 21656 2016 March 10
## 21657 2016 March 10
## 21658 2017 June 25
## 21659 2016 March 10
## 21660 2016 March 10
## 21661 2016 March 10
## 21662 2016 March 10
## 21663 2016 March 10
## 21664 2016 March 10
## 21665 2016 March 10
## 21666 2016 March 10
## 21667 2016 March 10
## 21668 2016 February 10
## 21669 2016 March 10
## 21670 2016 March 10
## 21671 2016 February 10
## 21672 2016 October 44
## 21673 2017 February 9
## 21674 2016 March 10
## 21675 2016 March 10
## 21676 2016 March 10
## 21677 2016 March 10
## 21678 2016 March 10
## 21679 2016 March 10
## 21680 2016 March 10
## 21681 2016 March 10
## 21682 2016 March 10
## 21683 2016 March 10
## 21684 2016 March 11
## 21685 2016 March 11
## 21686 2016 March 10
## 21687 2016 March 11
## 21688 2016 March 10
## 21689 2016 March 10
## 21690 2016 February 9
## 21691 2016 March 10
## 21692 2016 March 11
## 21693 2016 March 11
## 21694 2017 January 3
## 21695 2016 March 11
## 21696 2016 March 11
## 21697 2016 May 19
## 21698 2016 March 11
## 21699 2016 March 11
## 21700 2016 September 40
## 21701 2017 January 3
## 21702 2017 January 5
## 21703 2017 March 11
## 21704 2017 May 20
## 21705 2016 March 10
## 21706 2016 March 10
## 21707 2016 March 10
## 21708 2016 March 11
## 21709 2016 March 11
## 21710 2016 March 11
## 21711 2016 March 10
## 21712 2017 March 10
## 21713 2017 March 11
## 21714 2017 March 12
## 21715 2016 March 10
## 21716 2016 March 10
## 21717 2016 March 11
## 21718 2016 March 10
## 21719 2016 March 10
## 21720 2016 March 10
## 21721 2016 March 10
## 21722 2016 March 10
## 21723 2016 March 10
## 21724 2016 March 11
## 21725 2016 March 11
## 21726 2016 March 11
## 21727 2016 March 11
## 21728 2016 March 11
## 21729 2017 March 13
## 21730 2016 March 11
## 21731 2016 March 10
## 21732 2016 March 10
## 21733 2016 March 10
## 21734 2016 March 11
## 21735 2016 March 11
## 21736 2017 June 25
## 21737 2016 March 11
## 21738 2017 February 7
## 21739 2016 March 11
## 21740 2016 March 11
## 21741 2016 March 11
## 21742 2016 March 11
## 21743 2016 March 10
## 21744 2016 March 10
## 21745 2017 March 11
## 21746 2017 March 12
## 21747 2016 March 10
## 21748 2016 March 10
## 21749 2016 March 11
## 21750 2016 March 11
## 21751 2016 March 10
## 21752 2016 March 11
## 21753 2016 March 11
## 21754 2016 March 11
## 21755 2016 March 10
## 21756 2016 March 11
## 21757 2016 March 11
## 21758 2016 March 11
## 21759 2016 March 11
## 21760 2016 May 19
## 21761 2016 February 10
## 21762 2016 March 11
## 21763 2016 March 11
## 21764 2016 March 11
## 21765 2016 December 52
## 21766 2016 March 11
## 21767 2016 April 16
## 21768 2016 November 48
## 21769 2016 December 52
## 21770 2017 February 6
## 21771 2016 March 11
## 21772 2016 March 11
## 21773 2016 March 10
## 21774 2016 March 11
## 21775 2016 April 16
## 21776 2016 March 11
## 21777 2016 December 50
## 21778 2016 March 11
## 21779 2016 March 11
## 21780 2016 February 9
## 21781 2016 March 11
## 21782 2016 March 11
## 21783 2016 March 11
## 21784 2016 March 10
## 21785 2016 March 11
## 21786 2016 March 11
## 21787 2016 March 11
## 21788 2016 March 11
## 21789 2016 April 16
## 21790 2016 March 11
## 21791 2016 April 16
## 21792 2016 March 10
## 21793 2016 March 11
## 21794 2016 April 17
## 21795 2016 March 11
## 21796 2016 March 11
## 21797 2016 March 11
## 21798 2016 March 11
## 21799 2016 March 11
## 21800 2016 March 11
## 21801 2016 March 11
## 21802 2016 March 11
## 21803 2016 March 11
## 21804 2016 March 10
## 21805 2016 March 11
## 21806 2016 March 11
## 21807 2016 March 11
## 21808 2016 March 11
## 21809 2016 March 11
## 21810 2016 March 11
## 21811 2016 March 11
## 21812 2016 March 11
## 21813 2016 March 11
## 21814 2016 March 11
## 21815 2016 March 11
## 21816 2016 March 11
## 21817 2016 March 11
## 21818 2016 March 11
## 21819 2016 March 11
## 21820 2016 March 11
## 21821 2016 March 11
## 21822 2016 March 11
## 21823 2016 March 11
## 21824 2016 March 11
## 21825 2016 March 11
## 21826 2016 March 11
## 21827 2016 March 11
## 21828 2016 March 11
## 21829 2016 March 11
## 21830 2016 March 11
## 21831 2016 March 11
## 21832 2016 March 11
## 21833 2016 March 11
## 21834 2016 March 11
## 21835 2016 March 11
## 21836 2016 March 11
## 21837 2016 March 11
## 21838 2016 March 11
## 21839 2016 March 11
## 21840 2016 March 11
## 21841 2016 March 11
## 21842 2016 March 11
## 21843 2016 March 11
## 21844 2016 March 11
## 21845 2016 March 11
## 21846 2016 March 11
## 21847 2016 March 11
## 21848 2016 March 11
## 21849 2016 March 11
## 21850 2016 March 11
## 21851 2016 March 11
## 21852 2016 March 10
## 21853 2016 March 11
## 21854 2016 March 10
## 21855 2016 March 11
## 21856 2016 March 10
## 21857 2016 March 11
## 21858 2016 March 11
## 21859 2016 March 11
## 21860 2016 March 11
## 21861 2016 March 11
## 21862 2016 February 9
## 21863 2016 March 11
## 21864 2016 March 11
## 21865 2016 March 11
## 21866 2016 March 11
## 21867 2016 March 11
## 21868 2016 March 11
## 21869 2016 March 10
## 21870 2016 March 11
## 21871 2016 March 11
## 21872 2016 March 11
## 21873 2016 March 11
## 21874 2016 March 11
## 21875 2016 March 11
## 21876 2016 March 11
## 21877 2016 March 11
## 21878 2016 March 11
## 21879 2016 March 11
## 21880 2016 March 11
## 21881 2016 March 11
## 21882 2016 March 11
## 21883 2016 March 11
## 21884 2016 March 11
## 21885 2016 March 11
## 21886 2016 March 11
## 21887 2016 March 11
## 21888 2016 March 11
## 21889 2016 March 11
## 21890 2016 March 11
## 21891 2016 March 11
## 21892 2016 March 11
## 21893 2016 March 11
## 21894 2016 March 11
## 21895 2016 March 11
## 21896 2016 March 11
## 21897 2016 March 12
## 21898 2016 March 12
## 21899 2016 March 11
## 21900 2016 March 11
## 21901 2016 March 11
## 21902 2016 March 11
## 21903 2016 March 11
## 21904 2016 March 11
## 21905 2016 March 11
## 21906 2016 March 11
## 21907 2016 March 11
## 21908 2016 March 11
## 21909 2016 March 11
## 21910 2016 March 11
## 21911 2016 March 11
## 21912 2016 March 11
## 21913 2016 March 11
## 21914 2016 March 11
## 21915 2016 March 11
## 21916 2016 March 11
## 21917 2016 March 11
## 21918 2016 March 11
## 21919 2016 March 11
## 21920 2016 March 11
## 21921 2016 March 11
## 21922 2016 March 11
## 21923 2016 March 11
## 21924 2016 March 11
## 21925 2016 March 11
## 21926 2016 March 11
## 21927 2016 March 11
## 21928 2016 March 11
## 21929 2016 March 11
## 21930 2016 March 11
## 21931 2016 March 11
## 21932 2016 March 11
## 21933 2016 March 11
## 21934 2016 March 11
## 21935 2016 March 11
## 21936 2016 March 11
## 21937 2016 April 18
## 21938 2016 March 11
## 21939 2016 March 11
## 21940 2016 March 11
## 21941 2016 March 11
## 21942 2016 March 11
## 21943 2016 March 11
## 21944 2016 March 11
## 21945 2016 March 11
## 21946 2016 March 11
## 21947 2016 March 11
## 21948 2016 March 11
## 21949 2016 March 11
## 21950 2016 March 11
## 21951 2016 March 11
## 21952 2016 March 11
## 21953 2016 March 11
## 21954 2016 March 11
## 21955 2016 March 11
## 21956 2016 March 10
## 21957 2016 March 10
## 21958 2016 March 11
## 21959 2016 March 11
## 21960 2016 March 11
## 21961 2016 March 12
## 21962 2016 March 11
## 21963 2016 April 17
## 21964 2016 June 26
## 21965 2016 October 42
## 21966 2017 January 4
## 21967 2016 March 12
## 21968 2016 March 12
## 21969 2016 March 12
## 21970 2016 March 12
## 21971 2016 March 11
## 21972 2016 March 12
## 21973 2016 February 9
## 21974 2016 March 11
## 21975 2016 March 11
## 21976 2016 March 11
## 21977 2016 March 12
## 21978 2016 March 12
## 21979 2016 March 12
## 21980 2016 March 12
## 21981 2016 March 11
## 21982 2016 March 12
## 21983 2016 March 11
## 21984 2016 March 12
## 21985 2016 March 12
## 21986 2016 March 12
## 21987 2016 March 11
## 21988 2016 March 11
## 21989 2016 March 11
## 21990 2016 March 12
## 21991 2016 March 11
## 21992 2016 March 11
## 21993 2016 March 12
## 21994 2016 March 11
## 21995 2016 March 12
## 21996 2016 March 11
## 21997 2016 March 12
## 21998 2016 March 12
## 21999 2016 March 12
## 22000 2016 March 12
## 22001 2016 March 12
## 22002 2016 March 11
## 22003 2016 March 12
## 22004 2016 March 11
## 22005 2016 March 11
## 22006 2016 March 12
## 22007 2016 March 12
## 22008 2016 March 12
## 22009 2016 March 12
## 22010 2016 March 12
## 22011 2016 March 12
## 22012 2016 March 11
## 22013 2016 March 12
## 22014 2016 March 12
## 22015 2016 March 11
## 22016 2016 March 12
## 22017 2016 March 12
## 22018 2016 March 12
## 22019 2016 March 12
## 22020 2016 March 12
## 22021 2016 March 12
## 22022 2016 March 12
## 22023 2016 April 17
## 22024 2016 March 12
## 22025 2016 March 11
## 22026 2016 March 12
## 22027 2016 March 12
## 22028 2016 March 12
## 22029 2016 March 11
## 22030 2016 March 11
## 22031 2016 March 12
## 22032 2016 March 11
## 22033 2016 March 12
## 22034 2016 March 12
## 22035 2016 March 12
## 22036 2016 March 12
## 22037 2016 March 14
## 22038 2016 April 16
## 22039 2016 April 17
## 22040 2016 September 40
## 22041 2016 October 42
## 22042 2017 January 1
## 22043 2017 January 5
## 22044 2017 April 17
## 22045 2016 March 11
## 22046 2016 March 12
## 22047 2016 March 12
## 22048 2016 March 12
## 22049 2016 April 18
## 22050 2016 March 12
## 22051 2016 December 52
## 22052 2017 April 14
## 22053 2017 May 20
## 22054 2016 March 12
## 22055 2016 March 12
## 22056 2016 March 12
## 22057 2016 March 12
## 22058 2016 March 12
## 22059 2016 March 12
## 22060 2016 March 12
## 22061 2016 March 11
## 22062 2016 March 12
## 22063 2016 March 12
## 22064 2016 March 10
## 22065 2016 March 12
## 22066 2016 March 12
## 22067 2016 March 12
## 22068 2016 March 12
## 22069 2017 January 4
## 22070 2016 March 12
## 22071 2016 March 11
## 22072 2016 March 12
## 22073 2016 March 12
## 22074 2016 March 12
## 22075 2016 March 11
## 22076 2016 March 12
## 22077 2016 March 11
## 22078 2016 March 11
## 22079 2016 March 11
## 22080 2016 March 11
## 22081 2016 March 12
## 22082 2016 March 10
## 22083 2016 March 12
## 22084 2016 March 12
## 22085 2016 March 12
## 22086 2016 March 12
## 22087 2016 April 16
## 22088 2016 March 11
## 22089 2016 March 12
## 22090 2016 March 12
## 22091 2016 March 12
## 22092 2016 March 12
## 22093 2016 March 12
## 22094 2016 March 12
## 22095 2016 November 46
## 22096 2016 December 51
## 22097 2017 January 2
## 22098 2016 March 12
## 22099 2016 March 12
## 22100 2016 October 43
## 22101 2016 October 43
## 22102 2016 March 12
## 22103 2016 March 12
## 22104 2016 March 12
## 22105 2016 March 12
## 22106 2016 March 12
## 22107 2016 March 12
## 22108 2016 March 12
## 22109 2016 March 12
## 22110 2016 March 12
## 22111 2016 March 12
## 22112 2016 March 12
## 22113 2016 March 12
## 22114 2016 March 12
## 22115 2016 March 12
## 22116 2016 March 12
## 22117 2016 March 12
## 22118 2016 March 12
## 22119 2016 March 12
## 22120 2016 March 12
## 22121 2016 March 12
## 22122 2016 March 12
## 22123 2016 March 12
## 22124 2016 March 11
## 22125 2016 March 12
## 22126 2016 March 12
## 22127 2016 March 12
## 22128 2016 April 15
## 22129 2016 March 12
## 22130 2016 March 12
## 22131 2016 March 12
## 22132 2016 March 11
## 22133 2016 March 12
## 22134 2016 March 12
## 22135 2016 March 12
## 22136 2016 March 11
## 22137 2016 March 12
## 22138 2016 March 12
## 22139 2016 March 10
## 22140 2016 March 12
## 22141 2016 March 11
## 22142 2016 March 12
## 22143 2016 March 12
## 22144 2016 March 11
## 22145 2016 March 11
## 22146 2016 March 12
## 22147 2016 March 12
## 22148 2016 March 12
## 22149 2016 March 12
## 22150 2016 March 12
## 22151 2016 March 12
## 22152 2016 March 11
## 22153 2016 March 11
## 22154 2016 March 12
## 22155 2016 March 12
## 22156 2016 March 12
## 22157 2016 March 11
## 22158 2016 March 12
## 22159 2016 March 12
## 22160 2016 March 12
## 22161 2016 March 12
## 22162 2016 March 11
## 22163 2016 March 12
## 22164 2016 March 12
## 22165 2016 March 12
## 22166 2016 March 12
## 22167 2016 March 12
## 22168 2016 March 12
## 22169 2016 March 12
## 22170 2016 March 12
## 22171 2016 March 12
## 22172 2016 March 12
## 22173 2016 March 12
## 22174 2016 March 12
## 22175 2016 March 12
## 22176 2016 March 12
## 22177 2016 March 12
## 22178 2016 March 12
## 22179 2016 March 12
## 22180 2016 March 12
## 22181 2016 March 12
## 22182 2016 March 12
## 22183 2016 March 12
## 22184 2016 March 12
## 22185 2016 March 12
## 22186 2016 March 12
## 22187 2016 March 12
## 22188 2016 March 12
## 22189 2016 March 12
## 22190 2016 March 12
## 22191 2016 March 12
## 22192 2016 March 12
## 22193 2016 March 12
## 22194 2016 March 12
## 22195 2016 March 12
## 22196 2016 March 12
## 22197 2016 March 12
## 22198 2016 March 12
## 22199 2016 March 12
## 22200 2016 March 12
## 22201 2016 November 48
## 22202 2016 March 12
## 22203 2016 March 12
## 22204 2016 March 13
## 22205 2016 March 12
## 22206 2016 March 12
## 22207 2016 March 12
## 22208 2016 March 12
## 22209 2016 March 12
## 22210 2016 March 12
## 22211 2016 March 12
## 22212 2016 March 12
## 22213 2016 March 12
## 22214 2016 March 12
## 22215 2016 March 12
## 22216 2016 March 12
## 22217 2016 March 13
## 22218 2016 March 13
## 22219 2016 March 12
## 22220 2016 March 12
## 22221 2016 March 12
## 22222 2016 March 12
## 22223 2016 March 12
## 22224 2016 March 12
## 22225 2016 March 11
## 22226 2016 March 12
## 22227 2016 March 12
## 22228 2016 March 13
## 22229 2016 March 13
## 22230 2016 March 12
## 22231 2016 March 13
## 22232 2016 March 13
## 22233 2016 March 12
## 22234 2016 March 12
## 22235 2017 January 1
## 22236 2016 March 12
## 22237 2016 March 12
## 22238 2016 March 12
## 22239 2016 March 13
## 22240 2016 March 13
## 22241 2016 March 12
## 22242 2016 March 12
## 22243 2016 March 12
## 22244 2016 March 12
## 22245 2016 March 12
## 22246 2016 March 12
## 22247 2016 March 12
## 22248 2016 March 12
## 22249 2016 March 11
## 22250 2016 March 12
## 22251 2016 March 12
## 22252 2016 March 13
## 22253 2016 March 12
## 22254 2016 March 12
## 22255 2016 March 13
## 22256 2016 March 12
## 22257 2016 March 13
## 22258 2016 March 13
## 22259 2016 March 13
## 22260 2016 March 12
## 22261 2016 March 13
## 22262 2016 March 12
## 22263 2016 March 11
## 22264 2016 March 13
## 22265 2016 March 13
## 22266 2016 March 13
## 22267 2016 March 12
## 22268 2016 March 12
## 22269 2016 March 13
## 22270 2016 March 12
## 22271 2016 March 13
## 22272 2016 March 13
## 22273 2016 November 48
## 22274 2017 February 8
## 22275 2017 June 23
## 22276 2016 March 12
## 22277 2016 March 12
## 22278 2016 March 13
## 22279 2016 March 12
## 22280 2016 March 12
## 22281 2016 March 13
## 22282 2016 March 13
## 22283 2016 October 43
## 22284 2016 March 11
## 22285 2016 March 12
## 22286 2016 March 12
## 22287 2016 March 12
## 22288 2016 March 12
## 22289 2016 March 12
## 22290 2016 March 12
## 22291 2016 March 12
## 22292 2016 March 12
## 22293 2016 March 12
## 22294 2016 March 12
## 22295 2016 March 13
## 22296 2016 March 13
## 22297 2016 March 13
## 22298 2016 March 13
## 22299 2016 March 13
## 22300 2016 April 18
## 22301 2016 June 23
## 22302 2016 November 48
## 22303 2016 December 51
## 22304 2016 December 53
## 22305 2017 February 7
## 22306 2016 March 13
## 22307 2016 March 13
## 22308 2016 March 12
## 22309 2016 March 12
## 22310 2016 March 12
## 22311 2016 March 12
## 22312 2016 March 13
## 22313 2016 March 12
## 22314 2016 March 12
## 22315 2016 March 12
## 22316 2016 March 13
## 22317 2016 March 12
## 22318 2016 March 13
## 22319 2016 March 13
## 22320 2016 March 13
## 22321 2016 March 13
## 22322 2016 March 13
## 22323 2016 March 12
## 22324 2016 March 12
## 22325 2016 March 12
## 22326 2016 March 13
## 22327 2016 March 13
## 22328 2016 March 13
## 22329 2016 March 12
## 22330 2016 March 12
## 22331 2016 March 13
## 22332 2016 March 12
## 22333 2016 March 13
## 22334 2016 March 13
## 22335 2016 March 13
## 22336 2016 March 13
## 22337 2016 March 13
## 22338 2016 March 13
## 22339 2016 March 12
## 22340 2016 March 12
## 22341 2016 March 12
## 22342 2016 March 12
## 22343 2016 March 12
## 22344 2016 March 13
## 22345 2016 March 13
## 22346 2016 March 13
## 22347 2016 March 12
## 22348 2016 March 12
## 22349 2016 March 12
## 22350 2016 March 13
## 22351 2016 March 13
## 22352 2016 March 12
## 22353 2016 March 12
## 22354 2016 March 13
## 22355 2016 October 42
## 22356 2016 March 13
## 22357 2016 March 12
## 22358 2016 March 13
## 22359 2016 March 13
## 22360 2016 March 11
## 22361 2016 March 13
## 22362 2017 April 14
## 22363 2016 March 13
## 22364 2016 March 13
## 22365 2016 March 13
## 22366 2016 March 13
## 22367 2016 March 13
## 22368 2016 March 13
## 22369 2016 March 13
## 22370 2016 March 13
## 22371 2016 March 13
## 22372 2016 March 13
## 22373 2016 March 12
## 22374 2016 March 12
## 22375 2016 March 12
## 22376 2016 March 13
## 22377 2016 March 13
## 22378 2016 March 13
## 22379 2016 March 12
## 22380 2016 March 13
## 22381 2016 March 13
## 22382 2016 March 12
## 22383 2016 March 13
## 22384 2016 March 13
## 22385 2016 March 13
## 22386 2016 March 13
## 22387 2016 March 13
## 22388 2016 March 13
## 22389 2016 March 13
## 22390 2016 March 13
## 22391 2016 March 13
## 22392 2016 March 13
## 22393 2016 March 12
## 22394 2016 March 12
## 22395 2016 March 12
## 22396 2016 March 12
## 22397 2016 March 13
## 22398 2016 March 13
## 22399 2016 March 13
## 22400 2016 March 13
## 22401 2016 March 12
## 22402 2016 March 13
## 22403 2016 March 13
## 22404 2016 March 13
## 22405 2016 March 13
## 22406 2016 March 12
## 22407 2016 March 13
## 22408 2016 March 13
## 22409 2016 March 13
## 22410 2016 February 9
## 22411 2016 March 12
## 22412 2016 March 13
## 22413 2016 March 13
## 22414 2016 March 12
## 22415 2016 March 13
## 22416 2016 March 13
## 22417 2016 March 13
## 22418 2016 March 13
## 22419 2016 March 13
## 22420 2016 March 13
## 22421 2016 March 13
## 22422 2016 March 13
## 22423 2016 March 12
## 22424 2016 March 13
## 22425 2016 March 13
## 22426 2016 March 13
## 22427 2016 March 13
## 22428 2017 March 10
## 22429 2016 March 13
## 22430 2016 March 13
## 22431 2016 March 13
## 22432 2016 March 13
## 22433 2016 March 13
## 22434 2016 March 13
## 22435 2016 March 13
## 22436 2016 March 13
## 22437 2016 March 13
## 22438 2016 March 13
## 22439 2016 March 13
## 22440 2016 March 13
## 22441 2016 March 13
## 22442 2016 March 13
## 22443 2016 March 13
## 22444 2016 February 9
## 22445 2016 March 13
## 22446 2016 March 13
## 22447 2016 March 13
## 22448 2016 March 13
## 22449 2016 March 12
## 22450 2016 March 13
## 22451 2016 March 13
## 22452 2016 March 13
## 22453 2016 March 13
## 22454 2016 March 13
## 22455 2016 March 13
## 22456 2016 March 13
## 22457 2016 March 13
## 22458 2016 March 12
## 22459 2016 March 13
## 22460 2016 March 13
## 22461 2016 March 12
## 22462 2016 March 13
## 22463 2016 March 13
## 22464 2016 March 13
## 22465 2016 March 13
## 22466 2016 March 13
## 22467 2016 March 13
## 22468 2016 March 13
## 22469 2016 March 13
## 22470 2016 March 13
## 22471 2016 March 13
## 22472 2016 March 12
## 22473 2016 March 13
## 22474 2017 April 15
## 22475 2016 March 13
## 22476 2016 March 13
## 22477 2016 March 13
## 22478 2016 March 13
## 22479 2016 March 13
## 22480 2016 March 13
## 22481 2016 March 13
## 22482 2016 March 13
## 22483 2016 June 25
## 22484 2017 April 15
## 22485 2016 March 13
## 22486 2016 March 13
## 22487 2016 March 12
## 22488 2016 March 13
## 22489 2016 March 13
## 22490 2016 August 35
## 22491 2016 September 38
## 22492 2016 March 13
## 22493 2016 March 13
## 22494 2016 March 12
## 22495 2016 March 13
## 22496 2016 March 13
## 22497 2016 March 13
## 22498 2016 March 13
## 22499 2016 March 13
## 22500 2016 March 13
## 22501 2016 March 13
## 22502 2016 March 13
## 22503 2016 March 13
## 22504 2016 March 13
## 22505 2016 March 13
## 22506 2016 March 13
## 22507 2016 March 13
## 22508 2016 March 12
## 22509 2016 March 13
## 22510 2016 March 14
## 22511 2016 March 13
## 22512 2016 March 13
## 22513 2016 March 13
## 22514 2016 March 13
## 22515 2016 March 13
## 22516 2016 March 14
## 22517 2016 March 14
## 22518 2016 March 13
## 22519 2016 March 13
## 22520 2016 March 13
## 22521 2016 March 13
## 22522 2016 March 14
## 22523 2016 March 14
## 22524 2016 March 14
## 22525 2016 March 13
## 22526 2016 March 13
## 22527 2016 March 14
## 22528 2017 February 6
## 22529 2016 March 13
## 22530 2016 March 13
## 22531 2016 March 13
## 22532 2016 March 13
## 22533 2016 March 14
## 22534 2016 March 13
## 22535 2016 March 13
## 22536 2016 March 14
## 22537 2016 March 13
## 22538 2016 March 13
## 22539 2016 March 14
## 22540 2016 March 14
## 22541 2016 March 13
## 22542 2016 March 14
## 22543 2016 March 13
## 22544 2016 March 14
## 22545 2016 March 14
## 22546 2016 March 13
## 22547 2016 March 14
## 22548 2016 March 14
## 22549 2016 March 13
## 22550 2016 March 13
## 22551 2016 March 13
## 22552 2016 March 13
## 22553 2016 March 13
## 22554 2016 March 13
## 22555 2016 March 13
## 22556 2016 March 13
## 22557 2016 March 13
## 22558 2016 March 14
## 22559 2016 March 13
## 22560 2016 March 14
## 22561 2016 March 14
## 22562 2016 March 13
## 22563 2016 March 13
## 22564 2016 March 14
## 22565 2016 March 13
## 22566 2016 March 13
## 22567 2016 March 14
## 22568 2016 March 14
## 22569 2016 March 14
## 22570 2016 March 13
## 22571 2016 March 13
## 22572 2016 March 13
## 22573 2016 March 14
## 22574 2016 March 13
## 22575 2016 March 13
## 22576 2016 March 14
## 22577 2016 March 14
## 22578 2016 March 14
## 22579 2016 March 14
## 22580 2016 March 14
## 22581 2016 March 14
## 22582 2016 March 13
## 22583 2016 April 16
## 22584 2016 June 25
## 22585 2016 July 30
## 22586 2016 December 53
## 22587 2016 March 14
## 22588 2016 March 13
## 22589 2016 March 13
## 22590 2016 March 13
## 22591 2016 March 14
## 22592 2016 October 42
## 22593 2016 March 13
## 22594 2016 March 14
## 22595 2016 March 14
## 22596 2016 March 14
## 22597 2016 March 14
## 22598 2016 March 14
## 22599 2016 March 14
## 22600 2016 March 14
## 22601 2016 March 14
## 22602 2016 March 14
## 22603 2016 March 14
## 22604 2016 March 13
## 22605 2016 March 13
## 22606 2016 March 14
## 22607 2016 March 14
## 22608 2016 March 14
## 22609 2016 March 14
## 22610 2016 March 13
## 22611 2016 March 14
## 22612 2016 March 14
## 22613 2016 March 14
## 22614 2016 March 14
## 22615 2016 March 14
## 22616 2016 March 14
## 22617 2016 March 14
## 22618 2016 March 14
## 22619 2016 March 14
## 22620 2016 March 14
## 22621 2016 March 14
## 22622 2016 March 14
## 22623 2016 March 14
## 22624 2016 March 14
## 22625 2016 March 14
## 22626 2016 March 14
## 22627 2016 March 14
## 22628 2016 March 14
## 22629 2016 March 14
## 22630 2016 March 14
## 22631 2016 March 14
## 22632 2016 March 14
## 22633 2016 March 14
## 22634 2016 March 14
## 22635 2016 March 14
## 22636 2016 March 13
## 22637 2016 March 14
## 22638 2016 March 14
## 22639 2016 March 14
## 22640 2016 March 14
## 22641 2017 June 23
## 22642 2016 March 14
## 22643 2016 March 13
## 22644 2016 March 14
## 22645 2016 March 14
## 22646 2016 March 14
## 22647 2016 March 14
## 22648 2016 March 14
## 22649 2016 March 14
## 22650 2016 March 14
## 22651 2016 March 13
## 22652 2016 March 14
## 22653 2016 March 14
## 22654 2016 March 14
## 22655 2016 March 14
## 22656 2016 March 13
## 22657 2016 March 14
## 22658 2016 March 14
## 22659 2016 March 14
## 22660 2016 March 13
## 22661 2016 March 14
## 22662 2016 March 14
## 22663 2016 March 14
## 22664 2016 March 12
## 22665 2016 April 14
## 22666 2016 March 14
## 22667 2016 March 14
## 22668 2016 April 18
## 22669 2016 March 14
## 22670 2016 March 14
## 22671 2016 March 14
## 22672 2016 March 14
## 22673 2016 March 14
## 22674 2016 March 14
## 22675 2016 March 14
## 22676 2016 March 14
## 22677 2016 March 13
## 22678 2016 March 14
## 22679 2016 March 14
## 22680 2016 March 14
## 22681 2016 April 14
## 22682 2016 March 13
## 22683 2016 March 13
## 22684 2016 March 14
## 22685 2016 March 13
## 22686 2016 March 14
## 22687 2016 April 14
## 22688 2016 April 14
## 22689 2016 April 14
## 22690 2016 April 14
## 22691 2016 March 14
## 22692 2016 March 14
## 22693 2016 March 14
## 22694 2016 March 14
## 22695 2016 April 14
## 22696 2016 April 14
## 22697 2016 March 14
## 22698 2016 March 14
## 22699 2016 March 14
## 22700 2016 March 14
## 22701 2016 March 14
## 22702 2016 March 14
## 22703 2016 April 14
## 22704 2016 April 14
## 22705 2016 April 14
## 22706 2016 April 14
## 22707 2016 April 14
## 22708 2016 March 14
## 22709 2016 April 14
## 22710 2016 March 14
## 22711 2016 March 14
## 22712 2016 April 15
## 22713 2016 March 14
## 22714 2016 March 14
## 22715 2016 March 14
## 22716 2016 March 14
## 22717 2016 March 14
## 22718 2016 March 14
## 22719 2016 March 14
## 22720 2016 March 14
## 22721 2016 March 14
## 22722 2016 March 14
## 22723 2016 March 14
## 22724 2016 March 14
## 22725 2016 March 14
## 22726 2016 March 14
## 22727 2016 March 14
## 22728 2016 March 14
## 22729 2016 March 14
## 22730 2016 March 14
## 22731 2016 March 14
## 22732 2016 March 14
## 22733 2016 March 14
## 22734 2016 March 14
## 22735 2016 March 14
## 22736 2016 March 14
## 22737 2016 March 14
## 22738 2016 March 14
## 22739 2016 March 14
## 22740 2016 March 14
## 22741 2016 April 14
## 22742 2017 March 13
## 22743 2016 March 14
## 22744 2016 March 14
## 22745 2016 April 14
## 22746 2016 April 15
## 22747 2016 March 14
## 22748 2016 March 14
## 22749 2017 March 9
## 22750 2016 March 14
## 22751 2016 April 15
## 22752 2016 April 15
## 22753 2016 March 14
## 22754 2016 April 14
## 22755 2016 April 15
## 22756 2016 April 15
## 22757 2016 April 14
## 22758 2016 April 15
## 22759 2016 April 15
## 22760 2016 April 15
## 22761 2016 March 14
## 22762 2016 March 14
## 22763 2016 March 14
## 22764 2016 April 15
## 22765 2016 April 15
## 22766 2016 March 14
## 22767 2016 April 15
## 22768 2016 April 15
## 22769 2016 April 15
## 22770 2016 April 15
## 22771 2016 March 13
## 22772 2016 April 15
## 22773 2016 April 15
## 22774 2016 April 15
## 22775 2016 April 15
## 22776 2016 April 15
## 22777 2016 April 15
## 22778 2016 April 15
## 22779 2016 April 15
## 22780 2016 April 15
## 22781 2016 April 15
## 22782 2016 April 14
## 22783 2016 April 15
## 22784 2016 April 15
## 22785 2016 April 15
## 22786 2016 March 14
## 22787 2016 April 15
## 22788 2016 April 15
## 22789 2016 April 15
## 22790 2016 April 15
## 22791 2016 April 15
## 22792 2016 April 15
## 22793 2016 April 15
## 22794 2016 April 15
## 22795 2016 April 15
## 22796 2016 April 15
## 22797 2016 April 15
## 22798 2016 April 15
## 22799 2016 April 15
## 22800 2017 February 5
## 22801 2016 April 15
## 22802 2016 April 14
## 22803 2016 April 14
## 22804 2016 April 15
## 22805 2016 April 14
## 22806 2016 April 15
## 22807 2016 April 15
## 22808 2016 April 15
## 22809 2016 April 15
## 22810 2016 April 15
## 22811 2016 April 15
## 22812 2016 April 15
## 22813 2016 April 14
## 22814 2016 April 15
## 22815 2016 April 15
## 22816 2016 April 15
## 22817 2016 April 15
## 22818 2016 April 15
## 22819 2016 April 15
## 22820 2016 April 15
## 22821 2016 April 15
## 22822 2016 April 15
## 22823 2016 April 15
## 22824 2016 April 15
## 22825 2016 April 15
## 22826 2016 April 15
## 22827 2016 April 15
## 22828 2016 April 15
## 22829 2016 April 14
## 22830 2016 April 15
## 22831 2016 April 15
## 22832 2016 April 15
## 22833 2016 April 15
## 22834 2016 April 14
## 22835 2016 April 15
## 22836 2016 April 15
## 22837 2016 April 15
## 22838 2016 April 15
## 22839 2016 April 15
## 22840 2016 April 15
## 22841 2016 March 14
## 22842 2016 April 15
## 22843 2016 April 15
## 22844 2016 April 15
## 22845 2016 April 15
## 22846 2016 April 15
## 22847 2016 April 15
## 22848 2016 April 15
## 22849 2016 April 15
## 22850 2016 April 15
## 22851 2016 April 15
## 22852 2016 April 15
## 22853 2016 April 15
## 22854 2016 April 15
## 22855 2016 April 15
## 22856 2016 April 15
## 22857 2016 April 14
## 22858 2016 April 14
## 22859 2016 April 15
## 22860 2016 April 15
## 22861 2016 April 15
## 22862 2016 April 15
## 22863 2016 April 15
## 22864 2016 November 46
## 22865 2016 April 15
## 22866 2016 April 15
## 22867 2016 April 15
## 22868 2016 April 15
## 22869 2016 April 15
## 22870 2016 April 15
## 22871 2016 April 15
## 22872 2016 April 15
## 22873 2016 April 15
## 22874 2016 April 15
## 22875 2016 April 15
## 22876 2016 April 15
## 22877 2016 April 15
## 22878 2016 April 14
## 22879 2016 April 14
## 22880 2016 April 15
## 22881 2016 April 15
## 22882 2016 April 15
## 22883 2016 April 15
## 22884 2016 April 15
## 22885 2016 April 15
## 22886 2016 April 15
## 22887 2016 April 15
## 22888 2016 April 15
## 22889 2016 April 15
## 22890 2016 April 15
## 22891 2016 April 15
## 22892 2016 April 15
## 22893 2016 April 15
## 22894 2016 April 15
## 22895 2016 April 15
## 22896 2016 April 15
## 22897 2016 April 15
## 22898 2016 April 15
## 22899 2016 April 15
## 22900 2016 April 15
## 22901 2016 April 15
## 22902 2016 April 15
## 22903 2016 April 15
## 22904 2016 April 15
## 22905 2016 April 15
## 22906 2016 April 15
## 22907 2016 April 15
## 22908 2016 April 15
## 22909 2016 April 14
## 22910 2016 April 15
## 22911 2016 April 15
## 22912 2016 April 15
## 22913 2016 April 15
## 22914 2016 April 15
## 22915 2016 April 15
## 22916 2016 April 15
## 22917 2016 April 15
## 22918 2016 April 15
## 22919 2016 April 15
## 22920 2016 April 15
## 22921 2016 April 15
## 22922 2016 April 15
## 22923 2016 April 15
## 22924 2016 April 15
## 22925 2016 April 15
## 22926 2016 April 15
## 22927 2016 April 15
## 22928 2016 April 15
## 22929 2016 April 15
## 22930 2016 April 15
## 22931 2016 April 15
## 22932 2016 April 15
## 22933 2016 April 15
## 22934 2016 April 14
## 22935 2016 April 14
## 22936 2016 April 15
## 22937 2016 April 15
## 22938 2016 April 15
## 22939 2016 December 53
## 22940 2016 April 15
## 22941 2016 April 16
## 22942 2016 April 15
## 22943 2016 April 15
## 22944 2016 April 16
## 22945 2016 April 16
## 22946 2016 April 15
## 22947 2016 April 15
## 22948 2016 April 15
## 22949 2016 April 15
## 22950 2016 April 16
## 22951 2016 April 16
## 22952 2016 April 15
## 22953 2016 April 15
## 22954 2016 April 16
## 22955 2016 March 14
## 22956 2016 April 16
## 22957 2016 April 15
## 22958 2016 April 15
## 22959 2016 April 15
## 22960 2016 April 15
## 22961 2016 April 15
## 22962 2016 April 15
## 22963 2016 April 16
## 22964 2016 April 15
## 22965 2016 April 15
## 22966 2016 April 16
## 22967 2016 April 15
## 22968 2016 April 15
## 22969 2016 April 16
## 22970 2016 April 16
## 22971 2016 April 16
## 22972 2016 April 16
## 22973 2016 April 16
## 22974 2016 April 15
## 22975 2016 April 15
## 22976 2016 April 15
## 22977 2016 April 16
## 22978 2016 April 16
## 22979 2016 April 16
## 22980 2016 April 16
## 22981 2016 April 16
## 22982 2016 April 16
## 22983 2016 April 15
## 22984 2016 April 15
## 22985 2016 April 15
## 22986 2016 April 15
## 22987 2016 April 15
## 22988 2016 April 15
## 22989 2016 April 15
## 22990 2016 April 16
## 22991 2016 April 16
## 22992 2016 April 15
## 22993 2016 April 16
## 22994 2016 April 15
## 22995 2016 April 15
## 22996 2016 April 15
## 22997 2016 April 16
## 22998 2016 April 16
## 22999 2016 April 15
## 23000 2017 February 5
## 23001 2016 April 15
## 23002 2016 April 15
## 23003 2016 April 16
## 23004 2016 April 16
## 23005 2016 April 16
## 23006 2016 April 15
## 23007 2016 April 16
## 23008 2016 April 15
## 23009 2016 April 15
## 23010 2016 April 15
## 23011 2016 April 15
## 23012 2016 April 16
## 23013 2016 April 16
## 23014 2016 April 16
## 23015 2016 April 16
## 23016 2016 April 15
## 23017 2016 April 16
## 23018 2017 January 4
## 23019 2016 April 16
## 23020 2016 April 15
## 23021 2016 April 15
## 23022 2016 April 16
## 23023 2016 April 16
## 23024 2016 April 16
## 23025 2016 April 16
## 23026 2016 April 15
## 23027 2016 April 15
## 23028 2016 April 16
## 23029 2016 April 15
## 23030 2016 April 16
## 23031 2016 May 20
## 23032 2016 May 22
## 23033 2016 June 23
## 23034 2016 June 27
## 23035 2016 July 28
## 23036 2016 July 31
## 23037 2016 August 33
## 23038 2016 August 36
## 23039 2016 September 38
## 23040 2016 September 40
## 23041 2016 October 43
## 23042 2016 November 45
## 23043 2016 November 48
## 23044 2016 December 50
## 23045 2017 March 9
## 23046 2017 March 11
## 23047 2017 March 13
## 23048 2017 April 16
## 23049 2016 April 15
## 23050 2016 April 15
## 23051 2016 April 16
## 23052 2016 April 16
## 23053 2016 April 16
## 23054 2016 April 16
## 23055 2016 April 15
## 23056 2016 April 16
## 23057 2016 April 16
## 23058 2016 April 16
## 23059 2016 April 16
## 23060 2016 April 16
## 23061 2016 April 16
## 23062 2016 April 15
## 23063 2016 April 16
## 23064 2016 April 16
## 23065 2016 April 16
## 23066 2016 April 15
## 23067 2016 April 15
## 23068 2016 April 16
## 23069 2016 April 16
## 23070 2016 April 15
## 23071 2017 April 15
## 23072 2016 April 15
## 23073 2016 April 15
## 23074 2016 April 16
## 23075 2016 April 16
## 23076 2016 April 16
## 23077 2016 April 16
## 23078 2016 April 16
## 23079 2017 February 8
## 23080 2016 April 16
## 23081 2016 November 48
## 23082 2017 February 6
## 23083 2016 April 16
## 23084 2016 April 15
## 23085 2016 April 15
## 23086 2016 April 16
## 23087 2016 April 16
## 23088 2016 April 15
## 23089 2016 April 16
## 23090 2016 April 16
## 23091 2016 April 16
## 23092 2016 April 16
## 23093 2016 April 15
## 23094 2016 April 16
## 23095 2016 April 17
## 23096 2016 November 47
## 23097 2016 December 52
## 23098 2017 February 8
## 23099 2016 April 16
## 23100 2016 April 16
## 23101 2016 April 16
## 23102 2016 April 16
## 23103 2016 April 16
## 23104 2016 April 16
## 23105 2016 April 16
## 23106 2016 April 16
## 23107 2016 April 15
## 23108 2016 April 15
## 23109 2016 April 15
## 23110 2016 April 15
## 23111 2016 April 15
## 23112 2016 April 15
## 23113 2016 April 16
## 23114 2016 April 16
## 23115 2016 April 16
## 23116 2016 April 16
## 23117 2016 April 16
## 23118 2016 April 16
## 23119 2016 April 16
## 23120 2016 April 16
## 23121 2016 April 16
## 23122 2016 April 15
## 23123 2016 April 16
## 23124 2016 April 16
## 23125 2016 April 16
## 23126 2016 April 15
## 23127 2016 April 15
## 23128 2016 April 16
## 23129 2016 April 15
## 23130 2016 April 15
## 23131 2016 April 16
## 23132 2016 April 16
## 23133 2016 April 15
## 23134 2016 April 16
## 23135 2016 April 16
## 23136 2016 April 15
## 23137 2016 April 15
## 23138 2016 April 15
## 23139 2016 April 16
## 23140 2016 April 15
## 23141 2016 April 16
## 23142 2016 April 15
## 23143 2016 April 15
## 23144 2017 May 19
## 23145 2016 April 15
## 23146 2016 April 15
## 23147 2016 April 15
## 23148 2016 April 15
## 23149 2016 April 15
## 23150 2016 April 15
## 23151 2016 April 15
## 23152 2016 April 15
## 23153 2016 April 15
## 23154 2016 April 15
## 23155 2016 April 15
## 23156 2016 April 15
## 23157 2016 April 16
## 23158 2016 April 16
## 23159 2016 April 16
## 23160 2016 April 16
## 23161 2016 April 16
## 23162 2016 April 16
## 23163 2016 April 16
## 23164 2016 April 16
## 23165 2016 April 16
## 23166 2016 April 16
## 23167 2016 April 16
## 23168 2015 October 41
## 23169 2016 April 16
## 23170 2016 April 17
## 23171 2016 October 42
## 23172 2017 March 12
## 23173 2017 April 16
## 23174 2016 April 15
## 23175 2016 April 15
## 23176 2016 April 16
## 23177 2016 April 15
## 23178 2016 April 15
## 23179 2016 April 16
## 23180 2016 April 16
## 23181 2016 April 16
## 23182 2016 April 16
## 23183 2016 April 16
## 23184 2016 April 16
## 23185 2016 April 16
## 23186 2016 April 16
## 23187 2016 April 16
## 23188 2016 April 15
## 23189 2016 April 16
## 23190 2016 April 16
## 23191 2016 April 16
## 23192 2016 April 16
## 23193 2016 April 15
## 23194 2016 April 16
## 23195 2016 April 16
## 23196 2016 April 16
## 23197 2016 April 16
## 23198 2016 April 16
## 23199 2016 April 15
## 23200 2016 April 16
## 23201 2016 April 16
## 23202 2016 April 16
## 23203 2016 April 16
## 23204 2016 April 16
## 23205 2016 April 16
## 23206 2016 April 17
## 23207 2016 April 16
## 23208 2016 April 16
## 23209 2016 April 17
## 23210 2016 April 16
## 23211 2016 April 16
## 23212 2016 April 16
## 23213 2016 April 17
## 23214 2016 April 17
## 23215 2016 April 16
## 23216 2016 April 16
## 23217 2016 April 16
## 23218 2016 April 16
## 23219 2016 April 16
## 23220 2016 April 17
## 23221 2016 April 16
## 23222 2016 April 16
## 23223 2016 April 16
## 23224 2016 April 16
## 23225 2016 April 17
## 23226 2016 April 17
## 23227 2016 April 17
## 23228 2016 April 17
## 23229 2016 April 17
## 23230 2016 April 17
## 23231 2016 April 16
## 23232 2016 April 16
## 23233 2016 April 17
## 23234 2016 April 16
## 23235 2016 April 17
## 23236 2016 April 17
## 23237 2016 April 17
## 23238 2016 May 19
## 23239 2016 November 48
## 23240 2016 December 52
## 23241 2017 January 2
## 23242 2017 February 6
## 23243 2017 February 9
## 23244 2016 April 16
## 23245 2016 April 17
## 23246 2016 April 17
## 23247 2016 April 17
## 23248 2016 April 17
## 23249 2016 April 17
## 23250 2016 April 17
## 23251 2016 April 17
## 23252 2016 April 17
## 23253 2016 April 17
## 23254 2016 April 17
## 23255 2016 April 17
## 23256 2016 April 17
## 23257 2016 April 17
## 23258 2016 April 17
## 23259 2016 April 17
## 23260 2016 April 17
## 23261 2016 April 17
## 23262 2016 April 17
## 23263 2016 April 17
## 23264 2016 April 17
## 23265 2016 April 17
## 23266 2016 April 17
## 23267 2016 April 17
## 23268 2016 April 17
## 23269 2016 April 17
## 23270 2016 April 17
## 23271 2016 April 17
## 23272 2016 April 17
## 23273 2016 April 17
## 23274 2016 April 16
## 23275 2016 April 16
## 23276 2016 April 17
## 23277 2016 April 17
## 23278 2016 April 17
## 23279 2016 April 16
## 23280 2016 April 16
## 23281 2016 April 15
## 23282 2016 April 16
## 23283 2016 April 16
## 23284 2016 April 17
## 23285 2016 April 17
## 23286 2016 April 17
## 23287 2016 April 16
## 23288 2016 April 17
## 23289 2016 April 17
## 23290 2016 April 17
## 23291 2016 April 17
## 23292 2016 April 16
## 23293 2016 April 17
## 23294 2016 April 17
## 23295 2016 April 17
## 23296 2016 April 17
## 23297 2016 April 16
## 23298 2016 April 16
## 23299 2016 April 17
## 23300 2016 May 23
## 23301 2016 April 17
## 23302 2016 April 17
## 23303 2016 April 16
## 23304 2016 April 16
## 23305 2016 April 17
## 23306 2016 April 17
## 23307 2016 April 17
## 23308 2016 April 17
## 23309 2016 April 16
## 23310 2016 April 16
## 23311 2016 April 17
## 23312 2016 April 17
## 23313 2016 April 17
## 23314 2016 April 16
## 23315 2016 April 16
## 23316 2016 April 17
## 23317 2016 April 17
## 23318 2016 April 17
## 23319 2016 April 17
## 23320 2016 April 17
## 23321 2016 April 17
## 23322 2016 April 16
## 23323 2016 April 16
## 23324 2016 April 17
## 23325 2016 April 17
## 23326 2016 April 17
## 23327 2016 April 16
## 23328 2016 April 15
## 23329 2016 April 17
## 23330 2016 April 17
## 23331 2016 April 17
## 23332 2016 April 17
## 23333 2016 April 17
## 23334 2016 April 17
## 23335 2016 April 15
## 23336 2016 April 16
## 23337 2016 April 17
## 23338 2016 April 17
## 23339 2016 April 16
## 23340 2016 April 17
## 23341 2016 April 17
## 23342 2016 April 16
## 23343 2016 April 17
## 23344 2016 April 17
## 23345 2016 April 16
## 23346 2016 April 17
## 23347 2016 April 17
## 23348 2016 April 17
## 23349 2016 April 17
## 23350 2016 April 17
## 23351 2016 April 17
## 23352 2016 April 17
## 23353 2016 April 17
## 23354 2016 April 17
## 23355 2016 April 17
## 23356 2016 April 16
## 23357 2016 April 17
## 23358 2016 April 17
## 23359 2016 April 17
## 23360 2016 April 17
## 23361 2016 April 17
## 23362 2016 April 17
## 23363 2016 April 17
## 23364 2017 April 17
## 23365 2016 April 16
## 23366 2016 April 17
## 23367 2016 April 17
## 23368 2016 April 16
## 23369 2016 April 17
## 23370 2016 April 17
## 23371 2016 April 17
## 23372 2016 April 17
## 23373 2016 April 17
## 23374 2016 April 17
## 23375 2016 April 17
## 23376 2016 April 17
## 23377 2016 April 17
## 23378 2016 April 17
## 23379 2016 April 17
## 23380 2016 April 17
## 23381 2016 April 17
## 23382 2016 April 17
## 23383 2016 April 17
## 23384 2016 April 17
## 23385 2016 April 17
## 23386 2016 April 17
## 23387 2016 April 17
## 23388 2016 April 17
## 23389 2016 April 17
## 23390 2016 April 18
## 23391 2016 April 17
## 23392 2016 April 17
## 23393 2016 April 17
## 23394 2016 April 18
## 23395 2016 April 17
## 23396 2016 April 17
## 23397 2016 April 18
## 23398 2016 April 17
## 23399 2016 April 17
## 23400 2016 April 17
## 23401 2016 April 17
## 23402 2016 April 17
## 23403 2016 April 17
## 23404 2016 April 17
## 23405 2016 April 17
## 23406 2016 April 17
## 23407 2016 April 17
## 23408 2016 April 17
## 23409 2016 April 17
## 23410 2016 July 31
## 23411 2017 July 30
## 23412 2016 April 17
## 23413 2016 April 17
## 23414 2016 April 17
## 23415 2016 April 17
## 23416 2016 April 17
## 23417 2016 April 17
## 23418 2016 April 18
## 23419 2016 April 18
## 23420 2016 April 17
## 23421 2016 April 17
## 23422 2016 April 17
## 23423 2016 April 17
## 23424 2016 April 18
## 23425 2016 April 18
## 23426 2017 May 18
## 23427 2016 April 17
## 23428 2016 April 17
## 23429 2016 April 17
## 23430 2016 April 17
## 23431 2016 April 17
## 23432 2016 April 17
## 23433 2016 April 17
## 23434 2016 April 18
## 23435 2016 April 17
## 23436 2016 April 17
## 23437 2016 April 17
## 23438 2016 April 18
## 23439 2016 April 18
## 23440 2016 April 17
## 23441 2016 April 17
## 23442 2016 April 17
## 23443 2016 April 17
## 23444 2016 April 17
## 23445 2016 April 17
## 23446 2016 April 17
## 23447 2016 April 17
## 23448 2016 April 17
## 23449 2016 April 17
## 23450 2016 April 17
## 23451 2016 April 17
## 23452 2016 April 17
## 23453 2016 April 18
## 23454 2016 April 17
## 23455 2016 April 17
## 23456 2016 April 18
## 23457 2016 April 17
## 23458 2016 April 17
## 23459 2016 April 17
## 23460 2016 April 17
## 23461 2016 April 17
## 23462 2016 April 17
## 23463 2016 April 17
## 23464 2016 April 17
## 23465 2016 April 18
## 23466 2016 April 17
## 23467 2016 April 17
## 23468 2016 April 17
## 23469 2016 April 17
## 23470 2016 April 17
## 23471 2016 April 17
## 23472 2016 April 17
## 23473 2016 April 17
## 23474 2016 April 17
## 23475 2016 April 17
## 23476 2016 April 17
## 23477 2016 April 18
## 23478 2016 April 17
## 23479 2016 April 18
## 23480 2016 April 18
## 23481 2016 April 16
## 23482 2016 April 17
## 23483 2016 April 18
## 23484 2016 April 17
## 23485 2016 April 17
## 23486 2016 April 18
## 23487 2016 April 17
## 23488 2016 April 18
## 23489 2016 April 18
## 23490 2016 April 18
## 23491 2016 October 44
## 23492 2017 January 1
## 23493 2016 April 18
## 23494 2016 April 18
## 23495 2016 April 18
## 23496 2016 April 18
## 23497 2016 April 17
## 23498 2016 April 17
## 23499 2016 April 18
## 23500 2016 April 17
## 23501 2016 April 17
## 23502 2016 April 18
## 23503 2016 April 18
## 23504 2016 April 18
## 23505 2016 April 18
## 23506 2016 April 18
## 23507 2016 April 18
## 23508 2016 April 18
## 23509 2016 April 18
## 23510 2016 April 18
## 23511 2016 April 18
## 23512 2016 April 18
## 23513 2016 April 18
## 23514 2016 April 17
## 23515 2016 April 18
## 23516 2016 April 18
## 23517 2016 April 17
## 23518 2016 April 18
## 23519 2016 April 18
## 23520 2016 April 18
## 23521 2016 April 17
## 23522 2016 April 18
## 23523 2016 April 16
## 23524 2016 April 18
## 23525 2016 April 18
## 23526 2016 April 18
## 23527 2016 April 18
## 23528 2016 April 18
## 23529 2016 May 23
## 23530 2016 October 43
## 23531 2016 April 18
## 23532 2016 April 18
## 23533 2016 April 18
## 23534 2016 April 18
## 23535 2016 April 18
## 23536 2016 April 17
## 23537 2016 April 18
## 23538 2016 April 18
## 23539 2016 April 18
## 23540 2016 April 18
## 23541 2016 April 18
## 23542 2016 April 18
## 23543 2017 February 5
## 23544 2016 April 18
## 23545 2016 April 18
## 23546 2016 April 18
## 23547 2016 April 17
## 23548 2016 April 17
## 23549 2016 April 18
## 23550 2016 April 18
## 23551 2016 April 17
## 23552 2016 April 18
## 23553 2016 April 16
## 23554 2016 April 18
## 23555 2016 April 18
## 23556 2016 April 18
## 23557 2016 April 17
## 23558 2016 April 18
## 23559 2016 April 18
## 23560 2016 April 18
## 23561 2016 April 18
## 23562 2016 April 18
## 23563 2016 April 18
## 23564 2016 April 18
## 23565 2016 April 18
## 23566 2016 April 17
## 23567 2016 April 18
## 23568 2016 April 18
## 23569 2017 June 23
## 23570 2017 June 26
## 23571 2016 April 18
## 23572 2016 April 18
## 23573 2016 April 18
## 23574 2016 April 18
## 23575 2016 November 49
## 23576 2017 March 12
## 23577 2016 April 18
## 23578 2016 April 18
## 23579 2016 April 17
## 23580 2016 April 18
## 23581 2016 April 18
## 23582 2016 November 47
## 23583 2017 January 4
## 23584 2016 April 18
## 23585 2016 April 18
## 23586 2016 October 42
## 23587 2017 May 21
## 23588 2016 April 18
## 23589 2016 April 18
## 23590 2017 April 17
## 23591 2016 April 18
## 23592 2016 April 18
## 23593 2016 April 18
## 23594 2016 April 18
## 23595 2016 April 18
## 23596 2016 April 18
## 23597 2016 April 18
## 23598 2016 April 17
## 23599 2016 April 18
## 23600 2016 April 18
## 23601 2016 April 18
## 23602 2016 April 18
## 23603 2016 April 17
## 23604 2016 April 18
## 23605 2016 April 18
## 23606 2016 April 18
## 23607 2016 April 18
## 23608 2016 April 18
## 23609 2016 April 18
## 23610 2016 April 16
## 23611 2016 April 18
## 23612 2016 April 18
## 23613 2016 April 18
## 23614 2016 April 18
## 23615 2016 April 18
## 23616 2016 April 18
## 23617 2016 April 18
## 23618 2016 April 18
## 23619 2016 April 18
## 23620 2016 April 18
## 23621 2016 April 17
## 23622 2016 April 17
## 23623 2016 April 18
## 23624 2016 April 18
## 23625 2016 April 18
## 23626 2016 April 18
## 23627 2016 April 18
## 23628 2016 April 18
## 23629 2016 April 18
## 23630 2016 April 18
## 23631 2016 April 18
## 23632 2016 April 18
## 23633 2016 April 18
## 23634 2016 April 18
## 23635 2016 April 18
## 23636 2017 May 18
## 23637 2016 April 18
## 23638 2016 April 18
## 23639 2016 April 18
## 23640 2016 April 17
## 23641 2016 April 17
## 23642 2016 April 17
## 23643 2016 April 18
## 23644 2016 April 18
## 23645 2016 April 18
## 23646 2016 April 18
## 23647 2016 April 18
## 23648 2016 April 18
## 23649 2016 April 18
## 23650 2016 April 18
## 23651 2016 April 18
## 23652 2016 April 18
## 23653 2016 April 18
## 23654 2016 April 18
## 23655 2016 April 18
## 23656 2016 April 17
## 23657 2016 April 18
## 23658 2016 April 18
## 23659 2016 April 18
## 23660 2016 April 18
## 23661 2016 April 18
## 23662 2016 April 18
## 23663 2016 April 17
## 23664 2016 April 17
## 23665 2016 April 18
## 23666 2016 April 18
## 23667 2016 April 18
## 23668 2016 April 17
## 23669 2016 April 18
## 23670 2016 April 18
## 23671 2016 April 18
## 23672 2016 April 18
## 23673 2016 April 18
## 23674 2016 April 18
## 23675 2016 April 18
## 23676 2016 April 18
## 23677 2016 April 18
## 23678 2016 October 43
## 23679 2016 April 18
## 23680 2016 April 18
## 23681 2016 April 18
## 23682 2016 April 18
## 23683 2016 April 18
## 23684 2016 April 18
## 23685 2016 April 18
## 23686 2016 April 18
## 23687 2016 April 18
## 23688 2016 April 18
## 23689 2016 April 18
## 23690 2016 April 18
## 23691 2016 May 19
## 23692 2016 April 18
## 23693 2016 April 18
## 23694 2016 April 18
## 23695 2016 April 18
## 23696 2016 April 18
## 23697 2016 April 18
## 23698 2016 April 18
## 23699 2016 April 18
## 23700 2016 April 18
## 23701 2016 April 18
## 23702 2016 April 18
## 23703 2016 April 18
## 23704 2016 April 18
## 23705 2016 April 18
## 23706 2016 April 18
## 23707 2016 April 18
## 23708 2016 April 18
## 23709 2016 April 18
## 23710 2016 April 18
## 23711 2016 April 18
## 23712 2016 April 18
## 23713 2016 April 18
## 23714 2016 April 18
## 23715 2016 April 18
## 23716 2016 April 18
## 23717 2016 April 18
## 23718 2016 April 18
## 23719 2016 April 18
## 23720 2016 April 18
## 23721 2016 April 18
## 23722 2016 April 18
## 23723 2016 April 18
## 23724 2016 April 18
## 23725 2016 April 18
## 23726 2016 April 18
## 23727 2016 April 18
## 23728 2016 April 18
## 23729 2016 April 18
## 23730 2016 November 45
## 23731 2016 April 18
## 23732 2016 April 18
## 23733 2016 April 18
## 23734 2016 April 18
## 23735 2016 April 18
## 23736 2016 April 18
## 23737 2016 May 19
## 23738 2016 May 19
## 23739 2016 April 18
## 23740 2016 April 18
## 23741 2016 April 18
## 23742 2016 April 18
## 23743 2016 April 18
## 23744 2016 April 18
## 23745 2016 April 18
## 23746 2016 April 18
## 23747 2016 April 18
## 23748 2016 May 19
## 23749 2016 May 19
## 23750 2016 April 18
## 23751 2016 April 18
## 23752 2016 April 18
## 23753 2016 April 18
## 23754 2016 April 18
## 23755 2016 April 18
## 23756 2016 April 18
## 23757 2016 April 18
## 23758 2016 April 18
## 23759 2016 April 18
## 23760 2016 May 19
## 23761 2016 April 18
## 23762 2016 April 18
## 23763 2016 April 18
## 23764 2016 April 18
## 23765 2016 May 19
## 23766 2016 May 19
## 23767 2016 May 19
## 23768 2016 May 19
## 23769 2016 May 19
## 23770 2016 May 19
## 23771 2016 May 19
## 23772 2016 May 19
## 23773 2016 April 18
## 23774 2016 May 19
## 23775 2016 May 19
## 23776 2016 May 19
## 23777 2016 April 18
## 23778 2016 April 18
## 23779 2016 April 18
## 23780 2016 May 19
## 23781 2016 April 18
## 23782 2016 April 18
## 23783 2016 April 18
## 23784 2016 May 19
## 23785 2016 April 18
## 23786 2016 May 19
## 23787 2016 June 26
## 23788 2016 November 48
## 23789 2017 February 6
## 23790 2017 July 28
## 23791 2016 May 19
## 23792 2016 May 22
## 23793 2016 May 19
## 23794 2016 April 18
## 23795 2016 May 19
## 23796 2016 May 19
## 23797 2016 May 19
## 23798 2016 May 19
## 23799 2016 May 19
## 23800 2016 May 21
## 23801 2016 June 23
## 23802 2016 June 26
## 23803 2016 July 29
## 23804 2016 August 34
## 23805 2016 September 40
## 23806 2017 June 24
## 23807 2017 July 28
## 23808 2017 August 34
## 23809 2016 April 18
## 23810 2016 April 18
## 23811 2016 May 19
## 23812 2016 April 18
## 23813 2016 April 18
## 23814 2017 July 29
## 23815 2016 April 18
## 23816 2016 May 19
## 23817 2016 May 19
## 23818 2016 April 18
## 23819 2016 April 18
## 23820 2016 May 19
## 23821 2016 May 19
## 23822 2016 May 19
## 23823 2016 May 19
## 23824 2016 May 19
## 23825 2016 May 19
## 23826 2016 May 19
## 23827 2016 May 19
## 23828 2016 May 19
## 23829 2016 May 19
## 23830 2016 May 19
## 23831 2016 May 19
## 23832 2016 May 19
## 23833 2016 May 19
## 23834 2016 May 19
## 23835 2016 May 19
## 23836 2016 May 19
## 23837 2016 May 19
## 23838 2016 May 19
## 23839 2016 June 26
## 23840 2016 June 26
## 23841 2016 May 19
## 23842 2016 May 19
## 23843 2016 May 19
## 23844 2016 May 19
## 23845 2016 May 19
## 23846 2016 April 18
## 23847 2016 April 18
## 23848 2016 April 18
## 23849 2016 April 18
## 23850 2016 April 18
## 23851 2016 April 18
## 23852 2016 May 19
## 23853 2016 April 18
## 23854 2016 May 19
## 23855 2016 May 19
## 23856 2016 May 19
## 23857 2016 April 18
## 23858 2016 May 19
## 23859 2016 May 19
## 23860 2016 May 19
## 23861 2016 April 18
## 23862 2016 April 18
## 23863 2016 May 19
## 23864 2016 May 19
## 23865 2016 May 19
## 23866 2016 May 19
## 23867 2016 May 19
## 23868 2016 May 19
## 23869 2016 June 26
## 23870 2016 June 26
## 23871 2016 April 18
## 23872 2016 April 18
## 23873 2016 May 19
## 23874 2016 April 18
## 23875 2016 April 18
## 23876 2016 April 18
## 23877 2016 May 19
## 23878 2016 April 18
## 23879 2016 April 18
## 23880 2016 April 18
## 23881 2016 April 18
## 23882 2016 April 18
## 23883 2016 April 18
## 23884 2016 April 18
## 23885 2016 May 19
## 23886 2016 May 19
## 23887 2016 April 18
## 23888 2016 April 18
## 23889 2016 May 19
## 23890 2016 April 18
## 23891 2016 April 18
## 23892 2016 April 18
## 23893 2016 April 18
## 23894 2016 April 18
## 23895 2016 May 19
## 23896 2016 May 19
## 23897 2016 April 18
## 23898 2016 May 19
## 23899 2016 May 19
## 23900 2016 May 19
## 23901 2016 May 19
## 23902 2016 May 19
## 23903 2016 May 19
## 23904 2016 May 19
## 23905 2016 May 19
## 23906 2016 April 18
## 23907 2016 April 18
## 23908 2016 May 19
## 23909 2016 April 18
## 23910 2016 April 18
## 23911 2016 May 19
## 23912 2016 April 18
## 23913 2016 April 18
## 23914 2016 April 18
## 23915 2016 May 19
## 23916 2016 May 19
## 23917 2016 May 19
## 23918 2016 May 19
## 23919 2016 May 19
## 23920 2016 May 19
## 23921 2016 May 19
## 23922 2016 May 19
## 23923 2016 May 19
## 23924 2016 May 19
## 23925 2016 May 19
## 23926 2016 May 19
## 23927 2016 May 19
## 23928 2016 May 19
## 23929 2016 May 19
## 23930 2016 May 19
## 23931 2016 May 19
## 23932 2016 May 19
## 23933 2017 March 10
## 23934 2016 May 19
## 23935 2017 March 10
## 23936 2016 May 19
## 23937 2016 May 19
## 23938 2016 May 19
## 23939 2016 June 24
## 23940 2017 March 10
## 23941 2017 March 10
## 23942 2016 May 19
## 23943 2016 May 19
## 23944 2016 May 19
## 23945 2016 May 19
## 23946 2016 April 18
## 23947 2016 May 19
## 23948 2016 May 19
## 23949 2016 May 19
## 23950 2016 May 19
## 23951 2016 May 20
## 23952 2016 May 19
## 23953 2016 May 19
## 23954 2016 May 19
## 23955 2016 May 19
## 23956 2016 May 19
## 23957 2017 February 5
## 23958 2017 March 10
## 23959 2016 April 18
## 23960 2016 May 19
## 23961 2016 May 19
## 23962 2016 May 19
## 23963 2016 May 20
## 23964 2016 May 20
## 23965 2016 April 18
## 23966 2016 April 18
## 23967 2016 May 19
## 23968 2016 May 19
## 23969 2016 May 19
## 23970 2016 May 19
## 23971 2016 May 19
## 23972 2016 May 19
## 23973 2016 May 19
## 23974 2016 May 19
## 23975 2016 May 19
## 23976 2016 May 19
## 23977 2016 May 19
## 23978 2016 May 20
## 23979 2016 May 19
## 23980 2016 May 19
## 23981 2016 May 20
## 23982 2016 May 19
## 23983 2016 May 19
## 23984 2016 April 18
## 23985 2016 May 19
## 23986 2016 May 19
## 23987 2016 May 19
## 23988 2016 May 19
## 23989 2016 May 19
## 23990 2016 May 19
## 23991 2016 May 19
## 23992 2016 April 18
## 23993 2016 May 19
## 23994 2016 May 20
## 23995 2016 May 20
## 23996 2016 May 20
## 23997 2016 May 20
## 23998 2016 May 19
## 23999 2016 May 19
## 24000 2016 May 19
## 24001 2016 May 20
## 24002 2016 May 20
## 24003 2016 May 20
## 24004 2016 April 18
## 24005 2016 October 41
## 24006 2016 May 20
## 24007 2016 May 20
## 24008 2016 May 20
## 24009 2016 May 20
## 24010 2016 May 20
## 24011 2016 May 20
## 24012 2016 May 20
## 24013 2017 February 8
## 24014 2016 May 20
## 24015 2016 May 20
## 24016 2016 May 20
## 24017 2016 May 19
## 24018 2016 May 19
## 24019 2016 May 20
## 24020 2016 May 20
## 24021 2016 April 18
## 24022 2016 May 19
## 24023 2016 May 20
## 24024 2016 May 20
## 24025 2016 May 19
## 24026 2016 May 20
## 24027 2016 May 19
## 24028 2016 May 19
## 24029 2016 May 20
## 24030 2016 May 20
## 24031 2016 May 19
## 24032 2016 May 19
## 24033 2016 May 20
## 24034 2016 May 19
## 24035 2016 May 20
## 24036 2016 May 19
## 24037 2016 May 19
## 24038 2016 May 20
## 24039 2016 May 20
## 24040 2016 May 20
## 24041 2016 May 20
## 24042 2016 May 20
## 24043 2016 May 20
## 24044 2016 May 20
## 24045 2016 May 20
## 24046 2016 May 20
## 24047 2016 May 19
## 24048 2016 May 19
## 24049 2016 May 20
## 24050 2016 May 20
## 24051 2016 May 20
## 24052 2016 May 20
## 24053 2016 May 20
## 24054 2016 May 20
## 24055 2016 May 19
## 24056 2016 May 19
## 24057 2016 May 20
## 24058 2016 April 18
## 24059 2016 May 20
## 24060 2016 May 19
## 24061 2016 May 19
## 24062 2016 September 40
## 24063 2017 May 18
## 24064 2016 May 20
## 24065 2016 May 19
## 24066 2016 May 19
## 24067 2016 May 19
## 24068 2016 May 19
## 24069 2016 May 20
## 24070 2016 May 19
## 24071 2016 May 20
## 24072 2016 May 19
## 24073 2016 May 19
## 24074 2016 May 19
## 24075 2016 May 19
## 24076 2016 May 20
## 24077 2016 May 19
## 24078 2016 April 17
## 24079 2016 May 20
## 24080 2016 May 19
## 24081 2016 May 19
## 24082 2016 May 20
## 24083 2016 May 20
## 24084 2016 May 20
## 24085 2016 May 20
## 24086 2016 May 20
## 24087 2016 June 27
## 24088 2017 March 11
## 24089 2016 May 20
## 24090 2016 May 20
## 24091 2016 May 19
## 24092 2016 May 19
## 24093 2016 May 20
## 24094 2016 May 19
## 24095 2016 May 19
## 24096 2016 May 20
## 24097 2016 May 20
## 24098 2016 May 20
## 24099 2016 May 20
## 24100 2016 May 20
## 24101 2016 May 20
## 24102 2016 May 20
## 24103 2016 May 20
## 24104 2016 May 20
## 24105 2016 May 20
## 24106 2016 May 20
## 24107 2016 May 19
## 24108 2016 May 20
## 24109 2016 May 19
## 24110 2016 May 20
## 24111 2016 May 20
## 24112 2016 May 19
## 24113 2016 May 19
## 24114 2016 May 20
## 24115 2016 May 20
## 24116 2016 May 20
## 24117 2016 May 21
## 24118 2016 May 20
## 24119 2016 May 20
## 24120 2016 May 20
## 24121 2016 May 19
## 24122 2016 May 20
## 24123 2016 May 20
## 24124 2016 May 21
## 24125 2016 October 41
## 24126 2017 February 8
## 24127 2017 April 17
## 24128 2016 May 20
## 24129 2016 May 20
## 24130 2016 May 19
## 24131 2016 May 20
## 24132 2016 May 20
## 24133 2016 May 20
## 24134 2016 May 20
## 24135 2016 May 20
## 24136 2016 May 20
## 24137 2016 May 20
## 24138 2016 May 20
## 24139 2016 May 20
## 24140 2016 May 20
## 24141 2016 May 20
## 24142 2016 May 20
## 24143 2016 May 20
## 24144 2016 May 19
## 24145 2016 May 19
## 24146 2016 May 19
## 24147 2016 May 19
## 24148 2016 May 19
## 24149 2016 May 19
## 24150 2016 May 19
## 24151 2016 May 19
## 24152 2016 May 19
## 24153 2016 May 19
## 24154 2016 May 19
## 24155 2016 May 19
## 24156 2016 May 19
## 24157 2016 May 19
## 24158 2016 May 19
## 24159 2016 May 19
## 24160 2016 May 19
## 24161 2016 May 20
## 24162 2016 May 20
## 24163 2016 May 20
## 24164 2016 May 20
## 24165 2016 May 20
## 24166 2016 May 20
## 24167 2016 May 20
## 24168 2016 May 20
## 24169 2016 May 20
## 24170 2016 May 20
## 24171 2016 May 20
## 24172 2016 May 20
## 24173 2016 May 20
## 24174 2016 May 20
## 24175 2016 May 20
## 24176 2016 May 20
## 24177 2016 May 20
## 24178 2016 May 20
## 24179 2016 May 20
## 24180 2016 May 20
## 24181 2016 May 20
## 24182 2016 May 20
## 24183 2016 May 20
## 24184 2016 May 20
## 24185 2016 May 20
## 24186 2016 May 19
## 24187 2016 May 20
## 24188 2016 May 19
## 24189 2016 May 19
## 24190 2016 May 20
## 24191 2016 May 19
## 24192 2016 May 20
## 24193 2016 May 20
## 24194 2016 May 20
## 24195 2016 May 20
## 24196 2016 May 20
## 24197 2016 May 20
## 24198 2016 May 20
## 24199 2016 May 21
## 24200 2016 May 20
## 24201 2016 May 21
## 24202 2016 May 20
## 24203 2016 May 20
## 24204 2016 May 20
## 24205 2016 May 20
## 24206 2016 May 21
## 24207 2016 May 20
## 24208 2016 May 20
## 24209 2016 May 20
## 24210 2016 May 19
## 24211 2016 May 20
## 24212 2016 May 21
## 24213 2016 May 20
## 24214 2016 May 20
## 24215 2016 May 20
## 24216 2016 May 21
## 24217 2016 May 20
## 24218 2016 May 20
## 24219 2016 May 21
## 24220 2016 May 20
## 24221 2016 May 20
## 24222 2016 May 21
## 24223 2016 May 20
## 24224 2017 January 2
## 24225 2016 May 20
## 24226 2016 May 20
## 24227 2016 May 21
## 24228 2016 May 19
## 24229 2016 May 20
## 24230 2016 May 21
## 24231 2016 May 21
## 24232 2016 May 20
## 24233 2016 May 21
## 24234 2016 May 20
## 24235 2016 May 21
## 24236 2016 May 20
## 24237 2016 May 21
## 24238 2016 May 20
## 24239 2016 May 21
## 24240 2016 May 20
## 24241 2016 May 21
## 24242 2016 May 20
## 24243 2016 May 21
## 24244 2016 May 20
## 24245 2016 May 20
## 24246 2016 May 20
## 24247 2016 May 21
## 24248 2016 May 20
## 24249 2016 May 21
## 24250 2016 May 20
## 24251 2016 May 21
## 24252 2016 May 19
## 24253 2016 May 20
## 24254 2016 May 21
## 24255 2016 May 20
## 24256 2016 May 20
## 24257 2016 May 21
## 24258 2016 May 20
## 24259 2016 May 21
## 24260 2016 May 20
## 24261 2016 May 21
## 24262 2016 May 20
## 24263 2016 May 21
## 24264 2016 May 20
## 24265 2016 May 21
## 24266 2016 May 20
## 24267 2016 May 21
## 24268 2016 May 20
## 24269 2016 May 21
## 24270 2016 October 41
## 24271 2016 October 41
## 24272 2016 October 43
## 24273 2016 October 44
## 24274 2016 May 19
## 24275 2016 May 20
## 24276 2016 May 20
## 24277 2016 May 19
## 24278 2016 May 20
## 24279 2016 May 21
## 24280 2016 May 20
## 24281 2016 May 21
## 24282 2016 May 20
## 24283 2016 May 20
## 24284 2016 May 20
## 24285 2016 May 20
## 24286 2016 May 20
## 24287 2016 May 19
## 24288 2016 May 21
## 24289 2016 May 20
## 24290 2016 May 20
## 24291 2016 May 21
## 24292 2016 October 41
## 24293 2016 May 21
## 24294 2016 May 20
## 24295 2016 May 21
## 24296 2016 May 21
## 24297 2016 May 21
## 24298 2016 May 19
## 24299 2016 May 21
## 24300 2016 May 21
## 24301 2016 May 20
## 24302 2016 May 21
## 24303 2016 May 21
## 24304 2016 May 20
## 24305 2016 May 20
## 24306 2016 May 21
## 24307 2016 May 21
## 24308 2016 May 20
## 24309 2016 May 21
## 24310 2016 June 27
## 24311 2016 June 27
## 24312 2017 March 10
## 24313 2017 April 14
## 24314 2016 May 20
## 24315 2016 May 20
## 24316 2016 May 21
## 24317 2016 October 44
## 24318 2017 May 21
## 24319 2016 May 20
## 24320 2016 May 20
## 24321 2016 May 21
## 24322 2016 May 20
## 24323 2016 May 20
## 24324 2016 May 20
## 24325 2016 May 21
## 24326 2016 May 21
## 24327 2016 May 20
## 24328 2016 May 20
## 24329 2016 May 20
## 24330 2016 May 19
## 24331 2016 May 20
## 24332 2016 May 20
## 24333 2016 May 20
## 24334 2016 May 21
## 24335 2016 May 21
## 24336 2017 April 14
## 24337 2016 May 21
## 24338 2017 April 14
## 24339 2016 May 21
## 24340 2016 May 20
## 24341 2016 May 21
## 24342 2016 May 20
## 24343 2016 May 21
## 24344 2016 May 21
## 24345 2016 May 21
## 24346 2016 May 20
## 24347 2016 May 21
## 24348 2016 May 21
## 24349 2016 May 21
## 24350 2016 May 20
## 24351 2016 May 21
## 24352 2016 May 21
## 24353 2016 May 21
## 24354 2016 May 21
## 24355 2016 May 21
## 24356 2016 May 21
## 24357 2016 May 21
## 24358 2016 May 21
## 24359 2016 May 21
## 24360 2016 May 20
## 24361 2016 May 20
## 24362 2016 May 19
## 24363 2016 May 19
## 24364 2016 May 20
## 24365 2016 May 20
## 24366 2016 May 21
## 24367 2016 November 48
## 24368 2016 May 19
## 24369 2016 May 19
## 24370 2016 May 21
## 24371 2016 May 21
## 24372 2016 May 21
## 24373 2016 May 21
## 24374 2016 May 21
## 24375 2016 May 21
## 24376 2016 May 21
## 24377 2016 May 19
## 24378 2016 May 21
## 24379 2016 May 21
## 24380 2016 May 21
## 24381 2016 May 21
## 24382 2016 May 21
## 24383 2016 May 21
## 24384 2016 May 21
## 24385 2016 May 21
## 24386 2016 May 20
## 24387 2016 May 21
## 24388 2016 May 20
## 24389 2016 May 21
## 24390 2016 May 21
## 24391 2016 May 21
## 24392 2016 May 20
## 24393 2016 May 21
## 24394 2016 May 21
## 24395 2016 May 21
## 24396 2016 May 21
## 24397 2016 May 21
## 24398 2016 May 21
## 24399 2016 November 49
## 24400 2017 May 22
## 24401 2016 May 21
## 24402 2016 December 51
## 24403 2017 January 4
## 24404 2016 May 21
## 24405 2016 May 21
## 24406 2016 May 21
## 24407 2016 May 21
## 24408 2016 May 21
## 24409 2016 May 21
## 24410 2016 May 21
## 24411 2016 May 21
## 24412 2016 May 21
## 24413 2016 May 21
## 24414 2016 May 21
## 24415 2016 May 21
## 24416 2016 May 21
## 24417 2016 May 20
## 24418 2016 May 21
## 24419 2016 May 20
## 24420 2016 May 21
## 24421 2016 May 21
## 24422 2017 July 27
## 24423 2016 May 20
## 24424 2016 May 21
## 24425 2016 May 21
## 24426 2016 May 20
## 24427 2016 May 21
## 24428 2016 May 21
## 24429 2016 May 21
## 24430 2016 May 21
## 24431 2016 May 21
## 24432 2016 May 21
## 24433 2016 May 21
## 24434 2016 May 21
## 24435 2016 May 21
## 24436 2016 May 21
## 24437 2016 May 21
## 24438 2016 May 21
## 24439 2016 May 21
## 24440 2016 May 21
## 24441 2016 May 20
## 24442 2016 May 20
## 24443 2016 May 20
## 24444 2016 May 20
## 24445 2016 May 21
## 24446 2016 May 21
## 24447 2016 May 20
## 24448 2016 May 21
## 24449 2016 May 21
## 24450 2016 May 21
## 24451 2016 May 20
## 24452 2016 May 21
## 24453 2016 May 21
## 24454 2016 May 21
## 24455 2016 May 21
## 24456 2016 May 21
## 24457 2016 May 21
## 24458 2016 May 21
## 24459 2016 May 21
## 24460 2016 May 21
## 24461 2016 May 21
## 24462 2016 May 21
## 24463 2016 May 21
## 24464 2016 May 21
## 24465 2016 May 21
## 24466 2016 May 21
## 24467 2016 May 21
## 24468 2016 May 21
## 24469 2016 May 21
## 24470 2016 May 21
## 24471 2016 May 21
## 24472 2016 May 21
## 24473 2016 May 21
## 24474 2016 May 21
## 24475 2016 May 21
## 24476 2016 May 21
## 24477 2016 May 21
## 24478 2016 May 22
## 24479 2016 May 21
## 24480 2016 May 22
## 24481 2016 May 21
## 24482 2016 May 21
## 24483 2016 May 22
## 24484 2016 May 22
## 24485 2016 May 21
## 24486 2016 May 20
## 24487 2016 May 21
## 24488 2016 May 21
## 24489 2016 May 21
## 24490 2016 May 21
## 24491 2016 May 20
## 24492 2016 May 22
## 24493 2016 May 20
## 24494 2016 May 21
## 24495 2016 May 20
## 24496 2016 May 22
## 24497 2016 May 21
## 24498 2016 May 20
## 24499 2016 May 21
## 24500 2016 May 21
## 24501 2016 May 21
## 24502 2016 May 21
## 24503 2016 May 21
## 24504 2016 May 21
## 24505 2016 May 21
## 24506 2016 May 22
## 24507 2016 May 22
## 24508 2016 May 22
## 24509 2016 May 22
## 24510 2016 May 21
## 24511 2016 May 21
## 24512 2016 May 21
## 24513 2016 May 22
## 24514 2016 May 22
## 24515 2016 May 21
## 24516 2016 May 22
## 24517 2016 May 22
## 24518 2016 May 22
## 24519 2016 May 21
## 24520 2016 May 21
## 24521 2016 May 21
## 24522 2016 May 21
## 24523 2016 May 21
## 24524 2016 May 22
## 24525 2016 May 22
## 24526 2016 May 21
## 24527 2016 May 22
## 24528 2016 June 23
## 24529 2016 May 21
## 24530 2016 May 21
## 24531 2016 May 22
## 24532 2016 May 21
## 24533 2016 May 21
## 24534 2016 May 22
## 24535 2016 May 21
## 24536 2016 May 21
## 24537 2016 May 21
## 24538 2016 May 21
## 24539 2016 May 21
## 24540 2016 May 22
## 24541 2016 May 22
## 24542 2016 May 22
## 24543 2016 May 22
## 24544 2016 May 21
## 24545 2016 May 21
## 24546 2016 May 22
## 24547 2016 May 22
## 24548 2016 May 22
## 24549 2016 May 22
## 24550 2016 May 22
## 24551 2016 May 21
## 24552 2016 May 21
## 24553 2016 May 21
## 24554 2016 May 22
## 24555 2016 May 22
## 24556 2016 May 22
## 24557 2016 May 21
## 24558 2016 May 21
## 24559 2016 May 21
## 24560 2016 May 21
## 24561 2016 May 21
## 24562 2016 May 21
## 24563 2016 May 21
## 24564 2016 May 20
## 24565 2016 May 21
## 24566 2016 May 21
## 24567 2016 May 21
## 24568 2016 May 21
## 24569 2016 May 21
## 24570 2016 May 22
## 24571 2016 May 21
## 24572 2016 May 21
## 24573 2016 May 21
## 24574 2016 May 21
## 24575 2016 May 21
## 24576 2016 May 21
## 24577 2016 May 20
## 24578 2016 May 21
## 24579 2016 May 21
## 24580 2016 May 22
## 24581 2016 May 22
## 24582 2016 May 21
## 24583 2016 May 22
## 24584 2016 May 22
## 24585 2016 May 21
## 24586 2016 May 21
## 24587 2016 May 22
## 24588 2016 May 21
## 24589 2016 May 22
## 24590 2016 May 21
## 24591 2016 May 22
## 24592 2016 May 21
## 24593 2016 May 21
## 24594 2016 May 22
## 24595 2016 May 22
## 24596 2016 May 22
## 24597 2016 May 22
## 24598 2016 May 21
## 24599 2016 May 22
## 24600 2016 May 22
## 24601 2016 May 22
## 24602 2016 May 21
## 24603 2016 May 21
## 24604 2016 May 22
## 24605 2016 May 22
## 24606 2016 May 21
## 24607 2016 May 22
## 24608 2016 May 21
## 24609 2016 May 21
## 24610 2016 May 21
## 24611 2016 May 22
## 24612 2016 May 20
## 24613 2016 May 22
## 24614 2017 May 19
## 24615 2016 May 22
## 24616 2016 May 22
## 24617 2016 May 21
## 24618 2016 May 21
## 24619 2016 May 21
## 24620 2016 May 22
## 24621 2016 May 22
## 24622 2016 May 22
## 24623 2016 May 21
## 24624 2016 May 22
## 24625 2016 May 22
## 24626 2016 May 22
## 24627 2016 May 21
## 24628 2016 May 22
## 24629 2016 May 22
## 24630 2016 May 21
## 24631 2016 May 21
## 24632 2016 May 22
## 24633 2016 May 22
## 24634 2016 May 21
## 24635 2016 May 21
## 24636 2016 May 21
## 24637 2016 May 21
## 24638 2016 May 22
## 24639 2016 May 21
## 24640 2016 May 22
## 24641 2016 May 22
## 24642 2016 May 22
## 24643 2016 May 21
## 24644 2016 May 22
## 24645 2016 May 22
## 24646 2016 May 22
## 24647 2016 May 22
## 24648 2016 May 22
## 24649 2016 May 21
## 24650 2016 May 22
## 24651 2016 May 22
## 24652 2016 May 22
## 24653 2016 May 22
## 24654 2016 May 22
## 24655 2016 May 22
## 24656 2016 May 22
## 24657 2016 May 22
## 24658 2016 May 22
## 24659 2016 May 22
## 24660 2016 May 22
## 24661 2016 May 23
## 24662 2016 May 22
## 24663 2016 May 22
## 24664 2016 May 22
## 24665 2016 May 22
## 24666 2016 May 22
## 24667 2016 May 22
## 24668 2016 May 22
## 24669 2016 May 23
## 24670 2016 May 21
## 24671 2016 May 21
## 24672 2016 May 22
## 24673 2016 May 22
## 24674 2016 May 22
## 24675 2016 May 23
## 24676 2016 May 23
## 24677 2016 May 23
## 24678 2016 May 22
## 24679 2016 May 23
## 24680 2016 May 23
## 24681 2016 May 22
## 24682 2016 May 22
## 24683 2016 May 22
## 24684 2016 May 23
## 24685 2017 February 7
## 24686 2016 May 22
## 24687 2016 May 22
## 24688 2016 May 23
## 24689 2016 August 34
## 24690 2016 May 22
## 24691 2016 May 23
## 24692 2016 May 22
## 24693 2016 May 22
## 24694 2016 May 23
## 24695 2016 July 32
## 24696 2016 May 22
## 24697 2016 May 23
## 24698 2016 May 21
## 24699 2017 May 19
## 24700 2016 May 23
## 24701 2016 May 23
## 24702 2016 December 51
## 24703 2016 May 23
## 24704 2016 May 23
## 24705 2016 May 23
## 24706 2016 May 22
## 24707 2016 May 23
## 24708 2016 May 23
## 24709 2016 May 23
## 24710 2016 May 23
## 24711 2016 May 23
## 24712 2016 October 42
## 24713 2016 May 23
## 24714 2016 May 22
## 24715 2016 May 22
## 24716 2016 May 23
## 24717 2016 May 23
## 24718 2016 May 23
## 24719 2016 May 23
## 24720 2016 May 23
## 24721 2016 May 23
## 24722 2016 May 23
## 24723 2016 May 23
## 24724 2016 May 23
## 24725 2016 May 23
## 24726 2016 May 22
## 24727 2016 October 43
## 24728 2016 May 23
## 24729 2016 May 22
## 24730 2016 May 22
## 24731 2016 May 22
## 24732 2016 May 23
## 24733 2016 May 21
## 24734 2016 May 23
## 24735 2016 June 23
## 24736 2016 June 23
## 24737 2016 June 23
## 24738 2016 May 23
## 24739 2016 May 23
## 24740 2016 May 23
## 24741 2016 June 23
## 24742 2016 June 23
## 24743 2016 June 23
## 24744 2016 June 23
## 24745 2017 May 21
## 24746 2016 June 23
## 24747 2016 May 22
## 24748 2016 May 23
## 24749 2016 May 23
## 24750 2016 May 22
## 24751 2016 May 22
## 24752 2016 May 23
## 24753 2016 May 22
## 24754 2016 May 23
## 24755 2016 May 23
## 24756 2016 May 22
## 24757 2016 May 22
## 24758 2016 May 23
## 24759 2016 May 23
## 24760 2017 June 25
## 24761 2016 June 23
## 24762 2016 May 23
## 24763 2016 May 22
## 24764 2016 May 22
## 24765 2016 May 23
## 24766 2016 May 22
## 24767 2016 May 23
## 24768 2016 June 23
## 24769 2016 May 22
## 24770 2016 May 22
## 24771 2016 May 23
## 24772 2016 June 23
## 24773 2016 June 23
## 24774 2016 June 23
## 24775 2016 May 23
## 24776 2016 May 23
## 24777 2016 June 23
## 24778 2016 June 23
## 24779 2016 June 23
## 24780 2016 June 23
## 24781 2016 June 23
## 24782 2016 June 23
## 24783 2016 June 23
## 24784 2016 June 23
## 24785 2016 June 23
## 24786 2016 June 23
## 24787 2016 June 23
## 24788 2016 May 23
## 24789 2016 May 23
## 24790 2016 May 23
## 24791 2017 May 21
## 24792 2016 May 22
## 24793 2016 June 23
## 24794 2016 May 23
## 24795 2016 June 23
## 24796 2016 May 23
## 24797 2016 May 23
## 24798 2016 May 23
## 24799 2016 May 23
## 24800 2016 June 23
## 24801 2016 May 23
## 24802 2016 May 23
## 24803 2016 June 23
## 24804 2016 May 23
## 24805 2016 May 23
## 24806 2016 June 23
## 24807 2016 June 23
## 24808 2016 May 23
## 24809 2016 May 23
## 24810 2016 May 23
## 24811 2016 May 23
## 24812 2016 May 22
## 24813 2016 May 23
## 24814 2016 May 22
## 24815 2016 June 23
## 24816 2016 May 23
## 24817 2016 May 22
## 24818 2016 June 23
## 24819 2016 June 23
## 24820 2016 June 23
## 24821 2016 June 23
## 24822 2016 June 23
## 24823 2016 May 23
## 24824 2016 June 23
## 24825 2016 May 23
## 24826 2016 June 23
## 24827 2016 May 23
## 24828 2016 June 23
## 24829 2016 May 22
## 24830 2016 June 23
## 24831 2016 May 23
## 24832 2016 May 23
## 24833 2016 May 23
## 24834 2016 May 23
## 24835 2016 May 23
## 24836 2016 June 23
## 24837 2016 May 23
## 24838 2016 June 23
## 24839 2016 June 23
## 24840 2016 June 23
## 24841 2016 May 23
## 24842 2016 June 23
## 24843 2016 June 23
## 24844 2016 June 23
## 24845 2016 May 23
## 24846 2016 May 23
## 24847 2016 May 23
## 24848 2016 June 23
## 24849 2016 May 23
## 24850 2016 June 23
## 24851 2016 May 23
## 24852 2016 June 23
## 24853 2016 June 23
## 24854 2016 May 22
## 24855 2016 May 23
## 24856 2016 June 23
## 24857 2016 June 23
## 24858 2016 June 23
## 24859 2016 June 24
## 24860 2016 June 24
## 24861 2016 June 23
## 24862 2016 June 23
## 24863 2016 June 23
## 24864 2016 June 23
## 24865 2016 May 23
## 24866 2016 June 23
## 24867 2016 June 23
## 24868 2016 June 23
## 24869 2016 June 23
## 24870 2016 May 22
## 24871 2016 June 24
## 24872 2016 June 24
## 24873 2016 May 23
## 24874 2016 May 23
## 24875 2016 June 24
## 24876 2016 May 23
## 24877 2016 June 23
## 24878 2016 May 23
## 24879 2016 May 23
## 24880 2016 May 23
## 24881 2016 May 23
## 24882 2016 May 23
## 24883 2016 June 23
## 24884 2016 May 23
## 24885 2016 May 22
## 24886 2016 June 23
## 24887 2016 May 23
## 24888 2016 June 24
## 24889 2016 May 22
## 24890 2016 May 23
## 24891 2017 June 23
## 24892 2016 June 24
## 24893 2016 June 24
## 24894 2016 June 24
## 24895 2016 June 24
## 24896 2016 June 24
## 24897 2016 June 23
## 24898 2016 June 23
## 24899 2016 June 23
## 24900 2016 May 23
## 24901 2016 June 23
## 24902 2016 June 23
## 24903 2016 June 24
## 24904 2016 May 23
## 24905 2016 June 23
## 24906 2016 June 23
## 24907 2016 June 23
## 24908 2016 June 23
## 24909 2016 June 23
## 24910 2016 May 23
## 24911 2016 June 23
## 24912 2016 May 23
## 24913 2016 June 23
## 24914 2016 June 23
## 24915 2016 June 23
## 24916 2016 October 44
## 24917 2016 June 24
## 24918 2016 June 24
## 24919 2016 June 24
## 24920 2016 June 23
## 24921 2016 June 23
## 24922 2016 June 23
## 24923 2016 June 24
## 24924 2016 June 23
## 24925 2016 June 24
## 24926 2016 June 24
## 24927 2016 June 23
## 24928 2016 June 23
## 24929 2016 June 24
## 24930 2016 June 24
## 24931 2016 June 23
## 24932 2016 June 24
## 24933 2016 May 23
## 24934 2016 June 23
## 24935 2016 June 23
## 24936 2016 June 24
## 24937 2016 June 23
## 24938 2016 June 23
## 24939 2016 June 24
## 24940 2016 June 24
## 24941 2016 June 24
## 24942 2016 June 23
## 24943 2016 June 23
## 24944 2016 June 23
## 24945 2016 June 23
## 24946 2016 June 24
## 24947 2016 June 23
## 24948 2016 June 24
## 24949 2016 June 24
## 24950 2016 June 24
## 24951 2016 June 24
## 24952 2016 June 23
## 24953 2016 June 24
## 24954 2016 June 24
## 24955 2016 June 24
## 24956 2016 June 24
## 24957 2016 June 24
## 24958 2016 June 23
## 24959 2016 June 24
## 24960 2016 June 24
## 24961 2016 June 23
## 24962 2016 June 24
## 24963 2016 June 23
## 24964 2016 June 23
## 24965 2016 June 24
## 24966 2016 June 23
## 24967 2016 June 23
## 24968 2016 June 23
## 24969 2016 June 24
## 24970 2016 June 24
## 24971 2016 June 24
## 24972 2016 June 24
## 24973 2016 June 27
## 24974 2016 June 23
## 24975 2016 June 24
## 24976 2016 June 23
## 24977 2016 June 24
## 24978 2016 June 24
## 24979 2016 June 23
## 24980 2016 June 24
## 24981 2016 June 24
## 24982 2016 June 24
## 24983 2016 June 24
## 24984 2016 June 24
## 24985 2016 June 23
## 24986 2016 June 23
## 24987 2016 May 23
## 24988 2016 June 24
## 24989 2016 June 23
## 24990 2016 June 23
## 24991 2016 June 24
## 24992 2016 June 23
## 24993 2016 June 23
## 24994 2016 June 24
## 24995 2016 June 24
## 24996 2016 June 24
## 24997 2016 June 24
## 24998 2016 June 24
## 24999 2016 May 23
## arrival_date_day_of_month
## 1 1
## 2 1
## 3 1
## 4 1
## 5 1
## 6 1
## 7 1
## 8 1
## 9 1
## 10 1
## 11 1
## 12 1
## 13 1
## 14 1
## 15 1
## 16 1
## 17 1
## 18 1
## 19 1
## 20 1
## 21 1
## 22 1
## 23 1
## 24 1
## 25 1
## 26 1
## 27 1
## 28 1
## 29 1
## 30 1
## 31 1
## 32 1
## 33 1
## 34 2
## 35 2
## 36 2
## 37 2
## 38 2
## 39 2
## 40 2
## 41 2
## 42 2
## 43 2
## 44 2
## 45 2
## 46 2
## 47 2
## 48 2
## 49 2
## 50 2
## 51 2
## 52 2
## 53 2
## 54 2
## 55 2
## 56 2
## 57 2
## 58 2
## 59 2
## 60 2
## 61 2
## 62 2
## 63 2
## 64 2
## 65 2
## 66 3
## 67 3
## 68 3
## 69 3
## 70 3
## 71 3
## 72 3
## 73 3
## 74 3
## 75 3
## 76 3
## 77 3
## 78 3
## 79 3
## 80 3
## 81 3
## 82 3
## 83 3
## 84 3
## 85 3
## 86 3
## 87 3
## 88 3
## 89 3
## 90 3
## 91 3
## 92 3
## 93 3
## 94 3
## 95 3
## 96 3
## 97 3
## 98 3
## 99 3
## 100 3
## 101 4
## 102 4
## 103 4
## 104 4
## 105 4
## 106 4
## 107 4
## 108 4
## 109 4
## 110 4
## 111 4
## 112 4
## 113 4
## 114 4
## 115 4
## 116 4
## 117 4
## 118 4
## 119 4
## 120 4
## 121 4
## 122 4
## 123 4
## 124 4
## 125 4
## 126 4
## 127 4
## 128 4
## 129 4
## 130 4
## 131 4
## 132 5
## 133 5
## 134 5
## 135 5
## 136 5
## 137 5
## 138 5
## 139 5
## 140 5
## 141 5
## 142 5
## 143 5
## 144 5
## 145 5
## 146 5
## 147 5
## 148 5
## 149 5
## 150 5
## 151 5
## 152 5
## 153 5
## 154 5
## 155 5
## 156 5
## 157 5
## 158 5
## 159 5
## 160 5
## 161 6
## 162 6
## 163 6
## 164 6
## 165 6
## 166 6
## 167 6
## 168 6
## 169 6
## 170 6
## 171 6
## 172 6
## 173 6
## 174 6
## 175 6
## 176 6
## 177 6
## 178 6
## 179 6
## 180 6
## 181 6
## 182 6
## 183 6
## 184 6
## 185 6
## 186 6
## 187 6
## 188 6
## 189 6
## 190 6
## 191 6
## 192 6
## 193 6
## 194 7
## 195 7
## 196 7
## 197 7
## 198 7
## 199 7
## 200 7
## 201 7
## 202 7
## 203 7
## 204 7
## 205 7
## 206 7
## 207 7
## 208 7
## 209 7
## 210 7
## 211 8
## 212 8
## 213 8
## 214 8
## 215 8
## 216 8
## 217 8
## 218 8
## 219 8
## 220 8
## 221 8
## 222 8
## 223 8
## 224 8
## 225 8
## 226 8
## 227 8
## 228 8
## 229 8
## 230 8
## 231 9
## 232 9
## 233 9
## 234 9
## 235 9
## 236 9
## 237 9
## 238 9
## 239 9
## 240 9
## 241 9
## 242 9
## 243 9
## 244 9
## 245 9
## 246 9
## 247 9
## 248 9
## 249 10
## 250 10
## 251 10
## 252 10
## 253 10
## 254 10
## 255 10
## 256 10
## 257 10
## 258 10
## 259 10
## 260 10
## 261 10
## 262 10
## 263 10
## 264 10
## 265 10
## 266 10
## 267 10
## 268 10
## 269 10
## 270 10
## 271 10
## 272 10
## 273 10
## 274 10
## 275 10
## 276 10
## 277 10
## 278 10
## 279 10
## 280 10
## 281 11
## 282 11
## 283 11
## 284 11
## 285 11
## 286 11
## 287 11
## 288 11
## 289 11
## 290 11
## 291 11
## 292 11
## 293 11
## 294 11
## 295 11
## 296 11
## 297 11
## 298 11
## 299 11
## 300 11
## 301 11
## 302 11
## 303 11
## 304 11
## 305 11
## 306 11
## 307 11
## 308 12
## 309 12
## 310 12
## 311 12
## 312 12
## 313 12
## 314 12
## 315 12
## 316 12
## 317 12
## 318 12
## 319 12
## 320 12
## 321 12
## 322 12
## 323 12
## 324 12
## 325 12
## 326 12
## 327 12
## 328 12
## 329 12
## 330 12
## 331 12
## 332 12
## 333 12
## 334 12
## 335 12
## 336 12
## 337 12
## 338 12
## 339 12
## 340 12
## 341 12
## 342 12
## 343 12
## 344 12
## 345 12
## 346 12
## 347 13
## 348 13
## 349 13
## 350 13
## 351 13
## 352 13
## 353 13
## 354 13
## 355 13
## 356 13
## 357 13
## 358 13
## 359 13
## 360 13
## 361 13
## 362 13
## 363 13
## 364 13
## 365 13
## 366 13
## 367 13
## 368 13
## 369 13
## 370 13
## 371 13
## 372 13
## 373 13
## 374 13
## 375 13
## 376 13
## 377 13
## 378 13
## 379 13
## 380 13
## 381 13
## 382 13
## 383 13
## 384 13
## 385 13
## 386 13
## 387 14
## 388 14
## 389 14
## 390 14
## 391 14
## 392 14
## 393 14
## 394 14
## 395 14
## 396 14
## 397 14
## 398 14
## 399 14
## 400 14
## 401 14
## 402 14
## 403 14
## 404 14
## 405 14
## 406 14
## 407 14
## 408 14
## 409 15
## 410 15
## 411 15
## 412 15
## 413 15
## 414 15
## 415 15
## 416 15
## 417 15
## 418 15
## 419 15
## 420 15
## 421 15
## 422 15
## 423 15
## 424 15
## 425 15
## 426 15
## 427 15
## 428 15
## 429 15
## 430 15
## 431 15
## 432 15
## 433 15
## 434 15
## 435 16
## 436 16
## 437 16
## 438 16
## 439 16
## 440 16
## 441 16
## 442 16
## 443 16
## 444 16
## 445 16
## 446 16
## 447 16
## 448 16
## 449 16
## 450 16
## 451 16
## 452 16
## 453 16
## 454 16
## 455 16
## 456 16
## 457 16
## 458 16
## 459 16
## 460 17
## 461 17
## 462 17
## 463 17
## 464 17
## 465 17
## 466 17
## 467 17
## 468 17
## 469 17
## 470 17
## 471 17
## 472 17
## 473 17
## 474 17
## 475 17
## 476 17
## 477 17
## 478 17
## 479 17
## 480 17
## 481 17
## 482 17
## 483 17
## 484 17
## 485 17
## 486 17
## 487 17
## 488 17
## 489 17
## 490 17
## 491 17
## 492 17
## 493 17
## 494 17
## 495 17
## 496 17
## 497 17
## 498 17
## 499 17
## 500 17
## 501 17
## 502 17
## 503 17
## 504 17
## 505 17
## 506 17
## 507 17
## 508 17
## 509 18
## 510 18
## 511 18
## 512 18
## 513 18
## 514 18
## 515 18
## 516 18
## 517 18
## 518 18
## 519 18
## 520 18
## 521 18
## 522 18
## 523 18
## 524 18
## 525 18
## 526 18
## 527 18
## 528 18
## 529 18
## 530 18
## 531 18
## 532 18
## 533 18
## 534 18
## 535 18
## 536 18
## 537 18
## 538 18
## 539 19
## 540 19
## 541 19
## 542 19
## 543 19
## 544 19
## 545 19
## 546 19
## 547 19
## 548 19
## 549 19
## 550 19
## 551 19
## 552 19
## 553 19
## 554 19
## 555 19
## 556 19
## 557 19
## 558 19
## 559 19
## 560 19
## 561 19
## 562 19
## 563 19
## 564 19
## 565 19
## 566 19
## 567 20
## 568 20
## 569 20
## 570 20
## 571 20
## 572 20
## 573 20
## 574 20
## 575 20
## 576 20
## 577 20
## 578 20
## 579 20
## 580 20
## 581 20
## 582 20
## 583 20
## 584 20
## 585 20
## 586 20
## 587 20
## 588 20
## 589 20
## 590 20
## 591 20
## 592 20
## 593 20
## 594 20
## 595 20
## 596 20
## 597 20
## 598 20
## 599 20
## 600 21
## 601 21
## 602 21
## 603 21
## 604 21
## 605 21
## 606 21
## 607 21
## 608 21
## 609 21
## 610 21
## 611 21
## 612 22
## 613 22
## 614 22
## 615 22
## 616 22
## 617 22
## 618 22
## 619 23
## 620 23
## 621 23
## 622 23
## 623 23
## 624 23
## 625 23
## 626 23
## 627 23
## 628 23
## 629 23
## 630 23
## 631 23
## 632 23
## 633 23
## 634 24
## 635 24
## 636 24
## 637 24
## 638 24
## 639 24
## 640 24
## 641 24
## 642 24
## 643 24
## 644 24
## 645 24
## 646 24
## 647 24
## 648 24
## 649 24
## 650 24
## 651 24
## 652 24
## 653 24
## 654 24
## 655 24
## 656 24
## 657 24
## 658 24
## 659 24
## 660 24
## 661 24
## 662 24
## 663 24
## 664 24
## 665 24
## 666 25
## 667 25
## 668 25
## 669 25
## 670 25
## 671 25
## 672 25
## 673 25
## 674 25
## 675 25
## 676 25
## 677 25
## 678 25
## 679 25
## 680 25
## 681 25
## 682 25
## 683 25
## 684 25
## 685 25
## 686 25
## 687 25
## 688 25
## 689 25
## 690 25
## 691 25
## 692 25
## 693 25
## 694 25
## 695 25
## 696 25
## 697 25
## 698 25
## 699 25
## 700 25
## 701 25
## 702 25
## 703 25
## 704 25
## 705 25
## 706 25
## 707 25
## 708 26
## 709 26
## 710 26
## 711 26
## 712 26
## 713 26
## 714 26
## 715 26
## 716 26
## 717 26
## 718 26
## 719 26
## 720 26
## 721 26
## 722 26
## 723 27
## 724 27
## 725 27
## 726 27
## 727 27
## 728 27
## 729 27
## 730 27
## 731 27
## 732 27
## 733 27
## 734 27
## 735 27
## 736 27
## 737 27
## 738 27
## 739 27
## 740 27
## 741 27
## 742 27
## 743 27
## 744 27
## 745 27
## 746 27
## 747 27
## 748 27
## 749 27
## 750 27
## 751 27
## 752 27
## 753 27
## 754 27
## 755 27
## 756 27
## 757 27
## 758 27
## 759 27
## 760 27
## 761 28
## 762 28
## 763 28
## 764 28
## 765 28
## 766 28
## 767 28
## 768 28
## 769 28
## 770 28
## 771 28
## 772 28
## 773 28
## 774 28
## 775 29
## 776 29
## 777 29
## 778 29
## 779 29
## 780 29
## 781 29
## 782 29
## 783 29
## 784 29
## 785 29
## 786 29
## 787 29
## 788 29
## 789 29
## 790 29
## 791 29
## 792 29
## 793 29
## 794 29
## 795 30
## 796 30
## 797 30
## 798 30
## 799 30
## 800 30
## 801 30
## 802 30
## 803 30
## 804 30
## 805 30
## 806 30
## 807 30
## 808 30
## 809 30
## 810 30
## 811 30
## 812 30
## 813 30
## 814 30
## 815 31
## 816 31
## 817 31
## 818 31
## 819 31
## 820 31
## 821 31
## 822 31
## 823 31
## 824 31
## 825 31
## 826 31
## 827 31
## 828 31
## 829 31
## 830 31
## 831 31
## 832 31
## 833 31
## 834 31
## 835 31
## 836 31
## 837 31
## 838 31
## 839 31
## 840 31
## 841 31
## 842 31
## 843 1
## 844 1
## 845 1
## 846 1
## 847 1
## 848 1
## 849 1
## 850 1
## 851 1
## 852 1
## 853 1
## 854 1
## 855 1
## 856 1
## 857 1
## 858 1
## 859 1
## 860 1
## 861 1
## 862 1
## 863 1
## 864 1
## 865 1
## 866 1
## 867 1
## 868 1
## 869 1
## 870 1
## 871 2
## 872 2
## 873 2
## 874 2
## 875 2
## 876 2
## 877 2
## 878 2
## 879 2
## 880 2
## 881 2
## 882 2
## 883 3
## 884 3
## 885 3
## 886 3
## 887 3
## 888 3
## 889 3
## 890 3
## 891 3
## 892 3
## 893 3
## 894 4
## 895 4
## 896 4
## 897 4
## 898 4
## 899 4
## 900 4
## 901 4
## 902 4
## 903 4
## 904 4
## 905 4
## 906 4
## 907 4
## 908 5
## 909 5
## 910 5
## 911 5
## 912 5
## 913 5
## 914 5
## 915 5
## 916 5
## 917 5
## 918 5
## 919 5
## 920 5
## 921 5
## 922 6
## 923 6
## 924 6
## 925 6
## 926 6
## 927 6
## 928 6
## 929 6
## 930 6
## 931 6
## 932 6
## 933 6
## 934 6
## 935 7
## 936 7
## 937 7
## 938 7
## 939 7
## 940 7
## 941 7
## 942 7
## 943 7
## 944 7
## 945 7
## 946 7
## 947 7
## 948 7
## 949 7
## 950 7
## 951 7
## 952 7
## 953 7
## 954 7
## 955 7
## 956 7
## 957 8
## 958 8
## 959 8
## 960 8
## 961 8
## 962 8
## 963 8
## 964 8
## 965 8
## 966 8
## 967 8
## 968 8
## 969 8
## 970 8
## 971 8
## 972 8
## 973 8
## 974 8
## 975 8
## 976 8
## 977 8
## 978 8
## 979 8
## 980 8
## 981 8
## 982 8
## 983 8
## 984 8
## 985 9
## 986 9
## 987 9
## 988 9
## 989 9
## 990 9
## 991 9
## 992 9
## 993 9
## 994 9
## 995 9
## 996 9
## 997 9
## 998 9
## 999 9
## 1000 9
## 1001 9
## 1002 9
## 1003 9
## 1004 9
## 1005 9
## 1006 9
## 1007 9
## 1008 10
## 1009 10
## 1010 10
## 1011 10
## 1012 10
## 1013 10
## 1014 10
## 1015 10
## 1016 10
## 1017 10
## 1018 10
## 1019 10
## 1020 10
## 1021 10
## 1022 10
## 1023 10
## 1024 10
## 1025 10
## 1026 10
## 1027 10
## 1028 10
## 1029 10
## 1030 11
## 1031 11
## 1032 11
## 1033 11
## 1034 11
## 1035 11
## 1036 11
## 1037 11
## 1038 11
## 1039 11
## 1040 11
## 1041 11
## 1042 11
## 1043 11
## 1044 11
## 1045 11
## 1046 11
## 1047 11
## 1048 11
## 1049 11
## 1050 11
## 1051 11
## 1052 11
## 1053 11
## 1054 11
## 1055 11
## 1056 11
## 1057 11
## 1058 11
## 1059 11
## 1060 12
## 1061 12
## 1062 12
## 1063 12
## 1064 12
## 1065 12
## 1066 12
## 1067 12
## 1068 12
## 1069 12
## 1070 12
## 1071 12
## 1072 12
## 1073 12
## 1074 13
## 1075 13
## 1076 13
## 1077 13
## 1078 13
## 1079 13
## 1080 13
## 1081 13
## 1082 13
## 1083 13
## 1084 13
## 1085 13
## 1086 13
## 1087 13
## 1088 13
## 1089 13
## 1090 13
## 1091 13
## 1092 13
## 1093 13
## 1094 14
## 1095 14
## 1096 14
## 1097 14
## 1098 14
## 1099 14
## 1100 14
## 1101 14
## 1102 14
## 1103 14
## 1104 14
## 1105 14
## 1106 14
## 1107 14
## 1108 14
## 1109 14
## 1110 14
## 1111 14
## 1112 14
## 1113 14
## 1114 14
## 1115 14
## 1116 14
## 1117 14
## 1118 15
## 1119 15
## 1120 15
## 1121 15
## 1122 15
## 1123 15
## 1124 15
## 1125 15
## 1126 15
## 1127 15
## 1128 15
## 1129 15
## 1130 15
## 1131 15
## 1132 15
## 1133 15
## 1134 15
## 1135 15
## 1136 15
## 1137 15
## 1138 15
## 1139 15
## 1140 15
## 1141 15
## 1142 15
## 1143 15
## 1144 15
## 1145 15
## 1146 15
## 1147 15
## 1148 15
## 1149 15
## 1150 15
## 1151 16
## 1152 16
## 1153 16
## 1154 16
## 1155 16
## 1156 16
## 1157 16
## 1158 16
## 1159 16
## 1160 16
## 1161 16
## 1162 16
## 1163 16
## 1164 16
## 1165 16
## 1166 16
## 1167 16
## 1168 16
## 1169 16
## 1170 16
## 1171 16
## 1172 16
## 1173 16
## 1174 16
## 1175 16
## 1176 16
## 1177 16
## 1178 17
## 1179 17
## 1180 17
## 1181 17
## 1182 17
## 1183 17
## 1184 17
## 1185 17
## 1186 17
## 1187 17
## 1188 17
## 1189 17
## 1190 17
## 1191 17
## 1192 17
## 1193 17
## 1194 17
## 1195 17
## 1196 17
## 1197 18
## 1198 18
## 1199 18
## 1200 18
## 1201 18
## 1202 18
## 1203 18
## 1204 18
## 1205 18
## 1206 18
## 1207 18
## 1208 18
## 1209 18
## 1210 18
## 1211 18
## 1212 18
## 1213 18
## 1214 18
## 1215 18
## 1216 19
## 1217 19
## 1218 19
## 1219 19
## 1220 19
## 1221 19
## 1222 19
## 1223 19
## 1224 19
## 1225 19
## 1226 19
## 1227 19
## 1228 19
## 1229 19
## 1230 19
## 1231 20
## 1232 20
## 1233 20
## 1234 20
## 1235 20
## 1236 20
## 1237 20
## 1238 20
## 1239 20
## 1240 20
## 1241 20
## 1242 21
## 1243 21
## 1244 21
## 1245 21
## 1246 21
## 1247 21
## 1248 21
## 1249 21
## 1250 21
## 1251 21
## 1252 21
## 1253 21
## 1254 21
## 1255 21
## 1256 21
## 1257 21
## 1258 21
## 1259 21
## 1260 21
## 1261 21
## 1262 21
## 1263 21
## 1264 21
## 1265 21
## 1266 21
## 1267 22
## 1268 22
## 1269 22
## 1270 22
## 1271 22
## 1272 22
## 1273 22
## 1274 22
## 1275 22
## 1276 22
## 1277 22
## 1278 22
## 1279 22
## 1280 22
## 1281 22
## 1282 22
## 1283 22
## 1284 22
## 1285 22
## 1286 22
## 1287 22
## 1288 22
## 1289 22
## 1290 22
## 1291 22
## 1292 22
## 1293 22
## 1294 22
## 1295 22
## 1296 23
## 1297 23
## 1298 23
## 1299 23
## 1300 23
## 1301 23
## 1302 23
## 1303 23
## 1304 23
## 1305 23
## 1306 23
## 1307 23
## 1308 23
## 1309 23
## 1310 23
## 1311 23
## 1312 23
## 1313 23
## 1314 23
## 1315 23
## 1316 23
## 1317 23
## 1318 23
## 1319 24
## 1320 24
## 1321 24
## 1322 24
## 1323 24
## 1324 24
## 1325 24
## 1326 24
## 1327 24
## 1328 24
## 1329 24
## 1330 24
## 1331 24
## 1332 24
## 1333 24
## 1334 24
## 1335 24
## 1336 24
## 1337 24
## 1338 24
## 1339 24
## 1340 24
## 1341 24
## 1342 25
## 1343 25
## 1344 25
## 1345 25
## 1346 25
## 1347 25
## 1348 25
## 1349 25
## 1350 25
## 1351 25
## 1352 25
## 1353 25
## 1354 25
## 1355 26
## 1356 26
## 1357 26
## 1358 26
## 1359 26
## 1360 26
## 1361 26
## 1362 26
## 1363 26
## 1364 26
## 1365 26
## 1366 26
## 1367 27
## 1368 27
## 1369 27
## 1370 27
## 1371 27
## 1372 27
## 1373 27
## 1374 27
## 1375 27
## 1376 27
## 1377 27
## 1378 27
## 1379 27
## 1380 27
## 1381 27
## 1382 27
## 1383 27
## 1384 27
## 1385 27
## 1386 27
## 1387 27
## 1388 28
## 1389 28
## 1390 28
## 1391 28
## 1392 28
## 1393 28
## 1394 28
## 1395 28
## 1396 28
## 1397 28
## 1398 28
## 1399 28
## 1400 28
## 1401 28
## 1402 28
## 1403 28
## 1404 28
## 1405 28
## 1406 28
## 1407 28
## 1408 28
## 1409 28
## 1410 28
## 1411 28
## 1412 28
## 1413 28
## 1414 28
## 1415 28
## 1416 28
## 1417 28
## 1418 28
## 1419 28
## 1420 28
## 1421 28
## 1422 28
## 1423 28
## 1424 28
## 1425 28
## 1426 28
## 1427 28
## 1428 28
## 1429 29
## 1430 29
## 1431 29
## 1432 29
## 1433 29
## 1434 29
## 1435 29
## 1436 29
## 1437 29
## 1438 29
## 1439 29
## 1440 29
## 1441 29
## 1442 29
## 1443 29
## 1444 29
## 1445 29
## 1446 30
## 1447 30
## 1448 30
## 1449 30
## 1450 30
## 1451 30
## 1452 30
## 1453 30
## 1454 30
## 1455 30
## 1456 30
## 1457 30
## 1458 30
## 1459 30
## 1460 30
## 1461 30
## 1462 30
## 1463 30
## 1464 30
## 1465 31
## 1466 31
## 1467 31
## 1468 31
## 1469 31
## 1470 31
## 1471 31
## 1472 31
## 1473 31
## 1474 31
## 1475 31
## 1476 31
## 1477 31
## 1478 31
## 1479 31
## 1480 31
## 1481 31
## 1482 31
## 1483 31
## 1484 31
## 1485 31
## 1486 1
## 1487 1
## 1488 1
## 1489 1
## 1490 1
## 1491 1
## 1492 1
## 1493 1
## 1494 1
## 1495 1
## 1496 1
## 1497 1
## 1498 1
## 1499 1
## 1500 1
## 1501 1
## 1502 1
## 1503 1
## 1504 1
## 1505 1
## 1506 1
## 1507 1
## 1508 1
## 1509 1
## 1510 1
## 1511 1
## 1512 1
## 1513 1
## 1514 1
## 1515 1
## 1516 1
## 1517 1
## 1518 2
## 1519 2
## 1520 2
## 1521 2
## 1522 2
## 1523 2
## 1524 2
## 1525 2
## 1526 2
## 1527 2
## 1528 2
## 1529 3
## 1530 3
## 1531 3
## 1532 3
## 1533 3
## 1534 3
## 1535 3
## 1536 3
## 1537 3
## 1538 3
## 1539 3
## 1540 3
## 1541 3
## 1542 3
## 1543 3
## 1544 3
## 1545 3
## 1546 3
## 1547 3
## 1548 3
## 1549 3
## 1550 3
## 1551 3
## 1552 3
## 1553 3
## 1554 3
## 1555 3
## 1556 4
## 1557 4
## 1558 4
## 1559 4
## 1560 4
## 1561 4
## 1562 4
## 1563 4
## 1564 4
## 1565 4
## 1566 4
## 1567 4
## 1568 4
## 1569 4
## 1570 4
## 1571 4
## 1572 4
## 1573 4
## 1574 4
## 1575 4
## 1576 4
## 1577 4
## 1578 4
## 1579 4
## 1580 4
## 1581 4
## 1582 5
## 1583 5
## 1584 5
## 1585 5
## 1586 5
## 1587 5
## 1588 5
## 1589 5
## 1590 5
## 1591 5
## 1592 5
## 1593 5
## 1594 5
## 1595 5
## 1596 5
## 1597 5
## 1598 5
## 1599 5
## 1600 5
## 1601 5
## 1602 5
## 1603 5
## 1604 5
## 1605 5
## 1606 5
## 1607 5
## 1608 5
## 1609 5
## 1610 6
## 1611 6
## 1612 6
## 1613 6
## 1614 6
## 1615 6
## 1616 6
## 1617 6
## 1618 6
## 1619 6
## 1620 6
## 1621 6
## 1622 6
## 1623 6
## 1624 6
## 1625 6
## 1626 6
## 1627 6
## 1628 6
## 1629 6
## 1630 6
## 1631 6
## 1632 6
## 1633 6
## 1634 6
## 1635 6
## 1636 6
## 1637 6
## 1638 6
## 1639 6
## 1640 6
## 1641 6
## 1642 6
## 1643 6
## 1644 7
## 1645 7
## 1646 7
## 1647 7
## 1648 7
## 1649 7
## 1650 7
## 1651 7
## 1652 7
## 1653 7
## 1654 7
## 1655 7
## 1656 7
## 1657 7
## 1658 7
## 1659 8
## 1660 8
## 1661 8
## 1662 8
## 1663 8
## 1664 8
## 1665 8
## 1666 8
## 1667 8
## 1668 8
## 1669 8
## 1670 8
## 1671 8
## 1672 8
## 1673 8
## 1674 9
## 1675 9
## 1676 9
## 1677 9
## 1678 9
## 1679 9
## 1680 9
## 1681 9
## 1682 9
## 1683 9
## 1684 9
## 1685 9
## 1686 9
## 1687 9
## 1688 9
## 1689 9
## 1690 9
## 1691 9
## 1692 9
## 1693 9
## 1694 10
## 1695 10
## 1696 10
## 1697 10
## 1698 10
## 1699 10
## 1700 10
## 1701 10
## 1702 10
## 1703 10
## 1704 10
## 1705 10
## 1706 10
## 1707 10
## 1708 10
## 1709 10
## 1710 10
## 1711 10
## 1712 10
## 1713 10
## 1714 10
## 1715 10
## 1716 10
## 1717 10
## 1718 10
## 1719 10
## 1720 10
## 1721 10
## 1722 10
## 1723 11
## 1724 11
## 1725 11
## 1726 11
## 1727 11
## 1728 11
## 1729 11
## 1730 11
## 1731 11
## 1732 11
## 1733 11
## 1734 11
## 1735 11
## 1736 11
## 1737 11
## 1738 11
## 1739 11
## 1740 11
## 1741 11
## 1742 12
## 1743 12
## 1744 12
## 1745 12
## 1746 12
## 1747 12
## 1748 12
## 1749 12
## 1750 12
## 1751 12
## 1752 12
## 1753 12
## 1754 12
## 1755 12
## 1756 12
## 1757 13
## 1758 13
## 1759 13
## 1760 13
## 1761 13
## 1762 13
## 1763 13
## 1764 13
## 1765 13
## 1766 13
## 1767 13
## 1768 13
## 1769 13
## 1770 13
## 1771 13
## 1772 13
## 1773 13
## 1774 13
## 1775 13
## 1776 13
## 1777 13
## 1778 14
## 1779 14
## 1780 14
## 1781 14
## 1782 14
## 1783 14
## 1784 14
## 1785 14
## 1786 14
## 1787 14
## 1788 14
## 1789 14
## 1790 14
## 1791 14
## 1792 14
## 1793 15
## 1794 15
## 1795 15
## 1796 15
## 1797 15
## 1798 15
## 1799 15
## 1800 15
## 1801 15
## 1802 15
## 1803 15
## 1804 15
## 1805 15
## 1806 16
## 1807 16
## 1808 16
## 1809 16
## 1810 16
## 1811 16
## 1812 16
## 1813 16
## 1814 16
## 1815 16
## 1816 16
## 1817 16
## 1818 16
## 1819 16
## 1820 16
## 1821 16
## 1822 16
## 1823 16
## 1824 16
## 1825 16
## 1826 16
## 1827 16
## 1828 16
## 1829 16
## 1830 16
## 1831 16
## 1832 16
## 1833 16
## 1834 17
## 1835 17
## 1836 17
## 1837 17
## 1838 17
## 1839 17
## 1840 17
## 1841 17
## 1842 17
## 1843 17
## 1844 17
## 1845 17
## 1846 17
## 1847 17
## 1848 17
## 1849 17
## 1850 17
## 1851 17
## 1852 17
## 1853 17
## 1854 17
## 1855 17
## 1856 17
## 1857 17
## 1858 18
## 1859 18
## 1860 18
## 1861 18
## 1862 18
## 1863 18
## 1864 18
## 1865 18
## 1866 18
## 1867 18
## 1868 18
## 1869 18
## 1870 18
## 1871 18
## 1872 19
## 1873 19
## 1874 19
## 1875 19
## 1876 19
## 1877 19
## 1878 19
## 1879 19
## 1880 19
## 1881 19
## 1882 19
## 1883 19
## 1884 19
## 1885 19
## 1886 19
## 1887 19
## 1888 19
## 1889 19
## 1890 19
## 1891 19
## 1892 20
## 1893 20
## 1894 20
## 1895 20
## 1896 20
## 1897 20
## 1898 20
## 1899 20
## 1900 20
## 1901 20
## 1902 20
## 1903 20
## 1904 20
## 1905 21
## 1906 21
## 1907 21
## 1908 21
## 1909 21
## 1910 21
## 1911 21
## 1912 21
## 1913 21
## 1914 21
## 1915 21
## 1916 21
## 1917 21
## 1918 21
## 1919 21
## 1920 21
## 1921 21
## 1922 21
## 1923 21
## 1924 21
## 1925 21
## 1926 21
## 1927 21
## 1928 21
## 1929 21
## 1930 21
## 1931 21
## 1932 22
## 1933 22
## 1934 22
## 1935 22
## 1936 22
## 1937 22
## 1938 22
## 1939 22
## 1940 22
## 1941 22
## 1942 22
## 1943 23
## 1944 23
## 1945 23
## 1946 23
## 1947 23
## 1948 23
## 1949 23
## 1950 23
## 1951 23
## 1952 23
## 1953 23
## 1954 23
## 1955 23
## 1956 23
## 1957 23
## 1958 24
## 1959 24
## 1960 24
## 1961 24
## 1962 24
## 1963 24
## 1964 24
## 1965 24
## 1966 24
## 1967 24
## 1968 24
## 1969 24
## 1970 25
## 1971 25
## 1972 25
## 1973 25
## 1974 25
## 1975 25
## 1976 25
## 1977 25
## 1978 25
## 1979 25
## 1980 25
## 1981 25
## 1982 25
## 1983 25
## 1984 25
## 1985 25
## 1986 25
## 1987 25
## 1988 25
## 1989 25
## 1990 25
## 1991 26
## 1992 26
## 1993 26
## 1994 26
## 1995 26
## 1996 26
## 1997 26
## 1998 26
## 1999 26
## 2000 26
## 2001 26
## 2002 26
## 2003 26
## 2004 26
## 2005 26
## 2006 26
## 2007 26
## 2008 26
## 2009 27
## 2010 27
## 2011 27
## 2012 27
## 2013 27
## 2014 27
## 2015 27
## 2016 27
## 2017 27
## 2018 27
## 2019 27
## 2020 27
## 2021 27
## 2022 27
## 2023 27
## 2024 27
## 2025 27
## 2026 27
## 2027 28
## 2028 28
## 2029 28
## 2030 28
## 2031 28
## 2032 28
## 2033 28
## 2034 28
## 2035 28
## 2036 28
## 2037 28
## 2038 28
## 2039 28
## 2040 28
## 2041 28
## 2042 28
## 2043 28
## 2044 28
## 2045 28
## 2046 29
## 2047 29
## 2048 29
## 2049 29
## 2050 29
## 2051 29
## 2052 29
## 2053 29
## 2054 29
## 2055 29
## 2056 29
## 2057 29
## 2058 29
## 2059 29
## 2060 29
## 2061 30
## 2062 30
## 2063 30
## 2064 30
## 2065 30
## 2066 30
## 2067 30
## 2068 30
## 2069 30
## 2070 30
## 2071 30
## 2072 30
## 2073 30
## 2074 30
## 2075 30
## 2076 30
## 2077 30
## 2078 30
## 2079 30
## 2080 30
## 2081 30
## 2082 30
## 2083 30
## 2084 30
## 2085 30
## 2086 30
## 2087 30
## 2088 1
## 2089 1
## 2090 1
## 2091 1
## 2092 1
## 2093 1
## 2094 1
## 2095 1
## 2096 1
## 2097 1
## 2098 1
## 2099 1
## 2100 1
## 2101 1
## 2102 1
## 2103 1
## 2104 1
## 2105 1
## 2106 1
## 2107 1
## 2108 1
## 2109 1
## 2110 1
## 2111 1
## 2112 2
## 2113 2
## 2114 2
## 2115 2
## 2116 2
## 2117 2
## 2118 2
## 2119 2
## 2120 2
## 2121 2
## 2122 2
## 2123 2
## 2124 2
## 2125 2
## 2126 2
## 2127 2
## 2128 2
## 2129 2
## 2130 2
## 2131 2
## 2132 2
## 2133 3
## 2134 3
## 2135 3
## 2136 3
## 2137 3
## 2138 3
## 2139 3
## 2140 3
## 2141 3
## 2142 3
## 2143 3
## 2144 3
## 2145 3
## 2146 3
## 2147 3
## 2148 3
## 2149 3
## 2150 3
## 2151 3
## 2152 3
## 2153 3
## 2154 3
## 2155 3
## 2156 3
## 2157 3
## 2158 3
## 2159 3
## 2160 3
## 2161 3
## 2162 3
## 2163 3
## 2164 3
## 2165 3
## 2166 3
## 2167 3
## 2168 3
## 2169 3
## 2170 3
## 2171 4
## 2172 4
## 2173 4
## 2174 4
## 2175 4
## 2176 4
## 2177 4
## 2178 4
## 2179 4
## 2180 4
## 2181 4
## 2182 4
## 2183 4
## 2184 4
## 2185 4
## 2186 4
## 2187 4
## 2188 4
## 2189 4
## 2190 4
## 2191 4
## 2192 4
## 2193 4
## 2194 4
## 2195 4
## 2196 4
## 2197 4
## 2198 4
## 2199 4
## 2200 5
## 2201 5
## 2202 5
## 2203 5
## 2204 5
## 2205 5
## 2206 5
## 2207 5
## 2208 5
## 2209 5
## 2210 5
## 2211 5
## 2212 5
## 2213 5
## 2214 5
## 2215 5
## 2216 6
## 2217 6
## 2218 6
## 2219 6
## 2220 6
## 2221 6
## 2222 6
## 2223 6
## 2224 6
## 2225 6
## 2226 6
## 2227 6
## 2228 6
## 2229 6
## 2230 6
## 2231 6
## 2232 6
## 2233 6
## 2234 6
## 2235 7
## 2236 7
## 2237 7
## 2238 7
## 2239 7
## 2240 7
## 2241 7
## 2242 7
## 2243 7
## 2244 7
## 2245 7
## 2246 7
## 2247 7
## 2248 7
## 2249 7
## 2250 7
## 2251 7
## 2252 7
## 2253 7
## 2254 7
## 2255 8
## 2256 8
## 2257 8
## 2258 8
## 2259 8
## 2260 8
## 2261 8
## 2262 8
## 2263 8
## 2264 8
## 2265 8
## 2266 8
## 2267 8
## 2268 8
## 2269 8
## 2270 8
## 2271 8
## 2272 8
## 2273 8
## 2274 8
## 2275 8
## 2276 8
## 2277 8
## 2278 8
## 2279 8
## 2280 8
## 2281 8
## 2282 8
## 2283 8
## 2284 8
## 2285 8
## 2286 8
## 2287 9
## 2288 9
## 2289 9
## 2290 9
## 2291 9
## 2292 9
## 2293 9
## 2294 9
## 2295 9
## 2296 9
## 2297 9
## 2298 9
## 2299 9
## 2300 9
## 2301 9
## 2302 9
## 2303 9
## 2304 9
## 2305 9
## 2306 9
## 2307 9
## 2308 9
## 2309 9
## 2310 9
## 2311 9
## 2312 9
## 2313 9
## 2314 9
## 2315 9
## 2316 9
## 2317 9
## 2318 9
## 2319 9
## 2320 9
## 2321 9
## 2322 9
## 2323 9
## 2324 9
## 2325 9
## 2326 9
## 2327 9
## 2328 9
## 2329 9
## 2330 9
## 2331 9
## 2332 9
## 2333 9
## 2334 9
## 2335 9
## 2336 9
## 2337 9
## 2338 9
## 2339 9
## 2340 9
## 2341 9
## 2342 9
## 2343 9
## 2344 9
## 2345 9
## 2346 9
## 2347 10
## 2348 10
## 2349 10
## 2350 10
## 2351 10
## 2352 10
## 2353 10
## 2354 10
## 2355 10
## 2356 10
## 2357 10
## 2358 10
## 2359 10
## 2360 10
## 2361 10
## 2362 10
## 2363 10
## 2364 10
## 2365 10
## 2366 10
## 2367 10
## 2368 10
## 2369 10
## 2370 10
## 2371 10
## 2372 10
## 2373 10
## 2374 10
## 2375 10
## 2376 10
## 2377 10
## 2378 10
## 2379 10
## 2380 10
## 2381 10
## 2382 10
## 2383 10
## 2384 10
## 2385 10
## 2386 11
## 2387 11
## 2388 11
## 2389 11
## 2390 11
## 2391 11
## 2392 11
## 2393 11
## 2394 11
## 2395 11
## 2396 11
## 2397 11
## 2398 11
## 2399 11
## 2400 11
## 2401 11
## 2402 11
## 2403 11
## 2404 11
## 2405 11
## 2406 11
## 2407 11
## 2408 11
## 2409 12
## 2410 12
## 2411 12
## 2412 12
## 2413 12
## 2414 12
## 2415 12
## 2416 12
## 2417 12
## 2418 12
## 2419 12
## 2420 12
## 2421 12
## 2422 12
## 2423 13
## 2424 13
## 2425 13
## 2426 13
## 2427 13
## 2428 13
## 2429 13
## 2430 13
## 2431 13
## 2432 14
## 2433 14
## 2434 14
## 2435 14
## 2436 14
## 2437 14
## 2438 14
## 2439 14
## 2440 15
## 2441 15
## 2442 15
## 2443 15
## 2444 16
## 2445 16
## 2446 16
## 2447 16
## 2448 16
## 2449 16
## 2450 16
## 2451 16
## 2452 16
## 2453 16
## 2454 16
## 2455 16
## 2456 17
## 2457 17
## 2458 17
## 2459 17
## 2460 18
## 2461 18
## 2462 18
## 2463 18
## 2464 18
## 2465 18
## 2466 18
## 2467 18
## 2468 18
## 2469 18
## 2470 18
## 2471 18
## 2472 18
## 2473 18
## 2474 18
## 2475 19
## 2476 19
## 2477 19
## 2478 19
## 2479 19
## 2480 19
## 2481 19
## 2482 19
## 2483 19
## 2484 19
## 2485 19
## 2486 19
## 2487 19
## 2488 19
## 2489 19
## 2490 19
## 2491 19
## 2492 19
## 2493 19
## 2494 19
## 2495 19
## 2496 19
## 2497 19
## 2498 19
## 2499 19
## 2500 19
## 2501 19
## 2502 19
## 2503 19
## 2504 19
## 2505 19
## 2506 19
## 2507 19
## 2508 19
## 2509 19
## 2510 19
## 2511 19
## 2512 19
## 2513 19
## 2514 19
## 2515 19
## 2516 19
## 2517 19
## 2518 20
## 2519 20
## 2520 20
## 2521 20
## 2522 20
## 2523 20
## 2524 20
## 2525 20
## 2526 20
## 2527 20
## 2528 20
## 2529 20
## 2530 20
## 2531 21
## 2532 21
## 2533 21
## 2534 21
## 2535 21
## 2536 21
## 2537 21
## 2538 21
## 2539 21
## 2540 21
## 2541 21
## 2542 21
## 2543 21
## 2544 21
## 2545 21
## 2546 21
## 2547 21
## 2548 21
## 2549 21
## 2550 21
## 2551 21
## 2552 21
## 2553 21
## 2554 21
## 2555 21
## 2556 21
## 2557 21
## 2558 22
## 2559 22
## 2560 22
## 2561 22
## 2562 22
## 2563 22
## 2564 22
## 2565 22
## 2566 22
## 2567 22
## 2568 22
## 2569 22
## 2570 22
## 2571 22
## 2572 22
## 2573 22
## 2574 22
## 2575 22
## 2576 22
## 2577 22
## 2578 22
## 2579 22
## 2580 22
## 2581 22
## 2582 22
## 2583 22
## 2584 22
## 2585 22
## 2586 22
## 2587 22
## 2588 22
## 2589 22
## 2590 23
## 2591 23
## 2592 23
## 2593 23
## 2594 23
## 2595 23
## 2596 23
## 2597 23
## 2598 23
## 2599 23
## 2600 23
## 2601 23
## 2602 23
## 2603 23
## 2604 23
## 2605 23
## 2606 23
## 2607 23
## 2608 23
## 2609 23
## 2610 23
## 2611 23
## 2612 23
## 2613 23
## 2614 23
## 2615 23
## 2616 23
## 2617 23
## 2618 23
## 2619 23
## 2620 23
## 2621 23
## 2622 23
## 2623 23
## 2624 23
## 2625 24
## 2626 24
## 2627 24
## 2628 24
## 2629 24
## 2630 24
## 2631 24
## 2632 24
## 2633 24
## 2634 24
## 2635 24
## 2636 24
## 2637 24
## 2638 24
## 2639 24
## 2640 24
## 2641 24
## 2642 24
## 2643 24
## 2644 24
## 2645 24
## 2646 24
## 2647 24
## 2648 24
## 2649 24
## 2650 24
## 2651 24
## 2652 24
## 2653 24
## 2654 24
## 2655 24
## 2656 24
## 2657 24
## 2658 24
## 2659 24
## 2660 24
## 2661 24
## 2662 24
## 2663 24
## 2664 24
## 2665 24
## 2666 24
## 2667 24
## 2668 24
## 2669 24
## 2670 24
## 2671 24
## 2672 24
## 2673 24
## 2674 24
## 2675 24
## 2676 24
## 2677 24
## 2678 24
## 2679 24
## 2680 24
## 2681 24
## 2682 24
## 2683 24
## 2684 24
## 2685 24
## 2686 25
## 2687 25
## 2688 25
## 2689 25
## 2690 25
## 2691 25
## 2692 26
## 2693 26
## 2694 26
## 2695 26
## 2696 26
## 2697 26
## 2698 26
## 2699 26
## 2700 26
## 2701 26
## 2702 26
## 2703 26
## 2704 27
## 2705 27
## 2706 27
## 2707 27
## 2708 27
## 2709 27
## 2710 27
## 2711 27
## 2712 27
## 2713 27
## 2714 27
## 2715 27
## 2716 27
## 2717 27
## 2718 27
## 2719 27
## 2720 28
## 2721 28
## 2722 28
## 2723 28
## 2724 28
## 2725 28
## 2726 28
## 2727 28
## 2728 28
## 2729 28
## 2730 29
## 2731 29
## 2732 29
## 2733 29
## 2734 29
## 2735 29
## 2736 29
## 2737 29
## 2738 29
## 2739 29
## 2740 29
## 2741 29
## 2742 29
## 2743 30
## 2744 30
## 2745 30
## 2746 30
## 2747 30
## 2748 30
## 2749 30
## 2750 30
## 2751 30
## 2752 30
## 2753 30
## 2754 30
## 2755 30
## 2756 30
## 2757 30
## 2758 30
## 2759 30
## 2760 30
## 2761 30
## 2762 30
## 2763 30
## 2764 30
## 2765 30
## 2766 30
## 2767 31
## 2768 31
## 2769 31
## 2770 31
## 2771 31
## 2772 31
## 2773 31
## 2774 31
## 2775 31
## 2776 31
## 2777 31
## 2778 31
## 2779 31
## 2780 31
## 2781 31
## 2782 31
## 2783 31
## 2784 31
## 2785 31
## 2786 31
## 2787 31
## 2788 31
## 2789 31
## 2790 31
## 2791 31
## 2792 31
## 2793 31
## 2794 31
## 2795 31
## 2796 31
## 2797 31
## 2798 31
## 2799 31
## 2800 31
## 2801 31
## 2802 31
## 2803 31
## 2804 31
## 2805 31
## 2806 31
## 2807 31
## 2808 31
## 2809 31
## 2810 31
## 2811 31
## 2812 31
## 2813 31
## 2814 31
## 2815 31
## 2816 31
## 2817 31
## 2818 31
## 2819 31
## 2820 31
## 2821 31
## 2822 31
## 2823 31
## 2824 31
## 2825 31
## 2826 31
## 2827 31
## 2828 31
## 2829 31
## 2830 31
## 2831 31
## 2832 31
## 2833 31
## 2834 31
## 2835 31
## 2836 1
## 2837 1
## 2838 1
## 2839 1
## 2840 1
## 2841 1
## 2842 1
## 2843 1
## 2844 1
## 2845 2
## 2846 2
## 2847 2
## 2848 2
## 2849 2
## 2850 2
## 2851 2
## 2852 2
## 2853 2
## 2854 2
## 2855 2
## 2856 2
## 2857 2
## 2858 2
## 2859 2
## 2860 3
## 2861 3
## 2862 3
## 2863 3
## 2864 3
## 2865 3
## 2866 3
## 2867 3
## 2868 3
## 2869 3
## 2870 3
## 2871 3
## 2872 3
## 2873 3
## 2874 3
## 2875 3
## 2876 3
## 2877 3
## 2878 3
## 2879 3
## 2880 3
## 2881 3
## 2882 3
## 2883 3
## 2884 3
## 2885 3
## 2886 4
## 2887 4
## 2888 4
## 2889 4
## 2890 4
## 2891 4
## 2892 4
## 2893 4
## 2894 5
## 2895 5
## 2896 5
## 2897 5
## 2898 5
## 2899 5
## 2900 5
## 2901 5
## 2902 6
## 2903 6
## 2904 6
## 2905 6
## 2906 6
## 2907 6
## 2908 6
## 2909 6
## 2910 6
## 2911 6
## 2912 6
## 2913 6
## 2914 6
## 2915 6
## 2916 6
## 2917 6
## 2918 6
## 2919 6
## 2920 7
## 2921 7
## 2922 7
## 2923 7
## 2924 7
## 2925 7
## 2926 7
## 2927 7
## 2928 7
## 2929 7
## 2930 7
## 2931 7
## 2932 7
## 2933 7
## 2934 7
## 2935 7
## 2936 7
## 2937 7
## 2938 7
## 2939 7
## 2940 7
## 2941 7
## 2942 7
## 2943 7
## 2944 7
## 2945 7
## 2946 7
## 2947 7
## 2948 7
## 2949 7
## 2950 7
## 2951 7
## 2952 7
## 2953 7
## 2954 7
## 2955 7
## 2956 7
## 2957 7
## 2958 7
## 2959 8
## 2960 8
## 2961 8
## 2962 8
## 2963 8
## 2964 8
## 2965 8
## 2966 8
## 2967 8
## 2968 8
## 2969 8
## 2970 8
## 2971 8
## 2972 8
## 2973 8
## 2974 9
## 2975 9
## 2976 9
## 2977 9
## 2978 9
## 2979 9
## 2980 9
## 2981 9
## 2982 9
## 2983 9
## 2984 9
## 2985 9
## 2986 9
## 2987 9
## 2988 9
## 2989 9
## 2990 9
## 2991 10
## 2992 10
## 2993 10
## 2994 10
## 2995 10
## 2996 10
## 2997 10
## 2998 10
## 2999 11
## 3000 11
## 3001 11
## 3002 11
## 3003 11
## 3004 11
## 3005 11
## 3006 11
## 3007 11
## 3008 11
## 3009 11
## 3010 11
## 3011 11
## 3012 11
## 3013 11
## 3014 11
## 3015 11
## 3016 11
## 3017 11
## 3018 11
## 3019 11
## 3020 11
## 3021 11
## 3022 11
## 3023 11
## 3024 11
## 3025 11
## 3026 11
## 3027 11
## 3028 11
## 3029 11
## 3030 11
## 3031 11
## 3032 11
## 3033 11
## 3034 11
## 3035 12
## 3036 12
## 3037 12
## 3038 12
## 3039 12
## 3040 12
## 3041 12
## 3042 12
## 3043 12
## 3044 12
## 3045 12
## 3046 12
## 3047 12
## 3048 12
## 3049 12
## 3050 12
## 3051 12
## 3052 12
## 3053 12
## 3054 12
## 3055 12
## 3056 12
## 3057 12
## 3058 12
## 3059 12
## 3060 12
## 3061 12
## 3062 12
## 3063 12
## 3064 12
## 3065 12
## 3066 12
## 3067 12
## 3068 12
## 3069 12
## 3070 13
## 3071 13
## 3072 13
## 3073 13
## 3074 13
## 3075 13
## 3076 13
## 3077 13
## 3078 13
## 3079 13
## 3080 14
## 3081 14
## 3082 14
## 3083 14
## 3084 14
## 3085 15
## 3086 15
## 3087 15
## 3088 15
## 3089 15
## 3090 16
## 3091 16
## 3092 16
## 3093 16
## 3094 16
## 3095 16
## 3096 16
## 3097 16
## 3098 16
## 3099 16
## 3100 16
## 3101 17
## 3102 17
## 3103 17
## 3104 17
## 3105 18
## 3106 18
## 3107 18
## 3108 18
## 3109 18
## 3110 18
## 3111 18
## 3112 18
## 3113 18
## 3114 18
## 3115 18
## 3116 18
## 3117 18
## 3118 18
## 3119 18
## 3120 18
## 3121 18
## 3122 18
## 3123 18
## 3124 18
## 3125 18
## 3126 18
## 3127 18
## 3128 18
## 3129 18
## 3130 18
## 3131 18
## 3132 18
## 3133 18
## 3134 18
## 3135 19
## 3136 19
## 3137 19
## 3138 19
## 3139 19
## 3140 19
## 3141 19
## 3142 19
## 3143 19
## 3144 20
## 3145 20
## 3146 20
## 3147 20
## 3148 20
## 3149 20
## 3150 20
## 3151 20
## 3152 20
## 3153 20
## 3154 20
## 3155 20
## 3156 20
## 3157 20
## 3158 20
## 3159 20
## 3160 20
## 3161 20
## 3162 20
## 3163 20
## 3164 20
## 3165 20
## 3166 20
## 3167 20
## 3168 20
## 3169 20
## 3170 20
## 3171 20
## 3172 20
## 3173 20
## 3174 20
## 3175 20
## 3176 20
## 3177 20
## 3178 20
## 3179 20
## 3180 20
## 3181 20
## 3182 20
## 3183 20
## 3184 21
## 3185 21
## 3186 21
## 3187 21
## 3188 21
## 3189 21
## 3190 21
## 3191 21
## 3192 21
## 3193 21
## 3194 21
## 3195 21
## 3196 21
## 3197 21
## 3198 21
## 3199 21
## 3200 21
## 3201 21
## 3202 21
## 3203 21
## 3204 21
## 3205 21
## 3206 21
## 3207 21
## 3208 21
## 3209 21
## 3210 21
## 3211 21
## 3212 21
## 3213 21
## 3214 21
## 3215 21
## 3216 21
## 3217 21
## 3218 21
## 3219 21
## 3220 21
## 3221 21
## 3222 21
## 3223 21
## 3224 21
## 3225 21
## 3226 21
## 3227 21
## 3228 21
## 3229 21
## 3230 21
## 3231 21
## 3232 21
## 3233 21
## 3234 23
## 3235 23
## 3236 23
## 3237 23
## 3238 23
## 3239 23
## 3240 23
## 3241 24
## 3242 24
## 3243 24
## 3244 25
## 3245 26
## 3246 26
## 3247 26
## 3248 26
## 3249 26
## 3250 26
## 3251 26
## 3252 26
## 3253 26
## 3254 26
## 3255 26
## 3256 27
## 3257 27
## 3258 27
## 3259 27
## 3260 28
## 3261 28
## 3262 28
## 3263 28
## 3264 28
## 3265 28
## 3266 28
## 3267 29
## 3268 30
## 3269 30
## 3270 30
## 3271 30
## 3272 1
## 3273 1
## 3274 1
## 3275 1
## 3276 2
## 3277 2
## 3278 2
## 3279 2
## 3280 2
## 3281 2
## 3282 3
## 3283 3
## 3284 3
## 3285 3
## 3286 3
## 3287 3
## 3288 3
## 3289 3
## 3290 4
## 3291 4
## 3292 4
## 3293 4
## 3294 4
## 3295 4
## 3296 4
## 3297 4
## 3298 4
## 3299 4
## 3300 4
## 3301 4
## 3302 4
## 3303 4
## 3304 5
## 3305 5
## 3306 5
## 3307 5
## 3308 5
## 3309 5
## 3310 5
## 3311 5
## 3312 5
## 3313 5
## 3314 5
## 3315 5
## 3316 5
## 3317 5
## 3318 5
## 3319 5
## 3320 5
## 3321 5
## 3322 5
## 3323 5
## 3324 5
## 3325 5
## 3326 5
## 3327 5
## 3328 5
## 3329 5
## 3330 5
## 3331 5
## 3332 5
## 3333 5
## 3334 5
## 3335 5
## 3336 5
## 3337 5
## 3338 5
## 3339 5
## 3340 5
## 3341 5
## 3342 5
## 3343 5
## 3344 5
## 3345 5
## 3346 5
## 3347 5
## 3348 5
## 3349 5
## 3350 5
## 3351 5
## 3352 5
## 3353 5
## 3354 5
## 3355 5
## 3356 5
## 3357 5
## 3358 5
## 3359 5
## 3360 5
## 3361 5
## 3362 5
## 3363 5
## 3364 5
## 3365 5
## 3366 5
## 3367 5
## 3368 5
## 3369 5
## 3370 5
## 3371 5
## 3372 5
## 3373 5
## 3374 5
## 3375 5
## 3376 5
## 3377 5
## 3378 5
## 3379 5
## 3380 5
## 3381 5
## 3382 5
## 3383 5
## 3384 5
## 3385 5
## 3386 5
## 3387 5
## 3388 5
## 3389 5
## 3390 5
## 3391 5
## 3392 5
## 3393 5
## 3394 5
## 3395 5
## 3396 5
## 3397 5
## 3398 5
## 3399 5
## 3400 5
## 3401 5
## 3402 5
## 3403 5
## 3404 5
## 3405 5
## 3406 5
## 3407 5
## 3408 5
## 3409 5
## 3410 5
## 3411 5
## 3412 5
## 3413 5
## 3414 5
## 3415 5
## 3416 5
## 3417 5
## 3418 5
## 3419 5
## 3420 5
## 3421 5
## 3422 5
## 3423 5
## 3424 5
## 3425 5
## 3426 5
## 3427 5
## 3428 6
## 3429 6
## 3430 6
## 3431 6
## 3432 6
## 3433 6
## 3434 6
## 3435 6
## 3436 6
## 3437 6
## 3438 6
## 3439 6
## 3440 6
## 3441 6
## 3442 6
## 3443 7
## 3444 7
## 3445 7
## 3446 7
## 3447 8
## 3448 10
## 3449 10
## 3450 10
## 3451 10
## 3452 10
## 3453 10
## 3454 10
## 3455 10
## 3456 11
## 3457 11
## 3458 12
## 3459 12
## 3460 13
## 3461 14
## 3462 14
## 3463 14
## 3464 15
## 3465 17
## 3466 17
## 3467 17
## 3468 17
## 3469 17
## 3470 17
## 3471 17
## 3472 18
## 3473 18
## 3474 18
## 3475 18
## 3476 19
## 3477 19
## 3478 19
## 3479 19
## 3480 19
## 3481 19
## 3482 19
## 3483 19
## 3484 19
## 3485 19
## 3486 19
## 3487 19
## 3488 19
## 3489 19
## 3490 19
## 3491 19
## 3492 19
## 3493 19
## 3494 19
## 3495 19
## 3496 19
## 3497 19
## 3498 19
## 3499 19
## 3500 19
## 3501 19
## 3502 19
## 3503 19
## 3504 20
## 3505 20
## 3506 20
## 3507 20
## 3508 20
## 3509 20
## 3510 20
## 3511 20
## 3512 20
## 3513 20
## 3514 21
## 3515 21
## 3516 21
## 3517 21
## 3518 21
## 3519 21
## 3520 21
## 3521 21
## 3522 21
## 3523 21
## 3524 21
## 3525 21
## 3526 22
## 3527 22
## 3528 22
## 3529 22
## 3530 22
## 3531 22
## 3532 22
## 3533 22
## 3534 22
## 3535 22
## 3536 22
## 3537 22
## 3538 22
## 3539 22
## 3540 22
## 3541 22
## 3542 22
## 3543 22
## 3544 22
## 3545 22
## 3546 22
## 3547 22
## 3548 22
## 3549 22
## 3550 22
## 3551 22
## 3552 22
## 3553 22
## 3554 23
## 3555 23
## 3556 23
## 3557 23
## 3558 23
## 3559 23
## 3560 23
## 3561 23
## 3562 23
## 3563 23
## 3564 23
## 3565 23
## 3566 24
## 3567 24
## 3568 24
## 3569 24
## 3570 24
## 3571 24
## 3572 24
## 3573 24
## 3574 24
## 3575 24
## 3576 24
## 3577 24
## 3578 24
## 3579 24
## 3580 24
## 3581 24
## 3582 24
## 3583 24
## 3584 24
## 3585 24
## 3586 24
## 3587 24
## 3588 24
## 3589 25
## 3590 25
## 3591 25
## 3592 25
## 3593 25
## 3594 25
## 3595 25
## 3596 25
## 3597 25
## 3598 25
## 3599 25
## 3600 25
## 3601 25
## 3602 25
## 3603 25
## 3604 25
## 3605 25
## 3606 25
## 3607 25
## 3608 25
## 3609 25
## 3610 25
## 3611 25
## 3612 25
## 3613 26
## 3614 26
## 3615 26
## 3616 26
## 3617 26
## 3618 26
## 3619 26
## 3620 26
## 3621 26
## 3622 26
## 3623 27
## 3624 27
## 3625 27
## 3626 27
## 3627 27
## 3628 28
## 3629 28
## 3630 28
## 3631 28
## 3632 28
## 3633 28
## 3634 28
## 3635 28
## 3636 28
## 3637 28
## 3638 28
## 3639 28
## 3640 28
## 3641 28
## 3642 28
## 3643 28
## 3644 28
## 3645 29
## 3646 29
## 3647 29
## 3648 30
## 3649 30
## 3650 30
## 3651 30
## 3652 30
## 3653 30
## 3654 30
## 3655 30
## 3656 30
## 3657 30
## 3658 30
## 3659 30
## 3660 30
## 3661 30
## 3662 30
## 3663 30
## 3664 30
## 3665 30
## 3666 30
## 3667 30
## 3668 30
## 3669 30
## 3670 30
## 3671 30
## 3672 30
## 3673 30
## 3674 30
## 3675 30
## 3676 30
## 3677 30
## 3678 30
## 3679 30
## 3680 30
## 3681 30
## 3682 30
## 3683 30
## 3684 30
## 3685 30
## 3686 30
## 3687 30
## 3688 30
## 3689 30
## 3690 30
## 3691 30
## 3692 30
## 3693 30
## 3694 30
## 3695 30
## 3696 30
## 3697 30
## 3698 30
## 3699 30
## 3700 30
## 3701 30
## 3702 30
## 3703 30
## 3704 30
## 3705 30
## 3706 30
## 3707 30
## 3708 30
## 3709 30
## 3710 30
## 3711 31
## 3712 31
## 3713 31
## 3714 31
## 3715 31
## 3716 31
## 3717 31
## 3718 31
## 3719 31
## 3720 31
## 3721 31
## 3722 31
## 3723 31
## 3724 31
## 3725 31
## 3726 31
## 3727 31
## 3728 31
## 3729 31
## 3730 31
## 3731 31
## 3732 31
## 3733 31
## 3734 31
## 3735 31
## 3736 31
## 3737 31
## 3738 31
## 3739 1
## 3740 1
## 3741 1
## 3742 1
## 3743 1
## 3744 1
## 3745 1
## 3746 2
## 3747 2
## 3748 2
## 3749 2
## 3750 2
## 3751 2
## 3752 2
## 3753 2
## 3754 2
## 3755 2
## 3756 2
## 3757 2
## 3758 2
## 3759 2
## 3760 2
## 3761 2
## 3762 2
## 3763 2
## 3764 2
## 3765 2
## 3766 2
## 3767 2
## 3768 2
## 3769 2
## 3770 2
## 3771 2
## 3772 3
## 3773 3
## 3774 4
## 3775 4
## 3776 4
## 3777 4
## 3778 4
## 3779 4
## 3780 4
## 3781 4
## 3782 4
## 3783 5
## 3784 5
## 3785 5
## 3786 6
## 3787 6
## 3788 6
## 3789 6
## 3790 6
## 3791 7
## 3792 7
## 3793 7
## 3794 7
## 3795 8
## 3796 8
## 3797 8
## 3798 8
## 3799 8
## 3800 8
## 3801 8
## 3802 8
## 3803 8
## 3804 8
## 3805 8
## 3806 9
## 3807 9
## 3808 9
## 3809 9
## 3810 9
## 3811 9
## 3812 9
## 3813 9
## 3814 10
## 3815 10
## 3816 12
## 3817 12
## 3818 12
## 3819 12
## 3820 12
## 3821 12
## 3822 13
## 3823 13
## 3824 13
## 3825 13
## 3826 14
## 3827 15
## 3828 15
## 3829 16
## 3830 16
## 3831 17
## 3832 17
## 3833 18
## 3834 18
## 3835 19
## 3836 21
## 3837 21
## 3838 21
## 3839 22
## 3840 22
## 3841 22
## 3842 22
## 3843 22
## 3844 23
## 3845 23
## 3846 25
## 3847 25
## 3848 25
## 3849 26
## 3850 26
## 3851 26
## 3852 26
## 3853 27
## 3854 27
## 3855 28
## 3856 28
## 3857 28
## 3858 28
## 3859 28
## 3860 29
## 3861 29
## 3862 29
## 3863 30
## 3864 31
## 3865 1
## 3866 1
## 3867 1
## 3868 1
## 3869 1
## 3870 1
## 3871 1
## 3872 2
## 3873 2
## 3874 3
## 3875 3
## 3876 3
## 3877 3
## 3878 3
## 3879 3
## 3880 3
## 3881 4
## 3882 4
## 3883 4
## 3884 4
## 3885 4
## 3886 4
## 3887 5
## 3888 5
## 3889 5
## 3890 5
## 3891 5
## 3892 5
## 3893 5
## 3894 5
## 3895 6
## 3896 6
## 3897 6
## 3898 6
## 3899 6
## 3900 6
## 3901 6
## 3902 6
## 3903 6
## 3904 6
## 3905 6
## 3906 6
## 3907 6
## 3908 6
## 3909 6
## 3910 6
## 3911 6
## 3912 6
## 3913 6
## 3914 6
## 3915 6
## 3916 6
## 3917 6
## 3918 6
## 3919 6
## 3920 6
## 3921 6
## 3922 6
## 3923 6
## 3924 6
## 3925 6
## 3926 6
## 3927 6
## 3928 7
## 3929 8
## 3930 8
## 3931 8
## 3932 8
## 3933 8
## 3934 8
## 3935 8
## 3936 8
## 3937 8
## 3938 8
## 3939 8
## 3940 8
## 3941 8
## 3942 9
## 3943 9
## 3944 9
## 3945 9
## 3946 9
## 3947 9
## 3948 9
## 3949 9
## 3950 9
## 3951 9
## 3952 9
## 3953 9
## 3954 9
## 3955 9
## 3956 9
## 3957 9
## 3958 9
## 3959 9
## 3960 9
## 3961 9
## 3962 10
## 3963 10
## 3964 10
## 3965 10
## 3966 10
## 3967 10
## 3968 11
## 3969 11
## 3970 11
## 3971 11
## 3972 11
## 3973 11
## 3974 11
## 3975 11
## 3976 11
## 3977 11
## 3978 11
## 3979 11
## 3980 11
## 3981 11
## 3982 11
## 3983 11
## 3984 11
## 3985 11
## 3986 11
## 3987 11
## 3988 12
## 3989 12
## 3990 12
## 3991 12
## 3992 12
## 3993 12
## 3994 12
## 3995 12
## 3996 12
## 3997 12
## 3998 12
## 3999 12
## 4000 12
## 4001 12
## 4002 12
## 4003 12
## 4004 12
## 4005 12
## 4006 12
## 4007 12
## 4008 12
## 4009 12
## 4010 12
## 4011 12
## 4012 12
## 4013 12
## 4014 12
## 4015 12
## 4016 12
## 4017 12
## 4018 12
## 4019 12
## 4020 12
## 4021 12
## 4022 12
## 4023 12
## 4024 12
## 4025 12
## 4026 12
## 4027 12
## 4028 12
## 4029 12
## 4030 12
## 4031 12
## 4032 12
## 4033 12
## 4034 12
## 4035 12
## 4036 12
## 4037 12
## 4038 12
## 4039 12
## 4040 12
## 4041 12
## 4042 12
## 4043 12
## 4044 12
## 4045 12
## 4046 12
## 4047 12
## 4048 12
## 4049 12
## 4050 12
## 4051 12
## 4052 12
## 4053 12
## 4054 12
## 4055 12
## 4056 12
## 4057 12
## 4058 12
## 4059 12
## 4060 12
## 4061 12
## 4062 12
## 4063 12
## 4064 12
## 4065 12
## 4066 12
## 4067 12
## 4068 12
## 4069 12
## 4070 12
## 4071 12
## 4072 12
## 4073 12
## 4074 12
## 4075 12
## 4076 12
## 4077 12
## 4078 12
## 4079 12
## 4080 12
## 4081 12
## 4082 12
## 4083 12
## 4084 12
## 4085 12
## 4086 12
## 4087 12
## 4088 12
## 4089 12
## 4090 12
## 4091 12
## 4092 12
## 4093 12
## 4094 12
## 4095 12
## 4096 12
## 4097 12
## 4098 12
## 4099 12
## 4100 12
## 4101 12
## 4102 12
## 4103 12
## 4104 12
## 4105 12
## 4106 12
## 4107 12
## 4108 13
## 4109 13
## 4110 13
## 4111 13
## 4112 13
## 4113 13
## 4114 13
## 4115 13
## 4116 13
## 4117 14
## 4118 14
## 4119 14
## 4120 14
## 4121 14
## 4122 14
## 4123 14
## 4124 14
## 4125 14
## 4126 14
## 4127 14
## 4128 15
## 4129 15
## 4130 15
## 4131 15
## 4132 15
## 4133 15
## 4134 15
## 4135 15
## 4136 15
## 4137 15
## 4138 16
## 4139 16
## 4140 17
## 4141 17
## 4142 17
## 4143 17
## 4144 18
## 4145 19
## 4146 19
## 4147 19
## 4148 19
## 4149 19
## 4150 19
## 4151 19
## 4152 19
## 4153 19
## 4154 19
## 4155 20
## 4156 20
## 4157 20
## 4158 20
## 4159 20
## 4160 20
## 4161 20
## 4162 20
## 4163 20
## 4164 21
## 4165 21
## 4166 21
## 4167 21
## 4168 22
## 4169 22
## 4170 22
## 4171 22
## 4172 22
## 4173 22
## 4174 23
## 4175 23
## 4176 24
## 4177 24
## 4178 24
## 4179 25
## 4180 25
## 4181 25
## 4182 25
## 4183 25
## 4184 26
## 4185 26
## 4186 26
## 4187 26
## 4188 26
## 4189 26
## 4190 26
## 4191 26
## 4192 26
## 4193 26
## 4194 26
## 4195 26
## 4196 26
## 4197 26
## 4198 26
## 4199 26
## 4200 26
## 4201 26
## 4202 26
## 4203 26
## 4204 26
## 4205 26
## 4206 26
## 4207 26
## 4208 26
## 4209 26
## 4210 26
## 4211 26
## 4212 26
## 4213 26
## 4214 26
## 4215 26
## 4216 26
## 4217 26
## 4218 26
## 4219 26
## 4220 26
## 4221 26
## 4222 26
## 4223 26
## 4224 26
## 4225 26
## 4226 27
## 4227 27
## 4228 27
## 4229 27
## 4230 27
## 4231 27
## 4232 27
## 4233 27
## 4234 27
## 4235 27
## 4236 27
## 4237 27
## 4238 27
## 4239 27
## 4240 27
## 4241 27
## 4242 27
## 4243 27
## 4244 27
## 4245 27
## 4246 27
## 4247 27
## 4248 27
## 4249 27
## 4250 27
## 4251 27
## 4252 27
## 4253 27
## 4254 27
## 4255 27
## 4256 27
## 4257 27
## 4258 27
## 4259 27
## 4260 27
## 4261 27
## 4262 27
## 4263 27
## 4264 27
## 4265 27
## 4266 27
## 4267 28
## 4268 28
## 4269 28
## 4270 28
## 4271 28
## 4272 28
## 4273 29
## 4274 29
## 4275 29
## 4276 1
## 4277 1
## 4278 1
## 4279 1
## 4280 1
## 4281 1
## 4282 1
## 4283 1
## 4284 1
## 4285 1
## 4286 1
## 4287 1
## 4288 1
## 4289 2
## 4290 2
## 4291 2
## 4292 2
## 4293 2
## 4294 2
## 4295 2
## 4296 2
## 4297 2
## 4298 2
## 4299 2
## 4300 2
## 4301 2
## 4302 2
## 4303 2
## 4304 2
## 4305 2
## 4306 2
## 4307 2
## 4308 2
## 4309 2
## 4310 2
## 4311 2
## 4312 3
## 4313 3
## 4314 3
## 4315 4
## 4316 4
## 4317 4
## 4318 4
## 4319 4
## 4320 4
## 4321 4
## 4322 4
## 4323 4
## 4324 4
## 4325 4
## 4326 4
## 4327 4
## 4328 4
## 4329 4
## 4330 4
## 4331 4
## 4332 4
## 4333 4
## 4334 4
## 4335 4
## 4336 4
## 4337 4
## 4338 4
## 4339 5
## 4340 5
## 4341 5
## 4342 5
## 4343 5
## 4344 5
## 4345 5
## 4346 5
## 4347 5
## 4348 5
## 4349 5
## 4350 5
## 4351 5
## 4352 5
## 4353 5
## 4354 7
## 4355 7
## 4356 7
## 4357 7
## 4358 7
## 4359 7
## 4360 7
## 4361 7
## 4362 7
## 4363 7
## 4364 7
## 4365 7
## 4366 7
## 4367 8
## 4368 8
## 4369 8
## 4370 8
## 4371 8
## 4372 9
## 4373 9
## 4374 9
## 4375 9
## 4376 9
## 4377 9
## 4378 9
## 4379 9
## 4380 9
## 4381 10
## 4382 10
## 4383 10
## 4384 11
## 4385 11
## 4386 11
## 4387 11
## 4388 11
## 4389 11
## 4390 11
## 4391 11
## 4392 11
## 4393 11
## 4394 11
## 4395 11
## 4396 11
## 4397 11
## 4398 12
## 4399 12
## 4400 12
## 4401 12
## 4402 12
## 4403 12
## 4404 12
## 4405 12
## 4406 12
## 4407 13
## 4408 13
## 4409 13
## 4410 13
## 4411 13
## 4412 14
## 4413 14
## 4414 14
## 4415 14
## 4416 14
## 4417 14
## 4418 14
## 4419 15
## 4420 15
## 4421 15
## 4422 15
## 4423 15
## 4424 16
## 4425 16
## 4426 16
## 4427 16
## 4428 16
## 4429 17
## 4430 17
## 4431 17
## 4432 17
## 4433 17
## 4434 17
## 4435 17
## 4436 17
## 4437 17
## 4438 18
## 4439 18
## 4440 18
## 4441 18
## 4442 18
## 4443 18
## 4444 18
## 4445 18
## 4446 18
## 4447 18
## 4448 18
## 4449 18
## 4450 19
## 4451 19
## 4452 19
## 4453 19
## 4454 19
## 4455 19
## 4456 19
## 4457 19
## 4458 19
## 4459 19
## 4460 19
## 4461 19
## 4462 19
## 4463 19
## 4464 19
## 4465 19
## 4466 19
## 4467 19
## 4468 19
## 4469 19
## 4470 19
## 4471 19
## 4472 19
## 4473 19
## 4474 19
## 4475 19
## 4476 19
## 4477 19
## 4478 19
## 4479 19
## 4480 19
## 4481 19
## 4482 19
## 4483 20
## 4484 20
## 4485 20
## 4486 20
## 4487 20
## 4488 20
## 4489 20
## 4490 20
## 4491 20
## 4492 20
## 4493 20
## 4494 20
## 4495 20
## 4496 20
## 4497 20
## 4498 20
## 4499 21
## 4500 21
## 4501 21
## 4502 21
## 4503 21
## 4504 21
## 4505 21
## 4506 21
## 4507 21
## 4508 21
## 4509 21
## 4510 21
## 4511 21
## 4512 21
## 4513 22
## 4514 22
## 4515 22
## 4516 22
## 4517 22
## 4518 22
## 4519 22
## 4520 22
## 4521 22
## 4522 22
## 4523 22
## 4524 23
## 4525 23
## 4526 23
## 4527 23
## 4528 23
## 4529 23
## 4530 24
## 4531 24
## 4532 24
## 4533 24
## 4534 24
## 4535 24
## 4536 24
## 4537 24
## 4538 24
## 4539 24
## 4540 24
## 4541 24
## 4542 24
## 4543 24
## 4544 24
## 4545 24
## 4546 24
## 4547 24
## 4548 24
## 4549 24
## 4550 24
## 4551 24
## 4552 24
## 4553 24
## 4554 24
## 4555 24
## 4556 24
## 4557 24
## 4558 24
## 4559 24
## 4560 24
## 4561 24
## 4562 24
## 4563 24
## 4564 24
## 4565 24
## 4566 24
## 4567 24
## 4568 24
## 4569 24
## 4570 24
## 4571 24
## 4572 24
## 4573 24
## 4574 24
## 4575 24
## 4576 24
## 4577 24
## 4578 24
## 4579 24
## 4580 24
## 4581 24
## 4582 24
## 4583 24
## 4584 24
## 4585 24
## 4586 24
## 4587 24
## 4588 24
## 4589 24
## 4590 24
## 4591 24
## 4592 24
## 4593 24
## 4594 24
## 4595 24
## 4596 24
## 4597 24
## 4598 24
## 4599 24
## 4600 24
## 4601 24
## 4602 24
## 4603 24
## 4604 24
## 4605 24
## 4606 24
## 4607 24
## 4608 24
## 4609 24
## 4610 24
## 4611 24
## 4612 24
## 4613 24
## 4614 24
## 4615 24
## 4616 24
## 4617 24
## 4618 24
## 4619 24
## 4620 24
## 4621 24
## 4622 24
## 4623 24
## 4624 24
## 4625 24
## 4626 24
## 4627 24
## 4628 24
## 4629 24
## 4630 24
## 4631 24
## 4632 24
## 4633 24
## 4634 24
## 4635 24
## 4636 24
## 4637 24
## 4638 24
## 4639 24
## 4640 24
## 4641 24
## 4642 24
## 4643 24
## 4644 24
## 4645 24
## 4646 24
## 4647 24
## 4648 24
## 4649 24
## 4650 24
## 4651 24
## 4652 24
## 4653 24
## 4654 25
## 4655 25
## 4656 25
## 4657 25
## 4658 25
## 4659 25
## 4660 25
## 4661 25
## 4662 25
## 4663 25
## 4664 25
## 4665 25
## 4666 26
## 4667 26
## 4668 26
## 4669 26
## 4670 26
## 4671 27
## 4672 27
## 4673 27
## 4674 27
## 4675 27
## 4676 27
## 4677 27
## 4678 27
## 4679 27
## 4680 27
## 4681 27
## 4682 27
## 4683 27
## 4684 28
## 4685 28
## 4686 28
## 4687 28
## 4688 28
## 4689 28
## 4690 28
## 4691 28
## 4692 28
## 4693 28
## 4694 28
## 4695 28
## 4696 28
## 4697 28
## 4698 28
## 4699 28
## 4700 28
## 4701 28
## 4702 28
## 4703 28
## 4704 28
## 4705 28
## 4706 28
## 4707 28
## 4708 28
## 4709 28
## 4710 28
## 4711 28
## 4712 29
## 4713 29
## 4714 29
## 4715 29
## 4716 29
## 4717 29
## 4718 30
## 4719 30
## 4720 30
## 4721 30
## 4722 30
## 4723 30
## 4724 30
## 4725 30
## 4726 30
## 4727 30
## 4728 30
## 4729 30
## 4730 30
## 4731 30
## 4732 30
## 4733 30
## 4734 30
## 4735 30
## 4736 30
## 4737 31
## 4738 31
## 4739 31
## 4740 31
## 4741 31
## 4742 31
## 4743 31
## 4744 31
## 4745 31
## 4746 31
## 4747 31
## 4748 31
## 4749 31
## 4750 31
## 4751 31
## 4752 31
## 4753 31
## 4754 31
## 4755 31
## 4756 31
## 4757 31
## 4758 31
## 4759 31
## 4760 31
## 4761 31
## 4762 31
## 4763 31
## 4764 31
## 4765 31
## 4766 31
## 4767 31
## 4768 31
## 4769 31
## 4770 31
## 4771 31
## 4772 31
## 4773 31
## 4774 31
## 4775 31
## 4776 31
## 4777 31
## 4778 31
## 4779 31
## 4780 31
## 4781 31
## 4782 31
## 4783 31
## 4784 31
## 4785 31
## 4786 31
## 4787 31
## 4788 31
## 4789 31
## 4790 31
## 4791 31
## 4792 31
## 4793 31
## 4794 31
## 4795 31
## 4796 31
## 4797 31
## 4798 31
## 4799 31
## 4800 31
## 4801 31
## 4802 31
## 4803 31
## 4804 1
## 4805 1
## 4806 1
## 4807 1
## 4808 1
## 4809 1
## 4810 1
## 4811 2
## 4812 2
## 4813 2
## 4814 2
## 4815 2
## 4816 2
## 4817 2
## 4818 3
## 4819 3
## 4820 3
## 4821 3
## 4822 3
## 4823 3
## 4824 4
## 4825 4
## 4826 4
## 4827 4
## 4828 4
## 4829 4
## 4830 4
## 4831 4
## 4832 4
## 4833 4
## 4834 4
## 4835 4
## 4836 4
## 4837 4
## 4838 4
## 4839 4
## 4840 4
## 4841 4
## 4842 4
## 4843 4
## 4844 4
## 4845 4
## 4846 4
## 4847 4
## 4848 4
## 4849 4
## 4850 4
## 4851 4
## 4852 4
## 4853 4
## 4854 4
## 4855 4
## 4856 4
## 4857 4
## 4858 4
## 4859 4
## 4860 4
## 4861 4
## 4862 4
## 4863 4
## 4864 4
## 4865 4
## 4866 4
## 4867 4
## 4868 4
## 4869 4
## 4870 4
## 4871 4
## 4872 4
## 4873 4
## 4874 4
## 4875 4
## 4876 4
## 4877 4
## 4878 4
## 4879 4
## 4880 4
## 4881 4
## 4882 4
## 4883 5
## 4884 5
## 4885 5
## 4886 5
## 4887 5
## 4888 5
## 4889 6
## 4890 7
## 4891 7
## 4892 7
## 4893 7
## 4894 7
## 4895 7
## 4896 7
## 4897 7
## 4898 7
## 4899 7
## 4900 7
## 4901 7
## 4902 7
## 4903 7
## 4904 7
## 4905 7
## 4906 7
## 4907 7
## 4908 7
## 4909 7
## 4910 7
## 4911 8
## 4912 8
## 4913 8
## 4914 8
## 4915 8
## 4916 8
## 4917 8
## 4918 8
## 4919 9
## 4920 9
## 4921 9
## 4922 9
## 4923 9
## 4924 9
## 4925 9
## 4926 9
## 4927 9
## 4928 9
## 4929 9
## 4930 9
## 4931 9
## 4932 9
## 4933 9
## 4934 9
## 4935 9
## 4936 9
## 4937 9
## 4938 9
## 4939 9
## 4940 9
## 4941 9
## 4942 10
## 4943 10
## 4944 10
## 4945 10
## 4946 10
## 4947 10
## 4948 10
## 4949 10
## 4950 10
## 4951 10
## 4952 10
## 4953 10
## 4954 10
## 4955 10
## 4956 10
## 4957 10
## 4958 10
## 4959 10
## 4960 10
## 4961 10
## 4962 10
## 4963 10
## 4964 10
## 4965 10
## 4966 10
## 4967 10
## 4968 11
## 4969 11
## 4970 11
## 4971 11
## 4972 11
## 4973 11
## 4974 11
## 4975 11
## 4976 11
## 4977 11
## 4978 11
## 4979 11
## 4980 11
## 4981 11
## 4982 11
## 4983 11
## 4984 11
## 4985 11
## 4986 11
## 4987 11
## 4988 11
## 4989 11
## 4990 11
## 4991 11
## 4992 11
## 4993 11
## 4994 11
## 4995 11
## 4996 11
## 4997 11
## 4998 11
## 4999 11
## 5000 11
## 5001 11
## 5002 11
## 5003 11
## 5004 11
## 5005 12
## 5006 12
## 5007 12
## 5008 12
## 5009 12
## 5010 12
## 5011 12
## 5012 12
## 5013 12
## 5014 12
## 5015 12
## 5016 12
## 5017 12
## 5018 12
## 5019 12
## 5020 12
## 5021 12
## 5022 12
## 5023 12
## 5024 12
## 5025 12
## 5026 12
## 5027 12
## 5028 12
## 5029 12
## 5030 12
## 5031 12
## 5032 12
## 5033 12
## 5034 12
## 5035 13
## 5036 13
## 5037 14
## 5038 14
## 5039 14
## 5040 15
## 5041 15
## 5042 15
## 5043 15
## 5044 15
## 5045 15
## 5046 15
## 5047 16
## 5048 16
## 5049 16
## 5050 16
## 5051 16
## 5052 16
## 5053 16
## 5054 16
## 5055 16
## 5056 16
## 5057 16
## 5058 16
## 5059 16
## 5060 16
## 5061 16
## 5062 16
## 5063 16
## 5064 16
## 5065 16
## 5066 16
## 5067 16
## 5068 16
## 5069 16
## 5070 16
## 5071 16
## 5072 16
## 5073 16
## 5074 16
## 5075 16
## 5076 16
## 5077 16
## 5078 16
## 5079 16
## 5080 16
## 5081 16
## 5082 16
## 5083 16
## 5084 16
## 5085 16
## 5086 16
## 5087 16
## 5088 16
## 5089 16
## 5090 16
## 5091 16
## 5092 16
## 5093 16
## 5094 16
## 5095 17
## 5096 17
## 5097 17
## 5098 17
## 5099 17
## 5100 17
## 5101 17
## 5102 18
## 5103 18
## 5104 18
## 5105 18
## 5106 18
## 5107 18
## 5108 18
## 5109 18
## 5110 18
## 5111 18
## 5112 18
## 5113 18
## 5114 18
## 5115 18
## 5116 18
## 5117 18
## 5118 18
## 5119 18
## 5120 18
## 5121 18
## 5122 18
## 5123 18
## 5124 18
## 5125 18
## 5126 18
## 5127 18
## 5128 18
## 5129 18
## 5130 18
## 5131 18
## 5132 18
## 5133 18
## 5134 18
## 5135 18
## 5136 18
## 5137 18
## 5138 18
## 5139 18
## 5140 18
## 5141 18
## 5142 18
## 5143 18
## 5144 18
## 5145 18
## 5146 18
## 5147 18
## 5148 18
## 5149 18
## 5150 18
## 5151 18
## 5152 18
## 5153 18
## 5154 18
## 5155 18
## 5156 18
## 5157 18
## 5158 18
## 5159 18
## 5160 19
## 5161 19
## 5162 19
## 5163 19
## 5164 19
## 5165 19
## 5166 19
## 5167 19
## 5168 19
## 5169 19
## 5170 19
## 5171 19
## 5172 19
## 5173 19
## 5174 19
## 5175 19
## 5176 19
## 5177 19
## 5178 19
## 5179 19
## 5180 19
## 5181 19
## 5182 19
## 5183 19
## 5184 19
## 5185 19
## 5186 19
## 5187 19
## 5188 19
## 5189 19
## 5190 19
## 5191 19
## 5192 20
## 5193 20
## 5194 21
## 5195 21
## 5196 21
## 5197 21
## 5198 21
## 5199 21
## 5200 21
## 5201 21
## 5202 21
## 5203 21
## 5204 21
## 5205 22
## 5206 22
## 5207 22
## 5208 22
## 5209 22
## 5210 22
## 5211 22
## 5212 22
## 5213 22
## 5214 22
## 5215 22
## 5216 22
## 5217 22
## 5218 22
## 5219 22
## 5220 22
## 5221 22
## 5222 22
## 5223 22
## 5224 22
## 5225 22
## 5226 22
## 5227 22
## 5228 22
## 5229 22
## 5230 22
## 5231 22
## 5232 22
## 5233 22
## 5234 22
## 5235 22
## 5236 22
## 5237 22
## 5238 22
## 5239 22
## 5240 22
## 5241 22
## 5242 22
## 5243 22
## 5244 22
## 5245 22
## 5246 22
## 5247 22
## 5248 22
## 5249 22
## 5250 22
## 5251 22
## 5252 22
## 5253 22
## 5254 22
## 5255 22
## 5256 22
## 5257 22
## 5258 23
## 5259 23
## 5260 23
## 5261 23
## 5262 23
## 5263 23
## 5264 23
## 5265 23
## 5266 23
## 5267 23
## 5268 23
## 5269 23
## 5270 23
## 5271 23
## 5272 23
## 5273 23
## 5274 23
## 5275 23
## 5276 23
## 5277 23
## 5278 23
## 5279 23
## 5280 23
## 5281 24
## 5282 24
## 5283 24
## 5284 24
## 5285 24
## 5286 24
## 5287 24
## 5288 24
## 5289 24
## 5290 24
## 5291 24
## 5292 24
## 5293 24
## 5294 24
## 5295 24
## 5296 24
## 5297 24
## 5298 24
## 5299 24
## 5300 24
## 5301 24
## 5302 24
## 5303 24
## 5304 24
## 5305 24
## 5306 24
## 5307 24
## 5308 24
## 5309 24
## 5310 24
## 5311 24
## 5312 24
## 5313 25
## 5314 25
## 5315 25
## 5316 25
## 5317 25
## 5318 25
## 5319 25
## 5320 25
## 5321 25
## 5322 25
## 5323 25
## 5324 25
## 5325 25
## 5326 25
## 5327 25
## 5328 25
## 5329 25
## 5330 25
## 5331 25
## 5332 25
## 5333 25
## 5334 25
## 5335 25
## 5336 25
## 5337 25
## 5338 25
## 5339 25
## 5340 25
## 5341 25
## 5342 25
## 5343 25
## 5344 25
## 5345 25
## 5346 25
## 5347 26
## 5348 26
## 5349 26
## 5350 26
## 5351 26
## 5352 26
## 5353 26
## 5354 26
## 5355 26
## 5356 26
## 5357 26
## 5358 26
## 5359 26
## 5360 26
## 5361 26
## 5362 26
## 5363 26
## 5364 26
## 5365 26
## 5366 26
## 5367 26
## 5368 26
## 5369 26
## 5370 26
## 5371 26
## 5372 26
## 5373 27
## 5374 27
## 5375 27
## 5376 27
## 5377 27
## 5378 27
## 5379 27
## 5380 27
## 5381 27
## 5382 27
## 5383 27
## 5384 27
## 5385 27
## 5386 27
## 5387 28
## 5388 28
## 5389 28
## 5390 28
## 5391 28
## 5392 28
## 5393 28
## 5394 28
## 5395 28
## 5396 28
## 5397 28
## 5398 28
## 5399 28
## 5400 28
## 5401 28
## 5402 28
## 5403 28
## 5404 28
## 5405 28
## 5406 28
## 5407 28
## 5408 28
## 5409 28
## 5410 28
## 5411 28
## 5412 28
## 5413 28
## 5414 28
## 5415 28
## 5416 28
## 5417 28
## 5418 29
## 5419 29
## 5420 29
## 5421 29
## 5422 29
## 5423 29
## 5424 29
## 5425 29
## 5426 29
## 5427 29
## 5428 29
## 5429 29
## 5430 29
## 5431 29
## 5432 29
## 5433 29
## 5434 29
## 5435 29
## 5436 29
## 5437 29
## 5438 29
## 5439 29
## 5440 29
## 5441 29
## 5442 29
## 5443 29
## 5444 29
## 5445 29
## 5446 29
## 5447 29
## 5448 29
## 5449 29
## 5450 29
## 5451 29
## 5452 29
## 5453 29
## 5454 29
## 5455 29
## 5456 29
## 5457 29
## 5458 29
## 5459 29
## 5460 29
## 5461 29
## 5462 29
## 5463 29
## 5464 29
## 5465 29
## 5466 29
## 5467 29
## 5468 29
## 5469 29
## 5470 29
## 5471 29
## 5472 29
## 5473 29
## 5474 29
## 5475 29
## 5476 29
## 5477 29
## 5478 29
## 5479 29
## 5480 29
## 5481 29
## 5482 30
## 5483 30
## 5484 30
## 5485 30
## 5486 30
## 5487 30
## 5488 30
## 5489 30
## 5490 30
## 5491 30
## 5492 30
## 5493 30
## 5494 30
## 5495 30
## 5496 30
## 5497 30
## 5498 30
## 5499 30
## 5500 30
## 5501 30
## 5502 30
## 5503 30
## 5504 30
## 5505 30
## 5506 30
## 5507 30
## 5508 30
## 5509 30
## 5510 30
## 5511 30
## 5512 30
## 5513 30
## 5514 30
## 5515 30
## 5516 30
## 5517 30
## 5518 30
## 5519 30
## 5520 30
## 5521 30
## 5522 1
## 5523 1
## 5524 1
## 5525 1
## 5526 1
## 5527 1
## 5528 1
## 5529 1
## 5530 1
## 5531 2
## 5532 2
## 5533 2
## 5534 2
## 5535 2
## 5536 2
## 5537 2
## 5538 2
## 5539 2
## 5540 2
## 5541 2
## 5542 2
## 5543 2
## 5544 2
## 5545 2
## 5546 2
## 5547 2
## 5548 2
## 5549 2
## 5550 2
## 5551 2
## 5552 2
## 5553 2
## 5554 2
## 5555 2
## 5556 2
## 5557 2
## 5558 2
## 5559 2
## 5560 2
## 5561 2
## 5562 2
## 5563 2
## 5564 2
## 5565 2
## 5566 2
## 5567 2
## 5568 2
## 5569 2
## 5570 2
## 5571 2
## 5572 2
## 5573 2
## 5574 2
## 5575 2
## 5576 2
## 5577 2
## 5578 2
## 5579 2
## 5580 2
## 5581 2
## 5582 2
## 5583 2
## 5584 2
## 5585 2
## 5586 2
## 5587 2
## 5588 2
## 5589 2
## 5590 3
## 5591 3
## 5592 3
## 5593 3
## 5594 3
## 5595 3
## 5596 3
## 5597 3
## 5598 3
## 5599 3
## 5600 4
## 5601 4
## 5602 4
## 5603 4
## 5604 5
## 5605 5
## 5606 5
## 5607 5
## 5608 5
## 5609 5
## 5610 5
## 5611 5
## 5612 5
## 5613 5
## 5614 5
## 5615 5
## 5616 5
## 5617 6
## 5618 6
## 5619 6
## 5620 6
## 5621 6
## 5622 6
## 5623 6
## 5624 6
## 5625 6
## 5626 6
## 5627 6
## 5628 6
## 5629 6
## 5630 6
## 5631 6
## 5632 6
## 5633 6
## 5634 6
## 5635 6
## 5636 7
## 5637 7
## 5638 7
## 5639 7
## 5640 7
## 5641 7
## 5642 7
## 5643 7
## 5644 7
## 5645 7
## 5646 7
## 5647 7
## 5648 7
## 5649 7
## 5650 8
## 5651 8
## 5652 8
## 5653 8
## 5654 8
## 5655 8
## 5656 8
## 5657 8
## 5658 8
## 5659 8
## 5660 8
## 5661 8
## 5662 8
## 5663 8
## 5664 8
## 5665 8
## 5666 9
## 5667 9
## 5668 9
## 5669 9
## 5670 9
## 5671 9
## 5672 9
## 5673 9
## 5674 9
## 5675 9
## 5676 9
## 5677 10
## 5678 10
## 5679 10
## 5680 10
## 5681 10
## 5682 10
## 5683 10
## 5684 10
## 5685 10
## 5686 10
## 5687 10
## 5688 10
## 5689 10
## 5690 10
## 5691 10
## 5692 10
## 5693 10
## 5694 10
## 5695 10
## 5696 10
## 5697 10
## 5698 10
## 5699 10
## 5700 11
## 5701 11
## 5702 11
## 5703 11
## 5704 11
## 5705 12
## 5706 12
## 5707 12
## 5708 12
## 5709 12
## 5710 12
## 5711 12
## 5712 12
## 5713 12
## 5714 12
## 5715 12
## 5716 12
## 5717 12
## 5718 12
## 5719 12
## 5720 12
## 5721 12
## 5722 12
## 5723 12
## 5724 12
## 5725 12
## 5726 12
## 5727 12
## 5728 12
## 5729 12
## 5730 12
## 5731 12
## 5732 12
## 5733 12
## 5734 12
## 5735 12
## 5736 12
## 5737 12
## 5738 12
## 5739 12
## 5740 12
## 5741 12
## 5742 12
## 5743 12
## 5744 12
## 5745 12
## 5746 12
## 5747 12
## 5748 12
## 5749 12
## 5750 12
## 5751 12
## 5752 12
## 5753 12
## 5754 12
## 5755 12
## 5756 12
## 5757 12
## 5758 12
## 5759 12
## 5760 12
## 5761 12
## 5762 12
## 5763 12
## 5764 12
## 5765 13
## 5766 13
## 5767 13
## 5768 13
## 5769 13
## 5770 13
## 5771 13
## 5772 13
## 5773 13
## 5774 13
## 5775 13
## 5776 13
## 5777 13
## 5778 13
## 5779 13
## 5780 13
## 5781 14
## 5782 14
## 5783 14
## 5784 14
## 5785 14
## 5786 14
## 5787 14
## 5788 14
## 5789 14
## 5790 14
## 5791 14
## 5792 14
## 5793 14
## 5794 14
## 5795 14
## 5796 14
## 5797 14
## 5798 14
## 5799 14
## 5800 14
## 5801 14
## 5802 14
## 5803 14
## 5804 14
## 5805 14
## 5806 14
## 5807 14
## 5808 14
## 5809 14
## 5810 14
## 5811 14
## 5812 14
## 5813 14
## 5814 14
## 5815 14
## 5816 14
## 5817 14
## 5818 14
## 5819 14
## 5820 14
## 5821 14
## 5822 14
## 5823 14
## 5824 14
## 5825 14
## 5826 14
## 5827 14
## 5828 14
## 5829 14
## 5830 14
## 5831 14
## 5832 14
## 5833 14
## 5834 14
## 5835 15
## 5836 15
## 5837 15
## 5838 15
## 5839 15
## 5840 15
## 5841 15
## 5842 15
## 5843 15
## 5844 15
## 5845 15
## 5846 15
## 5847 15
## 5848 15
## 5849 15
## 5850 15
## 5851 15
## 5852 15
## 5853 15
## 5854 15
## 5855 15
## 5856 15
## 5857 15
## 5858 15
## 5859 15
## 5860 15
## 5861 15
## 5862 15
## 5863 15
## 5864 15
## 5865 15
## 5866 15
## 5867 15
## 5868 15
## 5869 15
## 5870 15
## 5871 15
## 5872 15
## 5873 16
## 5874 16
## 5875 16
## 5876 16
## 5877 16
## 5878 16
## 5879 16
## 5880 16
## 5881 16
## 5882 16
## 5883 16
## 5884 16
## 5885 16
## 5886 16
## 5887 16
## 5888 16
## 5889 16
## 5890 16
## 5891 16
## 5892 16
## 5893 16
## 5894 16
## 5895 16
## 5896 16
## 5897 16
## 5898 16
## 5899 16
## 5900 16
## 5901 16
## 5902 16
## 5903 16
## 5904 16
## 5905 16
## 5906 16
## 5907 16
## 5908 16
## 5909 16
## 5910 16
## 5911 16
## 5912 16
## 5913 16
## 5914 16
## 5915 16
## 5916 16
## 5917 16
## 5918 16
## 5919 16
## 5920 16
## 5921 16
## 5922 16
## 5923 16
## 5924 16
## 5925 16
## 5926 16
## 5927 16
## 5928 16
## 5929 16
## 5930 16
## 5931 16
## 5932 16
## 5933 16
## 5934 16
## 5935 16
## 5936 16
## 5937 16
## 5938 16
## 5939 16
## 5940 17
## 5941 17
## 5942 17
## 5943 17
## 5944 17
## 5945 17
## 5946 17
## 5947 17
## 5948 17
## 5949 17
## 5950 17
## 5951 17
## 5952 17
## 5953 17
## 5954 17
## 5955 17
## 5956 17
## 5957 17
## 5958 17
## 5959 17
## 5960 18
## 5961 18
## 5962 18
## 5963 18
## 5964 18
## 5965 18
## 5966 18
## 5967 18
## 5968 18
## 5969 18
## 5970 18
## 5971 18
## 5972 18
## 5973 18
## 5974 18
## 5975 18
## 5976 18
## 5977 18
## 5978 18
## 5979 18
## 5980 18
## 5981 18
## 5982 18
## 5983 18
## 5984 18
## 5985 18
## 5986 18
## 5987 18
## 5988 18
## 5989 18
## 5990 19
## 5991 19
## 5992 19
## 5993 19
## 5994 19
## 5995 19
## 5996 19
## 5997 19
## 5998 19
## 5999 19
## 6000 19
## 6001 19
## 6002 19
## 6003 19
## 6004 19
## 6005 19
## 6006 19
## 6007 20
## 6008 20
## 6009 20
## 6010 20
## 6011 20
## 6012 20
## 6013 20
## 6014 20
## 6015 20
## 6016 20
## 6017 21
## 6018 21
## 6019 21
## 6020 21
## 6021 21
## 6022 21
## 6023 21
## 6024 21
## 6025 21
## 6026 21
## 6027 21
## 6028 21
## 6029 21
## 6030 21
## 6031 21
## 6032 21
## 6033 21
## 6034 21
## 6035 21
## 6036 21
## 6037 21
## 6038 21
## 6039 21
## 6040 22
## 6041 22
## 6042 22
## 6043 22
## 6044 22
## 6045 22
## 6046 22
## 6047 23
## 6048 23
## 6049 23
## 6050 23
## 6051 23
## 6052 23
## 6053 23
## 6054 23
## 6055 23
## 6056 23
## 6057 23
## 6058 23
## 6059 24
## 6060 24
## 6061 24
## 6062 24
## 6063 24
## 6064 24
## 6065 24
## 6066 24
## 6067 24
## 6068 24
## 6069 24
## 6070 24
## 6071 24
## 6072 24
## 6073 24
## 6074 24
## 6075 24
## 6076 24
## 6077 24
## 6078 24
## 6079 24
## 6080 24
## 6081 24
## 6082 24
## 6083 24
## 6084 24
## 6085 24
## 6086 24
## 6087 24
## 6088 24
## 6089 24
## 6090 24
## 6091 24
## 6092 25
## 6093 25
## 6094 25
## 6095 25
## 6096 25
## 6097 25
## 6098 25
## 6099 25
## 6100 25
## 6101 25
## 6102 25
## 6103 25
## 6104 25
## 6105 25
## 6106 25
## 6107 25
## 6108 25
## 6109 25
## 6110 25
## 6111 25
## 6112 25
## 6113 25
## 6114 25
## 6115 26
## 6116 26
## 6117 26
## 6118 26
## 6119 26
## 6120 26
## 6121 26
## 6122 26
## 6123 26
## 6124 26
## 6125 26
## 6126 26
## 6127 26
## 6128 26
## 6129 26
## 6130 26
## 6131 26
## 6132 26
## 6133 26
## 6134 26
## 6135 26
## 6136 26
## 6137 26
## 6138 26
## 6139 26
## 6140 26
## 6141 26
## 6142 26
## 6143 26
## 6144 26
## 6145 26
## 6146 26
## 6147 26
## 6148 26
## 6149 26
## 6150 26
## 6151 26
## 6152 26
## 6153 26
## 6154 26
## 6155 26
## 6156 26
## 6157 26
## 6158 26
## 6159 26
## 6160 26
## 6161 26
## 6162 27
## 6163 27
## 6164 27
## 6165 27
## 6166 27
## 6167 27
## 6168 27
## 6169 27
## 6170 27
## 6171 27
## 6172 27
## 6173 27
## 6174 27
## 6175 27
## 6176 27
## 6177 27
## 6178 27
## 6179 27
## 6180 27
## 6181 27
## 6182 27
## 6183 27
## 6184 27
## 6185 27
## 6186 27
## 6187 27
## 6188 27
## 6189 27
## 6190 27
## 6191 28
## 6192 28
## 6193 28
## 6194 28
## 6195 28
## 6196 28
## 6197 28
## 6198 28
## 6199 28
## 6200 28
## 6201 28
## 6202 28
## 6203 28
## 6204 28
## 6205 28
## 6206 28
## 6207 28
## 6208 28
## 6209 28
## 6210 28
## 6211 28
## 6212 28
## 6213 28
## 6214 28
## 6215 28
## 6216 28
## 6217 28
## 6218 28
## 6219 28
## 6220 28
## 6221 28
## 6222 28
## 6223 28
## 6224 28
## 6225 28
## 6226 28
## 6227 29
## 6228 29
## 6229 29
## 6230 29
## 6231 29
## 6232 29
## 6233 29
## 6234 29
## 6235 30
## 6236 30
## 6237 30
## 6238 30
## 6239 30
## 6240 30
## 6241 30
## 6242 30
## 6243 30
## 6244 30
## 6245 30
## 6246 30
## 6247 30
## 6248 30
## 6249 30
## 6250 30
## 6251 30
## 6252 30
## 6253 30
## 6254 31
## 6255 31
## 6256 31
## 6257 31
## 6258 31
## 6259 31
## 6260 31
## 6261 31
## 6262 31
## 6263 31
## 6264 31
## 6265 31
## 6266 31
## 6267 31
## 6268 31
## 6269 31
## 6270 31
## 6271 31
## 6272 31
## 6273 31
## 6274 31
## 6275 31
## 6276 1
## 6277 1
## 6278 1
## 6279 1
## 6280 1
## 6281 1
## 6282 1
## 6283 1
## 6284 1
## 6285 1
## 6286 1
## 6287 1
## 6288 1
## 6289 1
## 6290 1
## 6291 1
## 6292 1
## 6293 1
## 6294 1
## 6295 1
## 6296 1
## 6297 1
## 6298 1
## 6299 1
## 6300 1
## 6301 1
## 6302 1
## 6303 2
## 6304 2
## 6305 2
## 6306 2
## 6307 2
## 6308 2
## 6309 2
## 6310 2
## 6311 3
## 6312 3
## 6313 3
## 6314 3
## 6315 3
## 6316 3
## 6317 3
## 6318 3
## 6319 3
## 6320 3
## 6321 3
## 6322 3
## 6323 3
## 6324 3
## 6325 3
## 6326 3
## 6327 3
## 6328 3
## 6329 3
## 6330 3
## 6331 3
## 6332 3
## 6333 3
## 6334 3
## 6335 3
## 6336 3
## 6337 3
## 6338 3
## 6339 3
## 6340 3
## 6341 4
## 6342 4
## 6343 4
## 6344 4
## 6345 4
## 6346 4
## 6347 4
## 6348 4
## 6349 4
## 6350 4
## 6351 4
## 6352 4
## 6353 4
## 6354 4
## 6355 4
## 6356 5
## 6357 5
## 6358 5
## 6359 5
## 6360 5
## 6361 5
## 6362 5
## 6363 5
## 6364 5
## 6365 5
## 6366 5
## 6367 5
## 6368 5
## 6369 6
## 6370 6
## 6371 6
## 6372 6
## 6373 6
## 6374 6
## 6375 6
## 6376 6
## 6377 6
## 6378 6
## 6379 6
## 6380 6
## 6381 6
## 6382 6
## 6383 6
## 6384 7
## 6385 7
## 6386 7
## 6387 7
## 6388 7
## 6389 7
## 6390 7
## 6391 7
## 6392 7
## 6393 7
## 6394 7
## 6395 7
## 6396 7
## 6397 7
## 6398 7
## 6399 7
## 6400 8
## 6401 8
## 6402 8
## 6403 8
## 6404 8
## 6405 8
## 6406 8
## 6407 8
## 6408 8
## 6409 8
## 6410 9
## 6411 9
## 6412 9
## 6413 9
## 6414 9
## 6415 9
## 6416 9
## 6417 9
## 6418 10
## 6419 10
## 6420 10
## 6421 10
## 6422 10
## 6423 10
## 6424 10
## 6425 10
## 6426 10
## 6427 10
## 6428 10
## 6429 10
## 6430 10
## 6431 10
## 6432 10
## 6433 11
## 6434 11
## 6435 11
## 6436 11
## 6437 11
## 6438 11
## 6439 11
## 6440 11
## 6441 11
## 6442 11
## 6443 11
## 6444 11
## 6445 11
## 6446 11
## 6447 11
## 6448 11
## 6449 12
## 6450 12
## 6451 12
## 6452 12
## 6453 12
## 6454 12
## 6455 12
## 6456 12
## 6457 12
## 6458 12
## 6459 12
## 6460 12
## 6461 12
## 6462 12
## 6463 12
## 6464 12
## 6465 12
## 6466 12
## 6467 12
## 6468 12
## 6469 12
## 6470 12
## 6471 12
## 6472 12
## 6473 12
## 6474 12
## 6475 12
## 6476 12
## 6477 12
## 6478 12
## 6479 12
## 6480 12
## 6481 12
## 6482 12
## 6483 12
## 6484 12
## 6485 12
## 6486 12
## 6487 12
## 6488 12
## 6489 13
## 6490 13
## 6491 13
## 6492 13
## 6493 13
## 6494 13
## 6495 13
## 6496 13
## 6497 13
## 6498 13
## 6499 13
## 6500 13
## 6501 13
## 6502 13
## 6503 13
## 6504 13
## 6505 13
## 6506 13
## 6507 13
## 6508 13
## 6509 13
## 6510 13
## 6511 13
## 6512 13
## 6513 13
## 6514 14
## 6515 14
## 6516 14
## 6517 14
## 6518 14
## 6519 14
## 6520 14
## 6521 14
## 6522 14
## 6523 14
## 6524 15
## 6525 15
## 6526 15
## 6527 15
## 6528 15
## 6529 15
## 6530 15
## 6531 15
## 6532 16
## 6533 16
## 6534 16
## 6535 16
## 6536 16
## 6537 16
## 6538 16
## 6539 16
## 6540 16
## 6541 16
## 6542 16
## 6543 17
## 6544 17
## 6545 17
## 6546 17
## 6547 17
## 6548 17
## 6549 17
## 6550 17
## 6551 17
## 6552 17
## 6553 17
## 6554 17
## 6555 17
## 6556 17
## 6557 17
## 6558 17
## 6559 17
## 6560 17
## 6561 17
## 6562 17
## 6563 17
## 6564 18
## 6565 18
## 6566 18
## 6567 18
## 6568 18
## 6569 18
## 6570 18
## 6571 18
## 6572 18
## 6573 18
## 6574 18
## 6575 18
## 6576 18
## 6577 18
## 6578 18
## 6579 18
## 6580 18
## 6581 18
## 6582 18
## 6583 18
## 6584 18
## 6585 18
## 6586 18
## 6587 19
## 6588 19
## 6589 19
## 6590 19
## 6591 19
## 6592 19
## 6593 19
## 6594 19
## 6595 19
## 6596 19
## 6597 19
## 6598 20
## 6599 20
## 6600 20
## 6601 20
## 6602 20
## 6603 20
## 6604 20
## 6605 20
## 6606 20
## 6607 20
## 6608 20
## 6609 20
## 6610 20
## 6611 20
## 6612 20
## 6613 20
## 6614 20
## 6615 20
## 6616 20
## 6617 20
## 6618 21
## 6619 21
## 6620 21
## 6621 21
## 6622 21
## 6623 21
## 6624 21
## 6625 21
## 6626 21
## 6627 21
## 6628 21
## 6629 21
## 6630 21
## 6631 21
## 6632 21
## 6633 21
## 6634 21
## 6635 21
## 6636 21
## 6637 22
## 6638 22
## 6639 22
## 6640 22
## 6641 22
## 6642 22
## 6643 22
## 6644 22
## 6645 22
## 6646 22
## 6647 22
## 6648 22
## 6649 22
## 6650 22
## 6651 22
## 6652 22
## 6653 22
## 6654 22
## 6655 22
## 6656 22
## 6657 22
## 6658 22
## 6659 22
## 6660 22
## 6661 22
## 6662 22
## 6663 22
## 6664 22
## 6665 22
## 6666 22
## 6667 22
## 6668 22
## 6669 22
## 6670 22
## 6671 22
## 6672 22
## 6673 22
## 6674 23
## 6675 23
## 6676 23
## 6677 23
## 6678 23
## 6679 23
## 6680 23
## 6681 23
## 6682 24
## 6683 24
## 6684 24
## 6685 24
## 6686 24
## 6687 24
## 6688 24
## 6689 24
## 6690 24
## 6691 24
## 6692 25
## 6693 25
## 6694 25
## 6695 25
## 6696 25
## 6697 25
## 6698 25
## 6699 25
## 6700 25
## 6701 25
## 6702 25
## 6703 25
## 6704 25
## 6705 25
## 6706 25
## 6707 25
## 6708 25
## 6709 25
## 6710 26
## 6711 26
## 6712 26
## 6713 26
## 6714 26
## 6715 26
## 6716 26
## 6717 26
## 6718 26
## 6719 26
## 6720 26
## 6721 26
## 6722 26
## 6723 26
## 6724 27
## 6725 27
## 6726 27
## 6727 27
## 6728 27
## 6729 27
## 6730 27
## 6731 27
## 6732 27
## 6733 27
## 6734 27
## 6735 27
## 6736 27
## 6737 27
## 6738 27
## 6739 27
## 6740 28
## 6741 28
## 6742 28
## 6743 28
## 6744 28
## 6745 28
## 6746 28
## 6747 28
## 6748 28
## 6749 28
## 6750 28
## 6751 28
## 6752 28
## 6753 28
## 6754 29
## 6755 29
## 6756 29
## 6757 29
## 6758 29
## 6759 30
## 6760 30
## 6761 30
## 6762 30
## 6763 30
## 6764 30
## 6765 30
## 6766 1
## 6767 1
## 6768 1
## 6769 1
## 6770 1
## 6771 1
## 6772 1
## 6773 1
## 6774 1
## 6775 1
## 6776 1
## 6777 1
## 6778 1
## 6779 1
## 6780 1
## 6781 1
## 6782 1
## 6783 2
## 6784 2
## 6785 2
## 6786 2
## 6787 2
## 6788 2
## 6789 2
## 6790 2
## 6791 2
## 6792 2
## 6793 2
## 6794 2
## 6795 2
## 6796 2
## 6797 2
## 6798 2
## 6799 2
## 6800 2
## 6801 2
## 6802 2
## 6803 2
## 6804 2
## 6805 2
## 6806 2
## 6807 3
## 6808 3
## 6809 3
## 6810 3
## 6811 3
## 6812 3
## 6813 3
## 6814 3
## 6815 3
## 6816 3
## 6817 3
## 6818 3
## 6819 4
## 6820 4
## 6821 4
## 6822 4
## 6823 4
## 6824 4
## 6825 4
## 6826 4
## 6827 4
## 6828 4
## 6829 4
## 6830 4
## 6831 4
## 6832 4
## 6833 4
## 6834 4
## 6835 4
## 6836 4
## 6837 5
## 6838 5
## 6839 5
## 6840 5
## 6841 5
## 6842 5
## 6843 5
## 6844 6
## 6845 6
## 6846 6
## 6847 6
## 6848 6
## 6849 6
## 6850 6
## 6851 7
## 6852 7
## 6853 7
## 6854 7
## 6855 7
## 6856 7
## 6857 7
## 6858 7
## 6859 7
## 6860 7
## 6861 8
## 6862 8
## 6863 8
## 6864 8
## 6865 8
## 6866 8
## 6867 8
## 6868 8
## 6869 8
## 6870 8
## 6871 8
## 6872 8
## 6873 8
## 6874 8
## 6875 8
## 6876 8
## 6877 8
## 6878 8
## 6879 8
## 6880 8
## 6881 8
## 6882 9
## 6883 9
## 6884 9
## 6885 9
## 6886 9
## 6887 9
## 6888 9
## 6889 9
## 6890 9
## 6891 9
## 6892 9
## 6893 9
## 6894 9
## 6895 9
## 6896 9
## 6897 9
## 6898 9
## 6899 9
## 6900 10
## 6901 10
## 6902 10
## 6903 10
## 6904 10
## 6905 10
## 6906 10
## 6907 10
## 6908 10
## 6909 11
## 6910 11
## 6911 11
## 6912 11
## 6913 11
## 6914 11
## 6915 11
## 6916 11
## 6917 11
## 6918 11
## 6919 11
## 6920 11
## 6921 11
## 6922 11
## 6923 11
## 6924 11
## 6925 11
## 6926 12
## 6927 12
## 6928 12
## 6929 12
## 6930 12
## 6931 12
## 6932 12
## 6933 12
## 6934 12
## 6935 12
## 6936 12
## 6937 12
## 6938 12
## 6939 12
## 6940 12
## 6941 12
## 6942 12
## 6943 12
## 6944 12
## 6945 12
## 6946 12
## 6947 13
## 6948 13
## 6949 13
## 6950 13
## 6951 13
## 6952 13
## 6953 13
## 6954 13
## 6955 13
## 6956 13
## 6957 13
## 6958 14
## 6959 14
## 6960 14
## 6961 14
## 6962 14
## 6963 14
## 6964 14
## 6965 14
## 6966 14
## 6967 14
## 6968 14
## 6969 14
## 6970 14
## 6971 14
## 6972 14
## 6973 15
## 6974 15
## 6975 15
## 6976 15
## 6977 15
## 6978 15
## 6979 15
## 6980 15
## 6981 15
## 6982 15
## 6983 15
## 6984 15
## 6985 15
## 6986 15
## 6987 15
## 6988 15
## 6989 15
## 6990 15
## 6991 15
## 6992 15
## 6993 15
## 6994 15
## 6995 16
## 6996 16
## 6997 16
## 6998 16
## 6999 16
## 7000 16
## 7001 16
## 7002 16
## 7003 16
## 7004 16
## 7005 16
## 7006 16
## 7007 16
## 7008 16
## 7009 16
## 7010 16
## 7011 16
## 7012 16
## 7013 16
## 7014 16
## 7015 16
## 7016 16
## 7017 16
## 7018 16
## 7019 16
## 7020 16
## 7021 16
## 7022 16
## 7023 16
## 7024 16
## 7025 16
## 7026 16
## 7027 17
## 7028 17
## 7029 17
## 7030 17
## 7031 17
## 7032 17
## 7033 17
## 7034 17
## 7035 17
## 7036 17
## 7037 17
## 7038 17
## 7039 17
## 7040 17
## 7041 17
## 7042 17
## 7043 17
## 7044 17
## 7045 18
## 7046 18
## 7047 18
## 7048 18
## 7049 18
## 7050 18
## 7051 18
## 7052 18
## 7053 18
## 7054 18
## 7055 18
## 7056 18
## 7057 18
## 7058 18
## 7059 18
## 7060 18
## 7061 18
## 7062 18
## 7063 18
## 7064 18
## 7065 18
## 7066 18
## 7067 18
## 7068 18
## 7069 18
## 7070 18
## 7071 19
## 7072 19
## 7073 19
## 7074 19
## 7075 19
## 7076 19
## 7077 19
## 7078 19
## 7079 19
## 7080 20
## 7081 20
## 7082 20
## 7083 20
## 7084 20
## 7085 20
## 7086 20
## 7087 20
## 7088 20
## 7089 20
## 7090 20
## 7091 20
## 7092 21
## 7093 21
## 7094 21
## 7095 21
## 7096 21
## 7097 21
## 7098 21
## 7099 21
## 7100 21
## 7101 21
## 7102 21
## 7103 21
## 7104 21
## 7105 21
## 7106 21
## 7107 21
## 7108 22
## 7109 22
## 7110 22
## 7111 22
## 7112 22
## 7113 22
## 7114 22
## 7115 22
## 7116 22
## 7117 22
## 7118 22
## 7119 22
## 7120 22
## 7121 22
## 7122 22
## 7123 22
## 7124 22
## 7125 23
## 7126 23
## 7127 23
## 7128 23
## 7129 23
## 7130 23
## 7131 23
## 7132 23
## 7133 23
## 7134 23
## 7135 23
## 7136 23
## 7137 23
## 7138 23
## 7139 23
## 7140 23
## 7141 23
## 7142 23
## 7143 23
## 7144 23
## 7145 23
## 7146 23
## 7147 23
## 7148 23
## 7149 24
## 7150 24
## 7151 24
## 7152 24
## 7153 24
## 7154 24
## 7155 24
## 7156 24
## 7157 24
## 7158 24
## 7159 24
## 7160 24
## 7161 24
## 7162 24
## 7163 24
## 7164 24
## 7165 24
## 7166 25
## 7167 25
## 7168 25
## 7169 25
## 7170 25
## 7171 25
## 7172 25
## 7173 25
## 7174 25
## 7175 25
## 7176 25
## 7177 25
## 7178 25
## 7179 25
## 7180 25
## 7181 25
## 7182 25
## 7183 25
## 7184 25
## 7185 25
## 7186 25
## 7187 25
## 7188 25
## 7189 25
## 7190 25
## 7191 26
## 7192 26
## 7193 26
## 7194 26
## 7195 26
## 7196 26
## 7197 26
## 7198 26
## 7199 26
## 7200 27
## 7201 27
## 7202 27
## 7203 27
## 7204 27
## 7205 27
## 7206 27
## 7207 27
## 7208 27
## 7209 27
## 7210 27
## 7211 28
## 7212 28
## 7213 28
## 7214 28
## 7215 28
## 7216 28
## 7217 28
## 7218 28
## 7219 28
## 7220 28
## 7221 28
## 7222 28
## 7223 28
## 7224 29
## 7225 29
## 7226 29
## 7227 29
## 7228 29
## 7229 29
## 7230 29
## 7231 29
## 7232 29
## 7233 29
## 7234 29
## 7235 29
## 7236 30
## 7237 30
## 7238 30
## 7239 30
## 7240 30
## 7241 30
## 7242 30
## 7243 30
## 7244 30
## 7245 30
## 7246 30
## 7247 30
## 7248 30
## 7249 30
## 7250 30
## 7251 30
## 7252 30
## 7253 30
## 7254 30
## 7255 30
## 7256 30
## 7257 30
## 7258 31
## 7259 31
## 7260 31
## 7261 31
## 7262 31
## 7263 31
## 7264 31
## 7265 31
## 7266 31
## 7267 31
## 7268 31
## 7269 31
## 7270 31
## 7271 1
## 7272 1
## 7273 1
## 7274 1
## 7275 1
## 7276 1
## 7277 1
## 7278 1
## 7279 1
## 7280 1
## 7281 1
## 7282 1
## 7283 1
## 7284 1
## 7285 1
## 7286 1
## 7287 1
## 7288 1
## 7289 1
## 7290 1
## 7291 1
## 7292 1
## 7293 1
## 7294 1
## 7295 1
## 7296 1
## 7297 1
## 7298 1
## 7299 1
## 7300 1
## 7301 1
## 7302 1
## 7303 1
## 7304 1
## 7305 2
## 7306 2
## 7307 2
## 7308 2
## 7309 2
## 7310 2
## 7311 2
## 7312 2
## 7313 2
## 7314 2
## 7315 2
## 7316 2
## 7317 2
## 7318 2
## 7319 2
## 7320 2
## 7321 2
## 7322 2
## 7323 2
## 7324 2
## 7325 3
## 7326 3
## 7327 3
## 7328 3
## 7329 3
## 7330 3
## 7331 3
## 7332 3
## 7333 3
## 7334 3
## 7335 4
## 7336 4
## 7337 4
## 7338 4
## 7339 4
## 7340 4
## 7341 4
## 7342 4
## 7343 4
## 7344 4
## 7345 4
## 7346 4
## 7347 4
## 7348 4
## 7349 5
## 7350 5
## 7351 5
## 7352 5
## 7353 5
## 7354 5
## 7355 5
## 7356 5
## 7357 5
## 7358 5
## 7359 5
## 7360 5
## 7361 5
## 7362 5
## 7363 5
## 7364 5
## 7365 5
## 7366 5
## 7367 5
## 7368 5
## 7369 5
## 7370 6
## 7371 6
## 7372 6
## 7373 6
## 7374 6
## 7375 6
## 7376 6
## 7377 6
## 7378 6
## 7379 6
## 7380 6
## 7381 6
## 7382 6
## 7383 6
## 7384 6
## 7385 6
## 7386 6
## 7387 6
## 7388 6
## 7389 7
## 7390 7
## 7391 7
## 7392 7
## 7393 7
## 7394 7
## 7395 7
## 7396 7
## 7397 7
## 7398 7
## 7399 7
## 7400 7
## 7401 7
## 7402 7
## 7403 7
## 7404 7
## 7405 7
## 7406 7
## 7407 7
## 7408 7
## 7409 8
## 7410 8
## 7411 8
## 7412 8
## 7413 8
## 7414 8
## 7415 8
## 7416 8
## 7417 8
## 7418 8
## 7419 8
## 7420 8
## 7421 8
## 7422 8
## 7423 8
## 7424 8
## 7425 8
## 7426 8
## 7427 8
## 7428 8
## 7429 8
## 7430 8
## 7431 8
## 7432 8
## 7433 8
## 7434 8
## 7435 9
## 7436 9
## 7437 9
## 7438 9
## 7439 9
## 7440 9
## 7441 9
## 7442 9
## 7443 9
## 7444 9
## 7445 9
## 7446 10
## 7447 10
## 7448 10
## 7449 10
## 7450 10
## 7451 10
## 7452 10
## 7453 10
## 7454 10
## 7455 10
## 7456 10
## 7457 10
## 7458 10
## 7459 10
## 7460 10
## 7461 10
## 7462 10
## 7463 10
## 7464 10
## 7465 10
## 7466 10
## 7467 11
## 7468 11
## 7469 11
## 7470 11
## 7471 11
## 7472 11
## 7473 11
## 7474 11
## 7475 11
## 7476 11
## 7477 11
## 7478 11
## 7479 11
## 7480 11
## 7481 11
## 7482 11
## 7483 11
## 7484 11
## 7485 11
## 7486 12
## 7487 12
## 7488 12
## 7489 12
## 7490 12
## 7491 12
## 7492 12
## 7493 12
## 7494 12
## 7495 12
## 7496 12
## 7497 12
## 7498 12
## 7499 12
## 7500 12
## 7501 12
## 7502 12
## 7503 12
## 7504 12
## 7505 12
## 7506 12
## 7507 12
## 7508 12
## 7509 13
## 7510 13
## 7511 13
## 7512 13
## 7513 13
## 7514 13
## 7515 13
## 7516 13
## 7517 13
## 7518 13
## 7519 13
## 7520 13
## 7521 13
## 7522 13
## 7523 13
## 7524 13
## 7525 13
## 7526 13
## 7527 13
## 7528 13
## 7529 13
## 7530 13
## 7531 13
## 7532 13
## 7533 13
## 7534 13
## 7535 13
## 7536 13
## 7537 13
## 7538 13
## 7539 13
## 7540 13
## 7541 13
## 7542 13
## 7543 13
## 7544 13
## 7545 13
## 7546 14
## 7547 14
## 7548 14
## 7549 14
## 7550 14
## 7551 14
## 7552 14
## 7553 14
## 7554 14
## 7555 14
## 7556 14
## 7557 14
## 7558 14
## 7559 14
## 7560 14
## 7561 14
## 7562 15
## 7563 15
## 7564 15
## 7565 15
## 7566 15
## 7567 15
## 7568 15
## 7569 15
## 7570 15
## 7571 15
## 7572 15
## 7573 15
## 7574 15
## 7575 15
## 7576 15
## 7577 15
## 7578 15
## 7579 15
## 7580 15
## 7581 15
## 7582 15
## 7583 15
## 7584 15
## 7585 15
## 7586 15
## 7587 15
## 7588 15
## 7589 15
## 7590 15
## 7591 15
## 7592 15
## 7593 15
## 7594 15
## 7595 15
## 7596 16
## 7597 16
## 7598 16
## 7599 16
## 7600 16
## 7601 16
## 7602 16
## 7603 16
## 7604 16
## 7605 16
## 7606 16
## 7607 16
## 7608 16
## 7609 16
## 7610 16
## 7611 16
## 7612 16
## 7613 16
## 7614 16
## 7615 16
## 7616 16
## 7617 16
## 7618 16
## 7619 16
## 7620 16
## 7621 17
## 7622 17
## 7623 17
## 7624 17
## 7625 17
## 7626 17
## 7627 17
## 7628 17
## 7629 17
## 7630 17
## 7631 17
## 7632 17
## 7633 17
## 7634 17
## 7635 17
## 7636 17
## 7637 17
## 7638 17
## 7639 18
## 7640 18
## 7641 18
## 7642 18
## 7643 18
## 7644 18
## 7645 18
## 7646 18
## 7647 18
## 7648 18
## 7649 18
## 7650 18
## 7651 18
## 7652 18
## 7653 18
## 7654 18
## 7655 18
## 7656 18
## 7657 18
## 7658 18
## 7659 18
## 7660 18
## 7661 18
## 7662 19
## 7663 19
## 7664 19
## 7665 19
## 7666 19
## 7667 19
## 7668 19
## 7669 19
## 7670 19
## 7671 19
## 7672 19
## 7673 20
## 7674 20
## 7675 20
## 7676 20
## 7677 20
## 7678 20
## 7679 20
## 7680 20
## 7681 20
## 7682 20
## 7683 20
## 7684 20
## 7685 20
## 7686 20
## 7687 20
## 7688 20
## 7689 20
## 7690 20
## 7691 20
## 7692 20
## 7693 20
## 7694 20
## 7695 20
## 7696 20
## 7697 21
## 7698 21
## 7699 21
## 7700 21
## 7701 21
## 7702 21
## 7703 21
## 7704 21
## 7705 21
## 7706 21
## 7707 21
## 7708 21
## 7709 22
## 7710 22
## 7711 22
## 7712 22
## 7713 22
## 7714 22
## 7715 22
## 7716 22
## 7717 22
## 7718 22
## 7719 22
## 7720 22
## 7721 22
## 7722 22
## 7723 22
## 7724 22
## 7725 22
## 7726 22
## 7727 22
## 7728 22
## 7729 22
## 7730 22
## 7731 22
## 7732 23
## 7733 23
## 7734 23
## 7735 23
## 7736 23
## 7737 23
## 7738 23
## 7739 23
## 7740 23
## 7741 23
## 7742 23
## 7743 24
## 7744 24
## 7745 24
## 7746 24
## 7747 24
## 7748 24
## 7749 24
## 7750 24
## 7751 24
## 7752 24
## 7753 24
## 7754 24
## 7755 24
## 7756 25
## 7757 25
## 7758 25
## 7759 25
## 7760 25
## 7761 25
## 7762 25
## 7763 25
## 7764 25
## 7765 25
## 7766 25
## 7767 25
## 7768 25
## 7769 26
## 7770 26
## 7771 26
## 7772 26
## 7773 26
## 7774 26
## 7775 26
## 7776 26
## 7777 26
## 7778 26
## 7779 26
## 7780 26
## 7781 26
## 7782 26
## 7783 26
## 7784 26
## 7785 26
## 7786 26
## 7787 26
## 7788 26
## 7789 26
## 7790 26
## 7791 26
## 7792 26
## 7793 26
## 7794 27
## 7795 27
## 7796 27
## 7797 27
## 7798 27
## 7799 27
## 7800 27
## 7801 27
## 7802 27
## 7803 27
## 7804 27
## 7805 27
## 7806 27
## 7807 27
## 7808 27
## 7809 27
## 7810 27
## 7811 27
## 7812 27
## 7813 28
## 7814 28
## 7815 28
## 7816 28
## 7817 28
## 7818 28
## 7819 28
## 7820 28
## 7821 28
## 7822 28
## 7823 28
## 7824 28
## 7825 28
## 7826 28
## 7827 28
## 7828 28
## 7829 29
## 7830 29
## 7831 29
## 7832 29
## 7833 29
## 7834 29
## 7835 29
## 7836 29
## 7837 29
## 7838 29
## 7839 29
## 7840 29
## 7841 29
## 7842 29
## 7843 29
## 7844 29
## 7845 29
## 7846 29
## 7847 29
## 7848 29
## 7849 29
## 7850 29
## 7851 29
## 7852 29
## 7853 30
## 7854 30
## 7855 30
## 7856 30
## 7857 30
## 7858 30
## 7859 30
## 7860 30
## 7861 30
## 7862 30
## 7863 30
## 7864 30
## 7865 30
## 7866 30
## 7867 30
## 7868 30
## 7869 30
## 7870 30
## 7871 31
## 7872 31
## 7873 31
## 7874 31
## 7875 31
## 7876 31
## 7877 31
## 7878 31
## 7879 31
## 7880 1
## 7881 1
## 7882 1
## 7883 1
## 7884 1
## 7885 1
## 7886 1
## 7887 1
## 7888 1
## 7889 1
## 7890 1
## 7891 1
## 7892 1
## 7893 1
## 7894 1
## 7895 1
## 7896 1
## 7897 1
## 7898 1
## 7899 1
## 7900 1
## 7901 1
## 7902 1
## 7903 1
## 7904 1
## 7905 1
## 7906 1
## 7907 1
## 7908 2
## 7909 2
## 7910 2
## 7911 2
## 7912 2
## 7913 2
## 7914 2
## 7915 2
## 7916 2
## 7917 2
## 7918 2
## 7919 2
## 7920 2
## 7921 2
## 7922 2
## 7923 2
## 7924 2
## 7925 2
## 7926 2
## 7927 2
## 7928 2
## 7929 2
## 7930 2
## 7931 2
## 7932 2
## 7933 2
## 7934 2
## 7935 2
## 7936 2
## 7937 3
## 7938 3
## 7939 3
## 7940 3
## 7941 3
## 7942 3
## 7943 3
## 7944 3
## 7945 3
## 7946 3
## 7947 4
## 7948 4
## 7949 4
## 7950 4
## 7951 4
## 7952 4
## 7953 4
## 7954 4
## 7955 4
## 7956 4
## 7957 4
## 7958 4
## 7959 4
## 7960 4
## 7961 4
## 7962 4
## 7963 4
## 7964 5
## 7965 5
## 7966 5
## 7967 5
## 7968 5
## 7969 5
## 7970 5
## 7971 5
## 7972 5
## 7973 5
## 7974 5
## 7975 5
## 7976 5
## 7977 5
## 7978 5
## 7979 5
## 7980 5
## 7981 6
## 7982 6
## 7983 6
## 7984 6
## 7985 6
## 7986 6
## 7987 6
## 7988 7
## 7989 7
## 7990 7
## 7991 7
## 7992 7
## 7993 7
## 7994 7
## 7995 7
## 7996 7
## 7997 7
## 7998 7
## 7999 7
## 8000 7
## 8001 7
## 8002 7
## 8003 7
## 8004 7
## 8005 7
## 8006 7
## 8007 7
## 8008 7
## 8009 7
## 8010 7
## 8011 7
## 8012 7
## 8013 7
## 8014 7
## 8015 7
## 8016 7
## 8017 7
## 8018 7
## 8019 7
## 8020 7
## 8021 7
## 8022 7
## 8023 7
## 8024 7
## 8025 7
## 8026 7
## 8027 7
## 8028 7
## 8029 7
## 8030 7
## 8031 7
## 8032 7
## 8033 7
## 8034 7
## 8035 7
## 8036 7
## 8037 7
## 8038 7
## 8039 7
## 8040 7
## 8041 7
## 8042 7
## 8043 7
## 8044 7
## 8045 7
## 8046 7
## 8047 7
## 8048 8
## 8049 8
## 8050 8
## 8051 8
## 8052 8
## 8053 8
## 8054 8
## 8055 8
## 8056 8
## 8057 8
## 8058 8
## 8059 8
## 8060 8
## 8061 8
## 8062 9
## 8063 9
## 8064 9
## 8065 9
## 8066 9
## 8067 9
## 8068 9
## 8069 9
## 8070 9
## 8071 9
## 8072 9
## 8073 9
## 8074 10
## 8075 10
## 8076 10
## 8077 10
## 8078 10
## 8079 10
## 8080 10
## 8081 10
## 8082 10
## 8083 10
## 8084 10
## 8085 10
## 8086 10
## 8087 10
## 8088 11
## 8089 11
## 8090 11
## 8091 11
## 8092 11
## 8093 11
## 8094 11
## 8095 11
## 8096 11
## 8097 11
## 8098 11
## 8099 11
## 8100 11
## 8101 11
## 8102 11
## 8103 11
## 8104 11
## 8105 11
## 8106 11
## 8107 11
## 8108 11
## 8109 11
## 8110 11
## 8111 11
## 8112 11
## 8113 11
## 8114 12
## 8115 12
## 8116 12
## 8117 12
## 8118 12
## 8119 12
## 8120 12
## 8121 12
## 8122 12
## 8123 12
## 8124 12
## 8125 12
## 8126 12
## 8127 12
## 8128 12
## 8129 12
## 8130 12
## 8131 13
## 8132 13
## 8133 13
## 8134 13
## 8135 13
## 8136 13
## 8137 13
## 8138 14
## 8139 14
## 8140 14
## 8141 14
## 8142 14
## 8143 14
## 8144 14
## 8145 14
## 8146 14
## 8147 14
## 8148 14
## 8149 14
## 8150 14
## 8151 14
## 8152 14
## 8153 14
## 8154 14
## 8155 14
## 8156 14
## 8157 15
## 8158 15
## 8159 15
## 8160 15
## 8161 15
## 8162 15
## 8163 15
## 8164 15
## 8165 15
## 8166 15
## 8167 15
## 8168 15
## 8169 15
## 8170 15
## 8171 15
## 8172 15
## 8173 15
## 8174 15
## 8175 15
## 8176 15
## 8177 15
## 8178 15
## 8179 15
## 8180 15
## 8181 15
## 8182 15
## 8183 15
## 8184 15
## 8185 15
## 8186 15
## 8187 15
## 8188 15
## 8189 15
## 8190 15
## 8191 15
## 8192 15
## 8193 16
## 8194 16
## 8195 16
## 8196 16
## 8197 16
## 8198 16
## 8199 16
## 8200 16
## 8201 16
## 8202 16
## 8203 16
## 8204 16
## 8205 16
## 8206 17
## 8207 17
## 8208 17
## 8209 17
## 8210 18
## 8211 18
## 8212 18
## 8213 18
## 8214 18
## 8215 18
## 8216 18
## 8217 18
## 8218 18
## 8219 18
## 8220 18
## 8221 18
## 8222 18
## 8223 18
## 8224 18
## 8225 18
## 8226 19
## 8227 19
## 8228 19
## 8229 19
## 8230 19
## 8231 19
## 8232 19
## 8233 19
## 8234 19
## 8235 19
## 8236 19
## 8237 19
## 8238 19
## 8239 19
## 8240 19
## 8241 19
## 8242 19
## 8243 19
## 8244 19
## 8245 19
## 8246 19
## 8247 19
## 8248 19
## 8249 19
## 8250 19
## 8251 19
## 8252 20
## 8253 20
## 8254 20
## 8255 20
## 8256 20
## 8257 20
## 8258 20
## 8259 20
## 8260 20
## 8261 20
## 8262 20
## 8263 20
## 8264 20
## 8265 20
## 8266 20
## 8267 20
## 8268 20
## 8269 20
## 8270 21
## 8271 21
## 8272 21
## 8273 21
## 8274 21
## 8275 21
## 8276 21
## 8277 21
## 8278 21
## 8279 21
## 8280 21
## 8281 21
## 8282 21
## 8283 21
## 8284 21
## 8285 21
## 8286 21
## 8287 21
## 8288 21
## 8289 21
## 8290 21
## 8291 21
## 8292 21
## 8293 21
## 8294 21
## 8295 21
## 8296 21
## 8297 21
## 8298 21
## 8299 21
## 8300 21
## 8301 21
## 8302 21
## 8303 21
## 8304 21
## 8305 21
## 8306 21
## 8307 21
## 8308 21
## 8309 21
## 8310 21
## 8311 21
## 8312 21
## 8313 21
## 8314 21
## 8315 21
## 8316 21
## 8317 21
## 8318 21
## 8319 21
## 8320 21
## 8321 21
## 8322 21
## 8323 21
## 8324 21
## 8325 21
## 8326 21
## 8327 21
## 8328 21
## 8329 21
## 8330 21
## 8331 21
## 8332 21
## 8333 21
## 8334 22
## 8335 22
## 8336 22
## 8337 22
## 8338 22
## 8339 22
## 8340 22
## 8341 22
## 8342 22
## 8343 22
## 8344 22
## 8345 23
## 8346 23
## 8347 23
## 8348 23
## 8349 23
## 8350 23
## 8351 23
## 8352 23
## 8353 23
## 8354 23
## 8355 23
## 8356 23
## 8357 23
## 8358 23
## 8359 23
## 8360 23
## 8361 23
## 8362 23
## 8363 23
## 8364 24
## 8365 24
## 8366 24
## 8367 24
## 8368 24
## 8369 24
## 8370 24
## 8371 24
## 8372 24
## 8373 24
## 8374 24
## 8375 24
## 8376 24
## 8377 24
## 8378 24
## 8379 25
## 8380 25
## 8381 25
## 8382 25
## 8383 25
## 8384 25
## 8385 25
## 8386 25
## 8387 25
## 8388 25
## 8389 25
## 8390 26
## 8391 26
## 8392 26
## 8393 26
## 8394 26
## 8395 26
## 8396 26
## 8397 26
## 8398 26
## 8399 26
## 8400 26
## 8401 26
## 8402 26
## 8403 26
## 8404 26
## 8405 26
## 8406 26
## 8407 26
## 8408 26
## 8409 26
## 8410 26
## 8411 26
## 8412 26
## 8413 26
## 8414 26
## 8415 26
## 8416 26
## 8417 26
## 8418 26
## 8419 26
## 8420 26
## 8421 26
## 8422 26
## 8423 26
## 8424 26
## 8425 26
## 8426 26
## 8427 26
## 8428 26
## 8429 26
## 8430 26
## 8431 26
## 8432 27
## 8433 27
## 8434 27
## 8435 27
## 8436 27
## 8437 27
## 8438 27
## 8439 27
## 8440 28
## 8441 28
## 8442 28
## 8443 28
## 8444 28
## 8445 28
## 8446 28
## 8447 28
## 8448 28
## 8449 29
## 8450 29
## 8451 29
## 8452 29
## 8453 29
## 8454 30
## 8455 30
## 8456 30
## 8457 30
## 8458 30
## 8459 30
## 8460 30
## 8461 30
## 8462 30
## 8463 30
## 8464 30
## 8465 30
## 8466 30
## 8467 30
## 8468 30
## 8469 30
## 8470 30
## 8471 30
## 8472 30
## 8473 30
## 8474 30
## 8475 30
## 8476 30
## 8477 30
## 8478 30
## 8479 30
## 8480 30
## 8481 30
## 8482 30
## 8483 1
## 8484 1
## 8485 1
## 8486 1
## 8487 1
## 8488 1
## 8489 1
## 8490 1
## 8491 1
## 8492 1
## 8493 1
## 8494 1
## 8495 1
## 8496 1
## 8497 1
## 8498 1
## 8499 1
## 8500 1
## 8501 1
## 8502 1
## 8503 1
## 8504 1
## 8505 1
## 8506 1
## 8507 1
## 8508 2
## 8509 2
## 8510 2
## 8511 2
## 8512 2
## 8513 2
## 8514 3
## 8515 3
## 8516 3
## 8517 3
## 8518 3
## 8519 3
## 8520 3
## 8521 3
## 8522 3
## 8523 3
## 8524 3
## 8525 3
## 8526 3
## 8527 3
## 8528 4
## 8529 4
## 8530 4
## 8531 4
## 8532 4
## 8533 4
## 8534 4
## 8535 5
## 8536 5
## 8537 5
## 8538 5
## 8539 5
## 8540 5
## 8541 5
## 8542 5
## 8543 5
## 8544 5
## 8545 5
## 8546 6
## 8547 6
## 8548 6
## 8549 6
## 8550 6
## 8551 6
## 8552 6
## 8553 6
## 8554 6
## 8555 6
## 8556 6
## 8557 6
## 8558 6
## 8559 6
## 8560 6
## 8561 6
## 8562 6
## 8563 6
## 8564 6
## 8565 6
## 8566 6
## 8567 6
## 8568 6
## 8569 6
## 8570 6
## 8571 6
## 8572 6
## 8573 6
## 8574 6
## 8575 6
## 8576 6
## 8577 6
## 8578 6
## 8579 6
## 8580 6
## 8581 6
## 8582 6
## 8583 6
## 8584 6
## 8585 6
## 8586 6
## 8587 6
## 8588 6
## 8589 6
## 8590 6
## 8591 6
## 8592 6
## 8593 6
## 8594 6
## 8595 6
## 8596 6
## 8597 6
## 8598 6
## 8599 6
## 8600 6
## 8601 6
## 8602 6
## 8603 6
## 8604 7
## 8605 7
## 8606 7
## 8607 7
## 8608 7
## 8609 7
## 8610 7
## 8611 7
## 8612 7
## 8613 7
## 8614 8
## 8615 8
## 8616 8
## 8617 8
## 8618 8
## 8619 8
## 8620 8
## 8621 8
## 8622 8
## 8623 8
## 8624 8
## 8625 8
## 8626 8
## 8627 8
## 8628 8
## 8629 8
## 8630 8
## 8631 8
## 8632 8
## 8633 8
## 8634 8
## 8635 8
## 8636 8
## 8637 8
## 8638 8
## 8639 8
## 8640 8
## 8641 8
## 8642 8
## 8643 8
## 8644 8
## 8645 8
## 8646 8
## 8647 8
## 8648 8
## 8649 8
## 8650 8
## 8651 8
## 8652 8
## 8653 8
## 8654 8
## 8655 8
## 8656 8
## 8657 9
## 8658 9
## 8659 9
## 8660 9
## 8661 9
## 8662 9
## 8663 9
## 8664 9
## 8665 9
## 8666 9
## 8667 9
## 8668 9
## 8669 9
## 8670 9
## 8671 9
## 8672 9
## 8673 9
## 8674 9
## 8675 9
## 8676 9
## 8677 9
## 8678 9
## 8679 9
## 8680 9
## 8681 9
## 8682 9
## 8683 9
## 8684 9
## 8685 9
## 8686 9
## 8687 9
## 8688 9
## 8689 9
## 8690 9
## 8691 9
## 8692 9
## 8693 9
## 8694 9
## 8695 9
## 8696 9
## 8697 9
## 8698 9
## 8699 9
## 8700 9
## 8701 9
## 8702 9
## 8703 9
## 8704 9
## 8705 9
## 8706 9
## 8707 9
## 8708 9
## 8709 9
## 8710 9
## 8711 9
## 8712 10
## 8713 10
## 8714 10
## 8715 10
## 8716 11
## 8717 11
## 8718 11
## 8719 11
## 8720 11
## 8721 11
## 8722 11
## 8723 11
## 8724 11
## 8725 11
## 8726 11
## 8727 11
## 8728 11
## 8729 12
## 8730 12
## 8731 12
## 8732 12
## 8733 12
## 8734 12
## 8735 12
## 8736 12
## 8737 12
## 8738 12
## 8739 12
## 8740 12
## 8741 12
## 8742 12
## 8743 12
## 8744 12
## 8745 12
## 8746 12
## 8747 12
## 8748 12
## 8749 12
## 8750 12
## 8751 12
## 8752 12
## 8753 12
## 8754 12
## 8755 12
## 8756 12
## 8757 12
## 8758 12
## 8759 12
## 8760 12
## 8761 12
## 8762 12
## 8763 12
## 8764 12
## 8765 12
## 8766 12
## 8767 12
## 8768 12
## 8769 12
## 8770 12
## 8771 12
## 8772 12
## 8773 12
## 8774 12
## 8775 12
## 8776 12
## 8777 12
## 8778 12
## 8779 12
## 8780 13
## 8781 13
## 8782 13
## 8783 13
## 8784 13
## 8785 13
## 8786 14
## 8787 14
## 8788 14
## 8789 14
## 8790 14
## 8791 14
## 8792 14
## 8793 14
## 8794 14
## 8795 14
## 8796 14
## 8797 14
## 8798 14
## 8799 14
## 8800 14
## 8801 14
## 8802 14
## 8803 15
## 8804 15
## 8805 15
## 8806 15
## 8807 15
## 8808 15
## 8809 15
## 8810 15
## 8811 15
## 8812 15
## 8813 15
## 8814 15
## 8815 15
## 8816 15
## 8817 15
## 8818 15
## 8819 15
## 8820 15
## 8821 15
## 8822 15
## 8823 15
## 8824 15
## 8825 15
## 8826 15
## 8827 16
## 8828 16
## 8829 16
## 8830 16
## 8831 16
## 8832 16
## 8833 16
## 8834 16
## 8835 16
## 8836 16
## 8837 16
## 8838 16
## 8839 16
## 8840 16
## 8841 16
## 8842 16
## 8843 16
## 8844 16
## 8845 16
## 8846 16
## 8847 16
## 8848 16
## 8849 16
## 8850 16
## 8851 16
## 8852 16
## 8853 16
## 8854 16
## 8855 16
## 8856 16
## 8857 16
## 8858 16
## 8859 17
## 8860 17
## 8861 17
## 8862 17
## 8863 17
## 8864 17
## 8865 17
## 8866 17
## 8867 17
## 8868 17
## 8869 17
## 8870 17
## 8871 17
## 8872 17
## 8873 17
## 8874 17
## 8875 17
## 8876 17
## 8877 18
## 8878 18
## 8879 18
## 8880 18
## 8881 18
## 8882 18
## 8883 18
## 8884 18
## 8885 18
## 8886 18
## 8887 18
## 8888 18
## 8889 18
## 8890 18
## 8891 18
## 8892 18
## 8893 18
## 8894 18
## 8895 18
## 8896 18
## 8897 19
## 8898 19
## 8899 19
## 8900 19
## 8901 19
## 8902 19
## 8903 19
## 8904 19
## 8905 19
## 8906 19
## 8907 19
## 8908 19
## 8909 19
## 8910 19
## 8911 19
## 8912 19
## 8913 19
## 8914 19
## 8915 20
## 8916 20
## 8917 20
## 8918 20
## 8919 20
## 8920 20
## 8921 20
## 8922 20
## 8923 20
## 8924 20
## 8925 20
## 8926 20
## 8927 20
## 8928 20
## 8929 20
## 8930 20
## 8931 20
## 8932 20
## 8933 20
## 8934 20
## 8935 21
## 8936 21
## 8937 21
## 8938 21
## 8939 21
## 8940 21
## 8941 21
## 8942 21
## 8943 21
## 8944 21
## 8945 21
## 8946 21
## 8947 21
## 8948 21
## 8949 21
## 8950 21
## 8951 21
## 8952 21
## 8953 21
## 8954 21
## 8955 21
## 8956 21
## 8957 21
## 8958 22
## 8959 22
## 8960 22
## 8961 22
## 8962 22
## 8963 22
## 8964 22
## 8965 22
## 8966 22
## 8967 22
## 8968 22
## 8969 22
## 8970 22
## 8971 22
## 8972 22
## 8973 22
## 8974 22
## 8975 22
## 8976 22
## 8977 22
## 8978 22
## 8979 22
## 8980 22
## 8981 22
## 8982 22
## 8983 22
## 8984 22
## 8985 22
## 8986 22
## 8987 22
## 8988 22
## 8989 22
## 8990 22
## 8991 22
## 8992 22
## 8993 22
## 8994 22
## 8995 22
## 8996 22
## 8997 22
## 8998 22
## 8999 22
## 9000 22
## 9001 22
## 9002 22
## 9003 22
## 9004 22
## 9005 22
## 9006 22
## 9007 22
## 9008 22
## 9009 22
## 9010 22
## 9011 22
## 9012 22
## 9013 22
## 9014 22
## 9015 22
## 9016 22
## 9017 23
## 9018 23
## 9019 23
## 9020 23
## 9021 23
## 9022 23
## 9023 23
## 9024 23
## 9025 23
## 9026 23
## 9027 24
## 9028 24
## 9029 24
## 9030 24
## 9031 24
## 9032 24
## 9033 24
## 9034 24
## 9035 24
## 9036 24
## 9037 24
## 9038 24
## 9039 24
## 9040 24
## 9041 24
## 9042 24
## 9043 24
## 9044 24
## 9045 24
## 9046 24
## 9047 25
## 9048 25
## 9049 25
## 9050 25
## 9051 25
## 9052 25
## 9053 25
## 9054 25
## 9055 25
## 9056 26
## 9057 26
## 9058 26
## 9059 26
## 9060 26
## 9061 26
## 9062 26
## 9063 26
## 9064 26
## 9065 26
## 9066 26
## 9067 26
## 9068 26
## 9069 26
## 9070 26
## 9071 26
## 9072 26
## 9073 26
## 9074 26
## 9075 27
## 9076 27
## 9077 27
## 9078 27
## 9079 27
## 9080 27
## 9081 27
## 9082 27
## 9083 27
## 9084 27
## 9085 27
## 9086 27
## 9087 27
## 9088 27
## 9089 27
## 9090 27
## 9091 27
## 9092 27
## 9093 27
## 9094 27
## 9095 27
## 9096 27
## 9097 27
## 9098 27
## 9099 27
## 9100 27
## 9101 27
## 9102 27
## 9103 27
## 9104 27
## 9105 27
## 9106 27
## 9107 27
## 9108 27
## 9109 27
## 9110 28
## 9111 28
## 9112 28
## 9113 28
## 9114 28
## 9115 28
## 9116 28
## 9117 28
## 9118 28
## 9119 28
## 9120 28
## 9121 28
## 9122 28
## 9123 28
## 9124 28
## 9125 28
## 9126 28
## 9127 28
## 9128 28
## 9129 28
## 9130 28
## 9131 28
## 9132 28
## 9133 28
## 9134 29
## 9135 29
## 9136 29
## 9137 29
## 9138 29
## 9139 29
## 9140 29
## 9141 29
## 9142 29
## 9143 29
## 9144 29
## 9145 29
## 9146 29
## 9147 29
## 9148 29
## 9149 29
## 9150 29
## 9151 29
## 9152 29
## 9153 29
## 9154 29
## 9155 29
## 9156 30
## 9157 30
## 9158 30
## 9159 30
## 9160 30
## 9161 30
## 9162 30
## 9163 30
## 9164 30
## 9165 30
## 9166 30
## 9167 31
## 9168 31
## 9169 31
## 9170 31
## 9171 31
## 9172 31
## 9173 31
## 9174 31
## 9175 31
## 9176 31
## 9177 31
## 9178 1
## 9179 1
## 9180 1
## 9181 1
## 9182 1
## 9183 1
## 9184 1
## 9185 1
## 9186 1
## 9187 1
## 9188 1
## 9189 1
## 9190 1
## 9191 1
## 9192 1
## 9193 1
## 9194 1
## 9195 1
## 9196 1
## 9197 1
## 9198 1
## 9199 1
## 9200 2
## 9201 2
## 9202 2
## 9203 2
## 9204 2
## 9205 2
## 9206 2
## 9207 2
## 9208 2
## 9209 3
## 9210 3
## 9211 3
## 9212 3
## 9213 3
## 9214 3
## 9215 3
## 9216 3
## 9217 3
## 9218 3
## 9219 3
## 9220 3
## 9221 3
## 9222 3
## 9223 3
## 9224 3
## 9225 3
## 9226 3
## 9227 3
## 9228 3
## 9229 4
## 9230 4
## 9231 4
## 9232 4
## 9233 4
## 9234 4
## 9235 4
## 9236 4
## 9237 5
## 9238 5
## 9239 5
## 9240 5
## 9241 5
## 9242 5
## 9243 5
## 9244 5
## 9245 5
## 9246 5
## 9247 5
## 9248 5
## 9249 5
## 9250 5
## 9251 5
## 9252 5
## 9253 5
## 9254 5
## 9255 5
## 9256 5
## 9257 5
## 9258 5
## 9259 5
## 9260 5
## 9261 5
## 9262 5
## 9263 5
## 9264 5
## 9265 5
## 9266 6
## 9267 6
## 9268 6
## 9269 6
## 9270 6
## 9271 6
## 9272 6
## 9273 6
## 9274 7
## 9275 7
## 9276 7
## 9277 7
## 9278 7
## 9279 7
## 9280 7
## 9281 7
## 9282 8
## 9283 8
## 9284 8
## 9285 8
## 9286 8
## 9287 8
## 9288 8
## 9289 8
## 9290 9
## 9291 9
## 9292 10
## 9293 10
## 9294 10
## 9295 10
## 9296 10
## 9297 10
## 9298 10
## 9299 10
## 9300 10
## 9301 10
## 9302 10
## 9303 10
## 9304 10
## 9305 10
## 9306 10
## 9307 11
## 9308 11
## 9309 11
## 9310 11
## 9311 11
## 9312 11
## 9313 11
## 9314 11
## 9315 11
## 9316 11
## 9317 11
## 9318 11
## 9319 12
## 9320 12
## 9321 12
## 9322 12
## 9323 12
## 9324 12
## 9325 12
## 9326 12
## 9327 12
## 9328 12
## 9329 12
## 9330 12
## 9331 12
## 9332 12
## 9333 12
## 9334 12
## 9335 12
## 9336 14
## 9337 14
## 9338 14
## 9339 14
## 9340 14
## 9341 14
## 9342 14
## 9343 14
## 9344 15
## 9345 16
## 9346 16
## 9347 16
## 9348 17
## 9349 17
## 9350 17
## 9351 17
## 9352 17
## 9353 17
## 9354 17
## 9355 17
## 9356 17
## 9357 17
## 9358 17
## 9359 17
## 9360 18
## 9361 18
## 9362 18
## 9363 18
## 9364 18
## 9365 18
## 9366 18
## 9367 18
## 9368 18
## 9369 18
## 9370 19
## 9371 19
## 9372 19
## 9373 19
## 9374 19
## 9375 20
## 9376 20
## 9377 21
## 9378 21
## 9379 21
## 9380 21
## 9381 21
## 9382 21
## 9383 21
## 9384 21
## 9385 21
## 9386 21
## 9387 22
## 9388 22
## 9389 22
## 9390 22
## 9391 23
## 9392 23
## 9393 23
## 9394 23
## 9395 23
## 9396 23
## 9397 24
## 9398 24
## 9399 24
## 9400 24
## 9401 24
## 9402 24
## 9403 24
## 9404 25
## 9405 25
## 9406 25
## 9407 25
## 9408 25
## 9409 25
## 9410 25
## 9411 25
## 9412 26
## 9413 26
## 9414 26
## 9415 26
## 9416 26
## 9417 26
## 9418 26
## 9419 26
## 9420 26
## 9421 26
## 9422 26
## 9423 26
## 9424 26
## 9425 26
## 9426 26
## 9427 26
## 9428 26
## 9429 26
## 9430 26
## 9431 26
## 9432 26
## 9433 26
## 9434 27
## 9435 27
## 9436 27
## 9437 27
## 9438 28
## 9439 28
## 9440 29
## 9441 29
## 9442 29
## 9443 29
## 9444 29
## 9445 29
## 9446 29
## 9447 29
## 9448 30
## 9449 30
## 9450 30
## 9451 30
## 9452 30
## 9453 30
## 9454 1
## 9455 1
## 9456 1
## 9457 1
## 9458 1
## 9459 1
## 9460 1
## 9461 2
## 9462 2
## 9463 2
## 9464 2
## 9465 2
## 9466 3
## 9467 3
## 9468 3
## 9469 3
## 9470 3
## 9471 3
## 9472 3
## 9473 3
## 9474 3
## 9475 3
## 9476 3
## 9477 3
## 9478 3
## 9479 3
## 9480 3
## 9481 3
## 9482 3
## 9483 3
## 9484 3
## 9485 3
## 9486 3
## 9487 3
## 9488 3
## 9489 3
## 9490 3
## 9491 3
## 9492 3
## 9493 3
## 9494 3
## 9495 3
## 9496 3
## 9497 3
## 9498 3
## 9499 3
## 9500 3
## 9501 3
## 9502 3
## 9503 3
## 9504 3
## 9505 3
## 9506 3
## 9507 3
## 9508 4
## 9509 5
## 9510 5
## 9511 5
## 9512 5
## 9513 5
## 9514 5
## 9515 5
## 9516 5
## 9517 5
## 9518 5
## 9519 5
## 9520 6
## 9521 6
## 9522 6
## 9523 6
## 9524 6
## 9525 6
## 9526 6
## 9527 7
## 9528 7
## 9529 7
## 9530 7
## 9531 7
## 9532 7
## 9533 8
## 9534 8
## 9535 8
## 9536 8
## 9537 8
## 9538 8
## 9539 8
## 9540 8
## 9541 8
## 9542 8
## 9543 8
## 9544 8
## 9545 8
## 9546 8
## 9547 8
## 9548 8
## 9549 8
## 9550 8
## 9551 8
## 9552 8
## 9553 9
## 9554 9
## 9555 9
## 9556 10
## 9557 10
## 9558 10
## 9559 10
## 9560 10
## 9561 10
## 9562 10
## 9563 10
## 9564 11
## 9565 11
## 9566 11
## 9567 12
## 9568 12
## 9569 12
## 9570 12
## 9571 13
## 9572 13
## 9573 14
## 9574 15
## 9575 15
## 9576 15
## 9577 15
## 9578 15
## 9579 16
## 9580 16
## 9581 16
## 9582 16
## 9583 16
## 9584 16
## 9585 17
## 9586 17
## 9587 17
## 9588 17
## 9589 17
## 9590 17
## 9591 17
## 9592 17
## 9593 17
## 9594 17
## 9595 17
## 9596 17
## 9597 17
## 9598 17
## 9599 17
## 9600 18
## 9601 18
## 9602 18
## 9603 18
## 9604 19
## 9605 19
## 9606 19
## 9607 19
## 9608 19
## 9609 19
## 9610 19
## 9611 20
## 9612 20
## 9613 20
## 9614 20
## 9615 20
## 9616 20
## 9617 20
## 9618 20
## 9619 20
## 9620 20
## 9621 20
## 9622 20
## 9623 20
## 9624 21
## 9625 21
## 9626 21
## 9627 21
## 9628 21
## 9629 21
## 9630 21
## 9631 21
## 9632 22
## 9633 22
## 9634 22
## 9635 22
## 9636 22
## 9637 22
## 9638 22
## 9639 22
## 9640 22
## 9641 22
## 9642 22
## 9643 22
## 9644 22
## 9645 22
## 9646 22
## 9647 23
## 9648 23
## 9649 23
## 9650 23
## 9651 23
## 9652 23
## 9653 23
## 9654 23
## 9655 23
## 9656 23
## 9657 23
## 9658 23
## 9659 23
## 9660 23
## 9661 23
## 9662 23
## 9663 23
## 9664 23
## 9665 23
## 9666 23
## 9667 24
## 9668 24
## 9669 24
## 9670 24
## 9671 24
## 9672 24
## 9673 24
## 9674 24
## 9675 24
## 9676 24
## 9677 24
## 9678 24
## 9679 24
## 9680 24
## 9681 24
## 9682 24
## 9683 25
## 9684 25
## 9685 26
## 9686 26
## 9687 26
## 9688 26
## 9689 26
## 9690 26
## 9691 26
## 9692 26
## 9693 26
## 9694 26
## 9695 26
## 9696 26
## 9697 26
## 9698 26
## 9699 26
## 9700 26
## 9701 26
## 9702 26
## 9703 26
## 9704 26
## 9705 26
## 9706 27
## 9707 27
## 9708 27
## 9709 27
## 9710 27
## 9711 27
## 9712 27
## 9713 28
## 9714 28
## 9715 28
## 9716 28
## 9717 28
## 9718 28
## 9719 28
## 9720 28
## 9721 29
## 9722 29
## 9723 29
## 9724 29
## 9725 29
## 9726 29
## 9727 30
## 9728 30
## 9729 30
## 9730 30
## 9731 30
## 9732 30
## 9733 30
## 9734 30
## 9735 30
## 9736 30
## 9737 30
## 9738 30
## 9739 30
## 9740 30
## 9741 30
## 9742 30
## 9743 30
## 9744 30
## 9745 30
## 9746 30
## 9747 30
## 9748 30
## 9749 30
## 9750 30
## 9751 30
## 9752 30
## 9753 30
## 9754 30
## 9755 30
## 9756 30
## 9757 30
## 9758 30
## 9759 30
## 9760 30
## 9761 30
## 9762 30
## 9763 30
## 9764 30
## 9765 30
## 9766 30
## 9767 30
## 9768 30
## 9769 31
## 9770 31
## 9771 31
## 9772 31
## 9773 31
## 9774 31
## 9775 31
## 9776 1
## 9777 1
## 9778 1
## 9779 1
## 9780 1
## 9781 1
## 9782 1
## 9783 1
## 9784 1
## 9785 1
## 9786 2
## 9787 2
## 9788 2
## 9789 2
## 9790 2
## 9791 2
## 9792 2
## 9793 2
## 9794 2
## 9795 2
## 9796 2
## 9797 2
## 9798 2
## 9799 3
## 9800 3
## 9801 3
## 9802 3
## 9803 3
## 9804 3
## 9805 3
## 9806 4
## 9807 4
## 9808 4
## 9809 4
## 9810 4
## 9811 4
## 9812 4
## 9813 5
## 9814 5
## 9815 5
## 9816 5
## 9817 6
## 9818 6
## 9819 6
## 9820 6
## 9821 6
## 9822 7
## 9823 7
## 9824 7
## 9825 7
## 9826 7
## 9827 7
## 9828 7
## 9829 8
## 9830 8
## 9831 8
## 9832 8
## 9833 8
## 9834 9
## 9835 9
## 9836 9
## 9837 9
## 9838 9
## 9839 10
## 9840 10
## 9841 11
## 9842 11
## 9843 11
## 9844 11
## 9845 11
## 9846 11
## 9847 11
## 9848 11
## 9849 12
## 9850 12
## 9851 12
## 9852 12
## 9853 13
## 9854 13
## 9855 13
## 9856 14
## 9857 14
## 9858 14
## 9859 14
## 9860 14
## 9861 14
## 9862 14
## 9863 14
## 9864 14
## 9865 14
## 9866 14
## 9867 14
## 9868 14
## 9869 14
## 9870 15
## 9871 16
## 9872 16
## 9873 16
## 9874 16
## 9875 16
## 9876 16
## 9877 16
## 9878 16
## 9879 16
## 9880 16
## 9881 16
## 9882 16
## 9883 16
## 9884 16
## 9885 16
## 9886 16
## 9887 16
## 9888 16
## 9889 17
## 9890 17
## 9891 17
## 9892 17
## 9893 17
## 9894 18
## 9895 18
## 9896 19
## 9897 19
## 9898 19
## 9899 19
## 9900 19
## 9901 19
## 9902 20
## 9903 20
## 9904 20
## 9905 20
## 9906 20
## 9907 20
## 9908 20
## 9909 20
## 9910 21
## 9911 21
## 9912 22
## 9913 22
## 9914 22
## 9915 22
## 9916 23
## 9917 23
## 9918 23
## 9919 23
## 9920 23
## 9921 23
## 9922 24
## 9923 24
## 9924 24
## 9925 25
## 9926 25
## 9927 25
## 9928 26
## 9929 26
## 9930 26
## 9931 27
## 9932 27
## 9933 27
## 9934 27
## 9935 27
## 9936 27
## 9937 27
## 9938 27
## 9939 27
## 9940 27
## 9941 27
## 9942 27
## 9943 28
## 9944 28
## 9945 28
## 9946 28
## 9947 28
## 9948 28
## 9949 28
## 9950 28
## 9951 28
## 9952 28
## 9953 28
## 9954 28
## 9955 28
## 9956 28
## 9957 28
## 9958 28
## 9959 28
## 9960 28
## 9961 28
## 9962 28
## 9963 29
## 9964 29
## 9965 29
## 9966 29
## 9967 30
## 9968 30
## 9969 30
## 9970 30
## 9971 30
## 9972 30
## 9973 30
## 9974 30
## 9975 31
## 9976 31
## 9977 31
## 9978 31
## 9979 1
## 9980 1
## 9981 1
## 9982 1
## 9983 1
## 9984 2
## 9985 2
## 9986 2
## 9987 2
## 9988 2
## 9989 2
## 9990 2
## 9991 3
## 9992 3
## 9993 3
## 9994 3
## 9995 3
## 9996 3
## 9997 3
## 9998 4
## 9999 4
## 10000 4
## 10001 4
## 10002 4
## 10003 4
## 10004 4
## 10005 4
## 10006 4
## 10007 4
## 10008 4
## 10009 4
## 10010 4
## 10011 4
## 10012 4
## 10013 5
## 10014 5
## 10015 5
## 10016 5
## 10017 6
## 10018 6
## 10019 6
## 10020 6
## 10021 6
## 10022 6
## 10023 6
## 10024 6
## 10025 6
## 10026 6
## 10027 6
## 10028 7
## 10029 7
## 10030 7
## 10031 7
## 10032 7
## 10033 8
## 10034 8
## 10035 8
## 10036 8
## 10037 8
## 10038 8
## 10039 9
## 10040 9
## 10041 9
## 10042 10
## 10043 10
## 10044 10
## 10045 10
## 10046 10
## 10047 10
## 10048 10
## 10049 10
## 10050 10
## 10051 10
## 10052 10
## 10053 10
## 10054 10
## 10055 10
## 10056 10
## 10057 10
## 10058 10
## 10059 10
## 10060 10
## 10061 10
## 10062 10
## 10063 10
## 10064 10
## 10065 10
## 10066 10
## 10067 10
## 10068 10
## 10069 10
## 10070 10
## 10071 10
## 10072 10
## 10073 10
## 10074 10
## 10075 10
## 10076 10
## 10077 10
## 10078 10
## 10079 10
## 10080 10
## 10081 10
## 10082 10
## 10083 10
## 10084 10
## 10085 11
## 10086 11
## 10087 11
## 10088 11
## 10089 11
## 10090 11
## 10091 11
## 10092 11
## 10093 11
## 10094 11
## 10095 11
## 10096 11
## 10097 11
## 10098 11
## 10099 11
## 10100 11
## 10101 11
## 10102 12
## 10103 12
## 10104 12
## 10105 12
## 10106 12
## 10107 12
## 10108 12
## 10109 12
## 10110 13
## 10111 13
## 10112 13
## 10113 13
## 10114 13
## 10115 13
## 10116 13
## 10117 13
## 10118 13
## 10119 13
## 10120 13
## 10121 13
## 10122 13
## 10123 14
## 10124 14
## 10125 14
## 10126 14
## 10127 14
## 10128 14
## 10129 14
## 10130 14
## 10131 14
## 10132 14
## 10133 14
## 10134 15
## 10135 15
## 10136 15
## 10137 15
## 10138 16
## 10139 16
## 10140 16
## 10141 16
## 10142 16
## 10143 16
## 10144 16
## 10145 16
## 10146 16
## 10147 16
## 10148 16
## 10149 16
## 10150 17
## 10151 17
## 10152 17
## 10153 17
## 10154 17
## 10155 17
## 10156 17
## 10157 17
## 10158 17
## 10159 17
## 10160 17
## 10161 17
## 10162 17
## 10163 17
## 10164 17
## 10165 17
## 10166 17
## 10167 17
## 10168 17
## 10169 17
## 10170 18
## 10171 18
## 10172 18
## 10173 18
## 10174 18
## 10175 18
## 10176 18
## 10177 18
## 10178 18
## 10179 18
## 10180 18
## 10181 18
## 10182 18
## 10183 18
## 10184 18
## 10185 18
## 10186 18
## 10187 18
## 10188 18
## 10189 18
## 10190 18
## 10191 18
## 10192 18
## 10193 18
## 10194 18
## 10195 18
## 10196 19
## 10197 19
## 10198 19
## 10199 19
## 10200 19
## 10201 19
## 10202 19
## 10203 19
## 10204 19
## 10205 19
## 10206 19
## 10207 19
## 10208 19
## 10209 19
## 10210 19
## 10211 19
## 10212 19
## 10213 20
## 10214 20
## 10215 20
## 10216 20
## 10217 20
## 10218 20
## 10219 20
## 10220 20
## 10221 20
## 10222 21
## 10223 21
## 10224 21
## 10225 21
## 10226 21
## 10227 21
## 10228 21
## 10229 22
## 10230 22
## 10231 22
## 10232 22
## 10233 22
## 10234 22
## 10235 22
## 10236 22
## 10237 22
## 10238 22
## 10239 22
## 10240 22
## 10241 22
## 10242 22
## 10243 22
## 10244 22
## 10245 22
## 10246 22
## 10247 22
## 10248 22
## 10249 22
## 10250 22
## 10251 23
## 10252 23
## 10253 23
## 10254 23
## 10255 23
## 10256 23
## 10257 23
## 10258 23
## 10259 23
## 10260 23
## 10261 23
## 10262 23
## 10263 23
## 10264 23
## 10265 23
## 10266 23
## 10267 23
## 10268 23
## 10269 23
## 10270 24
## 10271 24
## 10272 24
## 10273 24
## 10274 24
## 10275 24
## 10276 24
## 10277 24
## 10278 24
## 10279 24
## 10280 24
## 10281 24
## 10282 24
## 10283 24
## 10284 24
## 10285 24
## 10286 24
## 10287 24
## 10288 24
## 10289 24
## 10290 24
## 10291 24
## 10292 25
## 10293 25
## 10294 25
## 10295 25
## 10296 25
## 10297 25
## 10298 25
## 10299 25
## 10300 25
## 10301 25
## 10302 25
## 10303 25
## 10304 25
## 10305 25
## 10306 25
## 10307 25
## 10308 25
## 10309 25
## 10310 25
## 10311 25
## 10312 25
## 10313 25
## 10314 25
## 10315 25
## 10316 25
## 10317 25
## 10318 25
## 10319 25
## 10320 25
## 10321 25
## 10322 25
## 10323 25
## 10324 25
## 10325 26
## 10326 26
## 10327 26
## 10328 26
## 10329 26
## 10330 26
## 10331 27
## 10332 27
## 10333 27
## 10334 27
## 10335 28
## 10336 28
## 10337 28
## 10338 28
## 10339 28
## 10340 28
## 10341 28
## 10342 28
## 10343 28
## 10344 28
## 10345 28
## 10346 28
## 10347 28
## 10348 28
## 10349 28
## 10350 28
## 10351 28
## 10352 28
## 10353 28
## 10354 28
## 10355 28
## 10356 28
## 10357 28
## 10358 28
## 10359 28
## 10360 28
## 10361 28
## 10362 1
## 10363 1
## 10364 1
## 10365 1
## 10366 1
## 10367 1
## 10368 1
## 10369 1
## 10370 1
## 10371 1
## 10372 1
## 10373 1
## 10374 1
## 10375 1
## 10376 1
## 10377 1
## 10378 1
## 10379 1
## 10380 1
## 10381 1
## 10382 1
## 10383 1
## 10384 1
## 10385 1
## 10386 1
## 10387 2
## 10388 2
## 10389 3
## 10390 3
## 10391 3
## 10392 3
## 10393 3
## 10394 3
## 10395 4
## 10396 4
## 10397 4
## 10398 4
## 10399 4
## 10400 4
## 10401 4
## 10402 5
## 10403 5
## 10404 5
## 10405 5
## 10406 5
## 10407 5
## 10408 5
## 10409 5
## 10410 5
## 10411 5
## 10412 5
## 10413 5
## 10414 5
## 10415 5
## 10416 5
## 10417 5
## 10418 5
## 10419 5
## 10420 5
## 10421 5
## 10422 5
## 10423 5
## 10424 5
## 10425 5
## 10426 5
## 10427 5
## 10428 5
## 10429 5
## 10430 5
## 10431 5
## 10432 6
## 10433 6
## 10434 6
## 10435 6
## 10436 6
## 10437 7
## 10438 7
## 10439 7
## 10440 7
## 10441 7
## 10442 8
## 10443 8
## 10444 8
## 10445 8
## 10446 9
## 10447 9
## 10448 9
## 10449 9
## 10450 9
## 10451 9
## 10452 9
## 10453 9
## 10454 9
## 10455 9
## 10456 9
## 10457 9
## 10458 9
## 10459 9
## 10460 9
## 10461 9
## 10462 9
## 10463 9
## 10464 9
## 10465 9
## 10466 9
## 10467 9
## 10468 9
## 10469 9
## 10470 9
## 10471 9
## 10472 9
## 10473 9
## 10474 9
## 10475 9
## 10476 9
## 10477 9
## 10478 9
## 10479 9
## 10480 9
## 10481 9
## 10482 9
## 10483 9
## 10484 9
## 10485 9
## 10486 9
## 10487 9
## 10488 9
## 10489 9
## 10490 9
## 10491 9
## 10492 9
## 10493 9
## 10494 10
## 10495 10
## 10496 10
## 10497 10
## 10498 10
## 10499 10
## 10500 10
## 10501 11
## 10502 11
## 10503 11
## 10504 11
## 10505 11
## 10506 11
## 10507 11
## 10508 11
## 10509 11
## 10510 11
## 10511 11
## 10512 11
## 10513 11
## 10514 11
## 10515 11
## 10516 11
## 10517 11
## 10518 11
## 10519 11
## 10520 11
## 10521 11
## 10522 11
## 10523 11
## 10524 11
## 10525 11
## 10526 11
## 10527 12
## 10528 12
## 10529 12
## 10530 12
## 10531 12
## 10532 12
## 10533 12
## 10534 12
## 10535 13
## 10536 13
## 10537 13
## 10538 13
## 10539 13
## 10540 13
## 10541 13
## 10542 13
## 10543 13
## 10544 14
## 10545 14
## 10546 14
## 10547 14
## 10548 14
## 10549 14
## 10550 14
## 10551 14
## 10552 14
## 10553 14
## 10554 14
## 10555 14
## 10556 14
## 10557 14
## 10558 14
## 10559 14
## 10560 14
## 10561 14
## 10562 14
## 10563 14
## 10564 14
## 10565 14
## 10566 14
## 10567 14
## 10568 14
## 10569 14
## 10570 14
## 10571 14
## 10572 14
## 10573 14
## 10574 14
## 10575 14
## 10576 14
## 10577 14
## 10578 15
## 10579 15
## 10580 15
## 10581 15
## 10582 15
## 10583 15
## 10584 15
## 10585 15
## 10586 15
## 10587 16
## 10588 16
## 10589 16
## 10590 16
## 10591 17
## 10592 17
## 10593 17
## 10594 17
## 10595 17
## 10596 17
## 10597 18
## 10598 18
## 10599 18
## 10600 18
## 10601 18
## 10602 18
## 10603 18
## 10604 18
## 10605 18
## 10606 18
## 10607 18
## 10608 18
## 10609 18
## 10610 19
## 10611 19
## 10612 19
## 10613 19
## 10614 19
## 10615 19
## 10616 20
## 10617 22
## 10618 22
## 10619 22
## 10620 23
## 10621 23
## 10622 24
## 10623 24
## 10624 24
## 10625 24
## 10626 24
## 10627 24
## 10628 24
## 10629 24
## 10630 24
## 10631 24
## 10632 24
## 10633 24
## 10634 24
## 10635 24
## 10636 24
## 10637 24
## 10638 24
## 10639 24
## 10640 24
## 10641 24
## 10642 24
## 10643 24
## 10644 24
## 10645 24
## 10646 24
## 10647 25
## 10648 25
## 10649 25
## 10650 25
## 10651 25
## 10652 25
## 10653 25
## 10654 25
## 10655 25
## 10656 26
## 10657 26
## 10658 26
## 10659 26
## 10660 26
## 10661 26
## 10662 26
## 10663 26
## 10664 27
## 10665 27
## 10666 27
## 10667 27
## 10668 27
## 10669 27
## 10670 27
## 10671 27
## 10672 27
## 10673 27
## 10674 27
## 10675 27
## 10676 27
## 10677 27
## 10678 27
## 10679 27
## 10680 27
## 10681 27
## 10682 27
## 10683 27
## 10684 27
## 10685 27
## 10686 27
## 10687 27
## 10688 27
## 10689 27
## 10690 27
## 10691 27
## 10692 27
## 10693 27
## 10694 27
## 10695 27
## 10696 27
## 10697 27
## 10698 27
## 10699 27
## 10700 27
## 10701 27
## 10702 27
## 10703 27
## 10704 27
## 10705 27
## 10706 27
## 10707 27
## 10708 27
## 10709 27
## 10710 27
## 10711 27
## 10712 27
## 10713 27
## 10714 28
## 10715 28
## 10716 28
## 10717 28
## 10718 28
## 10719 28
## 10720 28
## 10721 28
## 10722 28
## 10723 28
## 10724 29
## 10725 29
## 10726 29
## 10727 29
## 10728 29
## 10729 29
## 10730 29
## 10731 29
## 10732 30
## 10733 30
## 10734 30
## 10735 30
## 10736 30
## 10737 30
## 10738 30
## 10739 30
## 10740 30
## 10741 31
## 10742 31
## 10743 31
## 10744 31
## 10745 31
## 10746 31
## 10747 31
## 10748 31
## 10749 31
## 10750 31
## 10751 31
## 10752 31
## 10753 1
## 10754 1
## 10755 1
## 10756 1
## 10757 1
## 10758 1
## 10759 1
## 10760 1
## 10761 2
## 10762 2
## 10763 2
## 10764 2
## 10765 2
## 10766 2
## 10767 2
## 10768 3
## 10769 3
## 10770 3
## 10771 3
## 10772 3
## 10773 3
## 10774 3
## 10775 3
## 10776 3
## 10777 3
## 10778 3
## 10779 3
## 10780 3
## 10781 3
## 10782 3
## 10783 3
## 10784 3
## 10785 3
## 10786 3
## 10787 3
## 10788 3
## 10789 3
## 10790 3
## 10791 3
## 10792 3
## 10793 3
## 10794 4
## 10795 4
## 10796 4
## 10797 4
## 10798 4
## 10799 5
## 10800 5
## 10801 5
## 10802 5
## 10803 5
## 10804 5
## 10805 5
## 10806 5
## 10807 5
## 10808 5
## 10809 5
## 10810 5
## 10811 5
## 10812 5
## 10813 6
## 10814 6
## 10815 6
## 10816 6
## 10817 6
## 10818 6
## 10819 6
## 10820 6
## 10821 6
## 10822 6
## 10823 6
## 10824 6
## 10825 6
## 10826 7
## 10827 7
## 10828 7
## 10829 7
## 10830 7
## 10831 7
## 10832 7
## 10833 7
## 10834 7
## 10835 8
## 10836 8
## 10837 8
## 10838 8
## 10839 8
## 10840 8
## 10841 8
## 10842 8
## 10843 8
## 10844 8
## 10845 8
## 10846 8
## 10847 8
## 10848 8
## 10849 8
## 10850 8
## 10851 8
## 10852 8
## 10853 8
## 10854 8
## 10855 8
## 10856 8
## 10857 8
## 10858 8
## 10859 8
## 10860 8
## 10861 8
## 10862 8
## 10863 8
## 10864 8
## 10865 8
## 10866 8
## 10867 8
## 10868 8
## 10869 9
## 10870 9
## 10871 9
## 10872 9
## 10873 9
## 10874 9
## 10875 9
## 10876 9
## 10877 9
## 10878 9
## 10879 9
## 10880 9
## 10881 9
## 10882 9
## 10883 9
## 10884 9
## 10885 9
## 10886 9
## 10887 9
## 10888 9
## 10889 9
## 10890 9
## 10891 9
## 10892 9
## 10893 9
## 10894 9
## 10895 9
## 10896 9
## 10897 9
## 10898 9
## 10899 9
## 10900 9
## 10901 9
## 10902 9
## 10903 9
## 10904 9
## 10905 9
## 10906 9
## 10907 9
## 10908 9
## 10909 9
## 10910 9
## 10911 9
## 10912 10
## 10913 10
## 10914 10
## 10915 10
## 10916 10
## 10917 10
## 10918 10
## 10919 10
## 10920 10
## 10921 10
## 10922 10
## 10923 10
## 10924 10
## 10925 10
## 10926 10
## 10927 10
## 10928 11
## 10929 11
## 10930 11
## 10931 11
## 10932 11
## 10933 11
## 10934 11
## 10935 11
## 10936 11
## 10937 11
## 10938 11
## 10939 11
## 10940 12
## 10941 12
## 10942 12
## 10943 12
## 10944 12
## 10945 12
## 10946 12
## 10947 12
## 10948 12
## 10949 12
## 10950 12
## 10951 12
## 10952 13
## 10953 13
## 10954 13
## 10955 13
## 10956 13
## 10957 13
## 10958 13
## 10959 13
## 10960 13
## 10961 13
## 10962 13
## 10963 13
## 10964 13
## 10965 13
## 10966 13
## 10967 13
## 10968 13
## 10969 13
## 10970 13
## 10971 13
## 10972 13
## 10973 13
## 10974 13
## 10975 13
## 10976 13
## 10977 13
## 10978 13
## 10979 13
## 10980 13
## 10981 13
## 10982 13
## 10983 13
## 10984 13
## 10985 13
## 10986 13
## 10987 13
## 10988 13
## 10989 13
## 10990 14
## 10991 14
## 10992 14
## 10993 14
## 10994 14
## 10995 14
## 10996 14
## 10997 14
## 10998 14
## 10999 14
## 11000 14
## 11001 14
## 11002 14
## 11003 14
## 11004 14
## 11005 14
## 11006 14
## 11007 14
## 11008 14
## 11009 14
## 11010 14
## 11011 14
## 11012 14
## 11013 14
## 11014 14
## 11015 14
## 11016 14
## 11017 14
## 11018 14
## 11019 14
## 11020 14
## 11021 14
## 11022 14
## 11023 14
## 11024 14
## 11025 14
## 11026 14
## 11027 14
## 11028 15
## 11029 15
## 11030 15
## 11031 15
## 11032 15
## 11033 15
## 11034 15
## 11035 15
## 11036 15
## 11037 15
## 11038 15
## 11039 15
## 11040 15
## 11041 15
## 11042 15
## 11043 15
## 11044 15
## 11045 15
## 11046 16
## 11047 16
## 11048 16
## 11049 16
## 11050 16
## 11051 16
## 11052 16
## 11053 16
## 11054 16
## 11055 16
## 11056 16
## 11057 16
## 11058 16
## 11059 16
## 11060 16
## 11061 16
## 11062 16
## 11063 16
## 11064 16
## 11065 16
## 11066 16
## 11067 16
## 11068 16
## 11069 16
## 11070 16
## 11071 16
## 11072 16
## 11073 17
## 11074 17
## 11075 17
## 11076 17
## 11077 17
## 11078 17
## 11079 17
## 11080 17
## 11081 17
## 11082 17
## 11083 17
## 11084 17
## 11085 17
## 11086 17
## 11087 17
## 11088 17
## 11089 17
## 11090 17
## 11091 17
## 11092 18
## 11093 18
## 11094 18
## 11095 18
## 11096 18
## 11097 18
## 11098 18
## 11099 18
## 11100 18
## 11101 18
## 11102 18
## 11103 19
## 11104 19
## 11105 19
## 11106 19
## 11107 19
## 11108 20
## 11109 20
## 11110 20
## 11111 20
## 11112 20
## 11113 20
## 11114 20
## 11115 20
## 11116 21
## 11117 21
## 11118 21
## 11119 21
## 11120 21
## 11121 21
## 11122 21
## 11123 21
## 11124 21
## 11125 21
## 11126 21
## 11127 22
## 11128 22
## 11129 22
## 11130 22
## 11131 22
## 11132 22
## 11133 22
## 11134 22
## 11135 22
## 11136 22
## 11137 22
## 11138 22
## 11139 22
## 11140 22
## 11141 22
## 11142 22
## 11143 22
## 11144 22
## 11145 22
## 11146 22
## 11147 22
## 11148 22
## 11149 22
## 11150 22
## 11151 22
## 11152 23
## 11153 23
## 11154 23
## 11155 23
## 11156 23
## 11157 23
## 11158 23
## 11159 23
## 11160 23
## 11161 24
## 11162 24
## 11163 24
## 11164 25
## 11165 25
## 11166 25
## 11167 25
## 11168 25
## 11169 25
## 11170 25
## 11171 25
## 11172 25
## 11173 25
## 11174 25
## 11175 25
## 11176 26
## 11177 26
## 11178 26
## 11179 27
## 11180 27
## 11181 27
## 11182 27
## 11183 27
## 11184 27
## 11185 27
## 11186 27
## 11187 27
## 11188 27
## 11189 27
## 11190 27
## 11191 28
## 11192 28
## 11193 28
## 11194 28
## 11195 28
## 11196 28
## 11197 28
## 11198 28
## 11199 28
## 11200 28
## 11201 28
## 11202 28
## 11203 28
## 11204 28
## 11205 29
## 11206 29
## 11207 29
## 11208 29
## 11209 29
## 11210 29
## 11211 29
## 11212 29
## 11213 29
## 11214 29
## 11215 29
## 11216 29
## 11217 29
## 11218 29
## 11219 29
## 11220 29
## 11221 29
## 11222 29
## 11223 29
## 11224 29
## 11225 29
## 11226 29
## 11227 29
## 11228 29
## 11229 29
## 11230 29
## 11231 29
## 11232 29
## 11233 29
## 11234 29
## 11235 29
## 11236 29
## 11237 29
## 11238 29
## 11239 29
## 11240 29
## 11241 29
## 11242 29
## 11243 29
## 11244 29
## 11245 29
## 11246 29
## 11247 29
## 11248 29
## 11249 29
## 11250 29
## 11251 29
## 11252 29
## 11253 29
## 11254 29
## 11255 29
## 11256 29
## 11257 29
## 11258 30
## 11259 30
## 11260 30
## 11261 30
## 11262 30
## 11263 30
## 11264 30
## 11265 30
## 11266 30
## 11267 30
## 11268 30
## 11269 30
## 11270 30
## 11271 30
## 11272 30
## 11273 30
## 11274 30
## 11275 30
## 11276 30
## 11277 30
## 11278 30
## 11279 30
## 11280 30
## 11281 30
## 11282 30
## 11283 30
## 11284 30
## 11285 30
## 11286 30
## 11287 30
## 11288 30
## 11289 1
## 11290 1
## 11291 1
## 11292 1
## 11293 1
## 11294 1
## 11295 1
## 11296 1
## 11297 1
## 11298 1
## 11299 1
## 11300 1
## 11301 1
## 11302 2
## 11303 2
## 11304 2
## 11305 2
## 11306 2
## 11307 2
## 11308 2
## 11309 2
## 11310 2
## 11311 2
## 11312 2
## 11313 3
## 11314 3
## 11315 3
## 11316 3
## 11317 3
## 11318 3
## 11319 3
## 11320 3
## 11321 3
## 11322 3
## 11323 3
## 11324 3
## 11325 3
## 11326 3
## 11327 3
## 11328 3
## 11329 3
## 11330 3
## 11331 3
## 11332 3
## 11333 3
## 11334 3
## 11335 3
## 11336 3
## 11337 3
## 11338 3
## 11339 3
## 11340 3
## 11341 3
## 11342 3
## 11343 3
## 11344 4
## 11345 4
## 11346 4
## 11347 4
## 11348 4
## 11349 4
## 11350 4
## 11351 4
## 11352 4
## 11353 4
## 11354 4
## 11355 4
## 11356 4
## 11357 4
## 11358 4
## 11359 4
## 11360 4
## 11361 4
## 11362 4
## 11363 4
## 11364 4
## 11365 4
## 11366 4
## 11367 4
## 11368 4
## 11369 4
## 11370 4
## 11371 4
## 11372 4
## 11373 4
## 11374 4
## 11375 4
## 11376 4
## 11377 4
## 11378 4
## 11379 4
## 11380 4
## 11381 4
## 11382 5
## 11383 5
## 11384 5
## 11385 5
## 11386 5
## 11387 5
## 11388 5
## 11389 5
## 11390 5
## 11391 5
## 11392 5
## 11393 5
## 11394 5
## 11395 5
## 11396 5
## 11397 5
## 11398 5
## 11399 5
## 11400 5
## 11401 5
## 11402 5
## 11403 5
## 11404 5
## 11405 5
## 11406 5
## 11407 5
## 11408 5
## 11409 5
## 11410 5
## 11411 5
## 11412 6
## 11413 6
## 11414 6
## 11415 6
## 11416 6
## 11417 6
## 11418 6
## 11419 6
## 11420 6
## 11421 6
## 11422 6
## 11423 7
## 11424 7
## 11425 7
## 11426 7
## 11427 7
## 11428 7
## 11429 7
## 11430 7
## 11431 7
## 11432 7
## 11433 8
## 11434 8
## 11435 8
## 11436 8
## 11437 8
## 11438 8
## 11439 8
## 11440 8
## 11441 8
## 11442 8
## 11443 8
## 11444 8
## 11445 8
## 11446 9
## 11447 9
## 11448 9
## 11449 9
## 11450 9
## 11451 9
## 11452 9
## 11453 9
## 11454 9
## 11455 9
## 11456 9
## 11457 9
## 11458 9
## 11459 9
## 11460 9
## 11461 9
## 11462 9
## 11463 9
## 11464 9
## 11465 9
## 11466 9
## 11467 9
## 11468 9
## 11469 9
## 11470 9
## 11471 9
## 11472 9
## 11473 10
## 11474 10
## 11475 10
## 11476 10
## 11477 10
## 11478 10
## 11479 10
## 11480 10
## 11481 10
## 11482 10
## 11483 10
## 11484 10
## 11485 10
## 11486 10
## 11487 10
## 11488 10
## 11489 11
## 11490 11
## 11491 11
## 11492 11
## 11493 11
## 11494 11
## 11495 11
## 11496 11
## 11497 11
## 11498 11
## 11499 11
## 11500 11
## 11501 11
## 11502 12
## 11503 12
## 11504 12
## 11505 12
## 11506 12
## 11507 12
## 11508 12
## 11509 12
## 11510 13
## 11511 13
## 11512 13
## 11513 13
## 11514 13
## 11515 13
## 11516 13
## 11517 13
## 11518 13
## 11519 13
## 11520 13
## 11521 13
## 11522 13
## 11523 13
## 11524 13
## 11525 13
## 11526 13
## 11527 13
## 11528 13
## 11529 14
## 11530 14
## 11531 14
## 11532 14
## 11533 14
## 11534 14
## 11535 14
## 11536 14
## 11537 14
## 11538 14
## 11539 14
## 11540 14
## 11541 14
## 11542 14
## 11543 15
## 11544 15
## 11545 15
## 11546 15
## 11547 15
## 11548 15
## 11549 15
## 11550 15
## 11551 15
## 11552 16
## 11553 16
## 11554 16
## 11555 16
## 11556 16
## 11557 17
## 11558 17
## 11559 17
## 11560 17
## 11561 17
## 11562 17
## 11563 17
## 11564 17
## 11565 17
## 11566 17
## 11567 17
## 11568 17
## 11569 17
## 11570 17
## 11571 18
## 11572 18
## 11573 18
## 11574 18
## 11575 18
## 11576 18
## 11577 18
## 11578 18
## 11579 18
## 11580 18
## 11581 18
## 11582 18
## 11583 19
## 11584 19
## 11585 19
## 11586 19
## 11587 19
## 11588 19
## 11589 19
## 11590 19
## 11591 19
## 11592 19
## 11593 19
## 11594 20
## 11595 20
## 11596 20
## 11597 20
## 11598 20
## 11599 20
## 11600 20
## 11601 20
## 11602 20
## 11603 20
## 11604 20
## 11605 20
## 11606 20
## 11607 20
## 11608 20
## 11609 21
## 11610 21
## 11611 21
## 11612 21
## 11613 21
## 11614 21
## 11615 21
## 11616 21
## 11617 21
## 11618 21
## 11619 21
## 11620 21
## 11621 21
## 11622 21
## 11623 21
## 11624 21
## 11625 21
## 11626 22
## 11627 22
## 11628 22
## 11629 22
## 11630 22
## 11631 22
## 11632 22
## 11633 22
## 11634 22
## 11635 22
## 11636 23
## 11637 23
## 11638 23
## 11639 23
## 11640 23
## 11641 23
## 11642 23
## 11643 23
## 11644 23
## 11645 23
## 11646 23
## 11647 24
## 11648 24
## 11649 24
## 11650 24
## 11651 24
## 11652 24
## 11653 24
## 11654 24
## 11655 24
## 11656 25
## 11657 25
## 11658 25
## 11659 25
## 11660 25
## 11661 25
## 11662 25
## 11663 25
## 11664 25
## 11665 25
## 11666 25
## 11667 25
## 11668 25
## 11669 25
## 11670 25
## 11671 25
## 11672 25
## 11673 25
## 11674 25
## 11675 25
## 11676 25
## 11677 25
## 11678 25
## 11679 25
## 11680 25
## 11681 25
## 11682 25
## 11683 25
## 11684 25
## 11685 25
## 11686 25
## 11687 25
## 11688 25
## 11689 25
## 11690 25
## 11691 25
## 11692 25
## 11693 25
## 11694 25
## 11695 25
## 11696 25
## 11697 25
## 11698 25
## 11699 26
## 11700 26
## 11701 26
## 11702 26
## 11703 26
## 11704 26
## 11705 26
## 11706 26
## 11707 26
## 11708 26
## 11709 26
## 11710 26
## 11711 26
## 11712 26
## 11713 26
## 11714 26
## 11715 26
## 11716 27
## 11717 27
## 11718 27
## 11719 27
## 11720 27
## 11721 27
## 11722 27
## 11723 27
## 11724 27
## 11725 27
## 11726 27
## 11727 27
## 11728 27
## 11729 27
## 11730 27
## 11731 27
## 11732 27
## 11733 27
## 11734 27
## 11735 27
## 11736 27
## 11737 27
## 11738 27
## 11739 28
## 11740 28
## 11741 28
## 11742 28
## 11743 28
## 11744 28
## 11745 28
## 11746 28
## 11747 28
## 11748 28
## 11749 28
## 11750 28
## 11751 28
## 11752 28
## 11753 28
## 11754 28
## 11755 28
## 11756 28
## 11757 28
## 11758 28
## 11759 28
## 11760 28
## 11761 28
## 11762 28
## 11763 28
## 11764 28
## 11765 28
## 11766 28
## 11767 28
## 11768 28
## 11769 28
## 11770 29
## 11771 29
## 11772 29
## 11773 29
## 11774 29
## 11775 29
## 11776 29
## 11777 30
## 11778 30
## 11779 30
## 11780 30
## 11781 30
## 11782 30
## 11783 30
## 11784 30
## 11785 30
## 11786 30
## 11787 30
## 11788 30
## 11789 30
## 11790 30
## 11791 30
## 11792 30
## 11793 30
## 11794 30
## 11795 30
## 11796 30
## 11797 30
## 11798 30
## 11799 30
## 11800 31
## 11801 31
## 11802 31
## 11803 31
## 11804 31
## 11805 31
## 11806 31
## 11807 31
## 11808 31
## 11809 31
## 11810 31
## 11811 31
## 11812 31
## 11813 31
## 11814 31
## 11815 31
## 11816 31
## 11817 31
## 11818 31
## 11819 31
## 11820 31
## 11821 31
## 11822 31
## 11823 31
## 11824 31
## 11825 31
## 11826 31
## 11827 31
## 11828 31
## 11829 31
## 11830 31
## 11831 31
## 11832 1
## 11833 1
## 11834 1
## 11835 1
## 11836 1
## 11837 1
## 11838 1
## 11839 1
## 11840 1
## 11841 1
## 11842 1
## 11843 1
## 11844 1
## 11845 1
## 11846 1
## 11847 1
## 11848 1
## 11849 1
## 11850 1
## 11851 1
## 11852 1
## 11853 1
## 11854 2
## 11855 2
## 11856 2
## 11857 2
## 11858 2
## 11859 2
## 11860 2
## 11861 2
## 11862 2
## 11863 2
## 11864 2
## 11865 2
## 11866 2
## 11867 2
## 11868 2
## 11869 2
## 11870 2
## 11871 2
## 11872 2
## 11873 2
## 11874 2
## 11875 2
## 11876 2
## 11877 2
## 11878 2
## 11879 2
## 11880 2
## 11881 2
## 11882 2
## 11883 2
## 11884 2
## 11885 2
## 11886 2
## 11887 2
## 11888 2
## 11889 2
## 11890 2
## 11891 3
## 11892 3
## 11893 3
## 11894 3
## 11895 3
## 11896 3
## 11897 3
## 11898 3
## 11899 3
## 11900 3
## 11901 3
## 11902 3
## 11903 3
## 11904 3
## 11905 3
## 11906 3
## 11907 3
## 11908 3
## 11909 3
## 11910 3
## 11911 3
## 11912 3
## 11913 3
## 11914 3
## 11915 3
## 11916 3
## 11917 3
## 11918 3
## 11919 3
## 11920 3
## 11921 3
## 11922 3
## 11923 3
## 11924 3
## 11925 3
## 11926 3
## 11927 3
## 11928 3
## 11929 3
## 11930 3
## 11931 3
## 11932 3
## 11933 3
## 11934 3
## 11935 3
## 11936 3
## 11937 3
## 11938 3
## 11939 3
## 11940 4
## 11941 4
## 11942 4
## 11943 4
## 11944 4
## 11945 4
## 11946 4
## 11947 4
## 11948 4
## 11949 4
## 11950 4
## 11951 4
## 11952 5
## 11953 5
## 11954 5
## 11955 5
## 11956 5
## 11957 5
## 11958 5
## 11959 5
## 11960 5
## 11961 5
## 11962 5
## 11963 5
## 11964 5
## 11965 5
## 11966 5
## 11967 5
## 11968 5
## 11969 5
## 11970 5
## 11971 6
## 11972 6
## 11973 6
## 11974 6
## 11975 6
## 11976 6
## 11977 6
## 11978 6
## 11979 6
## 11980 6
## 11981 7
## 11982 7
## 11983 7
## 11984 7
## 11985 7
## 11986 7
## 11987 7
## 11988 7
## 11989 7
## 11990 7
## 11991 7
## 11992 8
## 11993 8
## 11994 8
## 11995 8
## 11996 8
## 11997 8
## 11998 8
## 11999 8
## 12000 8
## 12001 8
## 12002 8
## 12003 8
## 12004 8
## 12005 8
## 12006 8
## 12007 8
## 12008 8
## 12009 8
## 12010 8
## 12011 8
## 12012 8
## 12013 8
## 12014 8
## 12015 8
## 12016 8
## 12017 8
## 12018 8
## 12019 8
## 12020 9
## 12021 9
## 12022 9
## 12023 9
## 12024 9
## 12025 9
## 12026 9
## 12027 9
## 12028 9
## 12029 9
## 12030 9
## 12031 9
## 12032 9
## 12033 9
## 12034 9
## 12035 9
## 12036 9
## 12037 9
## 12038 9
## 12039 10
## 12040 10
## 12041 10
## 12042 10
## 12043 10
## 12044 10
## 12045 10
## 12046 10
## 12047 10
## 12048 10
## 12049 10
## 12050 10
## 12051 10
## 12052 10
## 12053 10
## 12054 10
## 12055 10
## 12056 11
## 12057 11
## 12058 11
## 12059 11
## 12060 11
## 12061 11
## 12062 11
## 12063 11
## 12064 11
## 12065 11
## 12066 11
## 12067 11
## 12068 11
## 12069 11
## 12070 11
## 12071 11
## 12072 11
## 12073 11
## 12074 11
## 12075 11
## 12076 11
## 12077 11
## 12078 11
## 12079 12
## 12080 12
## 12081 12
## 12082 12
## 12083 12
## 12084 12
## 12085 12
## 12086 12
## 12087 12
## 12088 12
## 12089 12
## 12090 12
## 12091 12
## 12092 12
## 12093 12
## 12094 12
## 12095 12
## 12096 13
## 12097 13
## 12098 13
## 12099 13
## 12100 13
## 12101 13
## 12102 13
## 12103 13
## 12104 13
## 12105 13
## 12106 13
## 12107 13
## 12108 14
## 12109 14
## 12110 14
## 12111 14
## 12112 14
## 12113 14
## 12114 14
## 12115 14
## 12116 14
## 12117 14
## 12118 14
## 12119 14
## 12120 14
## 12121 14
## 12122 14
## 12123 14
## 12124 14
## 12125 14
## 12126 14
## 12127 14
## 12128 14
## 12129 15
## 12130 15
## 12131 15
## 12132 15
## 12133 15
## 12134 15
## 12135 15
## 12136 15
## 12137 15
## 12138 15
## 12139 15
## 12140 15
## 12141 15
## 12142 15
## 12143 15
## 12144 15
## 12145 15
## 12146 15
## 12147 15
## 12148 15
## 12149 15
## 12150 15
## 12151 15
## 12152 15
## 12153 15
## 12154 15
## 12155 15
## 12156 16
## 12157 16
## 12158 16
## 12159 16
## 12160 16
## 12161 16
## 12162 16
## 12163 16
## 12164 16
## 12165 16
## 12166 16
## 12167 16
## 12168 16
## 12169 16
## 12170 16
## 12171 16
## 12172 16
## 12173 16
## 12174 16
## 12175 16
## 12176 16
## 12177 16
## 12178 16
## 12179 16
## 12180 16
## 12181 16
## 12182 16
## 12183 16
## 12184 16
## 12185 17
## 12186 17
## 12187 17
## 12188 17
## 12189 17
## 12190 17
## 12191 17
## 12192 17
## 12193 17
## 12194 17
## 12195 17
## 12196 17
## 12197 17
## 12198 17
## 12199 17
## 12200 17
## 12201 17
## 12202 17
## 12203 17
## 12204 17
## 12205 17
## 12206 18
## 12207 18
## 12208 18
## 12209 18
## 12210 18
## 12211 18
## 12212 18
## 12213 18
## 12214 18
## 12215 18
## 12216 18
## 12217 18
## 12218 18
## 12219 18
## 12220 18
## 12221 18
## 12222 18
## 12223 18
## 12224 18
## 12225 18
## 12226 18
## 12227 18
## 12228 18
## 12229 18
## 12230 18
## 12231 18
## 12232 18
## 12233 18
## 12234 19
## 12235 19
## 12236 19
## 12237 19
## 12238 19
## 12239 19
## 12240 19
## 12241 19
## 12242 19
## 12243 19
## 12244 19
## 12245 19
## 12246 19
## 12247 19
## 12248 19
## 12249 19
## 12250 19
## 12251 19
## 12252 20
## 12253 20
## 12254 20
## 12255 20
## 12256 20
## 12257 20
## 12258 20
## 12259 20
## 12260 20
## 12261 20
## 12262 20
## 12263 20
## 12264 21
## 12265 21
## 12266 21
## 12267 21
## 12268 21
## 12269 21
## 12270 21
## 12271 21
## 12272 21
## 12273 21
## 12274 21
## 12275 21
## 12276 22
## 12277 22
## 12278 22
## 12279 22
## 12280 22
## 12281 22
## 12282 22
## 12283 22
## 12284 22
## 12285 22
## 12286 22
## 12287 22
## 12288 22
## 12289 22
## 12290 22
## 12291 22
## 12292 22
## 12293 22
## 12294 22
## 12295 22
## 12296 22
## 12297 23
## 12298 23
## 12299 23
## 12300 23
## 12301 23
## 12302 23
## 12303 23
## 12304 23
## 12305 23
## 12306 23
## 12307 23
## 12308 24
## 12309 24
## 12310 24
## 12311 24
## 12312 24
## 12313 24
## 12314 24
## 12315 24
## 12316 24
## 12317 24
## 12318 24
## 12319 24
## 12320 24
## 12321 24
## 12322 24
## 12323 24
## 12324 24
## 12325 24
## 12326 24
## 12327 24
## 12328 24
## 12329 24
## 12330 24
## 12331 24
## 12332 24
## 12333 24
## 12334 24
## 12335 24
## 12336 24
## 12337 25
## 12338 25
## 12339 25
## 12340 25
## 12341 25
## 12342 25
## 12343 25
## 12344 25
## 12345 25
## 12346 25
## 12347 25
## 12348 25
## 12349 25
## 12350 25
## 12351 25
## 12352 25
## 12353 25
## 12354 25
## 12355 25
## 12356 25
## 12357 25
## 12358 25
## 12359 25
## 12360 25
## 12361 25
## 12362 25
## 12363 25
## 12364 25
## 12365 25
## 12366 25
## 12367 25
## 12368 25
## 12369 25
## 12370 25
## 12371 26
## 12372 26
## 12373 26
## 12374 26
## 12375 26
## 12376 26
## 12377 26
## 12378 26
## 12379 26
## 12380 26
## 12381 26
## 12382 26
## 12383 26
## 12384 26
## 12385 26
## 12386 26
## 12387 26
## 12388 26
## 12389 26
## 12390 26
## 12391 26
## 12392 26
## 12393 26
## 12394 26
## 12395 26
## 12396 26
## 12397 26
## 12398 26
## 12399 26
## 12400 27
## 12401 27
## 12402 27
## 12403 27
## 12404 27
## 12405 27
## 12406 27
## 12407 27
## 12408 27
## 12409 27
## 12410 27
## 12411 27
## 12412 28
## 12413 28
## 12414 28
## 12415 28
## 12416 28
## 12417 28
## 12418 28
## 12419 28
## 12420 28
## 12421 28
## 12422 28
## 12423 28
## 12424 29
## 12425 29
## 12426 29
## 12427 29
## 12428 29
## 12429 29
## 12430 29
## 12431 29
## 12432 29
## 12433 29
## 12434 29
## 12435 29
## 12436 29
## 12437 30
## 12438 30
## 12439 30
## 12440 30
## 12441 30
## 12442 30
## 12443 30
## 12444 30
## 12445 30
## 12446 30
## 12447 30
## 12448 30
## 12449 30
## 12450 30
## 12451 30
## 12452 30
## 12453 30
## 12454 30
## 12455 30
## 12456 30
## 12457 30
## 12458 30
## 12459 30
## 12460 1
## 12461 1
## 12462 1
## 12463 1
## 12464 1
## 12465 1
## 12466 1
## 12467 1
## 12468 1
## 12469 1
## 12470 1
## 12471 1
## 12472 1
## 12473 1
## 12474 1
## 12475 1
## 12476 1
## 12477 1
## 12478 1
## 12479 1
## 12480 1
## 12481 1
## 12482 1
## 12483 1
## 12484 1
## 12485 1
## 12486 1
## 12487 1
## 12488 1
## 12489 1
## 12490 1
## 12491 1
## 12492 1
## 12493 1
## 12494 1
## 12495 1
## 12496 1
## 12497 1
## 12498 2
## 12499 2
## 12500 2
## 12501 2
## 12502 2
## 12503 2
## 12504 2
## 12505 2
## 12506 2
## 12507 2
## 12508 2
## 12509 2
## 12510 2
## 12511 2
## 12512 2
## 12513 2
## 12514 2
## 12515 2
## 12516 2
## 12517 2
## 12518 2
## 12519 2
## 12520 2
## 12521 3
## 12522 3
## 12523 3
## 12524 3
## 12525 3
## 12526 3
## 12527 3
## 12528 3
## 12529 3
## 12530 3
## 12531 3
## 12532 3
## 12533 3
## 12534 3
## 12535 3
## 12536 3
## 12537 3
## 12538 3
## 12539 3
## 12540 3
## 12541 3
## 12542 3
## 12543 3
## 12544 3
## 12545 3
## 12546 3
## 12547 3
## 12548 3
## 12549 3
## 12550 3
## 12551 4
## 12552 4
## 12553 4
## 12554 4
## 12555 4
## 12556 4
## 12557 4
## 12558 4
## 12559 4
## 12560 4
## 12561 4
## 12562 4
## 12563 4
## 12564 4
## 12565 4
## 12566 4
## 12567 4
## 12568 4
## 12569 4
## 12570 5
## 12571 5
## 12572 5
## 12573 5
## 12574 5
## 12575 5
## 12576 5
## 12577 5
## 12578 5
## 12579 5
## 12580 5
## 12581 5
## 12582 5
## 12583 5
## 12584 5
## 12585 6
## 12586 6
## 12587 6
## 12588 6
## 12589 6
## 12590 6
## 12591 6
## 12592 6
## 12593 6
## 12594 6
## 12595 6
## 12596 6
## 12597 6
## 12598 6
## 12599 7
## 12600 7
## 12601 7
## 12602 7
## 12603 7
## 12604 7
## 12605 7
## 12606 7
## 12607 7
## 12608 7
## 12609 7
## 12610 7
## 12611 7
## 12612 7
## 12613 8
## 12614 8
## 12615 8
## 12616 8
## 12617 8
## 12618 8
## 12619 8
## 12620 8
## 12621 8
## 12622 8
## 12623 8
## 12624 8
## 12625 8
## 12626 8
## 12627 8
## 12628 8
## 12629 9
## 12630 9
## 12631 9
## 12632 9
## 12633 9
## 12634 9
## 12635 9
## 12636 9
## 12637 9
## 12638 9
## 12639 9
## 12640 9
## 12641 9
## 12642 9
## 12643 10
## 12644 10
## 12645 10
## 12646 10
## 12647 10
## 12648 10
## 12649 10
## 12650 10
## 12651 10
## 12652 10
## 12653 10
## 12654 10
## 12655 10
## 12656 10
## 12657 10
## 12658 10
## 12659 10
## 12660 10
## 12661 10
## 12662 10
## 12663 10
## 12664 11
## 12665 11
## 12666 11
## 12667 11
## 12668 11
## 12669 11
## 12670 11
## 12671 11
## 12672 11
## 12673 11
## 12674 11
## 12675 11
## 12676 11
## 12677 11
## 12678 11
## 12679 11
## 12680 11
## 12681 11
## 12682 11
## 12683 11
## 12684 11
## 12685 11
## 12686 12
## 12687 12
## 12688 12
## 12689 12
## 12690 12
## 12691 12
## 12692 12
## 12693 12
## 12694 12
## 12695 12
## 12696 12
## 12697 12
## 12698 12
## 12699 12
## 12700 12
## 12701 12
## 12702 12
## 12703 12
## 12704 12
## 12705 13
## 12706 13
## 12707 13
## 12708 13
## 12709 13
## 12710 13
## 12711 13
## 12712 13
## 12713 13
## 12714 13
## 12715 13
## 12716 13
## 12717 13
## 12718 14
## 12719 14
## 12720 14
## 12721 14
## 12722 14
## 12723 14
## 12724 14
## 12725 14
## 12726 14
## 12727 14
## 12728 14
## 12729 14
## 12730 14
## 12731 14
## 12732 14
## 12733 14
## 12734 14
## 12735 14
## 12736 14
## 12737 15
## 12738 15
## 12739 15
## 12740 15
## 12741 15
## 12742 15
## 12743 15
## 12744 15
## 12745 15
## 12746 15
## 12747 15
## 12748 15
## 12749 15
## 12750 15
## 12751 15
## 12752 15
## 12753 15
## 12754 15
## 12755 15
## 12756 15
## 12757 15
## 12758 15
## 12759 15
## 12760 15
## 12761 15
## 12762 15
## 12763 15
## 12764 15
## 12765 16
## 12766 16
## 12767 16
## 12768 16
## 12769 16
## 12770 16
## 12771 16
## 12772 16
## 12773 16
## 12774 16
## 12775 16
## 12776 16
## 12777 16
## 12778 16
## 12779 16
## 12780 16
## 12781 16
## 12782 16
## 12783 16
## 12784 16
## 12785 16
## 12786 17
## 12787 17
## 12788 17
## 12789 17
## 12790 17
## 12791 17
## 12792 17
## 12793 17
## 12794 17
## 12795 17
## 12796 17
## 12797 17
## 12798 17
## 12799 17
## 12800 17
## 12801 17
## 12802 17
## 12803 17
## 12804 17
## 12805 17
## 12806 17
## 12807 17
## 12808 17
## 12809 17
## 12810 17
## 12811 17
## 12812 17
## 12813 17
## 12814 17
## 12815 17
## 12816 17
## 12817 17
## 12818 17
## 12819 18
## 12820 18
## 12821 18
## 12822 18
## 12823 18
## 12824 18
## 12825 18
## 12826 18
## 12827 18
## 12828 18
## 12829 18
## 12830 18
## 12831 18
## 12832 18
## 12833 18
## 12834 18
## 12835 19
## 12836 19
## 12837 19
## 12838 19
## 12839 19
## 12840 19
## 12841 19
## 12842 19
## 12843 19
## 12844 19
## 12845 19
## 12846 20
## 12847 20
## 12848 20
## 12849 20
## 12850 20
## 12851 20
## 12852 20
## 12853 20
## 12854 20
## 12855 20
## 12856 20
## 12857 20
## 12858 20
## 12859 20
## 12860 20
## 12861 21
## 12862 21
## 12863 21
## 12864 21
## 12865 21
## 12866 21
## 12867 21
## 12868 21
## 12869 21
## 12870 21
## 12871 21
## 12872 21
## 12873 21
## 12874 21
## 12875 21
## 12876 22
## 12877 22
## 12878 22
## 12879 22
## 12880 22
## 12881 22
## 12882 22
## 12883 22
## 12884 22
## 12885 22
## 12886 22
## 12887 22
## 12888 22
## 12889 22
## 12890 22
## 12891 22
## 12892 22
## 12893 22
## 12894 22
## 12895 22
## 12896 22
## 12897 22
## 12898 22
## 12899 22
## 12900 22
## 12901 22
## 12902 22
## 12903 22
## 12904 22
## 12905 22
## 12906 22
## 12907 22
## 12908 22
## 12909 22
## 12910 22
## 12911 22
## 12912 22
## 12913 22
## 12914 23
## 12915 23
## 12916 23
## 12917 23
## 12918 23
## 12919 23
## 12920 23
## 12921 23
## 12922 23
## 12923 23
## 12924 23
## 12925 23
## 12926 23
## 12927 23
## 12928 23
## 12929 23
## 12930 23
## 12931 24
## 12932 24
## 12933 24
## 12934 24
## 12935 24
## 12936 24
## 12937 24
## 12938 24
## 12939 24
## 12940 24
## 12941 24
## 12942 24
## 12943 24
## 12944 24
## 12945 24
## 12946 24
## 12947 24
## 12948 24
## 12949 24
## 12950 24
## 12951 24
## 12952 24
## 12953 24
## 12954 24
## 12955 24
## 12956 24
## 12957 24
## 12958 24
## 12959 24
## 12960 25
## 12961 25
## 12962 25
## 12963 25
## 12964 25
## 12965 25
## 12966 25
## 12967 25
## 12968 25
## 12969 25
## 12970 25
## 12971 25
## 12972 25
## 12973 25
## 12974 26
## 12975 26
## 12976 26
## 12977 26
## 12978 26
## 12979 26
## 12980 26
## 12981 26
## 12982 26
## 12983 26
## 12984 26
## 12985 26
## 12986 26
## 12987 26
## 12988 26
## 12989 26
## 12990 26
## 12991 26
## 12992 26
## 12993 26
## 12994 26
## 12995 26
## 12996 26
## 12997 27
## 12998 27
## 12999 27
## 13000 27
## 13001 27
## 13002 27
## 13003 27
## 13004 27
## 13005 27
## 13006 27
## 13007 27
## 13008 27
## 13009 27
## 13010 27
## 13011 27
## 13012 27
## 13013 27
## 13014 28
## 13015 28
## 13016 28
## 13017 28
## 13018 28
## 13019 28
## 13020 28
## 13021 28
## 13022 28
## 13023 28
## 13024 28
## 13025 28
## 13026 28
## 13027 28
## 13028 28
## 13029 28
## 13030 28
## 13031 28
## 13032 28
## 13033 28
## 13034 28
## 13035 28
## 13036 28
## 13037 28
## 13038 29
## 13039 29
## 13040 29
## 13041 29
## 13042 29
## 13043 29
## 13044 29
## 13045 29
## 13046 29
## 13047 29
## 13048 29
## 13049 29
## 13050 29
## 13051 29
## 13052 29
## 13053 29
## 13054 29
## 13055 29
## 13056 29
## 13057 29
## 13058 29
## 13059 29
## 13060 29
## 13061 29
## 13062 29
## 13063 29
## 13064 29
## 13065 29
## 13066 29
## 13067 29
## 13068 29
## 13069 29
## 13070 29
## 13071 30
## 13072 30
## 13073 30
## 13074 30
## 13075 30
## 13076 30
## 13077 30
## 13078 30
## 13079 30
## 13080 30
## 13081 30
## 13082 30
## 13083 30
## 13084 30
## 13085 30
## 13086 30
## 13087 31
## 13088 31
## 13089 31
## 13090 31
## 13091 31
## 13092 31
## 13093 31
## 13094 31
## 13095 31
## 13096 31
## 13097 31
## 13098 31
## 13099 31
## 13100 31
## 13101 31
## 13102 31
## 13103 31
## 13104 31
## 13105 31
## 13106 31
## 13107 31
## 13108 31
## 13109 31
## 13110 31
## 13111 31
## 13112 31
## 13113 31
## 13114 31
## 13115 31
## 13116 1
## 13117 1
## 13118 1
## 13119 1
## 13120 1
## 13121 1
## 13122 1
## 13123 1
## 13124 1
## 13125 1
## 13126 1
## 13127 1
## 13128 1
## 13129 1
## 13130 1
## 13131 1
## 13132 1
## 13133 1
## 13134 1
## 13135 1
## 13136 1
## 13137 1
## 13138 1
## 13139 1
## 13140 1
## 13141 1
## 13142 1
## 13143 1
## 13144 2
## 13145 2
## 13146 2
## 13147 2
## 13148 2
## 13149 2
## 13150 2
## 13151 2
## 13152 2
## 13153 2
## 13154 2
## 13155 2
## 13156 2
## 13157 2
## 13158 2
## 13159 3
## 13160 3
## 13161 3
## 13162 3
## 13163 3
## 13164 3
## 13165 3
## 13166 3
## 13167 3
## 13168 3
## 13169 3
## 13170 3
## 13171 3
## 13172 3
## 13173 3
## 13174 3
## 13175 3
## 13176 3
## 13177 3
## 13178 3
## 13179 3
## 13180 3
## 13181 3
## 13182 3
## 13183 4
## 13184 4
## 13185 4
## 13186 4
## 13187 4
## 13188 4
## 13189 4
## 13190 4
## 13191 4
## 13192 4
## 13193 4
## 13194 4
## 13195 4
## 13196 4
## 13197 4
## 13198 4
## 13199 4
## 13200 4
## 13201 4
## 13202 4
## 13203 4
## 13204 4
## 13205 4
## 13206 4
## 13207 4
## 13208 4
## 13209 4
## 13210 4
## 13211 4
## 13212 5
## 13213 5
## 13214 5
## 13215 5
## 13216 5
## 13217 5
## 13218 5
## 13219 5
## 13220 5
## 13221 5
## 13222 5
## 13223 5
## 13224 5
## 13225 5
## 13226 5
## 13227 5
## 13228 5
## 13229 5
## 13230 5
## 13231 5
## 13232 5
## 13233 5
## 13234 5
## 13235 5
## 13236 5
## 13237 5
## 13238 5
## 13239 5
## 13240 5
## 13241 5
## 13242 6
## 13243 6
## 13244 6
## 13245 6
## 13246 6
## 13247 6
## 13248 6
## 13249 6
## 13250 6
## 13251 6
## 13252 6
## 13253 6
## 13254 6
## 13255 6
## 13256 6
## 13257 6
## 13258 6
## 13259 6
## 13260 6
## 13261 6
## 13262 6
## 13263 6
## 13264 6
## 13265 6
## 13266 6
## 13267 6
## 13268 6
## 13269 6
## 13270 6
## 13271 6
## 13272 6
## 13273 7
## 13274 7
## 13275 7
## 13276 7
## 13277 7
## 13278 7
## 13279 7
## 13280 7
## 13281 7
## 13282 7
## 13283 7
## 13284 7
## 13285 7
## 13286 7
## 13287 7
## 13288 7
## 13289 7
## 13290 7
## 13291 7
## 13292 7
## 13293 7
## 13294 7
## 13295 7
## 13296 7
## 13297 7
## 13298 7
## 13299 7
## 13300 7
## 13301 7
## 13302 7
## 13303 7
## 13304 7
## 13305 7
## 13306 7
## 13307 7
## 13308 7
## 13309 8
## 13310 8
## 13311 8
## 13312 8
## 13313 8
## 13314 8
## 13315 8
## 13316 8
## 13317 8
## 13318 8
## 13319 9
## 13320 9
## 13321 9
## 13322 9
## 13323 9
## 13324 9
## 13325 9
## 13326 9
## 13327 10
## 13328 10
## 13329 10
## 13330 10
## 13331 10
## 13332 10
## 13333 10
## 13334 10
## 13335 10
## 13336 10
## 13337 10
## 13338 10
## 13339 10
## 13340 10
## 13341 10
## 13342 11
## 13343 11
## 13344 11
## 13345 11
## 13346 11
## 13347 11
## 13348 11
## 13349 11
## 13350 11
## 13351 11
## 13352 11
## 13353 11
## 13354 11
## 13355 11
## 13356 11
## 13357 11
## 13358 11
## 13359 11
## 13360 11
## 13361 11
## 13362 12
## 13363 12
## 13364 12
## 13365 12
## 13366 12
## 13367 12
## 13368 12
## 13369 12
## 13370 12
## 13371 12
## 13372 12
## 13373 12
## 13374 12
## 13375 12
## 13376 12
## 13377 12
## 13378 12
## 13379 12
## 13380 12
## 13381 12
## 13382 13
## 13383 13
## 13384 13
## 13385 13
## 13386 13
## 13387 13
## 13388 13
## 13389 13
## 13390 13
## 13391 13
## 13392 13
## 13393 13
## 13394 13
## 13395 13
## 13396 13
## 13397 13
## 13398 13
## 13399 13
## 13400 13
## 13401 13
## 13402 13
## 13403 14
## 13404 14
## 13405 14
## 13406 14
## 13407 14
## 13408 14
## 13409 14
## 13410 14
## 13411 14
## 13412 14
## 13413 14
## 13414 14
## 13415 14
## 13416 14
## 13417 14
## 13418 14
## 13419 14
## 13420 14
## 13421 14
## 13422 14
## 13423 14
## 13424 14
## 13425 14
## 13426 14
## 13427 14
## 13428 14
## 13429 14
## 13430 14
## 13431 14
## 13432 14
## 13433 15
## 13434 15
## 13435 15
## 13436 15
## 13437 15
## 13438 15
## 13439 15
## 13440 15
## 13441 15
## 13442 15
## 13443 15
## 13444 15
## 13445 15
## 13446 15
## 13447 15
## 13448 15
## 13449 15
## 13450 15
## 13451 15
## 13452 15
## 13453 16
## 13454 16
## 13455 16
## 13456 16
## 13457 16
## 13458 16
## 13459 16
## 13460 16
## 13461 16
## 13462 16
## 13463 16
## 13464 16
## 13465 16
## 13466 16
## 13467 16
## 13468 16
## 13469 17
## 13470 17
## 13471 17
## 13472 17
## 13473 17
## 13474 17
## 13475 17
## 13476 17
## 13477 17
## 13478 17
## 13479 17
## 13480 17
## 13481 17
## 13482 17
## 13483 17
## 13484 17
## 13485 17
## 13486 17
## 13487 17
## 13488 17
## 13489 17
## 13490 17
## 13491 17
## 13492 17
## 13493 17
## 13494 17
## 13495 17
## 13496 17
## 13497 17
## 13498 17
## 13499 17
## 13500 17
## 13501 17
## 13502 17
## 13503 17
## 13504 17
## 13505 17
## 13506 17
## 13507 17
## 13508 17
## 13509 17
## 13510 17
## 13511 17
## 13512 17
## 13513 17
## 13514 18
## 13515 18
## 13516 18
## 13517 18
## 13518 18
## 13519 18
## 13520 18
## 13521 18
## 13522 18
## 13523 18
## 13524 18
## 13525 18
## 13526 18
## 13527 18
## 13528 18
## 13529 18
## 13530 18
## 13531 18
## 13532 18
## 13533 18
## 13534 18
## 13535 18
## 13536 18
## 13537 19
## 13538 19
## 13539 19
## 13540 19
## 13541 19
## 13542 19
## 13543 19
## 13544 19
## 13545 19
## 13546 19
## 13547 19
## 13548 19
## 13549 19
## 13550 19
## 13551 19
## 13552 19
## 13553 19
## 13554 19
## 13555 19
## 13556 19
## 13557 19
## 13558 19
## 13559 19
## 13560 19
## 13561 19
## 13562 19
## 13563 20
## 13564 20
## 13565 20
## 13566 20
## 13567 20
## 13568 20
## 13569 20
## 13570 20
## 13571 20
## 13572 20
## 13573 20
## 13574 20
## 13575 20
## 13576 20
## 13577 20
## 13578 20
## 13579 20
## 13580 20
## 13581 20
## 13582 20
## 13583 20
## 13584 20
## 13585 21
## 13586 21
## 13587 21
## 13588 21
## 13589 21
## 13590 21
## 13591 21
## 13592 21
## 13593 21
## 13594 21
## 13595 21
## 13596 21
## 13597 21
## 13598 21
## 13599 21
## 13600 21
## 13601 21
## 13602 21
## 13603 21
## 13604 21
## 13605 21
## 13606 21
## 13607 21
## 13608 21
## 13609 21
## 13610 21
## 13611 22
## 13612 22
## 13613 22
## 13614 22
## 13615 22
## 13616 22
## 13617 22
## 13618 23
## 13619 23
## 13620 23
## 13621 23
## 13622 23
## 13623 23
## 13624 23
## 13625 23
## 13626 23
## 13627 23
## 13628 23
## 13629 23
## 13630 24
## 13631 24
## 13632 24
## 13633 24
## 13634 24
## 13635 24
## 13636 24
## 13637 24
## 13638 24
## 13639 24
## 13640 24
## 13641 24
## 13642 24
## 13643 24
## 13644 24
## 13645 24
## 13646 24
## 13647 24
## 13648 24
## 13649 24
## 13650 24
## 13651 24
## 13652 24
## 13653 24
## 13654 24
## 13655 24
## 13656 24
## 13657 25
## 13658 25
## 13659 25
## 13660 25
## 13661 25
## 13662 25
## 13663 25
## 13664 25
## 13665 25
## 13666 25
## 13667 25
## 13668 25
## 13669 25
## 13670 25
## 13671 25
## 13672 25
## 13673 25
## 13674 26
## 13675 26
## 13676 26
## 13677 26
## 13678 26
## 13679 26
## 13680 26
## 13681 26
## 13682 26
## 13683 26
## 13684 26
## 13685 26
## 13686 26
## 13687 26
## 13688 26
## 13689 26
## 13690 26
## 13691 26
## 13692 26
## 13693 26
## 13694 26
## 13695 26
## 13696 26
## 13697 26
## 13698 26
## 13699 26
## 13700 26
## 13701 26
## 13702 26
## 13703 26
## 13704 26
## 13705 27
## 13706 27
## 13707 27
## 13708 27
## 13709 27
## 13710 27
## 13711 27
## 13712 27
## 13713 27
## 13714 27
## 13715 27
## 13716 27
## 13717 27
## 13718 27
## 13719 27
## 13720 27
## 13721 27
## 13722 27
## 13723 27
## 13724 27
## 13725 27
## 13726 28
## 13727 28
## 13728 28
## 13729 28
## 13730 28
## 13731 28
## 13732 28
## 13733 28
## 13734 28
## 13735 28
## 13736 28
## 13737 28
## 13738 28
## 13739 28
## 13740 28
## 13741 28
## 13742 28
## 13743 28
## 13744 28
## 13745 28
## 13746 28
## 13747 28
## 13748 28
## 13749 28
## 13750 28
## 13751 28
## 13752 28
## 13753 28
## 13754 28
## 13755 28
## 13756 28
## 13757 28
## 13758 28
## 13759 28
## 13760 28
## 13761 28
## 13762 28
## 13763 29
## 13764 29
## 13765 29
## 13766 29
## 13767 29
## 13768 29
## 13769 29
## 13770 29
## 13771 29
## 13772 29
## 13773 29
## 13774 29
## 13775 29
## 13776 29
## 13777 30
## 13778 30
## 13779 30
## 13780 30
## 13781 30
## 13782 30
## 13783 30
## 13784 30
## 13785 30
## 13786 30
## 13787 30
## 13788 30
## 13789 30
## 13790 31
## 13791 31
## 13792 31
## 13793 31
## 13794 31
## 13795 31
## 13796 31
## 13797 31
## 13798 31
## 13799 31
## 13800 31
## 13801 31
## 13802 31
## 13803 31
## 13804 13
## 13805 18
## 13806 12
## 13807 20
## 13808 13
## 13809 26
## 13810 13
## 13811 26
## 13812 14
## 13813 26
## 13814 2
## 13815 14
## 13816 17
## 13817 6
## 13818 21
## 13819 1
## 13820 1
## 13821 8
## 13822 13
## 13823 20
## 13824 20
## 13825 14
## 13826 21
## 13827 21
## 13828 27
## 13829 8
## 13830 24
## 13831 8
## 13832 6
## 13833 18
## 13834 11
## 13835 16
## 13836 25
## 13837 13
## 13838 26
## 13839 15
## 13840 15
## 13841 7
## 13842 2
## 13843 1
## 13844 22
## 13845 6
## 13846 4
## 13847 16
## 13848 5
## 13849 29
## 13850 29
## 13851 25
## 13852 31
## 13853 15
## 13854 7
## 13855 1
## 13856 25
## 13857 22
## 13858 18
## 13859 5
## 13860 1
## 13861 2
## 13862 1
## 13863 21
## 13864 24
## 13865 16
## 13866 25
## 13867 23
## 13868 12
## 13869 20
## 13870 26
## 13871 6
## 13872 3
## 13873 7
## 13874 9
## 13875 4
## 13876 20
## 13877 19
## 13878 12
## 13879 10
## 13880 29
## 13881 13
## 13882 17
## 13883 18
## 13884 16
## 13885 21
## 13886 29
## 13887 17
## 13888 18
## 13889 24
## 13890 24
## 13891 29
## 13892 6
## 13893 12
## 13894 20
## 13895 28
## 13896 30
## 13897 5
## 13898 26
## 13899 8
## 13900 5
## 13901 1
## 13902 27
## 13903 9
## 13904 14
## 13905 1
## 13906 14
## 13907 30
## 13908 17
## 13909 19
## 13910 23
## 13911 9
## 13912 9
## 13913 10
## 13914 12
## 13915 29
## 13916 1
## 13917 20
## 13918 15
## 13919 11
## 13920 3
## 13921 16
## 13922 26
## 13923 19
## 13924 8
## 13925 20
## 13926 26
## 13927 26
## 13928 23
## 13929 25
## 13930 19
## 13931 13
## 13932 31
## 13933 29
## 13934 29
## 13935 3
## 13936 28
## 13937 6
## 13938 20
## 13939 3
## 13940 15
## 13941 18
## 13942 15
## 13943 9
## 13944 1
## 13945 14
## 13946 25
## 13947 9
## 13948 28
## 13949 14
## 13950 20
## 13951 24
## 13952 30
## 13953 15
## 13954 19
## 13955 20
## 13956 9
## 13957 24
## 13958 13
## 13959 21
## 13960 2
## 13961 26
## 13962 31
## 13963 12
## 13964 2
## 13965 24
## 13966 14
## 13967 13
## 13968 21
## 13969 30
## 13970 22
## 13971 17
## 13972 29
## 13973 27
## 13974 14
## 13975 5
## 13976 20
## 13977 18
## 13978 17
## 13979 3
## 13980 22
## 13981 16
## 13982 25
## 13983 8
## 13984 8
## 13985 28
## 13986 20
## 13987 15
## 13988 24
## 13989 4
## 13990 24
## 13991 2
## 13992 1
## 13993 23
## 13994 3
## 13995 23
## 13996 28
## 13997 27
## 13998 14
## 13999 23
## 14000 25
## 14001 23
## 14002 10
## 14003 1
## 14004 14
## 14005 4
## 14006 25
## 14007 15
## 14008 22
## 14009 6
## 14010 3
## 14011 17
## 14012 10
## 14013 5
## 14014 20
## 14015 11
## 14016 15
## 14017 6
## 14018 7
## 14019 19
## 14020 28
## 14021 9
## 14022 14
## 14023 24
## 14024 7
## 14025 8
## 14026 8
## 14027 15
## 14028 30
## 14029 12
## 14030 1
## 14031 21
## 14032 23
## 14033 26
## 14034 14
## 14035 29
## 14036 26
## 14037 7
## 14038 1
## 14039 5
## 14040 1
## 14041 2
## 14042 26
## 14043 30
## 14044 18
## 14045 13
## 14046 2
## 14047 13
## 14048 4
## 14049 31
## 14050 3
## 14051 27
## 14052 9
## 14053 1
## 14054 25
## 14055 18
## 14056 29
## 14057 24
## 14058 4
## 14059 31
## 14060 14
## 14061 9
## 14062 11
## 14063 4
## 14064 13
## 14065 16
## 14066 18
## 14067 8
## 14068 12
## 14069 13
## 14070 29
## 14071 2
## 14072 1
## 14073 9
## 14074 31
## 14075 27
## 14076 10
## 14077 16
## 14078 1
## 14079 27
## 14080 27
## 14081 4
## 14082 15
## 14083 22
## 14084 21
## 14085 13
## 14086 30
## 14087 25
## 14088 13
## 14089 12
## 14090 29
## 14091 9
## 14092 3
## 14093 10
## 14094 7
## 14095 15
## 14096 5
## 14097 21
## 14098 4
## 14099 18
## 14100 23
## 14101 28
## 14102 24
## 14103 9
## 14104 6
## 14105 10
## 14106 14
## 14107 10
## 14108 15
## 14109 12
## 14110 26
## 14111 23
## 14112 19
## 14113 25
## 14114 17
## 14115 10
## 14116 29
## 14117 11
## 14118 24
## 14119 22
## 14120 28
## 14121 17
## 14122 1
## 14123 1
## 14124 21
## 14125 17
## 14126 20
## 14127 11
## 14128 27
## 14129 24
## 14130 29
## 14131 5
## 14132 6
## 14133 21
## 14134 2
## 14135 1
## 14136 14
## 14137 15
## 14138 28
## 14139 22
## 14140 6
## 14141 10
## 14142 12
## 14143 24
## 14144 19
## 14145 12
## 14146 9
## 14147 18
## 14148 29
## 14149 30
## 14150 30
## 14151 6
## 14152 27
## 14153 14
## 14154 30
## 14155 2
## 14156 14
## 14157 22
## 14158 2
## 14159 16
## 14160 22
## 14161 11
## 14162 7
## 14163 2
## 14164 13
## 14165 26
## 14166 17
## 14167 16
## 14168 10
## 14169 19
## 14170 16
## 14171 15
## 14172 6
## 14173 15
## 14174 13
## 14175 21
## 14176 7
## 14177 18
## 14178 9
## 14179 26
## 14180 11
## 14181 9
## 14182 30
## 14183 9
## 14184 2
## 14185 11
## 14186 11
## 14187 10
## 14188 5
## 14189 29
## 14190 6
## 14191 3
## 14192 9
## 14193 2
## 14194 20
## 14195 6
## 14196 20
## 14197 10
## 14198 14
## 14199 2
## 14200 7
## 14201 21
## 14202 16
## 14203 29
## 14204 27
## 14205 25
## 14206 29
## 14207 16
## 14208 5
## 14209 27
## 14210 15
## 14211 3
## 14212 8
## 14213 1
## 14214 29
## 14215 15
## 14216 27
## 14217 18
## 14218 21
## 14219 2
## 14220 5
## 14221 19
## 14222 15
## 14223 1
## 14224 2
## 14225 20
## 14226 24
## 14227 6
## 14228 27
## 14229 27
## 14230 27
## 14231 16
## 14232 19
## 14233 31
## 14234 5
## 14235 19
## 14236 24
## 14237 3
## 14238 10
## 14239 15
## 14240 28
## 14241 22
## 14242 26
## 14243 22
## 14244 15
## 14245 31
## 14246 20
## 14247 18
## 14248 4
## 14249 2
## 14250 26
## 14251 5
## 14252 31
## 14253 14
## 14254 12
## 14255 4
## 14256 25
## 14257 23
## 14258 22
## 14259 9
## 14260 3
## 14261 18
## 14262 1
## 14263 20
## 14264 22
## 14265 25
## 14266 14
## 14267 5
## 14268 19
## 14269 21
## 14270 13
## 14271 17
## 14272 8
## 14273 11
## 14274 24
## 14275 16
## 14276 22
## 14277 11
## 14278 16
## 14279 15
## 14280 9
## 14281 12
## 14282 2
## 14283 1
## 14284 4
## 14285 18
## 14286 28
## 14287 27
## 14288 24
## 14289 20
## 14290 20
## 14291 20
## 14292 21
## 14293 22
## 14294 10
## 14295 10
## 14296 10
## 14297 3
## 14298 2
## 14299 18
## 14300 9
## 14301 28
## 14302 18
## 14303 20
## 14304 14
## 14305 24
## 14306 28
## 14307 15
## 14308 2
## 14309 4
## 14310 21
## 14311 18
## 14312 12
## 14313 24
## 14314 7
## 14315 4
## 14316 29
## 14317 27
## 14318 13
## 14319 29
## 14320 12
## 14321 21
## 14322 14
## 14323 20
## 14324 29
## 14325 8
## 14326 28
## 14327 1
## 14328 30
## 14329 29
## 14330 21
## 14331 28
## 14332 13
## 14333 23
## 14334 12
## 14335 20
## 14336 4
## 14337 16
## 14338 1
## 14339 16
## 14340 14
## 14341 28
## 14342 25
## 14343 3
## 14344 2
## 14345 13
## 14346 4
## 14347 28
## 14348 11
## 14349 16
## 14350 6
## 14351 3
## 14352 23
## 14353 3
## 14354 23
## 14355 2
## 14356 15
## 14357 3
## 14358 13
## 14359 25
## 14360 8
## 14361 17
## 14362 25
## 14363 9
## 14364 5
## 14365 2
## 14366 14
## 14367 24
## 14368 17
## 14369 17
## 14370 27
## 14371 30
## 14372 26
## 14373 4
## 14374 21
## 14375 13
## 14376 26
## 14377 20
## 14378 4
## 14379 12
## 14380 4
## 14381 10
## 14382 17
## 14383 29
## 14384 30
## 14385 30
## 14386 23
## 14387 5
## 14388 3
## 14389 13
## 14390 25
## 14391 29
## 14392 18
## 14393 17
## 14394 31
## 14395 8
## 14396 22
## 14397 17
## 14398 17
## 14399 29
## 14400 29
## 14401 3
## 14402 8
## 14403 25
## 14404 6
## 14405 21
## 14406 2
## 14407 28
## 14408 11
## 14409 3
## 14410 3
## 14411 10
## 14412 6
## 14413 5
## 14414 5
## 14415 28
## 14416 15
## 14417 28
## 14418 26
## 14419 17
## 14420 17
## 14421 3
## 14422 11
## 14423 11
## 14424 3
## 14425 26
## 14426 1
## 14427 14
## 14428 24
## 14429 25
## 14430 12
## 14431 17
## 14432 15
## 14433 16
## 14434 22
## 14435 11
## 14436 14
## 14437 26
## 14438 28
## 14439 25
## 14440 6
## 14441 26
## 14442 6
## 14443 2
## 14444 17
## 14445 26
## 14446 5
## 14447 2
## 14448 14
## 14449 22
## 14450 10
## 14451 18
## 14452 15
## 14453 18
## 14454 4
## 14455 1
## 14456 29
## 14457 11
## 14458 9
## 14459 16
## 14460 19
## 14461 2
## 14462 3
## 14463 9
## 14464 1
## 14465 27
## 14466 3
## 14467 17
## 14468 14
## 14469 31
## 14470 21
## 14471 8
## 14472 9
## 14473 27
## 14474 25
## 14475 16
## 14476 14
## 14477 28
## 14478 7
## 14479 19
## 14480 28
## 14481 13
## 14482 23
## 14483 22
## 14484 27
## 14485 14
## 14486 16
## 14487 18
## 14488 22
## 14489 22
## 14490 28
## 14491 10
## 14492 27
## 14493 22
## 14494 26
## 14495 21
## 14496 23
## 14497 16
## 14498 18
## 14499 25
## 14500 15
## 14501 13
## 14502 2
## 14503 19
## 14504 25
## 14505 10
## 14506 9
## 14507 14
## 14508 16
## 14509 17
## 14510 19
## 14511 12
## 14512 13
## 14513 8
## 14514 6
## 14515 2
## 14516 7
## 14517 6
## 14518 26
## 14519 16
## 14520 13
## 14521 3
## 14522 20
## 14523 11
## 14524 25
## 14525 30
## 14526 10
## 14527 4
## 14528 7
## 14529 31
## 14530 15
## 14531 19
## 14532 30
## 14533 22
## 14534 18
## 14535 14
## 14536 14
## 14537 16
## 14538 17
## 14539 1
## 14540 9
## 14541 21
## 14542 17
## 14543 17
## 14544 8
## 14545 6
## 14546 9
## 14547 11
## 14548 8
## 14549 16
## 14550 4
## 14551 28
## 14552 1
## 14553 19
## 14554 17
## 14555 31
## 14556 24
## 14557 30
## 14558 6
## 14559 8
## 14560 27
## 14561 19
## 14562 11
## 14563 4
## 14564 18
## 14565 4
## 14566 8
## 14567 5
## 14568 21
## 14569 10
## 14570 4
## 14571 9
## 14572 18
## 14573 4
## 14574 25
## 14575 28
## 14576 9
## 14577 9
## 14578 11
## 14579 25
## 14580 9
## 14581 9
## 14582 19
## 14583 2
## 14584 10
## 14585 20
## 14586 10
## 14587 12
## 14588 14
## 14589 29
## 14590 3
## 14591 31
## 14592 6
## 14593 1
## 14594 14
## 14595 5
## 14596 9
## 14597 9
## 14598 30
## 14599 28
## 14600 8
## 14601 2
## 14602 16
## 14603 12
## 14604 13
## 14605 25
## 14606 27
## 14607 11
## 14608 20
## 14609 3
## 14610 4
## 14611 17
## 14612 24
## 14613 27
## 14614 11
## 14615 24
## 14616 20
## 14617 2
## 14618 10
## 14619 13
## 14620 18
## 14621 11
## 14622 11
## 14623 10
## 14624 7
## 14625 6
## 14626 17
## 14627 10
## 14628 27
## 14629 21
## 14630 15
## 14631 1
## 14632 3
## 14633 1
## 14634 4
## 14635 10
## 14636 24
## 14637 4
## 14638 26
## 14639 21
## 14640 19
## 14641 30
## 14642 24
## 14643 18
## 14644 7
## 14645 2
## 14646 17
## 14647 11
## 14648 12
## 14649 21
## 14650 23
## 14651 24
## 14652 24
## 14653 24
## 14654 24
## 14655 29
## 14656 24
## 14657 6
## 14658 5
## 14659 28
## 14660 16
## 14661 6
## 14662 22
## 14663 6
## 14664 17
## 14665 16
## 14666 30
## 14667 11
## 14668 16
## 14669 16
## 14670 15
## 14671 4
## 14672 1
## 14673 29
## 14674 30
## 14675 28
## 14676 19
## 14677 26
## 14678 26
## 14679 24
## 14680 18
## 14681 22
## 14682 22
## 14683 17
## 14684 17
## 14685 17
## 14686 17
## 14687 17
## 14688 17
## 14689 17
## 14690 17
## 14691 17
## 14692 17
## 14693 17
## 14694 17
## 14695 17
## 14696 17
## 14697 17
## 14698 17
## 14699 17
## 14700 17
## 14701 17
## 14702 17
## 14703 17
## 14704 17
## 14705 17
## 14706 17
## 14707 17
## 14708 17
## 14709 17
## 14710 17
## 14711 17
## 14712 17
## 14713 17
## 14714 17
## 14715 17
## 14716 17
## 14717 17
## 14718 17
## 14719 17
## 14720 17
## 14721 17
## 14722 17
## 14723 17
## 14724 17
## 14725 17
## 14726 17
## 14727 17
## 14728 17
## 14729 17
## 14730 17
## 14731 17
## 14732 17
## 14733 17
## 14734 17
## 14735 17
## 14736 17
## 14737 17
## 14738 17
## 14739 17
## 14740 17
## 14741 17
## 14742 17
## 14743 17
## 14744 17
## 14745 17
## 14746 17
## 14747 17
## 14748 17
## 14749 17
## 14750 17
## 14751 17
## 14752 17
## 14753 17
## 14754 17
## 14755 17
## 14756 17
## 14757 17
## 14758 17
## 14759 17
## 14760 17
## 14761 17
## 14762 17
## 14763 17
## 14764 17
## 14765 17
## 14766 17
## 14767 17
## 14768 17
## 14769 17
## 14770 17
## 14771 17
## 14772 17
## 14773 15
## 14774 20
## 14775 4
## 14776 4
## 14777 8
## 14778 4
## 14779 4
## 14780 4
## 14781 4
## 14782 4
## 14783 4
## 14784 4
## 14785 4
## 14786 4
## 14787 4
## 14788 4
## 14789 4
## 14790 4
## 14791 4
## 14792 4
## 14793 4
## 14794 4
## 14795 4
## 14796 4
## 14797 4
## 14798 4
## 14799 4
## 14800 4
## 14801 4
## 14802 4
## 14803 4
## 14804 4
## 14805 4
## 14806 15
## 14807 15
## 14808 12
## 14809 29
## 14810 12
## 14811 25
## 14812 27
## 14813 1
## 14814 6
## 14815 24
## 14816 4
## 14817 18
## 14818 1
## 14819 9
## 14820 8
## 14821 20
## 14822 2
## 14823 17
## 14824 16
## 14825 11
## 14826 5
## 14827 13
## 14828 24
## 14829 15
## 14830 15
## 14831 15
## 14832 15
## 14833 15
## 14834 15
## 14835 15
## 14836 15
## 14837 15
## 14838 15
## 14839 15
## 14840 15
## 14841 15
## 14842 15
## 14843 15
## 14844 15
## 14845 15
## 14846 15
## 14847 15
## 14848 15
## 14849 15
## 14850 15
## 14851 15
## 14852 15
## 14853 15
## 14854 15
## 14855 26
## 14856 26
## 14857 26
## 14858 26
## 14859 26
## 14860 26
## 14861 26
## 14862 26
## 14863 26
## 14864 26
## 14865 4
## 14866 5
## 14867 19
## 14868 8
## 14869 26
## 14870 6
## 14871 4
## 14872 2
## 14873 4
## 14874 11
## 14875 4
## 14876 7
## 14877 19
## 14878 20
## 14879 13
## 14880 13
## 14881 7
## 14882 4
## 14883 21
## 14884 4
## 14885 24
## 14886 24
## 14887 24
## 14888 24
## 14889 24
## 14890 24
## 14891 24
## 14892 24
## 14893 24
## 14894 24
## 14895 24
## 14896 24
## 14897 24
## 14898 24
## 14899 24
## 14900 5
## 14901 8
## 14902 21
## 14903 27
## 14904 27
## 14905 27
## 14906 1
## 14907 24
## 14908 13
## 14909 15
## 14910 13
## 14911 17
## 14912 19
## 14913 2
## 14914 4
## 14915 24
## 14916 22
## 14917 25
## 14918 9
## 14919 28
## 14920 30
## 14921 7
## 14922 24
## 14923 13
## 14924 13
## 14925 21
## 14926 28
## 14927 15
## 14928 25
## 14929 24
## 14930 30
## 14931 30
## 14932 25
## 14933 24
## 14934 9
## 14935 21
## 14936 22
## 14937 12
## 14938 26
## 14939 15
## 14940 15
## 14941 31
## 14942 2
## 14943 5
## 14944 12
## 14945 15
## 14946 23
## 14947 16
## 14948 16
## 14949 29
## 14950 8
## 14951 1
## 14952 1
## 14953 1
## 14954 21
## 14955 29
## 14956 2
## 14957 9
## 14958 8
## 14959 9
## 14960 10
## 14961 1
## 14962 8
## 14963 26
## 14964 21
## 14965 6
## 14966 1
## 14967 18
## 14968 17
## 14969 9
## 14970 5
## 14971 22
## 14972 15
## 14973 15
## 14974 15
## 14975 15
## 14976 15
## 14977 15
## 14978 15
## 14979 15
## 14980 15
## 14981 15
## 14982 15
## 14983 15
## 14984 15
## 14985 15
## 14986 15
## 14987 15
## 14988 15
## 14989 15
## 14990 15
## 14991 15
## 14992 15
## 14993 15
## 14994 15
## 14995 15
## 14996 15
## 14997 3
## 14998 3
## 14999 3
## 15000 3
## 15001 3
## 15002 3
## 15003 3
## 15004 3
## 15005 3
## 15006 3
## 15007 3
## 15008 3
## 15009 3
## 15010 3
## 15011 3
## 15012 3
## 15013 3
## 15014 3
## 15015 3
## 15016 3
## 15017 1
## 15018 1
## 15019 29
## 15020 9
## 15021 9
## 15022 1
## 15023 24
## 15024 3
## 15025 24
## 15026 3
## 15027 13
## 15028 22
## 15029 29
## 15030 29
## 15031 30
## 15032 30
## 15033 21
## 15034 9
## 15035 16
## 15036 21
## 15037 9
## 15038 3
## 15039 7
## 15040 7
## 15041 3
## 15042 4
## 15043 18
## 15044 30
## 15045 26
## 15046 12
## 15047 12
## 15048 8
## 15049 17
## 15050 6
## 15051 13
## 15052 19
## 15053 22
## 15054 13
## 15055 4
## 15056 15
## 15057 28
## 15058 8
## 15059 2
## 15060 5
## 15061 14
## 15062 11
## 15063 16
## 15064 30
## 15065 19
## 15066 15
## 15067 24
## 15068 28
## 15069 26
## 15070 18
## 15071 31
## 15072 15
## 15073 23
## 15074 11
## 15075 22
## 15076 22
## 15077 22
## 15078 8
## 15079 10
## 15080 8
## 15081 6
## 15082 6
## 15083 18
## 15084 15
## 15085 1
## 15086 9
## 15087 11
## 15088 30
## 15089 30
## 15090 9
## 15091 7
## 15092 1
## 15093 18
## 15094 3
## 15095 3
## 15096 3
## 15097 3
## 15098 3
## 15099 3
## 15100 3
## 15101 3
## 15102 3
## 15103 3
## 15104 3
## 15105 3
## 15106 3
## 15107 3
## 15108 3
## 15109 3
## 15110 3
## 15111 3
## 15112 3
## 15113 3
## 15114 3
## 15115 3
## 15116 3
## 15117 3
## 15118 3
## 15119 7
## 15120 14
## 15121 15
## 15122 5
## 15123 24
## 15124 1
## 15125 7
## 15126 7
## 15127 12
## 15128 3
## 15129 24
## 15130 13
## 15131 9
## 15132 12
## 15133 26
## 15134 31
## 15135 11
## 15136 11
## 15137 11
## 15138 14
## 15139 20
## 15140 28
## 15141 10
## 15142 14
## 15143 20
## 15144 18
## 15145 15
## 15146 13
## 15147 4
## 15148 24
## 15149 11
## 15150 11
## 15151 2
## 15152 2
## 15153 2
## 15154 2
## 15155 2
## 15156 2
## 15157 2
## 15158 2
## 15159 2
## 15160 2
## 15161 2
## 15162 2
## 15163 2
## 15164 2
## 15165 2
## 15166 2
## 15167 2
## 15168 2
## 15169 2
## 15170 2
## 15171 2
## 15172 2
## 15173 2
## 15174 2
## 15175 5
## 15176 5
## 15177 5
## 15178 5
## 15179 5
## 15180 5
## 15181 5
## 15182 5
## 15183 5
## 15184 12
## 15185 12
## 15186 12
## 15187 12
## 15188 12
## 15189 12
## 15190 12
## 15191 12
## 15192 12
## 15193 12
## 15194 12
## 15195 12
## 15196 12
## 15197 19
## 15198 19
## 15199 19
## 15200 19
## 15201 19
## 15202 19
## 15203 19
## 15204 26
## 15205 26
## 15206 26
## 15207 26
## 15208 26
## 15209 26
## 15210 26
## 15211 26
## 15212 26
## 15213 26
## 15214 26
## 15215 26
## 15216 26
## 15217 3
## 15218 3
## 15219 3
## 15220 3
## 15221 3
## 15222 3
## 15223 3
## 15224 22
## 15225 16
## 15226 3
## 15227 7
## 15228 1
## 15229 9
## 15230 18
## 15231 21
## 15232 29
## 15233 22
## 15234 12
## 15235 1
## 15236 14
## 15237 4
## 15238 27
## 15239 30
## 15240 25
## 15241 10
## 15242 29
## 15243 26
## 15244 16
## 15245 26
## 15246 26
## 15247 26
## 15248 26
## 15249 26
## 15250 26
## 15251 26
## 15252 26
## 15253 26
## 15254 24
## 15255 20
## 15256 22
## 15257 28
## 15258 21
## 15259 24
## 15260 11
## 15261 29
## 15262 7
## 15263 19
## 15264 26
## 15265 26
## 15266 9
## 15267 3
## 15268 3
## 15269 6
## 15270 3
## 15271 14
## 15272 19
## 15273 21
## 15274 17
## 15275 11
## 15276 8
## 15277 26
## 15278 19
## 15279 20
## 15280 15
## 15281 13
## 15282 24
## 15283 7
## 15284 18
## 15285 30
## 15286 8
## 15287 2
## 15288 4
## 15289 6
## 15290 21
## 15291 21
## 15292 28
## 15293 26
## 15294 24
## 15295 6
## 15296 30
## 15297 30
## 15298 4
## 15299 1
## 15300 1
## 15301 3
## 15302 5
## 15303 4
## 15304 5
## 15305 1
## 15306 1
## 15307 7
## 15308 8
## 15309 8
## 15310 8
## 15311 8
## 15312 8
## 15313 8
## 15314 8
## 15315 8
## 15316 8
## 15317 8
## 15318 8
## 15319 8
## 15320 8
## 15321 8
## 15322 8
## 15323 8
## 15324 8
## 15325 8
## 15326 8
## 15327 8
## 15328 8
## 15329 8
## 15330 8
## 15331 8
## 15332 8
## 15333 1
## 15334 2
## 15335 1
## 15336 1
## 15337 5
## 15338 19
## 15339 19
## 15340 19
## 15341 5
## 15342 5
## 15343 5
## 15344 19
## 15345 19
## 15346 19
## 15347 19
## 15348 19
## 15349 19
## 15350 4
## 15351 2
## 15352 2
## 15353 6
## 15354 2
## 15355 5
## 15356 7
## 15357 3
## 15358 3
## 15359 9
## 15360 20
## 15361 6
## 15362 9
## 15363 15
## 15364 15
## 15365 20
## 15366 5
## 15367 4
## 15368 6
## 15369 7
## 15370 5
## 15371 10
## 15372 7
## 15373 7
## 15374 6
## 15375 8
## 15376 4
## 15377 5
## 15378 4
## 15379 7
## 15380 4
## 15381 7
## 15382 7
## 15383 7
## 15384 11
## 15385 4
## 15386 9
## 15387 5
## 15388 5
## 15389 5
## 15390 4
## 15391 4
## 15392 8
## 15393 10
## 15394 9
## 15395 9
## 15396 9
## 15397 8
## 15398 6
## 15399 2
## 15400 2
## 15401 16
## 15402 12
## 15403 12
## 15404 9
## 15405 6
## 15406 6
## 15407 6
## 15408 2
## 15409 9
## 15410 9
## 15411 4
## 15412 7
## 15413 3
## 15414 13
## 15415 2
## 15416 15
## 15417 8
## 15418 7
## 15419 7
## 15420 9
## 15421 9
## 15422 5
## 15423 2
## 15424 14
## 15425 14
## 15426 2
## 15427 9
## 15428 5
## 15429 15
## 15430 15
## 15431 10
## 15432 10
## 15433 9
## 15434 9
## 15435 11
## 15436 8
## 15437 10
## 15438 10
## 15439 13
## 15440 13
## 15441 8
## 15442 11
## 15443 15
## 15444 6
## 15445 13
## 15446 15
## 15447 17
## 15448 7
## 15449 17
## 15450 17
## 15451 15
## 15452 11
## 15453 16
## 15454 16
## 15455 11
## 15456 16
## 15457 11
## 15458 11
## 15459 17
## 15460 4
## 15461 5
## 15462 12
## 15463 16
## 15464 12
## 15465 16
## 15466 30
## 15467 16
## 15468 16
## 15469 17
## 15470 16
## 15471 5
## 15472 16
## 15473 19
## 15474 17
## 15475 13
## 15476 19
## 15477 16
## 15478 19
## 15479 19
## 15480 10
## 15481 19
## 15482 20
## 15483 11
## 15484 20
## 15485 13
## 15486 18
## 15487 18
## 15488 16
## 15489 13
## 15490 16
## 15491 16
## 15492 16
## 15493 17
## 15494 8
## 15495 14
## 15496 13
## 15497 16
## 15498 22
## 15499 16
## 15500 16
## 15501 20
## 15502 16
## 15503 20
## 15504 20
## 15505 16
## 15506 22
## 15507 23
## 15508 22
## 15509 21
## 15510 24
## 15511 15
## 15512 18
## 15513 19
## 15514 16
## 15515 20
## 15516 21
## 15517 21
## 15518 20
## 15519 21
## 15520 21
## 15521 10
## 15522 23
## 15523 14
## 15524 19
## 15525 19
## 15526 19
## 15527 19
## 15528 19
## 15529 21
## 15530 20
## 15531 23
## 15532 15
## 15533 22
## 15534 16
## 15535 23
## 15536 21
## 15537 23
## 15538 18
## 15539 21
## 15540 24
## 15541 18
## 15542 21
## 15543 20
## 15544 22
## 15545 19
## 15546 19
## 15547 18
## 15548 23
## 15549 18
## 15550 22
## 15551 19
## 15552 22
## 15553 19
## 15554 20
## 15555 20
## 15556 22
## 15557 19
## 15558 24
## 15559 22
## 15560 24
## 15561 18
## 15562 18
## 15563 24
## 15564 24
## 15565 20
## 15566 22
## 15567 23
## 15568 20
## 15569 20
## 15570 22
## 15571 23
## 15572 22
## 15573 24
## 15574 24
## 15575 24
## 15576 24
## 15577 25
## 15578 17
## 15579 21
## 15580 20
## 15581 20
## 15582 23
## 15583 20
## 15584 24
## 15585 20
## 15586 17
## 15587 1
## 15588 20
## 15589 20
## 15590 20
## 15591 22
## 15592 20
## 15593 20
## 15594 20
## 15595 24
## 15596 22
## 15597 23
## 15598 23
## 15599 20
## 15600 18
## 15601 23
## 15602 1
## 15603 21
## 15604 21
## 15605 18
## 15606 18
## 15607 20
## 15608 21
## 15609 20
## 15610 25
## 15611 24
## 15612 21
## 15613 21
## 15614 21
## 15615 21
## 15616 21
## 15617 21
## 15618 26
## 15619 26
## 15620 3
## 15621 22
## 15622 4
## 15623 4
## 15624 4
## 15625 4
## 15626 4
## 15627 4
## 15628 4
## 15629 19
## 15630 27
## 15631 25
## 15632 16
## 15633 2
## 15634 16
## 15635 16
## 15636 23
## 15637 23
## 15638 20
## 15639 20
## 15640 28
## 15641 29
## 15642 25
## 15643 23
## 15644 29
## 15645 25
## 15646 29
## 15647 29
## 15648 27
## 15649 27
## 15650 27
## 15651 26
## 15652 25
## 15653 20
## 15654 16
## 15655 12
## 15656 12
## 15657 12
## 15658 12
## 15659 12
## 15660 12
## 15661 12
## 15662 12
## 15663 12
## 15664 12
## 15665 12
## 15666 12
## 15667 12
## 15668 12
## 15669 12
## 15670 12
## 15671 12
## 15672 12
## 15673 12
## 15674 12
## 15675 30
## 15676 23
## 15677 25
## 15678 30
## 15679 24
## 15680 24
## 15681 24
## 15682 29
## 15683 29
## 15684 26
## 15685 24
## 15686 26
## 15687 26
## 15688 25
## 15689 22
## 15690 24
## 15691 27
## 15692 27
## 15693 27
## 15694 24
## 15695 28
## 15696 24
## 15697 28
## 15698 26
## 15699 27
## 15700 26
## 15701 25
## 15702 25
## 15703 25
## 15704 25
## 15705 25
## 15706 25
## 15707 25
## 15708 25
## 15709 25
## 15710 25
## 15711 25
## 15712 25
## 15713 25
## 15714 25
## 15715 25
## 15716 25
## 15717 25
## 15718 25
## 15719 25
## 15720 25
## 15721 25
## 15722 25
## 15723 25
## 15724 25
## 15725 25
## 15726 25
## 15727 25
## 15728 27
## 15729 23
## 15730 27
## 15731 31
## 15732 31
## 15733 27
## 15734 24
## 15735 27
## 15736 31
## 15737 30
## 15738 26
## 15739 28
## 15740 26
## 15741 27
## 15742 26
## 15743 26
## 15744 26
## 15745 25
## 15746 28
## 15747 1
## 15748 27
## 15749 25
## 15750 25
## 15751 30
## 15752 20
## 15753 22
## 15754 2
## 15755 2
## 15756 2
## 15757 2
## 15758 2
## 15759 2
## 15760 2
## 15761 2
## 15762 2
## 15763 2
## 15764 2
## 15765 2
## 15766 2
## 15767 2
## 15768 4
## 15769 26
## 15770 30
## 15771 28
## 15772 26
## 15773 31
## 15774 26
## 15775 31
## 15776 25
## 15777 22
## 15778 31
## 15779 30
## 15780 25
## 15781 27
## 15782 27
## 15783 31
## 15784 31
## 15785 30
## 15786 27
## 15787 26
## 15788 27
## 15789 31
## 15790 24
## 15791 26
## 15792 26
## 15793 26
## 15794 30
## 15795 1
## 15796 31
## 15797 31
## 15798 3
## 15799 2
## 15800 30
## 15801 30
## 15802 27
## 15803 31
## 15804 31
## 15805 31
## 15806 26
## 15807 27
## 15808 30
## 15809 1
## 15810 31
## 15811 30
## 15812 31
## 15813 30
## 15814 1
## 15815 29
## 15816 16
## 15817 30
## 15818 1
## 15819 27
## 15820 1
## 15821 31
## 15822 31
## 15823 31
## 15824 31
## 15825 30
## 15826 31
## 15827 3
## 15828 31
## 15829 31
## 15830 24
## 15831 31
## 15832 28
## 15833 27
## 15834 2
## 15835 2
## 15836 3
## 15837 1
## 15838 30
## 15839 30
## 15840 30
## 15841 2
## 15842 31
## 15843 3
## 15844 29
## 15845 2
## 15846 27
## 15847 7
## 15848 29
## 15849 2
## 15850 30
## 15851 31
## 15852 4
## 15853 4
## 15854 1
## 15855 1
## 15856 4
## 15857 29
## 15858 29
## 15859 3
## 15860 29
## 15861 1
## 15862 26
## 15863 7
## 15864 28
## 15865 27
## 15866 30
## 15867 31
## 15868 30
## 15869 30
## 15870 30
## 15871 30
## 15872 5
## 15873 12
## 15874 19
## 15875 2
## 15876 22
## 15877 16
## 15878 4
## 15879 5
## 15880 30
## 15881 1
## 15882 31
## 15883 23
## 15884 5
## 15885 5
## 15886 28
## 15887 24
## 15888 4
## 15889 28
## 15890 3
## 15891 5
## 15892 4
## 15893 3
## 15894 6
## 15895 3
## 15896 2
## 15897 8
## 15898 3
## 15899 3
## 15900 3
## 15901 2
## 15902 31
## 15903 31
## 15904 2
## 15905 2
## 15906 1
## 15907 29
## 15908 3
## 15909 3
## 15910 2
## 15911 2
## 15912 30
## 15913 1
## 15914 29
## 15915 3
## 15916 3
## 15917 3
## 15918 3
## 15919 3
## 15920 1
## 15921 8
## 15922 2
## 15923 3
## 15924 5
## 15925 7
## 15926 2
## 15927 5
## 15928 1
## 15929 1
## 15930 1
## 15931 1
## 15932 1
## 15933 29
## 15934 1
## 15935 5
## 15936 1
## 15937 2
## 15938 2
## 15939 3
## 15940 2
## 15941 4
## 15942 2
## 15943 3
## 15944 1
## 15945 2
## 15946 5
## 15947 2
## 15948 8
## 15949 2
## 15950 2
## 15951 3
## 15952 1
## 15953 20
## 15954 4
## 15955 6
## 15956 8
## 15957 8
## 15958 2
## 15959 1
## 15960 2
## 15961 3
## 15962 3
## 15963 3
## 15964 3
## 15965 8
## 15966 6
## 15967 4
## 15968 30
## 15969 1
## 15970 2
## 15971 8
## 15972 10
## 15973 7
## 15974 1
## 15975 3
## 15976 7
## 15977 3
## 15978 3
## 15979 4
## 15980 3
## 15981 23
## 15982 3
## 15983 1
## 15984 3
## 15985 3
## 15986 9
## 15987 8
## 15988 9
## 15989 1
## 15990 9
## 15991 9
## 15992 9
## 15993 9
## 15994 3
## 15995 3
## 15996 14
## 15997 6
## 15998 3
## 15999 3
## 16000 6
## 16001 3
## 16002 3
## 16003 3
## 16004 3
## 16005 3
## 16006 3
## 16007 24
## 16008 7
## 16009 5
## 16010 4
## 16011 10
## 16012 7
## 16013 6
## 16014 3
## 16015 7
## 16016 9
## 16017 1
## 16018 4
## 16019 4
## 16020 10
## 16021 9
## 16022 6
## 16023 1
## 16024 1
## 16025 1
## 16026 3
## 16027 3
## 16028 8
## 16029 5
## 16030 9
## 16031 9
## 16032 6
## 16033 8
## 16034 6
## 16035 2
## 16036 5
## 16037 11
## 16038 7
## 16039 9
## 16040 10
## 16041 3
## 16042 3
## 16043 3
## 16044 3
## 16045 3
## 16046 3
## 16047 9
## 16048 14
## 16049 14
## 16050 14
## 16051 4
## 16052 30
## 16053 30
## 16054 12
## 16055 10
## 16056 10
## 16057 10
## 16058 1
## 16059 1
## 16060 10
## 16061 9
## 16062 2
## 16063 12
## 16064 10
## 16065 8
## 16066 12
## 16067 11
## 16068 7
## 16069 4
## 16070 4
## 16071 4
## 16072 7
## 16073 7
## 16074 9
## 16075 8
## 16076 10
## 16077 10
## 16078 4
## 16079 10
## 16080 8
## 16081 13
## 16082 9
## 16083 8
## 16084 10
## 16085 10
## 16086 7
## 16087 12
## 16088 1
## 16089 31
## 16090 8
## 16091 8
## 16092 9
## 16093 8
## 16094 7
## 16095 9
## 16096 7
## 16097 11
## 16098 10
## 16099 7
## 16100 9
## 16101 10
## 16102 11
## 16103 8
## 16104 11
## 16105 11
## 16106 10
## 16107 28
## 16108 12
## 16109 4
## 16110 10
## 16111 9
## 16112 9
## 16113 10
## 16114 11
## 16115 13
## 16116 10
## 16117 10
## 16118 9
## 16119 16
## 16120 9
## 16121 2
## 16122 11
## 16123 11
## 16124 11
## 16125 2
## 16126 2
## 16127 8
## 16128 9
## 16129 9
## 16130 9
## 16131 11
## 16132 15
## 16133 10
## 16134 7
## 16135 15
## 16136 15
## 16137 13
## 16138 9
## 16139 10
## 16140 10
## 16141 10
## 16142 10
## 16143 12
## 16144 12
## 16145 5
## 16146 13
## 16147 14
## 16148 10
## 16149 7
## 16150 13
## 16151 10
## 16152 10
## 16153 9
## 16154 13
## 16155 9
## 16156 13
## 16157 9
## 16158 9
## 16159 12
## 16160 10
## 16161 10
## 16162 10
## 16163 13
## 16164 10
## 16165 15
## 16166 16
## 16167 16
## 16168 16
## 16169 10
## 16170 15
## 16171 16
## 16172 16
## 16173 12
## 16174 10
## 16175 10
## 16176 7
## 16177 10
## 16178 28
## 16179 16
## 16180 3
## 16181 16
## 16182 16
## 16183 10
## 16184 13
## 16185 16
## 16186 11
## 16187 11
## 16188 14
## 16189 11
## 16190 11
## 16191 11
## 16192 16
## 16193 10
## 16194 15
## 16195 16
## 16196 24
## 16197 17
## 16198 15
## 16199 10
## 16200 15
## 16201 17
## 16202 11
## 16203 14
## 16204 5
## 16205 14
## 16206 15
## 16207 10
## 16208 6
## 16209 16
## 16210 12
## 16211 10
## 16212 15
## 16213 19
## 16214 14
## 16215 17
## 16216 15
## 16217 13
## 16218 13
## 16219 16
## 16220 13
## 16221 17
## 16222 4
## 16223 17
## 16224 15
## 16225 15
## 16226 10
## 16227 16
## 16228 16
## 16229 16
## 16230 14
## 16231 15
## 16232 13
## 16233 19
## 16234 19
## 16235 19
## 16236 17
## 16237 12
## 16238 29
## 16239 19
## 16240 17
## 16241 14
## 16242 17
## 16243 17
## 16244 17
## 16245 18
## 16246 12
## 16247 13
## 16248 14
## 16249 16
## 16250 17
## 16251 14
## 16252 17
## 16253 16
## 16254 16
## 16255 19
## 16256 14
## 16257 19
## 16258 21
## 16259 21
## 16260 21
## 16261 15
## 16262 15
## 16263 8
## 16264 16
## 16265 15
## 16266 11
## 16267 15
## 16268 16
## 16269 15
## 16270 16
## 16271 16
## 16272 16
## 16273 16
## 16274 17
## 16275 17
## 16276 17
## 16277 20
## 16278 20
## 16279 17
## 16280 20
## 16281 15
## 16282 15
## 16283 15
## 16284 17
## 16285 16
## 16286 16
## 16287 17
## 16288 8
## 16289 15
## 16290 16
## 16291 17
## 16292 21
## 16293 22
## 16294 16
## 16295 10
## 16296 17
## 16297 16
## 16298 16
## 16299 20
## 16300 20
## 16301 20
## 16302 18
## 16303 16
## 16304 16
## 16305 13
## 16306 13
## 16307 16
## 16308 16
## 16309 18
## 16310 19
## 16311 18
## 16312 16
## 16313 15
## 16314 16
## 16315 18
## 16316 21
## 16317 17
## 16318 20
## 16319 19
## 16320 22
## 16321 20
## 16322 15
## 16323 17
## 16324 20
## 16325 20
## 16326 11
## 16327 17
## 16328 18
## 16329 17
## 16330 17
## 16331 17
## 16332 19
## 16333 15
## 16334 21
## 16335 21
## 16336 17
## 16337 23
## 16338 17
## 16339 17
## 16340 17
## 16341 20
## 16342 22
## 16343 17
## 16344 24
## 16345 24
## 16346 20
## 16347 18
## 16348 18
## 16349 18
## 16350 24
## 16351 20
## 16352 20
## 16353 16
## 16354 17
## 16355 17
## 16356 23
## 16357 17
## 16358 19
## 16359 29
## 16360 25
## 16361 17
## 16362 20
## 16363 24
## 16364 19
## 16365 14
## 16366 26
## 16367 26
## 16368 21
## 16369 23
## 16370 20
## 16371 24
## 16372 26
## 16373 14
## 16374 18
## 16375 25
## 16376 27
## 16377 23
## 16378 23
## 16379 24
## 16380 26
## 16381 26
## 16382 24
## 16383 21
## 16384 21
## 16385 24
## 16386 3
## 16387 1
## 16388 4
## 16389 29
## 16390 21
## 16391 26
## 16392 23
## 16393 22
## 16394 23
## 16395 23
## 16396 24
## 16397 17
## 16398 23
## 16399 26
## 16400 23
## 16401 23
## 16402 14
## 16403 24
## 16404 22
## 16405 21
## 16406 25
## 16407 25
## 16408 23
## 16409 3
## 16410 2
## 16411 2
## 16412 2
## 16413 2
## 16414 28
## 16415 23
## 16416 22
## 16417 22
## 16418 22
## 16419 1
## 16420 22
## 16421 22
## 16422 22
## 16423 22
## 16424 15
## 16425 22
## 16426 22
## 16427 22
## 16428 28
## 16429 15
## 16430 23
## 16431 24
## 16432 23
## 16433 22
## 16434 22
## 16435 22
## 16436 23
## 16437 27
## 16438 22
## 16439 24
## 16440 23
## 16441 28
## 16442 12
## 16443 25
## 16444 15
## 16445 2
## 16446 23
## 16447 20
## 16448 28
## 16449 27
## 16450 16
## 16451 22
## 16452 26
## 16453 20
## 16454 23
## 16455 24
## 16456 24
## 16457 24
## 16458 23
## 16459 24
## 16460 25
## 16461 25
## 16462 27
## 16463 27
## 16464 29
## 16465 26
## 16466 23
## 16467 16
## 16468 16
## 16469 25
## 16470 27
## 16471 24
## 16472 23
## 16473 25
## 16474 25
## 16475 25
## 16476 24
## 16477 25
## 16478 26
## 16479 24
## 16480 26
## 16481 26
## 16482 26
## 16483 20
## 16484 26
## 16485 27
## 16486 30
## 16487 25
## 16488 24
## 16489 24
## 16490 24
## 16491 23
## 16492 30
## 16493 27
## 16494 4
## 16495 17
## 16496 24
## 16497 21
## 16498 24
## 16499 29
## 16500 31
## 16501 30
## 16502 10
## 16503 27
## 16504 22
## 16505 22
## 16506 28
## 16507 30
## 16508 29
## 16509 29
## 16510 25
## 16511 30
## 16512 30
## 16513 25
## 16514 30
## 16515 30
## 16516 28
## 16517 30
## 16518 30
## 16519 31
## 16520 29
## 16521 28
## 16522 25
## 16523 25
## 16524 2
## 16525 28
## 16526 28
## 16527 27
## 16528 14
## 16529 26
## 16530 23
## 16531 30
## 16532 29
## 16533 29
## 16534 29
## 16535 29
## 16536 26
## 16537 30
## 16538 29
## 16539 29
## 16540 23
## 16541 28
## 16542 25
## 16543 23
## 16544 7
## 16545 7
## 16546 9
## 16547 9
## 16548 9
## 16549 9
## 16550 9
## 16551 9
## 16552 9
## 16553 9
## 16554 9
## 16555 9
## 16556 9
## 16557 9
## 16558 9
## 16559 9
## 16560 9
## 16561 9
## 16562 9
## 16563 9
## 16564 9
## 16565 9
## 16566 9
## 16567 9
## 16568 9
## 16569 9
## 16570 9
## 16571 9
## 16572 9
## 16573 27
## 16574 15
## 16575 29
## 16576 27
## 16577 29
## 16578 20
## 16579 20
## 16580 20
## 16581 27
## 16582 23
## 16583 25
## 16584 29
## 16585 1
## 16586 29
## 16587 29
## 16588 31
## 16589 1
## 16590 29
## 16591 27
## 16592 29
## 16593 29
## 16594 3
## 16595 6
## 16596 31
## 16597 30
## 16598 2
## 16599 29
## 16600 30
## 16601 29
## 16602 1
## 16603 29
## 16604 27
## 16605 5
## 16606 29
## 16607 31
## 16608 30
## 16609 29
## 16610 18
## 16611 30
## 16612 3
## 16613 4
## 16614 2
## 16615 26
## 16616 26
## 16617 30
## 16618 2
## 16619 2
## 16620 29
## 16621 26
## 16622 30
## 16623 26
## 16624 28
## 16625 30
## 16626 29
## 16627 31
## 16628 31
## 16629 30
## 16630 29
## 16631 29
## 16632 29
## 16633 22
## 16634 30
## 16635 30
## 16636 22
## 16637 1
## 16638 2
## 16639 30
## 16640 30
## 16641 22
## 16642 2
## 16643 3
## 16644 3
## 16645 3
## 16646 29
## 16647 3
## 16648 4
## 16649 3
## 16650 1
## 16651 4
## 16652 4
## 16653 4
## 16654 5
## 16655 31
## 16656 5
## 16657 3
## 16658 30
## 16659 29
## 16660 3
## 16661 3
## 16662 1
## 16663 5
## 16664 5
## 16665 6
## 16666 4
## 16667 4
## 16668 4
## 16669 3
## 16670 3
## 16671 31
## 16672 2
## 16673 2
## 16674 2
## 16675 2
## 16676 2
## 16677 4
## 16678 2
## 16679 29
## 16680 3
## 16681 3
## 16682 2
## 16683 2
## 16684 6
## 16685 4
## 16686 6
## 16687 5
## 16688 15
## 16689 9
## 16690 1
## 16691 28
## 16692 1
## 16693 1
## 16694 3
## 16695 6
## 16696 6
## 16697 6
## 16698 6
## 16699 6
## 16700 1
## 16701 1
## 16702 1
## 16703 3
## 16704 1
## 16705 2
## 16706 31
## 16707 2
## 16708 30
## 16709 2
## 16710 2
## 16711 2
## 16712 7
## 16713 1
## 16714 9
## 16715 2
## 16716 2
## 16717 2
## 16718 2
## 16719 1
## 16720 29
## 16721 1
## 16722 2
## 16723 2
## 16724 2
## 16725 2
## 16726 3
## 16727 15
## 16728 2
## 16729 7
## 16730 8
## 16731 4
## 16732 22
## 16733 5
## 16734 6
## 16735 31
## 16736 13
## 16737 6
## 16738 3
## 16739 4
## 16740 9
## 16741 9
## 16742 28
## 16743 18
## 16744 23
## 16745 27
## 16746 7
## 16747 8
## 16748 8
## 16749 1
## 16750 1
## 16751 7
## 16752 1
## 16753 30
## 16754 31
## 16755 6
## 16756 7
## 16757 7
## 16758 7
## 16759 6
## 16760 7
## 16761 7
## 16762 7
## 16763 6
## 16764 7
## 16765 21
## 16766 1
## 16767 6
## 16768 4
## 16769 17
## 16770 10
## 16771 10
## 16772 10
## 16773 10
## 16774 10
## 16775 10
## 16776 10
## 16777 5
## 16778 29
## 16779 6
## 16780 6
## 16781 11
## 16782 6
## 16783 7
## 16784 20
## 16785 7
## 16786 7
## 16787 5
## 16788 9
## 16789 10
## 16790 8
## 16791 9
## 16792 7
## 16793 1
## 16794 6
## 16795 3
## 16796 12
## 16797 12
## 16798 12
## 16799 12
## 16800 12
## 16801 10
## 16802 31
## 16803 12
## 16804 10
## 16805 6
## 16806 10
## 16807 6
## 16808 12
## 16809 6
## 16810 18
## 16811 8
## 16812 7
## 16813 11
## 16814 7
## 16815 7
## 16816 10
## 16817 10
## 16818 10
## 16819 10
## 16820 11
## 16821 31
## 16822 1
## 16823 7
## 16824 7
## 16825 11
## 16826 9
## 16827 11
## 16828 11
## 16829 11
## 16830 11
## 16831 8
## 16832 10
## 16833 7
## 16834 1
## 16835 8
## 16836 1
## 16837 7
## 16838 8
## 16839 14
## 16840 8
## 16841 5
## 16842 12
## 16843 12
## 16844 12
## 16845 12
## 16846 12
## 16847 12
## 16848 12
## 16849 12
## 16850 12
## 16851 12
## 16852 12
## 16853 12
## 16854 12
## 16855 12
## 16856 12
## 16857 12
## 16858 12
## 16859 12
## 16860 12
## 16861 12
## 16862 12
## 16863 12
## 16864 9
## 16865 9
## 16866 14
## 16867 14
## 16868 14
## 16869 14
## 16870 14
## 16871 14
## 16872 14
## 16873 14
## 16874 14
## 16875 14
## 16876 14
## 16877 14
## 16878 14
## 16879 14
## 16880 14
## 16881 14
## 16882 14
## 16883 14
## 16884 14
## 16885 14
## 16886 14
## 16887 14
## 16888 14
## 16889 15
## 16890 14
## 16891 16
## 16892 14
## 16893 7
## 16894 7
## 16895 6
## 16896 10
## 16897 7
## 16898 16
## 16899 16
## 16900 16
## 16901 27
## 16902 16
## 16903 20
## 16904 16
## 16905 8
## 16906 20
## 16907 16
## 16908 2
## 16909 14
## 16910 16
## 16911 6
## 16912 16
## 16913 14
## 16914 16
## 16915 16
## 16916 16
## 16917 12
## 16918 16
## 16919 3
## 16920 7
## 16921 5
## 16922 7
## 16923 4
## 16924 11
## 16925 4
## 16926 6
## 16927 11
## 16928 16
## 16929 4
## 16930 16
## 16931 18
## 16932 15
## 16933 19
## 16934 20
## 16935 19
## 16936 22
## 16937 20
## 16938 24
## 16939 18
## 16940 16
## 16941 11
## 16942 16
## 16943 16
## 16944 17
## 16945 9
## 16946 15
## 16947 12
## 16948 16
## 16949 21
## 16950 12
## 16951 12
## 16952 9
## 16953 12
## 16954 17
## 16955 14
## 16956 16
## 16957 13
## 16958 16
## 16959 17
## 16960 17
## 16961 17
## 16962 13
## 16963 17
## 16964 12
## 16965 17
## 16966 17
## 16967 18
## 16968 17
## 16969 17
## 16970 17
## 16971 17
## 16972 17
## 16973 12
## 16974 16
## 16975 16
## 16976 13
## 16977 17
## 16978 15
## 16979 11
## 16980 12
## 16981 13
## 16982 10
## 16983 13
## 16984 17
## 16985 15
## 16986 19
## 16987 15
## 16988 13
## 16989 16
## 16990 9
## 16991 10
## 16992 17
## 16993 17
## 16994 19
## 16995 7
## 16996 19
## 16997 19
## 16998 19
## 16999 19
## 17000 19
## 17001 19
## 17002 19
## 17003 19
## 17004 19
## 17005 19
## 17006 19
## 17007 19
## 17008 19
## 17009 19
## 17010 19
## 17011 19
## 17012 19
## 17013 19
## 17014 19
## 17015 19
## 17016 19
## 17017 19
## 17018 14
## 17019 16
## 17020 16
## 17021 14
## 17022 21
## 17023 17
## 17024 16
## 17025 17
## 17026 19
## 17027 13
## 17028 13
## 17029 15
## 17030 12
## 17031 12
## 17032 18
## 17033 17
## 17034 21
## 17035 8
## 17036 20
## 17037 15
## 17038 15
## 17039 19
## 17040 18
## 17041 18
## 17042 21
## 17043 16
## 17044 21
## 17045 21
## 17046 21
## 17047 21
## 17048 16
## 17049 21
## 17050 21
## 17051 21
## 17052 21
## 17053 21
## 17054 21
## 17055 21
## 17056 22
## 17057 11
## 17058 21
## 17059 21
## 17060 21
## 17061 21
## 17062 21
## 17063 21
## 17064 16
## 17065 19
## 17066 16
## 17067 21
## 17068 10
## 17069 10
## 17070 17
## 17071 13
## 17072 10
## 17073 17
## 17074 21
## 17075 13
## 17076 23
## 17077 19
## 17078 23
## 17079 23
## 17080 17
## 17081 19
## 17082 11
## 17083 18
## 17084 18
## 17085 15
## 17086 18
## 17087 18
## 17088 18
## 17089 21
## 17090 21
## 17091 21
## 17092 21
## 17093 21
## 17094 22
## 17095 21
## 17096 21
## 17097 21
## 17098 21
## 17099 21
## 17100 21
## 17101 21
## 17102 21
## 17103 21
## 17104 21
## 17105 18
## 17106 21
## 17107 21
## 17108 13
## 17109 25
## 17110 23
## 17111 22
## 17112 19
## 17113 19
## 17114 19
## 17115 12
## 17116 22
## 17117 20
## 17118 23
## 17119 23
## 17120 19
## 17121 23
## 17122 19
## 17123 6
## 17124 26
## 17125 20
## 17126 17
## 17127 17
## 17128 17
## 17129 20
## 17130 20
## 17131 20
## 17132 26
## 17133 25
## 17134 20
## 17135 24
## 17136 26
## 17137 19
## 17138 26
## 17139 7
## 17140 26
## 17141 26
## 17142 26
## 17143 26
## 17144 26
## 17145 26
## 17146 26
## 17147 26
## 17148 26
## 17149 26
## 17150 26
## 17151 26
## 17152 26
## 17153 26
## 17154 26
## 17155 18
## 17156 20
## 17157 25
## 17158 28
## 17159 28
## 17160 23
## 17161 26
## 17162 28
## 17163 29
## 17164 13
## 17165 14
## 17166 30
## 17167 30
## 17168 30
## 17169 30
## 17170 19
## 17171 24
## 17172 25
## 17173 22
## 17174 22
## 17175 28
## 17176 28
## 17177 25
## 17178 28
## 17179 28
## 17180 15
## 17181 28
## 17182 23
## 17183 22
## 17184 23
## 17185 23
## 17186 23
## 17187 23
## 17188 23
## 17189 20
## 17190 20
## 17191 24
## 17192 24
## 17193 24
## 17194 27
## 17195 23
## 17196 20
## 17197 23
## 17198 23
## 17199 23
## 17200 26
## 17201 23
## 17202 24
## 17203 29
## 17204 30
## 17205 22
## 17206 23
## 17207 24
## 17208 24
## 17209 24
## 17210 24
## 17211 24
## 17212 17
## 17213 15
## 17214 17
## 17215 17
## 17216 25
## 17217 23
## 17218 17
## 17219 17
## 17220 17
## 17221 17
## 17222 17
## 17223 25
## 17224 25
## 17225 26
## 17226 23
## 17227 29
## 17228 27
## 17229 23
## 17230 23
## 17231 24
## 17232 17
## 17233 18
## 17234 25
## 17235 18
## 17236 25
## 17237 25
## 17238 28
## 17239 28
## 17240 1
## 17241 29
## 17242 1
## 17243 20
## 17244 20
## 17245 20
## 17246 20
## 17247 20
## 17248 20
## 17249 20
## 17250 1
## 17251 28
## 17252 21
## 17253 1
## 17254 2
## 17255 5
## 17256 5
## 17257 5
## 17258 5
## 17259 5
## 17260 5
## 17261 5
## 17262 5
## 17263 5
## 17264 5
## 17265 5
## 17266 5
## 17267 5
## 17268 5
## 17269 5
## 17270 5
## 17271 5
## 17272 26
## 17273 30
## 17274 30
## 17275 30
## 17276 30
## 17277 30
## 17278 30
## 17279 30
## 17280 30
## 17281 30
## 17282 30
## 17283 30
## 17284 30
## 17285 30
## 17286 2
## 17287 30
## 17288 28
## 17289 29
## 17290 29
## 17291 19
## 17292 26
## 17293 30
## 17294 28
## 17295 1
## 17296 27
## 17297 3
## 17298 27
## 17299 20
## 17300 27
## 17301 24
## 17302 24
## 17303 27
## 17304 20
## 17305 3
## 17306 28
## 17307 30
## 17308 28
## 17309 14
## 17310 27
## 17311 3
## 17312 28
## 17313 28
## 17314 27
## 17315 4
## 17316 28
## 17317 25
## 17318 4
## 17319 1
## 17320 25
## 17321 4
## 17322 4
## 17323 1
## 17324 29
## 17325 27
## 17326 4
## 17327 4
## 17328 28
## 17329 29
## 17330 29
## 17331 29
## 17332 29
## 17333 29
## 17334 29
## 17335 26
## 17336 5
## 17337 30
## 17338 4
## 17339 4
## 17340 5
## 17341 4
## 17342 4
## 17343 5
## 17344 6
## 17345 23
## 17346 23
## 17347 6
## 17348 6
## 17349 5
## 17350 7
## 17351 27
## 17352 2
## 17353 3
## 17354 28
## 17355 1
## 17356 1
## 17357 1
## 17358 1
## 17359 1
## 17360 28
## 17361 28
## 17362 1
## 17363 6
## 17364 28
## 17365 29
## 17366 27
## 17367 7
## 17368 20
## 17369 27
## 17370 6
## 17371 5
## 17372 4
## 17373 4
## 17374 1
## 17375 6
## 17376 1
## 17377 2
## 17378 2
## 17379 28
## 17380 29
## 17381 4
## 17382 7
## 17383 29
## 17384 30
## 17385 29
## 17386 8
## 17387 2
## 17388 8
## 17389 5
## 17390 5
## 17391 8
## 17392 5
## 17393 7
## 17394 5
## 17395 5
## 17396 5
## 17397 4
## 17398 6
## 17399 5
## 17400 5
## 17401 5
## 17402 29
## 17403 4
## 17404 2
## 17405 5
## 17406 29
## 17407 5
## 17408 3
## 17409 3
## 17410 7
## 17411 7
## 17412 9
## 17413 3
## 17414 3
## 17415 5
## 17416 5
## 17417 9
## 17418 29
## 17419 18
## 17420 12
## 17421 20
## 17422 9
## 17423 7
## 17424 8
## 17425 6
## 17426 10
## 17427 8
## 17428 2
## 17429 9
## 17430 10
## 17431 10
## 17432 10
## 17433 9
## 17434 29
## 17435 5
## 17436 4
## 17437 10
## 17438 8
## 17439 10
## 17440 8
## 17441 8
## 17442 8
## 17443 8
## 17444 10
## 17445 10
## 17446 2
## 17447 10
## 17448 10
## 17449 10
## 17450 10
## 17451 10
## 17452 10
## 17453 10
## 17454 10
## 17455 10
## 17456 10
## 17457 10
## 17458 10
## 17459 10
## 17460 10
## 17461 10
## 17462 10
## 17463 11
## 17464 11
## 17465 7
## 17466 11
## 17467 6
## 17468 11
## 17469 10
## 17470 7
## 17471 10
## 17472 8
## 17473 10
## 17474 12
## 17475 6
## 17476 11
## 17477 8
## 17478 10
## 17479 11
## 17480 11
## 17481 11
## 17482 12
## 17483 11
## 17484 15
## 17485 12
## 17486 6
## 17487 6
## 17488 6
## 17489 6
## 17490 6
## 17491 6
## 17492 6
## 17493 6
## 17494 12
## 17495 6
## 17496 6
## 17497 6
## 17498 6
## 17499 6
## 17500 12
## 17501 24
## 17502 6
## 17503 29
## 17504 12
## 17505 24
## 17506 12
## 17507 12
## 17508 12
## 17509 16
## 17510 27
## 17511 24
## 17512 12
## 17513 12
## 17514 12
## 17515 7
## 17516 12
## 17517 10
## 17518 4
## 17519 27
## 17520 10
## 17521 26
## 17522 6
## 17523 12
## 17524 24
## 17525 12
## 17526 12
## 17527 24
## 17528 12
## 17529 3
## 17530 12
## 17531 10
## 17532 6
## 17533 12
## 17534 1
## 17535 6
## 17536 6
## 17537 16
## 17538 2
## 17539 12
## 17540 1
## 17541 12
## 17542 20
## 17543 12
## 17544 13
## 17545 14
## 17546 15
## 17547 11
## 17548 13
## 17549 20
## 17550 13
## 17551 13
## 17552 14
## 17553 13
## 17554 13
## 17555 24
## 17556 13
## 17557 7
## 17558 13
## 17559 12
## 17560 12
## 17561 13
## 17562 14
## 17563 13
## 17564 11
## 17565 13
## 17566 11
## 17567 8
## 17568 5
## 17569 13
## 17570 13
## 17571 14
## 17572 15
## 17573 13
## 17574 15
## 17575 18
## 17576 14
## 17577 15
## 17578 12
## 17579 10
## 17580 14
## 17581 12
## 17582 11
## 17583 12
## 17584 14
## 17585 14
## 17586 15
## 17587 15
## 17588 11
## 17589 1
## 17590 13
## 17591 12
## 17592 15
## 17593 11
## 17594 14
## 17595 23
## 17596 14
## 17597 11
## 17598 11
## 17599 12
## 17600 12
## 17601 12
## 17602 13
## 17603 12
## 17604 12
## 17605 12
## 17606 15
## 17607 12
## 17608 9
## 17609 15
## 17610 11
## 17611 15
## 17612 15
## 17613 18
## 17614 15
## 17615 15
## 17616 15
## 17617 15
## 17618 18
## 17619 8
## 17620 15
## 17621 18
## 17622 15
## 17623 15
## 17624 15
## 17625 15
## 17626 15
## 17627 10
## 17628 15
## 17629 15
## 17630 15
## 17631 15
## 17632 16
## 17633 17
## 17634 15
## 17635 4
## 17636 15
## 17637 18
## 17638 15
## 17639 18
## 17640 15
## 17641 18
## 17642 15
## 17643 18
## 17644 15
## 17645 18
## 17646 15
## 17647 15
## 17648 18
## 17649 15
## 17650 15
## 17651 15
## 17652 15
## 17653 15
## 17654 14
## 17655 15
## 17656 15
## 17657 15
## 17658 15
## 17659 15
## 17660 15
## 17661 15
## 17662 15
## 17663 15
## 17664 12
## 17665 15
## 17666 15
## 17667 15
## 17668 15
## 17669 15
## 17670 14
## 17671 15
## 17672 18
## 17673 15
## 17674 15
## 17675 15
## 17676 15
## 17677 15
## 17678 15
## 17679 15
## 17680 12
## 17681 15
## 17682 15
## 17683 15
## 17684 15
## 17685 15
## 17686 15
## 17687 15
## 17688 12
## 17689 12
## 17690 15
## 17691 12
## 17692 12
## 17693 12
## 17694 12
## 17695 12
## 17696 12
## 17697 12
## 17698 12
## 17699 15
## 17700 12
## 17701 18
## 17702 17
## 17703 15
## 17704 15
## 17705 17
## 17706 16
## 17707 12
## 17708 12
## 17709 12
## 17710 12
## 17711 12
## 17712 12
## 17713 12
## 17714 12
## 17715 12
## 17716 12
## 17717 12
## 17718 15
## 17719 15
## 17720 24
## 17721 15
## 17722 17
## 17723 8
## 17724 14
## 17725 14
## 17726 18
## 17727 13
## 17728 15
## 17729 13
## 17730 30
## 17731 2
## 17732 15
## 17733 15
## 17734 15
## 17735 15
## 17736 13
## 17737 13
## 17738 15
## 17739 14
## 17740 14
## 17741 19
## 17742 14
## 17743 15
## 17744 14
## 17745 14
## 17746 19
## 17747 6
## 17748 21
## 17749 1
## 17750 4
## 17751 21
## 17752 21
## 17753 1
## 17754 17
## 17755 4
## 17756 13
## 17757 13
## 17758 14
## 17759 14
## 17760 14
## 17761 14
## 17762 14
## 17763 14
## 17764 14
## 17765 14
## 17766 13
## 17767 19
## 17768 13
## 17769 19
## 17770 20
## 17771 20
## 17772 7
## 17773 20
## 17774 19
## 17775 14
## 17776 20
## 17777 14
## 17778 18
## 17779 15
## 17780 15
## 17781 18
## 17782 20
## 17783 1
## 17784 4
## 17785 16
## 17786 6
## 17787 10
## 17788 28
## 17789 19
## 17790 23
## 17791 31
## 17792 27
## 17793 30
## 17794 21
## 17795 11
## 17796 7
## 17797 23
## 17798 9
## 17799 20
## 17800 21
## 17801 19
## 17802 15
## 17803 21
## 17804 21
## 17805 19
## 17806 31
## 17807 7
## 17808 21
## 17809 9
## 17810 26
## 17811 12
## 17812 15
## 17813 20
## 17814 21
## 17815 19
## 17816 12
## 17817 15
## 17818 12
## 17819 20
## 17820 15
## 17821 21
## 17822 21
## 17823 21
## 17824 21
## 17825 21
## 17826 21
## 17827 21
## 17828 21
## 17829 21
## 17830 21
## 17831 21
## 17832 21
## 17833 21
## 17834 21
## 17835 21
## 17836 21
## 17837 21
## 17838 21
## 17839 21
## 17840 21
## 17841 21
## 17842 21
## 17843 21
## 17844 18
## 17845 20
## 17846 18
## 17847 19
## 17848 21
## 17849 19
## 17850 18
## 17851 16
## 17852 15
## 17853 18
## 17854 17
## 17855 18
## 17856 18
## 17857 18
## 17858 18
## 17859 19
## 17860 19
## 17861 19
## 17862 19
## 17863 23
## 17864 20
## 17865 20
## 17866 23
## 17867 19
## 17868 18
## 17869 24
## 17870 24
## 17871 24
## 17872 18
## 17873 24
## 17874 24
## 17875 18
## 17876 18
## 17877 24
## 17878 24
## 17879 24
## 17880 18
## 17881 21
## 17882 23
## 17883 18
## 17884 23
## 17885 21
## 17886 23
## 17887 10
## 17888 19
## 17889 23
## 17890 19
## 17891 19
## 17892 23
## 17893 23
## 17894 23
## 17895 22
## 17896 22
## 17897 22
## 17898 19
## 17899 24
## 17900 22
## 17901 19
## 17902 19
## 17903 19
## 17904 19
## 17905 19
## 17906 25
## 17907 19
## 17908 19
## 17909 19
## 17910 20
## 17911 21
## 17912 20
## 17913 26
## 17914 30
## 17915 7
## 17916 6
## 17917 30
## 17918 21
## 17919 26
## 17920 26
## 17921 3
## 17922 26
## 17923 18
## 17924 23
## 17925 13
## 17926 12
## 17927 28
## 17928 26
## 17929 26
## 17930 20
## 17931 26
## 17932 26
## 17933 27
## 17934 21
## 17935 20
## 17936 18
## 17937 27
## 17938 11
## 17939 26
## 17940 26
## 17941 26
## 17942 21
## 17943 27
## 17944 26
## 17945 21
## 17946 20
## 17947 4
## 17948 3
## 17949 6
## 17950 26
## 17951 18
## 17952 21
## 17953 24
## 17954 18
## 17955 26
## 17956 1
## 17957 6
## 17958 26
## 17959 27
## 17960 27
## 17961 26
## 17962 22
## 17963 22
## 17964 22
## 17965 26
## 17966 9
## 17967 22
## 17968 13
## 17969 2
## 17970 14
## 17971 22
## 17972 28
## 17973 3
## 17974 1
## 17975 22
## 17976 18
## 17977 28
## 17978 24
## 17979 27
## 17980 22
## 17981 22
## 17982 20
## 17983 20
## 17984 26
## 17985 23
## 17986 9
## 17987 21
## 17988 18
## 17989 23
## 17990 29
## 17991 4
## 17992 11
## 17993 12
## 17994 25
## 17995 30
## 17996 16
## 17997 28
## 17998 21
## 17999 3
## 18000 10
## 18001 23
## 18002 15
## 18003 22
## 18004 7
## 18005 13
## 18006 22
## 18007 4
## 18008 31
## 18009 29
## 18010 3
## 18011 26
## 18012 24
## 18013 28
## 18014 11
## 18015 31
## 18016 11
## 18017 1
## 18018 29
## 18019 27
## 18020 29
## 18021 28
## 18022 29
## 18023 2
## 18024 29
## 18025 26
## 18026 27
## 18027 25
## 18028 25
## 18029 29
## 18030 29
## 18031 30
## 18032 30
## 18033 30
## 18034 24
## 18035 24
## 18036 25
## 18037 30
## 18038 25
## 18039 24
## 18040 24
## 18041 30
## 18042 30
## 18043 28
## 18044 28
## 18045 31
## 18046 29
## 18047 18
## 18048 27
## 18049 25
## 18050 25
## 18051 25
## 18052 18
## 18053 31
## 18054 31
## 18055 29
## 18056 29
## 18057 31
## 18058 30
## 18059 31
## 18060 29
## 18061 31
## 18062 29
## 18063 31
## 18064 30
## 18065 29
## 18066 30
## 18067 31
## 18068 25
## 18069 25
## 18070 31
## 18071 14
## 18072 1
## 18073 14
## 18074 29
## 18075 25
## 18076 30
## 18077 1
## 18078 31
## 18079 1
## 18080 30
## 18081 1
## 18082 27
## 18083 27
## 18084 2
## 18085 30
## 18086 1
## 18087 1
## 18088 1
## 18089 3
## 18090 2
## 18091 2
## 18092 18
## 18093 2
## 18094 3
## 18095 3
## 18096 3
## 18097 5
## 18098 10
## 18099 4
## 18100 8
## 18101 3
## 18102 31
## 18103 4
## 18104 4
## 18105 4
## 18106 4
## 18107 11
## 18108 26
## 18109 3
## 18110 4
## 18111 31
## 18112 4
## 18113 2
## 18114 17
## 18115 3
## 18116 1
## 18117 3
## 18118 31
## 18119 5
## 18120 1
## 18121 5
## 18122 5
## 18123 3
## 18124 3
## 18125 3
## 18126 1
## 18127 6
## 18128 29
## 18129 6
## 18130 7
## 18131 2
## 18132 1
## 18133 1
## 18134 31
## 18135 6
## 18136 4
## 18137 2
## 18138 5
## 18139 2
## 18140 1
## 18141 7
## 18142 6
## 18143 1
## 18144 5
## 18145 6
## 18146 7
## 18147 19
## 18148 7
## 18149 3
## 18150 2
## 18151 1
## 18152 6
## 18153 1
## 18154 7
## 18155 2
## 18156 7
## 18157 7
## 18158 7
## 18159 7
## 18160 2
## 18161 2
## 18162 2
## 18163 5
## 18164 5
## 18165 5
## 18166 1
## 18167 8
## 18168 8
## 18169 2
## 18170 2
## 18171 9
## 18172 7
## 18173 20
## 18174 20
## 18175 20
## 18176 20
## 18177 10
## 18178 8
## 18179 10
## 18180 10
## 18181 10
## 18182 9
## 18183 10
## 18184 11
## 18185 11
## 18186 8
## 18187 11
## 18188 11
## 18189 2
## 18190 9
## 18191 6
## 18192 10
## 18193 10
## 18194 8
## 18195 12
## 18196 12
## 18197 11
## 18198 13
## 18199 13
## 18200 7
## 18201 7
## 18202 10
## 18203 7
## 18204 7
## 18205 12
## 18206 9
## 18207 10
## 18208 13
## 18209 7
## 18210 14
## 18211 10
## 18212 7
## 18213 7
## 18214 9
## 18215 10
## 18216 8
## 18217 8
## 18218 8
## 18219 6
## 18220 7
## 18221 7
## 18222 3
## 18223 8
## 18224 8
## 18225 8
## 18226 1
## 18227 2
## 18228 2
## 18229 2
## 18230 3
## 18231 7
## 18232 7
## 18233 7
## 18234 2
## 18235 13
## 18236 7
## 18237 2
## 18238 6
## 18239 2
## 18240 8
## 18241 7
## 18242 14
## 18243 6
## 18244 14
## 18245 13
## 18246 6
## 18247 8
## 18248 7
## 18249 6
## 18250 7
## 18251 14
## 18252 7
## 18253 7
## 18254 7
## 18255 10
## 18256 12
## 18257 12
## 18258 2
## 18259 7
## 18260 7
## 18261 7
## 18262 22
## 18263 8
## 18264 5
## 18265 14
## 18266 7
## 18267 6
## 18268 8
## 18269 5
## 18270 4
## 18271 3
## 18272 3
## 18273 15
## 18274 24
## 18275 19
## 18276 20
## 18277 4
## 18278 2
## 18279 6
## 18280 3
## 18281 3
## 18282 3
## 18283 3
## 18284 3
## 18285 7
## 18286 3
## 18287 15
## 18288 16
## 18289 3
## 18290 15
## 18291 15
## 18292 18
## 18293 26
## 18294 15
## 18295 16
## 18296 2
## 18297 26
## 18298 2
## 18299 2
## 18300 16
## 18301 16
## 18302 16
## 18303 26
## 18304 16
## 18305 16
## 18306 16
## 18307 27
## 18308 16
## 18309 27
## 18310 16
## 18311 15
## 18312 16
## 18313 15
## 18314 26
## 18315 16
## 18316 16
## 18317 2
## 18318 3
## 18319 16
## 18320 12
## 18321 11
## 18322 27
## 18323 16
## 18324 5
## 18325 7
## 18326 7
## 18327 7
## 18328 7
## 18329 7
## 18330 7
## 18331 7
## 18332 7
## 18333 7
## 18334 7
## 18335 7
## 18336 7
## 18337 7
## 18338 7
## 18339 7
## 18340 7
## 18341 7
## 18342 7
## 18343 7
## 18344 7
## 18345 7
## 18346 7
## 18347 7
## 18348 7
## 18349 7
## 18350 7
## 18351 7
## 18352 7
## 18353 7
## 18354 7
## 18355 7
## 18356 7
## 18357 7
## 18358 7
## 18359 7
## 18360 7
## 18361 7
## 18362 7
## 18363 7
## 18364 7
## 18365 7
## 18366 7
## 18367 19
## 18368 17
## 18369 17
## 18370 20
## 18371 16
## 18372 8
## 18373 30
## 18374 15
## 18375 17
## 18376 17
## 18377 17
## 18378 17
## 18379 15
## 18380 17
## 18381 17
## 18382 15
## 18383 3
## 18384 16
## 18385 21
## 18386 17
## 18387 16
## 18388 27
## 18389 18
## 18390 16
## 18391 17
## 18392 11
## 18393 14
## 18394 18
## 18395 17
## 18396 18
## 18397 18
## 18398 17
## 18399 18
## 18400 18
## 18401 18
## 18402 18
## 18403 18
## 18404 16
## 18405 17
## 18406 14
## 18407 18
## 18408 12
## 18409 3
## 18410 22
## 18411 9
## 18412 30
## 18413 20
## 18414 31
## 18415 16
## 18416 18
## 18417 17
## 18418 15
## 18419 11
## 18420 13
## 18421 24
## 18422 1
## 18423 17
## 18424 17
## 18425 9
## 18426 18
## 18427 18
## 18428 23
## 18429 16
## 18430 16
## 18431 16
## 18432 16
## 18433 16
## 18434 20
## 18435 19
## 18436 23
## 18437 29
## 18438 2
## 18439 16
## 18440 18
## 18441 18
## 18442 9
## 18443 13
## 18444 18
## 18445 19
## 18446 8
## 18447 19
## 18448 19
## 18449 19
## 18450 18
## 18451 25
## 18452 17
## 18453 18
## 18454 17
## 18455 16
## 18456 30
## 18457 2
## 18458 3
## 18459 18
## 18460 25
## 18461 18
## 18462 18
## 18463 19
## 18464 19
## 18465 20
## 18466 18
## 18467 18
## 18468 18
## 18469 16
## 18470 17
## 18471 17
## 18472 23
## 18473 4
## 18474 17
## 18475 23
## 18476 17
## 18477 20
## 18478 16
## 18479 17
## 18480 17
## 18481 20
## 18482 17
## 18483 23
## 18484 1
## 18485 17
## 18486 16
## 18487 17
## 18488 23
## 18489 19
## 18490 17
## 18491 16
## 18492 20
## 18493 20
## 18494 17
## 18495 21
## 18496 21
## 18497 16
## 18498 16
## 18499 21
## 18500 21
## 18501 21
## 18502 21
## 18503 19
## 18504 20
## 18505 21
## 18506 22
## 18507 20
## 18508 20
## 18509 21
## 18510 15
## 18511 20
## 18512 16
## 18513 22
## 18514 20
## 18515 20
## 18516 21
## 18517 21
## 18518 21
## 18519 20
## 18520 21
## 18521 20
## 18522 21
## 18523 26
## 18524 1
## 18525 2
## 18526 21
## 18527 21
## 18528 20
## 18529 20
## 18530 16
## 18531 19
## 18532 16
## 18533 19
## 18534 21
## 18535 23
## 18536 1
## 18537 3
## 18538 15
## 18539 20
## 18540 20
## 18541 20
## 18542 20
## 18543 20
## 18544 19
## 18545 20
## 18546 20
## 18547 20
## 18548 20
## 18549 20
## 18550 20
## 18551 20
## 18552 19
## 18553 19
## 18554 30
## 18555 30
## 18556 30
## 18557 19
## 18558 24
## 18559 18
## 18560 18
## 18561 18
## 18562 18
## 18563 18
## 18564 18
## 18565 18
## 18566 18
## 18567 17
## 18568 21
## 18569 16
## 18570 22
## 18571 23
## 18572 17
## 18573 5
## 18574 21
## 18575 23
## 18576 25
## 18577 17
## 18578 22
## 18579 23
## 18580 23
## 18581 22
## 18582 22
## 18583 22
## 18584 23
## 18585 18
## 18586 21
## 18587 24
## 18588 24
## 18589 25
## 18590 25
## 18591 25
## 18592 25
## 18593 25
## 18594 25
## 18595 27
## 18596 27
## 18597 27
## 18598 27
## 18599 27
## 18600 27
## 18601 1
## 18602 1
## 18603 1
## 18604 16
## 18605 23
## 18606 24
## 18607 24
## 18608 24
## 18609 24
## 18610 12
## 18611 23
## 18612 24
## 18613 24
## 18614 16
## 18615 3
## 18616 14
## 18617 8
## 18618 23
## 18619 23
## 18620 24
## 18621 24
## 18622 25
## 18623 24
## 18624 24
## 18625 3
## 18626 22
## 18627 11
## 18628 23
## 18629 1
## 18630 15
## 18631 24
## 18632 24
## 18633 24
## 18634 23
## 18635 22
## 18636 24
## 18637 24
## 18638 23
## 18639 11
## 18640 21
## 18641 5
## 18642 24
## 18643 16
## 18644 20
## 18645 24
## 18646 24
## 18647 23
## 18648 25
## 18649 25
## 18650 30
## 18651 11
## 18652 22
## 18653 17
## 18654 20
## 18655 25
## 18656 26
## 18657 27
## 18658 1
## 18659 25
## 18660 25
## 18661 5
## 18662 7
## 18663 16
## 18664 17
## 18665 25
## 18666 1
## 18667 25
## 18668 23
## 18669 25
## 18670 25
## 18671 25
## 18672 3
## 18673 25
## 18674 25
## 18675 25
## 18676 25
## 18677 22
## 18678 28
## 18679 24
## 18680 24
## 18681 21
## 18682 24
## 18683 27
## 18684 27
## 18685 27
## 18686 27
## 18687 27
## 18688 24
## 18689 26
## 18690 10
## 18691 27
## 18692 24
## 18693 16
## 18694 24
## 18695 14
## 18696 26
## 18697 25
## 18698 25
## 18699 16
## 18700 25
## 18701 26
## 18702 26
## 18703 7
## 18704 11
## 18705 10
## 18706 11
## 18707 25
## 18708 24
## 18709 24
## 18710 24
## 18711 19
## 18712 22
## 18713 5
## 18714 5
## 18715 7
## 18716 27
## 18717 28
## 18718 27
## 18719 25
## 18720 16
## 18721 27
## 18722 23
## 18723 27
## 18724 27
## 18725 27
## 18726 27
## 18727 30
## 18728 27
## 18729 27
## 18730 23
## 18731 27
## 18732 27
## 18733 27
## 18734 27
## 18735 21
## 18736 27
## 18737 27
## 18738 24
## 18739 23
## 18740 27
## 18741 27
## 18742 27
## 18743 3
## 18744 28
## 18745 26
## 18746 28
## 18747 25
## 18748 10
## 18749 18
## 18750 28
## 18751 28
## 18752 27
## 18753 27
## 18754 28
## 18755 27
## 18756 28
## 18757 28
## 18758 18
## 18759 27
## 18760 30
## 18761 22
## 18762 27
## 18763 30
## 18764 27
## 18765 27
## 18766 27
## 18767 28
## 18768 27
## 18769 28
## 18770 28
## 18771 28
## 18772 21
## 18773 27
## 18774 27
## 18775 3
## 18776 27
## 18777 27
## 18778 27
## 18779 28
## 18780 28
## 18781 19
## 18782 26
## 18783 27
## 18784 27
## 18785 27
## 18786 27
## 18787 28
## 18788 28
## 18789 8
## 18790 28
## 18791 18
## 18792 30
## 18793 12
## 18794 18
## 18795 28
## 18796 27
## 18797 22
## 18798 4
## 18799 3
## 18800 10
## 18801 25
## 18802 27
## 18803 28
## 18804 28
## 18805 28
## 18806 28
## 18807 28
## 18808 28
## 18809 28
## 18810 27
## 18811 28
## 18812 26
## 18813 27
## 18814 16
## 18815 16
## 18816 28
## 18817 25
## 18818 23
## 18819 27
## 18820 5
## 18821 5
## 18822 5
## 18823 5
## 18824 5
## 18825 5
## 18826 5
## 18827 5
## 18828 27
## 18829 27
## 18830 28
## 18831 28
## 18832 4
## 18833 28
## 18834 18
## 18835 3
## 18836 3
## 18837 30
## 18838 27
## 18839 30
## 18840 30
## 18841 1
## 18842 27
## 18843 30
## 18844 6
## 18845 26
## 18846 28
## 18847 30
## 18848 24
## 18849 30
## 18850 24
## 18851 24
## 18852 29
## 18853 1
## 18854 23
## 18855 17
## 18856 30
## 18857 13
## 18858 20
## 18859 1
## 18860 29
## 18861 1
## 18862 1
## 18863 29
## 18864 1
## 18865 1
## 18866 30
## 18867 30
## 18868 1
## 18869 1
## 18870 1
## 18871 1
## 18872 1
## 18873 29
## 18874 1
## 18875 1
## 18876 8
## 18877 5
## 18878 5
## 18879 5
## 18880 5
## 18881 5
## 18882 5
## 18883 5
## 18884 5
## 18885 2
## 18886 2
## 18887 26
## 18888 2
## 18889 22
## 18890 2
## 18891 1
## 18892 26
## 18893 26
## 18894 2
## 18895 18
## 18896 2
## 18897 2
## 18898 1
## 18899 2
## 18900 7
## 18901 13
## 18902 2
## 18903 2
## 18904 2
## 18905 30
## 18906 1
## 18907 2
## 18908 30
## 18909 2
## 18910 1
## 18911 19
## 18912 15
## 18913 2
## 18914 8
## 18915 1
## 18916 2
## 18917 20
## 18918 19
## 18919 6
## 18920 3
## 18921 2
## 18922 30
## 18923 30
## 18924 3
## 18925 30
## 18926 2
## 18927 30
## 18928 1
## 18929 2
## 18930 2
## 18931 30
## 18932 2
## 18933 2
## 18934 30
## 18935 30
## 18936 30
## 18937 30
## 18938 30
## 18939 30
## 18940 30
## 18941 30
## 18942 30
## 18943 2
## 18944 3
## 18945 3
## 18946 30
## 18947 3
## 18948 3
## 18949 3
## 18950 3
## 18951 3
## 18952 30
## 18953 30
## 18954 2
## 18955 2
## 18956 30
## 18957 3
## 18958 3
## 18959 2
## 18960 1
## 18961 3
## 18962 3
## 18963 3
## 18964 1
## 18965 7
## 18966 6
## 18967 21
## 18968 16
## 18969 10
## 18970 28
## 18971 3
## 18972 4
## 18973 3
## 18974 14
## 18975 2
## 18976 3
## 18977 3
## 18978 9
## 18979 11
## 18980 1
## 18981 28
## 18982 4
## 18983 4
## 18984 4
## 18985 4
## 18986 28
## 18987 7
## 18988 5
## 18989 5
## 18990 5
## 18991 4
## 18992 22
## 18993 4
## 18994 3
## 18995 2
## 18996 12
## 18997 14
## 18998 4
## 18999 12
## 19000 9
## 19001 3
## 19002 5
## 19003 3
## 19004 3
## 19005 5
## 19006 5
## 19007 5
## 19008 5
## 19009 5
## 19010 5
## 19011 5
## 19012 5
## 19013 22
## 19014 4
## 19015 4
## 19016 4
## 19017 4
## 19018 6
## 19019 6
## 19020 5
## 19021 5
## 19022 5
## 19023 5
## 19024 6
## 19025 5
## 19026 5
## 19027 6
## 19028 19
## 19029 6
## 19030 6
## 19031 18
## 19032 5
## 19033 5
## 19034 4
## 19035 29
## 19036 3
## 19037 5
## 19038 2
## 19039 2
## 19040 12
## 19041 29
## 19042 5
## 19043 5
## 19044 27
## 19045 8
## 19046 8
## 19047 1
## 19048 12
## 19049 14
## 19050 26
## 19051 2
## 19052 10
## 19053 22
## 19054 5
## 19055 5
## 19056 4
## 19057 7
## 19058 5
## 19059 5
## 19060 5
## 19061 5
## 19062 5
## 19063 5
## 19064 5
## 19065 5
## 19066 4
## 19067 5
## 19068 4
## 19069 5
## 19070 5
## 19071 5
## 19072 5
## 19073 5
## 19074 5
## 19075 5
## 19076 5
## 19077 5
## 19078 5
## 19079 5
## 19080 5
## 19081 5
## 19082 5
## 19083 5
## 19084 5
## 19085 5
## 19086 5
## 19087 5
## 19088 5
## 19089 5
## 19090 6
## 19091 6
## 19092 5
## 19093 5
## 19094 5
## 19095 7
## 19096 5
## 19097 5
## 19098 5
## 19099 5
## 19100 7
## 19101 7
## 19102 5
## 19103 5
## 19104 5
## 19105 7
## 19106 7
## 19107 6
## 19108 5
## 19109 6
## 19110 7
## 19111 5
## 19112 7
## 19113 5
## 19114 4
## 19115 6
## 19116 5
## 19117 6
## 19118 5
## 19119 5
## 19120 5
## 19121 7
## 19122 8
## 19123 5
## 19124 5
## 19125 7
## 19126 5
## 19127 5
## 19128 5
## 19129 5
## 19130 6
## 19131 4
## 19132 7
## 19133 19
## 19134 20
## 19135 18
## 19136 8
## 19137 8
## 19138 8
## 19139 3
## 19140 19
## 19141 6
## 19142 5
## 19143 7
## 19144 8
## 19145 8
## 19146 8
## 19147 6
## 19148 7
## 19149 6
## 19150 30
## 19151 3
## 19152 9
## 19153 14
## 19154 9
## 19155 22
## 19156 9
## 19157 9
## 19158 9
## 19159 9
## 19160 9
## 19161 14
## 19162 9
## 19163 27
## 19164 19
## 19165 6
## 19166 8
## 19167 9
## 19168 9
## 19169 7
## 19170 6
## 19171 9
## 19172 9
## 19173 9
## 19174 9
## 19175 9
## 19176 9
## 19177 18
## 19178 30
## 19179 9
## 19180 9
## 19181 2
## 19182 2
## 19183 1
## 19184 19
## 19185 26
## 19186 26
## 19187 26
## 19188 26
## 19189 26
## 19190 26
## 19191 26
## 19192 26
## 19193 26
## 19194 26
## 19195 26
## 19196 26
## 19197 26
## 19198 26
## 19199 26
## 19200 26
## 19201 26
## 19202 26
## 19203 26
## 19204 26
## 19205 26
## 19206 26
## 19207 26
## 19208 26
## 19209 26
## 19210 26
## 19211 26
## 19212 26
## 19213 26
## 19214 26
## 19215 26
## 19216 26
## 19217 26
## 19218 26
## 19219 26
## 19220 26
## 19221 26
## 19222 26
## 19223 26
## 19224 26
## 19225 26
## 19226 26
## 19227 26
## 19228 26
## 19229 26
## 19230 26
## 19231 26
## 19232 26
## 19233 26
## 19234 26
## 19235 26
## 19236 26
## 19237 26
## 19238 26
## 19239 26
## 19240 10
## 19241 11
## 19242 11
## 19243 8
## 19244 11
## 19245 10
## 19246 14
## 19247 6
## 19248 10
## 19249 14
## 19250 9
## 19251 10
## 19252 10
## 19253 11
## 19254 11
## 19255 8
## 19256 17
## 19257 12
## 19258 12
## 19259 9
## 19260 10
## 19261 23
## 19262 23
## 19263 29
## 19264 22
## 19265 25
## 19266 24
## 19267 11
## 19268 10
## 19269 9
## 19270 8
## 19271 6
## 19272 11
## 19273 7
## 19274 5
## 19275 11
## 19276 6
## 19277 9
## 19278 6
## 19279 6
## 19280 9
## 19281 9
## 19282 5
## 19283 1
## 19284 21
## 19285 5
## 19286 4
## 19287 23
## 19288 12
## 19289 12
## 19290 12
## 19291 11
## 19292 12
## 19293 9
## 19294 12
## 19295 12
## 19296 12
## 19297 12
## 19298 12
## 19299 10
## 19300 11
## 19301 10
## 19302 11
## 19303 10
## 19304 12
## 19305 12
## 19306 12
## 19307 12
## 19308 23
## 19309 12
## 19310 12
## 19311 11
## 19312 12
## 19313 12
## 19314 11
## 19315 18
## 19316 12
## 19317 12
## 19318 12
## 19319 12
## 19320 12
## 19321 12
## 19322 14
## 19323 10
## 19324 12
## 19325 14
## 19326 22
## 19327 9
## 19328 13
## 19329 13
## 19330 11
## 19331 13
## 19332 27
## 19333 11
## 19334 23
## 19335 23
## 19336 7
## 19337 15
## 19338 12
## 19339 14
## 19340 14
## 19341 14
## 19342 22
## 19343 14
## 19344 17
## 19345 13
## 19346 14
## 19347 27
## 19348 15
## 19349 17
## 19350 1
## 19351 16
## 19352 12
## 19353 15
## 19354 14
## 19355 13
## 19356 30
## 19357 15
## 19358 13
## 19359 28
## 19360 30
## 19361 20
## 19362 14
## 19363 15
## 19364 16
## 19365 15
## 19366 26
## 19367 26
## 19368 26
## 19369 26
## 19370 14
## 19371 2
## 19372 14
## 19373 14
## 19374 14
## 19375 27
## 19376 18
## 19377 15
## 19378 2
## 19379 16
## 19380 3
## 19381 13
## 19382 10
## 19383 28
## 19384 16
## 19385 15
## 19386 16
## 19387 16
## 19388 16
## 19389 7
## 19390 16
## 19391 16
## 19392 16
## 19393 16
## 19394 22
## 19395 29
## 19396 29
## 19397 16
## 19398 13
## 19399 13
## 19400 13
## 19401 17
## 19402 16
## 19403 17
## 19404 18
## 19405 17
## 19406 14
## 19407 4
## 19408 14
## 19409 4
## 19410 17
## 19411 17
## 19412 11
## 19413 17
## 19414 14
## 19415 14
## 19416 15
## 19417 16
## 19418 18
## 19419 12
## 19420 14
## 19421 18
## 19422 17
## 19423 15
## 19424 18
## 19425 18
## 19426 19
## 19427 19
## 19428 16
## 19429 18
## 19430 19
## 19431 17
## 19432 19
## 19433 19
## 19434 19
## 19435 17
## 19436 19
## 19437 13
## 19438 18
## 19439 19
## 19440 17
## 19441 19
## 19442 17
## 19443 19
## 19444 19
## 19445 19
## 19446 19
## 19447 19
## 19448 19
## 19449 18
## 19450 19
## 19451 19
## 19452 19
## 19453 19
## 19454 14
## 19455 13
## 19456 14
## 19457 18
## 19458 17
## 19459 20
## 19460 19
## 19461 14
## 19462 21
## 19463 17
## 19464 14
## 19465 21
## 19466 20
## 19467 20
## 19468 20
## 19469 21
## 19470 3
## 19471 17
## 19472 20
## 19473 20
## 19474 15
## 19475 22
## 19476 20
## 19477 20
## 19478 20
## 19479 20
## 19480 21
## 19481 21
## 19482 8
## 19483 26
## 19484 21
## 19485 19
## 19486 17
## 19487 16
## 19488 21
## 19489 16
## 19490 19
## 19491 22
## 19492 22
## 19493 27
## 19494 5
## 19495 22
## 19496 22
## 19497 22
## 19498 22
## 19499 22
## 19500 22
## 19501 22
## 19502 21
## 19503 19
## 19504 23
## 19505 24
## 19506 22
## 19507 21
## 19508 22
## 19509 24
## 19510 22
## 19511 24
## 19512 24
## 19513 23
## 19514 24
## 19515 24
## 19516 24
## 19517 24
## 19518 24
## 19519 22
## 19520 25
## 19521 25
## 19522 23
## 19523 20
## 19524 22
## 19525 24
## 19526 25
## 19527 19
## 19528 24
## 19529 19
## 19530 25
## 19531 19
## 19532 19
## 19533 24
## 19534 24
## 19535 12
## 19536 21
## 19537 21
## 19538 26
## 19539 24
## 19540 23
## 19541 26
## 19542 26
## 19543 24
## 19544 23
## 19545 23
## 19546 20
## 19547 20
## 19548 26
## 19549 26
## 19550 26
## 19551 25
## 19552 26
## 19553 23
## 19554 23
## 19555 24
## 19556 26
## 19557 26
## 19558 24
## 19559 14
## 19560 17
## 19561 8
## 19562 26
## 19563 25
## 19564 23
## 19565 26
## 19566 25
## 19567 24
## 19568 24
## 19569 23
## 19570 20
## 19571 23
## 19572 25
## 19573 26
## 19574 24
## 19575 16
## 19576 21
## 19577 21
## 19578 24
## 19579 26
## 19580 28
## 19581 26
## 19582 23
## 19583 26
## 19584 25
## 19585 27
## 19586 26
## 19587 27
## 19588 25
## 19589 25
## 19590 27
## 19591 27
## 19592 27
## 19593 25
## 19594 28
## 19595 26
## 19596 26
## 19597 27
## 19598 21
## 19599 23
## 19600 27
## 19601 21
## 19602 27
## 19603 27
## 19604 27
## 19605 28
## 19606 28
## 19607 28
## 19608 22
## 19609 22
## 19610 26
## 19611 23
## 19612 22
## 19613 22
## 19614 22
## 19615 22
## 19616 22
## 19617 22
## 19618 23
## 19619 22
## 19620 22
## 19621 27
## 19622 27
## 19623 28
## 19624 22
## 19625 27
## 19626 27
## 19627 25
## 19628 26
## 19629 28
## 19630 28
## 19631 27
## 19632 28
## 19633 28
## 19634 28
## 19635 28
## 19636 27
## 19637 28
## 19638 28
## 19639 16
## 19640 27
## 19641 27
## 19642 15
## 19643 28
## 19644 26
## 19645 23
## 19646 28
## 19647 28
## 19648 28
## 19649 28
## 19650 30
## 19651 29
## 19652 23
## 19653 24
## 19654 27
## 19655 29
## 19656 25
## 19657 26
## 19658 27
## 19659 26
## 19660 23
## 19661 26
## 19662 28
## 19663 20
## 19664 29
## 19665 29
## 19666 28
## 19667 23
## 19668 27
## 19669 28
## 19670 29
## 19671 29
## 19672 25
## 19673 26
## 19674 27
## 19675 23
## 19676 28
## 19677 30
## 19678 30
## 19679 30
## 19680 28
## 19681 27
## 19682 27
## 19683 27
## 19684 29
## 19685 31
## 19686 7
## 19687 29
## 19688 27
## 19689 31
## 19690 29
## 19691 29
## 19692 31
## 19693 31
## 19694 31
## 19695 30
## 19696 28
## 19697 29
## 19698 29
## 19699 29
## 19700 31
## 19701 30
## 19702 20
## 19703 30
## 19704 30
## 19705 30
## 19706 30
## 19707 30
## 19708 30
## 19709 30
## 19710 30
## 19711 29
## 19712 30
## 19713 26
## 19714 21
## 19715 30
## 19716 30
## 19717 29
## 19718 29
## 19719 1
## 19720 31
## 19721 30
## 19722 30
## 19723 29
## 19724 30
## 19725 30
## 19726 30
## 19727 30
## 19728 30
## 19729 30
## 19730 30
## 19731 30
## 19732 30
## 19733 30
## 19734 30
## 19735 30
## 19736 12
## 19737 30
## 19738 30
## 19739 30
## 19740 30
## 19741 30
## 19742 30
## 19743 30
## 19744 30
## 19745 30
## 19746 30
## 19747 30
## 19748 30
## 19749 3
## 19750 30
## 19751 30
## 19752 30
## 19753 30
## 19754 30
## 19755 30
## 19756 30
## 19757 30
## 19758 30
## 19759 30
## 19760 23
## 19761 23
## 19762 2
## 19763 31
## 19764 1
## 19765 3
## 19766 2
## 19767 14
## 19768 26
## 19769 2
## 19770 2
## 19771 1
## 19772 31
## 19773 27
## 19774 31
## 19775 31
## 19776 31
## 19777 26
## 19778 2
## 19779 2
## 19780 27
## 19781 2
## 19782 31
## 19783 2
## 19784 30
## 19785 2
## 19786 2
## 19787 31
## 19788 31
## 19789 31
## 19790 2
## 19791 2
## 19792 2
## 19793 30
## 19794 2
## 19795 2
## 19796 2
## 19797 2
## 19798 27
## 19799 27
## 19800 2
## 19801 31
## 19802 27
## 19803 23
## 19804 4
## 19805 2
## 19806 29
## 19807 28
## 19808 2
## 19809 3
## 19810 3
## 19811 30
## 19812 4
## 19813 31
## 19814 3
## 19815 3
## 19816 2
## 19817 3
## 19818 2
## 19819 23
## 19820 3
## 19821 3
## 19822 3
## 19823 2
## 19824 4
## 19825 2
## 19826 5
## 19827 2
## 19828 5
## 19829 2
## 19830 2
## 19831 2
## 19832 1
## 19833 4
## 19834 2
## 19835 4
## 19836 2
## 19837 2
## 19838 4
## 19839 2
## 19840 3
## 19841 3
## 19842 2
## 19843 2
## 19844 3
## 19845 4
## 19846 5
## 19847 5
## 19848 5
## 19849 5
## 19850 3
## 19851 3
## 19852 5
## 19853 3
## 19854 5
## 19855 17
## 19856 31
## 19857 4
## 19858 5
## 19859 6
## 19860 3
## 19861 3
## 19862 2
## 19863 4
## 19864 2
## 19865 3
## 19866 6
## 19867 5
## 19868 6
## 19869 6
## 19870 5
## 19871 29
## 19872 6
## 19873 5
## 19874 3
## 19875 6
## 19876 6
## 19877 6
## 19878 7
## 19879 4
## 19880 4
## 19881 11
## 19882 4
## 19883 11
## 19884 7
## 19885 4
## 19886 4
## 19887 3
## 19888 4
## 19889 4
## 19890 4
## 19891 4
## 19892 4
## 19893 4
## 19894 4
## 19895 8
## 19896 2
## 19897 7
## 19898 4
## 19899 7
## 19900 7
## 19901 13
## 19902 5
## 19903 29
## 19904 11
## 19905 4
## 19906 20
## 19907 3
## 19908 6
## 19909 7
## 19910 7
## 19911 4
## 19912 3
## 19913 3
## 19914 4
## 19915 4
## 19916 1
## 19917 4
## 19918 7
## 19919 8
## 19920 7
## 19921 7
## 19922 7
## 19923 8
## 19924 5
## 19925 9
## 19926 3
## 19927 6
## 19928 3
## 19929 5
## 19930 8
## 19931 8
## 19932 8
## 19933 8
## 19934 9
## 19935 9
## 19936 5
## 19937 9
## 19938 9
## 19939 9
## 19940 7
## 19941 3
## 19942 8
## 19943 9
## 19944 9
## 19945 9
## 19946 9
## 19947 9
## 19948 10
## 19949 11
## 19950 10
## 19951 11
## 19952 8
## 19953 10
## 19954 9
## 19955 9
## 19956 10
## 19957 10
## 19958 4
## 19959 10
## 19960 7
## 19961 4
## 19962 4
## 19963 7
## 19964 8
## 19965 9
## 19966 8
## 19967 8
## 19968 20
## 19969 10
## 19970 3
## 19971 7
## 19972 9
## 19973 9
## 19974 11
## 19975 13
## 19976 11
## 19977 7
## 19978 11
## 19979 11
## 19980 11
## 19981 12
## 19982 29
## 19983 11
## 19984 12
## 19985 11
## 19986 12
## 19987 11
## 19988 11
## 19989 10
## 19990 10
## 19991 10
## 19992 12
## 19993 11
## 19994 11
## 19995 11
## 19996 12
## 19997 9
## 19998 10
## 19999 11
## 20000 9
## 20001 9
## 20002 8
## 20003 12
## 20004 12
## 20005 10
## 20006 2
## 20007 12
## 20008 12
## 20009 12
## 20010 12
## 20011 12
## 20012 12
## 20013 12
## 20014 7
## 20015 12
## 20016 12
## 20017 12
## 20018 12
## 20019 12
## 20020 2
## 20021 11
## 20022 12
## 20023 10
## 20024 9
## 20025 13
## 20026 13
## 20027 13
## 20028 13
## 20029 17
## 20030 11
## 20031 13
## 20032 13
## 20033 27
## 20034 10
## 20035 12
## 20036 13
## 20037 27
## 20038 4
## 20039 12
## 20040 13
## 20041 23
## 20042 11
## 20043 14
## 20044 14
## 20045 18
## 20046 14
## 20047 14
## 20048 14
## 20049 14
## 20050 16
## 20051 14
## 20052 14
## 20053 14
## 20054 14
## 20055 11
## 20056 12
## 20057 9
## 20058 11
## 20059 13
## 20060 13
## 20061 12
## 20062 14
## 20063 14
## 20064 9
## 20065 15
## 20066 15
## 20067 14
## 20068 12
## 20069 15
## 20070 13
## 20071 15
## 20072 15
## 20073 2
## 20074 9
## 20075 9
## 20076 15
## 20077 15
## 20078 8
## 20079 10
## 20080 15
## 20081 15
## 20082 2
## 20083 15
## 20084 15
## 20085 12
## 20086 19
## 20087 26
## 20088 1
## 20089 10
## 20090 15
## 20091 8
## 20092 23
## 20093 28
## 20094 31
## 20095 7
## 20096 11
## 20097 5
## 20098 13
## 20099 19
## 20100 20
## 20101 29
## 20102 9
## 20103 16
## 20104 2
## 20105 11
## 20106 16
## 20107 11
## 20108 13
## 20109 14
## 20110 15
## 20111 4
## 20112 5
## 20113 15
## 20114 14
## 20115 15
## 20116 14
## 20117 16
## 20118 10
## 20119 9
## 20120 16
## 20121 16
## 20122 12
## 20123 15
## 20124 16
## 20125 15
## 20126 16
## 20127 14
## 20128 15
## 20129 15
## 20130 16
## 20131 16
## 20132 15
## 20133 10
## 20134 15
## 20135 14
## 20136 15
## 20137 15
## 20138 16
## 20139 16
## 20140 16
## 20141 16
## 20142 15
## 20143 15
## 20144 15
## 20145 15
## 20146 16
## 20147 13
## 20148 16
## 20149 15
## 20150 16
## 20151 16
## 20152 15
## 20153 16
## 20154 8
## 20155 17
## 20156 15
## 20157 17
## 20158 15
## 20159 13
## 20160 18
## 20161 17
## 20162 16
## 20163 16
## 20164 17
## 20165 17
## 20166 12
## 20167 17
## 20168 16
## 20169 14
## 20170 18
## 20171 18
## 20172 18
## 20173 12
## 20174 12
## 20175 18
## 20176 1
## 20177 28
## 20178 15
## 20179 23
## 20180 8
## 20181 18
## 20182 23
## 20183 18
## 20184 17
## 20185 18
## 20186 16
## 20187 21
## 20188 23
## 20189 5
## 20190 18
## 20191 18
## 20192 14
## 20193 19
## 20194 18
## 20195 16
## 20196 18
## 20197 19
## 20198 11
## 20199 10
## 20200 10
## 20201 10
## 20202 19
## 20203 19
## 20204 19
## 20205 19
## 20206 19
## 20207 19
## 20208 13
## 20209 16
## 20210 19
## 20211 18
## 20212 18
## 20213 19
## 20214 13
## 20215 19
## 20216 20
## 20217 19
## 20218 18
## 20219 16
## 20220 12
## 20221 31
## 20222 16
## 20223 11
## 20224 19
## 20225 14
## 20226 14
## 20227 20
## 20228 20
## 20229 18
## 20230 20
## 20231 20
## 20232 20
## 20233 19
## 20234 20
## 20235 19
## 20236 20
## 20237 19
## 20238 19
## 20239 19
## 20240 18
## 20241 20
## 20242 20
## 20243 20
## 20244 20
## 20245 24
## 20246 3
## 20247 12
## 20248 16
## 20249 19
## 20250 21
## 20251 15
## 20252 14
## 20253 21
## 20254 18
## 20255 25
## 20256 18
## 20257 14
## 20258 25
## 20259 21
## 20260 21
## 20261 19
## 20262 19
## 20263 21
## 20264 25
## 20265 12
## 20266 8
## 20267 21
## 20268 25
## 20269 12
## 20270 21
## 20271 20
## 20272 17
## 20273 21
## 20274 21
## 20275 18
## 20276 20
## 20277 22
## 20278 26
## 20279 22
## 20280 19
## 20281 22
## 20282 17
## 20283 16
## 20284 16
## 20285 22
## 20286 22
## 20287 13
## 20288 22
## 20289 22
## 20290 22
## 20291 22
## 20292 21
## 20293 20
## 20294 23
## 20295 23
## 20296 23
## 20297 23
## 20298 23
## 20299 22
## 20300 20
## 20301 21
## 20302 23
## 20303 23
## 20304 22
## 20305 23
## 20306 23
## 20307 22
## 20308 22
## 20309 23
## 20310 23
## 20311 23
## 20312 23
## 20313 23
## 20314 16
## 20315 22
## 20316 22
## 20317 23
## 20318 23
## 20319 22
## 20320 23
## 20321 23
## 20322 7
## 20323 10
## 20324 22
## 20325 23
## 20326 23
## 20327 23
## 20328 22
## 20329 23
## 20330 23
## 20331 23
## 20332 16
## 20333 21
## 20334 23
## 20335 23
## 20336 23
## 20337 24
## 20338 25
## 20339 21
## 20340 21
## 20341 21
## 20342 22
## 20343 23
## 20344 20
## 20345 25
## 20346 21
## 20347 23
## 20348 21
## 20349 23
## 20350 25
## 20351 17
## 20352 23
## 20353 15
## 20354 25
## 20355 25
## 20356 24
## 20357 12
## 20358 14
## 20359 29
## 20360 19
## 20361 24
## 20362 26
## 20363 26
## 20364 24
## 20365 21
## 20366 25
## 20367 25
## 20368 24
## 20369 25
## 20370 26
## 20371 26
## 20372 31
## 20373 26
## 20374 26
## 20375 26
## 20376 26
## 20377 25
## 20378 26
## 20379 7
## 20380 25
## 20381 26
## 20382 13
## 20383 26
## 20384 26
## 20385 28
## 20386 26
## 20387 26
## 20388 20
## 20389 26
## 20390 26
## 20391 26
## 20392 26
## 20393 26
## 20394 26
## 20395 26
## 20396 22
## 20397 22
## 20398 18
## 20399 27
## 20400 25
## 20401 26
## 20402 27
## 20403 6
## 20404 8
## 20405 6
## 20406 27
## 20407 21
## 20408 27
## 20409 27
## 20410 27
## 20411 27
## 20412 24
## 20413 28
## 20414 28
## 20415 28
## 20416 28
## 20417 10
## 20418 25
## 20419 26
## 20420 15
## 20421 19
## 20422 6
## 20423 20
## 20424 12
## 20425 19
## 20426 27
## 20427 22
## 20428 6
## 20429 24
## 20430 7
## 20431 6
## 20432 12
## 20433 27
## 20434 7
## 20435 27
## 20436 3
## 20437 2
## 20438 3
## 20439 15
## 20440 27
## 20441 27
## 20442 28
## 20443 28
## 20444 28
## 20445 30
## 20446 27
## 20447 27
## 20448 25
## 20449 28
## 20450 25
## 20451 28
## 20452 13
## 20453 23
## 20454 24
## 20455 27
## 20456 28
## 20457 29
## 20458 29
## 20459 27
## 20460 26
## 20461 19
## 20462 29
## 20463 2
## 20464 23
## 20465 23
## 20466 29
## 20467 29
## 20468 18
## 20469 25
## 20470 17
## 20471 28
## 20472 27
## 20473 29
## 20474 29
## 20475 28
## 20476 29
## 20477 28
## 20478 29
## 20479 29
## 20480 29
## 20481 23
## 20482 23
## 20483 24
## 20484 29
## 20485 28
## 20486 28
## 20487 28
## 20488 28
## 20489 28
## 20490 28
## 20491 28
## 20492 28
## 20493 30
## 20494 28
## 20495 30
## 20496 30
## 20497 30
## 20498 30
## 20499 30
## 20500 30
## 20501 29
## 20502 30
## 20503 29
## 20504 29
## 20505 3
## 20506 25
## 20507 3
## 20508 30
## 20509 30
## 20510 15
## 20511 30
## 20512 29
## 20513 29
## 20514 29
## 20515 29
## 20516 30
## 20517 29
## 20518 30
## 20519 29
## 20520 29
## 20521 29
## 20522 1
## 20523 31
## 20524 1
## 20525 29
## 20526 29
## 20527 31
## 20528 1
## 20529 31
## 20530 30
## 20531 31
## 20532 26
## 20533 19
## 20534 28
## 20535 28
## 20536 2
## 20537 28
## 20538 28
## 20539 28
## 20540 1
## 20541 1
## 20542 31
## 20543 30
## 20544 31
## 20545 1
## 20546 2
## 20547 2
## 20548 17
## 20549 5
## 20550 2
## 20551 3
## 20552 15
## 20553 1
## 20554 1
## 20555 14
## 20556 11
## 20557 2
## 20558 2
## 20559 8
## 20560 28
## 20561 30
## 20562 30
## 20563 1
## 20564 2
## 20565 2
## 20566 2
## 20567 2
## 20568 30
## 20569 2
## 20570 17
## 20571 2
## 20572 16
## 20573 30
## 20574 13
## 20575 1
## 20576 3
## 20577 4
## 20578 3
## 20579 4
## 20580 18
## 20581 29
## 20582 3
## 20583 3
## 20584 2
## 20585 6
## 20586 31
## 20587 27
## 20588 2
## 20589 3
## 20590 3
## 20591 9
## 20592 15
## 20593 22
## 20594 28
## 20595 2
## 20596 2
## 20597 2
## 20598 3
## 20599 3
## 20600 4
## 20601 25
## 20602 26
## 20603 26
## 20604 4
## 20605 5
## 20606 4
## 20607 2
## 20608 7
## 20609 4
## 20610 3
## 20611 4
## 20612 1
## 20613 6
## 20614 1
## 20615 4
## 20616 4
## 20617 4
## 20618 4
## 20619 1
## 20620 2
## 20621 29
## 20622 4
## 20623 4
## 20624 4
## 20625 4
## 20626 2
## 20627 2
## 20628 3
## 20629 4
## 20630 4
## 20631 2
## 20632 1
## 20633 23
## 20634 27
## 20635 4
## 20636 5
## 20637 5
## 20638 31
## 20639 2
## 20640 5
## 20641 5
## 20642 5
## 20643 10
## 20644 5
## 20645 5
## 20646 5
## 20647 4
## 20648 5
## 20649 5
## 20650 31
## 20651 5
## 20652 2
## 20653 4
## 20654 5
## 20655 4
## 20656 5
## 20657 5
## 20658 5
## 20659 6
## 20660 6
## 20661 6
## 20662 6
## 20663 6
## 20664 6
## 20665 5
## 20666 6
## 20667 5
## 20668 4
## 20669 4
## 20670 6
## 20671 6
## 20672 6
## 20673 6
## 20674 6
## 20675 5
## 20676 5
## 20677 6
## 20678 5
## 20679 1
## 20680 5
## 20681 5
## 20682 6
## 20683 6
## 20684 5
## 20685 6
## 20686 6
## 20687 6
## 20688 4
## 20689 25
## 20690 5
## 20691 5
## 20692 10
## 20693 5
## 20694 5
## 20695 6
## 20696 5
## 20697 6
## 20698 5
## 20699 4
## 20700 25
## 20701 6
## 20702 4
## 20703 7
## 20704 3
## 20705 4
## 20706 5
## 20707 4
## 20708 25
## 20709 5
## 20710 6
## 20711 4
## 20712 6
## 20713 5
## 20714 7
## 20715 6
## 20716 6
## 20717 6
## 20718 5
## 20719 7
## 20720 6
## 20721 6
## 20722 6
## 20723 7
## 20724 4
## 20725 4
## 20726 25
## 20727 2
## 20728 8
## 20729 6
## 20730 3
## 20731 6
## 20732 6
## 20733 4
## 20734 8
## 20735 6
## 20736 8
## 20737 6
## 20738 6
## 20739 6
## 20740 6
## 20741 6
## 20742 6
## 20743 8
## 20744 6
## 20745 6
## 20746 28
## 20747 8
## 20748 6
## 20749 5
## 20750 6
## 20751 6
## 20752 6
## 20753 6
## 20754 4
## 20755 5
## 20756 5
## 20757 8
## 20758 6
## 20759 6
## 20760 6
## 20761 7
## 20762 26
## 20763 6
## 20764 8
## 20765 9
## 20766 8
## 20767 9
## 20768 6
## 20769 7
## 20770 6
## 20771 8
## 20772 7
## 20773 6
## 20774 8
## 20775 6
## 20776 6
## 20777 6
## 20778 7
## 20779 5
## 20780 9
## 20781 6
## 20782 6
## 20783 7
## 20784 6
## 20785 5
## 20786 9
## 20787 7
## 20788 6
## 20789 9
## 20790 6
## 20791 5
## 20792 5
## 20793 31
## 20794 5
## 20795 5
## 20796 7
## 20797 9
## 20798 7
## 20799 9
## 20800 10
## 20801 8
## 20802 9
## 20803 10
## 20804 9
## 20805 3
## 20806 10
## 20807 7
## 20808 6
## 20809 4
## 20810 3
## 20811 6
## 20812 9
## 20813 27
## 20814 9
## 20815 10
## 20816 7
## 20817 3
## 20818 8
## 20819 5
## 20820 7
## 20821 8
## 20822 9
## 20823 9
## 20824 9
## 20825 10
## 20826 10
## 20827 10
## 20828 26
## 20829 6
## 20830 10
## 20831 11
## 20832 15
## 20833 10
## 20834 11
## 20835 15
## 20836 7
## 20837 6
## 20838 26
## 20839 28
## 20840 10
## 20841 9
## 20842 6
## 20843 4
## 20844 9
## 20845 21
## 20846 14
## 20847 10
## 20848 10
## 20849 10
## 20850 7
## 20851 4
## 20852 7
## 20853 7
## 20854 7
## 20855 11
## 20856 10
## 20857 11
## 20858 28
## 20859 10
## 20860 2
## 20861 6
## 20862 6
## 20863 11
## 20864 7
## 20865 11
## 20866 18
## 20867 11
## 20868 11
## 20869 11
## 20870 12
## 20871 6
## 20872 5
## 20873 11
## 20874 12
## 20875 13
## 20876 11
## 20877 11
## 20878 30
## 20879 6
## 20880 12
## 20881 12
## 20882 12
## 20883 25
## 20884 2
## 20885 12
## 20886 25
## 20887 6
## 20888 11
## 20889 7
## 20890 6
## 20891 11
## 20892 12
## 20893 6
## 20894 12
## 20895 13
## 20896 13
## 20897 12
## 20898 11
## 20899 17
## 20900 12
## 20901 12
## 20902 13
## 20903 13
## 20904 13
## 20905 12
## 20906 13
## 20907 12
## 20908 12
## 20909 12
## 20910 13
## 20911 12
## 20912 13
## 20913 18
## 20914 23
## 20915 30
## 20916 17
## 20917 21
## 20918 23
## 20919 30
## 20920 30
## 20921 7
## 20922 12
## 20923 12
## 20924 13
## 20925 12
## 20926 13
## 20927 13
## 20928 13
## 20929 12
## 20930 12
## 20931 12
## 20932 12
## 20933 12
## 20934 8
## 20935 12
## 20936 12
## 20937 12
## 20938 13
## 20939 13
## 20940 13
## 20941 8
## 20942 13
## 20943 13
## 20944 13
## 20945 12
## 20946 12
## 20947 13
## 20948 13
## 20949 13
## 20950 13
## 20951 9
## 20952 11
## 20953 13
## 20954 4
## 20955 13
## 20956 12
## 20957 13
## 20958 12
## 20959 12
## 20960 2
## 20961 12
## 20962 12
## 20963 13
## 20964 13
## 20965 12
## 20966 12
## 20967 13
## 20968 12
## 20969 13
## 20970 12
## 20971 13
## 20972 13
## 20973 13
## 20974 13
## 20975 13
## 20976 13
## 20977 13
## 20978 13
## 20979 13
## 20980 12
## 20981 13
## 20982 31
## 20983 13
## 20984 13
## 20985 13
## 20986 13
## 20987 12
## 20988 12
## 20989 11
## 20990 11
## 20991 11
## 20992 12
## 20993 14
## 20994 14
## 20995 12
## 20996 12
## 20997 11
## 20998 14
## 20999 11
## 21000 13
## 21001 12
## 21002 13
## 21003 13
## 21004 1
## 21005 8
## 21006 13
## 21007 9
## 21008 13
## 21009 14
## 21010 13
## 21011 14
## 21012 13
## 21013 10
## 21014 13
## 21015 13
## 21016 14
## 21017 14
## 21018 13
## 21019 14
## 21020 10
## 21021 14
## 21022 14
## 21023 14
## 21024 13
## 21025 13
## 21026 12
## 21027 14
## 21028 14
## 21029 15
## 21030 15
## 21031 15
## 21032 13
## 21033 15
## 21034 12
## 21035 9
## 21036 14
## 21037 12
## 21038 15
## 21039 20
## 21040 14
## 21041 14
## 21042 15
## 21043 15
## 21044 9
## 21045 14
## 21046 4
## 21047 9
## 21048 15
## 21049 16
## 21050 1
## 21051 29
## 21052 13
## 21053 16
## 21054 16
## 21055 12
## 21056 16
## 21057 16
## 21058 16
## 21059 15
## 21060 16
## 21061 15
## 21062 16
## 21063 16
## 21064 16
## 21065 16
## 21066 13
## 21067 12
## 21068 16
## 21069 16
## 21070 18
## 21071 16
## 21072 15
## 21073 14
## 21074 17
## 21075 14
## 21076 17
## 21077 17
## 21078 17
## 21079 15
## 21080 14
## 21081 4
## 21082 26
## 21083 14
## 21084 14
## 21085 17
## 21086 26
## 21087 30
## 21088 17
## 21089 12
## 21090 13
## 21091 17
## 21092 17
## 21093 13
## 21094 14
## 21095 14
## 21096 17
## 21097 15
## 21098 15
## 21099 17
## 21100 10
## 21101 10
## 21102 15
## 21103 11
## 21104 11
## 21105 17
## 21106 15
## 21107 17
## 21108 14
## 21109 16
## 21110 14
## 21111 17
## 21112 17
## 21113 17
## 21114 9
## 21115 15
## 21116 18
## 21117 17
## 21118 30
## 21119 11
## 21120 14
## 21121 28
## 21122 18
## 21123 18
## 21124 18
## 21125 18
## 21126 1
## 21127 18
## 21128 16
## 21129 16
## 21130 18
## 21131 17
## 21132 15
## 21133 17
## 21134 8
## 21135 17
## 21136 17
## 21137 31
## 21138 18
## 21139 15
## 21140 6
## 21141 16
## 21142 18
## 21143 15
## 21144 16
## 21145 17
## 21146 18
## 21147 3
## 21148 14
## 21149 16
## 21150 12
## 21151 17
## 21152 13
## 21153 13
## 21154 13
## 21155 16
## 21156 6
## 21157 18
## 21158 19
## 21159 19
## 21160 18
## 21161 13
## 21162 13
## 21163 17
## 21164 17
## 21165 17
## 21166 17
## 21167 19
## 21168 14
## 21169 17
## 21170 16
## 21171 6
## 21172 19
## 21173 16
## 21174 16
## 21175 16
## 21176 16
## 21177 19
## 21178 19
## 21179 14
## 21180 14
## 21181 18
## 21182 20
## 21183 18
## 21184 20
## 21185 19
## 21186 20
## 21187 20
## 21188 19
## 21189 20
## 21190 16
## 21191 18
## 21192 19
## 21193 19
## 21194 20
## 21195 20
## 21196 20
## 21197 20
## 21198 17
## 21199 20
## 21200 15
## 21201 20
## 21202 18
## 21203 20
## 21204 20
## 21205 20
## 21206 20
## 21207 20
## 21208 19
## 21209 19
## 21210 20
## 21211 20
## 21212 19
## 21213 20
## 21214 19
## 21215 17
## 21216 20
## 21217 20
## 21218 18
## 21219 16
## 21220 17
## 21221 17
## 21222 21
## 21223 22
## 21224 21
## 21225 19
## 21226 20
## 21227 15
## 21228 16
## 21229 16
## 21230 18
## 21231 21
## 21232 22
## 21233 23
## 21234 28
## 21235 20
## 21236 15
## 21237 19
## 21238 22
## 21239 22
## 21240 22
## 21241 22
## 21242 20
## 21243 20
## 21244 21
## 21245 22
## 21246 24
## 21247 17
## 21248 23
## 21249 19
## 21250 23
## 21251 23
## 21252 23
## 21253 22
## 21254 14
## 21255 23
## 21256 23
## 21257 19
## 21258 22
## 21259 22
## 21260 23
## 21261 23
## 21262 23
## 21263 10
## 21264 22
## 21265 7
## 21266 23
## 21267 26
## 21268 22
## 21269 22
## 21270 22
## 21271 29
## 21272 23
## 21273 23
## 21274 24
## 21275 21
## 21276 20
## 21277 22
## 21278 18
## 21279 24
## 21280 23
## 21281 20
## 21282 22
## 21283 24
## 21284 23
## 21285 23
## 21286 24
## 21287 24
## 21288 24
## 21289 20
## 21290 22
## 21291 22
## 21292 22
## 21293 24
## 21294 25
## 21295 24
## 21296 24
## 21297 25
## 21298 24
## 21299 21
## 21300 24
## 21301 24
## 21302 22
## 21303 22
## 21304 22
## 21305 25
## 21306 25
## 21307 25
## 21308 25
## 21309 15
## 21310 8
## 21311 21
## 21312 25
## 21313 25
## 21314 28
## 21315 13
## 21316 15
## 21317 25
## 21318 22
## 21319 11
## 21320 24
## 21321 23
## 21322 21
## 21323 23
## 21324 29
## 21325 25
## 21326 25
## 21327 22
## 21328 22
## 21329 21
## 21330 25
## 21331 24
## 21332 25
## 21333 6
## 21334 25
## 21335 6
## 21336 25
## 21337 22
## 21338 25
## 21339 13
## 21340 25
## 21341 18
## 21342 23
## 21343 5
## 21344 11
## 21345 26
## 21346 23
## 21347 26
## 21348 5
## 21349 11
## 21350 26
## 21351 25
## 21352 20
## 21353 26
## 21354 24
## 21355 26
## 21356 20
## 21357 24
## 21358 25
## 21359 26
## 21360 27
## 21361 26
## 21362 21
## 21363 20
## 21364 26
## 21365 20
## 21366 26
## 21367 26
## 21368 26
## 21369 26
## 21370 26
## 21371 24
## 21372 18
## 21373 25
## 21374 7
## 21375 25
## 21376 27
## 21377 25
## 21378 27
## 21379 27
## 21380 26
## 21381 26
## 21382 27
## 21383 27
## 21384 26
## 21385 27
## 21386 27
## 21387 26
## 21388 27
## 21389 23
## 21390 27
## 21391 27
## 21392 27
## 21393 4
## 21394 24
## 21395 26
## 21396 25
## 21397 25
## 21398 27
## 21399 26
## 21400 26
## 21401 26
## 21402 27
## 21403 21
## 21404 27
## 21405 24
## 21406 25
## 21407 22
## 21408 21
## 21409 27
## 21410 27
## 21411 27
## 21412 27
## 21413 27
## 21414 8
## 21415 28
## 21416 28
## 21417 26
## 21418 26
## 21419 27
## 21420 21
## 21421 27
## 21422 27
## 21423 27
## 21424 27
## 21425 27
## 21426 26
## 21427 22
## 21428 27
## 21429 27
## 21430 28
## 21431 26
## 21432 27
## 21433 26
## 21434 27
## 21435 26
## 21436 27
## 21437 27
## 21438 27
## 21439 28
## 21440 28
## 21441 26
## 21442 26
## 21443 26
## 21444 27
## 21445 27
## 21446 26
## 21447 26
## 21448 26
## 21449 27
## 21450 26
## 21451 25
## 21452 27
## 21453 26
## 21454 28
## 21455 26
## 21456 27
## 21457 26
## 21458 27
## 21459 26
## 21460 26
## 21461 26
## 21462 26
## 21463 27
## 21464 27
## 21465 27
## 21466 26
## 21467 27
## 21468 27
## 21469 26
## 21470 26
## 21471 27
## 21472 26
## 21473 26
## 21474 27
## 21475 27
## 21476 26
## 21477 27
## 21478 25
## 21479 23
## 21480 29
## 21481 27
## 21482 29
## 21483 28
## 21484 4
## 21485 27
## 21486 26
## 21487 26
## 21488 29
## 21489 27
## 21490 2
## 21491 15
## 21492 27
## 21493 26
## 21494 28
## 21495 29
## 21496 22
## 21497 3
## 21498 28
## 21499 18
## 21500 23
## 21501 6
## 21502 28
## 21503 31
## 21504 1
## 21505 1
## 21506 1
## 21507 1
## 21508 1
## 21509 15
## 21510 1
## 21511 24
## 21512 1
## 21513 28
## 21514 28
## 21515 1
## 21516 25
## 21517 25
## 21518 17
## 21519 24
## 21520 24
## 21521 4
## 21522 1
## 21523 25
## 21524 25
## 21525 2
## 21526 1
## 21527 2
## 21528 2
## 21529 29
## 21530 29
## 21531 2
## 21532 2
## 21533 28
## 21534 29
## 21535 29
## 21536 25
## 21537 2
## 21538 2
## 21539 29
## 21540 2
## 21541 1
## 21542 2
## 21543 29
## 21544 29
## 21545 29
## 21546 2
## 21547 29
## 21548 18
## 21549 28
## 21550 1
## 21551 29
## 21552 2
## 21553 2
## 21554 2
## 21555 11
## 21556 3
## 21557 2
## 21558 24
## 21559 7
## 21560 14
## 21561 29
## 21562 15
## 21563 2
## 21564 2
## 21565 20
## 21566 28
## 21567 26
## 21568 2
## 21569 26
## 21570 29
## 21571 2
## 21572 26
## 21573 2
## 21574 2
## 21575 29
## 21576 29
## 21577 4
## 21578 4
## 21579 4
## 21580 3
## 21581 4
## 21582 4
## 21583 1
## 21584 3
## 21585 4
## 21586 27
## 21587 27
## 21588 27
## 21589 4
## 21590 27
## 21591 4
## 21592 27
## 21593 23
## 21594 4
## 21595 20
## 21596 1
## 21597 1
## 21598 4
## 21599 4
## 21600 27
## 21601 4
## 21602 28
## 21603 4
## 21604 4
## 21605 4
## 21606 1
## 21607 1
## 21608 1
## 21609 2
## 21610 4
## 21611 1
## 21612 3
## 21613 5
## 21614 4
## 21615 3
## 21616 4
## 21617 4
## 21618 5
## 21619 1
## 21620 3
## 21621 4
## 21622 5
## 21623 5
## 21624 4
## 21625 4
## 21626 5
## 21627 4
## 21628 4
## 21629 4
## 21630 5
## 21631 5
## 21632 4
## 21633 4
## 21634 26
## 21635 5
## 21636 5
## 21637 28
## 21638 5
## 21639 26
## 21640 4
## 21641 28
## 21642 5
## 21643 5
## 21644 1
## 21645 5
## 21646 1
## 21647 3
## 21648 4
## 21649 1
## 21650 14
## 21651 5
## 21652 28
## 21653 5
## 21654 5
## 21655 5
## 21656 1
## 21657 4
## 21658 23
## 21659 5
## 21660 5
## 21661 4
## 21662 4
## 21663 4
## 21664 1
## 21665 4
## 21666 4
## 21667 4
## 21668 28
## 21669 5
## 21670 4
## 21671 29
## 21672 29
## 21673 26
## 21674 1
## 21675 5
## 21676 4
## 21677 4
## 21678 4
## 21679 4
## 21680 5
## 21681 5
## 21682 3
## 21683 4
## 21684 6
## 21685 7
## 21686 4
## 21687 6
## 21688 5
## 21689 1
## 21690 23
## 21691 1
## 21692 7
## 21693 7
## 21694 17
## 21695 6
## 21696 7
## 21697 2
## 21698 7
## 21699 7
## 21700 27
## 21701 17
## 21702 30
## 21703 15
## 21704 17
## 21705 4
## 21706 2
## 21707 3
## 21708 6
## 21709 6
## 21710 8
## 21711 1
## 21712 7
## 21713 14
## 21714 19
## 21715 1
## 21716 3
## 21717 6
## 21718 5
## 21719 2
## 21720 5
## 21721 5
## 21722 5
## 21723 5
## 21724 8
## 21725 8
## 21726 6
## 21727 8
## 21728 9
## 21729 30
## 21730 8
## 21731 2
## 21732 4
## 21733 2
## 21734 6
## 21735 8
## 21736 22
## 21737 8
## 21738 16
## 21739 7
## 21740 8
## 21741 8
## 21742 7
## 21743 4
## 21744 1
## 21745 14
## 21746 19
## 21747 1
## 21748 3
## 21749 8
## 21750 8
## 21751 2
## 21752 7
## 21753 8
## 21754 6
## 21755 5
## 21756 7
## 21757 7
## 21758 7
## 21759 8
## 21760 3
## 21761 28
## 21762 8
## 21763 8
## 21764 9
## 21765 20
## 21766 9
## 21767 14
## 21768 22
## 21769 20
## 21770 9
## 21771 9
## 21772 8
## 21773 4
## 21774 9
## 21775 13
## 21776 9
## 21777 9
## 21778 9
## 21779 6
## 21780 25
## 21781 6
## 21782 6
## 21783 11
## 21784 4
## 21785 10
## 21786 9
## 21787 9
## 21788 10
## 21789 12
## 21790 10
## 21791 12
## 21792 4
## 21793 9
## 21794 20
## 21795 7
## 21796 9
## 21797 10
## 21798 7
## 21799 9
## 21800 11
## 21801 9
## 21802 9
## 21803 7
## 21804 5
## 21805 9
## 21806 9
## 21807 9
## 21808 12
## 21809 9
## 21810 9
## 21811 9
## 21812 9
## 21813 9
## 21814 9
## 21815 9
## 21816 7
## 21817 9
## 21818 9
## 21819 9
## 21820 9
## 21821 9
## 21822 9
## 21823 9
## 21824 9
## 21825 9
## 21826 9
## 21827 9
## 21828 9
## 21829 9
## 21830 9
## 21831 9
## 21832 7
## 21833 9
## 21834 11
## 21835 9
## 21836 11
## 21837 11
## 21838 11
## 21839 7
## 21840 11
## 21841 11
## 21842 11
## 21843 11
## 21844 11
## 21845 11
## 21846 11
## 21847 11
## 21848 11
## 21849 11
## 21850 11
## 21851 11
## 21852 5
## 21853 10
## 21854 5
## 21855 7
## 21856 5
## 21857 9
## 21858 9
## 21859 11
## 21860 11
## 21861 10
## 21862 27
## 21863 11
## 21864 11
## 21865 9
## 21866 6
## 21867 6
## 21868 6
## 21869 3
## 21870 7
## 21871 12
## 21872 12
## 21873 9
## 21874 7
## 21875 7
## 21876 7
## 21877 7
## 21878 7
## 21879 7
## 21880 7
## 21881 7
## 21882 7
## 21883 7
## 21884 7
## 21885 7
## 21886 7
## 21887 7
## 21888 7
## 21889 7
## 21890 7
## 21891 7
## 21892 7
## 21893 7
## 21894 7
## 21895 7
## 21896 7
## 21897 13
## 21898 13
## 21899 12
## 21900 12
## 21901 9
## 21902 12
## 21903 12
## 21904 12
## 21905 12
## 21906 11
## 21907 11
## 21908 11
## 21909 12
## 21910 12
## 21911 10
## 21912 11
## 21913 12
## 21914 12
## 21915 12
## 21916 12
## 21917 12
## 21918 12
## 21919 12
## 21920 11
## 21921 12
## 21922 12
## 21923 12
## 21924 11
## 21925 12
## 21926 11
## 21927 11
## 21928 11
## 21929 12
## 21930 12
## 21931 10
## 21932 11
## 21933 6
## 21934 12
## 21935 8
## 21936 12
## 21937 30
## 21938 12
## 21939 12
## 21940 11
## 21941 12
## 21942 12
## 21943 11
## 21944 11
## 21945 12
## 21946 11
## 21947 11
## 21948 12
## 21949 11
## 21950 12
## 21951 12
## 21952 12
## 21953 8
## 21954 11
## 21955 6
## 21956 4
## 21957 4
## 21958 9
## 21959 11
## 21960 7
## 21961 13
## 21962 10
## 21963 20
## 21964 21
## 21965 12
## 21966 25
## 21967 13
## 21968 13
## 21969 14
## 21970 13
## 21971 8
## 21972 14
## 21973 23
## 21974 8
## 21975 8
## 21976 12
## 21977 14
## 21978 14
## 21979 14
## 21980 13
## 21981 11
## 21982 14
## 21983 11
## 21984 14
## 21985 14
## 21986 14
## 21987 12
## 21988 10
## 21989 10
## 21990 14
## 21991 9
## 21992 9
## 21993 14
## 21994 10
## 21995 14
## 21996 8
## 21997 14
## 21998 14
## 21999 13
## 22000 15
## 22001 15
## 22002 8
## 22003 16
## 22004 10
## 22005 10
## 22006 15
## 22007 15
## 22008 14
## 22009 15
## 22010 14
## 22011 15
## 22012 11
## 22013 15
## 22014 15
## 22015 12
## 22016 15
## 22017 13
## 22018 14
## 22019 14
## 22020 15
## 22021 14
## 22022 14
## 22023 20
## 22024 15
## 22025 10
## 22026 13
## 22027 13
## 22028 13
## 22029 9
## 22030 9
## 22031 16
## 22032 10
## 22033 13
## 22034 16
## 22035 15
## 22036 18
## 22037 29
## 22038 13
## 22039 19
## 22040 27
## 22041 10
## 22042 5
## 22043 30
## 22044 26
## 22045 10
## 22046 16
## 22047 16
## 22048 16
## 22049 29
## 22050 16
## 22051 22
## 22052 4
## 22053 15
## 22054 16
## 22055 16
## 22056 16
## 22057 16
## 22058 16
## 22059 16
## 22060 16
## 22061 8
## 22062 15
## 22063 17
## 22064 3
## 22065 16
## 22066 14
## 22067 16
## 22068 16
## 22069 26
## 22070 15
## 22071 12
## 22072 14
## 22073 14
## 22074 16
## 22075 12
## 22076 16
## 22077 10
## 22078 12
## 22079 12
## 22080 10
## 22081 15
## 22082 4
## 22083 18
## 22084 18
## 22085 15
## 22086 17
## 22087 14
## 22088 10
## 22089 15
## 22090 17
## 22091 17
## 22092 17
## 22093 17
## 22094 17
## 22095 11
## 22096 16
## 22097 12
## 22098 17
## 22099 17
## 22100 18
## 22101 20
## 22102 17
## 22103 17
## 22104 17
## 22105 18
## 22106 17
## 22107 17
## 22108 17
## 22109 17
## 22110 17
## 22111 17
## 22112 17
## 22113 17
## 22114 17
## 22115 17
## 22116 17
## 22117 17
## 22118 17
## 22119 17
## 22120 17
## 22121 14
## 22122 14
## 22123 15
## 22124 11
## 22125 17
## 22126 14
## 22127 16
## 22128 6
## 22129 17
## 22130 17
## 22131 17
## 22132 11
## 22133 15
## 22134 14
## 22135 14
## 22136 11
## 22137 17
## 22138 16
## 22139 4
## 22140 15
## 22141 12
## 22142 16
## 22143 16
## 22144 12
## 22145 12
## 22146 13
## 22147 13
## 22148 18
## 22149 14
## 22150 18
## 22151 14
## 22152 12
## 22153 12
## 22154 18
## 22155 18
## 22156 17
## 22157 12
## 22158 16
## 22159 17
## 22160 16
## 22161 13
## 22162 12
## 22163 17
## 22164 17
## 22165 17
## 22166 13
## 22167 17
## 22168 19
## 22169 19
## 22170 19
## 22171 14
## 22172 18
## 22173 18
## 22174 19
## 22175 15
## 22176 15
## 22177 15
## 22178 15
## 22179 17
## 22180 18
## 22181 19
## 22182 17
## 22183 18
## 22184 18
## 22185 19
## 22186 13
## 22187 18
## 22188 19
## 22189 19
## 22190 19
## 22191 19
## 22192 17
## 22193 18
## 22194 19
## 22195 17
## 22196 13
## 22197 13
## 22198 19
## 22199 18
## 22200 19
## 22201 23
## 22202 19
## 22203 17
## 22204 20
## 22205 18
## 22206 18
## 22207 19
## 22208 19
## 22209 17
## 22210 18
## 22211 14
## 22212 19
## 22213 19
## 22214 16
## 22215 18
## 22216 18
## 22217 21
## 22218 21
## 22219 16
## 22220 17
## 22221 16
## 22222 17
## 22223 17
## 22224 15
## 22225 9
## 22226 14
## 22227 14
## 22228 20
## 22229 20
## 22230 19
## 22231 20
## 22232 20
## 22233 18
## 22234 17
## 22235 4
## 22236 18
## 22237 18
## 22238 17
## 22239 21
## 22240 21
## 22241 19
## 22242 15
## 22243 17
## 22244 15
## 22245 19
## 22246 17
## 22247 17
## 22248 16
## 22249 12
## 22250 15
## 22251 19
## 22252 21
## 22253 15
## 22254 19
## 22255 21
## 22256 15
## 22257 21
## 22258 21
## 22259 21
## 22260 19
## 22261 21
## 22262 18
## 22263 9
## 22264 21
## 22265 21
## 22266 21
## 22267 18
## 22268 19
## 22269 21
## 22270 19
## 22271 21
## 22272 21
## 22273 22
## 22274 21
## 22275 6
## 22276 19
## 22277 17
## 22278 20
## 22279 19
## 22280 18
## 22281 21
## 22282 21
## 22283 18
## 22284 12
## 22285 18
## 22286 17
## 22287 16
## 22288 16
## 22289 16
## 22290 16
## 22291 16
## 22292 16
## 22293 15
## 22294 18
## 22295 22
## 22296 20
## 22297 22
## 22298 22
## 22299 22
## 22300 28
## 22301 2
## 22302 24
## 22303 14
## 22304 28
## 22305 16
## 22306 22
## 22307 21
## 22308 19
## 22309 19
## 22310 18
## 22311 13
## 22312 21
## 22313 19
## 22314 19
## 22315 18
## 22316 21
## 22317 16
## 22318 20
## 22319 21
## 22320 21
## 22321 20
## 22322 20
## 22323 19
## 22324 19
## 22325 19
## 22326 22
## 22327 22
## 22328 20
## 22329 19
## 22330 19
## 22331 22
## 22332 19
## 22333 21
## 22334 21
## 22335 22
## 22336 22
## 22337 21
## 22338 21
## 22339 19
## 22340 19
## 22341 19
## 22342 16
## 22343 14
## 22344 24
## 22345 20
## 22346 20
## 22347 17
## 22348 15
## 22349 19
## 22350 20
## 22351 20
## 22352 17
## 22353 18
## 22354 21
## 22355 14
## 22356 23
## 22357 17
## 22358 22
## 22359 20
## 22360 12
## 22361 20
## 22362 6
## 22363 20
## 22364 21
## 22365 20
## 22366 21
## 22367 20
## 22368 24
## 22369 23
## 22370 24
## 22371 20
## 22372 24
## 22373 19
## 22374 19
## 22375 19
## 22376 23
## 22377 21
## 22378 21
## 22379 19
## 22380 22
## 22381 21
## 22382 17
## 22383 22
## 22384 20
## 22385 22
## 22386 22
## 22387 23
## 22388 22
## 22389 23
## 22390 22
## 22391 24
## 22392 21
## 22393 19
## 22394 19
## 22395 19
## 22396 19
## 22397 22
## 22398 22
## 22399 21
## 22400 22
## 22401 15
## 22402 22
## 22403 22
## 22404 23
## 22405 23
## 22406 17
## 22407 21
## 22408 23
## 22409 21
## 22410 25
## 22411 19
## 22412 21
## 22413 21
## 22414 19
## 22415 21
## 22416 24
## 22417 23
## 22418 21
## 22419 21
## 22420 21
## 22421 21
## 22422 23
## 22423 19
## 22424 23
## 22425 23
## 22426 20
## 22427 24
## 22428 7
## 22429 20
## 22430 20
## 22431 20
## 22432 23
## 22433 21
## 22434 21
## 22435 23
## 22436 22
## 22437 22
## 22438 23
## 22439 21
## 22440 23
## 22441 24
## 22442 24
## 22443 25
## 22444 27
## 22445 22
## 22446 22
## 22447 22
## 22448 23
## 22449 18
## 22450 24
## 22451 20
## 22452 22
## 22453 20
## 22454 22
## 22455 24
## 22456 20
## 22457 23
## 22458 19
## 22459 23
## 22460 22
## 22461 17
## 22462 26
## 22463 20
## 22464 24
## 22465 24
## 22466 24
## 22467 23
## 22468 26
## 22469 24
## 22470 24
## 22471 26
## 22472 18
## 22473 20
## 22474 10
## 22475 25
## 22476 26
## 22477 24
## 22478 24
## 22479 25
## 22480 25
## 22481 25
## 22482 25
## 22483 17
## 22484 14
## 22485 24
## 22486 25
## 22487 17
## 22488 24
## 22489 24
## 22490 23
## 22491 16
## 22492 26
## 22493 24
## 22494 19
## 22495 24
## 22496 23
## 22497 24
## 22498 24
## 22499 24
## 22500 23
## 22501 23
## 22502 26
## 22503 24
## 22504 22
## 22505 25
## 22506 25
## 22507 24
## 22508 19
## 22509 25
## 22510 27
## 22511 26
## 22512 25
## 22513 23
## 22514 23
## 22515 25
## 22516 27
## 22517 28
## 22518 25
## 22519 24
## 22520 25
## 22521 23
## 22522 27
## 22523 27
## 22524 30
## 22525 24
## 22526 25
## 22527 27
## 22528 11
## 22529 24
## 22530 24
## 22531 24
## 22532 26
## 22533 27
## 22534 25
## 22535 25
## 22536 27
## 22537 26
## 22538 23
## 22539 27
## 22540 27
## 22541 23
## 22542 27
## 22543 25
## 22544 27
## 22545 27
## 22546 26
## 22547 27
## 22548 28
## 22549 24
## 22550 26
## 22551 24
## 22552 21
## 22553 25
## 22554 25
## 22555 24
## 22556 25
## 22557 25
## 22558 28
## 22559 21
## 22560 28
## 22561 27
## 22562 25
## 22563 25
## 22564 28
## 22565 25
## 22566 24
## 22567 27
## 22568 27
## 22569 29
## 22570 26
## 22571 26
## 22572 26
## 22573 28
## 22574 24
## 22575 25
## 22576 28
## 22577 27
## 22578 28
## 22579 27
## 22580 27
## 22581 27
## 22582 26
## 22583 15
## 22584 18
## 22585 22
## 22586 31
## 22587 29
## 22588 22
## 22589 26
## 22590 22
## 22591 29
## 22592 10
## 22593 25
## 22594 29
## 22595 28
## 22596 28
## 22597 29
## 22598 30
## 22599 29
## 22600 29
## 22601 29
## 22602 27
## 22603 29
## 22604 25
## 22605 21
## 22606 28
## 22607 28
## 22608 27
## 22609 28
## 22610 23
## 22611 29
## 22612 29
## 22613 29
## 22614 28
## 22615 29
## 22616 28
## 22617 29
## 22618 29
## 22619 28
## 22620 30
## 22621 27
## 22622 30
## 22623 30
## 22624 30
## 22625 30
## 22626 30
## 22627 30
## 22628 30
## 22629 30
## 22630 30
## 22631 30
## 22632 29
## 22633 30
## 22634 30
## 22635 28
## 22636 24
## 22637 29
## 22638 28
## 22639 28
## 22640 28
## 22641 8
## 22642 28
## 22643 24
## 22644 29
## 22645 29
## 22646 28
## 22647 27
## 22648 30
## 22649 29
## 22650 27
## 22651 26
## 22652 27
## 22653 30
## 22654 29
## 22655 29
## 22656 22
## 22657 28
## 22658 28
## 22659 29
## 22660 25
## 22661 30
## 22662 27
## 22663 29
## 22664 18
## 22665 1
## 22666 28
## 22667 29
## 22668 26
## 22669 27
## 22670 28
## 22671 30
## 22672 31
## 22673 31
## 22674 28
## 22675 27
## 22676 29
## 22677 24
## 22678 28
## 22679 27
## 22680 31
## 22681 1
## 22682 25
## 22683 26
## 22684 29
## 22685 25
## 22686 29
## 22687 1
## 22688 1
## 22689 1
## 22690 1
## 22691 28
## 22692 31
## 22693 28
## 22694 27
## 22695 1
## 22696 1
## 22697 30
## 22698 27
## 22699 31
## 22700 31
## 22701 31
## 22702 31
## 22703 2
## 22704 2
## 22705 2
## 22706 2
## 22707 1
## 22708 27
## 22709 1
## 22710 29
## 22711 31
## 22712 3
## 22713 27
## 22714 31
## 22715 30
## 22716 31
## 22717 31
## 22718 31
## 22719 29
## 22720 31
## 22721 31
## 22722 31
## 22723 31
## 22724 31
## 22725 31
## 22726 28
## 22727 28
## 22728 30
## 22729 28
## 22730 31
## 22731 31
## 22732 31
## 22733 31
## 22734 31
## 22735 31
## 22736 28
## 22737 28
## 22738 28
## 22739 30
## 22740 30
## 22741 1
## 22742 31
## 22743 31
## 22744 29
## 22745 2
## 22746 3
## 22747 31
## 22748 31
## 22749 2
## 22750 30
## 22751 3
## 22752 4
## 22753 30
## 22754 2
## 22755 4
## 22756 4
## 22757 1
## 22758 5
## 22759 3
## 22760 3
## 22761 29
## 22762 31
## 22763 29
## 22764 4
## 22765 4
## 22766 31
## 22767 4
## 22768 5
## 22769 5
## 22770 6
## 22771 23
## 22772 4
## 22773 4
## 22774 4
## 22775 4
## 22776 4
## 22777 4
## 22778 4
## 22779 4
## 22780 5
## 22781 5
## 22782 2
## 22783 5
## 22784 4
## 22785 6
## 22786 30
## 22787 5
## 22788 5
## 22789 4
## 22790 4
## 22791 5
## 22792 5
## 22793 4
## 22794 4
## 22795 4
## 22796 5
## 22797 5
## 22798 3
## 22799 5
## 22800 3
## 22801 5
## 22802 2
## 22803 2
## 22804 3
## 22805 2
## 22806 3
## 22807 6
## 22808 5
## 22809 6
## 22810 6
## 22811 6
## 22812 5
## 22813 2
## 22814 5
## 22815 6
## 22816 4
## 22817 6
## 22818 6
## 22819 7
## 22820 3
## 22821 6
## 22822 6
## 22823 7
## 22824 3
## 22825 3
## 22826 3
## 22827 3
## 22828 3
## 22829 1
## 22830 3
## 22831 3
## 22832 3
## 22833 5
## 22834 2
## 22835 6
## 22836 4
## 22837 7
## 22838 7
## 22839 5
## 22840 3
## 22841 30
## 22842 4
## 22843 4
## 22844 8
## 22845 5
## 22846 8
## 22847 8
## 22848 8
## 22849 8
## 22850 8
## 22851 8
## 22852 8
## 22853 8
## 22854 6
## 22855 5
## 22856 7
## 22857 2
## 22858 2
## 22859 3
## 22860 8
## 22861 7
## 22862 8
## 22863 4
## 22864 7
## 22865 6
## 22866 4
## 22867 7
## 22868 6
## 22869 8
## 22870 8
## 22871 4
## 22872 4
## 22873 7
## 22874 5
## 22875 8
## 22876 4
## 22877 8
## 22878 2
## 22879 2
## 22880 7
## 22881 7
## 22882 7
## 22883 7
## 22884 7
## 22885 7
## 22886 7
## 22887 7
## 22888 7
## 22889 7
## 22890 7
## 22891 7
## 22892 7
## 22893 7
## 22894 7
## 22895 7
## 22896 7
## 22897 7
## 22898 7
## 22899 7
## 22900 7
## 22901 7
## 22902 7
## 22903 7
## 22904 7
## 22905 7
## 22906 7
## 22907 7
## 22908 7
## 22909 2
## 22910 3
## 22911 7
## 22912 6
## 22913 7
## 22914 7
## 22915 7
## 22916 6
## 22917 6
## 22918 6
## 22919 8
## 22920 8
## 22921 9
## 22922 9
## 22923 9
## 22924 9
## 22925 7
## 22926 9
## 22927 9
## 22928 9
## 22929 7
## 22930 7
## 22931 9
## 22932 9
## 22933 6
## 22934 1
## 22935 2
## 22936 7
## 22937 8
## 22938 8
## 22939 30
## 22940 6
## 22941 10
## 22942 3
## 22943 4
## 22944 10
## 22945 11
## 22946 4
## 22947 8
## 22948 6
## 22949 8
## 22950 10
## 22951 10
## 22952 5
## 22953 7
## 22954 10
## 22955 31
## 22956 11
## 22957 7
## 22958 8
## 22959 7
## 22960 7
## 22961 8
## 22962 8
## 22963 11
## 22964 7
## 22965 9
## 22966 10
## 22967 7
## 22968 4
## 22969 10
## 22970 11
## 22971 12
## 22972 12
## 22973 12
## 22974 5
## 22975 6
## 22976 7
## 22977 11
## 22978 11
## 22979 11
## 22980 11
## 22981 11
## 22982 11
## 22983 8
## 22984 5
## 22985 8
## 22986 8
## 22987 8
## 22988 5
## 22989 9
## 22990 10
## 22991 11
## 22992 8
## 22993 11
## 22994 6
## 22995 5
## 22996 6
## 22997 12
## 22998 11
## 22999 6
## 23000 2
## 23001 5
## 23002 5
## 23003 12
## 23004 12
## 23005 11
## 23006 9
## 23007 11
## 23008 7
## 23009 9
## 23010 6
## 23011 9
## 23012 12
## 23013 12
## 23014 12
## 23015 12
## 23016 7
## 23017 12
## 23018 23
## 23019 13
## 23020 7
## 23021 9
## 23022 13
## 23023 12
## 23024 12
## 23025 12
## 23026 7
## 23027 5
## 23028 14
## 23029 7
## 23030 13
## 23031 11
## 23032 24
## 23033 1
## 23034 29
## 23035 6
## 23036 28
## 23037 10
## 23038 31
## 23039 14
## 23040 28
## 23041 19
## 23042 2
## 23043 22
## 23044 7
## 23045 1
## 23046 13
## 23047 28
## 23048 20
## 23049 9
## 23050 9
## 23051 11
## 23052 12
## 23053 14
## 23054 10
## 23055 7
## 23056 12
## 23057 14
## 23058 11
## 23059 13
## 23060 11
## 23061 14
## 23062 8
## 23063 13
## 23064 13
## 23065 13
## 23066 9
## 23067 9
## 23068 13
## 23069 11
## 23070 6
## 23071 11
## 23072 7
## 23073 7
## 23074 13
## 23075 10
## 23076 13
## 23077 14
## 23078 14
## 23079 20
## 23080 14
## 23081 22
## 23082 9
## 23083 14
## 23084 8
## 23085 8
## 23086 12
## 23087 13
## 23088 8
## 23089 12
## 23090 13
## 23091 14
## 23092 11
## 23093 8
## 23094 14
## 23095 20
## 23096 17
## 23097 22
## 23098 20
## 23099 14
## 23100 14
## 23101 13
## 23102 13
## 23103 13
## 23104 11
## 23105 15
## 23106 14
## 23107 8
## 23108 6
## 23109 9
## 23110 9
## 23111 8
## 23112 9
## 23113 11
## 23114 13
## 23115 15
## 23116 15
## 23117 16
## 23118 11
## 23119 15
## 23120 15
## 23121 15
## 23122 9
## 23123 12
## 23124 14
## 23125 13
## 23126 9
## 23127 9
## 23128 10
## 23129 9
## 23130 9
## 23131 12
## 23132 12
## 23133 9
## 23134 13
## 23135 10
## 23136 9
## 23137 9
## 23138 4
## 23139 13
## 23140 9
## 23141 15
## 23142 9
## 23143 9
## 23144 13
## 23145 9
## 23146 9
## 23147 9
## 23148 9
## 23149 9
## 23150 9
## 23151 9
## 23152 9
## 23153 9
## 23154 9
## 23155 9
## 23156 9
## 23157 10
## 23158 10
## 23159 10
## 23160 10
## 23161 10
## 23162 10
## 23163 11
## 23164 13
## 23165 12
## 23166 12
## 23167 12
## 23168 6
## 23169 10
## 23170 17
## 23171 14
## 23172 21
## 23173 22
## 23174 9
## 23175 9
## 23176 14
## 23177 9
## 23178 9
## 23179 16
## 23180 14
## 23181 11
## 23182 13
## 23183 16
## 23184 12
## 23185 13
## 23186 14
## 23187 16
## 23188 8
## 23189 15
## 23190 16
## 23191 16
## 23192 14
## 23193 9
## 23194 14
## 23195 15
## 23196 15
## 23197 14
## 23198 11
## 23199 9
## 23200 10
## 23201 15
## 23202 14
## 23203 14
## 23204 15
## 23205 11
## 23206 17
## 23207 15
## 23208 16
## 23209 17
## 23210 13
## 23211 14
## 23212 12
## 23213 17
## 23214 17
## 23215 11
## 23216 15
## 23217 15
## 23218 13
## 23219 15
## 23220 17
## 23221 11
## 23222 12
## 23223 12
## 23224 15
## 23225 18
## 23226 18
## 23227 18
## 23228 18
## 23229 18
## 23230 17
## 23231 13
## 23232 14
## 23233 18
## 23234 13
## 23235 17
## 23236 18
## 23237 18
## 23238 4
## 23239 24
## 23240 22
## 23241 12
## 23242 9
## 23243 27
## 23244 13
## 23245 18
## 23246 18
## 23247 20
## 23248 18
## 23249 18
## 23250 18
## 23251 18
## 23252 18
## 23253 18
## 23254 18
## 23255 18
## 23256 19
## 23257 19
## 23258 19
## 23259 19
## 23260 19
## 23261 19
## 23262 19
## 23263 19
## 23264 19
## 23265 19
## 23266 19
## 23267 19
## 23268 19
## 23269 19
## 23270 18
## 23271 18
## 23272 19
## 23273 17
## 23274 14
## 23275 16
## 23276 18
## 23277 18
## 23278 18
## 23279 16
## 23280 15
## 23281 9
## 23282 14
## 23283 14
## 23284 20
## 23285 20
## 23286 18
## 23287 14
## 23288 20
## 23289 20
## 23290 20
## 23291 20
## 23292 16
## 23293 20
## 23294 20
## 23295 19
## 23296 20
## 23297 16
## 23298 11
## 23299 20
## 23300 31
## 23301 20
## 23302 17
## 23303 16
## 23304 16
## 23305 20
## 23306 22
## 23307 22
## 23308 17
## 23309 15
## 23310 10
## 23311 17
## 23312 17
## 23313 21
## 23314 15
## 23315 15
## 23316 18
## 23317 21
## 23318 21
## 23319 21
## 23320 20
## 23321 22
## 23322 15
## 23323 16
## 23324 19
## 23325 17
## 23326 17
## 23327 16
## 23328 9
## 23329 17
## 23330 17
## 23331 17
## 23332 18
## 23333 20
## 23334 20
## 23335 9
## 23336 16
## 23337 18
## 23338 20
## 23339 13
## 23340 22
## 23341 17
## 23342 16
## 23343 17
## 23344 19
## 23345 16
## 23346 21
## 23347 22
## 23348 22
## 23349 19
## 23350 19
## 23351 21
## 23352 21
## 23353 21
## 23354 21
## 23355 22
## 23356 13
## 23357 22
## 23358 18
## 23359 21
## 23360 21
## 23361 22
## 23362 22
## 23363 18
## 23364 23
## 23365 14
## 23366 21
## 23367 17
## 23368 16
## 23369 22
## 23370 22
## 23371 22
## 23372 22
## 23373 20
## 23374 20
## 23375 22
## 23376 22
## 23377 23
## 23378 23
## 23379 20
## 23380 22
## 23381 23
## 23382 20
## 23383 20
## 23384 23
## 23385 20
## 23386 20
## 23387 23
## 23388 23
## 23389 22
## 23390 24
## 23391 22
## 23392 22
## 23393 18
## 23394 24
## 23395 23
## 23396 22
## 23397 24
## 23398 23
## 23399 22
## 23400 22
## 23401 22
## 23402 20
## 23403 23
## 23404 22
## 23405 23
## 23406 23
## 23407 23
## 23408 23
## 23409 23
## 23410 24
## 23411 23
## 23412 22
## 23413 21
## 23414 23
## 23415 22
## 23416 21
## 23417 22
## 23418 24
## 23419 24
## 23420 23
## 23421 22
## 23422 22
## 23423 23
## 23424 24
## 23425 25
## 23426 1
## 23427 22
## 23428 22
## 23429 21
## 23430 21
## 23431 23
## 23432 21
## 23433 23
## 23434 24
## 23435 23
## 23436 23
## 23437 23
## 23438 25
## 23439 26
## 23440 20
## 23441 19
## 23442 19
## 23443 19
## 23444 19
## 23445 19
## 23446 19
## 23447 19
## 23448 19
## 23449 19
## 23450 19
## 23451 19
## 23452 19
## 23453 24
## 23454 18
## 23455 23
## 23456 26
## 23457 18
## 23458 23
## 23459 23
## 23460 17
## 23461 18
## 23462 18
## 23463 19
## 23464 18
## 23465 24
## 23466 18
## 23467 18
## 23468 18
## 23469 18
## 23470 18
## 23471 18
## 23472 19
## 23473 18
## 23474 18
## 23475 18
## 23476 18
## 23477 25
## 23478 23
## 23479 25
## 23480 24
## 23481 16
## 23482 19
## 23483 25
## 23484 18
## 23485 18
## 23486 24
## 23487 20
## 23488 26
## 23489 26
## 23490 26
## 23491 28
## 23492 4
## 23493 25
## 23494 26
## 23495 25
## 23496 26
## 23497 19
## 23498 22
## 23499 26
## 23500 20
## 23501 23
## 23502 25
## 23503 25
## 23504 26
## 23505 25
## 23506 25
## 23507 26
## 23508 28
## 23509 28
## 23510 28
## 23511 28
## 23512 29
## 23513 24
## 23514 19
## 23515 26
## 23516 26
## 23517 23
## 23518 25
## 23519 24
## 23520 24
## 23521 21
## 23522 24
## 23523 16
## 23524 27
## 23525 26
## 23526 28
## 23527 26
## 23528 26
## 23529 30
## 23530 18
## 23531 27
## 23532 26
## 23533 26
## 23534 27
## 23535 25
## 23536 23
## 23537 27
## 23538 27
## 23539 24
## 23540 26
## 23541 25
## 23542 27
## 23543 3
## 23544 25
## 23545 28
## 23546 26
## 23547 18
## 23548 23
## 23549 24
## 23550 29
## 23551 20
## 23552 25
## 23553 14
## 23554 28
## 23555 29
## 23556 26
## 23557 17
## 23558 24
## 23559 24
## 23560 24
## 23561 24
## 23562 24
## 23563 26
## 23564 28
## 23565 24
## 23566 23
## 23567 24
## 23568 28
## 23569 8
## 23570 29
## 23571 26
## 23572 27
## 23573 28
## 23574 28
## 23575 28
## 23576 22
## 23577 27
## 23578 27
## 23579 23
## 23580 27
## 23581 28
## 23582 14
## 23583 25
## 23584 28
## 23585 26
## 23586 12
## 23587 22
## 23588 28
## 23589 27
## 23590 26
## 23591 28
## 23592 26
## 23593 25
## 23594 25
## 23595 25
## 23596 28
## 23597 25
## 23598 23
## 23599 25
## 23600 25
## 23601 28
## 23602 24
## 23603 23
## 23604 29
## 23605 28
## 23606 29
## 23607 29
## 23608 25
## 23609 27
## 23610 16
## 23611 27
## 23612 27
## 23613 27
## 23614 27
## 23615 27
## 23616 27
## 23617 27
## 23618 27
## 23619 27
## 23620 27
## 23621 23
## 23622 23
## 23623 27
## 23624 27
## 23625 27
## 23626 27
## 23627 27
## 23628 27
## 23629 27
## 23630 27
## 23631 27
## 23632 27
## 23633 27
## 23634 29
## 23635 27
## 23636 2
## 23637 25
## 23638 27
## 23639 29
## 23640 23
## 23641 23
## 23642 23
## 23643 28
## 23644 28
## 23645 28
## 23646 27
## 23647 27
## 23648 26
## 23649 28
## 23650 28
## 23651 30
## 23652 29
## 23653 29
## 23654 29
## 23655 26
## 23656 23
## 23657 29
## 23658 26
## 23659 25
## 23660 27
## 23661 26
## 23662 27
## 23663 23
## 23664 23
## 23665 26
## 23666 24
## 23667 26
## 23668 23
## 23669 25
## 23670 29
## 23671 27
## 23672 28
## 23673 28
## 23674 30
## 23675 30
## 23676 30
## 23677 28
## 23678 16
## 23679 29
## 23680 29
## 23681 30
## 23682 30
## 23683 29
## 23684 28
## 23685 29
## 23686 30
## 23687 30
## 23688 30
## 23689 29
## 23690 30
## 23691 2
## 23692 30
## 23693 30
## 23694 30
## 23695 30
## 23696 30
## 23697 30
## 23698 30
## 23699 30
## 23700 30
## 23701 30
## 23702 30
## 23703 30
## 23704 30
## 23705 30
## 23706 30
## 23707 30
## 23708 30
## 23709 30
## 23710 30
## 23711 30
## 23712 30
## 23713 30
## 23714 30
## 23715 30
## 23716 30
## 23717 30
## 23718 30
## 23719 30
## 23720 30
## 23721 30
## 23722 30
## 23723 30
## 23724 30
## 23725 30
## 23726 30
## 23727 30
## 23728 25
## 23729 30
## 23730 2
## 23731 29
## 23732 29
## 23733 29
## 23734 29
## 23735 30
## 23736 26
## 23737 2
## 23738 2
## 23739 30
## 23740 30
## 23741 30
## 23742 30
## 23743 29
## 23744 30
## 23745 30
## 23746 30
## 23747 30
## 23748 1
## 23749 1
## 23750 30
## 23751 30
## 23752 28
## 23753 30
## 23754 30
## 23755 30
## 23756 29
## 23757 26
## 23758 28
## 23759 28
## 23760 2
## 23761 30
## 23762 29
## 23763 24
## 23764 30
## 23765 2
## 23766 2
## 23767 2
## 23768 2
## 23769 3
## 23770 3
## 23771 1
## 23772 2
## 23773 30
## 23774 1
## 23775 3
## 23776 3
## 23777 30
## 23778 29
## 23779 28
## 23780 1
## 23781 28
## 23782 27
## 23783 26
## 23784 2
## 23785 29
## 23786 3
## 23787 21
## 23788 21
## 23789 7
## 23790 11
## 23791 3
## 23792 25
## 23793 3
## 23794 30
## 23795 3
## 23796 3
## 23797 3
## 23798 2
## 23799 3
## 23800 18
## 23801 1
## 23802 21
## 23803 11
## 23804 17
## 23805 28
## 23806 12
## 23807 12
## 23808 23
## 23809 26
## 23810 30
## 23811 2
## 23812 30
## 23813 29
## 23814 16
## 23815 29
## 23816 2
## 23817 2
## 23818 28
## 23819 28
## 23820 4
## 23821 2
## 23822 2
## 23823 4
## 23824 4
## 23825 4
## 23826 4
## 23827 2
## 23828 4
## 23829 2
## 23830 4
## 23831 1
## 23832 2
## 23833 4
## 23834 4
## 23835 4
## 23836 4
## 23837 5
## 23838 2
## 23839 20
## 23840 21
## 23841 2
## 23842 4
## 23843 5
## 23844 1
## 23845 4
## 23846 29
## 23847 29
## 23848 29
## 23849 29
## 23850 29
## 23851 29
## 23852 2
## 23853 29
## 23854 1
## 23855 3
## 23856 4
## 23857 30
## 23858 5
## 23859 3
## 23860 3
## 23861 30
## 23862 29
## 23863 4
## 23864 5
## 23865 6
## 23866 4
## 23867 2
## 23868 2
## 23869 20
## 23870 21
## 23871 29
## 23872 29
## 23873 1
## 23874 29
## 23875 29
## 23876 29
## 23877 5
## 23878 29
## 23879 29
## 23880 29
## 23881 29
## 23882 30
## 23883 27
## 23884 29
## 23885 6
## 23886 4
## 23887 28
## 23888 30
## 23889 3
## 23890 30
## 23891 30
## 23892 30
## 23893 30
## 23894 30
## 23895 2
## 23896 2
## 23897 30
## 23898 4
## 23899 6
## 23900 6
## 23901 6
## 23902 6
## 23903 6
## 23904 4
## 23905 4
## 23906 29
## 23907 29
## 23908 4
## 23909 30
## 23910 30
## 23911 6
## 23912 28
## 23913 30
## 23914 30
## 23915 6
## 23916 2
## 23917 2
## 23918 2
## 23919 3
## 23920 2
## 23921 1
## 23922 1
## 23923 4
## 23924 2
## 23925 7
## 23926 7
## 23927 1
## 23928 1
## 23929 5
## 23930 7
## 23931 7
## 23932 5
## 23933 9
## 23934 5
## 23935 9
## 23936 5
## 23937 1
## 23938 6
## 23939 10
## 23940 11
## 23941 11
## 23942 7
## 23943 1
## 23944 6
## 23945 6
## 23946 28
## 23947 5
## 23948 5
## 23949 7
## 23950 7
## 23951 8
## 23952 7
## 23953 5
## 23954 5
## 23955 1
## 23956 5
## 23957 3
## 23958 9
## 23959 28
## 23960 7
## 23961 5
## 23962 7
## 23963 9
## 23964 10
## 23965 28
## 23966 28
## 23967 6
## 23968 6
## 23969 6
## 23970 2
## 23971 7
## 23972 2
## 23973 2
## 23974 6
## 23975 2
## 23976 7
## 23977 7
## 23978 8
## 23979 2
## 23980 6
## 23981 9
## 23982 1
## 23983 7
## 23984 29
## 23985 2
## 23986 6
## 23987 1
## 23988 5
## 23989 5
## 23990 5
## 23991 2
## 23992 27
## 23993 7
## 23994 8
## 23995 9
## 23996 8
## 23997 8
## 23998 6
## 23999 6
## 24000 6
## 24001 8
## 24002 8
## 24003 9
## 24004 26
## 24005 3
## 24006 8
## 24007 8
## 24008 8
## 24009 8
## 24010 8
## 24011 8
## 24012 9
## 24013 20
## 24014 8
## 24015 8
## 24016 9
## 24017 7
## 24018 5
## 24019 8
## 24020 8
## 24021 26
## 24022 7
## 24023 9
## 24024 9
## 24025 5
## 24026 8
## 24027 6
## 24028 4
## 24029 8
## 24030 8
## 24031 7
## 24032 7
## 24033 8
## 24034 7
## 24035 10
## 24036 4
## 24037 2
## 24038 10
## 24039 9
## 24040 9
## 24041 10
## 24042 10
## 24043 10
## 24044 10
## 24045 10
## 24046 10
## 24047 2
## 24048 4
## 24049 8
## 24050 11
## 24051 10
## 24052 9
## 24053 9
## 24054 10
## 24055 7
## 24056 4
## 24057 9
## 24058 27
## 24059 11
## 24060 7
## 24061 5
## 24062 26
## 24063 2
## 24064 8
## 24065 5
## 24066 4
## 24067 5
## 24068 5
## 24069 10
## 24070 5
## 24071 9
## 24072 5
## 24073 5
## 24074 5
## 24075 1
## 24076 8
## 24077 6
## 24078 21
## 24079 10
## 24080 5
## 24081 1
## 24082 11
## 24083 11
## 24084 8
## 24085 11
## 24086 11
## 24087 30
## 24088 13
## 24089 9
## 24090 11
## 24091 5
## 24092 1
## 24093 11
## 24094 1
## 24095 5
## 24096 11
## 24097 11
## 24098 11
## 24099 11
## 24100 8
## 24101 8
## 24102 11
## 24103 11
## 24104 11
## 24105 9
## 24106 8
## 24107 5
## 24108 9
## 24109 5
## 24110 11
## 24111 10
## 24112 4
## 24113 4
## 24114 10
## 24115 11
## 24116 12
## 24117 15
## 24118 11
## 24119 12
## 24120 11
## 24121 5
## 24122 11
## 24123 12
## 24124 15
## 24125 5
## 24126 22
## 24127 27
## 24128 8
## 24129 10
## 24130 2
## 24131 8
## 24132 8
## 24133 12
## 24134 12
## 24135 9
## 24136 12
## 24137 8
## 24138 13
## 24139 9
## 24140 9
## 24141 9
## 24142 9
## 24143 9
## 24144 7
## 24145 7
## 24146 7
## 24147 7
## 24148 7
## 24149 7
## 24150 7
## 24151 7
## 24152 7
## 24153 7
## 24154 7
## 24155 7
## 24156 7
## 24157 7
## 24158 7
## 24159 7
## 24160 7
## 24161 11
## 24162 9
## 24163 8
## 24164 12
## 24165 12
## 24166 12
## 24167 12
## 24168 12
## 24169 12
## 24170 12
## 24171 12
## 24172 12
## 24173 12
## 24174 12
## 24175 12
## 24176 12
## 24177 12
## 24178 9
## 24179 12
## 24180 12
## 24181 12
## 24182 12
## 24183 12
## 24184 12
## 24185 13
## 24186 7
## 24187 12
## 24188 5
## 24189 5
## 24190 12
## 24191 7
## 24192 8
## 24193 12
## 24194 12
## 24195 13
## 24196 12
## 24197 11
## 24198 12
## 24199 15
## 24200 12
## 24201 15
## 24202 8
## 24203 8
## 24204 14
## 24205 12
## 24206 15
## 24207 14
## 24208 13
## 24209 11
## 24210 6
## 24211 12
## 24212 15
## 24213 14
## 24214 8
## 24215 12
## 24216 15
## 24217 10
## 24218 12
## 24219 15
## 24220 13
## 24221 12
## 24222 15
## 24223 13
## 24224 14
## 24225 12
## 24226 12
## 24227 15
## 24228 7
## 24229 12
## 24230 15
## 24231 16
## 24232 12
## 24233 15
## 24234 12
## 24235 15
## 24236 12
## 24237 15
## 24238 12
## 24239 15
## 24240 12
## 24241 15
## 24242 12
## 24243 15
## 24244 8
## 24245 13
## 24246 12
## 24247 15
## 24248 12
## 24249 15
## 24250 12
## 24251 15
## 24252 6
## 24253 12
## 24254 15
## 24255 14
## 24256 12
## 24257 15
## 24258 12
## 24259 15
## 24260 12
## 24261 15
## 24262 12
## 24263 15
## 24264 12
## 24265 15
## 24266 12
## 24267 15
## 24268 12
## 24269 15
## 24270 5
## 24271 6
## 24272 20
## 24273 23
## 24274 5
## 24275 8
## 24276 13
## 24277 1
## 24278 12
## 24279 15
## 24280 12
## 24281 15
## 24282 9
## 24283 9
## 24284 9
## 24285 12
## 24286 13
## 24287 2
## 24288 15
## 24289 11
## 24290 11
## 24291 16
## 24292 6
## 24293 15
## 24294 14
## 24295 15
## 24296 15
## 24297 16
## 24298 7
## 24299 17
## 24300 17
## 24301 10
## 24302 16
## 24303 16
## 24304 10
## 24305 10
## 24306 16
## 24307 16
## 24308 14
## 24309 16
## 24310 26
## 24311 28
## 24312 8
## 24313 6
## 24314 10
## 24315 14
## 24316 16
## 24317 27
## 24318 24
## 24319 14
## 24320 10
## 24321 16
## 24322 13
## 24323 13
## 24324 14
## 24325 17
## 24326 16
## 24327 13
## 24328 8
## 24329 13
## 24330 7
## 24331 11
## 24332 13
## 24333 14
## 24334 17
## 24335 16
## 24336 5
## 24337 16
## 24338 5
## 24339 17
## 24340 14
## 24341 18
## 24342 10
## 24343 16
## 24344 16
## 24345 16
## 24346 8
## 24347 15
## 24348 18
## 24349 18
## 24350 9
## 24351 17
## 24352 17
## 24353 17
## 24354 17
## 24355 17
## 24356 17
## 24357 17
## 24358 17
## 24359 17
## 24360 12
## 24361 12
## 24362 5
## 24363 5
## 24364 12
## 24365 8
## 24366 18
## 24367 23
## 24368 7
## 24369 5
## 24370 18
## 24371 18
## 24372 18
## 24373 18
## 24374 16
## 24375 19
## 24376 19
## 24377 5
## 24378 17
## 24379 19
## 24380 17
## 24381 17
## 24382 16
## 24383 16
## 24384 16
## 24385 18
## 24386 9
## 24387 17
## 24388 14
## 24389 16
## 24390 19
## 24391 16
## 24392 11
## 24393 16
## 24394 19
## 24395 19
## 24396 19
## 24397 18
## 24398 18
## 24399 28
## 24400 29
## 24401 16
## 24402 13
## 24403 23
## 24404 19
## 24405 16
## 24406 16
## 24407 19
## 24408 19
## 24409 19
## 24410 15
## 24411 16
## 24412 17
## 24413 19
## 24414 19
## 24415 17
## 24416 15
## 24417 14
## 24418 15
## 24419 12
## 24420 19
## 24421 19
## 24422 3
## 24423 12
## 24424 16
## 24425 20
## 24426 14
## 24427 20
## 24428 20
## 24429 20
## 24430 19
## 24431 19
## 24432 19
## 24433 18
## 24434 15
## 24435 15
## 24436 15
## 24437 15
## 24438 19
## 24439 19
## 24440 17
## 24441 14
## 24442 14
## 24443 14
## 24444 14
## 24445 19
## 24446 21
## 24447 14
## 24448 19
## 24449 21
## 24450 18
## 24451 8
## 24452 15
## 24453 15
## 24454 18
## 24455 15
## 24456 15
## 24457 19
## 24458 15
## 24459 17
## 24460 16
## 24461 20
## 24462 20
## 24463 20
## 24464 21
## 24465 20
## 24466 20
## 24467 19
## 24468 17
## 24469 17
## 24470 19
## 24471 19
## 24472 20
## 24473 20
## 24474 18
## 24475 20
## 24476 21
## 24477 19
## 24478 22
## 24479 20
## 24480 22
## 24481 19
## 24482 16
## 24483 22
## 24484 22
## 24485 18
## 24486 13
## 24487 17
## 24488 18
## 24489 16
## 24490 20
## 24491 14
## 24492 22
## 24493 14
## 24494 18
## 24495 14
## 24496 23
## 24497 17
## 24498 14
## 24499 19
## 24500 17
## 24501 17
## 24502 21
## 24503 21
## 24504 17
## 24505 17
## 24506 23
## 24507 23
## 24508 23
## 24509 23
## 24510 17
## 24511 21
## 24512 21
## 24513 23
## 24514 22
## 24515 17
## 24516 23
## 24517 23
## 24518 22
## 24519 21
## 24520 19
## 24521 21
## 24522 17
## 24523 20
## 24524 22
## 24525 22
## 24526 18
## 24527 23
## 24528 2
## 24529 18
## 24530 18
## 24531 22
## 24532 18
## 24533 17
## 24534 22
## 24535 18
## 24536 21
## 24537 18
## 24538 18
## 24539 18
## 24540 24
## 24541 24
## 24542 24
## 24543 24
## 24544 18
## 24545 18
## 24546 23
## 24547 22
## 24548 24
## 24549 24
## 24550 23
## 24551 16
## 24552 18
## 24553 20
## 24554 22
## 24555 22
## 24556 23
## 24557 18
## 24558 17
## 24559 17
## 24560 21
## 24561 17
## 24562 17
## 24563 19
## 24564 12
## 24565 19
## 24566 19
## 24567 19
## 24568 19
## 24569 21
## 24570 24
## 24571 19
## 24572 19
## 24573 19
## 24574 19
## 24575 19
## 24576 19
## 24577 12
## 24578 16
## 24579 19
## 24580 25
## 24581 25
## 24582 19
## 24583 22
## 24584 25
## 24585 19
## 24586 19
## 24587 22
## 24588 19
## 24589 25
## 24590 17
## 24591 25
## 24592 19
## 24593 21
## 24594 25
## 24595 23
## 24596 23
## 24597 23
## 24598 21
## 24599 24
## 24600 25
## 24601 22
## 24602 19
## 24603 18
## 24604 25
## 24605 26
## 24606 19
## 24607 22
## 24608 15
## 24609 19
## 24610 15
## 24611 23
## 24612 12
## 24613 26
## 24614 8
## 24615 22
## 24616 22
## 24617 21
## 24618 18
## 24619 18
## 24620 22
## 24621 25
## 24622 26
## 24623 18
## 24624 22
## 24625 25
## 24626 22
## 24627 20
## 24628 26
## 24629 26
## 24630 20
## 24631 20
## 24632 25
## 24633 25
## 24634 21
## 24635 21
## 24636 21
## 24637 21
## 24638 25
## 24639 21
## 24640 26
## 24641 26
## 24642 22
## 24643 21
## 24644 26
## 24645 24
## 24646 23
## 24647 22
## 24648 22
## 24649 21
## 24650 26
## 24651 22
## 24652 28
## 24653 22
## 24654 27
## 24655 27
## 24656 25
## 24657 25
## 24658 27
## 24659 27
## 24660 26
## 24661 29
## 24662 28
## 24663 26
## 24664 25
## 24665 22
## 24666 22
## 24667 22
## 24668 28
## 24669 30
## 24670 19
## 24671 19
## 24672 24
## 24673 24
## 24674 25
## 24675 29
## 24676 29
## 24677 29
## 24678 28
## 24679 29
## 24680 29
## 24681 23
## 24682 25
## 24683 23
## 24684 29
## 24685 18
## 24686 28
## 24687 28
## 24688 30
## 24689 14
## 24690 23
## 24691 31
## 24692 24
## 24693 25
## 24694 30
## 24695 31
## 24696 26
## 24697 30
## 24698 18
## 24699 7
## 24700 29
## 24701 30
## 24702 13
## 24703 30
## 24704 29
## 24705 30
## 24706 24
## 24707 30
## 24708 29
## 24709 31
## 24710 31
## 24711 31
## 24712 11
## 24713 31
## 24714 27
## 24715 27
## 24716 29
## 24717 31
## 24718 30
## 24719 30
## 24720 31
## 24721 31
## 24722 29
## 24723 31
## 24724 31
## 24725 30
## 24726 25
## 24727 18
## 24728 31
## 24729 26
## 24730 26
## 24731 26
## 24732 31
## 24733 19
## 24734 30
## 24735 1
## 24736 1
## 24737 1
## 24738 30
## 24739 30
## 24740 30
## 24741 1
## 24742 1
## 24743 1
## 24744 1
## 24745 22
## 24746 1
## 24747 25
## 24748 31
## 24749 30
## 24750 26
## 24751 25
## 24752 30
## 24753 25
## 24754 31
## 24755 29
## 24756 26
## 24757 26
## 24758 30
## 24759 29
## 24760 18
## 24761 1
## 24762 30
## 24763 22
## 24764 26
## 24765 30
## 24766 23
## 24767 30
## 24768 2
## 24769 27
## 24770 27
## 24771 30
## 24772 2
## 24773 1
## 24774 2
## 24775 30
## 24776 30
## 24777 2
## 24778 2
## 24779 2
## 24780 2
## 24781 2
## 24782 1
## 24783 2
## 24784 2
## 24785 2
## 24786 2
## 24787 1
## 24788 30
## 24789 30
## 24790 30
## 24791 27
## 24792 28
## 24793 2
## 24794 30
## 24795 1
## 24796 31
## 24797 29
## 24798 31
## 24799 31
## 24800 3
## 24801 30
## 24802 31
## 24803 4
## 24804 30
## 24805 30
## 24806 2
## 24807 4
## 24808 30
## 24809 30
## 24810 31
## 24811 30
## 24812 28
## 24813 30
## 24814 28
## 24815 3
## 24816 30
## 24817 28
## 24818 3
## 24819 4
## 24820 2
## 24821 2
## 24822 2
## 24823 29
## 24824 2
## 24825 29
## 24826 3
## 24827 30
## 24828 4
## 24829 27
## 24830 3
## 24831 29
## 24832 29
## 24833 29
## 24834 29
## 24835 29
## 24836 3
## 24837 30
## 24838 3
## 24839 3
## 24840 1
## 24841 30
## 24842 3
## 24843 3
## 24844 1
## 24845 30
## 24846 29
## 24847 30
## 24848 2
## 24849 30
## 24850 2
## 24851 30
## 24852 2
## 24853 2
## 24854 27
## 24855 31
## 24856 4
## 24857 2
## 24858 4
## 24859 5
## 24860 6
## 24861 4
## 24862 3
## 24863 4
## 24864 2
## 24865 30
## 24866 1
## 24867 4
## 24868 1
## 24869 3
## 24870 23
## 24871 6
## 24872 6
## 24873 29
## 24874 31
## 24875 6
## 24876 31
## 24877 1
## 24878 31
## 24879 31
## 24880 31
## 24881 31
## 24882 31
## 24883 1
## 24884 31
## 24885 28
## 24886 1
## 24887 31
## 24888 7
## 24889 25
## 24890 29
## 24891 4
## 24892 6
## 24893 5
## 24894 5
## 24895 6
## 24896 6
## 24897 1
## 24898 3
## 24899 3
## 24900 30
## 24901 3
## 24902 1
## 24903 7
## 24904 30
## 24905 4
## 24906 2
## 24907 2
## 24908 4
## 24909 2
## 24910 30
## 24911 2
## 24912 30
## 24913 2
## 24914 2
## 24915 2
## 24916 23
## 24917 5
## 24918 8
## 24919 6
## 24920 2
## 24921 2
## 24922 4
## 24923 8
## 24924 2
## 24925 6
## 24926 7
## 24927 4
## 24928 2
## 24929 7
## 24930 5
## 24931 2
## 24932 6
## 24933 31
## 24934 2
## 24935 2
## 24936 5
## 24937 1
## 24938 1
## 24939 6
## 24940 6
## 24941 5
## 24942 4
## 24943 1
## 24944 4
## 24945 3
## 24946 8
## 24947 3
## 24948 9
## 24949 9
## 24950 6
## 24951 6
## 24952 3
## 24953 5
## 24954 9
## 24955 8
## 24956 8
## 24957 5
## 24958 3
## 24959 9
## 24960 7
## 24961 1
## 24962 7
## 24963 4
## 24964 4
## 24965 8
## 24966 1
## 24967 4
## 24968 1
## 24969 7
## 24970 10
## 24971 9
## 24972 9
## 24973 30
## 24974 2
## 24975 6
## 24976 4
## 24977 5
## 24978 6
## 24979 4
## 24980 9
## 24981 6
## 24982 5
## 24983 6
## 24984 6
## 24985 4
## 24986 4
## 24987 31
## 24988 8
## 24989 4
## 24990 4
## 24991 10
## 24992 4
## 24993 4
## 24994 7
## 24995 6
## 24996 10
## 24997 7
## 24998 7
## 24999 31
## [ reached 'max' / getOption("max.print") -- omitted 94391 rows ]
hotels %>%
select(adults, children, babies) %>%
arrange(babies)
## adults children babies
## 1 2 0 0
## 2 2 0 0
## 3 1 0 0
## 4 1 0 0
## 5 2 0 0
## 6 2 0 0
## 7 2 0 0
## 8 2 0 0
## 9 2 0 0
## 10 2 0 0
## 11 2 0 0
## 12 2 0 0
## 13 2 0 0
## 14 2 1 0
## 15 2 0 0
## 16 2 0 0
## 17 2 0 0
## 18 2 0 0
## 19 2 0 0
## 20 2 0 0
## 21 1 0 0
## 22 2 0 0
## 23 2 0 0
## 24 2 0 0
## 25 2 0 0
## 26 2 0 0
## 27 2 0 0
## 28 2 0 0
## 29 2 0 0
## 30 2 0 0
## 31 1 0 0
## 32 2 0 0
## 33 2 0 0
## 34 2 0 0
## 35 3 0 0
## 36 3 0 0
## 37 2 0 0
## 38 3 0 0
## 39 3 0 0
## 40 2 0 0
## 41 2 0 0
## 42 2 0 0
## 43 2 0 0
## 44 2 0 0
## 45 2 0 0
## 46 2 2 0
## 47 2 0 0
## 48 2 0 0
## 49 2 0 0
## 50 2 0 0
## 51 2 0 0
## 52 2 0 0
## 53 2 0 0
## 54 2 0 0
## 55 2 0 0
## 56 2 2 0
## 57 2 0 0
## 58 2 0 0
## 59 2 0 0
## 60 2 0 0
## 61 2 0 0
## 62 2 0 0
## 63 2 0 0
## 64 2 0 0
## 65 2 0 0
## 66 2 2 0
## 67 2 0 0
## 68 2 0 0
## 69 3 0 0
## 70 2 0 0
## 71 2 0 0
## 72 2 0 0
## 73 2 0 0
## 74 2 0 0
## 75 3 0 0
## 76 2 0 0
## 77 2 0 0
## 78 1 0 0
## 79 2 0 0
## 80 3 0 0
## 81 2 0 0
## 82 2 0 0
## 83 2 0 0
## 84 2 0 0
## 85 2 0 0
## 86 2 0 0
## 87 2 0 0
## 88 2 1 0
## 89 2 0 0
## 90 2 0 0
## 91 2 0 0
## 92 2 0 0
## 93 2 0 0
## 94 2 0 0
## 95 2 0 0
## 96 2 0 0
## 97 2 0 0
## 98 3 0 0
## 99 2 1 0
## 100 2 0 0
## 101 2 0 0
## 102 2 0 0
## 103 1 2 0
## 104 2 0 0
## 105 2 0 0
## 106 2 2 0
## 107 3 0 0
## 108 2 0 0
## 109 2 0 0
## 110 2 0 0
## 111 2 0 0
## 112 3 0 0
## 113 2 0 0
## 114 2 0 0
## 115 2 0 0
## 116 2 0 0
## 117 2 1 0
## 118 2 2 0
## 119 2 0 0
## 120 1 0 0
## 121 1 0 0
## 122 2 0 0
## 123 2 0 0
## 124 4 0 0
## 125 2 0 0
## 126 2 0 0
## 127 2 0 0
## 128 2 0 0
## 129 2 0 0
## 130 2 0 0
## 131 2 0 0
## 132 2 0 0
## 133 1 0 0
## 134 1 0 0
## 135 2 0 0
## 136 1 0 0
## 137 2 0 0
## 138 2 0 0
## 139 3 0 0
## 140 2 0 0
## 141 2 0 0
## 142 2 1 0
## 143 2 0 0
## 144 2 0 0
## 145 2 0 0
## 146 2 0 0
## 147 2 2 0
## 148 2 0 0
## 149 2 2 0
## 150 2 0 0
## 151 2 0 0
## 152 2 0 0
## 153 2 2 0
## 154 2 0 0
## 155 3 0 0
## 156 2 0 0
## 157 1 0 0
## 158 2 0 0
## 159 2 2 0
## 160 2 0 0
## 161 2 0 0
## 162 3 0 0
## 163 2 2 0
## 164 3 0 0
## 165 2 0 0
## 166 1 0 0
## 167 2 1 0
## 168 2 0 0
## 169 2 0 0
## 170 2 0 0
## 171 2 0 0
## 172 2 0 0
## 173 2 0 0
## 174 2 0 0
## 175 2 0 0
## 176 2 0 0
## 177 2 0 0
## 178 2 2 0
## 179 1 0 0
## 180 2 0 0
## 181 2 0 0
## 182 2 0 0
## 183 2 0 0
## 184 2 0 0
## 185 2 0 0
## 186 2 0 0
## 187 1 0 0
## 188 2 0 0
## 189 2 0 0
## 190 2 0 0
## 191 2 0 0
## 192 2 0 0
## 193 2 1 0
## 194 2 0 0
## 195 2 0 0
## 196 1 0 0
## 197 3 0 0
## 198 1 0 0
## 199 3 2 0
## 200 2 0 0
## 201 3 0 0
## 202 2 0 0
## 203 2 0 0
## 204 2 0 0
## 205 2 0 0
## 206 2 0 0
## 207 2 0 0
## 208 2 0 0
## 209 2 0 0
## 210 2 0 0
## 211 2 0 0
## 212 2 0 0
## 213 2 0 0
## 214 2 0 0
## 215 1 0 0
## 216 2 0 0
## 217 2 0 0
## 218 2 0 0
## 219 2 0 0
## 220 2 0 0
## 221 2 1 0
## 222 2 0 0
## 223 2 0 0
## 224 2 0 0
## 225 3 0 0
## 226 3 0 0
## 227 2 0 0
## 228 2 2 0
## 229 3 0 0
## 230 2 2 0
## 231 2 0 0
## 232 2 2 0
## 233 2 2 0
## 234 2 0 0
## 235 2 0 0
## 236 1 0 0
## 237 2 0 0
## 238 2 0 0
## 239 2 0 0
## 240 2 0 0
## 241 2 0 0
## 242 2 0 0
## 243 2 0 0
## 244 2 0 0
## 245 2 0 0
## 246 2 0 0
## 247 2 0 0
## 248 2 0 0
## 249 2 0 0
## 250 2 0 0
## 251 2 1 0
## 252 2 0 0
## 253 2 0 0
## 254 2 0 0
## 255 2 0 0
## 256 2 0 0
## 257 2 0 0
## 258 2 0 0
## 259 2 0 0
## 260 2 0 0
## 261 2 2 0
## 262 2 0 0
## 263 2 0 0
## 264 2 0 0
## 265 2 0 0
## 266 1 0 0
## 267 2 1 0
## 268 3 1 0
## 269 2 0 0
## 270 2 0 0
## 271 2 0 0
## 272 2 1 0
## 273 2 0 0
## 274 2 1 0
## 275 2 0 0
## 276 2 0 0
## 277 3 0 0
## 278 2 0 0
## 279 2 0 0
## 280 2 0 0
## 281 2 0 0
## 282 2 0 0
## 283 2 0 0
## 284 1 0 0
## 285 2 0 0
## 286 2 0 0
## 287 2 0 0
## 288 2 0 0
## 289 2 0 0
## 290 2 0 0
## 291 2 0 0
## 292 2 0 0
## 293 2 0 0
## 294 2 0 0
## 295 2 0 0
## 296 2 2 0
## 297 2 0 0
## 298 2 0 0
## 299 2 0 0
## 300 2 2 0
## 301 2 0 0
## 302 2 1 0
## 303 2 0 0
## 304 2 0 0
## 305 2 0 0
## 306 2 0 0
## 307 3 1 0
## 308 2 0 0
## 309 2 0 0
## 310 2 0 0
## 311 2 0 0
## 312 2 0 0
## 313 2 0 0
## 314 2 0 0
## 315 2 0 0
## 316 2 0 0
## 317 2 0 0
## 318 2 0 0
## 319 2 10 0
## 320 2 0 0
## 321 2 0 0
## 322 2 2 0
## 323 2 0 0
## 324 2 0 0
## 325 2 0 0
## 326 2 0 0
## 327 2 0 0
## 328 2 0 0
## 329 2 0 0
## 330 2 0 0
## 331 2 2 0
## 332 2 0 0
## 333 2 0 0
## 334 2 2 0
## 335 2 0 0
## 336 2 0 0
## 337 2 0 0
## 338 2 0 0
## 339 2 0 0
## 340 2 0 0
## 341 2 0 0
## 342 2 0 0
## 343 4 0 0
## 344 2 0 0
## 345 2 0 0
## 346 2 0 0
## 347 2 0 0
## 348 2 0 0
## 349 2 0 0
## 350 2 0 0
## 351 2 0 0
## 352 1 0 0
## 353 2 0 0
## 354 2 0 0
## 355 2 0 0
## 356 2 0 0
## 357 2 0 0
## 358 2 0 0
## 359 2 0 0
## 360 2 0 0
## 361 2 0 0
## 362 3 0 0
## 363 2 0 0
## 364 2 0 0
## 365 1 0 0
## 366 2 0 0
## 367 2 0 0
## 368 2 0 0
## 369 2 1 0
## 370 2 0 0
## 371 2 0 0
## 372 2 0 0
## 373 2 0 0
## 374 2 0 0
## 375 2 0 0
## 376 1 0 0
## 377 2 0 0
## 378 2 0 0
## 379 2 0 0
## 380 2 0 0
## 381 2 0 0
## 382 2 0 0
## 383 2 0 0
## 384 2 1 0
## 385 2 2 0
## 386 1 0 0
## 387 2 0 0
## 388 2 0 0
## 389 2 0 0
## 390 2 0 0
## 391 2 0 0
## 392 2 0 0
## 393 2 0 0
## 394 2 0 0
## 395 3 0 0
## 396 1 0 0
## 397 2 0 0
## 398 2 0 0
## 399 2 0 0
## 400 2 0 0
## 401 2 2 0
## 402 2 0 0
## 403 2 0 0
## 404 2 0 0
## 405 2 0 0
## 406 2 0 0
## 407 2 2 0
## 408 2 0 0
## 409 1 0 0
## 410 2 0 0
## 411 2 0 0
## 412 3 0 0
## 413 1 0 0
## 414 2 0 0
## 415 2 0 0
## 416 3 0 0
## 417 1 0 0
## 418 2 0 0
## 419 2 0 0
## 420 2 0 0
## 421 2 0 0
## 422 2 0 0
## 423 2 2 0
## 424 2 0 0
## 425 2 0 0
## 426 1 0 0
## 427 2 0 0
## 428 2 2 0
## 429 2 2 0
## 430 2 0 0
## 431 2 1 0
## 432 2 0 0
## 433 2 0 0
## 434 2 0 0
## 435 2 0 0
## 436 2 0 0
## 437 2 0 0
## 438 2 0 0
## 439 2 0 0
## 440 1 0 0
## 441 2 0 0
## 442 2 0 0
## 443 2 0 0
## 444 2 0 0
## 445 2 0 0
## 446 2 0 0
## 447 1 0 0
## 448 2 0 0
## 449 2 0 0
## 450 2 0 0
## 451 2 0 0
## 452 2 0 0
## 453 2 0 0
## 454 2 0 0
## 455 2 0 0
## 456 2 0 0
## 457 2 0 0
## 458 2 0 0
## 459 2 0 0
## 460 2 0 0
## 461 1 0 0
## 462 2 0 0
## 463 2 0 0
## 464 2 1 0
## 465 2 0 0
## 466 1 0 0
## 467 2 0 0
## 468 1 0 0
## 469 1 0 0
## 470 2 0 0
## 471 3 1 0
## 472 2 0 0
## 473 2 2 0
## 474 2 0 0
## 475 2 2 0
## 476 2 0 0
## 477 2 0 0
## 478 2 0 0
## 479 2 0 0
## 480 2 0 0
## 481 2 0 0
## 482 3 0 0
## 483 2 0 0
## 484 2 0 0
## 485 2 1 0
## 486 2 1 0
## 487 2 0 0
## 488 2 0 0
## 489 2 0 0
## 490 2 0 0
## 491 2 0 0
## 492 2 0 0
## 493 2 0 0
## 494 2 1 0
## 495 2 0 0
## 496 3 0 0
## 497 2 0 0
## 498 2 0 0
## 499 2 1 0
## 500 2 2 0
## 501 2 0 0
## 502 2 0 0
## 503 2 0 0
## 504 2 0 0
## 505 2 0 0
## 506 2 2 0
## 507 2 0 0
## 508 2 0 0
## 509 2 0 0
## 510 2 2 0
## 511 1 2 0
## 512 1 0 0
## 513 2 1 0
## 514 2 0 0
## 515 2 0 0
## 516 2 0 0
## 517 2 0 0
## 518 2 0 0
## 519 2 0 0
## 520 2 0 0
## 521 2 0 0
## 522 2 0 0
## 523 2 0 0
## 524 2 0 0
## 525 2 0 0
## 526 2 0 0
## 527 2 0 0
## 528 2 0 0
## 529 2 0 0
## 530 2 0 0
## 531 2 0 0
## 532 2 0 0
## 533 2 0 0
## 534 2 0 0
## 535 1 0 0
## 536 2 0 0
## 537 2 2 0
## 538 2 0 0
## 539 2 0 0
## 540 2 0 0
## 541 2 0 0
## 542 2 0 0
## 543 2 0 0
## 544 2 1 0
## 545 2 2 0
## 546 2 0 0
## 547 2 0 0
## 548 2 0 0
## 549 2 2 0
## 550 2 0 0
## 551 2 0 0
## 552 1 0 0
## 553 2 2 0
## 554 1 0 0
## 555 2 0 0
## 556 2 0 0
## 557 2 0 0
## 558 2 0 0
## 559 2 0 0
## 560 2 0 0
## 561 2 0 0
## 562 2 2 0
## 563 2 0 0
## 564 2 0 0
## 565 2 2 0
## 566 2 0 0
## 567 2 0 0
## 568 2 0 0
## 569 2 1 0
## 570 2 2 0
## 571 2 0 0
## 572 2 0 0
## 573 2 1 0
## 574 2 0 0
## 575 2 1 0
## 576 2 0 0
## 577 2 0 0
## 578 2 1 0
## 579 2 0 0
## 580 2 0 0
## 581 2 0 0
## 582 2 0 0
## 583 2 0 0
## 584 1 0 0
## 585 2 0 0
## 586 2 2 0
## 587 2 0 0
## 588 3 0 0
## 589 3 0 0
## 590 2 0 0
## 591 3 0 0
## 592 2 0 0
## 593 2 1 0
## 594 2 0 0
## 595 2 0 0
## 596 2 0 0
## 597 2 0 0
## 598 2 1 0
## 599 2 2 0
## 600 2 0 0
## 601 2 0 0
## 602 2 2 0
## 603 2 0 0
## 604 2 0 0
## 605 2 0 0
## 606 1 0 0
## 607 2 0 0
## 608 2 0 0
## 609 2 0 0
## 610 2 0 0
## 611 2 2 0
## 612 2 0 0
## 613 2 0 0
## 614 2 0 0
## 615 2 0 0
## 616 3 0 0
## 617 2 0 0
## 618 2 0 0
## 619 2 0 0
## 620 2 0 0
## 621 2 0 0
## 622 2 0 0
## 623 2 0 0
## 624 2 0 0
## 625 2 2 0
## 626 2 0 0
## 627 2 0 0
## 628 2 0 0
## 629 2 0 0
## 630 3 0 0
## 631 2 0 0
## 632 2 0 0
## 633 2 0 0
## 634 2 0 0
## 635 2 0 0
## 636 2 0 0
## 637 2 0 0
## 638 2 0 0
## 639 2 0 0
## 640 2 0 0
## 641 2 0 0
## 642 2 0 0
## 643 2 2 0
## 644 2 0 0
## 645 2 0 0
## 646 2 0 0
## 647 2 0 0
## 648 3 0 0
## 649 2 1 0
## 650 2 0 0
## 651 2 0 0
## 652 2 0 0
## 653 2 0 0
## 654 2 0 0
## 655 2 0 0
## 656 2 0 0
## 657 2 0 0
## 658 2 0 0
## 659 2 0 0
## 660 2 0 0
## 661 2 0 0
## 662 2 0 0
## 663 2 1 0
## 664 2 0 0
## 665 2 0 0
## 666 2 2 0
## 667 2 2 0
## 668 2 0 0
## 669 2 0 0
## 670 2 0 0
## 671 2 0 0
## 672 2 0 0
## 673 2 0 0
## 674 2 0 0
## 675 2 0 0
## 676 2 0 0
## 677 2 0 0
## 678 1 0 0
## 679 3 0 0
## 680 2 0 0
## 681 2 0 0
## 682 1 0 0
## 683 2 0 0
## 684 2 0 0
## 685 2 0 0
## 686 2 0 0
## 687 2 0 0
## 688 2 1 0
## 689 3 0 0
## 690 2 0 0
## 691 2 0 0
## 692 2 0 0
## 693 2 0 0
## 694 2 0 0
## 695 2 1 0
## 696 2 0 0
## 697 3 0 0
## 698 2 1 0
## 699 2 0 0
## 700 2 2 0
## 701 2 0 0
## 702 2 0 0
## 703 2 0 0
## 704 2 0 0
## 705 2 0 0
## 706 2 0 0
## 707 2 2 0
## 708 2 0 0
## 709 2 2 0
## 710 1 0 0
## 711 2 0 0
## 712 2 0 0
## 713 2 0 0
## 714 2 0 0
## 715 2 0 0
## 716 2 0 0
## 717 2 0 0
## 718 2 0 0
## 719 2 0 0
## 720 2 0 0
## 721 2 0 0
## 722 2 1 0
## 723 2 0 0
## 724 2 0 0
## 725 2 0 0
## 726 2 0 0
## 727 2 1 0
## 728 2 0 0
## 729 2 0 0
## 730 2 0 0
## 731 2 0 0
## 732 2 0 0
## 733 2 0 0
## 734 2 0 0
## 735 3 0 0
## 736 2 0 0
## 737 2 0 0
## 738 2 0 0
## 739 2 0 0
## 740 2 0 0
## 741 2 0 0
## 742 2 0 0
## 743 2 0 0
## 744 2 1 0
## 745 2 1 0
## 746 2 0 0
## 747 2 2 0
## 748 2 0 0
## 749 2 0 0
## 750 2 0 0
## 751 2 0 0
## 752 2 0 0
## 753 2 0 0
## 754 2 0 0
## 755 2 0 0
## 756 2 0 0
## 757 2 0 0
## 758 2 0 0
## 759 2 0 0
## 760 2 0 0
## 761 2 0 0
## 762 2 0 0
## 763 2 0 0
## 764 3 0 0
## 765 2 0 0
## 766 2 2 0
## 767 2 0 0
## 768 2 0 0
## 769 2 0 0
## 770 2 0 0
## 771 2 0 0
## 772 2 0 0
## 773 2 0 0
## 774 2 0 0
## 775 2 0 0
## 776 2 0 0
## 777 2 0 0
## 778 2 0 0
## 779 1 0 0
## 780 1 0 0
## 781 2 0 0
## 782 2 0 0
## 783 3 1 0
## 784 2 0 0
## 785 2 0 0
## 786 2 0 0
## 787 2 2 0
## 788 2 1 0
## 789 2 0 0
## 790 2 0 0
## 791 2 0 0
## 792 2 0 0
## 793 2 0 0
## 794 2 0 0
## 795 2 0 0
## 796 2 0 0
## 797 2 0 0
## 798 1 0 0
## 799 2 0 0
## 800 2 2 0
## 801 2 0 0
## 802 2 0 0
## 803 2 0 0
## 804 1 0 0
## 805 2 0 0
## 806 2 0 0
## 807 2 0 0
## 808 2 0 0
## 809 2 0 0
## 810 2 0 0
## 811 2 0 0
## 812 2 2 0
## 813 2 0 0
## 814 2 0 0
## 815 2 0 0
## 816 2 0 0
## 817 2 0 0
## 818 2 0 0
## 819 2 0 0
## 820 1 0 0
## 821 2 2 0
## 822 2 0 0
## 823 1 0 0
## 824 2 0 0
## 825 2 0 0
## 826 2 0 0
## 827 2 0 0
## 828 2 0 0
## 829 2 0 0
## 830 2 0 0
## 831 2 0 0
## 832 2 0 0
## 833 2 0 0
## 834 2 2 0
## 835 2 0 0
## 836 2 0 0
## 837 2 2 0
## 838 2 0 0
## 839 2 0 0
## 840 2 2 0
## 841 2 2 0
## 842 2 0 0
## 843 2 0 0
## 844 2 0 0
## 845 2 1 0
## 846 3 0 0
## 847 2 0 0
## 848 2 0 0
## 849 2 0 0
## 850 2 2 0
## 851 2 1 0
## 852 2 2 0
## 853 1 0 0
## 854 2 0 0
## 855 2 0 0
## 856 2 0 0
## 857 2 0 0
## 858 3 0 0
## 859 2 1 0
## 860 2 0 0
## 861 2 0 0
## 862 2 0 0
## 863 2 0 0
## 864 2 0 0
## 865 2 0 0
## 866 2 2 0
## 867 2 0 0
## 868 2 0 0
## 869 2 0 0
## 870 2 0 0
## 871 2 2 0
## 872 2 0 0
## 873 1 0 0
## 874 2 0 0
## 875 2 0 0
## 876 2 0 0
## 877 2 0 0
## 878 2 0 0
## 879 1 0 0
## 880 2 0 0
## 881 2 0 0
## 882 2 0 0
## 883 2 0 0
## 884 2 0 0
## 885 2 0 0
## 886 2 0 0
## 887 2 0 0
## 888 2 0 0
## 889 3 0 0
## 890 2 0 0
## 891 2 0 0
## 892 2 0 0
## 893 2 0 0
## 894 2 0 0
## 895 2 0 0
## 896 2 0 0
## 897 2 0 0
## 898 2 0 0
## 899 2 0 0
## 900 3 0 0
## 901 2 0 0
## 902 1 0 0
## 903 2 0 0
## 904 2 0 0
## 905 2 0 0
## 906 2 2 0
## 907 2 0 0
## 908 2 0 0
## 909 2 0 0
## 910 3 0 0
## 911 2 0 0
## 912 2 0 0
## 913 2 0 0
## 914 3 1 0
## 915 2 0 0
## 916 2 0 0
## 917 2 2 0
## 918 2 1 0
## 919 2 0 0
## 920 2 0 0
## 921 2 0 0
## 922 2 0 0
## 923 2 0 0
## 924 2 2 0
## 925 2 0 0
## 926 2 0 0
## 927 2 0 0
## 928 2 0 0
## 929 2 0 0
## 930 2 0 0
## 931 2 2 0
## 932 2 0 0
## 933 2 0 0
## 934 2 0 0
## 935 2 0 0
## 936 2 0 0
## 937 2 0 0
## 938 2 0 0
## 939 2 0 0
## 940 2 0 0
## 941 2 2 0
## 942 2 0 0
## 943 2 0 0
## 944 2 0 0
## 945 2 0 0
## 946 2 0 0
## 947 2 0 0
## 948 2 0 0
## 949 2 0 0
## 950 2 0 0
## 951 2 2 0
## 952 2 2 0
## 953 2 2 0
## 954 2 0 0
## 955 2 0 0
## 956 2 0 0
## 957 2 0 0
## 958 2 0 0
## 959 2 0 0
## 960 2 0 0
## 961 1 0 0
## 962 2 0 0
## 963 2 0 0
## 964 2 0 0
## 965 2 0 0
## 966 2 1 0
## 967 2 0 0
## 968 2 0 0
## 969 2 0 0
## 970 2 0 0
## 971 2 0 0
## 972 1 0 0
## 973 2 0 0
## 974 2 0 0
## 975 2 0 0
## 976 2 0 0
## 977 2 0 0
## 978 2 0 0
## 979 2 2 0
## 980 2 0 0
## 981 2 0 0
## 982 2 0 0
## 983 2 0 0
## 984 1 0 0
## 985 2 0 0
## 986 2 1 0
## 987 2 0 0
## 988 2 0 0
## 989 2 0 0
## 990 2 0 0
## 991 2 0 0
## 992 2 0 0
## 993 2 0 0
## 994 2 0 0
## 995 2 0 0
## 996 2 0 0
## 997 2 0 0
## 998 2 1 0
## 999 2 0 0
## 1000 2 2 0
## 1001 4 0 0
## 1002 2 0 0
## 1003 2 0 0
## 1004 2 0 0
## 1005 2 0 0
## 1006 2 0 0
## 1007 2 0 0
## 1008 2 0 0
## 1009 2 0 0
## 1010 2 0 0
## 1011 2 0 0
## 1012 2 0 0
## 1013 1 0 0
## 1014 2 0 0
## 1015 2 0 0
## 1016 2 0 0
## 1017 1 1 0
## 1018 2 0 0
## 1019 2 0 0
## 1020 2 0 0
## 1021 3 0 0
## 1022 2 0 0
## 1023 2 0 0
## 1024 2 0 0
## 1025 2 0 0
## 1026 2 0 0
## 1027 2 0 0
## 1028 2 0 0
## 1029 2 0 0
## 1030 2 1 0
## 1031 2 1 0
## 1032 2 0 0
## 1033 2 2 0
## 1034 2 0 0
## 1035 2 0 0
## 1036 1 0 0
## 1037 2 0 0
## 1038 2 0 0
## 1039 2 0 0
## 1040 2 0 0
## 1041 2 0 0
## 1042 2 0 0
## 1043 2 0 0
## 1044 1 0 0
## 1045 2 0 0
## 1046 2 0 0
## 1047 2 0 0
## 1048 2 0 0
## 1049 2 0 0
## 1050 2 0 0
## 1051 3 0 0
## 1052 2 0 0
## 1053 2 0 0
## 1054 2 0 0
## 1055 2 0 0
## 1056 2 0 0
## 1057 2 0 0
## 1058 2 0 0
## 1059 2 0 0
## 1060 2 0 0
## 1061 2 0 0
## 1062 2 0 0
## 1063 1 0 0
## 1064 2 1 0
## 1065 1 0 0
## 1066 2 0 0
## 1067 2 0 0
## 1068 2 2 0
## 1069 2 0 0
## 1070 2 0 0
## 1071 2 0 0
## 1072 2 0 0
## 1073 3 0 0
## 1074 2 0 0
## 1075 2 2 0
## 1076 2 0 0
## 1077 2 0 0
## 1078 3 0 0
## 1079 2 0 0
## 1080 2 0 0
## 1081 2 0 0
## 1082 2 0 0
## 1083 2 0 0
## 1084 2 0 0
## 1085 3 0 0
## 1086 2 1 0
## 1087 2 0 0
## 1088 2 0 0
## 1089 2 0 0
## 1090 2 2 0
## 1091 2 0 0
## 1092 2 0 0
## 1093 2 0 0
## 1094 2 2 0
## 1095 2 0 0
## 1096 2 0 0
## 1097 3 0 0
## 1098 3 0 0
## 1099 2 0 0
## 1100 2 0 0
## 1101 2 0 0
## 1102 2 0 0
## 1103 3 0 0
## 1104 2 0 0
## 1105 2 0 0
## 1106 3 0 0
## 1107 2 0 0
## 1108 2 0 0
## 1109 2 0 0
## 1110 2 0 0
## 1111 2 0 0
## 1112 2 1 0
## 1113 2 0 0
## 1114 2 0 0
## 1115 2 0 0
## 1116 3 1 0
## 1117 2 0 0
## 1118 2 0 0
## 1119 2 1 0
## 1120 2 0 0
## 1121 2 0 0
## 1122 2 0 0
## 1123 1 0 0
## 1124 1 0 0
## 1125 2 0 0
## 1126 1 0 0
## 1127 1 0 0
## 1128 2 0 0
## 1129 2 0 0
## 1130 1 0 0
## 1131 1 0 0
## 1132 2 0 0
## 1133 2 0 0
## 1134 2 0 0
## 1135 2 0 0
## 1136 2 0 0
## 1137 2 0 0
## 1138 2 0 0
## 1139 2 0 0
## 1140 2 0 0
## 1141 2 0 0
## 1142 2 1 0
## 1143 2 0 0
## 1144 2 0 0
## 1145 2 0 0
## 1146 2 2 0
## 1147 2 0 0
## 1148 2 2 0
## 1149 2 0 0
## 1150 2 0 0
## 1151 2 0 0
## 1152 2 0 0
## 1153 3 0 0
## 1154 3 0 0
## 1155 2 0 0
## 1156 2 1 0
## 1157 2 0 0
## 1158 2 0 0
## 1159 2 1 0
## 1160 2 0 0
## 1161 2 0 0
## 1162 2 0 0
## 1163 1 0 0
## 1164 2 0 0
## 1165 2 0 0
## 1166 2 0 0
## 1167 2 0 0
## 1168 2 0 0
## 1169 2 0 0
## 1170 2 0 0
## 1171 2 0 0
## 1172 2 0 0
## 1173 2 0 0
## 1174 2 0 0
## 1175 2 0 0
## 1176 2 2 0
## 1177 2 1 0
## 1178 2 2 0
## 1179 2 0 0
## 1180 2 0 0
## 1181 2 0 0
## 1182 3 0 0
## 1183 2 2 0
## 1184 2 1 0
## 1185 2 0 0
## 1186 2 2 0
## 1187 3 0 0
## 1188 3 0 0
## 1189 2 0 0
## 1190 2 1 0
## 1191 2 0 0
## 1192 2 0 0
## 1193 3 0 0
## 1194 1 0 0
## 1195 2 0 0
## 1196 2 0 0
## 1197 2 0 0
## 1198 2 0 0
## 1199 2 0 0
## 1200 2 0 0
## 1201 2 0 0
## 1202 2 0 0
## 1203 2 0 0
## 1204 2 0 0
## 1205 1 0 0
## 1206 2 0 0
## 1207 3 1 0
## 1208 3 0 0
## 1209 2 0 0
## 1210 2 0 0
## 1211 2 0 0
## 1212 2 0 0
## 1213 2 0 0
## 1214 2 0 0
## 1215 2 0 0
## 1216 2 0 0
## 1217 2 0 0
## 1218 2 0 0
## 1219 2 0 0
## 1220 2 0 0
## 1221 2 0 0
## 1222 2 0 0
## 1223 2 0 0
## 1224 2 0 0
## 1225 2 0 0
## 1226 2 0 0
## 1227 2 0 0
## 1228 3 0 0
## 1229 2 0 0
## 1230 2 0 0
## 1231 3 0 0
## 1232 2 0 0
## 1233 2 0 0
## 1234 2 0 0
## 1235 2 0 0
## 1236 2 0 0
## 1237 2 1 0
## 1238 2 0 0
## 1239 2 0 0
## 1240 2 0 0
## 1241 2 0 0
## 1242 2 0 0
## 1243 2 0 0
## 1244 2 0 0
## 1245 2 0 0
## 1246 2 0 0
## 1247 3 0 0
## 1248 2 0 0
## 1249 2 1 0
## 1250 2 0 0
## 1251 2 0 0
## 1252 2 0 0
## 1253 2 0 0
## 1254 2 0 0
## 1255 2 0 0
## 1256 2 1 0
## 1257 2 0 0
## 1258 2 0 0
## 1259 2 0 0
## 1260 2 0 0
## 1261 2 0 0
## 1262 2 1 0
## 1263 2 0 0
## 1264 2 1 0
## 1265 2 2 0
## 1266 2 0 0
## 1267 2 0 0
## 1268 2 0 0
## 1269 3 1 0
## 1270 2 0 0
## 1271 2 0 0
## 1272 2 0 0
## 1273 2 2 0
## 1274 3 1 0
## 1275 1 0 0
## 1276 2 0 0
## 1277 2 0 0
## 1278 2 0 0
## 1279 2 0 0
## 1280 2 0 0
## 1281 2 0 0
## 1282 2 0 0
## 1283 2 0 0
## 1284 2 0 0
## 1285 1 0 0
## 1286 1 1 0
## 1287 2 2 0
## 1288 1 0 0
## 1289 2 0 0
## 1290 3 0 0
## 1291 2 0 0
## 1292 2 0 0
## 1293 2 0 0
## 1294 2 0 0
## 1295 2 0 0
## 1296 2 0 0
## 1297 2 0 0
## 1298 2 0 0
## 1299 2 0 0
## 1300 3 0 0
## 1301 2 2 0
## 1302 2 0 0
## 1303 1 1 0
## 1304 1 0 0
## 1305 1 0 0
## 1306 2 0 0
## 1307 2 0 0
## 1308 3 0 0
## 1309 2 0 0
## 1310 2 0 0
## 1311 2 0 0
## 1312 2 0 0
## 1313 2 0 0
## 1314 2 0 0
## 1315 1 0 0
## 1316 2 0 0
## 1317 2 0 0
## 1318 2 2 0
## 1319 2 0 0
## 1320 1 0 0
## 1321 2 0 0
## 1322 2 2 0
## 1323 2 0 0
## 1324 2 0 0
## 1325 2 0 0
## 1326 2 0 0
## 1327 2 0 0
## 1328 2 0 0
## 1329 2 0 0
## 1330 2 0 0
## 1331 2 2 0
## 1332 2 0 0
## 1333 2 0 0
## 1334 2 0 0
## 1335 2 0 0
## 1336 2 0 0
## 1337 2 0 0
## 1338 2 0 0
## 1339 2 0 0
## 1340 2 0 0
## 1341 2 0 0
## 1342 2 0 0
## 1343 2 0 0
## 1344 2 0 0
## 1345 2 0 0
## 1346 2 0 0
## 1347 2 0 0
## 1348 2 0 0
## 1349 2 1 0
## 1350 2 0 0
## 1351 2 0 0
## 1352 2 0 0
## 1353 2 0 0
## 1354 2 1 0
## 1355 2 0 0
## 1356 2 0 0
## 1357 3 0 0
## 1358 2 0 0
## 1359 2 0 0
## 1360 2 1 0
## 1361 2 0 0
## 1362 2 2 0
## 1363 2 0 0
## 1364 2 2 0
## 1365 2 0 0
## 1366 2 0 0
## 1367 2 0 0
## 1368 2 0 0
## 1369 2 1 0
## 1370 2 0 0
## 1371 2 0 0
## 1372 2 0 0
## 1373 2 0 0
## 1374 2 0 0
## 1375 2 0 0
## 1376 2 0 0
## 1377 2 0 0
## 1378 2 0 0
## 1379 2 1 0
## 1380 2 0 0
## 1381 2 2 0
## 1382 2 0 0
## 1383 2 0 0
## 1384 2 0 0
## 1385 2 0 0
## 1386 2 0 0
## 1387 2 2 0
## 1388 2 0 0
## 1389 2 0 0
## 1390 2 0 0
## 1391 2 0 0
## 1392 2 0 0
## 1393 2 0 0
## 1394 1 0 0
## 1395 2 0 0
## 1396 2 0 0
## 1397 2 0 0
## 1398 2 0 0
## 1399 2 0 0
## 1400 2 0 0
## 1401 2 0 0
## 1402 2 0 0
## 1403 3 0 0
## 1404 2 0 0
## 1405 2 0 0
## 1406 2 0 0
## 1407 2 0 0
## 1408 2 0 0
## 1409 2 0 0
## 1410 2 0 0
## 1411 2 0 0
## 1412 2 0 0
## 1413 2 0 0
## 1414 2 0 0
## 1415 2 0 0
## 1416 2 0 0
## 1417 2 0 0
## 1418 2 0 0
## 1419 2 2 0
## 1420 1 0 0
## 1421 2 0 0
## 1422 2 0 0
## 1423 2 0 0
## 1424 2 0 0
## 1425 2 0 0
## 1426 2 0 0
## 1427 3 0 0
## 1428 2 0 0
## 1429 1 0 0
## 1430 2 0 0
## 1431 2 0 0
## 1432 2 0 0
## 1433 2 0 0
## 1434 2 0 0
## 1435 2 1 0
## 1436 2 0 0
## 1437 2 2 0
## 1438 2 0 0
## 1439 2 0 0
## 1440 2 0 0
## 1441 2 0 0
## 1442 2 0 0
## 1443 2 0 0
## 1444 2 0 0
## 1445 2 0 0
## 1446 2 0 0
## 1447 2 0 0
## 1448 2 0 0
## 1449 2 1 0
## 1450 2 0 0
## 1451 2 0 0
## 1452 2 0 0
## 1453 2 2 0
## 1454 2 0 0
## 1455 2 0 0
## 1456 2 0 0
## 1457 2 0 0
## 1458 2 0 0
## 1459 2 0 0
## 1460 2 0 0
## 1461 2 0 0
## 1462 2 0 0
## 1463 1 0 0
## 1464 2 0 0
## 1465 2 0 0
## 1466 1 0 0
## 1467 2 0 0
## 1468 2 0 0
## 1469 2 0 0
## 1470 2 0 0
## 1471 2 2 0
## 1472 2 0 0
## 1473 2 0 0
## 1474 2 0 0
## 1475 2 0 0
## 1476 2 0 0
## 1477 1 0 0
## 1478 2 0 0
## 1479 2 0 0
## 1480 2 0 0
## 1481 2 0 0
## 1482 2 0 0
## 1483 2 0 0
## 1484 3 0 0
## 1485 2 0 0
## 1486 2 2 0
## 1487 2 2 0
## 1488 2 0 0
## 1489 2 0 0
## 1490 2 0 0
## 1491 2 0 0
## 1492 2 0 0
## 1493 2 0 0
## 1494 2 1 0
## 1495 1 0 0
## 1496 2 0 0
## 1497 2 0 0
## 1498 2 0 0
## 1499 40 0 0
## 1500 2 0 0
## 1501 2 0 0
## 1502 2 0 0
## 1503 2 1 0
## 1504 2 0 0
## 1505 2 0 0
## 1506 2 0 0
## 1507 2 0 0
## 1508 2 1 0
## 1509 2 0 0
## 1510 2 0 0
## 1511 2 0 0
## 1512 2 0 0
## 1513 2 2 0
## 1514 2 0 0
## 1515 2 0 0
## 1516 2 0 0
## 1517 2 0 0
## 1518 2 0 0
## 1519 3 0 0
## 1520 2 0 0
## 1521 2 0 0
## 1522 2 0 0
## 1523 2 0 0
## 1524 2 0 0
## 1525 2 0 0
## 1526 1 0 0
## 1527 2 0 0
## 1528 2 0 0
## 1529 2 0 0
## 1530 1 0 0
## 1531 3 0 0
## 1532 2 0 0
## 1533 2 0 0
## 1534 2 0 0
## 1535 2 0 0
## 1536 2 2 0
## 1537 2 0 0
## 1538 2 0 0
## 1539 2 0 0
## 1540 2 0 0
## 1541 2 0 0
## 1542 1 2 0
## 1543 2 0 0
## 1544 2 0 0
## 1545 2 0 0
## 1546 2 0 0
## 1547 26 0 0
## 1548 2 0 0
## 1549 2 0 0
## 1550 2 0 0
## 1551 2 1 0
## 1552 2 0 0
## 1553 2 0 0
## 1554 2 0 0
## 1555 2 0 0
## 1556 2 0 0
## 1557 2 0 0
## 1558 2 0 0
## 1559 2 0 0
## 1560 2 0 0
## 1561 2 2 0
## 1562 2 0 0
## 1563 2 2 0
## 1564 2 0 0
## 1565 2 0 0
## 1566 2 0 0
## 1567 2 0 0
## 1568 2 0 0
## 1569 1 2 0
## 1570 2 0 0
## 1571 2 0 0
## 1572 2 0 0
## 1573 2 0 0
## 1574 2 0 0
## 1575 2 0 0
## 1576 2 0 0
## 1577 2 0 0
## 1578 2 0 0
## 1579 2 0 0
## 1580 1 0 0
## 1581 2 0 0
## 1582 2 0 0
## 1583 2 0 0
## 1584 2 0 0
## 1585 3 0 0
## 1586 2 0 0
## 1587 2 0 0
## 1588 2 0 0
## 1589 3 0 0
## 1590 2 0 0
## 1591 2 0 0
## 1592 2 0 0
## 1593 2 0 0
## 1594 2 0 0
## 1595 2 0 0
## 1596 2 0 0
## 1597 1 0 0
## 1598 2 0 0
## 1599 2 2 0
## 1600 2 0 0
## 1601 50 0 0
## 1602 2 0 0
## 1603 2 0 0
## 1604 2 0 0
## 1605 2 0 0
## 1606 2 0 0
## 1607 2 0 0
## 1608 2 0 0
## 1609 2 0 0
## 1610 1 0 0
## 1611 2 0 0
## 1612 2 0 0
## 1613 2 0 0
## 1614 2 0 0
## 1615 2 0 0
## 1616 2 0 0
## 1617 2 0 0
## 1618 2 0 0
## 1619 2 0 0
## 1620 2 0 0
## 1621 2 0 0
## 1622 2 0 0
## 1623 2 0 0
## 1624 2 0 0
## 1625 2 0 0
## 1626 2 0 0
## 1627 2 0 0
## 1628 2 0 0
## 1629 2 0 0
## 1630 1 0 0
## 1631 2 0 0
## 1632 1 0 0
## 1633 2 0 0
## 1634 2 0 0
## 1635 2 0 0
## 1636 2 0 0
## 1637 2 0 0
## 1638 1 0 0
## 1639 1 0 0
## 1640 2 0 0
## 1641 1 0 0
## 1642 1 0 0
## 1643 2 0 0
## 1644 2 0 0
## 1645 2 0 0
## 1646 2 0 0
## 1647 1 0 0
## 1648 2 0 0
## 1649 2 0 0
## 1650 2 0 0
## 1651 2 0 0
## 1652 2 0 0
## 1653 2 0 0
## 1654 2 0 0
## 1655 2 0 0
## 1656 2 0 0
## 1657 2 0 0
## 1658 2 0 0
## 1659 2 0 0
## 1660 2 0 0
## 1661 1 0 0
## 1662 3 0 0
## 1663 2 0 0
## 1664 2 2 0
## 1665 2 1 0
## 1666 2 0 0
## 1667 2 0 0
## 1668 2 0 0
## 1669 2 0 0
## 1670 2 0 0
## 1671 2 0 0
## 1672 1 0 0
## 1673 2 0 0
## 1674 2 0 0
## 1675 2 0 0
## 1676 2 0 0
## 1677 1 0 0
## 1678 2 0 0
## 1679 2 0 0
## 1680 2 0 0
## 1681 2 0 0
## 1682 1 0 0
## 1683 2 0 0
## 1684 2 0 0
## 1685 2 0 0
## 1686 2 0 0
## 1687 3 0 0
## 1688 2 2 0
## 1689 2 0 0
## 1690 2 0 0
## 1691 2 0 0
## 1692 2 0 0
## 1693 2 0 0
## 1694 2 0 0
## 1695 2 0 0
## 1696 1 0 0
## 1697 2 2 0
## 1698 2 0 0
## 1699 2 0 0
## 1700 1 0 0
## 1701 2 0 0
## 1702 2 0 0
## 1703 2 0 0
## 1704 1 0 0
## 1705 2 0 0
## 1706 2 0 0
## 1707 26 0 0
## 1708 2 0 0
## 1709 2 0 0
## 1710 2 0 0
## 1711 2 0 0
## 1712 2 0 0
## 1713 2 0 0
## 1714 2 0 0
## 1715 2 0 0
## 1716 2 0 0
## 1717 2 0 0
## 1718 2 0 0
## 1719 2 0 0
## 1720 2 0 0
## 1721 2 0 0
## 1722 2 0 0
## 1723 2 0 0
## 1724 2 0 0
## 1725 2 0 0
## 1726 2 0 0
## 1727 2 0 0
## 1728 2 0 0
## 1729 2 0 0
## 1730 2 0 0
## 1731 1 0 0
## 1732 2 0 0
## 1733 2 0 0
## 1734 2 0 0
## 1735 2 0 0
## 1736 2 0 0
## 1737 2 0 0
## 1738 2 0 0
## 1739 2 0 0
## 1740 2 0 0
## 1741 2 0 0
## 1742 2 0 0
## 1743 2 0 0
## 1744 2 0 0
## 1745 2 2 0
## 1746 2 0 0
## 1747 1 0 0
## 1748 2 0 0
## 1749 2 0 0
## 1750 2 0 0
## 1751 2 0 0
## 1752 2 0 0
## 1753 2 0 0
## 1754 2 0 0
## 1755 2 0 0
## 1756 2 0 0
## 1757 2 0 0
## 1758 2 0 0
## 1759 2 0 0
## 1760 2 0 0
## 1761 2 0 0
## 1762 2 0 0
## 1763 2 0 0
## 1764 2 0 0
## 1765 1 0 0
## 1766 1 0 0
## 1767 1 0 0
## 1768 2 0 0
## 1769 2 0 0
## 1770 2 2 0
## 1771 2 0 0
## 1772 2 2 0
## 1773 2 0 0
## 1774 2 0 0
## 1775 2 0 0
## 1776 2 0 0
## 1777 2 0 0
## 1778 2 0 0
## 1779 2 0 0
## 1780 2 0 0
## 1781 2 0 0
## 1782 2 0 0
## 1783 2 0 0
## 1784 2 0 0
## 1785 2 0 0
## 1786 2 0 0
## 1787 2 0 0
## 1788 2 0 0
## 1789 2 0 0
## 1790 2 0 0
## 1791 2 0 0
## 1792 2 0 0
## 1793 1 0 0
## 1794 1 0 0
## 1795 1 0 0
## 1796 1 0 0
## 1797 1 0 0
## 1798 2 0 0
## 1799 2 0 0
## 1800 2 0 0
## 1801 1 0 0
## 1802 1 0 0
## 1803 2 0 0
## 1804 2 0 0
## 1805 2 0 0
## 1806 2 0 0
## 1807 2 0 0
## 1808 2 0 0
## 1809 2 0 0
## 1810 2 0 0
## 1811 2 0 0
## 1812 2 0 0
## 1813 2 0 0
## 1814 2 0 0
## 1815 2 0 0
## 1816 2 0 0
## 1817 2 0 0
## 1818 2 0 0
## 1819 2 0 0
## 1820 2 0 0
## 1821 2 0 0
## 1822 2 0 0
## 1823 2 0 0
## 1824 1 0 0
## 1825 2 0 0
## 1826 2 0 0
## 1827 2 0 0
## 1828 2 0 0
## 1829 2 0 0
## 1830 2 0 0
## 1831 2 0 0
## 1832 2 0 0
## 1833 2 0 0
## 1834 2 0 0
## 1835 3 0 0
## 1836 2 0 0
## 1837 26 0 0
## 1838 2 0 0
## 1839 2 0 0
## 1840 2 0 0
## 1841 2 0 0
## 1842 2 0 0
## 1843 2 2 0
## 1844 2 0 0
## 1845 2 0 0
## 1846 2 2 0
## 1847 2 0 0
## 1848 2 0 0
## 1849 2 0 0
## 1850 2 0 0
## 1851 2 0 0
## 1852 2 0 0
## 1853 3 0 0
## 1854 2 0 0
## 1855 2 0 0
## 1856 2 0 0
## 1857 2 0 0
## 1858 1 0 0
## 1859 1 0 0
## 1860 2 0 0
## 1861 2 0 0
## 1862 2 0 0
## 1863 2 0 0
## 1864 2 0 0
## 1865 2 0 0
## 1866 2 0 0
## 1867 2 0 0
## 1868 2 0 0
## 1869 2 0 0
## 1870 27 0 0
## 1871 1 0 0
## 1872 2 0 0
## 1873 2 0 0
## 1874 2 0 0
## 1875 2 0 0
## 1876 2 0 0
## 1877 2 0 0
## 1878 2 0 0
## 1879 2 0 0
## 1880 2 0 0
## 1881 2 0 0
## 1882 2 0 0
## 1883 2 0 0
## 1884 2 0 0
## 1885 2 0 0
## 1886 2 0 0
## 1887 2 0 0
## 1888 2 0 0
## 1889 2 0 0
## 1890 2 0 0
## 1891 2 0 0
## 1892 2 0 0
## 1893 2 0 0
## 1894 2 0 0
## 1895 2 0 0
## 1896 2 0 0
## 1897 2 0 0
## 1898 2 0 0
## 1899 2 0 0
## 1900 2 0 0
## 1901 2 0 0
## 1902 1 0 0
## 1903 1 0 0
## 1904 2 0 0
## 1905 2 0 0
## 1906 2 0 0
## 1907 2 0 0
## 1908 3 0 0
## 1909 2 0 0
## 1910 2 0 0
## 1911 2 0 0
## 1912 2 0 0
## 1913 2 0 0
## 1914 2 0 0
## 1915 27 0 0
## 1916 2 0 0
## 1917 2 0 0
## 1918 2 0 0
## 1919 2 0 0
## 1920 2 0 0
## 1921 2 0 0
## 1922 3 0 0
## 1923 2 0 0
## 1924 1 0 0
## 1925 2 2 0
## 1926 1 0 0
## 1927 2 0 0
## 1928 2 0 0
## 1929 2 0 0
## 1930 2 0 0
## 1931 2 0 0
## 1932 2 0 0
## 1933 2 0 0
## 1934 2 0 0
## 1935 2 0 0
## 1936 2 0 0
## 1937 2 0 0
## 1938 2 0 0
## 1939 2 0 0
## 1940 2 0 0
## 1941 2 0 0
## 1942 2 0 0
## 1943 2 0 0
## 1944 2 0 0
## 1945 2 0 0
## 1946 2 1 0
## 1947 2 0 0
## 1948 2 0 0
## 1949 2 0 0
## 1950 2 0 0
## 1951 2 0 0
## 1952 2 0 0
## 1953 2 0 0
## 1954 2 0 0
## 1955 2 0 0
## 1956 26 0 0
## 1957 2 0 0
## 1958 2 0 0
## 1959 2 0 0
## 1960 2 0 0
## 1961 2 0 0
## 1962 2 0 0
## 1963 2 0 0
## 1964 2 0 0
## 1965 2 0 0
## 1966 2 0 0
## 1967 2 0 0
## 1968 2 0 0
## 1969 2 0 0
## 1970 2 0 0
## 1971 2 0 0
## 1972 2 0 0
## 1973 2 0 0
## 1974 2 0 0
## 1975 2 0 0
## 1976 2 0 0
## 1977 2 0 0
## 1978 1 0 0
## 1979 1 0 0
## 1980 2 0 0
## 1981 2 0 0
## 1982 2 0 0
## 1983 1 0 0
## 1984 2 0 0
## 1985 2 0 0
## 1986 2 0 0
## 1987 2 0 0
## 1988 1 0 0
## 1989 2 0 0
## 1990 2 0 0
## 1991 2 0 0
## 1992 2 0 0
## 1993 2 0 0
## 1994 2 0 0
## 1995 2 0 0
## 1996 2 0 0
## 1997 2 0 0
## 1998 1 0 0
## 1999 2 0 0
## 2000 1 0 0
## 2001 2 0 0
## 2002 2 0 0
## 2003 2 0 0
## 2004 2 0 0
## 2005 2 0 0
## 2006 1 0 0
## 2007 2 0 0
## 2008 2 0 0
## 2009 2 0 0
## 2010 2 0 0
## 2011 2 0 0
## 2012 2 0 0
## 2013 2 0 0
## 2014 1 1 0
## 2015 2 0 0
## 2016 2 0 0
## 2017 1 0 0
## 2018 1 0 0
## 2019 2 0 0
## 2020 2 0 0
## 2021 1 0 0
## 2022 1 0 0
## 2023 2 0 0
## 2024 2 0 0
## 2025 1 0 0
## 2026 1 0 0
## 2027 2 0 0
## 2028 2 0 0
## 2029 2 0 0
## 2030 2 0 0
## 2031 2 0 0
## 2032 2 0 0
## 2033 2 0 0
## 2034 2 0 0
## 2035 2 0 0
## 2036 2 0 0
## 2037 2 0 0
## 2038 1 0 0
## 2039 3 0 0
## 2040 2 0 0
## 2041 2 1 0
## 2042 2 0 0
## 2043 1 0 0
## 2044 1 0 0
## 2045 2 0 0
## 2046 2 0 0
## 2047 2 0 0
## 2048 2 0 0
## 2049 2 0 0
## 2050 1 1 0
## 2051 2 0 0
## 2052 2 0 0
## 2053 2 0 0
## 2054 1 0 0
## 2055 2 0 0
## 2056 2 0 0
## 2057 2 0 0
## 2058 2 0 0
## 2059 2 0 0
## 2060 2 0 0
## 2061 2 0 0
## 2062 2 0 0
## 2063 2 0 0
## 2064 2 0 0
## 2065 2 0 0
## 2066 2 0 0
## 2067 2 1 0
## 2068 2 2 0
## 2069 2 0 0
## 2070 2 0 0
## 2071 2 2 0
## 2072 2 0 0
## 2073 1 0 0
## 2074 2 0 0
## 2075 2 0 0
## 2076 2 0 0
## 2077 2 0 0
## 2078 2 0 0
## 2079 1 0 0
## 2080 2 0 0
## 2081 2 0 0
## 2082 2 0 0
## 2083 2 0 0
## 2084 1 0 0
## 2085 2 0 0
## 2086 2 0 0
## 2087 2 0 0
## 2088 2 0 0
## 2089 1 0 0
## 2090 1 0 0
## 2091 2 0 0
## 2092 2 0 0
## 2093 2 0 0
## 2094 2 0 0
## 2095 2 0 0
## 2096 2 0 0
## 2097 1 0 0
## 2098 1 0 0
## 2099 1 0 0
## 2100 2 0 0
## 2101 1 0 0
## 2102 1 0 0
## 2103 1 0 0
## 2104 2 0 0
## 2105 2 0 0
## 2106 2 0 0
## 2107 2 0 0
## 2108 2 0 0
## 2109 2 0 0
## 2110 2 0 0
## 2111 2 0 0
## 2112 2 0 0
## 2113 2 0 0
## 2114 2 0 0
## 2115 2 0 0
## 2116 26 0 0
## 2117 2 0 0
## 2118 2 0 0
## 2119 2 0 0
## 2120 2 0 0
## 2121 2 0 0
## 2122 2 0 0
## 2123 1 0 0
## 2124 2 0 0
## 2125 55 0 0
## 2126 2 0 0
## 2127 2 2 0
## 2128 2 0 0
## 2129 2 0 0
## 2130 2 0 0
## 2131 2 0 0
## 2132 2 0 0
## 2133 2 0 0
## 2134 2 0 0
## 2135 2 0 0
## 2136 2 0 0
## 2137 2 0 0
## 2138 2 0 0
## 2139 2 0 0
## 2140 2 0 0
## 2141 2 0 0
## 2142 2 0 0
## 2143 2 0 0
## 2144 2 0 0
## 2145 2 0 0
## 2146 2 0 0
## 2147 2 2 0
## 2148 2 0 0
## 2149 2 0 0
## 2150 2 0 0
## 2151 2 0 0
## 2152 2 0 0
## 2153 2 0 0
## 2154 2 0 0
## 2155 2 0 0
## 2156 2 0 0
## 2157 2 0 0
## 2158 2 0 0
## 2159 2 0 0
## 2160 2 0 0
## 2161 2 0 0
## 2162 2 0 0
## 2163 2 0 0
## 2164 2 0 0
## 2165 1 0 0
## 2166 1 0 0
## 2167 1 0 0
## 2168 2 0 0
## 2169 1 0 0
## 2170 2 0 0
## 2171 2 0 0
## 2172 2 2 0
## 2173 2 0 0
## 2174 0 0 0
## 2175 2 0 0
## 2176 2 0 0
## 2177 2 2 0
## 2178 20 0 0
## 2179 6 0 0
## 2180 2 0 0
## 2181 5 0 0
## 2182 2 0 0
## 2183 2 0 0
## 2184 1 0 0
## 2185 1 0 0
## 2186 1 0 0
## 2187 1 0 0
## 2188 1 0 0
## 2189 2 0 0
## 2190 2 0 0
## 2191 1 0 0
## 2192 3 0 0
## 2193 2 0 0
## 2194 2 0 0
## 2195 2 0 0
## 2196 1 0 0
## 2197 2 0 0
## 2198 2 0 0
## 2199 2 0 0
## 2200 2 0 0
## 2201 2 0 0
## 2202 1 0 0
## 2203 1 0 0
## 2204 1 0 0
## 2205 1 0 0
## 2206 2 0 0
## 2207 2 0 0
## 2208 1 0 0
## 2209 2 0 0
## 2210 2 1 0
## 2211 2 0 0
## 2212 2 0 0
## 2213 2 0 0
## 2214 2 0 0
## 2215 2 0 0
## 2216 2 0 0
## 2217 1 0 0
## 2218 2 0 0
## 2219 2 0 0
## 2220 2 0 0
## 2221 2 1 0
## 2222 2 0 0
## 2223 2 0 0
## 2224 2 2 0
## 2225 2 0 0
## 2226 2 1 0
## 2227 2 0 0
## 2228 1 0 0
## 2229 1 0 0
## 2230 2 0 0
## 2231 2 0 0
## 2232 2 0 0
## 2233 2 0 0
## 2234 2 0 0
## 2235 2 0 0
## 2236 1 0 0
## 2237 1 0 0
## 2238 2 0 0
## 2239 2 0 0
## 2240 1 0 0
## 2241 2 1 0
## 2242 2 0 0
## 2243 1 0 0
## 2244 2 0 0
## 2245 2 0 0
## 2246 2 0 0
## 2247 2 0 0
## 2248 2 0 0
## 2249 2 0 0
## 2250 2 0 0
## 2251 2 0 0
## 2252 2 0 0
## 2253 2 0 0
## 2254 2 0 0
## 2255 2 0 0
## 2256 2 1 0
## 2257 2 1 0
## 2258 2 1 0
## 2259 2 0 0
## 2260 2 0 0
## 2261 2 0 0
## 2262 2 0 0
## 2263 2 0 0
## 2264 2 0 0
## 2265 2 0 0
## 2266 2 0 0
## 2267 2 0 0
## 2268 2 0 0
## 2269 2 0 0
## 2270 2 0 0
## 2271 2 0 0
## 2272 2 0 0
## 2273 2 0 0
## 2274 2 1 0
## 2275 2 0 0
## 2276 2 0 0
## 2277 2 0 0
## 2278 2 0 0
## 2279 2 0 0
## 2280 2 0 0
## 2281 2 0 0
## 2282 1 0 0
## 2283 2 0 0
## 2284 2 0 0
## 2285 2 0 0
## 2286 2 0 0
## 2287 2 0 0
## 2288 2 0 0
## 2289 2 0 0
## 2290 2 0 0
## 2291 2 0 0
## 2292 2 0 0
## 2293 2 0 0
## 2294 2 0 0
## 2295 2 0 0
## 2296 2 0 0
## 2297 2 0 0
## 2298 2 0 0
## 2299 2 1 0
## 2300 2 0 0
## 2301 2 0 0
## 2302 2 0 0
## 2303 2 1 0
## 2304 2 0 0
## 2305 2 0 0
## 2306 2 2 0
## 2307 2 0 0
## 2308 2 2 0
## 2309 2 0 0
## 2310 2 1 0
## 2311 2 0 0
## 2312 2 0 0
## 2313 2 0 0
## 2314 2 0 0
## 2315 2 0 0
## 2316 2 0 0
## 2317 2 0 0
## 2318 2 0 0
## 2319 2 0 0
## 2320 2 0 0
## 2321 2 0 0
## 2322 2 0 0
## 2323 2 0 0
## 2324 2 0 0
## 2325 2 0 0
## 2326 2 0 0
## 2327 1 0 0
## 2328 2 0 0
## 2329 2 0 0
## 2330 2 0 0
## 2331 2 0 0
## 2332 2 0 0
## 2333 2 0 0
## 2334 2 0 0
## 2335 2 0 0
## 2336 2 0 0
## 2337 2 0 0
## 2338 2 0 0
## 2339 2 0 0
## 2340 2 0 0
## 2341 2 0 0
## 2342 2 0 0
## 2343 1 0 0
## 2344 2 0 0
## 2345 2 0 0
## 2346 2 0 0
## 2347 1 0 0
## 2348 2 0 0
## 2349 2 0 0
## 2350 2 0 0
## 2351 1 0 0
## 2352 2 0 0
## 2353 2 0 0
## 2354 1 0 0
## 2355 2 0 0
## 2356 1 0 0
## 2357 2 0 0
## 2358 0 0 0
## 2359 2 0 0
## 2360 2 0 0
## 2361 2 0 0
## 2362 1 0 0
## 2363 2 0 0
## 2364 1 0 0
## 2365 2 0 0
## 2366 10 0 0
## 2367 20 0 0
## 2368 5 0 0
## 2369 2 0 0
## 2370 2 2 0
## 2371 1 0 0
## 2372 2 0 0
## 2373 1 0 0
## 2374 2 0 0
## 2375 2 0 0
## 2376 1 0 0
## 2377 2 2 0
## 2378 2 2 0
## 2379 2 0 0
## 2380 2 0 0
## 2381 1 0 0
## 2382 1 0 0
## 2383 2 0 0
## 2384 1 0 0
## 2385 2 0 0
## 2386 1 0 0
## 2387 2 0 0
## 2388 2 0 0
## 2389 1 0 0
## 2390 2 1 0
## 2391 2 0 0
## 2392 2 0 0
## 2393 2 0 0
## 2394 2 0 0
## 2395 2 0 0
## 2396 2 0 0
## 2397 1 0 0
## 2398 2 0 0
## 2399 2 0 0
## 2400 1 0 0
## 2401 2 0 0
## 2402 2 0 0
## 2403 2 0 0
## 2404 2 0 0
## 2405 2 0 0
## 2406 2 0 0
## 2407 2 0 0
## 2408 2 0 0
## 2409 2 0 0
## 2410 2 0 0
## 2411 2 0 0
## 2412 2 0 0
## 2413 2 0 0
## 2414 2 2 0
## 2415 2 0 0
## 2416 2 1 0
## 2417 2 0 0
## 2418 2 0 0
## 2419 2 0 0
## 2420 2 0 0
## 2421 2 0 0
## 2422 2 0 0
## 2423 2 0 0
## 2424 2 0 0
## 2425 1 0 0
## 2426 2 0 0
## 2427 2 0 0
## 2428 2 0 0
## 2429 2 0 0
## 2430 1 0 0
## 2431 2 0 0
## 2432 2 0 0
## 2433 2 0 0
## 2434 2 0 0
## 2435 2 0 0
## 2436 2 0 0
## 2437 2 0 0
## 2438 1 0 0
## 2439 2 0 0
## 2440 2 0 0
## 2441 2 0 0
## 2442 2 0 0
## 2443 2 0 0
## 2444 2 0 0
## 2445 2 0 0
## 2446 2 0 0
## 2447 2 0 0
## 2448 2 0 0
## 2449 2 0 0
## 2450 2 0 0
## 2451 2 0 0
## 2452 2 0 0
## 2453 2 0 0
## 2454 2 0 0
## 2455 2 0 0
## 2456 2 0 0
## 2457 2 0 0
## 2458 1 0 0
## 2459 2 0 0
## 2460 2 0 0
## 2461 2 0 0
## 2462 2 0 0
## 2463 2 0 0
## 2464 2 0 0
## 2465 2 0 0
## 2466 2 0 0
## 2467 2 0 0
## 2468 2 0 0
## 2469 2 0 0
## 2470 1 0 0
## 2471 3 0 0
## 2472 3 0 0
## 2473 2 2 0
## 2474 3 0 0
## 2475 2 0 0
## 2476 2 0 0
## 2477 1 0 0
## 2478 1 0 0
## 2479 1 0 0
## 2480 1 0 0
## 2481 1 0 0
## 2482 2 0 0
## 2483 2 0 0
## 2484 2 2 0
## 2485 2 0 0
## 2486 2 0 0
## 2487 2 0 0
## 2488 1 0 0
## 2489 2 0 0
## 2490 2 0 0
## 2491 2 0 0
## 2492 2 0 0
## 2493 2 0 0
## 2494 2 0 0
## 2495 2 1 0
## 2496 2 1 0
## 2497 2 0 0
## 2498 2 0 0
## 2499 2 0 0
## 2500 2 0 0
## 2501 1 0 0
## 2502 2 0 0
## 2503 2 0 0
## 2504 2 0 0
## 2505 2 0 0
## 2506 2 0 0
## 2507 2 0 0
## 2508 2 0 0
## 2509 2 0 0
## 2510 2 0 0
## 2511 2 0 0
## 2512 2 0 0
## 2513 2 0 0
## 2514 2 0 0
## 2515 2 0 0
## 2516 1 0 0
## 2517 2 0 0
## 2518 1 0 0
## 2519 2 0 0
## 2520 2 0 0
## 2521 2 0 0
## 2522 1 0 0
## 2523 2 0 0
## 2524 2 0 0
## 2525 2 0 0
## 2526 1 0 0
## 2527 2 0 0
## 2528 2 0 0
## 2529 2 0 0
## 2530 2 2 0
## 2531 2 0 0
## 2532 2 0 0
## 2533 2 0 0
## 2534 2 0 0
## 2535 1 0 0
## 2536 2 0 0
## 2537 2 0 0
## 2538 2 0 0
## 2539 2 0 0
## 2540 2 0 0
## 2541 2 0 0
## 2542 2 0 0
## 2543 2 0 0
## 2544 1 0 0
## 2545 2 0 0
## 2546 2 0 0
## 2547 2 0 0
## 2548 2 0 0
## 2549 2 0 0
## 2550 2 0 0
## 2551 2 0 0
## 2552 2 0 0
## 2553 2 0 0
## 2554 2 0 0
## 2555 2 0 0
## 2556 2 0 0
## 2557 1 0 0
## 2558 2 0 0
## 2559 2 0 0
## 2560 2 0 0
## 2561 1 0 0
## 2562 2 0 0
## 2563 3 0 0
## 2564 2 0 0
## 2565 1 0 0
## 2566 2 0 0
## 2567 2 0 0
## 2568 1 0 0
## 2569 2 0 0
## 2570 2 1 0
## 2571 2 0 0
## 2572 2 0 0
## 2573 1 0 0
## 2574 2 0 0
## 2575 2 0 0
## 2576 1 0 0
## 2577 1 0 0
## 2578 1 0 0
## 2579 2 0 0
## 2580 2 0 0
## 2581 2 0 0
## 2582 1 0 0
## 2583 1 0 0
## 2584 2 0 0
## 2585 2 0 0
## 2586 1 0 0
## 2587 1 0 0
## 2588 2 0 0
## 2589 2 0 0
## 2590 1 0 0
## 2591 1 0 0
## 2592 2 0 0
## 2593 2 0 0
## 2594 2 0 0
## 2595 2 0 0
## 2596 1 0 0
## 2597 1 0 0
## 2598 1 0 0
## 2599 2 0 0
## 2600 2 0 0
## 2601 2 0 0
## 2602 2 0 0
## 2603 1 0 0
## 2604 1 0 0
## 2605 2 0 0
## 2606 2 0 0
## 2607 2 0 0
## 2608 1 0 0
## 2609 1 0 0
## 2610 1 0 0
## 2611 2 0 0
## 2612 2 0 0
## 2613 2 0 0
## 2614 2 0 0
## 2615 2 0 0
## 2616 2 0 0
## 2617 2 0 0
## 2618 2 0 0
## 2619 2 0 0
## 2620 2 0 0
## 2621 2 2 0
## 2622 2 0 0
## 2623 2 0 0
## 2624 2 0 0
## 2625 2 0 0
## 2626 2 0 0
## 2627 2 0 0
## 2628 2 0 0
## 2629 2 0 0
## 2630 1 0 0
## 2631 1 0 0
## 2632 1 0 0
## 2633 2 0 0
## 2634 2 2 0
## 2635 2 0 0
## 2636 1 1 0
## 2637 2 0 0
## 2638 2 0 0
## 2639 2 1 0
## 2640 2 0 0
## 2641 2 0 0
## 2642 2 0 0
## 2643 2 0 0
## 2644 2 0 0
## 2645 1 0 0
## 2646 1 0 0
## 2647 1 0 0
## 2648 1 0 0
## 2649 1 0 0
## 2650 1 0 0
## 2651 1 0 0
## 2652 2 0 0
## 2653 1 0 0
## 2654 2 0 0
## 2655 2 0 0
## 2656 1 0 0
## 2657 2 0 0
## 2658 2 0 0
## 2659 2 0 0
## 2660 2 0 0
## 2661 2 0 0
## 2662 2 0 0
## 2663 1 0 0
## 2664 2 0 0
## 2665 2 0 0
## 2666 2 0 0
## 2667 2 1 0
## 2668 2 0 0
## 2669 1 0 0
## 2670 2 0 0
## 2671 1 0 0
## 2672 1 0 0
## 2673 1 0 0
## 2674 1 0 0
## 2675 1 0 0
## 2676 1 0 0
## 2677 1 0 0
## 2678 2 0 0
## 2679 1 0 0
## 2680 1 0 0
## 2681 2 0 0
## 2682 2 0 0
## 2683 1 0 0
## 2684 2 0 0
## 2685 2 0 0
## 2686 2 0 0
## 2687 2 0 0
## 2688 2 0 0
## 2689 2 0 0
## 2690 2 0 0
## 2691 1 0 0
## 2692 2 0 0
## 2693 2 0 0
## 2694 2 0 0
## 2695 2 0 0
## 2696 2 0 0
## 2697 2 0 0
## 2698 2 0 0
## 2699 2 0 0
## 2700 2 0 0
## 2701 1 0 0
## 2702 2 0 0
## 2703 2 0 0
## 2704 2 0 0
## 2705 2 0 0
## 2706 2 0 0
## 2707 2 0 0
## 2708 1 0 0
## 2709 2 0 0
## 2710 2 0 0
## 2711 2 0 0
## 2712 2 0 0
## 2713 2 0 0
## 2714 1 0 0
## 2715 2 0 0
## 2716 2 0 0
## 2717 2 0 0
## 2718 2 0 0
## 2719 2 0 0
## 2720 2 0 0
## 2721 2 0 0
## 2722 2 0 0
## 2723 2 0 0
## 2724 1 0 0
## 2725 2 0 0
## 2726 2 0 0
## 2727 2 0 0
## 2728 2 0 0
## 2729 2 1 0
## 2730 1 0 0
## 2731 2 0 0
## 2732 2 0 0
## 2733 2 0 0
## 2734 2 1 0
## 2735 2 0 0
## 2736 2 0 0
## 2737 2 0 0
## 2738 2 0 0
## 2739 2 0 0
## 2740 1 0 0
## 2741 2 0 0
## 2742 2 0 0
## 2743 2 0 0
## 2744 2 0 0
## 2745 1 0 0
## 2746 1 0 0
## 2747 2 0 0
## 2748 2 0 0
## 2749 1 0 0
## 2750 2 0 0
## 2751 2 0 0
## 2752 2 0 0
## 2753 2 0 0
## 2754 2 0 0
## 2755 2 0 0
## 2756 2 0 0
## 2757 1 0 0
## 2758 2 0 0
## 2759 2 0 0
## 2760 2 0 0
## 2761 2 0 0
## 2762 2 0 0
## 2763 2 0 0
## 2764 2 0 0
## 2765 2 0 0
## 2766 2 0 0
## 2767 3 1 0
## 2768 2 0 0
## 2769 1 0 0
## 2770 1 0 0
## 2771 2 0 0
## 2772 2 0 0
## 2773 2 0 0
## 2774 2 0 0
## 2775 2 0 0
## 2776 2 0 0
## 2777 2 0 0
## 2778 2 0 0
## 2779 2 0 0
## 2780 2 0 0
## 2781 2 0 0
## 2782 2 0 0
## 2783 1 0 0
## 2784 2 0 0
## 2785 1 0 0
## 2786 2 0 0
## 2787 2 0 0
## 2788 1 0 0
## 2789 2 0 0
## 2790 2 0 0
## 2791 2 0 0
## 2792 2 0 0
## 2793 2 0 0
## 2794 2 0 0
## 2795 2 0 0
## 2796 2 0 0
## 2797 2 0 0
## 2798 1 0 0
## 2799 1 0 0
## 2800 1 0 0
## 2801 1 0 0
## 2802 1 0 0
## 2803 1 0 0
## 2804 1 0 0
## 2805 2 0 0
## 2806 1 0 0
## 2807 2 0 0
## 2808 1 0 0
## 2809 1 0 0
## 2810 2 0 0
## 2811 1 0 0
## 2812 2 0 0
## 2813 2 0 0
## 2814 2 0 0
## 2815 2 0 0
## 2816 2 2 0
## 2817 2 0 0
## 2818 1 0 0
## 2819 1 0 0
## 2820 1 0 0
## 2821 3 0 0
## 2822 2 0 0
## 2823 1 0 0
## 2824 2 0 0
## 2825 2 0 0
## 2826 2 0 0
## 2827 1 0 0
## 2828 2 0 0
## 2829 1 0 0
## 2830 1 0 0
## 2831 1 0 0
## 2832 2 0 0
## 2833 1 0 0
## 2834 1 0 0
## 2835 2 0 0
## 2836 2 0 0
## 2837 1 0 0
## 2838 1 0 0
## 2839 1 0 0
## 2840 1 0 0
## 2841 1 0 0
## 2842 2 0 0
## 2843 2 0 0
## 2844 1 0 0
## 2845 2 0 0
## 2846 2 0 0
## 2847 1 0 0
## 2848 1 0 0
## 2849 1 0 0
## 2850 2 1 0
## 2851 2 0 0
## 2852 2 0 0
## 2853 2 0 0
## 2854 2 1 0
## 2855 2 0 0
## 2856 2 0 0
## 2857 2 0 0
## 2858 1 0 0
## 2859 1 0 0
## 2860 1 0 0
## 2861 1 0 0
## 2862 1 0 0
## 2863 1 0 0
## 2864 1 0 0
## 2865 2 0 0
## 2866 2 0 0
## 2867 2 1 0
## 2868 2 0 0
## 2869 2 1 0
## 2870 2 0 0
## 2871 2 0 0
## 2872 2 0 0
## 2873 1 0 0
## 2874 1 0 0
## 2875 2 0 0
## 2876 2 0 0
## 2877 1 0 0
## 2878 1 0 0
## 2879 1 0 0
## 2880 2 0 0
## 2881 1 0 0
## 2882 2 0 0
## 2883 2 0 0
## 2884 1 0 0
## 2885 1 0 0
## 2886 1 0 0
## 2887 1 0 0
## 2888 1 0 0
## 2889 1 0 0
## 2890 1 0 0
## 2891 1 0 0
## 2892 1 0 0
## 2893 1 0 0
## 2894 1 0 0
## 2895 1 0 0
## 2896 1 0 0
## 2897 1 0 0
## 2898 1 0 0
## 2899 2 0 0
## 2900 2 0 0
## 2901 1 0 0
## 2902 2 0 0
## 2903 1 0 0
## 2904 2 0 0
## 2905 2 0 0
## 2906 1 0 0
## 2907 2 0 0
## 2908 2 0 0
## 2909 1 0 0
## 2910 2 0 0
## 2911 2 0 0
## 2912 1 0 0
## 2913 2 0 0
## 2914 1 0 0
## 2915 2 0 0
## 2916 2 0 0
## 2917 1 0 0
## 2918 1 0 0
## 2919 1 0 0
## 2920 3 1 0
## 2921 1 0 0
## 2922 2 0 0
## 2923 2 0 0
## 2924 1 0 0
## 2925 2 0 0
## 2926 1 0 0
## 2927 1 0 0
## 2928 2 0 0
## 2929 2 0 0
## 2930 2 0 0
## 2931 2 0 0
## 2932 2 0 0
## 2933 2 0 0
## 2934 1 0 0
## 2935 1 0 0
## 2936 1 0 0
## 2937 1 0 0
## 2938 2 0 0
## 2939 1 0 0
## 2940 2 1 0
## 2941 2 0 0
## 2942 1 0 0
## 2943 1 0 0
## 2944 1 0 0
## 2945 1 0 0
## 2946 1 0 0
## 2947 1 0 0
## 2948 1 0 0
## 2949 1 0 0
## 2950 1 0 0
## 2951 1 0 0
## 2952 2 0 0
## 2953 1 0 0
## 2954 2 0 0
## 2955 1 0 0
## 2956 1 0 0
## 2957 2 0 0
## 2958 1 0 0
## 2959 1 0 0
## 2960 1 0 0
## 2961 1 0 0
## 2962 1 0 0
## 2963 1 0 0
## 2964 2 0 0
## 2965 1 0 0
## 2966 1 0 0
## 2967 1 0 0
## 2968 1 0 0
## 2969 1 0 0
## 2970 1 0 0
## 2971 1 0 0
## 2972 2 1 0
## 2973 2 0 0
## 2974 2 0 0
## 2975 1 0 0
## 2976 2 0 0
## 2977 2 0 0
## 2978 1 0 0
## 2979 1 0 0
## 2980 1 0 0
## 2981 1 0 0
## 2982 1 0 0
## 2983 1 0 0
## 2984 1 0 0
## 2985 1 0 0
## 2986 2 0 0
## 2987 1 0 0
## 2988 2 0 0
## 2989 1 0 0
## 2990 1 0 0
## 2991 1 0 0
## 2992 1 0 0
## 2993 1 0 0
## 2994 1 0 0
## 2995 1 0 0
## 2996 1 0 0
## 2997 1 0 0
## 2998 2 0 0
## 2999 2 0 0
## 3000 1 0 0
## 3001 1 0 0
## 3002 2 2 0
## 3003 2 0 0
## 3004 2 0 0
## 3005 1 0 0
## 3006 2 0 0
## 3007 1 0 0
## 3008 1 0 0
## 3009 1 0 0
## 3010 2 0 0
## 3011 1 0 0
## 3012 2 0 0
## 3013 1 0 0
## 3014 2 0 0
## 3015 2 0 0
## 3016 2 0 0
## 3017 2 0 0
## 3018 2 0 0
## 3019 2 1 0
## 3020 1 0 0
## 3021 2 0 0
## 3022 2 0 0
## 3023 2 0 0
## 3024 2 0 0
## 3025 2 0 0
## 3026 2 0 0
## 3027 2 0 0
## 3028 2 0 0
## 3029 2 0 0
## 3030 2 0 0
## 3031 2 0 0
## 3032 2 0 0
## 3033 2 0 0
## 3034 2 1 0
## 3035 1 0 0
## 3036 2 0 0
## 3037 2 0 0
## 3038 1 0 0
## 3039 2 0 0
## 3040 1 0 0
## 3041 2 0 0
## 3042 2 0 0
## 3043 2 0 0
## 3044 2 0 0
## 3045 1 0 0
## 3046 1 0 0
## 3047 2 0 0
## 3048 2 0 0
## 3049 2 0 0
## 3050 2 0 0
## 3051 2 0 0
## 3052 2 0 0
## 3053 2 0 0
## 3054 2 0 0
## 3055 1 0 0
## 3056 2 0 0
## 3057 2 0 0
## 3058 2 0 0
## 3059 2 0 0
## 3060 2 0 0
## 3061 1 0 0
## 3062 2 0 0
## 3063 2 0 0
## 3064 2 0 0
## 3065 2 0 0
## 3066 2 0 0
## 3067 2 0 0
## 3068 2 0 0
## 3069 2 0 0
## 3070 2 0 0
## 3071 2 0 0
## 3072 2 0 0
## 3073 2 0 0
## 3074 2 0 0
## 3075 2 1 0
## 3076 2 0 0
## 3077 1 0 0
## 3078 2 0 0
## 3079 2 2 0
## 3080 2 0 0
## 3081 2 0 0
## 3082 2 0 0
## 3083 2 0 0
## 3084 2 0 0
## 3085 2 0 0
## 3086 2 0 0
## 3087 2 0 0
## 3088 2 0 0
## 3089 2 0 0
## 3090 2 0 0
## 3091 2 0 0
## 3092 1 0 0
## 3093 2 0 0
## 3094 2 0 0
## 3095 2 0 0
## 3096 2 0 0
## 3097 2 0 0
## 3098 2 0 0
## 3099 2 0 0
## 3100 2 0 0
## 3101 2 0 0
## 3102 2 0 0
## 3103 2 0 0
## 3104 2 0 0
## 3105 2 0 0
## 3106 2 0 0
## 3107 2 0 0
## 3108 2 0 0
## 3109 2 0 0
## 3110 2 0 0
## 3111 2 0 0
## 3112 2 0 0
## 3113 2 0 0
## 3114 2 0 0
## 3115 2 0 0
## 3116 2 0 0
## 3117 2 0 0
## 3118 2 0 0
## 3119 1 0 0
## 3120 2 0 0
## 3121 2 0 0
## 3122 0 0 0
## 3123 1 0 0
## 3124 2 0 0
## 3125 2 0 0
## 3126 2 0 0
## 3127 2 0 0
## 3128 2 0 0
## 3129 2 0 0
## 3130 2 0 0
## 3131 2 0 0
## 3132 2 0 0
## 3133 2 1 0
## 3134 2 0 0
## 3135 2 0 0
## 3136 2 2 0
## 3137 2 0 0
## 3138 2 0 0
## 3139 2 0 0
## 3140 2 0 0
## 3141 2 0 0
## 3142 2 0 0
## 3143 2 0 0
## 3144 2 0 0
## 3145 2 2 0
## 3146 2 0 0
## 3147 2 0 0
## 3148 2 0 0
## 3149 2 0 0
## 3150 2 0 0
## 3151 2 0 0
## 3152 2 0 0
## 3153 2 0 0
## 3154 2 0 0
## 3155 2 1 0
## 3156 2 0 0
## 3157 2 0 0
## 3158 2 0 0
## 3159 2 0 0
## 3160 2 2 0
## 3161 2 0 0
## 3162 3 0 0
## 3163 2 0 0
## 3164 2 0 0
## 3165 2 0 0
## 3166 2 0 0
## 3167 2 0 0
## 3168 2 1 0
## 3169 2 0 0
## 3170 2 0 0
## 3171 2 0 0
## 3172 2 0 0
## 3173 2 0 0
## 3174 2 0 0
## 3175 1 0 0
## 3176 2 0 0
## 3177 2 0 0
## 3178 2 0 0
## 3179 2 0 0
## 3180 2 0 0
## 3181 2 0 0
## 3182 1 0 0
## 3183 1 0 0
## 3184 1 0 0
## 3185 1 0 0
## 3186 1 0 0
## 3187 1 0 0
## 3188 2 0 0
## 3189 2 0 0
## 3190 1 0 0
## 3191 2 0 0
## 3192 2 0 0
## 3193 2 0 0
## 3194 2 0 0
## 3195 2 0 0
## 3196 2 0 0
## 3197 3 0 0
## 3198 2 0 0
## 3199 2 0 0
## 3200 2 0 0
## 3201 2 0 0
## 3202 2 2 0
## 3203 2 0 0
## 3204 2 0 0
## 3205 2 0 0
## 3206 2 0 0
## 3207 2 0 0
## 3208 1 0 0
## 3209 2 0 0
## 3210 2 0 0
## 3211 2 0 0
## 3212 2 0 0
## 3213 2 0 0
## 3214 2 0 0
## 3215 2 0 0
## 3216 2 0 0
## 3217 2 0 0
## 3218 2 0 0
## 3219 2 0 0
## 3220 2 0 0
## 3221 2 0 0
## 3222 2 0 0
## 3223 2 0 0
## 3224 2 0 0
## 3225 2 0 0
## 3226 2 0 0
## 3227 2 0 0
## 3228 2 0 0
## 3229 2 0 0
## 3230 2 0 0
## 3231 2 0 0
## 3232 2 0 0
## 3233 2 0 0
## 3234 2 0 0
## 3235 2 0 0
## 3236 2 0 0
## 3237 2 0 0
## 3238 2 0 0
## 3239 2 0 0
## 3240 2 0 0
## 3241 2 0 0
## 3242 2 0 0
## 3243 2 0 0
## 3244 2 0 0
## 3245 2 0 0
## 3246 1 0 0
## 3247 2 0 0
## 3248 2 0 0
## 3249 2 0 0
## 3250 2 0 0
## 3251 2 0 0
## 3252 2 0 0
## 3253 2 0 0
## 3254 2 0 0
## 3255 3 0 0
## 3256 1 0 0
## 3257 1 0 0
## 3258 2 0 0
## 3259 2 0 0
## 3260 2 0 0
## 3261 2 0 0
## 3262 2 0 0
## 3263 2 0 0
## 3264 2 0 0
## 3265 1 0 0
## 3266 2 0 0
## 3267 2 0 0
## 3268 2 0 0
## 3269 2 0 0
## 3270 1 0 0
## 3271 1 0 0
## 3272 1 0 0
## 3273 2 0 0
## 3274 2 0 0
## 3275 2 0 0
## 3276 2 0 0
## 3277 2 0 0
## 3278 2 0 0
## 3279 2 0 0
## 3280 2 0 0
## 3281 2 0 0
## 3282 2 0 0
## 3283 2 0 0
## 3284 2 0 0
## 3285 2 0 0
## 3286 1 0 0
## 3287 2 0 0
## 3288 2 0 0
## 3289 2 0 0
## 3290 2 0 0
## 3291 2 0 0
## 3292 2 0 0
## 3293 2 0 0
## 3294 2 0 0
## 3295 2 0 0
## 3296 2 0 0
## 3297 2 0 0
## 3298 2 0 0
## 3299 2 0 0
## 3300 2 0 0
## 3301 2 0 0
## 3302 2 0 0
## 3303 2 0 0
## 3304 2 0 0
## 3305 2 0 0
## 3306 2 0 0
## 3307 2 0 0
## 3308 2 0 0
## 3309 2 0 0
## 3310 2 0 0
## 3311 2 0 0
## 3312 2 0 0
## 3313 2 0 0
## 3314 2 0 0
## 3315 2 0 0
## 3316 3 0 0
## 3317 2 0 0
## 3318 2 0 0
## 3319 2 0 0
## 3320 2 0 0
## 3321 2 0 0
## 3322 2 0 0
## 3323 2 0 0
## 3324 2 0 0
## 3325 2 0 0
## 3326 2 0 0
## 3327 2 0 0
## 3328 2 0 0
## 3329 2 0 0
## 3330 2 0 0
## 3331 1 0 0
## 3332 2 0 0
## 3333 2 0 0
## 3334 2 0 0
## 3335 2 0 0
## 3336 2 0 0
## 3337 2 0 0
## 3338 2 0 0
## 3339 2 0 0
## 3340 2 0 0
## 3341 2 0 0
## 3342 2 0 0
## 3343 2 0 0
## 3344 2 0 0
## 3345 2 0 0
## 3346 2 0 0
## 3347 2 0 0
## 3348 2 0 0
## 3349 2 0 0
## 3350 2 0 0
## 3351 2 0 0
## 3352 2 0 0
## 3353 2 0 0
## 3354 2 0 0
## 3355 2 0 0
## 3356 2 0 0
## 3357 2 0 0
## 3358 2 0 0
## 3359 2 0 0
## 3360 3 0 0
## 3361 2 0 0
## 3362 2 0 0
## 3363 2 0 0
## 3364 2 0 0
## 3365 2 0 0
## 3366 2 0 0
## 3367 2 0 0
## 3368 2 0 0
## 3369 2 0 0
## 3370 2 0 0
## 3371 2 0 0
## 3372 2 0 0
## 3373 2 0 0
## 3374 2 0 0
## 3375 2 0 0
## 3376 2 0 0
## 3377 2 0 0
## 3378 2 0 0
## 3379 2 0 0
## 3380 2 0 0
## 3381 2 0 0
## 3382 2 0 0
## 3383 2 0 0
## 3384 2 0 0
## 3385 2 0 0
## 3386 2 0 0
## 3387 2 0 0
## 3388 2 0 0
## 3389 2 0 0
## 3390 2 0 0
## 3391 2 0 0
## 3392 2 0 0
## 3393 2 0 0
## 3394 2 0 0
## 3395 1 0 0
## 3396 1 0 0
## 3397 2 0 0
## 3398 2 0 0
## 3399 2 0 0
## 3400 1 0 0
## 3401 2 0 0
## 3402 2 0 0
## 3403 2 0 0
## 3404 2 0 0
## 3405 2 0 0
## 3406 2 0 0
## 3407 2 0 0
## 3408 2 0 0
## 3409 2 0 0
## 3410 2 0 0
## 3411 2 0 0
## 3412 2 0 0
## 3413 2 0 0
## 3414 2 0 0
## 3415 2 0 0
## 3416 2 0 0
## 3417 2 0 0
## 3418 2 0 0
## 3419 2 0 0
## 3420 2 0 0
## 3421 2 0 0
## 3422 2 0 0
## 3423 2 0 0
## 3424 2 0 0
## 3425 2 0 0
## 3426 2 0 0
## 3427 2 0 0
## 3428 2 0 0
## 3429 2 0 0
## 3430 2 0 0
## 3431 2 0 0
## 3432 2 0 0
## 3433 2 0 0
## 3434 2 0 0
## 3435 2 0 0
## 3436 2 0 0
## 3437 2 0 0
## 3438 2 0 0
## 3439 1 0 0
## 3440 2 0 0
## 3441 2 0 0
## 3442 2 0 0
## 3443 2 0 0
## 3444 1 0 0
## 3445 2 0 0
## 3446 2 0 0
## 3447 2 0 0
## 3448 2 0 0
## 3449 2 0 0
## 3450 2 0 0
## 3451 1 0 0
## 3452 2 0 0
## 3453 2 0 0
## 3454 2 0 0
## 3455 2 0 0
## 3456 2 0 0
## 3457 2 0 0
## 3458 2 2 0
## 3459 2 0 0
## 3460 3 1 0
## 3461 3 0 0
## 3462 3 0 0
## 3463 1 0 0
## 3464 2 0 0
## 3465 2 0 0
## 3466 1 0 0
## 3467 2 0 0
## 3468 2 0 0
## 3469 2 0 0
## 3470 2 0 0
## 3471 2 0 0
## 3472 2 0 0
## 3473 2 0 0
## 3474 2 0 0
## 3475 2 0 0
## 3476 2 0 0
## 3477 2 0 0
## 3478 2 0 0
## 3479 2 0 0
## 3480 2 0 0
## 3481 1 0 0
## 3482 1 0 0
## 3483 2 0 0
## 3484 2 0 0
## 3485 2 0 0
## 3486 2 0 0
## 3487 2 0 0
## 3488 1 0 0
## 3489 2 0 0
## 3490 2 0 0
## 3491 2 1 0
## 3492 2 0 0
## 3493 1 0 0
## 3494 2 0 0
## 3495 2 0 0
## 3496 2 0 0
## 3497 1 0 0
## 3498 2 0 0
## 3499 2 0 0
## 3500 2 0 0
## 3501 1 0 0
## 3502 3 0 0
## 3503 2 0 0
## 3504 2 0 0
## 3505 2 0 0
## 3506 3 0 0
## 3507 2 0 0
## 3508 2 0 0
## 3509 2 2 0
## 3510 2 2 0
## 3511 2 0 0
## 3512 2 0 0
## 3513 2 0 0
## 3514 2 0 0
## 3515 2 0 0
## 3516 2 2 0
## 3517 1 0 0
## 3518 2 0 0
## 3519 2 0 0
## 3520 2 0 0
## 3521 2 0 0
## 3522 2 0 0
## 3523 2 0 0
## 3524 2 0 0
## 3525 2 0 0
## 3526 2 0 0
## 3527 2 0 0
## 3528 2 0 0
## 3529 2 0 0
## 3530 2 0 0
## 3531 2 0 0
## 3532 3 1 0
## 3533 2 0 0
## 3534 2 0 0
## 3535 2 0 0
## 3536 2 0 0
## 3537 2 0 0
## 3538 2 0 0
## 3539 1 0 0
## 3540 1 0 0
## 3541 1 0 0
## 3542 1 0 0
## 3543 2 0 0
## 3544 2 0 0
## 3545 2 0 0
## 3546 2 2 0
## 3547 2 2 0
## 3548 2 0 0
## 3549 2 0 0
## 3550 1 0 0
## 3551 2 0 0
## 3552 2 0 0
## 3553 2 0 0
## 3554 2 0 0
## 3555 1 0 0
## 3556 2 0 0
## 3557 2 0 0
## 3558 2 0 0
## 3559 2 0 0
## 3560 1 0 0
## 3561 2 0 0
## 3562 2 0 0
## 3563 1 0 0
## 3564 2 0 0
## 3565 3 1 0
## 3566 2 0 0
## 3567 2 2 0
## 3568 2 0 0
## 3569 2 0 0
## 3570 1 2 0
## 3571 1 0 0
## 3572 2 0 0
## 3573 2 0 0
## 3574 2 0 0
## 3575 2 0 0
## 3576 2 0 0
## 3577 2 0 0
## 3578 2 0 0
## 3579 2 1 0
## 3580 2 0 0
## 3581 2 0 0
## 3582 2 0 0
## 3583 2 0 0
## 3584 2 0 0
## 3585 2 0 0
## 3586 2 0 0
## 3587 1 0 0
## 3588 1 0 0
## 3589 1 0 0
## 3590 2 0 0
## 3591 2 0 0
## 3592 2 0 0
## 3593 2 0 0
## 3594 2 0 0
## 3595 2 0 0
## 3596 1 0 0
## 3597 2 0 0
## 3598 2 0 0
## 3599 2 0 0
## 3600 2 0 0
## 3601 2 0 0
## 3602 2 0 0
## 3603 1 0 0
## 3604 2 0 0
## 3605 1 0 0
## 3606 1 0 0
## 3607 1 0 0
## 3608 2 0 0
## 3609 2 0 0
## 3610 2 0 0
## 3611 2 0 0
## 3612 3 0 0
## 3613 2 0 0
## 3614 2 0 0
## 3615 2 0 0
## 3616 0 0 0
## 3617 2 0 0
## 3618 2 2 0
## 3619 2 0 0
## 3620 2 0 0
## 3621 2 0 0
## 3622 2 0 0
## 3623 2 0 0
## 3624 1 0 0
## 3625 2 0 0
## 3626 2 0 0
## 3627 1 0 0
## 3628 2 0 0
## 3629 2 0 0
## 3630 2 0 0
## 3631 2 0 0
## 3632 2 0 0
## 3633 1 0 0
## 3634 1 0 0
## 3635 2 0 0
## 3636 2 0 0
## 3637 1 0 0
## 3638 1 0 0
## 3639 3 1 0
## 3640 0 0 0
## 3641 2 0 0
## 3642 3 0 0
## 3643 2 0 0
## 3644 2 0 0
## 3645 2 0 0
## 3646 2 0 0
## 3647 2 0 0
## 3648 2 0 0
## 3649 2 1 0
## 3650 2 1 0
## 3651 3 0 0
## 3652 2 0 0
## 3653 2 0 0
## 3654 2 1 0
## 3655 2 1 0
## 3656 2 0 0
## 3657 2 0 0
## 3658 2 0 0
## 3659 3 1 0
## 3660 2 0 0
## 3661 2 0 0
## 3662 2 0 0
## 3663 2 0 0
## 3664 2 1 0
## 3665 2 0 0
## 3666 2 0 0
## 3667 2 0 0
## 3668 2 0 0
## 3669 2 0 0
## 3670 2 0 0
## 3671 2 2 0
## 3672 2 0 0
## 3673 2 0 0
## 3674 2 2 0
## 3675 2 0 0
## 3676 2 1 0
## 3677 2 0 0
## 3678 2 0 0
## 3679 2 0 0
## 3680 2 0 0
## 3681 2 0 0
## 3682 2 0 0
## 3683 2 0 0
## 3684 2 0 0
## 3685 2 0 0
## 3686 2 0 0
## 3687 2 0 0
## 3688 2 0 0
## 3689 2 0 0
## 3690 2 0 0
## 3691 2 0 0
## 3692 2 0 0
## 3693 2 0 0
## 3694 2 0 0
## 3695 2 0 0
## 3696 2 0 0
## 3697 2 0 0
## 3698 2 0 0
## 3699 2 0 0
## 3700 2 0 0
## 3701 2 0 0
## 3702 2 0 0
## 3703 2 0 0
## 3704 2 0 0
## 3705 2 0 0
## 3706 2 0 0
## 3707 2 0 0
## 3708 1 0 0
## 3709 2 0 0
## 3710 2 0 0
## 3711 2 0 0
## 3712 2 0 0
## 3713 2 0 0
## 3714 1 0 0
## 3715 2 0 0
## 3716 2 0 0
## 3717 2 0 0
## 3718 2 0 0
## 3719 2 0 0
## 3720 2 0 0
## 3721 2 0 0
## 3722 2 0 0
## 3723 2 0 0
## 3724 2 0 0
## 3725 1 0 0
## 3726 2 0 0
## 3727 2 0 0
## 3728 2 0 0
## 3729 2 0 0
## 3730 2 0 0
## 3731 2 0 0
## 3732 2 0 0
## 3733 2 0 0
## 3734 2 0 0
## 3735 2 0 0
## 3736 2 0 0
## 3737 1 0 0
## 3738 2 0 0
## 3739 1 0 0
## 3740 2 0 0
## 3741 2 0 0
## 3742 2 0 0
## 3743 2 2 0
## 3744 2 0 0
## 3745 1 0 0
## 3746 2 0 0
## 3747 2 0 0
## 3748 2 0 0
## 3749 2 0 0
## 3750 2 0 0
## 3751 2 0 0
## 3752 2 0 0
## 3753 2 0 0
## 3754 1 0 0
## 3755 1 0 0
## 3756 1 0 0
## 3757 2 0 0
## 3758 2 0 0
## 3759 2 0 0
## 3760 2 0 0
## 3761 2 0 0
## 3762 2 0 0
## 3763 2 0 0
## 3764 1 0 0
## 3765 2 0 0
## 3766 1 0 0
## 3767 1 0 0
## 3768 2 0 0
## 3769 2 0 0
## 3770 1 0 0
## 3771 2 0 0
## 3772 2 0 0
## 3773 2 0 0
## 3774 2 0 0
## 3775 2 0 0
## 3776 2 0 0
## 3777 2 0 0
## 3778 2 0 0
## 3779 2 0 0
## 3780 2 0 0
## 3781 1 0 0
## 3782 2 0 0
## 3783 2 0 0
## 3784 1 0 0
## 3785 2 0 0
## 3786 1 0 0
## 3787 2 0 0
## 3788 1 0 0
## 3789 1 0 0
## 3790 2 0 0
## 3791 2 0 0
## 3792 2 0 0
## 3793 2 0 0
## 3794 2 0 0
## 3795 1 0 0
## 3796 1 0 0
## 3797 1 0 0
## 3798 2 0 0
## 3799 1 0 0
## 3800 2 0 0
## 3801 2 0 0
## 3802 1 0 0
## 3803 2 0 0
## 3804 2 0 0
## 3805 2 0 0
## 3806 2 0 0
## 3807 2 0 0
## 3808 2 0 0
## 3809 1 0 0
## 3810 2 0 0
## 3811 1 0 0
## 3812 2 0 0
## 3813 2 0 0
## 3814 2 1 0
## 3815 2 2 0
## 3816 2 0 0
## 3817 2 0 0
## 3818 2 1 0
## 3819 2 1 0
## 3820 2 0 0
## 3821 2 0 0
## 3822 2 0 0
## 3823 2 0 0
## 3824 2 0 0
## 3825 2 0 0
## 3826 2 0 0
## 3827 2 0 0
## 3828 2 0 0
## 3829 2 0 0
## 3830 2 0 0
## 3831 2 0 0
## 3832 2 2 0
## 3833 2 0 0
## 3834 2 0 0
## 3835 2 0 0
## 3836 2 0 0
## 3837 3 1 0
## 3838 2 0 0
## 3839 2 0 0
## 3840 2 0 0
## 3841 2 0 0
## 3842 2 0 0
## 3843 2 0 0
## 3844 2 0 0
## 3845 2 0 0
## 3846 2 0 0
## 3847 2 0 0
## 3848 2 0 0
## 3849 2 0 0
## 3850 2 0 0
## 3851 2 0 0
## 3852 2 0 0
## 3853 2 0 0
## 3854 2 0 0
## 3855 2 0 0
## 3856 2 0 0
## 3857 1 0 0
## 3858 1 0 0
## 3859 2 0 0
## 3860 2 0 0
## 3861 2 0 0
## 3862 2 0 0
## 3863 2 0 0
## 3864 2 0 0
## 3865 2 0 0
## 3866 2 0 0
## 3867 2 0 0
## 3868 2 2 0
## 3869 2 0 0
## 3870 2 0 0
## 3871 2 0 0
## 3872 2 0 0
## 3873 2 0 0
## 3874 2 0 0
## 3875 2 0 0
## 3876 2 0 0
## 3877 2 0 0
## 3878 2 0 0
## 3879 2 0 0
## 3880 2 0 0
## 3881 2 0 0
## 3882 2 0 0
## 3883 2 0 0
## 3884 2 0 0
## 3885 2 0 0
## 3886 2 0 0
## 3887 2 0 0
## 3888 2 0 0
## 3889 2 0 0
## 3890 2 0 0
## 3891 2 0 0
## 3892 1 0 0
## 3893 2 0 0
## 3894 2 0 0
## 3895 2 0 0
## 3896 2 0 0
## 3897 1 0 0
## 3898 2 0 0
## 3899 2 0 0
## 3900 2 0 0
## 3901 2 0 0
## 3902 1 0 0
## 3903 2 0 0
## 3904 2 0 0
## 3905 1 0 0
## 3906 3 1 0
## 3907 2 0 0
## 3908 2 0 0
## 3909 2 0 0
## 3910 2 0 0
## 3911 2 0 0
## 3912 2 0 0
## 3913 2 0 0
## 3914 2 0 0
## 3915 2 0 0
## 3916 2 0 0
## 3917 1 0 0
## 3918 3 0 0
## 3919 2 0 0
## 3920 2 0 0
## 3921 2 0 0
## 3922 2 0 0
## 3923 2 0 0
## 3924 3 0 0
## 3925 1 0 0
## 3926 2 0 0
## 3927 2 0 0
## 3928 2 0 0
## 3929 2 0 0
## 3930 2 0 0
## 3931 2 0 0
## 3932 2 0 0
## 3933 2 0 0
## 3934 2 0 0
## 3935 2 0 0
## 3936 2 0 0
## 3937 2 0 0
## 3938 2 0 0
## 3939 2 0 0
## 3940 2 0 0
## 3941 2 0 0
## 3942 2 0 0
## 3943 2 0 0
## 3944 2 0 0
## 3945 2 0 0
## 3946 2 0 0
## 3947 2 0 0
## 3948 2 0 0
## 3949 2 0 0
## 3950 2 0 0
## 3951 2 0 0
## 3952 2 0 0
## 3953 2 0 0
## 3954 2 0 0
## 3955 2 0 0
## 3956 2 0 0
## 3957 2 0 0
## 3958 2 0 0
## 3959 2 0 0
## 3960 2 0 0
## 3961 2 0 0
## 3962 2 0 0
## 3963 2 0 0
## 3964 2 0 0
## 3965 1 0 0
## 3966 2 0 0
## 3967 2 0 0
## 3968 2 0 0
## 3969 2 0 0
## 3970 2 0 0
## 3971 2 0 0
## 3972 2 0 0
## 3973 2 0 0
## 3974 2 0 0
## 3975 2 0 0
## 3976 2 0 0
## 3977 2 0 0
## 3978 2 0 0
## 3979 2 0 0
## 3980 2 0 0
## 3981 2 0 0
## 3982 2 0 0
## 3983 2 0 0
## 3984 2 0 0
## 3985 2 0 0
## 3986 2 0 0
## 3987 2 0 0
## 3988 2 0 0
## 3989 2 0 0
## 3990 2 0 0
## 3991 2 0 0
## 3992 2 0 0
## 3993 2 0 0
## 3994 2 0 0
## 3995 2 0 0
## 3996 2 0 0
## 3997 2 0 0
## 3998 2 0 0
## 3999 2 0 0
## 4000 3 0 0
## 4001 1 0 0
## 4002 2 0 0
## 4003 2 0 0
## 4004 2 0 0
## 4005 2 0 0
## 4006 2 0 0
## 4007 2 0 0
## 4008 2 0 0
## 4009 2 0 0
## 4010 2 0 0
## 4011 2 0 0
## 4012 2 0 0
## 4013 2 0 0
## 4014 2 0 0
## 4015 2 0 0
## 4016 2 0 0
## 4017 2 0 0
## 4018 2 0 0
## 4019 2 0 0
## 4020 2 0 0
## 4021 2 0 0
## 4022 2 0 0
## 4023 2 0 0
## 4024 2 0 0
## 4025 3 0 0
## 4026 1 0 0
## 4027 2 0 0
## 4028 2 0 0
## 4029 2 0 0
## 4030 2 0 0
## 4031 2 0 0
## 4032 2 0 0
## 4033 2 0 0
## 4034 2 0 0
## 4035 2 0 0
## 4036 2 0 0
## 4037 2 0 0
## 4038 2 0 0
## 4039 2 0 0
## 4040 2 1 0
## 4041 2 0 0
## 4042 2 0 0
## 4043 2 0 0
## 4044 2 0 0
## 4045 2 0 0
## 4046 2 2 0
## 4047 2 0 0
## 4048 1 0 0
## 4049 2 0 0
## 4050 2 0 0
## 4051 2 0 0
## 4052 2 0 0
## 4053 2 0 0
## 4054 3 1 0
## 4055 2 2 0
## 4056 2 0 0
## 4057 2 1 0
## 4058 0 0 0
## 4059 2 0 0
## 4060 2 0 0
## 4061 2 0 0
## 4062 2 2 0
## 4063 2 0 0
## 4064 2 0 0
## 4065 2 1 0
## 4066 2 0 0
## 4067 2 0 0
## 4068 2 0 0
## 4069 2 0 0
## 4070 2 0 0
## 4071 2 0 0
## 4072 2 0 0
## 4073 2 0 0
## 4074 2 0 0
## 4075 2 0 0
## 4076 2 0 0
## 4077 2 0 0
## 4078 2 0 0
## 4079 2 0 0
## 4080 3 0 0
## 4081 1 0 0
## 4082 2 0 0
## 4083 1 0 0
## 4084 2 0 0
## 4085 2 0 0
## 4086 2 0 0
## 4087 2 0 0
## 4088 2 1 0
## 4089 2 0 0
## 4090 2 0 0
## 4091 2 0 0
## 4092 2 0 0
## 4093 2 0 0
## 4094 2 0 0
## 4095 3 1 0
## 4096 3 1 0
## 4097 2 0 0
## 4098 1 0 0
## 4099 2 0 0
## 4100 2 0 0
## 4101 2 0 0
## 4102 1 0 0
## 4103 1 0 0
## 4104 2 1 0
## 4105 2 2 0
## 4106 1 0 0
## 4107 2 2 0
## 4108 1 0 0
## 4109 2 1 0
## 4110 2 1 0
## 4111 2 0 0
## 4112 2 2 0
## 4113 2 0 0
## 4114 2 0 0
## 4115 2 0 0
## 4116 2 2 0
## 4117 2 0 0
## 4118 2 0 0
## 4119 2 0 0
## 4120 2 0 0
## 4121 2 0 0
## 4122 2 1 0
## 4123 2 0 0
## 4124 2 0 0
## 4125 2 0 0
## 4126 2 0 0
## 4127 2 0 0
## 4128 2 0 0
## 4129 2 0 0
## 4130 2 0 0
## 4131 2 0 0
## 4132 2 0 0
## 4133 1 0 0
## 4134 2 0 0
## 4135 2 0 0
## 4136 2 0 0
## 4137 2 0 0
## 4138 2 0 0
## 4139 2 0 0
## 4140 2 0 0
## 4141 2 0 0
## 4142 2 0 0
## 4143 2 0 0
## 4144 2 0 0
## 4145 2 0 0
## 4146 2 0 0
## 4147 2 0 0
## 4148 2 0 0
## 4149 2 0 0
## 4150 2 0 0
## 4151 2 0 0
## 4152 1 0 0
## 4153 2 0 0
## 4154 2 0 0
## 4155 2 0 0
## 4156 2 0 0
## 4157 2 0 0
## 4158 2 0 0
## 4159 2 0 0
## 4160 2 0 0
## 4161 2 0 0
## 4162 2 0 0
## 4163 2 0 0
## 4164 2 0 0
## 4165 2 0 0
## 4166 2 0 0
## 4167 2 0 0
## 4168 2 0 0
## 4169 2 0 0
## 4170 2 0 0
## 4171 2 0 0
## 4172 2 0 0
## 4173 2 0 0
## 4174 2 0 0
## 4175 2 0 0
## 4176 2 0 0
## 4177 2 0 0
## 4178 2 0 0
## 4179 2 0 0
## 4180 2 0 0
## 4181 2 0 0
## 4182 2 0 0
## 4183 2 0 0
## 4184 2 0 0
## 4185 2 0 0
## 4186 2 0 0
## 4187 2 0 0
## 4188 2 0 0
## 4189 1 0 0
## 4190 2 0 0
## 4191 2 0 0
## 4192 2 0 0
## 4193 2 2 0
## 4194 2 0 0
## 4195 1 0 0
## 4196 1 0 0
## 4197 2 0 0
## 4198 2 2 0
## 4199 2 0 0
## 4200 2 0 0
## 4201 2 0 0
## 4202 2 0 0
## 4203 2 0 0
## 4204 2 0 0
## 4205 2 0 0
## 4206 2 0 0
## 4207 1 0 0
## 4208 2 0 0
## 4209 2 0 0
## 4210 2 0 0
## 4211 2 0 0
## 4212 2 0 0
## 4213 2 0 0
## 4214 2 0 0
## 4215 2 0 0
## 4216 2 0 0
## 4217 1 0 0
## 4218 2 0 0
## 4219 1 0 0
## 4220 2 0 0
## 4221 2 0 0
## 4222 2 0 0
## 4223 2 0 0
## 4224 2 0 0
## 4225 2 0 0
## 4226 2 0 0
## 4227 2 0 0
## 4228 2 0 0
## 4229 2 0 0
## 4230 2 0 0
## 4231 2 0 0
## 4232 2 0 0
## 4233 2 0 0
## 4234 2 0 0
## 4235 2 0 0
## 4236 2 0 0
## 4237 2 0 0
## 4238 2 0 0
## 4239 2 0 0
## 4240 2 0 0
## 4241 2 0 0
## 4242 1 0 0
## 4243 1 0 0
## 4244 1 0 0
## 4245 2 0 0
## 4246 1 0 0
## 4247 2 0 0
## 4248 2 0 0
## 4249 2 0 0
## 4250 1 0 0
## 4251 2 0 0
## 4252 2 0 0
## 4253 1 0 0
## 4254 2 0 0
## 4255 2 0 0
## 4256 2 0 0
## 4257 2 0 0
## 4258 2 0 0
## 4259 2 0 0
## 4260 2 0 0
## 4261 2 0 0
## 4262 2 0 0
## 4263 2 0 0
## 4264 2 0 0
## 4265 2 0 0
## 4266 2 0 0
## 4267 2 0 0
## 4268 2 0 0
## 4269 2 0 0
## 4270 1 0 0
## 4271 1 0 0
## 4272 1 0 0
## 4273 2 0 0
## 4274 1 0 0
## 4275 2 0 0
## 4276 2 0 0
## 4277 1 0 0
## 4278 1 0 0
## 4279 2 0 0
## 4280 1 0 0
## 4281 1 0 0
## 4282 1 0 0
## 4283 2 0 0
## 4284 2 0 0
## 4285 1 0 0
## 4286 2 0 0
## 4287 2 0 0
## 4288 2 0 0
## 4289 2 0 0
## 4290 2 0 0
## 4291 2 0 0
## 4292 2 0 0
## 4293 2 0 0
## 4294 2 0 0
## 4295 2 0 0
## 4296 2 0 0
## 4297 1 0 0
## 4298 1 0 0
## 4299 2 0 0
## 4300 2 0 0
## 4301 2 0 0
## 4302 2 0 0
## 4303 2 0 0
## 4304 2 0 0
## 4305 2 0 0
## 4306 2 0 0
## 4307 2 0 0
## 4308 1 0 0
## 4309 2 0 0
## 4310 2 0 0
## 4311 1 0 0
## 4312 1 0 0
## 4313 2 0 0
## 4314 1 0 0
## 4315 1 0 0
## 4316 1 0 0
## 4317 1 0 0
## 4318 1 0 0
## 4319 1 0 0
## 4320 1 0 0
## 4321 1 0 0
## 4322 1 0 0
## 4323 1 0 0
## 4324 1 0 0
## 4325 2 2 0
## 4326 2 0 0
## 4327 2 0 0
## 4328 2 0 0
## 4329 1 0 0
## 4330 1 0 0
## 4331 1 0 0
## 4332 1 0 0
## 4333 1 0 0
## 4334 2 0 0
## 4335 1 0 0
## 4336 2 0 0
## 4337 2 0 0
## 4338 2 0 0
## 4339 2 0 0
## 4340 2 0 0
## 4341 2 0 0
## 4342 1 0 0
## 4343 2 0 0
## 4344 2 0 0
## 4345 1 0 0
## 4346 2 0 0
## 4347 2 0 0
## 4348 2 0 0
## 4349 2 0 0
## 4350 2 0 0
## 4351 1 0 0
## 4352 2 0 0
## 4353 2 0 0
## 4354 1 0 0
## 4355 2 0 0
## 4356 2 0 0
## 4357 2 0 0
## 4358 2 0 0
## 4359 1 0 0
## 4360 1 0 0
## 4361 1 0 0
## 4362 1 0 0
## 4363 2 0 0
## 4364 1 0 0
## 4365 2 0 0
## 4366 2 0 0
## 4367 2 0 0
## 4368 2 0 0
## 4369 2 2 0
## 4370 2 0 0
## 4371 2 0 0
## 4372 2 0 0
## 4373 2 0 0
## 4374 2 2 0
## 4375 2 0 0
## 4376 1 0 0
## 4377 2 0 0
## 4378 2 2 0
## 4379 2 0 0
## 4380 2 0 0
## 4381 2 0 0
## 4382 2 0 0
## 4383 1 0 0
## 4384 2 0 0
## 4385 2 0 0
## 4386 3 1 0
## 4387 2 2 0
## 4388 2 0 0
## 4389 2 0 0
## 4390 1 0 0
## 4391 2 0 0
## 4392 2 0 0
## 4393 2 0 0
## 4394 1 0 0
## 4395 2 2 0
## 4396 2 0 0
## 4397 2 1 0
## 4398 2 0 0
## 4399 2 0 0
## 4400 2 0 0
## 4401 2 0 0
## 4402 2 0 0
## 4403 2 0 0
## 4404 1 0 0
## 4405 1 0 0
## 4406 2 0 0
## 4407 2 0 0
## 4408 2 0 0
## 4409 2 0 0
## 4410 2 0 0
## 4411 2 0 0
## 4412 2 0 0
## 4413 1 0 0
## 4414 2 0 0
## 4415 2 0 0
## 4416 2 0 0
## 4417 2 0 0
## 4418 3 1 0
## 4419 2 0 0
## 4420 2 0 0
## 4421 2 2 0
## 4422 3 1 0
## 4423 3 1 0
## 4424 2 0 0
## 4425 2 1 0
## 4426 2 0 0
## 4427 2 0 0
## 4428 2 0 0
## 4429 2 0 0
## 4430 2 0 0
## 4431 2 0 0
## 4432 2 0 0
## 4433 2 0 0
## 4434 2 0 0
## 4435 2 0 0
## 4436 2 0 0
## 4437 2 0 0
## 4438 2 0 0
## 4439 2 0 0
## 4440 2 0 0
## 4441 2 0 0
## 4442 2 0 0
## 4443 2 0 0
## 4444 2 0 0
## 4445 2 0 0
## 4446 2 0 0
## 4447 2 0 0
## 4448 2 0 0
## 4449 2 0 0
## 4450 2 0 0
## 4451 2 0 0
## 4452 2 0 0
## 4453 3 0 0
## 4454 2 0 0
## 4455 2 0 0
## 4456 2 0 0
## 4457 2 0 0
## 4458 2 0 0
## 4459 2 0 0
## 4460 2 0 0
## 4461 2 0 0
## 4462 2 0 0
## 4463 2 0 0
## 4464 2 0 0
## 4465 2 0 0
## 4466 3 0 0
## 4467 2 0 0
## 4468 2 0 0
## 4469 2 0 0
## 4470 2 0 0
## 4471 1 0 0
## 4472 1 0 0
## 4473 2 0 0
## 4474 3 0 0
## 4475 3 1 0
## 4476 1 0 0
## 4477 2 0 0
## 4478 2 0 0
## 4479 2 0 0
## 4480 2 0 0
## 4481 2 0 0
## 4482 2 0 0
## 4483 2 0 0
## 4484 3 0 0
## 4485 2 1 0
## 4486 2 0 0
## 4487 2 0 0
## 4488 2 0 0
## 4489 2 2 0
## 4490 2 2 0
## 4491 2 0 0
## 4492 2 0 0
## 4493 2 0 0
## 4494 2 0 0
## 4495 2 0 0
## 4496 2 0 0
## 4497 2 0 0
## 4498 2 0 0
## 4499 2 0 0
## 4500 2 0 0
## 4501 2 2 0
## 4502 2 0 0
## 4503 2 0 0
## 4504 2 0 0
## 4505 2 0 0
## 4506 2 0 0
## 4507 2 0 0
## 4508 2 0 0
## 4509 3 0 0
## 4510 2 0 0
## 4511 2 0 0
## 4512 2 0 0
## 4513 3 0 0
## 4514 1 0 0
## 4515 2 0 0
## 4516 2 0 0
## 4517 2 0 0
## 4518 2 2 0
## 4519 2 0 0
## 4520 2 0 0
## 4521 2 0 0
## 4522 2 0 0
## 4523 2 0 0
## 4524 2 0 0
## 4525 2 0 0
## 4526 2 0 0
## 4527 3 0 0
## 4528 2 0 0
## 4529 2 0 0
## 4530 2 0 0
## 4531 2 0 0
## 4532 3 0 0
## 4533 2 0 0
## 4534 2 0 0
## 4535 2 0 0
## 4536 2 0 0
## 4537 2 0 0
## 4538 2 0 0
## 4539 2 0 0
## 4540 2 0 0
## 4541 2 0 0
## 4542 2 0 0
## 4543 2 0 0
## 4544 2 0 0
## 4545 2 0 0
## 4546 2 0 0
## 4547 2 0 0
## 4548 2 0 0
## 4549 2 0 0
## 4550 2 0 0
## 4551 2 0 0
## 4552 2 0 0
## 4553 2 0 0
## 4554 2 0 0
## 4555 2 0 0
## 4556 2 0 0
## 4557 2 0 0
## 4558 2 0 0
## 4559 2 0 0
## 4560 2 0 0
## 4561 2 0 0
## 4562 2 0 0
## 4563 2 0 0
## 4564 2 0 0
## 4565 2 0 0
## 4566 2 0 0
## 4567 2 0 0
## 4568 2 0 0
## 4569 2 0 0
## 4570 2 0 0
## 4571 2 0 0
## 4572 2 0 0
## 4573 2 0 0
## 4574 2 0 0
## 4575 2 0 0
## 4576 2 0 0
## 4577 2 0 0
## 4578 2 0 0
## 4579 2 0 0
## 4580 2 0 0
## 4581 2 0 0
## 4582 2 2 0
## 4583 2 0 0
## 4584 2 0 0
## 4585 1 0 0
## 4586 2 0 0
## 4587 2 0 0
## 4588 2 0 0
## 4589 2 0 0
## 4590 2 0 0
## 4591 2 0 0
## 4592 2 0 0
## 4593 2 0 0
## 4594 2 0 0
## 4595 2 0 0
## 4596 2 0 0
## 4597 2 2 0
## 4598 2 0 0
## 4599 2 0 0
## 4600 2 2 0
## 4601 2 0 0
## 4602 2 2 0
## 4603 2 0 0
## 4604 2 0 0
## 4605 2 0 0
## 4606 1 0 0
## 4607 2 0 0
## 4608 2 0 0
## 4609 2 0 0
## 4610 2 0 0
## 4611 2 0 0
## 4612 2 2 0
## 4613 1 0 0
## 4614 2 0 0
## 4615 2 0 0
## 4616 2 0 0
## 4617 2 0 0
## 4618 2 0 0
## 4619 2 0 0
## 4620 2 0 0
## 4621 2 0 0
## 4622 2 1 0
## 4623 2 0 0
## 4624 2 0 0
## 4625 1 0 0
## 4626 1 0 0
## 4627 2 0 0
## 4628 2 0 0
## 4629 2 0 0
## 4630 2 0 0
## 4631 1 0 0
## 4632 2 0 0
## 4633 2 0 0
## 4634 2 0 0
## 4635 3 0 0
## 4636 2 0 0
## 4637 2 0 0
## 4638 2 0 0
## 4639 1 0 0
## 4640 2 0 0
## 4641 2 0 0
## 4642 2 1 0
## 4643 2 0 0
## 4644 1 0 0
## 4645 2 0 0
## 4646 2 2 0
## 4647 2 0 0
## 4648 1 0 0
## 4649 1 0 0
## 4650 2 0 0
## 4651 2 0 0
## 4652 1 0 0
## 4653 3 0 0
## 4654 1 0 0
## 4655 2 1 0
## 4656 2 0 0
## 4657 2 0 0
## 4658 2 0 0
## 4659 2 0 0
## 4660 2 0 0
## 4661 2 0 0
## 4662 2 0 0
## 4663 2 2 0
## 4664 2 0 0
## 4665 2 0 0
## 4666 2 0 0
## 4667 2 0 0
## 4668 2 0 0
## 4669 2 0 0
## 4670 2 0 0
## 4671 2 0 0
## 4672 2 0 0
## 4673 2 0 0
## 4674 2 0 0
## 4675 2 0 0
## 4676 2 0 0
## 4677 2 0 0
## 4678 2 0 0
## 4679 2 0 0
## 4680 2 0 0
## 4681 1 0 0
## 4682 2 0 0
## 4683 2 0 0
## 4684 2 0 0
## 4685 2 0 0
## 4686 2 0 0
## 4687 2 0 0
## 4688 2 0 0
## 4689 1 0 0
## 4690 2 0 0
## 4691 3 0 0
## 4692 1 0 0
## 4693 2 1 0
## 4694 2 0 0
## 4695 2 0 0
## 4696 1 0 0
## 4697 1 0 0
## 4698 2 0 0
## 4699 2 0 0
## 4700 2 0 0
## 4701 3 0 0
## 4702 2 0 0
## 4703 2 0 0
## 4704 2 0 0
## 4705 2 0 0
## 4706 2 0 0
## 4707 2 0 0
## 4708 2 0 0
## 4709 2 0 0
## 4710 2 0 0
## 4711 2 0 0
## 4712 1 0 0
## 4713 1 0 0
## 4714 2 0 0
## 4715 2 0 0
## 4716 2 0 0
## 4717 2 0 0
## 4718 1 0 0
## 4719 1 0 0
## 4720 2 0 0
## 4721 2 0 0
## 4722 2 0 0
## 4723 2 0 0
## 4724 2 0 0
## 4725 2 0 0
## 4726 2 0 0
## 4727 2 0 0
## 4728 2 0 0
## 4729 2 2 0
## 4730 2 0 0
## 4731 2 0 0
## 4732 2 0 0
## 4733 1 0 0
## 4734 2 0 0
## 4735 2 0 0
## 4736 2 0 0
## 4737 2 0 0
## 4738 2 0 0
## 4739 2 0 0
## 4740 3 1 0
## 4741 2 0 0
## 4742 2 0 0
## 4743 2 2 0
## 4744 2 0 0
## 4745 2 0 0
## 4746 2 0 0
## 4747 2 1 0
## 4748 2 0 0
## 4749 2 0 0
## 4750 1 0 0
## 4751 2 2 0
## 4752 2 1 0
## 4753 2 0 0
## 4754 1 0 0
## 4755 2 0 0
## 4756 2 0 0
## 4757 2 0 0
## 4758 1 0 0
## 4759 1 0 0
## 4760 1 0 0
## 4761 2 0 0
## 4762 2 0 0
## 4763 2 0 0
## 4764 1 0 0
## 4765 2 0 0
## 4766 2 0 0
## 4767 1 0 0
## 4768 1 0 0
## 4769 1 0 0
## 4770 2 0 0
## 4771 2 0 0
## 4772 2 0 0
## 4773 1 0 0
## 4774 2 0 0
## 4775 2 0 0
## 4776 1 0 0
## 4777 1 0 0
## 4778 2 0 0
## 4779 2 0 0
## 4780 3 0 0
## 4781 2 0 0
## 4782 2 0 0
## 4783 1 0 0
## 4784 2 0 0
## 4785 1 0 0
## 4786 2 0 0
## 4787 2 0 0
## 4788 2 0 0
## 4789 1 0 0
## 4790 1 0 0
## 4791 1 0 0
## 4792 1 0 0
## 4793 2 0 0
## 4794 2 0 0
## 4795 2 0 0
## 4796 2 0 0
## 4797 2 0 0
## 4798 2 2 0
## 4799 2 0 0
## 4800 2 0 0
## 4801 2 0 0
## 4802 2 0 0
## 4803 2 0 0
## 4804 2 0 0
## 4805 2 0 0
## 4806 2 0 0
## 4807 2 0 0
## 4808 2 0 0
## 4809 2 0 0
## 4810 2 0 0
## 4811 2 0 0
## 4812 2 0 0
## 4813 1 0 0
## 4814 2 0 0
## 4815 1 0 0
## 4816 1 0 0
## 4817 2 0 0
## 4818 2 0 0
## 4819 2 0 0
## 4820 2 0 0
## 4821 2 0 0
## 4822 2 0 0
## 4823 2 0 0
## 4824 2 0 0
## 4825 2 0 0
## 4826 2 0 0
## 4827 2 0 0
## 4828 2 0 0
## 4829 2 0 0
## 4830 2 0 0
## 4831 2 0 0
## 4832 2 0 0
## 4833 2 0 0
## 4834 2 0 0
## 4835 2 0 0
## 4836 2 0 0
## 4837 2 0 0
## 4838 1 0 0
## 4839 2 0 0
## 4840 2 0 0
## 4841 1 0 0
## 4842 2 0 0
## 4843 2 0 0
## 4844 2 0 0
## 4845 3 1 0
## 4846 2 2 0
## 4847 2 0 0
## 4848 3 1 0
## 4849 2 0 0
## 4850 1 0 0
## 4851 1 0 0
## 4852 1 0 0
## 4853 2 0 0
## 4854 1 0 0
## 4855 2 0 0
## 4856 2 0 0
## 4857 2 0 0
## 4858 2 0 0
## 4859 1 0 0
## 4860 2 0 0
## 4861 2 0 0
## 4862 2 0 0
## 4863 2 0 0
## 4864 2 0 0
## 4865 2 0 0
## 4866 2 0 0
## 4867 2 0 0
## 4868 2 0 0
## 4869 2 0 0
## 4870 3 0 0
## 4871 2 0 0
## 4872 2 0 0
## 4873 2 0 0
## 4874 1 0 0
## 4875 1 0 0
## 4876 2 0 0
## 4877 2 0 0
## 4878 1 0 0
## 4879 2 0 0
## 4880 2 0 0
## 4881 2 0 0
## 4882 2 0 0
## 4883 1 0 0
## 4884 2 0 0
## 4885 2 0 0
## 4886 2 0 0
## 4887 2 0 0
## 4888 2 0 0
## 4889 2 0 0
## 4890 1 0 0
## 4891 1 0 0
## 4892 2 0 0
## 4893 2 0 0
## 4894 2 0 0
## 4895 2 0 0
## 4896 2 0 0
## 4897 1 0 0
## 4898 1 0 0
## 4899 2 0 0
## 4900 2 0 0
## 4901 2 0 0
## 4902 2 0 0
## 4903 2 0 0
## 4904 2 0 0
## 4905 2 0 0
## 4906 2 0 0
## 4907 2 0 0
## 4908 2 0 0
## 4909 2 0 0
## 4910 2 0 0
## 4911 2 0 0
## 4912 2 0 0
## 4913 2 0 0
## 4914 2 0 0
## 4915 2 0 0
## 4916 2 0 0
## 4917 2 0 0
## 4918 1 0 0
## 4919 1 0 0
## 4920 2 0 0
## 4921 2 0 0
## 4922 2 0 0
## 4923 2 0 0
## 4924 2 0 0
## 4925 2 0 0
## 4926 2 0 0
## 4927 2 0 0
## 4928 2 0 0
## 4929 2 0 0
## 4930 2 0 0
## 4931 2 0 0
## 4932 2 0 0
## 4933 2 0 0
## 4934 2 0 0
## 4935 2 0 0
## 4936 2 0 0
## 4937 2 0 0
## 4938 2 0 0
## 4939 2 0 0
## 4940 2 0 0
## 4941 2 0 0
## 4942 2 0 0
## 4943 2 0 0
## 4944 2 0 0
## 4945 2 0 0
## 4946 2 0 0
## 4947 2 0 0
## 4948 2 0 0
## 4949 2 0 0
## 4950 2 0 0
## 4951 2 0 0
## 4952 2 0 0
## 4953 2 0 0
## 4954 2 0 0
## 4955 2 0 0
## 4956 2 0 0
## 4957 2 0 0
## 4958 2 0 0
## 4959 2 0 0
## 4960 2 0 0
## 4961 2 0 0
## 4962 1 0 0
## 4963 1 0 0
## 4964 2 0 0
## 4965 2 0 0
## 4966 2 0 0
## 4967 2 0 0
## 4968 2 0 0
## 4969 2 0 0
## 4970 2 0 0
## 4971 2 0 0
## 4972 2 0 0
## 4973 2 0 0
## 4974 2 0 0
## 4975 2 0 0
## 4976 1 0 0
## 4977 2 0 0
## 4978 2 0 0
## 4979 2 0 0
## 4980 1 0 0
## 4981 1 0 0
## 4982 2 0 0
## 4983 2 0 0
## 4984 2 0 0
## 4985 1 0 0
## 4986 1 0 0
## 4987 2 0 0
## 4988 2 0 0
## 4989 2 0 0
## 4990 2 0 0
## 4991 2 0 0
## 4992 2 0 0
## 4993 2 0 0
## 4994 2 0 0
## 4995 2 0 0
## 4996 2 0 0
## 4997 1 0 0
## 4998 1 0 0
## 4999 2 0 0
## 5000 1 0 0
## 5001 1 0 0
## 5002 2 0 0
## 5003 2 0 0
## 5004 2 0 0
## 5005 1 0 0
## 5006 2 0 0
## 5007 2 0 0
## 5008 2 0 0
## 5009 2 0 0
## 5010 2 0 0
## 5011 1 0 0
## 5012 1 0 0
## 5013 1 0 0
## 5014 2 0 0
## 5015 2 0 0
## 5016 2 0 0
## 5017 3 0 0
## 5018 2 0 0
## 5019 2 0 0
## 5020 2 0 0
## 5021 2 0 0
## 5022 2 0 0
## 5023 2 0 0
## 5024 2 0 0
## 5025 2 0 0
## 5026 2 0 0
## 5027 2 0 0
## 5028 2 0 0
## 5029 2 2 0
## 5030 2 0 0
## 5031 1 0 0
## 5032 1 0 0
## 5033 2 0 0
## 5034 1 0 0
## 5035 2 0 0
## 5036 2 0 0
## 5037 2 0 0
## 5038 2 0 0
## 5039 2 0 0
## 5040 2 0 0
## 5041 2 0 0
## 5042 2 0 0
## 5043 2 0 0
## 5044 2 0 0
## 5045 2 0 0
## 5046 2 0 0
## 5047 2 0 0
## 5048 2 0 0
## 5049 2 0 0
## 5050 2 0 0
## 5051 2 0 0
## 5052 1 0 0
## 5053 1 0 0
## 5054 1 0 0
## 5055 2 0 0
## 5056 2 0 0
## 5057 2 0 0
## 5058 1 0 0
## 5059 2 0 0
## 5060 1 0 0
## 5061 2 0 0
## 5062 2 0 0
## 5063 2 0 0
## 5064 2 0 0
## 5065 2 0 0
## 5066 1 0 0
## 5067 1 0 0
## 5068 2 0 0
## 5069 2 0 0
## 5070 2 0 0
## 5071 2 0 0
## 5072 2 0 0
## 5073 1 0 0
## 5074 2 0 0
## 5075 2 0 0
## 5076 1 0 0
## 5077 2 0 0
## 5078 1 0 0
## 5079 1 0 0
## 5080 2 0 0
## 5081 1 0 0
## 5082 1 0 0
## 5083 2 0 0
## 5084 2 0 0
## 5085 2 2 0
## 5086 2 0 0
## 5087 2 0 0
## 5088 1 0 0
## 5089 2 0 0
## 5090 2 0 0
## 5091 2 0 0
## 5092 2 0 0
## 5093 2 0 0
## 5094 2 0 0
## 5095 2 0 0
## 5096 2 0 0
## 5097 1 0 0
## 5098 2 0 0
## 5099 2 0 0
## 5100 2 0 0
## 5101 2 0 0
## 5102 2 0 0
## 5103 2 0 0
## 5104 1 0 0
## 5105 2 0 0
## 5106 2 0 0
## 5107 2 0 0
## 5108 1 0 0
## 5109 2 0 0
## 5110 2 0 0
## 5111 2 0 0
## 5112 2 0 0
## 5113 2 0 0
## 5114 2 0 0
## 5115 1 0 0
## 5116 2 0 0
## 5117 2 0 0
## 5118 1 0 0
## 5119 2 2 0
## 5120 1 0 0
## 5121 2 0 0
## 5122 2 0 0
## 5123 2 0 0
## 5124 1 0 0
## 5125 2 0 0
## 5126 2 0 0
## 5127 1 0 0
## 5128 2 0 0
## 5129 2 0 0
## 5130 2 0 0
## 5131 2 0 0
## 5132 2 0 0
## 5133 2 0 0
## 5134 2 0 0
## 5135 2 0 0
## 5136 2 0 0
## 5137 2 0 0
## 5138 2 0 0
## 5139 2 0 0
## 5140 2 0 0
## 5141 2 0 0
## 5142 2 0 0
## 5143 2 0 0
## 5144 2 0 0
## 5145 2 0 0
## 5146 2 0 0
## 5147 2 0 0
## 5148 2 0 0
## 5149 2 0 0
## 5150 2 0 0
## 5151 2 0 0
## 5152 3 0 0
## 5153 2 0 0
## 5154 2 0 0
## 5155 1 0 0
## 5156 1 0 0
## 5157 2 0 0
## 5158 2 0 0
## 5159 1 0 0
## 5160 2 0 0
## 5161 2 0 0
## 5162 2 0 0
## 5163 2 0 0
## 5164 2 0 0
## 5165 2 0 0
## 5166 2 0 0
## 5167 2 0 0
## 5168 2 0 0
## 5169 2 0 0
## 5170 2 0 0
## 5171 2 0 0
## 5172 2 0 0
## 5173 2 0 0
## 5174 2 0 0
## 5175 2 0 0
## 5176 2 0 0
## 5177 2 0 0
## 5178 2 0 0
## 5179 2 0 0
## 5180 2 0 0
## 5181 2 0 0
## 5182 2 0 0
## 5183 2 0 0
## 5184 1 0 0
## 5185 2 0 0
## 5186 2 0 0
## 5187 2 0 0
## 5188 2 0 0
## 5189 2 0 0
## 5190 2 0 0
## 5191 2 0 0
## 5192 2 0 0
## 5193 2 0 0
## 5194 2 0 0
## 5195 2 2 0
## 5196 2 0 0
## 5197 2 2 0
## 5198 2 0 0
## 5199 1 0 0
## 5200 1 0 0
## 5201 2 0 0
## 5202 2 0 0
## 5203 2 0 0
## 5204 2 0 0
## 5205 2 0 0
## 5206 2 0 0
## 5207 2 0 0
## 5208 2 0 0
## 5209 2 0 0
## 5210 2 0 0
## 5211 2 0 0
## 5212 2 0 0
## 5213 2 0 0
## 5214 1 0 0
## 5215 2 0 0
## 5216 2 0 0
## 5217 2 0 0
## 5218 2 0 0
## 5219 2 0 0
## 5220 2 0 0
## 5221 2 0 0
## 5222 2 0 0
## 5223 2 0 0
## 5224 2 0 0
## 5225 2 0 0
## 5226 2 0 0
## 5227 2 0 0
## 5228 2 0 0
## 5229 2 0 0
## 5230 2 0 0
## 5231 2 0 0
## 5232 2 0 0
## 5233 2 0 0
## 5234 1 0 0
## 5235 3 1 0
## 5236 2 0 0
## 5237 2 0 0
## 5238 2 2 0
## 5239 2 0 0
## 5240 1 0 0
## 5241 2 0 0
## 5242 2 0 0
## 5243 2 0 0
## 5244 2 0 0
## 5245 2 0 0
## 5246 2 0 0
## 5247 2 0 0
## 5248 2 0 0
## 5249 2 0 0
## 5250 2 0 0
## 5251 2 0 0
## 5252 2 0 0
## 5253 2 0 0
## 5254 2 0 0
## 5255 2 0 0
## 5256 2 0 0
## 5257 2 0 0
## 5258 2 0 0
## 5259 2 0 0
## 5260 2 0 0
## 5261 2 0 0
## 5262 2 0 0
## 5263 2 0 0
## 5264 2 0 0
## 5265 2 0 0
## 5266 2 0 0
## 5267 2 0 0
## 5268 3 1 0
## 5269 2 0 0
## 5270 2 2 0
## 5271 2 0 0
## 5272 2 0 0
## 5273 2 0 0
## 5274 1 0 0
## 5275 2 0 0
## 5276 2 0 0
## 5277 2 0 0
## 5278 2 0 0
## 5279 2 0 0
## 5280 2 0 0
## 5281 2 0 0
## 5282 2 0 0
## 5283 2 0 0
## 5284 2 0 0
## 5285 1 0 0
## 5286 2 0 0
## 5287 2 0 0
## 5288 2 0 0
## 5289 1 0 0
## 5290 2 0 0
## 5291 2 0 0
## 5292 2 0 0
## 5293 2 0 0
## 5294 2 0 0
## 5295 2 0 0
## 5296 2 0 0
## 5297 2 0 0
## 5298 2 0 0
## 5299 2 0 0
## 5300 2 0 0
## 5301 2 0 0
## 5302 2 0 0
## 5303 2 0 0
## 5304 2 0 0
## 5305 1 0 0
## 5306 2 0 0
## 5307 2 0 0
## 5308 2 0 0
## 5309 2 0 0
## 5310 2 0 0
## 5311 2 0 0
## 5312 2 0 0
## 5313 2 2 0
## 5314 2 0 0
## 5315 2 0 0
## 5316 2 0 0
## 5317 2 0 0
## 5318 2 0 0
## 5319 2 0 0
## 5320 2 0 0
## 5321 2 0 0
## 5322 2 0 0
## 5323 2 0 0
## 5324 2 0 0
## 5325 2 0 0
## 5326 2 0 0
## 5327 2 0 0
## 5328 2 0 0
## 5329 2 0 0
## 5330 2 0 0
## 5331 2 0 0
## 5332 2 0 0
## 5333 2 0 0
## 5334 2 0 0
## 5335 2 0 0
## 5336 2 0 0
## 5337 2 0 0
## 5338 2 0 0
## 5339 2 0 0
## 5340 2 0 0
## 5341 2 0 0
## 5342 2 0 0
## 5343 2 0 0
## 5344 2 0 0
## 5345 2 0 0
## 5346 1 0 0
## 5347 1 0 0
## 5348 2 0 0
## 5349 2 0 0
## 5350 2 0 0
## 5351 2 0 0
## 5352 2 0 0
## 5353 2 2 0
## 5354 2 0 0
## 5355 2 0 0
## 5356 2 0 0
## 5357 1 0 0
## 5358 2 0 0
## 5359 2 0 0
## 5360 3 1 0
## 5361 2 2 0
## 5362 2 0 0
## 5363 2 0 0
## 5364 2 0 0
## 5365 2 0 0
## 5366 2 0 0
## 5367 2 0 0
## 5368 2 0 0
## 5369 2 0 0
## 5370 2 0 0
## 5371 2 0 0
## 5372 2 0 0
## 5373 2 0 0
## 5374 2 0 0
## 5375 2 0 0
## 5376 2 0 0
## 5377 2 0 0
## 5378 2 0 0
## 5379 2 0 0
## 5380 2 0 0
## 5381 1 0 0
## 5382 2 0 0
## 5383 1 0 0
## 5384 2 0 0
## 5385 2 0 0
## 5386 2 0 0
## 5387 2 0 0
## 5388 2 0 0
## 5389 2 0 0
## 5390 2 0 0
## 5391 2 0 0
## 5392 2 0 0
## 5393 2 0 0
## 5394 2 0 0
## 5395 2 0 0
## 5396 2 0 0
## 5397 2 0 0
## 5398 2 0 0
## 5399 2 0 0
## 5400 2 0 0
## 5401 2 0 0
## 5402 2 0 0
## 5403 2 0 0
## 5404 2 0 0
## 5405 2 0 0
## 5406 1 0 0
## 5407 1 0 0
## 5408 2 0 0
## 5409 2 0 0
## 5410 2 0 0
## 5411 1 0 0
## 5412 2 0 0
## 5413 2 0 0
## 5414 2 0 0
## 5415 2 0 0
## 5416 2 0 0
## 5417 2 0 0
## 5418 2 0 0
## 5419 2 0 0
## 5420 2 0 0
## 5421 2 2 0
## 5422 2 0 0
## 5423 2 0 0
## 5424 2 0 0
## 5425 2 0 0
## 5426 2 0 0
## 5427 2 0 0
## 5428 2 0 0
## 5429 2 0 0
## 5430 2 0 0
## 5431 2 0 0
## 5432 2 0 0
## 5433 2 0 0
## 5434 1 0 0
## 5435 2 0 0
## 5436 2 0 0
## 5437 2 0 0
## 5438 3 1 0
## 5439 2 0 0
## 5440 2 0 0
## 5441 2 0 0
## 5442 2 0 0
## 5443 2 0 0
## 5444 2 0 0
## 5445 2 0 0
## 5446 2 2 0
## 5447 2 0 0
## 5448 2 0 0
## 5449 2 0 0
## 5450 2 0 0
## 5451 2 0 0
## 5452 2 0 0
## 5453 2 2 0
## 5454 2 0 0
## 5455 2 0 0
## 5456 2 0 0
## 5457 1 0 0
## 5458 2 0 0
## 5459 2 0 0
## 5460 2 0 0
## 5461 2 0 0
## 5462 2 0 0
## 5463 2 0 0
## 5464 2 0 0
## 5465 2 0 0
## 5466 2 0 0
## 5467 2 0 0
## 5468 2 0 0
## 5469 2 0 0
## 5470 2 0 0
## 5471 2 0 0
## 5472 2 0 0
## 5473 2 0 0
## 5474 2 0 0
## 5475 2 0 0
## 5476 2 0 0
## 5477 1 0 0
## 5478 2 0 0
## 5479 2 0 0
## 5480 1 0 0
## 5481 2 0 0
## 5482 2 0 0
## 5483 2 0 0
## 5484 2 0 0
## 5485 2 0 0
## 5486 2 0 0
## 5487 2 0 0
## 5488 1 0 0
## 5489 2 0 0
## 5490 2 0 0
## 5491 2 0 0
## 5492 2 0 0
## 5493 1 0 0
## 5494 2 0 0
## 5495 1 0 0
## 5496 2 0 0
## 5497 2 2 0
## 5498 2 0 0
## 5499 2 0 0
## 5500 2 0 0
## 5501 2 0 0
## 5502 2 0 0
## 5503 2 0 0
## 5504 2 2 0
## 5505 2 0 0
## 5506 2 0 0
## 5507 2 0 0
## 5508 2 0 0
## 5509 2 2 0
## 5510 2 0 0
## 5511 1 1 0
## 5512 2 0 0
## 5513 2 0 0
## 5514 2 0 0
## 5515 2 0 0
## 5516 2 0 0
## 5517 2 0 0
## 5518 2 0 0
## 5519 2 0 0
## 5520 2 0 0
## 5521 2 2 0
## 5522 2 0 0
## 5523 2 0 0
## 5524 2 0 0
## 5525 1 0 0
## 5526 2 0 0
## 5527 2 0 0
## 5528 2 0 0
## 5529 2 0 0
## 5530 2 0 0
## 5531 2 0 0
## 5532 2 0 0
## 5533 2 0 0
## 5534 2 0 0
## 5535 2 0 0
## 5536 2 0 0
## 5537 1 0 0
## 5538 3 0 0
## 5539 2 0 0
## 5540 2 0 0
## 5541 1 0 0
## 5542 1 0 0
## 5543 1 0 0
## 5544 1 0 0
## 5545 2 0 0
## 5546 2 0 0
## 5547 2 0 0
## 5548 2 0 0
## 5549 2 0 0
## 5550 2 0 0
## 5551 2 0 0
## 5552 2 0 0
## 5553 2 0 0
## 5554 2 0 0
## 5555 1 0 0
## 5556 2 0 0
## 5557 2 0 0
## 5558 2 0 0
## 5559 2 2 0
## 5560 2 0 0
## 5561 2 0 0
## 5562 2 0 0
## 5563 2 0 0
## 5564 2 0 0
## 5565 2 0 0
## 5566 2 0 0
## 5567 2 0 0
## 5568 2 0 0
## 5569 2 0 0
## 5570 2 0 0
## 5571 2 0 0
## 5572 2 0 0
## 5573 1 0 0
## 5574 2 0 0
## 5575 1 0 0
## 5576 1 0 0
## 5577 2 0 0
## 5578 2 0 0
## 5579 1 0 0
## 5580 3 0 0
## 5581 2 0 0
## 5582 2 0 0
## 5583 2 2 0
## 5584 2 0 0
## 5585 2 0 0
## 5586 2 0 0
## 5587 2 0 0
## 5588 2 0 0
## 5589 2 0 0
## 5590 2 0 0
## 5591 2 0 0
## 5592 3 1 0
## 5593 2 0 0
## 5594 2 0 0
## 5595 2 0 0
## 5596 2 0 0
## 5597 2 0 0
## 5598 2 0 0
## 5599 2 0 0
## 5600 2 0 0
## 5601 2 0 0
## 5602 2 0 0
## 5603 2 0 0
## 5604 2 0 0
## 5605 2 0 0
## 5606 2 0 0
## 5607 2 0 0
## 5608 2 0 0
## 5609 2 0 0
## 5610 1 0 0
## 5611 1 0 0
## 5612 2 0 0
## 5613 2 0 0
## 5614 2 0 0
## 5615 2 0 0
## 5616 2 0 0
## 5617 2 0 0
## 5618 2 0 0
## 5619 2 0 0
## 5620 2 0 0
## 5621 2 2 0
## 5622 2 0 0
## 5623 2 0 0
## 5624 1 0 0
## 5625 2 0 0
## 5626 2 0 0
## 5627 2 0 0
## 5628 2 0 0
## 5629 2 0 0
## 5630 1 0 0
## 5631 2 0 0
## 5632 2 0 0
## 5633 1 0 0
## 5634 3 0 0
## 5635 2 0 0
## 5636 2 0 0
## 5637 2 0 0
## 5638 2 0 0
## 5639 2 0 0
## 5640 2 0 0
## 5641 2 0 0
## 5642 2 0 0
## 5643 1 0 0
## 5644 2 0 0
## 5645 2 0 0
## 5646 1 0 0
## 5647 2 0 0
## 5648 2 0 0
## 5649 2 0 0
## 5650 2 0 0
## 5651 1 0 0
## 5652 1 0 0
## 5653 2 0 0
## 5654 2 0 0
## 5655 2 0 0
## 5656 2 0 0
## 5657 2 0 0
## 5658 2 0 0
## 5659 2 0 0
## 5660 2 0 0
## 5661 2 0 0
## 5662 2 0 0
## 5663 2 0 0
## 5664 2 0 0
## 5665 2 0 0
## 5666 2 0 0
## 5667 2 0 0
## 5668 2 0 0
## 5669 2 0 0
## 5670 2 0 0
## 5671 2 0 0
## 5672 2 0 0
## 5673 2 0 0
## 5674 2 0 0
## 5675 2 0 0
## 5676 2 0 0
## 5677 2 0 0
## 5678 2 0 0
## 5679 2 0 0
## 5680 2 0 0
## 5681 2 0 0
## 5682 2 2 0
## 5683 2 0 0
## 5684 2 0 0
## 5685 2 0 0
## 5686 2 0 0
## 5687 2 0 0
## 5688 1 0 0
## 5689 2 0 0
## 5690 1 0 0
## 5691 1 2 0
## 5692 2 0 0
## 5693 1 0 0
## 5694 2 0 0
## 5695 2 1 0
## 5696 2 0 0
## 5697 2 2 0
## 5698 2 0 0
## 5699 2 0 0
## 5700 2 0 0
## 5701 2 0 0
## 5702 2 0 0
## 5703 2 0 0
## 5704 2 0 0
## 5705 2 0 0
## 5706 2 0 0
## 5707 2 0 0
## 5708 1 0 0
## 5709 2 0 0
## 5710 2 0 0
## 5711 2 0 0
## 5712 2 0 0
## 5713 2 0 0
## 5714 2 0 0
## 5715 2 0 0
## 5716 2 0 0
## 5717 2 0 0
## 5718 2 0 0
## 5719 1 0 0
## 5720 1 0 0
## 5721 2 0 0
## 5722 2 0 0
## 5723 2 0 0
## 5724 1 0 0
## 5725 1 0 0
## 5726 2 0 0
## 5727 2 0 0
## 5728 2 0 0
## 5729 2 0 0
## 5730 2 0 0
## 5731 2 0 0
## 5732 2 0 0
## 5733 2 0 0
## 5734 1 0 0
## 5735 2 0 0
## 5736 2 0 0
## 5737 2 0 0
## 5738 2 0 0
## 5739 2 0 0
## 5740 1 0 0
## 5741 1 0 0
## 5742 2 0 0
## 5743 2 0 0
## 5744 2 0 0
## 5745 2 0 0
## 5746 2 0 0
## 5747 2 0 0
## 5748 2 0 0
## 5749 2 0 0
## 5750 2 0 0
## 5751 2 0 0
## 5752 2 0 0
## 5753 2 0 0
## 5754 2 0 0
## 5755 1 0 0
## 5756 2 0 0
## 5757 2 0 0
## 5758 2 0 0
## 5759 2 0 0
## 5760 2 0 0
## 5761 2 0 0
## 5762 2 0 0
## 5763 2 0 0
## 5764 2 0 0
## 5765 2 0 0
## 5766 2 0 0
## 5767 2 0 0
## 5768 2 0 0
## 5769 2 0 0
## 5770 2 0 0
## 5771 2 0 0
## 5772 2 0 0
## 5773 2 0 0
## 5774 2 0 0
## 5775 2 0 0
## 5776 2 0 0
## 5777 2 0 0
## 5778 2 0 0
## 5779 2 0 0
## 5780 2 0 0
## 5781 2 0 0
## 5782 2 0 0
## 5783 2 0 0
## 5784 2 0 0
## 5785 2 0 0
## 5786 2 0 0
## 5787 2 0 0
## 5788 2 0 0
## 5789 3 1 0
## 5790 2 0 0
## 5791 2 0 0
## 5792 1 0 0
## 5793 2 0 0
## 5794 1 0 0
## 5795 2 0 0
## 5796 1 0 0
## 5797 2 0 0
## 5798 2 0 0
## 5799 2 0 0
## 5800 2 0 0
## 5801 2 0 0
## 5802 1 0 0
## 5803 2 0 0
## 5804 2 0 0
## 5805 2 0 0
## 5806 1 0 0
## 5807 1 0 0
## 5808 2 0 0
## 5809 2 0 0
## 5810 2 0 0
## 5811 2 0 0
## 5812 2 0 0
## 5813 2 0 0
## 5814 2 0 0
## 5815 2 0 0
## 5816 2 0 0
## 5817 2 0 0
## 5818 2 0 0
## 5819 2 0 0
## 5820 2 0 0
## 5821 2 0 0
## 5822 1 0 0
## 5823 2 0 0
## 5824 2 0 0
## 5825 2 0 0
## 5826 2 0 0
## 5827 1 0 0
## 5828 1 0 0
## 5829 1 0 0
## 5830 2 0 0
## 5831 2 0 0
## 5832 2 0 0
## 5833 1 0 0
## 5834 2 0 0
## 5835 2 0 0
## 5836 2 0 0
## 5837 2 0 0
## 5838 2 0 0
## 5839 2 0 0
## 5840 2 0 0
## 5841 2 0 0
## 5842 2 0 0
## 5843 2 0 0
## 5844 2 0 0
## 5845 2 0 0
## 5846 2 0 0
## 5847 1 0 0
## 5848 3 1 0
## 5849 2 0 0
## 5850 2 0 0
## 5851 2 0 0
## 5852 2 0 0
## 5853 2 0 0
## 5854 2 0 0
## 5855 2 0 0
## 5856 2 0 0
## 5857 2 0 0
## 5858 2 0 0
## 5859 2 0 0
## 5860 2 0 0
## 5861 2 0 0
## 5862 2 0 0
## 5863 2 0 0
## 5864 2 0 0
## 5865 2 0 0
## 5866 2 0 0
## 5867 2 0 0
## 5868 2 0 0
## 5869 2 0 0
## 5870 2 0 0
## 5871 2 0 0
## 5872 2 0 0
## 5873 2 0 0
## 5874 2 0 0
## 5875 2 0 0
## 5876 2 0 0
## 5877 2 0 0
## 5878 2 0 0
## 5879 2 0 0
## 5880 2 0 0
## 5881 1 0 0
## 5882 1 0 0
## 5883 1 0 0
## 5884 2 0 0
## 5885 2 0 0
## 5886 2 0 0
## 5887 2 0 0
## 5888 2 0 0
## 5889 1 0 0
## 5890 1 0 0
## 5891 1 0 0
## 5892 1 0 0
## 5893 1 0 0
## 5894 1 0 0
## 5895 1 0 0
## 5896 1 0 0
## 5897 1 0 0
## 5898 1 0 0
## 5899 1 0 0
## 5900 1 0 0
## 5901 1 0 0
## 5902 1 0 0
## 5903 2 0 0
## 5904 1 0 0
## 5905 1 0 0
## 5906 1 0 0
## 5907 2 0 0
## 5908 1 0 0
## 5909 1 0 0
## 5910 2 0 0
## 5911 2 0 0
## 5912 2 0 0
## 5913 2 0 0
## 5914 2 0 0
## 5915 2 0 0
## 5916 2 0 0
## 5917 1 0 0
## 5918 2 2 0
## 5919 2 0 0
## 5920 2 0 0
## 5921 2 1 0
## 5922 2 0 0
## 5923 2 0 0
## 5924 2 0 0
## 5925 2 0 0
## 5926 2 0 0
## 5927 2 0 0
## 5928 2 0 0
## 5929 2 1 0
## 5930 2 0 0
## 5931 2 0 0
## 5932 2 0 0
## 5933 2 0 0
## 5934 2 0 0
## 5935 2 0 0
## 5936 2 0 0
## 5937 2 0 0
## 5938 2 0 0
## 5939 2 0 0
## 5940 2 0 0
## 5941 2 0 0
## 5942 2 0 0
## 5943 2 0 0
## 5944 3 0 0
## 5945 2 0 0
## 5946 2 0 0
## 5947 2 0 0
## 5948 2 0 0
## 5949 2 0 0
## 5950 2 0 0
## 5951 2 0 0
## 5952 2 2 0
## 5953 2 0 0
## 5954 2 0 0
## 5955 2 2 0
## 5956 2 0 0
## 5957 2 0 0
## 5958 2 0 0
## 5959 2 0 0
## 5960 2 0 0
## 5961 2 0 0
## 5962 1 0 0
## 5963 2 0 0
## 5964 2 0 0
## 5965 2 0 0
## 5966 2 0 0
## 5967 1 0 0
## 5968 2 0 0
## 5969 2 0 0
## 5970 2 0 0
## 5971 2 0 0
## 5972 2 0 0
## 5973 2 0 0
## 5974 2 0 0
## 5975 2 0 0
## 5976 1 0 0
## 5977 2 0 0
## 5978 2 0 0
## 5979 2 0 0
## 5980 2 0 0
## 5981 2 0 0
## 5982 2 0 0
## 5983 2 0 0
## 5984 2 0 0
## 5985 1 0 0
## 5986 2 0 0
## 5987 2 0 0
## 5988 2 0 0
## 5989 2 0 0
## 5990 2 0 0
## 5991 2 0 0
## 5992 2 0 0
## 5993 2 0 0
## 5994 2 0 0
## 5995 1 0 0
## 5996 2 0 0
## 5997 2 0 0
## 5998 2 0 0
## 5999 1 0 0
## 6000 1 0 0
## 6001 2 0 0
## 6002 2 0 0
## 6003 2 0 0
## 6004 2 0 0
## 6005 2 0 0
## 6006 2 0 0
## 6007 1 0 0
## 6008 2 0 0
## 6009 2 0 0
## 6010 2 0 0
## 6011 2 0 0
## 6012 2 0 0
## 6013 3 0 0
## 6014 2 0 0
## 6015 2 0 0
## 6016 2 0 0
## 6017 2 2 0
## 6018 2 0 0
## 6019 2 0 0
## 6020 2 0 0
## 6021 2 0 0
## 6022 2 0 0
## 6023 2 0 0
## 6024 2 0 0
## 6025 2 0 0
## 6026 2 0 0
## 6027 2 0 0
## 6028 2 0 0
## 6029 2 0 0
## 6030 1 0 0
## 6031 2 0 0
## 6032 2 0 0
## 6033 2 0 0
## 6034 2 0 0
## 6035 1 0 0
## 6036 4 0 0
## 6037 1 0 0
## 6038 1 0 0
## 6039 1 0 0
## 6040 2 0 0
## 6041 2 0 0
## 6042 1 0 0
## 6043 1 0 0
## 6044 1 0 0
## 6045 2 0 0
## 6046 3 0 0
## 6047 2 0 0
## 6048 1 0 0
## 6049 1 0 0
## 6050 1 0 0
## 6051 1 0 0
## 6052 2 0 0
## 6053 2 0 0
## 6054 2 0 0
## 6055 2 0 0
## 6056 1 0 0
## 6057 2 0 0
## 6058 2 0 0
## 6059 1 0 0
## 6060 1 0 0
## 6061 2 0 0
## 6062 2 0 0
## 6063 1 0 0
## 6064 1 0 0
## 6065 2 0 0
## 6066 1 0 0
## 6067 1 0 0
## 6068 2 0 0
## 6069 2 0 0
## 6070 2 0 0
## 6071 2 0 0
## 6072 1 0 0
## 6073 1 0 0
## 6074 1 0 0
## 6075 1 0 0
## 6076 1 0 0
## 6077 2 1 0
## 6078 2 0 0
## 6079 2 1 0
## 6080 2 2 0
## 6081 2 0 0
## 6082 2 0 0
## 6083 2 0 0
## 6084 1 0 0
## 6085 1 0 0
## 6086 1 0 0
## 6087 2 0 0
## 6088 1 0 0
## 6089 1 0 0
## 6090 2 0 0
## 6091 1 0 0
## 6092 1 0 0
## 6093 1 0 0
## 6094 2 0 0
## 6095 2 0 0
## 6096 1 0 0
## 6097 2 0 0
## 6098 2 0 0
## 6099 2 0 0
## 6100 2 0 0
## 6101 2 2 0
## 6102 1 0 0
## 6103 2 2 0
## 6104 2 0 0
## 6105 2 0 0
## 6106 2 0 0
## 6107 2 0 0
## 6108 2 0 0
## 6109 1 0 0
## 6110 2 0 0
## 6111 2 0 0
## 6112 2 0 0
## 6113 2 0 0
## 6114 2 0 0
## 6115 2 0 0
## 6116 1 0 0
## 6117 1 0 0
## 6118 1 0 0
## 6119 1 0 0
## 6120 2 0 0
## 6121 2 0 0
## 6122 2 0 0
## 6123 1 0 0
## 6124 2 0 0
## 6125 1 0 0
## 6126 1 0 0
## 6127 2 0 0
## 6128 2 0 0
## 6129 2 0 0
## 6130 2 0 0
## 6131 2 0 0
## 6132 2 0 0
## 6133 2 0 0
## 6134 2 0 0
## 6135 2 0 0
## 6136 2 0 0
## 6137 2 0 0
## 6138 2 0 0
## 6139 2 0 0
## 6140 2 0 0
## 6141 2 0 0
## 6142 2 1 0
## 6143 2 0 0
## 6144 2 0 0
## 6145 2 0 0
## 6146 2 0 0
## 6147 2 0 0
## 6148 1 0 0
## 6149 1 0 0
## 6150 2 0 0
## 6151 2 0 0
## 6152 2 0 0
## 6153 1 0 0
## 6154 1 0 0
## 6155 2 0 0
## 6156 2 0 0
## 6157 2 0 0
## 6158 3 1 0
## 6159 1 0 0
## 6160 2 0 0
## 6161 2 0 0
## 6162 2 0 0
## 6163 2 0 0
## 6164 2 0 0
## 6165 2 0 0
## 6166 1 0 0
## 6167 2 0 0
## 6168 2 0 0
## 6169 2 0 0
## 6170 2 0 0
## 6171 1 0 0
## 6172 2 0 0
## 6173 2 0 0
## 6174 2 0 0
## 6175 2 0 0
## 6176 2 0 0
## 6177 2 0 0
## 6178 2 1 0
## 6179 2 0 0
## 6180 2 0 0
## 6181 2 0 0
## 6182 2 0 0
## 6183 2 0 0
## 6184 2 0 0
## 6185 2 0 0
## 6186 2 0 0
## 6187 2 0 0
## 6188 2 0 0
## 6189 2 2 0
## 6190 2 0 0
## 6191 2 0 0
## 6192 2 0 0
## 6193 2 0 0
## 6194 1 0 0
## 6195 2 0 0
## 6196 1 0 0
## 6197 2 0 0
## 6198 2 0 0
## 6199 2 0 0
## 6200 2 0 0
## 6201 2 0 0
## 6202 2 0 0
## 6203 2 0 0
## 6204 3 0 0
## 6205 2 0 0
## 6206 2 0 0
## 6207 1 0 0
## 6208 2 0 0
## 6209 2 0 0
## 6210 2 0 0
## 6211 2 0 0
## 6212 2 0 0
## 6213 2 0 0
## 6214 2 0 0
## 6215 2 0 0
## 6216 2 0 0
## 6217 2 0 0
## 6218 2 0 0
## 6219 2 0 0
## 6220 2 0 0
## 6221 2 0 0
## 6222 1 0 0
## 6223 3 1 0
## 6224 2 0 0
## 6225 2 0 0
## 6226 2 2 0
## 6227 2 0 0
## 6228 2 0 0
## 6229 2 0 0
## 6230 2 2 0
## 6231 2 0 0
## 6232 2 0 0
## 6233 2 0 0
## 6234 2 0 0
## 6235 2 0 0
## 6236 2 0 0
## 6237 2 0 0
## 6238 2 0 0
## 6239 2 0 0
## 6240 2 0 0
## 6241 2 0 0
## 6242 2 0 0
## 6243 2 0 0
## 6244 2 0 0
## 6245 2 0 0
## 6246 2 0 0
## 6247 2 0 0
## 6248 2 0 0
## 6249 2 0 0
## 6250 2 0 0
## 6251 2 0 0
## 6252 2 0 0
## 6253 2 0 0
## 6254 1 0 0
## 6255 2 0 0
## 6256 2 0 0
## 6257 1 0 0
## 6258 2 0 0
## 6259 2 0 0
## 6260 2 0 0
## 6261 2 0 0
## 6262 2 0 0
## 6263 2 0 0
## 6264 2 0 0
## 6265 2 2 0
## 6266 2 0 0
## 6267 3 1 0
## 6268 2 0 0
## 6269 2 0 0
## 6270 2 0 0
## 6271 2 0 0
## 6272 2 0 0
## 6273 2 0 0
## 6274 2 0 0
## 6275 2 2 0
## 6276 2 2 0
## 6277 2 0 0
## 6278 2 0 0
## 6279 2 0 0
## 6280 2 0 0
## 6281 2 0 0
## 6282 2 0 0
## 6283 2 2 0
## 6284 2 0 0
## 6285 2 1 0
## 6286 2 2 0
## 6287 2 0 0
## 6288 2 0 0
## 6289 2 0 0
## 6290 2 0 0
## 6291 2 0 0
## 6292 2 0 0
## 6293 2 0 0
## 6294 2 0 0
## 6295 2 0 0
## 6296 2 0 0
## 6297 3 1 0
## 6298 1 2 0
## 6299 2 0 0
## 6300 2 0 0
## 6301 2 0 0
## 6302 2 0 0
## 6303 2 0 0
## 6304 2 0 0
## 6305 2 0 0
## 6306 2 0 0
## 6307 2 1 0
## 6308 2 0 0
## 6309 2 1 0
## 6310 2 0 0
## 6311 2 0 0
## 6312 2 0 0
## 6313 2 0 0
## 6314 2 0 0
## 6315 2 0 0
## 6316 2 0 0
## 6317 2 0 0
## 6318 2 0 0
## 6319 2 0 0
## 6320 2 0 0
## 6321 2 0 0
## 6322 2 0 0
## 6323 2 0 0
## 6324 2 0 0
## 6325 2 0 0
## 6326 2 0 0
## 6327 1 0 0
## 6328 1 0 0
## 6329 2 0 0
## 6330 2 0 0
## 6331 2 0 0
## 6332 2 0 0
## 6333 2 0 0
## 6334 2 0 0
## 6335 1 0 0
## 6336 3 0 0
## 6337 2 0 0
## 6338 2 0 0
## 6339 2 0 0
## 6340 2 0 0
## 6341 2 2 0
## 6342 2 0 0
## 6343 2 0 0
## 6344 2 0 0
## 6345 2 0 0
## 6346 3 1 0
## 6347 2 0 0
## 6348 2 0 0
## 6349 2 0 0
## 6350 2 0 0
## 6351 2 0 0
## 6352 1 0 0
## 6353 3 1 0
## 6354 2 0 0
## 6355 2 0 0
## 6356 2 0 0
## 6357 2 0 0
## 6358 2 0 0
## 6359 2 0 0
## 6360 2 0 0
## 6361 2 0 0
## 6362 2 0 0
## 6363 2 0 0
## 6364 2 0 0
## 6365 2 0 0
## 6366 2 0 0
## 6367 2 0 0
## 6368 2 0 0
## 6369 2 0 0
## 6370 2 0 0
## 6371 2 0 0
## 6372 2 0 0
## 6373 2 0 0
## 6374 2 0 0
## 6375 2 0 0
## 6376 2 0 0
## 6377 2 0 0
## 6378 2 0 0
## 6379 2 0 0
## 6380 2 0 0
## 6381 2 0 0
## 6382 1 0 0
## 6383 3 0 0
## 6384 2 2 0
## 6385 2 0 0
## 6386 2 0 0
## 6387 2 0 0
## 6388 2 0 0
## 6389 2 0 0
## 6390 2 0 0
## 6391 2 0 0
## 6392 2 0 0
## 6393 2 0 0
## 6394 2 0 0
## 6395 2 0 0
## 6396 2 0 0
## 6397 2 2 0
## 6398 2 0 0
## 6399 2 1 0
## 6400 3 1 0
## 6401 3 1 0
## 6402 2 0 0
## 6403 2 0 0
## 6404 1 0 0
## 6405 2 0 0
## 6406 2 0 0
## 6407 2 0 0
## 6408 2 0 0
## 6409 2 0 0
## 6410 2 0 0
## 6411 2 0 0
## 6412 1 0 0
## 6413 2 0 0
## 6414 2 0 0
## 6415 3 1 0
## 6416 2 0 0
## 6417 2 0 0
## 6418 2 0 0
## 6419 2 0 0
## 6420 2 0 0
## 6421 1 0 0
## 6422 1 0 0
## 6423 2 0 0
## 6424 2 0 0
## 6425 2 0 0
## 6426 2 0 0
## 6427 2 0 0
## 6428 2 0 0
## 6429 2 0 0
## 6430 2 0 0
## 6431 2 2 0
## 6432 1 0 0
## 6433 2 1 0
## 6434 2 0 0
## 6435 2 0 0
## 6436 2 0 0
## 6437 2 0 0
## 6438 2 0 0
## 6439 2 0 0
## 6440 2 0 0
## 6441 2 0 0
## 6442 2 0 0
## 6443 2 0 0
## 6444 2 0 0
## 6445 2 0 0
## 6446 2 0 0
## 6447 2 2 0
## 6448 2 2 0
## 6449 2 0 0
## 6450 3 1 0
## 6451 3 1 0
## 6452 2 0 0
## 6453 2 0 0
## 6454 2 0 0
## 6455 2 0 0
## 6456 2 0 0
## 6457 2 0 0
## 6458 1 0 0
## 6459 2 0 0
## 6460 2 0 0
## 6461 1 0 0
## 6462 2 0 0
## 6463 2 2 0
## 6464 2 2 0
## 6465 2 0 0
## 6466 2 0 0
## 6467 2 0 0
## 6468 2 0 0
## 6469 3 1 0
## 6470 2 2 0
## 6471 2 0 0
## 6472 2 0 0
## 6473 2 0 0
## 6474 2 0 0
## 6475 2 0 0
## 6476 2 0 0
## 6477 2 0 0
## 6478 2 2 0
## 6479 2 0 0
## 6480 2 0 0
## 6481 2 0 0
## 6482 2 0 0
## 6483 2 0 0
## 6484 2 0 0
## 6485 3 1 0
## 6486 2 0 0
## 6487 2 0 0
## 6488 2 0 0
## 6489 2 0 0
## 6490 2 0 0
## 6491 2 0 0
## 6492 2 0 0
## 6493 2 0 0
## 6494 2 2 0
## 6495 2 0 0
## 6496 2 0 0
## 6497 2 0 0
## 6498 2 0 0
## 6499 2 0 0
## 6500 3 1 0
## 6501 1 0 0
## 6502 2 1 0
## 6503 2 0 0
## 6504 1 0 0
## 6505 1 0 0
## 6506 2 0 0
## 6507 2 0 0
## 6508 2 0 0
## 6509 2 0 0
## 6510 2 0 0
## 6511 2 0 0
## 6512 3 1 0
## 6513 2 0 0
## 6514 2 0 0
## 6515 2 0 0
## 6516 2 0 0
## 6517 2 0 0
## 6518 2 0 0
## 6519 2 0 0
## 6520 2 0 0
## 6521 2 0 0
## 6522 2 0 0
## 6523 2 0 0
## 6524 2 0 0
## 6525 2 0 0
## 6526 2 0 0
## 6527 2 0 0
## 6528 2 0 0
## 6529 2 0 0
## 6530 2 0 0
## 6531 2 0 0
## 6532 2 0 0
## 6533 2 0 0
## 6534 2 0 0
## 6535 2 0 0
## 6536 2 0 0
## 6537 1 0 0
## 6538 2 0 0
## 6539 2 0 0
## 6540 2 0 0
## 6541 2 0 0
## 6542 2 0 0
## 6543 2 0 0
## 6544 2 0 0
## 6545 2 0 0
## 6546 2 2 0
## 6547 2 2 0
## 6548 2 0 0
## 6549 2 0 0
## 6550 2 0 0
## 6551 2 0 0
## 6552 2 0 0
## 6553 2 0 0
## 6554 2 0 0
## 6555 2 0 0
## 6556 2 0 0
## 6557 2 0 0
## 6558 2 0 0
## 6559 2 0 0
## 6560 2 0 0
## 6561 2 0 0
## 6562 2 0 0
## 6563 2 0 0
## 6564 2 0 0
## 6565 2 0 0
## 6566 2 0 0
## 6567 2 0 0
## 6568 1 0 0
## 6569 2 0 0
## 6570 2 0 0
## 6571 2 0 0
## 6572 2 0 0
## 6573 2 0 0
## 6574 1 0 0
## 6575 2 0 0
## 6576 2 0 0
## 6577 1 0 0
## 6578 2 0 0
## 6579 1 0 0
## 6580 1 0 0
## 6581 1 0 0
## 6582 1 0 0
## 6583 2 0 0
## 6584 1 0 0
## 6585 2 0 0
## 6586 2 0 0
## 6587 2 1 0
## 6588 2 0 0
## 6589 2 0 0
## 6590 2 0 0
## 6591 2 0 0
## 6592 2 0 0
## 6593 2 0 0
## 6594 2 0 0
## 6595 2 2 0
## 6596 3 1 0
## 6597 2 0 0
## 6598 2 0 0
## 6599 2 2 0
## 6600 2 0 0
## 6601 2 0 0
## 6602 2 0 0
## 6603 2 0 0
## 6604 2 0 0
## 6605 2 0 0
## 6606 3 1 0
## 6607 2 0 0
## 6608 2 0 0
## 6609 1 0 0
## 6610 2 0 0
## 6611 2 0 0
## 6612 2 2 0
## 6613 2 2 0
## 6614 2 2 0
## 6615 2 0 0
## 6616 2 1 0
## 6617 2 0 0
## 6618 2 0 0
## 6619 2 0 0
## 6620 3 1 0
## 6621 1 0 0
## 6622 2 0 0
## 6623 2 0 0
## 6624 1 0 0
## 6625 2 0 0
## 6626 2 0 0
## 6627 2 2 0
## 6628 2 1 0
## 6629 2 0 0
## 6630 2 0 0
## 6631 2 1 0
## 6632 2 0 0
## 6633 2 0 0
## 6634 2 0 0
## 6635 1 0 0
## 6636 2 0 0
## 6637 2 0 0
## 6638 1 0 0
## 6639 2 0 0
## 6640 2 0 0
## 6641 2 0 0
## 6642 2 0 0
## 6643 1 0 0
## 6644 2 0 0
## 6645 2 0 0
## 6646 2 0 0
## 6647 2 0 0
## 6648 2 0 0
## 6649 3 0 0
## 6650 2 0 0
## 6651 2 0 0
## 6652 2 0 0
## 6653 2 0 0
## 6654 2 0 0
## 6655 2 0 0
## 6656 2 0 0
## 6657 1 0 0
## 6658 2 0 0
## 6659 2 3 0
## 6660 2 0 0
## 6661 2 0 0
## 6662 2 0 0
## 6663 2 0 0
## 6664 2 0 0
## 6665 2 0 0
## 6666 1 0 0
## 6667 2 0 0
## 6668 2 0 0
## 6669 2 0 0
## 6670 2 2 0
## 6671 2 0 0
## 6672 2 0 0
## 6673 2 0 0
## 6674 2 1 0
## 6675 2 0 0
## 6676 3 1 0
## 6677 2 2 0
## 6678 2 0 0
## 6679 2 2 0
## 6680 3 1 0
## 6681 2 0 0
## 6682 2 0 0
## 6683 1 0 0
## 6684 2 0 0
## 6685 2 0 0
## 6686 2 0 0
## 6687 2 0 0
## 6688 2 0 0
## 6689 2 0 0
## 6690 2 2 0
## 6691 2 0 0
## 6692 2 1 0
## 6693 2 0 0
## 6694 3 0 0
## 6695 2 0 0
## 6696 2 0 0
## 6697 2 0 0
## 6698 2 0 0
## 6699 1 0 0
## 6700 2 1 0
## 6701 2 0 0
## 6702 2 2 0
## 6703 2 0 0
## 6704 2 0 0
## 6705 2 0 0
## 6706 2 0 0
## 6707 2 0 0
## 6708 2 0 0
## 6709 2 0 0
## 6710 2 0 0
## 6711 2 0 0
## 6712 3 1 0
## 6713 2 0 0
## 6714 2 0 0
## 6715 2 0 0
## 6716 2 0 0
## 6717 2 0 0
## 6718 2 0 0
## 6719 2 0 0
## 6720 2 0 0
## 6721 2 0 0
## 6722 2 0 0
## 6723 2 0 0
## 6724 2 0 0
## 6725 3 1 0
## 6726 2 0 0
## 6727 2 0 0
## 6728 2 0 0
## 6729 2 2 0
## 6730 2 0 0
## 6731 2 0 0
## 6732 2 0 0
## 6733 2 0 0
## 6734 1 0 0
## 6735 2 0 0
## 6736 2 0 0
## 6737 2 0 0
## 6738 2 0 0
## 6739 2 0 0
## 6740 2 0 0
## 6741 2 0 0
## 6742 2 0 0
## 6743 2 1 0
## 6744 2 0 0
## 6745 2 0 0
## 6746 1 0 0
## 6747 2 0 0
## 6748 2 0 0
## 6749 2 0 0
## 6750 1 0 0
## 6751 1 0 0
## 6752 2 0 0
## 6753 2 0 0
## 6754 2 0 0
## 6755 3 0 0
## 6756 1 0 0
## 6757 2 0 0
## 6758 2 0 0
## 6759 2 2 0
## 6760 2 0 0
## 6761 2 0 0
## 6762 2 0 0
## 6763 1 0 0
## 6764 2 0 0
## 6765 3 1 0
## 6766 2 0 0
## 6767 2 0 0
## 6768 2 0 0
## 6769 2 0 0
## 6770 2 0 0
## 6771 2 1 0
## 6772 2 2 0
## 6773 2 1 0
## 6774 2 0 0
## 6775 2 0 0
## 6776 2 0 0
## 6777 2 2 0
## 6778 2 2 0
## 6779 2 0 0
## 6780 2 0 0
## 6781 2 0 0
## 6782 2 0 0
## 6783 2 0 0
## 6784 2 0 0
## 6785 2 0 0
## 6786 2 0 0
## 6787 2 0 0
## 6788 2 0 0
## 6789 2 0 0
## 6790 2 0 0
## 6791 2 0 0
## 6792 2 0 0
## 6793 2 2 0
## 6794 2 0 0
## 6795 2 0 0
## 6796 2 0 0
## 6797 2 0 0
## 6798 2 0 0
## 6799 1 0 0
## 6800 2 0 0
## 6801 2 0 0
## 6802 2 0 0
## 6803 2 0 0
## 6804 2 0 0
## 6805 2 0 0
## 6806 2 0 0
## 6807 2 2 0
## 6808 2 0 0
## 6809 2 0 0
## 6810 2 0 0
## 6811 2 0 0
## 6812 2 0 0
## 6813 2 0 0
## 6814 1 0 0
## 6815 2 0 0
## 6816 2 0 0
## 6817 3 0 0
## 6818 2 2 0
## 6819 2 2 0
## 6820 2 2 0
## 6821 2 0 0
## 6822 2 0 0
## 6823 2 0 0
## 6824 2 0 0
## 6825 2 1 0
## 6826 2 0 0
## 6827 3 0 0
## 6828 2 1 0
## 6829 2 0 0
## 6830 2 0 0
## 6831 2 0 0
## 6832 2 0 0
## 6833 2 0 0
## 6834 2 0 0
## 6835 2 0 0
## 6836 2 0 0
## 6837 2 0 0
## 6838 2 0 0
## 6839 2 0 0
## 6840 2 0 0
## 6841 2 0 0
## 6842 2 0 0
## 6843 2 0 0
## 6844 2 0 0
## 6845 2 0 0
## 6846 2 0 0
## 6847 1 0 0
## 6848 2 0 0
## 6849 2 0 0
## 6850 2 0 0
## 6851 2 0 0
## 6852 2 0 0
## 6853 2 0 0
## 6854 2 0 0
## 6855 2 0 0
## 6856 2 0 0
## 6857 2 0 0
## 6858 2 0 0
## 6859 2 2 0
## 6860 2 0 0
## 6861 2 0 0
## 6862 2 0 0
## 6863 3 1 0
## 6864 2 2 0
## 6865 2 0 0
## 6866 2 0 0
## 6867 2 0 0
## 6868 2 0 0
## 6869 2 1 0
## 6870 2 1 0
## 6871 2 0 0
## 6872 2 0 0
## 6873 2 2 0
## 6874 2 0 0
## 6875 2 0 0
## 6876 3 0 0
## 6877 2 0 0
## 6878 2 0 0
## 6879 2 0 0
## 6880 2 0 0
## 6881 2 0 0
## 6882 2 0 0
## 6883 2 0 0
## 6884 2 0 0
## 6885 2 0 0
## 6886 2 0 0
## 6887 2 0 0
## 6888 2 0 0
## 6889 2 0 0
## 6890 2 0 0
## 6891 2 2 0
## 6892 2 2 0
## 6893 2 0 0
## 6894 2 0 0
## 6895 2 0 0
## 6896 2 0 0
## 6897 2 0 0
## 6898 2 0 0
## 6899 1 0 0
## 6900 2 0 0
## 6901 2 0 0
## 6902 1 0 0
## 6903 2 0 0
## 6904 2 0 0
## 6905 2 2 0
## 6906 2 2 0
## 6907 2 0 0
## 6908 2 0 0
## 6909 2 0 0
## 6910 2 0 0
## 6911 2 0 0
## 6912 2 0 0
## 6913 3 0 0
## 6914 2 0 0
## 6915 2 0 0
## 6916 2 0 0
## 6917 2 0 0
## 6918 2 0 0
## 6919 3 0 0
## 6920 2 0 0
## 6921 2 0 0
## 6922 2 0 0
## 6923 2 0 0
## 6924 2 0 0
## 6925 2 0 0
## 6926 2 0 0
## 6927 2 0 0
## 6928 2 2 0
## 6929 2 0 0
## 6930 2 2 0
## 6931 2 0 0
## 6932 2 0 0
## 6933 2 0 0
## 6934 2 0 0
## 6935 2 0 0
## 6936 1 0 0
## 6937 2 0 0
## 6938 2 0 0
## 6939 2 0 0
## 6940 2 2 0
## 6941 2 0 0
## 6942 2 0 0
## 6943 2 0 0
## 6944 2 0 0
## 6945 2 0 0
## 6946 2 0 0
## 6947 1 0 0
## 6948 2 0 0
## 6949 2 0 0
## 6950 1 0 0
## 6951 2 0 0
## 6952 2 0 0
## 6953 2 0 0
## 6954 3 0 0
## 6955 2 0 0
## 6956 2 0 0
## 6957 2 2 0
## 6958 3 0 0
## 6959 2 0 0
## 6960 2 2 0
## 6961 2 0 0
## 6962 2 0 0
## 6963 2 0 0
## 6964 2 0 0
## 6965 2 0 0
## 6966 2 0 0
## 6967 2 0 0
## 6968 2 0 0
## 6969 2 0 0
## 6970 3 1 0
## 6971 1 0 0
## 6972 2 0 0
## 6973 2 0 0
## 6974 2 2 0
## 6975 2 0 0
## 6976 2 0 0
## 6977 2 0 0
## 6978 2 0 0
## 6979 2 2 0
## 6980 1 0 0
## 6981 1 0 0
## 6982 2 0 0
## 6983 2 0 0
## 6984 1 2 0
## 6985 2 0 0
## 6986 2 0 0
## 6987 2 0 0
## 6988 2 1 0
## 6989 2 0 0
## 6990 3 0 0
## 6991 2 0 0
## 6992 2 0 0
## 6993 1 0 0
## 6994 2 0 0
## 6995 2 0 0
## 6996 2 2 0
## 6997 2 2 0
## 6998 2 0 0
## 6999 2 0 0
## 7000 2 2 0
## 7001 2 2 0
## 7002 2 0 0
## 7003 2 0 0
## 7004 2 0 0
## 7005 2 2 0
## 7006 2 0 0
## 7007 2 0 0
## 7008 2 0 0
## 7009 2 0 0
## 7010 2 0 0
## 7011 2 0 0
## 7012 2 2 0
## 7013 2 0 0
## 7014 2 0 0
## 7015 2 0 0
## 7016 2 0 0
## 7017 2 0 0
## 7018 2 0 0
## 7019 2 0 0
## 7020 2 0 0
## 7021 2 0 0
## 7022 2 0 0
## 7023 2 0 0
## 7024 2 0 0
## 7025 2 0 0
## 7026 2 0 0
## 7027 2 0 0
## 7028 2 0 0
## 7029 2 0 0
## 7030 3 0 0
## 7031 2 0 0
## 7032 2 1 0
## 7033 2 1 0
## 7034 2 2 0
## 7035 2 0 0
## 7036 2 0 0
## 7037 3 1 0
## 7038 2 0 0
## 7039 2 0 0
## 7040 2 0 0
## 7041 2 0 0
## 7042 2 0 0
## 7043 2 0 0
## 7044 2 0 0
## 7045 2 0 0
## 7046 3 1 0
## 7047 2 2 0
## 7048 2 0 0
## 7049 2 0 0
## 7050 2 0 0
## 7051 2 0 0
## 7052 2 0 0
## 7053 2 0 0
## 7054 2 2 0
## 7055 2 0 0
## 7056 2 0 0
## 7057 2 0 0
## 7058 2 0 0
## 7059 2 0 0
## 7060 2 0 0
## 7061 2 0 0
## 7062 2 0 0
## 7063 2 0 0
## 7064 2 0 0
## 7065 2 0 0
## 7066 2 0 0
## 7067 2 0 0
## 7068 2 0 0
## 7069 2 0 0
## 7070 2 0 0
## 7071 2 0 0
## 7072 2 2 0
## 7073 2 1 0
## 7074 3 0 0
## 7075 2 0 0
## 7076 2 0 0
## 7077 2 0 0
## 7078 2 0 0
## 7079 2 0 0
## 7080 2 0 0
## 7081 1 0 0
## 7082 2 0 0
## 7083 2 0 0
## 7084 2 0 0
## 7085 1 0 0
## 7086 1 0 0
## 7087 1 0 0
## 7088 2 0 0
## 7089 2 0 0
## 7090 2 0 0
## 7091 2 0 0
## 7092 2 0 0
## 7093 2 0 0
## 7094 2 0 0
## 7095 2 1 0
## 7096 2 0 0
## 7097 3 1 0
## 7098 2 0 0
## 7099 3 0 0
## 7100 2 0 0
## 7101 1 0 0
## 7102 2 0 0
## 7103 2 0 0
## 7104 2 0 0
## 7105 2 1 0
## 7106 2 0 0
## 7107 2 0 0
## 7108 2 0 0
## 7109 2 2 0
## 7110 2 2 0
## 7111 2 0 0
## 7112 2 0 0
## 7113 2 0 0
## 7114 2 0 0
## 7115 1 0 0
## 7116 2 0 0
## 7117 2 0 0
## 7118 2 0 0
## 7119 2 0 0
## 7120 2 1 0
## 7121 2 0 0
## 7122 2 0 0
## 7123 2 0 0
## 7124 2 0 0
## 7125 2 0 0
## 7126 2 0 0
## 7127 2 0 0
## 7128 1 0 0
## 7129 2 0 0
## 7130 1 0 0
## 7131 2 0 0
## 7132 2 0 0
## 7133 2 0 0
## 7134 2 0 0
## 7135 2 0 0
## 7136 2 0 0
## 7137 2 0 0
## 7138 2 0 0
## 7139 2 0 0
## 7140 2 0 0
## 7141 3 0 0
## 7142 2 0 0
## 7143 2 0 0
## 7144 2 0 0
## 7145 2 0 0
## 7146 2 1 0
## 7147 2 2 0
## 7148 2 2 0
## 7149 2 0 0
## 7150 2 0 0
## 7151 2 0 0
## 7152 2 0 0
## 7153 2 0 0
## 7154 2 0 0
## 7155 2 1 0
## 7156 2 1 0
## 7157 2 2 0
## 7158 2 0 0
## 7159 2 0 0
## 7160 2 0 0
## 7161 2 0 0
## 7162 2 0 0
## 7163 2 0 0
## 7164 2 0 0
## 7165 2 0 0
## 7166 2 0 0
## 7167 2 0 0
## 7168 2 0 0
## 7169 2 2 0
## 7170 2 2 0
## 7171 2 2 0
## 7172 2 0 0
## 7173 2 1 0
## 7174 2 0 0
## 7175 2 0 0
## 7176 2 0 0
## 7177 2 0 0
## 7178 2 2 0
## 7179 2 0 0
## 7180 2 0 0
## 7181 2 0 0
## 7182 2 0 0
## 7183 2 0 0
## 7184 2 0 0
## 7185 2 2 0
## 7186 2 1 0
## 7187 2 0 0
## 7188 2 0 0
## 7189 2 1 0
## 7190 2 0 0
## 7191 2 0 0
## 7192 3 0 0
## 7193 2 0 0
## 7194 2 1 0
## 7195 2 0 0
## 7196 2 0 0
## 7197 2 0 0
## 7198 2 0 0
## 7199 2 0 0
## 7200 2 0 0
## 7201 2 0 0
## 7202 2 0 0
## 7203 2 0 0
## 7204 2 1 0
## 7205 2 0 0
## 7206 2 0 0
## 7207 2 0 0
## 7208 2 2 0
## 7209 2 0 0
## 7210 3 1 0
## 7211 2 2 0
## 7212 2 0 0
## 7213 2 0 0
## 7214 2 0 0
## 7215 2 0 0
## 7216 2 0 0
## 7217 2 0 0
## 7218 2 2 0
## 7219 2 0 0
## 7220 2 0 0
## 7221 2 0 0
## 7222 1 0 0
## 7223 2 1 0
## 7224 2 0 0
## 7225 2 0 0
## 7226 2 0 0
## 7227 2 1 0
## 7228 2 0 0
## 7229 2 0 0
## 7230 2 0 0
## 7231 2 0 0
## 7232 2 2 0
## 7233 2 0 0
## 7234 2 0 0
## 7235 2 0 0
## 7236 2 0 0
## 7237 2 0 0
## 7238 2 0 0
## 7239 2 1 0
## 7240 2 2 0
## 7241 2 0 0
## 7242 2 0 0
## 7243 2 2 0
## 7244 2 0 0
## 7245 2 0 0
## 7246 2 1 0
## 7247 2 0 0
## 7248 2 0 0
## 7249 3 0 0
## 7250 2 0 0
## 7251 2 2 0
## 7252 2 0 0
## 7253 2 2 0
## 7254 2 0 0
## 7255 3 1 0
## 7256 2 0 0
## 7257 2 0 0
## 7258 2 2 0
## 7259 2 1 0
## 7260 2 0 0
## 7261 2 0 0
## 7262 2 0 0
## 7263 2 0 0
## 7264 2 0 0
## 7265 2 0 0
## 7266 2 1 0
## 7267 2 1 0
## 7268 2 0 0
## 7269 3 0 0
## 7270 2 0 0
## 7271 2 0 0
## 7272 2 0 0
## 7273 2 0 0
## 7274 2 0 0
## 7275 2 0 0
## 7276 3 1 0
## 7277 2 0 0
## 7278 2 0 0
## 7279 2 0 0
## 7280 3 1 0
## 7281 2 0 0
## 7282 2 0 0
## 7283 3 1 0
## 7284 2 2 0
## 7285 2 2 0
## 7286 3 0 0
## 7287 3 1 0
## 7288 2 0 0
## 7289 2 0 0
## 7290 2 0 0
## 7291 2 0 0
## 7292 2 0 0
## 7293 2 0 0
## 7294 2 2 0
## 7295 3 0 0
## 7296 2 0 0
## 7297 2 0 0
## 7298 2 0 0
## 7299 3 0 0
## 7300 2 2 0
## 7301 2 1 0
## 7302 2 0 0
## 7303 2 0 0
## 7304 2 2 0
## 7305 3 1 0
## 7306 2 2 0
## 7307 2 2 0
## 7308 2 1 0
## 7309 2 0 0
## 7310 2 1 0
## 7311 2 0 0
## 7312 2 0 0
## 7313 2 0 0
## 7314 2 0 0
## 7315 2 0 0
## 7316 2 0 0
## 7317 2 0 0
## 7318 2 0 0
## 7319 3 0 0
## 7320 2 0 0
## 7321 2 0 0
## 7322 2 0 0
## 7323 2 0 0
## 7324 2 0 0
## 7325 2 2 0
## 7326 2 0 0
## 7327 2 1 0
## 7328 2 0 0
## 7329 2 0 0
## 7330 2 2 0
## 7331 2 0 0
## 7332 2 0 0
## 7333 2 0 0
## 7334 2 0 0
## 7335 2 0 0
## 7336 3 0 0
## 7337 2 0 0
## 7338 3 0 0
## 7339 2 0 0
## 7340 2 0 0
## 7341 3 0 0
## 7342 2 0 0
## 7343 2 0 0
## 7344 2 0 0
## 7345 2 0 0
## 7346 2 0 0
## 7347 2 0 0
## 7348 2 1 0
## 7349 2 0 0
## 7350 2 0 0
## 7351 2 0 0
## 7352 2 0 0
## 7353 2 0 0
## 7354 2 0 0
## 7355 2 0 0
## 7356 2 0 0
## 7357 2 0 0
## 7358 2 0 0
## 7359 2 0 0
## 7360 2 0 0
## 7361 2 0 0
## 7362 2 0 0
## 7363 2 0 0
## 7364 2 0 0
## 7365 2 0 0
## 7366 2 0 0
## 7367 3 1 0
## 7368 1 0 0
## 7369 2 0 0
## 7370 2 0 0
## 7371 2 0 0
## 7372 2 0 0
## 7373 2 2 0
## 7374 2 2 0
## 7375 2 0 0
## 7376 2 0 0
## 7377 2 0 0
## 7378 2 1 0
## 7379 2 0 0
## 7380 2 0 0
## 7381 3 0 0
## 7382 2 0 0
## 7383 2 0 0
## 7384 2 0 0
## 7385 2 0 0
## 7386 2 0 0
## 7387 2 0 0
## 7388 2 0 0
## 7389 2 1 0
## 7390 2 0 0
## 7391 2 0 0
## 7392 2 0 0
## 7393 2 0 0
## 7394 2 0 0
## 7395 3 1 0
## 7396 2 0 0
## 7397 2 0 0
## 7398 2 0 0
## 7399 2 0 0
## 7400 2 1 0
## 7401 2 0 0
## 7402 2 0 0
## 7403 1 0 0
## 7404 2 0 0
## 7405 2 2 0
## 7406 2 2 0
## 7407 2 0 0
## 7408 3 0 0
## 7409 2 0 0
## 7410 3 0 0
## 7411 2 0 0
## 7412 2 0 0
## 7413 2 0 0
## 7414 2 0 0
## 7415 2 0 0
## 7416 2 0 0
## 7417 2 0 0
## 7418 2 0 0
## 7419 2 2 0
## 7420 2 2 0
## 7421 2 0 0
## 7422 2 0 0
## 7423 2 0 0
## 7424 2 2 0
## 7425 2 0 0
## 7426 2 0 0
## 7427 2 0 0
## 7428 2 0 0
## 7429 2 2 0
## 7430 2 1 0
## 7431 2 0 0
## 7432 2 0 0
## 7433 2 0 0
## 7434 2 0 0
## 7435 2 0 0
## 7436 1 1 0
## 7437 2 2 0
## 7438 2 0 0
## 7439 2 0 0
## 7440 2 1 0
## 7441 2 0 0
## 7442 2 0 0
## 7443 2 0 0
## 7444 1 0 0
## 7445 2 0 0
## 7446 2 0 0
## 7447 2 0 0
## 7448 2 0 0
## 7449 3 1 0
## 7450 2 0 0
## 7451 2 0 0
## 7452 2 2 0
## 7453 2 1 0
## 7454 2 1 0
## 7455 2 0 0
## 7456 2 0 0
## 7457 2 0 0
## 7458 2 0 0
## 7459 2 0 0
## 7460 2 0 0
## 7461 2 0 0
## 7462 2 0 0
## 7463 2 1 0
## 7464 2 0 0
## 7465 2 0 0
## 7466 1 1 0
## 7467 2 1 0
## 7468 2 0 0
## 7469 2 0 0
## 7470 2 0 0
## 7471 2 0 0
## 7472 2 0 0
## 7473 2 0 0
## 7474 2 1 0
## 7475 2 0 0
## 7476 2 0 0
## 7477 2 0 0
## 7478 2 0 0
## 7479 2 0 0
## 7480 2 0 0
## 7481 2 0 0
## 7482 2 0 0
## 7483 2 0 0
## 7484 2 0 0
## 7485 2 0 0
## 7486 3 1 0
## 7487 2 0 0
## 7488 2 0 0
## 7489 2 0 0
## 7490 3 1 0
## 7491 3 1 0
## 7492 2 0 0
## 7493 2 0 0
## 7494 2 0 0
## 7495 3 0 0
## 7496 2 0 0
## 7497 2 0 0
## 7498 2 1 0
## 7499 2 0 0
## 7500 2 0 0
## 7501 2 2 0
## 7502 2 0 0
## 7503 2 0 0
## 7504 2 0 0
## 7505 2 0 0
## 7506 3 1 0
## 7507 2 0 0
## 7508 2 0 0
## 7509 1 0 0
## 7510 2 0 0
## 7511 2 0 0
## 7512 2 0 0
## 7513 2 0 0
## 7514 2 0 0
## 7515 2 0 0
## 7516 2 0 0
## 7517 3 0 0
## 7518 2 0 0
## 7519 2 0 0
## 7520 2 0 0
## 7521 2 0 0
## 7522 2 0 0
## 7523 2 0 0
## 7524 2 0 0
## 7525 2 0 0
## 7526 2 0 0
## 7527 2 0 0
## 7528 2 0 0
## 7529 2 0 0
## 7530 2 0 0
## 7531 2 0 0
## 7532 2 0 0
## 7533 2 0 0
## 7534 2 2 0
## 7535 2 0 0
## 7536 3 0 0
## 7537 2 0 0
## 7538 2 0 0
## 7539 2 1 0
## 7540 2 1 0
## 7541 2 0 0
## 7542 2 0 0
## 7543 2 0 0
## 7544 2 0 0
## 7545 2 0 0
## 7546 2 2 0
## 7547 2 0 0
## 7548 3 1 0
## 7549 2 0 0
## 7550 1 3 0
## 7551 2 0 0
## 7552 2 0 0
## 7553 2 0 0
## 7554 2 0 0
## 7555 2 0 0
## 7556 2 0 0
## 7557 3 1 0
## 7558 2 0 0
## 7559 2 0 0
## 7560 3 1 0
## 7561 2 0 0
## 7562 2 0 0
## 7563 2 0 0
## 7564 2 1 0
## 7565 2 0 0
## 7566 2 0 0
## 7567 2 0 0
## 7568 3 1 0
## 7569 2 0 0
## 7570 2 0 0
## 7571 2 1 0
## 7572 2 0 0
## 7573 2 0 0
## 7574 2 0 0
## 7575 2 0 0
## 7576 3 0 0
## 7577 2 2 0
## 7578 2 0 0
## 7579 2 0 0
## 7580 3 1 0
## 7581 2 0 0
## 7582 2 0 0
## 7583 2 0 0
## 7584 2 0 0
## 7585 2 1 0
## 7586 2 0 0
## 7587 2 1 0
## 7588 2 0 0
## 7589 2 0 0
## 7590 2 0 0
## 7591 2 0 0
## 7592 1 0 0
## 7593 2 0 0
## 7594 2 0 0
## 7595 2 0 0
## 7596 2 0 0
## 7597 2 0 0
## 7598 2 0 0
## 7599 2 0 0
## 7600 2 0 0
## 7601 3 1 0
## 7602 2 2 0
## 7603 2 0 0
## 7604 2 0 0
## 7605 2 0 0
## 7606 1 0 0
## 7607 2 0 0
## 7608 3 0 0
## 7609 2 0 0
## 7610 1 0 0
## 7611 2 0 0
## 7612 2 0 0
## 7613 2 0 0
## 7614 1 0 0
## 7615 2 0 0
## 7616 2 0 0
## 7617 2 0 0
## 7618 2 0 0
## 7619 2 2 0
## 7620 2 0 0
## 7621 1 0 0
## 7622 2 0 0
## 7623 2 0 0
## 7624 2 0 0
## 7625 2 0 0
## 7626 2 0 0
## 7627 2 0 0
## 7628 2 0 0
## 7629 2 0 0
## 7630 2 0 0
## 7631 2 2 0
## 7632 2 0 0
## 7633 2 2 0
## 7634 2 0 0
## 7635 2 2 0
## 7636 2 0 0
## 7637 2 0 0
## 7638 2 0 0
## 7639 2 0 0
## 7640 2 0 0
## 7641 2 1 0
## 7642 2 0 0
## 7643 1 0 0
## 7644 2 0 0
## 7645 2 0 0
## 7646 2 0 0
## 7647 2 0 0
## 7648 2 0 0
## 7649 2 0 0
## 7650 2 0 0
## 7651 2 0 0
## 7652 2 0 0
## 7653 2 0 0
## 7654 3 0 0
## 7655 2 0 0
## 7656 2 2 0
## 7657 2 0 0
## 7658 2 0 0
## 7659 2 2 0
## 7660 2 0 0
## 7661 2 0 0
## 7662 3 1 0
## 7663 2 2 0
## 7664 3 1 0
## 7665 3 1 0
## 7666 2 0 0
## 7667 2 0 0
## 7668 2 1 0
## 7669 2 0 0
## 7670 2 2 0
## 7671 2 0 0
## 7672 2 0 0
## 7673 2 0 0
## 7674 3 1 0
## 7675 2 0 0
## 7676 2 0 0
## 7677 2 2 0
## 7678 2 0 0
## 7679 2 1 0
## 7680 2 0 0
## 7681 2 0 0
## 7682 2 0 0
## 7683 2 0 0
## 7684 2 0 0
## 7685 3 0 0
## 7686 1 0 0
## 7687 2 0 0
## 7688 2 1 0
## 7689 2 0 0
## 7690 2 1 0
## 7691 2 0 0
## 7692 2 0 0
## 7693 2 0 0
## 7694 2 0 0
## 7695 2 0 0
## 7696 2 1 0
## 7697 2 0 0
## 7698 2 2 0
## 7699 2 2 0
## 7700 2 0 0
## 7701 2 0 0
## 7702 2 0 0
## 7703 2 0 0
## 7704 2 0 0
## 7705 1 0 0
## 7706 2 0 0
## 7707 2 0 0
## 7708 2 0 0
## 7709 2 0 0
## 7710 2 0 0
## 7711 2 2 0
## 7712 2 0 0
## 7713 2 0 0
## 7714 2 0 0
## 7715 2 0 0
## 7716 2 0 0
## 7717 2 0 0
## 7718 2 0 0
## 7719 2 0 0
## 7720 2 0 0
## 7721 2 0 0
## 7722 2 0 0
## 7723 2 2 0
## 7724 2 0 0
## 7725 2 0 0
## 7726 2 0 0
## 7727 2 0 0
## 7728 2 0 0
## 7729 2 0 0
## 7730 2 0 0
## 7731 2 0 0
## 7732 2 0 0
## 7733 2 0 0
## 7734 2 0 0
## 7735 2 2 0
## 7736 2 2 0
## 7737 2 0 0
## 7738 2 0 0
## 7739 2 0 0
## 7740 2 0 0
## 7741 2 0 0
## 7742 3 0 0
## 7743 2 2 0
## 7744 2 0 0
## 7745 2 0 0
## 7746 2 0 0
## 7747 1 0 0
## 7748 2 0 0
## 7749 2 0 0
## 7750 1 0 0
## 7751 2 0 0
## 7752 2 0 0
## 7753 2 0 0
## 7754 2 0 0
## 7755 2 0 0
## 7756 2 0 0
## 7757 2 0 0
## 7758 2 0 0
## 7759 2 0 0
## 7760 2 0 0
## 7761 2 0 0
## 7762 1 0 0
## 7763 1 0 0
## 7764 2 2 0
## 7765 2 0 0
## 7766 1 0 0
## 7767 2 0 0
## 7768 2 0 0
## 7769 2 1 0
## 7770 2 1 0
## 7771 2 2 0
## 7772 2 0 0
## 7773 2 0 0
## 7774 2 0 0
## 7775 2 0 0
## 7776 2 0 0
## 7777 2 0 0
## 7778 2 0 0
## 7779 2 0 0
## 7780 2 0 0
## 7781 2 0 0
## 7782 2 0 0
## 7783 2 0 0
## 7784 2 0 0
## 7785 2 0 0
## 7786 2 0 0
## 7787 2 0 0
## 7788 2 2 0
## 7789 2 0 0
## 7790 2 0 0
## 7791 2 0 0
## 7792 2 2 0
## 7793 2 2 0
## 7794 2 0 0
## 7795 2 2 0
## 7796 2 0 0
## 7797 2 0 0
## 7798 2 0 0
## 7799 2 0 0
## 7800 2 0 0
## 7801 2 0 0
## 7802 2 0 0
## 7803 2 0 0
## 7804 2 0 0
## 7805 2 0 0
## 7806 2 0 0
## 7807 2 0 0
## 7808 2 0 0
## 7809 2 0 0
## 7810 2 0 0
## 7811 2 0 0
## 7812 2 0 0
## 7813 3 1 0
## 7814 2 0 0
## 7815 2 0 0
## 7816 2 0 0
## 7817 1 0 0
## 7818 3 0 0
## 7819 3 0 0
## 7820 2 0 0
## 7821 2 0 0
## 7822 2 0 0
## 7823 2 0 0
## 7824 2 2 0
## 7825 2 0 0
## 7826 2 0 0
## 7827 2 0 0
## 7828 2 1 0
## 7829 2 1 0
## 7830 1 0 0
## 7831 2 2 0
## 7832 3 1 0
## 7833 2 0 0
## 7834 2 0 0
## 7835 3 1 0
## 7836 1 0 0
## 7837 2 0 0
## 7838 2 0 0
## 7839 2 0 0
## 7840 2 2 0
## 7841 2 2 0
## 7842 2 1 0
## 7843 4 0 0
## 7844 3 1 0
## 7845 2 0 0
## 7846 1 0 0
## 7847 1 0 0
## 7848 2 0 0
## 7849 2 0 0
## 7850 2 0 0
## 7851 2 0 0
## 7852 2 0 0
## 7853 2 0 0
## 7854 2 0 0
## 7855 2 0 0
## 7856 2 0 0
## 7857 2 0 0
## 7858 2 0 0
## 7859 2 0 0
## 7860 2 0 0
## 7861 2 0 0
## 7862 2 0 0
## 7863 2 1 0
## 7864 1 0 0
## 7865 1 0 0
## 7866 1 0 0
## 7867 1 0 0
## 7868 1 0 0
## 7869 1 0 0
## 7870 1 0 0
## 7871 1 0 0
## 7872 2 0 0
## 7873 1 0 0
## 7874 1 0 0
## 7875 1 0 0
## 7876 1 0 0
## 7877 1 0 0
## 7878 1 0 0
## 7879 1 0 0
## 7880 1 0 0
## 7881 1 0 0
## 7882 1 0 0
## 7883 1 0 0
## 7884 1 0 0
## 7885 1 0 0
## 7886 1 0 0
## 7887 1 0 0
## 7888 1 0 0
## 7889 1 0 0
## 7890 1 0 0
## 7891 1 0 0
## 7892 1 0 0
## 7893 1 0 0
## 7894 1 0 0
## 7895 1 0 0
## 7896 1 0 0
## 7897 1 0 0
## 7898 1 0 0
## 7899 1 0 0
## 7900 1 0 0
## 7901 1 0 0
## 7902 1 0 0
## 7903 1 0 0
## 7904 1 0 0
## 7905 1 0 0
## 7906 1 0 0
## 7907 1 0 0
## 7908 1 0 0
## 7909 1 0 0
## 7910 1 0 0
## 7911 1 0 0
## 7912 1 0 0
## 7913 1 0 0
## 7914 1 0 0
## 7915 1 0 0
## 7916 1 0 0
## 7917 2 0 0
## 7918 2 0 0
## 7919 2 0 0
## 7920 2 0 0
## 7921 2 0 0
## 7922 2 0 0
## 7923 2 0 0
## 7924 2 0 0
## 7925 2 0 0
## 7926 3 1 0
## 7927 3 1 0
## 7928 4 1 0
## 7929 2 0 0
## 7930 2 0 0
## 7931 2 0 0
## 7932 2 0 0
## 7933 2 0 0
## 7934 2 0 0
## 7935 2 0 0
## 7936 2 0 0
## 7937 2 0 0
## 7938 2 0 0
## 7939 2 0 0
## 7940 2 0 0
## 7941 2 1 0
## 7942 1 0 0
## 7943 1 0 0
## 7944 3 1 0
## 7945 2 1 0
## 7946 2 0 0
## 7947 2 0 0
## 7948 2 0 0
## 7949 2 0 0
## 7950 2 0 0
## 7951 2 0 0
## 7952 2 0 0
## 7953 2 0 0
## 7954 2 0 0
## 7955 2 0 0
## 7956 2 0 0
## 7957 2 0 0
## 7958 2 0 0
## 7959 2 0 0
## 7960 2 0 0
## 7961 2 0 0
## 7962 2 0 0
## 7963 2 0 0
## 7964 2 0 0
## 7965 2 0 0
## 7966 2 0 0
## 7967 2 0 0
## 7968 2 0 0
## 7969 2 0 0
## 7970 2 0 0
## 7971 2 0 0
## 7972 2 0 0
## 7973 2 0 0
## 7974 2 2 0
## 7975 2 0 0
## 7976 2 0 0
## 7977 2 0 0
## 7978 2 0 0
## 7979 2 0 0
## 7980 2 1 0
## 7981 3 1 0
## 7982 2 2 0
## 7983 2 0 0
## 7984 2 0 0
## 7985 2 2 0
## 7986 2 0 0
## 7987 2 0 0
## 7988 2 0 0
## 7989 2 2 0
## 7990 2 0 0
## 7991 2 0 0
## 7992 2 0 0
## 7993 2 0 0
## 7994 2 0 0
## 7995 2 0 0
## 7996 2 0 0
## 7997 2 0 0
## 7998 2 0 0
## 7999 2 2 0
## 8000 2 0 0
## 8001 2 0 0
## 8002 2 0 0
## 8003 2 0 0
## 8004 2 0 0
## 8005 2 0 0
## 8006 2 0 0
## 8007 2 0 0
## 8008 2 0 0
## 8009 1 0 0
## 8010 2 2 0
## 8011 2 0 0
## 8012 2 0 0
## 8013 2 0 0
## 8014 2 0 0
## 8015 2 0 0
## 8016 2 0 0
## 8017 2 0 0
## 8018 2 0 0
## 8019 2 0 0
## 8020 1 0 0
## 8021 1 0 0
## 8022 2 0 0
## 8023 2 0 0
## 8024 2 0 0
## 8025 2 0 0
## 8026 2 0 0
## 8027 2 0 0
## 8028 1 0 0
## 8029 2 0 0
## 8030 2 0 0
## 8031 2 0 0
## 8032 2 0 0
## 8033 2 0 0
## 8034 2 0 0
## 8035 2 0 0
## 8036 2 0 0
## 8037 2 0 0
## 8038 2 0 0
## 8039 2 0 0
## 8040 1 0 0
## 8041 2 0 0
## 8042 2 0 0
## 8043 2 0 0
## 8044 1 0 0
## 8045 3 0 0
## 8046 2 0 0
## 8047 2 0 0
## 8048 1 0 0
## 8049 2 1 0
## 8050 1 0 0
## 8051 2 0 0
## 8052 2 0 0
## 8053 1 0 0
## 8054 2 0 0
## 8055 1 0 0
## 8056 2 0 0
## 8057 2 0 0
## 8058 2 0 0
## 8059 1 0 0
## 8060 1 0 0
## 8061 2 0 0
## 8062 2 0 0
## 8063 2 0 0
## 8064 2 0 0
## 8065 2 0 0
## 8066 2 0 0
## 8067 2 0 0
## 8068 2 0 0
## 8069 2 0 0
## 8070 2 0 0
## 8071 2 0 0
## 8072 2 0 0
## 8073 2 0 0
## 8074 2 0 0
## 8075 2 0 0
## 8076 2 0 0
## 8077 2 0 0
## 8078 2 0 0
## 8079 2 0 0
## 8080 2 0 0
## 8081 1 0 0
## 8082 2 0 0
## 8083 2 0 0
## 8084 2 0 0
## 8085 2 0 0
## 8086 2 0 0
## 8087 2 0 0
## 8088 2 0 0
## 8089 2 0 0
## 8090 2 0 0
## 8091 2 0 0
## 8092 2 0 0
## 8093 1 0 0
## 8094 2 0 0
## 8095 2 0 0
## 8096 2 0 0
## 8097 1 0 0
## 8098 2 0 0
## 8099 2 0 0
## 8100 2 0 0
## 8101 2 0 0
## 8102 2 0 0
## 8103 2 0 0
## 8104 2 0 0
## 8105 2 0 0
## 8106 2 0 0
## 8107 2 0 0
## 8108 2 0 0
## 8109 2 0 0
## 8110 1 0 0
## 8111 2 0 0
## 8112 2 0 0
## 8113 1 0 0
## 8114 2 0 0
## 8115 2 0 0
## 8116 2 0 0
## 8117 2 0 0
## 8118 2 0 0
## 8119 3 1 0
## 8120 2 0 0
## 8121 2 0 0
## 8122 2 0 0
## 8123 2 0 0
## 8124 1 0 0
## 8125 2 0 0
## 8126 2 0 0
## 8127 2 2 0
## 8128 2 0 0
## 8129 1 0 0
## 8130 2 0 0
## 8131 2 0 0
## 8132 2 0 0
## 8133 2 0 0
## 8134 2 0 0
## 8135 2 0 0
## 8136 2 0 0
## 8137 2 0 0
## 8138 2 0 0
## 8139 2 0 0
## 8140 2 0 0
## 8141 2 0 0
## 8142 2 0 0
## 8143 2 0 0
## 8144 2 0 0
## 8145 2 0 0
## 8146 2 0 0
## 8147 2 0 0
## 8148 1 0 0
## 8149 1 0 0
## 8150 1 0 0
## 8151 2 0 0
## 8152 2 0 0
## 8153 2 0 0
## 8154 2 0 0
## 8155 2 0 0
## 8156 2 0 0
## 8157 2 0 0
## 8158 2 0 0
## 8159 3 0 0
## 8160 2 0 0
## 8161 2 0 0
## 8162 2 0 0
## 8163 2 0 0
## 8164 2 0 0
## 8165 2 0 0
## 8166 2 0 0
## 8167 2 0 0
## 8168 3 0 0
## 8169 2 0 0
## 8170 1 0 0
## 8171 1 0 0
## 8172 2 0 0
## 8173 2 0 0
## 8174 2 0 0
## 8175 2 0 0
## 8176 2 0 0
## 8177 2 0 0
## 8178 2 0 0
## 8179 2 0 0
## 8180 1 0 0
## 8181 2 0 0
## 8182 2 0 0
## 8183 2 0 0
## 8184 2 0 0
## 8185 2 0 0
## 8186 2 0 0
## 8187 2 0 0
## 8188 2 0 0
## 8189 2 0 0
## 8190 2 0 0
## 8191 2 0 0
## 8192 2 0 0
## 8193 2 0 0
## 8194 2 0 0
## 8195 2 0 0
## 8196 2 0 0
## 8197 1 0 0
## 8198 2 0 0
## 8199 2 0 0
## 8200 2 0 0
## 8201 2 0 0
## 8202 2 0 0
## 8203 2 0 0
## 8204 2 0 0
## 8205 2 0 0
## 8206 2 0 0
## 8207 2 0 0
## 8208 2 0 0
## 8209 2 0 0
## 8210 2 0 0
## 8211 2 0 0
## 8212 2 0 0
## 8213 2 0 0
## 8214 2 0 0
## 8215 1 0 0
## 8216 2 0 0
## 8217 2 0 0
## 8218 2 0 0
## 8219 2 0 0
## 8220 2 0 0
## 8221 3 0 0
## 8222 2 0 0
## 8223 2 0 0
## 8224 2 1 0
## 8225 2 0 0
## 8226 2 0 0
## 8227 2 0 0
## 8228 2 2 0
## 8229 2 2 0
## 8230 2 0 0
## 8231 2 0 0
## 8232 2 0 0
## 8233 2 0 0
## 8234 2 0 0
## 8235 2 2 0
## 8236 2 0 0
## 8237 2 2 0
## 8238 2 0 0
## 8239 2 0 0
## 8240 2 0 0
## 8241 2 0 0
## 8242 2 0 0
## 8243 2 0 0
## 8244 2 0 0
## 8245 2 2 0
## 8246 2 0 0
## 8247 2 0 0
## 8248 2 0 0
## 8249 2 0 0
## 8250 1 0 0
## 8251 1 0 0
## 8252 2 0 0
## 8253 2 0 0
## 8254 1 0 0
## 8255 1 0 0
## 8256 2 0 0
## 8257 2 0 0
## 8258 2 2 0
## 8259 1 2 0
## 8260 1 0 0
## 8261 3 1 0
## 8262 2 0 0
## 8263 1 0 0
## 8264 2 0 0
## 8265 2 0 0
## 8266 2 0 0
## 8267 2 0 0
## 8268 2 0 0
## 8269 2 0 0
## 8270 2 0 0
## 8271 2 0 0
## 8272 2 0 0
## 8273 2 0 0
## 8274 2 0 0
## 8275 2 0 0
## 8276 2 0 0
## 8277 2 0 0
## 8278 2 0 0
## 8279 2 0 0
## 8280 2 0 0
## 8281 2 0 0
## 8282 2 0 0
## 8283 2 0 0
## 8284 2 0 0
## 8285 2 0 0
## 8286 2 0 0
## 8287 2 0 0
## 8288 2 0 0
## 8289 2 0 0
## 8290 3 0 0
## 8291 1 0 0
## 8292 2 0 0
## 8293 2 0 0
## 8294 2 0 0
## 8295 2 0 0
## 8296 1 0 0
## 8297 2 2 0
## 8298 2 2 0
## 8299 2 2 0
## 8300 1 0 0
## 8301 2 0 0
## 8302 1 0 0
## 8303 2 0 0
## 8304 2 0 0
## 8305 2 0 0
## 8306 2 0 0
## 8307 2 0 0
## 8308 2 0 0
## 8309 2 0 0
## 8310 2 0 0
## 8311 2 0 0
## 8312 2 0 0
## 8313 2 0 0
## 8314 2 0 0
## 8315 2 0 0
## 8316 2 0 0
## 8317 2 0 0
## 8318 1 0 0
## 8319 2 0 0
## 8320 2 0 0
## 8321 2 2 0
## 8322 2 0 0
## 8323 2 0 0
## 8324 2 0 0
## 8325 2 0 0
## 8326 2 0 0
## 8327 2 0 0
## 8328 2 0 0
## 8329 1 0 0
## 8330 2 0 0
## 8331 2 0 0
## 8332 2 0 0
## 8333 2 0 0
## 8334 2 0 0
## 8335 2 0 0
## 8336 2 0 0
## 8337 2 0 0
## 8338 1 0 0
## 8339 2 0 0
## 8340 1 0 0
## 8341 2 0 0
## 8342 2 0 0
## 8343 2 0 0
## 8344 2 0 0
## 8345 2 0 0
## 8346 2 0 0
## 8347 2 0 0
## 8348 2 0 0
## 8349 2 0 0
## 8350 2 0 0
## 8351 2 0 0
## 8352 2 0 0
## 8353 2 0 0
## 8354 2 0 0
## 8355 2 0 0
## 8356 2 0 0
## 8357 2 0 0
## 8358 2 0 0
## 8359 2 0 0
## 8360 2 0 0
## 8361 2 0 0
## 8362 2 0 0
## 8363 2 0 0
## 8364 2 0 0
## 8365 2 0 0
## 8366 2 0 0
## 8367 2 0 0
## 8368 2 0 0
## 8369 2 0 0
## 8370 2 0 0
## 8371 2 0 0
## 8372 2 0 0
## 8373 1 0 0
## 8374 2 0 0
## 8375 2 0 0
## 8376 1 2 0
## 8377 1 0 0
## 8378 2 2 0
## 8379 2 2 0
## 8380 2 0 0
## 8381 2 1 0
## 8382 2 0 0
## 8383 2 0 0
## 8384 2 0 0
## 8385 2 0 0
## 8386 2 0 0
## 8387 2 0 0
## 8388 2 0 0
## 8389 2 0 0
## 8390 1 0 0
## 8391 2 0 0
## 8392 2 0 0
## 8393 2 0 0
## 8394 2 0 0
## 8395 2 0 0
## 8396 1 0 0
## 8397 1 0 0
## 8398 2 0 0
## 8399 3 1 0
## 8400 2 0 0
## 8401 3 1 0
## 8402 2 0 0
## 8403 2 0 0
## 8404 2 0 0
## 8405 2 0 0
## 8406 2 0 0
## 8407 2 0 0
## 8408 2 0 0
## 8409 2 0 0
## 8410 2 0 0
## 8411 1 0 0
## 8412 2 0 0
## 8413 2 0 0
## 8414 1 0 0
## 8415 2 0 0
## 8416 1 0 0
## 8417 1 0 0
## 8418 2 0 0
## 8419 1 0 0
## 8420 3 0 0
## 8421 1 0 0
## 8422 2 0 0
## 8423 2 0 0
## 8424 1 0 0
## 8425 1 0 0
## 8426 1 0 0
## 8427 1 0 0
## 8428 2 0 0
## 8429 2 0 0
## 8430 1 0 0
## 8431 1 0 0
## 8432 1 0 0
## 8433 2 0 0
## 8434 2 0 0
## 8435 2 0 0
## 8436 1 0 0
## 8437 2 0 0
## 8438 2 0 0
## 8439 2 0 0
## 8440 2 0 0
## 8441 2 0 0
## 8442 2 0 0
## 8443 2 0 0
## 8444 1 0 0
## 8445 2 0 0
## 8446 2 0 0
## 8447 2 0 0
## 8448 2 0 0
## 8449 2 0 0
## 8450 2 0 0
## 8451 2 0 0
## 8452 2 0 0
## 8453 2 2 0
## 8454 2 0 0
## 8455 2 0 0
## 8456 2 0 0
## 8457 2 0 0
## 8458 2 0 0
## 8459 2 0 0
## 8460 2 0 0
## 8461 2 0 0
## 8462 2 0 0
## 8463 2 0 0
## 8464 2 0 0
## 8465 2 0 0
## 8466 2 2 0
## 8467 2 0 0
## 8468 2 0 0
## 8469 2 1 0
## 8470 2 0 0
## 8471 2 0 0
## 8472 2 2 0
## 8473 2 0 0
## 8474 2 0 0
## 8475 2 2 0
## 8476 2 0 0
## 8477 2 1 0
## 8478 2 0 0
## 8479 2 0 0
## 8480 1 0 0
## 8481 2 0 0
## 8482 2 0 0
## 8483 2 0 0
## 8484 2 0 0
## 8485 2 0 0
## 8486 2 0 0
## 8487 2 0 0
## 8488 2 0 0
## 8489 2 0 0
## 8490 2 0 0
## 8491 2 0 0
## 8492 2 0 0
## 8493 2 0 0
## 8494 2 0 0
## 8495 2 0 0
## 8496 2 0 0
## 8497 2 0 0
## 8498 2 0 0
## 8499 2 0 0
## 8500 2 0 0
## 8501 2 0 0
## 8502 2 0 0
## 8503 2 0 0
## 8504 2 0 0
## 8505 2 0 0
## 8506 2 0 0
## 8507 2 0 0
## 8508 2 0 0
## 8509 2 0 0
## 8510 2 0 0
## 8511 2 0 0
## 8512 2 0 0
## 8513 1 0 0
## 8514 1 0 0
## 8515 2 0 0
## 8516 2 0 0
## 8517 2 0 0
## 8518 2 0 0
## 8519 2 0 0
## 8520 2 0 0
## 8521 2 0 0
## 8522 2 0 0
## 8523 2 0 0
## 8524 2 0 0
## 8525 2 0 0
## 8526 2 0 0
## 8527 2 0 0
## 8528 2 0 0
## 8529 2 0 0
## 8530 2 0 0
## 8531 2 0 0
## 8532 2 0 0
## 8533 2 0 0
## 8534 2 0 0
## 8535 2 0 0
## 8536 2 0 0
## 8537 2 0 0
## 8538 2 0 0
## 8539 1 0 0
## 8540 2 0 0
## 8541 2 0 0
## 8542 2 0 0
## 8543 1 0 0
## 8544 1 0 0
## 8545 2 0 0
## 8546 2 0 0
## 8547 2 0 0
## 8548 2 0 0
## 8549 2 0 0
## 8550 2 0 0
## 8551 2 0 0
## 8552 1 0 0
## 8553 2 0 0
## 8554 2 0 0
## 8555 2 0 0
## 8556 2 2 0
## 8557 2 0 0
## 8558 2 0 0
## 8559 2 0 0
## 8560 1 0 0
## 8561 2 0 0
## 8562 2 0 0
## 8563 1 0 0
## 8564 1 0 0
## 8565 2 0 0
## 8566 2 0 0
## 8567 2 0 0
## 8568 2 0 0
## 8569 2 0 0
## 8570 2 0 0
## 8571 2 0 0
## 8572 2 0 0
## 8573 2 0 0
## 8574 2 0 0
## 8575 2 0 0
## 8576 1 0 0
## 8577 1 0 0
## 8578 2 0 0
## 8579 2 0 0
## 8580 1 0 0
## 8581 1 0 0
## 8582 1 0 0
## 8583 1 0 0
## 8584 2 0 0
## 8585 2 0 0
## 8586 2 0 0
## 8587 2 0 0
## 8588 2 0 0
## 8589 1 0 0
## 8590 2 0 0
## 8591 1 0 0
## 8592 2 0 0
## 8593 1 0 0
## 8594 2 0 0
## 8595 2 0 0
## 8596 2 0 0
## 8597 2 0 0
## 8598 2 0 0
## 8599 2 0 0
## 8600 1 0 0
## 8601 2 0 0
## 8602 1 0 0
## 8603 1 0 0
## 8604 1 0 0
## 8605 1 0 0
## 8606 1 0 0
## 8607 2 0 0
## 8608 2 0 0
## 8609 1 0 0
## 8610 2 0 0
## 8611 2 0 0
## 8612 2 0 0
## 8613 2 0 0
## 8614 1 0 0
## 8615 1 0 0
## 8616 2 0 0
## 8617 2 0 0
## 8618 2 0 0
## 8619 2 0 0
## 8620 2 0 0
## 8621 2 0 0
## 8622 1 0 0
## 8623 2 0 0
## 8624 2 0 0
## 8625 3 0 0
## 8626 1 0 0
## 8627 2 0 0
## 8628 2 0 0
## 8629 2 0 0
## 8630 2 0 0
## 8631 2 0 0
## 8632 1 0 0
## 8633 2 0 0
## 8634 2 0 0
## 8635 2 0 0
## 8636 2 0 0
## 8637 2 0 0
## 8638 2 0 0
## 8639 2 0 0
## 8640 2 0 0
## 8641 2 0 0
## 8642 1 0 0
## 8643 2 0 0
## 8644 2 0 0
## 8645 2 0 0
## 8646 2 0 0
## 8647 2 0 0
## 8648 1 0 0
## 8649 1 0 0
## 8650 2 0 0
## 8651 2 0 0
## 8652 2 0 0
## 8653 2 0 0
## 8654 2 0 0
## 8655 2 0 0
## 8656 2 0 0
## 8657 1 0 0
## 8658 1 0 0
## 8659 2 0 0
## 8660 2 0 0
## 8661 1 0 0
## 8662 1 0 0
## 8663 2 0 0
## 8664 2 0 0
## 8665 2 2 0
## 8666 2 0 0
## 8667 2 0 0
## 8668 2 0 0
## 8669 2 0 0
## 8670 2 2 0
## 8671 2 0 0
## 8672 2 0 0
## 8673 2 0 0
## 8674 2 2 0
## 8675 2 2 0
## 8676 2 2 0
## 8677 2 2 0
## 8678 2 2 0
## 8679 2 0 0
## 8680 2 0 0
## 8681 2 0 0
## 8682 3 1 0
## 8683 2 0 0
## 8684 2 0 0
## 8685 2 0 0
## 8686 2 0 0
## 8687 2 2 0
## 8688 2 0 0
## 8689 2 0 0
## 8690 2 0 0
## 8691 2 0 0
## 8692 2 0 0
## 8693 2 0 0
## 8694 2 0 0
## 8695 2 0 0
## 8696 2 0 0
## 8697 2 0 0
## 8698 2 0 0
## 8699 2 0 0
## 8700 2 0 0
## 8701 2 0 0
## 8702 2 0 0
## 8703 2 0 0
## 8704 2 0 0
## 8705 2 0 0
## 8706 2 0 0
## 8707 2 0 0
## 8708 2 0 0
## 8709 2 0 0
## 8710 2 0 0
## 8711 2 0 0
## 8712 2 0 0
## 8713 2 2 0
## 8714 2 0 0
## 8715 3 0 0
## 8716 2 0 0
## 8717 2 0 0
## 8718 3 0 0
## 8719 2 1 0
## 8720 2 0 0
## 8721 2 0 0
## 8722 1 0 0
## 8723 1 0 0
## 8724 2 0 0
## 8725 1 0 0
## 8726 2 0 0
## 8727 2 0 0
## 8728 1 0 0
## 8729 2 0 0
## 8730 2 0 0
## 8731 1 0 0
## 8732 2 0 0
## 8733 2 0 0
## 8734 2 0 0
## 8735 2 0 0
## 8736 2 0 0
## 8737 2 0 0
## 8738 2 0 0
## 8739 3 1 0
## 8740 1 0 0
## 8741 2 0 0
## 8742 2 0 0
## 8743 2 0 0
## 8744 2 0 0
## 8745 2 0 0
## 8746 2 0 0
## 8747 2 0 0
## 8748 2 0 0
## 8749 1 0 0
## 8750 2 2 0
## 8751 2 0 0
## 8752 2 1 0
## 8753 3 0 0
## 8754 2 0 0
## 8755 3 0 0
## 8756 2 0 0
## 8757 3 1 0
## 8758 2 0 0
## 8759 1 0 0
## 8760 2 0 0
## 8761 2 0 0
## 8762 2 0 0
## 8763 2 2 0
## 8764 2 0 0
## 8765 2 0 0
## 8766 2 0 0
## 8767 2 0 0
## 8768 2 0 0
## 8769 2 0 0
## 8770 3 0 0
## 8771 2 2 0
## 8772 2 0 0
## 8773 2 0 0
## 8774 1 0 0
## 8775 2 0 0
## 8776 2 0 0
## 8777 2 0 0
## 8778 2 0 0
## 8779 2 0 0
## 8780 2 0 0
## 8781 2 0 0
## 8782 2 0 0
## 8783 2 0 0
## 8784 2 0 0
## 8785 2 0 0
## 8786 2 0 0
## 8787 2 0 0
## 8788 2 0 0
## 8789 2 0 0
## 8790 2 0 0
## 8791 2 0 0
## 8792 2 0 0
## 8793 2 0 0
## 8794 2 0 0
## 8795 3 0 0
## 8796 3 1 0
## 8797 2 0 0
## 8798 2 0 0
## 8799 2 0 0
## 8800 3 1 0
## 8801 3 1 0
## 8802 2 0 0
## 8803 2 0 0
## 8804 2 0 0
## 8805 2 0 0
## 8806 2 0 0
## 8807 2 0 0
## 8808 2 0 0
## 8809 2 0 0
## 8810 2 2 0
## 8811 2 0 0
## 8812 2 1 0
## 8813 2 0 0
## 8814 2 0 0
## 8815 2 2 0
## 8816 2 0 0
## 8817 2 1 0
## 8818 2 0 0
## 8819 2 0 0
## 8820 2 0 0
## 8821 2 0 0
## 8822 2 0 0
## 8823 2 0 0
## 8824 2 0 0
## 8825 2 2 0
## 8826 3 1 0
## 8827 2 0 0
## 8828 2 0 0
## 8829 2 0 0
## 8830 2 0 0
## 8831 2 2 0
## 8832 2 2 0
## 8833 2 0 0
## 8834 2 0 0
## 8835 2 0 0
## 8836 2 2 0
## 8837 2 0 0
## 8838 2 0 0
## 8839 2 0 0
## 8840 2 0 0
## 8841 2 2 0
## 8842 2 0 0
## 8843 2 0 0
## 8844 2 0 0
## 8845 2 0 0
## 8846 2 0 0
## 8847 3 1 0
## 8848 2 0 0
## 8849 2 0 0
## 8850 2 0 0
## 8851 2 0 0
## 8852 2 0 0
## 8853 2 0 0
## 8854 2 2 0
## 8855 2 2 0
## 8856 2 0 0
## 8857 2 0 0
## 8858 2 1 0
## 8859 2 0 0
## 8860 2 2 0
## 8861 2 0 0
## 8862 2 0 0
## 8863 2 0 0
## 8864 2 0 0
## 8865 2 0 0
## 8866 2 0 0
## 8867 2 0 0
## 8868 2 0 0
## 8869 2 0 0
## 8870 2 0 0
## 8871 2 0 0
## 8872 2 0 0
## 8873 2 0 0
## 8874 2 0 0
## 8875 2 0 0
## 8876 2 0 0
## 8877 2 0 0
## 8878 2 0 0
## 8879 2 0 0
## 8880 2 0 0
## 8881 2 0 0
## 8882 2 0 0
## 8883 2 0 0
## 8884 2 0 0
## 8885 2 0 0
## 8886 2 0 0
## 8887 2 0 0
## 8888 2 0 0
## 8889 2 0 0
## 8890 2 0 0
## 8891 2 0 0
## 8892 2 0 0
## 8893 1 0 0
## 8894 2 0 0
## 8895 2 0 0
## 8896 2 0 0
## 8897 2 0 0
## 8898 2 0 0
## 8899 1 0 0
## 8900 2 0 0
## 8901 2 0 0
## 8902 2 0 0
## 8903 2 1 0
## 8904 2 0 0
## 8905 2 1 0
## 8906 2 0 0
## 8907 1 0 0
## 8908 1 0 0
## 8909 1 0 0
## 8910 1 0 0
## 8911 2 0 0
## 8912 2 2 0
## 8913 2 0 0
## 8914 2 0 0
## 8915 3 1 0
## 8916 1 0 0
## 8917 2 0 0
## 8918 2 0 0
## 8919 2 0 0
## 8920 2 0 0
## 8921 2 0 0
## 8922 2 0 0
## 8923 2 0 0
## 8924 2 0 0
## 8925 2 0 0
## 8926 2 0 0
## 8927 2 0 0
## 8928 2 0 0
## 8929 2 0 0
## 8930 2 0 0
## 8931 2 0 0
## 8932 2 0 0
## 8933 2 0 0
## 8934 2 0 0
## 8935 1 0 0
## 8936 1 0 0
## 8937 1 0 0
## 8938 2 0 0
## 8939 2 0 0
## 8940 2 0 0
## 8941 2 0 0
## 8942 2 0 0
## 8943 2 0 0
## 8944 2 0 0
## 8945 2 0 0
## 8946 2 0 0
## 8947 2 0 0
## 8948 2 0 0
## 8949 2 0 0
## 8950 2 0 0
## 8951 3 1 0
## 8952 2 0 0
## 8953 2 0 0
## 8954 2 0 0
## 8955 2 0 0
## 8956 2 0 0
## 8957 2 0 0
## 8958 2 0 0
## 8959 2 0 0
## 8960 2 0 0
## 8961 2 0 0
## 8962 1 0 0
## 8963 2 0 0
## 8964 2 0 0
## 8965 2 0 0
## 8966 2 0 0
## 8967 2 0 0
## 8968 2 0 0
## 8969 1 0 0
## 8970 1 0 0
## 8971 2 0 0
## 8972 2 0 0
## 8973 2 0 0
## 8974 2 0 0
## 8975 2 0 0
## 8976 2 0 0
## 8977 3 0 0
## 8978 2 0 0
## 8979 1 0 0
## 8980 2 0 0
## 8981 2 0 0
## 8982 2 0 0
## 8983 2 0 0
## 8984 2 1 0
## 8985 2 0 0
## 8986 2 0 0
## 8987 2 0 0
## 8988 2 0 0
## 8989 2 0 0
## 8990 2 0 0
## 8991 2 0 0
## 8992 2 0 0
## 8993 2 0 0
## 8994 1 0 0
## 8995 2 0 0
## 8996 2 0 0
## 8997 1 0 0
## 8998 1 0 0
## 8999 2 0 0
## 9000 2 0 0
## 9001 2 0 0
## 9002 2 0 0
## 9003 2 0 0
## 9004 2 0 0
## 9005 2 0 0
## 9006 2 0 0
## 9007 2 0 0
## 9008 2 0 0
## 9009 2 0 0
## 9010 3 1 0
## 9011 2 2 0
## 9012 2 0 0
## 9013 2 0 0
## 9014 2 0 0
## 9015 2 0 0
## 9016 2 0 0
## 9017 2 0 0
## 9018 2 0 0
## 9019 2 0 0
## 9020 2 0 0
## 9021 2 0 0
## 9022 2 0 0
## 9023 2 0 0
## 9024 2 0 0
## 9025 2 0 0
## 9026 2 0 0
## 9027 2 0 0
## 9028 2 0 0
## 9029 2 0 0
## 9030 2 0 0
## 9031 2 0 0
## 9032 2 1 0
## 9033 3 1 0
## 9034 3 0 0
## 9035 2 0 0
## 9036 2 0 0
## 9037 1 0 0
## 9038 2 0 0
## 9039 2 0 0
## 9040 2 0 0
## 9041 2 0 0
## 9042 2 0 0
## 9043 2 0 0
## 9044 2 0 0
## 9045 2 0 0
## 9046 2 0 0
## 9047 2 0 0
## 9048 2 0 0
## 9049 2 0 0
## 9050 2 0 0
## 9051 2 0 0
## 9052 2 0 0
## 9053 2 0 0
## 9054 2 0 0
## 9055 2 0 0
## 9056 2 0 0
## 9057 2 0 0
## 9058 2 0 0
## 9059 2 0 0
## 9060 2 0 0
## 9061 2 0 0
## 9062 1 0 0
## 9063 2 0 0
## 9064 2 0 0
## 9065 2 0 0
## 9066 2 0 0
## 9067 1 0 0
## 9068 2 0 0
## 9069 2 0 0
## 9070 2 0 0
## 9071 2 0 0
## 9072 2 0 0
## 9073 2 0 0
## 9074 2 0 0
## 9075 2 0 0
## 9076 2 0 0
## 9077 2 0 0
## 9078 2 0 0
## 9079 2 0 0
## 9080 2 0 0
## 9081 2 0 0
## 9082 2 0 0
## 9083 2 0 0
## 9084 2 0 0
## 9085 2 0 0
## 9086 2 0 0
## 9087 2 0 0
## 9088 2 0 0
## 9089 2 0 0
## 9090 2 0 0
## 9091 2 0 0
## 9092 2 0 0
## 9093 2 0 0
## 9094 2 0 0
## 9095 2 0 0
## 9096 2 0 0
## 9097 2 0 0
## 9098 2 0 0
## 9099 2 0 0
## 9100 2 0 0
## 9101 2 0 0
## 9102 2 0 0
## 9103 2 0 0
## 9104 2 0 0
## 9105 2 0 0
## 9106 2 0 0
## 9107 2 0 0
## 9108 2 0 0
## 9109 2 0 0
## 9110 2 0 0
## 9111 2 0 0
## 9112 2 0 0
## 9113 2 0 0
## 9114 2 0 0
## 9115 2 0 0
## 9116 2 0 0
## 9117 2 0 0
## 9118 2 0 0
## 9119 2 0 0
## 9120 2 0 0
## 9121 2 0 0
## 9122 2 0 0
## 9123 2 0 0
## 9124 2 0 0
## 9125 2 0 0
## 9126 2 0 0
## 9127 2 0 0
## 9128 2 0 0
## 9129 2 0 0
## 9130 2 0 0
## 9131 2 0 0
## 9132 2 0 0
## 9133 1 0 0
## 9134 1 0 0
## 9135 2 0 0
## 9136 2 0 0
## 9137 2 0 0
## 9138 2 0 0
## 9139 2 0 0
## 9140 2 0 0
## 9141 1 0 0
## 9142 2 0 0
## 9143 1 0 0
## 9144 2 0 0
## 9145 2 0 0
## 9146 2 0 0
## 9147 2 0 0
## 9148 2 0 0
## 9149 1 0 0
## 9150 2 0 0
## 9151 2 0 0
## 9152 3 0 0
## 9153 2 0 0
## 9154 2 0 0
## 9155 2 2 0
## 9156 2 0 0
## 9157 2 0 0
## 9158 2 0 0
## 9159 2 0 0
## 9160 2 0 0
## 9161 2 0 0
## 9162 2 0 0
## 9163 2 0 0
## 9164 2 0 0
## 9165 2 0 0
## 9166 1 0 0
## 9167 1 0 0
## 9168 1 0 0
## 9169 2 0 0
## 9170 2 0 0
## 9171 2 0 0
## 9172 2 0 0
## 9173 2 0 0
## 9174 2 0 0
## 9175 1 0 0
## 9176 2 0 0
## 9177 2 0 0
## 9178 3 1 0
## 9179 2 0 0
## 9180 2 0 0
## 9181 2 0 0
## 9182 2 0 0
## 9183 2 0 0
## 9184 2 0 0
## 9185 2 0 0
## 9186 2 0 0
## 9187 2 0 0
## 9188 2 0 0
## 9189 2 0 0
## 9190 2 0 0
## 9191 2 0 0
## 9192 2 0 0
## 9193 1 0 0
## 9194 1 0 0
## 9195 3 0 0
## 9196 2 0 0
## 9197 1 0 0
## 9198 1 0 0
## 9199 2 0 0
## 9200 2 0 0
## 9201 2 0 0
## 9202 1 0 0
## 9203 2 0 0
## 9204 2 0 0
## 9205 2 0 0
## 9206 1 0 0
## 9207 2 0 0
## 9208 2 0 0
## 9209 2 0 0
## 9210 2 0 0
## 9211 2 0 0
## 9212 2 0 0
## 9213 2 0 0
## 9214 2 0 0
## 9215 2 0 0
## 9216 2 0 0
## 9217 2 0 0
## 9218 1 0 0
## 9219 2 0 0
## 9220 2 0 0
## 9221 2 0 0
## 9222 2 0 0
## 9223 2 0 0
## 9224 2 0 0
## 9225 2 0 0
## 9226 2 0 0
## 9227 1 0 0
## 9228 2 0 0
## 9229 2 0 0
## 9230 2 0 0
## 9231 2 0 0
## 9232 2 0 0
## 9233 2 0 0
## 9234 1 0 0
## 9235 2 0 0
## 9236 0 0 0
## 9237 2 2 0
## 9238 2 1 0
## 9239 2 0 0
## 9240 2 0 0
## 9241 2 0 0
## 9242 1 0 0
## 9243 2 0 0
## 9244 2 0 0
## 9245 2 0 0
## 9246 2 0 0
## 9247 1 0 0
## 9248 1 0 0
## 9249 2 0 0
## 9250 1 0 0
## 9251 1 0 0
## 9252 2 0 0
## 9253 2 0 0
## 9254 1 0 0
## 9255 2 0 0
## 9256 2 0 0
## 9257 2 0 0
## 9258 2 0 0
## 9259 2 0 0
## 9260 1 0 0
## 9261 2 0 0
## 9262 2 0 0
## 9263 2 0 0
## 9264 1 0 0
## 9265 2 0 0
## 9266 2 0 0
## 9267 2 0 0
## 9268 2 2 0
## 9269 2 0 0
## 9270 2 2 0
## 9271 2 0 0
## 9272 3 1 0
## 9273 2 2 0
## 9274 2 0 0
## 9275 2 0 0
## 9276 2 0 0
## 9277 2 0 0
## 9278 2 0 0
## 9279 2 0 0
## 9280 2 0 0
## 9281 2 0 0
## 9282 2 0 0
## 9283 2 0 0
## 9284 2 0 0
## 9285 2 0 0
## 9286 2 0 0
## 9287 2 0 0
## 9288 2 0 0
## 9289 2 0 0
## 9290 2 0 0
## 9291 2 0 0
## 9292 2 0 0
## 9293 2 0 0
## 9294 1 0 0
## 9295 1 0 0
## 9296 2 0 0
## 9297 1 0 0
## 9298 1 0 0
## 9299 2 0 0
## 9300 2 0 0
## 9301 2 0 0
## 9302 2 0 0
## 9303 2 0 0
## 9304 2 0 0
## 9305 1 0 0
## 9306 2 0 0
## 9307 1 0 0
## 9308 2 0 0
## 9309 2 0 0
## 9310 2 0 0
## 9311 2 0 0
## 9312 2 0 0
## 9313 1 0 0
## 9314 2 0 0
## 9315 2 0 0
## 9316 2 0 0
## 9317 2 0 0
## 9318 2 0 0
## 9319 2 0 0
## 9320 2 0 0
## 9321 2 0 0
## 9322 2 0 0
## 9323 2 0 0
## 9324 1 0 0
## 9325 2 0 0
## 9326 2 0 0
## 9327 2 0 0
## 9328 2 0 0
## 9329 2 0 0
## 9330 2 0 0
## 9331 2 0 0
## 9332 2 0 0
## 9333 2 0 0
## 9334 2 0 0
## 9335 2 0 0
## 9336 2 0 0
## 9337 2 0 0
## 9338 2 0 0
## 9339 2 0 0
## 9340 2 0 0
## 9341 2 0 0
## 9342 2 0 0
## 9343 2 0 0
## 9344 2 0 0
## 9345 2 0 0
## 9346 2 0 0
## 9347 2 0 0
## 9348 2 0 0
## 9349 2 0 0
## 9350 2 0 0
## 9351 2 0 0
## 9352 2 0 0
## 9353 2 0 0
## 9354 2 0 0
## 9355 2 0 0
## 9356 2 0 0
## 9357 2 0 0
## 9358 2 0 0
## 9359 2 0 0
## 9360 2 0 0
## 9361 2 0 0
## 9362 2 0 0
## 9363 2 0 0
## 9364 2 0 0
## 9365 2 0 0
## 9366 2 0 0
## 9367 2 0 0
## 9368 2 0 0
## 9369 2 0 0
## 9370 2 0 0
## 9371 1 0 0
## 9372 2 0 0
## 9373 2 0 0
## 9374 2 0 0
## 9375 2 0 0
## 9376 2 0 0
## 9377 2 0 0
## 9378 2 0 0
## 9379 2 0 0
## 9380 2 0 0
## 9381 2 2 0
## 9382 2 0 0
## 9383 2 0 0
## 9384 2 0 0
## 9385 2 0 0
## 9386 2 1 0
## 9387 2 0 0
## 9388 2 0 0
## 9389 2 0 0
## 9390 2 0 0
## 9391 2 0 0
## 9392 1 0 0
## 9393 1 0 0
## 9394 2 0 0
## 9395 1 0 0
## 9396 2 0 0
## 9397 2 0 0
## 9398 2 0 0
## 9399 2 0 0
## 9400 2 0 0
## 9401 2 0 0
## 9402 2 0 0
## 9403 2 0 0
## 9404 2 0 0
## 9405 2 0 0
## 9406 2 0 0
## 9407 2 0 0
## 9408 2 0 0
## 9409 2 0 0
## 9410 2 0 0
## 9411 2 0 0
## 9412 1 0 0
## 9413 2 0 0
## 9414 2 0 0
## 9415 2 0 0
## 9416 2 0 0
## 9417 2 0 0
## 9418 2 0 0
## 9419 2 0 0
## 9420 2 0 0
## 9421 2 0 0
## 9422 2 0 0
## 9423 2 0 0
## 9424 3 1 0
## 9425 2 0 0
## 9426 1 0 0
## 9427 1 0 0
## 9428 2 0 0
## 9429 1 0 0
## 9430 1 0 0
## 9431 2 0 0
## 9432 2 0 0
## 9433 2 0 0
## 9434 2 0 0
## 9435 1 0 0
## 9436 2 0 0
## 9437 2 0 0
## 9438 1 0 0
## 9439 1 0 0
## 9440 2 0 0
## 9441 2 0 0
## 9442 2 0 0
## 9443 2 0 0
## 9444 2 0 0
## 9445 2 0 0
## 9446 2 0 0
## 9447 1 0 0
## 9448 1 0 0
## 9449 1 0 0
## 9450 1 0 0
## 9451 2 0 0
## 9452 1 0 0
## 9453 2 0 0
## 9454 2 0 0
## 9455 2 0 0
## 9456 2 0 0
## 9457 2 0 0
## 9458 2 0 0
## 9459 1 0 0
## 9460 2 0 0
## 9461 2 0 0
## 9462 2 0 0
## 9463 1 0 0
## 9464 3 2 0
## 9465 2 0 0
## 9466 2 0 0
## 9467 1 0 0
## 9468 2 0 0
## 9469 1 0 0
## 9470 2 0 0
## 9471 1 0 0
## 9472 2 2 0
## 9473 3 1 0
## 9474 2 2 0
## 9475 2 0 0
## 9476 2 0 0
## 9477 2 0 0
## 9478 2 0 0
## 9479 2 0 0
## 9480 2 0 0
## 9481 2 0 0
## 9482 1 0 0
## 9483 2 0 0
## 9484 1 0 0
## 9485 2 0 0
## 9486 2 0 0
## 9487 2 0 0
## 9488 2 0 0
## 9489 2 0 0
## 9490 1 0 0
## 9491 3 1 0
## 9492 2 0 0
## 9493 2 0 0
## 9494 2 0 0
## 9495 2 0 0
## 9496 2 0 0
## 9497 2 0 0
## 9498 1 0 0
## 9499 1 0 0
## 9500 1 0 0
## 9501 2 0 0
## 9502 2 0 0
## 9503 2 0 0
## 9504 2 0 0
## 9505 1 0 0
## 9506 2 0 0
## 9507 2 0 0
## 9508 2 0 0
## 9509 2 0 0
## 9510 1 0 0
## 9511 2 0 0
## 9512 2 0 0
## 9513 2 0 0
## 9514 2 0 0
## 9515 2 0 0
## 9516 2 0 0
## 9517 2 1 0
## 9518 2 0 0
## 9519 2 0 0
## 9520 2 1 0
## 9521 2 0 0
## 9522 2 2 0
## 9523 1 0 0
## 9524 2 0 0
## 9525 2 0 0
## 9526 2 0 0
## 9527 2 0 0
## 9528 2 0 0
## 9529 2 0 0
## 9530 2 0 0
## 9531 2 0 0
## 9532 2 0 0
## 9533 2 0 0
## 9534 2 0 0
## 9535 2 0 0
## 9536 2 1 0
## 9537 1 0 0
## 9538 1 0 0
## 9539 2 0 0
## 9540 3 1 0
## 9541 2 0 0
## 9542 2 1 0
## 9543 2 0 0
## 9544 2 2 0
## 9545 2 0 0
## 9546 2 0 0
## 9547 2 0 0
## 9548 2 0 0
## 9549 2 0 0
## 9550 2 0 0
## 9551 2 0 0
## 9552 2 0 0
## 9553 2 0 0
## 9554 2 0 0
## 9555 2 0 0
## 9556 1 0 0
## 9557 2 0 0
## 9558 2 0 0
## 9559 2 0 0
## 9560 1 0 0
## 9561 2 2 0
## 9562 2 0 0
## 9563 2 2 0
## 9564 1 0 0
## 9565 1 0 0
## 9566 2 0 0
## 9567 2 0 0
## 9568 2 0 0
## 9569 2 0 0
## 9570 3 1 0
## 9571 2 0 0
## 9572 1 0 0
## 9573 2 0 0
## 9574 2 2 0
## 9575 2 0 0
## 9576 2 0 0
## 9577 1 0 0
## 9578 1 0 0
## 9579 2 0 0
## 9580 2 0 0
## 9581 2 0 0
## 9582 2 0 0
## 9583 2 2 0
## 9584 2 0 0
## 9585 2 0 0
## 9586 2 0 0
## 9587 2 2 0
## 9588 2 2 0
## 9589 2 0 0
## 9590 2 0 0
## 9591 2 1 0
## 9592 2 1 0
## 9593 2 1 0
## 9594 2 0 0
## 9595 2 0 0
## 9596 2 1 0
## 9597 2 0 0
## 9598 2 0 0
## 9599 2 0 0
## 9600 3 1 0
## 9601 2 0 0
## 9602 2 0 0
## 9603 2 0 0
## 9604 2 0 0
## 9605 2 0 0
## 9606 2 0 0
## 9607 2 0 0
## 9608 2 0 0
## 9609 2 0 0
## 9610 2 0 0
## 9611 2 0 0
## 9612 2 0 0
## 9613 2 0 0
## 9614 2 0 0
## 9615 2 0 0
## 9616 2 0 0
## 9617 2 0 0
## 9618 2 0 0
## 9619 1 0 0
## 9620 2 0 0
## 9621 2 0 0
## 9622 1 0 0
## 9623 2 1 0
## 9624 2 1 0
## 9625 2 0 0
## 9626 2 0 0
## 9627 2 0 0
## 9628 2 0 0
## 9629 2 0 0
## 9630 2 0 0
## 9631 2 0 0
## 9632 2 0 0
## 9633 2 0 0
## 9634 2 0 0
## 9635 2 0 0
## 9636 2 0 0
## 9637 1 0 0
## 9638 2 0 0
## 9639 2 0 0
## 9640 2 0 0
## 9641 1 0 0
## 9642 1 0 0
## 9643 2 0 0
## 9644 2 0 0
## 9645 2 0 0
## 9646 2 0 0
## 9647 2 0 0
## 9648 2 0 0
## 9649 2 0 0
## 9650 2 0 0
## 9651 2 2 0
## 9652 2 0 0
## 9653 2 0 0
## 9654 2 0 0
## 9655 2 0 0
## 9656 2 1 0
## 9657 3 0 0
## 9658 2 1 0
## 9659 2 2 0
## 9660 2 0 0
## 9661 2 0 0
## 9662 1 0 0
## 9663 2 0 0
## 9664 2 0 0
## 9665 1 0 0
## 9666 2 0 0
## 9667 2 0 0
## 9668 3 1 0
## 9669 2 0 0
## 9670 2 0 0
## 9671 2 0 0
## 9672 1 0 0
## 9673 2 0 0
## 9674 2 0 0
## 9675 1 0 0
## 9676 2 0 0
## 9677 2 0 0
## 9678 2 0 0
## 9679 2 0 0
## 9680 2 0 0
## 9681 2 0 0
## 9682 2 0 0
## 9683 2 0 0
## 9684 2 0 0
## 9685 2 0 0
## 9686 2 0 0
## 9687 2 0 0
## 9688 2 0 0
## 9689 2 0 0
## 9690 2 0 0
## 9691 1 0 0
## 9692 2 0 0
## 9693 2 0 0
## 9694 2 0 0
## 9695 2 0 0
## 9696 2 0 0
## 9697 1 0 0
## 9698 2 0 0
## 9699 1 0 0
## 9700 2 0 0
## 9701 2 0 0
## 9702 2 0 0
## 9703 2 0 0
## 9704 2 0 0
## 9705 1 0 0
## 9706 2 0 0
## 9707 1 0 0
## 9708 2 0 0
## 9709 2 0 0
## 9710 2 0 0
## 9711 1 0 0
## 9712 2 0 0
## 9713 2 1 0
## 9714 2 0 0
## 9715 2 0 0
## 9716 2 2 0
## 9717 2 0 0
## 9718 1 0 0
## 9719 2 0 0
## 9720 2 0 0
## 9721 2 0 0
## 9722 2 0 0
## 9723 2 0 0
## 9724 2 0 0
## 9725 2 0 0
## 9726 3 1 0
## 9727 1 0 0
## 9728 2 0 0
## 9729 2 0 0
## 9730 1 0 0
## 9731 1 0 0
## 9732 1 0 0
## 9733 1 0 0
## 9734 1 0 0
## 9735 1 0 0
## 9736 1 0 0
## 9737 1 0 0
## 9738 1 0 0
## 9739 1 0 0
## 9740 1 0 0
## 9741 1 0 0
## 9742 1 0 0
## 9743 1 0 0
## 9744 1 0 0
## 9745 1 0 0
## 9746 2 0 0
## 9747 2 0 0
## 9748 1 0 0
## 9749 1 0 0
## 9750 2 0 0
## 9751 2 0 0
## 9752 1 0 0
## 9753 1 0 0
## 9754 2 0 0
## 9755 2 0 0
## 9756 2 2 0
## 9757 2 2 0
## 9758 2 0 0
## 9759 2 0 0
## 9760 2 0 0
## 9761 2 0 0
## 9762 2 0 0
## 9763 2 0 0
## 9764 2 0 0
## 9765 2 0 0
## 9766 2 1 0
## 9767 2 0 0
## 9768 2 0 0
## 9769 2 0 0
## 9770 2 0 0
## 9771 2 2 0
## 9772 1 0 0
## 9773 1 0 0
## 9774 1 0 0
## 9775 1 0 0
## 9776 1 0 0
## 9777 2 0 0
## 9778 2 0 0
## 9779 1 0 0
## 9780 3 1 0
## 9781 1 0 0
## 9782 2 0 0
## 9783 1 0 0
## 9784 1 0 0
## 9785 2 0 0
## 9786 2 0 0
## 9787 2 2 0
## 9788 2 0 0
## 9789 2 0 0
## 9790 2 0 0
## 9791 2 0 0
## 9792 2 0 0
## 9793 2 0 0
## 9794 2 0 0
## 9795 1 0 0
## 9796 2 0 0
## 9797 2 0 0
## 9798 1 0 0
## 9799 2 0 0
## 9800 2 0 0
## 9801 1 0 0
## 9802 2 0 0
## 9803 2 0 0
## 9804 2 0 0
## 9805 2 0 0
## 9806 2 1 0
## 9807 2 0 0
## 9808 2 0 0
## 9809 2 0 0
## 9810 2 0 0
## 9811 2 0 0
## 9812 2 0 0
## 9813 2 0 0
## 9814 2 0 0
## 9815 2 0 0
## 9816 2 0 0
## 9817 2 0 0
## 9818 1 0 0
## 9819 2 0 0
## 9820 2 0 0
## 9821 2 0 0
## 9822 2 2 0
## 9823 1 0 0
## 9824 1 0 0
## 9825 2 0 0
## 9826 2 0 0
## 9827 2 0 0
## 9828 2 0 0
## 9829 2 0 0
## 9830 2 0 0
## 9831 2 0 0
## 9832 2 0 0
## 9833 2 2 0
## 9834 2 0 0
## 9835 2 0 0
## 9836 2 0 0
## 9837 2 0 0
## 9838 2 0 0
## 9839 2 0 0
## 9840 2 0 0
## 9841 2 0 0
## 9842 2 0 0
## 9843 2 0 0
## 9844 1 0 0
## 9845 1 0 0
## 9846 1 0 0
## 9847 1 0 0
## 9848 2 0 0
## 9849 2 0 0
## 9850 2 0 0
## 9851 2 0 0
## 9852 2 0 0
## 9853 1 0 0
## 9854 2 0 0
## 9855 2 0 0
## 9856 2 0 0
## 9857 1 0 0
## 9858 2 0 0
## 9859 1 0 0
## 9860 2 0 0
## 9861 1 0 0
## 9862 2 0 0
## 9863 2 0 0
## 9864 2 0 0
## 9865 2 0 0
## 9866 2 0 0
## 9867 2 0 0
## 9868 2 0 0
## 9869 2 0 0
## 9870 2 0 0
## 9871 2 0 0
## 9872 2 0 0
## 9873 2 0 0
## 9874 2 0 0
## 9875 1 0 0
## 9876 3 1 0
## 9877 2 0 0
## 9878 2 0 0
## 9879 2 0 0
## 9880 2 0 0
## 9881 2 0 0
## 9882 2 0 0
## 9883 2 0 0
## 9884 2 0 0
## 9885 3 1 0
## 9886 2 0 0
## 9887 2 2 0
## 9888 2 0 0
## 9889 2 0 0
## 9890 2 0 0
## 9891 2 0 0
## 9892 2 0 0
## 9893 2 0 0
## 9894 2 0 0
## 9895 2 0 0
## 9896 2 0 0
## 9897 2 0 0
## 9898 2 0 0
## 9899 2 0 0
## 9900 2 0 0
## 9901 2 0 0
## 9902 1 0 0
## 9903 3 0 0
## 9904 2 0 0
## 9905 2 0 0
## 9906 2 0 0
## 9907 2 0 0
## 9908 2 0 0
## 9909 2 0 0
## 9910 2 0 0
## 9911 2 0 0
## 9912 2 0 0
## 9913 1 0 0
## 9914 2 0 0
## 9915 2 0 0
## 9916 2 0 0
## 9917 2 0 0
## 9918 2 0 0
## 9919 2 0 0
## 9920 2 0 0
## 9921 2 0 0
## 9922 2 0 0
## 9923 2 0 0
## 9924 2 0 0
## 9925 2 0 0
## 9926 2 1 0
## 9927 2 0 0
## 9928 2 0 0
## 9929 2 0 0
## 9930 2 0 0
## 9931 2 0 0
## 9932 2 0 0
## 9933 2 0 0
## 9934 2 0 0
## 9935 2 0 0
## 9936 2 0 0
## 9937 2 0 0
## 9938 2 0 0
## 9939 2 0 0
## 9940 2 0 0
## 9941 2 0 0
## 9942 2 0 0
## 9943 2 0 0
## 9944 2 0 0
## 9945 2 0 0
## 9946 2 0 0
## 9947 2 0 0
## 9948 2 0 0
## 9949 2 0 0
## 9950 2 0 0
## 9951 3 1 0
## 9952 2 0 0
## 9953 2 0 0
## 9954 2 1 0
## 9955 1 0 0
## 9956 2 0 0
## 9957 2 0 0
## 9958 1 0 0
## 9959 2 0 0
## 9960 2 0 0
## 9961 2 0 0
## 9962 2 0 0
## 9963 2 0 0
## 9964 2 0 0
## 9965 2 0 0
## 9966 2 0 0
## 9967 2 0 0
## 9968 2 0 0
## 9969 2 0 0
## 9970 2 0 0
## 9971 2 0 0
## 9972 2 0 0
## 9973 1 0 0
## 9974 1 0 0
## 9975 2 2 0
## 9976 2 0 0
## 9977 2 0 0
## 9978 2 0 0
## 9979 2 0 0
## 9980 2 0 0
## 9981 2 0 0
## 9982 2 0 0
## 9983 2 0 0
## 9984 1 0 0
## 9985 2 0 0
## 9986 2 0 0
## 9987 2 0 0
## 9988 2 1 0
## 9989 2 0 0
## 9990 2 0 0
## 9991 2 0 0
## 9992 1 0 0
## 9993 2 0 0
## 9994 2 0 0
## 9995 1 0 0
## 9996 2 1 0
## 9997 2 1 0
## 9998 2 0 0
## 9999 2 0 0
## 10000 2 0 0
## 10001 1 0 0
## 10002 2 0 0
## 10003 2 0 0
## 10004 1 0 0
## 10005 2 0 0
## 10006 2 0 0
## 10007 2 0 0
## 10008 2 0 0
## 10009 2 0 0
## 10010 2 0 0
## 10011 2 0 0
## 10012 1 0 0
## 10013 2 2 0
## 10014 2 0 0
## 10015 2 0 0
## 10016 2 0 0
## 10017 2 0 0
## 10018 2 0 0
## 10019 2 0 0
## 10020 2 0 0
## 10021 2 0 0
## 10022 2 0 0
## 10023 2 2 0
## 10024 2 0 0
## 10025 2 0 0
## 10026 2 0 0
## 10027 2 0 0
## 10028 2 0 0
## 10029 2 0 0
## 10030 2 0 0
## 10031 2 2 0
## 10032 2 0 0
## 10033 2 0 0
## 10034 2 0 0
## 10035 2 0 0
## 10036 2 0 0
## 10037 2 0 0
## 10038 1 0 0
## 10039 2 0 0
## 10040 2 0 0
## 10041 2 0 0
## 10042 2 0 0
## 10043 2 0 0
## 10044 2 0 0
## 10045 2 0 0
## 10046 2 0 0
## 10047 2 0 0
## 10048 2 0 0
## 10049 2 0 0
## 10050 2 2 0
## 10051 2 2 0
## 10052 2 0 0
## 10053 2 0 0
## 10054 2 0 0
## 10055 1 0 0
## 10056 2 0 0
## 10057 2 0 0
## 10058 2 0 0
## 10059 1 0 0
## 10060 2 0 0
## 10061 1 0 0
## 10062 2 0 0
## 10063 2 0 0
## 10064 2 0 0
## 10065 2 0 0
## 10066 2 0 0
## 10067 2 0 0
## 10068 2 0 0
## 10069 1 0 0
## 10070 2 0 0
## 10071 2 0 0
## 10072 2 0 0
## 10073 2 0 0
## 10074 2 0 0
## 10075 2 0 0
## 10076 2 0 0
## 10077 1 0 0
## 10078 2 0 0
## 10079 3 0 0
## 10080 2 0 0
## 10081 3 0 0
## 10082 3 0 0
## 10083 1 2 0
## 10084 2 0 0
## 10085 2 0 0
## 10086 2 0 0
## 10087 2 0 0
## 10088 2 0 0
## 10089 2 0 0
## 10090 2 0 0
## 10091 2 0 0
## 10092 2 0 0
## 10093 1 0 0
## 10094 2 0 0
## 10095 1 0 0
## 10096 1 0 0
## 10097 2 0 0
## 10098 2 0 0
## 10099 3 0 0
## 10100 2 0 0
## 10101 2 0 0
## 10102 2 0 0
## 10103 1 0 0
## 10104 1 0 0
## 10105 2 0 0
## 10106 2 0 0
## 10107 2 0 0
## 10108 2 0 0
## 10109 2 0 0
## 10110 2 0 0
## 10111 2 1 0
## 10112 2 0 0
## 10113 2 0 0
## 10114 2 0 0
## 10115 2 0 0
## 10116 2 0 0
## 10117 2 0 0
## 10118 2 0 0
## 10119 2 0 0
## 10120 3 0 0
## 10121 2 0 0
## 10122 2 0 0
## 10123 2 0 0
## 10124 2 0 0
## 10125 1 0 0
## 10126 2 0 0
## 10127 2 0 0
## 10128 2 0 0
## 10129 2 0 0
## 10130 2 0 0
## 10131 2 0 0
## 10132 2 1 0
## 10133 2 1 0
## 10134 2 1 0
## 10135 2 0 0
## 10136 2 0 0
## 10137 2 0 0
## 10138 2 0 0
## 10139 2 0 0
## 10140 2 0 0
## 10141 2 0 0
## 10142 2 0 0
## 10143 2 2 0
## 10144 2 0 0
## 10145 2 0 0
## 10146 2 0 0
## 10147 2 0 0
## 10148 2 0 0
## 10149 2 0 0
## 10150 2 2 0
## 10151 2 0 0
## 10152 2 2 0
## 10153 2 2 0
## 10154 2 0 0
## 10155 2 0 0
## 10156 2 0 0
## 10157 2 0 0
## 10158 2 0 0
## 10159 2 0 0
## 10160 2 0 0
## 10161 2 0 0
## 10162 2 0 0
## 10163 2 0 0
## 10164 1 0 0
## 10165 2 0 0
## 10166 2 0 0
## 10167 2 0 0
## 10168 2 1 0
## 10169 2 0 0
## 10170 2 0 0
## 10171 2 0 0
## 10172 2 0 0
## 10173 2 0 0
## 10174 2 0 0
## 10175 2 0 0
## 10176 2 0 0
## 10177 2 0 0
## 10178 1 0 0
## 10179 1 0 0
## 10180 1 0 0
## 10181 2 0 0
## 10182 2 0 0
## 10183 2 2 0
## 10184 1 0 0
## 10185 2 0 0
## 10186 2 0 0
## 10187 2 0 0
## 10188 2 0 0
## 10189 2 0 0
## 10190 1 0 0
## 10191 2 0 0
## 10192 2 0 0
## 10193 2 0 0
## 10194 2 0 0
## 10195 2 0 0
## 10196 2 0 0
## 10197 2 0 0
## 10198 2 0 0
## 10199 2 0 0
## 10200 2 0 0
## 10201 2 0 0
## 10202 2 0 0
## 10203 2 0 0
## 10204 1 0 0
## 10205 2 0 0
## 10206 2 0 0
## 10207 2 0 0
## 10208 2 0 0
## 10209 2 0 0
## 10210 2 0 0
## 10211 2 0 0
## 10212 2 0 0
## 10213 2 0 0
## 10214 2 0 0
## 10215 2 0 0
## 10216 2 0 0
## 10217 2 0 0
## 10218 2 2 0
## 10219 2 0 0
## 10220 2 0 0
## 10221 2 0 0
## 10222 2 0 0
## 10223 2 0 0
## 10224 2 0 0
## 10225 2 0 0
## 10226 2 0 0
## 10227 1 0 0
## 10228 1 0 0
## 10229 2 0 0
## 10230 2 0 0
## 10231 2 0 0
## 10232 2 0 0
## 10233 2 0 0
## 10234 2 0 0
## 10235 2 0 0
## 10236 2 0 0
## 10237 2 0 0
## 10238 2 0 0
## 10239 2 0 0
## 10240 2 0 0
## 10241 2 0 0
## 10242 2 2 0
## 10243 2 0 0
## 10244 1 0 0
## 10245 1 0 0
## 10246 2 0 0
## 10247 1 0 0
## 10248 2 0 0
## 10249 1 0 0
## 10250 2 0 0
## 10251 2 0 0
## 10252 2 0 0
## 10253 2 0 0
## 10254 2 0 0
## 10255 2 0 0
## 10256 2 0 0
## 10257 2 0 0
## 10258 2 0 0
## 10259 2 0 0
## 10260 2 0 0
## 10261 1 0 0
## 10262 2 0 0
## 10263 2 0 0
## 10264 2 0 0
## 10265 2 0 0
## 10266 2 0 0
## 10267 1 0 0
## 10268 2 0 0
## 10269 2 0 0
## 10270 1 0 0
## 10271 2 0 0
## 10272 2 0 0
## 10273 2 0 0
## 10274 2 0 0
## 10275 1 0 0
## 10276 2 0 0
## 10277 2 0 0
## 10278 2 0 0
## 10279 2 0 0
## 10280 2 0 0
## 10281 1 0 0
## 10282 2 0 0
## 10283 2 0 0
## 10284 2 0 0
## 10285 1 0 0
## 10286 1 0 0
## 10287 1 0 0
## 10288 1 0 0
## 10289 2 0 0
## 10290 2 0 0
## 10291 1 0 0
## 10292 2 0 0
## 10293 1 0 0
## 10294 2 0 0
## 10295 2 2 0
## 10296 2 0 0
## 10297 2 2 0
## 10298 1 0 0
## 10299 2 2 0
## 10300 2 0 0
## 10301 2 0 0
## 10302 1 0 0
## 10303 2 0 0
## 10304 1 0 0
## 10305 2 0 0
## 10306 2 0 0
## 10307 2 0 0
## 10308 2 0 0
## 10309 2 0 0
## 10310 2 0 0
## 10311 2 0 0
## 10312 2 0 0
## 10313 2 0 0
## 10314 2 0 0
## 10315 2 0 0
## 10316 2 0 0
## 10317 2 0 0
## 10318 2 0 0
## 10319 2 0 0
## 10320 2 0 0
## 10321 2 0 0
## 10322 2 0 0
## 10323 2 0 0
## 10324 2 0 0
## 10325 2 0 0
## 10326 2 0 0
## 10327 2 0 0
## 10328 2 0 0
## 10329 2 0 0
## 10330 2 0 0
## 10331 2 0 0
## 10332 2 0 0
## 10333 2 0 0
## 10334 2 0 0
## 10335 1 0 0
## 10336 2 0 0
## 10337 2 0 0
## 10338 2 0 0
## 10339 2 0 0
## 10340 2 0 0
## 10341 2 0 0
## 10342 2 2 0
## 10343 2 0 0
## 10344 2 2 0
## 10345 2 0 0
## 10346 2 2 0
## 10347 2 0 0
## 10348 2 0 0
## 10349 2 0 0
## 10350 2 0 0
## 10351 2 0 0
## 10352 2 0 0
## 10353 2 2 0
## 10354 2 0 0
## 10355 2 2 0
## 10356 2 0 0
## 10357 2 0 0
## 10358 2 0 0
## 10359 2 0 0
## 10360 2 0 0
## 10361 2 0 0
## 10362 2 0 0
## 10363 2 0 0
## 10364 2 2 0
## 10365 2 0 0
## 10366 2 0 0
## 10367 2 0 0
## 10368 1 0 0
## 10369 1 0 0
## 10370 1 0 0
## 10371 1 0 0
## 10372 2 0 0
## 10373 2 0 0
## 10374 2 0 0
## 10375 3 1 0
## 10376 2 0 0
## 10377 2 0 0
## 10378 2 0 0
## 10379 2 0 0
## 10380 2 0 0
## 10381 1 0 0
## 10382 2 0 0
## 10383 2 0 0
## 10384 1 0 0
## 10385 2 0 0
## 10386 2 2 0
## 10387 2 0 0
## 10388 2 0 0
## 10389 2 0 0
## 10390 2 0 0
## 10391 2 0 0
## 10392 1 0 0
## 10393 1 0 0
## 10394 1 0 0
## 10395 2 0 0
## 10396 2 2 0
## 10397 2 2 0
## 10398 2 0 0
## 10399 2 0 0
## 10400 1 0 0
## 10401 2 2 0
## 10402 2 0 0
## 10403 1 0 0
## 10404 2 0 0
## 10405 2 0 0
## 10406 2 0 0
## 10407 2 0 0
## 10408 1 0 0
## 10409 1 0 0
## 10410 2 0 0
## 10411 2 0 0
## 10412 2 0 0
## 10413 2 0 0
## 10414 1 0 0
## 10415 2 0 0
## 10416 1 0 0
## 10417 2 0 0
## 10418 2 0 0
## 10419 2 0 0
## 10420 2 0 0
## 10421 2 0 0
## 10422 2 0 0
## 10423 2 0 0
## 10424 2 0 0
## 10425 2 0 0
## 10426 2 0 0
## 10427 1 0 0
## 10428 2 0 0
## 10429 2 0 0
## 10430 2 0 0
## 10431 1 0 0
## 10432 1 0 0
## 10433 2 0 0
## 10434 1 0 0
## 10435 1 0 0
## 10436 1 0 0
## 10437 1 0 0
## 10438 1 0 0
## 10439 2 0 0
## 10440 2 0 0
## 10441 2 0 0
## 10442 2 0 0
## 10443 2 0 0
## 10444 2 0 0
## 10445 2 0 0
## 10446 2 0 0
## 10447 2 0 0
## 10448 2 0 0
## 10449 2 0 0
## 10450 2 2 0
## 10451 2 0 0
## 10452 2 2 0
## 10453 2 2 0
## 10454 2 0 0
## 10455 2 0 0
## 10456 2 0 0
## 10457 2 0 0
## 10458 2 0 0
## 10459 2 0 0
## 10460 2 0 0
## 10461 1 0 0
## 10462 2 0 0
## 10463 2 0 0
## 10464 2 0 0
## 10465 2 0 0
## 10466 2 0 0
## 10467 1 0 0
## 10468 2 0 0
## 10469 2 0 0
## 10470 2 0 0
## 10471 2 0 0
## 10472 2 0 0
## 10473 1 0 0
## 10474 2 0 0
## 10475 2 0 0
## 10476 2 0 0
## 10477 2 0 0
## 10478 2 0 0
## 10479 2 0 0
## 10480 2 0 0
## 10481 2 0 0
## 10482 2 0 0
## 10483 2 0 0
## 10484 2 0 0
## 10485 2 0 0
## 10486 2 0 0
## 10487 2 0 0
## 10488 2 0 0
## 10489 2 0 0
## 10490 2 0 0
## 10491 2 1 0
## 10492 2 0 0
## 10493 2 0 0
## 10494 2 0 0
## 10495 2 0 0
## 10496 1 0 0
## 10497 2 0 0
## 10498 1 0 0
## 10499 1 0 0
## 10500 2 0 0
## 10501 1 0 0
## 10502 1 0 0
## 10503 2 0 0
## 10504 2 0 0
## 10505 2 0 0
## 10506 2 0 0
## 10507 2 0 0
## 10508 2 0 0
## 10509 2 0 0
## 10510 2 0 0
## 10511 2 0 0
## 10512 1 0 0
## 10513 1 0 0
## 10514 1 0 0
## 10515 1 0 0
## 10516 1 0 0
## 10517 2 2 0
## 10518 2 0 0
## 10519 2 0 0
## 10520 2 0 0
## 10521 2 0 0
## 10522 2 0 0
## 10523 2 0 0
## 10524 2 0 0
## 10525 2 0 0
## 10526 1 0 0
## 10527 2 0 0
## 10528 2 0 0
## 10529 2 0 0
## 10530 2 0 0
## 10531 2 0 0
## 10532 2 0 0
## 10533 2 0 0
## 10534 2 0 0
## 10535 2 0 0
## 10536 2 0 0
## 10537 1 0 0
## 10538 2 0 0
## 10539 2 0 0
## 10540 2 0 0
## 10541 2 0 0
## 10542 2 0 0
## 10543 2 0 0
## 10544 2 0 0
## 10545 2 0 0
## 10546 2 0 0
## 10547 2 0 0
## 10548 2 0 0
## 10549 2 0 0
## 10550 2 0 0
## 10551 2 0 0
## 10552 1 0 0
## 10553 1 0 0
## 10554 2 0 0
## 10555 2 0 0
## 10556 2 0 0
## 10557 2 0 0
## 10558 2 0 0
## 10559 2 0 0
## 10560 2 0 0
## 10561 2 0 0
## 10562 2 0 0
## 10563 2 0 0
## 10564 2 0 0
## 10565 1 0 0
## 10566 2 0 0
## 10567 2 0 0
## 10568 2 0 0
## 10569 2 0 0
## 10570 1 0 0
## 10571 2 0 0
## 10572 1 0 0
## 10573 2 0 0
## 10574 1 0 0
## 10575 2 0 0
## 10576 2 0 0
## 10577 2 0 0
## 10578 2 0 0
## 10579 1 0 0
## 10580 2 0 0
## 10581 2 0 0
## 10582 2 0 0
## 10583 1 0 0
## 10584 2 0 0
## 10585 2 0 0
## 10586 2 0 0
## 10587 2 0 0
## 10588 2 0 0
## 10589 1 0 0
## 10590 2 0 0
## 10591 2 0 0
## 10592 2 0 0
## 10593 2 2 0
## 10594 2 0 0
## 10595 1 0 0
## 10596 1 0 0
## 10597 1 0 0
## 10598 2 2 0
## 10599 2 0 0
## 10600 2 0 0
## 10601 2 0 0
## 10602 2 0 0
## 10603 2 0 0
## 10604 2 0 0
## 10605 2 0 0
## 10606 2 0 0
## 10607 2 0 0
## 10608 2 0 0
## 10609 2 0 0
## 10610 3 1 0
## 10611 2 0 0
## 10612 2 0 0
## 10613 2 2 0
## 10614 2 0 0
## 10615 2 0 0
## 10616 2 0 0
## 10617 1 0 0
## 10618 2 0 0
## 10619 2 0 0
## 10620 2 0 0
## 10621 2 0 0
## 10622 2 0 0
## 10623 2 2 0
## 10624 1 0 0
## 10625 1 0 0
## 10626 2 0 0
## 10627 1 0 0
## 10628 1 0 0
## 10629 1 0 0
## 10630 1 0 0
## 10631 1 0 0
## 10632 1 0 0
## 10633 1 0 0
## 10634 1 0 0
## 10635 1 0 0
## 10636 1 0 0
## 10637 1 0 0
## 10638 1 0 0
## 10639 1 0 0
## 10640 2 0 0
## 10641 2 0 0
## 10642 1 0 0
## 10643 1 1 0
## 10644 2 0 0
## 10645 1 0 0
## 10646 2 0 0
## 10647 2 0 0
## 10648 2 0 0
## 10649 2 0 0
## 10650 2 0 0
## 10651 2 0 0
## 10652 2 0 0
## 10653 2 0 0
## 10654 2 0 0
## 10655 2 0 0
## 10656 1 0 0
## 10657 2 2 0
## 10658 2 0 0
## 10659 2 0 0
## 10660 2 0 0
## 10661 2 0 0
## 10662 2 0 0
## 10663 2 0 0
## 10664 2 0 0
## 10665 1 0 0
## 10666 1 0 0
## 10667 2 1 0
## 10668 2 0 0
## 10669 2 0 0
## 10670 2 0 0
## 10671 2 0 0
## 10672 2 0 0
## 10673 2 0 0
## 10674 2 0 0
## 10675 2 0 0
## 10676 2 0 0
## 10677 2 0 0
## 10678 1 0 0
## 10679 1 0 0
## 10680 3 1 0
## 10681 2 0 0
## 10682 2 0 0
## 10683 1 0 0
## 10684 1 0 0
## 10685 2 0 0
## 10686 2 2 0
## 10687 2 1 0
## 10688 2 0 0
## 10689 2 2 0
## 10690 2 0 0
## 10691 2 0 0
## 10692 3 0 0
## 10693 2 0 0
## 10694 3 1 0
## 10695 3 1 0
## 10696 2 0 0
## 10697 2 0 0
## 10698 2 0 0
## 10699 2 2 0
## 10700 3 1 0
## 10701 2 0 0
## 10702 2 0 0
## 10703 2 0 0
## 10704 2 2 0
## 10705 2 0 0
## 10706 2 2 0
## 10707 2 2 0
## 10708 2 0 0
## 10709 2 0 0
## 10710 2 0 0
## 10711 2 0 0
## 10712 2 2 0
## 10713 2 0 0
## 10714 2 0 0
## 10715 2 0 0
## 10716 2 0 0
## 10717 3 1 0
## 10718 2 0 0
## 10719 2 2 0
## 10720 2 0 0
## 10721 2 0 0
## 10722 2 0 0
## 10723 2 0 0
## 10724 2 0 0
## 10725 2 0 0
## 10726 2 2 0
## 10727 1 0 0
## 10728 2 0 0
## 10729 2 0 0
## 10730 2 0 0
## 10731 2 0 0
## 10732 1 0 0
## 10733 2 0 0
## 10734 2 2 0
## 10735 2 0 0
## 10736 2 0 0
## 10737 2 0 0
## 10738 2 0 0
## 10739 2 0 0
## 10740 2 0 0
## 10741 2 0 0
## 10742 2 0 0
## 10743 2 0 0
## 10744 2 0 0
## 10745 2 0 0
## 10746 2 0 0
## 10747 2 0 0
## 10748 2 2 0
## 10749 2 1 0
## 10750 2 0 0
## 10751 2 0 0
## 10752 2 0 0
## 10753 2 0 0
## 10754 2 0 0
## 10755 2 0 0
## 10756 2 0 0
## 10757 2 0 0
## 10758 2 0 0
## 10759 2 0 0
## 10760 2 0 0
## 10761 2 0 0
## 10762 2 0 0
## 10763 2 0 0
## 10764 2 0 0
## 10765 2 0 0
## 10766 2 0 0
## 10767 2 2 0
## 10768 2 0 0
## 10769 2 2 0
## 10770 2 0 0
## 10771 2 0 0
## 10772 2 0 0
## 10773 2 0 0
## 10774 2 0 0
## 10775 2 1 0
## 10776 2 1 0
## 10777 2 2 0
## 10778 2 0 0
## 10779 3 0 0
## 10780 1 0 0
## 10781 2 0 0
## 10782 2 0 0
## 10783 2 0 0
## 10784 2 0 0
## 10785 2 1 0
## 10786 3 1 0
## 10787 2 0 0
## 10788 2 0 0
## 10789 2 0 0
## 10790 2 0 0
## 10791 2 0 0
## 10792 2 0 0
## 10793 2 0 0
## 10794 2 0 0
## 10795 2 0 0
## 10796 2 0 0
## 10797 2 0 0
## 10798 2 0 0
## 10799 2 0 0
## 10800 2 0 0
## 10801 2 0 0
## 10802 2 0 0
## 10803 2 0 0
## 10804 2 0 0
## 10805 2 0 0
## 10806 2 0 0
## 10807 2 2 0
## 10808 1 0 0
## 10809 3 0 0
## 10810 2 0 0
## 10811 2 0 0
## 10812 2 0 0
## 10813 2 0 0
## 10814 2 0 0
## 10815 2 0 0
## 10816 2 2 0
## 10817 2 0 0
## 10818 2 0 0
## 10819 2 1 0
## 10820 2 0 0
## 10821 2 0 0
## 10822 2 0 0
## 10823 3 1 0
## 10824 2 0 0
## 10825 2 0 0
## 10826 2 2 0
## 10827 2 0 0
## 10828 2 0 0
## 10829 2 0 0
## 10830 2 1 0
## 10831 1 0 0
## 10832 2 1 0
## 10833 2 0 0
## 10834 2 0 0
## 10835 2 0 0
## 10836 2 0 0
## 10837 2 0 0
## 10838 2 0 0
## 10839 2 0 0
## 10840 2 2 0
## 10841 2 0 0
## 10842 2 0 0
## 10843 2 0 0
## 10844 2 2 0
## 10845 2 0 0
## 10846 2 0 0
## 10847 2 0 0
## 10848 2 0 0
## 10849 2 0 0
## 10850 2 0 0
## 10851 2 0 0
## 10852 2 0 0
## 10853 2 0 0
## 10854 2 2 0
## 10855 2 0 0
## 10856 2 0 0
## 10857 2 0 0
## 10858 2 0 0
## 10859 2 0 0
## 10860 2 0 0
## 10861 2 0 0
## 10862 2 0 0
## 10863 2 0 0
## 10864 2 0 0
## 10865 2 0 0
## 10866 2 0 0
## 10867 2 0 0
## 10868 2 2 0
## 10869 2 0 0
## 10870 2 0 0
## 10871 1 0 0
## 10872 2 0 0
## 10873 2 0 0
## 10874 2 0 0
## 10875 3 1 0
## 10876 2 0 0
## 10877 2 0 0
## 10878 2 1 0
## 10879 2 0 0
## 10880 2 0 0
## 10881 2 0 0
## 10882 2 1 0
## 10883 2 0 0
## 10884 2 0 0
## 10885 2 0 0
## 10886 2 0 0
## 10887 1 1 0
## 10888 2 0 0
## 10889 1 0 0
## 10890 1 1 0
## 10891 2 1 0
## 10892 1 1 0
## 10893 2 0 0
## 10894 2 2 0
## 10895 2 0 0
## 10896 2 0 0
## 10897 2 1 0
## 10898 2 0 0
## 10899 2 0 0
## 10900 2 0 0
## 10901 2 0 0
## 10902 2 0 0
## 10903 2 0 0
## 10904 3 1 0
## 10905 4 0 0
## 10906 2 0 0
## 10907 2 0 0
## 10908 3 1 0
## 10909 2 0 0
## 10910 2 0 0
## 10911 3 0 0
## 10912 2 0 0
## 10913 2 0 0
## 10914 2 0 0
## 10915 2 0 0
## 10916 2 0 0
## 10917 2 0 0
## 10918 2 1 0
## 10919 2 0 0
## 10920 2 0 0
## 10921 2 0 0
## 10922 2 2 0
## 10923 2 0 0
## 10924 2 0 0
## 10925 3 0 0
## 10926 2 0 0
## 10927 2 0 0
## 10928 2 0 0
## 10929 2 0 0
## 10930 1 0 0
## 10931 2 0 0
## 10932 2 0 0
## 10933 2 0 0
## 10934 2 0 0
## 10935 2 0 0
## 10936 2 0 0
## 10937 2 0 0
## 10938 2 0 0
## 10939 2 0 0
## 10940 2 0 0
## 10941 2 0 0
## 10942 2 0 0
## 10943 2 0 0
## 10944 2 0 0
## 10945 2 1 0
## 10946 2 1 0
## 10947 2 0 0
## 10948 2 0 0
## 10949 2 0 0
## 10950 2 0 0
## 10951 3 1 0
## 10952 2 0 0
## 10953 2 0 0
## 10954 2 0 0
## 10955 2 0 0
## 10956 2 0 0
## 10957 2 0 0
## 10958 2 0 0
## 10959 1 0 0
## 10960 2 0 0
## 10961 2 0 0
## 10962 2 0 0
## 10963 2 0 0
## 10964 2 0 0
## 10965 1 0 0
## 10966 1 0 0
## 10967 2 0 0
## 10968 1 0 0
## 10969 2 0 0
## 10970 2 0 0
## 10971 2 0 0
## 10972 2 0 0
## 10973 1 0 0
## 10974 2 0 0
## 10975 2 0 0
## 10976 2 2 0
## 10977 2 0 0
## 10978 2 0 0
## 10979 1 0 0
## 10980 2 0 0
## 10981 2 0 0
## 10982 2 0 0
## 10983 2 0 0
## 10984 2 0 0
## 10985 1 0 0
## 10986 2 0 0
## 10987 2 0 0
## 10988 2 0 0
## 10989 2 0 0
## 10990 1 0 0
## 10991 3 0 0
## 10992 2 0 0
## 10993 2 2 0
## 10994 2 0 0
## 10995 2 0 0
## 10996 2 0 0
## 10997 2 0 0
## 10998 3 0 0
## 10999 3 0 0
## 11000 2 0 0
## 11001 3 0 0
## 11002 3 0 0
## 11003 2 0 0
## 11004 2 0 0
## 11005 2 0 0
## 11006 2 0 0
## 11007 2 0 0
## 11008 1 0 0
## 11009 2 0 0
## 11010 2 0 0
## 11011 1 0 0
## 11012 1 0 0
## 11013 2 0 0
## 11014 2 0 0
## 11015 2 0 0
## 11016 2 0 0
## 11017 1 0 0
## 11018 2 0 0
## 11019 2 0 0
## 11020 2 0 0
## 11021 2 0 0
## 11022 2 0 0
## 11023 2 0 0
## 11024 2 0 0
## 11025 2 0 0
## 11026 2 0 0
## 11027 2 0 0
## 11028 2 2 0
## 11029 2 2 0
## 11030 1 0 0
## 11031 2 0 0
## 11032 2 2 0
## 11033 2 0 0
## 11034 2 0 0
## 11035 2 0 0
## 11036 2 0 0
## 11037 2 0 0
## 11038 2 0 0
## 11039 2 1 0
## 11040 2 1 0
## 11041 2 0 0
## 11042 2 0 0
## 11043 2 0 0
## 11044 2 0 0
## 11045 2 2 0
## 11046 2 0 0
## 11047 2 2 0
## 11048 2 1 0
## 11049 2 0 0
## 11050 2 2 0
## 11051 2 0 0
## 11052 2 0 0
## 11053 2 0 0
## 11054 2 0 0
## 11055 2 0 0
## 11056 2 0 0
## 11057 2 0 0
## 11058 2 0 0
## 11059 2 0 0
## 11060 2 0 0
## 11061 2 0 0
## 11062 2 0 0
## 11063 2 0 0
## 11064 2 2 0
## 11065 2 0 0
## 11066 2 0 0
## 11067 2 0 0
## 11068 2 2 0
## 11069 2 2 0
## 11070 2 0 0
## 11071 2 0 0
## 11072 2 0 0
## 11073 2 0 0
## 11074 2 0 0
## 11075 2 0 0
## 11076 2 2 0
## 11077 2 2 0
## 11078 2 0 0
## 11079 2 0 0
## 11080 2 0 0
## 11081 2 0 0
## 11082 2 0 0
## 11083 2 0 0
## 11084 2 0 0
## 11085 2 0 0
## 11086 1 0 0
## 11087 1 0 0
## 11088 2 0 0
## 11089 2 0 0
## 11090 2 0 0
## 11091 2 0 0
## 11092 2 0 0
## 11093 2 0 0
## 11094 2 0 0
## 11095 2 0 0
## 11096 2 0 0
## 11097 2 2 0
## 11098 2 0 0
## 11099 2 0 0
## 11100 2 2 0
## 11101 2 0 0
## 11102 2 2 0
## 11103 2 0 0
## 11104 2 0 0
## 11105 2 0 0
## 11106 2 2 0
## 11107 2 0 0
## 11108 2 0 0
## 11109 2 0 0
## 11110 2 0 0
## 11111 2 0 0
## 11112 2 0 0
## 11113 2 0 0
## 11114 2 0 0
## 11115 2 1 0
## 11116 2 0 0
## 11117 2 0 0
## 11118 2 0 0
## 11119 2 0 0
## 11120 2 0 0
## 11121 2 0 0
## 11122 2 0 0
## 11123 2 0 0
## 11124 2 0 0
## 11125 2 0 0
## 11126 2 2 0
## 11127 2 0 0
## 11128 2 0 0
## 11129 2 0 0
## 11130 2 0 0
## 11131 2 0 0
## 11132 2 0 0
## 11133 2 0 0
## 11134 2 0 0
## 11135 2 0 0
## 11136 2 0 0
## 11137 2 0 0
## 11138 2 0 0
## 11139 2 0 0
## 11140 2 2 0
## 11141 2 0 0
## 11142 2 0 0
## 11143 2 2 0
## 11144 2 0 0
## 11145 2 2 0
## 11146 2 2 0
## 11147 2 1 0
## 11148 2 0 0
## 11149 2 0 0
## 11150 2 0 0
## 11151 2 0 0
## 11152 2 2 0
## 11153 2 0 0
## 11154 2 0 0
## 11155 2 0 0
## 11156 2 0 0
## 11157 2 0 0
## 11158 2 2 0
## 11159 2 0 0
## 11160 1 0 0
## 11161 1 0 0
## 11162 2 0 0
## 11163 2 0 0
## 11164 2 0 0
## 11165 2 0 0
## 11166 2 0 0
## 11167 2 0 0
## 11168 2 0 0
## 11169 2 0 0
## 11170 2 0 0
## 11171 2 0 0
## 11172 2 0 0
## 11173 2 0 0
## 11174 2 0 0
## 11175 2 0 0
## 11176 2 0 0
## 11177 2 0 0
## 11178 2 0 0
## 11179 2 0 0
## 11180 2 0 0
## 11181 2 0 0
## 11182 2 0 0
## 11183 2 0 0
## 11184 2 0 0
## 11185 2 0 0
## 11186 2 0 0
## 11187 2 0 0
## 11188 2 0 0
## 11189 2 0 0
## 11190 2 0 0
## 11191 2 0 0
## 11192 2 0 0
## 11193 2 0 0
## 11194 2 0 0
## 11195 2 0 0
## 11196 2 0 0
## 11197 2 0 0
## 11198 2 0 0
## 11199 2 0 0
## 11200 2 0 0
## 11201 2 0 0
## 11202 2 0 0
## 11203 2 0 0
## 11204 2 0 0
## 11205 1 0 0
## 11206 2 0 0
## 11207 2 0 0
## 11208 2 0 0
## 11209 2 0 0
## 11210 2 2 0
## 11211 2 0 0
## 11212 2 0 0
## 11213 1 0 0
## 11214 1 0 0
## 11215 2 0 0
## 11216 2 0 0
## 11217 2 0 0
## 11218 1 0 0
## 11219 2 0 0
## 11220 2 0 0
## 11221 1 0 0
## 11222 1 0 0
## 11223 2 0 0
## 11224 2 0 0
## 11225 1 0 0
## 11226 1 0 0
## 11227 1 0 0
## 11228 2 0 0
## 11229 1 0 0
## 11230 1 0 0
## 11231 2 0 0
## 11232 2 0 0
## 11233 2 0 0
## 11234 2 0 0
## 11235 2 0 0
## 11236 1 0 0
## 11237 2 0 0
## 11238 2 0 0
## 11239 1 0 0
## 11240 2 0 0
## 11241 2 0 0
## 11242 2 0 0
## 11243 2 0 0
## 11244 2 0 0
## 11245 2 0 0
## 11246 2 0 0
## 11247 2 0 0
## 11248 2 0 0
## 11249 2 0 0
## 11250 2 0 0
## 11251 2 0 0
## 11252 2 0 0
## 11253 1 0 0
## 11254 2 0 0
## 11255 2 0 0
## 11256 1 0 0
## 11257 2 0 0
## 11258 2 0 0
## 11259 1 0 0
## 11260 2 0 0
## 11261 2 0 0
## 11262 2 0 0
## 11263 2 0 0
## 11264 2 0 0
## 11265 2 0 0
## 11266 2 0 0
## 11267 2 0 0
## 11268 2 0 0
## 11269 3 0 0
## 11270 2 0 0
## 11271 2 0 0
## 11272 2 1 0
## 11273 2 2 0
## 11274 2 0 0
## 11275 2 2 0
## 11276 2 2 0
## 11277 2 0 0
## 11278 2 0 0
## 11279 2 0 0
## 11280 1 0 0
## 11281 2 0 0
## 11282 2 2 0
## 11283 2 0 0
## 11284 2 0 0
## 11285 2 0 0
## 11286 2 0 0
## 11287 1 0 0
## 11288 1 0 0
## 11289 1 0 0
## 11290 1 0 0
## 11291 2 0 0
## 11292 2 0 0
## 11293 2 2 0
## 11294 2 0 0
## 11295 2 2 0
## 11296 2 0 0
## 11297 1 0 0
## 11298 2 0 0
## 11299 2 0 0
## 11300 2 0 0
## 11301 1 0 0
## 11302 2 0 0
## 11303 1 0 0
## 11304 2 2 0
## 11305 2 0 0
## 11306 2 0 0
## 11307 2 0 0
## 11308 2 0 0
## 11309 2 0 0
## 11310 2 0 0
## 11311 2 0 0
## 11312 2 0 0
## 11313 2 0 0
## 11314 2 0 0
## 11315 2 0 0
## 11316 2 0 0
## 11317 2 0 0
## 11318 1 0 0
## 11319 2 0 0
## 11320 2 0 0
## 11321 2 0 0
## 11322 2 0 0
## 11323 3 1 0
## 11324 2 2 0
## 11325 2 2 0
## 11326 2 0 0
## 11327 2 0 0
## 11328 2 2 0
## 11329 2 2 0
## 11330 2 2 0
## 11331 1 0 0
## 11332 1 0 0
## 11333 1 0 0
## 11334 1 0 0
## 11335 2 0 0
## 11336 1 0 0
## 11337 1 0 0
## 11338 2 0 0
## 11339 2 0 0
## 11340 3 1 0
## 11341 2 0 0
## 11342 2 0 0
## 11343 1 0 0
## 11344 2 0 0
## 11345 2 0 0
## 11346 2 2 0
## 11347 2 0 0
## 11348 2 0 0
## 11349 2 0 0
## 11350 2 0 0
## 11351 2 0 0
## 11352 2 0 0
## 11353 2 0 0
## 11354 2 0 0
## 11355 2 0 0
## 11356 2 0 0
## 11357 2 0 0
## 11358 2 2 0
## 11359 2 0 0
## 11360 2 0 0
## 11361 2 0 0
## 11362 2 0 0
## 11363 2 0 0
## 11364 2 0 0
## 11365 2 0 0
## 11366 2 0 0
## 11367 2 0 0
## 11368 2 0 0
## 11369 2 0 0
## 11370 2 0 0
## 11371 2 0 0
## 11372 2 0 0
## 11373 2 0 0
## 11374 2 2 0
## 11375 2 0 0
## 11376 2 0 0
## 11377 2 0 0
## 11378 2 0 0
## 11379 2 0 0
## 11380 2 0 0
## 11381 2 0 0
## 11382 2 0 0
## 11383 2 0 0
## 11384 1 0 0
## 11385 2 0 0
## 11386 1 0 0
## 11387 2 0 0
## 11388 2 0 0
## 11389 2 2 0
## 11390 2 0 0
## 11391 2 0 0
## 11392 2 0 0
## 11393 2 0 0
## 11394 2 0 0
## 11395 2 0 0
## 11396 1 0 0
## 11397 2 0 0
## 11398 2 0 0
## 11399 2 0 0
## 11400 2 0 0
## 11401 2 0 0
## 11402 2 0 0
## 11403 2 0 0
## 11404 2 0 0
## 11405 2 0 0
## 11406 2 0 0
## 11407 2 0 0
## 11408 2 0 0
## 11409 2 2 0
## 11410 2 2 0
## 11411 2 0 0
## 11412 2 0 0
## 11413 2 2 0
## 11414 2 0 0
## 11415 2 2 0
## 11416 2 1 0
## 11417 2 0 0
## 11418 2 0 0
## 11419 2 0 0
## 11420 2 0 0
## 11421 2 0 0
## 11422 2 0 0
## 11423 2 2 0
## 11424 2 2 0
## 11425 2 0 0
## 11426 1 0 0
## 11427 2 0 0
## 11428 2 0 0
## 11429 2 0 0
## 11430 2 0 0
## 11431 2 0 0
## 11432 2 0 0
## 11433 2 0 0
## 11434 2 0 0
## 11435 2 2 0
## 11436 2 0 0
## 11437 2 0 0
## 11438 4 0 0
## 11439 2 2 0
## 11440 2 0 0
## 11441 2 0 0
## 11442 2 0 0
## 11443 2 0 0
## 11444 2 0 0
## 11445 2 0 0
## 11446 2 2 0
## 11447 2 0 0
## 11448 2 0 0
## 11449 2 0 0
## 11450 2 0 0
## 11451 2 2 0
## 11452 2 2 0
## 11453 2 0 0
## 11454 2 0 0
## 11455 2 0 0
## 11456 2 0 0
## 11457 2 0 0
## 11458 2 0 0
## 11459 2 0 0
## 11460 2 0 0
## 11461 2 0 0
## 11462 1 0 0
## 11463 2 0 0
## 11464 1 0 0
## 11465 1 0 0
## 11466 1 0 0
## 11467 1 0 0
## 11468 1 0 0
## 11469 1 0 0
## 11470 2 2 0
## 11471 3 0 0
## 11472 2 0 0
## 11473 2 0 0
## 11474 2 0 0
## 11475 2 0 0
## 11476 2 0 0
## 11477 2 0 0
## 11478 2 2 0
## 11479 2 0 0
## 11480 2 0 0
## 11481 2 0 0
## 11482 2 2 0
## 11483 2 2 0
## 11484 2 2 0
## 11485 2 2 0
## 11486 3 2 0
## 11487 2 0 0
## 11488 2 0 0
## 11489 2 0 0
## 11490 2 0 0
## 11491 2 0 0
## 11492 2 0 0
## 11493 2 0 0
## 11494 2 0 0
## 11495 2 0 0
## 11496 1 0 0
## 11497 2 0 0
## 11498 2 2 0
## 11499 2 0 0
## 11500 1 0 0
## 11501 2 1 0
## 11502 1 0 0
## 11503 2 0 0
## 11504 2 0 0
## 11505 1 0 0
## 11506 2 0 0
## 11507 2 0 0
## 11508 2 0 0
## 11509 2 0 0
## 11510 2 0 0
## 11511 2 0 0
## 11512 2 0 0
## 11513 2 0 0
## 11514 2 0 0
## 11515 2 0 0
## 11516 1 0 0
## 11517 2 0 0
## 11518 2 0 0
## 11519 2 0 0
## 11520 2 1 0
## 11521 2 0 0
## 11522 2 0 0
## 11523 2 0 0
## 11524 2 0 0
## 11525 2 0 0
## 11526 2 0 0
## 11527 2 0 0
## 11528 2 2 0
## 11529 2 0 0
## 11530 2 0 0
## 11531 2 0 0
## 11532 2 0 0
## 11533 2 0 0
## 11534 2 0 0
## 11535 2 0 0
## 11536 2 0 0
## 11537 2 2 0
## 11538 2 0 0
## 11539 2 0 0
## 11540 2 1 0
## 11541 2 1 0
## 11542 2 0 0
## 11543 2 2 0
## 11544 2 0 0
## 11545 2 0 0
## 11546 3 1 0
## 11547 1 0 0
## 11548 2 2 0
## 11549 2 0 0
## 11550 3 1 0
## 11551 1 0 0
## 11552 2 2 0
## 11553 2 2 0
## 11554 3 1 0
## 11555 2 0 0
## 11556 2 0 0
## 11557 2 0 0
## 11558 3 1 0
## 11559 2 0 0
## 11560 2 0 0
## 11561 2 0 0
## 11562 2 0 0
## 11563 2 0 0
## 11564 2 0 0
## 11565 2 2 0
## 11566 1 0 0
## 11567 2 1 0
## 11568 2 1 0
## 11569 3 0 0
## 11570 2 0 0
## 11571 2 0 0
## 11572 2 0 0
## 11573 2 0 0
## 11574 2 0 0
## 11575 2 0 0
## 11576 2 0 0
## 11577 2 0 0
## 11578 2 0 0
## 11579 1 0 0
## 11580 2 0 0
## 11581 2 0 0
## 11582 2 0 0
## 11583 2 0 0
## 11584 2 0 0
## 11585 2 0 0
## 11586 2 0 0
## 11587 2 0 0
## 11588 2 0 0
## 11589 3 1 0
## 11590 2 0 0
## 11591 2 0 0
## 11592 2 0 0
## 11593 2 0 0
## 11594 2 0 0
## 11595 2 0 0
## 11596 2 0 0
## 11597 2 0 0
## 11598 2 0 0
## 11599 2 0 0
## 11600 2 0 0
## 11601 2 0 0
## 11602 2 0 0
## 11603 2 0 0
## 11604 2 0 0
## 11605 1 0 0
## 11606 2 0 0
## 11607 2 1 0
## 11608 2 0 0
## 11609 2 1 0
## 11610 2 2 0
## 11611 2 2 0
## 11612 2 0 0
## 11613 2 0 0
## 11614 2 0 0
## 11615 2 2 0
## 11616 2 0 0
## 11617 2 0 0
## 11618 2 0 0
## 11619 1 0 0
## 11620 2 0 0
## 11621 1 0 0
## 11622 2 0 0
## 11623 2 0 0
## 11624 2 0 0
## 11625 3 1 0
## 11626 2 0 0
## 11627 2 0 0
## 11628 2 0 0
## 11629 2 0 0
## 11630 1 0 0
## 11631 2 0 0
## 11632 2 0 0
## 11633 2 0 0
## 11634 1 0 0
## 11635 2 0 0
## 11636 2 0 0
## 11637 2 0 0
## 11638 2 0 0
## 11639 2 0 0
## 11640 2 0 0
## 11641 2 0 0
## 11642 2 0 0
## 11643 2 0 0
## 11644 2 0 0
## 11645 2 0 0
## 11646 2 0 0
## 11647 2 0 0
## 11648 2 0 0
## 11649 2 0 0
## 11650 2 0 0
## 11651 1 0 0
## 11652 2 0 0
## 11653 2 0 0
## 11654 2 2 0
## 11655 2 0 0
## 11656 2 2 0
## 11657 2 0 0
## 11658 2 0 0
## 11659 2 0 0
## 11660 2 0 0
## 11661 2 0 0
## 11662 2 0 0
## 11663 2 0 0
## 11664 2 0 0
## 11665 2 0 0
## 11666 2 0 0
## 11667 2 0 0
## 11668 2 0 0
## 11669 2 0 0
## 11670 2 0 0
## 11671 2 0 0
## 11672 2 0 0
## 11673 2 0 0
## 11674 2 0 0
## 11675 2 0 0
## 11676 2 0 0
## 11677 2 0 0
## 11678 2 0 0
## 11679 2 0 0
## 11680 2 0 0
## 11681 2 0 0
## 11682 2 2 0
## 11683 2 0 0
## 11684 2 0 0
## 11685 2 0 0
## 11686 2 0 0
## 11687 2 0 0
## 11688 2 0 0
## 11689 2 0 0
## 11690 2 0 0
## 11691 2 0 0
## 11692 2 0 0
## 11693 2 0 0
## 11694 2 0 0
## 11695 2 0 0
## 11696 2 0 0
## 11697 2 2 0
## 11698 2 0 0
## 11699 2 0 0
## 11700 2 0 0
## 11701 2 0 0
## 11702 2 2 0
## 11703 2 0 0
## 11704 2 0 0
## 11705 1 0 0
## 11706 2 0 0
## 11707 2 1 0
## 11708 1 0 0
## 11709 1 0 0
## 11710 2 0 0
## 11711 2 0 0
## 11712 2 1 0
## 11713 2 2 0
## 11714 3 1 0
## 11715 1 0 0
## 11716 1 1 0
## 11717 2 0 0
## 11718 2 0 0
## 11719 1 0 0
## 11720 1 0 0
## 11721 2 1 0
## 11722 2 0 0
## 11723 2 1 0
## 11724 2 0 0
## 11725 1 0 0
## 11726 2 1 0
## 11727 2 0 0
## 11728 2 0 0
## 11729 2 0 0
## 11730 2 0 0
## 11731 2 0 0
## 11732 2 0 0
## 11733 2 0 0
## 11734 1 0 0
## 11735 2 0 0
## 11736 2 2 0
## 11737 2 0 0
## 11738 2 2 0
## 11739 2 2 0
## 11740 2 2 0
## 11741 2 0 0
## 11742 1 0 0
## 11743 2 0 0
## 11744 2 0 0
## 11745 2 0 0
## 11746 2 0 0
## 11747 2 0 0
## 11748 2 0 0
## 11749 2 0 0
## 11750 2 0 0
## 11751 2 0 0
## 11752 2 0 0
## 11753 2 0 0
## 11754 2 0 0
## 11755 2 0 0
## 11756 2 0 0
## 11757 1 0 0
## 11758 2 0 0
## 11759 2 0 0
## 11760 2 0 0
## 11761 2 0 0
## 11762 2 0 0
## 11763 2 0 0
## 11764 2 0 0
## 11765 2 0 0
## 11766 2 0 0
## 11767 2 0 0
## 11768 2 0 0
## 11769 2 0 0
## 11770 2 0 0
## 11771 2 0 0
## 11772 2 0 0
## 11773 2 0 0
## 11774 2 0 0
## 11775 2 0 0
## 11776 2 2 0
## 11777 2 0 0
## 11778 2 0 0
## 11779 2 0 0
## 11780 2 0 0
## 11781 2 0 0
## 11782 2 0 0
## 11783 2 0 0
## 11784 2 0 0
## 11785 2 0 0
## 11786 2 0 0
## 11787 1 0 0
## 11788 2 0 0
## 11789 2 0 0
## 11790 3 1 0
## 11791 2 0 0
## 11792 2 0 0
## 11793 2 0 0
## 11794 2 0 0
## 11795 2 0 0
## 11796 2 0 0
## 11797 2 0 0
## 11798 2 0 0
## 11799 2 0 0
## 11800 2 0 0
## 11801 2 0 0
## 11802 2 0 0
## 11803 2 0 0
## 11804 2 0 0
## 11805 2 0 0
## 11806 2 0 0
## 11807 2 0 0
## 11808 2 0 0
## 11809 2 2 0
## 11810 2 2 0
## 11811 2 0 0
## 11812 2 0 0
## 11813 2 2 0
## 11814 2 0 0
## 11815 2 1 0
## 11816 2 0 0
## 11817 2 0 0
## 11818 2 0 0
## 11819 2 0 0
## 11820 1 0 0
## 11821 2 0 0
## 11822 2 0 0
## 11823 2 0 0
## 11824 2 0 0
## 11825 2 0 0
## 11826 2 0 0
## 11827 2 0 0
## 11828 2 0 0
## 11829 2 0 0
## 11830 2 0 0
## 11831 2 0 0
## 11832 2 0 0
## 11833 2 0 0
## 11834 1 0 0
## 11835 2 0 0
## 11836 1 0 0
## 11837 2 0 0
## 11838 2 0 0
## 11839 2 0 0
## 11840 2 2 0
## 11841 2 0 0
## 11842 2 0 0
## 11843 1 0 0
## 11844 2 0 0
## 11845 2 0 0
## 11846 2 0 0
## 11847 2 0 0
## 11848 1 0 0
## 11849 1 0 0
## 11850 2 0 0
## 11851 2 2 0
## 11852 2 0 0
## 11853 1 0 0
## 11854 1 0 0
## 11855 1 0 0
## 11856 2 0 0
## 11857 2 0 0
## 11858 2 0 0
## 11859 2 0 0
## 11860 2 0 0
## 11861 2 0 0
## 11862 1 0 0
## 11863 1 0 0
## 11864 2 0 0
## 11865 2 0 0
## 11866 2 0 0
## 11867 2 0 0
## 11868 2 0 0
## 11869 2 2 0
## 11870 2 0 0
## 11871 2 0 0
## 11872 2 0 0
## 11873 2 0 0
## 11874 2 2 0
## 11875 2 0 0
## 11876 2 2 0
## 11877 2 0 0
## 11878 2 1 0
## 11879 2 0 0
## 11880 2 1 0
## 11881 2 2 0
## 11882 2 0 0
## 11883 2 0 0
## 11884 2 0 0
## 11885 2 0 0
## 11886 2 0 0
## 11887 3 0 0
## 11888 2 0 0
## 11889 2 0 0
## 11890 2 2 0
## 11891 1 0 0
## 11892 2 2 0
## 11893 2 2 0
## 11894 2 0 0
## 11895 2 0 0
## 11896 2 1 0
## 11897 2 0 0
## 11898 2 2 0
## 11899 2 0 0
## 11900 2 0 0
## 11901 2 0 0
## 11902 2 0 0
## 11903 2 2 0
## 11904 2 0 0
## 11905 2 0 0
## 11906 2 0 0
## 11907 1 0 0
## 11908 2 0 0
## 11909 2 0 0
## 11910 2 0 0
## 11911 3 0 0
## 11912 2 0 0
## 11913 2 0 0
## 11914 2 0 0
## 11915 2 0 0
## 11916 2 2 0
## 11917 2 0 0
## 11918 2 0 0
## 11919 2 0 0
## 11920 2 0 0
## 11921 2 0 0
## 11922 2 0 0
## 11923 2 0 0
## 11924 1 0 0
## 11925 2 0 0
## 11926 2 0 0
## 11927 2 0 0
## 11928 2 0 0
## 11929 2 0 0
## 11930 1 0 0
## 11931 2 0 0
## 11932 1 0 0
## 11933 2 0 0
## 11934 2 0 0
## 11935 4 0 0
## 11936 2 2 0
## 11937 2 0 0
## 11938 3 0 0
## 11939 2 0 0
## 11940 2 0 0
## 11941 2 0 0
## 11942 2 2 0
## 11943 2 0 0
## 11944 2 0 0
## 11945 2 0 0
## 11946 2 0 0
## 11947 3 1 0
## 11948 2 0 0
## 11949 2 0 0
## 11950 2 0 0
## 11951 2 0 0
## 11952 2 0 0
## 11953 2 0 0
## 11954 2 0 0
## 11955 2 0 0
## 11956 2 0 0
## 11957 2 0 0
## 11958 2 1 0
## 11959 2 0 0
## 11960 2 0 0
## 11961 2 0 0
## 11962 2 0 0
## 11963 2 0 0
## 11964 2 0 0
## 11965 2 0 0
## 11966 2 0 0
## 11967 2 0 0
## 11968 2 0 0
## 11969 2 0 0
## 11970 2 0 0
## 11971 2 0 0
## 11972 2 2 0
## 11973 2 0 0
## 11974 2 0 0
## 11975 2 0 0
## 11976 3 1 0
## 11977 2 0 0
## 11978 2 0 0
## 11979 1 0 0
## 11980 1 0 0
## 11981 2 0 0
## 11982 2 0 0
## 11983 2 0 0
## 11984 2 0 0
## 11985 2 0 0
## 11986 2 0 0
## 11987 2 0 0
## 11988 1 0 0
## 11989 2 0 0
## 11990 2 0 0
## 11991 2 0 0
## 11992 2 0 0
## 11993 2 0 0
## 11994 2 0 0
## 11995 2 0 0
## 11996 2 0 0
## 11997 2 0 0
## 11998 2 2 0
## 11999 2 2 0
## 12000 2 0 0
## 12001 2 0 0
## 12002 2 0 0
## 12003 3 1 0
## 12004 2 0 0
## 12005 2 0 0
## 12006 2 2 0
## 12007 1 0 0
## 12008 2 2 0
## 12009 2 0 0
## 12010 2 0 0
## 12011 2 0 0
## 12012 2 0 0
## 12013 2 0 0
## 12014 2 0 0
## 12015 2 0 0
## 12016 2 0 0
## 12017 2 2 0
## 12018 2 2 0
## 12019 2 2 0
## 12020 2 0 0
## 12021 2 0 0
## 12022 2 1 0
## 12023 2 1 0
## 12024 2 0 0
## 12025 2 0 0
## 12026 2 0 0
## 12027 2 0 0
## 12028 1 1 0
## 12029 1 1 0
## 12030 2 0 0
## 12031 2 0 0
## 12032 2 0 0
## 12033 2 0 0
## 12034 2 0 0
## 12035 2 0 0
## 12036 2 0 0
## 12037 2 0 0
## 12038 2 0 0
## 12039 2 0 0
## 12040 2 0 0
## 12041 2 2 0
## 12042 1 0 0
## 12043 2 0 0
## 12044 2 0 0
## 12045 2 2 0
## 12046 2 0 0
## 12047 2 2 0
## 12048 2 2 0
## 12049 2 0 0
## 12050 2 0 0
## 12051 2 0 0
## 12052 2 0 0
## 12053 2 0 0
## 12054 2 0 0
## 12055 2 0 0
## 12056 2 0 0
## 12057 2 0 0
## 12058 2 0 0
## 12059 1 0 0
## 12060 2 0 0
## 12061 2 0 0
## 12062 1 0 0
## 12063 2 0 0
## 12064 2 0 0
## 12065 2 0 0
## 12066 2 0 0
## 12067 2 0 0
## 12068 2 0 0
## 12069 2 0 0
## 12070 2 0 0
## 12071 2 0 0
## 12072 2 0 0
## 12073 2 0 0
## 12074 2 0 0
## 12075 1 1 0
## 12076 2 0 0
## 12077 2 0 0
## 12078 2 1 0
## 12079 2 0 0
## 12080 2 0 0
## 12081 2 0 0
## 12082 2 0 0
## 12083 1 0 0
## 12084 2 0 0
## 12085 2 0 0
## 12086 2 0 0
## 12087 2 0 0
## 12088 2 1 0
## 12089 3 1 0
## 12090 2 0 0
## 12091 2 0 0
## 12092 2 0 0
## 12093 2 0 0
## 12094 2 2 0
## 12095 2 0 0
## 12096 2 0 0
## 12097 2 2 0
## 12098 2 0 0
## 12099 2 2 0
## 12100 2 0 0
## 12101 2 0 0
## 12102 2 0 0
## 12103 2 2 0
## 12104 2 0 0
## 12105 2 2 0
## 12106 2 0 0
## 12107 2 0 0
## 12108 1 2 0
## 12109 2 0 0
## 12110 1 0 0
## 12111 1 0 0
## 12112 2 2 0
## 12113 2 0 0
## 12114 2 0 0
## 12115 2 2 0
## 12116 3 1 0
## 12117 2 0 0
## 12118 2 0 0
## 12119 2 0 0
## 12120 2 0 0
## 12121 2 2 0
## 12122 2 0 0
## 12123 2 0 0
## 12124 2 0 0
## 12125 2 0 0
## 12126 2 0 0
## 12127 2 0 0
## 12128 2 0 0
## 12129 2 0 0
## 12130 2 2 0
## 12131 2 0 0
## 12132 3 0 0
## 12133 1 1 0
## 12134 2 0 0
## 12135 1 0 0
## 12136 3 0 0
## 12137 2 0 0
## 12138 2 0 0
## 12139 3 0 0
## 12140 1 0 0
## 12141 2 0 0
## 12142 2 0 0
## 12143 2 0 0
## 12144 2 1 0
## 12145 2 0 0
## 12146 2 0 0
## 12147 2 0 0
## 12148 2 0 0
## 12149 2 2 0
## 12150 2 0 0
## 12151 2 0 0
## 12152 1 0 0
## 12153 2 0 0
## 12154 2 2 0
## 12155 2 0 0
## 12156 2 1 0
## 12157 2 0 0
## 12158 3 0 0
## 12159 2 0 0
## 12160 2 0 0
## 12161 2 0 0
## 12162 1 0 0
## 12163 2 0 0
## 12164 2 0 0
## 12165 2 0 0
## 12166 2 0 0
## 12167 2 1 0
## 12168 3 0 0
## 12169 2 2 0
## 12170 2 0 0
## 12171 2 0 0
## 12172 2 2 0
## 12173 2 0 0
## 12174 2 0 0
## 12175 2 0 0
## 12176 2 0 0
## 12177 2 0 0
## 12178 2 0 0
## 12179 2 0 0
## 12180 2 0 0
## 12181 2 0 0
## 12182 2 0 0
## 12183 2 0 0
## 12184 2 0 0
## 12185 1 0 0
## 12186 1 0 0
## 12187 2 0 0
## 12188 2 0 0
## 12189 2 0 0
## 12190 2 2 0
## 12191 2 0 0
## 12192 2 0 0
## 12193 3 0 0
## 12194 2 0 0
## 12195 2 0 0
## 12196 2 2 0
## 12197 2 0 0
## 12198 2 1 0
## 12199 2 1 0
## 12200 2 2 0
## 12201 2 2 0
## 12202 2 0 0
## 12203 3 1 0
## 12204 2 0 0
## 12205 2 2 0
## 12206 2 0 0
## 12207 2 0 0
## 12208 2 2 0
## 12209 2 2 0
## 12210 2 0 0
## 12211 2 0 0
## 12212 2 0 0
## 12213 2 2 0
## 12214 2 0 0
## 12215 2 0 0
## 12216 2 2 0
## 12217 1 0 0
## 12218 2 0 0
## 12219 2 0 0
## 12220 2 0 0
## 12221 2 0 0
## 12222 2 2 0
## 12223 2 0 0
## 12224 2 0 0
## 12225 2 0 0
## 12226 2 0 0
## 12227 2 0 0
## 12228 2 0 0
## 12229 2 1 0
## 12230 2 0 0
## 12231 2 2 0
## 12232 2 0 0
## 12233 2 1 0
## 12234 2 0 0
## 12235 2 0 0
## 12236 2 1 0
## 12237 2 2 0
## 12238 2 0 0
## 12239 2 0 0
## 12240 2 0 0
## 12241 2 1 0
## 12242 2 0 0
## 12243 3 0 0
## 12244 2 0 0
## 12245 2 0 0
## 12246 2 0 0
## 12247 2 0 0
## 12248 2 0 0
## 12249 2 1 0
## 12250 2 1 0
## 12251 2 0 0
## 12252 2 1 0
## 12253 2 0 0
## 12254 2 0 0
## 12255 2 0 0
## 12256 2 0 0
## 12257 2 0 0
## 12258 2 2 0
## 12259 2 0 0
## 12260 3 1 0
## 12261 2 0 0
## 12262 2 1 0
## 12263 2 0 0
## 12264 2 0 0
## 12265 2 0 0
## 12266 2 0 0
## 12267 2 0 0
## 12268 2 0 0
## 12269 2 0 0
## 12270 2 1 0
## 12271 2 2 0
## 12272 1 0 0
## 12273 2 0 0
## 12274 2 0 0
## 12275 2 0 0
## 12276 2 2 0
## 12277 2 0 0
## 12278 2 0 0
## 12279 2 0 0
## 12280 2 2 0
## 12281 2 2 0
## 12282 2 0 0
## 12283 2 0 0
## 12284 2 0 0
## 12285 2 0 0
## 12286 1 0 0
## 12287 2 0 0
## 12288 1 0 0
## 12289 2 0 0
## 12290 2 0 0
## 12291 2 0 0
## 12292 2 0 0
## 12293 2 0 0
## 12294 2 0 0
## 12295 3 0 0
## 12296 2 0 0
## 12297 2 0 0
## 12298 2 0 0
## 12299 2 0 0
## 12300 2 0 0
## 12301 2 2 0
## 12302 2 0 0
## 12303 2 2 0
## 12304 2 0 0
## 12305 2 0 0
## 12306 2 0 0
## 12307 2 0 0
## 12308 2 2 0
## 12309 2 0 0
## 12310 2 0 0
## 12311 2 2 0
## 12312 2 0 0
## 12313 2 0 0
## 12314 2 0 0
## 12315 2 0 0
## 12316 3 1 0
## 12317 2 0 0
## 12318 2 2 0
## 12319 3 0 0
## 12320 2 0 0
## 12321 3 0 0
## 12322 2 1 0
## 12323 2 0 0
## 12324 2 0 0
## 12325 3 0 0
## 12326 2 1 0
## 12327 2 1 0
## 12328 2 0 0
## 12329 2 1 0
## 12330 2 1 0
## 12331 2 0 0
## 12332 2 1 0
## 12333 2 0 0
## 12334 2 0 0
## 12335 2 0 0
## 12336 2 0 0
## 12337 2 0 0
## 12338 2 0 0
## 12339 2 0 0
## 12340 2 0 0
## 12341 2 0 0
## 12342 2 0 0
## 12343 2 2 0
## 12344 2 0 0
## 12345 2 0 0
## 12346 2 2 0
## 12347 1 0 0
## 12348 2 0 0
## 12349 2 0 0
## 12350 2 2 0
## 12351 2 0 0
## 12352 1 2 0
## 12353 2 2 0
## 12354 2 0 0
## 12355 2 0 0
## 12356 2 2 0
## 12357 2 0 0
## 12358 2 2 0
## 12359 2 2 0
## 12360 2 2 0
## 12361 2 2 0
## 12362 2 0 0
## 12363 2 1 0
## 12364 2 0 0
## 12365 2 0 0
## 12366 2 0 0
## 12367 2 0 0
## 12368 2 2 0
## 12369 2 0 0
## 12370 2 0 0
## 12371 2 0 0
## 12372 2 0 0
## 12373 2 2 0
## 12374 2 2 0
## 12375 2 0 0
## 12376 2 0 0
## 12377 2 0 0
## 12378 2 1 0
## 12379 2 0 0
## 12380 2 0 0
## 12381 2 0 0
## 12382 3 1 0
## 12383 2 0 0
## 12384 2 0 0
## 12385 2 0 0
## 12386 2 2 0
## 12387 2 2 0
## 12388 2 0 0
## 12389 2 2 0
## 12390 2 0 0
## 12391 3 1 0
## 12392 2 1 0
## 12393 3 1 0
## 12394 2 2 0
## 12395 3 1 0
## 12396 3 1 0
## 12397 2 0 0
## 12398 2 0 0
## 12399 2 2 0
## 12400 2 0 0
## 12401 3 1 0
## 12402 2 2 0
## 12403 3 1 0
## 12404 2 0 0
## 12405 2 0 0
## 12406 2 2 0
## 12407 3 1 0
## 12408 2 0 0
## 12409 2 0 0
## 12410 2 0 0
## 12411 2 0 0
## 12412 2 0 0
## 12413 2 0 0
## 12414 2 0 0
## 12415 2 2 0
## 12416 1 0 0
## 12417 1 0 0
## 12418 1 0 0
## 12419 2 0 0
## 12420 2 0 0
## 12421 2 0 0
## 12422 3 1 0
## 12423 2 0 0
## 12424 2 0 0
## 12425 2 0 0
## 12426 2 0 0
## 12427 2 0 0
## 12428 2 0 0
## 12429 2 0 0
## 12430 2 2 0
## 12431 2 2 0
## 12432 2 0 0
## 12433 2 1 0
## 12434 2 0 0
## 12435 1 2 0
## 12436 2 0 0
## 12437 2 0 0
## 12438 2 0 0
## 12439 2 0 0
## 12440 2 0 0
## 12441 3 0 0
## 12442 2 0 0
## 12443 2 0 0
## 12444 2 2 0
## 12445 2 0 0
## 12446 2 2 0
## 12447 2 2 0
## 12448 2 0 0
## 12449 2 0 0
## 12450 2 0 0
## 12451 2 0 0
## 12452 2 0 0
## 12453 2 0 0
## 12454 2 0 0
## 12455 2 0 0
## 12456 3 0 0
## 12457 2 0 0
## 12458 2 0 0
## 12459 2 0 0
## 12460 2 0 0
## 12461 3 1 0
## 12462 2 0 0
## 12463 2 0 0
## 12464 2 2 0
## 12465 2 2 0
## 12466 2 1 0
## 12467 2 0 0
## 12468 2 0 0
## 12469 2 0 0
## 12470 2 2 0
## 12471 3 0 0
## 12472 3 0 0
## 12473 2 0 0
## 12474 2 0 0
## 12475 2 2 0
## 12476 3 0 0
## 12477 2 0 0
## 12478 1 0 0
## 12479 3 1 0
## 12480 2 2 0
## 12481 2 2 0
## 12482 2 2 0
## 12483 2 0 0
## 12484 2 0 0
## 12485 2 0 0
## 12486 2 0 0
## 12487 3 1 0
## 12488 2 0 0
## 12489 2 0 0
## 12490 2 0 0
## 12491 2 0 0
## 12492 2 0 0
## 12493 2 0 0
## 12494 2 0 0
## 12495 2 0 0
## 12496 2 2 0
## 12497 3 1 0
## 12498 2 0 0
## 12499 2 0 0
## 12500 2 0 0
## 12501 2 0 0
## 12502 2 0 0
## 12503 2 0 0
## 12504 2 0 0
## 12505 2 0 0
## 12506 2 0 0
## 12507 2 0 0
## 12508 2 0 0
## 12509 2 1 0
## 12510 2 0 0
## 12511 1 0 0
## 12512 2 2 0
## 12513 1 0 0
## 12514 2 0 0
## 12515 2 0 0
## 12516 2 0 0
## 12517 2 0 0
## 12518 2 0 0
## 12519 2 0 0
## 12520 2 0 0
## 12521 2 0 0
## 12522 2 0 0
## 12523 2 0 0
## 12524 2 0 0
## 12525 2 1 0
## 12526 2 1 0
## 12527 2 0 0
## 12528 2 2 0
## 12529 2 0 0
## 12530 2 0 0
## 12531 2 0 0
## 12532 2 2 0
## 12533 1 0 0
## 12534 2 0 0
## 12535 2 0 0
## 12536 2 1 0
## 12537 2 0 0
## 12538 2 0 0
## 12539 2 0 0
## 12540 2 2 0
## 12541 2 0 0
## 12542 2 0 0
## 12543 2 0 0
## 12544 2 0 0
## 12545 2 0 0
## 12546 2 2 0
## 12547 2 2 0
## 12548 2 0 0
## 12549 2 0 0
## 12550 2 0 0
## 12551 2 0 0
## 12552 1 0 0
## 12553 1 0 0
## 12554 1 0 0
## 12555 2 0 0
## 12556 1 0 0
## 12557 2 0 0
## 12558 2 0 0
## 12559 2 0 0
## 12560 2 0 0
## 12561 2 0 0
## 12562 2 0 0
## 12563 2 0 0
## 12564 2 0 0
## 12565 2 0 0
## 12566 2 0 0
## 12567 2 2 0
## 12568 2 0 0
## 12569 2 0 0
## 12570 2 2 0
## 12571 2 1 0
## 12572 3 1 0
## 12573 2 0 0
## 12574 3 0 0
## 12575 2 0 0
## 12576 2 1 0
## 12577 2 0 0
## 12578 2 0 0
## 12579 2 0 0
## 12580 2 1 0
## 12581 2 2 0
## 12582 1 0 0
## 12583 2 0 0
## 12584 3 0 0
## 12585 2 0 0
## 12586 2 0 0
## 12587 3 0 0
## 12588 2 0 0
## 12589 2 2 0
## 12590 2 0 0
## 12591 2 0 0
## 12592 2 0 0
## 12593 2 0 0
## 12594 2 0 0
## 12595 2 0 0
## 12596 2 0 0
## 12597 2 2 0
## 12598 2 0 0
## 12599 2 0 0
## 12600 2 0 0
## 12601 2 0 0
## 12602 2 0 0
## 12603 2 0 0
## 12604 2 0 0
## 12605 2 0 0
## 12606 3 0 0
## 12607 2 0 0
## 12608 2 0 0
## 12609 2 2 0
## 12610 2 0 0
## 12611 1 0 0
## 12612 2 1 0
## 12613 2 0 0
## 12614 2 0 0
## 12615 2 0 0
## 12616 2 0 0
## 12617 2 2 0
## 12618 2 2 0
## 12619 2 0 0
## 12620 2 0 0
## 12621 2 0 0
## 12622 2 1 0
## 12623 2 0 0
## 12624 2 0 0
## 12625 2 0 0
## 12626 2 0 0
## 12627 2 0 0
## 12628 2 1 0
## 12629 2 1 0
## 12630 2 0 0
## 12631 2 1 0
## 12632 2 2 0
## 12633 2 0 0
## 12634 2 0 0
## 12635 2 2 0
## 12636 1 0 0
## 12637 2 1 0
## 12638 2 2 0
## 12639 2 0 0
## 12640 2 0 0
## 12641 2 0 0
## 12642 2 0 0
## 12643 2 0 0
## 12644 2 0 0
## 12645 2 0 0
## 12646 2 2 0
## 12647 3 0 0
## 12648 2 2 0
## 12649 3 0 0
## 12650 2 1 0
## 12651 2 1 0
## 12652 2 0 0
## 12653 2 0 0
## 12654 2 0 0
## 12655 2 0 0
## 12656 2 2 0
## 12657 2 0 0
## 12658 1 0 0
## 12659 2 2 0
## 12660 2 0 0
## 12661 2 0 0
## 12662 2 0 0
## 12663 2 0 0
## 12664 2 0 0
## 12665 2 0 0
## 12666 2 0 0
## 12667 2 0 0
## 12668 1 0 0
## 12669 2 0 0
## 12670 2 0 0
## 12671 2 0 0
## 12672 2 0 0
## 12673 2 0 0
## 12674 2 0 0
## 12675 2 0 0
## 12676 2 1 0
## 12677 2 0 0
## 12678 2 0 0
## 12679 1 0 0
## 12680 2 0 0
## 12681 2 1 0
## 12682 2 1 0
## 12683 2 0 0
## 12684 2 0 0
## 12685 2 0 0
## 12686 2 0 0
## 12687 2 0 0
## 12688 2 0 0
## 12689 2 0 0
## 12690 2 0 0
## 12691 2 0 0
## 12692 3 1 0
## 12693 2 0 0
## 12694 2 0 0
## 12695 2 0 0
## 12696 2 0 0
## 12697 2 2 0
## 12698 3 0 0
## 12699 2 0 0
## 12700 2 0 0
## 12701 2 0 0
## 12702 3 0 0
## 12703 2 0 0
## 12704 1 2 0
## 12705 2 0 0
## 12706 2 1 0
## 12707 2 0 0
## 12708 2 0 0
## 12709 2 0 0
## 12710 2 0 0
## 12711 2 0 0
## 12712 3 0 0
## 12713 2 0 0
## 12714 2 0 0
## 12715 2 0 0
## 12716 2 2 0
## 12717 2 0 0
## 12718 2 0 0
## 12719 2 1 0
## 12720 2 0 0
## 12721 2 0 0
## 12722 2 0 0
## 12723 3 0 0
## 12724 3 0 0
## 12725 2 2 0
## 12726 2 0 0
## 12727 2 0 0
## 12728 3 1 0
## 12729 2 2 0
## 12730 2 0 0
## 12731 2 0 0
## 12732 2 2 0
## 12733 2 0 0
## 12734 2 2 0
## 12735 2 0 0
## 12736 2 0 0
## 12737 2 0 0
## 12738 2 0 0
## 12739 2 0 0
## 12740 2 0 0
## 12741 2 0 0
## 12742 3 0 0
## 12743 2 0 0
## 12744 2 0 0
## 12745 2 0 0
## 12746 2 0 0
## 12747 2 2 0
## 12748 3 0 0
## 12749 2 0 0
## 12750 2 2 0
## 12751 2 0 0
## 12752 1 0 0
## 12753 2 2 0
## 12754 2 0 0
## 12755 2 0 0
## 12756 2 0 0
## 12757 2 0 0
## 12758 3 1 0
## 12759 3 1 0
## 12760 2 1 0
## 12761 2 0 0
## 12762 2 0 0
## 12763 2 2 0
## 12764 3 0 0
## 12765 2 0 0
## 12766 2 0 0
## 12767 2 0 0
## 12768 2 0 0
## 12769 2 0 0
## 12770 2 0 0
## 12771 2 0 0
## 12772 3 1 0
## 12773 2 0 0
## 12774 2 0 0
## 12775 2 2 0
## 12776 2 0 0
## 12777 2 0 0
## 12778 2 0 0
## 12779 2 0 0
## 12780 1 0 0
## 12781 2 0 0
## 12782 2 0 0
## 12783 2 0 0
## 12784 2 2 0
## 12785 2 0 0
## 12786 2 2 0
## 12787 2 0 0
## 12788 2 2 0
## 12789 2 0 0
## 12790 2 0 0
## 12791 2 0 0
## 12792 2 0 0
## 12793 2 0 0
## 12794 2 0 0
## 12795 2 0 0
## 12796 2 2 0
## 12797 2 2 0
## 12798 2 0 0
## 12799 2 0 0
## 12800 2 0 0
## 12801 2 0 0
## 12802 2 0 0
## 12803 3 0 0
## 12804 2 0 0
## 12805 1 0 0
## 12806 1 0 0
## 12807 1 0 0
## 12808 2 0 0
## 12809 2 1 0
## 12810 2 0 0
## 12811 2 0 0
## 12812 2 1 0
## 12813 2 1 0
## 12814 2 1 0
## 12815 3 0 0
## 12816 2 1 0
## 12817 1 2 0
## 12818 2 0 0
## 12819 2 0 0
## 12820 2 0 0
## 12821 2 0 0
## 12822 3 0 0
## 12823 2 0 0
## 12824 2 0 0
## 12825 2 0 0
## 12826 1 2 0
## 12827 2 1 0
## 12828 1 2 0
## 12829 2 1 0
## 12830 2 0 0
## 12831 1 0 0
## 12832 2 0 0
## 12833 2 0 0
## 12834 2 0 0
## 12835 2 2 0
## 12836 2 0 0
## 12837 1 0 0
## 12838 2 0 0
## 12839 1 2 0
## 12840 2 0 0
## 12841 2 0 0
## 12842 2 0 0
## 12843 1 0 0
## 12844 2 0 0
## 12845 2 2 0
## 12846 2 0 0
## 12847 2 0 0
## 12848 2 0 0
## 12849 2 2 0
## 12850 2 0 0
## 12851 2 0 0
## 12852 2 0 0
## 12853 2 0 0
## 12854 2 0 0
## 12855 2 0 0
## 12856 2 2 0
## 12857 2 2 0
## 12858 2 0 0
## 12859 2 0 0
## 12860 2 0 0
## 12861 2 0 0
## 12862 4 0 0
## 12863 2 0 0
## 12864 2 0 0
## 12865 2 1 0
## 12866 3 0 0
## 12867 2 2 0
## 12868 2 0 0
## 12869 2 0 0
## 12870 2 0 0
## 12871 2 0 0
## 12872 2 0 0
## 12873 4 0 0
## 12874 2 0 0
## 12875 2 0 0
## 12876 2 0 0
## 12877 2 0 0
## 12878 3 1 0
## 12879 2 0 0
## 12880 2 0 0
## 12881 2 0 0
## 12882 2 0 0
## 12883 2 2 0
## 12884 3 1 0
## 12885 2 0 0
## 12886 2 0 0
## 12887 2 0 0
## 12888 2 2 0
## 12889 2 0 0
## 12890 2 1 0
## 12891 2 1 0
## 12892 2 1 0
## 12893 3 1 0
## 12894 3 1 0
## 12895 2 2 0
## 12896 2 0 0
## 12897 2 0 0
## 12898 2 0 0
## 12899 2 0 0
## 12900 2 0 0
## 12901 2 0 0
## 12902 2 2 0
## 12903 2 0 0
## 12904 2 0 0
## 12905 2 0 0
## 12906 2 2 0
## 12907 2 0 0
## 12908 2 0 0
## 12909 2 2 0
## 12910 2 2 0
## 12911 3 0 0
## 12912 3 0 0
## 12913 2 2 0
## 12914 2 2 0
## 12915 2 0 0
## 12916 2 0 0
## 12917 2 1 0
## 12918 2 0 0
## 12919 2 0 0
## 12920 2 0 0
## 12921 2 0 0
## 12922 2 0 0
## 12923 2 2 0
## 12924 2 0 0
## 12925 2 0 0
## 12926 2 0 0
## 12927 2 0 0
## 12928 3 1 0
## 12929 2 0 0
## 12930 2 0 0
## 12931 2 0 0
## 12932 2 0 0
## 12933 1 0 0
## 12934 2 0 0
## 12935 2 0 0
## 12936 1 0 0
## 12937 2 0 0
## 12938 2 2 0
## 12939 2 1 0
## 12940 2 0 0
## 12941 2 1 0
## 12942 2 0 0
## 12943 2 0 0
## 12944 2 0 0
## 12945 2 0 0
## 12946 2 0 0
## 12947 2 0 0
## 12948 2 0 0
## 12949 2 0 0
## 12950 2 2 0
## 12951 2 0 0
## 12952 2 0 0
## 12953 2 1 0
## 12954 3 0 0
## 12955 2 0 0
## 12956 2 0 0
## 12957 2 0 0
## 12958 2 2 0
## 12959 2 0 0
## 12960 2 1 0
## 12961 2 0 0
## 12962 2 0 0
## 12963 1 0 0
## 12964 2 0 0
## 12965 2 0 0
## 12966 2 0 0
## 12967 2 0 0
## 12968 2 0 0
## 12969 3 0 0
## 12970 2 0 0
## 12971 2 0 0
## 12972 2 0 0
## 12973 2 0 0
## 12974 2 2 0
## 12975 3 1 0
## 12976 3 0 0
## 12977 2 0 0
## 12978 2 0 0
## 12979 2 2 0
## 12980 2 0 0
## 12981 2 1 0
## 12982 2 2 0
## 12983 3 0 0
## 12984 2 0 0
## 12985 2 0 0
## 12986 2 0 0
## 12987 2 0 0
## 12988 2 0 0
## 12989 2 2 0
## 12990 2 2 0
## 12991 2 2 0
## 12992 2 2 0
## 12993 2 1 0
## 12994 2 1 0
## 12995 2 0 0
## 12996 2 0 0
## 12997 2 1 0
## 12998 2 1 0
## 12999 2 0 0
## 13000 2 0 0
## 13001 3 0 0
## 13002 2 0 0
## 13003 2 0 0
## 13004 2 0 0
## 13005 2 0 0
## 13006 2 0 0
## 13007 2 0 0
## 13008 2 0 0
## 13009 2 0 0
## 13010 2 0 0
## 13011 2 0 0
## 13012 2 0 0
## 13013 2 0 0
## 13014 2 0 0
## 13015 2 0 0
## 13016 2 0 0
## 13017 2 1 0
## 13018 2 0 0
## 13019 2 0 0
## 13020 2 0 0
## 13021 2 2 0
## 13022 2 0 0
## 13023 2 0 0
## 13024 2 0 0
## 13025 2 0 0
## 13026 2 0 0
## 13027 2 0 0
## 13028 2 0 0
## 13029 2 0 0
## 13030 2 0 0
## 13031 2 0 0
## 13032 2 0 0
## 13033 2 0 0
## 13034 2 0 0
## 13035 1 0 0
## 13036 2 0 0
## 13037 2 0 0
## 13038 2 0 0
## 13039 3 0 0
## 13040 2 0 0
## 13041 2 2 0
## 13042 2 0 0
## 13043 2 1 0
## 13044 1 0 0
## 13045 2 2 0
## 13046 2 1 0
## 13047 3 0 0
## 13048 2 2 0
## 13049 2 0 0
## 13050 2 2 0
## 13051 2 0 0
## 13052 2 0 0
## 13053 2 0 0
## 13054 2 0 0
## 13055 2 0 0
## 13056 2 0 0
## 13057 2 0 0
## 13058 2 2 0
## 13059 1 0 0
## 13060 2 2 0
## 13061 2 0 0
## 13062 2 0 0
## 13063 2 0 0
## 13064 2 0 0
## 13065 2 2 0
## 13066 1 1 0
## 13067 2 0 0
## 13068 2 0 0
## 13069 2 1 0
## 13070 2 0 0
## 13071 2 2 0
## 13072 2 1 0
## 13073 2 2 0
## 13074 2 0 0
## 13075 2 1 0
## 13076 2 2 0
## 13077 2 0 0
## 13078 2 0 0
## 13079 2 0 0
## 13080 3 1 0
## 13081 2 0 0
## 13082 2 0 0
## 13083 2 0 0
## 13084 2 1 0
## 13085 2 0 0
## 13086 2 0 0
## 13087 2 0 0
## 13088 2 0 0
## 13089 2 0 0
## 13090 2 1 0
## 13091 2 0 0
## 13092 2 0 0
## 13093 2 2 0
## 13094 2 0 0
## 13095 2 0 0
## 13096 2 0 0
## 13097 2 0 0
## 13098 2 0 0
## 13099 2 0 0
## 13100 2 0 0
## 13101 2 0 0
## 13102 2 0 0
## 13103 2 0 0
## 13104 2 0 0
## 13105 2 1 0
## 13106 2 0 0
## 13107 2 0 0
## 13108 2 0 0
## 13109 3 0 0
## 13110 2 0 0
## 13111 2 0 0
## 13112 2 0 0
## 13113 2 0 0
## 13114 3 0 0
## 13115 2 0 0
## 13116 2 1 0
## 13117 3 0 0
## 13118 3 1 0
## 13119 2 0 0
## 13120 2 2 0
## 13121 2 0 0
## 13122 2 0 0
## 13123 2 0 0
## 13124 2 0 0
## 13125 2 2 0
## 13126 2 0 0
## 13127 2 1 0
## 13128 2 0 0
## 13129 2 0 0
## 13130 2 2 0
## 13131 2 0 0
## 13132 2 0 0
## 13133 2 0 0
## 13134 2 0 0
## 13135 2 0 0
## 13136 2 0 0
## 13137 2 0 0
## 13138 2 0 0
## 13139 2 1 0
## 13140 2 0 0
## 13141 2 0 0
## 13142 2 0 0
## 13143 3 0 0
## 13144 2 0 0
## 13145 2 0 0
## 13146 2 0 0
## 13147 2 0 0
## 13148 2 0 0
## 13149 2 0 0
## 13150 2 1 0
## 13151 2 2 0
## 13152 2 0 0
## 13153 2 2 0
## 13154 2 0 0
## 13155 2 2 0
## 13156 2 0 0
## 13157 2 0 0
## 13158 2 0 0
## 13159 2 1 0
## 13160 2 0 0
## 13161 2 0 0
## 13162 3 1 0
## 13163 2 0 0
## 13164 2 0 0
## 13165 2 0 0
## 13166 2 0 0
## 13167 2 0 0
## 13168 2 0 0
## 13169 2 1 0
## 13170 2 0 0
## 13171 2 1 0
## 13172 2 0 0
## 13173 2 2 0
## 13174 2 1 0
## 13175 2 0 0
## 13176 1 0 0
## 13177 2 0 0
## 13178 2 0 0
## 13179 2 0 0
## 13180 2 0 0
## 13181 2 2 0
## 13182 2 0 0
## 13183 1 0 0
## 13184 2 2 0
## 13185 1 0 0
## 13186 2 1 0
## 13187 2 0 0
## 13188 2 0 0
## 13189 2 0 0
## 13190 1 0 0
## 13191 2 0 0
## 13192 2 1 0
## 13193 2 0 0
## 13194 2 1 0
## 13195 2 0 0
## 13196 2 2 0
## 13197 2 0 0
## 13198 2 0 0
## 13199 2 0 0
## 13200 1 0 0
## 13201 1 0 0
## 13202 1 0 0
## 13203 1 0 0
## 13204 2 2 0
## 13205 1 0 0
## 13206 2 0 0
## 13207 2 0 0
## 13208 2 0 0
## 13209 2 0 0
## 13210 2 0 0
## 13211 2 2 0
## 13212 3 1 0
## 13213 2 0 0
## 13214 2 2 0
## 13215 2 0 0
## 13216 2 0 0
## 13217 2 2 0
## 13218 2 0 0
## 13219 2 1 0
## 13220 2 0 0
## 13221 2 0 0
## 13222 2 0 0
## 13223 2 0 0
## 13224 2 0 0
## 13225 2 0 0
## 13226 2 1 0
## 13227 2 0 0
## 13228 2 0 0
## 13229 2 0 0
## 13230 2 0 0
## 13231 2 0 0
## 13232 2 0 0
## 13233 2 0 0
## 13234 2 0 0
## 13235 2 0 0
## 13236 2 0 0
## 13237 2 2 0
## 13238 2 0 0
## 13239 2 0 0
## 13240 3 1 0
## 13241 2 0 0
## 13242 2 0 0
## 13243 2 0 0
## 13244 2 1 0
## 13245 2 0 0
## 13246 2 0 0
## 13247 2 0 0
## 13248 2 0 0
## 13249 2 0 0
## 13250 2 0 0
## 13251 3 1 0
## 13252 2 0 0
## 13253 2 1 0
## 13254 2 0 0
## 13255 2 0 0
## 13256 2 0 0
## 13257 2 0 0
## 13258 3 1 0
## 13259 2 0 0
## 13260 2 0 0
## 13261 2 0 0
## 13262 2 0 0
## 13263 1 0 0
## 13264 2 0 0
## 13265 2 1 0
## 13266 2 1 0
## 13267 2 0 0
## 13268 2 2 0
## 13269 2 1 0
## 13270 3 0 0
## 13271 2 0 0
## 13272 2 0 0
## 13273 3 1 0
## 13274 2 2 0
## 13275 3 0 0
## 13276 2 2 0
## 13277 2 0 0
## 13278 2 2 0
## 13279 2 0 0
## 13280 2 0 0
## 13281 2 0 0
## 13282 2 0 0
## 13283 2 2 0
## 13284 2 0 0
## 13285 2 0 0
## 13286 1 0 0
## 13287 2 0 0
## 13288 2 0 0
## 13289 2 2 0
## 13290 3 0 0
## 13291 2 1 0
## 13292 2 0 0
## 13293 2 0 0
## 13294 2 0 0
## 13295 2 0 0
## 13296 2 0 0
## 13297 2 0 0
## 13298 2 2 0
## 13299 2 0 0
## 13300 2 0 0
## 13301 2 0 0
## 13302 3 1 0
## 13303 2 0 0
## 13304 2 0 0
## 13305 2 0 0
## 13306 1 0 0
## 13307 1 0 0
## 13308 2 0 0
## 13309 2 0 0
## 13310 2 1 0
## 13311 2 0 0
## 13312 2 0 0
## 13313 2 2 0
## 13314 1 0 0
## 13315 2 0 0
## 13316 1 0 0
## 13317 2 0 0
## 13318 1 0 0
## 13319 2 0 0
## 13320 3 0 0
## 13321 2 2 0
## 13322 2 0 0
## 13323 2 0 0
## 13324 2 2 0
## 13325 2 2 0
## 13326 1 2 0
## 13327 2 0 0
## 13328 2 2 0
## 13329 2 0 0
## 13330 2 0 0
## 13331 2 0 0
## 13332 2 0 0
## 13333 2 0 0
## 13334 2 0 0
## 13335 2 0 0
## 13336 2 0 0
## 13337 2 0 0
## 13338 2 0 0
## 13339 2 0 0
## 13340 2 0 0
## 13341 2 0 0
## 13342 3 1 0
## 13343 2 1 0
## 13344 2 1 0
## 13345 2 1 0
## 13346 2 2 0
## 13347 2 0 0
## 13348 2 1 0
## 13349 2 0 0
## 13350 2 0 0
## 13351 2 2 0
## 13352 2 0 0
## 13353 2 0 0
## 13354 2 0 0
## 13355 2 0 0
## 13356 2 0 0
## 13357 2 0 0
## 13358 2 0 0
## 13359 2 0 0
## 13360 2 0 0
## 13361 2 0 0
## 13362 2 0 0
## 13363 2 0 0
## 13364 2 0 0
## 13365 2 2 0
## 13366 2 1 0
## 13367 2 1 0
## 13368 2 0 0
## 13369 2 0 0
## 13370 2 0 0
## 13371 2 0 0
## 13372 2 0 0
## 13373 3 0 0
## 13374 2 2 0
## 13375 2 0 0
## 13376 2 0 0
## 13377 2 1 0
## 13378 2 0 0
## 13379 2 0 0
## 13380 2 0 0
## 13381 2 0 0
## 13382 2 0 0
## 13383 2 0 0
## 13384 2 0 0
## 13385 2 0 0
## 13386 2 0 0
## 13387 3 1 0
## 13388 2 0 0
## 13389 2 2 0
## 13390 2 0 0
## 13391 2 0 0
## 13392 2 0 0
## 13393 2 0 0
## 13394 2 0 0
## 13395 2 0 0
## 13396 2 0 0
## 13397 1 0 0
## 13398 2 0 0
## 13399 2 0 0
## 13400 3 0 0
## 13401 2 0 0
## 13402 3 0 0
## 13403 2 2 0
## 13404 2 2 0
## 13405 2 2 0
## 13406 2 0 0
## 13407 2 0 0
## 13408 2 0 0
## 13409 2 1 0
## 13410 2 0 0
## 13411 2 0 0
## 13412 2 0 0
## 13413 2 0 0
## 13414 2 0 0
## 13415 2 0 0
## 13416 3 1 0
## 13417 2 0 0
## 13418 2 0 0
## 13419 2 0 0
## 13420 2 0 0
## 13421 2 0 0
## 13422 2 1 0
## 13423 2 0 0
## 13424 2 0 0
## 13425 2 0 0
## 13426 2 0 0
## 13427 2 0 0
## 13428 2 2 0
## 13429 2 0 0
## 13430 2 0 0
## 13431 2 0 0
## 13432 3 1 0
## 13433 2 0 0
## 13434 2 0 0
## 13435 2 2 0
## 13436 3 1 0
## 13437 2 0 0
## 13438 2 2 0
## 13439 2 0 0
## 13440 2 1 0
## 13441 2 0 0
## 13442 2 0 0
## 13443 3 0 0
## 13444 2 0 0
## 13445 2 0 0
## 13446 2 1 0
## 13447 2 0 0
## 13448 3 0 0
## 13449 2 1 0
## 13450 2 2 0
## 13451 2 0 0
## 13452 2 2 0
## 13453 2 2 0
## 13454 2 0 0
## 13455 2 2 0
## 13456 2 0 0
## 13457 2 0 0
## 13458 2 0 0
## 13459 2 2 0
## 13460 2 0 0
## 13461 2 0 0
## 13462 2 0 0
## 13463 2 0 0
## 13464 2 0 0
## 13465 2 0 0
## 13466 2 0 0
## 13467 1 1 0
## 13468 2 0 0
## 13469 2 0 0
## 13470 2 0 0
## 13471 3 0 0
## 13472 2 0 0
## 13473 2 0 0
## 13474 2 0 0
## 13475 2 0 0
## 13476 2 0 0
## 13477 2 0 0
## 13478 2 0 0
## 13479 2 0 0
## 13480 2 0 0
## 13481 2 0 0
## 13482 2 0 0
## 13483 2 0 0
## 13484 2 0 0
## 13485 2 0 0
## 13486 2 0 0
## 13487 2 0 0
## 13488 2 0 0
## 13489 2 2 0
## 13490 2 0 0
## 13491 2 0 0
## 13492 2 0 0
## 13493 3 0 0
## 13494 2 0 0
## 13495 2 1 0
## 13496 3 0 0
## 13497 3 0 0
## 13498 2 1 0
## 13499 2 0 0
## 13500 1 0 0
## 13501 2 0 0
## 13502 2 0 0
## 13503 2 2 0
## 13504 2 2 0
## 13505 2 2 0
## 13506 2 0 0
## 13507 1 0 0
## 13508 2 2 0
## 13509 2 0 0
## 13510 2 0 0
## 13511 2 0 0
## 13512 2 0 0
## 13513 2 2 0
## 13514 3 0 0
## 13515 3 1 0
## 13516 2 0 0
## 13517 3 0 0
## 13518 2 0 0
## 13519 2 0 0
## 13520 2 2 0
## 13521 2 2 0
## 13522 2 0 0
## 13523 2 2 0
## 13524 2 0 0
## 13525 2 0 0
## 13526 2 2 0
## 13527 2 0 0
## 13528 2 0 0
## 13529 2 2 0
## 13530 2 0 0
## 13531 2 1 0
## 13532 2 2 0
## 13533 2 0 0
## 13534 1 0 0
## 13535 2 2 0
## 13536 3 0 0
## 13537 2 0 0
## 13538 2 2 0
## 13539 2 2 0
## 13540 1 0 0
## 13541 2 0 0
## 13542 2 1 0
## 13543 2 0 0
## 13544 2 0 0
## 13545 2 1 0
## 13546 2 0 0
## 13547 2 0 0
## 13548 2 0 0
## 13549 2 2 0
## 13550 2 2 0
## 13551 2 0 0
## 13552 2 1 0
## 13553 2 0 0
## 13554 2 0 0
## 13555 2 1 0
## 13556 2 0 0
## 13557 2 2 0
## 13558 1 2 0
## 13559 1 1 0
## 13560 1 0 0
## 13561 2 0 0
## 13562 2 0 0
## 13563 2 0 0
## 13564 2 0 0
## 13565 3 0 0
## 13566 2 0 0
## 13567 2 0 0
## 13568 2 0 0
## 13569 2 0 0
## 13570 2 0 0
## 13571 2 0 0
## 13572 2 0 0
## 13573 2 0 0
## 13574 2 0 0
## 13575 2 0 0
## 13576 1 0 0
## 13577 3 0 0
## 13578 2 0 0
## 13579 2 0 0
## 13580 2 0 0
## 13581 2 0 0
## 13582 2 0 0
## 13583 2 2 0
## 13584 2 0 0
## 13585 2 0 0
## 13586 2 0 0
## 13587 2 0 0
## 13588 2 2 0
## 13589 2 0 0
## 13590 2 0 0
## 13591 3 0 0
## 13592 2 0 0
## 13593 2 2 0
## 13594 3 0 0
## 13595 2 0 0
## 13596 3 0 0
## 13597 2 0 0
## 13598 3 0 0
## 13599 2 0 0
## 13600 2 0 0
## 13601 2 0 0
## 13602 2 0 0
## 13603 3 1 0
## 13604 2 0 0
## 13605 2 0 0
## 13606 2 0 0
## 13607 2 0 0
## 13608 2 0 0
## 13609 2 0 0
## 13610 2 0 0
## 13611 2 0 0
## 13612 3 0 0
## 13613 2 2 0
## 13614 2 1 0
## 13615 2 0 0
## 13616 2 2 0
## 13617 2 0 0
## 13618 2 0 0
## 13619 2 0 0
## 13620 2 0 0
## 13621 2 0 0
## 13622 2 0 0
## 13623 2 0 0
## 13624 2 2 0
## 13625 2 0 0
## 13626 2 2 0
## 13627 2 0 0
## 13628 2 2 0
## 13629 2 0 0
## 13630 2 0 0
## 13631 3 0 0
## 13632 1 0 0
## 13633 2 1 0
## 13634 2 0 0
## 13635 2 0 0
## 13636 2 0 0
## 13637 2 0 0
## 13638 2 0 0
## 13639 2 0 0
## 13640 2 2 0
## 13641 2 1 0
## 13642 2 0 0
## 13643 2 0 0
## 13644 2 0 0
## 13645 2 2 0
## 13646 1 0 0
## 13647 1 0 0
## 13648 1 0 0
## 13649 1 0 0
## 13650 1 0 0
## 13651 1 0 0
## 13652 1 0 0
## 13653 2 0 0
## 13654 2 0 0
## 13655 1 0 0
## 13656 1 0 0
## 13657 1 0 0
## 13658 1 0 0
## 13659 1 0 0
## 13660 1 0 0
## 13661 1 0 0
## 13662 1 0 0
## 13663 1 0 0
## 13664 1 0 0
## 13665 1 0 0
## 13666 1 0 0
## 13667 1 0 0
## 13668 1 0 0
## 13669 1 0 0
## 13670 2 0 0
## 13671 1 0 0
## 13672 1 0 0
## 13673 1 0 0
## 13674 1 0 0
## 13675 1 0 0
## 13676 1 0 0
## 13677 1 0 0
## 13678 1 0 0
## 13679 1 0 0
## 13680 1 0 0
## 13681 2 1 0
## 13682 3 0 0
## 13683 1 0 0
## 13684 1 0 0
## 13685 2 0 0
## 13686 1 0 0
## 13687 2 0 0
## 13688 2 0 0
## 13689 1 0 0
## 13690 1 0 0
## 13691 2 0 0
## 13692 2 0 0
## 13693 2 0 0
## 13694 2 0 0
## 13695 2 0 0
## 13696 1 0 0
## 13697 1 0 0
## 13698 1 0 0
## 13699 1 0 0
## 13700 1 0 0
## 13701 1 0 0
## 13702 2 0 0
## 13703 2 0 0
## 13704 2 0 0
## 13705 2 1 0
## 13706 2 0 0
## 13707 2 0 0
## 13708 1 0 0
## 13709 1 0 0
## 13710 1 0 0
## 13711 1 0 0
## 13712 1 0 0
## 13713 1 0 0
## 13714 2 0 0
## 13715 1 0 0
## 13716 1 0 0
## 13717 1 0 0
## 13718 1 0 0
## 13719 1 0 0
## 13720 1 0 0
## 13721 1 0 0
## 13722 2 0 0
## 13723 1 0 0
## 13724 1 0 0
## 13725 2 0 0
## 13726 2 0 0
## 13727 2 0 0
## 13728 1 0 0
## 13729 1 0 0
## 13730 2 0 0
## 13731 1 0 0
## 13732 1 0 0
## 13733 1 0 0
## 13734 2 0 0
## 13735 2 0 0
## 13736 1 0 0
## 13737 1 0 0
## 13738 1 0 0
## 13739 1 0 0
## 13740 1 0 0
## 13741 1 0 0
## 13742 1 0 0
## 13743 2 0 0
## 13744 1 0 0
## 13745 1 0 0
## 13746 1 0 0
## 13747 1 0 0
## 13748 2 0 0
## 13749 1 0 0
## 13750 1 0 0
## 13751 2 0 0
## 13752 2 0 0
## 13753 2 0 0
## 13754 2 1 0
## 13755 1 0 0
## 13756 1 0 0
## 13757 1 0 0
## 13758 1 0 0
## 13759 1 0 0
## 13760 1 0 0
## 13761 1 0 0
## 13762 1 0 0
## 13763 1 0 0
## 13764 1 0 0
## 13765 1 0 0
## 13766 1 0 0
## 13767 1 0 0
## 13768 1 0 0
## 13769 1 0 0
## 13770 2 0 0
## 13771 1 0 0
## 13772 1 0 0
## 13773 2 0 0
## 13774 2 0 0
## 13775 2 0 0
## 13776 2 0 0
## 13777 2 0 0
## 13778 2 0 0
## 13779 2 1 0
## 13780 1 0 0
## 13781 2 0 0
## 13782 1 0 0
## 13783 1 0 0
## 13784 1 0 0
## 13785 1 0 0
## 13786 2 0 0
## 13787 1 0 0
## 13788 1 0 0
## 13789 1 0 0
## 13790 1 0 0
## 13791 1 0 0
## 13792 1 0 0
## 13793 2 0 0
## 13794 2 0 0
## 13795 1 0 0
## 13796 1 0 0
## 13797 1 0 0
## 13798 1 0 0
## 13799 1 0 0
## 13800 1 0 0
## 13801 1 0 0
## 13802 1 0 0
## 13803 2 0 0
## 13804 1 0 0
## 13805 1 0 0
## 13806 1 0 0
## 13807 1 0 0
## 13808 1 0 0
## 13809 2 0 0
## 13810 2 0 0
## 13811 2 0 0
## 13812 2 0 0
## 13813 1 0 0
## 13814 2 0 0
## 13815 1 0 0
## 13816 1 0 0
## 13817 1 0 0
## 13818 1 0 0
## 13819 1 0 0
## 13820 1 0 0
## 13821 1 0 0
## 13822 1 0 0
## 13823 1 0 0
## 13824 1 0 0
## 13825 1 0 0
## 13826 1 0 0
## 13827 1 0 0
## 13828 1 0 0
## 13829 1 0 0
## 13830 2 0 0
## 13831 1 0 0
## 13832 1 0 0
## 13833 1 0 0
## 13834 2 0 0
## 13835 2 1 0
## 13836 2 0 0
## 13837 2 0 0
## 13838 2 2 0
## 13839 3 0 0
## 13840 1 0 0
## 13841 1 0 0
## 13842 1 0 0
## 13843 1 0 0
## 13844 1 0 0
## 13845 1 0 0
## 13846 1 0 0
## 13847 1 0 0
## 13848 1 0 0
## 13849 2 0 0
## 13850 2 0 0
## 13851 1 0 0
## 13852 1 0 0
## 13853 1 0 0
## 13854 1 0 0
## 13855 1 0 0
## 13856 1 0 0
## 13857 1 0 0
## 13858 1 0 0
## 13859 1 0 0
## 13860 1 0 0
## 13861 1 0 0
## 13862 1 0 0
## 13863 1 0 0
## 13864 1 0 0
## 13865 1 0 0
## 13866 1 0 0
## 13867 1 0 0
## 13868 1 0 0
## 13869 1 0 0
## 13870 1 0 0
## 13871 1 0 0
## 13872 1 0 0
## 13873 1 0 0
## 13874 1 0 0
## 13875 1 0 0
## 13876 1 0 0
## 13877 1 0 0
## 13878 1 0 0
## 13879 1 0 0
## 13880 1 0 0
## 13881 1 0 0
## 13882 1 0 0
## 13883 1 0 0
## 13884 1 0 0
## 13885 1 0 0
## 13886 1 0 0
## 13887 1 0 0
## 13888 1 0 0
## 13889 1 0 0
## 13890 2 0 0
## 13891 2 0 0
## 13892 2 0 0
## 13893 1 0 0
## 13894 1 0 0
## 13895 1 0 0
## 13896 1 0 0
## 13897 1 0 0
## 13898 1 0 0
## 13899 1 0 0
## 13900 1 0 0
## 13901 2 0 0
## 13902 2 0 0
## 13903 2 0 0
## 13904 2 0 0
## 13905 2 0 0
## 13906 2 0 0
## 13907 1 0 0
## 13908 1 0 0
## 13909 1 0 0
## 13910 2 0 0
## 13911 1 0 0
## 13912 1 0 0
## 13913 2 0 0
## 13914 2 0 0
## 13915 2 0 0
## 13916 2 0 0
## 13917 2 0 0
## 13918 2 0 0
## 13919 1 0 0
## 13920 2 0 0
## 13921 2 0 0
## 13922 2 0 0
## 13923 2 0 0
## 13924 1 0 0
## 13925 1 0 0
## 13926 2 0 0
## 13927 1 0 0
## 13928 1 0 0
## 13929 1 0 0
## 13930 2 0 0
## 13931 2 0 0
## 13932 1 0 0
## 13933 1 0 0
## 13934 1 0 0
## 13935 2 0 0
## 13936 2 0 0
## 13937 2 0 0
## 13938 2 0 0
## 13939 2 0 0
## 13940 2 0 0
## 13941 2 0 0
## 13942 2 1 0
## 13943 2 1 0
## 13944 2 1 0
## 13945 2 1 0
## 13946 2 0 0
## 13947 2 0 0
## 13948 1 0 0
## 13949 1 0 0
## 13950 2 0 0
## 13951 2 0 0
## 13952 2 0 0
## 13953 2 0 0
## 13954 1 0 0
## 13955 2 0 0
## 13956 1 0 0
## 13957 1 0 0
## 13958 2 0 0
## 13959 3 0 0
## 13960 3 0 0
## 13961 1 0 0
## 13962 2 0 0
## 13963 1 0 0
## 13964 1 0 0
## 13965 1 0 0
## 13966 1 0 0
## 13967 1 0 0
## 13968 2 0 0
## 13969 2 0 0
## 13970 1 0 0
## 13971 1 0 0
## 13972 2 0 0
## 13973 2 0 0
## 13974 2 0 0
## 13975 2 0 0
## 13976 2 0 0
## 13977 1 0 0
## 13978 1 0 0
## 13979 2 0 0
## 13980 1 0 0
## 13981 1 0 0
## 13982 1 0 0
## 13983 1 0 0
## 13984 1 0 0
## 13985 1 0 0
## 13986 1 0 0
## 13987 1 0 0
## 13988 1 0 0
## 13989 1 0 0
## 13990 2 0 0
## 13991 2 0 0
## 13992 2 0 0
## 13993 1 0 0
## 13994 2 0 0
## 13995 1 0 0
## 13996 1 0 0
## 13997 1 0 0
## 13998 1 0 0
## 13999 1 0 0
## 14000 1 0 0
## 14001 1 0 0
## 14002 1 0 0
## 14003 1 0 0
## 14004 2 0 0
## 14005 1 0 0
## 14006 2 0 0
## 14007 3 0 0
## 14008 2 0 0
## 14009 2 0 0
## 14010 1 0 0
## 14011 1 0 0
## 14012 1 0 0
## 14013 1 0 0
## 14014 1 0 0
## 14015 1 0 0
## 14016 1 0 0
## 14017 1 0 0
## 14018 2 0 0
## 14019 1 0 0
## 14020 1 0 0
## 14021 1 0 0
## 14022 1 0 0
## 14023 1 0 0
## 14024 2 0 0
## 14025 2 0 0
## 14026 2 0 0
## 14027 2 0 0
## 14028 2 0 0
## 14029 2 0 0
## 14030 2 0 0
## 14031 2 0 0
## 14032 2 0 0
## 14033 2 0 0
## 14034 2 0 0
## 14035 2 0 0
## 14036 1 0 0
## 14037 1 0 0
## 14038 1 0 0
## 14039 1 0 0
## 14040 1 0 0
## 14041 1 0 0
## 14042 1 0 0
## 14043 1 0 0
## 14044 1 0 0
## 14045 1 0 0
## 14046 1 0 0
## 14047 1 0 0
## 14048 2 0 0
## 14049 1 0 0
## 14050 1 0 0
## 14051 1 0 0
## 14052 1 0 0
## 14053 2 0 0
## 14054 2 0 0
## 14055 2 0 0
## 14056 1 0 0
## 14057 1 0 0
## 14058 1 0 0
## 14059 1 0 0
## 14060 1 0 0
## 14061 1 0 0
## 14062 1 0 0
## 14063 2 0 0
## 14064 1 0 0
## 14065 1 0 0
## 14066 2 0 0
## 14067 2 0 0
## 14068 2 0 0
## 14069 1 0 0
## 14070 1 0 0
## 14071 1 0 0
## 14072 1 0 0
## 14073 1 0 0
## 14074 1 0 0
## 14075 1 0 0
## 14076 1 0 0
## 14077 1 0 0
## 14078 1 0 0
## 14079 1 0 0
## 14080 1 0 0
## 14081 1 0 0
## 14082 1 0 0
## 14083 1 0 0
## 14084 1 0 0
## 14085 1 0 0
## 14086 1 0 0
## 14087 1 0 0
## 14088 1 0 0
## 14089 2 0 0
## 14090 1 0 0
## 14091 1 0 0
## 14092 1 0 0
## 14093 1 0 0
## 14094 1 0 0
## 14095 2 0 0
## 14096 2 0 0
## 14097 2 0 0
## 14098 2 0 0
## 14099 2 0 0
## 14100 1 0 0
## 14101 2 0 0
## 14102 1 0 0
## 14103 1 0 0
## 14104 1 0 0
## 14105 1 0 0
## 14106 1 0 0
## 14107 1 0 0
## 14108 1 0 0
## 14109 2 0 0
## 14110 1 0 0
## 14111 1 0 0
## 14112 1 0 0
## 14113 1 0 0
## 14114 1 0 0
## 14115 2 0 0
## 14116 1 0 0
## 14117 2 1 0
## 14118 3 0 0
## 14119 2 0 0
## 14120 2 0 0
## 14121 2 0 0
## 14122 2 0 0
## 14123 2 0 0
## 14124 2 0 0
## 14125 2 0 0
## 14126 1 0 0
## 14127 2 0 0
## 14128 1 0 0
## 14129 1 0 0
## 14130 1 0 0
## 14131 1 0 0
## 14132 1 0 0
## 14133 1 0 0
## 14134 1 0 0
## 14135 1 0 0
## 14136 2 0 0
## 14137 1 0 0
## 14138 2 1 0
## 14139 1 0 0
## 14140 1 0 0
## 14141 1 0 0
## 14142 1 0 0
## 14143 1 0 0
## 14144 1 0 0
## 14145 1 0 0
## 14146 1 0 0
## 14147 2 0 0
## 14148 2 0 0
## 14149 1 0 0
## 14150 1 0 0
## 14151 1 0 0
## 14152 1 0 0
## 14153 1 0 0
## 14154 1 0 0
## 14155 1 0 0
## 14156 1 0 0
## 14157 1 0 0
## 14158 2 0 0
## 14159 2 0 0
## 14160 1 0 0
## 14161 1 0 0
## 14162 1 0 0
## 14163 1 0 0
## 14164 1 0 0
## 14165 1 0 0
## 14166 2 0 0
## 14167 1 0 0
## 14168 1 0 0
## 14169 1 0 0
## 14170 2 0 0
## 14171 2 0 0
## 14172 2 0 0
## 14173 2 0 0
## 14174 3 0 0
## 14175 2 0 0
## 14176 2 0 0
## 14177 2 0 0
## 14178 2 0 0
## 14179 1 0 0
## 14180 1 0 0
## 14181 2 0 0
## 14182 1 0 0
## 14183 1 0 0
## 14184 1 0 0
## 14185 1 0 0
## 14186 1 0 0
## 14187 1 0 0
## 14188 2 1 0
## 14189 1 0 0
## 14190 1 0 0
## 14191 2 0 0
## 14192 2 1 0
## 14193 1 0 0
## 14194 2 0 0
## 14195 1 0 0
## 14196 1 0 0
## 14197 1 0 0
## 14198 1 0 0
## 14199 2 0 0
## 14200 1 0 0
## 14201 1 0 0
## 14202 2 0 0
## 14203 1 0 0
## 14204 2 0 0
## 14205 1 0 0
## 14206 1 0 0
## 14207 2 0 0
## 14208 2 0 0
## 14209 2 0 0
## 14210 2 0 0
## 14211 2 0 0
## 14212 2 0 0
## 14213 2 0 0
## 14214 1 0 0
## 14215 1 0 0
## 14216 1 0 0
## 14217 1 0 0
## 14218 1 0 0
## 14219 2 0 0
## 14220 1 0 0
## 14221 2 0 0
## 14222 1 0 0
## 14223 2 0 0
## 14224 2 0 0
## 14225 2 0 0
## 14226 1 0 0
## 14227 1 0 0
## 14228 2 0 0
## 14229 1 0 0
## 14230 1 0 0
## 14231 1 0 0
## 14232 1 0 0
## 14233 1 0 0
## 14234 2 0 0
## 14235 2 0 0
## 14236 1 0 0
## 14237 2 0 0
## 14238 2 0 0
## 14239 3 0 0
## 14240 2 0 0
## 14241 1 0 0
## 14242 2 0 0
## 14243 3 0 0
## 14244 2 0 0
## 14245 2 2 0
## 14246 2 0 0
## 14247 3 0 0
## 14248 2 1 0
## 14249 2 1 0
## 14250 2 0 0
## 14251 2 0 0
## 14252 2 0 0
## 14253 2 0 0
## 14254 2 1 0
## 14255 2 0 0
## 14256 1 0 0
## 14257 2 0 0
## 14258 2 0 0
## 14259 1 0 0
## 14260 1 0 0
## 14261 1 0 0
## 14262 2 0 0
## 14263 2 0 0
## 14264 2 0 0
## 14265 1 0 0
## 14266 1 0 0
## 14267 1 0 0
## 14268 1 0 0
## 14269 1 0 0
## 14270 1 0 0
## 14271 1 0 0
## 14272 1 0 0
## 14273 1 0 0
## 14274 1 0 0
## 14275 1 0 0
## 14276 3 0 0
## 14277 2 0 0
## 14278 2 0 0
## 14279 1 0 0
## 14280 1 0 0
## 14281 1 0 0
## 14282 1 0 0
## 14283 2 0 0
## 14284 1 0 0
## 14285 1 0 0
## 14286 2 0 0
## 14287 1 0 0
## 14288 2 0 0
## 14289 1 0 0
## 14290 2 0 0
## 14291 1 0 0
## 14292 1 0 0
## 14293 1 0 0
## 14294 1 0 0
## 14295 1 0 0
## 14296 1 0 0
## 14297 1 0 0
## 14298 1 0 0
## 14299 1 0 0
## 14300 1 0 0
## 14301 2 0 0
## 14302 2 0 0
## 14303 2 0 0
## 14304 1 0 0
## 14305 2 0 0
## 14306 1 0 0
## 14307 1 0 0
## 14308 2 0 0
## 14309 2 0 0
## 14310 1 0 0
## 14311 2 0 0
## 14312 2 0 0
## 14313 2 0 0
## 14314 2 0 0
## 14315 2 0 0
## 14316 2 0 0
## 14317 1 0 0
## 14318 1 0 0
## 14319 1 0 0
## 14320 1 0 0
## 14321 1 0 0
## 14322 1 0 0
## 14323 1 0 0
## 14324 1 0 0
## 14325 1 0 0
## 14326 1 0 0
## 14327 1 0 0
## 14328 1 0 0
## 14329 1 0 0
## 14330 1 0 0
## 14331 1 0 0
## 14332 1 0 0
## 14333 1 0 0
## 14334 1 0 0
## 14335 1 0 0
## 14336 1 0 0
## 14337 1 0 0
## 14338 1 0 0
## 14339 1 0 0
## 14340 1 0 0
## 14341 1 0 0
## 14342 1 0 0
## 14343 2 0 0
## 14344 2 0 0
## 14345 1 0 0
## 14346 1 0 0
## 14347 2 0 0
## 14348 1 0 0
## 14349 1 0 0
## 14350 1 0 0
## 14351 1 0 0
## 14352 1 0 0
## 14353 2 0 0
## 14354 2 0 0
## 14355 1 0 0
## 14356 1 0 0
## 14357 1 0 0
## 14358 1 0 0
## 14359 1 0 0
## 14360 1 0 0
## 14361 1 0 0
## 14362 1 0 0
## 14363 2 0 0
## 14364 2 0 0
## 14365 2 0 0
## 14366 2 0 0
## 14367 2 0 0
## 14368 2 0 0
## 14369 1 0 0
## 14370 2 1 0
## 14371 1 0 0
## 14372 1 0 0
## 14373 1 0 0
## 14374 1 0 0
## 14375 2 0 0
## 14376 2 0 0
## 14377 1 0 0
## 14378 1 0 0
## 14379 1 0 0
## 14380 1 0 0
## 14381 1 0 0
## 14382 1 0 0
## 14383 2 0 0
## 14384 2 0 0
## 14385 2 0 0
## 14386 2 0 0
## 14387 1 0 0
## 14388 1 0 0
## 14389 1 0 0
## 14390 1 0 0
## 14391 1 0 0
## 14392 1 0 0
## 14393 1 0 0
## 14394 1 0 0
## 14395 1 0 0
## 14396 2 0 0
## 14397 2 0 0
## 14398 2 0 0
## 14399 2 2 0
## 14400 2 2 0
## 14401 1 0 0
## 14402 2 0 0
## 14403 2 0 0
## 14404 2 0 0
## 14405 2 0 0
## 14406 2 0 0
## 14407 2 0 0
## 14408 2 2 0
## 14409 2 0 0
## 14410 3 0 0
## 14411 3 0 0
## 14412 1 0 0
## 14413 2 0 0
## 14414 2 0 0
## 14415 2 0 0
## 14416 1 0 0
## 14417 1 0 0
## 14418 2 0 0
## 14419 2 0 0
## 14420 1 0 0
## 14421 1 0 0
## 14422 2 0 0
## 14423 2 0 0
## 14424 2 0 0
## 14425 2 0 0
## 14426 2 0 0
## 14427 2 1 0
## 14428 2 0 0
## 14429 2 0 0
## 14430 1 0 0
## 14431 2 0 0
## 14432 2 0 0
## 14433 2 0 0
## 14434 1 0 0
## 14435 1 0 0
## 14436 2 1 0
## 14437 2 0 0
## 14438 3 0 0
## 14439 2 0 0
## 14440 2 0 0
## 14441 1 0 0
## 14442 2 0 0
## 14443 1 0 0
## 14444 2 0 0
## 14445 2 0 0
## 14446 2 0 0
## 14447 2 0 0
## 14448 2 0 0
## 14449 2 0 0
## 14450 1 0 0
## 14451 1 0 0
## 14452 1 0 0
## 14453 2 0 0
## 14454 2 0 0
## 14455 2 0 0
## 14456 2 1 0
## 14457 2 1 0
## 14458 2 0 0
## 14459 2 1 0
## 14460 2 2 0
## 14461 2 1 0
## 14462 2 0 0
## 14463 2 0 0
## 14464 2 0 0
## 14465 2 0 0
## 14466 1 0 0
## 14467 1 0 0
## 14468 2 0 0
## 14469 2 0 0
## 14470 2 0 0
## 14471 2 1 0
## 14472 2 0 0
## 14473 2 0 0
## 14474 1 0 0
## 14475 2 0 0
## 14476 2 0 0
## 14477 2 0 0
## 14478 1 0 0
## 14479 1 0 0
## 14480 1 0 0
## 14481 1 0 0
## 14482 1 0 0
## 14483 1 0 0
## 14484 1 0 0
## 14485 2 0 0
## 14486 2 0 0
## 14487 2 0 0
## 14488 2 0 0
## 14489 2 0 0
## 14490 1 0 0
## 14491 2 0 0
## 14492 1 0 0
## 14493 2 0 0
## 14494 1 0 0
## 14495 1 0 0
## 14496 1 0 0
## 14497 2 0 0
## 14498 2 0 0
## 14499 2 0 0
## 14500 2 0 0
## 14501 2 0 0
## 14502 1 0 0
## 14503 2 0 0
## 14504 2 0 0
## 14505 1 0 0
## 14506 1 0 0
## 14507 1 0 0
## 14508 1 0 0
## 14509 1 0 0
## 14510 1 0 0
## 14511 1 0 0
## 14512 1 0 0
## 14513 2 0 0
## 14514 2 0 0
## 14515 2 0 0
## 14516 1 0 0
## 14517 1 0 0
## 14518 1 0 0
## 14519 1 0 0
## 14520 1 0 0
## 14521 2 0 0
## 14522 2 0 0
## 14523 2 0 0
## 14524 2 0 0
## 14525 2 0 0
## 14526 2 0 0
## 14527 2 0 0
## 14528 2 0 0
## 14529 2 0 0
## 14530 2 0 0
## 14531 2 0 0
## 14532 2 0 0
## 14533 2 0 0
## 14534 2 0 0
## 14535 2 0 0
## 14536 2 0 0
## 14537 2 0 0
## 14538 2 0 0
## 14539 2 0 0
## 14540 2 0 0
## 14541 2 0 0
## 14542 2 0 0
## 14543 2 0 0
## 14544 2 0 0
## 14545 2 0 0
## 14546 2 0 0
## 14547 2 0 0
## 14548 2 0 0
## 14549 2 0 0
## 14550 2 0 0
## 14551 2 0 0
## 14552 2 0 0
## 14553 2 0 0
## 14554 2 0 0
## 14555 2 0 0
## 14556 2 0 0
## 14557 2 0 0
## 14558 2 0 0
## 14559 2 0 0
## 14560 2 0 0
## 14561 2 0 0
## 14562 2 0 0
## 14563 2 0 0
## 14564 2 0 0
## 14565 2 0 0
## 14566 2 0 0
## 14567 2 0 0
## 14568 2 0 0
## 14569 2 0 0
## 14570 2 0 0
## 14571 2 0 0
## 14572 2 0 0
## 14573 1 0 0
## 14574 1 0 0
## 14575 1 0 0
## 14576 1 0 0
## 14577 1 0 0
## 14578 1 0 0
## 14579 1 0 0
## 14580 1 0 0
## 14581 1 0 0
## 14582 1 0 0
## 14583 1 0 0
## 14584 1 0 0
## 14585 1 0 0
## 14586 1 0 0
## 14587 1 0 0
## 14588 1 0 0
## 14589 1 0 0
## 14590 1 0 0
## 14591 1 0 0
## 14592 1 0 0
## 14593 1 0 0
## 14594 1 0 0
## 14595 1 0 0
## 14596 1 0 0
## 14597 1 0 0
## 14598 1 0 0
## 14599 1 0 0
## 14600 1 0 0
## 14601 1 0 0
## 14602 1 0 0
## 14603 1 0 0
## 14604 1 0 0
## 14605 1 0 0
## 14606 1 0 0
## 14607 1 0 0
## 14608 1 0 0
## 14609 1 0 0
## 14610 1 0 0
## 14611 1 0 0
## 14612 1 0 0
## 14613 2 0 0
## 14614 2 0 0
## 14615 2 0 0
## 14616 2 0 0
## 14617 2 2 0
## 14618 2 0 0
## 14619 2 0 0
## 14620 2 0 0
## 14621 2 0 0
## 14622 2 0 0
## 14623 2 0 0
## 14624 2 0 0
## 14625 2 0 0
## 14626 2 0 0
## 14627 2 0 0
## 14628 2 0 0
## 14629 2 0 0
## 14630 2 0 0
## 14631 2 0 0
## 14632 2 0 0
## 14633 2 0 0
## 14634 2 0 0
## 14635 2 0 0
## 14636 2 0 0
## 14637 2 0 0
## 14638 2 0 0
## 14639 2 0 0
## 14640 2 0 0
## 14641 2 0 0
## 14642 2 0 0
## 14643 2 0 0
## 14644 2 0 0
## 14645 2 0 0
## 14646 3 0 0
## 14647 3 0 0
## 14648 2 0 0
## 14649 2 0 0
## 14650 2 0 0
## 14651 2 0 0
## 14652 2 0 0
## 14653 2 2 0
## 14654 2 0 0
## 14655 2 0 0
## 14656 2 0 0
## 14657 3 0 0
## 14658 2 0 0
## 14659 2 0 0
## 14660 2 0 0
## 14661 3 1 0
## 14662 2 0 0
## 14663 2 0 0
## 14664 2 0 0
## 14665 2 0 0
## 14666 2 0 0
## 14667 2 0 0
## 14668 2 2 0
## 14669 2 0 0
## 14670 2 0 0
## 14671 2 0 0
## 14672 2 0 0
## 14673 2 0 0
## 14674 2 0 0
## 14675 2 0 0
## 14676 2 0 0
## 14677 2 0 0
## 14678 2 0 0
## 14679 2 0 0
## 14680 2 0 0
## 14681 2 0 0
## 14682 2 0 0
## 14683 2 0 0
## 14684 2 0 0
## 14685 2 0 0
## 14686 2 0 0
## 14687 2 0 0
## 14688 2 0 0
## 14689 2 0 0
## 14690 2 0 0
## 14691 2 0 0
## 14692 2 0 0
## 14693 2 0 0
## 14694 2 0 0
## 14695 2 0 0
## 14696 2 0 0
## 14697 2 0 0
## 14698 2 0 0
## 14699 2 0 0
## 14700 2 0 0
## 14701 2 0 0
## 14702 2 0 0
## 14703 2 0 0
## 14704 2 0 0
## 14705 2 0 0
## 14706 2 0 0
## 14707 2 0 0
## 14708 2 0 0
## 14709 2 0 0
## 14710 2 0 0
## 14711 2 0 0
## 14712 2 0 0
## 14713 2 0 0
## 14714 2 0 0
## 14715 2 0 0
## 14716 2 0 0
## 14717 2 2 0
## 14718 2 0 0
## 14719 2 0 0
## 14720 2 0 0
## 14721 1 0 0
## 14722 1 0 0
## 14723 1 0 0
## 14724 2 0 0
## 14725 2 0 0
## 14726 2 0 0
## 14727 2 0 0
## 14728 2 0 0
## 14729 2 0 0
## 14730 2 0 0
## 14731 2 0 0
## 14732 2 0 0
## 14733 2 0 0
## 14734 2 0 0
## 14735 2 0 0
## 14736 2 0 0
## 14737 2 0 0
## 14738 2 0 0
## 14739 2 0 0
## 14740 2 1 0
## 14741 2 0 0
## 14742 2 0 0
## 14743 2 0 0
## 14744 2 0 0
## 14745 2 0 0
## 14746 2 1 0
## 14747 2 0 0
## 14748 2 1 0
## 14749 3 0 0
## 14750 3 0 0
## 14751 3 0 0
## 14752 1 0 0
## 14753 1 0 0
## 14754 1 0 0
## 14755 1 0 0
## 14756 1 0 0
## 14757 1 0 0
## 14758 1 0 0
## 14759 1 0 0
## 14760 1 0 0
## 14761 1 0 0
## 14762 1 0 0
## 14763 1 0 0
## 14764 1 0 0
## 14765 1 0 0
## 14766 2 0 0
## 14767 2 0 0
## 14768 2 0 0
## 14769 1 0 0
## 14770 1 0 0
## 14771 2 0 0
## 14772 2 0 0
## 14773 1 0 0
## 14774 1 0 0
## 14775 1 0 0
## 14776 2 0 0
## 14777 2 0 0
## 14778 2 0 0
## 14779 2 1 0
## 14780 1 0 0
## 14781 1 0 0
## 14782 1 0 0
## 14783 1 0 0
## 14784 2 1 0
## 14785 2 1 0
## 14786 2 0 0
## 14787 1 0 0
## 14788 2 2 0
## 14789 2 0 0
## 14790 2 0 0
## 14791 2 0 0
## 14792 1 0 0
## 14793 1 0 0
## 14794 1 0 0
## 14795 1 0 0
## 14796 1 0 0
## 14797 1 0 0
## 14798 2 0 0
## 14799 2 0 0
## 14800 1 0 0
## 14801 1 0 0
## 14802 2 0 0
## 14803 1 0 0
## 14804 1 0 0
## 14805 2 0 0
## 14806 2 0 0
## 14807 2 0 0
## 14808 1 0 0
## 14809 2 0 0
## 14810 2 0 0
## 14811 2 0 0
## 14812 2 0 0
## 14813 2 0 0
## 14814 2 0 0
## 14815 2 0 0
## 14816 2 0 0
## 14817 2 0 0
## 14818 2 0 0
## 14819 2 0 0
## 14820 2 0 0
## 14821 2 0 0
## 14822 2 0 0
## 14823 2 0 0
## 14824 2 0 0
## 14825 2 0 0
## 14826 2 0 0
## 14827 2 0 0
## 14828 2 0 0
## 14829 2 0 0
## 14830 2 0 0
## 14831 2 0 0
## 14832 2 0 0
## 14833 2 0 0
## 14834 2 0 0
## 14835 2 0 0
## 14836 2 0 0
## 14837 2 0 0
## 14838 2 0 0
## 14839 2 0 0
## 14840 2 0 0
## 14841 2 0 0
## 14842 2 0 0
## 14843 2 0 0
## 14844 2 0 0
## 14845 2 0 0
## 14846 2 0 0
## 14847 2 0 0
## 14848 2 0 0
## 14849 2 0 0
## 14850 2 0 0
## 14851 2 0 0
## 14852 2 0 0
## 14853 2 0 0
## 14854 2 0 0
## 14855 2 0 0
## 14856 2 0 0
## 14857 2 0 0
## 14858 2 0 0
## 14859 1 0 0
## 14860 1 0 0
## 14861 1 0 0
## 14862 1 0 0
## 14863 1 0 0
## 14864 1 0 0
## 14865 1 0 0
## 14866 2 0 0
## 14867 2 0 0
## 14868 2 0 0
## 14869 2 0 0
## 14870 3 0 0
## 14871 2 0 0
## 14872 1 0 0
## 14873 1 0 0
## 14874 1 0 0
## 14875 1 0 0
## 14876 1 0 0
## 14877 2 0 0
## 14878 2 0 0
## 14879 2 0 0
## 14880 2 0 0
## 14881 1 0 0
## 14882 2 0 0
## 14883 2 0 0
## 14884 2 0 0
## 14885 2 2 0
## 14886 1 0 0
## 14887 1 0 0
## 14888 1 0 0
## 14889 1 0 0
## 14890 1 0 0
## 14891 1 0 0
## 14892 1 0 0
## 14893 1 0 0
## 14894 1 0 0
## 14895 1 0 0
## 14896 1 0 0
## 14897 1 0 0
## 14898 2 0 0
## 14899 1 0 0
## 14900 1 0 0
## 14901 2 0 0
## 14902 1 0 0
## 14903 1 0 0
## 14904 1 0 0
## 14905 1 0 0
## 14906 1 0 0
## 14907 1 0 0
## 14908 1 0 0
## 14909 1 0 0
## 14910 1 0 0
## 14911 1 0 0
## 14912 1 0 0
## 14913 1 0 0
## 14914 2 0 0
## 14915 2 0 0
## 14916 1 0 0
## 14917 2 0 0
## 14918 2 0 0
## 14919 2 0 0
## 14920 2 0 0
## 14921 2 0 0
## 14922 2 0 0
## 14923 2 0 0
## 14924 2 0 0
## 14925 1 0 0
## 14926 1 0 0
## 14927 1 0 0
## 14928 1 0 0
## 14929 2 0 0
## 14930 2 0 0
## 14931 1 0 0
## 14932 3 0 0
## 14933 2 0 0
## 14934 2 0 0
## 14935 2 0 0
## 14936 2 0 0
## 14937 2 0 0
## 14938 2 0 0
## 14939 2 0 0
## 14940 2 0 0
## 14941 2 0 0
## 14942 2 0 0
## 14943 2 0 0
## 14944 2 0 0
## 14945 2 0 0
## 14946 2 0 0
## 14947 2 0 0
## 14948 2 0 0
## 14949 2 0 0
## 14950 2 0 0
## 14951 2 0 0
## 14952 2 0 0
## 14953 2 0 0
## 14954 2 0 0
## 14955 2 0 0
## 14956 2 0 0
## 14957 2 0 0
## 14958 2 0 0
## 14959 2 0 0
## 14960 2 0 0
## 14961 2 0 0
## 14962 2 0 0
## 14963 2 0 0
## 14964 2 0 0
## 14965 2 0 0
## 14966 2 0 0
## 14967 2 0 0
## 14968 2 0 0
## 14969 2 0 0
## 14970 2 0 0
## 14971 2 0 0
## 14972 2 0 0
## 14973 2 0 0
## 14974 2 0 0
## 14975 2 0 0
## 14976 2 0 0
## 14977 2 0 0
## 14978 1 0 0
## 14979 2 0 0
## 14980 2 0 0
## 14981 1 0 0
## 14982 1 0 0
## 14983 2 0 0
## 14984 1 0 0
## 14985 1 0 0
## 14986 1 0 0
## 14987 2 1 0
## 14988 2 0 0
## 14989 2 0 0
## 14990 2 0 0
## 14991 2 0 0
## 14992 2 0 0
## 14993 2 0 0
## 14994 2 0 0
## 14995 2 0 0
## 14996 2 0 0
## 14997 2 0 0
## 14998 2 0 0
## 14999 2 0 0
## 15000 2 0 0
## 15001 2 0 0
## 15002 2 0 0
## 15003 2 0 0
## 15004 2 0 0
## 15005 2 0 0
## 15006 2 0 0
## 15007 2 0 0
## 15008 2 0 0
## 15009 2 0 0
## 15010 2 0 0
## 15011 2 0 0
## 15012 2 0 0
## 15013 2 0 0
## 15014 2 0 0
## 15015 2 0 0
## 15016 2 0 0
## 15017 2 0 0
## 15018 2 0 0
## 15019 2 0 0
## 15020 2 0 0
## 15021 2 0 0
## 15022 2 0 0
## 15023 2 0 0
## 15024 2 0 0
## 15025 2 0 0
## 15026 2 0 0
## 15027 2 0 0
## 15028 2 0 0
## 15029 2 0 0
## 15030 2 0 0
## 15031 2 0 0
## 15032 2 0 0
## 15033 2 0 0
## 15034 2 0 0
## 15035 2 0 0
## 15036 2 0 0
## 15037 2 0 0
## 15038 2 0 0
## 15039 2 0 0
## 15040 2 0 0
## 15041 2 0 0
## 15042 2 0 0
## 15043 2 0 0
## 15044 2 0 0
## 15045 2 0 0
## 15046 2 0 0
## 15047 2 0 0
## 15048 2 0 0
## 15049 2 0 0
## 15050 2 0 0
## 15051 2 0 0
## 15052 2 0 0
## 15053 2 0 0
## 15054 2 0 0
## 15055 2 0 0
## 15056 2 0 0
## 15057 2 0 0
## 15058 2 0 0
## 15059 2 0 0
## 15060 2 0 0
## 15061 2 0 0
## 15062 2 0 0
## 15063 2 0 0
## 15064 2 0 0
## 15065 2 0 0
## 15066 2 0 0
## 15067 2 0 0
## 15068 2 0 0
## 15069 1 0 0
## 15070 2 0 0
## 15071 1 0 0
## 15072 2 0 0
## 15073 1 0 0
## 15074 1 0 0
## 15075 1 0 0
## 15076 1 0 0
## 15077 1 0 0
## 15078 1 0 0
## 15079 1 0 0
## 15080 1 0 0
## 15081 1 0 0
## 15082 1 0 0
## 15083 2 0 0
## 15084 2 0 0
## 15085 2 0 0
## 15086 2 0 0
## 15087 2 0 0
## 15088 2 0 0
## 15089 2 0 0
## 15090 2 0 0
## 15091 2 0 0
## 15092 2 0 0
## 15093 1 0 0
## 15094 2 0 0
## 15095 2 1 0
## 15096 1 0 0
## 15097 1 0 0
## 15098 1 0 0
## 15099 1 0 0
## 15100 1 0 0
## 15101 1 0 0
## 15102 1 0 0
## 15103 1 0 0
## 15104 2 0 0
## 15105 1 0 0
## 15106 1 0 0
## 15107 2 0 0
## 15108 1 0 0
## 15109 2 0 0
## 15110 1 0 0
## 15111 1 0 0
## 15112 1 0 0
## 15113 1 0 0
## 15114 1 0 0
## 15115 1 0 0
## 15116 1 0 0
## 15117 1 0 0
## 15118 1 0 0
## 15119 1 0 0
## 15120 1 0 0
## 15121 1 0 0
## 15122 1 0 0
## 15123 1 0 0
## 15124 1 0 0
## 15125 1 0 0
## 15126 2 0 0
## 15127 1 0 0
## 15128 2 0 0
## 15129 1 1 0
## 15130 2 0 0
## 15131 2 0 0
## 15132 2 0 0
## 15133 2 0 0
## 15134 2 0 0
## 15135 2 0 0
## 15136 2 0 0
## 15137 2 0 0
## 15138 2 0 0
## 15139 2 0 0
## 15140 3 0 0
## 15141 3 0 0
## 15142 2 0 0
## 15143 2 2 0
## 15144 3 0 0
## 15145 2 0 0
## 15146 2 0 0
## 15147 2 0 0
## 15148 2 0 0
## 15149 2 0 0
## 15150 2 0 0
## 15151 2 0 0
## 15152 2 0 0
## 15153 2 0 0
## 15154 2 0 0
## 15155 2 0 0
## 15156 2 0 0
## 15157 2 0 0
## 15158 2 0 0
## 15159 2 0 0
## 15160 2 0 0
## 15161 2 0 0
## 15162 2 0 0
## 15163 2 0 0
## 15164 2 0 0
## 15165 2 0 0
## 15166 2 0 0
## 15167 2 0 0
## 15168 2 0 0
## 15169 2 0 0
## 15170 2 0 0
## 15171 2 0 0
## 15172 2 0 0
## 15173 2 0 0
## 15174 2 0 0
## 15175 2 1 0
## 15176 2 0 0
## 15177 2 0 0
## 15178 2 0 0
## 15179 2 0 0
## 15180 2 0 0
## 15181 2 0 0
## 15182 2 0 0
## 15183 2 0 0
## 15184 2 0 0
## 15185 2 0 0
## 15186 2 0 0
## 15187 2 0 0
## 15188 2 0 0
## 15189 2 0 0
## 15190 1 0 0
## 15191 1 0 0
## 15192 2 0 0
## 15193 2 0 0
## 15194 2 0 0
## 15195 2 0 0
## 15196 2 0 0
## 15197 2 0 0
## 15198 1 0 0
## 15199 1 0 0
## 15200 1 0 0
## 15201 1 0 0
## 15202 2 0 0
## 15203 1 0 0
## 15204 1 0 0
## 15205 1 0 0
## 15206 2 0 0
## 15207 2 0 0
## 15208 2 0 0
## 15209 2 0 0
## 15210 3 2 0
## 15211 2 0 0
## 15212 2 0 0
## 15213 1 0 0
## 15214 1 0 0
## 15215 2 0 0
## 15216 2 0 0
## 15217 2 0 0
## 15218 2 2 0
## 15219 2 0 0
## 15220 2 2 0
## 15221 2 1 0
## 15222 2 0 0
## 15223 2 0 0
## 15224 2 0 0
## 15225 2 0 0
## 15226 2 0 0
## 15227 2 0 0
## 15228 2 0 0
## 15229 2 0 0
## 15230 1 0 0
## 15231 2 0 0
## 15232 3 0 0
## 15233 2 0 0
## 15234 2 0 0
## 15235 2 0 0
## 15236 2 0 0
## 15237 2 0 0
## 15238 3 0 0
## 15239 3 0 0
## 15240 3 0 0
## 15241 2 0 0
## 15242 2 0 0
## 15243 3 0 0
## 15244 2 0 0
## 15245 2 0 0
## 15246 2 0 0
## 15247 2 0 0
## 15248 3 0 0
## 15249 3 0 0
## 15250 2 0 0
## 15251 2 0 0
## 15252 2 2 0
## 15253 2 0 0
## 15254 2 1 0
## 15255 2 0 0
## 15256 2 0 0
## 15257 2 0 0
## 15258 2 0 0
## 15259 2 0 0
## 15260 2 0 0
## 15261 2 0 0
## 15262 2 0 0
## 15263 2 0 0
## 15264 3 0 0
## 15265 2 0 0
## 15266 3 0 0
## 15267 2 0 0
## 15268 2 0 0
## 15269 2 0 0
## 15270 2 0 0
## 15271 2 2 0
## 15272 2 0 0
## 15273 1 0 0
## 15274 2 0 0
## 15275 2 1 0
## 15276 2 0 0
## 15277 2 0 0
## 15278 2 0 0
## 15279 2 0 0
## 15280 2 0 0
## 15281 2 0 0
## 15282 2 0 0
## 15283 2 0 0
## 15284 2 0 0
## 15285 2 0 0
## 15286 2 0 0
## 15287 2 0 0
## 15288 2 0 0
## 15289 2 0 0
## 15290 2 0 0
## 15291 2 1 0
## 15292 2 0 0
## 15293 2 0 0
## 15294 2 1 0
## 15295 2 0 0
## 15296 2 0 0
## 15297 2 0 0
## 15298 2 0 0
## 15299 2 0 0
## 15300 2 0 0
## 15301 2 0 0
## 15302 2 0 0
## 15303 2 0 0
## 15304 2 0 0
## 15305 1 0 0
## 15306 2 0 0
## 15307 2 0 0
## 15308 2 0 0
## 15309 3 0 0
## 15310 2 0 0
## 15311 1 0 0
## 15312 2 0 0
## 15313 2 0 0
## 15314 2 0 0
## 15315 2 0 0
## 15316 2 0 0
## 15317 2 0 0
## 15318 3 0 0
## 15319 2 0 0
## 15320 3 0 0
## 15321 2 0 0
## 15322 2 0 0
## 15323 2 0 0
## 15324 2 0 0
## 15325 2 0 0
## 15326 2 0 0
## 15327 2 0 0
## 15328 2 0 0
## 15329 2 0 0
## 15330 2 0 0
## 15331 2 0 0
## 15332 2 0 0
## 15333 2 0 0
## 15334 2 0 0
## 15335 2 2 0
## 15336 2 0 0
## 15337 2 0 0
## 15338 2 0 0
## 15339 2 0 0
## 15340 2 0 0
## 15341 2 0 0
## 15342 2 0 0
## 15343 2 0 0
## 15344 2 1 0
## 15345 2 1 0
## 15346 2 1 0
## 15347 1 0 0
## 15348 3 1 0
## 15349 2 0 0
## 15350 3 0 0
## 15351 2 0 0
## 15352 1 0 0
## 15353 2 0 0
## 15354 2 0 0
## 15355 2 0 0
## 15356 2 0 0
## 15357 2 0 0
## 15358 2 0 0
## 15359 2 0 0
## 15360 2 0 0
## 15361 2 0 0
## 15362 2 0 0
## 15363 2 0 0
## 15364 2 0 0
## 15365 2 0 0
## 15366 2 0 0
## 15367 2 0 0
## 15368 2 2 0
## 15369 2 0 0
## 15370 2 0 0
## 15371 2 0 0
## 15372 2 1 0
## 15373 2 0 0
## 15374 2 0 0
## 15375 2 0 0
## 15376 1 0 0
## 15377 1 0 0
## 15378 1 0 0
## 15379 2 0 0
## 15380 2 0 0
## 15381 2 0 0
## 15382 2 0 0
## 15383 2 0 0
## 15384 2 1 0
## 15385 2 0 0
## 15386 2 0 0
## 15387 2 1 0
## 15388 2 0 0
## 15389 2 0 0
## 15390 2 1 0
## 15391 2 0 0
## 15392 2 0 0
## 15393 2 0 0
## 15394 2 0 0
## 15395 3 0 0
## 15396 2 0 0
## 15397 2 0 0
## 15398 2 0 0
## 15399 2 0 0
## 15400 2 0 0
## 15401 2 0 0
## 15402 2 0 0
## 15403 2 0 0
## 15404 2 0 0
## 15405 2 0 0
## 15406 2 0 0
## 15407 2 0 0
## 15408 1 0 0
## 15409 2 0 0
## 15410 2 1 0
## 15411 2 0 0
## 15412 2 0 0
## 15413 2 0 0
## 15414 2 1 0
## 15415 2 0 0
## 15416 2 0 0
## 15417 1 0 0
## 15418 3 0 0
## 15419 2 0 0
## 15420 2 0 0
## 15421 2 0 0
## 15422 2 1 0
## 15423 2 0 0
## 15424 2 0 0
## 15425 2 0 0
## 15426 2 1 0
## 15427 2 2 0
## 15428 2 0 0
## 15429 2 0 0
## 15430 2 0 0
## 15431 2 0 0
## 15432 1 0 0
## 15433 2 0 0
## 15434 2 0 0
## 15435 2 0 0
## 15436 2 2 0
## 15437 2 0 0
## 15438 2 0 0
## 15439 2 0 0
## 15440 2 2 0
## 15441 2 0 0
## 15442 2 0 0
## 15443 2 1 0
## 15444 2 1 0
## 15445 2 0 0
## 15446 2 0 0
## 15447 2 2 0
## 15448 2 2 0
## 15449 2 0 0
## 15450 2 0 0
## 15451 3 0 0
## 15452 2 0 0
## 15453 2 0 0
## 15454 2 1 0
## 15455 2 0 0
## 15456 2 0 0
## 15457 2 0 0
## 15458 2 0 0
## 15459 2 0 0
## 15460 2 0 0
## 15461 2 0 0
## 15462 2 0 0
## 15463 2 0 0
## 15464 2 0 0
## 15465 2 0 0
## 15466 2 0 0
## 15467 3 0 0
## 15468 2 0 0
## 15469 2 0 0
## 15470 2 0 0
## 15471 2 0 0
## 15472 2 0 0
## 15473 2 0 0
## 15474 2 0 0
## 15475 2 0 0
## 15476 2 0 0
## 15477 2 0 0
## 15478 2 0 0
## 15479 2 0 0
## 15480 2 0 0
## 15481 2 0 0
## 15482 2 0 0
## 15483 2 1 0
## 15484 2 1 0
## 15485 2 0 0
## 15486 2 0 0
## 15487 2 0 0
## 15488 2 0 0
## 15489 2 0 0
## 15490 2 0 0
## 15491 2 0 0
## 15492 2 0 0
## 15493 2 0 0
## 15494 2 0 0
## 15495 2 0 0
## 15496 2 0 0
## 15497 2 0 0
## 15498 2 0 0
## 15499 2 0 0
## 15500 2 0 0
## 15501 2 0 0
## 15502 2 0 0
## 15503 2 0 0
## 15504 2 0 0
## 15505 2 0 0
## 15506 2 0 0
## 15507 2 0 0
## 15508 2 0 0
## 15509 2 0 0
## 15510 1 0 0
## 15511 1 0 0
## 15512 2 0 0
## 15513 2 0 0
## 15514 2 0 0
## 15515 2 0 0
## 15516 3 0 0
## 15517 3 0 0
## 15518 2 1 0
## 15519 2 0 0
## 15520 2 0 0
## 15521 2 0 0
## 15522 2 0 0
## 15523 1 0 0
## 15524 2 0 0
## 15525 2 0 0
## 15526 3 0 0
## 15527 2 1 0
## 15528 2 0 0
## 15529 2 0 0
## 15530 2 0 0
## 15531 2 0 0
## 15532 3 0 0
## 15533 2 1 0
## 15534 2 0 0
## 15535 2 0 0
## 15536 2 0 0
## 15537 2 0 0
## 15538 2 0 0
## 15539 2 0 0
## 15540 2 0 0
## 15541 2 0 0
## 15542 2 0 0
## 15543 2 0 0
## 15544 2 0 0
## 15545 2 0 0
## 15546 2 0 0
## 15547 2 0 0
## 15548 2 0 0
## 15549 2 0 0
## 15550 2 0 0
## 15551 2 0 0
## 15552 2 0 0
## 15553 2 0 0
## 15554 2 0 0
## 15555 2 0 0
## 15556 2 0 0
## 15557 2 0 0
## 15558 2 0 0
## 15559 2 0 0
## 15560 2 0 0
## 15561 2 0 0
## 15562 2 0 0
## 15563 2 0 0
## 15564 2 0 0
## 15565 2 0 0
## 15566 2 0 0
## 15567 2 0 0
## 15568 2 0 0
## 15569 2 0 0
## 15570 2 0 0
## 15571 2 0 0
## 15572 3 0 0
## 15573 2 0 0
## 15574 2 0 0
## 15575 2 0 0
## 15576 2 0 0
## 15577 2 2 0
## 15578 2 0 0
## 15579 2 0 0
## 15580 2 0 0
## 15581 2 0 0
## 15582 2 2 0
## 15583 1 0 0
## 15584 2 0 0
## 15585 3 0 0
## 15586 2 0 0
## 15587 2 0 0
## 15588 2 0 0
## 15589 2 1 0
## 15590 2 0 0
## 15591 2 0 0
## 15592 2 0 0
## 15593 2 0 0
## 15594 2 0 0
## 15595 2 0 0
## 15596 2 0 0
## 15597 2 0 0
## 15598 2 0 0
## 15599 2 0 0
## 15600 2 0 0
## 15601 2 0 0
## 15602 2 0 0
## 15603 2 0 0
## 15604 2 0 0
## 15605 2 0 0
## 15606 2 0 0
## 15607 2 1 0
## 15608 2 2 0
## 15609 2 0 0
## 15610 2 0 0
## 15611 2 0 0
## 15612 2 0 0
## 15613 2 0 0
## 15614 3 0 0
## 15615 2 0 0
## 15616 2 0 0
## 15617 2 0 0
## 15618 2 2 0
## 15619 2 0 0
## 15620 2 0 0
## 15621 2 0 0
## 15622 2 1 0
## 15623 2 0 0
## 15624 2 0 0
## 15625 2 0 0
## 15626 3 0 0
## 15627 2 0 0
## 15628 2 0 0
## 15629 2 0 0
## 15630 2 0 0
## 15631 1 0 0
## 15632 2 0 0
## 15633 2 1 0
## 15634 2 0 0
## 15635 2 0 0
## 15636 2 0 0
## 15637 2 1 0
## 15638 2 1 0
## 15639 2 2 0
## 15640 2 0 0
## 15641 2 0 0
## 15642 2 0 0
## 15643 2 0 0
## 15644 2 0 0
## 15645 2 2 0
## 15646 2 0 0
## 15647 1 0 0
## 15648 2 0 0
## 15649 2 0 0
## 15650 2 0 0
## 15651 2 0 0
## 15652 2 0 0
## 15653 2 0 0
## 15654 2 0 0
## 15655 2 0 0
## 15656 2 0 0
## 15657 2 0 0
## 15658 2 0 0
## 15659 2 0 0
## 15660 2 0 0
## 15661 3 0 0
## 15662 2 0 0
## 15663 2 0 0
## 15664 2 0 0
## 15665 2 0 0
## 15666 2 0 0
## 15667 2 1 0
## 15668 2 2 0
## 15669 2 0 0
## 15670 2 0 0
## 15671 2 1 0
## 15672 2 0 0
## 15673 2 0 0
## 15674 2 0 0
## 15675 2 1 0
## 15676 2 0 0
## 15677 2 0 0
## 15678 2 0 0
## 15679 2 0 0
## 15680 2 0 0
## 15681 1 0 0
## 15682 2 0 0
## 15683 1 0 0
## 15684 2 0 0
## 15685 2 0 0
## 15686 1 0 0
## 15687 2 0 0
## 15688 2 0 0
## 15689 2 0 0
## 15690 2 0 0
## 15691 2 0 0
## 15692 2 1 0
## 15693 2 0 0
## 15694 2 0 0
## 15695 2 0 0
## 15696 3 0 0
## 15697 2 0 0
## 15698 2 1 0
## 15699 2 0 0
## 15700 2 0 0
## 15701 2 0 0
## 15702 2 0 0
## 15703 1 0 0
## 15704 1 0 0
## 15705 1 0 0
## 15706 1 0 0
## 15707 1 0 0
## 15708 1 0 0
## 15709 2 1 0
## 15710 2 0 0
## 15711 2 2 0
## 15712 2 1 0
## 15713 2 0 0
## 15714 2 0 0
## 15715 2 0 0
## 15716 2 0 0
## 15717 2 0 0
## 15718 3 0 0
## 15719 2 0 0
## 15720 2 0 0
## 15721 2 2 0
## 15722 2 0 0
## 15723 2 0 0
## 15724 2 0 0
## 15725 2 0 0
## 15726 2 0 0
## 15727 2 0 0
## 15728 2 2 0
## 15729 2 1 0
## 15730 3 0 0
## 15731 2 0 0
## 15732 2 0 0
## 15733 2 0 0
## 15734 2 0 0
## 15735 2 0 0
## 15736 2 0 0
## 15737 2 0 0
## 15738 2 0 0
## 15739 3 0 0
## 15740 2 0 0
## 15741 2 2 0
## 15742 2 0 0
## 15743 2 0 0
## 15744 2 1 0
## 15745 2 0 0
## 15746 2 0 0
## 15747 2 1 0
## 15748 2 1 0
## 15749 2 1 0
## 15750 2 0 0
## 15751 3 0 0
## 15752 2 0 0
## 15753 1 0 0
## 15754 2 0 0
## 15755 2 1 0
## 15756 2 0 0
## 15757 2 0 0
## 15758 2 0 0
## 15759 2 0 0
## 15760 2 0 0
## 15761 2 0 0
## 15762 2 0 0
## 15763 2 0 0
## 15764 2 0 0
## 15765 2 0 0
## 15766 2 0 0
## 15767 2 0 0
## 15768 2 0 0
## 15769 2 0 0
## 15770 2 0 0
## 15771 2 0 0
## 15772 2 0 0
## 15773 2 0 0
## 15774 2 0 0
## 15775 2 0 0
## 15776 3 0 0
## 15777 2 0 0
## 15778 2 0 0
## 15779 2 0 0
## 15780 2 2 0
## 15781 2 0 0
## 15782 1 2 0
## 15783 2 0 0
## 15784 2 1 0
## 15785 2 0 0
## 15786 1 1 0
## 15787 2 0 0
## 15788 2 0 0
## 15789 2 0 0
## 15790 2 0 0
## 15791 2 0 0
## 15792 2 0 0
## 15793 2 0 0
## 15794 2 0 0
## 15795 2 0 0
## 15796 2 0 0
## 15797 2 0 0
## 15798 2 0 0
## 15799 2 0 0
## 15800 2 0 0
## 15801 2 0 0
## 15802 2 0 0
## 15803 1 0 0
## 15804 2 0 0
## 15805 2 1 0
## 15806 2 0 0
## 15807 2 1 0
## 15808 2 0 0
## 15809 1 0 0
## 15810 2 0 0
## 15811 2 0 0
## 15812 2 0 0
## 15813 3 0 0
## 15814 2 0 0
## 15815 2 0 0
## 15816 2 0 0
## 15817 2 0 0
## 15818 2 0 0
## 15819 2 0 0
## 15820 2 1 0
## 15821 2 0 0
## 15822 4 0 0
## 15823 2 0 0
## 15824 3 0 0
## 15825 2 1 0
## 15826 2 0 0
## 15827 1 1 0
## 15828 2 0 0
## 15829 3 0 0
## 15830 2 0 0
## 15831 2 0 0
## 15832 2 2 0
## 15833 2 0 0
## 15834 2 0 0
## 15835 2 0 0
## 15836 2 1 0
## 15837 2 0 0
## 15838 2 0 0
## 15839 2 0 0
## 15840 2 0 0
## 15841 2 0 0
## 15842 2 0 0
## 15843 2 0 0
## 15844 2 0 0
## 15845 2 0 0
## 15846 2 0 0
## 15847 3 0 0
## 15848 2 0 0
## 15849 2 0 0
## 15850 3 0 0
## 15851 2 0 0
## 15852 2 0 0
## 15853 2 0 0
## 15854 2 0 0
## 15855 2 0 0
## 15856 2 0 0
## 15857 2 0 0
## 15858 2 0 0
## 15859 2 0 0
## 15860 2 0 0
## 15861 2 1 0
## 15862 2 0 0
## 15863 2 2 0
## 15864 2 0 0
## 15865 2 0 0
## 15866 2 0 0
## 15867 2 0 0
## 15868 2 0 0
## 15869 2 0 0
## 15870 2 0 0
## 15871 2 0 0
## 15872 2 0 0
## 15873 2 0 0
## 15874 2 0 0
## 15875 2 0 0
## 15876 2 0 0
## 15877 2 1 0
## 15878 1 0 0
## 15879 2 0 0
## 15880 2 0 0
## 15881 2 0 0
## 15882 2 0 0
## 15883 2 0 0
## 15884 2 0 0
## 15885 2 0 0
## 15886 2 0 0
## 15887 2 0 0
## 15888 2 0 0
## 15889 2 0 0
## 15890 2 0 0
## 15891 2 0 0
## 15892 2 0 0
## 15893 2 0 0
## 15894 2 0 0
## 15895 2 0 0
## 15896 2 0 0
## 15897 2 0 0
## 15898 2 0 0
## 15899 2 0 0
## 15900 2 0 0
## 15901 2 0 0
## 15902 3 0 0
## 15903 2 0 0
## 15904 2 0 0
## 15905 2 0 0
## 15906 1 0 0
## 15907 2 0 0
## 15908 2 0 0
## 15909 2 0 0
## 15910 2 0 0
## 15911 2 0 0
## 15912 2 1 0
## 15913 2 0 0
## 15914 2 0 0
## 15915 2 0 0
## 15916 2 0 0
## 15917 2 0 0
## 15918 2 1 0
## 15919 2 0 0
## 15920 2 0 0
## 15921 1 0 0
## 15922 3 0 0
## 15923 2 0 0
## 15924 2 0 0
## 15925 2 0 0
## 15926 2 0 0
## 15927 2 1 0
## 15928 2 0 0
## 15929 2 0 0
## 15930 2 0 0
## 15931 2 0 0
## 15932 2 0 0
## 15933 2 2 0
## 15934 2 1 0
## 15935 2 2 0
## 15936 2 0 0
## 15937 2 0 0
## 15938 2 0 0
## 15939 2 0 0
## 15940 2 1 0
## 15941 3 0 0
## 15942 2 1 0
## 15943 2 1 0
## 15944 2 0 0
## 15945 2 0 0
## 15946 2 0 0
## 15947 2 0 0
## 15948 3 0 0
## 15949 2 0 0
## 15950 3 0 0
## 15951 2 1 0
## 15952 3 0 0
## 15953 2 1 0
## 15954 2 1 0
## 15955 2 0 0
## 15956 2 0 0
## 15957 2 0 0
## 15958 1 0 0
## 15959 2 0 0
## 15960 2 0 0
## 15961 2 0 0
## 15962 2 1 0
## 15963 2 1 0
## 15964 2 0 0
## 15965 2 0 0
## 15966 2 0 0
## 15967 2 0 0
## 15968 2 0 0
## 15969 2 0 0
## 15970 3 0 0
## 15971 2 0 0
## 15972 2 0 0
## 15973 2 0 0
## 15974 2 0 0
## 15975 2 0 0
## 15976 2 0 0
## 15977 2 0 0
## 15978 2 0 0
## 15979 2 0 0
## 15980 2 0 0
## 15981 2 0 0
## 15982 3 0 0
## 15983 2 0 0
## 15984 2 0 0
## 15985 1 0 0
## 15986 1 0 0
## 15987 2 0 0
## 15988 2 0 0
## 15989 2 0 0
## 15990 1 0 0
## 15991 2 0 0
## 15992 2 1 0
## 15993 2 1 0
## 15994 2 0 0
## 15995 2 0 0
## 15996 2 0 0
## 15997 1 0 0
## 15998 3 0 0
## 15999 1 0 0
## 16000 1 0 0
## 16001 2 0 0
## 16002 2 0 0
## 16003 2 0 0
## 16004 2 0 0
## 16005 2 0 0
## 16006 2 0 0
## 16007 2 0 0
## 16008 2 0 0
## 16009 2 0 0
## 16010 2 0 0
## 16011 2 0 0
## 16012 1 0 0
## 16013 2 2 0
## 16014 2 0 0
## 16015 2 0 0
## 16016 2 2 0
## 16017 2 0 0
## 16018 2 0 0
## 16019 2 0 0
## 16020 2 0 0
## 16021 2 0 0
## 16022 3 0 0
## 16023 2 0 0
## 16024 2 0 0
## 16025 2 0 0
## 16026 2 0 0
## 16027 2 0 0
## 16028 2 0 0
## 16029 1 0 0
## 16030 2 0 0
## 16031 2 0 0
## 16032 2 0 0
## 16033 2 0 0
## 16034 2 0 0
## 16035 2 0 0
## 16036 2 0 0
## 16037 2 0 0
## 16038 2 0 0
## 16039 2 0 0
## 16040 2 1 0
## 16041 2 0 0
## 16042 2 0 0
## 16043 2 0 0
## 16044 2 0 0
## 16045 2 0 0
## 16046 2 0 0
## 16047 2 0 0
## 16048 2 0 0
## 16049 2 0 0
## 16050 2 0 0
## 16051 2 0 0
## 16052 2 0 0
## 16053 2 0 0
## 16054 2 0 0
## 16055 2 0 0
## 16056 2 0 0
## 16057 2 0 0
## 16058 2 0 0
## 16059 2 0 0
## 16060 2 2 0
## 16061 2 0 0
## 16062 2 0 0
## 16063 3 0 0
## 16064 2 0 0
## 16065 3 0 0
## 16066 3 0 0
## 16067 2 0 0
## 16068 2 1 0
## 16069 3 0 0
## 16070 2 0 0
## 16071 2 2 0
## 16072 2 0 0
## 16073 2 0 0
## 16074 2 0 0
## 16075 2 0 0
## 16076 2 0 0
## 16077 2 0 0
## 16078 2 0 0
## 16079 2 0 0
## 16080 2 0 0
## 16081 2 2 0
## 16082 2 0 0
## 16083 3 0 0
## 16084 2 0 0
## 16085 2 0 0
## 16086 2 0 0
## 16087 2 1 0
## 16088 2 0 0
## 16089 2 1 0
## 16090 2 2 0
## 16091 2 0 0
## 16092 2 0 0
## 16093 2 0 0
## 16094 1 0 0
## 16095 1 0 0
## 16096 2 0 0
## 16097 2 0 0
## 16098 2 0 0
## 16099 2 0 0
## 16100 2 0 0
## 16101 2 0 0
## 16102 2 0 0
## 16103 1 0 0
## 16104 2 0 0
## 16105 2 2 0
## 16106 2 2 0
## 16107 2 0 0
## 16108 2 0 0
## 16109 3 0 0
## 16110 2 0 0
## 16111 2 0 0
## 16112 2 0 0
## 16113 2 0 0
## 16114 2 0 0
## 16115 2 0 0
## 16116 2 0 0
## 16117 2 0 0
## 16118 2 0 0
## 16119 2 0 0
## 16120 3 0 0
## 16121 3 0 0
## 16122 2 0 0
## 16123 2 0 0
## 16124 2 0 0
## 16125 2 0 0
## 16126 2 0 0
## 16127 3 0 0
## 16128 4 0 0
## 16129 2 0 0
## 16130 2 0 0
## 16131 2 0 0
## 16132 2 0 0
## 16133 2 0 0
## 16134 2 0 0
## 16135 2 0 0
## 16136 2 0 0
## 16137 2 0 0
## 16138 2 0 0
## 16139 2 0 0
## 16140 2 0 0
## 16141 2 0 0
## 16142 2 0 0
## 16143 2 0 0
## 16144 2 2 0
## 16145 2 0 0
## 16146 2 0 0
## 16147 2 0 0
## 16148 2 0 0
## 16149 3 0 0
## 16150 2 0 0
## 16151 2 0 0
## 16152 2 0 0
## 16153 2 0 0
## 16154 2 0 0
## 16155 2 0 0
## 16156 2 0 0
## 16157 2 0 0
## 16158 2 0 0
## 16159 2 0 0
## 16160 3 0 0
## 16161 2 1 0
## 16162 2 0 0
## 16163 2 0 0
## 16164 2 0 0
## 16165 3 0 0
## 16166 2 0 0
## 16167 1 0 0
## 16168 2 0 0
## 16169 2 0 0
## 16170 3 0 0
## 16171 3 0 0
## 16172 2 0 0
## 16173 2 3 0
## 16174 2 0 0
## 16175 2 0 0
## 16176 2 2 0
## 16177 2 0 0
## 16178 2 0 0
## 16179 2 1 0
## 16180 2 0 0
## 16181 2 0 0
## 16182 2 1 0
## 16183 2 0 0
## 16184 2 0 0
## 16185 3 2 0
## 16186 2 1 0
## 16187 2 0 0
## 16188 3 0 0
## 16189 2 2 0
## 16190 2 0 0
## 16191 1 0 0
## 16192 1 0 0
## 16193 2 0 0
## 16194 2 0 0
## 16195 3 0 0
## 16196 2 0 0
## 16197 1 0 0
## 16198 1 0 0
## 16199 1 0 0
## 16200 1 0 0
## 16201 1 0 0
## 16202 1 0 0
## 16203 1 0 0
## 16204 2 0 0
## 16205 2 2 0
## 16206 1 0 0
## 16207 2 0 0
## 16208 2 0 0
## 16209 2 0 0
## 16210 2 0 0
## 16211 2 0 0
## 16212 2 1 0
## 16213 2 0 0
## 16214 3 0 0
## 16215 2 0 0
## 16216 2 0 0
## 16217 2 0 0
## 16218 2 0 0
## 16219 2 0 0
## 16220 2 0 0
## 16221 2 0 0
## 16222 2 0 0
## 16223 2 0 0
## 16224 2 0 0
## 16225 2 0 0
## 16226 1 1 0
## 16227 2 0 0
## 16228 2 0 0
## 16229 2 0 0
## 16230 2 0 0
## 16231 2 0 0
## 16232 2 0 0
## 16233 2 0 0
## 16234 2 0 0
## 16235 2 0 0
## 16236 2 0 0
## 16237 2 0 0
## 16238 2 2 0
## 16239 2 0 0
## 16240 3 0 0
## 16241 2 2 0
## 16242 2 2 0
## 16243 2 1 0
## 16244 2 1 0
## 16245 2 0 0
## 16246 2 0 0
## 16247 2 0 0
## 16248 2 1 0
## 16249 2 0 0
## 16250 2 2 0
## 16251 2 0 0
## 16252 1 0 0
## 16253 2 0 0
## 16254 2 0 0
## 16255 2 0 0
## 16256 2 0 0
## 16257 2 0 0
## 16258 3 0 0
## 16259 2 0 0
## 16260 2 0 0
## 16261 2 1 0
## 16262 2 0 0
## 16263 2 0 0
## 16264 2 0 0
## 16265 2 0 0
## 16266 2 0 0
## 16267 3 0 0
## 16268 2 0 0
## 16269 2 0 0
## 16270 2 0 0
## 16271 2 0 0
## 16272 2 0 0
## 16273 2 0 0
## 16274 2 0 0
## 16275 2 0 0
## 16276 2 1 0
## 16277 2 0 0
## 16278 2 0 0
## 16279 2 0 0
## 16280 1 0 0
## 16281 2 0 0
## 16282 2 2 0
## 16283 2 0 0
## 16284 2 0 0
## 16285 3 0 0
## 16286 2 0 0
## 16287 2 0 0
## 16288 2 0 0
## 16289 2 0 0
## 16290 2 0 0
## 16291 2 0 0
## 16292 3 0 0
## 16293 2 0 0
## 16294 2 0 0
## 16295 2 0 0
## 16296 2 0 0
## 16297 2 0 0
## 16298 2 0 0
## 16299 1 0 0
## 16300 3 0 0
## 16301 2 0 0
## 16302 2 0 0
## 16303 2 0 0
## 16304 2 0 0
## 16305 2 1 0
## 16306 2 1 0
## 16307 2 0 0
## 16308 2 0 0
## 16309 2 0 0
## 16310 2 0 0
## 16311 2 0 0
## 16312 2 0 0
## 16313 2 0 0
## 16314 3 0 0
## 16315 2 0 0
## 16316 2 0 0
## 16317 2 0 0
## 16318 2 0 0
## 16319 1 0 0
## 16320 2 0 0
## 16321 2 0 0
## 16322 2 0 0
## 16323 2 0 0
## 16324 2 0 0
## 16325 2 0 0
## 16326 2 0 0
## 16327 2 0 0
## 16328 2 0 0
## 16329 2 0 0
## 16330 2 0 0
## 16331 2 0 0
## 16332 3 0 0
## 16333 2 0 0
## 16334 2 0 0
## 16335 2 0 0
## 16336 2 0 0
## 16337 3 0 0
## 16338 2 0 0
## 16339 2 0 0
## 16340 2 0 0
## 16341 2 0 0
## 16342 2 0 0
## 16343 2 0 0
## 16344 2 0 0
## 16345 2 1 0
## 16346 2 0 0
## 16347 2 0 0
## 16348 2 0 0
## 16349 2 1 0
## 16350 2 0 0
## 16351 2 0 0
## 16352 1 0 0
## 16353 2 0 0
## 16354 2 0 0
## 16355 2 0 0
## 16356 2 0 0
## 16357 2 0 0
## 16358 2 0 0
## 16359 2 0 0
## 16360 2 0 0
## 16361 2 0 0
## 16362 2 0 0
## 16363 2 0 0
## 16364 2 0 0
## 16365 2 0 0
## 16366 2 0 0
## 16367 2 0 0
## 16368 2 0 0
## 16369 2 0 0
## 16370 2 0 0
## 16371 2 0 0
## 16372 2 0 0
## 16373 2 0 0
## 16374 2 0 0
## 16375 2 0 0
## 16376 2 0 0
## 16377 2 0 0
## 16378 1 0 0
## 16379 1 0 0
## 16380 2 0 0
## 16381 2 0 0
## 16382 2 0 0
## 16383 2 0 0
## 16384 2 0 0
## 16385 2 0 0
## 16386 2 0 0
## 16387 2 0 0
## 16388 2 0 0
## 16389 3 0 0
## 16390 2 0 0
## 16391 2 0 0
## 16392 2 0 0
## 16393 1 0 0
## 16394 2 0 0
## 16395 2 1 0
## 16396 2 0 0
## 16397 2 0 0
## 16398 2 0 0
## 16399 2 0 0
## 16400 2 0 0
## 16401 2 0 0
## 16402 2 0 0
## 16403 2 0 0
## 16404 2 1 0
## 16405 2 0 0
## 16406 2 1 0
## 16407 2 0 0
## 16408 2 0 0
## 16409 2 1 0
## 16410 2 0 0
## 16411 2 0 0
## 16412 2 0 0
## 16413 2 0 0
## 16414 2 0 0
## 16415 2 0 0
## 16416 2 0 0
## 16417 2 1 0
## 16418 2 0 0
## 16419 2 0 0
## 16420 2 0 0
## 16421 2 0 0
## 16422 2 0 0
## 16423 3 0 0
## 16424 3 0 0
## 16425 2 0 0
## 16426 3 0 0
## 16427 2 0 0
## 16428 2 0 0
## 16429 2 0 0
## 16430 2 0 0
## 16431 2 0 0
## 16432 2 0 0
## 16433 4 0 0
## 16434 2 0 0
## 16435 3 0 0
## 16436 2 0 0
## 16437 2 0 0
## 16438 2 0 0
## 16439 2 0 0
## 16440 2 0 0
## 16441 2 0 0
## 16442 2 0 0
## 16443 2 0 0
## 16444 2 1 0
## 16445 2 0 0
## 16446 2 2 0
## 16447 2 2 0
## 16448 2 0 0
## 16449 2 0 0
## 16450 2 0 0
## 16451 1 0 0
## 16452 2 0 0
## 16453 2 0 0
## 16454 2 0 0
## 16455 2 0 0
## 16456 1 0 0
## 16457 1 0 0
## 16458 2 0 0
## 16459 2 1 0
## 16460 2 0 0
## 16461 2 0 0
## 16462 1 0 0
## 16463 2 0 0
## 16464 3 1 0
## 16465 1 0 0
## 16466 2 0 0
## 16467 3 0 0
## 16468 2 0 0
## 16469 2 0 0
## 16470 2 0 0
## 16471 1 0 0
## 16472 1 0 0
## 16473 1 0 0
## 16474 2 0 0
## 16475 2 0 0
## 16476 2 0 0
## 16477 2 0 0
## 16478 2 0 0
## 16479 2 0 0
## 16480 2 0 0
## 16481 2 0 0
## 16482 1 0 0
## 16483 2 0 0
## 16484 2 0 0
## 16485 1 0 0
## 16486 2 0 0
## 16487 2 0 0
## 16488 2 0 0
## 16489 1 0 0
## 16490 2 0 0
## 16491 3 0 0
## 16492 3 0 0
## 16493 2 0 0
## 16494 2 0 0
## 16495 2 0 0
## 16496 2 0 0
## 16497 2 0 0
## 16498 2 0 0
## 16499 2 0 0
## 16500 2 0 0
## 16501 2 0 0
## 16502 2 0 0
## 16503 2 0 0
## 16504 2 0 0
## 16505 2 0 0
## 16506 2 0 0
## 16507 2 0 0
## 16508 2 0 0
## 16509 2 0 0
## 16510 2 0 0
## 16511 2 0 0
## 16512 3 0 0
## 16513 3 0 0
## 16514 2 0 0
## 16515 2 0 0
## 16516 2 0 0
## 16517 2 0 0
## 16518 2 0 0
## 16519 2 0 0
## 16520 2 0 0
## 16521 2 0 0
## 16522 2 0 0
## 16523 2 0 0
## 16524 2 0 0
## 16525 2 0 0
## 16526 2 0 0
## 16527 2 0 0
## 16528 2 0 0
## 16529 2 2 0
## 16530 2 0 0
## 16531 2 0 0
## 16532 1 0 0
## 16533 2 0 0
## 16534 2 0 0
## 16535 2 0 0
## 16536 2 0 0
## 16537 2 0 0
## 16538 2 0 0
## 16539 2 0 0
## 16540 2 0 0
## 16541 2 0 0
## 16542 2 0 0
## 16543 2 1 0
## 16544 1 0 0
## 16545 1 0 0
## 16546 1 0 0
## 16547 1 0 0
## 16548 1 0 0
## 16549 2 0 0
## 16550 2 0 0
## 16551 2 2 0
## 16552 2 0 0
## 16553 2 0 0
## 16554 2 0 0
## 16555 2 0 0
## 16556 2 0 0
## 16557 2 0 0
## 16558 2 0 0
## 16559 1 0 0
## 16560 2 0 0
## 16561 2 0 0
## 16562 2 0 0
## 16563 3 0 0
## 16564 2 0 0
## 16565 2 0 0
## 16566 2 1 0
## 16567 3 0 0
## 16568 2 2 0
## 16569 2 0 0
## 16570 2 0 0
## 16571 2 0 0
## 16572 2 1 0
## 16573 2 0 0
## 16574 2 0 0
## 16575 2 0 0
## 16576 2 0 0
## 16577 2 0 0
## 16578 2 0 0
## 16579 2 0 0
## 16580 2 0 0
## 16581 2 0 0
## 16582 2 0 0
## 16583 1 0 0
## 16584 2 0 0
## 16585 2 0 0
## 16586 2 0 0
## 16587 2 0 0
## 16588 2 0 0
## 16589 2 0 0
## 16590 2 0 0
## 16591 2 0 0
## 16592 2 0 0
## 16593 2 0 0
## 16594 2 0 0
## 16595 1 0 0
## 16596 2 0 0
## 16597 2 0 0
## 16598 1 0 0
## 16599 1 0 0
## 16600 2 0 0
## 16601 2 0 0
## 16602 2 0 0
## 16603 2 0 0
## 16604 2 0 0
## 16605 1 0 0
## 16606 2 0 0
## 16607 2 0 0
## 16608 2 0 0
## 16609 3 0 0
## 16610 2 0 0
## 16611 2 0 0
## 16612 2 0 0
## 16613 2 0 0
## 16614 2 0 0
## 16615 2 0 0
## 16616 2 0 0
## 16617 2 0 0
## 16618 2 0 0
## 16619 2 0 0
## 16620 2 0 0
## 16621 1 0 0
## 16622 1 0 0
## 16623 2 1 0
## 16624 2 0 0
## 16625 2 0 0
## 16626 2 0 0
## 16627 2 0 0
## 16628 2 0 0
## 16629 2 0 0
## 16630 2 0 0
## 16631 2 0 0
## 16632 2 0 0
## 16633 2 0 0
## 16634 2 0 0
## 16635 2 0 0
## 16636 2 0 0
## 16637 2 0 0
## 16638 2 0 0
## 16639 2 0 0
## 16640 2 0 0
## 16641 2 0 0
## 16642 2 0 0
## 16643 2 0 0
## 16644 2 0 0
## 16645 2 0 0
## 16646 1 0 0
## 16647 2 0 0
## 16648 2 0 0
## 16649 2 0 0
## 16650 2 0 0
## 16651 2 0 0
## 16652 2 0 0
## 16653 2 0 0
## 16654 2 0 0
## 16655 2 0 0
## 16656 2 0 0
## 16657 2 0 0
## 16658 2 0 0
## 16659 2 0 0
## 16660 2 0 0
## 16661 2 0 0
## 16662 2 0 0
## 16663 2 0 0
## 16664 2 0 0
## 16665 2 0 0
## 16666 2 0 0
## 16667 2 0 0
## 16668 2 0 0
## 16669 2 0 0
## 16670 2 0 0
## 16671 2 0 0
## 16672 2 0 0
## 16673 1 0 0
## 16674 2 0 0
## 16675 2 0 0
## 16676 2 0 0
## 16677 2 0 0
## 16678 2 0 0
## 16679 2 0 0
## 16680 2 0 0
## 16681 2 0 0
## 16682 2 0 0
## 16683 2 0 0
## 16684 2 0 0
## 16685 2 0 0
## 16686 2 0 0
## 16687 2 0 0
## 16688 2 0 0
## 16689 1 0 0
## 16690 2 0 0
## 16691 2 0 0
## 16692 2 0 0
## 16693 3 0 0
## 16694 2 0 0
## 16695 1 0 0
## 16696 2 0 0
## 16697 2 0 0
## 16698 2 0 0
## 16699 1 0 0
## 16700 1 0 0
## 16701 1 0 0
## 16702 1 0 0
## 16703 1 0 0
## 16704 2 0 0
## 16705 2 0 0
## 16706 1 0 0
## 16707 2 0 0
## 16708 2 0 0
## 16709 2 0 0
## 16710 1 0 0
## 16711 2 0 0
## 16712 2 0 0
## 16713 1 0 0
## 16714 2 0 0
## 16715 2 0 0
## 16716 2 0 0
## 16717 2 0 0
## 16718 2 0 0
## 16719 1 0 0
## 16720 2 0 0
## 16721 2 0 0
## 16722 2 0 0
## 16723 2 0 0
## 16724 2 0 0
## 16725 2 0 0
## 16726 2 0 0
## 16727 2 0 0
## 16728 2 0 0
## 16729 2 0 0
## 16730 1 0 0
## 16731 1 0 0
## 16732 1 0 0
## 16733 1 0 0
## 16734 1 0 0
## 16735 1 0 0
## 16736 1 0 0
## 16737 1 0 0
## 16738 1 0 0
## 16739 1 0 0
## 16740 1 0 0
## 16741 2 0 0
## 16742 2 0 0
## 16743 2 0 0
## 16744 2 0 0
## 16745 2 0 0
## 16746 2 2 0
## 16747 2 0 0
## 16748 2 0 0
## 16749 2 0 0
## 16750 1 0 0
## 16751 2 0 0
## 16752 2 0 0
## 16753 2 0 0
## 16754 2 0 0
## 16755 2 0 0
## 16756 2 0 0
## 16757 2 0 0
## 16758 1 0 0
## 16759 2 2 0
## 16760 2 0 0
## 16761 2 0 0
## 16762 2 0 0
## 16763 2 0 0
## 16764 2 0 0
## 16765 1 0 0
## 16766 1 0 0
## 16767 2 0 0
## 16768 2 0 0
## 16769 2 0 0
## 16770 2 0 0
## 16771 2 0 0
## 16772 2 0 0
## 16773 2 0 0
## 16774 2 0 0
## 16775 2 0 0
## 16776 2 0 0
## 16777 2 0 0
## 16778 3 0 0
## 16779 2 0 0
## 16780 2 0 0
## 16781 2 0 0
## 16782 2 0 0
## 16783 2 0 0
## 16784 2 2 0
## 16785 2 0 0
## 16786 2 1 0
## 16787 2 0 0
## 16788 2 0 0
## 16789 2 0 0
## 16790 2 0 0
## 16791 2 0 0
## 16792 2 0 0
## 16793 2 0 0
## 16794 1 0 0
## 16795 2 0 0
## 16796 2 0 0
## 16797 2 0 0
## 16798 2 0 0
## 16799 2 0 0
## 16800 2 0 0
## 16801 2 0 0
## 16802 2 0 0
## 16803 1 0 0
## 16804 2 0 0
## 16805 2 0 0
## 16806 2 0 0
## 16807 2 0 0
## 16808 2 0 0
## 16809 1 0 0
## 16810 2 0 0
## 16811 2 0 0
## 16812 2 0 0
## 16813 2 0 0
## 16814 2 0 0
## 16815 2 0 0
## 16816 2 0 0
## 16817 1 0 0
## 16818 1 0 0
## 16819 2 0 0
## 16820 2 0 0
## 16821 2 0 0
## 16822 2 0 0
## 16823 2 2 0
## 16824 2 0 0
## 16825 2 0 0
## 16826 2 0 0
## 16827 2 0 0
## 16828 2 0 0
## 16829 2 0 0
## 16830 2 0 0
## 16831 2 0 0
## 16832 2 0 0
## 16833 2 0 0
## 16834 2 0 0
## 16835 2 0 0
## 16836 2 0 0
## 16837 2 0 0
## 16838 2 0 0
## 16839 2 0 0
## 16840 2 0 0
## 16841 1 0 0
## 16842 2 0 0
## 16843 2 0 0
## 16844 2 0 0
## 16845 2 0 0
## 16846 2 0 0
## 16847 2 0 0
## 16848 1 0 0
## 16849 2 0 0
## 16850 2 0 0
## 16851 2 0 0
## 16852 2 0 0
## 16853 2 0 0
## 16854 2 0 0
## 16855 2 0 0
## 16856 2 2 0
## 16857 2 0 0
## 16858 2 0 0
## 16859 2 0 0
## 16860 2 0 0
## 16861 2 0 0
## 16862 2 0 0
## 16863 2 0 0
## 16864 2 0 0
## 16865 2 0 0
## 16866 1 0 0
## 16867 1 0 0
## 16868 1 0 0
## 16869 2 0 0
## 16870 2 0 0
## 16871 2 0 0
## 16872 2 0 0
## 16873 2 0 0
## 16874 2 0 0
## 16875 2 0 0
## 16876 2 0 0
## 16877 2 0 0
## 16878 2 0 0
## 16879 2 0 0
## 16880 2 0 0
## 16881 2 0 0
## 16882 2 0 0
## 16883 2 0 0
## 16884 2 0 0
## 16885 2 0 0
## 16886 2 0 0
## 16887 2 0 0
## 16888 2 0 0
## 16889 2 0 0
## 16890 2 0 0
## 16891 1 0 0
## 16892 1 0 0
## 16893 2 0 0
## 16894 1 0 0
## 16895 2 0 0
## 16896 2 0 0
## 16897 2 0 0
## 16898 2 0 0
## 16899 2 0 0
## 16900 2 0 0
## 16901 2 0 0
## 16902 2 0 0
## 16903 2 0 0
## 16904 2 0 0
## 16905 2 0 0
## 16906 2 2 0
## 16907 2 0 0
## 16908 2 0 0
## 16909 2 0 0
## 16910 2 0 0
## 16911 2 0 0
## 16912 2 1 0
## 16913 2 0 0
## 16914 2 0 0
## 16915 2 0 0
## 16916 2 0 0
## 16917 2 0 0
## 16918 2 0 0
## 16919 2 0 0
## 16920 2 2 0
## 16921 2 0 0
## 16922 2 0 0
## 16923 2 0 0
## 16924 2 0 0
## 16925 2 0 0
## 16926 2 0 0
## 16927 2 0 0
## 16928 2 0 0
## 16929 2 0 0
## 16930 2 0 0
## 16931 2 0 0
## 16932 2 0 0
## 16933 2 0 0
## 16934 2 0 0
## 16935 2 0 0
## 16936 2 0 0
## 16937 2 0 0
## 16938 2 0 0
## 16939 2 0 0
## 16940 2 0 0
## 16941 2 0 0
## 16942 1 0 0
## 16943 1 0 0
## 16944 1 0 0
## 16945 1 0 0
## 16946 2 0 0
## 16947 2 0 0
## 16948 2 0 0
## 16949 2 0 0
## 16950 1 0 0
## 16951 2 0 0
## 16952 2 0 0
## 16953 2 0 0
## 16954 2 0 0
## 16955 2 0 0
## 16956 2 0 0
## 16957 2 0 0
## 16958 2 0 0
## 16959 2 0 0
## 16960 2 0 0
## 16961 2 0 0
## 16962 2 0 0
## 16963 2 0 0
## 16964 2 0 0
## 16965 1 0 0
## 16966 1 0 0
## 16967 1 0 0
## 16968 1 0 0
## 16969 2 0 0
## 16970 2 0 0
## 16971 2 0 0
## 16972 2 0 0
## 16973 2 0 0
## 16974 2 0 0
## 16975 2 0 0
## 16976 2 0 0
## 16977 2 1 0
## 16978 2 0 0
## 16979 1 0 0
## 16980 2 0 0
## 16981 2 0 0
## 16982 1 0 0
## 16983 2 0 0
## 16984 2 1 0
## 16985 2 0 0
## 16986 2 0 0
## 16987 2 1 0
## 16988 2 0 0
## 16989 2 0 0
## 16990 1 0 0
## 16991 1 0 0
## 16992 1 0 0
## 16993 2 0 0
## 16994 2 0 0
## 16995 3 0 0
## 16996 2 0 0
## 16997 2 0 0
## 16998 2 0 0
## 16999 2 0 0
## 17000 2 0 0
## 17001 2 0 0
## 17002 2 0 0
## 17003 2 0 0
## 17004 2 0 0
## 17005 2 0 0
## 17006 2 0 0
## 17007 2 0 0
## 17008 2 0 0
## 17009 2 0 0
## 17010 2 0 0
## 17011 2 0 0
## 17012 2 0 0
## 17013 2 0 0
## 17014 3 0 0
## 17015 2 0 0
## 17016 2 0 0
## 17017 2 0 0
## 17018 2 0 0
## 17019 2 0 0
## 17020 2 0 0
## 17021 1 0 0
## 17022 2 0 0
## 17023 2 0 0
## 17024 2 0 0
## 17025 2 0 0
## 17026 2 1 0
## 17027 1 0 0
## 17028 2 0 0
## 17029 2 0 0
## 17030 2 0 0
## 17031 1 0 0
## 17032 2 1 0
## 17033 2 0 0
## 17034 2 0 0
## 17035 2 0 0
## 17036 2 0 0
## 17037 1 0 0
## 17038 2 0 0
## 17039 2 0 0
## 17040 1 0 0
## 17041 2 0 0
## 17042 2 0 0
## 17043 2 0 0
## 17044 2 0 0
## 17045 2 0 0
## 17046 2 0 0
## 17047 2 0 0
## 17048 2 0 0
## 17049 2 0 0
## 17050 1 0 0
## 17051 2 2 0
## 17052 2 0 0
## 17053 2 0 0
## 17054 2 0 0
## 17055 2 0 0
## 17056 2 0 0
## 17057 2 0 0
## 17058 2 0 0
## 17059 2 0 0
## 17060 2 0 0
## 17061 2 0 0
## 17062 2 0 0
## 17063 2 0 0
## 17064 2 0 0
## 17065 1 0 0
## 17066 1 0 0
## 17067 1 0 0
## 17068 1 0 0
## 17069 2 0 0
## 17070 1 0 0
## 17071 1 0 0
## 17072 2 0 0
## 17073 2 0 0
## 17074 2 0 0
## 17075 2 0 0
## 17076 2 0 0
## 17077 2 0 0
## 17078 2 0 0
## 17079 3 0 0
## 17080 1 0 0
## 17081 1 0 0
## 17082 1 0 0
## 17083 2 0 0
## 17084 2 0 0
## 17085 2 0 0
## 17086 2 0 0
## 17087 2 0 0
## 17088 2 0 0
## 17089 2 0 0
## 17090 2 0 0
## 17091 2 0 0
## 17092 2 0 0
## 17093 2 0 0
## 17094 2 0 0
## 17095 1 0 0
## 17096 2 0 0
## 17097 2 0 0
## 17098 2 0 0
## 17099 2 0 0
## 17100 2 0 0
## 17101 2 0 0
## 17102 2 0 0
## 17103 2 0 0
## 17104 2 0 0
## 17105 1 0 0
## 17106 1 0 0
## 17107 1 0 0
## 17108 2 0 0
## 17109 2 0 0
## 17110 1 0 0
## 17111 2 0 0
## 17112 2 0 0
## 17113 2 0 0
## 17114 2 0 0
## 17115 2 0 0
## 17116 2 0 0
## 17117 2 0 0
## 17118 2 0 0
## 17119 2 0 0
## 17120 2 0 0
## 17121 2 0 0
## 17122 2 0 0
## 17123 2 0 0
## 17124 2 0 0
## 17125 2 0 0
## 17126 1 0 0
## 17127 2 0 0
## 17128 2 0 0
## 17129 2 0 0
## 17130 2 0 0
## 17131 2 0 0
## 17132 1 0 0
## 17133 2 0 0
## 17134 2 0 0
## 17135 2 0 0
## 17136 2 0 0
## 17137 1 0 0
## 17138 2 0 0
## 17139 2 0 0
## 17140 2 0 0
## 17141 2 0 0
## 17142 2 0 0
## 17143 1 0 0
## 17144 1 0 0
## 17145 2 0 0
## 17146 2 0 0
## 17147 2 0 0
## 17148 2 0 0
## 17149 1 0 0
## 17150 2 0 0
## 17151 2 0 0
## 17152 2 0 0
## 17153 2 0 0
## 17154 2 0 0
## 17155 2 0 0
## 17156 2 0 0
## 17157 2 0 0
## 17158 1 0 0
## 17159 1 0 0
## 17160 2 0 0
## 17161 2 0 0
## 17162 2 0 0
## 17163 1 0 0
## 17164 1 0 0
## 17165 2 0 0
## 17166 2 0 0
## 17167 2 0 0
## 17168 2 0 0
## 17169 2 0 0
## 17170 2 0 0
## 17171 2 0 0
## 17172 2 0 0
## 17173 2 0 0
## 17174 1 0 0
## 17175 2 0 0
## 17176 2 0 0
## 17177 2 0 0
## 17178 1 0 0
## 17179 2 0 0
## 17180 2 0 0
## 17181 2 0 0
## 17182 2 0 0
## 17183 2 0 0
## 17184 2 0 0
## 17185 2 0 0
## 17186 2 0 0
## 17187 2 0 0
## 17188 2 0 0
## 17189 2 0 0
## 17190 2 0 0
## 17191 1 0 0
## 17192 2 0 0
## 17193 2 0 0
## 17194 1 0 0
## 17195 2 0 0
## 17196 2 0 0
## 17197 2 0 0
## 17198 2 0 0
## 17199 2 0 0
## 17200 1 0 0
## 17201 2 0 0
## 17202 2 0 0
## 17203 2 0 0
## 17204 2 0 0
## 17205 2 0 0
## 17206 2 0 0
## 17207 2 0 0
## 17208 2 0 0
## 17209 2 0 0
## 17210 2 0 0
## 17211 2 0 0
## 17212 1 0 0
## 17213 1 0 0
## 17214 1 0 0
## 17215 1 0 0
## 17216 1 0 0
## 17217 1 0 0
## 17218 3 0 0
## 17219 1 0 0
## 17220 3 0 0
## 17221 2 0 0
## 17222 2 0 0
## 17223 2 0 0
## 17224 2 0 0
## 17225 2 0 0
## 17226 1 0 0
## 17227 2 0 0
## 17228 1 0 0
## 17229 1 0 0
## 17230 2 0 0
## 17231 2 0 0
## 17232 2 0 0
## 17233 3 0 0
## 17234 1 0 0
## 17235 2 0 0
## 17236 2 0 0
## 17237 2 0 0
## 17238 2 1 0
## 17239 1 0 0
## 17240 2 0 0
## 17241 2 0 0
## 17242 2 0 0
## 17243 1 0 0
## 17244 2 0 0
## 17245 2 0 0
## 17246 2 0 0
## 17247 2 0 0
## 17248 2 0 0
## 17249 2 0 0
## 17250 2 0 0
## 17251 2 0 0
## 17252 2 0 0
## 17253 2 0 0
## 17254 2 0 0
## 17255 2 0 0
## 17256 2 0 0
## 17257 1 0 0
## 17258 2 0 0
## 17259 2 0 0
## 17260 3 0 0
## 17261 2 0 0
## 17262 2 0 0
## 17263 2 0 0
## 17264 2 0 0
## 17265 2 0 0
## 17266 2 0 0
## 17267 2 0 0
## 17268 2 0 0
## 17269 2 0 0
## 17270 2 2 0
## 17271 2 0 0
## 17272 1 0 0
## 17273 2 0 0
## 17274 2 0 0
## 17275 2 0 0
## 17276 2 0 0
## 17277 2 0 0
## 17278 2 2 0
## 17279 2 0 0
## 17280 2 1 0
## 17281 2 0 0
## 17282 2 0 0
## 17283 2 0 0
## 17284 2 0 0
## 17285 1 0 0
## 17286 2 0 0
## 17287 1 0 0
## 17288 2 0 0
## 17289 1 0 0
## 17290 2 0 0
## 17291 2 0 0
## 17292 2 0 0
## 17293 2 0 0
## 17294 1 0 0
## 17295 1 0 0
## 17296 1 0 0
## 17297 2 0 0
## 17298 1 0 0
## 17299 1 0 0
## 17300 1 0 0
## 17301 1 0 0
## 17302 1 0 0
## 17303 1 0 0
## 17304 1 0 0
## 17305 1 0 0
## 17306 1 0 0
## 17307 1 0 0
## 17308 1 0 0
## 17309 2 0 0
## 17310 1 0 0
## 17311 1 0 0
## 17312 1 0 0
## 17313 1 0 0
## 17314 1 0 0
## 17315 1 0 0
## 17316 1 0 0
## 17317 1 0 0
## 17318 1 0 0
## 17319 1 0 0
## 17320 1 0 0
## 17321 1 0 0
## 17322 1 0 0
## 17323 2 0 0
## 17324 2 0 0
## 17325 1 0 0
## 17326 2 0 0
## 17327 2 0 0
## 17328 2 0 0
## 17329 2 0 0
## 17330 2 0 0
## 17331 2 0 0
## 17332 2 2 0
## 17333 1 0 0
## 17334 1 0 0
## 17335 1 0 0
## 17336 1 0 0
## 17337 1 0 0
## 17338 2 0 0
## 17339 2 0 0
## 17340 2 0 0
## 17341 2 0 0
## 17342 2 0 0
## 17343 1 0 0
## 17344 2 0 0
## 17345 2 0 0
## 17346 2 0 0
## 17347 1 0 0
## 17348 1 0 0
## 17349 1 0 0
## 17350 2 0 0
## 17351 2 0 0
## 17352 2 1 0
## 17353 1 0 0
## 17354 2 0 0
## 17355 2 0 0
## 17356 2 0 0
## 17357 2 0 0
## 17358 2 0 0
## 17359 2 0 0
## 17360 2 0 0
## 17361 2 0 0
## 17362 2 0 0
## 17363 1 0 0
## 17364 2 0 0
## 17365 2 0 0
## 17366 2 0 0
## 17367 2 0 0
## 17368 2 0 0
## 17369 2 0 0
## 17370 1 0 0
## 17371 1 0 0
## 17372 2 0 0
## 17373 2 0 0
## 17374 1 0 0
## 17375 2 0 0
## 17376 2 0 0
## 17377 2 0 0
## 17378 2 0 0
## 17379 2 0 0
## 17380 1 0 0
## 17381 2 0 0
## 17382 2 0 0
## 17383 2 0 0
## 17384 2 0 0
## 17385 2 0 0
## 17386 2 0 0
## 17387 2 0 0
## 17388 1 0 0
## 17389 1 0 0
## 17390 1 0 0
## 17391 2 0 0
## 17392 2 0 0
## 17393 2 0 0
## 17394 2 0 0
## 17395 2 0 0
## 17396 2 0 0
## 17397 2 0 0
## 17398 2 0 0
## 17399 1 0 0
## 17400 1 0 0
## 17401 2 0 0
## 17402 2 0 0
## 17403 2 0 0
## 17404 3 0 0
## 17405 2 0 0
## 17406 1 0 0
## 17407 2 0 0
## 17408 2 0 0
## 17409 1 0 0
## 17410 2 0 0
## 17411 2 0 0
## 17412 2 0 0
## 17413 1 0 0
## 17414 1 0 0
## 17415 2 0 0
## 17416 2 0 0
## 17417 2 0 0
## 17418 2 0 0
## 17419 2 0 0
## 17420 2 0 0
## 17421 2 0 0
## 17422 1 0 0
## 17423 2 0 0
## 17424 3 0 0
## 17425 2 0 0
## 17426 2 2 0
## 17427 2 0 0
## 17428 2 0 0
## 17429 2 0 0
## 17430 2 0 0
## 17431 2 0 0
## 17432 2 0 0
## 17433 1 0 0
## 17434 1 0 0
## 17435 2 0 0
## 17436 2 0 0
## 17437 2 0 0
## 17438 2 0 0
## 17439 2 0 0
## 17440 2 0 0
## 17441 2 0 0
## 17442 2 0 0
## 17443 2 0 0
## 17444 2 0 0
## 17445 2 0 0
## 17446 2 0 0
## 17447 2 0 0
## 17448 2 0 0
## 17449 2 0 0
## 17450 2 0 0
## 17451 1 0 0
## 17452 2 0 0
## 17453 2 0 0
## 17454 2 0 0
## 17455 2 0 0
## 17456 2 0 0
## 17457 2 0 0
## 17458 2 0 0
## 17459 2 0 0
## 17460 2 0 0
## 17461 2 0 0
## 17462 2 0 0
## 17463 2 0 0
## 17464 2 0 0
## 17465 2 0 0
## 17466 2 0 0
## 17467 2 0 0
## 17468 2 0 0
## 17469 3 0 0
## 17470 2 0 0
## 17471 3 0 0
## 17472 2 0 0
## 17473 1 0 0
## 17474 1 0 0
## 17475 1 0 0
## 17476 2 0 0
## 17477 2 0 0
## 17478 2 0 0
## 17479 2 0 0
## 17480 1 0 0
## 17481 2 0 0
## 17482 1 0 0
## 17483 3 0 0
## 17484 2 0 0
## 17485 2 0 0
## 17486 1 0 0
## 17487 1 0 0
## 17488 1 0 0
## 17489 1 0 0
## 17490 1 0 0
## 17491 2 0 0
## 17492 1 0 0
## 17493 2 0 0
## 17494 2 0 0
## 17495 2 0 0
## 17496 3 0 0
## 17497 2 0 0
## 17498 2 0 0
## 17499 2 0 0
## 17500 2 0 0
## 17501 1 0 0
## 17502 1 0 0
## 17503 1 0 0
## 17504 2 0 0
## 17505 2 0 0
## 17506 2 0 0
## 17507 1 0 0
## 17508 2 0 0
## 17509 1 0 0
## 17510 2 0 0
## 17511 1 0 0
## 17512 3 0 0
## 17513 1 0 0
## 17514 1 0 0
## 17515 2 0 0
## 17516 2 0 0
## 17517 2 0 0
## 17518 2 0 0
## 17519 2 0 0
## 17520 2 0 0
## 17521 2 0 0
## 17522 2 0 0
## 17523 2 0 0
## 17524 2 0 0
## 17525 2 0 0
## 17526 2 0 0
## 17527 2 0 0
## 17528 2 0 0
## 17529 2 0 0
## 17530 2 1 0
## 17531 2 0 0
## 17532 2 0 0
## 17533 2 0 0
## 17534 1 0 0
## 17535 2 0 0
## 17536 2 0 0
## 17537 2 0 0
## 17538 2 0 0
## 17539 1 0 0
## 17540 2 0 0
## 17541 1 0 0
## 17542 1 0 0
## 17543 1 0 0
## 17544 1 0 0
## 17545 1 0 0
## 17546 1 0 0
## 17547 1 0 0
## 17548 1 0 0
## 17549 2 0 0
## 17550 2 0 0
## 17551 2 0 0
## 17552 2 0 0
## 17553 2 0 0
## 17554 2 0 0
## 17555 2 0 0
## 17556 2 0 0
## 17557 2 0 0
## 17558 2 0 0
## 17559 2 0 0
## 17560 2 0 0
## 17561 2 0 0
## 17562 2 0 0
## 17563 1 0 0
## 17564 1 0 0
## 17565 2 0 0
## 17566 2 0 0
## 17567 1 0 0
## 17568 2 0 0
## 17569 2 0 0
## 17570 2 0 0
## 17571 2 0 0
## 17572 2 0 0
## 17573 2 0 0
## 17574 2 0 0
## 17575 1 0 0
## 17576 2 0 0
## 17577 1 0 0
## 17578 1 0 0
## 17579 1 0 0
## 17580 1 0 0
## 17581 1 0 0
## 17582 1 0 0
## 17583 1 0 0
## 17584 1 0 0
## 17585 1 0 0
## 17586 1 0 0
## 17587 1 0 0
## 17588 1 0 0
## 17589 1 0 0
## 17590 1 0 0
## 17591 1 0 0
## 17592 1 0 0
## 17593 2 0 0
## 17594 2 0 0
## 17595 1 0 0
## 17596 2 0 0
## 17597 1 0 0
## 17598 1 0 0
## 17599 1 0 0
## 17600 1 0 0
## 17601 1 0 0
## 17602 1 0 0
## 17603 3 1 0
## 17604 2 0 0
## 17605 2 0 0
## 17606 2 0 0
## 17607 2 0 0
## 17608 2 0 0
## 17609 2 1 0
## 17610 2 0 0
## 17611 2 2 0
## 17612 2 0 0
## 17613 2 0 0
## 17614 2 0 0
## 17615 1 0 0
## 17616 2 0 0
## 17617 2 0 0
## 17618 2 0 0
## 17619 1 0 0
## 17620 1 0 0
## 17621 1 0 0
## 17622 1 0 0
## 17623 1 0 0
## 17624 2 0 0
## 17625 2 0 0
## 17626 1 0 0
## 17627 1 0 0
## 17628 2 0 0
## 17629 2 0 0
## 17630 2 0 0
## 17631 2 0 0
## 17632 2 0 0
## 17633 2 0 0
## 17634 2 0 0
## 17635 2 0 0
## 17636 3 0 0
## 17637 2 0 0
## 17638 2 0 0
## 17639 2 0 0
## 17640 1 0 0
## 17641 2 0 0
## 17642 2 0 0
## 17643 2 0 0
## 17644 2 0 0
## 17645 2 0 0
## 17646 2 0 0
## 17647 1 0 0
## 17648 1 0 0
## 17649 1 0 0
## 17650 1 0 0
## 17651 1 0 0
## 17652 2 0 0
## 17653 1 0 0
## 17654 1 0 0
## 17655 2 0 0
## 17656 2 0 0
## 17657 1 0 0
## 17658 2 0 0
## 17659 2 0 0
## 17660 2 0 0
## 17661 1 0 0
## 17662 2 0 0
## 17663 1 0 0
## 17664 2 0 0
## 17665 2 0 0
## 17666 2 0 0
## 17667 1 0 0
## 17668 2 0 0
## 17669 2 0 0
## 17670 2 0 0
## 17671 1 0 0
## 17672 2 0 0
## 17673 2 0 0
## 17674 1 0 0
## 17675 2 0 0
## 17676 2 0 0
## 17677 2 0 0
## 17678 2 0 0
## 17679 2 0 0
## 17680 2 0 0
## 17681 2 0 0
## 17682 3 0 0
## 17683 2 0 0
## 17684 1 0 0
## 17685 1 0 0
## 17686 1 0 0
## 17687 2 0 0
## 17688 2 0 0
## 17689 2 0 0
## 17690 2 0 0
## 17691 2 0 0
## 17692 2 0 0
## 17693 2 0 0
## 17694 2 0 0
## 17695 1 0 0
## 17696 1 0 0
## 17697 1 0 0
## 17698 2 0 0
## 17699 2 0 0
## 17700 1 0 0
## 17701 1 0 0
## 17702 2 0 0
## 17703 2 0 0
## 17704 2 0 0
## 17705 1 0 0
## 17706 1 0 0
## 17707 1 0 0
## 17708 1 0 0
## 17709 1 0 0
## 17710 2 0 0
## 17711 1 0 0
## 17712 1 0 0
## 17713 1 0 0
## 17714 1 0 0
## 17715 1 0 0
## 17716 1 1 0
## 17717 1 0 0
## 17718 2 0 0
## 17719 1 0 0
## 17720 2 0 0
## 17721 1 0 0
## 17722 2 0 0
## 17723 1 0 0
## 17724 1 0 0
## 17725 2 0 0
## 17726 2 0 0
## 17727 2 0 0
## 17728 2 0 0
## 17729 1 0 0
## 17730 1 0 0
## 17731 2 0 0
## 17732 1 0 0
## 17733 1 0 0
## 17734 1 0 0
## 17735 1 0 0
## 17736 1 0 0
## 17737 2 0 0
## 17738 2 0 0
## 17739 1 0 0
## 17740 2 0 0
## 17741 1 0 0
## 17742 1 0 0
## 17743 1 0 0
## 17744 1 0 0
## 17745 2 0 0
## 17746 2 1 0
## 17747 1 0 0
## 17748 1 0 0
## 17749 1 0 0
## 17750 2 0 0
## 17751 1 0 0
## 17752 1 0 0
## 17753 1 0 0
## 17754 2 0 0
## 17755 2 0 0
## 17756 3 0 0
## 17757 1 0 0
## 17758 1 0 0
## 17759 1 0 0
## 17760 1 0 0
## 17761 1 0 0
## 17762 1 0 0
## 17763 2 1 0
## 17764 1 0 0
## 17765 1 0 0
## 17766 1 0 0
## 17767 2 0 0
## 17768 2 0 0
## 17769 1 0 0
## 17770 2 0 0
## 17771 1 0 0
## 17772 2 0 0
## 17773 2 0 0
## 17774 2 0 0
## 17775 1 0 0
## 17776 1 0 0
## 17777 1 0 0
## 17778 1 0 0
## 17779 1 0 0
## 17780 1 0 0
## 17781 1 0 0
## 17782 1 0 0
## 17783 1 0 0
## 17784 1 0 0
## 17785 1 0 0
## 17786 1 0 0
## 17787 1 0 0
## 17788 1 0 0
## 17789 1 0 0
## 17790 1 0 0
## 17791 1 0 0
## 17792 1 0 0
## 17793 1 0 0
## 17794 1 0 0
## 17795 1 0 0
## 17796 1 0 0
## 17797 1 0 0
## 17798 1 0 0
## 17799 1 0 0
## 17800 1 0 0
## 17801 1 0 0
## 17802 1 0 0
## 17803 1 0 0
## 17804 1 0 0
## 17805 1 0 0
## 17806 1 0 0
## 17807 1 0 0
## 17808 1 0 0
## 17809 1 0 0
## 17810 1 0 0
## 17811 2 0 0
## 17812 2 0 0
## 17813 1 0 0
## 17814 1 0 0
## 17815 1 0 0
## 17816 2 0 0
## 17817 2 0 0
## 17818 2 0 0
## 17819 2 0 0
## 17820 2 0 0
## 17821 2 0 0
## 17822 2 0 0
## 17823 2 0 0
## 17824 2 0 0
## 17825 2 2 0
## 17826 2 0 0
## 17827 2 0 0
## 17828 2 0 0
## 17829 2 0 0
## 17830 2 2 0
## 17831 2 0 0
## 17832 1 0 0
## 17833 1 0 0
## 17834 1 0 0
## 17835 2 0 0
## 17836 2 0 0
## 17837 2 0 0
## 17838 2 0 0
## 17839 2 0 0
## 17840 2 0 0
## 17841 2 0 0
## 17842 2 0 0
## 17843 2 0 0
## 17844 1 0 0
## 17845 1 0 0
## 17846 2 0 0
## 17847 2 0 0
## 17848 2 0 0
## 17849 1 0 0
## 17850 2 0 0
## 17851 2 0 0
## 17852 2 0 0
## 17853 1 0 0
## 17854 2 0 0
## 17855 2 0 0
## 17856 1 0 0
## 17857 2 0 0
## 17858 2 0 0
## 17859 2 1 0
## 17860 2 0 0
## 17861 2 0 0
## 17862 2 0 0
## 17863 1 0 0
## 17864 1 0 0
## 17865 2 0 0
## 17866 2 0 0
## 17867 2 0 0
## 17868 2 0 0
## 17869 2 1 0
## 17870 2 0 0
## 17871 2 0 0
## 17872 2 0 0
## 17873 2 0 0
## 17874 2 1 0
## 17875 1 0 0
## 17876 2 0 0
## 17877 2 0 0
## 17878 1 0 0
## 17879 2 0 0
## 17880 1 0 0
## 17881 1 0 0
## 17882 1 0 0
## 17883 1 0 0
## 17884 2 0 0
## 17885 1 0 0
## 17886 1 0 0
## 17887 1 0 0
## 17888 1 0 0
## 17889 1 0 0
## 17890 2 0 0
## 17891 1 0 0
## 17892 1 0 0
## 17893 2 0 0
## 17894 1 0 0
## 17895 1 0 0
## 17896 1 0 0
## 17897 2 0 0
## 17898 1 0 0
## 17899 1 0 0
## 17900 1 0 0
## 17901 1 0 0
## 17902 1 0 0
## 17903 2 0 0
## 17904 2 0 0
## 17905 2 0 0
## 17906 2 0 0
## 17907 2 0 0
## 17908 1 0 0
## 17909 1 0 0
## 17910 1 0 0
## 17911 2 0 0
## 17912 2 0 0
## 17913 1 0 0
## 17914 2 0 0
## 17915 2 0 0
## 17916 1 0 0
## 17917 2 0 0
## 17918 1 0 0
## 17919 2 0 0
## 17920 2 0 0
## 17921 2 0 0
## 17922 2 0 0
## 17923 2 0 0
## 17924 2 0 0
## 17925 2 0 0
## 17926 2 0 0
## 17927 2 0 0
## 17928 2 0 0
## 17929 2 0 0
## 17930 2 0 0
## 17931 2 0 0
## 17932 2 0 0
## 17933 2 0 0
## 17934 2 0 0
## 17935 2 0 0
## 17936 2 0 0
## 17937 2 0 0
## 17938 2 0 0
## 17939 2 0 0
## 17940 2 2 0
## 17941 2 0 0
## 17942 2 0 0
## 17943 2 0 0
## 17944 2 0 0
## 17945 2 1 0
## 17946 2 0 0
## 17947 1 0 0
## 17948 1 0 0
## 17949 2 0 0
## 17950 2 0 0
## 17951 2 0 0
## 17952 3 0 0
## 17953 2 0 0
## 17954 2 0 0
## 17955 2 0 0
## 17956 2 0 0
## 17957 2 0 0
## 17958 2 0 0
## 17959 2 0 0
## 17960 2 0 0
## 17961 2 0 0
## 17962 1 0 0
## 17963 2 0 0
## 17964 2 0 0
## 17965 2 0 0
## 17966 2 0 0
## 17967 2 0 0
## 17968 1 0 0
## 17969 2 0 0
## 17970 2 0 0
## 17971 2 0 0
## 17972 2 0 0
## 17973 1 0 0
## 17974 1 0 0
## 17975 1 0 0
## 17976 1 0 0
## 17977 2 0 0
## 17978 2 0 0
## 17979 1 0 0
## 17980 2 0 0
## 17981 1 0 0
## 17982 2 0 0
## 17983 3 0 0
## 17984 2 1 0
## 17985 1 0 0
## 17986 1 0 0
## 17987 2 0 0
## 17988 2 0 0
## 17989 2 0 0
## 17990 2 0 0
## 17991 3 0 0
## 17992 2 0 0
## 17993 2 0 0
## 17994 1 0 0
## 17995 1 0 0
## 17996 1 0 0
## 17997 2 0 0
## 17998 2 0 0
## 17999 2 0 0
## 18000 1 0 0
## 18001 2 0 0
## 18002 2 1 0
## 18003 1 0 0
## 18004 1 0 0
## 18005 2 0 0
## 18006 2 1 0
## 18007 1 0 0
## 18008 2 0 0
## 18009 1 0 0
## 18010 2 0 0
## 18011 2 0 0
## 18012 2 0 0
## 18013 2 0 0
## 18014 1 0 0
## 18015 2 0 0
## 18016 2 0 0
## 18017 2 0 0
## 18018 1 0 0
## 18019 1 0 0
## 18020 1 0 0
## 18021 1 0 0
## 18022 2 0 0
## 18023 2 0 0
## 18024 2 0 0
## 18025 1 0 0
## 18026 4 0 0
## 18027 2 0 0
## 18028 2 0 0
## 18029 1 0 0
## 18030 2 0 0
## 18031 2 0 0
## 18032 2 0 0
## 18033 1 0 0
## 18034 1 0 0
## 18035 2 2 0
## 18036 2 0 0
## 18037 1 0 0
## 18038 1 0 0
## 18039 1 0 0
## 18040 1 0 0
## 18041 1 0 0
## 18042 2 0 0
## 18043 2 0 0
## 18044 1 0 0
## 18045 1 0 0
## 18046 2 0 0
## 18047 2 0 0
## 18048 1 0 0
## 18049 1 0 0
## 18050 2 0 0
## 18051 2 0 0
## 18052 2 0 0
## 18053 2 0 0
## 18054 1 0 0
## 18055 1 0 0
## 18056 2 0 0
## 18057 1 0 0
## 18058 1 0 0
## 18059 1 0 0
## 18060 1 0 0
## 18061 2 0 0
## 18062 2 0 0
## 18063 1 0 0
## 18064 1 0 0
## 18065 1 0 0
## 18066 1 0 0
## 18067 1 0 0
## 18068 1 0 0
## 18069 2 0 0
## 18070 1 0 0
## 18071 1 0 0
## 18072 1 0 0
## 18073 2 0 0
## 18074 1 0 0
## 18075 1 0 0
## 18076 1 0 0
## 18077 1 0 0
## 18078 2 0 0
## 18079 2 0 0
## 18080 1 0 0
## 18081 2 0 0
## 18082 2 0 0
## 18083 1 0 0
## 18084 1 0 0
## 18085 1 0 0
## 18086 1 0 0
## 18087 1 0 0
## 18088 1 0 0
## 18089 1 0 0
## 18090 1 0 0
## 18091 2 0 0
## 18092 1 0 0
## 18093 1 0 0
## 18094 1 0 0
## 18095 2 0 0
## 18096 1 0 0
## 18097 1 0 0
## 18098 1 0 0
## 18099 1 0 0
## 18100 1 0 0
## 18101 2 0 0
## 18102 2 0 0
## 18103 1 0 0
## 18104 2 0 0
## 18105 1 0 0
## 18106 1 0 0
## 18107 1 0 0
## 18108 2 0 0
## 18109 1 0 0
## 18110 1 0 0
## 18111 1 0 0
## 18112 2 0 0
## 18113 2 0 0
## 18114 1 0 0
## 18115 2 2 0
## 18116 2 0 0
## 18117 2 0 0
## 18118 2 0 0
## 18119 2 0 0
## 18120 2 0 0
## 18121 2 1 0
## 18122 2 0 0
## 18123 2 0 0
## 18124 2 0 0
## 18125 2 0 0
## 18126 2 0 0
## 18127 2 0 0
## 18128 1 0 0
## 18129 2 0 0
## 18130 2 0 0
## 18131 2 0 0
## 18132 2 0 0
## 18133 2 0 0
## 18134 2 0 0
## 18135 2 0 0
## 18136 2 0 0
## 18137 2 0 0
## 18138 2 0 0
## 18139 2 0 0
## 18140 2 0 0
## 18141 2 0 0
## 18142 2 0 0
## 18143 2 0 0
## 18144 2 0 0
## 18145 2 0 0
## 18146 2 0 0
## 18147 2 0 0
## 18148 2 0 0
## 18149 2 0 0
## 18150 2 0 0
## 18151 2 0 0
## 18152 2 0 0
## 18153 2 0 0
## 18154 2 0 0
## 18155 2 0 0
## 18156 2 0 0
## 18157 2 0 0
## 18158 2 0 0
## 18159 1 0 0
## 18160 1 0 0
## 18161 1 0 0
## 18162 2 0 0
## 18163 1 0 0
## 18164 1 0 0
## 18165 1 0 0
## 18166 1 0 0
## 18167 2 0 0
## 18168 1 0 0
## 18169 1 0 0
## 18170 2 0 0
## 18171 2 0 0
## 18172 2 0 0
## 18173 2 0 0
## 18174 1 0 0
## 18175 2 0 0
## 18176 2 0 0
## 18177 2 0 0
## 18178 2 0 0
## 18179 2 0 0
## 18180 1 0 0
## 18181 2 0 0
## 18182 2 0 0
## 18183 1 0 0
## 18184 1 0 0
## 18185 1 0 0
## 18186 1 0 0
## 18187 1 0 0
## 18188 2 0 0
## 18189 2 0 0
## 18190 1 0 0
## 18191 1 0 0
## 18192 1 0 0
## 18193 1 0 0
## 18194 1 0 0
## 18195 1 0 0
## 18196 1 0 0
## 18197 1 0 0
## 18198 1 0 0
## 18199 1 0 0
## 18200 1 0 0
## 18201 1 0 0
## 18202 1 0 0
## 18203 1 0 0
## 18204 1 0 0
## 18205 1 0 0
## 18206 2 1 0
## 18207 1 0 0
## 18208 2 0 0
## 18209 2 0 0
## 18210 2 0 0
## 18211 2 0 0
## 18212 1 0 0
## 18213 1 0 0
## 18214 1 0 0
## 18215 2 0 0
## 18216 2 0 0
## 18217 2 0 0
## 18218 1 0 0
## 18219 1 0 0
## 18220 1 0 0
## 18221 1 0 0
## 18222 1 0 0
## 18223 1 0 0
## 18224 1 0 0
## 18225 2 0 0
## 18226 1 0 0
## 18227 1 0 0
## 18228 1 0 0
## 18229 1 0 0
## 18230 3 0 0
## 18231 1 0 0
## 18232 1 0 0
## 18233 1 0 0
## 18234 1 0 0
## 18235 2 0 0
## 18236 1 0 0
## 18237 1 0 0
## 18238 2 0 0
## 18239 1 0 0
## 18240 2 0 0
## 18241 1 0 0
## 18242 2 0 0
## 18243 1 0 0
## 18244 2 0 0
## 18245 2 0 0
## 18246 1 0 0
## 18247 1 0 0
## 18248 1 0 0
## 18249 1 0 0
## 18250 1 0 0
## 18251 2 0 0
## 18252 1 0 0
## 18253 2 0 0
## 18254 2 0 0
## 18255 2 0 0
## 18256 1 0 0
## 18257 2 0 0
## 18258 2 0 0
## 18259 2 0 0
## 18260 3 0 0
## 18261 1 0 0
## 18262 1 0 0
## 18263 1 0 0
## 18264 1 0 0
## 18265 1 0 0
## 18266 1 0 0
## 18267 1 0 0
## 18268 2 0 0
## 18269 2 0 0
## 18270 2 0 0
## 18271 1 0 0
## 18272 2 0 0
## 18273 1 0 0
## 18274 1 0 0
## 18275 1 0 0
## 18276 1 0 0
## 18277 2 0 0
## 18278 1 0 0
## 18279 1 0 0
## 18280 2 0 0
## 18281 1 0 0
## 18282 1 0 0
## 18283 2 0 0
## 18284 2 0 0
## 18285 2 0 0
## 18286 2 0 0
## 18287 1 0 0
## 18288 2 0 0
## 18289 2 0 0
## 18290 2 0 0
## 18291 2 0 0
## 18292 2 0 0
## 18293 2 0 0
## 18294 2 0 0
## 18295 2 0 0
## 18296 2 0 0
## 18297 2 0 0
## 18298 2 0 0
## 18299 1 0 0
## 18300 2 0 0
## 18301 2 0 0
## 18302 2 0 0
## 18303 2 0 0
## 18304 2 0 0
## 18305 2 0 0
## 18306 2 0 0
## 18307 2 0 0
## 18308 2 0 0
## 18309 2 0 0
## 18310 2 0 0
## 18311 2 0 0
## 18312 2 0 0
## 18313 2 0 0
## 18314 2 0 0
## 18315 2 0 0
## 18316 2 0 0
## 18317 2 0 0
## 18318 2 0 0
## 18319 2 0 0
## 18320 2 0 0
## 18321 2 0 0
## 18322 2 0 0
## 18323 2 0 0
## 18324 2 0 0
## 18325 1 0 0
## 18326 1 0 0
## 18327 1 0 0
## 18328 1 0 0
## 18329 2 0 0
## 18330 2 0 0
## 18331 2 0 0
## 18332 2 0 0
## 18333 2 0 0
## 18334 2 0 0
## 18335 2 0 0
## 18336 1 0 0
## 18337 2 0 0
## 18338 3 0 0
## 18339 3 0 0
## 18340 2 0 0
## 18341 2 0 0
## 18342 2 0 0
## 18343 2 0 0
## 18344 2 0 0
## 18345 2 0 0
## 18346 2 0 0
## 18347 2 0 0
## 18348 2 0 0
## 18349 1 0 0
## 18350 2 0 0
## 18351 2 0 0
## 18352 2 0 0
## 18353 2 0 0
## 18354 2 0 0
## 18355 2 0 0
## 18356 2 0 0
## 18357 2 0 0
## 18358 1 0 0
## 18359 2 0 0
## 18360 2 0 0
## 18361 2 0 0
## 18362 2 0 0
## 18363 2 2 0
## 18364 2 0 0
## 18365 2 0 0
## 18366 2 0 0
## 18367 2 0 0
## 18368 2 0 0
## 18369 2 0 0
## 18370 2 0 0
## 18371 1 0 0
## 18372 1 0 0
## 18373 1 0 0
## 18374 1 0 0
## 18375 2 0 0
## 18376 2 0 0
## 18377 2 0 0
## 18378 2 0 0
## 18379 2 0 0
## 18380 2 0 0
## 18381 2 0 0
## 18382 2 0 0
## 18383 2 0 0
## 18384 2 0 0
## 18385 1 0 0
## 18386 1 0 0
## 18387 1 0 0
## 18388 1 0 0
## 18389 1 0 0
## 18390 1 0 0
## 18391 2 0 0
## 18392 2 0 0
## 18393 2 2 0
## 18394 2 0 0
## 18395 1 0 0
## 18396 1 0 0
## 18397 2 0 0
## 18398 2 0 0
## 18399 2 0 0
## 18400 2 0 0
## 18401 1 0 0
## 18402 1 0 0
## 18403 1 0 0
## 18404 1 0 0
## 18405 1 0 0
## 18406 1 0 0
## 18407 1 0 0
## 18408 2 0 0
## 18409 1 0 0
## 18410 2 0 0
## 18411 2 0 0
## 18412 2 0 0
## 18413 2 0 0
## 18414 1 0 0
## 18415 1 0 0
## 18416 1 0 0
## 18417 1 0 0
## 18418 1 0 0
## 18419 1 0 0
## 18420 1 0 0
## 18421 1 0 0
## 18422 1 0 0
## 18423 1 0 0
## 18424 2 0 0
## 18425 2 0 0
## 18426 1 0 0
## 18427 1 0 0
## 18428 1 0 0
## 18429 1 0 0
## 18430 1 0 0
## 18431 2 0 0
## 18432 3 0 0
## 18433 2 0 0
## 18434 2 0 0
## 18435 2 0 0
## 18436 2 0 0
## 18437 1 0 0
## 18438 1 0 0
## 18439 1 0 0
## 18440 1 0 0
## 18441 1 0 0
## 18442 1 0 0
## 18443 1 0 0
## 18444 2 0 0
## 18445 1 0 0
## 18446 1 0 0
## 18447 1 0 0
## 18448 1 0 0
## 18449 1 0 0
## 18450 1 0 0
## 18451 1 0 0
## 18452 1 0 0
## 18453 1 0 0
## 18454 1 0 0
## 18455 1 0 0
## 18456 1 0 0
## 18457 2 0 0
## 18458 2 0 0
## 18459 1 0 0
## 18460 1 0 0
## 18461 1 0 0
## 18462 1 0 0
## 18463 1 0 0
## 18464 1 0 0
## 18465 1 0 0
## 18466 2 0 0
## 18467 2 1 0
## 18468 2 0 0
## 18469 1 0 0
## 18470 2 0 0
## 18471 2 0 0
## 18472 2 0 0
## 18473 2 0 0
## 18474 2 0 0
## 18475 2 0 0
## 18476 2 0 0
## 18477 2 0 0
## 18478 2 0 0
## 18479 2 0 0
## 18480 1 0 0
## 18481 1 0 0
## 18482 1 0 0
## 18483 1 0 0
## 18484 2 0 0
## 18485 2 0 0
## 18486 2 0 0
## 18487 1 0 0
## 18488 1 0 0
## 18489 1 0 0
## 18490 2 0 0
## 18491 2 0 0
## 18492 2 0 0
## 18493 2 0 0
## 18494 1 0 0
## 18495 2 0 0
## 18496 2 0 0
## 18497 2 0 0
## 18498 1 0 0
## 18499 1 0 0
## 18500 1 0 0
## 18501 1 0 0
## 18502 2 0 0
## 18503 2 0 0
## 18504 2 0 0
## 18505 2 0 0
## 18506 2 0 0
## 18507 2 0 0
## 18508 2 0 0
## 18509 1 0 0
## 18510 2 0 0
## 18511 2 0 0
## 18512 3 0 0
## 18513 1 0 0
## 18514 1 0 0
## 18515 2 0 0
## 18516 1 0 0
## 18517 1 0 0
## 18518 2 0 0
## 18519 1 0 0
## 18520 2 0 0
## 18521 2 0 0
## 18522 2 0 0
## 18523 2 0 0
## 18524 1 0 0
## 18525 2 0 0
## 18526 2 0 0
## 18527 2 0 0
## 18528 2 0 0
## 18529 2 0 0
## 18530 1 0 0
## 18531 2 0 0
## 18532 2 0 0
## 18533 2 0 0
## 18534 2 0 0
## 18535 2 0 0
## 18536 2 3 0
## 18537 2 3 0
## 18538 2 2 0
## 18539 2 2 0
## 18540 2 0 0
## 18541 2 0 0
## 18542 2 1 0
## 18543 2 1 0
## 18544 2 0 0
## 18545 2 0 0
## 18546 1 0 0
## 18547 2 0 0
## 18548 2 0 0
## 18549 2 0 0
## 18550 2 0 0
## 18551 2 0 0
## 18552 2 0 0
## 18553 2 0 0
## 18554 2 0 0
## 18555 2 0 0
## 18556 1 0 0
## 18557 2 0 0
## 18558 2 0 0
## 18559 2 0 0
## 18560 2 0 0
## 18561 2 0 0
## 18562 2 0 0
## 18563 2 0 0
## 18564 2 0 0
## 18565 2 0 0
## 18566 2 0 0
## 18567 3 0 0
## 18568 2 0 0
## 18569 2 0 0
## 18570 2 0 0
## 18571 2 0 0
## 18572 2 0 0
## 18573 2 0 0
## 18574 2 0 0
## 18575 2 0 0
## 18576 2 0 0
## 18577 2 0 0
## 18578 2 0 0
## 18579 2 0 0
## 18580 2 0 0
## 18581 2 0 0
## 18582 2 0 0
## 18583 3 0 0
## 18584 2 0 0
## 18585 2 0 0
## 18586 2 0 0
## 18587 2 0 0
## 18588 2 0 0
## 18589 2 0 0
## 18590 2 0 0
## 18591 2 0 0
## 18592 2 1 0
## 18593 2 0 0
## 18594 2 0 0
## 18595 2 0 0
## 18596 2 0 0
## 18597 1 0 0
## 18598 2 0 0
## 18599 2 0 0
## 18600 2 0 0
## 18601 2 0 0
## 18602 2 0 0
## 18603 2 0 0
## 18604 2 0 0
## 18605 2 0 0
## 18606 2 0 0
## 18607 2 0 0
## 18608 1 0 0
## 18609 2 0 0
## 18610 2 0 0
## 18611 2 0 0
## 18612 2 0 0
## 18613 2 0 0
## 18614 2 0 0
## 18615 2 0 0
## 18616 2 0 0
## 18617 2 2 0
## 18618 2 2 0
## 18619 2 0 0
## 18620 2 2 0
## 18621 2 0 0
## 18622 3 0 0
## 18623 2 0 0
## 18624 1 0 0
## 18625 1 0 0
## 18626 2 0 0
## 18627 1 0 0
## 18628 1 0 0
## 18629 1 0 0
## 18630 1 0 0
## 18631 2 0 0
## 18632 1 0 0
## 18633 2 0 0
## 18634 2 0 0
## 18635 2 0 0
## 18636 2 0 0
## 18637 3 0 0
## 18638 2 0 0
## 18639 2 0 0
## 18640 1 0 0
## 18641 1 0 0
## 18642 1 0 0
## 18643 2 0 0
## 18644 2 0 0
## 18645 2 0 0
## 18646 1 0 0
## 18647 1 0 0
## 18648 1 0 0
## 18649 2 0 0
## 18650 1 0 0
## 18651 1 0 0
## 18652 2 0 0
## 18653 1 0 0
## 18654 1 0 0
## 18655 1 0 0
## 18656 2 0 0
## 18657 2 0 0
## 18658 1 0 0
## 18659 2 0 0
## 18660 1 0 0
## 18661 1 0 0
## 18662 2 0 0
## 18663 2 0 0
## 18664 1 0 0
## 18665 2 0 0
## 18666 2 0 0
## 18667 2 0 0
## 18668 2 0 0
## 18669 2 0 0
## 18670 2 0 0
## 18671 2 0 0
## 18672 2 0 0
## 18673 2 0 0
## 18674 2 0 0
## 18675 2 0 0
## 18676 2 0 0
## 18677 1 0 0
## 18678 1 0 0
## 18679 1 0 0
## 18680 1 0 0
## 18681 2 0 0
## 18682 2 0 0
## 18683 1 0 0
## 18684 1 0 0
## 18685 2 2 0
## 18686 2 0 0
## 18687 1 0 0
## 18688 1 0 0
## 18689 2 0 0
## 18690 2 0 0
## 18691 2 2 0
## 18692 1 0 0
## 18693 1 0 0
## 18694 2 0 0
## 18695 2 0 0
## 18696 2 0 0
## 18697 2 0 0
## 18698 2 0 0
## 18699 2 0 0
## 18700 2 0 0
## 18701 2 0 0
## 18702 2 0 0
## 18703 2 0 0
## 18704 1 0 0
## 18705 2 0 0
## 18706 1 0 0
## 18707 1 0 0
## 18708 2 0 0
## 18709 1 0 0
## 18710 1 0 0
## 18711 1 0 0
## 18712 1 0 0
## 18713 1 0 0
## 18714 1 0 0
## 18715 1 0 0
## 18716 1 0 0
## 18717 1 0 0
## 18718 1 0 0
## 18719 1 0 0
## 18720 1 0 0
## 18721 1 0 0
## 18722 1 0 0
## 18723 1 0 0
## 18724 1 0 0
## 18725 1 0 0
## 18726 1 0 0
## 18727 1 0 0
## 18728 1 0 0
## 18729 1 0 0
## 18730 1 0 0
## 18731 1 0 0
## 18732 1 0 0
## 18733 1 0 0
## 18734 2 0 0
## 18735 1 0 0
## 18736 2 0 0
## 18737 1 0 0
## 18738 1 0 0
## 18739 1 0 0
## 18740 1 0 0
## 18741 1 0 0
## 18742 1 0 0
## 18743 1 0 0
## 18744 2 0 0
## 18745 1 0 0
## 18746 1 0 0
## 18747 1 0 0
## 18748 2 0 0
## 18749 1 0 0
## 18750 1 0 0
## 18751 1 0 0
## 18752 2 0 0
## 18753 1 0 0
## 18754 1 0 0
## 18755 1 0 0
## 18756 1 0 0
## 18757 1 0 0
## 18758 1 0 0
## 18759 1 0 0
## 18760 1 0 0
## 18761 2 0 0
## 18762 1 0 0
## 18763 2 0 0
## 18764 1 0 0
## 18765 2 0 0
## 18766 2 0 0
## 18767 1 0 0
## 18768 2 0 0
## 18769 2 0 0
## 18770 2 0 0
## 18771 2 0 0
## 18772 2 0 0
## 18773 2 0 0
## 18774 2 0 0
## 18775 2 0 0
## 18776 2 0 0
## 18777 2 0 0
## 18778 2 0 0
## 18779 2 0 0
## 18780 2 0 0
## 18781 2 0 0
## 18782 1 0 0
## 18783 2 0 0
## 18784 2 0 0
## 18785 2 0 0
## 18786 2 0 0
## 18787 2 0 0
## 18788 2 0 0
## 18789 2 0 0
## 18790 2 0 0
## 18791 2 0 0
## 18792 2 0 0
## 18793 2 0 0
## 18794 1 0 0
## 18795 2 0 0
## 18796 2 0 0
## 18797 1 0 0
## 18798 2 0 0
## 18799 2 0 0
## 18800 2 0 0
## 18801 2 0 0
## 18802 2 0 0
## 18803 2 0 0
## 18804 2 0 0
## 18805 2 0 0
## 18806 2 0 0
## 18807 2 0 0
## 18808 2 0 0
## 18809 2 0 0
## 18810 2 1 0
## 18811 3 2 0
## 18812 2 0 0
## 18813 2 0 0
## 18814 2 0 0
## 18815 1 0 0
## 18816 2 0 0
## 18817 2 0 0
## 18818 2 0 0
## 18819 2 0 0
## 18820 2 2 0
## 18821 2 0 0
## 18822 2 0 0
## 18823 2 0 0
## 18824 2 0 0
## 18825 2 0 0
## 18826 2 0 0
## 18827 2 0 0
## 18828 2 0 0
## 18829 2 0 0
## 18830 2 0 0
## 18831 2 1 0
## 18832 3 0 0
## 18833 2 0 0
## 18834 2 0 0
## 18835 2 0 0
## 18836 2 0 0
## 18837 2 0 0
## 18838 2 0 0
## 18839 2 0 0
## 18840 1 0 0
## 18841 1 0 0
## 18842 2 0 0
## 18843 2 0 0
## 18844 2 0 0
## 18845 2 0 0
## 18846 2 0 0
## 18847 2 0 0
## 18848 2 0 0
## 18849 2 0 0
## 18850 2 0 0
## 18851 2 0 0
## 18852 2 0 0
## 18853 2 0 0
## 18854 1 0 0
## 18855 1 0 0
## 18856 2 0 0
## 18857 2 0 0
## 18858 3 0 0
## 18859 2 0 0
## 18860 1 0 0
## 18861 2 0 0
## 18862 2 0 0
## 18863 2 0 0
## 18864 3 0 0
## 18865 3 0 0
## 18866 2 0 0
## 18867 1 0 0
## 18868 2 0 0
## 18869 2 0 0
## 18870 2 0 0
## 18871 2 0 0
## 18872 2 0 0
## 18873 2 0 0
## 18874 2 0 0
## 18875 2 0 0
## 18876 2 0 0
## 18877 2 0 0
## 18878 2 0 0
## 18879 2 2 0
## 18880 2 0 0
## 18881 2 0 0
## 18882 2 0 0
## 18883 2 0 0
## 18884 3 1 0
## 18885 2 2 0
## 18886 2 0 0
## 18887 2 0 0
## 18888 2 0 0
## 18889 2 0 0
## 18890 2 0 0
## 18891 1 0 0
## 18892 2 1 0
## 18893 2 0 0
## 18894 2 0 0
## 18895 2 0 0
## 18896 2 0 0
## 18897 2 2 0
## 18898 2 0 0
## 18899 2 0 0
## 18900 2 0 0
## 18901 2 0 0
## 18902 2 1 0
## 18903 2 0 0
## 18904 2 0 0
## 18905 2 0 0
## 18906 2 0 0
## 18907 2 0 0
## 18908 2 0 0
## 18909 2 0 0
## 18910 2 0 0
## 18911 2 0 0
## 18912 2 0 0
## 18913 2 1 0
## 18914 2 0 0
## 18915 2 0 0
## 18916 2 0 0
## 18917 2 0 0
## 18918 2 0 0
## 18919 2 0 0
## 18920 1 0 0
## 18921 1 0 0
## 18922 1 0 0
## 18923 1 0 0
## 18924 1 0 0
## 18925 1 0 0
## 18926 2 0 0
## 18927 2 0 0
## 18928 1 0 0
## 18929 2 0 0
## 18930 2 0 0
## 18931 1 0 0
## 18932 2 0 0
## 18933 2 0 0
## 18934 2 0 0
## 18935 2 0 0
## 18936 2 0 0
## 18937 1 0 0
## 18938 1 0 0
## 18939 2 0 0
## 18940 2 0 0
## 18941 1 0 0
## 18942 1 0 0
## 18943 1 0 0
## 18944 1 0 0
## 18945 1 0 0
## 18946 1 0 0
## 18947 1 0 0
## 18948 1 0 0
## 18949 1 0 0
## 18950 1 0 0
## 18951 2 0 0
## 18952 1 0 0
## 18953 2 0 0
## 18954 2 0 0
## 18955 1 0 0
## 18956 2 0 0
## 18957 1 0 0
## 18958 1 0 0
## 18959 2 0 0
## 18960 1 0 0
## 18961 1 0 0
## 18962 1 0 0
## 18963 2 0 0
## 18964 2 0 0
## 18965 1 0 0
## 18966 2 0 0
## 18967 2 0 0
## 18968 2 0 0
## 18969 2 0 0
## 18970 2 0 0
## 18971 2 0 0
## 18972 2 0 0
## 18973 2 0 0
## 18974 2 0 0
## 18975 2 0 0
## 18976 2 0 0
## 18977 2 0 0
## 18978 2 0 0
## 18979 2 0 0
## 18980 2 0 0
## 18981 2 0 0
## 18982 2 0 0
## 18983 2 0 0
## 18984 2 0 0
## 18985 2 0 0
## 18986 2 0 0
## 18987 2 0 0
## 18988 2 0 0
## 18989 2 0 0
## 18990 2 0 0
## 18991 2 0 0
## 18992 2 0 0
## 18993 2 0 0
## 18994 2 0 0
## 18995 2 0 0
## 18996 2 0 0
## 18997 2 0 0
## 18998 2 0 0
## 18999 2 0 0
## 19000 2 0 0
## 19001 2 0 0
## 19002 2 0 0
## 19003 2 0 0
## 19004 2 0 0
## 19005 2 0 0
## 19006 2 0 0
## 19007 2 0 0
## 19008 2 0 0
## 19009 2 0 0
## 19010 2 0 0
## 19011 2 0 0
## 19012 2 0 0
## 19013 2 0 0
## 19014 2 0 0
## 19015 2 0 0
## 19016 2 0 0
## 19017 2 0 0
## 19018 2 0 0
## 19019 2 0 0
## 19020 2 0 0
## 19021 2 0 0
## 19022 2 0 0
## 19023 2 0 0
## 19024 2 0 0
## 19025 2 0 0
## 19026 1 0 0
## 19027 1 0 0
## 19028 1 0 0
## 19029 1 0 0
## 19030 1 0 0
## 19031 2 0 0
## 19032 1 0 0
## 19033 1 0 0
## 19034 2 0 0
## 19035 1 0 0
## 19036 1 0 0
## 19037 1 0 0
## 19038 2 0 0
## 19039 1 0 0
## 19040 1 0 0
## 19041 2 0 0
## 19042 2 0 0
## 19043 2 0 0
## 19044 2 0 0
## 19045 3 0 0
## 19046 1 0 0
## 19047 2 0 0
## 19048 3 1 0
## 19049 1 0 0
## 19050 2 0 0
## 19051 2 0 0
## 19052 2 0 0
## 19053 2 0 0
## 19054 1 0 0
## 19055 2 0 0
## 19056 2 0 0
## 19057 2 0 0
## 19058 1 0 0
## 19059 2 0 0
## 19060 2 0 0
## 19061 2 0 0
## 19062 1 0 0
## 19063 2 0 0
## 19064 2 0 0
## 19065 2 0 0
## 19066 2 0 0
## 19067 2 2 0
## 19068 1 0 0
## 19069 2 0 0
## 19070 2 0 0
## 19071 2 0 0
## 19072 2 0 0
## 19073 2 2 0
## 19074 2 0 0
## 19075 2 0 0
## 19076 2 0 0
## 19077 2 0 0
## 19078 2 0 0
## 19079 2 0 0
## 19080 1 0 0
## 19081 2 0 0
## 19082 2 0 0
## 19083 1 0 0
## 19084 2 0 0
## 19085 2 0 0
## 19086 2 0 0
## 19087 2 1 0
## 19088 2 0 0
## 19089 3 1 0
## 19090 2 2 0
## 19091 2 1 0
## 19092 2 0 0
## 19093 2 0 0
## 19094 1 0 0
## 19095 2 0 0
## 19096 2 0 0
## 19097 2 0 0
## 19098 1 0 0
## 19099 2 0 0
## 19100 2 0 0
## 19101 2 0 0
## 19102 2 0 0
## 19103 2 0 0
## 19104 1 0 0
## 19105 2 0 0
## 19106 1 0 0
## 19107 1 0 0
## 19108 1 0 0
## 19109 2 0 0
## 19110 2 0 0
## 19111 1 0 0
## 19112 2 0 0
## 19113 2 0 0
## 19114 2 0 0
## 19115 2 0 0
## 19116 2 0 0
## 19117 2 0 0
## 19118 1 0 0
## 19119 1 0 0
## 19120 2 0 0
## 19121 1 0 0
## 19122 1 0 0
## 19123 2 0 0
## 19124 1 0 0
## 19125 1 0 0
## 19126 1 0 0
## 19127 2 0 0
## 19128 1 0 0
## 19129 2 0 0
## 19130 2 0 0
## 19131 1 0 0
## 19132 2 0 0
## 19133 1 0 0
## 19134 2 0 0
## 19135 1 0 0
## 19136 1 0 0
## 19137 1 0 0
## 19138 2 0 0
## 19139 1 0 0
## 19140 1 0 0
## 19141 1 0 0
## 19142 2 0 0
## 19143 2 0 0
## 19144 2 0 0
## 19145 1 0 0
## 19146 1 0 0
## 19147 1 0 0
## 19148 2 0 0
## 19149 2 0 0
## 19150 2 0 0
## 19151 2 0 0
## 19152 2 0 0
## 19153 1 0 0
## 19154 2 0 0
## 19155 2 0 0
## 19156 2 0 0
## 19157 2 0 0
## 19158 2 2 0
## 19159 2 0 0
## 19160 2 0 0
## 19161 1 0 0
## 19162 1 0 0
## 19163 1 0 0
## 19164 1 0 0
## 19165 1 0 0
## 19166 1 0 0
## 19167 1 0 0
## 19168 1 0 0
## 19169 1 0 0
## 19170 1 0 0
## 19171 1 0 0
## 19172 1 0 0
## 19173 1 0 0
## 19174 1 0 0
## 19175 1 0 0
## 19176 1 0 0
## 19177 2 0 0
## 19178 2 0 0
## 19179 2 0 0
## 19180 1 0 0
## 19181 1 0 0
## 19182 2 0 0
## 19183 1 0 0
## 19184 1 0 0
## 19185 1 0 0
## 19186 1 0 0
## 19187 1 0 0
## 19188 1 0 0
## 19189 1 0 0
## 19190 1 0 0
## 19191 1 0 0
## 19192 1 0 0
## 19193 2 0 0
## 19194 2 0 0
## 19195 2 0 0
## 19196 2 0 0
## 19197 1 0 0
## 19198 1 0 0
## 19199 2 0 0
## 19200 2 0 0
## 19201 2 0 0
## 19202 2 0 0
## 19203 2 0 0
## 19204 2 0 0
## 19205 2 0 0
## 19206 2 0 0
## 19207 2 0 0
## 19208 2 0 0
## 19209 2 0 0
## 19210 2 1 0
## 19211 1 0 0
## 19212 2 2 0
## 19213 2 0 0
## 19214 2 0 0
## 19215 2 0 0
## 19216 2 0 0
## 19217 1 0 0
## 19218 2 0 0
## 19219 2 0 0
## 19220 2 0 0
## 19221 2 0 0
## 19222 2 0 0
## 19223 2 0 0
## 19224 2 0 0
## 19225 2 0 0
## 19226 2 1 0
## 19227 2 0 0
## 19228 2 0 0
## 19229 2 0 0
## 19230 2 1 0
## 19231 2 0 0
## 19232 3 0 0
## 19233 1 0 0
## 19234 2 0 0
## 19235 2 0 0
## 19236 2 0 0
## 19237 2 0 0
## 19238 2 0 0
## 19239 2 0 0
## 19240 2 0 0
## 19241 2 0 0
## 19242 2 0 0
## 19243 2 0 0
## 19244 2 0 0
## 19245 2 0 0
## 19246 2 0 0
## 19247 2 0 0
## 19248 2 0 0
## 19249 1 0 0
## 19250 2 0 0
## 19251 1 0 0
## 19252 2 0 0
## 19253 1 0 0
## 19254 1 0 0
## 19255 2 0 0
## 19256 2 0 0
## 19257 2 1 0
## 19258 2 0 0
## 19259 2 0 0
## 19260 1 0 0
## 19261 1 0 0
## 19262 1 0 0
## 19263 2 0 0
## 19264 2 0 0
## 19265 2 0 0
## 19266 2 0 0
## 19267 2 0 0
## 19268 3 0 0
## 19269 2 0 0
## 19270 1 0 0
## 19271 1 0 0
## 19272 1 0 0
## 19273 1 0 0
## 19274 2 0 0
## 19275 2 0 0
## 19276 2 0 0
## 19277 1 0 0
## 19278 2 0 0
## 19279 2 0 0
## 19280 2 0 0
## 19281 2 1 0
## 19282 2 0 0
## 19283 2 0 0
## 19284 2 0 0
## 19285 2 1 0
## 19286 2 0 0
## 19287 2 0 0
## 19288 2 0 0
## 19289 2 0 0
## 19290 2 0 0
## 19291 2 2 0
## 19292 2 0 0
## 19293 1 0 0
## 19294 2 0 0
## 19295 2 2 0
## 19296 2 0 0
## 19297 2 0 0
## 19298 2 0 0
## 19299 2 0 0
## 19300 2 0 0
## 19301 2 1 0
## 19302 2 0 0
## 19303 2 0 0
## 19304 2 0 0
## 19305 2 0 0
## 19306 2 0 0
## 19307 2 0 0
## 19308 2 0 0
## 19309 2 1 0
## 19310 2 0 0
## 19311 2 1 0
## 19312 2 0 0
## 19313 1 0 0
## 19314 2 0 0
## 19315 1 0 0
## 19316 2 0 0
## 19317 2 0 0
## 19318 2 0 0
## 19319 2 0 0
## 19320 2 0 0
## 19321 2 0 0
## 19322 2 0 0
## 19323 2 0 0
## 19324 1 0 0
## 19325 2 0 0
## 19326 2 0 0
## 19327 2 0 0
## 19328 2 0 0
## 19329 2 2 0
## 19330 2 0 0
## 19331 2 0 0
## 19332 2 0 0
## 19333 2 0 0
## 19334 2 0 0
## 19335 2 2 0
## 19336 2 0 0
## 19337 1 0 0
## 19338 2 0 0
## 19339 2 0 0
## 19340 2 0 0
## 19341 2 0 0
## 19342 2 0 0
## 19343 2 0 0
## 19344 2 0 0
## 19345 2 0 0
## 19346 1 0 0
## 19347 1 0 0
## 19348 1 0 0
## 19349 1 0 0
## 19350 3 0 0
## 19351 2 0 0
## 19352 2 0 0
## 19353 2 0 0
## 19354 2 0 0
## 19355 2 0 0
## 19356 1 0 0
## 19357 2 0 0
## 19358 2 0 0
## 19359 2 0 0
## 19360 1 0 0
## 19361 2 0 0
## 19362 2 1 0
## 19363 2 0 0
## 19364 2 0 0
## 19365 2 0 0
## 19366 2 0 0
## 19367 1 0 0
## 19368 2 0 0
## 19369 2 0 0
## 19370 2 0 0
## 19371 2 0 0
## 19372 3 0 0
## 19373 1 0 0
## 19374 2 0 0
## 19375 2 0 0
## 19376 2 0 0
## 19377 2 0 0
## 19378 2 0 0
## 19379 1 0 0
## 19380 2 0 0
## 19381 2 0 0
## 19382 2 0 0
## 19383 1 0 0
## 19384 2 0 0
## 19385 2 0 0
## 19386 2 0 0
## 19387 1 0 0
## 19388 2 0 0
## 19389 2 0 0
## 19390 2 0 0
## 19391 2 0 0
## 19392 2 0 0
## 19393 2 0 0
## 19394 2 0 0
## 19395 1 0 0
## 19396 2 0 0
## 19397 2 0 0
## 19398 2 0 0
## 19399 1 0 0
## 19400 2 0 0
## 19401 2 0 0
## 19402 2 0 0
## 19403 2 0 0
## 19404 2 0 0
## 19405 1 0 0
## 19406 2 0 0
## 19407 2 0 0
## 19408 2 0 0
## 19409 2 0 0
## 19410 2 0 0
## 19411 2 0 0
## 19412 2 0 0
## 19413 2 1 0
## 19414 2 0 0
## 19415 2 0 0
## 19416 2 0 0
## 19417 3 0 0
## 19418 2 0 0
## 19419 2 0 0
## 19420 1 0 0
## 19421 2 0 0
## 19422 1 0 0
## 19423 1 0 0
## 19424 1 0 0
## 19425 2 0 0
## 19426 2 0 0
## 19427 2 0 0
## 19428 2 1 0
## 19429 2 0 0
## 19430 2 2 0
## 19431 2 0 0
## 19432 2 0 0
## 19433 2 1 0
## 19434 1 1 0
## 19435 3 0 0
## 19436 2 0 0
## 19437 2 0 0
## 19438 2 0 0
## 19439 2 0 0
## 19440 2 0 0
## 19441 1 0 0
## 19442 2 0 0
## 19443 2 1 0
## 19444 2 0 0
## 19445 2 0 0
## 19446 2 0 0
## 19447 2 0 0
## 19448 2 0 0
## 19449 2 0 0
## 19450 2 0 0
## 19451 2 0 0
## 19452 2 0 0
## 19453 2 0 0
## 19454 2 0 0
## 19455 2 0 0
## 19456 2 0 0
## 19457 2 0 0
## 19458 2 0 0
## 19459 2 0 0
## 19460 2 0 0
## 19461 2 0 0
## 19462 2 2 0
## 19463 2 0 0
## 19464 2 0 0
## 19465 2 0 0
## 19466 2 0 0
## 19467 2 0 0
## 19468 3 1 0
## 19469 3 1 0
## 19470 2 0 0
## 19471 2 0 0
## 19472 2 0 0
## 19473 2 0 0
## 19474 2 0 0
## 19475 2 0 0
## 19476 2 0 0
## 19477 2 0 0
## 19478 2 0 0
## 19479 2 1 0
## 19480 2 0 0
## 19481 2 0 0
## 19482 2 0 0
## 19483 2 0 0
## 19484 2 1 0
## 19485 2 0 0
## 19486 2 0 0
## 19487 2 0 0
## 19488 2 0 0
## 19489 2 0 0
## 19490 2 0 0
## 19491 2 0 0
## 19492 2 3 0
## 19493 2 2 0
## 19494 2 0 0
## 19495 2 0 0
## 19496 2 0 0
## 19497 2 0 0
## 19498 2 0 0
## 19499 2 0 0
## 19500 1 0 0
## 19501 1 0 0
## 19502 2 0 0
## 19503 2 0 0
## 19504 2 0 0
## 19505 2 0 0
## 19506 2 0 0
## 19507 2 0 0
## 19508 2 0 0
## 19509 2 0 0
## 19510 2 0 0
## 19511 2 0 0
## 19512 2 0 0
## 19513 2 0 0
## 19514 2 0 0
## 19515 2 0 0
## 19516 2 0 0
## 19517 2 0 0
## 19518 2 0 0
## 19519 2 0 0
## 19520 2 0 0
## 19521 1 0 0
## 19522 2 0 0
## 19523 2 0 0
## 19524 1 0 0
## 19525 2 0 0
## 19526 2 0 0
## 19527 2 0 0
## 19528 2 0 0
## 19529 1 0 0
## 19530 2 0 0
## 19531 2 0 0
## 19532 3 0 0
## 19533 2 0 0
## 19534 2 0 0
## 19535 2 0 0
## 19536 2 0 0
## 19537 2 0 0
## 19538 2 0 0
## 19539 2 0 0
## 19540 2 0 0
## 19541 2 0 0
## 19542 2 0 0
## 19543 2 0 0
## 19544 2 0 0
## 19545 2 0 0
## 19546 2 0 0
## 19547 2 0 0
## 19548 2 0 0
## 19549 2 0 0
## 19550 2 0 0
## 19551 2 0 0
## 19552 2 0 0
## 19553 2 0 0
## 19554 2 1 0
## 19555 2 1 0
## 19556 2 0 0
## 19557 2 0 0
## 19558 2 0 0
## 19559 2 0 0
## 19560 2 0 0
## 19561 2 0 0
## 19562 2 0 0
## 19563 2 0 0
## 19564 1 0 0
## 19565 2 0 0
## 19566 2 0 0
## 19567 2 0 0
## 19568 2 0 0
## 19569 2 0 0
## 19570 2 0 0
## 19571 2 0 0
## 19572 2 0 0
## 19573 2 0 0
## 19574 2 0 0
## 19575 3 0 0
## 19576 2 0 0
## 19577 2 0 0
## 19578 2 0 0
## 19579 2 0 0
## 19580 1 0 0
## 19581 2 0 0
## 19582 2 0 0
## 19583 2 0 0
## 19584 2 0 0
## 19585 2 0 0
## 19586 2 0 0
## 19587 2 0 0
## 19588 2 0 0
## 19589 2 0 0
## 19590 1 0 0
## 19591 2 0 0
## 19592 2 0 0
## 19593 2 0 0
## 19594 2 0 0
## 19595 2 0 0
## 19596 2 0 0
## 19597 2 0 0
## 19598 2 0 0
## 19599 2 0 0
## 19600 2 0 0
## 19601 2 0 0
## 19602 2 0 0
## 19603 2 0 0
## 19604 2 0 0
## 19605 2 0 0
## 19606 2 0 0
## 19607 2 0 0
## 19608 2 0 0
## 19609 2 0 0
## 19610 2 0 0
## 19611 2 0 0
## 19612 2 0 0
## 19613 1 0 0
## 19614 2 0 0
## 19615 1 0 0
## 19616 1 0 0
## 19617 1 0 0
## 19618 1 0 0
## 19619 2 0 0
## 19620 2 0 0
## 19621 1 0 0
## 19622 2 0 0
## 19623 1 0 0
## 19624 1 0 0
## 19625 2 0 0
## 19626 2 0 0
## 19627 2 0 0
## 19628 2 0 0
## 19629 2 0 0
## 19630 2 0 0
## 19631 2 0 0
## 19632 2 0 0
## 19633 2 0 0
## 19634 2 0 0
## 19635 1 0 0
## 19636 1 0 0
## 19637 2 0 0
## 19638 1 0 0
## 19639 1 0 0
## 19640 2 0 0
## 19641 2 0 0
## 19642 2 0 0
## 19643 1 0 0
## 19644 2 0 0
## 19645 2 0 0
## 19646 2 0 0
## 19647 2 0 0
## 19648 1 0 0
## 19649 1 0 0
## 19650 1 0 0
## 19651 1 0 0
## 19652 1 0 0
## 19653 1 0 0
## 19654 2 0 0
## 19655 2 0 0
## 19656 1 0 0
## 19657 2 0 0
## 19658 2 0 0
## 19659 2 0 0
## 19660 2 0 0
## 19661 2 0 0
## 19662 2 0 0
## 19663 2 0 0
## 19664 2 0 0
## 19665 2 0 0
## 19666 2 0 0
## 19667 2 0 0
## 19668 2 0 0
## 19669 2 0 0
## 19670 1 0 0
## 19671 1 0 0
## 19672 1 0 0
## 19673 2 0 0
## 19674 1 0 0
## 19675 3 0 0
## 19676 1 0 0
## 19677 2 0 0
## 19678 2 0 0
## 19679 2 0 0
## 19680 3 0 0
## 19681 2 0 0
## 19682 2 0 0
## 19683 2 0 0
## 19684 2 0 0
## 19685 2 0 0
## 19686 3 0 0
## 19687 2 0 0
## 19688 2 0 0
## 19689 2 0 0
## 19690 2 0 0
## 19691 2 0 0
## 19692 2 0 0
## 19693 2 0 0
## 19694 1 0 0
## 19695 2 0 0
## 19696 2 0 0
## 19697 2 0 0
## 19698 2 0 0
## 19699 2 0 0
## 19700 2 0 0
## 19701 1 0 0
## 19702 1 0 0
## 19703 2 0 0
## 19704 2 0 0
## 19705 2 0 0
## 19706 2 0 0
## 19707 2 0 0
## 19708 2 0 0
## 19709 2 0 0
## 19710 2 0 0
## 19711 2 0 0
## 19712 2 0 0
## 19713 1 0 0
## 19714 1 0 0
## 19715 2 0 0
## 19716 2 0 0
## 19717 1 0 0
## 19718 1 0 0
## 19719 1 0 0
## 19720 1 0 0
## 19721 1 0 0
## 19722 2 0 0
## 19723 2 0 0
## 19724 1 0 0
## 19725 1 0 0
## 19726 2 0 0
## 19727 2 0 0
## 19728 2 0 0
## 19729 2 0 0
## 19730 2 0 0
## 19731 2 0 0
## 19732 2 0 0
## 19733 2 0 0
## 19734 2 0 0
## 19735 2 0 0
## 19736 2 0 0
## 19737 2 0 0
## 19738 2 0 0
## 19739 2 0 0
## 19740 2 0 0
## 19741 1 0 0
## 19742 1 0 0
## 19743 1 0 0
## 19744 1 0 0
## 19745 1 0 0
## 19746 1 0 0
## 19747 2 0 0
## 19748 1 0 0
## 19749 1 0 0
## 19750 1 0 0
## 19751 1 0 0
## 19752 1 0 0
## 19753 1 0 0
## 19754 1 0 0
## 19755 1 0 0
## 19756 1 0 0
## 19757 1 0 0
## 19758 2 0 0
## 19759 2 0 0
## 19760 1 0 0
## 19761 1 0 0
## 19762 1 0 0
## 19763 2 0 0
## 19764 2 0 0
## 19765 2 0 0
## 19766 2 0 0
## 19767 1 0 0
## 19768 1 0 0
## 19769 2 0 0
## 19770 2 0 0
## 19771 1 0 0
## 19772 1 0 0
## 19773 1 0 0
## 19774 1 0 0
## 19775 1 0 0
## 19776 1 0 0
## 19777 1 0 0
## 19778 1 0 0
## 19779 1 0 0
## 19780 1 0 0
## 19781 2 0 0
## 19782 2 0 0
## 19783 1 0 0
## 19784 2 0 0
## 19785 2 0 0
## 19786 2 0 0
## 19787 1 0 0
## 19788 1 0 0
## 19789 2 0 0
## 19790 2 0 0
## 19791 2 0 0
## 19792 2 0 0
## 19793 2 0 0
## 19794 1 0 0
## 19795 1 0 0
## 19796 1 0 0
## 19797 2 0 0
## 19798 1 0 0
## 19799 2 0 0
## 19800 1 0 0
## 19801 2 0 0
## 19802 1 0 0
## 19803 1 0 0
## 19804 1 0 0
## 19805 1 0 0
## 19806 2 0 0
## 19807 2 0 0
## 19808 2 0 0
## 19809 2 0 0
## 19810 2 0 0
## 19811 1 0 0
## 19812 1 0 0
## 19813 1 0 0
## 19814 2 0 0
## 19815 1 0 0
## 19816 1 0 0
## 19817 2 0 0
## 19818 1 0 0
## 19819 2 0 0
## 19820 2 0 0
## 19821 1 0 0
## 19822 1 0 0
## 19823 2 0 0
## 19824 1 0 0
## 19825 1 0 0
## 19826 2 0 0
## 19827 2 0 0
## 19828 1 0 0
## 19829 1 0 0
## 19830 1 0 0
## 19831 2 0 0
## 19832 2 0 0
## 19833 1 0 0
## 19834 2 0 0
## 19835 2 2 0
## 19836 2 0 0
## 19837 2 0 0
## 19838 2 0 0
## 19839 2 0 0
## 19840 1 0 0
## 19841 2 0 0
## 19842 2 2 0
## 19843 2 0 0
## 19844 1 0 0
## 19845 2 0 0
## 19846 2 0 0
## 19847 2 0 0
## 19848 2 0 0
## 19849 1 0 0
## 19850 1 0 0
## 19851 2 0 0
## 19852 2 0 0
## 19853 1 0 0
## 19854 1 0 0
## 19855 1 0 0
## 19856 1 0 0
## 19857 1 0 0
## 19858 1 0 0
## 19859 2 0 0
## 19860 1 0 0
## 19861 1 0 0
## 19862 1 0 0
## 19863 1 0 0
## 19864 1 0 0
## 19865 1 0 0
## 19866 1 0 0
## 19867 1 0 0
## 19868 2 0 0
## 19869 1 0 0
## 19870 2 0 0
## 19871 2 0 0
## 19872 2 0 0
## 19873 2 0 0
## 19874 1 0 0
## 19875 2 0 0
## 19876 2 0 0
## 19877 2 0 0
## 19878 2 0 0
## 19879 2 0 0
## 19880 1 0 0
## 19881 2 0 0
## 19882 2 2 0
## 19883 2 0 0
## 19884 2 0 0
## 19885 2 0 0
## 19886 2 0 0
## 19887 2 1 0
## 19888 2 0 0
## 19889 2 2 0
## 19890 2 0 0
## 19891 2 0 0
## 19892 2 0 0
## 19893 2 0 0
## 19894 2 0 0
## 19895 2 0 0
## 19896 2 0 0
## 19897 2 0 0
## 19898 2 0 0
## 19899 2 0 0
## 19900 2 0 0
## 19901 2 0 0
## 19902 3 1 0
## 19903 1 0 0
## 19904 2 0 0
## 19905 2 0 0
## 19906 2 0 0
## 19907 2 1 0
## 19908 2 0 0
## 19909 2 0 0
## 19910 2 1 0
## 19911 3 0 0
## 19912 2 0 0
## 19913 2 0 0
## 19914 2 0 0
## 19915 2 0 0
## 19916 2 0 0
## 19917 2 0 0
## 19918 2 0 0
## 19919 2 0 0
## 19920 2 0 0
## 19921 2 0 0
## 19922 2 0 0
## 19923 1 0 0
## 19924 2 1 0
## 19925 2 0 0
## 19926 2 0 0
## 19927 1 0 0
## 19928 2 0 0
## 19929 2 0 0
## 19930 3 0 0
## 19931 2 0 0
## 19932 2 0 0
## 19933 2 0 0
## 19934 2 0 0
## 19935 2 0 0
## 19936 2 0 0
## 19937 2 0 0
## 19938 1 0 0
## 19939 1 0 0
## 19940 1 0 0
## 19941 1 0 0
## 19942 2 0 0
## 19943 1 0 0
## 19944 1 0 0
## 19945 1 0 0
## 19946 1 0 0
## 19947 1 0 0
## 19948 1 0 0
## 19949 1 0 0
## 19950 1 0 0
## 19951 1 0 0
## 19952 2 0 0
## 19953 2 0 0
## 19954 1 0 0
## 19955 1 0 0
## 19956 1 0 0
## 19957 2 0 0
## 19958 2 0 0
## 19959 1 0 0
## 19960 1 0 0
## 19961 1 0 0
## 19962 2 0 0
## 19963 2 0 0
## 19964 2 0 0
## 19965 2 0 0
## 19966 2 2 0
## 19967 1 0 0
## 19968 1 0 0
## 19969 1 0 0
## 19970 2 0 0
## 19971 1 0 0
## 19972 2 0 0
## 19973 2 0 0
## 19974 2 0 0
## 19975 2 0 0
## 19976 2 0 0
## 19977 2 0 0
## 19978 1 0 0
## 19979 2 0 0
## 19980 2 0 0
## 19981 2 0 0
## 19982 1 0 0
## 19983 2 0 0
## 19984 2 0 0
## 19985 2 0 0
## 19986 2 0 0
## 19987 2 0 0
## 19988 2 0 0
## 19989 2 0 0
## 19990 1 0 0
## 19991 2 0 0
## 19992 1 0 0
## 19993 1 0 0
## 19994 2 0 0
## 19995 1 0 0
## 19996 1 0 0
## 19997 1 0 0
## 19998 1 0 0
## 19999 1 0 0
## 20000 2 0 0
## 20001 1 0 0
## 20002 3 0 0
## 20003 2 0 0
## 20004 1 0 0
## 20005 2 1 0
## 20006 2 0 0
## 20007 1 0 0
## 20008 2 0 0
## 20009 1 0 0
## 20010 1 0 0
## 20011 2 0 0
## 20012 1 0 0
## 20013 1 0 0
## 20014 1 0 0
## 20015 1 0 0
## 20016 1 0 0
## 20017 2 0 0
## 20018 1 0 0
## 20019 1 0 0
## 20020 1 0 0
## 20021 1 0 0
## 20022 1 0 0
## 20023 1 0 0
## 20024 1 0 0
## 20025 1 0 0
## 20026 1 0 0
## 20027 1 0 0
## 20028 1 0 0
## 20029 2 0 0
## 20030 2 0 0
## 20031 1 0 0
## 20032 1 0 0
## 20033 1 0 0
## 20034 1 0 0
## 20035 1 0 0
## 20036 1 0 0
## 20037 1 0 0
## 20038 2 0 0
## 20039 2 0 0
## 20040 2 0 0
## 20041 2 0 0
## 20042 1 0 0
## 20043 2 0 0
## 20044 2 0 0
## 20045 2 1 0
## 20046 2 0 0
## 20047 2 0 0
## 20048 2 0 0
## 20049 2 0 0
## 20050 2 0 0
## 20051 1 0 0
## 20052 1 0 0
## 20053 2 0 0
## 20054 1 0 0
## 20055 2 0 0
## 20056 2 0 0
## 20057 2 0 0
## 20058 1 0 0
## 20059 2 0 0
## 20060 2 0 0
## 20061 2 1 0
## 20062 2 0 0
## 20063 2 0 0
## 20064 2 0 0
## 20065 2 0 0
## 20066 2 0 0
## 20067 2 0 0
## 20068 2 0 0
## 20069 1 0 0
## 20070 2 0 0
## 20071 2 0 0
## 20072 2 0 0
## 20073 2 0 0
## 20074 2 0 0
## 20075 2 0 0
## 20076 2 0 0
## 20077 2 0 0
## 20078 2 1 0
## 20079 2 0 0
## 20080 2 0 0
## 20081 2 0 0
## 20082 1 0 0
## 20083 2 0 0
## 20084 2 0 0
## 20085 2 0 0
## 20086 2 0 0
## 20087 2 0 0
## 20088 2 0 0
## 20089 2 0 0
## 20090 2 0 0
## 20091 2 0 0
## 20092 2 0 0
## 20093 2 0 0
## 20094 2 0 0
## 20095 2 0 0
## 20096 2 0 0
## 20097 1 0 0
## 20098 1 0 0
## 20099 1 0 0
## 20100 2 0 0
## 20101 2 0 0
## 20102 3 1 0
## 20103 2 0 0
## 20104 2 0 0
## 20105 2 0 0
## 20106 1 0 0
## 20107 2 0 0
## 20108 1 0 0
## 20109 2 0 0
## 20110 2 0 0
## 20111 2 0 0
## 20112 2 0 0
## 20113 2 0 0
## 20114 1 0 0
## 20115 2 0 0
## 20116 1 0 0
## 20117 1 0 0
## 20118 1 0 0
## 20119 1 0 0
## 20120 2 0 0
## 20121 1 0 0
## 20122 1 0 0
## 20123 1 0 0
## 20124 1 0 0
## 20125 1 0 0
## 20126 1 0 0
## 20127 2 0 0
## 20128 2 0 0
## 20129 2 0 0
## 20130 2 0 0
## 20131 2 0 0
## 20132 2 0 0
## 20133 3 0 0
## 20134 2 0 0
## 20135 1 0 0
## 20136 1 0 0
## 20137 1 0 0
## 20138 1 0 0
## 20139 1 0 0
## 20140 1 0 0
## 20141 1 0 0
## 20142 1 0 0
## 20143 1 0 0
## 20144 1 0 0
## 20145 2 0 0
## 20146 1 0 0
## 20147 1 0 0
## 20148 1 0 0
## 20149 2 0 0
## 20150 1 0 0
## 20151 1 0 0
## 20152 1 0 0
## 20153 1 0 0
## 20154 2 0 0
## 20155 1 0 0
## 20156 2 0 0
## 20157 1 0 0
## 20158 1 0 0
## 20159 3 1 0
## 20160 3 0 0
## 20161 3 0 0
## 20162 1 0 0
## 20163 1 0 0
## 20164 2 0 0
## 20165 1 0 0
## 20166 1 0 0
## 20167 2 0 0
## 20168 1 0 0
## 20169 2 0 0
## 20170 2 0 0
## 20171 2 0 0
## 20172 1 0 0
## 20173 2 0 0
## 20174 1 0 0
## 20175 1 0 0
## 20176 2 0 0
## 20177 2 0 0
## 20178 1 0 0
## 20179 1 0 0
## 20180 1 0 0
## 20181 1 0 0
## 20182 1 0 0
## 20183 1 0 0
## 20184 1 0 0
## 20185 1 0 0
## 20186 1 0 0
## 20187 1 0 0
## 20188 1 0 0
## 20189 1 0 0
## 20190 1 0 0
## 20191 1 0 0
## 20192 1 0 0
## 20193 1 0 0
## 20194 1 0 0
## 20195 1 0 0
## 20196 1 0 0
## 20197 1 0 0
## 20198 1 0 0
## 20199 1 0 0
## 20200 1 0 0
## 20201 1 0 0
## 20202 2 0 0
## 20203 1 0 0
## 20204 1 0 0
## 20205 2 0 0
## 20206 2 0 0
## 20207 2 0 0
## 20208 1 0 0
## 20209 2 0 0
## 20210 2 0 0
## 20211 2 2 0
## 20212 2 0 0
## 20213 1 1 0
## 20214 2 0 0
## 20215 2 0 0
## 20216 2 0 0
## 20217 2 2 0
## 20218 2 2 0
## 20219 2 2 0
## 20220 2 0 0
## 20221 2 0 0
## 20222 1 0 0
## 20223 2 0 0
## 20224 1 0 0
## 20225 2 0 0
## 20226 2 0 0
## 20227 1 0 0
## 20228 2 0 0
## 20229 1 0 0
## 20230 2 0 0
## 20231 2 0 0
## 20232 2 0 0
## 20233 2 0 0
## 20234 2 0 0
## 20235 1 0 0
## 20236 1 0 0
## 20237 2 0 0
## 20238 2 0 0
## 20239 2 0 0
## 20240 1 0 0
## 20241 1 0 0
## 20242 1 0 0
## 20243 2 0 0
## 20244 2 0 0
## 20245 2 0 0
## 20246 2 0 0
## 20247 2 0 0
## 20248 2 0 0
## 20249 2 0 0
## 20250 2 0 0
## 20251 2 1 0
## 20252 3 1 0
## 20253 2 1 0
## 20254 2 0 0
## 20255 1 0 0
## 20256 3 0 0
## 20257 2 2 0
## 20258 1 0 0
## 20259 1 0 0
## 20260 2 2 0
## 20261 2 0 0
## 20262 2 0 0
## 20263 2 0 0
## 20264 2 0 0
## 20265 2 0 0
## 20266 2 0 0
## 20267 2 0 0
## 20268 2 0 0
## 20269 2 0 0
## 20270 2 0 0
## 20271 2 0 0
## 20272 2 0 0
## 20273 2 0 0
## 20274 2 0 0
## 20275 2 0 0
## 20276 2 0 0
## 20277 2 0 0
## 20278 2 0 0
## 20279 2 0 0
## 20280 2 0 0
## 20281 2 0 0
## 20282 2 0 0
## 20283 2 0 0
## 20284 2 0 0
## 20285 2 1 0
## 20286 2 0 0
## 20287 2 0 0
## 20288 2 0 0
## 20289 1 0 0
## 20290 2 0 0
## 20291 2 0 0
## 20292 3 0 0
## 20293 3 0 0
## 20294 2 0 0
## 20295 2 0 0
## 20296 2 0 0
## 20297 2 1 0
## 20298 2 0 0
## 20299 2 0 0
## 20300 1 0 0
## 20301 2 0 0
## 20302 2 0 0
## 20303 2 0 0
## 20304 1 0 0
## 20305 1 0 0
## 20306 1 0 0
## 20307 2 0 0
## 20308 2 0 0
## 20309 2 0 0
## 20310 2 0 0
## 20311 1 0 0
## 20312 1 0 0
## 20313 1 0 0
## 20314 1 0 0
## 20315 2 0 0
## 20316 2 0 0
## 20317 2 0 0
## 20318 1 0 0
## 20319 1 0 0
## 20320 1 0 0
## 20321 1 0 0
## 20322 1 0 0
## 20323 1 0 0
## 20324 1 0 0
## 20325 2 0 0
## 20326 2 1 0
## 20327 2 0 0
## 20328 1 0 0
## 20329 1 0 0
## 20330 2 0 0
## 20331 2 0 0
## 20332 2 2 0
## 20333 2 0 0
## 20334 1 0 0
## 20335 1 0 0
## 20336 1 0 0
## 20337 1 0 0
## 20338 1 0 0
## 20339 1 0 0
## 20340 1 0 0
## 20341 1 0 0
## 20342 1 0 0
## 20343 1 0 0
## 20344 1 0 0
## 20345 1 0 0
## 20346 2 0 0
## 20347 1 0 0
## 20348 1 0 0
## 20349 1 0 0
## 20350 1 0 0
## 20351 1 0 0
## 20352 1 0 0
## 20353 1 0 0
## 20354 2 0 0
## 20355 1 0 0
## 20356 2 0 0
## 20357 1 0 0
## 20358 1 0 0
## 20359 1 0 0
## 20360 1 0 0
## 20361 2 0 0
## 20362 2 0 0
## 20363 2 0 0
## 20364 1 0 0
## 20365 2 0 0
## 20366 2 0 0
## 20367 1 0 0
## 20368 1 0 0
## 20369 1 0 0
## 20370 2 0 0
## 20371 1 0 0
## 20372 1 0 0
## 20373 1 0 0
## 20374 1 0 0
## 20375 1 0 0
## 20376 1 0 0
## 20377 2 0 0
## 20378 1 0 0
## 20379 1 0 0
## 20380 2 0 0
## 20381 1 0 0
## 20382 1 0 0
## 20383 1 0 0
## 20384 1 0 0
## 20385 1 0 0
## 20386 1 0 0
## 20387 1 0 0
## 20388 2 0 0
## 20389 2 0 0
## 20390 1 0 0
## 20391 2 0 0
## 20392 2 0 0
## 20393 2 0 0
## 20394 1 0 0
## 20395 1 0 0
## 20396 1 0 0
## 20397 1 0 0
## 20398 1 0 0
## 20399 1 0 0
## 20400 1 0 0
## 20401 2 0 0
## 20402 2 0 0
## 20403 2 0 0
## 20404 2 0 0
## 20405 1 0 0
## 20406 1 0 0
## 20407 2 0 0
## 20408 2 0 0
## 20409 2 0 0
## 20410 2 0 0
## 20411 2 0 0
## 20412 2 0 0
## 20413 2 0 0
## 20414 2 0 0
## 20415 2 0 0
## 20416 2 0 0
## 20417 1 0 0
## 20418 2 0 0
## 20419 2 0 0
## 20420 2 0 0
## 20421 2 0 0
## 20422 2 0 0
## 20423 2 0 0
## 20424 2 0 0
## 20425 2 0 0
## 20426 2 0 0
## 20427 2 0 0
## 20428 2 0 0
## 20429 2 0 0
## 20430 2 0 0
## 20431 2 0 0
## 20432 2 0 0
## 20433 1 0 0
## 20434 2 0 0
## 20435 2 0 0
## 20436 2 0 0
## 20437 2 0 0
## 20438 2 2 0
## 20439 2 0 0
## 20440 2 0 0
## 20441 2 0 0
## 20442 2 2 0
## 20443 2 0 0
## 20444 2 0 0
## 20445 1 0 0
## 20446 2 0 0
## 20447 2 0 0
## 20448 2 0 0
## 20449 2 0 0
## 20450 2 0 0
## 20451 2 0 0
## 20452 2 0 0
## 20453 2 0 0
## 20454 2 0 0
## 20455 2 0 0
## 20456 2 0 0
## 20457 2 0 0
## 20458 2 0 0
## 20459 2 0 0
## 20460 2 1 0
## 20461 2 0 0
## 20462 2 0 0
## 20463 2 0 0
## 20464 1 0 0
## 20465 2 0 0
## 20466 2 0 0
## 20467 2 0 0
## 20468 2 1 0
## 20469 2 0 0
## 20470 2 0 0
## 20471 2 0 0
## 20472 2 0 0
## 20473 1 0 0
## 20474 2 0 0
## 20475 2 0 0
## 20476 2 0 0
## 20477 2 0 0
## 20478 2 1 0
## 20479 2 0 0
## 20480 2 0 0
## 20481 2 0 0
## 20482 2 0 0
## 20483 2 0 0
## 20484 2 0 0
## 20485 2 0 0
## 20486 2 0 0
## 20487 2 0 0
## 20488 2 0 0
## 20489 2 0 0
## 20490 1 0 0
## 20491 2 0 0
## 20492 2 0 0
## 20493 2 0 0
## 20494 2 0 0
## 20495 1 0 0
## 20496 2 0 0
## 20497 1 0 0
## 20498 1 0 0
## 20499 2 0 0
## 20500 1 0 0
## 20501 2 0 0
## 20502 2 0 0
## 20503 2 0 0
## 20504 2 0 0
## 20505 1 0 0
## 20506 2 0 0
## 20507 2 0 0
## 20508 2 0 0
## 20509 2 0 0
## 20510 2 0 0
## 20511 2 0 0
## 20512 2 0 0
## 20513 2 0 0
## 20514 2 0 0
## 20515 2 0 0
## 20516 2 0 0
## 20517 2 0 0
## 20518 2 0 0
## 20519 2 0 0
## 20520 2 2 0
## 20521 2 2 0
## 20522 1 1 0
## 20523 2 0 0
## 20524 2 0 0
## 20525 2 0 0
## 20526 2 0 0
## 20527 2 0 0
## 20528 2 0 0
## 20529 2 0 0
## 20530 2 2 0
## 20531 2 0 0
## 20532 2 0 0
## 20533 3 2 0
## 20534 2 0 0
## 20535 2 0 0
## 20536 2 1 0
## 20537 2 1 0
## 20538 1 0 0
## 20539 2 0 0
## 20540 2 0 0
## 20541 2 0 0
## 20542 2 1 0
## 20543 1 0 0
## 20544 2 0 0
## 20545 2 0 0
## 20546 2 0 0
## 20547 2 0 0
## 20548 2 0 0
## 20549 2 0 0
## 20550 2 0 0
## 20551 2 0 0
## 20552 2 0 0
## 20553 2 0 0
## 20554 2 0 0
## 20555 2 0 0
## 20556 2 0 0
## 20557 2 0 0
## 20558 1 0 0
## 20559 2 0 0
## 20560 2 0 0
## 20561 2 0 0
## 20562 2 0 0
## 20563 2 0 0
## 20564 2 0 0
## 20565 2 0 0
## 20566 2 0 0
## 20567 2 0 0
## 20568 2 1 0
## 20569 2 0 0
## 20570 2 0 0
## 20571 2 0 0
## 20572 2 1 0
## 20573 2 0 0
## 20574 2 0 0
## 20575 3 0 0
## 20576 2 0 0
## 20577 2 0 0
## 20578 1 0 0
## 20579 2 1 0
## 20580 2 0 0
## 20581 2 0 0
## 20582 3 0 0
## 20583 1 0 0
## 20584 1 0 0
## 20585 1 0 0
## 20586 1 0 0
## 20587 1 0 0
## 20588 2 0 0
## 20589 2 0 0
## 20590 2 0 0
## 20591 1 0 0
## 20592 2 0 0
## 20593 1 0 0
## 20594 1 0 0
## 20595 1 0 0
## 20596 1 0 0
## 20597 1 0 0
## 20598 2 0 0
## 20599 2 0 0
## 20600 2 0 0
## 20601 1 0 0
## 20602 1 0 0
## 20603 1 0 0
## 20604 1 0 0
## 20605 1 0 0
## 20606 1 0 0
## 20607 1 0 0
## 20608 2 0 0
## 20609 2 0 0
## 20610 2 0 0
## 20611 2 0 0
## 20612 2 0 0
## 20613 2 0 0
## 20614 2 0 0
## 20615 1 0 0
## 20616 2 0 0
## 20617 1 0 0
## 20618 1 0 0
## 20619 1 0 0
## 20620 2 0 0
## 20621 2 0 0
## 20622 2 0 0
## 20623 2 0 0
## 20624 2 0 0
## 20625 2 0 0
## 20626 1 0 0
## 20627 1 0 0
## 20628 1 0 0
## 20629 2 1 0
## 20630 2 0 0
## 20631 2 0 0
## 20632 1 0 0
## 20633 2 0 0
## 20634 2 0 0
## 20635 2 0 0
## 20636 3 0 0
## 20637 2 0 0
## 20638 2 0 0
## 20639 2 0 0
## 20640 2 0 0
## 20641 2 0 0
## 20642 2 0 0
## 20643 2 0 0
## 20644 1 0 0
## 20645 1 0 0
## 20646 1 0 0
## 20647 1 0 0
## 20648 2 0 0
## 20649 2 0 0
## 20650 2 0 0
## 20651 2 0 0
## 20652 2 0 0
## 20653 2 0 0
## 20654 2 0 0
## 20655 2 0 0
## 20656 2 0 0
## 20657 2 0 0
## 20658 2 0 0
## 20659 2 0 0
## 20660 2 0 0
## 20661 2 0 0
## 20662 2 0 0
## 20663 2 0 0
## 20664 2 0 0
## 20665 2 0 0
## 20666 2 0 0
## 20667 2 0 0
## 20668 2 0 0
## 20669 2 0 0
## 20670 2 0 0
## 20671 2 0 0
## 20672 2 1 0
## 20673 1 0 0
## 20674 1 0 0
## 20675 1 0 0
## 20676 1 0 0
## 20677 1 0 0
## 20678 1 0 0
## 20679 1 0 0
## 20680 1 0 0
## 20681 1 0 0
## 20682 1 0 0
## 20683 2 0 0
## 20684 2 0 0
## 20685 2 2 0
## 20686 2 0 0
## 20687 2 0 0
## 20688 2 0 0
## 20689 2 0 0
## 20690 2 0 0
## 20691 2 0 0
## 20692 2 0 0
## 20693 2 0 0
## 20694 2 0 0
## 20695 2 0 0
## 20696 2 0 0
## 20697 2 0 0
## 20698 2 0 0
## 20699 2 0 0
## 20700 2 0 0
## 20701 2 0 0
## 20702 2 0 0
## 20703 2 0 0
## 20704 2 0 0
## 20705 2 0 0
## 20706 2 0 0
## 20707 2 0 0
## 20708 2 0 0
## 20709 2 0 0
## 20710 2 0 0
## 20711 2 0 0
## 20712 2 0 0
## 20713 2 0 0
## 20714 2 0 0
## 20715 2 0 0
## 20716 2 0 0
## 20717 2 0 0
## 20718 2 0 0
## 20719 2 0 0
## 20720 2 0 0
## 20721 2 0 0
## 20722 2 0 0
## 20723 2 0 0
## 20724 2 0 0
## 20725 2 0 0
## 20726 2 0 0
## 20727 2 0 0
## 20728 2 0 0
## 20729 2 2 0
## 20730 2 0 0
## 20731 2 0 0
## 20732 2 0 0
## 20733 2 0 0
## 20734 2 0 0
## 20735 2 0 0
## 20736 2 0 0
## 20737 2 0 0
## 20738 2 0 0
## 20739 2 0 0
## 20740 2 0 0
## 20741 2 0 0
## 20742 2 0 0
## 20743 2 0 0
## 20744 2 0 0
## 20745 2 0 0
## 20746 2 0 0
## 20747 2 0 0
## 20748 2 0 0
## 20749 1 0 0
## 20750 2 0 0
## 20751 2 0 0
## 20752 2 0 0
## 20753 2 0 0
## 20754 2 0 0
## 20755 2 0 0
## 20756 2 0 0
## 20757 2 0 0
## 20758 2 0 0
## 20759 2 0 0
## 20760 2 0 0
## 20761 2 0 0
## 20762 2 0 0
## 20763 2 0 0
## 20764 2 0 0
## 20765 2 3 0
## 20766 2 0 0
## 20767 2 0 0
## 20768 2 0 0
## 20769 2 0 0
## 20770 2 1 0
## 20771 2 0 0
## 20772 2 0 0
## 20773 2 0 0
## 20774 2 0 0
## 20775 2 0 0
## 20776 2 0 0
## 20777 2 0 0
## 20778 2 0 0
## 20779 2 0 0
## 20780 2 0 0
## 20781 2 0 0
## 20782 2 0 0
## 20783 2 0 0
## 20784 2 0 0
## 20785 2 0 0
## 20786 2 0 0
## 20787 2 0 0
## 20788 1 0 0
## 20789 2 0 0
## 20790 2 0 0
## 20791 2 1 0
## 20792 1 0 0
## 20793 2 0 0
## 20794 2 0 0
## 20795 2 1 0
## 20796 1 0 0
## 20797 1 0 0
## 20798 2 0 0
## 20799 2 0 0
## 20800 2 0 0
## 20801 2 0 0
## 20802 2 0 0
## 20803 2 0 0
## 20804 1 0 0
## 20805 1 0 0
## 20806 1 0 0
## 20807 1 0 0
## 20808 2 0 0
## 20809 2 0 0
## 20810 2 0 0
## 20811 1 0 0
## 20812 2 0 0
## 20813 1 0 0
## 20814 2 0 0
## 20815 1 0 0
## 20816 1 0 0
## 20817 2 0 0
## 20818 1 0 0
## 20819 2 0 0
## 20820 1 0 0
## 20821 1 0 0
## 20822 1 0 0
## 20823 1 0 0
## 20824 2 0 0
## 20825 2 0 0
## 20826 2 0 0
## 20827 2 0 0
## 20828 2 0 0
## 20829 2 0 0
## 20830 2 0 0
## 20831 2 2 0
## 20832 2 0 0
## 20833 2 1 0
## 20834 2 0 0
## 20835 1 0 0
## 20836 1 0 0
## 20837 1 0 0
## 20838 1 0 0
## 20839 1 0 0
## 20840 1 0 0
## 20841 2 0 0
## 20842 3 1 0
## 20843 1 0 0
## 20844 1 0 0
## 20845 1 0 0
## 20846 2 0 0
## 20847 2 0 0
## 20848 1 0 0
## 20849 2 0 0
## 20850 1 0 0
## 20851 2 0 0
## 20852 2 0 0
## 20853 2 0 0
## 20854 2 0 0
## 20855 2 0 0
## 20856 2 0 0
## 20857 2 0 0
## 20858 2 0 0
## 20859 2 0 0
## 20860 1 1 0
## 20861 2 1 0
## 20862 2 0 0
## 20863 2 0 0
## 20864 1 0 0
## 20865 1 0 0
## 20866 2 0 0
## 20867 2 0 0
## 20868 2 0 0
## 20869 1 0 0
## 20870 1 0 0
## 20871 2 0 0
## 20872 1 0 0
## 20873 1 0 0
## 20874 1 0 0
## 20875 1 0 0
## 20876 1 0 0
## 20877 1 0 0
## 20878 1 0 0
## 20879 1 0 0
## 20880 1 0 0
## 20881 1 0 0
## 20882 1 0 0
## 20883 1 0 0
## 20884 2 0 0
## 20885 1 0 0
## 20886 1 0 0
## 20887 2 0 0
## 20888 2 1 0
## 20889 2 2 0
## 20890 2 0 0
## 20891 2 0 0
## 20892 2 0 0
## 20893 1 0 0
## 20894 1 0 0
## 20895 2 1 0
## 20896 1 0 0
## 20897 1 0 0
## 20898 2 0 0
## 20899 2 2 0
## 20900 2 0 0
## 20901 1 0 0
## 20902 2 0 0
## 20903 1 0 0
## 20904 2 0 0
## 20905 2 0 0
## 20906 1 0 0
## 20907 2 0 0
## 20908 1 0 0
## 20909 2 0 0
## 20910 2 0 0
## 20911 1 0 0
## 20912 1 0 0
## 20913 2 0 0
## 20914 1 0 0
## 20915 2 0 0
## 20916 2 1 0
## 20917 2 0 0
## 20918 2 0 0
## 20919 2 0 0
## 20920 1 0 0
## 20921 1 0 0
## 20922 1 0 0
## 20923 2 0 0
## 20924 2 0 0
## 20925 2 0 0
## 20926 2 0 0
## 20927 2 0 0
## 20928 2 0 0
## 20929 2 0 0
## 20930 1 0 0
## 20931 1 0 0
## 20932 2 0 0
## 20933 3 0 0
## 20934 2 0 0
## 20935 2 0 0
## 20936 2 2 0
## 20937 2 0 0
## 20938 2 0 0
## 20939 2 0 0
## 20940 2 0 0
## 20941 1 0 0
## 20942 2 0 0
## 20943 2 0 0
## 20944 3 0 0
## 20945 2 0 0
## 20946 2 0 0
## 20947 2 0 0
## 20948 2 0 0
## 20949 2 0 0
## 20950 2 0 0
## 20951 2 0 0
## 20952 2 0 0
## 20953 3 0 0
## 20954 2 0 0
## 20955 1 0 0
## 20956 2 1 0
## 20957 2 0 0
## 20958 2 0 0
## 20959 2 0 0
## 20960 2 0 0
## 20961 2 0 0
## 20962 2 0 0
## 20963 2 0 0
## 20964 2 0 0
## 20965 2 0 0
## 20966 2 1 0
## 20967 2 0 0
## 20968 2 0 0
## 20969 2 0 0
## 20970 2 0 0
## 20971 2 0 0
## 20972 2 0 0
## 20973 2 0 0
## 20974 2 0 0
## 20975 2 0 0
## 20976 2 0 0
## 20977 2 0 0
## 20978 2 0 0
## 20979 1 0 0
## 20980 2 0 0
## 20981 2 0 0
## 20982 2 0 0
## 20983 2 0 0
## 20984 3 0 0
## 20985 1 0 0
## 20986 1 0 0
## 20987 1 0 0
## 20988 1 0 0
## 20989 1 0 0
## 20990 1 0 0
## 20991 2 0 0
## 20992 1 0 0
## 20993 1 0 0
## 20994 1 0 0
## 20995 1 0 0
## 20996 2 0 0
## 20997 2 0 0
## 20998 2 0 0
## 20999 1 0 0
## 21000 2 0 0
## 21001 2 0 0
## 21002 1 0 0
## 21003 1 0 0
## 21004 1 0 0
## 21005 2 0 0
## 21006 1 0 0
## 21007 1 0 0
## 21008 2 0 0
## 21009 1 0 0
## 21010 1 0 0
## 21011 3 0 0
## 21012 2 0 0
## 21013 2 0 0
## 21014 1 0 0
## 21015 2 0 0
## 21016 1 0 0
## 21017 2 1 0
## 21018 2 0 0
## 21019 2 0 0
## 21020 1 0 0
## 21021 1 0 0
## 21022 2 0 0
## 21023 2 0 0
## 21024 2 0 0
## 21025 2 0 0
## 21026 1 0 0
## 21027 1 0 0
## 21028 2 0 0
## 21029 2 0 0
## 21030 2 0 0
## 21031 2 0 0
## 21032 2 0 0
## 21033 1 0 0
## 21034 1 0 0
## 21035 2 0 0
## 21036 2 0 0
## 21037 1 0 0
## 21038 1 0 0
## 21039 1 0 0
## 21040 1 0 0
## 21041 1 0 0
## 21042 2 0 0
## 21043 2 0 0
## 21044 2 0 0
## 21045 2 0 0
## 21046 2 0 0
## 21047 2 0 0
## 21048 2 0 0
## 21049 2 0 0
## 21050 2 0 0
## 21051 2 0 0
## 21052 2 0 0
## 21053 2 0 0
## 21054 2 0 0
## 21055 2 0 0
## 21056 2 0 0
## 21057 2 0 0
## 21058 2 0 0
## 21059 1 0 0
## 21060 1 0 0
## 21061 1 0 0
## 21062 1 0 0
## 21063 1 0 0
## 21064 1 0 0
## 21065 2 0 0
## 21066 1 0 0
## 21067 1 0 0
## 21068 1 0 0
## 21069 1 0 0
## 21070 1 0 0
## 21071 2 0 0
## 21072 1 0 0
## 21073 2 2 0
## 21074 1 0 0
## 21075 2 0 0
## 21076 1 0 0
## 21077 1 0 0
## 21078 2 0 0
## 21079 1 0 0
## 21080 1 0 0
## 21081 1 0 0
## 21082 2 0 0
## 21083 2 0 0
## 21084 1 0 0
## 21085 1 0 0
## 21086 1 0 0
## 21087 1 0 0
## 21088 1 0 0
## 21089 2 0 0
## 21090 2 1 0
## 21091 1 0 0
## 21092 1 0 0
## 21093 2 0 0
## 21094 2 0 0
## 21095 1 0 0
## 21096 1 0 0
## 21097 1 0 0
## 21098 1 0 0
## 21099 1 0 0
## 21100 2 0 0
## 21101 1 0 0
## 21102 1 0 0
## 21103 1 0 0
## 21104 2 0 0
## 21105 1 0 0
## 21106 2 0 0
## 21107 2 0 0
## 21108 2 0 0
## 21109 2 0 0
## 21110 1 0 0
## 21111 1 0 0
## 21112 2 0 0
## 21113 2 0 0
## 21114 2 0 0
## 21115 1 0 0
## 21116 2 0 0
## 21117 2 0 0
## 21118 1 0 0
## 21119 2 0 0
## 21120 2 0 0
## 21121 2 0 0
## 21122 1 0 0
## 21123 2 0 0
## 21124 1 0 0
## 21125 2 0 0
## 21126 2 0 0
## 21127 2 0 0
## 21128 2 1 0
## 21129 1 0 0
## 21130 2 0 0
## 21131 2 0 0
## 21132 2 0 0
## 21133 2 0 0
## 21134 2 2 0
## 21135 2 0 0
## 21136 2 0 0
## 21137 2 0 0
## 21138 3 1 0
## 21139 2 0 0
## 21140 2 0 0
## 21141 2 0 0
## 21142 2 0 0
## 21143 2 0 0
## 21144 2 2 0
## 21145 2 0 0
## 21146 2 2 0
## 21147 2 0 0
## 21148 2 0 0
## 21149 2 0 0
## 21150 2 0 0
## 21151 2 0 0
## 21152 3 0 0
## 21153 2 0 0
## 21154 2 1 0
## 21155 2 0 0
## 21156 1 0 0
## 21157 2 0 0
## 21158 2 0 0
## 21159 2 0 0
## 21160 2 0 0
## 21161 1 0 0
## 21162 1 0 0
## 21163 1 0 0
## 21164 2 2 0
## 21165 2 0 0
## 21166 2 0 0
## 21167 1 0 0
## 21168 1 0 0
## 21169 3 0 0
## 21170 2 0 0
## 21171 2 2 0
## 21172 2 0 0
## 21173 2 0 0
## 21174 2 0 0
## 21175 2 0 0
## 21176 2 0 0
## 21177 2 0 0
## 21178 2 0 0
## 21179 1 0 0
## 21180 2 0 0
## 21181 2 0 0
## 21182 2 0 0
## 21183 2 0 0
## 21184 2 0 0
## 21185 2 0 0
## 21186 2 0 0
## 21187 2 0 0
## 21188 2 0 0
## 21189 2 0 0
## 21190 2 0 0
## 21191 2 0 0
## 21192 2 0 0
## 21193 2 0 0
## 21194 1 0 0
## 21195 2 0 0
## 21196 2 0 0
## 21197 2 0 0
## 21198 2 0 0
## 21199 2 0 0
## 21200 2 0 0
## 21201 2 0 0
## 21202 2 0 0
## 21203 2 0 0
## 21204 2 0 0
## 21205 2 0 0
## 21206 2 0 0
## 21207 2 0 0
## 21208 2 0 0
## 21209 3 1 0
## 21210 2 0 0
## 21211 2 2 0
## 21212 2 2 0
## 21213 2 1 0
## 21214 2 1 0
## 21215 2 2 0
## 21216 2 0 0
## 21217 2 0 0
## 21218 2 0 0
## 21219 1 0 0
## 21220 2 0 0
## 21221 2 0 0
## 21222 2 0 0
## 21223 2 0 0
## 21224 2 0 0
## 21225 2 0 0
## 21226 2 0 0
## 21227 2 0 0
## 21228 2 0 0
## 21229 2 0 0
## 21230 1 0 0
## 21231 1 0 0
## 21232 2 0 0
## 21233 1 0 0
## 21234 2 0 0
## 21235 2 0 0
## 21236 2 0 0
## 21237 2 0 0
## 21238 2 0 0
## 21239 1 0 0
## 21240 3 0 0
## 21241 1 0 0
## 21242 1 0 0
## 21243 1 0 0
## 21244 2 0 0
## 21245 1 0 0
## 21246 1 0 0
## 21247 1 0 0
## 21248 1 0 0
## 21249 1 0 0
## 21250 1 0 0
## 21251 1 0 0
## 21252 1 0 0
## 21253 1 0 0
## 21254 1 0 0
## 21255 1 0 0
## 21256 1 0 0
## 21257 1 0 0
## 21258 2 0 0
## 21259 1 0 0
## 21260 1 0 0
## 21261 1 0 0
## 21262 2 0 0
## 21263 1 0 0
## 21264 2 0 0
## 21265 1 0 0
## 21266 2 0 0
## 21267 2 0 0
## 21268 2 0 0
## 21269 2 0 0
## 21270 2 0 0
## 21271 2 0 0
## 21272 2 0 0
## 21273 2 0 0
## 21274 2 0 0
## 21275 2 0 0
## 21276 1 0 0
## 21277 2 0 0
## 21278 1 0 0
## 21279 1 0 0
## 21280 2 0 0
## 21281 1 0 0
## 21282 1 0 0
## 21283 1 0 0
## 21284 2 0 0
## 21285 2 0 0
## 21286 2 0 0
## 21287 2 0 0
## 21288 2 0 0
## 21289 2 0 0
## 21290 2 0 0
## 21291 2 0 0
## 21292 2 0 0
## 21293 2 0 0
## 21294 1 0 0
## 21295 1 0 0
## 21296 2 0 0
## 21297 2 0 0
## 21298 2 0 0
## 21299 2 0 0
## 21300 2 0 0
## 21301 2 0 0
## 21302 1 0 0
## 21303 2 0 0
## 21304 2 2 0
## 21305 2 0 0
## 21306 2 0 0
## 21307 2 0 0
## 21308 1 0 0
## 21309 1 0 0
## 21310 1 0 0
## 21311 1 0 0
## 21312 1 0 0
## 21313 2 0 0
## 21314 2 1 0
## 21315 1 0 0
## 21316 1 0 0
## 21317 2 0 0
## 21318 2 0 0
## 21319 2 0 0
## 21320 3 0 0
## 21321 2 0 0
## 21322 2 0 0
## 21323 2 0 0
## 21324 1 0 0
## 21325 1 0 0
## 21326 2 0 0
## 21327 2 0 0
## 21328 1 0 0
## 21329 1 0 0
## 21330 2 0 0
## 21331 2 0 0
## 21332 1 0 0
## 21333 1 0 0
## 21334 2 0 0
## 21335 2 0 0
## 21336 2 0 0
## 21337 2 0 0
## 21338 2 0 0
## 21339 2 0 0
## 21340 2 0 0
## 21341 2 0 0
## 21342 2 0 0
## 21343 2 1 0
## 21344 2 0 0
## 21345 2 0 0
## 21346 1 0 0
## 21347 2 0 0
## 21348 2 0 0
## 21349 2 0 0
## 21350 2 0 0
## 21351 2 2 0
## 21352 2 0 0
## 21353 1 0 0
## 21354 1 0 0
## 21355 1 0 0
## 21356 2 0 0
## 21357 2 0 0
## 21358 2 0 0
## 21359 1 0 0
## 21360 1 1 0
## 21361 2 0 0
## 21362 2 0 0
## 21363 2 0 0
## 21364 2 0 0
## 21365 2 0 0
## 21366 2 0 0
## 21367 1 0 0
## 21368 2 0 0
## 21369 2 0 0
## 21370 2 0 0
## 21371 2 0 0
## 21372 2 1 0
## 21373 2 2 0
## 21374 2 0 0
## 21375 2 0 0
## 21376 2 0 0
## 21377 2 0 0
## 21378 2 0 0
## 21379 2 0 0
## 21380 2 0 0
## 21381 2 0 0
## 21382 2 0 0
## 21383 2 0 0
## 21384 2 0 0
## 21385 2 0 0
## 21386 2 0 0
## 21387 2 0 0
## 21388 3 0 0
## 21389 1 0 0
## 21390 2 0 0
## 21391 2 0 0
## 21392 2 0 0
## 21393 2 0 0
## 21394 2 0 0
## 21395 2 0 0
## 21396 2 0 0
## 21397 2 0 0
## 21398 2 0 0
## 21399 2 0 0
## 21400 1 0 0
## 21401 1 0 0
## 21402 2 0 0
## 21403 2 0 0
## 21404 2 0 0
## 21405 2 0 0
## 21406 1 0 0
## 21407 1 0 0
## 21408 2 0 0
## 21409 1 0 0
## 21410 2 0 0
## 21411 2 0 0
## 21412 2 0 0
## 21413 2 0 0
## 21414 2 0 0
## 21415 1 0 0
## 21416 2 0 0
## 21417 2 0 0
## 21418 2 0 0
## 21419 2 0 0
## 21420 2 0 0
## 21421 2 0 0
## 21422 2 0 0
## 21423 1 0 0
## 21424 2 0 0
## 21425 2 0 0
## 21426 2 0 0
## 21427 2 0 0
## 21428 2 0 0
## 21429 2 0 0
## 21430 2 0 0
## 21431 1 0 0
## 21432 2 0 0
## 21433 2 0 0
## 21434 2 0 0
## 21435 1 0 0
## 21436 2 0 0
## 21437 2 0 0
## 21438 2 0 0
## 21439 2 0 0
## 21440 2 0 0
## 21441 2 0 0
## 21442 2 0 0
## 21443 1 0 0
## 21444 1 0 0
## 21445 1 0 0
## 21446 2 0 0
## 21447 1 0 0
## 21448 1 0 0
## 21449 1 0 0
## 21450 2 0 0
## 21451 1 0 0
## 21452 2 0 0
## 21453 1 0 0
## 21454 1 0 0
## 21455 1 0 0
## 21456 2 0 0
## 21457 2 0 0
## 21458 2 0 0
## 21459 2 2 0
## 21460 2 2 0
## 21461 1 0 0
## 21462 2 0 0
## 21463 2 0 0
## 21464 2 0 0
## 21465 2 0 0
## 21466 1 0 0
## 21467 2 0 0
## 21468 2 0 0
## 21469 1 0 0
## 21470 2 0 0
## 21471 1 0 0
## 21472 2 0 0
## 21473 2 0 0
## 21474 1 0 0
## 21475 1 0 0
## 21476 1 0 0
## 21477 2 0 0
## 21478 2 0 0
## 21479 2 0 0
## 21480 2 0 0
## 21481 1 0 0
## 21482 2 0 0
## 21483 2 0 0
## 21484 2 0 0
## 21485 2 0 0
## 21486 1 0 0
## 21487 2 0 0
## 21488 1 0 0
## 21489 1 0 0
## 21490 1 0 0
## 21491 2 0 0
## 21492 2 0 0
## 21493 1 0 0
## 21494 2 0 0
## 21495 1 0 0
## 21496 2 0 0
## 21497 1 0 0
## 21498 2 0 0
## 21499 2 0 0
## 21500 1 0 0
## 21501 2 0 0
## 21502 2 0 0
## 21503 2 0 0
## 21504 2 0 0
## 21505 1 0 0
## 21506 2 0 0
## 21507 2 0 0
## 21508 2 1 0
## 21509 2 0 0
## 21510 1 0 0
## 21511 1 0 0
## 21512 2 0 0
## 21513 1 0 0
## 21514 1 0 0
## 21515 1 0 0
## 21516 1 0 0
## 21517 1 0 0
## 21518 1 0 0
## 21519 1 0 0
## 21520 1 0 0
## 21521 1 0 0
## 21522 1 0 0
## 21523 2 0 0
## 21524 1 0 0
## 21525 1 0 0
## 21526 1 0 0
## 21527 1 0 0
## 21528 2 0 0
## 21529 2 0 0
## 21530 2 0 0
## 21531 1 0 0
## 21532 2 0 0
## 21533 2 0 0
## 21534 2 0 0
## 21535 1 0 0
## 21536 2 0 0
## 21537 2 0 0
## 21538 1 0 0
## 21539 1 0 0
## 21540 1 0 0
## 21541 1 0 0
## 21542 2 0 0
## 21543 1 0 0
## 21544 1 0 0
## 21545 2 0 0
## 21546 1 0 0
## 21547 2 0 0
## 21548 1 0 0
## 21549 2 0 0
## 21550 1 0 0
## 21551 2 0 0
## 21552 2 0 0
## 21553 2 0 0
## 21554 2 0 0
## 21555 1 0 0
## 21556 1 0 0
## 21557 3 0 0
## 21558 2 0 0
## 21559 1 0 0
## 21560 1 0 0
## 21561 2 0 0
## 21562 2 0 0
## 21563 2 0 0
## 21564 2 0 0
## 21565 1 0 0
## 21566 2 0 0
## 21567 3 0 0
## 21568 3 0 0
## 21569 2 0 0
## 21570 3 0 0
## 21571 2 0 0
## 21572 3 0 0
## 21573 3 0 0
## 21574 3 0 0
## 21575 3 0 0
## 21576 2 0 0
## 21577 2 0 0
## 21578 1 0 0
## 21579 3 0 0
## 21580 3 0 0
## 21581 3 0 0
## 21582 2 0 0
## 21583 3 0 0
## 21584 2 0 0
## 21585 2 0 0
## 21586 1 0 0
## 21587 1 0 0
## 21588 1 0 0
## 21589 2 0 0
## 21590 1 0 0
## 21591 1 0 0
## 21592 1 0 0
## 21593 1 0 0
## 21594 1 0 0
## 21595 1 0 0
## 21596 1 0 0
## 21597 1 0 0
## 21598 1 0 0
## 21599 2 0 0
## 21600 1 0 0
## 21601 1 0 0
## 21602 2 0 0
## 21603 2 0 0
## 21604 2 0 0
## 21605 1 0 0
## 21606 2 0 0
## 21607 3 0 0
## 21608 1 0 0
## 21609 1 0 0
## 21610 1 0 0
## 21611 2 0 0
## 21612 2 0 0
## 21613 1 0 0
## 21614 2 0 0
## 21615 3 1 0
## 21616 2 0 0
## 21617 2 0 0
## 21618 2 0 0
## 21619 2 0 0
## 21620 1 0 0
## 21621 2 0 0
## 21622 2 1 0
## 21623 2 0 0
## 21624 2 0 0
## 21625 2 0 0
## 21626 2 0 0
## 21627 2 0 0
## 21628 2 0 0
## 21629 2 0 0
## 21630 1 0 0
## 21631 1 0 0
## 21632 2 0 0
## 21633 1 0 0
## 21634 2 0 0
## 21635 2 0 0
## 21636 1 0 0
## 21637 1 0 0
## 21638 2 0 0
## 21639 2 0 0
## 21640 2 0 0
## 21641 2 0 0
## 21642 2 0 0
## 21643 2 0 0
## 21644 2 0 0
## 21645 2 0 0
## 21646 1 0 0
## 21647 2 2 0
## 21648 2 1 0
## 21649 2 0 0
## 21650 2 0 0
## 21651 2 0 0
## 21652 1 0 0
## 21653 2 0 0
## 21654 2 0 0
## 21655 1 0 0
## 21656 2 0 0
## 21657 1 0 0
## 21658 2 0 0
## 21659 2 0 0
## 21660 2 0 0
## 21661 2 0 0
## 21662 2 0 0
## 21663 2 0 0
## 21664 2 0 0
## 21665 1 0 0
## 21666 2 0 0
## 21667 2 0 0
## 21668 2 1 0
## 21669 2 0 0
## 21670 2 0 0
## 21671 1 0 0
## 21672 3 0 0
## 21673 2 0 0
## 21674 1 0 0
## 21675 2 0 0
## 21676 2 0 0
## 21677 2 0 0
## 21678 2 1 0
## 21679 2 0 0
## 21680 2 0 0
## 21681 3 0 0
## 21682 3 0 0
## 21683 2 0 0
## 21684 2 0 0
## 21685 2 0 0
## 21686 2 0 0
## 21687 2 0 0
## 21688 2 0 0
## 21689 2 0 0
## 21690 1 0 0
## 21691 2 0 0
## 21692 2 1 0
## 21693 2 0 0
## 21694 2 0 0
## 21695 1 0 0
## 21696 1 0 0
## 21697 2 0 0
## 21698 1 0 0
## 21699 2 0 0
## 21700 2 0 0
## 21701 2 0 0
## 21702 2 0 0
## 21703 2 0 0
## 21704 1 0 0
## 21705 2 0 0
## 21706 2 0 0
## 21707 2 0 0
## 21708 1 0 0
## 21709 1 0 0
## 21710 1 0 0
## 21711 1 0 0
## 21712 1 0 0
## 21713 2 0 0
## 21714 2 0 0
## 21715 2 0 0
## 21716 1 0 0
## 21717 2 0 0
## 21718 1 0 0
## 21719 2 0 0
## 21720 2 0 0
## 21721 2 0 0
## 21722 2 0 0
## 21723 1 0 0
## 21724 1 0 0
## 21725 1 0 0
## 21726 1 0 0
## 21727 2 0 0
## 21728 1 0 0
## 21729 2 0 0
## 21730 1 0 0
## 21731 2 0 0
## 21732 1 0 0
## 21733 2 0 0
## 21734 2 0 0
## 21735 2 0 0
## 21736 1 0 0
## 21737 2 0 0
## 21738 2 0 0
## 21739 2 0 0
## 21740 2 0 0
## 21741 1 0 0
## 21742 2 0 0
## 21743 2 0 0
## 21744 2 0 0
## 21745 2 0 0
## 21746 2 0 0
## 21747 2 0 0
## 21748 2 0 0
## 21749 1 0 0
## 21750 2 0 0
## 21751 1 0 0
## 21752 1 0 0
## 21753 1 0 0
## 21754 1 0 0
## 21755 2 0 0
## 21756 1 0 0
## 21757 1 0 0
## 21758 2 0 0
## 21759 1 0 0
## 21760 1 0 0
## 21761 2 2 0
## 21762 2 0 0
## 21763 1 0 0
## 21764 2 0 0
## 21765 1 0 0
## 21766 1 0 0
## 21767 1 0 0
## 21768 1 0 0
## 21769 1 0 0
## 21770 2 0 0
## 21771 2 2 0
## 21772 2 0 0
## 21773 2 0 0
## 21774 2 0 0
## 21775 2 0 0
## 21776 2 0 0
## 21777 3 0 0
## 21778 1 0 0
## 21779 1 0 0
## 21780 1 0 0
## 21781 1 0 0
## 21782 1 0 0
## 21783 1 0 0
## 21784 1 0 0
## 21785 1 0 0
## 21786 1 0 0
## 21787 1 0 0
## 21788 1 0 0
## 21789 2 0 0
## 21790 1 0 0
## 21791 1 0 0
## 21792 1 0 0
## 21793 2 0 0
## 21794 1 0 0
## 21795 1 0 0
## 21796 1 0 0
## 21797 1 0 0
## 21798 1 0 0
## 21799 1 0 0
## 21800 1 0 0
## 21801 1 0 0
## 21802 1 0 0
## 21803 2 0 0
## 21804 2 0 0
## 21805 2 0 0
## 21806 2 0 0
## 21807 2 0 0
## 21808 2 0 0
## 21809 1 0 0
## 21810 2 0 0
## 21811 1 0 0
## 21812 1 0 0
## 21813 1 0 0
## 21814 2 0 0
## 21815 2 0 0
## 21816 3 1 0
## 21817 1 0 0
## 21818 2 0 0
## 21819 2 0 0
## 21820 1 0 0
## 21821 2 0 0
## 21822 2 0 0
## 21823 2 0 0
## 21824 2 0 0
## 21825 1 0 0
## 21826 2 0 0
## 21827 2 0 0
## 21828 2 0 0
## 21829 2 0 0
## 21830 1 0 0
## 21831 1 0 0
## 21832 2 0 0
## 21833 1 0 0
## 21834 1 0 0
## 21835 1 0 0
## 21836 1 0 0
## 21837 1 0 0
## 21838 1 0 0
## 21839 3 0 0
## 21840 3 0 0
## 21841 2 0 0
## 21842 1 0 0
## 21843 1 0 0
## 21844 1 0 0
## 21845 1 0 0
## 21846 1 0 0
## 21847 2 0 0
## 21848 2 0 0
## 21849 1 0 0
## 21850 1 0 0
## 21851 2 0 0
## 21852 2 0 0
## 21853 1 0 0
## 21854 1 0 0
## 21855 2 0 0
## 21856 2 0 0
## 21857 2 0 0
## 21858 1 0 0
## 21859 1 0 0
## 21860 2 0 0
## 21861 2 0 0
## 21862 2 0 0
## 21863 2 0 0
## 21864 2 0 0
## 21865 2 0 0
## 21866 2 0 0
## 21867 2 0 0
## 21868 1 0 0
## 21869 1 0 0
## 21870 2 0 0
## 21871 1 0 0
## 21872 1 0 0
## 21873 1 0 0
## 21874 1 0 0
## 21875 1 0 0
## 21876 2 0 0
## 21877 2 0 0
## 21878 1 0 0
## 21879 2 0 0
## 21880 2 0 0
## 21881 2 0 0
## 21882 2 0 0
## 21883 2 0 0
## 21884 1 0 0
## 21885 2 0 0
## 21886 1 0 0
## 21887 1 0 0
## 21888 2 0 0
## 21889 2 0 0
## 21890 2 2 0
## 21891 3 1 0
## 21892 1 0 0
## 21893 2 0 0
## 21894 1 0 0
## 21895 2 0 0
## 21896 2 0 0
## 21897 2 0 0
## 21898 2 0 0
## 21899 1 0 0
## 21900 2 0 0
## 21901 2 0 0
## 21902 2 0 0
## 21903 2 2 0
## 21904 3 0 0
## 21905 2 0 0
## 21906 2 0 0
## 21907 2 0 0
## 21908 2 0 0
## 21909 2 0 0
## 21910 1 0 0
## 21911 2 0 0
## 21912 1 0 0
## 21913 2 0 0
## 21914 2 0 0
## 21915 2 0 0
## 21916 2 0 0
## 21917 2 0 0
## 21918 2 0 0
## 21919 2 0 0
## 21920 2 0 0
## 21921 2 0 0
## 21922 2 0 0
## 21923 2 0 0
## 21924 3 1 0
## 21925 1 0 0
## 21926 2 0 0
## 21927 2 0 0
## 21928 2 0 0
## 21929 2 0 0
## 21930 2 0 0
## 21931 2 0 0
## 21932 2 0 0
## 21933 2 0 0
## 21934 2 0 0
## 21935 2 0 0
## 21936 2 0 0
## 21937 2 0 0
## 21938 2 0 0
## 21939 2 0 0
## 21940 2 0 0
## 21941 2 0 0
## 21942 2 0 0
## 21943 2 0 0
## 21944 2 0 0
## 21945 2 0 0
## 21946 2 0 0
## 21947 2 0 0
## 21948 1 0 0
## 21949 2 0 0
## 21950 1 0 0
## 21951 2 0 0
## 21952 2 0 0
## 21953 2 0 0
## 21954 2 0 0
## 21955 2 0 0
## 21956 1 0 0
## 21957 3 0 0
## 21958 2 0 0
## 21959 2 0 0
## 21960 3 0 0
## 21961 3 0 0
## 21962 3 0 0
## 21963 3 0 0
## 21964 2 0 0
## 21965 1 0 0
## 21966 2 0 0
## 21967 1 0 0
## 21968 2 0 0
## 21969 1 0 0
## 21970 1 0 0
## 21971 2 2 0
## 21972 2 0 0
## 21973 2 0 0
## 21974 3 0 0
## 21975 2 0 0
## 21976 2 0 0
## 21977 2 0 0
## 21978 2 0 0
## 21979 2 0 0
## 21980 2 0 0
## 21981 2 0 0
## 21982 2 0 0
## 21983 2 0 0
## 21984 2 0 0
## 21985 2 0 0
## 21986 2 0 0
## 21987 2 0 0
## 21988 2 2 0
## 21989 2 0 0
## 21990 2 0 0
## 21991 2 0 0
## 21992 2 0 0
## 21993 1 0 0
## 21994 2 0 0
## 21995 2 0 0
## 21996 2 0 0
## 21997 2 0 0
## 21998 1 0 0
## 21999 2 0 0
## 22000 2 0 0
## 22001 2 2 0
## 22002 2 0 0
## 22003 2 0 0
## 22004 2 0 0
## 22005 2 0 0
## 22006 2 0 0
## 22007 1 0 0
## 22008 3 0 0
## 22009 2 0 0
## 22010 2 0 0
## 22011 2 0 0
## 22012 2 0 0
## 22013 2 0 0
## 22014 1 0 0
## 22015 1 0 0
## 22016 1 0 0
## 22017 2 0 0
## 22018 2 0 0
## 22019 2 0 0
## 22020 2 0 0
## 22021 2 0 0
## 22022 2 0 0
## 22023 1 0 0
## 22024 1 0 0
## 22025 2 0 0
## 22026 2 0 0
## 22027 1 0 0
## 22028 2 0 0
## 22029 1 0 0
## 22030 1 0 0
## 22031 1 0 0
## 22032 2 0 0
## 22033 2 0 0
## 22034 2 0 0
## 22035 2 0 0
## 22036 1 0 0
## 22037 2 0 0
## 22038 2 0 0
## 22039 1 0 0
## 22040 1 0 0
## 22041 1 0 0
## 22042 1 0 0
## 22043 1 0 0
## 22044 1 0 0
## 22045 1 0 0
## 22046 1 0 0
## 22047 1 0 0
## 22048 2 0 0
## 22049 2 0 0
## 22050 2 0 0
## 22051 1 0 0
## 22052 1 2 0
## 22053 2 0 0
## 22054 1 0 0
## 22055 3 0 0
## 22056 2 0 0
## 22057 2 0 0
## 22058 2 0 0
## 22059 2 0 0
## 22060 2 0 0
## 22061 2 0 0
## 22062 2 0 0
## 22063 2 0 0
## 22064 2 0 0
## 22065 2 0 0
## 22066 1 0 0
## 22067 1 0 0
## 22068 2 0 0
## 22069 2 0 0
## 22070 2 0 0
## 22071 2 0 0
## 22072 1 0 0
## 22073 2 0 0
## 22074 2 0 0
## 22075 1 0 0
## 22076 2 0 0
## 22077 2 0 0
## 22078 2 0 0
## 22079 2 0 0
## 22080 2 0 0
## 22081 2 0 0
## 22082 2 0 0
## 22083 2 0 0
## 22084 2 0 0
## 22085 2 0 0
## 22086 2 0 0
## 22087 2 0 0
## 22088 2 0 0
## 22089 2 0 0
## 22090 2 0 0
## 22091 2 0 0
## 22092 2 0 0
## 22093 1 0 0
## 22094 1 0 0
## 22095 1 0 0
## 22096 1 0 0
## 22097 2 0 0
## 22098 2 0 0
## 22099 2 0 0
## 22100 2 0 0
## 22101 2 0 0
## 22102 2 0 0
## 22103 2 0 0
## 22104 2 0 0
## 22105 1 2 0
## 22106 2 2 0
## 22107 2 0 0
## 22108 2 0 0
## 22109 2 0 0
## 22110 2 0 0
## 22111 2 2 0
## 22112 2 0 0
## 22113 2 0 0
## 22114 2 0 0
## 22115 2 2 0
## 22116 2 0 0
## 22117 2 0 0
## 22118 2 0 0
## 22119 2 0 0
## 22120 4 0 0
## 22121 1 0 0
## 22122 1 0 0
## 22123 1 0 0
## 22124 2 0 0
## 22125 2 0 0
## 22126 2 0 0
## 22127 2 0 0
## 22128 2 0 0
## 22129 2 1 0
## 22130 2 1 0
## 22131 2 0 0
## 22132 2 0 0
## 22133 3 0 0
## 22134 2 0 0
## 22135 2 2 0
## 22136 1 0 0
## 22137 1 0 0
## 22138 2 0 0
## 22139 2 0 0
## 22140 2 0 0
## 22141 2 0 0
## 22142 2 0 0
## 22143 2 0 0
## 22144 2 0 0
## 22145 1 0 0
## 22146 2 0 0
## 22147 2 0 0
## 22148 2 0 0
## 22149 2 0 0
## 22150 2 0 0
## 22151 2 0 0
## 22152 2 0 0
## 22153 1 0 0
## 22154 2 0 0
## 22155 2 1 0
## 22156 2 0 0
## 22157 2 0 0
## 22158 2 0 0
## 22159 2 0 0
## 22160 2 0 0
## 22161 2 0 0
## 22162 2 0 0
## 22163 2 0 0
## 22164 2 0 0
## 22165 2 0 0
## 22166 2 1 0
## 22167 2 0 0
## 22168 2 0 0
## 22169 2 1 0
## 22170 2 0 0
## 22171 1 0 0
## 22172 1 0 0
## 22173 2 0 0
## 22174 3 1 0
## 22175 2 0 0
## 22176 2 0 0
## 22177 2 0 0
## 22178 2 0 0
## 22179 2 0 0
## 22180 2 0 0
## 22181 2 0 0
## 22182 2 0 0
## 22183 2 0 0
## 22184 2 0 0
## 22185 2 0 0
## 22186 3 0 0
## 22187 2 0 0
## 22188 3 0 0
## 22189 2 2 0
## 22190 2 2 0
## 22191 2 0 0
## 22192 2 1 0
## 22193 2 0 0
## 22194 2 0 0
## 22195 2 0 0
## 22196 2 0 0
## 22197 2 0 0
## 22198 2 0 0
## 22199 1 0 0
## 22200 3 0 0
## 22201 2 2 0
## 22202 1 0 0
## 22203 2 0 0
## 22204 2 0 0
## 22205 2 0 0
## 22206 2 0 0
## 22207 2 0 0
## 22208 2 0 0
## 22209 2 0 0
## 22210 2 0 0
## 22211 2 0 0
## 22212 2 0 0
## 22213 2 0 0
## 22214 2 0 0
## 22215 2 0 0
## 22216 2 1 0
## 22217 2 0 0
## 22218 2 0 0
## 22219 2 0 0
## 22220 2 0 0
## 22221 3 0 0
## 22222 2 0 0
## 22223 2 0 0
## 22224 2 0 0
## 22225 2 0 0
## 22226 2 0 0
## 22227 3 1 0
## 22228 2 2 0
## 22229 2 1 0
## 22230 2 2 0
## 22231 2 0 0
## 22232 2 1 0
## 22233 1 0 0
## 22234 2 0 0
## 22235 2 0 0
## 22236 2 0 0
## 22237 2 0 0
## 22238 2 0 0
## 22239 2 0 0
## 22240 2 0 0
## 22241 2 0 0
## 22242 2 1 0
## 22243 2 0 0
## 22244 2 0 0
## 22245 2 0 0
## 22246 2 0 0
## 22247 2 0 0
## 22248 2 0 0
## 22249 2 0 0
## 22250 3 1 0
## 22251 2 0 0
## 22252 2 0 0
## 22253 2 0 0
## 22254 2 0 0
## 22255 2 0 0
## 22256 2 1 0
## 22257 2 0 0
## 22258 2 0 0
## 22259 1 0 0
## 22260 3 1 0
## 22261 2 0 0
## 22262 2 0 0
## 22263 2 0 0
## 22264 2 0 0
## 22265 2 0 0
## 22266 2 0 0
## 22267 2 0 0
## 22268 2 0 0
## 22269 2 0 0
## 22270 1 0 0
## 22271 1 0 0
## 22272 2 0 0
## 22273 2 0 0
## 22274 2 1 0
## 22275 2 0 0
## 22276 2 2 0
## 22277 2 0 0
## 22278 2 0 0
## 22279 2 0 0
## 22280 2 0 0
## 22281 2 0 0
## 22282 2 0 0
## 22283 2 0 0
## 22284 1 0 0
## 22285 2 0 0
## 22286 1 0 0
## 22287 2 0 0
## 22288 2 0 0
## 22289 2 0 0
## 22290 2 0 0
## 22291 3 0 0
## 22292 2 0 0
## 22293 1 0 0
## 22294 2 0 0
## 22295 1 0 0
## 22296 2 0 0
## 22297 2 0 0
## 22298 2 0 0
## 22299 2 0 0
## 22300 2 0 0
## 22301 2 0 0
## 22302 2 0 0
## 22303 2 0 0
## 22304 2 0 0
## 22305 2 0 0
## 22306 2 1 0
## 22307 2 0 0
## 22308 2 0 0
## 22309 2 0 0
## 22310 2 0 0
## 22311 2 0 0
## 22312 2 0 0
## 22313 2 2 0
## 22314 2 0 0
## 22315 2 0 0
## 22316 2 0 0
## 22317 2 0 0
## 22318 2 0 0
## 22319 2 0 0
## 22320 2 0 0
## 22321 2 0 0
## 22322 2 0 0
## 22323 2 0 0
## 22324 2 0 0
## 22325 2 0 0
## 22326 2 0 0
## 22327 1 0 0
## 22328 2 0 0
## 22329 1 0 0
## 22330 2 0 0
## 22331 2 0 0
## 22332 2 0 0
## 22333 2 0 0
## 22334 2 1 0
## 22335 2 0 0
## 22336 2 0 0
## 22337 2 0 0
## 22338 2 0 0
## 22339 2 1 0
## 22340 2 0 0
## 22341 2 0 0
## 22342 2 0 0
## 22343 2 0 0
## 22344 2 0 0
## 22345 2 0 0
## 22346 2 0 0
## 22347 1 0 0
## 22348 2 0 0
## 22349 2 0 0
## 22350 2 0 0
## 22351 2 0 0
## 22352 2 0 0
## 22353 2 0 0
## 22354 3 0 0
## 22355 1 0 0
## 22356 2 0 0
## 22357 2 0 0
## 22358 2 0 0
## 22359 1 0 0
## 22360 2 0 0
## 22361 2 0 0
## 22362 1 0 0
## 22363 2 0 0
## 22364 2 0 0
## 22365 1 0 0
## 22366 2 0 0
## 22367 2 0 0
## 22368 2 0 0
## 22369 2 0 0
## 22370 1 0 0
## 22371 2 0 0
## 22372 2 3 0
## 22373 2 0 0
## 22374 2 0 0
## 22375 2 0 0
## 22376 1 0 0
## 22377 2 1 0
## 22378 2 2 0
## 22379 1 0 0
## 22380 2 0 0
## 22381 2 0 0
## 22382 2 0 0
## 22383 2 0 0
## 22384 2 1 0
## 22385 2 0 0
## 22386 2 0 0
## 22387 2 2 0
## 22388 2 0 0
## 22389 2 0 0
## 22390 2 0 0
## 22391 2 0 0
## 22392 2 0 0
## 22393 3 0 0
## 22394 2 0 0
## 22395 2 2 0
## 22396 2 0 0
## 22397 2 0 0
## 22398 2 0 0
## 22399 2 0 0
## 22400 2 0 0
## 22401 1 0 0
## 22402 1 0 0
## 22403 1 0 0
## 22404 2 0 0
## 22405 2 0 0
## 22406 2 0 0
## 22407 1 0 0
## 22408 2 1 0
## 22409 2 0 0
## 22410 2 0 0
## 22411 2 0 0
## 22412 2 0 0
## 22413 2 2 0
## 22414 2 0 0
## 22415 2 0 0
## 22416 2 0 0
## 22417 2 0 0
## 22418 2 0 0
## 22419 2 0 0
## 22420 2 0 0
## 22421 2 0 0
## 22422 2 0 0
## 22423 2 0 0
## 22424 2 0 0
## 22425 2 0 0
## 22426 3 0 0
## 22427 2 2 0
## 22428 2 2 0
## 22429 2 0 0
## 22430 2 0 0
## 22431 2 0 0
## 22432 2 1 0
## 22433 1 0 0
## 22434 2 0 0
## 22435 2 0 0
## 22436 1 0 0
## 22437 2 0 0
## 22438 2 0 0
## 22439 2 0 0
## 22440 2 2 0
## 22441 2 0 0
## 22442 3 0 0
## 22443 2 0 0
## 22444 2 0 0
## 22445 2 0 0
## 22446 2 0 0
## 22447 2 0 0
## 22448 2 2 0
## 22449 2 0 0
## 22450 2 0 0
## 22451 2 0 0
## 22452 2 0 0
## 22453 2 0 0
## 22454 2 0 0
## 22455 2 0 0
## 22456 2 0 0
## 22457 2 0 0
## 22458 2 0 0
## 22459 2 0 0
## 22460 3 0 0
## 22461 2 0 0
## 22462 2 0 0
## 22463 2 0 0
## 22464 2 0 0
## 22465 2 0 0
## 22466 1 0 0
## 22467 2 0 0
## 22468 2 0 0
## 22469 1 0 0
## 22470 1 0 0
## 22471 1 0 0
## 22472 2 0 0
## 22473 2 0 0
## 22474 2 0 0
## 22475 2 0 0
## 22476 2 0 0
## 22477 2 2 0
## 22478 2 0 0
## 22479 2 2 0
## 22480 2 0 0
## 22481 2 0 0
## 22482 2 0 0
## 22483 1 0 0
## 22484 1 0 0
## 22485 2 0 0
## 22486 3 1 0
## 22487 2 0 0
## 22488 2 0 0
## 22489 1 0 0
## 22490 1 0 0
## 22491 1 0 0
## 22492 2 0 0
## 22493 2 1 0
## 22494 2 1 0
## 22495 1 0 0
## 22496 2 0 0
## 22497 2 0 0
## 22498 2 0 0
## 22499 2 0 0
## 22500 2 0 0
## 22501 2 1 0
## 22502 2 0 0
## 22503 2 0 0
## 22504 2 0 0
## 22505 1 0 0
## 22506 1 0 0
## 22507 1 0 0
## 22508 1 0 0
## 22509 1 0 0
## 22510 1 0 0
## 22511 1 0 0
## 22512 1 0 0
## 22513 1 0 0
## 22514 1 0 0
## 22515 2 0 0
## 22516 1 0 0
## 22517 2 0 0
## 22518 2 0 0
## 22519 2 0 0
## 22520 1 0 0
## 22521 2 0 0
## 22522 2 0 0
## 22523 2 0 0
## 22524 2 0 0
## 22525 2 0 0
## 22526 2 0 0
## 22527 2 0 0
## 22528 2 0 0
## 22529 2 0 0
## 22530 1 0 0
## 22531 2 0 0
## 22532 1 0 0
## 22533 1 0 0
## 22534 2 0 0
## 22535 2 0 0
## 22536 2 0 0
## 22537 2 0 0
## 22538 2 0 0
## 22539 1 0 0
## 22540 1 0 0
## 22541 1 0 0
## 22542 1 0 0
## 22543 2 0 0
## 22544 1 0 0
## 22545 2 0 0
## 22546 2 0 0
## 22547 2 0 0
## 22548 2 2 0
## 22549 2 0 0
## 22550 1 0 0
## 22551 1 0 0
## 22552 1 0 0
## 22553 2 0 0
## 22554 1 0 0
## 22555 2 0 0
## 22556 1 0 0
## 22557 2 0 0
## 22558 1 0 0
## 22559 1 0 0
## 22560 2 0 0
## 22561 2 0 0
## 22562 4 1 0
## 22563 2 0 0
## 22564 2 0 0
## 22565 2 0 0
## 22566 2 0 0
## 22567 2 0 0
## 22568 3 1 0
## 22569 2 0 0
## 22570 2 0 0
## 22571 2 0 0
## 22572 1 0 0
## 22573 2 0 0
## 22574 2 0 0
## 22575 2 1 0
## 22576 2 0 0
## 22577 2 0 0
## 22578 2 0 0
## 22579 1 0 0
## 22580 2 0 0
## 22581 2 0 0
## 22582 2 0 0
## 22583 2 0 0
## 22584 1 0 0
## 22585 2 0 0
## 22586 2 0 0
## 22587 2 0 0
## 22588 1 0 0
## 22589 2 0 0
## 22590 1 0 0
## 22591 3 0 0
## 22592 2 0 0
## 22593 2 0 0
## 22594 2 0 0
## 22595 2 0 0
## 22596 2 0 0
## 22597 2 0 0
## 22598 2 0 0
## 22599 2 2 0
## 22600 2 0 0
## 22601 1 0 0
## 22602 2 0 0
## 22603 2 0 0
## 22604 1 0 0
## 22605 2 1 0
## 22606 2 0 0
## 22607 2 0 0
## 22608 1 0 0
## 22609 2 0 0
## 22610 1 0 0
## 22611 2 0 0
## 22612 2 0 0
## 22613 1 0 0
## 22614 2 0 0
## 22615 2 0 0
## 22616 2 0 0
## 22617 2 0 0
## 22618 2 0 0
## 22619 2 0 0
## 22620 2 0 0
## 22621 2 0 0
## 22622 2 0 0
## 22623 2 0 0
## 22624 2 0 0
## 22625 2 0 0
## 22626 2 0 0
## 22627 2 0 0
## 22628 2 0 0
## 22629 2 0 0
## 22630 2 0 0
## 22631 2 0 0
## 22632 2 0 0
## 22633 2 0 0
## 22634 2 0 0
## 22635 2 0 0
## 22636 2 0 0
## 22637 2 0 0
## 22638 2 0 0
## 22639 2 0 0
## 22640 2 0 0
## 22641 1 0 0
## 22642 1 0 0
## 22643 2 0 0
## 22644 2 0 0
## 22645 2 0 0
## 22646 3 0 0
## 22647 1 0 0
## 22648 1 0 0
## 22649 2 0 0
## 22650 2 0 0
## 22651 1 0 0
## 22652 2 0 0
## 22653 2 0 0
## 22654 2 0 0
## 22655 2 0 0
## 22656 2 0 0
## 22657 1 0 0
## 22658 2 0 0
## 22659 1 0 0
## 22660 1 0 0
## 22661 1 0 0
## 22662 2 0 0
## 22663 1 0 0
## 22664 2 0 0
## 22665 2 0 0
## 22666 2 0 0
## 22667 2 0 0
## 22668 2 0 0
## 22669 2 0 0
## 22670 2 0 0
## 22671 2 0 0
## 22672 2 0 0
## 22673 2 0 0
## 22674 1 0 0
## 22675 1 0 0
## 22676 2 0 0
## 22677 2 0 0
## 22678 2 0 0
## 22679 2 2 0
## 22680 2 0 0
## 22681 2 0 0
## 22682 2 0 0
## 22683 1 0 0
## 22684 1 0 0
## 22685 2 0 0
## 22686 2 0 0
## 22687 2 0 0
## 22688 2 0 0
## 22689 2 0 0
## 22690 1 0 0
## 22691 2 0 0
## 22692 2 0 0
## 22693 2 0 0
## 22694 2 0 0
## 22695 2 0 0
## 22696 2 0 0
## 22697 2 0 0
## 22698 2 0 0
## 22699 2 0 0
## 22700 2 0 0
## 22701 2 0 0
## 22702 2 0 0
## 22703 1 0 0
## 22704 1 0 0
## 22705 1 0 0
## 22706 2 0 0
## 22707 2 0 0
## 22708 2 0 0
## 22709 2 0 0
## 22710 1 0 0
## 22711 1 0 0
## 22712 1 0 0
## 22713 1 0 0
## 22714 1 0 0
## 22715 1 0 0
## 22716 2 0 0
## 22717 2 0 0
## 22718 2 0 0
## 22719 2 0 0
## 22720 2 0 0
## 22721 2 0 0
## 22722 2 0 0
## 22723 1 0 0
## 22724 3 0 0
## 22725 2 0 0
## 22726 1 0 0
## 22727 2 0 0
## 22728 2 0 0
## 22729 2 0 0
## 22730 2 0 0
## 22731 2 0 0
## 22732 1 0 0
## 22733 1 0 0
## 22734 2 2 0
## 22735 2 0 0
## 22736 2 0 0
## 22737 2 0 0
## 22738 2 0 0
## 22739 2 0 0
## 22740 2 0 0
## 22741 2 0 0
## 22742 3 1 0
## 22743 1 0 0
## 22744 1 0 0
## 22745 2 0 0
## 22746 2 0 0
## 22747 2 0 0
## 22748 1 0 0
## 22749 1 0 0
## 22750 1 0 0
## 22751 2 0 0
## 22752 1 0 0
## 22753 2 0 0
## 22754 1 0 0
## 22755 1 0 0
## 22756 1 0 0
## 22757 2 0 0
## 22758 2 0 0
## 22759 2 0 0
## 22760 2 0 0
## 22761 1 0 0
## 22762 1 0 0
## 22763 1 0 0
## 22764 1 0 0
## 22765 1 0 0
## 22766 1 0 0
## 22767 1 0 0
## 22768 1 0 0
## 22769 1 0 0
## 22770 1 0 0
## 22771 1 0 0
## 22772 1 0 0
## 22773 1 0 0
## 22774 1 0 0
## 22775 1 0 0
## 22776 1 0 0
## 22777 1 0 0
## 22778 1 0 0
## 22779 1 0 0
## 22780 2 0 0
## 22781 3 0 0
## 22782 2 0 0
## 22783 2 0 0
## 22784 2 0 0
## 22785 3 1 0
## 22786 2 0 0
## 22787 2 0 0
## 22788 2 0 0
## 22789 1 0 0
## 22790 1 0 0
## 22791 1 0 0
## 22792 1 0 0
## 22793 2 0 0
## 22794 1 0 0
## 22795 1 0 0
## 22796 1 0 0
## 22797 2 0 0
## 22798 2 0 0
## 22799 2 0 0
## 22800 2 0 0
## 22801 2 0 0
## 22802 2 0 0
## 22803 2 0 0
## 22804 1 0 0
## 22805 2 0 0
## 22806 1 0 0
## 22807 1 0 0
## 22808 1 0 0
## 22809 1 0 0
## 22810 1 0 0
## 22811 1 0 0
## 22812 1 0 0
## 22813 1 0 0
## 22814 2 0 0
## 22815 2 0 0
## 22816 2 0 0
## 22817 2 0 0
## 22818 2 0 0
## 22819 2 0 0
## 22820 2 0 0
## 22821 1 0 0
## 22822 1 0 0
## 22823 2 0 0
## 22824 1 0 0
## 22825 1 0 0
## 22826 1 0 0
## 22827 2 0 0
## 22828 1 0 0
## 22829 1 0 0
## 22830 2 0 0
## 22831 2 0 0
## 22832 3 0 0
## 22833 2 0 0
## 22834 2 0 0
## 22835 2 0 0
## 22836 2 0 0
## 22837 2 0 0
## 22838 2 0 0
## 22839 3 0 0
## 22840 2 0 0
## 22841 1 0 0
## 22842 2 0 0
## 22843 1 0 0
## 22844 2 0 0
## 22845 2 0 0
## 22846 2 0 0
## 22847 2 0 0
## 22848 1 1 0
## 22849 2 0 0
## 22850 1 0 0
## 22851 2 0 0
## 22852 2 0 0
## 22853 2 0 0
## 22854 2 0 0
## 22855 2 0 0
## 22856 2 0 0
## 22857 1 0 0
## 22858 1 0 0
## 22859 1 0 0
## 22860 1 0 0
## 22861 1 0 0
## 22862 2 0 0
## 22863 2 0 0
## 22864 2 0 0
## 22865 2 0 0
## 22866 1 0 0
## 22867 2 0 0
## 22868 2 0 0
## 22869 2 0 0
## 22870 2 0 0
## 22871 2 0 0
## 22872 2 0 0
## 22873 2 0 0
## 22874 2 0 0
## 22875 2 0 0
## 22876 2 0 0
## 22877 2 0 0
## 22878 2 0 0
## 22879 1 0 0
## 22880 1 0 0
## 22881 1 0 0
## 22882 2 0 0
## 22883 2 0 0
## 22884 1 0 0
## 22885 1 0 0
## 22886 2 0 0
## 22887 2 0 0
## 22888 2 0 0
## 22889 2 0 0
## 22890 1 0 0
## 22891 2 0 0
## 22892 1 0 0
## 22893 2 0 0
## 22894 2 0 0
## 22895 2 0 0
## 22896 2 0 0
## 22897 2 0 0
## 22898 2 0 0
## 22899 2 0 0
## 22900 2 0 0
## 22901 2 0 0
## 22902 2 0 0
## 22903 2 0 0
## 22904 1 0 0
## 22905 1 0 0
## 22906 1 0 0
## 22907 1 0 0
## 22908 1 0 0
## 22909 2 0 0
## 22910 2 1 0
## 22911 3 0 0
## 22912 2 0 0
## 22913 2 0 0
## 22914 1 0 0
## 22915 2 0 0
## 22916 2 0 0
## 22917 2 0 0
## 22918 3 0 0
## 22919 2 2 0
## 22920 2 0 0
## 22921 2 0 0
## 22922 2 0 0
## 22923 2 0 0
## 22924 3 1 0
## 22925 2 0 0
## 22926 2 0 0
## 22927 2 0 0
## 22928 2 0 0
## 22929 1 0 0
## 22930 2 2 0
## 22931 1 0 0
## 22932 2 0 0
## 22933 2 0 0
## 22934 2 0 0
## 22935 2 0 0
## 22936 1 0 0
## 22937 2 0 0
## 22938 2 0 0
## 22939 2 0 0
## 22940 2 0 0
## 22941 2 0 0
## 22942 2 0 0
## 22943 2 0 0
## 22944 2 0 0
## 22945 2 0 0
## 22946 2 0 0
## 22947 1 0 0
## 22948 2 0 0
## 22949 2 0 0
## 22950 1 0 0
## 22951 2 0 0
## 22952 2 0 0
## 22953 2 0 0
## 22954 2 0 0
## 22955 2 0 0
## 22956 1 0 0
## 22957 1 0 0
## 22958 2 0 0
## 22959 1 0 0
## 22960 2 0 0
## 22961 2 0 0
## 22962 2 0 0
## 22963 1 0 0
## 22964 2 0 0
## 22965 1 0 0
## 22966 1 0 0
## 22967 2 0 0
## 22968 1 0 0
## 22969 1 0 0
## 22970 1 0 0
## 22971 1 0 0
## 22972 1 0 0
## 22973 2 0 0
## 22974 2 0 0
## 22975 1 0 0
## 22976 2 0 0
## 22977 2 0 0
## 22978 1 0 0
## 22979 2 0 0
## 22980 2 0 0
## 22981 2 0 0
## 22982 2 0 0
## 22983 2 0 0
## 22984 2 0 0
## 22985 1 0 0
## 22986 1 0 0
## 22987 1 0 0
## 22988 1 0 0
## 22989 1 0 0
## 22990 2 0 0
## 22991 1 0 0
## 22992 1 0 0
## 22993 2 0 0
## 22994 2 0 0
## 22995 1 0 0
## 22996 2 0 0
## 22997 2 0 0
## 22998 2 0 0
## 22999 2 0 0
## 23000 1 0 0
## 23001 2 0 0
## 23002 2 0 0
## 23003 2 0 0
## 23004 2 0 0
## 23005 3 0 0
## 23006 2 0 0
## 23007 2 0 0
## 23008 2 0 0
## 23009 3 0 0
## 23010 1 0 0
## 23011 2 0 0
## 23012 2 0 0
## 23013 2 0 0
## 23014 2 0 0
## 23015 1 0 0
## 23016 2 0 0
## 23017 2 0 0
## 23018 1 0 0
## 23019 2 0 0
## 23020 2 0 0
## 23021 2 0 0
## 23022 2 2 0
## 23023 2 0 0
## 23024 2 0 0
## 23025 2 0 0
## 23026 1 0 0
## 23027 2 0 0
## 23028 2 0 0
## 23029 1 0 0
## 23030 1 0 0
## 23031 2 0 0
## 23032 2 0 0
## 23033 2 0 0
## 23034 2 0 0
## 23035 2 0 0
## 23036 3 0 0
## 23037 2 0 0
## 23038 2 0 0
## 23039 1 0 0
## 23040 1 0 0
## 23041 1 0 0
## 23042 2 0 0
## 23043 2 0 0
## 23044 2 0 0
## 23045 2 0 0
## 23046 2 0 0
## 23047 2 0 0
## 23048 2 0 0
## 23049 2 0 0
## 23050 2 0 0
## 23051 2 0 0
## 23052 2 0 0
## 23053 2 2 0
## 23054 2 0 0
## 23055 2 0 0
## 23056 2 0 0
## 23057 2 0 0
## 23058 1 0 0
## 23059 1 0 0
## 23060 2 0 0
## 23061 2 0 0
## 23062 2 0 0
## 23063 2 0 0
## 23064 2 0 0
## 23065 2 0 0
## 23066 2 0 0
## 23067 2 0 0
## 23068 2 0 0
## 23069 2 0 0
## 23070 2 0 0
## 23071 2 0 0
## 23072 2 0 0
## 23073 2 0 0
## 23074 2 0 0
## 23075 2 0 0
## 23076 2 0 0
## 23077 2 0 0
## 23078 2 0 0
## 23079 1 0 0
## 23080 1 0 0
## 23081 1 0 0
## 23082 1 0 0
## 23083 3 1 0
## 23084 2 0 0
## 23085 2 0 0
## 23086 2 0 0
## 23087 1 0 0
## 23088 2 0 0
## 23089 2 0 0
## 23090 2 0 0
## 23091 2 0 0
## 23092 2 0 0
## 23093 2 0 0
## 23094 2 0 0
## 23095 2 0 0
## 23096 1 0 0
## 23097 2 0 0
## 23098 2 0 0
## 23099 1 0 0
## 23100 2 0 0
## 23101 2 0 0
## 23102 2 0 0
## 23103 2 0 0
## 23104 2 0 0
## 23105 2 2 0
## 23106 2 0 0
## 23107 2 0 0
## 23108 2 0 0
## 23109 1 0 0
## 23110 2 0 0
## 23111 2 0 0
## 23112 2 0 0
## 23113 2 0 0
## 23114 2 0 0
## 23115 2 0 0
## 23116 2 0 0
## 23117 2 0 0
## 23118 2 0 0
## 23119 2 0 0
## 23120 2 0 0
## 23121 2 0 0
## 23122 2 0 0
## 23123 2 0 0
## 23124 2 0 0
## 23125 2 0 0
## 23126 2 0 0
## 23127 2 0 0
## 23128 2 0 0
## 23129 2 0 0
## 23130 2 0 0
## 23131 2 0 0
## 23132 2 1 0
## 23133 2 0 0
## 23134 2 0 0
## 23135 3 0 0
## 23136 2 3 0
## 23137 2 0 0
## 23138 2 0 0
## 23139 2 0 0
## 23140 2 0 0
## 23141 2 0 0
## 23142 2 0 0
## 23143 2 0 0
## 23144 2 0 0
## 23145 2 0 0
## 23146 2 1 0
## 23147 2 0 0
## 23148 2 0 0
## 23149 2 0 0
## 23150 2 0 0
## 23151 3 1 0
## 23152 2 0 0
## 23153 2 0 0
## 23154 2 0 0
## 23155 2 1 0
## 23156 2 1 0
## 23157 2 0 0
## 23158 2 0 0
## 23159 1 1 0
## 23160 2 0 0
## 23161 2 0 0
## 23162 2 0 0
## 23163 2 0 0
## 23164 2 0 0
## 23165 2 0 0
## 23166 2 0 0
## 23167 2 0 0
## 23168 2 0 0
## 23169 2 0 0
## 23170 2 0 0
## 23171 2 0 0
## 23172 2 0 0
## 23173 1 0 0
## 23174 1 0 0
## 23175 1 0 0
## 23176 1 0 0
## 23177 2 0 0
## 23178 2 0 0
## 23179 2 0 0
## 23180 2 0 0
## 23181 1 0 0
## 23182 2 2 0
## 23183 2 0 0
## 23184 2 0 0
## 23185 2 0 0
## 23186 2 0 0
## 23187 1 0 0
## 23188 2 0 0
## 23189 1 0 0
## 23190 2 0 0
## 23191 1 0 0
## 23192 1 0 0
## 23193 1 0 0
## 23194 2 0 0
## 23195 2 0 0
## 23196 1 0 0
## 23197 2 0 0
## 23198 2 0 0
## 23199 2 0 0
## 23200 2 0 0
## 23201 2 0 0
## 23202 2 0 0
## 23203 1 0 0
## 23204 1 0 0
## 23205 2 0 0
## 23206 2 0 0
## 23207 1 0 0
## 23208 2 0 0
## 23209 2 0 0
## 23210 2 0 0
## 23211 2 0 0
## 23212 2 0 0
## 23213 2 0 0
## 23214 2 0 0
## 23215 1 0 0
## 23216 1 0 0
## 23217 2 0 0
## 23218 2 0 0
## 23219 2 0 0
## 23220 2 0 0
## 23221 2 0 0
## 23222 2 0 0
## 23223 2 0 0
## 23224 3 0 0
## 23225 2 0 0
## 23226 1 0 0
## 23227 1 0 0
## 23228 2 0 0
## 23229 1 0 0
## 23230 2 0 0
## 23231 1 0 0
## 23232 2 0 0
## 23233 2 0 0
## 23234 2 0 0
## 23235 1 0 0
## 23236 1 0 0
## 23237 1 0 0
## 23238 2 0 0
## 23239 2 0 0
## 23240 3 0 0
## 23241 2 0 0
## 23242 1 0 0
## 23243 2 0 0
## 23244 2 2 0
## 23245 1 0 0
## 23246 2 0 0
## 23247 2 0 0
## 23248 2 0 0
## 23249 2 0 0
## 23250 2 0 0
## 23251 1 0 0
## 23252 2 0 0
## 23253 2 0 0
## 23254 2 0 0
## 23255 1 0 0
## 23256 1 0 0
## 23257 1 0 0
## 23258 2 0 0
## 23259 2 0 0
## 23260 2 0 0
## 23261 1 0 0
## 23262 2 0 0
## 23263 2 0 0
## 23264 2 0 0
## 23265 2 0 0
## 23266 2 0 0
## 23267 2 0 0
## 23268 2 0 0
## 23269 2 0 0
## 23270 2 0 0
## 23271 2 0 0
## 23272 2 0 0
## 23273 2 0 0
## 23274 2 0 0
## 23275 2 0 0
## 23276 2 0 0
## 23277 2 0 0
## 23278 2 0 0
## 23279 2 0 0
## 23280 2 0 0
## 23281 2 0 0
## 23282 2 0 0
## 23283 2 0 0
## 23284 2 0 0
## 23285 2 0 0
## 23286 2 0 0
## 23287 2 0 0
## 23288 2 0 0
## 23289 2 0 0
## 23290 2 0 0
## 23291 2 0 0
## 23292 2 1 0
## 23293 2 0 0
## 23294 1 0 0
## 23295 1 0 0
## 23296 1 0 0
## 23297 1 0 0
## 23298 2 1 0
## 23299 1 0 0
## 23300 1 0 0
## 23301 1 0 0
## 23302 1 0 0
## 23303 1 0 0
## 23304 2 0 0
## 23305 2 0 0
## 23306 2 0 0
## 23307 2 0 0
## 23308 1 0 0
## 23309 1 0 0
## 23310 1 0 0
## 23311 1 0 0
## 23312 1 0 0
## 23313 1 0 0
## 23314 1 0 0
## 23315 2 0 0
## 23316 2 0 0
## 23317 2 0 0
## 23318 2 0 0
## 23319 2 0 0
## 23320 2 0 0
## 23321 2 0 0
## 23322 2 0 0
## 23323 2 1 0
## 23324 1 0 0
## 23325 2 1 0
## 23326 1 0 0
## 23327 2 0 0
## 23328 2 0 0
## 23329 1 0 0
## 23330 2 1 0
## 23331 2 0 0
## 23332 2 0 0
## 23333 2 0 0
## 23334 2 0 0
## 23335 2 0 0
## 23336 2 0 0
## 23337 2 0 0
## 23338 2 0 0
## 23339 2 0 0
## 23340 2 0 0
## 23341 2 0 0
## 23342 2 0 0
## 23343 2 0 0
## 23344 2 0 0
## 23345 1 0 0
## 23346 2 0 0
## 23347 2 0 0
## 23348 1 0 0
## 23349 2 0 0
## 23350 2 0 0
## 23351 2 0 0
## 23352 2 0 0
## 23353 2 0 0
## 23354 2 0 0
## 23355 2 0 0
## 23356 2 0 0
## 23357 2 0 0
## 23358 2 0 0
## 23359 2 0 0
## 23360 2 0 0
## 23361 2 0 0
## 23362 2 0 0
## 23363 2 0 0
## 23364 1 0 0
## 23365 2 0 0
## 23366 2 0 0
## 23367 2 0 0
## 23368 2 0 0
## 23369 2 0 0
## 23370 1 0 0
## 23371 2 0 0
## 23372 2 0 0
## 23373 1 0 0
## 23374 2 0 0
## 23375 1 0 0
## 23376 2 0 0
## 23377 2 0 0
## 23378 1 0 0
## 23379 2 0 0
## 23380 2 1 0
## 23381 2 0 0
## 23382 2 0 0
## 23383 2 0 0
## 23384 2 0 0
## 23385 2 0 0
## 23386 2 0 0
## 23387 2 0 0
## 23388 1 0 0
## 23389 2 0 0
## 23390 2 0 0
## 23391 2 0 0
## 23392 2 2 0
## 23393 2 0 0
## 23394 2 0 0
## 23395 1 0 0
## 23396 2 0 0
## 23397 3 0 0
## 23398 2 0 0
## 23399 2 0 0
## 23400 2 0 0
## 23401 2 0 0
## 23402 2 0 0
## 23403 2 0 0
## 23404 2 0 0
## 23405 2 0 0
## 23406 2 0 0
## 23407 2 0 0
## 23408 2 0 0
## 23409 2 0 0
## 23410 2 2 0
## 23411 2 0 0
## 23412 2 0 0
## 23413 1 2 0
## 23414 2 0 0
## 23415 2 0 0
## 23416 2 0 0
## 23417 2 0 0
## 23418 2 0 0
## 23419 2 0 0
## 23420 2 0 0
## 23421 2 0 0
## 23422 1 0 0
## 23423 1 0 0
## 23424 2 0 0
## 23425 2 0 0
## 23426 2 0 0
## 23427 1 0 0
## 23428 1 0 0
## 23429 2 0 0
## 23430 2 0 0
## 23431 2 0 0
## 23432 2 0 0
## 23433 2 0 0
## 23434 1 0 0
## 23435 1 0 0
## 23436 1 0 0
## 23437 1 0 0
## 23438 1 0 0
## 23439 1 0 0
## 23440 2 0 0
## 23441 2 0 0
## 23442 1 0 0
## 23443 1 0 0
## 23444 1 0 0
## 23445 1 0 0
## 23446 1 0 0
## 23447 1 0 0
## 23448 1 0 0
## 23449 1 0 0
## 23450 1 0 0
## 23451 1 0 0
## 23452 1 0 0
## 23453 1 0 0
## 23454 2 0 0
## 23455 2 0 0
## 23456 1 0 0
## 23457 2 0 0
## 23458 2 0 0
## 23459 2 0 0
## 23460 2 0 0
## 23461 3 0 0
## 23462 2 0 0
## 23463 2 0 0
## 23464 2 0 0
## 23465 2 0 0
## 23466 2 0 0
## 23467 2 0 0
## 23468 2 0 0
## 23469 2 1 0
## 23470 2 0 0
## 23471 2 0 0
## 23472 2 0 0
## 23473 2 0 0
## 23474 2 0 0
## 23475 3 0 0
## 23476 2 0 0
## 23477 3 1 0
## 23478 2 0 0
## 23479 2 0 0
## 23480 2 2 0
## 23481 3 0 0
## 23482 2 0 0
## 23483 1 0 0
## 23484 1 0 0
## 23485 1 0 0
## 23486 2 0 0
## 23487 2 0 0
## 23488 2 0 0
## 23489 2 0 0
## 23490 2 0 0
## 23491 2 0 0
## 23492 2 0 0
## 23493 2 0 0
## 23494 2 2 0
## 23495 2 0 0
## 23496 2 0 0
## 23497 2 0 0
## 23498 1 0 0
## 23499 2 0 0
## 23500 2 0 0
## 23501 2 0 0
## 23502 1 0 0
## 23503 2 0 0
## 23504 2 0 0
## 23505 2 0 0
## 23506 2 2 0
## 23507 2 0 0
## 23508 2 0 0
## 23509 2 0 0
## 23510 2 0 0
## 23511 1 0 0
## 23512 1 0 0
## 23513 1 0 0
## 23514 1 0 0
## 23515 1 0 0
## 23516 2 0 0
## 23517 2 0 0
## 23518 1 0 0
## 23519 2 0 0
## 23520 1 0 0
## 23521 2 0 0
## 23522 1 0 0
## 23523 2 1 0
## 23524 1 0 0
## 23525 1 0 0
## 23526 1 0 0
## 23527 1 0 0
## 23528 2 0 0
## 23529 2 0 0
## 23530 1 0 0
## 23531 1 0 0
## 23532 1 0 0
## 23533 2 0 0
## 23534 2 0 0
## 23535 2 2 0
## 23536 2 0 0
## 23537 2 0 0
## 23538 2 0 0
## 23539 2 0 0
## 23540 2 0 0
## 23541 2 0 0
## 23542 2 0 0
## 23543 2 0 0
## 23544 2 0 0
## 23545 2 0 0
## 23546 2 0 0
## 23547 1 0 0
## 23548 1 0 0
## 23549 2 0 0
## 23550 2 0 0
## 23551 2 0 0
## 23552 2 0 0
## 23553 2 0 0
## 23554 2 0 0
## 23555 2 0 0
## 23556 2 0 0
## 23557 2 0 0
## 23558 2 0 0
## 23559 2 0 0
## 23560 2 0 0
## 23561 2 0 0
## 23562 2 0 0
## 23563 2 0 0
## 23564 2 0 0
## 23565 2 0 0
## 23566 2 0 0
## 23567 2 0 0
## 23568 2 0 0
## 23569 2 0 0
## 23570 2 0 0
## 23571 1 0 0
## 23572 1 0 0
## 23573 2 0 0
## 23574 1 0 0
## 23575 2 0 0
## 23576 2 0 0
## 23577 2 0 0
## 23578 1 0 0
## 23579 1 0 0
## 23580 2 0 0
## 23581 2 0 0
## 23582 2 0 0
## 23583 1 0 0
## 23584 2 0 0
## 23585 1 0 0
## 23586 2 0 0
## 23587 2 0 0
## 23588 2 2 0
## 23589 2 0 0
## 23590 2 0 0
## 23591 2 0 0
## 23592 2 0 0
## 23593 2 0 0
## 23594 2 0 0
## 23595 2 0 0
## 23596 2 0 0
## 23597 1 0 0
## 23598 2 0 0
## 23599 2 0 0
## 23600 1 0 0
## 23601 2 0 0
## 23602 1 0 0
## 23603 2 0 0
## 23604 2 0 0
## 23605 2 0 0
## 23606 2 0 0
## 23607 2 0 0
## 23608 2 0 0
## 23609 2 0 0
## 23610 2 0 0
## 23611 2 0 0
## 23612 2 2 0
## 23613 2 0 0
## 23614 2 0 0
## 23615 2 0 0
## 23616 2 0 0
## 23617 2 0 0
## 23618 2 0 0
## 23619 2 0 0
## 23620 1 0 0
## 23621 2 0 0
## 23622 2 0 0
## 23623 2 0 0
## 23624 2 0 0
## 23625 2 0 0
## 23626 1 0 0
## 23627 2 0 0
## 23628 2 0 0
## 23629 1 0 0
## 23630 2 0 0
## 23631 2 0 0
## 23632 3 0 0
## 23633 2 0 0
## 23634 2 0 0
## 23635 2 0 0
## 23636 2 0 0
## 23637 2 0 0
## 23638 2 0 0
## 23639 2 0 0
## 23640 2 0 0
## 23641 2 0 0
## 23642 1 0 0
## 23643 2 0 0
## 23644 2 0 0
## 23645 2 2 0
## 23646 2 2 0
## 23647 3 0 0
## 23648 2 1 0
## 23649 2 0 0
## 23650 1 0 0
## 23651 2 0 0
## 23652 2 0 0
## 23653 3 0 0
## 23654 2 0 0
## 23655 2 0 0
## 23656 2 0 0
## 23657 2 0 0
## 23658 2 0 0
## 23659 2 0 0
## 23660 2 0 0
## 23661 2 0 0
## 23662 2 0 0
## 23663 2 0 0
## 23664 2 0 0
## 23665 2 0 0
## 23666 2 0 0
## 23667 2 0 0
## 23668 2 0 0
## 23669 2 0 0
## 23670 2 0 0
## 23671 2 0 0
## 23672 2 0 0
## 23673 2 0 0
## 23674 2 0 0
## 23675 2 0 0
## 23676 2 0 0
## 23677 2 0 0
## 23678 2 0 0
## 23679 2 0 0
## 23680 2 0 0
## 23681 2 0 0
## 23682 2 0 0
## 23683 2 0 0
## 23684 2 2 0
## 23685 2 0 0
## 23686 1 0 0
## 23687 1 0 0
## 23688 2 0 0
## 23689 2 0 0
## 23690 2 0 0
## 23691 2 0 0
## 23692 2 0 0
## 23693 2 0 0
## 23694 1 0 0
## 23695 2 0 0
## 23696 2 0 0
## 23697 1 0 0
## 23698 2 0 0
## 23699 1 0 0
## 23700 2 1 0
## 23701 2 0 0
## 23702 2 0 0
## 23703 2 0 0
## 23704 2 0 0
## 23705 2 0 0
## 23706 1 0 0
## 23707 2 0 0
## 23708 2 1 0
## 23709 2 0 0
## 23710 2 0 0
## 23711 2 0 0
## 23712 1 0 0
## 23713 2 0 0
## 23714 2 0 0
## 23715 2 0 0
## 23716 1 0 0
## 23717 2 0 0
## 23718 1 0 0
## 23719 1 0 0
## 23720 1 0 0
## 23721 1 0 0
## 23722 2 0 0
## 23723 2 0 0
## 23724 2 0 0
## 23725 2 0 0
## 23726 1 0 0
## 23727 2 0 0
## 23728 2 0 0
## 23729 1 0 0
## 23730 3 0 0
## 23731 2 0 0
## 23732 2 0 0
## 23733 2 0 0
## 23734 2 0 0
## 23735 1 0 0
## 23736 1 0 0
## 23737 2 0 0
## 23738 1 0 0
## 23739 2 0 0
## 23740 2 0 0
## 23741 2 0 0
## 23742 1 0 0
## 23743 1 0 0
## 23744 2 0 0
## 23745 2 0 0
## 23746 1 0 0
## 23747 1 0 0
## 23748 2 0 0
## 23749 1 0 0
## 23750 2 0 0
## 23751 2 0 0
## 23752 3 0 0
## 23753 2 0 0
## 23754 2 0 0
## 23755 2 0 0
## 23756 2 0 0
## 23757 2 0 0
## 23758 1 0 0
## 23759 2 0 0
## 23760 2 0 0
## 23761 2 0 0
## 23762 1 0 0
## 23763 2 0 0
## 23764 2 0 0
## 23765 2 0 0
## 23766 2 0 0
## 23767 1 0 0
## 23768 1 0 0
## 23769 1 0 0
## 23770 2 0 0
## 23771 2 0 0
## 23772 2 0 0
## 23773 2 0 0
## 23774 2 0 0
## 23775 2 0 0
## 23776 2 0 0
## 23777 2 0 0
## 23778 2 0 0
## 23779 2 0 0
## 23780 1 0 0
## 23781 2 0 0
## 23782 2 0 0
## 23783 2 0 0
## 23784 2 0 0
## 23785 2 0 0
## 23786 2 0 0
## 23787 2 0 0
## 23788 2 0 0
## 23789 1 0 0
## 23790 2 0 0
## 23791 2 0 0
## 23792 2 0 0
## 23793 2 0 0
## 23794 2 0 0
## 23795 2 0 0
## 23796 2 0 0
## 23797 2 0 0
## 23798 2 0 0
## 23799 2 0 0
## 23800 2 0 0
## 23801 2 0 0
## 23802 1 0 0
## 23803 2 0 0
## 23804 2 0 0
## 23805 2 0 0
## 23806 2 0 0
## 23807 2 0 0
## 23808 2 0 0
## 23809 2 0 0
## 23810 1 0 0
## 23811 1 0 0
## 23812 2 0 0
## 23813 2 0 0
## 23814 2 0 0
## 23815 2 0 0
## 23816 2 0 0
## 23817 2 0 0
## 23818 2 0 0
## 23819 2 0 0
## 23820 2 0 0
## 23821 2 0 0
## 23822 2 0 0
## 23823 3 0 0
## 23824 1 0 0
## 23825 1 0 0
## 23826 1 0 0
## 23827 1 0 0
## 23828 2 0 0
## 23829 1 0 0
## 23830 2 0 0
## 23831 2 0 0
## 23832 2 0 0
## 23833 3 1 0
## 23834 1 0 0
## 23835 2 0 0
## 23836 2 0 0
## 23837 2 0 0
## 23838 2 0 0
## 23839 2 0 0
## 23840 2 0 0
## 23841 2 0 0
## 23842 2 0 0
## 23843 2 0 0
## 23844 2 0 0
## 23845 2 0 0
## 23846 2 0 0
## 23847 2 0 0
## 23848 2 0 0
## 23849 2 0 0
## 23850 1 0 0
## 23851 2 0 0
## 23852 2 0 0
## 23853 2 0 0
## 23854 2 0 0
## 23855 2 2 0
## 23856 1 0 0
## 23857 2 0 0
## 23858 2 0 0
## 23859 2 0 0
## 23860 2 0 0
## 23861 2 0 0
## 23862 2 0 0
## 23863 2 0 0
## 23864 2 0 0
## 23865 2 1 0
## 23866 2 0 0
## 23867 2 0 0
## 23868 1 0 0
## 23869 2 0 0
## 23870 1 0 0
## 23871 2 0 0
## 23872 2 0 0
## 23873 2 0 0
## 23874 2 0 0
## 23875 2 0 0
## 23876 2 0 0
## 23877 2 0 0
## 23878 2 0 0
## 23879 2 0 0
## 23880 2 0 0
## 23881 2 0 0
## 23882 2 0 0
## 23883 2 1 0
## 23884 2 1 0
## 23885 2 0 0
## 23886 2 0 0
## 23887 1 0 0
## 23888 2 0 0
## 23889 2 0 0
## 23890 2 0 0
## 23891 2 0 0
## 23892 2 0 0
## 23893 2 0 0
## 23894 2 0 0
## 23895 2 0 0
## 23896 2 0 0
## 23897 2 0 0
## 23898 2 0 0
## 23899 2 0 0
## 23900 2 0 0
## 23901 2 0 0
## 23902 2 0 0
## 23903 1 0 0
## 23904 2 0 0
## 23905 2 0 0
## 23906 1 0 0
## 23907 2 0 0
## 23908 2 0 0
## 23909 2 0 0
## 23910 2 0 0
## 23911 2 0 0
## 23912 2 0 0
## 23913 2 0 0
## 23914 2 0 0
## 23915 1 0 0
## 23916 2 2 0
## 23917 2 0 0
## 23918 2 0 0
## 23919 2 0 0
## 23920 2 0 0
## 23921 2 0 0
## 23922 1 0 0
## 23923 1 0 0
## 23924 2 0 0
## 23925 2 0 0
## 23926 2 0 0
## 23927 2 0 0
## 23928 2 0 0
## 23929 2 0 0
## 23930 2 2 0
## 23931 2 0 0
## 23932 2 0 0
## 23933 2 0 0
## 23934 2 0 0
## 23935 2 0 0
## 23936 2 0 0
## 23937 2 0 0
## 23938 2 0 0
## 23939 2 0 0
## 23940 1 0 0
## 23941 1 0 0
## 23942 2 0 0
## 23943 3 0 0
## 23944 3 0 0
## 23945 2 0 0
## 23946 2 0 0
## 23947 3 0 0
## 23948 1 0 0
## 23949 1 0 0
## 23950 2 0 0
## 23951 1 0 0
## 23952 2 0 0
## 23953 1 0 0
## 23954 1 0 0
## 23955 2 0 0
## 23956 2 0 0
## 23957 2 0 0
## 23958 2 0 0
## 23959 2 0 0
## 23960 2 0 0
## 23961 2 0 0
## 23962 3 0 0
## 23963 2 0 0
## 23964 2 0 0
## 23965 2 0 0
## 23966 2 0 0
## 23967 2 0 0
## 23968 1 0 0
## 23969 2 0 0
## 23970 2 0 0
## 23971 2 0 0
## 23972 2 0 0
## 23973 2 0 0
## 23974 2 0 0
## 23975 2 0 0
## 23976 2 0 0
## 23977 2 0 0
## 23978 2 0 0
## 23979 2 0 0
## 23980 2 0 0
## 23981 2 0 0
## 23982 2 0 0
## 23983 2 0 0
## 23984 2 0 0
## 23985 2 0 0
## 23986 1 0 0
## 23987 2 0 0
## 23988 2 0 0
## 23989 2 0 0
## 23990 1 0 0
## 23991 2 0 0
## 23992 1 0 0
## 23993 1 0 0
## 23994 1 0 0
## 23995 1 0 0
## 23996 2 0 0
## 23997 2 0 0
## 23998 2 0 0
## 23999 2 0 0
## 24000 2 0 0
## 24001 2 0 0
## 24002 2 0 0
## 24003 2 0 0
## 24004 2 0 0
## 24005 2 0 0
## 24006 2 0 0
## 24007 3 0 0
## 24008 2 2 0
## 24009 2 0 0
## 24010 2 0 0
## 24011 2 2 0
## 24012 1 0 0
## 24013 1 0 0
## 24014 2 0 0
## 24015 2 0 0
## 24016 2 0 0
## 24017 2 0 0
## 24018 2 0 0
## 24019 2 0 0
## 24020 2 0 0
## 24021 2 0 0
## 24022 2 0 0
## 24023 2 0 0
## 24024 1 0 0
## 24025 1 0 0
## 24026 2 0 0
## 24027 2 0 0
## 24028 1 0 0
## 24029 1 0 0
## 24030 2 2 0
## 24031 1 0 0
## 24032 1 0 0
## 24033 1 0 0
## 24034 1 0 0
## 24035 1 0 0
## 24036 2 0 0
## 24037 2 0 0
## 24038 1 0 0
## 24039 1 0 0
## 24040 1 0 0
## 24041 2 0 0
## 24042 2 0 0
## 24043 2 0 0
## 24044 2 0 0
## 24045 2 0 0
## 24046 2 0 0
## 24047 2 0 0
## 24048 2 0 0
## 24049 2 0 0
## 24050 1 0 0
## 24051 2 0 0
## 24052 2 0 0
## 24053 2 0 0
## 24054 2 0 0
## 24055 2 0 0
## 24056 1 0 0
## 24057 1 0 0
## 24058 2 0 0
## 24059 1 0 0
## 24060 2 0 0
## 24061 2 0 0
## 24062 2 0 0
## 24063 2 0 0
## 24064 2 0 0
## 24065 1 0 0
## 24066 2 0 0
## 24067 2 0 0
## 24068 2 0 0
## 24069 2 0 0
## 24070 2 0 0
## 24071 1 0 0
## 24072 2 0 0
## 24073 2 0 0
## 24074 2 0 0
## 24075 2 0 0
## 24076 2 0 0
## 24077 2 0 0
## 24078 1 0 0
## 24079 2 0 0
## 24080 2 0 0
## 24081 2 0 0
## 24082 2 0 0
## 24083 2 0 0
## 24084 2 0 0
## 24085 1 0 0
## 24086 1 0 0
## 24087 2 0 0
## 24088 2 0 0
## 24089 1 0 0
## 24090 1 0 0
## 24091 1 0 0
## 24092 1 0 0
## 24093 2 0 0
## 24094 2 2 0
## 24095 2 0 0
## 24096 2 0 0
## 24097 2 0 0
## 24098 3 2 0
## 24099 1 0 0
## 24100 1 0 0
## 24101 2 2 0
## 24102 2 2 0
## 24103 2 2 0
## 24104 1 0 0
## 24105 2 0 0
## 24106 2 2 0
## 24107 2 0 0
## 24108 2 0 0
## 24109 2 0 0
## 24110 2 0 0
## 24111 2 0 0
## 24112 2 0 0
## 24113 1 0 0
## 24114 1 0 0
## 24115 1 0 0
## 24116 2 0 0
## 24117 1 0 0
## 24118 1 0 0
## 24119 1 0 0
## 24120 1 0 0
## 24121 1 0 0
## 24122 1 0 0
## 24123 1 0 0
## 24124 1 0 0
## 24125 2 0 0
## 24126 2 0 0
## 24127 2 0 0
## 24128 2 0 0
## 24129 2 3 0
## 24130 3 0 0
## 24131 2 0 0
## 24132 2 0 0
## 24133 2 0 0
## 24134 2 0 0
## 24135 2 0 0
## 24136 2 0 0
## 24137 2 0 0
## 24138 2 0 0
## 24139 1 0 0
## 24140 1 0 0
## 24141 1 0 0
## 24142 2 0 0
## 24143 2 0 0
## 24144 3 1 0
## 24145 2 0 0
## 24146 2 0 0
## 24147 2 0 0
## 24148 2 0 0
## 24149 2 0 0
## 24150 2 0 0
## 24151 2 0 0
## 24152 2 0 0
## 24153 2 0 0
## 24154 1 0 0
## 24155 2 0 0
## 24156 2 0 0
## 24157 2 0 0
## 24158 3 0 0
## 24159 2 0 0
## 24160 2 0 0
## 24161 2 0 0
## 24162 2 0 0
## 24163 2 0 0
## 24164 2 0 0
## 24165 2 1 0
## 24166 1 0 0
## 24167 2 0 0
## 24168 2 0 0
## 24169 2 0 0
## 24170 2 0 0
## 24171 2 0 0
## 24172 2 0 0
## 24173 2 0 0
## 24174 2 0 0
## 24175 2 0 0
## 24176 1 0 0
## 24177 2 0 0
## 24178 2 0 0
## 24179 2 0 0
## 24180 2 0 0
## 24181 2 0 0
## 24182 2 0 0
## 24183 2 2 0
## 24184 3 1 0
## 24185 2 0 0
## 24186 1 0 0
## 24187 2 2 0
## 24188 2 0 0
## 24189 2 0 0
## 24190 1 0 0
## 24191 2 0 0
## 24192 2 0 0
## 24193 2 0 0
## 24194 2 0 0
## 24195 2 2 0
## 24196 2 2 0
## 24197 2 0 0
## 24198 2 0 0
## 24199 2 0 0
## 24200 2 0 0
## 24201 2 0 0
## 24202 2 0 0
## 24203 2 0 0
## 24204 2 0 0
## 24205 2 0 0
## 24206 2 0 0
## 24207 2 0 0
## 24208 2 0 0
## 24209 2 0 0
## 24210 2 0 0
## 24211 2 0 0
## 24212 2 0 0
## 24213 2 0 0
## 24214 2 0 0
## 24215 2 0 0
## 24216 2 0 0
## 24217 2 0 0
## 24218 2 0 0
## 24219 2 0 0
## 24220 2 0 0
## 24221 1 0 0
## 24222 1 0 0
## 24223 2 0 0
## 24224 1 0 0
## 24225 2 0 0
## 24226 2 0 0
## 24227 2 0 0
## 24228 1 0 0
## 24229 2 0 0
## 24230 2 0 0
## 24231 2 0 0
## 24232 2 0 0
## 24233 2 0 0
## 24234 2 0 0
## 24235 3 0 0
## 24236 2 0 0
## 24237 2 0 0
## 24238 1 0 0
## 24239 2 0 0
## 24240 2 0 0
## 24241 1 0 0
## 24242 1 0 0
## 24243 2 0 0
## 24244 2 1 0
## 24245 2 0 0
## 24246 2 0 0
## 24247 2 0 0
## 24248 2 0 0
## 24249 2 0 0
## 24250 1 0 0
## 24251 2 1 0
## 24252 2 0 0
## 24253 1 0 0
## 24254 2 0 0
## 24255 2 0 0
## 24256 2 0 0
## 24257 2 0 0
## 24258 2 0 0
## 24259 2 0 0
## 24260 2 0 0
## 24261 2 0 0
## 24262 2 0 0
## 24263 2 0 0
## 24264 2 0 0
## 24265 2 0 0
## 24266 2 0 0
## 24267 2 0 0
## 24268 2 0 0
## 24269 3 0 0
## 24270 2 0 0
## 24271 2 0 0
## 24272 2 0 0
## 24273 2 0 0
## 24274 2 0 0
## 24275 2 0 0
## 24276 2 0 0
## 24277 2 0 0
## 24278 2 0 0
## 24279 2 0 0
## 24280 2 0 0
## 24281 2 0 0
## 24282 2 0 0
## 24283 2 0 0
## 24284 2 0 0
## 24285 2 0 0
## 24286 1 0 0
## 24287 2 0 0
## 24288 1 0 0
## 24289 2 0 0
## 24290 2 0 0
## 24291 2 0 0
## 24292 2 0 0
## 24293 2 0 0
## 24294 2 0 0
## 24295 2 0 0
## 24296 2 0 0
## 24297 2 0 0
## 24298 2 0 0
## 24299 2 0 0
## 24300 2 0 0
## 24301 2 0 0
## 24302 2 0 0
## 24303 2 0 0
## 24304 2 0 0
## 24305 2 0 0
## 24306 2 1 0
## 24307 2 0 0
## 24308 2 0 0
## 24309 2 0 0
## 24310 2 0 0
## 24311 2 0 0
## 24312 2 0 0
## 24313 2 0 0
## 24314 2 0 0
## 24315 2 0 0
## 24316 2 0 0
## 24317 2 0 0
## 24318 2 2 0
## 24319 3 0 0
## 24320 2 0 0
## 24321 2 0 0
## 24322 2 0 0
## 24323 2 0 0
## 24324 2 0 0
## 24325 2 0 0
## 24326 2 0 0
## 24327 2 0 0
## 24328 2 0 0
## 24329 2 0 0
## 24330 2 0 0
## 24331 2 0 0
## 24332 2 0 0
## 24333 2 0 0
## 24334 2 0 0
## 24335 2 0 0
## 24336 2 0 0
## 24337 2 0 0
## 24338 2 0 0
## 24339 2 0 0
## 24340 1 0 0
## 24341 2 0 0
## 24342 2 2 0
## 24343 2 2 0
## 24344 1 0 0
## 24345 2 0 0
## 24346 2 0 0
## 24347 2 0 0
## 24348 2 0 0
## 24349 2 0 0
## 24350 3 1 0
## 24351 2 0 0
## 24352 2 2 0
## 24353 2 2 0
## 24354 2 0 0
## 24355 2 0 0
## 24356 2 0 0
## 24357 2 0 0
## 24358 2 0 0
## 24359 2 0 0
## 24360 2 0 0
## 24361 2 0 0
## 24362 2 0 0
## 24363 2 0 0
## 24364 1 0 0
## 24365 2 0 0
## 24366 3 0 0
## 24367 2 0 0
## 24368 2 0 0
## 24369 1 0 0
## 24370 2 2 0
## 24371 2 0 0
## 24372 2 1 0
## 24373 2 0 0
## 24374 2 0 0
## 24375 2 0 0
## 24376 2 0 0
## 24377 2 0 0
## 24378 2 0 0
## 24379 2 0 0
## 24380 2 0 0
## 24381 2 0 0
## 24382 2 0 0
## 24383 2 0 0
## 24384 2 2 0
## 24385 2 0 0
## 24386 2 0 0
## 24387 2 0 0
## 24388 2 0 0
## 24389 2 0 0
## 24390 2 0 0
## 24391 2 0 0
## 24392 2 0 0
## 24393 2 1 0
## 24394 2 0 0
## 24395 2 0 0
## 24396 2 2 0
## 24397 2 0 0
## 24398 2 2 0
## 24399 2 0 0
## 24400 2 1 0
## 24401 2 0 0
## 24402 2 0 0
## 24403 3 0 0
## 24404 2 2 0
## 24405 2 0 0
## 24406 2 0 0
## 24407 2 0 0
## 24408 1 0 0
## 24409 1 0 0
## 24410 1 0 0
## 24411 2 0 0
## 24412 2 0 0
## 24413 1 0 0
## 24414 2 0 0
## 24415 3 0 0
## 24416 2 0 0
## 24417 2 0 0
## 24418 1 0 0
## 24419 1 0 0
## 24420 2 0 0
## 24421 1 0 0
## 24422 1 0 0
## 24423 1 0 0
## 24424 2 0 0
## 24425 2 0 0
## 24426 1 0 0
## 24427 2 0 0
## 24428 2 0 0
## 24429 1 0 0
## 24430 2 0 0
## 24431 2 0 0
## 24432 2 0 0
## 24433 2 0 0
## 24434 2 0 0
## 24435 2 0 0
## 24436 2 0 0
## 24437 2 0 0
## 24438 2 0 0
## 24439 2 0 0
## 24440 2 0 0
## 24441 2 2 0
## 24442 2 0 0
## 24443 2 0 0
## 24444 2 0 0
## 24445 2 0 0
## 24446 2 0 0
## 24447 1 0 0
## 24448 1 0 0
## 24449 2 0 0
## 24450 2 0 0
## 24451 2 0 0
## 24452 1 0 0
## 24453 1 0 0
## 24454 1 0 0
## 24455 1 0 0
## 24456 2 0 0
## 24457 2 0 0
## 24458 2 0 0
## 24459 2 0 0
## 24460 2 0 0
## 24461 2 0 0
## 24462 2 1 0
## 24463 2 0 0
## 24464 2 0 0
## 24465 2 0 0
## 24466 2 0 0
## 24467 2 0 0
## 24468 2 0 0
## 24469 2 0 0
## 24470 2 0 0
## 24471 2 0 0
## 24472 2 0 0
## 24473 2 0 0
## 24474 1 0 0
## 24475 2 0 0
## 24476 2 0 0
## 24477 2 0 0
## 24478 1 0 0
## 24479 1 0 0
## 24480 2 0 0
## 24481 2 0 0
## 24482 2 0 0
## 24483 1 0 0
## 24484 2 0 0
## 24485 1 0 0
## 24486 2 0 0
## 24487 1 0 0
## 24488 2 0 0
## 24489 2 0 0
## 24490 2 0 0
## 24491 2 0 0
## 24492 1 0 0
## 24493 1 0 0
## 24494 3 1 0
## 24495 2 0 0
## 24496 2 0 0
## 24497 2 0 0
## 24498 2 0 0
## 24499 2 0 0
## 24500 1 0 0
## 24501 2 0 0
## 24502 2 0 0
## 24503 2 0 0
## 24504 2 0 0
## 24505 2 0 0
## 24506 2 1 0
## 24507 2 0 0
## 24508 2 0 0
## 24509 2 0 0
## 24510 2 0 0
## 24511 2 0 0
## 24512 1 0 0
## 24513 1 0 0
## 24514 2 0 0
## 24515 2 0 0
## 24516 2 0 0
## 24517 2 0 0
## 24518 2 0 0
## 24519 2 0 0
## 24520 2 0 0
## 24521 2 2 0
## 24522 2 0 0
## 24523 3 0 0
## 24524 2 0 0
## 24525 2 0 0
## 24526 2 0 0
## 24527 2 0 0
## 24528 2 0 0
## 24529 2 0 0
## 24530 2 0 0
## 24531 2 0 0
## 24532 2 2 0
## 24533 2 0 0
## 24534 1 2 0
## 24535 2 1 0
## 24536 2 0 0
## 24537 1 2 0
## 24538 3 1 0
## 24539 2 2 0
## 24540 2 0 0
## 24541 2 0 0
## 24542 2 0 0
## 24543 2 0 0
## 24544 2 2 0
## 24545 2 0 0
## 24546 2 0 0
## 24547 2 1 0
## 24548 2 0 0
## 24549 2 0 0
## 24550 2 0 0
## 24551 2 0 0
## 24552 2 0 0
## 24553 3 0 0
## 24554 2 0 0
## 24555 2 0 0
## 24556 2 0 0
## 24557 2 0 0
## 24558 2 0 0
## 24559 2 0 0
## 24560 2 0 0
## 24561 3 1 0
## 24562 2 0 0
## 24563 2 0 0
## 24564 3 1 0
## 24565 3 1 0
## 24566 2 0 0
## 24567 2 0 0
## 24568 2 0 0
## 24569 2 0 0
## 24570 2 0 0
## 24571 2 0 0
## 24572 2 0 0
## 24573 2 0 0
## 24574 2 2 0
## 24575 2 0 0
## 24576 2 0 0
## 24577 2 0 0
## 24578 2 0 0
## 24579 2 0 0
## 24580 1 0 0
## 24581 2 0 0
## 24582 2 0 0
## 24583 2 0 0
## 24584 2 0 0
## 24585 2 0 0
## 24586 2 1 0
## 24587 2 0 0
## 24588 2 0 0
## 24589 2 0 0
## 24590 2 0 0
## 24591 2 0 0
## 24592 2 0 0
## 24593 1 0 0
## 24594 2 0 0
## 24595 2 0 0
## 24596 2 0 0
## 24597 2 0 0
## 24598 2 0 0
## 24599 2 0 0
## 24600 3 0 0
## 24601 3 0 0
## 24602 2 0 0
## 24603 2 0 0
## 24604 2 0 0
## 24605 2 0 0
## 24606 2 0 0
## 24607 2 0 0
## 24608 2 0 0
## 24609 2 0 0
## 24610 2 0 0
## 24611 2 0 0
## 24612 2 0 0
## 24613 2 0 0
## 24614 2 0 0
## 24615 2 0 0
## 24616 2 0 0
## 24617 2 0 0
## 24618 2 0 0
## 24619 2 0 0
## 24620 2 0 0
## 24621 2 0 0
## 24622 2 0 0
## 24623 2 0 0
## 24624 2 0 0
## 24625 2 0 0
## 24626 2 0 0
## 24627 2 0 0
## 24628 2 0 0
## 24629 2 0 0
## 24630 2 0 0
## 24631 2 0 0
## 24632 2 0 0
## 24633 2 0 0
## 24634 3 1 0
## 24635 2 1 0
## 24636 2 0 0
## 24637 1 0 0
## 24638 2 0 0
## 24639 2 0 0
## 24640 2 0 0
## 24641 2 0 0
## 24642 3 0 0
## 24643 2 0 0
## 24644 2 0 0
## 24645 2 0 0
## 24646 2 0 0
## 24647 2 0 0
## 24648 2 0 0
## 24649 2 0 0
## 24650 2 0 0
## 24651 2 0 0
## 24652 2 0 0
## 24653 2 0 0
## 24654 2 0 0
## 24655 2 0 0
## 24656 2 0 0
## 24657 2 0 0
## 24658 2 0 0
## 24659 2 0 0
## 24660 2 0 0
## 24661 1 0 0
## 24662 2 0 0
## 24663 2 0 0
## 24664 1 0 0
## 24665 2 0 0
## 24666 2 0 0
## 24667 2 0 0
## 24668 2 0 0
## 24669 1 0 0
## 24670 2 0 0
## 24671 2 0 0
## 24672 2 0 0
## 24673 2 0 0
## 24674 2 0 0
## 24675 2 0 0
## 24676 2 0 0
## 24677 2 0 0
## 24678 2 0 0
## 24679 2 0 0
## 24680 2 0 0
## 24681 3 0 0
## 24682 2 0 0
## 24683 2 0 0
## 24684 2 0 0
## 24685 2 0 0
## 24686 2 0 0
## 24687 2 0 0
## 24688 2 0 0
## 24689 2 0 0
## 24690 2 0 0
## 24691 2 0 0
## 24692 2 0 0
## 24693 2 0 0
## 24694 2 0 0
## 24695 2 0 0
## 24696 2 0 0
## 24697 2 0 0
## 24698 2 0 0
## 24699 2 0 0
## 24700 2 2 0
## 24701 2 0 0
## 24702 2 0 0
## 24703 2 0 0
## 24704 2 0 0
## 24705 1 0 0
## 24706 2 0 0
## 24707 2 0 0
## 24708 2 0 0
## 24709 2 0 0
## 24710 2 0 0
## 24711 2 1 0
## 24712 2 2 0
## 24713 2 0 0
## 24714 1 1 0
## 24715 3 1 0
## 24716 2 1 0
## 24717 2 0 0
## 24718 2 1 0
## 24719 2 0 0
## 24720 2 0 0
## 24721 2 0 0
## 24722 2 0 0
## 24723 2 0 0
## 24724 2 0 0
## 24725 1 0 0
## 24726 2 0 0
## 24727 2 1 0
## 24728 3 0 0
## 24729 2 0 0
## 24730 2 0 0
## 24731 3 0 0
## 24732 1 0 0
## 24733 2 0 0
## 24734 1 0 0
## 24735 3 0 0
## 24736 2 1 0
## 24737 1 0 0
## 24738 2 0 0
## 24739 2 0 0
## 24740 2 0 0
## 24741 2 0 0
## 24742 2 0 0
## 24743 2 0 0
## 24744 2 0 0
## 24745 2 0 0
## 24746 2 0 0
## 24747 3 0 0
## 24748 1 0 0
## 24749 2 0 0
## 24750 2 0 0
## 24751 1 0 0
## 24752 2 0 0
## 24753 2 0 0
## 24754 1 0 0
## 24755 3 0 0
## 24756 1 0 0
## 24757 2 0 0
## 24758 2 0 0
## 24759 2 0 0
## 24760 2 0 0
## 24761 2 0 0
## 24762 2 0 0
## 24763 2 0 0
## 24764 2 0 0
## 24765 2 0 0
## 24766 2 0 0
## 24767 2 0 0
## 24768 2 0 0
## 24769 1 0 0
## 24770 2 0 0
## 24771 2 0 0
## 24772 2 0 0
## 24773 3 1 0
## 24774 2 0 0
## 24775 2 0 0
## 24776 2 0 0
## 24777 2 0 0
## 24778 2 0 0
## 24779 2 0 0
## 24780 2 0 0
## 24781 2 0 0
## 24782 1 1 0
## 24783 2 0 0
## 24784 1 0 0
## 24785 2 0 0
## 24786 2 0 0
## 24787 2 0 0
## 24788 2 0 0
## 24789 2 0 0
## 24790 2 0 0
## 24791 2 0 0
## 24792 2 0 0
## 24793 2 0 0
## 24794 2 0 0
## 24795 1 0 0
## 24796 2 0 0
## 24797 1 0 0
## 24798 1 0 0
## 24799 2 0 0
## 24800 2 2 0
## 24801 1 0 0
## 24802 2 0 0
## 24803 2 0 0
## 24804 2 0 0
## 24805 2 0 0
## 24806 2 0 0
## 24807 2 0 0
## 24808 2 0 0
## 24809 2 0 0
## 24810 2 0 0
## 24811 2 0 0
## 24812 2 0 0
## 24813 2 0 0
## 24814 2 0 0
## 24815 2 0 0
## 24816 2 2 0
## 24817 2 0 0
## 24818 2 0 0
## 24819 3 0 0
## 24820 2 0 0
## 24821 3 1 0
## 24822 2 0 0
## 24823 2 0 0
## 24824 2 0 0
## 24825 2 0 0
## 24826 2 0 0
## 24827 2 0 0
## 24828 1 1 0
## 24829 2 0 0
## 24830 2 0 0
## 24831 2 0 0
## 24832 2 0 0
## 24833 2 0 0
## 24834 1 0 0
## 24835 1 0 0
## 24836 1 0 0
## 24837 1 0 0
## 24838 1 0 0
## 24839 1 0 0
## 24840 1 0 0
## 24841 1 0 0
## 24842 1 0 0
## 24843 1 0 0
## 24844 1 0 0
## 24845 1 0 0
## 24846 1 0 0
## 24847 1 0 0
## 24848 2 0 0
## 24849 1 0 0
## 24850 2 0 0
## 24851 2 0 0
## 24852 2 0 0
## 24853 2 0 0
## 24854 2 0 0
## 24855 2 0 0
## 24856 2 2 0
## 24857 2 0 0
## 24858 2 0 0
## 24859 2 0 0
## 24860 2 0 0
## 24861 2 0 0
## 24862 2 0 0
## 24863 2 0 0
## 24864 2 0 0
## 24865 1 0 0
## 24866 2 0 0
## 24867 1 0 0
## 24868 2 0 0
## 24869 2 0 0
## 24870 2 0 0
## 24871 2 0 0
## 24872 2 0 0
## 24873 2 2 0
## 24874 2 2 0
## 24875 2 2 0
## 24876 2 0 0
## 24877 2 0 0
## 24878 3 0 0
## 24879 2 2 0
## 24880 2 0 0
## 24881 2 0 0
## 24882 2 0 0
## 24883 2 0 0
## 24884 2 0 0
## 24885 2 0 0
## 24886 2 0 0
## 24887 2 0 0
## 24888 2 0 0
## 24889 2 0 0
## 24890 2 0 0
## 24891 1 0 0
## 24892 1 0 0
## 24893 1 0 0
## 24894 2 0 0
## 24895 1 0 0
## 24896 2 0 0
## 24897 2 0 0
## 24898 2 0 0
## 24899 1 0 0
## 24900 2 0 0
## 24901 2 0 0
## 24902 2 0 0
## 24903 3 0 0
## 24904 2 0 0
## 24905 2 0 0
## 24906 2 0 0
## 24907 1 0 0
## 24908 2 0 0
## 24909 2 0 0
## 24910 3 0 0
## 24911 2 0 0
## 24912 2 0 0
## 24913 2 0 0
## 24914 2 2 0
## 24915 2 0 0
## 24916 2 0 0
## 24917 2 0 0
## 24918 2 0 0
## 24919 2 0 0
## 24920 2 0 0
## 24921 2 2 0
## 24922 2 0 0
## 24923 2 0 0
## 24924 2 0 0
## 24925 2 0 0
## 24926 2 0 0
## 24927 2 0 0
## 24928 3 0 0
## 24929 2 0 0
## 24930 2 0 0
## 24931 2 1 0
## 24932 2 0 0
## 24933 2 0 0
## 24934 2 0 0
## 24935 3 1 0
## 24936 2 2 0
## 24937 2 0 0
## 24938 2 0 0
## 24939 2 0 0
## 24940 2 0 0
## 24941 2 0 0
## 24942 1 0 0
## 24943 1 0 0
## 24944 1 0 0
## 24945 1 0 0
## 24946 2 0 0
## 24947 2 2 0
## 24948 2 0 0
## 24949 1 0 0
## 24950 2 0 0
## 24951 2 0 0
## 24952 2 0 0
## 24953 2 0 0
## 24954 2 0 0
## 24955 2 0 0
## 24956 2 0 0
## 24957 2 0 0
## 24958 2 0 0
## 24959 2 0 0
## 24960 2 0 0
## 24961 2 0 0
## 24962 1 0 0
## 24963 2 0 0
## 24964 2 0 0
## 24965 2 2 0
## 24966 2 0 0
## 24967 2 0 0
## 24968 2 0 0
## 24969 2 0 0
## 24970 2 0 0
## 24971 2 0 0
## 24972 2 0 0
## 24973 2 0 0
## 24974 2 0 0
## 24975 2 0 0
## 24976 2 0 0
## 24977 2 0 0
## 24978 2 0 0
## 24979 2 0 0
## 24980 3 0 0
## 24981 2 0 0
## 24982 2 0 0
## 24983 2 0 0
## 24984 1 0 0
## 24985 2 0 0
## 24986 2 0 0
## 24987 1 0 0
## 24988 2 0 0
## 24989 2 0 0
## 24990 2 0 0
## 24991 2 0 0
## 24992 2 0 0
## 24993 2 0 0
## 24994 2 0 0
## 24995 2 1 0
## 24996 2 0 0
## 24997 2 0 0
## 24998 2 0 0
## 24999 2 0 0
## 25000 2 0 0
## 25001 2 0 0
## 25002 2 0 0
## 25003 2 0 0
## 25004 2 2 0
## 25005 2 1 0
## 25006 2 0 0
## 25007 2 0 0
## 25008 3 0 0
## 25009 1 0 0
## 25010 2 0 0
## 25011 2 0 0
## 25012 1 0 0
## 25013 2 0 0
## 25014 2 0 0
## 25015 2 0 0
## 25016 2 2 0
## 25017 1 0 0
## 25018 2 2 0
## 25019 1 0 0
## 25020 1 0 0
## 25021 2 0 0
## 25022 1 0 0
## 25023 2 0 0
## 25024 2 2 0
## 25025 2 0 0
## 25026 2 0 0
## 25027 2 0 0
## 25028 2 0 0
## 25029 2 0 0
## 25030 2 0 0
## 25031 1 1 0
## 25032 1 0 0
## 25033 1 0 0
## 25034 2 0 0
## 25035 2 0 0
## 25036 2 0 0
## 25037 2 0 0
## 25038 2 0 0
## 25039 2 0 0
## 25040 2 0 0
## 25041 2 0 0
## 25042 2 0 0
## 25043 2 0 0
## 25044 2 0 0
## 25045 1 0 0
## 25046 2 0 0
## 25047 2 0 0
## 25048 2 0 0
## 25049 2 0 0
## 25050 2 0 0
## 25051 2 0 0
## 25052 2 0 0
## 25053 2 0 0
## 25054 2 0 0
## 25055 1 0 0
## 25056 1 0 0
## 25057 3 1 0
## 25058 2 2 0
## 25059 1 0 0
## 25060 2 0 0
## 25061 2 0 0
## 25062 1 0 0
## 25063 2 0 0
## 25064 2 0 0
## 25065 2 0 0
## 25066 2 0 0
## 25067 2 0 0
## 25068 2 0 0
## 25069 3 1 0
## 25070 2 0 0
## 25071 2 2 0
## 25072 2 0 0
## 25073 2 0 0
## 25074 3 0 0
## 25075 2 0 0
## 25076 2 0 0
## 25077 2 0 0
## 25078 2 0 0
## 25079 2 0 0
## 25080 2 0 0
## 25081 2 0 0
## 25082 2 0 0
## 25083 2 0 0
## 25084 2 0 0
## 25085 2 3 0
## 25086 2 0 0
## 25087 2 0 0
## 25088 2 0 0
## 25089 2 0 0
## 25090 2 0 0
## 25091 2 0 0
## 25092 3 1 0
## 25093 1 0 0
## 25094 2 0 0
## 25095 2 0 0
## 25096 2 0 0
## 25097 2 0 0
## 25098 2 0 0
## 25099 1 0 0
## 25100 2 0 0
## 25101 2 0 0
## 25102 2 0 0
## 25103 2 0 0
## 25104 2 0 0
## 25105 2 0 0
## 25106 2 0 0
## 25107 3 0 0
## 25108 2 1 0
## 25109 2 0 0
## 25110 2 0 0
## 25111 2 0 0
## 25112 2 0 0
## 25113 2 0 0
## 25114 3 0 0
## 25115 2 0 0
## 25116 2 0 0
## 25117 2 0 0
## 25118 2 0 0
## 25119 2 0 0
## 25120 3 1 0
## 25121 2 0 0
## 25122 3 0 0
## 25123 2 0 0
## 25124 1 0 0
## 25125 2 2 0
## 25126 2 0 0
## 25127 2 1 0
## 25128 2 0 0
## 25129 2 0 0
## 25130 2 0 0
## 25131 2 0 0
## 25132 2 0 0
## 25133 2 0 0
## 25134 3 1 0
## 25135 2 0 0
## 25136 2 1 0
## 25137 2 0 0
## 25138 2 0 0
## 25139 2 0 0
## 25140 1 0 0
## 25141 1 0 0
## 25142 1 0 0
## 25143 1 0 0
## 25144 1 0 0
## 25145 1 0 0
## 25146 2 0 0
## 25147 2 0 0
## 25148 2 0 0
## 25149 2 0 0
## 25150 3 1 0
## 25151 2 0 0
## 25152 2 0 0
## 25153 2 0 0
## 25154 1 0 0
## 25155 2 0 0
## 25156 2 0 0
## 25157 2 0 0
## 25158 2 0 0
## 25159 2 0 0
## 25160 2 0 0
## 25161 2 0 0
## 25162 2 0 0
## 25163 2 0 0
## 25164 2 0 0
## 25165 2 0 0
## 25166 2 0 0
## 25167 2 0 0
## 25168 1 0 0
## 25169 2 2 0
## 25170 2 0 0
## 25171 2 0 0
## 25172 2 0 0
## 25173 2 0 0
## 25174 2 0 0
## 25175 2 0 0
## 25176 1 0 0
## 25177 2 0 0
## 25178 2 0 0
## 25179 2 0 0
## 25180 2 0 0
## 25181 2 0 0
## 25182 2 0 0
## 25183 2 0 0
## 25184 2 0 0
## 25185 2 0 0
## 25186 2 0 0
## 25187 2 0 0
## 25188 2 0 0
## 25189 2 0 0
## 25190 2 0 0
## 25191 1 0 0
## 25192 2 0 0
## 25193 2 0 0
## 25194 2 0 0
## 25195 2 0 0
## 25196 2 0 0
## 25197 2 0 0
## 25198 3 0 0
## 25199 2 0 0
## 25200 2 0 0
## 25201 2 0 0
## 25202 2 2 0
## 25203 2 2 0
## 25204 2 0 0
## 25205 2 0 0
## 25206 2 1 0
## 25207 2 0 0
## 25208 2 0 0
## 25209 2 0 0
## 25210 2 0 0
## 25211 2 0 0
## 25212 2 0 0
## 25213 1 0 0
## 25214 2 0 0
## 25215 2 0 0
## 25216 2 0 0
## 25217 1 0 0
## 25218 1 0 0
## 25219 3 0 0
## 25220 2 0 0
## 25221 2 0 0
## 25222 2 0 0
## 25223 2 0 0
## 25224 2 0 0
## 25225 2 0 0
## 25226 2 0 0
## 25227 1 0 0
## 25228 2 0 0
## 25229 2 2 0
## 25230 2 0 0
## 25231 2 0 0
## 25232 3 0 0
## 25233 2 0 0
## 25234 2 0 0
## 25235 2 0 0
## 25236 2 0 0
## 25237 2 0 0
## 25238 2 0 0
## 25239 2 0 0
## 25240 2 0 0
## 25241 2 0 0
## 25242 2 0 0
## 25243 2 0 0
## 25244 2 0 0
## 25245 2 0 0
## 25246 3 0 0
## 25247 2 0 0
## 25248 2 0 0
## 25249 2 1 0
## 25250 2 0 0
## 25251 2 0 0
## 25252 2 0 0
## 25253 2 1 0
## 25254 2 2 0
## 25255 2 2 0
## 25256 1 0 0
## 25257 2 0 0
## 25258 2 0 0
## 25259 2 0 0
## 25260 1 0 0
## 25261 2 0 0
## 25262 2 0 0
## 25263 2 0 0
## 25264 2 0 0
## 25265 1 0 0
## 25266 2 0 0
## 25267 2 0 0
## 25268 2 0 0
## 25269 2 1 0
## 25270 2 1 0
## 25271 2 0 0
## 25272 2 0 0
## 25273 2 0 0
## 25274 2 0 0
## 25275 2 0 0
## 25276 2 0 0
## 25277 2 0 0
## 25278 2 0 0
## 25279 2 0 0
## 25280 2 0 0
## 25281 2 0 0
## 25282 2 1 0
## 25283 2 1 0
## 25284 2 2 0
## 25285 2 2 0
## 25286 2 0 0
## 25287 2 0 0
## 25288 2 0 0
## 25289 2 0 0
## 25290 2 2 0
## 25291 2 0 0
## 25292 2 0 0
## 25293 2 0 0
## 25294 3 0 0
## 25295 2 0 0
## 25296 2 0 0
## 25297 2 0 0
## 25298 2 0 0
## 25299 2 0 0
## 25300 2 0 0
## 25301 1 0 0
## 25302 2 0 0
## 25303 2 0 0
## 25304 2 0 0
## 25305 2 0 0
## 25306 2 0 0
## 25307 2 0 0
## 25308 2 0 0
## 25309 2 0 0
## 25310 2 0 0
## 25311 2 0 0
## 25312 2 0 0
## 25313 3 0 0
## 25314 1 0 0
## 25315 2 0 0
## 25316 2 0 0
## 25317 2 0 0
## 25318 3 0 0
## 25319 2 0 0
## 25320 2 0 0
## 25321 2 0 0
## 25322 2 0 0
## 25323 2 0 0
## 25324 2 0 0
## 25325 2 0 0
## 25326 2 0 0
## 25327 2 0 0
## 25328 2 0 0
## 25329 2 0 0
## 25330 2 1 0
## 25331 2 0 0
## 25332 2 0 0
## 25333 2 0 0
## 25334 2 0 0
## 25335 2 1 0
## 25336 2 0 0
## 25337 2 0 0
## 25338 2 0 0
## 25339 2 0 0
## 25340 2 0 0
## 25341 2 0 0
## 25342 3 0 0
## 25343 3 0 0
## 25344 2 0 0
## 25345 2 2 0
## 25346 2 0 0
## 25347 2 0 0
## 25348 1 0 0
## 25349 2 0 0
## 25350 2 0 0
## 25351 2 0 0
## 25352 2 0 0
## 25353 2 0 0
## 25354 2 0 0
## 25355 2 0 0
## 25356 2 0 0
## 25357 2 2 0
## 25358 2 0 0
## 25359 2 0 0
## 25360 1 0 0
## 25361 2 0 0
## 25362 1 0 0
## 25363 2 0 0
## 25364 1 0 0
## 25365 2 0 0
## 25366 2 0 0
## 25367 2 0 0
## 25368 2 0 0
## 25369 2 0 0
## 25370 2 0 0
## 25371 2 0 0
## 25372 2 0 0
## 25373 2 0 0
## 25374 3 1 0
## 25375 2 0 0
## 25376 3 1 0
## 25377 2 1 0
## 25378 2 2 0
## 25379 2 1 0
## 25380 2 0 0
## 25381 2 0 0
## 25382 2 0 0
## 25383 2 0 0
## 25384 2 0 0
## 25385 2 0 0
## 25386 2 2 0
## 25387 2 0 0
## 25388 3 0 0
## 25389 3 0 0
## 25390 1 0 0
## 25391 2 0 0
## 25392 2 0 0
## 25393 2 0 0
## 25394 2 0 0
## 25395 2 2 0
## 25396 2 0 0
## 25397 1 0 0
## 25398 1 0 0
## 25399 1 0 0
## 25400 1 0 0
## 25401 1 0 0
## 25402 1 0 0
## 25403 1 0 0
## 25404 1 0 0
## 25405 1 0 0
## 25406 1 0 0
## 25407 2 0 0
## 25408 2 0 0
## 25409 2 1 0
## 25410 2 2 0
## 25411 3 0 0
## 25412 2 0 0
## 25413 2 0 0
## 25414 2 0 0
## 25415 2 0 0
## 25416 1 0 0
## 25417 2 0 0
## 25418 3 0 0
## 25419 2 0 0
## 25420 2 0 0
## 25421 2 0 0
## 25422 2 0 0
## 25423 2 0 0
## 25424 2 0 0
## 25425 2 0 0
## 25426 2 0 0
## 25427 2 0 0
## 25428 2 0 0
## 25429 2 2 0
## 25430 2 0 0
## 25431 2 0 0
## 25432 2 0 0
## 25433 2 0 0
## 25434 2 0 0
## 25435 2 0 0
## 25436 1 0 0
## 25437 2 0 0
## 25438 2 0 0
## 25439 2 0 0
## 25440 2 0 0
## 25441 2 0 0
## 25442 2 0 0
## 25443 2 0 0
## 25444 2 2 0
## 25445 2 0 0
## 25446 2 0 0
## 25447 2 0 0
## 25448 2 0 0
## 25449 2 0 0
## 25450 2 0 0
## 25451 2 0 0
## 25452 2 0 0
## 25453 2 0 0
## 25454 2 0 0
## 25455 1 0 0
## 25456 2 0 0
## 25457 2 0 0
## 25458 2 0 0
## 25459 2 2 0
## 25460 2 0 0
## 25461 2 0 0
## 25462 2 0 0
## 25463 2 0 0
## 25464 2 0 0
## 25465 2 0 0
## 25466 2 0 0
## 25467 2 0 0
## 25468 2 0 0
## 25469 2 0 0
## 25470 2 0 0
## 25471 2 0 0
## 25472 2 0 0
## 25473 1 0 0
## 25474 2 1 0
## 25475 2 1 0
## 25476 3 0 0
## 25477 2 0 0
## 25478 2 0 0
## 25479 2 0 0
## 25480 2 0 0
## 25481 3 1 0
## 25482 2 0 0
## 25483 2 1 0
## 25484 2 2 0
## 25485 2 0 0
## 25486 2 0 0
## 25487 2 0 0
## 25488 2 0 0
## 25489 2 0 0
## 25490 2 0 0
## 25491 2 1 0
## 25492 1 0 0
## 25493 2 0 0
## 25494 2 0 0
## 25495 2 0 0
## 25496 2 0 0
## 25497 2 0 0
## 25498 2 0 0
## 25499 2 0 0
## 25500 1 2 0
## 25501 1 0 0
## 25502 2 0 0
## 25503 2 0 0
## 25504 2 0 0
## 25505 2 0 0
## 25506 2 0 0
## 25507 2 1 0
## 25508 1 0 0
## 25509 2 2 0
## 25510 1 0 0
## 25511 2 0 0
## 25512 3 1 0
## 25513 2 3 0
## 25514 2 0 0
## 25515 2 0 0
## 25516 2 0 0
## 25517 2 0 0
## 25518 2 0 0
## 25519 2 0 0
## 25520 2 0 0
## 25521 2 0 0
## 25522 2 0 0
## 25523 2 0 0
## 25524 3 0 0
## 25525 2 0 0
## 25526 2 0 0
## 25527 2 2 0
## 25528 2 0 0
## 25529 2 0 0
## 25530 2 0 0
## 25531 1 0 0
## 25532 1 0 0
## 25533 1 0 0
## 25534 1 0 0
## 25535 1 0 0
## 25536 2 0 0
## 25537 1 0 0
## 25538 1 0 0
## 25539 1 0 0
## 25540 2 0 0
## 25541 2 0 0
## 25542 2 0 0
## 25543 2 0 0
## 25544 2 0 0
## 25545 2 0 0
## 25546 2 0 0
## 25547 2 0 0
## 25548 2 0 0
## 25549 2 0 0
## 25550 2 0 0
## 25551 2 0 0
## 25552 2 0 0
## 25553 2 0 0
## 25554 2 0 0
## 25555 2 0 0
## 25556 2 0 0
## 25557 2 0 0
## 25558 2 0 0
## 25559 2 0 0
## 25560 2 0 0
## 25561 2 0 0
## 25562 2 0 0
## 25563 3 1 0
## 25564 1 0 0
## 25565 2 0 0
## 25566 2 0 0
## 25567 2 0 0
## 25568 2 0 0
## 25569 2 2 0
## 25570 2 0 0
## 25571 2 0 0
## 25572 2 0 0
## 25573 1 0 0
## 25574 2 1 0
## 25575 2 1 0
## 25576 2 0 0
## 25577 2 0 0
## 25578 2 0 0
## 25579 2 0 0
## 25580 2 0 0
## 25581 2 0 0
## 25582 2 0 0
## 25583 2 0 0
## 25584 2 0 0
## 25585 2 0 0
## 25586 2 0 0
## 25587 2 0 0
## 25588 2 0 0
## 25589 2 0 0
## 25590 1 0 0
## 25591 3 1 0
## 25592 3 0 0
## 25593 2 0 0
## 25594 2 0 0
## 25595 2 0 0
## 25596 2 0 0
## 25597 2 0 0
## 25598 2 0 0
## 25599 2 0 0
## 25600 2 0 0
## 25601 2 0 0
## 25602 1 1 0
## 25603 2 0 0
## 25604 2 0 0
## 25605 2 0 0
## 25606 2 0 0
## 25607 1 0 0
## 25608 2 0 0
## 25609 2 2 0
## 25610 2 0 0
## 25611 2 0 0
## 25612 2 0 0
## 25613 2 0 0
## 25614 2 1 0
## 25615 2 0 0
## 25616 2 0 0
## 25617 3 0 0
## 25618 2 1 0
## 25619 2 0 0
## 25620 2 0 0
## 25621 2 0 0
## 25622 2 0 0
## 25623 2 0 0
## 25624 2 0 0
## 25625 2 0 0
## 25626 2 0 0
## 25627 1 1 0
## 25628 2 0 0
## 25629 2 0 0
## 25630 2 0 0
## 25631 2 0 0
## 25632 2 0 0
## 25633 2 0 0
## 25634 2 0 0
## 25635 1 0 0
## 25636 1 0 0
## 25637 2 0 0
## 25638 2 0 0
## 25639 2 0 0
## 25640 1 0 0
## 25641 2 0 0
## 25642 2 2 0
## 25643 2 0 0
## 25644 2 0 0
## 25645 2 1 0
## 25646 2 0 0
## 25647 2 0 0
## 25648 2 0 0
## 25649 3 1 0
## 25650 2 0 0
## 25651 2 0 0
## 25652 2 0 0
## 25653 2 0 0
## 25654 2 2 0
## 25655 2 1 0
## 25656 2 1 0
## 25657 2 0 0
## 25658 2 0 0
## 25659 2 1 0
## 25660 2 0 0
## 25661 2 1 0
## 25662 2 0 0
## 25663 2 0 0
## 25664 2 2 0
## 25665 2 0 0
## 25666 3 0 0
## 25667 2 0 0
## 25668 2 0 0
## 25669 2 0 0
## 25670 3 0 0
## 25671 2 0 0
## 25672 2 0 0
## 25673 2 0 0
## 25674 3 0 0
## 25675 3 0 0
## 25676 2 1 0
## 25677 2 0 0
## 25678 2 2 0
## 25679 2 0 0
## 25680 2 0 0
## 25681 2 0 0
## 25682 2 0 0
## 25683 2 0 0
## 25684 2 0 0
## 25685 2 2 0
## 25686 2 0 0
## 25687 2 0 0
## 25688 2 0 0
## 25689 2 0 0
## 25690 2 0 0
## 25691 2 0 0
## 25692 2 0 0
## 25693 2 0 0
## 25694 3 0 0
## 25695 2 0 0
## 25696 2 0 0
## 25697 2 0 0
## 25698 2 0 0
## 25699 2 0 0
## 25700 1 0 0
## 25701 1 0 0
## 25702 2 0 0
## 25703 2 1 0
## 25704 2 0 0
## 25705 2 0 0
## 25706 2 0 0
## 25707 2 0 0
## 25708 2 2 0
## 25709 2 2 0
## 25710 2 0 0
## 25711 2 0 0
## 25712 2 2 0
## 25713 2 0 0
## 25714 2 1 0
## 25715 2 1 0
## 25716 2 2 0
## 25717 3 2 0
## 25718 2 0 0
## 25719 2 0 0
## 25720 2 0 0
## 25721 2 0 0
## 25722 2 0 0
## 25723 2 0 0
## 25724 2 0 0
## 25725 2 0 0
## 25726 2 0 0
## 25727 2 0 0
## 25728 2 0 0
## 25729 2 0 0
## 25730 2 0 0
## 25731 1 0 0
## 25732 3 0 0
## 25733 2 0 0
## 25734 1 0 0
## 25735 1 0 0
## 25736 2 2 0
## 25737 1 0 0
## 25738 1 0 0
## 25739 2 0 0
## 25740 2 0 0
## 25741 2 0 0
## 25742 1 0 0
## 25743 1 0 0
## 25744 3 0 0
## 25745 2 0 0
## 25746 2 0 0
## 25747 2 0 0
## 25748 2 0 0
## 25749 2 0 0
## 25750 2 0 0
## 25751 2 0 0
## 25752 2 0 0
## 25753 2 0 0
## 25754 2 0 0
## 25755 2 0 0
## 25756 2 0 0
## 25757 2 0 0
## 25758 3 0 0
## 25759 2 0 0
## 25760 2 0 0
## 25761 2 0 0
## 25762 2 0 0
## 25763 2 0 0
## 25764 2 0 0
## 25765 2 2 0
## 25766 2 0 0
## 25767 2 0 0
## 25768 2 0 0
## 25769 2 0 0
## 25770 2 0 0
## 25771 2 0 0
## 25772 2 0 0
## 25773 2 2 0
## 25774 2 0 0
## 25775 2 0 0
## 25776 2 0 0
## 25777 2 0 0
## 25778 2 0 0
## 25779 2 1 0
## 25780 2 0 0
## 25781 2 0 0
## 25782 2 0 0
## 25783 2 1 0
## 25784 2 1 0
## 25785 2 0 0
## 25786 2 0 0
## 25787 2 0 0
## 25788 2 0 0
## 25789 2 0 0
## 25790 2 0 0
## 25791 2 1 0
## 25792 2 0 0
## 25793 2 2 0
## 25794 2 2 0
## 25795 2 0 0
## 25796 2 0 0
## 25797 2 0 0
## 25798 2 0 0
## 25799 2 0 0
## 25800 2 0 0
## 25801 2 0 0
## 25802 2 2 0
## 25803 2 0 0
## 25804 2 0 0
## 25805 2 0 0
## 25806 2 0 0
## 25807 2 0 0
## 25808 1 0 0
## 25809 2 0 0
## 25810 2 0 0
## 25811 2 0 0
## 25812 2 1 0
## 25813 2 0 0
## 25814 2 0 0
## 25815 3 0 0
## 25816 2 0 0
## 25817 2 0 0
## 25818 2 0 0
## 25819 3 0 0
## 25820 2 0 0
## 25821 2 2 0
## 25822 2 0 0
## 25823 2 0 0
## 25824 2 0 0
## 25825 2 0 0
## 25826 2 0 0
## 25827 2 0 0
## 25828 2 0 0
## 25829 2 0 0
## 25830 2 0 0
## 25831 3 0 0
## 25832 2 0 0
## 25833 1 0 0
## 25834 2 0 0
## 25835 1 0 0
## 25836 2 0 0
## 25837 2 0 0
## 25838 3 0 0
## 25839 3 1 0
## 25840 2 0 0
## 25841 1 0 0
## 25842 2 0 0
## 25843 2 0 0
## 25844 2 0 0
## 25845 2 0 0
## 25846 2 0 0
## 25847 2 0 0
## 25848 2 0 0
## 25849 2 0 0
## 25850 2 0 0
## 25851 2 0 0
## 25852 2 0 0
## 25853 2 1 0
## 25854 2 1 0
## 25855 2 0 0
## 25856 2 1 0
## 25857 2 0 0
## 25858 2 0 0
## 25859 2 0 0
## 25860 2 0 0
## 25861 2 1 0
## 25862 2 0 0
## 25863 3 0 0
## 25864 2 0 0
## 25865 2 0 0
## 25866 2 0 0
## 25867 2 1 0
## 25868 2 0 0
## 25869 2 0 0
## 25870 2 0 0
## 25871 2 0 0
## 25872 2 0 0
## 25873 2 0 0
## 25874 2 0 0
## 25875 2 0 0
## 25876 2 0 0
## 25877 2 0 0
## 25878 2 0 0
## 25879 2 0 0
## 25880 3 0 0
## 25881 3 0 0
## 25882 2 0 0
## 25883 2 0 0
## 25884 1 0 0
## 25885 2 0 0
## 25886 2 0 0
## 25887 2 0 0
## 25888 2 0 0
## 25889 3 0 0
## 25890 2 0 0
## 25891 2 0 0
## 25892 2 0 0
## 25893 2 0 0
## 25894 2 0 0
## 25895 1 0 0
## 25896 2 0 0
## 25897 4 0 0
## 25898 4 0 0
## 25899 2 0 0
## 25900 2 0 0
## 25901 2 0 0
## 25902 2 0 0
## 25903 2 0 0
## 25904 2 1 0
## 25905 2 0 0
## 25906 2 0 0
## 25907 2 0 0
## 25908 2 0 0
## 25909 2 0 0
## 25910 2 0 0
## 25911 3 0 0
## 25912 2 2 0
## 25913 2 0 0
## 25914 1 1 0
## 25915 2 1 0
## 25916 2 0 0
## 25917 2 0 0
## 25918 2 2 0
## 25919 2 0 0
## 25920 2 1 0
## 25921 2 0 0
## 25922 2 0 0
## 25923 2 0 0
## 25924 2 0 0
## 25925 2 0 0
## 25926 2 0 0
## 25927 2 0 0
## 25928 2 0 0
## 25929 2 0 0
## 25930 3 0 0
## 25931 2 0 0
## 25932 2 0 0
## 25933 2 0 0
## 25934 3 1 0
## 25935 3 0 0
## 25936 2 0 0
## 25937 2 0 0
## 25938 2 0 0
## 25939 3 0 0
## 25940 2 0 0
## 25941 2 0 0
## 25942 2 0 0
## 25943 2 0 0
## 25944 2 0 0
## 25945 2 0 0
## 25946 2 0 0
## 25947 2 0 0
## 25948 2 2 0
## 25949 2 0 0
## 25950 2 0 0
## 25951 2 0 0
## 25952 2 0 0
## 25953 2 0 0
## 25954 3 0 0
## 25955 2 0 0
## 25956 2 0 0
## 25957 1 0 0
## 25958 1 0 0
## 25959 2 0 0
## 25960 2 0 0
## 25961 1 0 0
## 25962 2 0 0
## 25963 3 0 0
## 25964 2 0 0
## 25965 2 0 0
## 25966 2 0 0
## 25967 3 0 0
## 25968 2 0 0
## 25969 2 0 0
## 25970 2 0 0
## 25971 3 0 0
## 25972 2 0 0
## 25973 2 0 0
## 25974 2 0 0
## 25975 2 0 0
## 25976 2 0 0
## 25977 2 2 0
## 25978 2 0 0
## 25979 2 0 0
## 25980 2 0 0
## 25981 2 0 0
## 25982 3 0 0
## 25983 2 0 0
## 25984 2 1 0
## 25985 3 0 0
## 25986 4 0 0
## 25987 2 0 0
## 25988 2 0 0
## 25989 2 0 0
## 25990 2 1 0
## 25991 3 0 0
## 25992 2 0 0
## 25993 2 1 0
## 25994 2 0 0
## 25995 2 1 0
## 25996 2 0 0
## 25997 2 1 0
## 25998 2 0 0
## 25999 2 0 0
## 26000 3 0 0
## 26001 2 2 0
## 26002 2 2 0
## 26003 2 0 0
## 26004 2 0 0
## 26005 3 0 0
## 26006 2 0 0
## 26007 2 0 0
## 26008 2 0 0
## 26009 2 0 0
## 26010 2 0 0
## 26011 2 0 0
## 26012 2 0 0
## 26013 2 0 0
## 26014 1 0 0
## 26015 3 0 0
## 26016 3 0 0
## 26017 2 0 0
## 26018 2 0 0
## 26019 3 1 0
## 26020 2 0 0
## 26021 2 2 0
## 26022 3 0 0
## 26023 3 0 0
## 26024 2 0 0
## 26025 2 0 0
## 26026 2 0 0
## 26027 1 1 0
## 26028 2 0 0
## 26029 2 0 0
## 26030 2 1 0
## 26031 3 1 0
## 26032 2 0 0
## 26033 2 0 0
## 26034 2 2 0
## 26035 2 0 0
## 26036 2 0 0
## 26037 2 2 0
## 26038 3 1 0
## 26039 2 0 0
## 26040 2 0 0
## 26041 2 0 0
## 26042 2 0 0
## 26043 2 0 0
## 26044 2 0 0
## 26045 2 0 0
## 26046 2 0 0
## 26047 2 1 0
## 26048 2 0 0
## 26049 3 1 0
## 26050 1 0 0
## 26051 2 1 0
## 26052 1 0 0
## 26053 2 0 0
## 26054 2 1 0
## 26055 2 1 0
## 26056 2 0 0
## 26057 2 0 0
## 26058 2 0 0
## 26059 2 0 0
## 26060 3 0 0
## 26061 2 0 0
## 26062 2 0 0
## 26063 3 0 0
## 26064 3 0 0
## 26065 2 0 0
## 26066 2 0 0
## 26067 2 0 0
## 26068 2 0 0
## 26069 2 0 0
## 26070 2 0 0
## 26071 2 0 0
## 26072 2 0 0
## 26073 2 0 0
## 26074 2 0 0
## 26075 2 0 0
## 26076 2 2 0
## 26077 2 2 0
## 26078 2 0 0
## 26079 2 0 0
## 26080 2 0 0
## 26081 2 0 0
## 26082 2 0 0
## 26083 2 0 0
## 26084 2 0 0
## 26085 2 0 0
## 26086 2 2 0
## 26087 2 0 0
## 26088 3 0 0
## 26089 3 0 0
## 26090 3 0 0
## 26091 2 1 0
## 26092 2 0 0
## 26093 2 0 0
## 26094 3 0 0
## 26095 1 0 0
## 26096 2 0 0
## 26097 2 0 0
## 26098 2 0 0
## 26099 2 0 0
## 26100 2 0 0
## 26101 2 0 0
## 26102 2 0 0
## 26103 2 0 0
## 26104 2 0 0
## 26105 2 0 0
## 26106 1 0 0
## 26107 1 0 0
## 26108 2 0 0
## 26109 2 0 0
## 26110 1 0 0
## 26111 2 0 0
## 26112 2 0 0
## 26113 3 0 0
## 26114 2 2 0
## 26115 2 1 0
## 26116 2 1 0
## 26117 2 0 0
## 26118 2 0 0
## 26119 2 0 0
## 26120 2 0 0
## 26121 2 0 0
## 26122 2 0 0
## 26123 2 0 0
## 26124 2 0 0
## 26125 2 1 0
## 26126 2 0 0
## 26127 2 0 0
## 26128 2 0 0
## 26129 2 0 0
## 26130 1 0 0
## 26131 2 0 0
## 26132 2 0 0
## 26133 2 0 0
## 26134 2 0 0
## 26135 2 0 0
## 26136 2 0 0
## 26137 2 0 0
## 26138 2 2 0
## 26139 2 1 0
## 26140 2 0 0
## 26141 2 0 0
## 26142 2 2 0
## 26143 2 0 0
## 26144 2 0 0
## 26145 2 0 0
## 26146 2 0 0
## 26147 2 2 0
## 26148 2 0 0
## 26149 2 0 0
## 26150 1 0 0
## 26151 2 0 0
## 26152 2 0 0
## 26153 2 0 0
## 26154 2 0 0
## 26155 3 0 0
## 26156 2 1 0
## 26157 2 1 0
## 26158 2 2 0
## 26159 2 2 0
## 26160 2 1 0
## 26161 3 0 0
## 26162 2 0 0
## 26163 1 0 0
## 26164 2 0 0
## 26165 2 1 0
## 26166 2 0 0
## 26167 2 2 0
## 26168 2 0 0
## 26169 3 0 0
## 26170 2 0 0
## 26171 2 0 0
## 26172 2 0 0
## 26173 1 0 0
## 26174 2 0 0
## 26175 2 0 0
## 26176 2 0 0
## 26177 2 0 0
## 26178 2 0 0
## 26179 2 0 0
## 26180 2 0 0
## 26181 2 0 0
## 26182 3 0 0
## 26183 2 0 0
## 26184 1 0 0
## 26185 2 0 0
## 26186 2 0 0
## 26187 2 0 0
## 26188 2 0 0
## 26189 2 0 0
## 26190 2 0 0
## 26191 3 1 0
## 26192 2 2 0
## 26193 2 0 0
## 26194 2 2 0
## 26195 2 0 0
## 26196 2 0 0
## 26197 1 0 0
## 26198 2 0 0
## 26199 2 0 0
## 26200 2 0 0
## 26201 2 0 0
## 26202 2 0 0
## 26203 2 0 0
## 26204 2 0 0
## 26205 2 0 0
## 26206 2 0 0
## 26207 2 0 0
## 26208 2 0 0
## 26209 2 0 0
## 26210 2 2 0
## 26211 2 0 0
## 26212 2 0 0
## 26213 2 0 0
## 26214 2 0 0
## 26215 2 0 0
## 26216 2 0 0
## 26217 2 0 0
## 26218 2 0 0
## 26219 2 0 0
## 26220 2 0 0
## 26221 2 0 0
## 26222 2 0 0
## 26223 2 0 0
## 26224 2 0 0
## 26225 3 1 0
## 26226 2 0 0
## 26227 2 0 0
## 26228 2 0 0
## 26229 2 0 0
## 26230 2 0 0
## 26231 2 0 0
## 26232 2 0 0
## 26233 2 0 0
## 26234 2 0 0
## 26235 2 0 0
## 26236 2 0 0
## 26237 2 0 0
## 26238 2 0 0
## 26239 2 0 0
## 26240 2 0 0
## 26241 2 0 0
## 26242 2 0 0
## 26243 2 0 0
## 26244 2 0 0
## 26245 2 0 0
## 26246 2 0 0
## 26247 2 1 0
## 26248 4 0 0
## 26249 2 0 0
## 26250 3 0 0
## 26251 2 0 0
## 26252 2 0 0
## 26253 2 0 0
## 26254 2 1 0
## 26255 2 0 0
## 26256 2 2 0
## 26257 2 0 0
## 26258 2 1 0
## 26259 2 1 0
## 26260 2 0 0
## 26261 2 0 0
## 26262 2 0 0
## 26263 2 0 0
## 26264 2 0 0
## 26265 2 0 0
## 26266 2 0 0
## 26267 2 1 0
## 26268 3 0 0
## 26269 2 0 0
## 26270 2 0 0
## 26271 2 0 0
## 26272 2 0 0
## 26273 2 0 0
## 26274 3 0 0
## 26275 2 1 0
## 26276 2 0 0
## 26277 2 1 0
## 26278 2 0 0
## 26279 3 0 0
## 26280 2 0 0
## 26281 2 0 0
## 26282 2 0 0
## 26283 2 0 0
## 26284 2 3 0
## 26285 2 2 0
## 26286 2 0 0
## 26287 2 0 0
## 26288 2 1 0
## 26289 2 2 0
## 26290 1 0 0
## 26291 2 0 0
## 26292 2 0 0
## 26293 1 2 0
## 26294 2 1 0
## 26295 2 0 0
## 26296 2 0 0
## 26297 3 0 0
## 26298 2 0 0
## 26299 3 0 0
## 26300 2 2 0
## 26301 2 0 0
## 26302 3 1 0
## 26303 3 0 0
## 26304 3 0 0
## 26305 2 0 0
## 26306 2 0 0
## 26307 2 0 0
## 26308 2 0 0
## 26309 2 0 0
## 26310 2 1 0
## 26311 3 1 0
## 26312 2 2 0
## 26313 2 0 0
## 26314 2 0 0
## 26315 2 0 0
## 26316 2 0 0
## 26317 2 1 0
## 26318 2 0 0
## 26319 2 0 0
## 26320 2 0 0
## 26321 2 0 0
## 26322 2 2 0
## 26323 2 0 0
## 26324 2 0 0
## 26325 2 0 0
## 26326 3 0 0
## 26327 3 0 0
## 26328 3 0 0
## 26329 2 0 0
## 26330 2 0 0
## 26331 2 0 0
## 26332 2 0 0
## 26333 3 1 0
## 26334 2 0 0
## 26335 2 0 0
## 26336 2 0 0
## 26337 2 0 0
## 26338 2 0 0
## 26339 2 0 0
## 26340 2 0 0
## 26341 2 0 0
## 26342 2 0 0
## 26343 2 0 0
## 26344 2 0 0
## 26345 2 0 0
## 26346 2 0 0
## 26347 2 0 0
## 26348 2 0 0
## 26349 2 0 0
## 26350 2 0 0
## 26351 2 0 0
## 26352 2 0 0
## 26353 2 1 0
## 26354 2 1 0
## 26355 2 0 0
## 26356 2 0 0
## 26357 2 0 0
## 26358 2 0 0
## 26359 2 0 0
## 26360 2 0 0
## 26361 2 0 0
## 26362 4 0 0
## 26363 1 0 0
## 26364 1 0 0
## 26365 2 1 0
## 26366 2 2 0
## 26367 2 2 0
## 26368 2 2 0
## 26369 2 0 0
## 26370 3 1 0
## 26371 2 0 0
## 26372 2 0 0
## 26373 2 0 0
## 26374 2 0 0
## 26375 1 0 0
## 26376 2 0 0
## 26377 2 0 0
## 26378 2 0 0
## 26379 2 0 0
## 26380 2 0 0
## 26381 2 0 0
## 26382 2 1 0
## 26383 2 0 0
## 26384 2 0 0
## 26385 2 0 0
## 26386 2 0 0
## 26387 2 2 0
## 26388 2 0 0
## 26389 2 0 0
## 26390 2 0 0
## 26391 2 0 0
## 26392 2 2 0
## 26393 2 0 0
## 26394 2 0 0
## 26395 2 0 0
## 26396 2 0 0
## 26397 2 0 0
## 26398 2 0 0
## 26399 2 0 0
## 26400 2 0 0
## 26401 2 1 0
## 26402 2 1 0
## 26403 2 0 0
## 26404 2 0 0
## 26405 1 0 0
## 26406 2 0 0
## 26407 2 0 0
## 26408 2 0 0
## 26409 2 0 0
## 26410 2 0 0
## 26411 2 0 0
## 26412 2 0 0
## 26413 2 0 0
## 26414 2 0 0
## 26415 3 0 0
## 26416 2 0 0
## 26417 2 0 0
## 26418 1 2 0
## 26419 2 1 0
## 26420 2 0 0
## 26421 1 0 0
## 26422 2 0 0
## 26423 3 0 0
## 26424 2 0 0
## 26425 2 0 0
## 26426 2 0 0
## 26427 2 0 0
## 26428 2 0 0
## 26429 2 0 0
## 26430 2 0 0
## 26431 2 0 0
## 26432 2 0 0
## 26433 2 0 0
## 26434 2 1 0
## 26435 2 0 0
## 26436 2 0 0
## 26437 2 0 0
## 26438 2 0 0
## 26439 2 0 0
## 26440 2 0 0
## 26441 2 0 0
## 26442 2 0 0
## 26443 2 0 0
## 26444 2 0 0
## 26445 2 0 0
## 26446 2 0 0
## 26447 2 0 0
## 26448 2 2 0
## 26449 1 0 0
## 26450 2 0 0
## 26451 2 0 0
## 26452 2 1 0
## 26453 2 1 0
## 26454 2 2 0
## 26455 3 0 0
## 26456 3 0 0
## 26457 2 1 0
## 26458 3 0 0
## 26459 2 2 0
## 26460 2 0 0
## 26461 2 0 0
## 26462 1 1 0
## 26463 2 0 0
## 26464 2 0 0
## 26465 3 0 0
## 26466 2 0 0
## 26467 2 0 0
## 26468 2 0 0
## 26469 2 2 0
## 26470 2 0 0
## 26471 2 0 0
## 26472 2 2 0
## 26473 2 0 0
## 26474 2 0 0
## 26475 2 0 0
## 26476 2 0 0
## 26477 3 0 0
## 26478 2 2 0
## 26479 2 0 0
## 26480 2 0 0
## 26481 1 0 0
## 26482 1 0 0
## 26483 1 0 0
## 26484 2 0 0
## 26485 2 1 0
## 26486 2 0 0
## 26487 2 0 0
## 26488 2 0 0
## 26489 2 0 0
## 26490 2 0 0
## 26491 2 0 0
## 26492 2 0 0
## 26493 2 0 0
## 26494 2 0 0
## 26495 2 0 0
## 26496 2 0 0
## 26497 2 2 0
## 26498 2 0 0
## 26499 2 0 0
## 26500 2 0 0
## 26501 2 0 0
## 26502 2 0 0
## 26503 3 1 0
## 26504 2 2 0
## 26505 2 0 0
## 26506 2 0 0
## 26507 2 0 0
## 26508 2 0 0
## 26509 2 0 0
## 26510 2 0 0
## 26511 2 0 0
## 26512 3 0 0
## 26513 2 0 0
## 26514 2 0 0
## 26515 1 0 0
## 26516 2 0 0
## 26517 1 0 0
## 26518 1 0 0
## 26519 2 2 0
## 26520 3 0 0
## 26521 2 0 0
## 26522 2 0 0
## 26523 2 0 0
## 26524 2 0 0
## 26525 3 0 0
## 26526 2 0 0
## 26527 2 0 0
## 26528 2 0 0
## 26529 2 0 0
## 26530 2 0 0
## 26531 2 0 0
## 26532 2 0 0
## 26533 2 1 0
## 26534 2 1 0
## 26535 2 2 0
## 26536 2 0 0
## 26537 2 0 0
## 26538 2 0 0
## 26539 3 0 0
## 26540 2 0 0
## 26541 2 0 0
## 26542 2 2 0
## 26543 2 0 0
## 26544 2 0 0
## 26545 2 0 0
## 26546 2 0 0
## 26547 2 0 0
## 26548 2 0 0
## 26549 2 0 0
## 26550 1 0 0
## 26551 2 0 0
## 26552 2 0 0
## 26553 1 0 0
## 26554 2 0 0
## 26555 1 0 0
## 26556 2 2 0
## 26557 2 0 0
## 26558 2 0 0
## 26559 2 0 0
## 26560 2 0 0
## 26561 2 2 0
## 26562 2 1 0
## 26563 2 0 0
## 26564 2 0 0
## 26565 2 0 0
## 26566 3 0 0
## 26567 2 0 0
## 26568 2 0 0
## 26569 2 0 0
## 26570 2 0 0
## 26571 2 0 0
## 26572 2 0 0
## 26573 2 0 0
## 26574 1 0 0
## 26575 2 0 0
## 26576 2 0 0
## 26577 2 0 0
## 26578 2 0 0
## 26579 2 0 0
## 26580 2 1 0
## 26581 3 1 0
## 26582 2 2 0
## 26583 2 0 0
## 26584 2 1 0
## 26585 2 0 0
## 26586 2 0 0
## 26587 2 0 0
## 26588 2 0 0
## 26589 2 0 0
## 26590 3 0 0
## 26591 2 0 0
## 26592 2 2 0
## 26593 3 1 0
## 26594 2 0 0
## 26595 3 0 0
## 26596 3 0 0
## 26597 3 0 0
## 26598 2 1 0
## 26599 2 0 0
## 26600 2 0 0
## 26601 2 0 0
## 26602 2 0 0
## 26603 2 0 0
## 26604 2 0 0
## 26605 2 0 0
## 26606 2 0 0
## 26607 2 0 0
## 26608 2 1 0
## 26609 2 0 0
## 26610 2 0 0
## 26611 1 1 0
## 26612 2 0 0
## 26613 2 0 0
## 26614 2 0 0
## 26615 2 0 0
## 26616 2 0 0
## 26617 2 1 0
## 26618 2 0 0
## 26619 2 1 0
## 26620 2 1 0
## 26621 2 0 0
## 26622 2 0 0
## 26623 2 0 0
## 26624 3 0 0
## 26625 3 0 0
## 26626 2 0 0
## 26627 2 0 0
## 26628 2 0 0
## 26629 2 0 0
## 26630 2 0 0
## 26631 2 0 0
## 26632 2 0 0
## 26633 2 0 0
## 26634 2 0 0
## 26635 2 0 0
## 26636 2 0 0
## 26637 2 0 0
## 26638 2 0 0
## 26639 3 0 0
## 26640 2 0 0
## 26641 2 0 0
## 26642 2 0 0
## 26643 2 0 0
## 26644 2 0 0
## 26645 2 0 0
## 26646 2 0 0
## 26647 2 0 0
## 26648 2 0 0
## 26649 3 0 0
## 26650 2 0 0
## 26651 3 0 0
## 26652 2 0 0
## 26653 2 1 0
## 26654 3 0 0
## 26655 2 1 0
## 26656 2 2 0
## 26657 2 0 0
## 26658 2 0 0
## 26659 1 0 0
## 26660 2 0 0
## 26661 2 0 0
## 26662 2 0 0
## 26663 2 0 0
## 26664 2 0 0
## 26665 2 2 0
## 26666 2 0 0
## 26667 2 0 0
## 26668 2 0 0
## 26669 2 0 0
## 26670 2 0 0
## 26671 2 1 0
## 26672 2 0 0
## 26673 2 0 0
## 26674 2 1 0
## 26675 2 0 0
## 26676 2 0 0
## 26677 2 0 0
## 26678 2 1 0
## 26679 2 0 0
## 26680 2 0 0
## 26681 2 0 0
## 26682 2 1 0
## 26683 2 1 0
## 26684 2 0 0
## 26685 2 0 0
## 26686 2 0 0
## 26687 2 0 0
## 26688 2 0 0
## 26689 2 0 0
## 26690 2 0 0
## 26691 2 0 0
## 26692 2 0 0
## 26693 2 0 0
## 26694 2 2 0
## 26695 2 0 0
## 26696 2 0 0
## 26697 2 0 0
## 26698 2 0 0
## 26699 2 2 0
## 26700 2 0 0
## 26701 1 1 0
## 26702 2 0 0
## 26703 2 2 0
## 26704 2 0 0
## 26705 2 0 0
## 26706 2 0 0
## 26707 1 0 0
## 26708 1 0 0
## 26709 2 0 0
## 26710 2 0 0
## 26711 2 0 0
## 26712 2 0 0
## 26713 2 0 0
## 26714 2 0 0
## 26715 3 0 0
## 26716 3 0 0
## 26717 2 0 0
## 26718 2 0 0
## 26719 2 0 0
## 26720 2 0 0
## 26721 2 0 0
## 26722 3 0 0
## 26723 2 2 0
## 26724 2 0 0
## 26725 2 0 0
## 26726 3 0 0
## 26727 2 1 0
## 26728 3 0 0
## 26729 2 0 0
## 26730 3 0 0
## 26731 2 0 0
## 26732 2 0 0
## 26733 2 0 0
## 26734 2 0 0
## 26735 2 0 0
## 26736 2 0 0
## 26737 3 1 0
## 26738 2 0 0
## 26739 2 0 0
## 26740 2 0 0
## 26741 2 0 0
## 26742 2 0 0
## 26743 2 0 0
## 26744 2 0 0
## 26745 1 0 0
## 26746 2 2 0
## 26747 2 0 0
## 26748 2 0 0
## 26749 2 0 0
## 26750 2 0 0
## 26751 2 0 0
## 26752 1 0 0
## 26753 2 0 0
## 26754 2 0 0
## 26755 2 0 0
## 26756 2 0 0
## 26757 2 0 0
## 26758 2 2 0
## 26759 2 0 0
## 26760 1 0 0
## 26761 2 1 0
## 26762 2 0 0
## 26763 2 0 0
## 26764 2 0 0
## 26765 2 1 0
## 26766 2 0 0
## 26767 2 0 0
## 26768 2 0 0
## 26769 2 0 0
## 26770 2 0 0
## 26771 2 1 0
## 26772 2 0 0
## 26773 2 0 0
## 26774 2 0 0
## 26775 2 0 0
## 26776 2 1 0
## 26777 2 0 0
## 26778 2 0 0
## 26779 2 0 0
## 26780 2 0 0
## 26781 2 0 0
## 26782 2 0 0
## 26783 2 0 0
## 26784 2 0 0
## 26785 2 0 0
## 26786 3 0 0
## 26787 2 0 0
## 26788 2 0 0
## 26789 2 1 0
## 26790 2 0 0
## 26791 2 2 0
## 26792 2 0 0
## 26793 2 0 0
## 26794 2 0 0
## 26795 2 0 0
## 26796 2 0 0
## 26797 2 0 0
## 26798 2 0 0
## 26799 2 0 0
## 26800 2 0 0
## 26801 2 2 0
## 26802 2 0 0
## 26803 2 0 0
## 26804 2 0 0
## 26805 1 1 0
## 26806 1 1 0
## 26807 2 0 0
## 26808 2 1 0
## 26809 2 0 0
## 26810 2 0 0
## 26811 3 0 0
## 26812 2 0 0
## 26813 2 0 0
## 26814 1 0 0
## 26815 3 0 0
## 26816 2 0 0
## 26817 3 0 0
## 26818 2 0 0
## 26819 2 0 0
## 26820 2 0 0
## 26821 2 0 0
## 26822 2 0 0
## 26823 2 0 0
## 26824 2 0 0
## 26825 2 0 0
## 26826 2 2 0
## 26827 3 0 0
## 26828 2 0 0
## 26829 2 1 0
## 26830 2 1 0
## 26831 3 0 0
## 26832 2 0 0
## 26833 2 0 0
## 26834 2 0 0
## 26835 2 0 0
## 26836 2 0 0
## 26837 2 0 0
## 26838 2 0 0
## 26839 3 0 0
## 26840 2 0 0
## 26841 2 0 0
## 26842 2 0 0
## 26843 2 0 0
## 26844 2 0 0
## 26845 2 0 0
## 26846 2 0 0
## 26847 2 0 0
## 26848 2 0 0
## 26849 2 0 0
## 26850 2 0 0
## 26851 2 0 0
## 26852 2 1 0
## 26853 2 0 0
## 26854 2 0 0
## 26855 2 0 0
## 26856 2 0 0
## 26857 2 1 0
## 26858 2 0 0
## 26859 2 0 0
## 26860 2 0 0
## 26861 2 0 0
## 26862 2 0 0
## 26863 2 0 0
## 26864 2 0 0
## 26865 2 0 0
## 26866 2 0 0
## 26867 2 0 0
## 26868 2 0 0
## 26869 2 2 0
## 26870 2 0 0
## 26871 3 1 0
## 26872 2 0 0
## 26873 2 1 0
## 26874 3 0 0
## 26875 2 0 0
## 26876 2 0 0
## 26877 3 0 0
## 26878 2 2 0
## 26879 2 0 0
## 26880 2 2 0
## 26881 2 2 0
## 26882 2 0 0
## 26883 2 0 0
## 26884 2 0 0
## 26885 2 2 0
## 26886 2 2 0
## 26887 2 2 0
## 26888 2 2 0
## 26889 1 0 0
## 26890 2 1 0
## 26891 1 3 0
## 26892 1 1 0
## 26893 2 0 0
## 26894 2 1 0
## 26895 2 0 0
## 26896 2 0 0
## 26897 2 1 0
## 26898 2 0 0
## 26899 2 0 0
## 26900 2 0 0
## 26901 2 0 0
## 26902 2 0 0
## 26903 2 2 0
## 26904 2 0 0
## 26905 2 0 0
## 26906 2 0 0
## 26907 2 0 0
## 26908 2 0 0
## 26909 2 0 0
## 26910 2 0 0
## 26911 2 0 0
## 26912 2 2 0
## 26913 2 2 0
## 26914 2 0 0
## 26915 2 0 0
## 26916 2 1 0
## 26917 2 0 0
## 26918 2 2 0
## 26919 2 0 0
## 26920 2 0 0
## 26921 2 0 0
## 26922 2 1 0
## 26923 2 1 0
## 26924 2 0 0
## 26925 2 0 0
## 26926 2 0 0
## 26927 2 2 0
## 26928 2 0 0
## 26929 2 1 0
## 26930 2 0 0
## 26931 2 0 0
## 26932 2 0 0
## 26933 3 0 0
## 26934 1 0 0
## 26935 2 0 0
## 26936 2 2 0
## 26937 2 0 0
## 26938 2 0 0
## 26939 2 0 0
## 26940 2 0 0
## 26941 2 0 0
## 26942 2 1 0
## 26943 2 1 0
## 26944 2 0 0
## 26945 3 0 0
## 26946 2 0 0
## 26947 2 0 0
## 26948 2 0 0
## 26949 2 0 0
## 26950 2 0 0
## 26951 2 0 0
## 26952 2 0 0
## 26953 2 0 0
## 26954 2 0 0
## 26955 2 0 0
## 26956 2 0 0
## 26957 2 0 0
## 26958 2 0 0
## 26959 2 0 0
## 26960 2 0 0
## 26961 2 0 0
## 26962 2 0 0
## 26963 3 0 0
## 26964 2 0 0
## 26965 2 0 0
## 26966 2 2 0
## 26967 4 0 0
## 26968 3 0 0
## 26969 2 0 0
## 26970 2 0 0
## 26971 2 1 0
## 26972 2 0 0
## 26973 3 0 0
## 26974 2 0 0
## 26975 2 0 0
## 26976 2 0 0
## 26977 2 1 0
## 26978 2 0 0
## 26979 2 0 0
## 26980 2 1 0
## 26981 2 0 0
## 26982 2 1 0
## 26983 2 0 0
## 26984 2 0 0
## 26985 3 0 0
## 26986 2 1 0
## 26987 2 0 0
## 26988 3 0 0
## 26989 2 0 0
## 26990 2 1 0
## 26991 3 0 0
## 26992 2 0 0
## 26993 2 0 0
## 26994 4 0 0
## 26995 2 0 0
## 26996 2 0 0
## 26997 2 0 0
## 26998 3 0 0
## 26999 2 0 0
## 27000 2 1 0
## 27001 2 0 0
## 27002 2 1 0
## 27003 2 0 0
## 27004 2 0 0
## 27005 2 0 0
## 27006 2 0 0
## 27007 2 0 0
## 27008 2 0 0
## 27009 2 1 0
## 27010 3 0 0
## 27011 3 0 0
## 27012 2 0 0
## 27013 2 0 0
## 27014 3 0 0
## 27015 2 0 0
## 27016 2 0 0
## 27017 2 0 0
## 27018 2 0 0
## 27019 2 1 0
## 27020 2 0 0
## 27021 3 0 0
## 27022 2 0 0
## 27023 2 0 0
## 27024 3 0 0
## 27025 3 0 0
## 27026 2 2 0
## 27027 2 0 0
## 27028 2 0 0
## 27029 3 0 0
## 27030 2 0 0
## 27031 2 0 0
## 27032 3 0 0
## 27033 2 0 0
## 27034 2 0 0
## 27035 3 0 0
## 27036 2 0 0
## 27037 2 0 0
## 27038 2 0 0
## 27039 2 0 0
## 27040 2 0 0
## 27041 2 2 0
## 27042 2 2 0
## 27043 2 0 0
## 27044 2 0 0
## 27045 3 1 0
## 27046 2 2 0
## 27047 2 0 0
## 27048 2 1 0
## 27049 2 0 0
## 27050 2 0 0
## 27051 3 0 0
## 27052 1 0 0
## 27053 2 0 0
## 27054 1 0 0
## 27055 2 0 0
## 27056 2 0 0
## 27057 2 1 0
## 27058 2 0 0
## 27059 2 2 0
## 27060 3 0 0
## 27061 2 0 0
## 27062 3 1 0
## 27063 2 0 0
## 27064 3 1 0
## 27065 2 0 0
## 27066 2 2 0
## 27067 2 0 0
## 27068 2 0 0
## 27069 2 0 0
## 27070 2 0 0
## 27071 2 2 0
## 27072 3 0 0
## 27073 2 0 0
## 27074 2 0 0
## 27075 1 0 0
## 27076 2 2 0
## 27077 2 0 0
## 27078 1 0 0
## 27079 2 0 0
## 27080 2 0 0
## 27081 2 0 0
## 27082 2 0 0
## 27083 2 0 0
## 27084 2 1 0
## 27085 2 0 0
## 27086 2 0 0
## 27087 2 1 0
## 27088 3 0 0
## 27089 2 0 0
## 27090 2 0 0
## 27091 3 1 0
## 27092 2 0 0
## 27093 2 0 0
## 27094 2 0 0
## 27095 2 0 0
## 27096 2 0 0
## 27097 2 0 0
## 27098 3 0 0
## 27099 2 0 0
## 27100 2 0 0
## 27101 2 0 0
## 27102 3 0 0
## 27103 2 2 0
## 27104 3 0 0
## 27105 2 1 0
## 27106 2 0 0
## 27107 2 0 0
## 27108 1 1 0
## 27109 2 0 0
## 27110 3 0 0
## 27111 3 0 0
## 27112 2 0 0
## 27113 2 0 0
## 27114 2 1 0
## 27115 2 0 0
## 27116 2 0 0
## 27117 1 0 0
## 27118 2 0 0
## 27119 2 0 0
## 27120 1 0 0
## 27121 2 0 0
## 27122 2 0 0
## 27123 2 0 0
## 27124 2 0 0
## 27125 3 1 0
## 27126 2 0 0
## 27127 2 0 0
## 27128 2 1 0
## 27129 3 0 0
## 27130 2 0 0
## 27131 3 1 0
## 27132 3 1 0
## 27133 2 0 0
## 27134 1 0 0
## 27135 2 0 0
## 27136 2 2 0
## 27137 2 2 0
## 27138 3 0 0
## 27139 2 0 0
## 27140 2 0 0
## 27141 2 0 0
## 27142 2 0 0
## 27143 2 0 0
## 27144 2 2 0
## 27145 2 0 0
## 27146 2 0 0
## 27147 2 0 0
## 27148 2 0 0
## 27149 2 0 0
## 27150 2 0 0
## 27151 2 0 0
## 27152 2 1 0
## 27153 2 0 0
## 27154 3 0 0
## 27155 3 0 0
## 27156 2 0 0
## 27157 2 0 0
## 27158 2 0 0
## 27159 2 0 0
## 27160 2 0 0
## 27161 2 0 0
## 27162 2 0 0
## 27163 2 0 0
## 27164 2 0 0
## 27165 2 0 0
## 27166 2 0 0
## 27167 2 0 0
## 27168 2 0 0
## 27169 2 0 0
## 27170 2 0 0
## 27171 2 0 0
## 27172 2 0 0
## 27173 2 0 0
## 27174 2 0 0
## 27175 2 0 0
## 27176 2 0 0
## 27177 2 0 0
## 27178 2 0 0
## 27179 2 0 0
## 27180 2 0 0
## 27181 2 0 0
## 27182 2 0 0
## 27183 2 0 0
## 27184 2 0 0
## 27185 2 0 0
## 27186 1 0 0
## 27187 2 0 0
## 27188 2 0 0
## 27189 2 0 0
## 27190 2 0 0
## 27191 2 0 0
## 27192 2 0 0
## 27193 2 0 0
## 27194 2 0 0
## 27195 2 0 0
## 27196 2 0 0
## 27197 2 0 0
## 27198 2 0 0
## 27199 2 0 0
## 27200 2 2 0
## 27201 2 0 0
## 27202 2 1 0
## 27203 2 0 0
## 27204 2 0 0
## 27205 2 0 0
## 27206 2 0 0
## 27207 2 0 0
## 27208 2 0 0
## 27209 2 0 0
## 27210 2 0 0
## 27211 2 0 0
## 27212 2 0 0
## 27213 2 0 0
## 27214 2 0 0
## 27215 2 0 0
## 27216 2 0 0
## 27217 2 0 0
## 27218 2 0 0
## 27219 2 0 0
## 27220 2 0 0
## 27221 2 1 0
## 27222 3 0 0
## 27223 2 0 0
## 27224 3 0 0
## 27225 2 0 0
## 27226 2 0 0
## 27227 2 0 0
## 27228 2 0 0
## 27229 2 0 0
## 27230 2 1 0
## 27231 2 2 0
## 27232 2 0 0
## 27233 2 0 0
## 27234 2 0 0
## 27235 2 0 0
## 27236 3 0 0
## 27237 2 0 0
## 27238 2 0 0
## 27239 2 0 0
## 27240 2 0 0
## 27241 2 0 0
## 27242 2 0 0
## 27243 2 0 0
## 27244 2 0 0
## 27245 2 0 0
## 27246 2 0 0
## 27247 2 0 0
## 27248 2 1 0
## 27249 2 0 0
## 27250 2 0 0
## 27251 2 0 0
## 27252 2 0 0
## 27253 2 0 0
## 27254 2 0 0
## 27255 2 0 0
## 27256 1 1 0
## 27257 2 0 0
## 27258 2 0 0
## 27259 2 0 0
## 27260 2 0 0
## 27261 2 0 0
## 27262 2 0 0
## 27263 2 0 0
## 27264 1 0 0
## 27265 1 0 0
## 27266 2 0 0
## 27267 2 0 0
## 27268 2 0 0
## 27269 2 0 0
## 27270 2 0 0
## 27271 2 0 0
## 27272 3 1 0
## 27273 2 0 0
## 27274 2 0 0
## 27275 1 0 0
## 27276 2 0 0
## 27277 1 0 0
## 27278 2 1 0
## 27279 2 1 0
## 27280 2 0 0
## 27281 2 0 0
## 27282 2 0 0
## 27283 3 1 0
## 27284 2 0 0
## 27285 2 0 0
## 27286 2 0 0
## 27287 2 0 0
## 27288 2 0 0
## 27289 2 0 0
## 27290 2 0 0
## 27291 1 0 0
## 27292 2 0 0
## 27293 3 0 0
## 27294 2 0 0
## 27295 2 0 0
## 27296 2 1 0
## 27297 2 0 0
## 27298 2 0 0
## 27299 2 0 0
## 27300 2 0 0
## 27301 2 0 0
## 27302 2 0 0
## 27303 2 0 0
## 27304 2 0 0
## 27305 2 0 0
## 27306 2 0 0
## 27307 2 0 0
## 27308 2 0 0
## 27309 2 0 0
## 27310 3 0 0
## 27311 2 0 0
## 27312 2 0 0
## 27313 2 2 0
## 27314 2 0 0
## 27315 2 0 0
## 27316 2 0 0
## 27317 2 0 0
## 27318 2 0 0
## 27319 2 0 0
## 27320 2 0 0
## 27321 2 0 0
## 27322 2 0 0
## 27323 2 0 0
## 27324 3 1 0
## 27325 2 0 0
## 27326 2 0 0
## 27327 3 0 0
## 27328 3 0 0
## 27329 2 0 0
## 27330 2 0 0
## 27331 2 0 0
## 27332 2 0 0
## 27333 2 0 0
## 27334 2 0 0
## 27335 2 0 0
## 27336 2 0 0
## 27337 2 0 0
## 27338 2 0 0
## 27339 2 1 0
## 27340 2 0 0
## 27341 2 0 0
## 27342 2 0 0
## 27343 2 2 0
## 27344 2 0 0
## 27345 2 1 0
## 27346 2 0 0
## 27347 1 0 0
## 27348 1 0 0
## 27349 2 0 0
## 27350 2 0 0
## 27351 2 0 0
## 27352 2 0 0
## 27353 2 0 0
## 27354 2 0 0
## 27355 2 0 0
## 27356 2 0 0
## 27357 2 0 0
## 27358 2 0 0
## 27359 2 0 0
## 27360 2 0 0
## 27361 2 0 0
## 27362 1 0 0
## 27363 2 2 0
## 27364 2 0 0
## 27365 3 0 0
## 27366 2 0 0
## 27367 2 0 0
## 27368 2 0 0
## 27369 2 0 0
## 27370 2 0 0
## 27371 2 0 0
## 27372 2 0 0
## 27373 2 0 0
## 27374 3 0 0
## 27375 4 0 0
## 27376 2 0 0
## 27377 2 0 0
## 27378 2 0 0
## 27379 2 0 0
## 27380 2 0 0
## 27381 2 0 0
## 27382 2 0 0
## 27383 2 0 0
## 27384 2 0 0
## 27385 2 0 0
## 27386 2 0 0
## 27387 2 0 0
## 27388 2 0 0
## 27389 2 0 0
## 27390 2 0 0
## 27391 2 0 0
## 27392 2 0 0
## 27393 2 0 0
## 27394 2 0 0
## 27395 2 0 0
## 27396 3 0 0
## 27397 2 0 0
## 27398 1 0 0
## 27399 2 0 0
## 27400 2 0 0
## 27401 2 0 0
## 27402 2 0 0
## 27403 2 0 0
## 27404 2 0 0
## 27405 2 0 0
## 27406 2 0 0
## 27407 2 0 0
## 27408 2 0 0
## 27409 2 0 0
## 27410 2 0 0
## 27411 2 0 0
## 27412 2 0 0
## 27413 2 0 0
## 27414 2 0 0
## 27415 2 0 0
## 27416 2 0 0
## 27417 1 0 0
## 27418 2 0 0
## 27419 2 0 0
## 27420 2 0 0
## 27421 2 0 0
## 27422 2 0 0
## 27423 2 0 0
## 27424 2 0 0
## 27425 2 0 0
## 27426 2 0 0
## 27427 2 0 0
## 27428 2 0 0
## 27429 2 0 0
## 27430 2 0 0
## 27431 2 1 0
## 27432 1 0 0
## 27433 3 0 0
## 27434 2 0 0
## 27435 2 0 0
## 27436 2 0 0
## 27437 2 0 0
## 27438 2 0 0
## 27439 2 2 0
## 27440 1 0 0
## 27441 2 2 0
## 27442 2 0 0
## 27443 2 0 0
## 27444 1 0 0
## 27445 2 0 0
## 27446 1 0 0
## 27447 2 0 0
## 27448 2 0 0
## 27449 2 0 0
## 27450 2 0 0
## 27451 2 0 0
## 27452 2 0 0
## 27453 2 0 0
## 27454 3 0 0
## 27455 2 0 0
## 27456 2 0 0
## 27457 2 1 0
## 27458 2 1 0
## 27459 3 0 0
## 27460 2 0 0
## 27461 3 1 0
## 27462 2 0 0
## 27463 2 1 0
## 27464 2 0 0
## 27465 2 0 0
## 27466 2 1 0
## 27467 2 0 0
## 27468 2 0 0
## 27469 2 0 0
## 27470 3 0 0
## 27471 2 0 0
## 27472 2 0 0
## 27473 2 0 0
## 27474 2 0 0
## 27475 2 0 0
## 27476 2 0 0
## 27477 2 0 0
## 27478 2 0 0
## 27479 2 0 0
## 27480 2 0 0
## 27481 2 0 0
## 27482 3 0 0
## 27483 2 0 0
## 27484 2 0 0
## 27485 2 0 0
## 27486 2 0 0
## 27487 2 0 0
## 27488 2 0 0
## 27489 2 0 0
## 27490 2 0 0
## 27491 2 0 0
## 27492 2 0 0
## 27493 2 0 0
## 27494 2 0 0
## 27495 2 2 0
## 27496 2 0 0
## 27497 3 0 0
## 27498 2 0 0
## 27499 3 0 0
## 27500 2 0 0
## 27501 2 0 0
## 27502 2 0 0
## 27503 2 0 0
## 27504 2 0 0
## 27505 2 0 0
## 27506 2 0 0
## 27507 2 0 0
## 27508 2 0 0
## 27509 2 0 0
## 27510 2 0 0
## 27511 2 0 0
## 27512 2 0 0
## 27513 2 1 0
## 27514 2 0 0
## 27515 2 0 0
## 27516 2 0 0
## 27517 2 0 0
## 27518 1 0 0
## 27519 1 0 0
## 27520 1 0 0
## 27521 2 0 0
## 27522 2 0 0
## 27523 2 1 0
## 27524 2 0 0
## 27525 2 0 0
## 27526 2 0 0
## 27527 2 0 0
## 27528 2 0 0
## 27529 2 0 0
## 27530 2 0 0
## 27531 2 0 0
## 27532 2 0 0
## 27533 2 0 0
## 27534 2 0 0
## 27535 2 0 0
## 27536 2 0 0
## 27537 2 0 0
## 27538 2 0 0
## 27539 2 0 0
## 27540 2 0 0
## 27541 2 0 0
## 27542 2 2 0
## 27543 2 0 0
## 27544 2 0 0
## 27545 2 0 0
## 27546 2 0 0
## 27547 2 0 0
## 27548 2 0 0
## 27549 2 0 0
## 27550 1 0 0
## 27551 2 0 0
## 27552 2 0 0
## 27553 2 0 0
## 27554 1 0 0
## 27555 1 0 0
## 27556 1 0 0
## 27557 2 0 0
## 27558 2 0 0
## 27559 2 0 0
## 27560 2 0 0
## 27561 2 0 0
## 27562 2 0 0
## 27563 2 0 0
## 27564 2 0 0
## 27565 2 0 0
## 27566 2 0 0
## 27567 3 0 0
## 27568 1 0 0
## 27569 2 0 0
## 27570 2 0 0
## 27571 2 0 0
## 27572 2 0 0
## 27573 2 0 0
## 27574 2 0 0
## 27575 2 0 0
## 27576 2 0 0
## 27577 2 0 0
## 27578 2 0 0
## 27579 2 0 0
## 27580 2 0 0
## 27581 2 0 0
## 27582 2 0 0
## 27583 2 0 0
## 27584 2 0 0
## 27585 2 0 0
## 27586 2 0 0
## 27587 2 0 0
## 27588 2 0 0
## 27589 2 2 0
## 27590 2 0 0
## 27591 2 0 0
## 27592 2 2 0
## 27593 2 0 0
## 27594 2 0 0
## 27595 2 0 0
## 27596 2 0 0
## 27597 3 1 0
## 27598 2 1 0
## 27599 2 0 0
## 27600 2 0 0
## 27601 2 0 0
## 27602 2 0 0
## 27603 1 0 0
## 27604 1 0 0
## 27605 2 0 0
## 27606 2 0 0
## 27607 2 1 0
## 27608 2 0 0
## 27609 2 0 0
## 27610 2 0 0
## 27611 2 0 0
## 27612 2 0 0
## 27613 2 0 0
## 27614 2 0 0
## 27615 2 0 0
## 27616 2 0 0
## 27617 2 0 0
## 27618 1 0 0
## 27619 2 0 0
## 27620 1 0 0
## 27621 1 0 0
## 27622 1 0 0
## 27623 2 0 0
## 27624 2 0 0
## 27625 2 0 0
## 27626 1 0 0
## 27627 2 0 0
## 27628 1 0 0
## 27629 3 0 0
## 27630 2 0 0
## 27631 3 0 0
## 27632 2 0 0
## 27633 2 0 0
## 27634 2 0 0
## 27635 2 0 0
## 27636 3 1 0
## 27637 2 0 0
## 27638 2 0 0
## 27639 2 0 0
## 27640 2 0 0
## 27641 3 0 0
## 27642 3 0 0
## 27643 2 0 0
## 27644 2 0 0
## 27645 2 0 0
## 27646 2 0 0
## 27647 2 0 0
## 27648 2 0 0
## 27649 2 0 0
## 27650 2 0 0
## 27651 2 0 0
## 27652 2 0 0
## 27653 2 0 0
## 27654 2 0 0
## 27655 1 0 0
## 27656 2 1 0
## 27657 2 0 0
## 27658 2 0 0
## 27659 2 0 0
## 27660 2 0 0
## 27661 2 0 0
## 27662 2 0 0
## 27663 2 0 0
## 27664 1 0 0
## 27665 1 0 0
## 27666 1 0 0
## 27667 1 0 0
## 27668 1 0 0
## 27669 2 0 0
## 27670 2 0 0
## 27671 2 0 0
## 27672 1 0 0
## 27673 1 0 0
## 27674 3 0 0
## 27675 2 0 0
## 27676 2 0 0
## 27677 2 0 0
## 27678 2 0 0
## 27679 2 0 0
## 27680 2 0 0
## 27681 2 0 0
## 27682 2 0 0
## 27683 1 0 0
## 27684 2 0 0
## 27685 2 0 0
## 27686 2 0 0
## 27687 2 0 0
## 27688 2 0 0
## 27689 1 0 0
## 27690 2 0 0
## 27691 1 0 0
## 27692 2 0 0
## 27693 2 0 0
## 27694 2 0 0
## 27695 2 0 0
## 27696 1 0 0
## 27697 1 0 0
## 27698 2 0 0
## 27699 2 0 0
## 27700 2 0 0
## 27701 2 0 0
## 27702 1 0 0
## 27703 1 0 0
## 27704 2 0 0
## 27705 2 0 0
## 27706 4 0 0
## 27707 2 0 0
## 27708 2 0 0
## 27709 2 0 0
## 27710 3 0 0
## 27711 2 0 0
## 27712 2 0 0
## 27713 1 0 0
## 27714 2 0 0
## 27715 4 0 0
## 27716 2 0 0
## 27717 2 0 0
## 27718 1 0 0
## 27719 2 0 0
## 27720 2 0 0
## 27721 2 2 0
## 27722 2 0 0
## 27723 2 0 0
## 27724 2 0 0
## 27725 1 0 0
## 27726 2 0 0
## 27727 1 0 0
## 27728 1 0 0
## 27729 1 0 0
## 27730 2 0 0
## 27731 2 0 0
## 27732 2 0 0
## 27733 2 0 0
## 27734 1 0 0
## 27735 2 0 0
## 27736 2 0 0
## 27737 2 0 0
## 27738 2 0 0
## 27739 2 0 0
## 27740 2 0 0
## 27741 2 0 0
## 27742 2 0 0
## 27743 2 0 0
## 27744 2 0 0
## 27745 1 0 0
## 27746 2 0 0
## 27747 2 0 0
## 27748 2 0 0
## 27749 2 0 0
## 27750 2 2 0
## 27751 2 0 0
## 27752 2 0 0
## 27753 2 0 0
## 27754 2 0 0
## 27755 2 0 0
## 27756 2 0 0
## 27757 2 0 0
## 27758 2 0 0
## 27759 2 0 0
## 27760 2 0 0
## 27761 2 0 0
## 27762 2 0 0
## 27763 2 0 0
## 27764 2 0 0
## 27765 2 0 0
## 27766 2 0 0
## 27767 2 0 0
## 27768 3 0 0
## 27769 2 0 0
## 27770 2 0 0
## 27771 2 0 0
## 27772 2 0 0
## 27773 3 0 0
## 27774 2 0 0
## 27775 2 0 0
## 27776 2 0 0
## 27777 2 0 0
## 27778 2 0 0
## 27779 2 2 0
## 27780 2 0 0
## 27781 2 0 0
## 27782 2 0 0
## 27783 2 0 0
## 27784 2 0 0
## 27785 2 0 0
## 27786 2 2 0
## 27787 2 0 0
## 27788 2 0 0
## 27789 2 0 0
## 27790 2 0 0
## 27791 2 0 0
## 27792 2 0 0
## 27793 2 0 0
## 27794 2 0 0
## 27795 2 0 0
## 27796 2 0 0
## 27797 2 0 0
## 27798 1 0 0
## 27799 2 0 0
## 27800 2 0 0
## 27801 2 0 0
## 27802 2 2 0
## 27803 2 0 0
## 27804 2 0 0
## 27805 2 0 0
## 27806 2 0 0
## 27807 2 0 0
## 27808 2 0 0
## 27809 2 0 0
## 27810 2 0 0
## 27811 2 0 0
## 27812 2 0 0
## 27813 2 0 0
## 27814 2 0 0
## 27815 2 0 0
## 27816 2 2 0
## 27817 2 2 0
## 27818 3 0 0
## 27819 2 2 0
## 27820 2 0 0
## 27821 2 0 0
## 27822 2 0 0
## 27823 2 0 0
## 27824 2 0 0
## 27825 2 0 0
## 27826 2 0 0
## 27827 2 0 0
## 27828 2 0 0
## 27829 2 0 0
## 27830 2 0 0
## 27831 2 0 0
## 27832 2 0 0
## 27833 2 0 0
## 27834 2 0 0
## 27835 2 0 0
## 27836 2 0 0
## 27837 2 0 0
## 27838 2 2 0
## 27839 2 0 0
## 27840 2 0 0
## 27841 1 0 0
## 27842 2 0 0
## 27843 2 0 0
## 27844 2 0 0
## 27845 3 1 0
## 27846 2 0 0
## 27847 2 0 0
## 27848 2 0 0
## 27849 2 0 0
## 27850 2 0 0
## 27851 2 0 0
## 27852 2 0 0
## 27853 1 0 0
## 27854 2 0 0
## 27855 2 0 0
## 27856 2 0 0
## 27857 2 0 0
## 27858 2 0 0
## 27859 2 0 0
## 27860 2 0 0
## 27861 2 0 0
## 27862 3 1 0
## 27863 2 0 0
## 27864 2 0 0
## 27865 2 0 0
## 27866 1 0 0
## 27867 2 0 0
## 27868 2 0 0
## 27869 2 0 0
## 27870 2 0 0
## 27871 2 0 0
## 27872 3 0 0
## 27873 2 0 0
## 27874 2 0 0
## 27875 2 0 0
## 27876 2 0 0
## 27877 2 0 0
## 27878 2 0 0
## 27879 2 0 0
## 27880 2 0 0
## 27881 2 0 0
## 27882 1 0 0
## 27883 2 0 0
## 27884 2 0 0
## 27885 2 0 0
## 27886 2 0 0
## 27887 2 0 0
## 27888 2 0 0
## 27889 2 0 0
## 27890 2 0 0
## 27891 2 0 0
## 27892 2 0 0
## 27893 2 0 0
## 27894 2 0 0
## 27895 3 0 0
## 27896 2 0 0
## 27897 2 0 0
## 27898 2 0 0
## 27899 2 0 0
## 27900 2 0 0
## 27901 2 0 0
## 27902 2 0 0
## 27903 2 0 0
## 27904 2 0 0
## 27905 2 0 0
## 27906 1 0 0
## 27907 2 0 0
## 27908 1 0 0
## 27909 2 0 0
## 27910 2 0 0
## 27911 2 0 0
## 27912 2 0 0
## 27913 2 0 0
## 27914 2 0 0
## 27915 2 0 0
## 27916 2 0 0
## 27917 2 0 0
## 27918 2 0 0
## 27919 2 0 0
## 27920 2 0 0
## 27921 1 2 0
## 27922 2 0 0
## 27923 2 0 0
## 27924 2 0 0
## 27925 2 0 0
## 27926 2 0 0
## 27927 2 0 0
## 27928 2 0 0
## 27929 1 0 0
## 27930 2 0 0
## 27931 2 0 0
## 27932 2 0 0
## 27933 1 0 0
## 27934 2 0 0
## 27935 2 0 0
## 27936 2 0 0
## 27937 1 0 0
## 27938 1 0 0
## 27939 1 0 0
## 27940 2 0 0
## 27941 2 0 0
## 27942 2 0 0
## 27943 2 0 0
## 27944 2 0 0
## 27945 2 0 0
## 27946 3 1 0
## 27947 2 0 0
## 27948 2 0 0
## 27949 2 2 0
## 27950 2 0 0
## 27951 2 0 0
## 27952 2 0 0
## 27953 2 0 0
## 27954 2 0 0
## 27955 2 0 0
## 27956 2 0 0
## 27957 1 0 0
## 27958 2 0 0
## 27959 2 0 0
## 27960 2 0 0
## 27961 2 0 0
## 27962 2 0 0
## 27963 2 0 0
## 27964 2 2 0
## 27965 2 0 0
## 27966 2 0 0
## 27967 2 0 0
## 27968 2 0 0
## 27969 2 0 0
## 27970 2 0 0
## 27971 2 0 0
## 27972 2 0 0
## 27973 2 0 0
## 27974 1 0 0
## 27975 2 0 0
## 27976 2 0 0
## 27977 2 0 0
## 27978 3 1 0
## 27979 1 0 0
## 27980 1 0 0
## 27981 1 0 0
## 27982 2 0 0
## 27983 2 0 0
## 27984 2 0 0
## 27985 2 0 0
## 27986 2 0 0
## 27987 2 0 0
## 27988 2 0 0
## 27989 2 0 0
## 27990 2 0 0
## 27991 2 0 0
## 27992 1 0 0
## 27993 2 0 0
## 27994 2 0 0
## 27995 2 0 0
## 27996 1 0 0
## 27997 2 0 0
## 27998 2 0 0
## 27999 2 0 0
## 28000 2 0 0
## 28001 2 0 0
## 28002 2 0 0
## 28003 2 0 0
## 28004 2 0 0
## 28005 2 0 0
## 28006 2 0 0
## 28007 1 0 0
## 28008 2 0 0
## 28009 2 0 0
## 28010 2 0 0
## 28011 2 0 0
## 28012 2 2 0
## 28013 2 0 0
## 28014 2 0 0
## 28015 2 0 0
## 28016 2 0 0
## 28017 2 0 0
## 28018 2 0 0
## 28019 2 2 0
## 28020 2 0 0
## 28021 3 0 0
## 28022 2 0 0
## 28023 2 0 0
## 28024 2 0 0
## 28025 2 0 0
## 28026 2 0 0
## 28027 2 0 0
## 28028 2 0 0
## 28029 2 0 0
## 28030 1 0 0
## 28031 3 1 0
## 28032 2 0 0
## 28033 2 0 0
## 28034 2 0 0
## 28035 1 0 0
## 28036 2 0 0
## 28037 1 0 0
## 28038 2 0 0
## 28039 1 0 0
## 28040 2 0 0
## 28041 2 0 0
## 28042 2 0 0
## 28043 2 0 0
## 28044 2 0 0
## 28045 2 0 0
## 28046 2 0 0
## 28047 2 0 0
## 28048 2 2 0
## 28049 2 0 0
## 28050 2 0 0
## 28051 2 0 0
## 28052 2 0 0
## 28053 2 0 0
## 28054 2 0 0
## 28055 2 0 0
## 28056 1 0 0
## 28057 2 0 0
## 28058 2 0 0
## 28059 2 0 0
## 28060 2 0 0
## 28061 2 0 0
## 28062 2 0 0
## 28063 2 0 0
## 28064 2 0 0
## 28065 1 0 0
## 28066 1 0 0
## 28067 2 0 0
## 28068 2 0 0
## 28069 2 2 0
## 28070 2 0 0
## 28071 2 0 0
## 28072 2 0 0
## 28073 2 0 0
## 28074 2 0 0
## 28075 1 0 0
## 28076 2 0 0
## 28077 2 0 0
## 28078 2 0 0
## 28079 2 0 0
## 28080 2 0 0
## 28081 2 0 0
## 28082 2 0 0
## 28083 2 0 0
## 28084 2 0 0
## 28085 2 0 0
## 28086 2 0 0
## 28087 2 0 0
## 28088 1 0 0
## 28089 2 0 0
## 28090 2 0 0
## 28091 1 0 0
## 28092 2 0 0
## 28093 1 0 0
## 28094 1 0 0
## 28095 2 0 0
## 28096 2 0 0
## 28097 2 0 0
## 28098 3 0 0
## 28099 3 0 0
## 28100 1 0 0
## 28101 1 0 0
## 28102 2 0 0
## 28103 2 0 0
## 28104 2 0 0
## 28105 2 0 0
## 28106 2 0 0
## 28107 2 0 0
## 28108 3 0 0
## 28109 2 0 0
## 28110 1 0 0
## 28111 2 0 0
## 28112 2 0 0
## 28113 2 0 0
## 28114 2 0 0
## 28115 2 0 0
## 28116 1 0 0
## 28117 2 0 0
## 28118 2 0 0
## 28119 1 0 0
## 28120 2 0 0
## 28121 2 0 0
## 28122 2 0 0
## 28123 2 0 0
## 28124 2 0 0
## 28125 2 0 0
## 28126 2 0 0
## 28127 2 0 0
## 28128 2 0 0
## 28129 2 0 0
## 28130 2 0 0
## 28131 2 0 0
## 28132 2 0 0
## 28133 2 0 0
## 28134 2 0 0
## 28135 2 0 0
## 28136 2 0 0
## 28137 2 0 0
## 28138 2 0 0
## 28139 2 0 0
## 28140 2 0 0
## 28141 2 0 0
## 28142 2 0 0
## 28143 2 0 0
## 28144 2 0 0
## 28145 2 0 0
## 28146 2 0 0
## 28147 2 0 0
## 28148 2 0 0
## 28149 2 0 0
## 28150 2 0 0
## 28151 1 0 0
## 28152 2 0 0
## 28153 2 0 0
## 28154 2 0 0
## 28155 1 0 0
## 28156 2 0 0
## 28157 2 0 0
## 28158 2 0 0
## 28159 2 0 0
## 28160 2 0 0
## 28161 1 0 0
## 28162 2 0 0
## 28163 2 0 0
## 28164 2 0 0
## 28165 2 0 0
## 28166 2 0 0
## 28167 2 0 0
## 28168 2 0 0
## 28169 2 0 0
## 28170 2 0 0
## 28171 2 0 0
## 28172 3 0 0
## 28173 2 0 0
## 28174 2 0 0
## 28175 2 0 0
## 28176 2 0 0
## 28177 2 0 0
## 28178 2 0 0
## 28179 2 0 0
## 28180 2 0 0
## 28181 1 0 0
## 28182 2 0 0
## 28183 2 0 0
## 28184 2 0 0
## 28185 2 0 0
## 28186 2 0 0
## 28187 2 0 0
## 28188 1 0 0
## 28189 2 0 0
## 28190 2 0 0
## 28191 1 0 0
## 28192 1 0 0
## 28193 2 0 0
## 28194 3 0 0
## 28195 2 0 0
## 28196 2 0 0
## 28197 2 0 0
## 28198 3 0 0
## 28199 2 0 0
## 28200 2 0 0
## 28201 1 0 0
## 28202 2 0 0
## 28203 2 0 0
## 28204 3 0 0
## 28205 1 0 0
## 28206 2 0 0
## 28207 2 0 0
## 28208 2 2 0
## 28209 2 0 0
## 28210 2 0 0
## 28211 2 0 0
## 28212 2 0 0
## 28213 2 0 0
## 28214 2 0 0
## 28215 2 0 0
## 28216 2 0 0
## 28217 2 0 0
## 28218 2 0 0
## 28219 2 2 0
## 28220 2 1 0
## 28221 2 0 0
## 28222 2 0 0
## 28223 2 0 0
## 28224 2 0 0
## 28225 3 1 0
## 28226 2 0 0
## 28227 2 0 0
## 28228 1 0 0
## 28229 2 0 0
## 28230 2 0 0
## 28231 2 0 0
## 28232 2 0 0
## 28233 2 0 0
## 28234 2 0 0
## 28235 2 0 0
## 28236 2 0 0
## 28237 2 0 0
## 28238 2 0 0
## 28239 2 0 0
## 28240 2 0 0
## 28241 2 0 0
## 28242 2 0 0
## 28243 2 0 0
## 28244 1 0 0
## 28245 2 0 0
## 28246 1 0 0
## 28247 2 0 0
## 28248 2 0 0
## 28249 2 0 0
## 28250 1 0 0
## 28251 2 0 0
## 28252 2 0 0
## 28253 2 0 0
## 28254 2 0 0
## 28255 2 0 0
## 28256 2 0 0
## 28257 2 0 0
## 28258 2 0 0
## 28259 2 0 0
## 28260 2 0 0
## 28261 2 0 0
## 28262 1 0 0
## 28263 2 0 0
## 28264 2 0 0
## 28265 2 0 0
## 28266 2 0 0
## 28267 2 0 0
## 28268 2 0 0
## 28269 2 0 0
## 28270 2 0 0
## 28271 2 0 0
## 28272 2 0 0
## 28273 1 0 0
## 28274 2 0 0
## 28275 3 1 0
## 28276 2 0 0
## 28277 2 0 0
## 28278 2 0 0
## 28279 3 1 0
## 28280 2 0 0
## 28281 2 0 0
## 28282 2 2 0
## 28283 2 0 0
## 28284 2 1 0
## 28285 2 0 0
## 28286 2 0 0
## 28287 2 0 0
## 28288 2 2 0
## 28289 2 0 0
## 28290 2 0 0
## 28291 2 0 0
## 28292 2 0 0
## 28293 2 0 0
## 28294 2 0 0
## 28295 1 0 0
## 28296 2 0 0
## 28297 2 0 0
## 28298 2 0 0
## 28299 2 0 0
## 28300 2 0 0
## 28301 2 0 0
## 28302 2 0 0
## 28303 2 0 0
## 28304 1 0 0
## 28305 1 0 0
## 28306 2 0 0
## 28307 2 0 0
## 28308 2 0 0
## 28309 2 0 0
## 28310 2 0 0
## 28311 2 0 0
## 28312 2 0 0
## 28313 2 0 0
## 28314 2 0 0
## 28315 1 0 0
## 28316 2 0 0
## 28317 2 0 0
## 28318 2 0 0
## 28319 2 2 0
## 28320 2 0 0
## 28321 2 0 0
## 28322 2 0 0
## 28323 2 0 0
## 28324 2 0 0
## 28325 2 2 0
## 28326 2 0 0
## 28327 2 0 0
## 28328 2 0 0
## 28329 2 0 0
## 28330 2 0 0
## 28331 3 0 0
## 28332 2 0 0
## 28333 2 0 0
## 28334 2 0 0
## 28335 2 0 0
## 28336 2 0 0
## 28337 2 0 0
## 28338 2 0 0
## 28339 2 0 0
## 28340 2 0 0
## 28341 1 0 0
## 28342 2 0 0
## 28343 2 0 0
## 28344 1 0 0
## 28345 2 0 0
## 28346 2 0 0
## 28347 2 0 0
## 28348 1 0 0
## 28349 2 0 0
## 28350 2 0 0
## 28351 2 0 0
## 28352 2 0 0
## 28353 2 2 0
## 28354 2 0 0
## 28355 1 0 0
## 28356 2 2 0
## 28357 2 0 0
## 28358 1 0 0
## 28359 1 0 0
## 28360 1 0 0
## 28361 2 0 0
## 28362 2 0 0
## 28363 2 0 0
## 28364 1 0 0
## 28365 1 0 0
## 28366 2 0 0
## 28367 1 0 0
## 28368 2 0 0
## 28369 2 0 0
## 28370 2 0 0
## 28371 1 0 0
## 28372 1 0 0
## 28373 2 0 0
## 28374 1 0 0
## 28375 2 0 0
## 28376 2 0 0
## 28377 2 0 0
## 28378 1 0 0
## 28379 1 0 0
## 28380 1 0 0
## 28381 1 0 0
## 28382 1 0 0
## 28383 2 0 0
## 28384 2 0 0
## 28385 2 0 0
## 28386 2 0 0
## 28387 1 0 0
## 28388 1 0 0
## 28389 2 0 0
## 28390 1 0 0
## 28391 2 0 0
## 28392 1 0 0
## 28393 1 0 0
## 28394 2 0 0
## 28395 2 0 0
## 28396 2 0 0
## 28397 1 0 0
## 28398 2 0 0
## 28399 1 0 0
## 28400 2 0 0
## 28401 1 0 0
## 28402 1 0 0
## 28403 3 0 0
## 28404 2 0 0
## 28405 2 0 0
## 28406 2 0 0
## 28407 2 0 0
## 28408 1 0 0
## 28409 2 0 0
## 28410 2 0 0
## 28411 2 0 0
## 28412 2 0 0
## 28413 1 0 0
## 28414 1 0 0
## 28415 2 0 0
## 28416 1 0 0
## 28417 2 0 0
## 28418 1 0 0
## 28419 2 0 0
## 28420 2 0 0
## 28421 2 0 0
## 28422 1 0 0
## 28423 2 0 0
## 28424 1 0 0
## 28425 2 0 0
## 28426 2 0 0
## 28427 2 0 0
## 28428 1 0 0
## 28429 1 0 0
## 28430 1 0 0
## 28431 2 0 0
## 28432 1 0 0
## 28433 2 0 0
## 28434 1 0 0
## 28435 1 0 0
## 28436 1 0 0
## 28437 1 0 0
## 28438 1 0 0
## 28439 1 0 0
## 28440 1 0 0
## 28441 2 0 0
## 28442 2 0 0
## 28443 2 0 0
## 28444 2 0 0
## 28445 1 0 0
## 28446 2 0 0
## 28447 3 0 0
## 28448 2 0 0
## 28449 1 0 0
## 28450 1 0 0
## 28451 1 0 0
## 28452 2 0 0
## 28453 2 0 0
## 28454 2 0 0
## 28455 2 0 0
## 28456 2 0 0
## 28457 2 0 0
## 28458 2 0 0
## 28459 2 0 0
## 28460 2 0 0
## 28461 1 0 0
## 28462 2 0 0
## 28463 2 0 0
## 28464 1 0 0
## 28465 1 0 0
## 28466 2 0 0
## 28467 2 0 0
## 28468 1 0 0
## 28469 2 0 0
## 28470 1 0 0
## 28471 2 0 0
## 28472 2 0 0
## 28473 2 0 0
## 28474 2 0 0
## 28475 2 0 0
## 28476 1 0 0
## 28477 2 0 0
## 28478 2 0 0
## 28479 2 0 0
## 28480 2 0 0
## 28481 2 0 0
## 28482 2 0 0
## 28483 2 0 0
## 28484 2 0 0
## 28485 2 0 0
## 28486 2 0 0
## 28487 2 0 0
## 28488 2 0 0
## 28489 1 0 0
## 28490 1 0 0
## 28491 1 0 0
## 28492 1 0 0
## 28493 1 0 0
## 28494 2 0 0
## 28495 2 0 0
## 28496 2 0 0
## 28497 2 0 0
## 28498 2 0 0
## 28499 2 0 0
## 28500 2 0 0
## 28501 2 0 0
## 28502 2 0 0
## 28503 1 0 0
## 28504 1 0 0
## 28505 1 0 0
## 28506 1 0 0
## 28507 2 0 0
## 28508 2 0 0
## 28509 2 0 0
## 28510 2 0 0
## 28511 2 0 0
## 28512 2 0 0
## 28513 2 0 0
## 28514 2 0 0
## 28515 1 0 0
## 28516 1 0 0
## 28517 2 0 0
## 28518 2 0 0
## 28519 2 0 0
## 28520 1 0 0
## 28521 2 0 0
## 28522 2 0 0
## 28523 2 0 0
## 28524 2 0 0
## 28525 2 2 0
## 28526 1 0 0
## 28527 1 0 0
## 28528 2 0 0
## 28529 1 0 0
## 28530 2 0 0
## 28531 2 0 0
## 28532 2 0 0
## 28533 2 0 0
## 28534 2 0 0
## 28535 2 0 0
## 28536 1 0 0
## 28537 2 0 0
## 28538 2 0 0
## 28539 1 0 0
## 28540 1 0 0
## 28541 1 0 0
## 28542 2 0 0
## 28543 2 0 0
## 28544 1 0 0
## 28545 1 0 0
## 28546 1 0 0
## 28547 3 0 0
## 28548 1 0 0
## 28549 2 0 0
## 28550 2 0 0
## 28551 3 0 0
## 28552 2 0 0
## 28553 2 0 0
## 28554 1 0 0
## 28555 2 0 0
## 28556 2 0 0
## 28557 1 0 0
## 28558 1 0 0
## 28559 2 0 0
## 28560 1 0 0
## 28561 2 0 0
## 28562 2 0 0
## 28563 2 0 0
## 28564 1 0 0
## 28565 1 0 0
## 28566 1 0 0
## 28567 2 0 0
## 28568 2 0 0
## 28569 2 0 0
## 28570 1 0 0
## 28571 2 0 0
## 28572 2 0 0
## 28573 2 0 0
## 28574 2 0 0
## 28575 2 0 0
## 28576 2 0 0
## 28577 2 0 0
## 28578 2 0 0
## 28579 2 0 0
## 28580 3 0 0
## 28581 2 0 0
## 28582 2 0 0
## 28583 2 0 0
## 28584 2 0 0
## 28585 2 0 0
## 28586 2 0 0
## 28587 2 0 0
## 28588 2 0 0
## 28589 1 0 0
## 28590 1 0 0
## 28591 2 0 0
## 28592 2 0 0
## 28593 2 0 0
## 28594 2 0 0
## 28595 2 0 0
## 28596 1 0 0
## 28597 1 0 0
## 28598 2 0 0
## 28599 2 0 0
## 28600 2 0 0
## 28601 2 0 0
## 28602 2 0 0
## 28603 1 0 0
## 28604 2 0 0
## 28605 1 0 0
## 28606 1 0 0
## 28607 2 0 0
## 28608 2 0 0
## 28609 2 0 0
## 28610 2 0 0
## 28611 2 0 0
## 28612 2 0 0
## 28613 2 0 0
## 28614 2 0 0
## 28615 1 0 0
## 28616 1 0 0
## 28617 1 0 0
## 28618 2 0 0
## 28619 1 0 0
## 28620 1 0 0
## 28621 1 0 0
## 28622 1 0 0
## 28623 2 0 0
## 28624 2 0 0
## 28625 2 0 0
## 28626 2 0 0
## 28627 1 0 0
## 28628 2 0 0
## 28629 2 0 0
## 28630 2 0 0
## 28631 2 0 0
## 28632 2 0 0
## 28633 2 0 0
## 28634 2 0 0
## 28635 2 0 0
## 28636 2 0 0
## 28637 2 0 0
## 28638 2 0 0
## 28639 1 0 0
## 28640 2 0 0
## 28641 1 0 0
## 28642 2 0 0
## 28643 2 0 0
## 28644 2 0 0
## 28645 2 0 0
## 28646 2 0 0
## 28647 2 0 0
## 28648 2 0 0
## 28649 2 0 0
## 28650 2 0 0
## 28651 2 1 0
## 28652 1 0 0
## 28653 2 0 0
## 28654 1 0 0
## 28655 2 0 0
## 28656 2 0 0
## 28657 2 0 0
## 28658 2 0 0
## 28659 2 0 0
## 28660 1 0 0
## 28661 1 0 0
## 28662 1 0 0
## 28663 1 0 0
## 28664 1 0 0
## 28665 1 0 0
## 28666 1 0 0
## 28667 1 0 0
## 28668 1 0 0
## 28669 1 0 0
## 28670 1 0 0
## 28671 1 0 0
## 28672 1 0 0
## 28673 1 0 0
## 28674 1 0 0
## 28675 1 0 0
## 28676 1 0 0
## 28677 1 0 0
## 28678 1 0 0
## 28679 2 0 0
## 28680 2 1 0
## 28681 2 1 0
## 28682 1 0 0
## 28683 1 0 0
## 28684 1 0 0
## 28685 2 0 0
## 28686 2 0 0
## 28687 2 0 0
## 28688 2 0 0
## 28689 1 0 0
## 28690 2 0 0
## 28691 2 0 0
## 28692 2 0 0
## 28693 2 0 0
## 28694 2 0 0
## 28695 2 0 0
## 28696 1 0 0
## 28697 1 0 0
## 28698 2 0 0
## 28699 1 0 0
## 28700 2 0 0
## 28701 2 0 0
## 28702 2 0 0
## 28703 2 0 0
## 28704 1 0 0
## 28705 2 0 0
## 28706 2 0 0
## 28707 2 0 0
## 28708 2 0 0
## 28709 2 0 0
## 28710 2 0 0
## 28711 2 0 0
## 28712 2 0 0
## 28713 2 0 0
## 28714 1 0 0
## 28715 2 0 0
## 28716 2 0 0
## 28717 2 0 0
## 28718 2 0 0
## 28719 2 0 0
## 28720 2 0 0
## 28721 2 0 0
## 28722 2 0 0
## 28723 3 0 0
## 28724 2 0 0
## 28725 2 0 0
## 28726 2 0 0
## 28727 2 0 0
## 28728 2 0 0
## 28729 1 0 0
## 28730 1 0 0
## 28731 1 0 0
## 28732 1 0 0
## 28733 2 0 0
## 28734 2 0 0
## 28735 1 0 0
## 28736 1 0 0
## 28737 2 0 0
## 28738 3 0 0
## 28739 1 0 0
## 28740 2 0 0
## 28741 1 0 0
## 28742 1 0 0
## 28743 2 0 0
## 28744 2 0 0
## 28745 2 0 0
## 28746 3 1 0
## 28747 2 0 0
## 28748 2 0 0
## 28749 2 0 0
## 28750 2 0 0
## 28751 2 0 0
## 28752 2 0 0
## 28753 2 0 0
## 28754 2 0 0
## 28755 2 0 0
## 28756 2 0 0
## 28757 2 2 0
## 28758 1 0 0
## 28759 3 0 0
## 28760 2 0 0
## 28761 2 0 0
## 28762 2 0 0
## 28763 2 0 0
## 28764 2 0 0
## 28765 2 0 0
## 28766 2 0 0
## 28767 2 0 0
## 28768 2 0 0
## 28769 2 0 0
## 28770 2 0 0
## 28771 2 0 0
## 28772 2 0 0
## 28773 2 2 0
## 28774 2 0 0
## 28775 2 0 0
## 28776 2 0 0
## 28777 2 0 0
## 28778 2 0 0
## 28779 2 0 0
## 28780 2 0 0
## 28781 2 0 0
## 28782 2 0 0
## 28783 2 0 0
## 28784 2 0 0
## 28785 2 1 0
## 28786 1 0 0
## 28787 1 0 0
## 28788 1 0 0
## 28789 2 0 0
## 28790 2 0 0
## 28791 1 0 0
## 28792 1 0 0
## 28793 1 0 0
## 28794 2 0 0
## 28795 2 0 0
## 28796 1 0 0
## 28797 2 0 0
## 28798 2 0 0
## 28799 1 0 0
## 28800 2 0 0
## 28801 2 0 0
## 28802 2 0 0
## 28803 2 1 0
## 28804 2 0 0
## 28805 2 0 0
## 28806 2 0 0
## 28807 1 0 0
## 28808 2 0 0
## 28809 2 0 0
## 28810 2 0 0
## 28811 2 0 0
## 28812 2 0 0
## 28813 2 1 0
## 28814 2 0 0
## 28815 1 0 0
## 28816 2 0 0
## 28817 2 0 0
## 28818 2 0 0
## 28819 2 0 0
## 28820 2 0 0
## 28821 2 0 0
## 28822 2 0 0
## 28823 2 0 0
## 28824 2 0 0
## 28825 2 0 0
## 28826 2 0 0
## 28827 2 0 0
## 28828 2 0 0
## 28829 2 0 0
## 28830 2 0 0
## 28831 2 0 0
## 28832 1 0 0
## 28833 1 0 0
## 28834 2 0 0
## 28835 2 0 0
## 28836 2 0 0
## 28837 2 0 0
## 28838 2 0 0
## 28839 2 0 0
## 28840 2 0 0
## 28841 2 0 0
## 28842 2 0 0
## 28843 3 0 0
## 28844 2 1 0
## 28845 2 0 0
## 28846 2 0 0
## 28847 2 0 0
## 28848 2 0 0
## 28849 2 0 0
## 28850 2 0 0
## 28851 2 0 0
## 28852 3 0 0
## 28853 2 0 0
## 28854 2 0 0
## 28855 2 0 0
## 28856 2 0 0
## 28857 2 0 0
## 28858 2 0 0
## 28859 2 0 0
## 28860 2 0 0
## 28861 1 0 0
## 28862 2 0 0
## 28863 2 2 0
## 28864 2 0 0
## 28865 2 0 0
## 28866 2 0 0
## 28867 2 2 0
## 28868 1 0 0
## 28869 1 0 0
## 28870 2 0 0
## 28871 2 0 0
## 28872 2 0 0
## 28873 2 0 0
## 28874 2 0 0
## 28875 3 0 0
## 28876 2 0 0
## 28877 2 0 0
## 28878 2 0 0
## 28879 2 0 0
## 28880 1 0 0
## 28881 2 0 0
## 28882 2 0 0
## 28883 2 0 0
## 28884 2 0 0
## 28885 1 0 0
## 28886 2 0 0
## 28887 1 0 0
## 28888 2 0 0
## 28889 3 0 0
## 28890 2 0 0
## 28891 2 0 0
## 28892 2 0 0
## 28893 2 0 0
## 28894 1 0 0
## 28895 2 0 0
## 28896 1 0 0
## 28897 1 0 0
## 28898 1 0 0
## 28899 2 0 0
## 28900 2 0 0
## 28901 1 0 0
## 28902 2 0 0
## 28903 2 0 0
## 28904 2 0 0
## 28905 1 0 0
## 28906 2 0 0
## 28907 2 0 0
## 28908 3 0 0
## 28909 2 0 0
## 28910 1 0 0
## 28911 2 0 0
## 28912 2 0 0
## 28913 2 0 0
## 28914 2 0 0
## 28915 2 0 0
## 28916 2 0 0
## 28917 2 0 0
## 28918 2 0 0
## 28919 2 0 0
## 28920 2 0 0
## 28921 1 0 0
## 28922 1 0 0
## 28923 2 0 0
## 28924 2 0 0
## 28925 2 0 0
## 28926 2 0 0
## 28927 2 0 0
## 28928 2 0 0
## 28929 2 0 0
## 28930 2 0 0
## 28931 2 0 0
## 28932 2 0 0
## 28933 1 0 0
## 28934 2 0 0
## 28935 2 0 0
## 28936 1 0 0
## 28937 1 0 0
## 28938 2 0 0
## 28939 2 0 0
## 28940 2 0 0
## 28941 2 0 0
## 28942 2 0 0
## 28943 2 0 0
## 28944 2 0 0
## 28945 1 0 0
## 28946 2 0 0
## 28947 2 0 0
## 28948 2 0 0
## 28949 2 0 0
## 28950 1 0 0
## 28951 2 0 0
## 28952 2 0 0
## 28953 3 0 0
## 28954 3 0 0
## 28955 1 0 0
## 28956 2 0 0
## 28957 2 0 0
## 28958 3 0 0
## 28959 2 0 0
## 28960 3 0 0
## 28961 2 0 0
## 28962 1 0 0
## 28963 2 0 0
## 28964 1 0 0
## 28965 1 0 0
## 28966 1 0 0
## 28967 1 0 0
## 28968 2 0 0
## 28969 1 0 0
## 28970 1 0 0
## 28971 2 0 0
## 28972 2 0 0
## 28973 2 0 0
## 28974 1 0 0
## 28975 2 0 0
## 28976 2 0 0
## 28977 2 0 0
## 28978 1 0 0
## 28979 2 0 0
## 28980 2 0 0
## 28981 2 0 0
## 28982 2 0 0
## 28983 2 0 0
## 28984 2 0 0
## 28985 2 0 0
## 28986 2 0 0
## 28987 2 0 0
## 28988 2 0 0
## 28989 2 0 0
## 28990 2 0 0
## 28991 2 1 0
## 28992 1 0 0
## 28993 2 0 0
## 28994 2 0 0
## 28995 2 0 0
## 28996 2 0 0
## 28997 2 0 0
## 28998 2 0 0
## 28999 2 0 0
## 29000 2 0 0
## 29001 1 0 0
## 29002 2 0 0
## 29003 2 0 0
## 29004 1 0 0
## 29005 2 0 0
## 29006 2 0 0
## 29007 2 0 0
## 29008 2 0 0
## 29009 2 0 0
## 29010 1 0 0
## 29011 1 0 0
## 29012 1 0 0
## 29013 1 0 0
## 29014 2 0 0
## 29015 3 0 0
## 29016 1 0 0
## 29017 2 0 0
## 29018 2 0 0
## 29019 2 0 0
## 29020 2 0 0
## 29021 2 0 0
## 29022 2 0 0
## 29023 2 0 0
## 29024 2 2 0
## 29025 3 0 0
## 29026 2 0 0
## 29027 2 0 0
## 29028 1 0 0
## 29029 1 0 0
## 29030 1 0 0
## 29031 2 0 0
## 29032 2 0 0
## 29033 2 0 0
## 29034 2 0 0
## 29035 2 0 0
## 29036 3 0 0
## 29037 2 0 0
## 29038 2 0 0
## 29039 2 1 0
## 29040 2 0 0
## 29041 2 0 0
## 29042 2 0 0
## 29043 1 0 0
## 29044 2 0 0
## 29045 2 0 0
## 29046 2 0 0
## 29047 2 0 0
## 29048 2 0 0
## 29049 3 1 0
## 29050 2 0 0
## 29051 2 0 0
## 29052 2 0 0
## 29053 2 0 0
## 29054 2 0 0
## 29055 2 0 0
## 29056 2 0 0
## 29057 2 0 0
## 29058 2 0 0
## 29059 1 0 0
## 29060 2 0 0
## 29061 2 0 0
## 29062 2 2 0
## 29063 2 0 0
## 29064 2 0 0
## 29065 1 0 0
## 29066 1 0 0
## 29067 3 1 0
## 29068 1 0 0
## 29069 1 0 0
## 29070 2 0 0
## 29071 2 0 0
## 29072 2 0 0
## 29073 2 0 0
## 29074 2 0 0
## 29075 2 0 0
## 29076 2 0 0
## 29077 2 0 0
## 29078 2 0 0
## 29079 2 0 0
## 29080 2 0 0
## 29081 2 0 0
## 29082 2 0 0
## 29083 1 0 0
## 29084 2 0 0
## 29085 2 1 0
## 29086 1 0 0
## 29087 2 0 0
## 29088 2 0 0
## 29089 2 0 0
## 29090 2 0 0
## 29091 2 0 0
## 29092 2 0 0
## 29093 1 0 0
## 29094 2 0 0
## 29095 2 0 0
## 29096 2 0 0
## 29097 1 0 0
## 29098 3 0 0
## 29099 2 0 0
## 29100 3 0 0
## 29101 2 1 0
## 29102 1 0 0
## 29103 2 0 0
## 29104 2 0 0
## 29105 2 0 0
## 29106 2 0 0
## 29107 2 0 0
## 29108 2 0 0
## 29109 2 1 0
## 29110 2 0 0
## 29111 2 0 0
## 29112 2 2 0
## 29113 2 0 0
## 29114 2 0 0
## 29115 2 0 0
## 29116 2 0 0
## 29117 2 0 0
## 29118 2 0 0
## 29119 3 0 0
## 29120 2 0 0
## 29121 2 0 0
## 29122 2 0 0
## 29123 2 0 0
## 29124 2 0 0
## 29125 2 0 0
## 29126 2 0 0
## 29127 2 0 0
## 29128 2 0 0
## 29129 2 0 0
## 29130 2 0 0
## 29131 1 0 0
## 29132 2 0 0
## 29133 2 0 0
## 29134 1 0 0
## 29135 2 1 0
## 29136 2 0 0
## 29137 2 0 0
## 29138 2 0 0
## 29139 2 0 0
## 29140 2 0 0
## 29141 3 0 0
## 29142 2 0 0
## 29143 2 0 0
## 29144 3 0 0
## 29145 2 0 0
## 29146 2 0 0
## 29147 2 0 0
## 29148 2 0 0
## 29149 2 0 0
## 29150 2 0 0
## 29151 2 0 0
## 29152 2 0 0
## 29153 1 0 0
## 29154 2 0 0
## 29155 2 0 0
## 29156 2 0 0
## 29157 2 0 0
## 29158 1 0 0
## 29159 2 1 0
## 29160 2 0 0
## 29161 2 0 0
## 29162 2 0 0
## 29163 2 0 0
## 29164 2 0 0
## 29165 2 0 0
## 29166 2 0 0
## 29167 2 0 0
## 29168 2 0 0
## 29169 2 0 0
## 29170 2 0 0
## 29171 3 0 0
## 29172 2 0 0
## 29173 2 0 0
## 29174 2 0 0
## 29175 2 0 0
## 29176 2 0 0
## 29177 2 0 0
## 29178 2 0 0
## 29179 2 0 0
## 29180 2 0 0
## 29181 2 0 0
## 29182 2 0 0
## 29183 2 0 0
## 29184 2 0 0
## 29185 2 0 0
## 29186 2 0 0
## 29187 2 0 0
## 29188 2 0 0
## 29189 2 0 0
## 29190 2 1 0
## 29191 2 0 0
## 29192 2 0 0
## 29193 2 0 0
## 29194 2 0 0
## 29195 2 0 0
## 29196 2 0 0
## 29197 2 0 0
## 29198 2 0 0
## 29199 2 0 0
## 29200 2 0 0
## 29201 2 0 0
## 29202 2 0 0
## 29203 2 0 0
## 29204 2 0 0
## 29205 1 0 0
## 29206 2 0 0
## 29207 3 1 0
## 29208 2 2 0
## 29209 2 0 0
## 29210 2 0 0
## 29211 2 0 0
## 29212 2 0 0
## 29213 2 0 0
## 29214 2 0 0
## 29215 1 0 0
## 29216 2 0 0
## 29217 2 0 0
## 29218 2 0 0
## 29219 2 0 0
## 29220 2 0 0
## 29221 2 0 0
## 29222 2 0 0
## 29223 2 0 0
## 29224 2 0 0
## 29225 2 0 0
## 29226 2 0 0
## 29227 2 0 0
## 29228 2 0 0
## 29229 2 0 0
## 29230 2 0 0
## 29231 2 0 0
## 29232 1 0 0
## 29233 2 0 0
## 29234 2 0 0
## 29235 1 0 0
## 29236 2 0 0
## 29237 2 0 0
## 29238 3 0 0
## 29239 2 0 0
## 29240 2 0 0
## 29241 2 1 0
## 29242 2 0 0
## 29243 2 2 0
## 29244 2 0 0
## 29245 2 0 0
## 29246 2 2 0
## 29247 2 1 0
## 29248 2 0 0
## 29249 2 0 0
## 29250 1 0 0
## 29251 2 0 0
## 29252 2 0 0
## 29253 2 0 0
## 29254 2 0 0
## 29255 2 0 0
## 29256 2 0 0
## 29257 2 0 0
## 29258 2 0 0
## 29259 2 0 0
## 29260 2 0 0
## 29261 2 1 0
## 29262 2 0 0
## 29263 2 0 0
## 29264 2 0 0
## 29265 2 0 0
## 29266 1 0 0
## 29267 1 0 0
## 29268 1 0 0
## 29269 1 0 0
## 29270 2 0 0
## 29271 2 0 0
## 29272 2 0 0
## 29273 2 0 0
## 29274 2 0 0
## 29275 2 0 0
## 29276 2 1 0
## 29277 2 0 0
## 29278 2 0 0
## 29279 2 0 0
## 29280 2 0 0
## 29281 2 0 0
## 29282 2 0 0
## 29283 2 0 0
## 29284 2 0 0
## 29285 3 0 0
## 29286 2 0 0
## 29287 2 0 0
## 29288 2 0 0
## 29289 2 0 0
## 29290 2 0 0
## 29291 2 0 0
## 29292 2 0 0
## 29293 2 0 0
## 29294 2 0 0
## 29295 2 1 0
## 29296 2 0 0
## 29297 2 0 0
## 29298 2 0 0
## 29299 2 1 0
## 29300 1 0 0
## 29301 2 0 0
## 29302 1 0 0
## 29303 1 0 0
## 29304 1 0 0
## 29305 1 0 0
## 29306 2 0 0
## 29307 2 0 0
## 29308 2 0 0
## 29309 2 0 0
## 29310 2 0 0
## 29311 1 0 0
## 29312 2 0 0
## 29313 1 0 0
## 29314 2 0 0
## 29315 2 0 0
## 29316 2 0 0
## 29317 2 0 0
## 29318 2 0 0
## 29319 2 0 0
## 29320 2 0 0
## 29321 1 0 0
## 29322 2 0 0
## 29323 2 0 0
## 29324 2 0 0
## 29325 2 0 0
## 29326 2 0 0
## 29327 2 0 0
## 29328 2 2 0
## 29329 2 0 0
## 29330 2 0 0
## 29331 1 0 0
## 29332 2 0 0
## 29333 1 0 0
## 29334 2 2 0
## 29335 1 0 0
## 29336 2 0 0
## 29337 1 0 0
## 29338 2 0 0
## 29339 2 0 0
## 29340 2 0 0
## 29341 2 0 0
## 29342 2 0 0
## 29343 2 0 0
## 29344 2 0 0
## 29345 2 0 0
## 29346 2 0 0
## 29347 2 0 0
## 29348 2 0 0
## 29349 2 0 0
## 29350 2 0 0
## 29351 2 0 0
## 29352 2 0 0
## 29353 2 0 0
## 29354 2 0 0
## 29355 1 0 0
## 29356 2 0 0
## 29357 2 0 0
## 29358 2 0 0
## 29359 2 0 0
## 29360 2 0 0
## 29361 2 0 0
## 29362 2 0 0
## 29363 1 0 0
## 29364 2 0 0
## 29365 2 0 0
## 29366 2 0 0
## 29367 1 0 0
## 29368 2 0 0
## 29369 2 0 0
## 29370 2 0 0
## 29371 2 0 0
## 29372 2 0 0
## 29373 2 0 0
## 29374 2 0 0
## 29375 2 0 0
## 29376 2 0 0
## 29377 2 0 0
## 29378 2 0 0
## 29379 2 0 0
## 29380 2 0 0
## 29381 2 2 0
## 29382 2 0 0
## 29383 2 0 0
## 29384 2 0 0
## 29385 2 2 0
## 29386 2 0 0
## 29387 2 0 0
## 29388 2 0 0
## 29389 2 0 0
## 29390 2 0 0
## 29391 2 1 0
## 29392 1 1 0
## 29393 2 0 0
## 29394 1 0 0
## 29395 1 0 0
## 29396 2 0 0
## 29397 2 0 0
## 29398 1 0 0
## 29399 2 0 0
## 29400 2 0 0
## 29401 2 0 0
## 29402 2 0 0
## 29403 2 0 0
## 29404 2 0 0
## 29405 2 0 0
## 29406 2 0 0
## 29407 2 0 0
## 29408 2 0 0
## 29409 2 0 0
## 29410 2 0 0
## 29411 2 0 0
## 29412 2 0 0
## 29413 2 0 0
## 29414 2 2 0
## 29415 2 0 0
## 29416 2 0 0
## 29417 2 0 0
## 29418 2 0 0
## 29419 2 0 0
## 29420 2 0 0
## 29421 2 0 0
## 29422 2 0 0
## 29423 2 0 0
## 29424 2 0 0
## 29425 1 0 0
## 29426 2 0 0
## 29427 2 0 0
## 29428 2 0 0
## 29429 2 0 0
## 29430 2 0 0
## 29431 3 1 0
## 29432 2 0 0
## 29433 2 0 0
## 29434 2 1 0
## 29435 2 0 0
## 29436 2 0 0
## 29437 2 0 0
## 29438 2 2 0
## 29439 2 0 0
## 29440 2 0 0
## 29441 2 0 0
## 29442 2 1 0
## 29443 1 0 0
## 29444 2 0 0
## 29445 1 0 0
## 29446 2 0 0
## 29447 2 0 0
## 29448 1 0 0
## 29449 2 0 0
## 29450 2 0 0
## 29451 1 0 0
## 29452 2 0 0
## 29453 2 0 0
## 29454 2 1 0
## 29455 1 1 0
## 29456 2 0 0
## 29457 2 0 0
## 29458 2 0 0
## 29459 1 0 0
## 29460 2 0 0
## 29461 2 0 0
## 29462 1 0 0
## 29463 2 0 0
## 29464 2 0 0
## 29465 1 0 0
## 29466 2 0 0
## 29467 2 0 0
## 29468 2 0 0
## 29469 2 0 0
## 29470 2 0 0
## 29471 1 0 0
## 29472 2 0 0
## 29473 1 0 0
## 29474 1 0 0
## 29475 2 0 0
## 29476 2 0 0
## 29477 1 0 0
## 29478 1 0 0
## 29479 2 1 0
## 29480 1 0 0
## 29481 2 0 0
## 29482 2 0 0
## 29483 2 0 0
## 29484 2 0 0
## 29485 2 0 0
## 29486 1 0 0
## 29487 1 0 0
## 29488 2 0 0
## 29489 2 0 0
## 29490 1 0 0
## 29491 2 0 0
## 29492 2 0 0
## 29493 2 1 0
## 29494 2 2 0
## 29495 2 0 0
## 29496 2 0 0
## 29497 2 0 0
## 29498 2 0 0
## 29499 2 0 0
## 29500 2 0 0
## 29501 2 0 0
## 29502 2 0 0
## 29503 2 0 0
## 29504 2 0 0
## 29505 2 0 0
## 29506 2 0 0
## 29507 2 0 0
## 29508 2 0 0
## 29509 2 0 0
## 29510 2 0 0
## 29511 2 0 0
## 29512 2 0 0
## 29513 2 0 0
## 29514 2 0 0
## 29515 1 0 0
## 29516 1 0 0
## 29517 1 0 0
## 29518 1 0 0
## 29519 2 0 0
## 29520 1 0 0
## 29521 1 0 0
## 29522 1 0 0
## 29523 2 0 0
## 29524 2 0 0
## 29525 2 0 0
## 29526 2 2 0
## 29527 1 0 0
## 29528 2 0 0
## 29529 2 0 0
## 29530 2 0 0
## 29531 2 0 0
## 29532 2 0 0
## 29533 2 0 0
## 29534 2 0 0
## 29535 2 0 0
## 29536 2 0 0
## 29537 2 0 0
## 29538 2 0 0
## 29539 2 0 0
## 29540 2 0 0
## 29541 1 0 0
## 29542 2 0 0
## 29543 2 0 0
## 29544 2 0 0
## 29545 2 0 0
## 29546 2 0 0
## 29547 2 0 0
## 29548 2 0 0
## 29549 2 0 0
## 29550 2 0 0
## 29551 2 0 0
## 29552 2 0 0
## 29553 2 0 0
## 29554 1 0 0
## 29555 2 0 0
## 29556 2 0 0
## 29557 2 0 0
## 29558 2 0 0
## 29559 2 0 0
## 29560 2 0 0
## 29561 2 0 0
## 29562 1 0 0
## 29563 1 0 0
## 29564 2 0 0
## 29565 1 0 0
## 29566 2 0 0
## 29567 2 0 0
## 29568 2 0 0
## 29569 1 0 0
## 29570 1 0 0
## 29571 1 0 0
## 29572 1 0 0
## 29573 2 0 0
## 29574 2 0 0
## 29575 2 0 0
## 29576 2 0 0
## 29577 2 0 0
## 29578 1 0 0
## 29579 2 0 0
## 29580 2 0 0
## 29581 2 0 0
## 29582 2 0 0
## 29583 2 0 0
## 29584 2 0 0
## 29585 1 0 0
## 29586 2 0 0
## 29587 2 0 0
## 29588 2 0 0
## 29589 2 0 0
## 29590 2 0 0
## 29591 1 0 0
## 29592 2 0 0
## 29593 2 0 0
## 29594 1 0 0
## 29595 2 0 0
## 29596 2 0 0
## 29597 2 0 0
## 29598 2 0 0
## 29599 2 0 0
## 29600 2 0 0
## 29601 2 0 0
## 29602 2 0 0
## 29603 2 0 0
## 29604 2 0 0
## 29605 2 0 0
## 29606 1 0 0
## 29607 2 0 0
## 29608 3 0 0
## 29609 2 0 0
## 29610 2 0 0
## 29611 2 0 0
## 29612 2 0 0
## 29613 2 0 0
## 29614 2 0 0
## 29615 2 0 0
## 29616 2 0 0
## 29617 2 0 0
## 29618 2 0 0
## 29619 2 0 0
## 29620 2 0 0
## 29621 2 0 0
## 29622 1 0 0
## 29623 2 0 0
## 29624 2 0 0
## 29625 2 0 0
## 29626 2 0 0
## 29627 2 0 0
## 29628 1 0 0
## 29629 2 2 0
## 29630 2 0 0
## 29631 2 0 0
## 29632 2 0 0
## 29633 2 0 0
## 29634 1 0 0
## 29635 2 0 0
## 29636 2 0 0
## 29637 1 0 0
## 29638 2 0 0
## 29639 2 0 0
## 29640 2 0 0
## 29641 2 0 0
## 29642 2 0 0
## 29643 2 0 0
## 29644 2 0 0
## 29645 2 0 0
## 29646 2 0 0
## 29647 2 0 0
## 29648 2 0 0
## 29649 2 0 0
## 29650 2 0 0
## 29651 2 0 0
## 29652 2 0 0
## 29653 2 0 0
## 29654 2 0 0
## 29655 2 0 0
## 29656 2 0 0
## 29657 2 0 0
## 29658 2 0 0
## 29659 3 0 0
## 29660 2 0 0
## 29661 1 0 0
## 29662 2 1 0
## 29663 2 0 0
## 29664 3 0 0
## 29665 2 0 0
## 29666 2 0 0
## 29667 2 1 0
## 29668 2 0 0
## 29669 1 0 0
## 29670 2 0 0
## 29671 2 0 0
## 29672 2 0 0
## 29673 1 0 0
## 29674 2 0 0
## 29675 2 0 0
## 29676 2 0 0
## 29677 2 0 0
## 29678 2 0 0
## 29679 2 0 0
## 29680 2 0 0
## 29681 2 0 0
## 29682 2 0 0
## 29683 2 0 0
## 29684 2 0 0
## 29685 3 0 0
## 29686 2 0 0
## 29687 2 0 0
## 29688 2 0 0
## 29689 2 0 0
## 29690 2 0 0
## 29691 2 0 0
## 29692 2 0 0
## 29693 2 0 0
## 29694 2 0 0
## 29695 2 0 0
## 29696 2 0 0
## 29697 2 0 0
## 29698 2 0 0
## 29699 1 0 0
## 29700 3 0 0
## 29701 2 0 0
## 29702 2 0 0
## 29703 2 0 0
## 29704 2 2 0
## 29705 2 0 0
## 29706 2 0 0
## 29707 2 0 0
## 29708 2 0 0
## 29709 2 0 0
## 29710 2 0 0
## 29711 2 0 0
## 29712 2 0 0
## 29713 2 0 0
## 29714 2 0 0
## 29715 1 0 0
## 29716 1 0 0
## 29717 1 0 0
## 29718 1 0 0
## 29719 1 0 0
## 29720 1 0 0
## 29721 1 0 0
## 29722 2 0 0
## 29723 2 0 0
## 29724 2 0 0
## 29725 2 0 0
## 29726 2 0 0
## 29727 2 0 0
## 29728 2 0 0
## 29729 1 0 0
## 29730 1 0 0
## 29731 1 0 0
## 29732 2 0 0
## 29733 2 0 0
## 29734 2 0 0
## 29735 2 0 0
## 29736 2 0 0
## 29737 2 0 0
## 29738 2 0 0
## 29739 2 0 0
## 29740 2 0 0
## 29741 2 0 0
## 29742 2 0 0
## 29743 2 0 0
## 29744 2 0 0
## 29745 2 0 0
## 29746 2 0 0
## 29747 2 0 0
## 29748 2 0 0
## 29749 2 0 0
## 29750 2 0 0
## 29751 2 0 0
## 29752 2 0 0
## 29753 1 0 0
## 29754 1 0 0
## 29755 2 0 0
## 29756 2 0 0
## 29757 2 0 0
## 29758 1 0 0
## 29759 1 0 0
## 29760 1 0 0
## 29761 1 0 0
## 29762 1 0 0
## 29763 2 0 0
## 29764 2 0 0
## 29765 2 0 0
## 29766 2 0 0
## 29767 3 0 0
## 29768 1 0 0
## 29769 2 0 0
## 29770 1 0 0
## 29771 1 0 0
## 29772 2 0 0
## 29773 2 0 0
## 29774 1 0 0
## 29775 1 0 0
## 29776 1 0 0
## 29777 1 0 0
## 29778 2 0 0
## 29779 2 0 0
## 29780 1 0 0
## 29781 2 0 0
## 29782 2 0 0
## 29783 1 0 0
## 29784 2 0 0
## 29785 1 0 0
## 29786 2 0 0
## 29787 1 0 0
## 29788 1 0 0
## 29789 2 0 0
## 29790 2 0 0
## 29791 2 0 0
## 29792 1 0 0
## 29793 1 0 0
## 29794 2 0 0
## 29795 2 0 0
## 29796 1 0 0
## 29797 1 0 0
## 29798 1 0 0
## 29799 2 0 0
## 29800 2 1 0
## 29801 2 0 0
## 29802 2 0 0
## 29803 2 0 0
## 29804 2 0 0
## 29805 2 0 0
## 29806 1 0 0
## 29807 2 0 0
## 29808 1 0 0
## 29809 1 0 0
## 29810 1 0 0
## 29811 1 0 0
## 29812 2 0 0
## 29813 2 0 0
## 29814 2 0 0
## 29815 2 0 0
## 29816 2 0 0
## 29817 2 0 0
## 29818 2 0 0
## 29819 2 0 0
## 29820 2 0 0
## 29821 2 0 0
## 29822 1 0 0
## 29823 2 0 0
## 29824 2 0 0
## 29825 2 0 0
## 29826 2 0 0
## 29827 1 0 0
## 29828 1 0 0
## 29829 1 0 0
## 29830 2 0 0
## 29831 1 0 0
## 29832 2 0 0
## 29833 1 0 0
## 29834 2 0 0
## 29835 2 0 0
## 29836 3 0 0
## 29837 1 0 0
## 29838 2 0 0
## 29839 2 0 0
## 29840 2 0 0
## 29841 2 0 0
## 29842 2 0 0
## 29843 1 0 0
## 29844 2 0 0
## 29845 1 0 0
## 29846 1 0 0
## 29847 2 0 0
## 29848 2 0 0
## 29849 1 0 0
## 29850 1 0 0
## 29851 1 0 0
## 29852 1 0 0
## 29853 1 0 0
## 29854 1 0 0
## 29855 2 0 0
## 29856 2 0 0
## 29857 1 0 0
## 29858 2 0 0
## 29859 2 0 0
## 29860 1 0 0
## 29861 2 0 0
## 29862 2 0 0
## 29863 2 0 0
## 29864 2 0 0
## 29865 2 0 0
## 29866 2 0 0
## 29867 2 0 0
## 29868 2 0 0
## 29869 2 0 0
## 29870 2 0 0
## 29871 2 0 0
## 29872 2 0 0
## 29873 2 0 0
## 29874 2 0 0
## 29875 2 0 0
## 29876 2 0 0
## 29877 2 0 0
## 29878 2 0 0
## 29879 2 0 0
## 29880 1 0 0
## 29881 1 0 0
## 29882 2 0 0
## 29883 2 0 0
## 29884 1 0 0
## 29885 2 2 0
## 29886 2 0 0
## 29887 2 0 0
## 29888 2 0 0
## 29889 2 0 0
## 29890 2 0 0
## 29891 2 0 0
## 29892 2 0 0
## 29893 3 0 0
## 29894 2 0 0
## 29895 2 0 0
## 29896 2 0 0
## 29897 2 0 0
## 29898 2 0 0
## 29899 2 0 0
## 29900 2 0 0
## 29901 2 0 0
## 29902 2 0 0
## 29903 2 0 0
## 29904 1 0 0
## 29905 1 0 0
## 29906 2 0 0
## 29907 2 0 0
## 29908 2 0 0
## 29909 1 0 0
## 29910 1 0 0
## 29911 1 0 0
## 29912 2 0 0
## 29913 2 0 0
## 29914 2 0 0
## 29915 2 0 0
## 29916 2 0 0
## 29917 2 0 0
## 29918 2 0 0
## 29919 2 0 0
## 29920 2 0 0
## 29921 2 0 0
## 29922 2 0 0
## 29923 2 0 0
## 29924 2 0 0
## 29925 1 0 0
## 29926 1 0 0
## 29927 2 0 0
## 29928 2 0 0
## 29929 2 0 0
## 29930 2 0 0
## 29931 2 0 0
## 29932 2 0 0
## 29933 2 0 0
## 29934 2 0 0
## 29935 2 0 0
## 29936 1 0 0
## 29937 1 0 0
## 29938 2 0 0
## 29939 1 0 0
## 29940 2 0 0
## 29941 2 0 0
## 29942 2 0 0
## 29943 2 1 0
## 29944 2 0 0
## 29945 2 0 0
## 29946 2 0 0
## 29947 2 0 0
## 29948 2 0 0
## 29949 2 2 0
## 29950 2 0 0
## 29951 2 0 0
## 29952 2 0 0
## 29953 2 0 0
## 29954 2 0 0
## 29955 2 0 0
## 29956 1 0 0
## 29957 2 0 0
## 29958 2 0 0
## 29959 2 0 0
## 29960 2 0 0
## 29961 2 0 0
## 29962 1 0 0
## 29963 2 0 0
## 29964 2 1 0
## 29965 2 0 0
## 29966 2 0 0
## 29967 2 1 0
## 29968 2 0 0
## 29969 2 0 0
## 29970 2 0 0
## 29971 2 0 0
## 29972 2 0 0
## 29973 2 0 0
## 29974 2 0 0
## 29975 2 0 0
## 29976 2 0 0
## 29977 2 0 0
## 29978 1 0 0
## 29979 1 0 0
## 29980 2 0 0
## 29981 1 0 0
## 29982 2 0 0
## 29983 2 0 0
## 29984 2 0 0
## 29985 2 0 0
## 29986 2 0 0
## 29987 2 0 0
## 29988 2 0 0
## 29989 1 0 0
## 29990 2 0 0
## 29991 2 0 0
## 29992 2 0 0
## 29993 2 0 0
## 29994 2 0 0
## 29995 3 0 0
## 29996 2 0 0
## 29997 1 0 0
## 29998 2 0 0
## 29999 1 0 0
## 30000 2 0 0
## 30001 2 0 0
## 30002 2 0 0
## 30003 2 0 0
## 30004 2 0 0
## 30005 2 0 0
## 30006 3 0 0
## 30007 2 0 0
## 30008 2 0 0
## 30009 2 0 0
## 30010 2 0 0
## 30011 2 0 0
## 30012 2 0 0
## 30013 2 0 0
## 30014 2 0 0
## 30015 2 0 0
## 30016 2 0 0
## 30017 1 0 0
## 30018 3 0 0
## 30019 2 0 0
## 30020 2 0 0
## 30021 3 0 0
## 30022 2 0 0
## 30023 2 0 0
## 30024 2 0 0
## 30025 2 0 0
## 30026 2 0 0
## 30027 2 0 0
## 30028 2 0 0
## 30029 2 0 0
## 30030 2 0 0
## 30031 2 0 0
## 30032 2 0 0
## 30033 2 0 0
## 30034 2 0 0
## 30035 2 0 0
## 30036 2 0 0
## 30037 2 0 0
## 30038 2 0 0
## 30039 1 0 0
## 30040 2 0 0
## 30041 2 1 0
## 30042 2 0 0
## 30043 2 0 0
## 30044 2 0 0
## 30045 2 0 0
## 30046 2 0 0
## 30047 2 0 0
## 30048 2 0 0
## 30049 1 0 0
## 30050 1 0 0
## 30051 1 0 0
## 30052 2 0 0
## 30053 2 0 0
## 30054 2 0 0
## 30055 2 0 0
## 30056 2 0 0
## 30057 2 0 0
## 30058 2 0 0
## 30059 2 0 0
## 30060 2 0 0
## 30061 2 0 0
## 30062 1 0 0
## 30063 1 0 0
## 30064 2 0 0
## 30065 1 0 0
## 30066 2 0 0
## 30067 2 0 0
## 30068 2 0 0
## 30069 2 0 0
## 30070 1 0 0
## 30071 1 0 0
## 30072 1 0 0
## 30073 2 0 0
## 30074 1 0 0
## 30075 1 0 0
## 30076 1 0 0
## 30077 2 0 0
## 30078 2 0 0
## 30079 1 0 0
## 30080 2 0 0
## 30081 2 0 0
## 30082 1 0 0
## 30083 1 0 0
## 30084 1 0 0
## 30085 2 0 0
## 30086 2 0 0
## 30087 2 0 0
## 30088 1 0 0
## 30089 2 0 0
## 30090 1 0 0
## 30091 1 0 0
## 30092 1 0 0
## 30093 2 0 0
## 30094 1 0 0
## 30095 2 0 0
## 30096 1 0 0
## 30097 2 0 0
## 30098 2 0 0
## 30099 2 0 0
## 30100 1 0 0
## 30101 2 0 0
## 30102 2 0 0
## 30103 1 0 0
## 30104 2 0 0
## 30105 1 0 0
## 30106 1 0 0
## 30107 2 0 0
## 30108 2 0 0
## 30109 2 0 0
## 30110 2 0 0
## 30111 2 2 0
## 30112 2 0 0
## 30113 1 0 0
## 30114 2 0 0
## 30115 2 0 0
## 30116 2 0 0
## 30117 2 0 0
## 30118 2 0 0
## 30119 2 0 0
## 30120 2 0 0
## 30121 2 0 0
## 30122 2 0 0
## 30123 2 0 0
## 30124 2 0 0
## 30125 2 0 0
## 30126 2 0 0
## 30127 2 0 0
## 30128 2 0 0
## 30129 3 1 0
## 30130 2 0 0
## 30131 2 0 0
## 30132 1 0 0
## 30133 2 0 0
## 30134 2 0 0
## 30135 2 0 0
## 30136 2 0 0
## 30137 2 0 0
## 30138 2 0 0
## 30139 2 0 0
## 30140 2 0 0
## 30141 1 0 0
## 30142 2 0 0
## 30143 2 0 0
## 30144 1 0 0
## 30145 2 0 0
## 30146 2 0 0
## 30147 2 0 0
## 30148 2 0 0
## 30149 2 0 0
## 30150 2 0 0
## 30151 1 0 0
## 30152 1 0 0
## 30153 2 0 0
## 30154 2 1 0
## 30155 2 1 0
## 30156 2 0 0
## 30157 2 0 0
## 30158 2 0 0
## 30159 2 1 0
## 30160 2 1 0
## 30161 2 1 0
## 30162 2 0 0
## 30163 2 0 0
## 30164 2 0 0
## 30165 2 0 0
## 30166 2 0 0
## 30167 2 0 0
## 30168 2 0 0
## 30169 2 0 0
## 30170 2 0 0
## 30171 2 0 0
## 30172 2 0 0
## 30173 2 0 0
## 30174 2 0 0
## 30175 2 0 0
## 30176 1 0 0
## 30177 2 0 0
## 30178 2 0 0
## 30179 2 0 0
## 30180 2 0 0
## 30181 2 0 0
## 30182 2 0 0
## 30183 2 0 0
## 30184 1 0 0
## 30185 2 0 0
## 30186 2 0 0
## 30187 2 0 0
## 30188 2 0 0
## 30189 1 0 0
## 30190 2 0 0
## 30191 2 0 0
## 30192 2 2 0
## 30193 2 0 0
## 30194 3 1 0
## 30195 2 2 0
## 30196 2 0 0
## 30197 1 0 0
## 30198 1 0 0
## 30199 1 0 0
## 30200 1 0 0
## 30201 2 0 0
## 30202 1 0 0
## 30203 2 0 0
## 30204 1 0 0
## 30205 2 0 0
## 30206 1 0 0
## 30207 1 0 0
## 30208 1 0 0
## 30209 1 0 0
## 30210 1 0 0
## 30211 2 0 0
## 30212 2 0 0
## 30213 2 0 0
## 30214 2 0 0
## 30215 2 0 0
## 30216 2 0 0
## 30217 2 0 0
## 30218 2 1 0
## 30219 2 0 0
## 30220 2 0 0
## 30221 2 0 0
## 30222 1 0 0
## 30223 1 0 0
## 30224 1 0 0
## 30225 1 0 0
## 30226 2 0 0
## 30227 1 0 0
## 30228 2 0 0
## 30229 1 0 0
## 30230 2 0 0
## 30231 1 0 0
## 30232 1 0 0
## 30233 2 0 0
## 30234 2 0 0
## 30235 2 0 0
## 30236 2 0 0
## 30237 2 0 0
## 30238 1 0 0
## 30239 2 0 0
## 30240 2 0 0
## 30241 2 0 0
## 30242 2 0 0
## 30243 2 0 0
## 30244 1 0 0
## 30245 1 0 0
## 30246 2 0 0
## 30247 2 0 0
## 30248 2 0 0
## 30249 1 0 0
## 30250 1 0 0
## 30251 1 0 0
## 30252 2 0 0
## 30253 1 0 0
## 30254 2 0 0
## 30255 1 0 0
## 30256 2 0 0
## 30257 2 0 0
## 30258 2 0 0
## 30259 2 0 0
## 30260 1 1 0
## 30261 2 0 0
## 30262 2 0 0
## 30263 2 0 0
## 30264 1 0 0
## 30265 2 0 0
## 30266 2 0 0
## 30267 1 0 0
## 30268 2 0 0
## 30269 2 0 0
## 30270 1 0 0
## 30271 2 0 0
## 30272 1 0 0
## 30273 2 0 0
## 30274 1 0 0
## 30275 2 0 0
## 30276 2 0 0
## 30277 2 0 0
## 30278 2 0 0
## 30279 1 0 0
## 30280 1 0 0
## 30281 2 0 0
## 30282 2 0 0
## 30283 2 0 0
## 30284 2 0 0
## 30285 2 0 0
## 30286 2 0 0
## 30287 2 0 0
## 30288 2 0 0
## 30289 2 0 0
## 30290 2 0 0
## 30291 2 0 0
## 30292 1 0 0
## 30293 2 0 0
## 30294 2 0 0
## 30295 2 0 0
## 30296 2 0 0
## 30297 2 0 0
## 30298 2 0 0
## 30299 2 0 0
## 30300 2 0 0
## 30301 2 0 0
## 30302 2 0 0
## 30303 2 1 0
## 30304 2 0 0
## 30305 2 0 0
## 30306 2 0 0
## 30307 2 0 0
## 30308 2 0 0
## 30309 2 0 0
## 30310 2 0 0
## 30311 2 0 0
## 30312 2 0 0
## 30313 2 0 0
## 30314 1 0 0
## 30315 1 0 0
## 30316 2 2 0
## 30317 2 0 0
## 30318 2 0 0
## 30319 1 0 0
## 30320 1 0 0
## 30321 2 0 0
## 30322 2 0 0
## 30323 1 0 0
## 30324 2 0 0
## 30325 2 0 0
## 30326 2 0 0
## 30327 2 0 0
## 30328 2 0 0
## 30329 2 1 0
## 30330 2 0 0
## 30331 2 0 0
## 30332 3 1 0
## 30333 2 0 0
## 30334 2 0 0
## 30335 2 0 0
## 30336 2 0 0
## 30337 2 0 0
## 30338 2 0 0
## 30339 2 0 0
## 30340 2 0 0
## 30341 2 0 0
## 30342 2 0 0
## 30343 2 0 0
## 30344 2 0 0
## 30345 2 0 0
## 30346 2 0 0
## 30347 2 0 0
## 30348 2 0 0
## 30349 2 0 0
## 30350 2 0 0
## 30351 1 0 0
## 30352 2 0 0
## 30353 3 0 0
## 30354 1 0 0
## 30355 1 0 0
## 30356 2 0 0
## 30357 1 0 0
## 30358 1 0 0
## 30359 1 0 0
## 30360 2 0 0
## 30361 2 0 0
## 30362 2 0 0
## 30363 1 0 0
## 30364 2 0 0
## 30365 1 0 0
## 30366 1 0 0
## 30367 2 0 0
## 30368 2 0 0
## 30369 1 0 0
## 30370 2 0 0
## 30371 2 0 0
## 30372 1 0 0
## 30373 3 0 0
## 30374 1 0 0
## 30375 2 0 0
## 30376 2 0 0
## 30377 2 0 0
## 30378 1 0 0
## 30379 2 0 0
## 30380 2 0 0
## 30381 2 0 0
## 30382 2 0 0
## 30383 2 0 0
## 30384 2 0 0
## 30385 2 2 0
## 30386 2 1 0
## 30387 2 0 0
## 30388 2 0 0
## 30389 2 0 0
## 30390 1 0 0
## 30391 2 0 0
## 30392 2 1 0
## 30393 2 0 0
## 30394 2 0 0
## 30395 2 0 0
## 30396 2 0 0
## 30397 1 0 0
## 30398 2 0 0
## 30399 2 0 0
## 30400 1 0 0
## 30401 2 0 0
## 30402 2 0 0
## 30403 2 0 0
## 30404 2 0 0
## 30405 3 1 0
## 30406 1 0 0
## 30407 2 0 0
## 30408 2 0 0
## 30409 3 1 0
## 30410 2 0 0
## 30411 2 0 0
## 30412 1 0 0
## 30413 2 0 0
## 30414 2 0 0
## 30415 2 0 0
## 30416 2 0 0
## 30417 2 0 0
## 30418 2 0 0
## 30419 2 0 0
## 30420 2 0 0
## 30421 1 0 0
## 30422 1 0 0
## 30423 2 0 0
## 30424 2 0 0
## 30425 2 0 0
## 30426 2 0 0
## 30427 2 0 0
## 30428 2 0 0
## 30429 2 0 0
## 30430 2 0 0
## 30431 2 0 0
## 30432 2 0 0
## 30433 1 0 0
## 30434 1 0 0
## 30435 2 0 0
## 30436 2 0 0
## 30437 2 0 0
## 30438 2 0 0
## 30439 1 0 0
## 30440 2 0 0
## 30441 2 0 0
## 30442 2 0 0
## 30443 2 0 0
## 30444 2 0 0
## 30445 1 0 0
## 30446 2 0 0
## 30447 2 0 0
## 30448 2 0 0
## 30449 1 0 0
## 30450 2 0 0
## 30451 1 0 0
## 30452 2 2 0
## 30453 2 0 0
## 30454 1 0 0
## 30455 1 0 0
## 30456 1 0 0
## 30457 2 0 0
## 30458 2 0 0
## 30459 2 0 0
## 30460 2 0 0
## 30461 1 0 0
## 30462 2 0 0
## 30463 3 0 0
## 30464 2 0 0
## 30465 1 0 0
## 30466 2 0 0
## 30467 3 0 0
## 30468 2 0 0
## 30469 2 0 0
## 30470 2 0 0
## 30471 2 0 0
## 30472 2 0 0
## 30473 2 0 0
## 30474 2 0 0
## 30475 2 0 0
## 30476 2 0 0
## 30477 2 0 0
## 30478 2 0 0
## 30479 2 0 0
## 30480 2 0 0
## 30481 2 0 0
## 30482 2 0 0
## 30483 2 0 0
## 30484 2 0 0
## 30485 2 0 0
## 30486 2 0 0
## 30487 2 0 0
## 30488 2 0 0
## 30489 2 0 0
## 30490 2 0 0
## 30491 2 0 0
## 30492 2 0 0
## 30493 2 0 0
## 30494 2 0 0
## 30495 2 0 0
## 30496 2 0 0
## 30497 2 0 0
## 30498 1 0 0
## 30499 2 0 0
## 30500 2 0 0
## 30501 1 0 0
## 30502 2 0 0
## 30503 2 0 0
## 30504 2 0 0
## 30505 2 0 0
## 30506 2 0 0
## 30507 1 0 0
## 30508 2 0 0
## 30509 2 0 0
## 30510 2 0 0
## 30511 2 0 0
## 30512 2 0 0
## 30513 2 0 0
## 30514 1 0 0
## 30515 2 0 0
## 30516 3 1 0
## 30517 2 0 0
## 30518 2 0 0
## 30519 3 0 0
## 30520 2 0 0
## 30521 2 0 0
## 30522 1 0 0
## 30523 1 0 0
## 30524 1 0 0
## 30525 2 0 0
## 30526 2 0 0
## 30527 2 0 0
## 30528 2 0 0
## 30529 1 0 0
## 30530 2 0 0
## 30531 1 0 0
## 30532 1 0 0
## 30533 2 1 0
## 30534 2 0 0
## 30535 2 0 0
## 30536 2 0 0
## 30537 1 0 0
## 30538 1 0 0
## 30539 1 0 0
## 30540 1 0 0
## 30541 2 0 0
## 30542 2 0 0
## 30543 1 0 0
## 30544 2 1 0
## 30545 2 0 0
## 30546 2 0 0
## 30547 2 0 0
## 30548 2 0 0
## 30549 2 0 0
## 30550 1 0 0
## 30551 2 0 0
## 30552 2 0 0
## 30553 2 0 0
## 30554 1 0 0
## 30555 2 0 0
## 30556 2 0 0
## 30557 2 0 0
## 30558 2 0 0
## 30559 2 2 0
## 30560 2 0 0
## 30561 2 0 0
## 30562 2 0 0
## 30563 2 0 0
## 30564 2 0 0
## 30565 2 0 0
## 30566 1 0 0
## 30567 2 0 0
## 30568 1 0 0
## 30569 2 0 0
## 30570 2 0 0
## 30571 2 0 0
## 30572 2 0 0
## 30573 2 0 0
## 30574 2 0 0
## 30575 2 0 0
## 30576 2 0 0
## 30577 2 0 0
## 30578 2 0 0
## 30579 2 0 0
## 30580 2 0 0
## 30581 2 0 0
## 30582 2 0 0
## 30583 2 0 0
## 30584 2 0 0
## 30585 1 0 0
## 30586 2 0 0
## 30587 2 0 0
## 30588 2 0 0
## 30589 1 0 0
## 30590 1 0 0
## 30591 1 0 0
## 30592 2 0 0
## 30593 2 0 0
## 30594 2 0 0
## 30595 2 0 0
## 30596 2 0 0
## 30597 2 0 0
## 30598 2 0 0
## 30599 2 0 0
## 30600 2 0 0
## 30601 1 0 0
## 30602 1 0 0
## 30603 2 0 0
## 30604 2 0 0
## 30605 2 0 0
## 30606 2 0 0
## 30607 3 1 0
## 30608 2 0 0
## 30609 2 0 0
## 30610 1 0 0
## 30611 2 0 0
## 30612 2 0 0
## 30613 2 0 0
## 30614 2 0 0
## 30615 2 0 0
## 30616 2 0 0
## 30617 3 0 0
## 30618 2 0 0
## 30619 2 0 0
## 30620 2 0 0
## 30621 2 0 0
## 30622 2 0 0
## 30623 2 0 0
## 30624 2 0 0
## 30625 2 1 0
## 30626 2 0 0
## 30627 2 0 0
## 30628 2 0 0
## 30629 3 0 0
## 30630 2 0 0
## 30631 2 0 0
## 30632 2 0 0
## 30633 2 0 0
## 30634 2 0 0
## 30635 2 0 0
## 30636 2 0 0
## 30637 2 0 0
## 30638 1 0 0
## 30639 2 0 0
## 30640 2 0 0
## 30641 1 0 0
## 30642 2 0 0
## 30643 2 0 0
## 30644 2 0 0
## 30645 2 0 0
## 30646 1 0 0
## 30647 1 0 0
## 30648 2 0 0
## 30649 2 0 0
## 30650 1 0 0
## 30651 1 0 0
## 30652 1 0 0
## 30653 2 0 0
## 30654 1 0 0
## 30655 1 0 0
## 30656 1 0 0
## 30657 2 0 0
## 30658 2 0 0
## 30659 2 0 0
## 30660 2 0 0
## 30661 2 0 0
## 30662 2 0 0
## 30663 2 0 0
## 30664 2 0 0
## 30665 1 0 0
## 30666 2 0 0
## 30667 2 0 0
## 30668 2 0 0
## 30669 2 0 0
## 30670 1 0 0
## 30671 1 0 0
## 30672 2 0 0
## 30673 1 0 0
## 30674 1 0 0
## 30675 1 0 0
## 30676 2 0 0
## 30677 1 0 0
## 30678 1 0 0
## 30679 1 0 0
## 30680 1 0 0
## 30681 1 0 0
## 30682 2 0 0
## 30683 2 0 0
## 30684 2 0 0
## 30685 2 2 0
## 30686 1 0 0
## 30687 2 0 0
## 30688 2 0 0
## 30689 2 0 0
## 30690 2 0 0
## 30691 1 0 0
## 30692 1 0 0
## 30693 2 0 0
## 30694 1 0 0
## 30695 1 0 0
## 30696 1 0 0
## 30697 1 0 0
## 30698 1 0 0
## 30699 1 0 0
## 30700 1 0 0
## 30701 1 0 0
## 30702 1 0 0
## 30703 2 0 0
## 30704 1 0 0
## 30705 1 0 0
## 30706 1 0 0
## 30707 1 0 0
## 30708 1 0 0
## 30709 1 0 0
## 30710 1 0 0
## 30711 1 0 0
## 30712 1 0 0
## 30713 1 0 0
## 30714 1 0 0
## 30715 2 0 0
## 30716 2 0 0
## 30717 2 0 0
## 30718 1 0 0
## 30719 2 0 0
## 30720 2 0 0
## 30721 2 0 0
## 30722 2 0 0
## 30723 2 0 0
## 30724 2 0 0
## 30725 2 0 0
## 30726 1 0 0
## 30727 1 0 0
## 30728 2 0 0
## 30729 1 0 0
## 30730 2 0 0
## 30731 1 0 0
## 30732 1 0 0
## 30733 2 0 0
## 30734 2 0 0
## 30735 3 1 0
## 30736 1 0 0
## 30737 2 0 0
## 30738 1 0 0
## 30739 2 0 0
## 30740 1 0 0
## 30741 2 0 0
## 30742 1 0 0
## 30743 1 0 0
## 30744 2 0 0
## 30745 1 0 0
## 30746 2 0 0
## 30747 2 0 0
## 30748 1 0 0
## 30749 1 0 0
## 30750 2 0 0
## 30751 1 0 0
## 30752 2 0 0
## 30753 2 0 0
## 30754 2 0 0
## 30755 1 0 0
## 30756 2 0 0
## 30757 2 0 0
## 30758 2 0 0
## 30759 2 0 0
## 30760 2 0 0
## 30761 1 0 0
## 30762 1 0 0
## 30763 2 0 0
## 30764 2 0 0
## 30765 2 0 0
## 30766 2 0 0
## 30767 2 0 0
## 30768 1 0 0
## 30769 2 0 0
## 30770 1 0 0
## 30771 1 0 0
## 30772 1 0 0
## 30773 1 0 0
## 30774 2 0 0
## 30775 2 0 0
## 30776 2 0 0
## 30777 2 0 0
## 30778 2 0 0
## 30779 1 0 0
## 30780 2 1 0
## 30781 2 1 0
## 30782 2 0 0
## 30783 1 0 0
## 30784 2 0 0
## 30785 2 0 0
## 30786 2 0 0
## 30787 2 0 0
## 30788 2 0 0
## 30789 2 0 0
## 30790 1 0 0
## 30791 2 1 0
## 30792 2 0 0
## 30793 2 0 0
## 30794 2 0 0
## 30795 2 0 0
## 30796 2 0 0
## 30797 2 0 0
## 30798 2 0 0
## 30799 2 0 0
## 30800 2 0 0
## 30801 2 0 0
## 30802 2 0 0
## 30803 2 0 0
## 30804 2 0 0
## 30805 2 0 0
## 30806 2 0 0
## 30807 2 0 0
## 30808 2 0 0
## 30809 2 0 0
## 30810 2 0 0
## 30811 2 0 0
## 30812 2 0 0
## 30813 2 0 0
## 30814 2 0 0
## 30815 2 1 0
## 30816 2 0 0
## 30817 2 0 0
## 30818 2 0 0
## 30819 2 3 0
## 30820 1 0 0
## 30821 2 0 0
## 30822 1 0 0
## 30823 2 0 0
## 30824 1 0 0
## 30825 2 0 0
## 30826 2 0 0
## 30827 1 0 0
## 30828 1 0 0
## 30829 1 0 0
## 30830 2 0 0
## 30831 2 0 0
## 30832 1 0 0
## 30833 1 0 0
## 30834 1 0 0
## 30835 3 0 0
## 30836 2 2 0
## 30837 2 0 0
## 30838 2 0 0
## 30839 3 1 0
## 30840 1 0 0
## 30841 2 0 0
## 30842 2 0 0
## 30843 2 0 0
## 30844 2 0 0
## 30845 1 0 0
## 30846 1 0 0
## 30847 2 0 0
## 30848 1 0 0
## 30849 1 0 0
## 30850 1 0 0
## 30851 2 2 0
## 30852 1 0 0
## 30853 1 0 0
## 30854 1 0 0
## 30855 1 0 0
## 30856 2 0 0
## 30857 1 0 0
## 30858 2 0 0
## 30859 2 0 0
## 30860 1 0 0
## 30861 2 0 0
## 30862 1 0 0
## 30863 1 0 0
## 30864 2 0 0
## 30865 2 0 0
## 30866 2 0 0
## 30867 2 0 0
## 30868 2 0 0
## 30869 2 0 0
## 30870 2 0 0
## 30871 1 0 0
## 30872 1 0 0
## 30873 1 0 0
## 30874 2 0 0
## 30875 2 0 0
## 30876 1 0 0
## 30877 1 0 0
## 30878 1 0 0
## 30879 1 0 0
## 30880 3 1 0
## 30881 2 0 0
## 30882 2 0 0
## 30883 2 0 0
## 30884 2 0 0
## 30885 2 0 0
## 30886 2 0 0
## 30887 2 0 0
## 30888 1 0 0
## 30889 1 0 0
## 30890 1 0 0
## 30891 2 0 0
## 30892 2 0 0
## 30893 1 0 0
## 30894 1 0 0
## 30895 1 0 0
## 30896 1 0 0
## 30897 2 0 0
## 30898 2 0 0
## 30899 1 0 0
## 30900 2 0 0
## 30901 2 0 0
## 30902 2 0 0
## 30903 2 0 0
## 30904 2 0 0
## 30905 2 0 0
## 30906 2 0 0
## 30907 3 0 0
## 30908 1 0 0
## 30909 1 0 0
## 30910 2 0 0
## 30911 1 0 0
## 30912 1 0 0
## 30913 1 0 0
## 30914 2 1 0
## 30915 2 0 0
## 30916 2 0 0
## 30917 2 1 0
## 30918 2 0 0
## 30919 2 1 0
## 30920 2 0 0
## 30921 2 0 0
## 30922 2 0 0
## 30923 2 0 0
## 30924 1 0 0
## 30925 2 0 0
## 30926 2 2 0
## 30927 2 0 0
## 30928 1 0 0
## 30929 2 0 0
## 30930 2 2 0
## 30931 2 0 0
## 30932 2 0 0
## 30933 2 0 0
## 30934 2 0 0
## 30935 2 0 0
## 30936 2 0 0
## 30937 2 0 0
## 30938 2 1 0
## 30939 2 0 0
## 30940 2 0 0
## 30941 1 0 0
## 30942 2 0 0
## 30943 2 0 0
## 30944 2 0 0
## 30945 2 0 0
## 30946 2 0 0
## 30947 2 0 0
## 30948 1 0 0
## 30949 1 0 0
## 30950 2 0 0
## 30951 2 0 0
## 30952 2 0 0
## 30953 2 0 0
## 30954 2 0 0
## 30955 2 0 0
## 30956 2 0 0
## 30957 1 0 0
## 30958 2 0 0
## 30959 2 0 0
## 30960 2 0 0
## 30961 2 2 0
## 30962 2 0 0
## 30963 2 0 0
## 30964 1 0 0
## 30965 1 0 0
## 30966 2 0 0
## 30967 1 0 0
## 30968 2 0 0
## 30969 2 0 0
## 30970 2 0 0
## 30971 2 0 0
## 30972 2 0 0
## 30973 1 0 0
## 30974 2 0 0
## 30975 1 0 0
## 30976 1 0 0
## 30977 2 0 0
## 30978 3 1 0
## 30979 2 0 0
## 30980 2 0 0
## 30981 2 0 0
## 30982 2 0 0
## 30983 2 0 0
## 30984 2 1 0
## 30985 2 0 0
## 30986 2 0 0
## 30987 2 0 0
## 30988 2 0 0
## 30989 1 0 0
## 30990 2 0 0
## 30991 1 0 0
## 30992 2 0 0
## 30993 2 0 0
## 30994 2 0 0
## 30995 2 0 0
## 30996 2 2 0
## 30997 2 0 0
## 30998 2 0 0
## 30999 2 0 0
## 31000 1 0 0
## 31001 2 0 0
## 31002 2 1 0
## 31003 3 0 0
## 31004 2 0 0
## 31005 2 0 0
## 31006 2 0 0
## 31007 2 2 0
## 31008 2 0 0
## 31009 3 0 0
## 31010 1 0 0
## 31011 2 0 0
## 31012 2 0 0
## 31013 2 0 0
## 31014 2 0 0
## 31015 2 0 0
## 31016 2 0 0
## 31017 2 0 0
## 31018 1 0 0
## 31019 2 0 0
## 31020 2 0 0
## 31021 2 0 0
## 31022 2 0 0
## 31023 2 0 0
## 31024 2 0 0
## 31025 1 0 0
## 31026 2 1 0
## 31027 2 2 0
## 31028 2 0 0
## 31029 2 0 0
## 31030 1 0 0
## 31031 1 0 0
## 31032 2 0 0
## 31033 2 0 0
## 31034 2 0 0
## 31035 1 0 0
## 31036 2 0 0
## 31037 2 0 0
## 31038 2 0 0
## 31039 1 0 0
## 31040 1 0 0
## 31041 2 0 0
## 31042 2 0 0
## 31043 1 0 0
## 31044 2 0 0
## 31045 2 0 0
## 31046 1 0 0
## 31047 1 0 0
## 31048 2 0 0
## 31049 2 0 0
## 31050 1 0 0
## 31051 1 0 0
## 31052 1 0 0
## 31053 2 0 0
## 31054 2 0 0
## 31055 1 2 0
## 31056 2 0 0
## 31057 1 0 0
## 31058 2 0 0
## 31059 2 0 0
## 31060 2 0 0
## 31061 2 1 0
## 31062 2 0 0
## 31063 2 0 0
## 31064 2 0 0
## 31065 2 0 0
## 31066 2 0 0
## 31067 2 0 0
## 31068 1 0 0
## 31069 2 1 0
## 31070 2 0 0
## 31071 2 0 0
## 31072 2 0 0
## 31073 2 0 0
## 31074 1 0 0
## 31075 2 0 0
## 31076 2 0 0
## 31077 2 0 0
## 31078 2 0 0
## 31079 1 0 0
## 31080 2 0 0
## 31081 2 2 0
## 31082 2 0 0
## 31083 1 0 0
## 31084 1 0 0
## 31085 1 0 0
## 31086 2 1 0
## 31087 1 0 0
## 31088 2 0 0
## 31089 2 0 0
## 31090 2 0 0
## 31091 2 0 0
## 31092 2 2 0
## 31093 2 2 0
## 31094 2 0 0
## 31095 2 0 0
## 31096 2 0 0
## 31097 2 0 0
## 31098 2 0 0
## 31099 2 0 0
## 31100 2 0 0
## 31101 2 2 0
## 31102 2 2 0
## 31103 2 0 0
## 31104 2 0 0
## 31105 3 1 0
## 31106 2 0 0
## 31107 2 0 0
## 31108 2 0 0
## 31109 2 0 0
## 31110 2 0 0
## 31111 1 0 0
## 31112 2 0 0
## 31113 1 0 0
## 31114 1 0 0
## 31115 2 0 0
## 31116 1 0 0
## 31117 1 0 0
## 31118 2 0 0
## 31119 2 1 0
## 31120 2 0 0
## 31121 2 0 0
## 31122 1 0 0
## 31123 2 0 0
## 31124 2 0 0
## 31125 2 0 0
## 31126 2 0 0
## 31127 2 0 0
## 31128 2 0 0
## 31129 2 0 0
## 31130 2 0 0
## 31131 2 0 0
## 31132 2 0 0
## 31133 2 0 0
## 31134 2 0 0
## 31135 2 0 0
## 31136 2 0 0
## 31137 2 1 0
## 31138 2 0 0
## 31139 2 0 0
## 31140 2 0 0
## 31141 2 0 0
## 31142 2 0 0
## 31143 2 0 0
## 31144 2 0 0
## 31145 2 0 0
## 31146 2 0 0
## 31147 2 0 0
## 31148 2 0 0
## 31149 2 0 0
## 31150 2 0 0
## 31151 2 0 0
## 31152 2 0 0
## 31153 2 1 0
## 31154 2 0 0
## 31155 2 2 0
## 31156 2 0 0
## 31157 3 1 0
## 31158 2 0 0
## 31159 2 1 0
## 31160 2 0 0
## 31161 2 0 0
## 31162 2 2 0
## 31163 2 0 0
## 31164 2 0 0
## 31165 2 0 0
## 31166 2 0 0
## 31167 2 0 0
## 31168 2 0 0
## 31169 2 0 0
## 31170 2 0 0
## 31171 2 0 0
## 31172 2 0 0
## 31173 2 0 0
## 31174 2 1 0
## 31175 2 0 0
## 31176 2 0 0
## 31177 2 0 0
## 31178 2 0 0
## 31179 1 0 0
## 31180 2 0 0
## 31181 3 1 0
## 31182 2 0 0
## 31183 2 0 0
## 31184 1 0 0
## 31185 2 0 0
## 31186 2 0 0
## 31187 2 0 0
## 31188 2 0 0
## 31189 2 0 0
## 31190 2 0 0
## 31191 2 0 0
## 31192 2 0 0
## 31193 2 0 0
## 31194 1 0 0
## 31195 1 0 0
## 31196 1 0 0
## 31197 2 0 0
## 31198 2 0 0
## 31199 1 0 0
## 31200 1 0 0
## 31201 1 0 0
## 31202 2 0 0
## 31203 1 0 0
## 31204 2 0 0
## 31205 2 0 0
## 31206 1 0 0
## 31207 2 0 0
## 31208 1 1 0
## 31209 2 0 0
## 31210 1 0 0
## 31211 2 0 0
## 31212 2 0 0
## 31213 2 0 0
## 31214 2 1 0
## 31215 2 0 0
## 31216 2 0 0
## 31217 2 1 0
## 31218 3 0 0
## 31219 2 0 0
## 31220 2 0 0
## 31221 2 0 0
## 31222 2 0 0
## 31223 2 0 0
## 31224 2 0 0
## 31225 2 0 0
## 31226 2 0 0
## 31227 2 0 0
## 31228 2 0 0
## 31229 2 0 0
## 31230 2 0 0
## 31231 2 0 0
## 31232 2 1 0
## 31233 2 0 0
## 31234 2 0 0
## 31235 2 0 0
## 31236 2 0 0
## 31237 2 0 0
## 31238 2 0 0
## 31239 2 0 0
## 31240 2 0 0
## 31241 2 0 0
## 31242 1 0 0
## 31243 2 0 0
## 31244 1 0 0
## 31245 2 0 0
## 31246 3 1 0
## 31247 2 0 0
## 31248 2 0 0
## 31249 1 1 0
## 31250 1 1 0
## 31251 2 0 0
## 31252 2 0 0
## 31253 2 0 0
## 31254 2 0 0
## 31255 2 0 0
## 31256 2 0 0
## 31257 2 0 0
## 31258 2 0 0
## 31259 2 0 0
## 31260 2 0 0
## 31261 2 0 0
## 31262 2 0 0
## 31263 1 0 0
## 31264 1 0 0
## 31265 2 0 0
## 31266 2 0 0
## 31267 1 0 0
## 31268 2 0 0
## 31269 2 0 0
## 31270 1 0 0
## 31271 1 0 0
## 31272 1 0 0
## 31273 1 0 0
## 31274 1 0 0
## 31275 1 0 0
## 31276 2 0 0
## 31277 2 0 0
## 31278 2 0 0
## 31279 2 0 0
## 31280 2 0 0
## 31281 2 0 0
## 31282 2 0 0
## 31283 2 0 0
## 31284 1 0 0
## 31285 2 0 0
## 31286 2 0 0
## 31287 2 0 0
## 31288 1 0 0
## 31289 2 0 0
## 31290 2 0 0
## 31291 2 0 0
## 31292 2 0 0
## 31293 2 0 0
## 31294 3 1 0
## 31295 2 0 0
## 31296 2 0 0
## 31297 2 0 0
## 31298 2 0 0
## 31299 2 0 0
## 31300 2 0 0
## 31301 2 0 0
## 31302 2 0 0
## 31303 2 0 0
## 31304 2 0 0
## 31305 2 0 0
## 31306 2 0 0
## 31307 1 0 0
## 31308 1 0 0
## 31309 2 0 0
## 31310 2 0 0
## 31311 2 0 0
## 31312 2 0 0
## 31313 2 0 0
## 31314 2 0 0
## 31315 2 0 0
## 31316 2 0 0
## 31317 2 0 0
## 31318 2 1 0
## 31319 1 0 0
## 31320 2 0 0
## 31321 2 0 0
## 31322 2 0 0
## 31323 2 0 0
## 31324 2 0 0
## 31325 2 0 0
## 31326 2 0 0
## 31327 2 0 0
## 31328 2 0 0
## 31329 2 0 0
## 31330 2 0 0
## 31331 1 0 0
## 31332 2 0 0
## 31333 2 0 0
## 31334 2 0 0
## 31335 1 0 0
## 31336 1 0 0
## 31337 1 0 0
## 31338 1 0 0
## 31339 2 0 0
## 31340 1 0 0
## 31341 1 0 0
## 31342 2 0 0
## 31343 1 0 0
## 31344 1 0 0
## 31345 2 0 0
## 31346 1 0 0
## 31347 2 0 0
## 31348 2 0 0
## 31349 2 0 0
## 31350 0 0 0
## 31351 2 0 0
## 31352 3 0 0
## 31353 3 0 0
## 31354 2 1 0
## 31355 2 1 0
## 31356 2 0 0
## 31357 1 0 0
## 31358 2 0 0
## 31359 2 0 0
## 31360 2 0 0
## 31361 2 0 0
## 31362 2 0 0
## 31363 2 0 0
## 31364 2 0 0
## 31365 2 0 0
## 31366 2 0 0
## 31367 1 0 0
## 31368 2 0 0
## 31369 1 0 0
## 31370 2 0 0
## 31371 1 0 0
## 31372 1 0 0
## 31373 1 0 0
## 31374 1 0 0
## 31375 2 0 0
## 31376 2 0 0
## 31377 2 0 0
## 31378 2 0 0
## 31379 2 0 0
## 31380 2 0 0
## 31381 2 2 0
## 31382 2 1 0
## 31383 2 0 0
## 31384 2 0 0
## 31385 2 0 0
## 31386 2 0 0
## 31387 1 0 0
## 31388 2 0 0
## 31389 2 0 0
## 31390 2 0 0
## 31391 2 2 0
## 31392 2 0 0
## 31393 2 0 0
## 31394 2 0 0
## 31395 2 0 0
## 31396 2 0 0
## 31397 2 0 0
## 31398 2 0 0
## 31399 2 0 0
## 31400 1 0 0
## 31401 2 0 0
## 31402 2 0 0
## 31403 2 0 0
## 31404 2 0 0
## 31405 2 0 0
## 31406 2 0 0
## 31407 2 0 0
## 31408 2 2 0
## 31409 2 0 0
## 31410 1 0 0
## 31411 2 0 0
## 31412 3 0 0
## 31413 2 0 0
## 31414 2 2 0
## 31415 2 0 0
## 31416 2 0 0
## 31417 2 0 0
## 31418 2 1 0
## 31419 2 1 0
## 31420 2 0 0
## 31421 2 0 0
## 31422 1 0 0
## 31423 2 0 0
## 31424 2 0 0
## 31425 2 0 0
## 31426 2 0 0
## 31427 2 0 0
## 31428 2 0 0
## 31429 2 0 0
## 31430 2 0 0
## 31431 2 0 0
## 31432 2 0 0
## 31433 2 0 0
## 31434 2 0 0
## 31435 1 0 0
## 31436 2 0 0
## 31437 2 1 0
## 31438 3 0 0
## 31439 2 0 0
## 31440 2 0 0
## 31441 2 0 0
## 31442 2 0 0
## 31443 2 2 0
## 31444 2 0 0
## 31445 2 0 0
## 31446 2 0 0
## 31447 2 0 0
## 31448 2 0 0
## 31449 1 0 0
## 31450 1 0 0
## 31451 2 0 0
## 31452 2 0 0
## 31453 2 0 0
## 31454 2 0 0
## 31455 2 0 0
## 31456 2 2 0
## 31457 2 0 0
## 31458 2 0 0
## 31459 1 0 0
## 31460 2 0 0
## 31461 1 0 0
## 31462 2 0 0
## 31463 2 0 0
## 31464 2 0 0
## 31465 1 0 0
## 31466 2 0 0
## 31467 2 0 0
## 31468 2 0 0
## 31469 1 0 0
## 31470 2 0 0
## 31471 1 0 0
## 31472 2 0 0
## 31473 2 0 0
## 31474 2 0 0
## 31475 2 0 0
## 31476 2 0 0
## 31477 2 0 0
## 31478 2 0 0
## 31479 2 0 0
## 31480 2 0 0
## 31481 2 0 0
## 31482 1 0 0
## 31483 1 0 0
## 31484 1 0 0
## 31485 2 0 0
## 31486 2 0 0
## 31487 2 0 0
## 31488 2 0 0
## 31489 2 0 0
## 31490 1 0 0
## 31491 1 0 0
## 31492 1 0 0
## 31493 2 0 0
## 31494 2 0 0
## 31495 2 0 0
## 31496 2 0 0
## 31497 2 0 0
## 31498 2 0 0
## 31499 2 0 0
## 31500 1 0 0
## 31501 1 0 0
## 31502 2 0 0
## 31503 2 0 0
## 31504 1 0 0
## 31505 1 0 0
## 31506 1 0 0
## 31507 1 0 0
## 31508 1 0 0
## 31509 1 0 0
## 31510 1 0 0
## 31511 2 0 0
## 31512 2 0 0
## 31513 1 0 0
## 31514 2 0 0
## 31515 2 0 0
## 31516 2 0 0
## 31517 1 0 0
## 31518 1 0 0
## 31519 2 0 0
## 31520 2 0 0
## 31521 2 0 0
## 31522 1 0 0
## 31523 1 0 0
## 31524 1 0 0
## 31525 2 0 0
## 31526 1 0 0
## 31527 1 0 0
## 31528 1 0 0
## 31529 2 0 0
## 31530 1 0 0
## 31531 2 0 0
## 31532 1 0 0
## 31533 1 0 0
## 31534 1 0 0
## 31535 2 0 0
## 31536 1 0 0
## 31537 1 0 0
## 31538 2 0 0
## 31539 2 0 0
## 31540 2 0 0
## 31541 2 0 0
## 31542 2 0 0
## 31543 2 0 0
## 31544 2 0 0
## 31545 2 0 0
## 31546 2 0 0
## 31547 2 0 0
## 31548 2 0 0
## 31549 2 0 0
## 31550 2 0 0
## 31551 2 0 0
## 31552 2 0 0
## 31553 1 0 0
## 31554 2 0 0
## 31555 2 0 0
## 31556 1 0 0
## 31557 1 0 0
## 31558 2 0 0
## 31559 1 0 0
## 31560 2 0 0
## 31561 2 0 0
## 31562 1 0 0
## 31563 2 0 0
## 31564 2 0 0
## 31565 2 0 0
## 31566 2 0 0
## 31567 2 0 0
## 31568 2 0 0
## 31569 2 0 0
## 31570 2 0 0
## 31571 2 0 0
## 31572 1 0 0
## 31573 2 0 0
## 31574 1 0 0
## 31575 1 0 0
## 31576 2 0 0
## 31577 2 0 0
## 31578 2 0 0
## 31579 2 0 0
## 31580 1 0 0
## 31581 2 0 0
## 31582 2 0 0
## 31583 2 0 0
## 31584 1 0 0
## 31585 2 2 0
## 31586 2 2 0
## 31587 2 0 0
## 31588 2 0 0
## 31589 2 0 0
## 31590 2 0 0
## 31591 2 0 0
## 31592 1 0 0
## 31593 1 0 0
## 31594 2 0 0
## 31595 2 0 0
## 31596 1 0 0
## 31597 1 0 0
## 31598 1 0 0
## 31599 1 0 0
## 31600 2 0 0
## 31601 1 0 0
## 31602 1 0 0
## 31603 2 0 0
## 31604 1 0 0
## 31605 2 0 0
## 31606 2 0 0
## 31607 2 0 0
## 31608 2 0 0
## 31609 2 0 0
## 31610 2 0 0
## 31611 2 0 0
## 31612 0 0 0
## 31613 2 0 0
## 31614 2 0 0
## 31615 1 0 0
## 31616 1 0 0
## 31617 1 0 0
## 31618 2 0 0
## 31619 2 0 0
## 31620 2 0 0
## 31621 2 0 0
## 31622 2 0 0
## 31623 2 0 0
## 31624 2 0 0
## 31625 2 0 0
## 31626 2 0 0
## 31627 2 0 0
## 31628 2 0 0
## 31629 2 0 0
## 31630 2 0 0
## 31631 2 0 0
## 31632 2 0 0
## 31633 2 0 0
## 31634 2 0 0
## 31635 1 0 0
## 31636 2 0 0
## 31637 2 0 0
## 31638 2 0 0
## 31639 2 0 0
## 31640 2 0 0
## 31641 2 0 0
## 31642 1 0 0
## 31643 1 0 0
## 31644 2 0 0
## 31645 2 0 0
## 31646 2 0 0
## 31647 2 0 0
## 31648 2 0 0
## 31649 2 1 0
## 31650 2 0 0
## 31651 1 0 0
## 31652 1 0 0
## 31653 1 0 0
## 31654 2 0 0
## 31655 2 0 0
## 31656 2 0 0
## 31657 2 0 0
## 31658 2 0 0
## 31659 2 0 0
## 31660 2 0 0
## 31661 2 0 0
## 31662 2 0 0
## 31663 2 0 0
## 31664 2 0 0
## 31665 2 0 0
## 31666 2 0 0
## 31667 2 0 0
## 31668 2 0 0
## 31669 2 0 0
## 31670 2 0 0
## 31671 2 0 0
## 31672 2 0 0
## 31673 1 0 0
## 31674 1 0 0
## 31675 1 0 0
## 31676 2 0 0
## 31677 2 0 0
## 31678 1 0 0
## 31679 2 0 0
## 31680 2 0 0
## 31681 2 0 0
## 31682 1 0 0
## 31683 2 0 0
## 31684 1 0 0
## 31685 2 0 0
## 31686 2 0 0
## 31687 2 0 0
## 31688 1 1 0
## 31689 2 0 0
## 31690 1 0 0
## 31691 1 0 0
## 31692 2 0 0
## 31693 1 0 0
## 31694 1 0 0
## 31695 1 0 0
## 31696 1 0 0
## 31697 1 0 0
## 31698 1 0 0
## 31699 1 0 0
## 31700 1 0 0
## 31701 1 0 0
## 31702 1 0 0
## 31703 1 0 0
## 31704 1 0 0
## 31705 1 0 0
## 31706 2 0 0
## 31707 1 0 0
## 31708 1 0 0
## 31709 2 0 0
## 31710 1 0 0
## 31711 1 0 0
## 31712 1 0 0
## 31713 1 0 0
## 31714 1 0 0
## 31715 2 0 0
## 31716 2 0 0
## 31717 2 0 0
## 31718 1 0 0
## 31719 1 0 0
## 31720 2 0 0
## 31721 1 0 0
## 31722 2 0 0
## 31723 1 0 0
## 31724 1 0 0
## 31725 1 0 0
## 31726 1 0 0
## 31727 1 0 0
## 31728 1 0 0
## 31729 1 0 0
## 31730 1 0 0
## 31731 2 0 0
## 31732 1 0 0
## 31733 2 0 0
## 31734 1 0 0
## 31735 1 0 0
## 31736 1 0 0
## 31737 1 0 0
## 31738 1 0 0
## 31739 1 0 0
## 31740 1 0 0
## 31741 1 0 0
## 31742 1 0 0
## 31743 1 0 0
## 31744 1 0 0
## 31745 2 0 0
## 31746 2 0 0
## 31747 1 0 0
## 31748 1 0 0
## 31749 1 0 0
## 31750 2 0 0
## 31751 2 0 0
## 31752 2 0 0
## 31753 1 0 0
## 31754 1 0 0
## 31755 2 0 0
## 31756 1 0 0
## 31757 1 0 0
## 31758 1 0 0
## 31759 1 0 0
## 31760 1 0 0
## 31761 1 0 0
## 31762 1 0 0
## 31763 1 0 0
## 31764 1 0 0
## 31765 1 0 0
## 31766 1 0 0
## 31767 1 0 0
## 31768 1 0 0
## 31769 1 0 0
## 31770 1 0 0
## 31771 1 0 0
## 31772 1 0 0
## 31773 1 0 0
## 31774 1 0 0
## 31775 1 0 0
## 31776 1 0 0
## 31777 1 0 0
## 31778 1 0 0
## 31779 1 0 0
## 31780 1 0 0
## 31781 1 0 0
## 31782 1 0 0
## 31783 1 0 0
## 31784 1 0 0
## 31785 1 0 0
## 31786 1 0 0
## 31787 1 0 0
## 31788 1 0 0
## 31789 1 0 0
## 31790 1 0 0
## 31791 1 0 0
## 31792 1 0 0
## 31793 1 0 0
## 31794 1 0 0
## 31795 1 0 0
## 31796 1 0 0
## 31797 1 0 0
## 31798 1 0 0
## 31799 1 0 0
## 31800 1 0 0
## 31801 1 0 0
## 31802 1 0 0
## 31803 1 0 0
## 31804 1 0 0
## 31805 1 0 0
## 31806 1 0 0
## 31807 1 0 0
## 31808 1 0 0
## 31809 1 0 0
## 31810 1 0 0
## 31811 1 0 0
## 31812 1 0 0
## 31813 1 0 0
## 31814 1 0 0
## 31815 1 0 0
## 31816 1 0 0
## 31817 1 0 0
## 31818 1 0 0
## 31819 1 0 0
## 31820 1 0 0
## 31821 1 0 0
## 31822 1 0 0
## 31823 1 0 0
## 31824 1 0 0
## 31825 1 0 0
## 31826 1 0 0
## 31827 1 0 0
## 31828 1 0 0
## 31829 1 0 0
## 31830 1 0 0
## 31831 1 0 0
## 31832 1 0 0
## 31833 2 0 0
## 31834 2 0 0
## 31835 1 0 0
## 31836 1 0 0
## 31837 1 0 0
## 31838 1 0 0
## 31839 2 0 0
## 31840 2 0 0
## 31841 1 0 0
## 31842 1 0 0
## 31843 1 0 0
## 31844 2 0 0
## 31845 1 0 0
## 31846 2 0 0
## 31847 2 0 0
## 31848 2 0 0
## 31849 2 0 0
## 31850 2 0 0
## 31851 2 0 0
## 31852 2 0 0
## 31853 2 0 0
## 31854 2 0 0
## 31855 2 0 0
## 31856 2 0 0
## 31857 2 0 0
## 31858 2 0 0
## 31859 2 0 0
## 31860 2 0 0
## 31861 2 0 0
## 31862 2 0 0
## 31863 2 0 0
## 31864 2 0 0
## 31865 2 0 0
## 31866 1 0 0
## 31867 2 0 0
## 31868 2 0 0
## 31869 3 0 0
## 31870 2 2 0
## 31871 3 1 0
## 31872 1 0 0
## 31873 1 0 0
## 31874 1 0 0
## 31875 1 0 0
## 31876 2 0 0
## 31877 2 0 0
## 31878 1 0 0
## 31879 1 0 0
## 31880 1 0 0
## 31881 2 0 0
## 31882 2 0 0
## 31883 2 0 0
## 31884 2 0 0
## 31885 2 0 0
## 31886 2 0 0
## 31887 2 0 0
## 31888 2 0 0
## 31889 2 0 0
## 31890 2 0 0
## 31891 2 0 0
## 31892 2 0 0
## 31893 2 0 0
## 31894 2 1 0
## 31895 2 0 0
## 31896 2 1 0
## 31897 2 0 0
## 31898 2 0 0
## 31899 2 0 0
## 31900 2 0 0
## 31901 2 0 0
## 31902 2 0 0
## 31903 2 0 0
## 31904 1 0 0
## 31905 2 0 0
## 31906 2 0 0
## 31907 2 0 0
## 31908 2 0 0
## 31909 2 0 0
## 31910 2 0 0
## 31911 2 2 0
## 31912 2 1 0
## 31913 2 1 0
## 31914 2 0 0
## 31915 2 0 0
## 31916 2 0 0
## 31917 2 0 0
## 31918 2 0 0
## 31919 2 0 0
## 31920 2 0 0
## 31921 1 0 0
## 31922 2 0 0
## 31923 2 0 0
## 31924 2 0 0
## 31925 2 0 0
## 31926 2 0 0
## 31927 1 0 0
## 31928 1 0 0
## 31929 1 0 0
## 31930 2 0 0
## 31931 1 0 0
## 31932 1 0 0
## 31933 3 0 0
## 31934 1 0 0
## 31935 1 0 0
## 31936 2 0 0
## 31937 2 0 0
## 31938 2 0 0
## 31939 1 0 0
## 31940 2 0 0
## 31941 2 0 0
## 31942 1 0 0
## 31943 1 0 0
## 31944 1 0 0
## 31945 1 0 0
## 31946 1 0 0
## 31947 2 0 0
## 31948 2 0 0
## 31949 2 0 0
## 31950 2 2 0
## 31951 2 0 0
## 31952 3 0 0
## 31953 2 0 0
## 31954 2 0 0
## 31955 1 0 0
## 31956 2 1 0
## 31957 1 0 0
## 31958 2 0 0
## 31959 2 2 0
## 31960 1 0 0
## 31961 1 0 0
## 31962 2 0 0
## 31963 2 0 0
## 31964 1 0 0
## 31965 2 0 0
## 31966 2 0 0
## 31967 2 0 0
## 31968 1 0 0
## 31969 2 0 0
## 31970 2 0 0
## 31971 2 0 0
## 31972 2 0 0
## 31973 2 0 0
## 31974 2 0 0
## 31975 1 0 0
## 31976 1 0 0
## 31977 1 0 0
## 31978 2 0 0
## 31979 1 0 0
## 31980 1 0 0
## 31981 1 0 0
## 31982 1 0 0
## 31983 1 0 0
## 31984 1 0 0
## 31985 1 0 0
## 31986 1 0 0
## 31987 1 0 0
## 31988 1 0 0
## 31989 2 0 0
## 31990 2 0 0
## 31991 2 1 0
## 31992 2 0 0
## 31993 2 0 0
## 31994 2 0 0
## 31995 2 0 0
## 31996 1 0 0
## 31997 2 0 0
## 31998 2 0 0
## 31999 2 0 0
## 32000 1 0 0
## 32001 1 0 0
## 32002 1 0 0
## 32003 2 0 0
## 32004 2 0 0
## 32005 2 0 0
## 32006 2 0 0
## 32007 1 0 0
## 32008 1 0 0
## 32009 1 0 0
## 32010 1 0 0
## 32011 1 0 0
## 32012 1 0 0
## 32013 1 0 0
## 32014 1 0 0
## 32015 1 0 0
## 32016 1 0 0
## 32017 1 0 0
## 32018 2 0 0
## 32019 2 0 0
## 32020 1 0 0
## 32021 1 0 0
## 32022 1 0 0
## 32023 1 0 0
## 32024 2 0 0
## 32025 2 0 0
## 32026 2 0 0
## 32027 2 0 0
## 32028 2 0 0
## 32029 2 0 0
## 32030 2 0 0
## 32031 2 0 0
## 32032 2 0 0
## 32033 2 0 0
## 32034 1 0 0
## 32035 1 0 0
## 32036 2 0 0
## 32037 1 0 0
## 32038 2 0 0
## 32039 1 0 0
## 32040 1 0 0
## 32041 2 0 0
## 32042 2 0 0
## 32043 2 0 0
## 32044 2 0 0
## 32045 2 0 0
## 32046 2 0 0
## 32047 2 0 0
## 32048 2 0 0
## 32049 1 0 0
## 32050 2 0 0
## 32051 2 0 0
## 32052 2 0 0
## 32053 2 0 0
## 32054 2 0 0
## 32055 1 0 0
## 32056 1 0 0
## 32057 2 0 0
## 32058 2 0 0
## 32059 2 0 0
## 32060 2 0 0
## 32061 3 0 0
## 32062 2 0 0
## 32063 1 0 0
## 32064 2 0 0
## 32065 2 0 0
## 32066 2 0 0
## 32067 2 0 0
## 32068 2 0 0
## 32069 2 0 0
## 32070 2 0 0
## 32071 2 0 0
## 32072 2 2 0
## 32073 2 0 0
## 32074 2 0 0
## 32075 2 0 0
## 32076 3 0 0
## 32077 2 0 0
## 32078 2 0 0
## 32079 2 0 0
## 32080 1 0 0
## 32081 2 0 0
## 32082 2 0 0
## 32083 2 0 0
## 32084 2 0 0
## 32085 2 0 0
## 32086 2 0 0
## 32087 2 0 0
## 32088 2 0 0
## 32089 2 0 0
## 32090 2 0 0
## 32091 3 1 0
## 32092 2 0 0
## 32093 2 0 0
## 32094 2 0 0
## 32095 2 0 0
## 32096 2 0 0
## 32097 2 0 0
## 32098 2 0 0
## 32099 1 0 0
## 32100 1 0 0
## 32101 2 0 0
## 32102 3 0 0
## 32103 2 0 0
## 32104 2 0 0
## 32105 2 0 0
## 32106 2 0 0
## 32107 2 0 0
## 32108 2 0 0
## 32109 2 0 0
## 32110 2 0 0
## 32111 2 0 0
## 32112 2 0 0
## 32113 2 0 0
## 32114 2 0 0
## 32115 2 0 0
## 32116 2 0 0
## 32117 2 0 0
## 32118 2 0 0
## 32119 2 0 0
## 32120 2 0 0
## 32121 2 0 0
## 32122 2 0 0
## 32123 2 1 0
## 32124 2 0 0
## 32125 2 0 0
## 32126 2 0 0
## 32127 2 0 0
## 32128 2 0 0
## 32129 2 0 0
## 32130 2 2 0
## 32131 2 0 0
## 32132 2 0 0
## 32133 2 2 0
## 32134 2 2 0
## 32135 2 0 0
## 32136 1 0 0
## 32137 2 0 0
## 32138 2 0 0
## 32139 2 0 0
## 32140 1 0 0
## 32141 1 0 0
## 32142 2 0 0
## 32143 2 0 0
## 32144 1 0 0
## 32145 1 0 0
## 32146 1 0 0
## 32147 1 0 0
## 32148 2 0 0
## 32149 1 0 0
## 32150 2 0 0
## 32151 2 0 0
## 32152 2 0 0
## 32153 1 0 0
## 32154 1 0 0
## 32155 2 1 0
## 32156 2 0 0
## 32157 2 0 0
## 32158 2 0 0
## 32159 2 0 0
## 32160 2 0 0
## 32161 2 0 0
## 32162 1 0 0
## 32163 2 0 0
## 32164 2 0 0
## 32165 1 0 0
## 32166 1 0 0
## 32167 1 0 0
## 32168 2 0 0
## 32169 1 0 0
## 32170 2 0 0
## 32171 2 0 0
## 32172 2 0 0
## 32173 1 0 0
## 32174 1 0 0
## 32175 2 0 0
## 32176 2 0 0
## 32177 2 0 0
## 32178 2 0 0
## 32179 2 0 0
## 32180 2 0 0
## 32181 2 0 0
## 32182 2 0 0
## 32183 2 0 0
## 32184 2 0 0
## 32185 2 0 0
## 32186 2 0 0
## 32187 1 0 0
## 32188 1 0 0
## 32189 1 0 0
## 32190 2 0 0
## 32191 1 0 0
## 32192 1 0 0
## 32193 2 0 0
## 32194 2 0 0
## 32195 1 0 0
## 32196 2 0 0
## 32197 2 0 0
## 32198 2 0 0
## 32199 2 0 0
## 32200 1 0 0
## 32201 2 0 0
## 32202 2 0 0
## 32203 1 0 0
## 32204 1 0 0
## 32205 1 0 0
## 32206 1 0 0
## 32207 1 0 0
## 32208 1 0 0
## 32209 1 0 0
## 32210 2 0 0
## 32211 2 0 0
## 32212 3 1 0
## 32213 1 0 0
## 32214 2 0 0
## 32215 1 0 0
## 32216 1 0 0
## 32217 3 1 0
## 32218 2 0 0
## 32219 1 0 0
## 32220 1 0 0
## 32221 2 0 0
## 32222 2 0 0
## 32223 1 0 0
## 32224 1 0 0
## 32225 1 0 0
## 32226 1 0 0
## 32227 2 0 0
## 32228 1 0 0
## 32229 1 0 0
## 32230 1 0 0
## 32231 2 0 0
## 32232 2 0 0
## 32233 2 0 0
## 32234 2 0 0
## 32235 1 0 0
## 32236 1 0 0
## 32237 2 0 0
## 32238 2 0 0
## 32239 1 0 0
## 32240 2 0 0
## 32241 2 0 0
## 32242 2 2 0
## 32243 2 0 0
## 32244 1 0 0
## 32245 2 0 0
## 32246 2 0 0
## 32247 2 0 0
## 32248 2 0 0
## 32249 2 0 0
## 32250 1 0 0
## 32251 1 0 0
## 32252 1 0 0
## 32253 2 0 0
## 32254 1 0 0
## 32255 1 0 0
## 32256 1 0 0
## 32257 1 0 0
## 32258 1 0 0
## 32259 1 0 0
## 32260 2 1 0
## 32261 2 0 0
## 32262 1 0 0
## 32263 1 0 0
## 32264 1 0 0
## 32265 1 0 0
## 32266 1 0 0
## 32267 1 0 0
## 32268 1 0 0
## 32269 2 0 0
## 32270 2 2 0
## 32271 2 0 0
## 32272 1 0 0
## 32273 2 0 0
## 32274 1 0 0
## 32275 2 0 0
## 32276 2 0 0
## 32277 1 0 0
## 32278 1 0 0
## 32279 1 0 0
## 32280 1 0 0
## 32281 1 0 0
## 32282 2 0 0
## 32283 1 0 0
## 32284 2 0 0
## 32285 2 0 0
## 32286 2 0 0
## 32287 2 0 0
## 32288 2 0 0
## 32289 2 0 0
## 32290 1 0 0
## 32291 2 0 0
## 32292 2 0 0
## 32293 2 0 0
## 32294 1 0 0
## 32295 2 0 0
## 32296 1 0 0
## 32297 1 0 0
## 32298 2 0 0
## 32299 1 0 0
## 32300 2 0 0
## 32301 2 0 0
## 32302 2 0 0
## 32303 2 0 0
## 32304 2 0 0
## 32305 2 0 0
## 32306 2 1 0
## 32307 1 0 0
## 32308 2 0 0
## 32309 1 0 0
## 32310 2 0 0
## 32311 1 0 0
## 32312 2 0 0
## 32313 2 0 0
## 32314 2 0 0
## 32315 1 0 0
## 32316 2 0 0
## 32317 1 0 0
## 32318 1 0 0
## 32319 2 0 0
## 32320 2 0 0
## 32321 2 0 0
## 32322 1 0 0
## 32323 2 0 0
## 32324 1 0 0
## 32325 1 0 0
## 32326 2 0 0
## 32327 2 0 0
## 32328 2 0 0
## 32329 2 0 0
## 32330 1 0 0
## 32331 2 0 0
## 32332 2 0 0
## 32333 2 0 0
## 32334 2 0 0
## 32335 2 0 0
## 32336 2 0 0
## 32337 2 0 0
## 32338 2 0 0
## 32339 2 0 0
## 32340 2 0 0
## 32341 2 0 0
## 32342 2 1 0
## 32343 1 0 0
## 32344 1 0 0
## 32345 2 1 0
## 32346 2 0 0
## 32347 2 0 0
## 32348 2 0 0
## 32349 1 0 0
## 32350 1 0 0
## 32351 1 0 0
## 32352 2 0 0
## 32353 2 0 0
## 32354 2 1 0
## 32355 2 0 0
## 32356 2 0 0
## 32357 2 0 0
## 32358 2 2 0
## 32359 2 0 0
## 32360 2 0 0
## 32361 2 2 0
## 32362 2 0 0
## 32363 2 0 0
## 32364 2 0 0
## 32365 2 0 0
## 32366 2 0 0
## 32367 2 0 0
## 32368 1 0 0
## 32369 2 0 0
## 32370 2 0 0
## 32371 2 0 0
## 32372 2 0 0
## 32373 2 0 0
## 32374 1 0 0
## 32375 2 0 0
## 32376 2 0 0
## 32377 1 0 0
## 32378 1 0 0
## 32379 2 0 0
## 32380 2 0 0
## 32381 2 0 0
## 32382 1 0 0
## 32383 2 0 0
## 32384 2 0 0
## 32385 2 0 0
## 32386 2 0 0
## 32387 2 0 0
## 32388 1 0 0
## 32389 2 0 0
## 32390 2 0 0
## 32391 2 0 0
## 32392 2 0 0
## 32393 2 0 0
## 32394 2 0 0
## 32395 2 0 0
## 32396 2 0 0
## 32397 1 0 0
## 32398 0 0 0
## 32399 2 0 0
## 32400 2 0 0
## 32401 2 0 0
## 32402 2 0 0
## 32403 2 0 0
## 32404 2 0 0
## 32405 2 0 0
## 32406 2 0 0
## 32407 1 0 0
## 32408 1 0 0
## 32409 2 0 0
## 32410 2 0 0
## 32411 2 0 0
## 32412 1 0 0
## 32413 2 0 0
## 32414 2 0 0
## 32415 2 0 0
## 32416 2 0 0
## 32417 2 0 0
## 32418 2 0 0
## 32419 2 0 0
## 32420 2 0 0
## 32421 1 0 0
## 32422 2 0 0
## 32423 1 0 0
## 32424 2 0 0
## 32425 1 0 0
## 32426 2 0 0
## 32427 1 0 0
## 32428 2 0 0
## 32429 2 0 0
## 32430 2 0 0
## 32431 2 0 0
## 32432 2 0 0
## 32433 3 0 0
## 32434 3 0 0
## 32435 1 0 0
## 32436 2 0 0
## 32437 2 0 0
## 32438 3 0 0
## 32439 2 0 0
## 32440 3 0 0
## 32441 2 0 0
## 32442 2 0 0
## 32443 2 0 0
## 32444 1 0 0
## 32445 2 0 0
## 32446 2 0 0
## 32447 2 0 0
## 32448 2 0 0
## 32449 2 0 0
## 32450 2 0 0
## 32451 2 0 0
## 32452 2 0 0
## 32453 2 1 0
## 32454 2 1 0
## 32455 2 0 0
## 32456 3 0 0
## 32457 2 0 0
## 32458 2 0 0
## 32459 2 0 0
## 32460 2 0 0
## 32461 2 0 0
## 32462 2 0 0
## 32463 2 0 0
## 32464 2 0 0
## 32465 1 0 0
## 32466 1 0 0
## 32467 2 0 0
## 32468 2 0 0
## 32469 1 0 0
## 32470 1 0 0
## 32471 1 0 0
## 32472 2 0 0
## 32473 1 0 0
## 32474 2 0 0
## 32475 2 0 0
## 32476 2 0 0
## 32477 2 0 0
## 32478 1 0 0
## 32479 1 0 0
## 32480 1 0 0
## 32481 1 0 0
## 32482 1 0 0
## 32483 2 0 0
## 32484 2 0 0
## 32485 1 0 0
## 32486 2 0 0
## 32487 2 0 0
## 32488 2 0 0
## 32489 2 0 0
## 32490 1 0 0
## 32491 2 0 0
## 32492 1 0 0
## 32493 1 0 0
## 32494 1 0 0
## 32495 1 0 0
## 32496 1 0 0
## 32497 2 0 0
## 32498 1 0 0
## 32499 2 0 0
## 32500 2 0 0
## 32501 2 0 0
## 32502 2 0 0
## 32503 2 0 0
## 32504 1 0 0
## 32505 1 0 0
## 32506 2 0 0
## 32507 2 0 0
## 32508 1 0 0
## 32509 1 0 0
## 32510 1 0 0
## 32511 2 0 0
## 32512 2 0 0
## 32513 2 0 0
## 32514 2 0 0
## 32515 2 0 0
## 32516 1 0 0
## 32517 2 0 0
## 32518 2 0 0
## 32519 2 0 0
## 32520 1 0 0
## 32521 2 0 0
## 32522 2 0 0
## 32523 2 0 0
## 32524 2 0 0
## 32525 2 0 0
## 32526 2 0 0
## 32527 1 0 0
## 32528 2 0 0
## 32529 2 1 0
## 32530 1 0 0
## 32531 2 0 0
## 32532 2 0 0
## 32533 2 0 0
## 32534 2 0 0
## 32535 1 0 0
## 32536 2 0 0
## 32537 2 0 0
## 32538 2 0 0
## 32539 1 0 0
## 32540 2 1 0
## 32541 2 0 0
## 32542 2 0 0
## 32543 2 0 0
## 32544 3 0 0
## 32545 2 0 0
## 32546 2 0 0
## 32547 2 0 0
## 32548 2 0 0
## 32549 2 0 0
## 32550 2 0 0
## 32551 1 0 0
## 32552 2 0 0
## 32553 2 0 0
## 32554 2 0 0
## 32555 2 0 0
## 32556 2 1 0
## 32557 2 0 0
## 32558 2 0 0
## 32559 2 0 0
## 32560 2 0 0
## 32561 2 0 0
## 32562 2 0 0
## 32563 3 1 0
## 32564 2 0 0
## 32565 2 0 0
## 32566 2 0 0
## 32567 2 0 0
## 32568 2 0 0
## 32569 2 0 0
## 32570 2 0 0
## 32571 2 0 0
## 32572 2 0 0
## 32573 2 0 0
## 32574 2 0 0
## 32575 2 0 0
## 32576 2 0 0
## 32577 2 0 0
## 32578 2 0 0
## 32579 2 0 0
## 32580 2 0 0
## 32581 2 0 0
## 32582 2 0 0
## 32583 2 1 0
## 32584 2 0 0
## 32585 2 0 0
## 32586 2 0 0
## 32587 2 0 0
## 32588 1 0 0
## 32589 1 0 0
## 32590 2 0 0
## 32591 2 0 0
## 32592 2 0 0
## 32593 2 0 0
## 32594 2 0 0
## 32595 2 0 0
## 32596 2 0 0
## 32597 2 0 0
## 32598 2 0 0
## 32599 2 0 0
## 32600 2 0 0
## 32601 2 0 0
## 32602 2 0 0
## 32603 2 0 0
## 32604 2 0 0
## 32605 2 0 0
## 32606 2 0 0
## 32607 2 0 0
## 32608 2 0 0
## 32609 2 0 0
## 32610 2 0 0
## 32611 2 0 0
## 32612 2 0 0
## 32613 2 0 0
## 32614 2 1 0
## 32615 2 0 0
## 32616 2 1 0
## 32617 2 0 0
## 32618 2 0 0
## 32619 2 0 0
## 32620 2 0 0
## 32621 2 0 0
## 32622 2 0 0
## 32623 2 0 0
## 32624 2 1 0
## 32625 2 0 0
## 32626 2 0 0
## 32627 2 0 0
## 32628 2 2 0
## 32629 2 0 0
## 32630 2 0 0
## 32631 1 0 0
## 32632 2 0 0
## 32633 2 0 0
## 32634 2 0 0
## 32635 2 0 0
## 32636 2 0 0
## 32637 1 0 0
## 32638 1 0 0
## 32639 2 0 0
## 32640 2 0 0
## 32641 1 0 0
## 32642 2 0 0
## 32643 2 0 0
## 32644 1 0 0
## 32645 2 0 0
## 32646 2 0 0
## 32647 2 0 0
## 32648 2 0 0
## 32649 1 0 0
## 32650 2 0 0
## 32651 2 2 0
## 32652 1 0 0
## 32653 1 0 0
## 32654 2 0 0
## 32655 2 0 0
## 32656 1 0 0
## 32657 2 1 0
## 32658 2 1 0
## 32659 2 0 0
## 32660 2 0 0
## 32661 2 0 0
## 32662 2 0 0
## 32663 2 0 0
## 32664 2 0 0
## 32665 2 0 0
## 32666 2 0 0
## 32667 2 0 0
## 32668 3 1 0
## 32669 2 0 0
## 32670 2 0 0
## 32671 2 0 0
## 32672 2 0 0
## 32673 2 0 0
## 32674 2 0 0
## 32675 2 0 0
## 32676 2 0 0
## 32677 2 0 0
## 32678 2 0 0
## 32679 2 0 0
## 32680 1 0 0
## 32681 2 0 0
## 32682 2 0 0
## 32683 3 1 0
## 32684 2 0 0
## 32685 1 0 0
## 32686 2 0 0
## 32687 3 0 0
## 32688 2 0 0
## 32689 2 2 0
## 32690 2 0 0
## 32691 1 0 0
## 32692 1 0 0
## 32693 1 0 0
## 32694 2 0 0
## 32695 1 0 0
## 32696 1 0 0
## 32697 2 0 0
## 32698 2 0 0
## 32699 2 0 0
## 32700 2 0 0
## 32701 2 0 0
## 32702 2 0 0
## 32703 2 0 0
## 32704 2 0 0
## 32705 1 0 0
## 32706 2 0 0
## 32707 2 2 0
## 32708 1 0 0
## 32709 1 1 0
## 32710 2 0 0
## 32711 1 0 0
## 32712 2 0 0
## 32713 1 0 0
## 32714 3 1 0
## 32715 2 0 0
## 32716 1 0 0
## 32717 2 0 0
## 32718 1 0 0
## 32719 1 0 0
## 32720 1 0 0
## 32721 2 0 0
## 32722 1 0 0
## 32723 1 0 0
## 32724 1 0 0
## 32725 2 0 0
## 32726 2 0 0
## 32727 1 0 0
## 32728 2 0 0
## 32729 2 0 0
## 32730 2 0 0
## 32731 2 0 0
## 32732 2 0 0
## 32733 2 0 0
## 32734 1 0 0
## 32735 1 0 0
## 32736 1 0 0
## 32737 2 0 0
## 32738 2 0 0
## 32739 2 0 0
## 32740 2 0 0
## 32741 1 0 0
## 32742 1 0 0
## 32743 2 0 0
## 32744 1 0 0
## 32745 2 0 0
## 32746 1 0 0
## 32747 2 0 0
## 32748 1 0 0
## 32749 2 0 0
## 32750 1 0 0
## 32751 3 0 0
## 32752 2 0 0
## 32753 1 0 0
## 32754 3 0 0
## 32755 2 0 0
## 32756 1 0 0
## 32757 2 0 0
## 32758 3 0 0
## 32759 1 0 0
## 32760 1 0 0
## 32761 2 0 0
## 32762 2 0 0
## 32763 2 0 0
## 32764 2 0 0
## 32765 1 0 0
## 32766 3 0 0
## 32767 2 0 0
## 32768 3 0 0
## 32769 2 0 0
## 32770 3 0 0
## 32771 3 0 0
## 32772 1 0 0
## 32773 2 0 0
## 32774 2 0 0
## 32775 2 0 0
## 32776 2 0 0
## 32777 1 0 0
## 32778 3 0 0
## 32779 1 0 0
## 32780 2 0 0
## 32781 1 0 0
## 32782 1 2 0
## 32783 2 0 0
## 32784 2 0 0
## 32785 2 0 0
## 32786 1 1 0
## 32787 2 1 0
## 32788 2 0 0
## 32789 2 0 0
## 32790 2 0 0
## 32791 2 0 0
## 32792 2 0 0
## 32793 2 0 0
## 32794 2 1 0
## 32795 2 0 0
## 32796 2 0 0
## 32797 2 0 0
## 32798 2 1 0
## 32799 2 0 0
## 32800 2 0 0
## 32801 2 0 0
## 32802 2 0 0
## 32803 2 0 0
## 32804 2 0 0
## 32805 2 0 0
## 32806 2 0 0
## 32807 2 0 0
## 32808 1 0 0
## 32809 2 0 0
## 32810 1 0 0
## 32811 2 0 0
## 32812 2 0 0
## 32813 1 0 0
## 32814 1 0 0
## 32815 2 0 0
## 32816 2 0 0
## 32817 2 0 0
## 32818 2 0 0
## 32819 2 1 0
## 32820 2 0 0
## 32821 2 0 0
## 32822 2 0 0
## 32823 3 0 0
## 32824 1 0 0
## 32825 1 0 0
## 32826 3 1 0
## 32827 2 0 0
## 32828 2 0 0
## 32829 2 0 0
## 32830 2 0 0
## 32831 2 0 0
## 32832 2 0 0
## 32833 2 0 0
## 32834 2 0 0
## 32835 2 0 0
## 32836 2 0 0
## 32837 2 0 0
## 32838 2 0 0
## 32839 2 0 0
## 32840 1 0 0
## 32841 2 0 0
## 32842 1 0 0
## 32843 2 2 0
## 32844 2 0 0
## 32845 2 1 0
## 32846 2 0 0
## 32847 2 0 0
## 32848 2 0 0
## 32849 1 0 0
## 32850 3 1 0
## 32851 3 1 0
## 32852 2 0 0
## 32853 2 0 0
## 32854 2 0 0
## 32855 2 0 0
## 32856 2 0 0
## 32857 2 0 0
## 32858 1 0 0
## 32859 1 0 0
## 32860 2 0 0
## 32861 2 0 0
## 32862 2 0 0
## 32863 2 0 0
## 32864 2 0 0
## 32865 2 0 0
## 32866 2 0 0
## 32867 2 0 0
## 32868 2 0 0
## 32869 2 0 0
## 32870 1 0 0
## 32871 2 0 0
## 32872 2 0 0
## 32873 2 0 0
## 32874 2 0 0
## 32875 2 0 0
## 32876 2 0 0
## 32877 2 0 0
## 32878 1 0 0
## 32879 2 0 0
## 32880 2 0 0
## 32881 2 0 0
## 32882 1 0 0
## 32883 1 0 0
## 32884 2 0 0
## 32885 2 0 0
## 32886 1 0 0
## 32887 2 0 0
## 32888 2 0 0
## 32889 1 0 0
## 32890 1 0 0
## 32891 1 0 0
## 32892 1 0 0
## 32893 2 0 0
## 32894 2 0 0
## 32895 2 0 0
## 32896 2 0 0
## 32897 2 0 0
## 32898 2 0 0
## 32899 2 0 0
## 32900 2 0 0
## 32901 1 0 0
## 32902 2 0 0
## 32903 2 0 0
## 32904 1 0 0
## 32905 2 0 0
## 32906 2 0 0
## 32907 2 0 0
## 32908 2 0 0
## 32909 2 0 0
## 32910 1 0 0
## 32911 2 0 0
## 32912 2 0 0
## 32913 2 0 0
## 32914 2 0 0
## 32915 2 0 0
## 32916 1 0 0
## 32917 3 0 0
## 32918 1 0 0
## 32919 1 0 0
## 32920 2 0 0
## 32921 1 0 0
## 32922 1 0 0
## 32923 1 0 0
## 32924 1 0 0
## 32925 1 0 0
## 32926 1 0 0
## 32927 2 0 0
## 32928 1 0 0
## 32929 1 0 0
## 32930 1 0 0
## 32931 2 0 0
## 32932 1 0 0
## 32933 2 0 0
## 32934 1 0 0
## 32935 2 0 0
## 32936 2 0 0
## 32937 3 1 0
## 32938 2 0 0
## 32939 2 0 0
## 32940 2 0 0
## 32941 2 0 0
## 32942 2 0 0
## 32943 1 0 0
## 32944 2 0 0
## 32945 2 0 0
## 32946 2 0 0
## 32947 2 1 0
## 32948 2 1 0
## 32949 1 0 0
## 32950 2 0 0
## 32951 2 1 0
## 32952 1 0 0
## 32953 1 0 0
## 32954 1 0 0
## 32955 1 0 0
## 32956 1 0 0
## 32957 3 0 0
## 32958 2 0 0
## 32959 1 0 0
## 32960 2 0 0
## 32961 2 0 0
## 32962 2 0 0
## 32963 2 0 0
## 32964 1 0 0
## 32965 1 0 0
## 32966 1 0 0
## 32967 2 0 0
## 32968 2 0 0
## 32969 1 0 0
## 32970 1 0 0
## 32971 2 0 0
## 32972 2 0 0
## 32973 1 0 0
## 32974 2 2 0
## 32975 2 0 0
## 32976 2 0 0
## 32977 2 0 0
## 32978 1 0 0
## 32979 2 0 0
## 32980 1 0 0
## 32981 1 0 0
## 32982 2 0 0
## 32983 2 0 0
## 32984 1 0 0
## 32985 2 2 0
## 32986 1 0 0
## 32987 1 0 0
## 32988 2 0 0
## 32989 2 0 0
## 32990 2 0 0
## 32991 2 0 0
## 32992 1 0 0
## 32993 1 0 0
## 32994 1 0 0
## 32995 1 0 0
## 32996 1 0 0
## 32997 2 0 0
## 32998 1 0 0
## 32999 2 0 0
## 33000 2 0 0
## 33001 2 0 0
## 33002 2 0 0
## 33003 2 0 0
## 33004 2 0 0
## 33005 2 2 0
## 33006 2 0 0
## 33007 2 0 0
## 33008 1 0 0
## 33009 2 0 0
## 33010 2 0 0
## 33011 2 0 0
## 33012 2 0 0
## 33013 1 0 0
## 33014 1 0 0
## 33015 2 0 0
## 33016 2 0 0
## 33017 1 0 0
## 33018 1 0 0
## 33019 2 0 0
## 33020 1 0 0
## 33021 1 0 0
## 33022 2 0 0
## 33023 1 0 0
## 33024 2 0 0
## 33025 1 0 0
## 33026 2 1 0
## 33027 1 0 0
## 33028 2 2 0
## 33029 2 0 0
## 33030 2 0 0
## 33031 2 0 0
## 33032 2 0 0
## 33033 2 0 0
## 33034 2 0 0
## 33035 2 0 0
## 33036 1 0 0
## 33037 1 0 0
## 33038 2 0 0
## 33039 2 0 0
## 33040 1 0 0
## 33041 2 0 0
## 33042 2 0 0
## 33043 2 0 0
## 33044 2 0 0
## 33045 1 0 0
## 33046 2 0 0
## 33047 2 0 0
## 33048 2 2 0
## 33049 2 0 0
## 33050 2 0 0
## 33051 3 0 0
## 33052 2 0 0
## 33053 2 0 0
## 33054 2 0 0
## 33055 1 0 0
## 33056 2 0 0
## 33057 3 0 0
## 33058 1 0 0
## 33059 2 0 0
## 33060 2 0 0
## 33061 2 0 0
## 33062 2 0 0
## 33063 2 0 0
## 33064 2 0 0
## 33065 2 0 0
## 33066 2 0 0
## 33067 3 0 0
## 33068 2 0 0
## 33069 2 2 0
## 33070 2 0 0
## 33071 2 0 0
## 33072 2 0 0
## 33073 2 0 0
## 33074 2 0 0
## 33075 2 0 0
## 33076 2 0 0
## 33077 2 0 0
## 33078 2 0 0
## 33079 2 0 0
## 33080 2 0 0
## 33081 1 0 0
## 33082 2 1 0
## 33083 1 0 0
## 33084 2 0 0
## 33085 2 0 0
## 33086 2 1 0
## 33087 2 0 0
## 33088 1 0 0
## 33089 2 0 0
## 33090 2 0 0
## 33091 2 1 0
## 33092 2 0 0
## 33093 3 0 0
## 33094 2 0 0
## 33095 3 0 0
## 33096 1 0 0
## 33097 1 0 0
## 33098 2 0 0
## 33099 2 0 0
## 33100 2 0 0
## 33101 2 0 0
## 33102 1 0 0
## 33103 2 0 0
## 33104 2 0 0
## 33105 2 0 0
## 33106 2 0 0
## 33107 2 0 0
## 33108 2 0 0
## 33109 2 0 0
## 33110 2 0 0
## 33111 2 0 0
## 33112 2 0 0
## 33113 3 0 0
## 33114 2 0 0
## 33115 2 0 0
## 33116 2 0 0
## 33117 1 0 0
## 33118 2 0 0
## 33119 2 0 0
## 33120 2 0 0
## 33121 2 0 0
## 33122 3 0 0
## 33123 2 0 0
## 33124 2 0 0
## 33125 2 0 0
## 33126 2 0 0
## 33127 3 0 0
## 33128 1 0 0
## 33129 2 0 0
## 33130 2 0 0
## 33131 2 0 0
## 33132 2 0 0
## 33133 2 0 0
## 33134 2 0 0
## 33135 2 0 0
## 33136 1 0 0
## 33137 2 0 0
## 33138 2 0 0
## 33139 2 2 0
## 33140 2 0 0
## 33141 2 1 0
## 33142 2 0 0
## 33143 2 0 0
## 33144 2 0 0
## 33145 3 0 0
## 33146 2 0 0
## 33147 2 0 0
## 33148 3 0 0
## 33149 2 2 0
## 33150 2 2 0
## 33151 2 2 0
## 33152 2 0 0
## 33153 2 0 0
## 33154 2 0 0
## 33155 2 0 0
## 33156 2 0 0
## 33157 2 0 0
## 33158 1 0 0
## 33159 2 0 0
## 33160 2 0 0
## 33161 2 2 0
## 33162 2 0 0
## 33163 2 0 0
## 33164 1 0 0
## 33165 2 2 0
## 33166 1 0 0
## 33167 2 0 0
## 33168 2 0 0
## 33169 2 0 0
## 33170 1 0 0
## 33171 2 0 0
## 33172 2 0 0
## 33173 2 0 0
## 33174 2 0 0
## 33175 2 0 0
## 33176 2 0 0
## 33177 2 0 0
## 33178 2 0 0
## 33179 2 0 0
## 33180 2 0 0
## 33181 1 2 0
## 33182 2 0 0
## 33183 2 0 0
## 33184 2 0 0
## 33185 2 0 0
## 33186 2 0 0
## 33187 2 0 0
## 33188 2 0 0
## 33189 2 0 0
## 33190 2 1 0
## 33191 2 1 0
## 33192 2 0 0
## 33193 2 0 0
## 33194 2 0 0
## 33195 1 0 0
## 33196 2 0 0
## 33197 2 1 0
## 33198 2 0 0
## 33199 1 0 0
## 33200 2 0 0
## 33201 2 0 0
## 33202 2 0 0
## 33203 2 0 0
## 33204 2 0 0
## 33205 2 0 0
## 33206 2 0 0
## 33207 3 2 0
## 33208 2 0 0
## 33209 2 0 0
## 33210 2 0 0
## 33211 1 0 0
## 33212 2 0 0
## 33213 2 0 0
## 33214 2 0 0
## 33215 2 0 0
## 33216 2 2 0
## 33217 2 0 0
## 33218 2 0 0
## 33219 2 0 0
## 33220 2 1 0
## 33221 2 0 0
## 33222 2 0 0
## 33223 3 1 0
## 33224 2 0 0
## 33225 2 0 0
## 33226 2 0 0
## 33227 3 1 0
## 33228 2 0 0
## 33229 2 0 0
## 33230 2 0 0
## 33231 2 0 0
## 33232 2 2 0
## 33233 2 0 0
## 33234 2 2 0
## 33235 2 1 0
## 33236 2 1 0
## 33237 2 2 0
## 33238 2 0 0
## 33239 2 0 0
## 33240 2 0 0
## 33241 2 1 0
## 33242 2 0 0
## 33243 2 0 0
## 33244 2 0 0
## 33245 2 0 0
## 33246 2 0 0
## 33247 2 0 0
## 33248 2 0 0
## 33249 2 0 0
## 33250 2 0 0
## 33251 1 0 0
## 33252 1 0 0
## 33253 2 0 0
## 33254 2 0 0
## 33255 2 0 0
## 33256 2 0 0
## 33257 2 0 0
## 33258 2 0 0
## 33259 2 0 0
## 33260 2 0 0
## 33261 2 0 0
## 33262 2 0 0
## 33263 2 0 0
## 33264 2 0 0
## 33265 3 1 0
## 33266 2 0 0
## 33267 2 0 0
## 33268 2 0 0
## 33269 2 0 0
## 33270 3 0 0
## 33271 2 0 0
## 33272 2 0 0
## 33273 2 0 0
## 33274 2 2 0
## 33275 2 2 0
## 33276 2 0 0
## 33277 2 0 0
## 33278 1 0 0
## 33279 2 0 0
## 33280 1 0 0
## 33281 2 0 0
## 33282 2 0 0
## 33283 2 0 0
## 33284 2 0 0
## 33285 2 0 0
## 33286 2 0 0
## 33287 1 0 0
## 33288 2 0 0
## 33289 2 0 0
## 33290 2 0 0
## 33291 2 0 0
## 33292 2 0 0
## 33293 3 0 0
## 33294 2 0 0
## 33295 2 0 0
## 33296 2 0 0
## 33297 1 0 0
## 33298 1 0 0
## 33299 1 0 0
## 33300 1 0 0
## 33301 2 2 0
## 33302 2 0 0
## 33303 2 0 0
## 33304 2 2 0
## 33305 2 0 0
## 33306 2 0 0
## 33307 2 1 0
## 33308 2 0 0
## 33309 2 0 0
## 33310 1 0 0
## 33311 2 0 0
## 33312 2 0 0
## 33313 2 0 0
## 33314 1 0 0
## 33315 1 0 0
## 33316 2 0 0
## 33317 1 0 0
## 33318 2 2 0
## 33319 2 0 0
## 33320 2 0 0
## 33321 2 0 0
## 33322 2 0 0
## 33323 2 0 0
## 33324 2 2 0
## 33325 2 0 0
## 33326 1 0 0
## 33327 2 0 0
## 33328 1 0 0
## 33329 1 0 0
## 33330 2 0 0
## 33331 2 0 0
## 33332 1 0 0
## 33333 1 0 0
## [ reached 'max' / getOption("max.print") -- omitted 86057 rows ]
hotels %>%
select(adults, children, babies) %>%
arrange(desc(babies))
## adults children babies
## 1 2 0 10
## 2 1 0 9
## 3 2 0 2
## 4 2 0 2
## 5 2 0 2
## 6 2 0 2
## 7 2 0 2
## 8 2 0 2
## 9 2 0 2
## 10 2 0 2
## 11 2 0 2
## 12 2 1 2
## 13 2 1 2
## 14 2 0 2
## 15 2 0 2
## 16 2 0 2
## 17 2 1 2
## 18 2 0 1
## 19 2 0 1
## 20 2 0 1
## 21 2 0 1
## 22 2 1 1
## 23 2 0 1
## 24 2 0 1
## 25 2 0 1
## 26 2 0 1
## 27 2 0 1
## 28 2 0 1
## 29 2 0 1
## 30 2 1 1
## 31 2 0 1
## 32 2 0 1
## 33 2 0 1
## 34 2 0 1
## 35 2 0 1
## 36 2 0 1
## 37 2 1 1
## 38 2 0 1
## 39 2 1 1
## 40 2 0 1
## 41 2 0 1
## 42 2 1 1
## 43 2 0 1
## 44 2 0 1
## 45 2 0 1
## 46 1 0 1
## 47 2 0 1
## 48 2 0 1
## 49 2 1 1
## 50 2 0 1
## 51 2 0 1
## 52 2 0 1
## 53 2 0 1
## 54 2 0 1
## 55 2 0 1
## 56 2 0 1
## 57 2 1 1
## 58 2 0 1
## 59 2 0 1
## 60 2 0 1
## 61 2 0 1
## 62 2 0 1
## 63 2 0 1
## 64 2 0 1
## 65 2 0 1
## 66 2 0 1
## 67 2 0 1
## 68 2 0 1
## 69 2 0 1
## 70 2 0 1
## 71 2 0 1
## 72 2 0 1
## 73 2 0 1
## 74 2 0 1
## 75 2 0 1
## 76 2 0 1
## 77 2 0 1
## 78 2 0 1
## 79 2 0 1
## 80 2 0 1
## 81 2 0 1
## 82 2 0 1
## 83 2 0 1
## 84 2 2 1
## 85 2 0 1
## 86 2 0 1
## 87 2 0 1
## 88 2 0 1
## 89 2 0 1
## 90 2 2 1
## 91 2 0 1
## 92 2 0 1
## 93 2 0 1
## 94 2 0 1
## 95 2 0 1
## 96 2 0 1
## 97 2 0 1
## 98 2 0 1
## 99 2 0 1
## 100 1 0 1
## 101 2 0 1
## 102 2 0 1
## 103 2 0 1
## 104 1 2 1
## 105 2 1 1
## 106 2 0 1
## 107 2 0 1
## 108 2 0 1
## 109 2 0 1
## 110 2 0 1
## 111 2 0 1
## 112 2 0 1
## 113 2 2 1
## 114 2 0 1
## 115 2 1 1
## 116 2 0 1
## 117 2 0 1
## 118 2 0 1
## 119 2 0 1
## 120 2 1 1
## 121 2 0 1
## 122 2 0 1
## 123 2 0 1
## 124 2 1 1
## 125 2 0 1
## 126 2 0 1
## 127 2 2 1
## 128 3 0 1
## 129 2 0 1
## 130 2 0 1
## 131 2 0 1
## 132 2 0 1
## 133 2 0 1
## 134 2 0 1
## 135 2 0 1
## 136 2 0 1
## 137 2 0 1
## 138 2 0 1
## 139 2 0 1
## 140 2 0 1
## 141 2 0 1
## 142 2 1 1
## 143 2 0 1
## 144 2 0 1
## 145 2 1 1
## 146 2 0 1
## 147 2 0 1
## 148 2 0 1
## 149 2 0 1
## 150 2 1 1
## 151 1 0 1
## 152 2 0 1
## 153 2 0 1
## 154 2 1 1
## 155 2 0 1
## 156 2 0 1
## 157 2 0 1
## 158 2 1 1
## 159 2 0 1
## 160 2 0 1
## 161 2 0 1
## 162 2 0 1
## 163 2 0 1
## 164 2 0 1
## 165 2 0 1
## 166 2 1 1
## 167 2 1 1
## 168 2 1 1
## 169 2 0 1
## 170 2 0 1
## 171 2 0 1
## 172 2 0 1
## 173 2 0 1
## 174 2 0 1
## 175 2 0 1
## 176 2 0 1
## 177 2 0 1
## 178 2 0 1
## 179 2 0 1
## 180 2 1 1
## 181 2 0 1
## 182 2 0 1
## 183 2 0 1
## 184 2 1 1
## 185 2 0 1
## 186 2 0 1
## 187 2 0 1
## 188 2 0 1
## 189 2 0 1
## 190 2 0 1
## 191 2 0 1
## 192 2 1 1
## 193 2 1 1
## 194 2 0 1
## 195 4 0 1
## 196 2 0 1
## 197 2 0 1
## 198 2 0 1
## 199 2 0 1
## 200 2 0 1
## 201 2 0 1
## 202 2 0 1
## 203 2 0 1
## 204 2 0 1
## 205 2 0 1
## 206 2 2 1
## 207 2 0 1
## 208 2 0 1
## 209 2 0 1
## 210 2 0 1
## 211 2 0 1
## 212 2 0 1
## 213 2 1 1
## 214 2 0 1
## 215 2 2 1
## 216 2 0 1
## 217 2 0 1
## 218 2 0 1
## 219 2 2 1
## 220 2 0 1
## 221 2 0 1
## 222 2 0 1
## 223 2 0 1
## 224 2 0 1
## 225 2 0 1
## 226 2 0 1
## 227 2 0 1
## 228 2 0 1
## 229 2 0 1
## 230 2 0 1
## 231 2 1 1
## 232 2 0 1
## 233 2 0 1
## 234 2 0 1
## 235 2 0 1
## 236 2 0 1
## 237 2 1 1
## 238 2 0 1
## 239 2 1 1
## 240 2 1 1
## 241 2 0 1
## 242 2 0 1
## 243 2 0 1
## 244 2 0 1
## 245 2 0 1
## 246 2 0 1
## 247 2 0 1
## 248 2 0 1
## 249 2 0 1
## 250 2 0 1
## 251 2 0 1
## 252 2 0 1
## 253 2 0 1
## 254 2 1 1
## 255 2 0 1
## 256 2 0 1
## 257 2 0 1
## 258 2 1 1
## 259 2 0 1
## 260 2 0 1
## 261 2 0 1
## 262 2 0 1
## 263 3 0 1
## 264 2 0 1
## 265 2 0 1
## 266 2 0 1
## 267 2 0 1
## 268 2 0 1
## 269 2 0 1
## 270 2 0 1
## 271 2 0 1
## 272 2 0 1
## 273 2 0 1
## 274 2 0 1
## 275 2 0 1
## 276 2 0 1
## 277 2 0 1
## 278 2 0 1
## 279 2 1 1
## 280 2 0 1
## 281 2 0 1
## 282 2 0 1
## 283 2 0 1
## 284 2 0 1
## 285 2 1 1
## 286 2 0 1
## 287 2 1 1
## 288 2 0 1
## 289 2 1 1
## 290 2 0 1
## 291 2 0 1
## 292 2 0 1
## 293 2 0 1
## 294 2 0 1
## 295 2 0 1
## 296 2 0 1
## 297 2 0 1
## 298 2 0 1
## 299 2 0 1
## 300 2 1 1
## 301 2 0 1
## 302 2 0 1
## 303 2 0 1
## 304 2 0 1
## 305 2 0 1
## 306 2 1 1
## 307 2 0 1
## 308 2 0 1
## 309 2 0 1
## 310 2 1 1
## 311 2 0 1
## 312 2 0 1
## 313 2 0 1
## 314 2 0 1
## 315 2 0 1
## 316 2 1 1
## 317 3 1 1
## 318 2 1 1
## 319 2 0 1
## 320 2 2 1
## 321 2 1 1
## 322 2 1 1
## 323 2 0 1
## 324 2 1 1
## 325 2 0 1
## 326 2 0 1
## 327 2 0 1
## 328 2 0 1
## 329 2 0 1
## 330 2 0 1
## 331 2 0 1
## 332 3 0 1
## 333 2 0 1
## 334 2 1 1
## 335 2 0 1
## 336 2 1 1
## 337 2 0 1
## 338 2 0 1
## 339 2 0 1
## 340 2 0 1
## 341 2 0 1
## 342 2 1 1
## 343 2 0 1
## 344 2 0 1
## 345 2 0 1
## 346 2 1 1
## 347 2 0 1
## 348 2 1 1
## 349 2 0 1
## 350 2 0 1
## 351 2 0 1
## 352 2 0 1
## 353 2 0 1
## 354 2 0 1
## 355 2 0 1
## 356 3 0 1
## 357 2 0 1
## 358 2 0 1
## 359 2 0 1
## 360 3 0 1
## 361 2 0 1
## 362 2 0 1
## 363 2 1 1
## 364 2 0 1
## 365 2 0 1
## 366 2 1 1
## 367 2 0 1
## 368 2 0 1
## 369 2 1 1
## 370 2 0 1
## 371 2 0 1
## 372 2 0 1
## 373 2 1 1
## 374 2 1 1
## 375 2 0 1
## 376 2 0 1
## 377 2 0 1
## 378 2 0 1
## 379 2 0 1
## 380 2 0 1
## 381 2 0 1
## 382 2 0 1
## 383 2 0 1
## 384 2 0 1
## 385 2 0 1
## 386 2 0 1
## 387 2 1 1
## 388 2 0 1
## 389 2 0 1
## 390 2 0 1
## 391 2 0 1
## 392 2 0 1
## 393 2 0 1
## 394 2 0 1
## 395 2 0 1
## 396 2 0 1
## 397 2 0 1
## 398 2 0 1
## 399 2 0 1
## 400 2 0 1
## 401 2 0 1
## 402 2 0 1
## 403 2 0 1
## 404 2 1 1
## 405 2 1 1
## 406 2 0 1
## 407 2 0 1
## 408 2 0 1
## 409 2 0 1
## 410 2 0 1
## 411 2 0 1
## 412 2 1 1
## 413 2 1 1
## 414 2 0 1
## 415 2 0 1
## 416 2 0 1
## 417 2 0 1
## 418 2 1 1
## 419 2 0 1
## 420 2 0 1
## 421 2 0 1
## 422 2 0 1
## 423 2 0 1
## 424 2 0 1
## 425 2 0 1
## 426 2 0 1
## 427 2 0 1
## 428 2 0 1
## 429 2 2 1
## 430 2 0 1
## 431 2 1 1
## 432 2 1 1
## 433 1 0 1
## 434 2 0 1
## 435 2 1 1
## 436 2 0 1
## 437 2 0 1
## 438 2 1 1
## 439 2 0 1
## 440 2 1 1
## 441 2 0 1
## 442 2 0 1
## 443 2 0 1
## 444 3 1 1
## 445 2 0 1
## 446 2 0 1
## 447 2 1 1
## 448 2 1 1
## 449 2 0 1
## 450 2 0 1
## 451 2 1 1
## 452 2 0 1
## 453 2 0 1
## 454 2 0 1
## 455 2 0 1
## 456 2 0 1
## 457 2 0 1
## 458 2 0 1
## 459 2 1 1
## 460 2 1 1
## 461 2 0 1
## 462 2 2 1
## 463 2 0 1
## 464 2 0 1
## 465 2 0 1
## 466 2 0 1
## 467 2 0 1
## 468 2 0 1
## 469 2 0 1
## 470 2 0 1
## 471 2 0 1
## 472 2 0 1
## 473 2 0 1
## 474 2 1 1
## 475 2 0 1
## 476 2 0 1
## 477 1 1 1
## 478 2 0 1
## 479 2 1 1
## 480 2 0 1
## 481 2 0 1
## 482 2 0 1
## 483 2 0 1
## 484 2 0 1
## 485 2 0 1
## 486 2 0 1
## 487 2 0 1
## 488 2 0 1
## 489 2 0 1
## 490 2 0 1
## 491 2 0 1
## 492 2 0 1
## 493 2 0 1
## 494 2 2 1
## 495 2 1 1
## 496 2 0 1
## 497 2 0 1
## 498 2 0 1
## 499 2 0 1
## 500 2 0 1
## 501 2 0 1
## 502 2 0 1
## 503 2 0 1
## 504 2 0 1
## 505 2 0 1
## 506 2 1 1
## 507 2 1 1
## 508 2 0 1
## 509 2 1 1
## 510 2 0 1
## 511 2 0 1
## 512 2 0 1
## 513 2 1 1
## 514 2 0 1
## 515 2 0 1
## 516 2 1 1
## 517 2 1 1
## 518 2 0 1
## 519 2 1 1
## 520 2 0 1
## 521 2 0 1
## 522 2 0 1
## 523 1 1 1
## 524 2 1 1
## 525 2 1 1
## 526 3 0 1
## 527 2 1 1
## 528 2 0 1
## 529 2 0 1
## 530 2 0 1
## 531 2 0 1
## 532 2 0 1
## 533 2 0 1
## 534 2 0 1
## 535 2 0 1
## 536 2 1 1
## 537 2 1 1
## 538 2 1 1
## 539 2 0 1
## 540 2 0 1
## 541 2 1 1
## 542 2 1 1
## 543 2 0 1
## 544 2 0 1
## 545 2 0 1
## 546 2 0 1
## 547 2 0 1
## 548 2 0 1
## 549 2 0 1
## 550 2 0 1
## 551 2 0 1
## 552 2 0 1
## 553 2 1 1
## 554 2 0 1
## 555 2 0 1
## 556 2 0 1
## 557 2 0 1
## 558 2 0 1
## 559 2 1 1
## 560 2 0 1
## 561 2 0 1
## 562 2 0 1
## 563 2 0 1
## 564 2 0 1
## 565 2 0 1
## 566 2 0 1
## 567 2 0 1
## 568 2 0 1
## 569 2 0 1
## 570 2 0 1
## 571 2 0 1
## 572 2 2 1
## 573 2 0 1
## 574 2 0 1
## 575 2 1 1
## 576 2 0 1
## 577 2 0 1
## 578 2 0 1
## 579 2 0 1
## 580 2 0 1
## 581 2 0 1
## 582 2 0 1
## 583 2 0 1
## 584 2 0 1
## 585 2 0 1
## 586 2 0 1
## 587 2 0 1
## 588 0 2 1
## 589 2 0 1
## 590 2 0 1
## 591 2 0 1
## 592 2 0 1
## 593 2 0 1
## 594 2 0 1
## 595 2 2 1
## 596 2 1 1
## 597 2 0 1
## 598 2 0 1
## 599 2 0 1
## 600 2 0 1
## 601 2 0 1
## 602 2 0 1
## 603 2 0 1
## 604 2 0 1
## 605 2 0 1
## 606 2 0 1
## 607 2 0 1
## 608 2 1 1
## 609 2 0 1
## 610 2 2 1
## 611 2 0 1
## 612 2 1 1
## 613 2 0 1
## 614 2 0 1
## 615 2 0 1
## 616 2 0 1
## 617 2 0 1
## 618 2 0 1
## 619 2 0 1
## 620 2 0 1
## 621 2 0 1
## 622 2 0 1
## 623 2 0 1
## 624 2 0 1
## 625 2 0 1
## 626 2 2 1
## 627 2 1 1
## 628 2 0 1
## 629 2 0 1
## 630 2 0 1
## 631 2 2 1
## 632 2 0 1
## 633 2 0 1
## 634 2 0 1
## 635 2 0 1
## 636 2 0 1
## 637 1 0 1
## 638 2 1 1
## 639 2 0 1
## 640 2 0 1
## 641 2 0 1
## 642 2 1 1
## 643 2 0 1
## 644 2 0 1
## 645 2 0 1
## 646 2 0 1
## 647 2 0 1
## 648 2 0 1
## 649 2 0 1
## 650 2 0 1
## 651 2 0 1
## 652 2 0 1
## 653 2 0 1
## 654 2 0 1
## 655 2 2 1
## 656 2 1 1
## 657 2 0 1
## 658 2 1 1
## 659 2 0 1
## 660 2 0 1
## 661 2 0 1
## 662 2 0 1
## 663 2 0 1
## 664 2 0 1
## 665 2 0 1
## 666 1 2 1
## 667 2 0 1
## 668 2 0 1
## 669 2 0 1
## 670 2 0 1
## 671 2 0 1
## 672 0 2 1
## 673 2 2 1
## 674 2 0 1
## 675 2 0 1
## 676 2 0 1
## 677 2 1 1
## 678 2 2 1
## 679 2 0 1
## 680 2 0 1
## 681 2 0 1
## 682 2 0 1
## 683 2 0 1
## 684 2 0 1
## 685 2 2 1
## 686 2 1 1
## 687 2 0 1
## 688 2 0 1
## 689 2 0 1
## 690 2 1 1
## 691 2 0 1
## 692 2 0 1
## 693 2 0 1
## 694 2 0 1
## 695 2 0 1
## 696 2 0 1
## 697 2 0 1
## 698 2 1 1
## 699 2 0 1
## 700 2 1 1
## 701 2 0 1
## 702 2 0 1
## 703 2 0 1
## 704 2 0 1
## 705 2 0 1
## 706 2 0 1
## 707 2 0 1
## 708 2 0 1
## 709 2 1 1
## 710 2 2 1
## 711 2 0 1
## 712 2 0 1
## 713 2 1 1
## 714 2 0 1
## 715 2 0 1
## 716 2 0 1
## 717 2 1 1
## 718 2 0 1
## 719 2 0 1
## 720 2 0 1
## 721 2 0 1
## 722 2 0 1
## 723 2 0 1
## 724 2 0 1
## 725 1 0 1
## 726 2 0 1
## 727 0 2 1
## 728 2 0 1
## 729 2 0 1
## 730 2 0 1
## 731 2 1 1
## 732 2 0 1
## 733 2 0 1
## 734 2 0 1
## 735 1 0 1
## 736 2 0 1
## 737 2 1 1
## 738 2 1 1
## 739 2 0 1
## 740 2 0 1
## 741 2 1 1
## 742 2 0 1
## 743 2 0 1
## 744 2 0 1
## 745 2 0 1
## 746 2 0 1
## 747 2 0 1
## 748 2 0 1
## 749 2 1 1
## 750 2 1 1
## 751 2 0 1
## 752 3 0 1
## 753 2 0 1
## 754 2 1 1
## 755 2 0 1
## 756 2 2 1
## 757 2 0 1
## 758 2 0 1
## 759 2 0 1
## 760 2 1 1
## 761 2 0 1
## 762 2 1 1
## 763 2 0 1
## 764 2 0 1
## 765 2 0 1
## 766 2 0 1
## 767 2 0 1
## 768 2 2 1
## 769 2 0 1
## 770 2 1 1
## 771 2 0 1
## 772 2 1 1
## 773 2 0 1
## 774 2 0 1
## 775 1 0 1
## 776 2 1 1
## 777 2 0 1
## 778 2 0 1
## 779 2 1 1
## 780 2 0 1
## 781 2 0 1
## 782 2 0 1
## 783 2 1 1
## 784 2 0 1
## 785 2 1 1
## 786 2 0 1
## 787 2 0 1
## 788 2 0 1
## 789 2 0 1
## 790 2 0 1
## 791 2 0 1
## 792 2 0 1
## 793 2 0 1
## 794 3 0 1
## 795 2 0 1
## 796 2 0 1
## 797 2 0 1
## 798 2 0 1
## 799 2 0 1
## 800 2 0 1
## 801 2 0 1
## 802 2 0 1
## 803 2 0 1
## 804 2 1 1
## 805 2 0 1
## 806 2 0 1
## 807 2 0 1
## 808 2 0 1
## 809 2 0 1
## 810 2 0 1
## 811 2 0 1
## 812 2 0 1
## 813 2 1 1
## 814 2 0 1
## 815 2 0 1
## 816 2 0 1
## 817 2 0 1
## 818 2 0 1
## 819 2 0 1
## 820 2 0 1
## 821 2 2 1
## 822 2 0 1
## 823 2 0 1
## 824 2 0 1
## 825 2 0 1
## 826 2 0 1
## 827 2 2 1
## 828 2 0 1
## 829 2 1 1
## 830 2 0 1
## 831 2 0 1
## 832 2 0 1
## 833 2 0 1
## 834 2 1 1
## 835 2 0 1
## 836 2 0 1
## 837 2 0 1
## 838 2 0 1
## 839 2 0 1
## 840 2 0 1
## 841 2 0 1
## 842 2 0 1
## 843 2 1 1
## 844 2 0 1
## 845 2 1 1
## 846 2 2 1
## 847 2 0 1
## 848 2 0 1
## 849 2 0 1
## 850 2 0 1
## 851 2 0 1
## 852 2 0 1
## 853 2 0 1
## 854 2 0 1
## 855 2 0 1
## 856 2 0 1
## 857 2 0 1
## 858 2 0 1
## 859 2 0 1
## 860 2 0 1
## 861 2 0 1
## 862 2 0 1
## 863 2 0 1
## 864 2 1 1
## 865 2 0 1
## 866 2 0 1
## 867 2 0 1
## 868 2 0 1
## 869 2 0 1
## 870 2 0 1
## 871 2 0 1
## 872 2 1 1
## 873 2 1 1
## 874 1 0 1
## 875 2 0 1
## 876 2 0 1
## 877 2 0 1
## 878 2 0 1
## 879 2 0 1
## 880 3 0 1
## 881 2 0 1
## 882 2 0 1
## 883 2 0 1
## 884 2 0 1
## 885 2 0 1
## 886 2 0 1
## 887 2 0 1
## 888 2 0 1
## 889 2 0 1
## 890 2 0 1
## 891 2 0 1
## 892 2 0 1
## 893 2 0 1
## 894 2 1 1
## 895 3 0 1
## 896 2 0 1
## 897 2 0 1
## 898 2 1 1
## 899 2 0 1
## 900 2 0 1
## 901 2 0 1
## 902 2 0 1
## 903 2 1 1
## 904 2 0 1
## 905 2 1 1
## 906 2 1 1
## 907 2 0 1
## 908 2 0 1
## 909 2 0 1
## 910 2 1 1
## 911 2 2 1
## 912 2 0 1
## 913 2 0 1
## 914 2 0 1
## 915 2 0 1
## 916 2 0 1
## 917 2 1 1
## 918 2 0 0
## 919 2 0 0
## 920 1 0 0
## 921 1 0 0
## 922 2 0 0
## 923 2 0 0
## 924 2 0 0
## 925 2 0 0
## 926 2 0 0
## 927 2 0 0
## 928 2 0 0
## 929 2 0 0
## 930 2 0 0
## 931 2 1 0
## 932 2 0 0
## 933 2 0 0
## 934 2 0 0
## 935 2 0 0
## 936 2 0 0
## 937 2 0 0
## 938 1 0 0
## 939 2 0 0
## 940 2 0 0
## 941 2 0 0
## 942 2 0 0
## 943 2 0 0
## 944 2 0 0
## 945 2 0 0
## 946 2 0 0
## 947 2 0 0
## 948 1 0 0
## 949 2 0 0
## 950 2 0 0
## 951 2 0 0
## 952 3 0 0
## 953 3 0 0
## 954 2 0 0
## 955 3 0 0
## 956 3 0 0
## 957 2 0 0
## 958 2 0 0
## 959 2 0 0
## 960 2 0 0
## 961 2 0 0
## 962 2 0 0
## 963 2 2 0
## 964 2 0 0
## 965 2 0 0
## 966 2 0 0
## 967 2 0 0
## 968 2 0 0
## 969 2 0 0
## 970 2 0 0
## 971 2 0 0
## 972 2 0 0
## 973 2 2 0
## 974 2 0 0
## 975 2 0 0
## 976 2 0 0
## 977 2 0 0
## 978 2 0 0
## 979 2 0 0
## 980 2 0 0
## 981 2 0 0
## 982 2 0 0
## 983 2 2 0
## 984 2 0 0
## 985 2 0 0
## 986 3 0 0
## 987 2 0 0
## 988 2 0 0
## 989 2 0 0
## 990 2 0 0
## 991 2 0 0
## 992 3 0 0
## 993 2 0 0
## 994 2 0 0
## 995 1 0 0
## 996 2 0 0
## 997 3 0 0
## 998 2 0 0
## 999 2 0 0
## 1000 2 0 0
## 1001 2 0 0
## 1002 2 0 0
## 1003 2 0 0
## 1004 2 0 0
## 1005 2 1 0
## 1006 2 0 0
## 1007 2 0 0
## 1008 2 0 0
## 1009 2 0 0
## 1010 2 0 0
## 1011 2 0 0
## 1012 2 0 0
## 1013 2 0 0
## 1014 2 0 0
## 1015 3 0 0
## 1016 2 1 0
## 1017 2 0 0
## 1018 2 0 0
## 1019 2 0 0
## 1020 1 2 0
## 1021 2 0 0
## 1022 2 0 0
## 1023 2 2 0
## 1024 3 0 0
## 1025 2 0 0
## 1026 2 0 0
## 1027 2 0 0
## 1028 2 0 0
## 1029 3 0 0
## 1030 2 0 0
## 1031 2 0 0
## 1032 2 0 0
## 1033 2 0 0
## 1034 2 1 0
## 1035 2 2 0
## 1036 2 0 0
## 1037 1 0 0
## 1038 1 0 0
## 1039 2 0 0
## 1040 2 0 0
## 1041 4 0 0
## 1042 2 0 0
## 1043 2 0 0
## 1044 2 0 0
## 1045 2 0 0
## 1046 2 0 0
## 1047 2 0 0
## 1048 2 0 0
## 1049 2 0 0
## 1050 1 0 0
## 1051 1 0 0
## 1052 2 0 0
## 1053 1 0 0
## 1054 2 0 0
## 1055 2 0 0
## 1056 3 0 0
## 1057 2 0 0
## 1058 2 0 0
## 1059 2 1 0
## 1060 2 0 0
## 1061 2 0 0
## 1062 2 0 0
## 1063 2 0 0
## 1064 2 2 0
## 1065 2 0 0
## 1066 2 2 0
## 1067 2 0 0
## 1068 2 0 0
## 1069 2 0 0
## 1070 2 2 0
## 1071 2 0 0
## 1072 3 0 0
## 1073 2 0 0
## 1074 1 0 0
## 1075 2 0 0
## 1076 2 2 0
## 1077 2 0 0
## 1078 2 0 0
## 1079 3 0 0
## 1080 2 2 0
## 1081 3 0 0
## 1082 2 0 0
## 1083 1 0 0
## 1084 2 1 0
## 1085 2 0 0
## 1086 2 0 0
## 1087 2 0 0
## 1088 2 0 0
## 1089 2 0 0
## 1090 2 0 0
## 1091 2 0 0
## 1092 2 0 0
## 1093 2 0 0
## 1094 2 0 0
## 1095 2 2 0
## 1096 1 0 0
## 1097 2 0 0
## 1098 2 0 0
## 1099 2 0 0
## 1100 2 0 0
## 1101 2 0 0
## 1102 2 0 0
## 1103 2 0 0
## 1104 1 0 0
## 1105 2 0 0
## 1106 2 0 0
## 1107 2 0 0
## 1108 2 0 0
## 1109 2 0 0
## 1110 2 1 0
## 1111 2 0 0
## 1112 2 0 0
## 1113 1 0 0
## 1114 3 0 0
## 1115 1 0 0
## 1116 3 2 0
## 1117 2 0 0
## 1118 3 0 0
## 1119 2 0 0
## 1120 2 0 0
## 1121 2 0 0
## 1122 2 0 0
## 1123 2 0 0
## 1124 2 0 0
## 1125 2 0 0
## 1126 2 0 0
## 1127 2 0 0
## 1128 2 0 0
## 1129 2 0 0
## 1130 2 0 0
## 1131 2 0 0
## 1132 1 0 0
## 1133 2 0 0
## 1134 2 0 0
## 1135 2 0 0
## 1136 2 0 0
## 1137 2 0 0
## 1138 2 1 0
## 1139 2 0 0
## 1140 2 0 0
## 1141 2 0 0
## 1142 3 0 0
## 1143 3 0 0
## 1144 2 0 0
## 1145 2 2 0
## 1146 3 0 0
## 1147 2 2 0
## 1148 2 0 0
## 1149 2 2 0
## 1150 2 2 0
## 1151 2 0 0
## 1152 2 0 0
## 1153 1 0 0
## 1154 2 0 0
## 1155 2 0 0
## 1156 2 0 0
## 1157 2 0 0
## 1158 2 0 0
## 1159 2 0 0
## 1160 2 0 0
## 1161 2 0 0
## 1162 2 0 0
## 1163 2 0 0
## 1164 2 0 0
## 1165 2 0 0
## 1166 2 0 0
## 1167 2 0 0
## 1168 2 1 0
## 1169 2 0 0
## 1170 2 0 0
## 1171 2 0 0
## 1172 2 0 0
## 1173 2 0 0
## 1174 2 0 0
## 1175 2 0 0
## 1176 2 0 0
## 1177 2 0 0
## 1178 2 2 0
## 1179 2 0 0
## 1180 2 0 0
## 1181 2 0 0
## 1182 2 0 0
## 1183 1 0 0
## 1184 2 1 0
## 1185 3 1 0
## 1186 2 0 0
## 1187 2 0 0
## 1188 2 0 0
## 1189 2 1 0
## 1190 2 0 0
## 1191 2 1 0
## 1192 2 0 0
## 1193 2 0 0
## 1194 3 0 0
## 1195 2 0 0
## 1196 2 0 0
## 1197 2 0 0
## 1198 2 0 0
## 1199 2 0 0
## 1200 2 0 0
## 1201 1 0 0
## 1202 2 0 0
## 1203 2 0 0
## 1204 2 0 0
## 1205 2 0 0
## 1206 2 0 0
## 1207 2 0 0
## 1208 2 0 0
## 1209 2 0 0
## 1210 2 0 0
## 1211 2 0 0
## 1212 2 0 0
## 1213 2 2 0
## 1214 2 0 0
## 1215 2 0 0
## 1216 2 0 0
## 1217 2 2 0
## 1218 2 0 0
## 1219 2 1 0
## 1220 2 0 0
## 1221 2 0 0
## 1222 2 0 0
## 1223 2 0 0
## 1224 3 1 0
## 1225 2 0 0
## 1226 2 0 0
## 1227 2 0 0
## 1228 2 0 0
## 1229 2 0 0
## 1230 2 0 0
## 1231 2 0 0
## 1232 2 0 0
## 1233 2 0 0
## 1234 2 0 0
## 1235 2 0 0
## 1236 2 10 0
## 1237 2 0 0
## 1238 2 0 0
## 1239 2 2 0
## 1240 2 0 0
## 1241 2 0 0
## 1242 2 0 0
## 1243 2 0 0
## 1244 2 0 0
## 1245 2 0 0
## 1246 2 0 0
## 1247 2 0 0
## 1248 2 2 0
## 1249 2 0 0
## 1250 2 0 0
## 1251 2 2 0
## 1252 2 0 0
## 1253 2 0 0
## 1254 2 0 0
## 1255 2 0 0
## 1256 2 0 0
## 1257 2 0 0
## 1258 2 0 0
## 1259 2 0 0
## 1260 4 0 0
## 1261 2 0 0
## 1262 2 0 0
## 1263 2 0 0
## 1264 2 0 0
## 1265 2 0 0
## 1266 2 0 0
## 1267 2 0 0
## 1268 2 0 0
## 1269 1 0 0
## 1270 2 0 0
## 1271 2 0 0
## 1272 2 0 0
## 1273 2 0 0
## 1274 2 0 0
## 1275 2 0 0
## 1276 2 0 0
## 1277 2 0 0
## 1278 2 0 0
## 1279 3 0 0
## 1280 2 0 0
## 1281 2 0 0
## 1282 1 0 0
## 1283 2 0 0
## 1284 2 0 0
## 1285 2 0 0
## 1286 2 1 0
## 1287 2 0 0
## 1288 2 0 0
## 1289 2 0 0
## 1290 2 0 0
## 1291 2 0 0
## 1292 2 0 0
## 1293 1 0 0
## 1294 2 0 0
## 1295 2 0 0
## 1296 2 0 0
## 1297 2 0 0
## 1298 2 0 0
## 1299 2 0 0
## 1300 2 0 0
## 1301 2 1 0
## 1302 2 2 0
## 1303 1 0 0
## 1304 2 0 0
## 1305 2 0 0
## 1306 2 0 0
## 1307 2 0 0
## 1308 2 0 0
## 1309 2 0 0
## 1310 2 0 0
## 1311 2 0 0
## 1312 3 0 0
## 1313 1 0 0
## 1314 2 0 0
## 1315 2 0 0
## 1316 2 0 0
## 1317 2 0 0
## 1318 2 2 0
## 1319 2 0 0
## 1320 2 0 0
## 1321 2 0 0
## 1322 2 0 0
## 1323 2 0 0
## 1324 2 2 0
## 1325 2 0 0
## 1326 1 0 0
## 1327 2 0 0
## 1328 2 0 0
## 1329 3 0 0
## 1330 1 0 0
## 1331 2 0 0
## 1332 2 0 0
## 1333 3 0 0
## 1334 1 0 0
## 1335 2 0 0
## 1336 2 0 0
## 1337 2 0 0
## 1338 2 0 0
## 1339 2 0 0
## 1340 2 2 0
## 1341 2 0 0
## 1342 2 0 0
## 1343 1 0 0
## 1344 2 0 0
## 1345 2 2 0
## 1346 2 2 0
## 1347 2 0 0
## 1348 2 1 0
## 1349 2 0 0
## 1350 2 0 0
## 1351 2 0 0
## 1352 2 0 0
## 1353 2 0 0
## 1354 2 0 0
## 1355 2 0 0
## 1356 2 0 0
## 1357 1 0 0
## 1358 2 0 0
## 1359 2 0 0
## 1360 2 0 0
## 1361 2 0 0
## 1362 2 0 0
## 1363 2 0 0
## 1364 1 0 0
## 1365 2 0 0
## 1366 2 0 0
## 1367 2 0 0
## 1368 2 0 0
## 1369 2 0 0
## 1370 2 0 0
## 1371 2 0 0
## 1372 2 0 0
## 1373 2 0 0
## 1374 2 0 0
## 1375 2 0 0
## 1376 2 0 0
## 1377 2 0 0
## 1378 1 0 0
## 1379 2 0 0
## 1380 2 0 0
## 1381 2 1 0
## 1382 2 0 0
## 1383 1 0 0
## 1384 2 0 0
## 1385 1 0 0
## 1386 1 0 0
## 1387 2 0 0
## 1388 3 1 0
## 1389 2 0 0
## 1390 2 2 0
## 1391 2 0 0
## 1392 2 2 0
## 1393 2 0 0
## 1394 2 0 0
## 1395 2 0 0
## 1396 2 0 0
## 1397 2 0 0
## 1398 2 0 0
## 1399 3 0 0
## 1400 2 0 0
## 1401 2 0 0
## 1402 2 1 0
## 1403 2 1 0
## 1404 2 0 0
## 1405 2 0 0
## 1406 2 0 0
## 1407 2 0 0
## 1408 2 0 0
## 1409 2 0 0
## 1410 2 0 0
## 1411 2 1 0
## 1412 2 0 0
## 1413 3 0 0
## 1414 2 0 0
## 1415 2 0 0
## 1416 2 1 0
## 1417 2 2 0
## 1418 2 0 0
## 1419 2 0 0
## 1420 2 0 0
## 1421 2 0 0
## 1422 2 0 0
## 1423 2 2 0
## 1424 2 0 0
## 1425 2 0 0
## 1426 2 0 0
## 1427 2 2 0
## 1428 1 2 0
## 1429 1 0 0
## 1430 2 1 0
## 1431 2 0 0
## 1432 2 0 0
## 1433 2 0 0
## 1434 2 0 0
## 1435 2 0 0
## 1436 2 0 0
## 1437 2 0 0
## 1438 2 0 0
## 1439 2 0 0
## 1440 2 0 0
## 1441 2 0 0
## 1442 2 0 0
## 1443 2 0 0
## 1444 2 0 0
## 1445 2 0 0
## 1446 2 0 0
## 1447 2 0 0
## 1448 2 0 0
## 1449 2 0 0
## 1450 2 0 0
## 1451 2 0 0
## 1452 1 0 0
## 1453 2 0 0
## 1454 2 2 0
## 1455 2 0 0
## 1456 2 0 0
## 1457 2 0 0
## 1458 2 0 0
## 1459 2 0 0
## 1460 2 0 0
## 1461 2 1 0
## 1462 2 2 0
## 1463 2 0 0
## 1464 2 0 0
## 1465 2 0 0
## 1466 2 2 0
## 1467 2 0 0
## 1468 2 0 0
## 1469 1 0 0
## 1470 2 2 0
## 1471 1 0 0
## 1472 2 0 0
## 1473 2 0 0
## 1474 2 0 0
## 1475 2 0 0
## 1476 2 0 0
## 1477 2 0 0
## 1478 2 0 0
## 1479 2 2 0
## 1480 2 0 0
## 1481 2 0 0
## 1482 2 2 0
## 1483 2 0 0
## 1484 2 0 0
## 1485 2 0 0
## 1486 2 1 0
## 1487 2 2 0
## 1488 2 0 0
## 1489 2 0 0
## 1490 2 1 0
## 1491 2 0 0
## 1492 2 1 0
## 1493 2 0 0
## 1494 2 0 0
## 1495 2 1 0
## 1496 2 0 0
## 1497 2 0 0
## 1498 2 0 0
## 1499 2 0 0
## 1500 2 0 0
## 1501 1 0 0
## 1502 2 0 0
## 1503 2 2 0
## 1504 2 0 0
## 1505 3 0 0
## 1506 3 0 0
## 1507 2 0 0
## 1508 3 0 0
## 1509 2 0 0
## 1510 2 1 0
## 1511 2 0 0
## 1512 2 0 0
## 1513 2 0 0
## 1514 2 0 0
## 1515 2 1 0
## 1516 2 2 0
## 1517 2 0 0
## 1518 2 0 0
## 1519 2 2 0
## 1520 2 0 0
## 1521 2 0 0
## 1522 2 0 0
## 1523 1 0 0
## 1524 2 0 0
## 1525 2 0 0
## 1526 2 0 0
## 1527 2 0 0
## 1528 2 2 0
## 1529 2 0 0
## 1530 2 0 0
## 1531 2 0 0
## 1532 2 0 0
## 1533 3 0 0
## 1534 2 0 0
## 1535 2 0 0
## 1536 2 0 0
## 1537 2 0 0
## 1538 2 0 0
## 1539 2 0 0
## 1540 2 0 0
## 1541 2 0 0
## 1542 2 2 0
## 1543 2 0 0
## 1544 2 0 0
## 1545 2 0 0
## 1546 2 0 0
## 1547 3 0 0
## 1548 2 0 0
## 1549 2 0 0
## 1550 2 0 0
## 1551 2 0 0
## 1552 2 0 0
## 1553 2 0 0
## 1554 2 0 0
## 1555 2 0 0
## 1556 2 0 0
## 1557 2 0 0
## 1558 2 0 0
## 1559 2 0 0
## 1560 2 2 0
## 1561 2 0 0
## 1562 2 0 0
## 1563 2 0 0
## 1564 2 0 0
## 1565 3 0 0
## 1566 2 1 0
## 1567 2 0 0
## 1568 2 0 0
## 1569 2 0 0
## 1570 2 0 0
## 1571 2 0 0
## 1572 2 0 0
## 1573 2 0 0
## 1574 2 0 0
## 1575 2 0 0
## 1576 2 0 0
## 1577 2 0 0
## 1578 2 0 0
## 1579 2 0 0
## 1580 2 1 0
## 1581 2 0 0
## 1582 2 0 0
## 1583 2 2 0
## 1584 2 2 0
## 1585 2 0 0
## 1586 2 0 0
## 1587 2 0 0
## 1588 2 0 0
## 1589 2 0 0
## 1590 2 0 0
## 1591 2 0 0
## 1592 2 0 0
## 1593 2 0 0
## 1594 2 0 0
## 1595 1 0 0
## 1596 3 0 0
## 1597 2 0 0
## 1598 2 0 0
## 1599 1 0 0
## 1600 2 0 0
## 1601 2 0 0
## 1602 2 0 0
## 1603 2 0 0
## 1604 2 0 0
## 1605 2 1 0
## 1606 3 0 0
## 1607 2 0 0
## 1608 2 0 0
## 1609 2 0 0
## 1610 2 0 0
## 1611 2 0 0
## 1612 2 1 0
## 1613 2 0 0
## 1614 3 0 0
## 1615 2 1 0
## 1616 2 0 0
## 1617 2 2 0
## 1618 2 0 0
## 1619 2 0 0
## 1620 2 0 0
## 1621 2 0 0
## 1622 2 0 0
## 1623 2 0 0
## 1624 2 2 0
## 1625 2 0 0
## 1626 2 2 0
## 1627 1 0 0
## 1628 2 0 0
## 1629 2 0 0
## 1630 2 0 0
## 1631 2 0 0
## 1632 2 0 0
## 1633 2 0 0
## 1634 2 0 0
## 1635 2 0 0
## 1636 2 0 0
## 1637 2 0 0
## 1638 2 0 0
## 1639 2 1 0
## 1640 2 0 0
## 1641 2 0 0
## 1642 2 0 0
## 1643 2 0 0
## 1644 2 1 0
## 1645 2 0 0
## 1646 2 0 0
## 1647 2 0 0
## 1648 2 0 0
## 1649 2 0 0
## 1650 2 0 0
## 1651 2 0 0
## 1652 3 0 0
## 1653 2 0 0
## 1654 2 0 0
## 1655 2 0 0
## 1656 2 0 0
## 1657 2 0 0
## 1658 2 0 0
## 1659 2 0 0
## 1660 2 0 0
## 1661 2 1 0
## 1662 2 1 0
## 1663 2 0 0
## 1664 2 2 0
## 1665 2 0 0
## 1666 2 0 0
## 1667 2 0 0
## 1668 2 0 0
## 1669 2 0 0
## 1670 2 0 0
## 1671 2 0 0
## 1672 2 0 0
## 1673 2 0 0
## 1674 2 0 0
## 1675 2 0 0
## 1676 2 0 0
## 1677 2 0 0
## 1678 2 0 0
## 1679 2 0 0
## 1680 2 0 0
## 1681 3 0 0
## 1682 2 0 0
## 1683 2 2 0
## 1684 2 0 0
## 1685 2 0 0
## 1686 2 0 0
## 1687 2 0 0
## 1688 2 0 0
## 1689 2 0 0
## 1690 2 0 0
## 1691 2 0 0
## 1692 2 0 0
## 1693 2 0 0
## 1694 2 0 0
## 1695 2 0 0
## 1696 1 0 0
## 1697 1 0 0
## 1698 2 0 0
## 1699 2 0 0
## 1700 3 1 0
## 1701 2 0 0
## 1702 2 0 0
## 1703 2 0 0
## 1704 2 2 0
## 1705 2 1 0
## 1706 2 0 0
## 1707 2 0 0
## 1708 2 0 0
## 1709 2 0 0
## 1710 2 0 0
## 1711 2 0 0
## 1712 2 0 0
## 1713 2 0 0
## 1714 2 0 0
## 1715 1 0 0
## 1716 2 0 0
## 1717 2 2 0
## 1718 2 0 0
## 1719 2 0 0
## 1720 2 0 0
## 1721 1 0 0
## 1722 2 0 0
## 1723 2 0 0
## 1724 2 0 0
## 1725 2 0 0
## 1726 2 0 0
## 1727 2 0 0
## 1728 2 0 0
## 1729 2 2 0
## 1730 2 0 0
## 1731 2 0 0
## 1732 2 0 0
## 1733 2 0 0
## 1734 2 0 0
## 1735 2 0 0
## 1736 2 0 0
## 1737 1 0 0
## 1738 2 2 0
## 1739 2 0 0
## 1740 1 0 0
## 1741 2 0 0
## 1742 2 0 0
## 1743 2 0 0
## 1744 2 0 0
## 1745 2 0 0
## 1746 2 0 0
## 1747 2 0 0
## 1748 2 0 0
## 1749 2 0 0
## 1750 2 0 0
## 1751 2 2 0
## 1752 2 0 0
## 1753 2 0 0
## 1754 2 2 0
## 1755 2 0 0
## 1756 2 0 0
## 1757 2 2 0
## 1758 2 2 0
## 1759 2 0 0
## 1760 2 0 0
## 1761 2 0 0
## 1762 2 1 0
## 1763 3 0 0
## 1764 2 0 0
## 1765 2 0 0
## 1766 2 0 0
## 1767 2 2 0
## 1768 2 1 0
## 1769 2 2 0
## 1770 1 0 0
## 1771 2 0 0
## 1772 2 0 0
## 1773 2 0 0
## 1774 2 0 0
## 1775 3 0 0
## 1776 2 1 0
## 1777 2 0 0
## 1778 2 0 0
## 1779 2 0 0
## 1780 2 0 0
## 1781 2 0 0
## 1782 2 0 0
## 1783 2 2 0
## 1784 2 0 0
## 1785 2 0 0
## 1786 2 0 0
## 1787 2 0 0
## 1788 2 2 0
## 1789 2 0 0
## 1790 1 0 0
## 1791 2 0 0
## 1792 2 0 0
## 1793 2 0 0
## 1794 2 0 0
## 1795 2 0 0
## 1796 1 0 0
## 1797 2 0 0
## 1798 2 0 0
## 1799 2 0 0
## 1800 2 0 0
## 1801 2 0 0
## 1802 2 0 0
## 1803 2 0 0
## 1804 2 0 0
## 1805 2 0 0
## 1806 3 0 0
## 1807 2 0 0
## 1808 2 0 0
## 1809 2 0 0
## 1810 2 0 0
## 1811 2 0 0
## 1812 2 0 0
## 1813 2 0 0
## 1814 2 0 0
## 1815 2 0 0
## 1816 2 0 0
## 1817 3 0 0
## 1818 2 0 0
## 1819 1 0 0
## 1820 2 0 0
## 1821 2 0 0
## 1822 2 0 0
## 1823 2 2 0
## 1824 2 0 0
## 1825 2 0 0
## 1826 2 0 0
## 1827 3 0 0
## 1828 2 0 0
## 1829 2 0 0
## 1830 2 0 0
## 1831 3 1 0
## 1832 2 0 0
## 1833 2 0 0
## 1834 2 2 0
## 1835 2 1 0
## 1836 2 0 0
## 1837 2 0 0
## 1838 2 0 0
## 1839 2 0 0
## 1840 2 0 0
## 1841 2 2 0
## 1842 2 0 0
## 1843 2 0 0
## 1844 2 0 0
## 1845 2 0 0
## 1846 2 0 0
## 1847 2 0 0
## 1848 2 2 0
## 1849 2 0 0
## 1850 2 0 0
## 1851 2 0 0
## 1852 2 0 0
## 1853 2 0 0
## 1854 2 0 0
## 1855 2 0 0
## 1856 2 0 0
## 1857 2 0 0
## 1858 2 2 0
## 1859 2 0 0
## 1860 2 0 0
## 1861 2 0 0
## 1862 2 0 0
## 1863 2 0 0
## 1864 2 0 0
## 1865 2 0 0
## 1866 2 0 0
## 1867 2 0 0
## 1868 2 2 0
## 1869 2 2 0
## 1870 2 2 0
## 1871 2 0 0
## 1872 2 0 0
## 1873 2 0 0
## 1874 2 0 0
## 1875 2 0 0
## 1876 2 0 0
## 1877 2 0 0
## 1878 1 0 0
## 1879 2 0 0
## 1880 2 0 0
## 1881 2 0 0
## 1882 2 0 0
## 1883 2 1 0
## 1884 2 0 0
## 1885 2 0 0
## 1886 2 0 0
## 1887 2 0 0
## 1888 2 0 0
## 1889 1 0 0
## 1890 2 0 0
## 1891 2 0 0
## 1892 2 0 0
## 1893 2 0 0
## 1894 2 0 0
## 1895 2 0 0
## 1896 2 2 0
## 1897 2 0 0
## 1898 2 0 0
## 1899 2 0 0
## 1900 2 0 0
## 1901 1 0 0
## 1902 2 0 0
## 1903 2 1 0
## 1904 2 0 0
## 1905 2 0 0
## 1906 2 0 0
## 1907 2 0 0
## 1908 2 0 0
## 1909 2 0 0
## 1910 2 0 0
## 1911 2 0 0
## 1912 2 0 0
## 1913 2 0 0
## 1914 2 0 0
## 1915 2 1 0
## 1916 2 0 0
## 1917 2 2 0
## 1918 4 0 0
## 1919 2 0 0
## 1920 2 0 0
## 1921 2 0 0
## 1922 2 0 0
## 1923 2 0 0
## 1924 2 0 0
## 1925 2 0 0
## 1926 2 0 0
## 1927 2 0 0
## 1928 2 0 0
## 1929 2 0 0
## 1930 1 0 0
## 1931 2 0 0
## 1932 2 0 0
## 1933 2 0 0
## 1934 1 1 0
## 1935 2 0 0
## 1936 2 0 0
## 1937 2 0 0
## 1938 3 0 0
## 1939 2 0 0
## 1940 2 0 0
## 1941 2 0 0
## 1942 2 0 0
## 1943 2 0 0
## 1944 2 0 0
## 1945 2 0 0
## 1946 2 0 0
## 1947 2 1 0
## 1948 2 1 0
## 1949 2 0 0
## 1950 2 2 0
## 1951 2 0 0
## 1952 2 0 0
## 1953 1 0 0
## 1954 2 0 0
## 1955 2 0 0
## 1956 2 0 0
## 1957 2 0 0
## 1958 2 0 0
## 1959 2 0 0
## 1960 2 0 0
## 1961 1 0 0
## 1962 2 0 0
## 1963 2 0 0
## 1964 2 0 0
## 1965 2 0 0
## 1966 2 0 0
## 1967 2 0 0
## 1968 3 0 0
## 1969 2 0 0
## 1970 2 0 0
## 1971 2 0 0
## 1972 2 0 0
## 1973 2 0 0
## 1974 2 0 0
## 1975 2 0 0
## 1976 2 0 0
## 1977 2 0 0
## 1978 2 0 0
## 1979 2 0 0
## 1980 1 0 0
## 1981 2 1 0
## 1982 1 0 0
## 1983 2 0 0
## 1984 2 0 0
## 1985 2 2 0
## 1986 2 0 0
## 1987 2 0 0
## 1988 2 0 0
## 1989 2 0 0
## 1990 3 0 0
## 1991 2 0 0
## 1992 2 2 0
## 1993 2 0 0
## 1994 2 0 0
## 1995 3 0 0
## 1996 2 0 0
## 1997 2 0 0
## 1998 2 0 0
## 1999 2 0 0
## 2000 2 0 0
## 2001 2 0 0
## 2002 3 0 0
## 2003 2 1 0
## 2004 2 0 0
## 2005 2 0 0
## 2006 2 0 0
## 2007 2 2 0
## 2008 2 0 0
## 2009 2 0 0
## 2010 2 0 0
## 2011 2 2 0
## 2012 2 0 0
## 2013 2 0 0
## 2014 3 0 0
## 2015 3 0 0
## 2016 2 0 0
## 2017 2 0 0
## 2018 2 0 0
## 2019 2 0 0
## 2020 3 0 0
## 2021 2 0 0
## 2022 2 0 0
## 2023 3 0 0
## 2024 2 0 0
## 2025 2 0 0
## 2026 2 0 0
## 2027 2 0 0
## 2028 2 0 0
## 2029 2 1 0
## 2030 2 0 0
## 2031 2 0 0
## 2032 2 0 0
## 2033 3 1 0
## 2034 2 0 0
## 2035 2 0 0
## 2036 2 1 0
## 2037 2 0 0
## 2038 2 0 0
## 2039 2 0 0
## 2040 1 0 0
## 2041 1 0 0
## 2042 2 0 0
## 2043 1 0 0
## 2044 1 0 0
## 2045 2 0 0
## 2046 2 0 0
## 2047 1 0 0
## 2048 1 0 0
## 2049 2 0 0
## 2050 2 0 0
## 2051 2 0 0
## 2052 2 0 0
## 2053 2 0 0
## 2054 2 0 0
## 2055 2 0 0
## 2056 2 0 0
## 2057 2 0 0
## 2058 2 0 0
## 2059 2 1 0
## 2060 2 0 0
## 2061 2 0 0
## 2062 2 0 0
## 2063 2 2 0
## 2064 2 0 0
## 2065 2 2 0
## 2066 2 0 0
## 2067 2 0 0
## 2068 2 0 0
## 2069 2 0 0
## 2070 3 0 0
## 2071 3 0 0
## 2072 2 0 0
## 2073 2 1 0
## 2074 2 0 0
## 2075 2 0 0
## 2076 2 1 0
## 2077 2 0 0
## 2078 2 0 0
## 2079 2 0 0
## 2080 1 0 0
## 2081 2 0 0
## 2082 2 0 0
## 2083 2 0 0
## 2084 2 0 0
## 2085 2 0 0
## 2086 2 0 0
## 2087 2 0 0
## 2088 2 0 0
## 2089 2 0 0
## 2090 2 0 0
## 2091 2 0 0
## 2092 2 0 0
## 2093 2 2 0
## 2094 2 1 0
## 2095 2 2 0
## 2096 2 0 0
## 2097 2 0 0
## 2098 2 0 0
## 2099 3 0 0
## 2100 2 2 0
## 2101 2 1 0
## 2102 2 0 0
## 2103 2 2 0
## 2104 3 0 0
## 2105 3 0 0
## 2106 2 0 0
## 2107 2 1 0
## 2108 2 0 0
## 2109 2 0 0
## 2110 3 0 0
## 2111 1 0 0
## 2112 2 0 0
## 2113 2 0 0
## 2114 2 0 0
## 2115 2 0 0
## 2116 2 0 0
## 2117 2 0 0
## 2118 2 0 0
## 2119 2 0 0
## 2120 2 0 0
## 2121 2 0 0
## 2122 1 0 0
## 2123 2 0 0
## 2124 3 1 0
## 2125 3 0 0
## 2126 2 0 0
## 2127 2 0 0
## 2128 2 0 0
## 2129 2 0 0
## 2130 2 0 0
## 2131 2 0 0
## 2132 2 0 0
## 2133 2 0 0
## 2134 2 0 0
## 2135 2 0 0
## 2136 2 0 0
## 2137 2 0 0
## 2138 2 0 0
## 2139 2 0 0
## 2140 2 0 0
## 2141 2 0 0
## 2142 2 0 0
## 2143 2 0 0
## 2144 2 0 0
## 2145 3 0 0
## 2146 2 0 0
## 2147 2 0 0
## 2148 3 0 0
## 2149 2 0 0
## 2150 2 0 0
## 2151 2 0 0
## 2152 2 0 0
## 2153 2 0 0
## 2154 2 1 0
## 2155 2 0 0
## 2156 2 0 0
## 2157 2 0 0
## 2158 2 0 0
## 2159 2 0 0
## 2160 2 0 0
## 2161 2 0 0
## 2162 2 0 0
## 2163 2 0 0
## 2164 3 0 0
## 2165 2 0 0
## 2166 2 1 0
## 2167 2 0 0
## 2168 2 0 0
## 2169 2 0 0
## 2170 2 0 0
## 2171 2 0 0
## 2172 2 0 0
## 2173 2 1 0
## 2174 2 0 0
## 2175 2 0 0
## 2176 2 0 0
## 2177 2 0 0
## 2178 2 0 0
## 2179 2 1 0
## 2180 2 0 0
## 2181 2 1 0
## 2182 2 2 0
## 2183 2 0 0
## 2184 2 0 0
## 2185 2 0 0
## 2186 3 1 0
## 2187 2 0 0
## 2188 2 0 0
## 2189 2 0 0
## 2190 2 2 0
## 2191 3 1 0
## 2192 1 0 0
## 2193 2 0 0
## 2194 2 0 0
## 2195 2 0 0
## 2196 2 0 0
## 2197 2 0 0
## 2198 2 0 0
## 2199 2 0 0
## 2200 2 0 0
## 2201 2 0 0
## 2202 1 0 0
## 2203 1 1 0
## 2204 2 2 0
## 2205 1 0 0
## 2206 2 0 0
## 2207 3 0 0
## 2208 2 0 0
## 2209 2 0 0
## 2210 2 0 0
## 2211 2 0 0
## 2212 2 0 0
## 2213 2 0 0
## 2214 2 0 0
## 2215 2 0 0
## 2216 2 0 0
## 2217 3 0 0
## 2218 2 2 0
## 2219 2 0 0
## 2220 1 1 0
## 2221 1 0 0
## 2222 1 0 0
## 2223 2 0 0
## 2224 2 0 0
## 2225 3 0 0
## 2226 2 0 0
## 2227 2 0 0
## 2228 2 0 0
## 2229 2 0 0
## 2230 2 0 0
## 2231 2 0 0
## 2232 1 0 0
## 2233 2 0 0
## 2234 2 0 0
## 2235 2 2 0
## 2236 2 0 0
## 2237 1 0 0
## 2238 2 0 0
## 2239 2 2 0
## 2240 2 0 0
## 2241 2 0 0
## 2242 2 0 0
## 2243 2 0 0
## 2244 2 0 0
## 2245 2 0 0
## 2246 2 0 0
## 2247 2 0 0
## 2248 2 2 0
## 2249 2 0 0
## 2250 2 0 0
## 2251 2 0 0
## 2252 2 0 0
## 2253 2 0 0
## 2254 2 0 0
## 2255 2 0 0
## 2256 2 0 0
## 2257 2 0 0
## 2258 2 0 0
## 2259 2 0 0
## 2260 2 0 0
## 2261 2 0 0
## 2262 2 0 0
## 2263 2 0 0
## 2264 2 0 0
## 2265 2 0 0
## 2266 2 1 0
## 2267 2 0 0
## 2268 2 0 0
## 2269 2 0 0
## 2270 2 0 0
## 2271 2 1 0
## 2272 2 0 0
## 2273 2 0 0
## 2274 3 0 0
## 2275 2 0 0
## 2276 2 0 0
## 2277 2 1 0
## 2278 2 0 0
## 2279 2 2 0
## 2280 2 0 0
## 2281 2 2 0
## 2282 2 0 0
## 2283 2 0 0
## 2284 2 0 0
## 2285 2 0 0
## 2286 2 1 0
## 2287 2 0 0
## 2288 2 0 0
## 2289 2 0 0
## 2290 2 0 0
## 2291 2 0 0
## 2292 2 0 0
## 2293 2 0 0
## 2294 2 0 0
## 2295 2 0 0
## 2296 2 1 0
## 2297 2 0 0
## 2298 2 2 0
## 2299 2 0 0
## 2300 2 0 0
## 2301 2 0 0
## 2302 2 0 0
## 2303 2 0 0
## 2304 2 2 0
## 2305 2 0 0
## 2306 2 0 0
## 2307 2 0 0
## 2308 2 0 0
## 2309 2 0 0
## 2310 2 0 0
## 2311 1 0 0
## 2312 2 0 0
## 2313 2 0 0
## 2314 2 0 0
## 2315 2 0 0
## 2316 2 0 0
## 2317 2 0 0
## 2318 2 0 0
## 2319 2 0 0
## 2320 3 0 0
## 2321 2 0 0
## 2322 2 0 0
## 2323 2 0 0
## 2324 2 0 0
## 2325 2 0 0
## 2326 2 0 0
## 2327 2 0 0
## 2328 2 0 0
## 2329 2 0 0
## 2330 2 0 0
## 2331 2 0 0
## 2332 2 0 0
## 2333 2 0 0
## 2334 2 0 0
## 2335 2 0 0
## 2336 2 2 0
## 2337 1 0 0
## 2338 2 0 0
## 2339 2 0 0
## 2340 2 0 0
## 2341 2 0 0
## 2342 2 0 0
## 2343 2 0 0
## 2344 3 0 0
## 2345 2 0 0
## 2346 1 0 0
## 2347 2 0 0
## 2348 2 0 0
## 2349 2 0 0
## 2350 2 0 0
## 2351 2 0 0
## 2352 2 1 0
## 2353 2 0 0
## 2354 2 2 0
## 2355 2 0 0
## 2356 2 0 0
## 2357 2 0 0
## 2358 2 0 0
## 2359 2 0 0
## 2360 2 0 0
## 2361 2 0 0
## 2362 2 0 0
## 2363 2 0 0
## 2364 2 0 0
## 2365 2 0 0
## 2366 2 1 0
## 2367 2 0 0
## 2368 2 0 0
## 2369 2 0 0
## 2370 2 2 0
## 2371 2 0 0
## 2372 2 0 0
## 2373 2 0 0
## 2374 2 0 0
## 2375 2 0 0
## 2376 2 0 0
## 2377 2 0 0
## 2378 2 0 0
## 2379 2 0 0
## 2380 1 0 0
## 2381 2 0 0
## 2382 2 0 0
## 2383 1 0 0
## 2384 2 0 0
## 2385 2 0 0
## 2386 2 0 0
## 2387 2 0 0
## 2388 2 2 0
## 2389 2 0 0
## 2390 2 0 0
## 2391 2 0 0
## 2392 2 0 0
## 2393 2 0 0
## 2394 1 0 0
## 2395 2 0 0
## 2396 2 0 0
## 2397 2 0 0
## 2398 2 0 0
## 2399 2 0 0
## 2400 2 0 0
## 2401 3 0 0
## 2402 2 0 0
## 2403 2 2 0
## 2404 2 2 0
## 2405 2 0 0
## 2406 2 0 0
## 2407 2 0 0
## 2408 2 0 0
## 2409 2 0 0
## 2410 2 0 0
## 2411 2 1 0
## 2412 1 0 0
## 2413 2 0 0
## 2414 2 0 0
## 2415 2 0 0
## 2416 40 0 0
## 2417 2 0 0
## 2418 2 0 0
## 2419 2 0 0
## 2420 2 1 0
## 2421 2 0 0
## 2422 2 0 0
## 2423 2 0 0
## 2424 2 0 0
## 2425 2 1 0
## 2426 2 0 0
## 2427 2 0 0
## 2428 2 0 0
## 2429 2 0 0
## 2430 2 2 0
## 2431 2 0 0
## 2432 2 0 0
## 2433 2 0 0
## 2434 2 0 0
## 2435 2 0 0
## 2436 3 0 0
## 2437 2 0 0
## 2438 2 0 0
## 2439 2 0 0
## 2440 2 0 0
## 2441 2 0 0
## 2442 2 0 0
## 2443 1 0 0
## 2444 2 0 0
## 2445 2 0 0
## 2446 2 0 0
## 2447 1 0 0
## 2448 3 0 0
## 2449 2 0 0
## 2450 2 0 0
## 2451 2 0 0
## 2452 2 0 0
## 2453 2 2 0
## 2454 2 0 0
## 2455 2 0 0
## 2456 2 0 0
## 2457 2 0 0
## 2458 2 0 0
## 2459 1 2 0
## 2460 2 0 0
## 2461 2 0 0
## 2462 2 0 0
## 2463 2 0 0
## 2464 26 0 0
## 2465 2 0 0
## 2466 2 0 0
## 2467 2 0 0
## 2468 2 1 0
## 2469 2 0 0
## 2470 2 0 0
## 2471 2 0 0
## 2472 2 0 0
## 2473 2 0 0
## 2474 2 0 0
## 2475 2 0 0
## 2476 2 0 0
## 2477 2 0 0
## 2478 2 2 0
## 2479 2 0 0
## 2480 2 2 0
## 2481 2 0 0
## 2482 2 0 0
## 2483 2 0 0
## 2484 2 0 0
## 2485 2 0 0
## 2486 1 2 0
## 2487 2 0 0
## 2488 2 0 0
## 2489 2 0 0
## 2490 2 0 0
## 2491 2 0 0
## 2492 2 0 0
## 2493 2 0 0
## 2494 2 0 0
## 2495 2 0 0
## 2496 2 0 0
## 2497 1 0 0
## 2498 2 0 0
## 2499 2 0 0
## 2500 2 0 0
## 2501 2 0 0
## 2502 3 0 0
## 2503 2 0 0
## 2504 2 0 0
## 2505 2 0 0
## 2506 3 0 0
## 2507 2 0 0
## 2508 2 0 0
## 2509 2 0 0
## 2510 2 0 0
## 2511 2 0 0
## 2512 2 0 0
## 2513 2 0 0
## 2514 1 0 0
## 2515 2 0 0
## 2516 2 2 0
## 2517 2 0 0
## 2518 50 0 0
## 2519 2 0 0
## 2520 2 0 0
## 2521 2 0 0
## 2522 2 0 0
## 2523 2 0 0
## 2524 2 0 0
## 2525 2 0 0
## 2526 2 0 0
## 2527 1 0 0
## 2528 2 0 0
## 2529 2 0 0
## 2530 2 0 0
## 2531 2 0 0
## 2532 2 0 0
## 2533 2 0 0
## 2534 2 0 0
## 2535 2 0 0
## 2536 2 0 0
## 2537 2 0 0
## 2538 2 0 0
## 2539 2 0 0
## 2540 2 0 0
## 2541 2 0 0
## 2542 2 0 0
## 2543 2 0 0
## 2544 2 0 0
## 2545 2 0 0
## 2546 2 0 0
## 2547 1 0 0
## 2548 2 0 0
## 2549 1 0 0
## 2550 2 0 0
## 2551 2 0 0
## 2552 2 0 0
## 2553 2 0 0
## 2554 2 0 0
## 2555 1 0 0
## 2556 1 0 0
## 2557 2 0 0
## 2558 1 0 0
## 2559 1 0 0
## 2560 2 0 0
## 2561 2 0 0
## 2562 2 0 0
## 2563 2 0 0
## 2564 1 0 0
## 2565 2 0 0
## 2566 2 0 0
## 2567 2 0 0
## 2568 2 0 0
## 2569 2 0 0
## 2570 2 0 0
## 2571 2 0 0
## 2572 2 0 0
## 2573 2 0 0
## 2574 2 0 0
## 2575 2 0 0
## 2576 2 0 0
## 2577 2 0 0
## 2578 1 0 0
## 2579 3 0 0
## 2580 2 0 0
## 2581 2 2 0
## 2582 2 1 0
## 2583 2 0 0
## 2584 2 0 0
## 2585 2 0 0
## 2586 2 0 0
## 2587 2 0 0
## 2588 2 0 0
## 2589 1 0 0
## 2590 2 0 0
## 2591 2 0 0
## 2592 2 0 0
## 2593 2 0 0
## 2594 1 0 0
## 2595 2 0 0
## 2596 2 0 0
## 2597 2 0 0
## 2598 2 0 0
## 2599 1 0 0
## 2600 2 0 0
## 2601 2 0 0
## 2602 2 0 0
## 2603 2 0 0
## 2604 3 0 0
## 2605 2 2 0
## 2606 2 0 0
## 2607 2 0 0
## 2608 2 0 0
## 2609 2 0 0
## 2610 2 0 0
## 2611 2 0 0
## 2612 2 0 0
## 2613 1 0 0
## 2614 2 2 0
## 2615 2 0 0
## 2616 2 0 0
## 2617 1 0 0
## 2618 2 0 0
## 2619 2 0 0
## 2620 2 0 0
## 2621 1 0 0
## 2622 2 0 0
## 2623 2 0 0
## 2624 26 0 0
## 2625 2 0 0
## 2626 2 0 0
## 2627 2 0 0
## 2628 2 0 0
## 2629 2 0 0
## 2630 2 0 0
## 2631 2 0 0
## 2632 2 0 0
## 2633 2 0 0
## 2634 2 0 0
## 2635 2 0 0
## 2636 2 0 0
## 2637 2 0 0
## 2638 2 0 0
## 2639 2 0 0
## 2640 2 0 0
## 2641 2 0 0
## 2642 2 0 0
## 2643 2 0 0
## 2644 2 0 0
## 2645 2 0 0
## 2646 2 0 0
## 2647 2 0 0
## 2648 1 0 0
## 2649 2 0 0
## 2650 2 0 0
## 2651 2 0 0
## 2652 2 0 0
## 2653 2 0 0
## 2654 2 0 0
## 2655 2 0 0
## 2656 2 0 0
## 2657 2 0 0
## 2658 2 0 0
## 2659 2 0 0
## 2660 2 0 0
## 2661 2 0 0
## 2662 2 2 0
## 2663 2 0 0
## 2664 1 0 0
## 2665 2 0 0
## 2666 2 0 0
## 2667 2 0 0
## 2668 2 0 0
## 2669 2 0 0
## 2670 2 0 0
## 2671 2 0 0
## 2672 2 0 0
## 2673 2 0 0
## 2674 2 0 0
## 2675 2 0 0
## 2676 2 0 0
## 2677 2 0 0
## 2678 2 0 0
## 2679 2 0 0
## 2680 2 0 0
## 2681 2 0 0
## 2682 1 0 0
## 2683 1 0 0
## 2684 1 0 0
## 2685 2 0 0
## 2686 2 0 0
## 2687 2 2 0
## 2688 2 0 0
## 2689 2 2 0
## 2690 2 0 0
## 2691 2 0 0
## 2692 2 0 0
## 2693 2 0 0
## 2694 2 0 0
## 2695 2 0 0
## 2696 2 0 0
## 2697 2 0 0
## 2698 2 0 0
## 2699 2 0 0
## 2700 2 0 0
## 2701 2 0 0
## 2702 2 0 0
## 2703 2 0 0
## 2704 2 0 0
## 2705 2 0 0
## 2706 2 0 0
## 2707 2 0 0
## 2708 2 0 0
## 2709 2 0 0
## 2710 1 0 0
## 2711 1 0 0
## 2712 1 0 0
## 2713 1 0 0
## 2714 1 0 0
## 2715 2 0 0
## 2716 2 0 0
## 2717 2 0 0
## 2718 1 0 0
## 2719 1 0 0
## 2720 2 0 0
## 2721 2 0 0
## 2722 2 0 0
## 2723 2 0 0
## 2724 2 0 0
## 2725 2 0 0
## 2726 2 0 0
## 2727 2 0 0
## 2728 2 0 0
## 2729 2 0 0
## 2730 2 0 0
## 2731 2 0 0
## 2732 2 0 0
## 2733 2 0 0
## 2734 2 0 0
## 2735 2 0 0
## 2736 2 0 0
## 2737 2 0 0
## 2738 2 0 0
## 2739 2 0 0
## 2740 2 0 0
## 2741 1 0 0
## 2742 2 0 0
## 2743 2 0 0
## 2744 2 0 0
## 2745 2 0 0
## 2746 2 0 0
## 2747 2 0 0
## 2748 2 0 0
## 2749 2 0 0
## 2750 2 0 0
## 2751 2 0 0
## 2752 3 0 0
## 2753 2 0 0
## 2754 26 0 0
## 2755 2 0 0
## 2756 2 0 0
## 2757 2 0 0
## 2758 2 0 0
## 2759 2 0 0
## 2760 2 2 0
## 2761 2 0 0
## 2762 2 0 0
## 2763 2 2 0
## 2764 2 0 0
## 2765 2 0 0
## 2766 2 0 0
## 2767 2 0 0
## 2768 2 0 0
## 2769 2 0 0
## 2770 3 0 0
## 2771 2 0 0
## 2772 2 0 0
## 2773 2 0 0
## 2774 2 0 0
## 2775 1 0 0
## 2776 1 0 0
## 2777 2 0 0
## 2778 2 0 0
## 2779 2 0 0
## 2780 2 0 0
## 2781 2 0 0
## 2782 2 0 0
## 2783 2 0 0
## 2784 2 0 0
## 2785 2 0 0
## 2786 2 0 0
## 2787 27 0 0
## 2788 1 0 0
## 2789 2 0 0
## 2790 2 0 0
## 2791 2 0 0
## 2792 2 0 0
## 2793 2 0 0
## 2794 2 0 0
## 2795 2 0 0
## 2796 2 0 0
## 2797 2 0 0
## 2798 2 0 0
## 2799 2 0 0
## 2800 2 0 0
## 2801 2 0 0
## 2802 2 0 0
## 2803 2 0 0
## 2804 2 0 0
## 2805 2 0 0
## 2806 2 0 0
## 2807 2 0 0
## 2808 2 0 0
## 2809 2 0 0
## 2810 2 0 0
## 2811 2 0 0
## 2812 2 0 0
## 2813 2 0 0
## 2814 2 0 0
## 2815 2 0 0
## 2816 2 0 0
## 2817 2 0 0
## 2818 2 0 0
## 2819 1 0 0
## 2820 1 0 0
## 2821 2 0 0
## 2822 2 0 0
## 2823 2 0 0
## 2824 2 0 0
## 2825 3 0 0
## 2826 2 0 0
## 2827 2 0 0
## 2828 2 0 0
## 2829 2 0 0
## 2830 2 0 0
## 2831 2 0 0
## 2832 27 0 0
## 2833 2 0 0
## 2834 2 0 0
## 2835 2 0 0
## 2836 2 0 0
## 2837 2 0 0
## 2838 2 0 0
## 2839 3 0 0
## 2840 2 0 0
## 2841 1 0 0
## 2842 2 2 0
## 2843 1 0 0
## 2844 2 0 0
## 2845 2 0 0
## 2846 2 0 0
## 2847 2 0 0
## 2848 2 0 0
## 2849 2 0 0
## 2850 2 0 0
## 2851 2 0 0
## 2852 2 0 0
## 2853 2 0 0
## 2854 2 0 0
## 2855 2 0 0
## 2856 2 0 0
## 2857 2 0 0
## 2858 2 0 0
## 2859 2 0 0
## 2860 2 0 0
## 2861 2 0 0
## 2862 2 0 0
## 2863 2 1 0
## 2864 2 0 0
## 2865 2 0 0
## 2866 2 0 0
## 2867 2 0 0
## 2868 2 0 0
## 2869 2 0 0
## 2870 2 0 0
## 2871 2 0 0
## 2872 2 0 0
## 2873 26 0 0
## 2874 2 0 0
## 2875 2 0 0
## 2876 2 0 0
## 2877 2 0 0
## 2878 2 0 0
## 2879 2 0 0
## 2880 2 0 0
## 2881 2 0 0
## 2882 2 0 0
## 2883 2 0 0
## 2884 2 0 0
## 2885 2 0 0
## 2886 2 0 0
## 2887 2 0 0
## 2888 2 0 0
## 2889 2 0 0
## 2890 2 0 0
## 2891 2 0 0
## 2892 2 0 0
## 2893 2 0 0
## 2894 2 0 0
## 2895 1 0 0
## 2896 1 0 0
## 2897 2 0 0
## 2898 2 0 0
## 2899 2 0 0
## 2900 1 0 0
## 2901 2 0 0
## 2902 2 0 0
## 2903 2 0 0
## 2904 2 0 0
## 2905 1 0 0
## 2906 2 0 0
## 2907 2 0 0
## 2908 2 0 0
## 2909 2 0 0
## 2910 2 0 0
## 2911 2 0 0
## 2912 2 0 0
## 2913 2 0 0
## 2914 2 0 0
## 2915 1 0 0
## 2916 2 0 0
## 2917 1 0 0
## 2918 2 0 0
## 2919 2 0 0
## 2920 2 0 0
## 2921 2 0 0
## 2922 2 0 0
## 2923 1 0 0
## 2924 2 0 0
## 2925 2 0 0
## 2926 2 0 0
## 2927 2 0 0
## 2928 2 0 0
## 2929 2 0 0
## 2930 2 0 0
## 2931 1 1 0
## 2932 2 0 0
## 2933 2 0 0
## 2934 1 0 0
## 2935 1 0 0
## 2936 2 0 0
## 2937 2 0 0
## 2938 1 0 0
## 2939 1 0 0
## 2940 2 0 0
## 2941 2 0 0
## 2942 1 0 0
## 2943 1 0 0
## 2944 2 0 0
## 2945 2 0 0
## 2946 2 0 0
## 2947 2 0 0
## 2948 2 0 0
## 2949 2 0 0
## 2950 2 0 0
## 2951 2 0 0
## 2952 2 0 0
## 2953 2 0 0
## 2954 2 0 0
## 2955 1 0 0
## 2956 3 0 0
## 2957 2 0 0
## 2958 2 1 0
## 2959 2 0 0
## 2960 1 0 0
## 2961 1 0 0
## 2962 2 0 0
## 2963 2 0 0
## 2964 2 0 0
## 2965 2 0 0
## 2966 2 0 0
## 2967 1 1 0
## 2968 2 0 0
## 2969 2 0 0
## 2970 2 0 0
## 2971 1 0 0
## 2972 2 0 0
## 2973 2 0 0
## 2974 2 0 0
## 2975 2 0 0
## 2976 2 0 0
## 2977 2 0 0
## 2978 2 0 0
## 2979 2 0 0
## 2980 2 0 0
## 2981 2 0 0
## 2982 2 0 0
## 2983 2 0 0
## 2984 2 1 0
## 2985 2 2 0
## 2986 2 0 0
## 2987 2 0 0
## 2988 2 2 0
## 2989 2 0 0
## 2990 1 0 0
## 2991 2 0 0
## 2992 2 0 0
## 2993 2 0 0
## 2994 2 0 0
## 2995 2 0 0
## 2996 1 0 0
## 2997 2 0 0
## 2998 2 0 0
## 2999 2 0 0
## 3000 2 0 0
## 3001 1 0 0
## 3002 2 0 0
## 3003 2 0 0
## 3004 2 0 0
## 3005 2 0 0
## 3006 1 0 0
## 3007 1 0 0
## 3008 2 0 0
## 3009 2 0 0
## 3010 2 0 0
## 3011 2 0 0
## 3012 2 0 0
## 3013 2 0 0
## 3014 1 0 0
## 3015 1 0 0
## 3016 1 0 0
## 3017 2 0 0
## 3018 1 0 0
## 3019 1 0 0
## 3020 1 0 0
## 3021 2 0 0
## 3022 2 0 0
## 3023 2 0 0
## 3024 2 0 0
## 3025 2 0 0
## 3026 2 0 0
## 3027 2 0 0
## 3028 2 0 0
## 3029 2 0 0
## 3030 2 0 0
## 3031 2 0 0
## 3032 2 0 0
## 3033 26 0 0
## 3034 2 0 0
## 3035 2 0 0
## 3036 2 0 0
## 3037 2 0 0
## 3038 2 0 0
## 3039 2 0 0
## 3040 1 0 0
## 3041 2 0 0
## 3042 55 0 0
## 3043 2 0 0
## 3044 2 2 0
## 3045 2 0 0
## 3046 2 0 0
## 3047 2 0 0
## 3048 2 0 0
## 3049 2 0 0
## 3050 2 0 0
## 3051 2 0 0
## 3052 2 0 0
## 3053 2 0 0
## 3054 2 0 0
## 3055 2 0 0
## 3056 2 0 0
## 3057 2 0 0
## 3058 2 0 0
## 3059 2 0 0
## 3060 2 0 0
## 3061 2 0 0
## 3062 2 0 0
## 3063 2 0 0
## 3064 2 2 0
## 3065 2 0 0
## 3066 2 0 0
## 3067 2 0 0
## 3068 2 0 0
## 3069 2 0 0
## 3070 2 0 0
## 3071 2 0 0
## 3072 2 0 0
## 3073 2 0 0
## 3074 2 0 0
## 3075 2 0 0
## 3076 2 0 0
## 3077 2 0 0
## 3078 2 0 0
## 3079 2 0 0
## 3080 2 0 0
## 3081 2 0 0
## 3082 1 0 0
## 3083 1 0 0
## 3084 1 0 0
## 3085 2 0 0
## 3086 1 0 0
## 3087 2 0 0
## 3088 2 0 0
## 3089 2 2 0
## 3090 2 0 0
## 3091 0 0 0
## 3092 2 0 0
## 3093 2 0 0
## 3094 2 2 0
## 3095 20 0 0
## 3096 6 0 0
## 3097 2 0 0
## 3098 5 0 0
## 3099 2 0 0
## 3100 2 0 0
## 3101 1 0 0
## 3102 1 0 0
## 3103 1 0 0
## 3104 1 0 0
## 3105 1 0 0
## 3106 2 0 0
## 3107 2 0 0
## 3108 1 0 0
## 3109 3 0 0
## 3110 2 0 0
## 3111 2 0 0
## 3112 2 0 0
## 3113 1 0 0
## 3114 2 0 0
## 3115 2 0 0
## 3116 2 0 0
## 3117 2 0 0
## 3118 2 0 0
## 3119 1 0 0
## 3120 1 0 0
## 3121 1 0 0
## 3122 1 0 0
## 3123 2 0 0
## 3124 2 0 0
## 3125 1 0 0
## 3126 2 0 0
## 3127 2 1 0
## 3128 2 0 0
## 3129 2 0 0
## 3130 2 0 0
## 3131 2 0 0
## 3132 2 0 0
## 3133 2 0 0
## 3134 1 0 0
## 3135 2 0 0
## 3136 2 0 0
## 3137 2 0 0
## 3138 2 1 0
## 3139 2 0 0
## 3140 2 0 0
## 3141 2 2 0
## 3142 2 0 0
## 3143 2 1 0
## 3144 2 0 0
## 3145 1 0 0
## 3146 1 0 0
## 3147 2 0 0
## 3148 2 0 0
## 3149 2 0 0
## 3150 2 0 0
## 3151 2 0 0
## 3152 2 0 0
## 3153 1 0 0
## 3154 1 0 0
## 3155 2 0 0
## 3156 2 0 0
## 3157 1 0 0
## 3158 2 1 0
## 3159 2 0 0
## 3160 1 0 0
## 3161 2 0 0
## 3162 2 0 0
## 3163 2 0 0
## 3164 2 0 0
## 3165 2 0 0
## 3166 2 0 0
## 3167 2 0 0
## 3168 2 0 0
## 3169 2 0 0
## 3170 2 0 0
## 3171 2 0 0
## 3172 2 0 0
## 3173 2 1 0
## 3174 2 1 0
## 3175 2 1 0
## 3176 2 0 0
## 3177 2 0 0
## 3178 2 0 0
## 3179 2 0 0
## 3180 2 0 0
## 3181 2 0 0
## 3182 2 0 0
## 3183 2 0 0
## 3184 2 0 0
## 3185 2 0 0
## 3186 2 0 0
## 3187 2 0 0
## 3188 2 0 0
## 3189 2 0 0
## 3190 2 0 0
## 3191 2 1 0
## 3192 2 0 0
## 3193 2 0 0
## 3194 2 0 0
## 3195 2 0 0
## 3196 2 0 0
## 3197 2 0 0
## 3198 2 0 0
## 3199 1 0 0
## 3200 2 0 0
## 3201 2 0 0
## 3202 2 0 0
## 3203 2 0 0
## 3204 2 0 0
## 3205 2 0 0
## 3206 2 0 0
## 3207 2 0 0
## 3208 2 0 0
## 3209 2 0 0
## 3210 2 0 0
## 3211 2 0 0
## 3212 2 0 0
## 3213 2 0 0
## 3214 2 0 0
## 3215 2 0 0
## 3216 2 1 0
## 3217 2 0 0
## 3218 2 0 0
## 3219 2 0 0
## 3220 2 1 0
## 3221 2 0 0
## 3222 2 0 0
## 3223 2 2 0
## 3224 2 0 0
## 3225 2 2 0
## 3226 2 0 0
## 3227 2 1 0
## 3228 2 0 0
## 3229 2 0 0
## 3230 2 0 0
## 3231 2 0 0
## 3232 2 0 0
## 3233 2 0 0
## 3234 2 0 0
## 3235 2 0 0
## 3236 2 0 0
## 3237 2 0 0
## 3238 2 0 0
## 3239 2 0 0
## 3240 2 0 0
## 3241 2 0 0
## 3242 2 0 0
## 3243 2 0 0
## 3244 1 0 0
## 3245 2 0 0
## 3246 2 0 0
## 3247 2 0 0
## 3248 2 0 0
## 3249 2 0 0
## 3250 2 0 0
## 3251 2 0 0
## 3252 2 0 0
## 3253 2 0 0
## 3254 2 0 0
## 3255 2 0 0
## 3256 2 0 0
## 3257 2 0 0
## 3258 2 0 0
## 3259 2 0 0
## 3260 1 0 0
## 3261 2 0 0
## 3262 2 0 0
## 3263 2 0 0
## 3264 1 0 0
## 3265 2 0 0
## 3266 2 0 0
## 3267 2 0 0
## 3268 1 0 0
## 3269 2 0 0
## 3270 2 0 0
## 3271 1 0 0
## 3272 2 0 0
## 3273 1 0 0
## 3274 2 0 0
## 3275 0 0 0
## 3276 2 0 0
## 3277 2 0 0
## 3278 2 0 0
## 3279 1 0 0
## 3280 2 0 0
## 3281 1 0 0
## 3282 2 0 0
## 3283 10 0 0
## 3284 20 0 0
## 3285 5 0 0
## 3286 2 0 0
## 3287 2 2 0
## 3288 1 0 0
## 3289 2 0 0
## 3290 1 0 0
## 3291 2 0 0
## 3292 2 0 0
## 3293 1 0 0
## 3294 2 2 0
## 3295 2 2 0
## 3296 2 0 0
## 3297 2 0 0
## 3298 1 0 0
## 3299 1 0 0
## 3300 2 0 0
## 3301 1 0 0
## 3302 2 0 0
## 3303 1 0 0
## 3304 2 0 0
## 3305 2 0 0
## 3306 1 0 0
## 3307 2 1 0
## 3308 2 0 0
## 3309 2 0 0
## 3310 2 0 0
## 3311 2 0 0
## 3312 2 0 0
## 3313 2 0 0
## 3314 1 0 0
## 3315 2 0 0
## 3316 2 0 0
## 3317 1 0 0
## 3318 2 0 0
## 3319 2 0 0
## 3320 2 0 0
## 3321 2 0 0
## 3322 2 0 0
## 3323 2 0 0
## 3324 2 0 0
## 3325 2 0 0
## 3326 2 0 0
## 3327 2 0 0
## 3328 2 0 0
## 3329 2 0 0
## 3330 2 0 0
## 3331 2 2 0
## 3332 2 0 0
## 3333 2 1 0
## 3334 2 0 0
## 3335 2 0 0
## 3336 2 0 0
## 3337 2 0 0
## 3338 2 0 0
## 3339 2 0 0
## 3340 2 0 0
## 3341 2 0 0
## 3342 1 0 0
## 3343 2 0 0
## 3344 2 0 0
## 3345 2 0 0
## 3346 2 0 0
## 3347 1 0 0
## 3348 2 0 0
## 3349 2 0 0
## 3350 2 0 0
## 3351 2 0 0
## 3352 2 0 0
## 3353 2 0 0
## 3354 2 0 0
## 3355 1 0 0
## 3356 2 0 0
## 3357 2 0 0
## 3358 2 0 0
## 3359 2 0 0
## 3360 2 0 0
## 3361 2 0 0
## 3362 2 0 0
## 3363 2 0 0
## 3364 2 0 0
## 3365 2 0 0
## 3366 2 0 0
## 3367 2 0 0
## 3368 2 0 0
## 3369 2 0 0
## 3370 2 0 0
## 3371 2 0 0
## 3372 2 0 0
## 3373 2 0 0
## 3374 2 0 0
## 3375 1 0 0
## 3376 2 0 0
## 3377 2 0 0
## 3378 2 0 0
## 3379 2 0 0
## 3380 2 0 0
## 3381 2 0 0
## 3382 2 0 0
## 3383 2 0 0
## 3384 2 0 0
## 3385 2 0 0
## 3386 2 0 0
## 3387 1 0 0
## 3388 3 0 0
## 3389 3 0 0
## 3390 2 2 0
## 3391 3 0 0
## 3392 2 0 0
## 3393 2 0 0
## 3394 1 0 0
## 3395 1 0 0
## 3396 1 0 0
## 3397 1 0 0
## 3398 1 0 0
## 3399 2 0 0
## 3400 2 0 0
## 3401 2 2 0
## 3402 2 0 0
## 3403 2 0 0
## 3404 2 0 0
## 3405 1 0 0
## 3406 2 0 0
## 3407 2 0 0
## 3408 2 0 0
## 3409 2 0 0
## 3410 2 0 0
## 3411 2 0 0
## 3412 2 1 0
## 3413 2 1 0
## 3414 2 0 0
## 3415 2 0 0
## 3416 2 0 0
## 3417 2 0 0
## 3418 1 0 0
## 3419 2 0 0
## 3420 2 0 0
## 3421 2 0 0
## 3422 2 0 0
## 3423 2 0 0
## 3424 2 0 0
## 3425 2 0 0
## 3426 2 0 0
## 3427 2 0 0
## 3428 2 0 0
## 3429 2 0 0
## 3430 2 0 0
## 3431 2 0 0
## 3432 2 0 0
## 3433 1 0 0
## 3434 2 0 0
## 3435 1 0 0
## 3436 2 0 0
## 3437 2 0 0
## 3438 2 0 0
## 3439 1 0 0
## 3440 2 0 0
## 3441 2 0 0
## 3442 2 0 0
## 3443 1 0 0
## 3444 2 0 0
## 3445 2 0 0
## 3446 2 0 0
## 3447 2 2 0
## 3448 2 0 0
## 3449 2 0 0
## 3450 2 0 0
## 3451 2 0 0
## 3452 1 0 0
## 3453 2 0 0
## 3454 2 0 0
## 3455 2 0 0
## 3456 2 0 0
## 3457 2 0 0
## 3458 2 0 0
## 3459 2 0 0
## 3460 2 0 0
## 3461 1 0 0
## 3462 2 0 0
## 3463 2 0 0
## 3464 2 0 0
## 3465 2 0 0
## 3466 2 0 0
## 3467 2 0 0
## 3468 2 0 0
## 3469 2 0 0
## 3470 2 0 0
## 3471 2 0 0
## 3472 2 0 0
## 3473 2 0 0
## 3474 1 0 0
## 3475 2 0 0
## 3476 2 0 0
## 3477 2 0 0
## 3478 1 0 0
## 3479 2 0 0
## 3480 3 0 0
## 3481 2 0 0
## 3482 1 0 0
## 3483 2 0 0
## 3484 2 0 0
## 3485 1 0 0
## 3486 2 0 0
## 3487 2 1 0
## 3488 2 0 0
## 3489 2 0 0
## 3490 1 0 0
## 3491 2 0 0
## 3492 2 0 0
## 3493 1 0 0
## 3494 1 0 0
## 3495 1 0 0
## 3496 2 0 0
## 3497 2 0 0
## 3498 2 0 0
## 3499 1 0 0
## 3500 1 0 0
## 3501 2 0 0
## 3502 2 0 0
## 3503 1 0 0
## 3504 1 0 0
## 3505 2 0 0
## 3506 2 0 0
## 3507 1 0 0
## 3508 1 0 0
## 3509 2 0 0
## 3510 2 0 0
## 3511 2 0 0
## 3512 2 0 0
## 3513 1 0 0
## 3514 1 0 0
## 3515 1 0 0
## 3516 2 0 0
## 3517 2 0 0
## 3518 2 0 0
## 3519 2 0 0
## 3520 1 0 0
## 3521 1 0 0
## 3522 2 0 0
## 3523 2 0 0
## 3524 2 0 0
## 3525 1 0 0
## 3526 1 0 0
## 3527 1 0 0
## 3528 2 0 0
## 3529 2 0 0
## 3530 2 0 0
## 3531 2 0 0
## 3532 2 0 0
## 3533 2 0 0
## 3534 2 0 0
## 3535 2 0 0
## 3536 2 0 0
## 3537 2 0 0
## 3538 2 2 0
## 3539 2 0 0
## 3540 2 0 0
## 3541 2 0 0
## 3542 2 0 0
## 3543 2 0 0
## 3544 2 0 0
## 3545 2 0 0
## 3546 2 0 0
## 3547 1 0 0
## 3548 1 0 0
## 3549 1 0 0
## 3550 2 0 0
## 3551 2 2 0
## 3552 2 0 0
## 3553 1 1 0
## 3554 2 0 0
## 3555 2 0 0
## 3556 2 1 0
## 3557 2 0 0
## 3558 2 0 0
## 3559 2 0 0
## 3560 2 0 0
## 3561 2 0 0
## 3562 1 0 0
## 3563 1 0 0
## 3564 1 0 0
## 3565 1 0 0
## 3566 1 0 0
## 3567 1 0 0
## 3568 1 0 0
## 3569 2 0 0
## 3570 1 0 0
## 3571 2 0 0
## 3572 2 0 0
## 3573 1 0 0
## 3574 2 0 0
## 3575 2 0 0
## 3576 2 0 0
## 3577 2 0 0
## 3578 2 0 0
## 3579 2 0 0
## 3580 1 0 0
## 3581 2 0 0
## 3582 2 0 0
## 3583 2 0 0
## 3584 2 1 0
## 3585 2 0 0
## 3586 1 0 0
## 3587 2 0 0
## 3588 1 0 0
## 3589 1 0 0
## 3590 1 0 0
## 3591 1 0 0
## 3592 1 0 0
## 3593 1 0 0
## 3594 1 0 0
## 3595 2 0 0
## 3596 1 0 0
## 3597 1 0 0
## 3598 2 0 0
## 3599 2 0 0
## 3600 1 0 0
## 3601 2 0 0
## 3602 2 0 0
## 3603 2 0 0
## 3604 2 0 0
## 3605 2 0 0
## 3606 2 0 0
## 3607 2 0 0
## 3608 1 0 0
## 3609 2 0 0
## 3610 2 0 0
## 3611 2 0 0
## 3612 2 0 0
## 3613 2 0 0
## 3614 2 0 0
## 3615 2 0 0
## 3616 2 0 0
## 3617 2 0 0
## 3618 1 0 0
## 3619 2 0 0
## 3620 2 0 0
## 3621 2 0 0
## 3622 2 0 0
## 3623 2 0 0
## 3624 2 0 0
## 3625 1 0 0
## 3626 2 0 0
## 3627 2 0 0
## 3628 2 0 0
## 3629 2 0 0
## 3630 2 0 0
## 3631 1 0 0
## 3632 2 0 0
## 3633 2 0 0
## 3634 2 0 0
## 3635 2 0 0
## 3636 2 0 0
## 3637 2 0 0
## 3638 2 0 0
## 3639 2 0 0
## 3640 2 0 0
## 3641 1 0 0
## 3642 2 0 0
## 3643 2 0 0
## 3644 2 0 0
## 3645 2 0 0
## 3646 2 1 0
## 3647 1 0 0
## 3648 2 0 0
## 3649 2 0 0
## 3650 2 0 0
## 3651 2 1 0
## 3652 2 0 0
## 3653 2 0 0
## 3654 2 0 0
## 3655 2 0 0
## 3656 2 0 0
## 3657 1 0 0
## 3658 2 0 0
## 3659 2 0 0
## 3660 2 0 0
## 3661 2 0 0
## 3662 1 0 0
## 3663 1 0 0
## 3664 2 0 0
## 3665 2 0 0
## 3666 1 0 0
## 3667 2 0 0
## 3668 2 0 0
## 3669 2 0 0
## 3670 2 0 0
## 3671 2 0 0
## 3672 2 0 0
## 3673 2 0 0
## 3674 1 0 0
## 3675 2 0 0
## 3676 2 0 0
## 3677 2 0 0
## 3678 2 0 0
## 3679 2 0 0
## 3680 2 0 0
## 3681 2 0 0
## 3682 2 0 0
## 3683 2 0 0
## 3684 3 1 0
## 3685 2 0 0
## 3686 1 0 0
## 3687 1 0 0
## 3688 2 0 0
## 3689 2 0 0
## 3690 2 0 0
## 3691 2 0 0
## 3692 2 0 0
## 3693 2 0 0
## 3694 2 0 0
## 3695 2 0 0
## 3696 2 0 0
## 3697 2 0 0
## 3698 2 0 0
## 3699 2 0 0
## 3700 1 0 0
## 3701 2 0 0
## 3702 1 0 0
## 3703 2 0 0
## 3704 2 0 0
## 3705 1 0 0
## 3706 2 0 0
## 3707 2 0 0
## 3708 2 0 0
## 3709 2 0 0
## 3710 2 0 0
## 3711 2 0 0
## 3712 2 0 0
## 3713 2 0 0
## 3714 2 0 0
## 3715 1 0 0
## 3716 1 0 0
## 3717 1 0 0
## 3718 1 0 0
## 3719 1 0 0
## 3720 1 0 0
## 3721 1 0 0
## 3722 2 0 0
## 3723 1 0 0
## 3724 2 0 0
## 3725 1 0 0
## 3726 1 0 0
## 3727 2 0 0
## 3728 1 0 0
## 3729 2 0 0
## 3730 2 0 0
## 3731 2 0 0
## 3732 2 0 0
## 3733 2 2 0
## 3734 2 0 0
## 3735 1 0 0
## 3736 1 0 0
## 3737 1 0 0
## 3738 3 0 0
## 3739 2 0 0
## 3740 1 0 0
## 3741 2 0 0
## 3742 2 0 0
## 3743 2 0 0
## 3744 1 0 0
## 3745 2 0 0
## 3746 1 0 0
## 3747 1 0 0
## 3748 1 0 0
## 3749 2 0 0
## 3750 1 0 0
## 3751 1 0 0
## 3752 2 0 0
## 3753 2 0 0
## 3754 1 0 0
## 3755 1 0 0
## 3756 1 0 0
## 3757 1 0 0
## 3758 1 0 0
## 3759 2 0 0
## 3760 2 0 0
## 3761 1 0 0
## 3762 2 0 0
## 3763 2 0 0
## 3764 1 0 0
## 3765 1 0 0
## 3766 1 0 0
## 3767 2 1 0
## 3768 2 0 0
## 3769 2 0 0
## 3770 2 0 0
## 3771 2 1 0
## 3772 2 0 0
## 3773 2 0 0
## 3774 2 0 0
## 3775 1 0 0
## 3776 1 0 0
## 3777 1 0 0
## 3778 1 0 0
## 3779 1 0 0
## 3780 1 0 0
## 3781 1 0 0
## 3782 2 0 0
## 3783 2 0 0
## 3784 2 1 0
## 3785 2 0 0
## 3786 2 1 0
## 3787 2 0 0
## 3788 2 0 0
## 3789 2 0 0
## 3790 1 0 0
## 3791 1 0 0
## 3792 2 0 0
## 3793 2 0 0
## 3794 1 0 0
## 3795 1 0 0
## 3796 1 0 0
## 3797 2 0 0
## 3798 1 0 0
## 3799 2 0 0
## 3800 2 0 0
## 3801 1 0 0
## 3802 1 0 0
## 3803 1 0 0
## 3804 1 0 0
## 3805 1 0 0
## 3806 1 0 0
## 3807 1 0 0
## 3808 1 0 0
## 3809 1 0 0
## 3810 1 0 0
## 3811 1 0 0
## 3812 1 0 0
## 3813 1 0 0
## 3814 1 0 0
## 3815 1 0 0
## 3816 2 0 0
## 3817 2 0 0
## 3818 1 0 0
## 3819 2 0 0
## 3820 1 0 0
## 3821 2 0 0
## 3822 2 0 0
## 3823 1 0 0
## 3824 2 0 0
## 3825 2 0 0
## 3826 1 0 0
## 3827 2 0 0
## 3828 2 0 0
## 3829 1 0 0
## 3830 2 0 0
## 3831 1 0 0
## 3832 2 0 0
## 3833 2 0 0
## 3834 1 0 0
## 3835 1 0 0
## 3836 1 0 0
## 3837 3 1 0
## 3838 1 0 0
## 3839 2 0 0
## 3840 2 0 0
## 3841 1 0 0
## 3842 2 0 0
## 3843 1 0 0
## 3844 1 0 0
## 3845 2 0 0
## 3846 2 0 0
## 3847 2 0 0
## 3848 2 0 0
## 3849 2 0 0
## 3850 2 0 0
## 3851 1 0 0
## 3852 1 0 0
## 3853 1 0 0
## 3854 1 0 0
## 3855 2 0 0
## 3856 1 0 0
## 3857 2 1 0
## 3858 2 0 0
## 3859 1 0 0
## 3860 1 0 0
## 3861 1 0 0
## 3862 1 0 0
## 3863 1 0 0
## 3864 1 0 0
## 3865 1 0 0
## 3866 1 0 0
## 3867 1 0 0
## 3868 1 0 0
## 3869 2 0 0
## 3870 1 0 0
## 3871 2 0 0
## 3872 1 0 0
## 3873 1 0 0
## 3874 2 0 0
## 3875 1 0 0
## 3876 1 0 0
## 3877 1 0 0
## 3878 1 0 0
## 3879 1 0 0
## 3880 1 0 0
## 3881 2 0 0
## 3882 1 0 0
## 3883 1 0 0
## 3884 1 0 0
## 3885 1 0 0
## 3886 1 0 0
## 3887 1 0 0
## 3888 1 0 0
## 3889 2 1 0
## 3890 2 0 0
## 3891 2 0 0
## 3892 1 0 0
## 3893 2 0 0
## 3894 2 0 0
## 3895 1 0 0
## 3896 1 0 0
## 3897 1 0 0
## 3898 1 0 0
## 3899 1 0 0
## 3900 1 0 0
## 3901 1 0 0
## 3902 1 0 0
## 3903 2 0 0
## 3904 1 0 0
## 3905 2 0 0
## 3906 1 0 0
## 3907 1 0 0
## 3908 1 0 0
## 3909 1 0 0
## 3910 1 0 0
## 3911 1 0 0
## 3912 1 0 0
## 3913 1 0 0
## 3914 1 0 0
## 3915 2 0 0
## 3916 2 0 0
## 3917 1 0 0
## 3918 1 0 0
## 3919 2 2 0
## 3920 2 0 0
## 3921 2 0 0
## 3922 1 0 0
## 3923 2 0 0
## 3924 1 0 0
## 3925 1 0 0
## 3926 1 0 0
## 3927 2 0 0
## 3928 1 0 0
## 3929 2 0 0
## 3930 1 0 0
## 3931 2 0 0
## 3932 2 0 0
## 3933 2 0 0
## 3934 2 0 0
## 3935 2 0 0
## 3936 2 1 0
## 3937 1 0 0
## 3938 2 0 0
## 3939 2 0 0
## 3940 2 0 0
## 3941 2 0 0
## 3942 2 0 0
## 3943 2 0 0
## 3944 2 0 0
## 3945 2 0 0
## 3946 2 0 0
## 3947 2 0 0
## 3948 2 0 0
## 3949 2 0 0
## 3950 2 0 0
## 3951 2 1 0
## 3952 1 0 0
## 3953 2 0 0
## 3954 2 0 0
## 3955 1 0 0
## 3956 2 0 0
## 3957 1 0 0
## 3958 2 0 0
## 3959 2 0 0
## 3960 2 0 0
## 3961 2 0 0
## 3962 1 0 0
## 3963 1 0 0
## 3964 2 0 0
## 3965 2 0 0
## 3966 2 0 0
## 3967 2 0 0
## 3968 2 0 0
## 3969 2 0 0
## 3970 2 0 0
## 3971 2 0 0
## 3972 1 0 0
## 3973 2 0 0
## 3974 2 0 0
## 3975 2 0 0
## 3976 2 0 0
## 3977 2 0 0
## 3978 1 0 0
## 3979 2 0 0
## 3980 2 0 0
## 3981 2 0 0
## 3982 2 0 0
## 3983 2 0 0
## 3984 2 0 0
## 3985 2 0 0
## 3986 2 0 0
## 3987 2 0 0
## 3988 2 0 0
## 3989 2 0 0
## 3990 2 0 0
## 3991 2 0 0
## 3992 2 1 0
## 3993 2 0 0
## 3994 1 0 0
## 3995 2 0 0
## 3996 2 2 0
## 3997 2 0 0
## 3998 2 0 0
## 3999 2 0 0
## 4000 2 0 0
## 4001 2 0 0
## 4002 2 0 0
## 4003 2 0 0
## 4004 2 0 0
## 4005 2 0 0
## 4006 2 0 0
## 4007 2 0 0
## 4008 2 0 0
## 4009 1 0 0
## 4010 2 0 0
## 4011 2 0 0
## 4012 2 0 0
## 4013 2 0 0
## 4014 2 0 0
## 4015 2 0 0
## 4016 2 0 0
## 4017 2 0 0
## 4018 2 0 0
## 4019 2 0 0
## 4020 2 0 0
## 4021 2 0 0
## 4022 2 0 0
## 4023 2 0 0
## 4024 2 0 0
## 4025 2 0 0
## 4026 2 0 0
## 4027 2 0 0
## 4028 2 0 0
## 4029 2 0 0
## 4030 2 0 0
## 4031 2 0 0
## 4032 2 0 0
## 4033 2 0 0
## 4034 2 0 0
## 4035 2 0 0
## 4036 1 0 0
## 4037 2 0 0
## 4038 2 0 0
## 4039 0 0 0
## 4040 1 0 0
## 4041 2 0 0
## 4042 2 0 0
## 4043 2 0 0
## 4044 2 0 0
## 4045 2 0 0
## 4046 2 0 0
## 4047 2 0 0
## 4048 2 0 0
## 4049 2 0 0
## 4050 2 1 0
## 4051 2 0 0
## 4052 2 0 0
## 4053 2 2 0
## 4054 2 0 0
## 4055 2 0 0
## 4056 2 0 0
## 4057 2 0 0
## 4058 2 0 0
## 4059 2 0 0
## 4060 2 0 0
## 4061 2 0 0
## 4062 2 2 0
## 4063 2 0 0
## 4064 2 0 0
## 4065 2 0 0
## 4066 2 0 0
## 4067 2 0 0
## 4068 2 0 0
## 4069 2 0 0
## 4070 2 0 0
## 4071 2 0 0
## 4072 2 1 0
## 4073 2 0 0
## 4074 2 0 0
## 4075 2 0 0
## 4076 2 0 0
## 4077 2 2 0
## 4078 2 0 0
## 4079 3 0 0
## 4080 2 0 0
## 4081 2 0 0
## 4082 2 0 0
## 4083 2 0 0
## 4084 2 0 0
## 4085 2 1 0
## 4086 2 0 0
## 4087 2 0 0
## 4088 2 0 0
## 4089 2 0 0
## 4090 2 0 0
## 4091 2 0 0
## 4092 1 0 0
## 4093 2 0 0
## 4094 2 0 0
## 4095 2 0 0
## 4096 2 0 0
## 4097 2 0 0
## 4098 2 0 0
## 4099 1 0 0
## 4100 1 0 0
## 4101 1 0 0
## 4102 1 0 0
## 4103 1 0 0
## 4104 1 0 0
## 4105 2 0 0
## 4106 2 0 0
## 4107 1 0 0
## 4108 2 0 0
## 4109 2 0 0
## 4110 2 0 0
## 4111 2 0 0
## 4112 2 0 0
## 4113 2 0 0
## 4114 3 0 0
## 4115 2 0 0
## 4116 2 0 0
## 4117 2 0 0
## 4118 2 0 0
## 4119 2 2 0
## 4120 2 0 0
## 4121 2 0 0
## 4122 2 0 0
## 4123 2 0 0
## 4124 2 0 0
## 4125 1 0 0
## 4126 2 0 0
## 4127 2 0 0
## 4128 2 0 0
## 4129 2 0 0
## 4130 2 0 0
## 4131 2 0 0
## 4132 2 0 0
## 4133 2 0 0
## 4134 2 0 0
## 4135 2 0 0
## 4136 2 0 0
## 4137 2 0 0
## 4138 2 0 0
## 4139 2 0 0
## 4140 2 0 0
## 4141 2 0 0
## 4142 2 0 0
## 4143 2 0 0
## 4144 2 0 0
## 4145 2 0 0
## 4146 2 0 0
## 4147 2 0 0
## 4148 2 0 0
## 4149 2 0 0
## 4150 2 0 0
## 4151 2 0 0
## 4152 2 0 0
## 4153 2 0 0
## 4154 2 0 0
## 4155 2 0 0
## 4156 2 0 0
## 4157 2 0 0
## 4158 2 0 0
## 4159 2 0 0
## 4160 2 0 0
## 4161 2 0 0
## 4162 2 0 0
## 4163 1 0 0
## 4164 2 0 0
## 4165 2 0 0
## 4166 2 0 0
## 4167 2 0 0
## 4168 2 0 0
## 4169 2 0 0
## 4170 2 0 0
## 4171 2 0 0
## 4172 3 0 0
## 4173 1 0 0
## 4174 1 0 0
## 4175 2 0 0
## 4176 2 0 0
## 4177 2 0 0
## 4178 2 0 0
## 4179 2 0 0
## 4180 2 0 0
## 4181 2 0 0
## 4182 1 0 0
## 4183 2 0 0
## 4184 2 0 0
## 4185 2 0 0
## 4186 2 0 0
## 4187 1 0 0
## 4188 1 0 0
## 4189 1 0 0
## 4190 2 0 0
## 4191 2 0 0
## 4192 2 0 0
## 4193 2 0 0
## 4194 2 0 0
## 4195 2 0 0
## 4196 2 0 0
## 4197 2 0 0
## 4198 2 0 0
## 4199 2 0 0
## 4200 2 0 0
## 4201 2 0 0
## 4202 2 0 0
## 4203 1 0 0
## 4204 2 0 0
## 4205 2 0 0
## 4206 2 0 0
## 4207 2 0 0
## 4208 2 0 0
## 4209 2 0 0
## 4210 2 0 0
## 4211 2 0 0
## 4212 2 0 0
## 4213 2 0 0
## 4214 2 0 0
## 4215 2 0 0
## 4216 2 0 0
## 4217 2 0 0
## 4218 2 0 0
## 4219 2 0 0
## 4220 2 0 0
## 4221 2 0 0
## 4222 2 0 0
## 4223 2 0 0
## 4224 2 0 0
## 4225 2 0 0
## 4226 2 0 0
## 4227 2 0 0
## 4228 2 0 0
## 4229 2 0 0
## 4230 2 0 0
## 4231 2 0 0
## 4232 2 0 0
## 4233 3 0 0
## 4234 2 0 0
## 4235 2 0 0
## 4236 2 0 0
## 4237 2 0 0
## 4238 2 0 0
## 4239 2 0 0
## 4240 2 0 0
## 4241 2 0 0
## 4242 2 0 0
## 4243 2 0 0
## 4244 2 0 0
## 4245 2 0 0
## 4246 2 0 0
## 4247 2 0 0
## 4248 1 0 0
## 4249 2 0 0
## 4250 2 0 0
## 4251 2 0 0
## 4252 2 0 0
## 4253 2 0 0
## 4254 2 0 0
## 4255 2 0 0
## 4256 2 0 0
## 4257 2 0 0
## 4258 2 0 0
## 4259 2 0 0
## 4260 2 0 0
## 4261 2 0 0
## 4262 2 0 0
## 4263 2 0 0
## 4264 2 0 0
## 4265 2 0 0
## 4266 2 0 0
## 4267 2 0 0
## 4268 2 0 0
## 4269 2 0 0
## 4270 2 0 0
## 4271 2 0 0
## 4272 2 0 0
## 4273 2 0 0
## 4274 2 0 0
## 4275 2 0 0
## 4276 2 0 0
## 4277 3 0 0
## 4278 2 0 0
## 4279 2 0 0
## 4280 2 0 0
## 4281 2 0 0
## 4282 2 0 0
## 4283 2 0 0
## 4284 2 0 0
## 4285 2 0 0
## 4286 2 0 0
## 4287 2 0 0
## 4288 2 0 0
## 4289 2 0 0
## 4290 2 0 0
## 4291 2 0 0
## 4292 2 0 0
## 4293 2 0 0
## 4294 2 0 0
## 4295 2 0 0
## 4296 2 0 0
## 4297 2 0 0
## 4298 2 0 0
## 4299 2 0 0
## 4300 2 0 0
## 4301 2 0 0
## 4302 2 0 0
## 4303 2 0 0
## 4304 2 0 0
## 4305 2 0 0
## 4306 2 0 0
## 4307 2 0 0
## 4308 2 0 0
## 4309 2 0 0
## 4310 2 0 0
## 4311 2 0 0
## 4312 1 0 0
## 4313 1 0 0
## 4314 2 0 0
## 4315 2 0 0
## 4316 2 0 0
## 4317 1 0 0
## 4318 2 0 0
## 4319 2 0 0
## 4320 2 0 0
## 4321 2 0 0
## 4322 2 0 0
## 4323 2 0 0
## 4324 2 0 0
## 4325 2 0 0
## 4326 2 0 0
## 4327 2 0 0
## 4328 2 0 0
## 4329 2 0 0
## 4330 2 0 0
## 4331 2 0 0
## 4332 2 0 0
## 4333 2 0 0
## 4334 2 0 0
## 4335 2 0 0
## 4336 2 0 0
## 4337 2 0 0
## 4338 2 0 0
## 4339 2 0 0
## 4340 2 0 0
## 4341 2 0 0
## 4342 2 0 0
## 4343 2 0 0
## 4344 2 0 0
## 4345 2 0 0
## 4346 2 0 0
## 4347 2 0 0
## 4348 2 0 0
## 4349 2 0 0
## 4350 2 0 0
## 4351 2 0 0
## 4352 2 0 0
## 4353 2 0 0
## 4354 2 0 0
## 4355 2 0 0
## 4356 1 0 0
## 4357 2 0 0
## 4358 2 0 0
## 4359 2 0 0
## 4360 2 0 0
## 4361 1 0 0
## 4362 2 0 0
## 4363 2 0 0
## 4364 2 0 0
## 4365 2 0 0
## 4366 2 0 0
## 4367 2 0 0
## 4368 1 0 0
## 4369 2 0 0
## 4370 2 0 0
## 4371 2 0 0
## 4372 2 0 0
## 4373 2 0 0
## 4374 2 0 0
## 4375 2 2 0
## 4376 2 0 0
## 4377 3 1 0
## 4378 3 0 0
## 4379 3 0 0
## 4380 1 0 0
## 4381 2 0 0
## 4382 2 0 0
## 4383 1 0 0
## 4384 2 0 0
## 4385 2 0 0
## 4386 2 0 0
## 4387 2 0 0
## 4388 2 0 0
## 4389 2 0 0
## 4390 2 0 0
## 4391 2 0 0
## 4392 2 0 0
## 4393 2 0 0
## 4394 2 0 0
## 4395 2 0 0
## 4396 2 0 0
## 4397 2 0 0
## 4398 1 0 0
## 4399 1 0 0
## 4400 2 0 0
## 4401 2 0 0
## 4402 2 0 0
## 4403 2 0 0
## 4404 2 0 0
## 4405 1 0 0
## 4406 2 0 0
## 4407 2 0 0
## 4408 2 1 0
## 4409 2 0 0
## 4410 1 0 0
## 4411 2 0 0
## 4412 2 0 0
## 4413 2 0 0
## 4414 1 0 0
## 4415 2 0 0
## 4416 2 0 0
## 4417 2 0 0
## 4418 1 0 0
## 4419 3 0 0
## 4420 2 0 0
## 4421 2 0 0
## 4422 2 0 0
## 4423 3 0 0
## 4424 2 0 0
## 4425 2 0 0
## 4426 2 2 0
## 4427 2 2 0
## 4428 2 0 0
## 4429 2 0 0
## 4430 2 0 0
## 4431 2 0 0
## 4432 2 0 0
## 4433 2 2 0
## 4434 1 0 0
## 4435 2 0 0
## 4436 2 0 0
## 4437 2 0 0
## 4438 2 0 0
## 4439 2 0 0
## 4440 2 0 0
## 4441 2 0 0
## 4442 2 0 0
## 4443 2 0 0
## 4444 2 0 0
## 4445 2 0 0
## 4446 2 0 0
## 4447 2 0 0
## 4448 2 0 0
## 4449 3 1 0
## 4450 2 0 0
## 4451 2 0 0
## 4452 2 0 0
## 4453 2 0 0
## 4454 2 0 0
## 4455 2 0 0
## 4456 1 0 0
## 4457 1 0 0
## 4458 1 0 0
## 4459 1 0 0
## 4460 2 0 0
## 4461 2 0 0
## 4462 2 0 0
## 4463 2 2 0
## 4464 2 2 0
## 4465 2 0 0
## 4466 2 0 0
## 4467 1 0 0
## 4468 2 0 0
## 4469 2 0 0
## 4470 2 0 0
## 4471 2 0 0
## 4472 1 0 0
## 4473 2 0 0
## 4474 2 0 0
## 4475 2 0 0
## 4476 2 0 0
## 4477 1 0 0
## 4478 2 0 0
## 4479 2 0 0
## 4480 1 0 0
## 4481 2 0 0
## 4482 3 1 0
## 4483 2 0 0
## 4484 2 2 0
## 4485 2 0 0
## 4486 2 0 0
## 4487 1 2 0
## 4488 1 0 0
## 4489 2 0 0
## 4490 2 0 0
## 4491 2 0 0
## 4492 2 0 0
## 4493 2 0 0
## 4494 2 0 0
## 4495 2 0 0
## 4496 2 1 0
## 4497 2 0 0
## 4498 2 0 0
## 4499 2 0 0
## 4500 2 0 0
## 4501 2 0 0
## 4502 2 0 0
## 4503 2 0 0
## 4504 1 0 0
## 4505 1 0 0
## 4506 1 0 0
## 4507 2 0 0
## 4508 2 0 0
## 4509 2 0 0
## 4510 2 0 0
## 4511 2 0 0
## 4512 2 0 0
## 4513 1 0 0
## 4514 2 0 0
## 4515 2 0 0
## 4516 2 0 0
## 4517 2 0 0
## 4518 2 0 0
## 4519 2 0 0
## 4520 1 0 0
## 4521 2 0 0
## 4522 1 0 0
## 4523 1 0 0
## 4524 1 0 0
## 4525 2 0 0
## 4526 2 0 0
## 4527 2 0 0
## 4528 2 0 0
## 4529 3 0 0
## 4530 2 0 0
## 4531 2 0 0
## 4532 2 0 0
## 4533 0 0 0
## 4534 2 0 0
## 4535 2 2 0
## 4536 2 0 0
## 4537 2 0 0
## 4538 2 0 0
## 4539 2 0 0
## 4540 2 0 0
## 4541 1 0 0
## 4542 2 0 0
## 4543 2 0 0
## 4544 1 0 0
## 4545 2 0 0
## 4546 2 0 0
## 4547 2 0 0
## 4548 2 0 0
## 4549 2 0 0
## 4550 1 0 0
## 4551 1 0 0
## 4552 2 0 0
## 4553 2 0 0
## 4554 1 0 0
## 4555 1 0 0
## 4556 3 1 0
## 4557 0 0 0
## 4558 2 0 0
## 4559 3 0 0
## 4560 2 0 0
## 4561 2 0 0
## 4562 2 0 0
## 4563 2 0 0
## 4564 2 0 0
## 4565 2 0 0
## 4566 2 1 0
## 4567 2 1 0
## 4568 3 0 0
## 4569 2 0 0
## 4570 2 0 0
## 4571 2 1 0
## 4572 2 1 0
## 4573 2 0 0
## 4574 2 0 0
## 4575 2 0 0
## 4576 3 1 0
## 4577 2 0 0
## 4578 2 0 0
## 4579 2 0 0
## 4580 2 0 0
## 4581 2 1 0
## 4582 2 0 0
## 4583 2 0 0
## 4584 2 0 0
## 4585 2 0 0
## 4586 2 0 0
## 4587 2 0 0
## 4588 2 2 0
## 4589 2 0 0
## 4590 2 0 0
## 4591 2 2 0
## 4592 2 0 0
## 4593 2 1 0
## 4594 2 0 0
## 4595 2 0 0
## 4596 2 0 0
## 4597 2 0 0
## 4598 2 0 0
## 4599 2 0 0
## 4600 2 0 0
## 4601 2 0 0
## 4602 2 0 0
## 4603 2 0 0
## 4604 2 0 0
## 4605 2 0 0
## 4606 2 0 0
## 4607 2 0 0
## 4608 2 0 0
## 4609 2 0 0
## 4610 2 0 0
## 4611 2 0 0
## 4612 2 0 0
## 4613 2 0 0
## 4614 2 0 0
## 4615 2 0 0
## 4616 2 0 0
## 4617 2 0 0
## 4618 2 0 0
## 4619 2 0 0
## 4620 2 0 0
## 4621 2 0 0
## 4622 2 0 0
## 4623 2 0 0
## 4624 2 0 0
## 4625 1 0 0
## 4626 2 0 0
## 4627 2 0 0
## 4628 2 0 0
## 4629 2 0 0
## 4630 2 0 0
## 4631 1 0 0
## 4632 2 0 0
## 4633 2 0 0
## 4634 2 0 0
## 4635 2 0 0
## 4636 2 0 0
## 4637 2 0 0
## 4638 2 0 0
## 4639 2 0 0
## 4640 2 0 0
## 4641 2 0 0
## 4642 1 0 0
## 4643 2 0 0
## 4644 2 0 0
## 4645 2 0 0
## 4646 2 0 0
## 4647 2 0 0
## 4648 2 0 0
## 4649 2 0 0
## 4650 2 0 0
## 4651 2 0 0
## 4652 2 0 0
## 4653 2 0 0
## 4654 1 0 0
## 4655 2 0 0
## 4656 1 0 0
## 4657 2 0 0
## 4658 2 0 0
## 4659 2 0 0
## 4660 2 2 0
## 4661 2 0 0
## 4662 1 0 0
## 4663 2 0 0
## 4664 2 0 0
## 4665 2 0 0
## 4666 2 0 0
## 4667 2 0 0
## 4668 2 0 0
## 4669 2 0 0
## 4670 2 0 0
## 4671 1 0 0
## 4672 1 0 0
## 4673 1 0 0
## 4674 2 0 0
## 4675 2 0 0
## 4676 2 0 0
## 4677 2 0 0
## 4678 2 0 0
## 4679 2 0 0
## 4680 2 0 0
## 4681 1 0 0
## 4682 2 0 0
## 4683 1 0 0
## 4684 1 0 0
## 4685 2 0 0
## 4686 2 0 0
## 4687 1 0 0
## 4688 2 0 0
## 4689 2 0 0
## 4690 2 0 0
## 4691 2 0 0
## 4692 2 0 0
## 4693 2 0 0
## 4694 2 0 0
## 4695 2 0 0
## 4696 2 0 0
## 4697 2 0 0
## 4698 1 0 0
## 4699 2 0 0
## 4700 2 0 0
## 4701 1 0 0
## 4702 2 0 0
## 4703 1 0 0
## 4704 2 0 0
## 4705 1 0 0
## 4706 1 0 0
## 4707 2 0 0
## 4708 2 0 0
## 4709 2 0 0
## 4710 2 0 0
## 4711 2 0 0
## 4712 1 0 0
## 4713 1 0 0
## 4714 1 0 0
## 4715 2 0 0
## 4716 1 0 0
## 4717 2 0 0
## 4718 2 0 0
## 4719 1 0 0
## 4720 2 0 0
## 4721 2 0 0
## 4722 2 0 0
## 4723 2 0 0
## 4724 2 0 0
## 4725 2 0 0
## 4726 1 0 0
## 4727 2 0 0
## 4728 1 0 0
## 4729 2 0 0
## 4730 2 0 0
## 4731 2 1 0
## 4732 2 2 0
## 4733 2 0 0
## 4734 2 0 0
## 4735 2 1 0
## 4736 2 1 0
## 4737 2 0 0
## 4738 2 0 0
## 4739 2 0 0
## 4740 2 0 0
## 4741 2 0 0
## 4742 2 0 0
## 4743 2 0 0
## 4744 2 0 0
## 4745 2 0 0
## 4746 2 0 0
## 4747 2 0 0
## 4748 2 0 0
## 4749 2 2 0
## 4750 2 0 0
## 4751 2 0 0
## 4752 2 0 0
## 4753 2 0 0
## 4754 3 1 0
## 4755 2 0 0
## 4756 2 0 0
## 4757 2 0 0
## 4758 2 0 0
## 4759 2 0 0
## 4760 2 0 0
## 4761 2 0 0
## 4762 2 0 0
## 4763 2 0 0
## 4764 2 0 0
## 4765 2 0 0
## 4766 2 0 0
## 4767 2 0 0
## 4768 2 0 0
## 4769 2 0 0
## 4770 2 0 0
## 4771 2 0 0
## 4772 2 0 0
## 4773 2 0 0
## 4774 1 0 0
## 4775 1 0 0
## 4776 2 0 0
## 4777 2 0 0
## 4778 2 0 0
## 4779 2 0 0
## 4780 2 0 0
## 4781 2 0 0
## 4782 2 0 0
## 4783 2 0 0
## 4784 2 0 0
## 4785 2 2 0
## 4786 2 0 0
## 4787 2 0 0
## 4788 2 0 0
## 4789 2 0 0
## 4790 2 0 0
## 4791 2 0 0
## 4792 2 0 0
## 4793 2 0 0
## 4794 2 0 0
## 4795 2 0 0
## 4796 2 0 0
## 4797 2 0 0
## 4798 2 0 0
## 4799 2 0 0
## 4800 2 0 0
## 4801 2 0 0
## 4802 2 0 0
## 4803 2 0 0
## 4804 2 0 0
## 4805 2 0 0
## 4806 2 0 0
## 4807 2 0 0
## 4808 2 0 0
## 4809 1 0 0
## 4810 2 0 0
## 4811 2 0 0
## 4812 2 0 0
## 4813 2 0 0
## 4814 1 0 0
## 4815 2 0 0
## 4816 2 0 0
## 4817 2 0 0
## 4818 2 0 0
## 4819 1 0 0
## 4820 2 0 0
## 4821 2 0 0
## 4822 1 0 0
## 4823 3 1 0
## 4824 2 0 0
## 4825 2 0 0
## 4826 2 0 0
## 4827 2 0 0
## 4828 2 0 0
## 4829 2 0 0
## 4830 2 0 0
## 4831 2 0 0
## 4832 2 0 0
## 4833 2 0 0
## 4834 1 0 0
## 4835 3 0 0
## 4836 2 0 0
## 4837 2 0 0
## 4838 2 0 0
## 4839 2 0 0
## 4840 2 0 0
## 4841 3 0 0
## 4842 1 0 0
## 4843 2 0 0
## 4844 2 0 0
## 4845 2 0 0
## 4846 2 0 0
## 4847 2 0 0
## 4848 2 0 0
## 4849 2 0 0
## 4850 2 0 0
## 4851 2 0 0
## 4852 2 0 0
## 4853 2 0 0
## 4854 2 0 0
## 4855 2 0 0
## 4856 2 0 0
## 4857 2 0 0
## 4858 2 0 0
## 4859 2 0 0
## 4860 2 0 0
## 4861 2 0 0
## 4862 2 0 0
## 4863 2 0 0
## 4864 2 0 0
## 4865 2 0 0
## 4866 2 0 0
## 4867 2 0 0
## 4868 2 0 0
## 4869 2 0 0
## 4870 2 0 0
## 4871 2 0 0
## 4872 2 0 0
## 4873 2 0 0
## 4874 2 0 0
## 4875 2 0 0
## 4876 2 0 0
## 4877 2 0 0
## 4878 2 0 0
## 4879 2 0 0
## 4880 2 0 0
## 4881 2 0 0
## 4882 1 0 0
## 4883 2 0 0
## 4884 2 0 0
## 4885 2 0 0
## 4886 2 0 0
## 4887 2 0 0
## 4888 2 0 0
## 4889 2 0 0
## 4890 2 0 0
## 4891 2 0 0
## 4892 2 0 0
## 4893 2 0 0
## 4894 2 0 0
## 4895 2 0 0
## 4896 2 0 0
## 4897 2 0 0
## 4898 2 0 0
## 4899 2 0 0
## 4900 2 0 0
## 4901 2 0 0
## 4902 2 0 0
## 4903 2 0 0
## 4904 2 0 0
## 4905 2 0 0
## 4906 2 0 0
## 4907 2 0 0
## 4908 2 0 0
## 4909 2 0 0
## 4910 2 0 0
## 4911 2 0 0
## 4912 2 0 0
## 4913 2 0 0
## 4914 2 0 0
## 4915 2 0 0
## 4916 2 0 0
## 4917 3 0 0
## 4918 1 0 0
## 4919 2 0 0
## 4920 2 0 0
## 4921 2 0 0
## 4922 2 0 0
## 4923 2 0 0
## 4924 2 0 0
## 4925 2 0 0
## 4926 2 0 0
## 4927 2 0 0
## 4928 2 0 0
## 4929 2 0 0
## 4930 2 0 0
## 4931 2 0 0
## 4932 2 0 0
## 4933 2 0 0
## 4934 2 0 0
## 4935 2 0 0
## 4936 2 0 0
## 4937 2 0 0
## 4938 2 0 0
## 4939 2 0 0
## 4940 2 0 0
## 4941 2 0 0
## 4942 3 0 0
## 4943 1 0 0
## 4944 2 0 0
## 4945 2 0 0
## 4946 2 0 0
## 4947 2 0 0
## 4948 2 0 0
## 4949 2 0 0
## 4950 2 0 0
## 4951 2 0 0
## 4952 2 0 0
## 4953 2 0 0
## 4954 2 0 0
## 4955 2 0 0
## 4956 2 0 0
## 4957 2 1 0
## 4958 2 0 0
## 4959 2 0 0
## 4960 2 0 0
## 4961 2 0 0
## 4962 2 0 0
## 4963 2 2 0
## 4964 2 0 0
## 4965 1 0 0
## 4966 2 0 0
## 4967 2 0 0
## 4968 2 0 0
## 4969 2 0 0
## 4970 2 0 0
## 4971 3 1 0
## 4972 2 2 0
## 4973 2 0 0
## 4974 2 1 0
## 4975 0 0 0
## 4976 2 0 0
## 4977 2 0 0
## 4978 2 0 0
## 4979 2 2 0
## 4980 2 0 0
## 4981 2 0 0
## 4982 2 1 0
## 4983 2 0 0
## 4984 2 0 0
## 4985 2 0 0
## 4986 2 0 0
## 4987 2 0 0
## 4988 2 0 0
## 4989 2 0 0
## 4990 2 0 0
## 4991 2 0 0
## 4992 2 0 0
## 4993 2 0 0
## 4994 2 0 0
## 4995 2 0 0
## 4996 2 0 0
## 4997 3 0 0
## 4998 1 0 0
## 4999 2 0 0
## 5000 1 0 0
## 5001 2 0 0
## 5002 2 0 0
## 5003 2 0 0
## 5004 2 0 0
## 5005 2 1 0
## 5006 2 0 0
## 5007 2 0 0
## 5008 2 0 0
## 5009 2 0 0
## 5010 2 0 0
## 5011 2 0 0
## 5012 3 1 0
## 5013 3 1 0
## 5014 2 0 0
## 5015 1 0 0
## 5016 2 0 0
## 5017 2 0 0
## 5018 2 0 0
## 5019 1 0 0
## 5020 1 0 0
## 5021 2 1 0
## 5022 2 2 0
## 5023 1 0 0
## 5024 2 2 0
## 5025 1 0 0
## 5026 2 1 0
## 5027 2 1 0
## 5028 2 0 0
## 5029 2 2 0
## 5030 2 0 0
## 5031 2 0 0
## 5032 2 0 0
## 5033 2 2 0
## 5034 2 0 0
## 5035 2 0 0
## 5036 2 0 0
## 5037 2 0 0
## 5038 2 0 0
## 5039 2 1 0
## 5040 2 0 0
## 5041 2 0 0
## 5042 2 0 0
## 5043 2 0 0
## 5044 2 0 0
## 5045 2 0 0
## 5046 2 0 0
## 5047 2 0 0
## 5048 2 0 0
## 5049 2 0 0
## 5050 1 0 0
## 5051 2 0 0
## 5052 2 0 0
## 5053 2 0 0
## 5054 2 0 0
## 5055 2 0 0
## 5056 2 0 0
## 5057 2 0 0
## 5058 2 0 0
## 5059 2 0 0
## 5060 2 0 0
## 5061 2 0 0
## 5062 2 0 0
## 5063 2 0 0
## 5064 2 0 0
## 5065 2 0 0
## 5066 2 0 0
## 5067 2 0 0
## 5068 2 0 0
## 5069 1 0 0
## 5070 2 0 0
## 5071 2 0 0
## 5072 2 0 0
## 5073 2 0 0
## 5074 2 0 0
## 5075 2 0 0
## 5076 2 0 0
## 5077 2 0 0
## 5078 2 0 0
## 5079 2 0 0
## 5080 2 0 0
## 5081 2 0 0
## 5082 2 0 0
## 5083 2 0 0
## 5084 2 0 0
## 5085 2 0 0
## 5086 2 0 0
## 5087 2 0 0
## 5088 2 0 0
## 5089 2 0 0
## 5090 2 0 0
## 5091 2 0 0
## 5092 2 0 0
## 5093 2 0 0
## 5094 2 0 0
## 5095 2 0 0
## 5096 2 0 0
## 5097 2 0 0
## 5098 2 0 0
## 5099 2 0 0
## 5100 2 0 0
## 5101 2 0 0
## 5102 2 0 0
## 5103 2 0 0
## 5104 2 0 0
## 5105 2 0 0
## 5106 1 0 0
## 5107 2 0 0
## 5108 2 0 0
## 5109 2 0 0
## 5110 2 2 0
## 5111 2 0 0
## 5112 1 0 0
## 5113 1 0 0
## 5114 2 0 0
## 5115 2 2 0
## 5116 2 0 0
## 5117 2 0 0
## 5118 2 0 0
## 5119 2 0 0
## 5120 2 0 0
## 5121 2 0 0
## 5122 2 0 0
## 5123 2 0 0
## 5124 1 0 0
## 5125 2 0 0
## 5126 2 0 0
## 5127 2 0 0
## 5128 2 0 0
## 5129 2 0 0
## 5130 2 0 0
## 5131 2 0 0
## 5132 2 0 0
## 5133 2 0 0
## 5134 1 0 0
## 5135 2 0 0
## 5136 1 0 0
## 5137 2 0 0
## 5138 2 0 0
## 5139 2 0 0
## 5140 2 0 0
## 5141 2 0 0
## 5142 2 0 0
## 5143 2 0 0
## 5144 2 0 0
## 5145 2 0 0
## 5146 2 0 0
## 5147 2 0 0
## 5148 2 0 0
## 5149 2 0 0
## 5150 2 0 0
## 5151 2 0 0
## 5152 2 0 0
## 5153 2 0 0
## 5154 2 0 0
## 5155 2 0 0
## 5156 2 0 0
## 5157 2 0 0
## 5158 2 0 0
## 5159 1 0 0
## 5160 1 0 0
## 5161 1 0 0
## 5162 2 0 0
## 5163 1 0 0
## 5164 2 0 0
## 5165 2 0 0
## 5166 2 0 0
## 5167 1 0 0
## 5168 2 0 0
## 5169 2 0 0
## 5170 1 0 0
## 5171 2 0 0
## 5172 2 0 0
## 5173 2 0 0
## 5174 2 0 0
## 5175 2 0 0
## 5176 2 0 0
## 5177 2 0 0
## 5178 2 0 0
## 5179 2 0 0
## 5180 2 0 0
## 5181 2 0 0
## 5182 2 0 0
## 5183 2 0 0
## 5184 2 0 0
## 5185 2 0 0
## 5186 2 0 0
## 5187 1 0 0
## 5188 1 0 0
## 5189 1 0 0
## 5190 2 0 0
## 5191 1 0 0
## 5192 2 0 0
## 5193 2 0 0
## 5194 1 0 0
## 5195 1 0 0
## 5196 2 0 0
## 5197 1 0 0
## 5198 1 0 0
## 5199 1 0 0
## 5200 2 0 0
## 5201 2 0 0
## 5202 1 0 0
## 5203 2 0 0
## 5204 2 0 0
## 5205 2 0 0
## 5206 2 0 0
## 5207 2 0 0
## 5208 2 0 0
## 5209 2 0 0
## 5210 2 0 0
## 5211 2 0 0
## 5212 2 0 0
## 5213 2 0 0
## 5214 1 0 0
## 5215 1 0 0
## 5216 2 0 0
## 5217 2 0 0
## 5218 2 0 0
## 5219 2 0 0
## 5220 2 0 0
## 5221 2 0 0
## 5222 2 0 0
## 5223 2 0 0
## 5224 2 0 0
## 5225 1 0 0
## 5226 2 0 0
## 5227 2 0 0
## 5228 1 0 0
## 5229 1 0 0
## 5230 2 0 0
## 5231 1 0 0
## 5232 1 0 0
## 5233 1 0 0
## 5234 1 0 0
## 5235 1 0 0
## 5236 1 0 0
## 5237 1 0 0
## 5238 1 0 0
## 5239 1 0 0
## 5240 1 0 0
## 5241 1 0 0
## 5242 2 2 0
## 5243 2 0 0
## 5244 2 0 0
## 5245 2 0 0
## 5246 1 0 0
## 5247 1 0 0
## 5248 1 0 0
## 5249 1 0 0
## 5250 1 0 0
## 5251 2 0 0
## 5252 1 0 0
## 5253 2 0 0
## 5254 2 0 0
## 5255 2 0 0
## 5256 2 0 0
## 5257 2 0 0
## 5258 2 0 0
## 5259 1 0 0
## 5260 2 0 0
## 5261 2 0 0
## 5262 1 0 0
## 5263 2 0 0
## 5264 2 0 0
## 5265 2 0 0
## 5266 2 0 0
## 5267 2 0 0
## 5268 1 0 0
## 5269 2 0 0
## 5270 2 0 0
## 5271 1 0 0
## 5272 2 0 0
## 5273 2 0 0
## 5274 2 0 0
## 5275 2 0 0
## 5276 1 0 0
## 5277 1 0 0
## 5278 1 0 0
## 5279 1 0 0
## 5280 2 0 0
## 5281 1 0 0
## 5282 2 0 0
## 5283 2 0 0
## 5284 2 0 0
## 5285 2 0 0
## 5286 2 2 0
## 5287 2 0 0
## 5288 2 0 0
## 5289 2 0 0
## 5290 2 0 0
## 5291 2 2 0
## 5292 2 0 0
## 5293 1 0 0
## 5294 2 0 0
## 5295 2 2 0
## 5296 2 0 0
## 5297 2 0 0
## 5298 2 0 0
## 5299 2 0 0
## 5300 1 0 0
## 5301 2 0 0
## 5302 2 0 0
## 5303 3 1 0
## 5304 2 2 0
## 5305 2 0 0
## 5306 2 0 0
## 5307 1 0 0
## 5308 2 0 0
## 5309 2 0 0
## 5310 2 0 0
## 5311 1 0 0
## 5312 2 2 0
## 5313 2 0 0
## 5314 2 1 0
## 5315 2 0 0
## 5316 2 0 0
## 5317 2 0 0
## 5318 2 0 0
## 5319 2 0 0
## 5320 2 0 0
## 5321 1 0 0
## 5322 1 0 0
## 5323 2 0 0
## 5324 2 0 0
## 5325 2 0 0
## 5326 2 0 0
## 5327 2 0 0
## 5328 2 0 0
## 5329 2 0 0
## 5330 1 0 0
## 5331 2 0 0
## 5332 2 0 0
## 5333 2 0 0
## 5334 2 0 0
## 5335 3 1 0
## 5336 2 0 0
## 5337 2 0 0
## 5338 2 2 0
## 5339 3 1 0
## 5340 3 1 0
## 5341 2 0 0
## 5342 2 1 0
## 5343 2 0 0
## 5344 2 0 0
## 5345 2 0 0
## 5346 2 0 0
## 5347 2 0 0
## 5348 2 0 0
## 5349 2 0 0
## 5350 2 0 0
## 5351 2 0 0
## 5352 2 0 0
## 5353 2 0 0
## 5354 2 0 0
## 5355 2 0 0
## 5356 2 0 0
## 5357 2 0 0
## 5358 2 0 0
## 5359 2 0 0
## 5360 2 0 0
## 5361 2 0 0
## 5362 2 0 0
## 5363 2 0 0
## 5364 2 0 0
## 5365 2 0 0
## 5366 2 0 0
## 5367 2 0 0
## 5368 2 0 0
## 5369 2 0 0
## 5370 3 0 0
## 5371 2 0 0
## 5372 2 0 0
## 5373 2 0 0
## 5374 2 0 0
## 5375 2 0 0
## 5376 2 0 0
## 5377 2 0 0
## 5378 2 0 0
## 5379 2 0 0
## 5380 2 0 0
## 5381 2 0 0
## 5382 2 0 0
## 5383 3 0 0
## 5384 2 0 0
## 5385 2 0 0
## 5386 2 0 0
## 5387 2 0 0
## 5388 1 0 0
## 5389 1 0 0
## 5390 2 0 0
## 5391 3 0 0
## 5392 3 1 0
## 5393 1 0 0
## 5394 2 0 0
## 5395 2 0 0
## 5396 2 0 0
## 5397 2 0 0
## 5398 2 0 0
## 5399 2 0 0
## 5400 2 0 0
## 5401 3 0 0
## 5402 2 1 0
## 5403 2 0 0
## 5404 2 0 0
## 5405 2 0 0
## 5406 2 2 0
## 5407 2 2 0
## 5408 2 0 0
## 5409 2 0 0
## 5410 2 0 0
## 5411 2 0 0
## 5412 2 0 0
## 5413 2 0 0
## 5414 2 0 0
## 5415 2 0 0
## 5416 2 0 0
## 5417 2 0 0
## 5418 2 2 0
## 5419 2 0 0
## 5420 2 0 0
## 5421 2 0 0
## 5422 2 0 0
## 5423 2 0 0
## 5424 2 0 0
## 5425 2 0 0
## 5426 3 0 0
## 5427 2 0 0
## 5428 2 0 0
## 5429 2 0 0
## 5430 3 0 0
## 5431 1 0 0
## 5432 2 0 0
## 5433 2 0 0
## 5434 2 0 0
## 5435 2 2 0
## 5436 2 0 0
## 5437 2 0 0
## 5438 2 0 0
## 5439 2 0 0
## 5440 2 0 0
## 5441 2 0 0
## 5442 2 0 0
## 5443 2 0 0
## 5444 3 0 0
## 5445 2 0 0
## 5446 2 0 0
## 5447 2 0 0
## 5448 2 0 0
## 5449 3 0 0
## 5450 2 0 0
## 5451 2 0 0
## 5452 2 0 0
## 5453 2 0 0
## 5454 2 0 0
## 5455 2 0 0
## 5456 2 0 0
## 5457 2 0 0
## 5458 2 0 0
## 5459 2 0 0
## 5460 2 0 0
## 5461 2 0 0
## 5462 2 0 0
## 5463 2 0 0
## 5464 2 0 0
## 5465 2 0 0
## 5466 2 0 0
## 5467 2 0 0
## 5468 2 0 0
## 5469 2 0 0
## 5470 2 0 0
## 5471 2 0 0
## 5472 2 0 0
## 5473 2 0 0
## 5474 2 0 0
## 5475 2 0 0
## 5476 2 0 0
## 5477 2 0 0
## 5478 2 0 0
## 5479 2 0 0
## 5480 2 0 0
## 5481 2 0 0
## 5482 2 0 0
## 5483 2 0 0
## 5484 2 0 0
## 5485 2 0 0
## 5486 2 0 0
## 5487 2 0 0
## 5488 2 0 0
## 5489 2 0 0
## 5490 2 0 0
## 5491 2 0 0
## 5492 2 0 0
## 5493 2 0 0
## 5494 2 0 0
## 5495 2 0 0
## 5496 2 0 0
## 5497 2 0 0
## 5498 2 0 0
## 5499 2 2 0
## 5500 2 0 0
## 5501 2 0 0
## 5502 1 0 0
## 5503 2 0 0
## 5504 2 0 0
## 5505 2 0 0
## 5506 2 0 0
## 5507 2 0 0
## 5508 2 0 0
## 5509 2 0 0
## 5510 2 0 0
## 5511 2 0 0
## 5512 2 0 0
## 5513 2 0 0
## 5514 2 2 0
## 5515 2 0 0
## 5516 2 0 0
## 5517 2 2 0
## 5518 2 0 0
## 5519 2 2 0
## 5520 2 0 0
## 5521 2 0 0
## 5522 2 0 0
## 5523 1 0 0
## 5524 2 0 0
## 5525 2 0 0
## 5526 2 0 0
## 5527 2 0 0
## 5528 2 0 0
## 5529 2 2 0
## 5530 1 0 0
## 5531 2 0 0
## 5532 2 0 0
## 5533 2 0 0
## 5534 2 0 0
## 5535 2 0 0
## 5536 2 0 0
## 5537 2 0 0
## 5538 2 0 0
## 5539 2 1 0
## 5540 2 0 0
## 5541 2 0 0
## 5542 1 0 0
## 5543 1 0 0
## 5544 2 0 0
## 5545 2 0 0
## 5546 2 0 0
## 5547 2 0 0
## 5548 1 0 0
## 5549 2 0 0
## 5550 2 0 0
## 5551 2 0 0
## 5552 3 0 0
## 5553 2 0 0
## 5554 2 0 0
## 5555 2 0 0
## 5556 1 0 0
## 5557 2 0 0
## 5558 2 0 0
## 5559 2 1 0
## 5560 2 0 0
## 5561 1 0 0
## 5562 2 0 0
## 5563 2 2 0
## 5564 2 0 0
## 5565 1 0 0
## 5566 1 0 0
## 5567 2 0 0
## 5568 2 0 0
## 5569 1 0 0
## 5570 3 0 0
## 5571 1 0 0
## 5572 2 1 0
## 5573 2 0 0
## 5574 2 0 0
## 5575 2 0 0
## 5576 2 0 0
## 5577 2 0 0
## 5578 2 0 0
## 5579 2 0 0
## 5580 2 2 0
## 5581 2 0 0
## 5582 2 0 0
## 5583 2 0 0
## 5584 2 0 0
## 5585 2 0 0
## 5586 2 0 0
## 5587 2 0 0
## 5588 2 0 0
## 5589 2 0 0
## 5590 2 0 0
## 5591 2 0 0
## 5592 2 0 0
## 5593 2 0 0
## 5594 2 0 0
## 5595 2 0 0
## 5596 2 0 0
## 5597 2 0 0
## 5598 1 0 0
## 5599 2 0 0
## 5600 2 0 0
## 5601 2 0 0
## 5602 2 0 0
## 5603 2 0 0
## 5604 2 0 0
## 5605 2 0 0
## 5606 1 0 0
## 5607 2 0 0
## 5608 3 0 0
## 5609 1 0 0
## 5610 2 1 0
## 5611 2 0 0
## 5612 2 0 0
## 5613 1 0 0
## 5614 1 0 0
## 5615 2 0 0
## 5616 2 0 0
## 5617 2 0 0
## 5618 3 0 0
## 5619 2 0 0
## 5620 2 0 0
## 5621 2 0 0
## 5622 2 0 0
## 5623 2 0 0
## 5624 2 0 0
## 5625 2 0 0
## 5626 2 0 0
## 5627 2 0 0
## 5628 2 0 0
## 5629 1 0 0
## 5630 1 0 0
## 5631 2 0 0
## 5632 2 0 0
## 5633 2 0 0
## 5634 2 0 0
## 5635 1 0 0
## 5636 1 0 0
## 5637 2 0 0
## 5638 2 0 0
## 5639 2 0 0
## 5640 2 0 0
## 5641 2 0 0
## 5642 2 0 0
## 5643 2 0 0
## 5644 2 0 0
## 5645 2 0 0
## 5646 2 2 0
## 5647 2 0 0
## 5648 2 0 0
## 5649 2 0 0
## 5650 1 0 0
## 5651 2 0 0
## 5652 2 0 0
## 5653 2 0 0
## 5654 2 0 0
## 5655 2 0 0
## 5656 2 0 0
## 5657 3 1 0
## 5658 2 0 0
## 5659 2 0 0
## 5660 2 2 0
## 5661 2 0 0
## 5662 2 0 0
## 5663 2 0 0
## 5664 2 1 0
## 5665 2 0 0
## 5666 2 0 0
## 5667 1 0 0
## 5668 2 2 0
## 5669 2 1 0
## 5670 2 0 0
## 5671 1 0 0
## 5672 2 0 0
## 5673 2 0 0
## 5674 2 0 0
## 5675 1 0 0
## 5676 1 0 0
## 5677 1 0 0
## 5678 2 0 0
## 5679 2 0 0
## 5680 2 0 0
## 5681 1 0 0
## 5682 2 0 0
## 5683 2 0 0
## 5684 1 0 0
## 5685 1 0 0
## 5686 1 0 0
## 5687 2 0 0
## 5688 2 0 0
## 5689 2 0 0
## 5690 1 0 0
## 5691 2 0 0
## 5692 2 0 0
## 5693 1 0 0
## 5694 1 0 0
## 5695 2 0 0
## 5696 2 0 0
## 5697 3 0 0
## 5698 2 0 0
## 5699 2 0 0
## 5700 1 0 0
## 5701 2 0 0
## 5702 1 0 0
## 5703 2 0 0
## 5704 2 0 0
## 5705 2 0 0
## 5706 1 0 0
## 5707 1 0 0
## 5708 1 0 0
## 5709 1 0 0
## 5710 2 0 0
## 5711 2 0 0
## 5712 2 0 0
## 5713 2 0 0
## 5714 2 0 0
## 5715 2 2 0
## 5716 2 0 0
## 5717 2 0 0
## 5718 2 0 0
## 5719 2 0 0
## 5720 2 0 0
## 5721 2 0 0
## 5722 2 0 0
## 5723 2 0 0
## 5724 2 0 0
## 5725 2 0 0
## 5726 2 0 0
## 5727 2 0 0
## 5728 2 0 0
## 5729 2 0 0
## 5730 1 0 0
## 5731 2 0 0
## 5732 1 0 0
## 5733 1 0 0
## 5734 2 0 0
## 5735 2 0 0
## 5736 2 0 0
## 5737 2 0 0
## 5738 2 0 0
## 5739 2 0 0
## 5740 2 0 0
## 5741 2 0 0
## 5742 2 0 0
## 5743 2 0 0
## 5744 2 0 0
## 5745 2 0 0
## 5746 2 0 0
## 5747 2 0 0
## 5748 2 0 0
## 5749 2 0 0
## 5750 2 0 0
## 5751 2 0 0
## 5752 2 0 0
## 5753 2 0 0
## 5754 2 0 0
## 5755 1 0 0
## 5756 2 0 0
## 5757 2 0 0
## 5758 1 0 0
## 5759 2 0 0
## 5760 2 0 0
## 5761 2 0 0
## 5762 3 1 0
## 5763 2 2 0
## 5764 2 0 0
## 5765 3 1 0
## 5766 2 0 0
## 5767 1 0 0
## 5768 1 0 0
## 5769 1 0 0
## 5770 2 0 0
## 5771 1 0 0
## 5772 2 0 0
## 5773 2 0 0
## 5774 2 0 0
## 5775 2 0 0
## 5776 1 0 0
## 5777 2 0 0
## 5778 2 0 0
## 5779 2 0 0
## 5780 2 0 0
## 5781 2 0 0
## 5782 2 0 0
## 5783 2 0 0
## 5784 2 0 0
## 5785 2 0 0
## 5786 2 0 0
## 5787 3 0 0
## 5788 2 0 0
## 5789 2 0 0
## 5790 2 0 0
## 5791 1 0 0
## 5792 1 0 0
## 5793 2 0 0
## 5794 2 0 0
## 5795 1 0 0
## 5796 2 0 0
## 5797 2 0 0
## 5798 2 0 0
## 5799 2 0 0
## 5800 1 0 0
## 5801 2 0 0
## 5802 2 0 0
## 5803 2 0 0
## 5804 2 0 0
## 5805 2 0 0
## 5806 2 0 0
## 5807 1 0 0
## 5808 1 0 0
## 5809 2 0 0
## 5810 2 0 0
## 5811 2 0 0
## 5812 2 0 0
## 5813 2 0 0
## 5814 1 0 0
## 5815 1 0 0
## 5816 2 0 0
## 5817 2 0 0
## 5818 2 0 0
## 5819 2 0 0
## 5820 2 0 0
## 5821 2 0 0
## 5822 2 0 0
## 5823 2 0 0
## 5824 2 0 0
## 5825 2 0 0
## 5826 2 0 0
## 5827 2 0 0
## 5828 2 0 0
## 5829 2 0 0
## 5830 2 0 0
## 5831 2 0 0
## 5832 2 0 0
## 5833 2 0 0
## 5834 2 0 0
## 5835 1 0 0
## 5836 1 0 0
## 5837 2 0 0
## 5838 2 0 0
## 5839 2 0 0
## 5840 2 0 0
## 5841 2 0 0
## 5842 2 0 0
## 5843 2 0 0
## 5844 2 0 0
## 5845 2 0 0
## 5846 2 0 0
## 5847 2 0 0
## 5848 2 0 0
## 5849 2 0 0
## 5850 2 0 0
## 5851 2 0 0
## 5852 2 0 0
## 5853 2 0 0
## 5854 2 0 0
## 5855 2 0 0
## 5856 2 0 0
## 5857 2 0 0
## 5858 2 0 0
## 5859 2 0 0
## 5860 2 0 0
## 5861 2 0 0
## 5862 2 0 0
## 5863 2 0 0
## 5864 2 0 0
## 5865 2 0 0
## 5866 2 0 0
## 5867 2 0 0
## 5868 2 0 0
## 5869 2 0 0
## 5870 2 0 0
## 5871 2 0 0
## 5872 2 0 0
## 5873 2 0 0
## 5874 2 0 0
## 5875 2 0 0
## 5876 2 0 0
## 5877 2 0 0
## 5878 2 0 0
## 5879 1 0 0
## 5880 1 0 0
## 5881 2 0 0
## 5882 2 0 0
## 5883 2 0 0
## 5884 2 0 0
## 5885 2 0 0
## 5886 2 0 0
## 5887 2 0 0
## 5888 2 0 0
## 5889 2 0 0
## 5890 2 0 0
## 5891 2 0 0
## 5892 2 0 0
## 5893 1 0 0
## 5894 2 0 0
## 5895 2 0 0
## 5896 2 0 0
## 5897 1 0 0
## 5898 1 0 0
## 5899 2 0 0
## 5900 2 0 0
## 5901 2 0 0
## 5902 1 0 0
## 5903 1 0 0
## 5904 2 0 0
## 5905 2 0 0
## 5906 2 0 0
## 5907 2 0 0
## 5908 2 0 0
## 5909 2 0 0
## 5910 2 0 0
## 5911 2 0 0
## 5912 2 0 0
## 5913 2 0 0
## 5914 1 0 0
## 5915 1 0 0
## 5916 2 0 0
## 5917 1 0 0
## 5918 1 0 0
## 5919 2 0 0
## 5920 2 0 0
## 5921 2 0 0
## 5922 1 0 0
## 5923 2 0 0
## 5924 2 0 0
## 5925 2 0 0
## 5926 2 0 0
## 5927 2 0 0
## 5928 1 0 0
## 5929 1 0 0
## 5930 1 0 0
## 5931 2 0 0
## 5932 2 0 0
## 5933 2 0 0
## 5934 3 0 0
## 5935 2 0 0
## 5936 2 0 0
## 5937 2 0 0
## 5938 2 0 0
## 5939 2 0 0
## 5940 2 0 0
## 5941 2 0 0
## 5942 2 0 0
## 5943 2 0 0
## 5944 2 0 0
## 5945 2 0 0
## 5946 2 2 0
## 5947 2 0 0
## 5948 1 0 0
## 5949 1 0 0
## 5950 2 0 0
## 5951 1 0 0
## 5952 2 0 0
## 5953 2 0 0
## 5954 2 0 0
## 5955 2 0 0
## 5956 2 0 0
## 5957 2 0 0
## 5958 2 0 0
## 5959 2 0 0
## 5960 2 0 0
## 5961 2 0 0
## 5962 2 0 0
## 5963 2 0 0
## 5964 2 0 0
## 5965 2 0 0
## 5966 2 0 0
## 5967 2 0 0
## 5968 2 0 0
## 5969 1 0 0
## 5970 1 0 0
## 5971 1 0 0
## 5972 2 0 0
## 5973 2 0 0
## 5974 2 0 0
## 5975 1 0 0
## 5976 2 0 0
## 5977 1 0 0
## 5978 2 0 0
## 5979 2 0 0
## 5980 2 0 0
## 5981 2 0 0
## 5982 2 0 0
## 5983 1 0 0
## 5984 1 0 0
## 5985 2 0 0
## 5986 2 0 0
## 5987 2 0 0
## 5988 2 0 0
## 5989 2 0 0
## 5990 1 0 0
## 5991 2 0 0
## 5992 2 0 0
## 5993 1 0 0
## 5994 2 0 0
## 5995 1 0 0
## 5996 1 0 0
## 5997 2 0 0
## 5998 1 0 0
## 5999 1 0 0
## 6000 2 0 0
## 6001 2 0 0
## 6002 2 2 0
## 6003 2 0 0
## 6004 2 0 0
## 6005 1 0 0
## 6006 2 0 0
## 6007 2 0 0
## 6008 2 0 0
## 6009 2 0 0
## 6010 2 0 0
## 6011 2 0 0
## 6012 2 0 0
## 6013 2 0 0
## 6014 1 0 0
## 6015 2 0 0
## 6016 2 0 0
## 6017 2 0 0
## 6018 2 0 0
## 6019 2 0 0
## 6020 2 0 0
## 6021 1 0 0
## 6022 2 0 0
## 6023 2 0 0
## 6024 2 0 0
## 6025 1 0 0
## 6026 2 0 0
## 6027 2 0 0
## 6028 2 0 0
## 6029 2 0 0
## 6030 2 0 0
## 6031 2 0 0
## 6032 1 0 0
## 6033 2 0 0
## 6034 2 0 0
## 6035 1 0 0
## 6036 2 2 0
## 6037 1 0 0
## 6038 2 0 0
## 6039 2 0 0
## 6040 2 0 0
## 6041 1 0 0
## 6042 2 0 0
## 6043 2 0 0
## 6044 1 0 0
## 6045 2 0 0
## 6046 2 0 0
## 6047 2 0 0
## 6048 2 0 0
## 6049 2 0 0
## 6050 2 0 0
## 6051 2 0 0
## 6052 2 0 0
## 6053 2 0 0
## 6054 2 0 0
## 6055 2 0 0
## 6056 2 0 0
## 6057 2 0 0
## 6058 2 0 0
## 6059 2 0 0
## 6060 2 0 0
## 6061 2 0 0
## 6062 2 0 0
## 6063 2 0 0
## 6064 2 0 0
## 6065 2 0 0
## 6066 2 0 0
## 6067 2 0 0
## 6068 2 0 0
## 6069 3 0 0
## 6070 2 0 0
## 6071 2 0 0
## 6072 1 0 0
## 6073 1 0 0
## 6074 2 0 0
## 6075 2 0 0
## 6076 1 0 0
## 6077 2 0 0
## 6078 2 0 0
## 6079 2 0 0
## 6080 2 0 0
## 6081 2 0 0
## 6082 2 0 0
## 6083 2 0 0
## 6084 2 0 0
## 6085 2 0 0
## 6086 2 0 0
## 6087 2 0 0
## 6088 2 0 0
## 6089 2 0 0
## 6090 2 0 0
## 6091 2 0 0
## 6092 2 0 0
## 6093 2 0 0
## 6094 2 0 0
## 6095 2 0 0
## 6096 2 0 0
## 6097 2 0 0
## 6098 2 0 0
## 6099 2 0 0
## 6100 2 0 0
## 6101 1 0 0
## 6102 2 0 0
## 6103 2 0 0
## 6104 2 0 0
## 6105 2 0 0
## 6106 2 0 0
## 6107 2 0 0
## 6108 2 0 0
## 6109 2 0 0
## 6110 2 0 0
## 6111 2 0 0
## 6112 2 2 0
## 6113 2 0 0
## 6114 2 2 0
## 6115 2 0 0
## 6116 1 0 0
## 6117 1 0 0
## 6118 2 0 0
## 6119 2 0 0
## 6120 2 0 0
## 6121 2 0 0
## 6122 2 0 0
## 6123 2 0 0
## 6124 2 0 0
## 6125 2 0 0
## 6126 2 0 0
## 6127 2 0 0
## 6128 2 0 0
## 6129 2 0 0
## 6130 2 0 0
## 6131 1 0 0
## 6132 2 0 0
## 6133 2 0 0
## 6134 2 0 0
## 6135 2 0 0
## 6136 2 0 0
## 6137 2 0 0
## 6138 2 0 0
## 6139 2 0 0
## 6140 2 0 0
## 6141 2 0 0
## 6142 2 0 0
## 6143 2 0 0
## 6144 2 0 0
## 6145 2 0 0
## 6146 2 0 0
## 6147 2 0 0
## 6148 2 0 0
## 6149 2 0 0
## 6150 2 0 0
## 6151 1 0 0
## 6152 3 1 0
## 6153 2 0 0
## 6154 2 0 0
## 6155 2 2 0
## 6156 2 0 0
## 6157 1 0 0
## 6158 2 0 0
## 6159 2 0 0
## 6160 2 0 0
## 6161 2 0 0
## 6162 2 0 0
## 6163 2 0 0
## 6164 2 0 0
## 6165 2 0 0
## 6166 2 0 0
## 6167 2 0 0
## 6168 2 0 0
## 6169 2 0 0
## 6170 2 0 0
## 6171 2 0 0
## 6172 2 0 0
## 6173 2 0 0
## 6174 2 0 0
## 6175 2 0 0
## 6176 2 0 0
## 6177 2 0 0
## 6178 2 0 0
## 6179 2 0 0
## 6180 2 0 0
## 6181 2 0 0
## 6182 2 0 0
## 6183 2 0 0
## 6184 2 0 0
## 6185 3 1 0
## 6186 2 0 0
## 6187 2 2 0
## 6188 2 0 0
## 6189 2 0 0
## 6190 2 0 0
## 6191 1 0 0
## 6192 2 0 0
## 6193 2 0 0
## 6194 2 0 0
## 6195 2 0 0
## 6196 2 0 0
## 6197 2 0 0
## 6198 2 0 0
## 6199 2 0 0
## 6200 2 0 0
## 6201 2 0 0
## 6202 1 0 0
## 6203 2 0 0
## 6204 2 0 0
## 6205 2 0 0
## 6206 1 0 0
## 6207 2 0 0
## 6208 2 0 0
## 6209 2 0 0
## 6210 2 0 0
## 6211 2 0 0
## 6212 2 0 0
## 6213 2 0 0
## 6214 2 0 0
## 6215 2 0 0
## 6216 2 0 0
## 6217 2 0 0
## 6218 2 0 0
## 6219 2 0 0
## 6220 2 0 0
## 6221 2 0 0
## 6222 1 0 0
## 6223 2 0 0
## 6224 2 0 0
## 6225 2 0 0
## 6226 2 0 0
## 6227 2 0 0
## 6228 2 0 0
## 6229 2 0 0
## 6230 2 2 0
## 6231 2 0 0
## 6232 2 0 0
## 6233 2 0 0
## 6234 2 0 0
## 6235 2 0 0
## 6236 2 0 0
## 6237 2 0 0
## 6238 2 0 0
## 6239 2 0 0
## 6240 2 0 0
## 6241 2 0 0
## 6242 2 0 0
## 6243 2 0 0
## 6244 2 0 0
## 6245 2 0 0
## 6246 2 0 0
## 6247 2 0 0
## 6248 2 0 0
## 6249 2 0 0
## 6250 2 0 0
## 6251 2 0 0
## 6252 2 0 0
## 6253 2 0 0
## 6254 2 0 0
## 6255 2 0 0
## 6256 2 0 0
## 6257 2 0 0
## 6258 2 0 0
## 6259 2 0 0
## 6260 2 0 0
## 6261 2 0 0
## 6262 2 0 0
## 6263 1 0 0
## 6264 1 0 0
## 6265 2 0 0
## 6266 2 0 0
## 6267 2 0 0
## 6268 2 0 0
## 6269 2 0 0
## 6270 2 2 0
## 6271 2 0 0
## 6272 2 0 0
## 6273 2 0 0
## 6274 1 0 0
## 6275 2 0 0
## 6276 2 0 0
## 6277 3 1 0
## 6278 2 2 0
## 6279 2 0 0
## 6280 2 0 0
## 6281 2 0 0
## 6282 2 0 0
## 6283 2 0 0
## 6284 2 0 0
## 6285 2 0 0
## 6286 2 0 0
## 6287 2 0 0
## 6288 2 0 0
## 6289 2 0 0
## 6290 2 0 0
## 6291 2 0 0
## 6292 2 0 0
## 6293 2 0 0
## 6294 2 0 0
## 6295 2 0 0
## 6296 2 0 0
## 6297 2 0 0
## 6298 1 0 0
## 6299 2 0 0
## 6300 1 0 0
## 6301 2 0 0
## 6302 2 0 0
## 6303 2 0 0
## 6304 2 0 0
## 6305 2 0 0
## 6306 2 0 0
## 6307 2 0 0
## 6308 2 0 0
## 6309 2 0 0
## 6310 2 0 0
## 6311 2 0 0
## 6312 2 0 0
## 6313 2 0 0
## 6314 2 0 0
## 6315 2 0 0
## 6316 2 0 0
## 6317 2 0 0
## 6318 2 0 0
## 6319 2 0 0
## 6320 2 0 0
## 6321 2 0 0
## 6322 2 0 0
## 6323 1 0 0
## 6324 1 0 0
## 6325 2 0 0
## 6326 2 0 0
## 6327 2 0 0
## 6328 1 0 0
## 6329 2 0 0
## 6330 2 0 0
## 6331 2 0 0
## 6332 2 0 0
## 6333 2 0 0
## 6334 2 0 0
## 6335 2 0 0
## 6336 2 0 0
## 6337 2 0 0
## 6338 2 2 0
## 6339 2 0 0
## 6340 2 0 0
## 6341 2 0 0
## 6342 2 0 0
## 6343 2 0 0
## 6344 2 0 0
## 6345 2 0 0
## 6346 2 0 0
## 6347 2 0 0
## 6348 2 0 0
## 6349 2 0 0
## 6350 2 0 0
## 6351 1 0 0
## 6352 2 0 0
## 6353 2 0 0
## 6354 2 0 0
## 6355 3 1 0
## 6356 2 0 0
## 6357 2 0 0
## 6358 2 0 0
## 6359 2 0 0
## 6360 2 0 0
## 6361 2 0 0
## 6362 2 0 0
## 6363 2 2 0
## 6364 2 0 0
## 6365 2 0 0
## 6366 2 0 0
## 6367 2 0 0
## 6368 2 0 0
## 6369 2 0 0
## 6370 2 2 0
## 6371 2 0 0
## 6372 2 0 0
## 6373 2 0 0
## 6374 1 0 0
## 6375 2 0 0
## 6376 2 0 0
## 6377 2 0 0
## 6378 2 0 0
## 6379 2 0 0
## 6380 2 0 0
## 6381 2 0 0
## 6382 2 0 0
## 6383 2 0 0
## 6384 2 0 0
## 6385 2 0 0
## 6386 2 0 0
## 6387 2 0 0
## 6388 2 0 0
## 6389 2 0 0
## 6390 2 0 0
## 6391 2 0 0
## 6392 2 0 0
## 6393 2 0 0
## 6394 1 0 0
## 6395 2 0 0
## 6396 2 0 0
## 6397 1 0 0
## 6398 2 0 0
## 6399 2 0 0
## 6400 2 0 0
## 6401 2 0 0
## 6402 2 0 0
## 6403 2 0 0
## 6404 2 0 0
## 6405 1 0 0
## 6406 2 0 0
## 6407 2 0 0
## 6408 2 0 0
## 6409 2 0 0
## 6410 1 0 0
## 6411 2 0 0
## 6412 1 0 0
## 6413 2 0 0
## 6414 2 2 0
## 6415 2 0 0
## 6416 2 0 0
## 6417 2 0 0
## 6418 2 0 0
## 6419 2 0 0
## 6420 2 0 0
## 6421 2 2 0
## 6422 2 0 0
## 6423 2 0 0
## 6424 2 0 0
## 6425 2 0 0
## 6426 2 2 0
## 6427 2 0 0
## 6428 1 1 0
## 6429 2 0 0
## 6430 2 0 0
## 6431 2 0 0
## 6432 2 0 0
## 6433 2 0 0
## 6434 2 0 0
## 6435 2 0 0
## 6436 2 0 0
## 6437 2 0 0
## 6438 2 2 0
## 6439 2 0 0
## 6440 2 0 0
## 6441 2 0 0
## 6442 1 0 0
## 6443 2 0 0
## 6444 2 0 0
## 6445 2 0 0
## 6446 2 0 0
## 6447 2 0 0
## 6448 2 0 0
## 6449 2 0 0
## 6450 2 0 0
## 6451 2 0 0
## 6452 2 0 0
## 6453 2 0 0
## 6454 1 0 0
## 6455 3 0 0
## 6456 2 0 0
## 6457 2 0 0
## 6458 1 0 0
## 6459 1 0 0
## 6460 1 0 0
## 6461 1 0 0
## 6462 2 0 0
## 6463 2 0 0
## 6464 2 0 0
## 6465 2 0 0
## 6466 2 0 0
## 6467 2 0 0
## 6468 2 0 0
## 6469 2 0 0
## 6470 2 0 0
## 6471 2 0 0
## 6472 1 0 0
## 6473 2 0 0
## 6474 2 0 0
## 6475 2 0 0
## 6476 2 2 0
## 6477 2 0 0
## 6478 2 0 0
## 6479 2 0 0
## 6480 2 0 0
## 6481 2 0 0
## 6482 2 0 0
## 6483 2 0 0
## 6484 2 0 0
## 6485 2 0 0
## 6486 2 0 0
## 6487 2 0 0
## 6488 2 0 0
## 6489 2 0 0
## 6490 1 0 0
## 6491 2 0 0
## 6492 1 0 0
## 6493 1 0 0
## 6494 2 0 0
## 6495 2 0 0
## 6496 1 0 0
## 6497 3 0 0
## 6498 2 0 0
## 6499 2 0 0
## 6500 2 2 0
## 6501 2 0 0
## 6502 2 0 0
## 6503 2 0 0
## 6504 2 0 0
## 6505 2 0 0
## 6506 2 0 0
## 6507 2 0 0
## 6508 2 0 0
## 6509 3 1 0
## 6510 2 0 0
## 6511 2 0 0
## 6512 2 0 0
## 6513 2 0 0
## 6514 2 0 0
## 6515 2 0 0
## 6516 2 0 0
## 6517 2 0 0
## 6518 2 0 0
## 6519 2 0 0
## 6520 2 0 0
## 6521 2 0 0
## 6522 2 0 0
## 6523 2 0 0
## 6524 2 0 0
## 6525 2 0 0
## 6526 2 0 0
## 6527 1 0 0
## 6528 1 0 0
## 6529 2 0 0
## 6530 2 0 0
## 6531 2 0 0
## 6532 2 0 0
## 6533 2 0 0
## 6534 2 0 0
## 6535 2 0 0
## 6536 2 0 0
## 6537 2 0 0
## 6538 2 2 0
## 6539 2 0 0
## 6540 2 0 0
## 6541 1 0 0
## 6542 2 0 0
## 6543 2 0 0
## 6544 2 0 0
## 6545 2 0 0
## 6546 2 0 0
## 6547 1 0 0
## 6548 2 0 0
## 6549 2 0 0
## 6550 1 0 0
## 6551 3 0 0
## 6552 2 0 0
## 6553 2 0 0
## 6554 2 0 0
## 6555 2 0 0
## 6556 2 0 0
## 6557 2 0 0
## 6558 2 0 0
## 6559 2 0 0
## 6560 1 0 0
## 6561 2 0 0
## 6562 2 0 0
## 6563 1 0 0
## 6564 2 0 0
## 6565 2 0 0
## 6566 2 0 0
## 6567 2 0 0
## 6568 1 0 0
## 6569 1 0 0
## 6570 2 0 0
## 6571 2 0 0
## 6572 2 0 0
## 6573 2 0 0
## 6574 2 0 0
## 6575 2 0 0
## 6576 2 0 0
## 6577 2 0 0
## 6578 2 0 0
## 6579 2 0 0
## 6580 2 0 0
## 6581 2 0 0
## 6582 2 0 0
## 6583 2 0 0
## 6584 2 0 0
## 6585 2 0 0
## 6586 2 0 0
## 6587 2 0 0
## 6588 2 0 0
## 6589 2 0 0
## 6590 2 0 0
## 6591 2 0 0
## 6592 2 0 0
## 6593 2 0 0
## 6594 2 0 0
## 6595 2 0 0
## 6596 2 0 0
## 6597 2 0 0
## 6598 2 0 0
## 6599 2 2 0
## 6600 2 0 0
## 6601 2 0 0
## 6602 2 0 0
## 6603 2 0 0
## 6604 2 0 0
## 6605 1 0 0
## 6606 2 0 0
## 6607 1 0 0
## 6608 1 2 0
## 6609 2 0 0
## 6610 1 0 0
## 6611 2 0 0
## 6612 2 1 0
## 6613 2 0 0
## 6614 2 2 0
## 6615 2 0 0
## 6616 2 0 0
## 6617 2 0 0
## 6618 2 0 0
## 6619 2 0 0
## 6620 2 0 0
## 6621 2 0 0
## 6622 2 0 0
## 6623 2 0 0
## 6624 2 0 0
## 6625 1 0 0
## 6626 2 0 0
## 6627 2 0 0
## 6628 2 0 0
## 6629 2 0 0
## 6630 2 0 0
## 6631 2 0 0
## 6632 2 0 0
## 6633 2 0 0
## 6634 2 0 0
## 6635 2 0 0
## 6636 1 0 0
## 6637 1 0 0
## 6638 2 0 0
## 6639 2 0 0
## 6640 2 0 0
## 6641 1 0 0
## 6642 1 0 0
## 6643 2 0 0
## 6644 2 0 0
## 6645 2 0 0
## 6646 2 0 0
## 6647 2 0 0
## 6648 2 0 0
## 6649 2 0 0
## 6650 2 0 0
## 6651 1 0 0
## 6652 2 0 0
## 6653 2 0 0
## 6654 2 0 0
## 6655 2 0 0
## 6656 2 0 0
## 6657 1 0 0
## 6658 1 0 0
## 6659 2 0 0
## 6660 2 0 0
## 6661 2 0 0
## 6662 2 0 0
## 6663 2 0 0
## 6664 2 0 0
## 6665 2 0 0
## 6666 2 0 0
## 6667 2 0 0
## 6668 2 0 0
## 6669 2 0 0
## 6670 2 0 0
## 6671 2 0 0
## 6672 1 0 0
## 6673 2 0 0
## 6674 2 0 0
## 6675 2 0 0
## 6676 2 0 0
## 6677 2 0 0
## 6678 2 0 0
## 6679 2 0 0
## 6680 2 0 0
## 6681 2 0 0
## 6682 2 0 0
## 6683 2 0 0
## 6684 2 0 0
## 6685 2 0 0
## 6686 2 0 0
## 6687 2 0 0
## 6688 2 0 0
## 6689 2 0 0
## 6690 2 0 0
## 6691 2 0 0
## 6692 2 0 0
## 6693 2 0 0
## 6694 2 0 0
## 6695 2 0 0
## 6696 2 0 0
## 6697 2 0 0
## 6698 2 0 0
## 6699 2 0 0
## 6700 2 0 0
## 6701 2 0 0
## 6702 2 0 0
## 6703 2 0 0
## 6704 2 0 0
## 6705 2 0 0
## 6706 3 1 0
## 6707 2 0 0
## 6708 2 0 0
## 6709 1 0 0
## 6710 2 0 0
## 6711 1 0 0
## 6712 2 0 0
## 6713 1 0 0
## 6714 2 0 0
## 6715 2 0 0
## 6716 2 0 0
## 6717 2 0 0
## 6718 2 0 0
## 6719 1 0 0
## 6720 2 0 0
## 6721 2 0 0
## 6722 2 0 0
## 6723 1 0 0
## 6724 1 0 0
## 6725 2 0 0
## 6726 2 0 0
## 6727 2 0 0
## 6728 2 0 0
## 6729 2 0 0
## 6730 2 0 0
## 6731 2 0 0
## 6732 2 0 0
## 6733 2 0 0
## 6734 2 0 0
## 6735 2 0 0
## 6736 2 0 0
## 6737 2 0 0
## 6738 2 0 0
## 6739 1 0 0
## 6740 2 0 0
## 6741 2 0 0
## 6742 2 0 0
## 6743 2 0 0
## 6744 1 0 0
## 6745 1 0 0
## 6746 1 0 0
## 6747 2 0 0
## 6748 2 0 0
## 6749 2 0 0
## 6750 1 0 0
## 6751 2 0 0
## 6752 2 0 0
## 6753 2 0 0
## 6754 2 0 0
## 6755 2 0 0
## 6756 2 0 0
## 6757 2 0 0
## 6758 2 0 0
## 6759 2 0 0
## 6760 2 0 0
## 6761 2 0 0
## 6762 2 0 0
## 6763 2 0 0
## 6764 1 0 0
## 6765 3 1 0
## 6766 2 0 0
## 6767 2 0 0
## 6768 2 0 0
## 6769 2 0 0
## 6770 2 0 0
## 6771 2 0 0
## 6772 2 0 0
## 6773 2 0 0
## 6774 2 0 0
## 6775 2 0 0
## 6776 2 0 0
## 6777 2 0 0
## 6778 2 0 0
## 6779 2 0 0
## 6780 2 0 0
## 6781 2 0 0
## 6782 2 0 0
## 6783 2 0 0
## 6784 2 0 0
## 6785 2 0 0
## 6786 2 0 0
## 6787 2 0 0
## 6788 2 0 0
## 6789 2 0 0
## 6790 2 0 0
## 6791 2 0 0
## 6792 2 0 0
## 6793 2 0 0
## 6794 2 0 0
## 6795 2 0 0
## 6796 2 0 0
## 6797 2 0 0
## 6798 1 0 0
## 6799 1 0 0
## 6800 1 0 0
## 6801 2 0 0
## 6802 2 0 0
## 6803 2 0 0
## 6804 2 0 0
## 6805 2 0 0
## 6806 1 0 0
## 6807 1 0 0
## 6808 1 0 0
## 6809 1 0 0
## 6810 1 0 0
## 6811 1 0 0
## 6812 1 0 0
## 6813 1 0 0
## 6814 1 0 0
## 6815 1 0 0
## 6816 1 0 0
## 6817 1 0 0
## 6818 1 0 0
## 6819 1 0 0
## 6820 2 0 0
## 6821 1 0 0
## 6822 1 0 0
## 6823 1 0 0
## 6824 2 0 0
## 6825 1 0 0
## 6826 1 0 0
## 6827 2 0 0
## 6828 2 0 0
## 6829 2 0 0
## 6830 2 0 0
## 6831 2 0 0
## 6832 2 0 0
## 6833 2 0 0
## 6834 1 0 0
## 6835 2 2 0
## 6836 2 0 0
## 6837 2 0 0
## 6838 2 1 0
## 6839 2 0 0
## 6840 2 0 0
## 6841 2 0 0
## 6842 2 0 0
## 6843 2 0 0
## 6844 2 0 0
## 6845 2 0 0
## 6846 2 1 0
## 6847 2 0 0
## 6848 2 0 0
## 6849 2 0 0
## 6850 2 0 0
## 6851 2 0 0
## 6852 2 0 0
## 6853 2 0 0
## 6854 2 0 0
## 6855 2 0 0
## 6856 2 0 0
## 6857 2 0 0
## 6858 2 0 0
## 6859 2 0 0
## 6860 2 0 0
## 6861 3 0 0
## 6862 2 0 0
## 6863 2 0 0
## 6864 2 0 0
## 6865 2 0 0
## 6866 2 0 0
## 6867 2 0 0
## 6868 2 0 0
## 6869 2 2 0
## 6870 2 0 0
## 6871 2 0 0
## 6872 2 2 0
## 6873 2 0 0
## 6874 2 0 0
## 6875 2 0 0
## 6876 2 0 0
## 6877 2 0 0
## 6878 2 0 0
## 6879 1 0 0
## 6880 2 0 0
## 6881 2 0 0
## 6882 2 0 0
## 6883 2 0 0
## 6884 1 0 0
## 6885 2 0 0
## 6886 2 0 0
## 6887 2 0 0
## 6888 2 0 0
## 6889 2 0 0
## 6890 2 0 0
## 6891 2 0 0
## 6892 2 0 0
## 6893 1 0 0
## 6894 2 0 0
## 6895 2 0 0
## 6896 2 0 0
## 6897 2 0 0
## 6898 2 0 0
## 6899 2 0 0
## 6900 2 0 0
## 6901 2 0 0
## 6902 1 0 0
## 6903 2 0 0
## 6904 2 0 0
## 6905 2 0 0
## 6906 2 0 0
## 6907 2 0 0
## 6908 2 0 0
## 6909 2 0 0
## 6910 2 0 0
## 6911 2 0 0
## 6912 1 0 0
## 6913 2 0 0
## 6914 2 0 0
## 6915 2 0 0
## 6916 1 0 0
## 6917 1 0 0
## 6918 2 0 0
## 6919 2 0 0
## 6920 2 0 0
## 6921 2 0 0
## 6922 2 0 0
## 6923 2 0 0
## 6924 1 0 0
## 6925 2 0 0
## 6926 2 0 0
## 6927 2 0 0
## 6928 2 0 0
## 6929 2 0 0
## 6930 3 0 0
## 6931 2 0 0
## 6932 2 0 0
## 6933 2 0 0
## 6934 2 2 0
## 6935 2 0 0
## 6936 2 0 0
## 6937 2 0 0
## 6938 2 0 0
## 6939 2 0 0
## 6940 2 0 0
## 6941 2 0 0
## 6942 2 0 0
## 6943 2 0 0
## 6944 2 0 0
## 6945 2 0 0
## 6946 2 0 0
## 6947 1 0 0
## 6948 2 0 0
## 6949 2 0 0
## 6950 2 0 0
## 6951 2 0 0
## 6952 1 0 0
## 6953 4 0 0
## 6954 1 0 0
## 6955 1 0 0
## 6956 1 0 0
## 6957 2 0 0
## 6958 2 0 0
## 6959 1 0 0
## 6960 1 0 0
## 6961 1 0 0
## 6962 2 0 0
## 6963 3 0 0
## 6964 2 0 0
## 6965 1 0 0
## 6966 1 0 0
## 6967 1 0 0
## 6968 1 0 0
## 6969 2 0 0
## 6970 2 0 0
## 6971 2 0 0
## 6972 2 0 0
## 6973 1 0 0
## 6974 2 0 0
## 6975 2 0 0
## 6976 1 0 0
## 6977 1 0 0
## 6978 2 0 0
## 6979 2 0 0
## 6980 1 0 0
## 6981 1 0 0
## 6982 2 0 0
## 6983 1 0 0
## 6984 1 0 0
## 6985 2 0 0
## 6986 2 0 0
## 6987 2 0 0
## 6988 2 0 0
## 6989 1 0 0
## 6990 1 0 0
## 6991 1 0 0
## 6992 1 0 0
## 6993 1 0 0
## 6994 2 1 0
## 6995 2 0 0
## 6996 2 1 0
## 6997 2 2 0
## 6998 2 0 0
## 6999 2 0 0
## 7000 2 0 0
## 7001 1 0 0
## 7002 1 0 0
## 7003 1 0 0
## 7004 2 0 0
## 7005 1 0 0
## 7006 1 0 0
## 7007 2 0 0
## 7008 1 0 0
## 7009 1 0 0
## 7010 1 0 0
## 7011 2 0 0
## 7012 2 0 0
## 7013 1 0 0
## 7014 2 0 0
## 7015 2 0 0
## 7016 2 0 0
## 7017 2 0 0
## 7018 2 2 0
## 7019 1 0 0
## 7020 2 2 0
## 7021 2 0 0
## 7022 2 0 0
## 7023 2 0 0
## 7024 2 0 0
## 7025 2 0 0
## 7026 1 0 0
## 7027 2 0 0
## 7028 2 0 0
## 7029 2 0 0
## 7030 2 0 0
## 7031 2 0 0
## 7032 2 0 0
## 7033 1 0 0
## 7034 1 0 0
## 7035 1 0 0
## 7036 1 0 0
## 7037 2 0 0
## 7038 2 0 0
## 7039 2 0 0
## 7040 1 0 0
## 7041 2 0 0
## 7042 1 0 0
## 7043 1 0 0
## 7044 2 0 0
## 7045 2 0 0
## 7046 2 0 0
## 7047 2 0 0
## 7048 2 0 0
## 7049 2 0 0
## 7050 2 0 0
## 7051 2 0 0
## 7052 2 0 0
## 7053 2 0 0
## 7054 2 0 0
## 7055 2 0 0
## 7056 2 0 0
## 7057 2 0 0
## 7058 2 0 0
## 7059 2 1 0
## 7060 2 0 0
## 7061 2 0 0
## 7062 2 0 0
## 7063 2 0 0
## 7064 2 0 0
## 7065 1 0 0
## 7066 1 0 0
## 7067 2 0 0
## 7068 2 0 0
## 7069 2 0 0
## 7070 1 0 0
## 7071 1 0 0
## 7072 2 0 0
## 7073 2 0 0
## 7074 2 0 0
## 7075 3 1 0
## 7076 1 0 0
## 7077 2 0 0
## 7078 2 0 0
## 7079 2 0 0
## 7080 2 0 0
## 7081 2 0 0
## 7082 2 0 0
## 7083 1 0 0
## 7084 2 0 0
## 7085 2 0 0
## 7086 2 0 0
## 7087 2 0 0
## 7088 1 0 0
## 7089 2 0 0
## 7090 2 0 0
## 7091 2 0 0
## 7092 2 0 0
## 7093 2 0 0
## 7094 2 0 0
## 7095 2 1 0
## 7096 2 0 0
## 7097 2 0 0
## 7098 2 0 0
## 7099 2 0 0
## 7100 2 0 0
## 7101 2 0 0
## 7102 2 0 0
## 7103 2 0 0
## 7104 2 0 0
## 7105 2 0 0
## 7106 2 2 0
## 7107 2 0 0
## 7108 2 0 0
## 7109 2 0 0
## 7110 2 0 0
## 7111 1 0 0
## 7112 2 0 0
## 7113 1 0 0
## 7114 2 0 0
## 7115 2 0 0
## 7116 2 0 0
## 7117 2 0 0
## 7118 2 0 0
## 7119 2 0 0
## 7120 2 0 0
## 7121 3 0 0
## 7122 2 0 0
## 7123 2 0 0
## 7124 1 0 0
## 7125 2 0 0
## 7126 2 0 0
## 7127 2 0 0
## 7128 2 0 0
## 7129 2 0 0
## 7130 2 0 0
## 7131 2 0 0
## 7132 2 0 0
## 7133 2 0 0
## 7134 2 0 0
## 7135 2 0 0
## 7136 2 0 0
## 7137 2 0 0
## 7138 2 0 0
## 7139 1 0 0
## 7140 3 1 0
## 7141 2 0 0
## 7142 2 0 0
## 7143 2 2 0
## 7144 2 0 0
## 7145 2 0 0
## 7146 2 0 0
## 7147 2 2 0
## 7148 2 0 0
## 7149 2 0 0
## 7150 2 0 0
## 7151 2 0 0
## 7152 2 0 0
## 7153 2 0 0
## 7154 2 0 0
## 7155 2 0 0
## 7156 2 0 0
## 7157 2 0 0
## 7158 2 0 0
## 7159 2 0 0
## 7160 2 0 0
## 7161 2 0 0
## 7162 2 0 0
## 7163 2 0 0
## 7164 2 0 0
## 7165 2 0 0
## 7166 2 0 0
## 7167 2 0 0
## 7168 2 0 0
## 7169 2 0 0
## 7170 2 0 0
## 7171 1 0 0
## 7172 2 0 0
## 7173 2 0 0
## 7174 1 0 0
## 7175 2 0 0
## 7176 2 0 0
## 7177 2 0 0
## 7178 2 0 0
## 7179 2 0 0
## 7180 2 0 0
## 7181 2 0 0
## 7182 2 2 0
## 7183 2 0 0
## 7184 3 1 0
## 7185 2 0 0
## 7186 2 0 0
## 7187 2 0 0
## 7188 2 0 0
## 7189 2 0 0
## 7190 2 0 0
## 7191 2 0 0
## 7192 2 2 0
## 7193 2 2 0
## 7194 2 0 0
## 7195 2 0 0
## 7196 2 0 0
## 7197 2 0 0
## 7198 2 0 0
## 7199 2 0 0
## 7200 2 2 0
## 7201 2 0 0
## 7202 2 1 0
## 7203 2 2 0
## 7204 2 0 0
## 7205 2 0 0
## 7206 2 0 0
## 7207 2 0 0
## 7208 2 0 0
## 7209 2 0 0
## 7210 2 0 0
## 7211 2 0 0
## 7212 2 0 0
## 7213 2 0 0
## 7214 3 1 0
## 7215 1 2 0
## 7216 2 0 0
## 7217 2 0 0
## 7218 2 0 0
## 7219 2 0 0
## 7220 2 0 0
## 7221 2 0 0
## 7222 2 0 0
## 7223 2 0 0
## 7224 2 1 0
## 7225 2 0 0
## 7226 2 1 0
## 7227 2 0 0
## 7228 2 0 0
## 7229 2 0 0
## 7230 2 0 0
## 7231 2 0 0
## 7232 2 0 0
## 7233 2 0 0
## 7234 2 0 0
## 7235 2 0 0
## 7236 2 0 0
## 7237 2 0 0
## 7238 2 0 0
## 7239 2 0 0
## 7240 2 0 0
## 7241 2 0 0
## 7242 2 0 0
## 7243 2 0 0
## 7244 1 0 0
## 7245 1 0 0
## 7246 2 0 0
## 7247 2 0 0
## 7248 2 0 0
## 7249 2 0 0
## 7250 2 0 0
## 7251 2 0 0
## 7252 1 0 0
## 7253 3 0 0
## 7254 2 0 0
## 7255 2 0 0
## 7256 2 0 0
## 7257 2 0 0
## 7258 2 2 0
## 7259 2 0 0
## 7260 2 0 0
## 7261 2 0 0
## 7262 2 0 0
## 7263 3 1 0
## 7264 2 0 0
## 7265 2 0 0
## 7266 2 0 0
## 7267 2 0 0
## 7268 2 0 0
## 7269 1 0 0
## 7270 3 1 0
## 7271 2 0 0
## 7272 2 0 0
## 7273 2 0 0
## 7274 2 0 0
## 7275 2 0 0
## 7276 2 0 0
## 7277 2 0 0
## 7278 2 0 0
## 7279 2 0 0
## 7280 2 0 0
## 7281 2 0 0
## 7282 2 0 0
## 7283 2 0 0
## 7284 2 0 0
## 7285 2 0 0
## 7286 2 0 0
## 7287 2 0 0
## 7288 2 0 0
## 7289 2 0 0
## 7290 2 0 0
## 7291 2 0 0
## 7292 2 0 0
## 7293 2 0 0
## 7294 2 0 0
## 7295 2 0 0
## 7296 2 0 0
## 7297 2 0 0
## 7298 2 0 0
## 7299 1 0 0
## 7300 3 0 0
## 7301 2 2 0
## 7302 2 0 0
## 7303 2 0 0
## 7304 2 0 0
## 7305 2 0 0
## 7306 2 0 0
## 7307 2 0 0
## 7308 2 0 0
## 7309 2 0 0
## 7310 2 0 0
## 7311 2 0 0
## 7312 2 0 0
## 7313 2 0 0
## 7314 2 2 0
## 7315 2 0 0
## 7316 2 1 0
## 7317 3 1 0
## 7318 3 1 0
## 7319 2 0 0
## 7320 2 0 0
## 7321 1 0 0
## 7322 2 0 0
## 7323 2 0 0
## 7324 2 0 0
## 7325 2 0 0
## 7326 2 0 0
## 7327 2 0 0
## 7328 2 0 0
## 7329 1 0 0
## 7330 2 0 0
## 7331 2 0 0
## 7332 3 1 0
## 7333 2 0 0
## 7334 2 0 0
## 7335 2 0 0
## 7336 2 0 0
## 7337 2 0 0
## 7338 1 0 0
## 7339 1 0 0
## 7340 2 0 0
## 7341 2 0 0
## 7342 2 0 0
## 7343 2 0 0
## 7344 2 0 0
## 7345 2 0 0
## 7346 2 0 0
## 7347 2 0 0
## 7348 2 2 0
## 7349 1 0 0
## 7350 2 1 0
## 7351 2 0 0
## 7352 2 0 0
## 7353 2 0 0
## 7354 2 0 0
## 7355 2 0 0
## 7356 2 0 0
## 7357 2 0 0
## 7358 2 0 0
## 7359 2 0 0
## 7360 2 0 0
## 7361 2 0 0
## 7362 2 0 0
## 7363 2 0 0
## 7364 2 2 0
## 7365 2 2 0
## 7366 2 0 0
## 7367 3 1 0
## 7368 3 1 0
## 7369 2 0 0
## 7370 2 0 0
## 7371 2 0 0
## 7372 2 0 0
## 7373 2 0 0
## 7374 2 0 0
## 7375 1 0 0
## 7376 2 0 0
## 7377 2 0 0
## 7378 1 0 0
## 7379 2 0 0
## 7380 2 2 0
## 7381 2 2 0
## 7382 2 0 0
## 7383 2 0 0
## 7384 2 0 0
## 7385 2 0 0
## 7386 3 1 0
## 7387 2 2 0
## 7388 2 0 0
## 7389 2 0 0
## 7390 2 0 0
## 7391 2 0 0
## 7392 2 0 0
## 7393 2 0 0
## 7394 2 0 0
## 7395 2 2 0
## 7396 2 0 0
## 7397 2 0 0
## 7398 2 0 0
## 7399 2 0 0
## 7400 2 0 0
## 7401 2 0 0
## 7402 3 1 0
## 7403 2 0 0
## 7404 2 0 0
## 7405 2 0 0
## 7406 2 0 0
## 7407 2 0 0
## 7408 2 0 0
## 7409 2 0 0
## 7410 2 0 0
## 7411 2 2 0
## 7412 2 0 0
## 7413 2 0 0
## 7414 2 0 0
## 7415 2 0 0
## 7416 2 0 0
## 7417 3 1 0
## 7418 1 0 0
## 7419 2 1 0
## 7420 2 0 0
## 7421 1 0 0
## 7422 1 0 0
## 7423 2 0 0
## 7424 2 0 0
## 7425 2 0 0
## 7426 2 0 0
## 7427 2 0 0
## 7428 2 0 0
## 7429 3 1 0
## 7430 2 0 0
## 7431 2 0 0
## 7432 2 0 0
## 7433 2 0 0
## 7434 2 0 0
## 7435 2 0 0
## 7436 2 0 0
## 7437 2 0 0
## 7438 2 0 0
## 7439 2 0 0
## 7440 2 0 0
## 7441 2 0 0
## 7442 2 0 0
## 7443 2 0 0
## 7444 2 0 0
## 7445 2 0 0
## 7446 2 0 0
## 7447 2 0 0
## 7448 2 0 0
## 7449 2 0 0
## 7450 2 0 0
## 7451 2 0 0
## 7452 2 0 0
## 7453 2 0 0
## 7454 1 0 0
## 7455 2 0 0
## 7456 2 0 0
## 7457 2 0 0
## 7458 2 0 0
## 7459 2 0 0
## 7460 2 0 0
## 7461 2 0 0
## 7462 2 0 0
## 7463 2 2 0
## 7464 2 2 0
## 7465 2 0 0
## 7466 2 0 0
## 7467 2 0 0
## 7468 2 0 0
## 7469 2 0 0
## 7470 2 0 0
## 7471 2 0 0
## 7472 2 0 0
## 7473 2 0 0
## 7474 2 0 0
## 7475 2 0 0
## 7476 2 0 0
## 7477 2 0 0
## 7478 2 0 0
## 7479 2 0 0
## 7480 2 0 0
## 7481 2 0 0
## 7482 2 0 0
## 7483 2 0 0
## 7484 2 0 0
## 7485 1 0 0
## 7486 2 0 0
## 7487 2 0 0
## 7488 2 0 0
## 7489 2 0 0
## 7490 2 0 0
## 7491 1 0 0
## 7492 2 0 0
## 7493 2 0 0
## 7494 1 0 0
## 7495 2 0 0
## 7496 1 0 0
## 7497 1 0 0
## 7498 1 0 0
## 7499 1 0 0
## 7500 2 0 0
## 7501 1 0 0
## 7502 2 0 0
## 7503 2 0 0
## 7504 2 1 0
## 7505 2 0 0
## 7506 2 0 0
## 7507 2 0 0
## 7508 2 0 0
## 7509 2 0 0
## 7510 2 0 0
## 7511 2 0 0
## 7512 2 2 0
## 7513 3 1 0
## 7514 2 0 0
## 7515 2 0 0
## 7516 2 2 0
## 7517 2 0 0
## 7518 2 0 0
## 7519 2 0 0
## 7520 2 0 0
## 7521 2 0 0
## 7522 2 0 0
## 7523 3 1 0
## 7524 2 0 0
## 7525 2 0 0
## 7526 1 0 0
## 7527 2 0 0
## 7528 2 0 0
## 7529 2 2 0
## 7530 2 2 0
## 7531 2 2 0
## 7532 2 0 0
## 7533 2 1 0
## 7534 2 0 0
## 7535 2 0 0
## 7536 2 0 0
## 7537 3 1 0
## 7538 1 0 0
## 7539 2 0 0
## 7540 2 0 0
## 7541 1 0 0
## 7542 2 0 0
## 7543 2 0 0
## 7544 2 2 0
## 7545 2 1 0
## 7546 2 0 0
## 7547 2 0 0
## 7548 2 1 0
## 7549 2 0 0
## 7550 2 0 0
## 7551 2 0 0
## 7552 1 0 0
## 7553 2 0 0
## 7554 2 0 0
## 7555 1 0 0
## 7556 2 0 0
## 7557 2 0 0
## 7558 2 0 0
## 7559 2 0 0
## 7560 1 0 0
## 7561 2 0 0
## 7562 2 0 0
## 7563 2 0 0
## 7564 2 0 0
## 7565 2 0 0
## 7566 3 0 0
## 7567 2 0 0
## 7568 2 0 0
## 7569 2 0 0
## 7570 2 0 0
## 7571 2 0 0
## 7572 2 0 0
## 7573 2 0 0
## 7574 1 0 0
## 7575 2 0 0
## 7576 2 3 0
## 7577 2 0 0
## 7578 2 0 0
## 7579 2 0 0
## 7580 2 0 0
## 7581 2 0 0
## 7582 2 0 0
## 7583 1 0 0
## 7584 2 0 0
## 7585 2 0 0
## 7586 2 0 0
## 7587 2 2 0
## 7588 2 0 0
## 7589 2 0 0
## 7590 2 0 0
## 7591 2 1 0
## 7592 2 0 0
## 7593 3 1 0
## 7594 2 2 0
## 7595 2 0 0
## 7596 2 2 0
## 7597 3 1 0
## 7598 2 0 0
## 7599 2 0 0
## 7600 1 0 0
## 7601 2 0 0
## 7602 2 0 0
## 7603 2 0 0
## 7604 2 0 0
## 7605 2 0 0
## 7606 2 0 0
## 7607 2 2 0
## 7608 2 0 0
## 7609 2 1 0
## 7610 2 0 0
## 7611 3 0 0
## 7612 2 0 0
## 7613 2 0 0
## 7614 2 0 0
## 7615 2 0 0
## 7616 1 0 0
## 7617 2 1 0
## 7618 2 0 0
## 7619 2 2 0
## 7620 2 0 0
## 7621 2 0 0
## 7622 2 0 0
## 7623 2 0 0
## 7624 2 0 0
## 7625 2 0 0
## 7626 2 0 0
## 7627 2 0 0
## 7628 2 0 0
## 7629 3 1 0
## 7630 2 0 0
## 7631 2 0 0
## 7632 2 0 0
## 7633 2 0 0
## 7634 2 0 0
## 7635 2 0 0
## 7636 2 0 0
## 7637 2 0 0
## 7638 2 0 0
## 7639 2 0 0
## 7640 2 0 0
## 7641 2 0 0
## 7642 3 1 0
## 7643 2 0 0
## 7644 2 0 0
## 7645 2 0 0
## 7646 2 2 0
## 7647 2 0 0
## 7648 2 0 0
## 7649 2 0 0
## 7650 2 0 0
## 7651 1 0 0
## 7652 2 0 0
## 7653 2 0 0
## 7654 2 0 0
## 7655 2 0 0
## 7656 2 0 0
## 7657 2 0 0
## 7658 2 0 0
## 7659 2 0 0
## 7660 2 1 0
## 7661 2 0 0
## 7662 2 0 0
## 7663 1 0 0
## 7664 2 0 0
## 7665 2 0 0
## 7666 2 0 0
## 7667 1 0 0
## 7668 1 0 0
## 7669 2 0 0
## 7670 2 0 0
## 7671 2 0 0
## 7672 3 0 0
## 7673 1 0 0
## 7674 2 0 0
## 7675 2 0 0
## 7676 2 2 0
## 7677 2 0 0
## 7678 2 0 0
## 7679 2 0 0
## 7680 1 0 0
## 7681 2 0 0
## 7682 3 1 0
## 7683 2 0 0
## 7684 2 0 0
## 7685 2 0 0
## 7686 2 0 0
## 7687 2 0 0
## 7688 2 1 0
## 7689 2 2 0
## 7690 2 1 0
## 7691 2 0 0
## 7692 2 0 0
## 7693 2 0 0
## 7694 2 2 0
## 7695 2 2 0
## 7696 2 0 0
## 7697 2 0 0
## 7698 2 0 0
## 7699 2 0 0
## 7700 2 0 0
## 7701 2 0 0
## 7702 2 0 0
## 7703 2 0 0
## 7704 2 0 0
## 7705 2 0 0
## 7706 2 0 0
## 7707 2 0 0
## 7708 2 0 0
## 7709 2 0 0
## 7710 2 2 0
## 7711 2 0 0
## 7712 2 0 0
## 7713 2 0 0
## 7714 2 0 0
## 7715 2 0 0
## 7716 1 0 0
## 7717 2 0 0
## 7718 2 0 0
## 7719 2 0 0
## 7720 2 0 0
## 7721 2 0 0
## 7722 2 0 0
## 7723 2 0 0
## 7724 2 2 0
## 7725 2 0 0
## 7726 2 0 0
## 7727 2 0 0
## 7728 2 0 0
## 7729 2 0 0
## 7730 2 0 0
## 7731 1 0 0
## 7732 2 0 0
## 7733 2 0 0
## 7734 3 0 0
## 7735 2 2 0
## 7736 2 2 0
## 7737 2 2 0
## 7738 2 0 0
## 7739 2 0 0
## 7740 2 0 0
## 7741 2 0 0
## 7742 2 1 0
## 7743 2 0 0
## 7744 3 0 0
## 7745 2 1 0
## 7746 2 0 0
## 7747 2 0 0
## 7748 2 0 0
## 7749 2 0 0
## 7750 2 0 0
## 7751 2 0 0
## 7752 2 0 0
## 7753 2 0 0
## 7754 2 0 0
## 7755 2 0 0
## 7756 2 0 0
## 7757 2 0 0
## 7758 2 0 0
## 7759 2 0 0
## 7760 2 0 0
## 7761 2 0 0
## 7762 2 0 0
## 7763 2 0 0
## 7764 1 0 0
## 7765 2 0 0
## 7766 2 0 0
## 7767 2 0 0
## 7768 2 0 0
## 7769 2 0 0
## 7770 2 0 0
## 7771 2 0 0
## 7772 2 0 0
## 7773 2 0 0
## 7774 2 0 0
## 7775 2 0 0
## 7776 2 2 0
## 7777 2 0 0
## 7778 2 0 0
## 7779 2 0 0
## 7780 3 1 0
## 7781 2 2 0
## 7782 2 0 0
## 7783 2 0 0
## 7784 2 0 0
## 7785 2 0 0
## 7786 2 1 0
## 7787 2 1 0
## 7788 2 0 0
## 7789 2 0 0
## 7790 2 2 0
## 7791 2 0 0
## 7792 2 0 0
## 7793 3 0 0
## 7794 2 0 0
## 7795 2 0 0
## 7796 2 0 0
## 7797 2 0 0
## 7798 2 0 0
## 7799 2 0 0
## 7800 2 0 0
## 7801 2 0 0
## 7802 2 0 0
## 7803 2 0 0
## 7804 2 0 0
## 7805 2 0 0
## 7806 2 0 0
## 7807 2 0 0
## 7808 2 2 0
## 7809 2 2 0
## 7810 2 0 0
## 7811 2 0 0
## 7812 2 0 0
## 7813 2 0 0
## 7814 2 0 0
## 7815 2 0 0
## 7816 1 0 0
## 7817 2 0 0
## 7818 2 0 0
## 7819 1 0 0
## 7820 2 0 0
## 7821 2 0 0
## 7822 2 2 0
## 7823 2 2 0
## 7824 2 0 0
## 7825 2 0 0
## 7826 2 0 0
## 7827 2 0 0
## 7828 2 0 0
## 7829 2 0 0
## 7830 3 0 0
## 7831 2 0 0
## 7832 2 0 0
## 7833 2 0 0
## 7834 2 0 0
## 7835 2 0 0
## 7836 3 0 0
## 7837 2 0 0
## 7838 2 0 0
## 7839 2 0 0
## 7840 2 0 0
## 7841 2 0 0
## 7842 2 0 0
## 7843 2 0 0
## 7844 2 0 0
## 7845 2 2 0
## 7846 2 0 0
## 7847 2 2 0
## 7848 2 0 0
## 7849 2 0 0
## 7850 2 0 0
## 7851 2 0 0
## 7852 2 0 0
## 7853 1 0 0
## 7854 2 0 0
## 7855 2 0 0
## 7856 2 0 0
## 7857 2 2 0
## 7858 2 0 0
## 7859 2 0 0
## 7860 2 0 0
## 7861 2 0 0
## 7862 2 0 0
## 7863 2 0 0
## 7864 1 0 0
## 7865 2 0 0
## 7866 2 0 0
## 7867 1 0 0
## 7868 2 0 0
## 7869 2 0 0
## 7870 2 0 0
## 7871 3 0 0
## 7872 2 0 0
## 7873 2 0 0
## 7874 2 2 0
## 7875 3 0 0
## 7876 2 0 0
## 7877 2 2 0
## 7878 2 0 0
## 7879 2 0 0
## 7880 2 0 0
## 7881 2 0 0
## 7882 2 0 0
## 7883 2 0 0
## 7884 2 0 0
## 7885 2 0 0
## 7886 2 0 0
## 7887 3 1 0
## 7888 1 0 0
## 7889 2 0 0
## 7890 2 0 0
## 7891 2 2 0
## 7892 2 0 0
## 7893 2 0 0
## 7894 2 0 0
## 7895 2 0 0
## 7896 2 2 0
## 7897 1 0 0
## 7898 1 0 0
## 7899 2 0 0
## 7900 2 0 0
## 7901 1 2 0
## 7902 2 0 0
## 7903 2 0 0
## 7904 2 0 0
## 7905 2 1 0
## 7906 2 0 0
## 7907 3 0 0
## 7908 2 0 0
## 7909 2 0 0
## 7910 1 0 0
## 7911 2 0 0
## 7912 2 0 0
## 7913 2 2 0
## 7914 2 2 0
## 7915 2 0 0
## 7916 2 0 0
## 7917 2 2 0
## 7918 2 2 0
## 7919 2 0 0
## 7920 2 0 0
## 7921 2 0 0
## 7922 2 2 0
## 7923 2 0 0
## 7924 2 0 0
## 7925 2 0 0
## 7926 2 0 0
## 7927 2 0 0
## 7928 2 0 0
## 7929 2 2 0
## 7930 2 0 0
## 7931 2 0 0
## 7932 2 0 0
## 7933 2 0 0
## 7934 2 0 0
## 7935 2 0 0
## 7936 2 0 0
## 7937 2 0 0
## 7938 2 0 0
## 7939 2 0 0
## 7940 2 0 0
## 7941 2 0 0
## 7942 2 0 0
## 7943 2 0 0
## 7944 2 0 0
## 7945 2 0 0
## 7946 2 0 0
## 7947 3 0 0
## 7948 2 0 0
## 7949 2 1 0
## 7950 2 1 0
## 7951 2 2 0
## 7952 2 0 0
## 7953 2 0 0
## 7954 3 1 0
## 7955 2 0 0
## 7956 2 0 0
## 7957 2 0 0
## 7958 2 0 0
## 7959 2 0 0
## 7960 2 0 0
## 7961 2 0 0
## 7962 2 0 0
## 7963 3 1 0
## 7964 2 2 0
## 7965 2 0 0
## 7966 2 0 0
## 7967 2 0 0
## 7968 2 0 0
## 7969 2 0 0
## 7970 2 0 0
## 7971 2 2 0
## 7972 2 0 0
## 7973 2 0 0
## 7974 2 0 0
## 7975 2 0 0
## 7976 2 0 0
## 7977 2 0 0
## 7978 2 0 0
## 7979 2 0 0
## 7980 2 0 0
## 7981 2 0 0
## 7982 2 0 0
## 7983 2 0 0
## 7984 2 0 0
## 7985 2 0 0
## 7986 2 0 0
## 7987 2 0 0
## 7988 2 0 0
## 7989 2 2 0
## 7990 2 1 0
## 7991 3 0 0
## 7992 2 0 0
## 7993 2 0 0
## 7994 2 0 0
## 7995 2 0 0
## 7996 2 0 0
## 7997 2 0 0
## 7998 1 0 0
## 7999 2 0 0
## 8000 2 0 0
## 8001 2 0 0
## 8002 1 0 0
## 8003 1 0 0
## 8004 1 0 0
## 8005 2 0 0
## 8006 2 0 0
## 8007 2 0 0
## 8008 2 0 0
## 8009 2 0 0
## 8010 2 0 0
## 8011 2 0 0
## 8012 2 1 0
## 8013 2 0 0
## 8014 3 1 0
## 8015 2 0 0
## 8016 3 0 0
## 8017 2 0 0
## 8018 1 0 0
## 8019 2 0 0
## 8020 2 0 0
## 8021 2 0 0
## 8022 2 1 0
## 8023 2 0 0
## 8024 2 0 0
## 8025 2 0 0
## 8026 2 2 0
## 8027 2 2 0
## 8028 2 0 0
## 8029 2 0 0
## 8030 2 0 0
## 8031 2 0 0
## 8032 1 0 0
## 8033 2 0 0
## 8034 2 0 0
## 8035 2 0 0
## 8036 2 0 0
## 8037 2 1 0
## 8038 2 0 0
## 8039 2 0 0
## 8040 2 0 0
## 8041 2 0 0
## 8042 2 0 0
## 8043 2 0 0
## 8044 2 0 0
## 8045 1 0 0
## 8046 2 0 0
## 8047 1 0 0
## 8048 2 0 0
## 8049 2 0 0
## 8050 2 0 0
## 8051 2 0 0
## 8052 2 0 0
## 8053 2 0 0
## 8054 2 0 0
## 8055 2 0 0
## 8056 2 0 0
## 8057 2 0 0
## 8058 3 0 0
## 8059 2 0 0
## 8060 2 0 0
## 8061 2 0 0
## 8062 2 0 0
## 8063 2 1 0
## 8064 2 2 0
## 8065 2 2 0
## 8066 2 0 0
## 8067 2 0 0
## 8068 2 0 0
## 8069 2 0 0
## 8070 2 0 0
## 8071 2 0 0
## 8072 2 1 0
## 8073 2 1 0
## 8074 2 2 0
## 8075 2 0 0
## 8076 2 0 0
## 8077 2 0 0
## 8078 2 0 0
## 8079 2 0 0
## 8080 2 0 0
## 8081 2 0 0
## 8082 2 0 0
## 8083 2 0 0
## 8084 2 0 0
## 8085 2 0 0
## 8086 2 2 0
## 8087 2 2 0
## 8088 2 2 0
## 8089 2 0 0
## 8090 2 1 0
## 8091 2 0 0
## 8092 2 0 0
## 8093 2 0 0
## 8094 2 0 0
## 8095 2 2 0
## 8096 2 0 0
## 8097 2 0 0
## 8098 2 0 0
## 8099 2 0 0
## 8100 2 0 0
## 8101 2 0 0
## 8102 2 2 0
## 8103 2 1 0
## 8104 2 0 0
## 8105 2 0 0
## 8106 2 1 0
## 8107 2 0 0
## 8108 2 0 0
## 8109 3 0 0
## 8110 2 0 0
## 8111 2 1 0
## 8112 2 0 0
## 8113 2 0 0
## 8114 2 0 0
## 8115 2 0 0
## 8116 2 0 0
## 8117 2 0 0
## 8118 2 0 0
## 8119 2 0 0
## 8120 2 0 0
## 8121 2 1 0
## 8122 2 0 0
## 8123 2 0 0
## 8124 2 0 0
## 8125 2 2 0
## 8126 2 0 0
## 8127 3 1 0
## 8128 2 2 0
## 8129 2 0 0
## 8130 2 0 0
## 8131 2 0 0
## 8132 2 0 0
## 8133 2 0 0
## 8134 2 0 0
## 8135 2 2 0
## 8136 2 0 0
## 8137 2 0 0
## 8138 2 0 0
## 8139 1 0 0
## 8140 2 1 0
## 8141 2 0 0
## 8142 2 0 0
## 8143 2 0 0
## 8144 2 1 0
## 8145 2 0 0
## 8146 2 0 0
## 8147 2 0 0
## 8148 2 0 0
## 8149 2 2 0
## 8150 2 0 0
## 8151 2 0 0
## 8152 2 0 0
## 8153 2 0 0
## 8154 2 0 0
## 8155 2 0 0
## 8156 2 1 0
## 8157 2 2 0
## 8158 2 0 0
## 8159 2 0 0
## 8160 2 2 0
## 8161 2 0 0
## 8162 2 0 0
## 8163 2 1 0
## 8164 2 0 0
## 8165 2 0 0
## 8166 3 0 0
## 8167 2 0 0
## 8168 2 2 0
## 8169 2 0 0
## 8170 2 2 0
## 8171 2 0 0
## 8172 3 1 0
## 8173 2 0 0
## 8174 2 0 0
## 8175 2 2 0
## 8176 2 1 0
## 8177 2 0 0
## 8178 2 0 0
## 8179 2 0 0
## 8180 2 0 0
## 8181 2 0 0
## 8182 2 0 0
## 8183 2 1 0
## 8184 2 1 0
## 8185 2 0 0
## 8186 3 0 0
## 8187 2 0 0
## 8188 2 0 0
## 8189 2 0 0
## 8190 2 0 0
## 8191 2 0 0
## 8192 2 0 0
## 8193 3 1 0
## 8194 2 0 0
## 8195 2 0 0
## 8196 2 0 0
## 8197 3 1 0
## 8198 2 0 0
## 8199 2 0 0
## 8200 3 1 0
## 8201 2 2 0
## 8202 2 2 0
## 8203 3 0 0
## 8204 3 1 0
## 8205 2 0 0
## 8206 2 0 0
## 8207 2 0 0
## 8208 2 0 0
## 8209 2 0 0
## 8210 2 0 0
## 8211 2 2 0
## 8212 3 0 0
## 8213 2 0 0
## 8214 2 0 0
## 8215 2 0 0
## 8216 3 0 0
## 8217 2 2 0
## 8218 2 1 0
## 8219 2 0 0
## 8220 2 0 0
## 8221 2 2 0
## 8222 3 1 0
## 8223 2 2 0
## 8224 2 2 0
## 8225 2 1 0
## 8226 2 0 0
## 8227 2 1 0
## 8228 2 0 0
## 8229 2 0 0
## 8230 2 0 0
## 8231 2 0 0
## 8232 2 0 0
## 8233 2 0 0
## 8234 2 0 0
## 8235 2 0 0
## 8236 3 0 0
## 8237 2 0 0
## 8238 2 0 0
## 8239 2 0 0
## 8240 2 0 0
## 8241 2 0 0
## 8242 2 2 0
## 8243 2 0 0
## 8244 2 1 0
## 8245 2 0 0
## 8246 2 0 0
## 8247 2 2 0
## 8248 2 0 0
## 8249 2 0 0
## 8250 2 0 0
## 8251 2 0 0
## 8252 2 0 0
## 8253 3 0 0
## 8254 2 0 0
## 8255 3 0 0
## 8256 2 0 0
## 8257 2 0 0
## 8258 3 0 0
## 8259 2 0 0
## 8260 2 0 0
## 8261 2 0 0
## 8262 2 0 0
## 8263 2 0 0
## 8264 2 0 0
## 8265 2 1 0
## 8266 2 0 0
## 8267 2 0 0
## 8268 2 0 0
## 8269 2 0 0
## 8270 2 0 0
## 8271 2 0 0
## 8272 2 0 0
## 8273 2 0 0
## 8274 2 0 0
## 8275 2 0 0
## 8276 2 0 0
## 8277 2 0 0
## 8278 2 0 0
## 8279 2 0 0
## 8280 2 0 0
## 8281 2 0 0
## 8282 2 0 0
## 8283 2 0 0
## 8284 3 1 0
## 8285 1 0 0
## 8286 2 0 0
## 8287 2 0 0
## 8288 2 0 0
## 8289 2 0 0
## 8290 2 2 0
## 8291 2 2 0
## 8292 2 0 0
## 8293 2 0 0
## 8294 2 0 0
## 8295 2 1 0
## 8296 2 0 0
## 8297 2 0 0
## 8298 3 0 0
## 8299 2 0 0
## 8300 2 0 0
## 8301 2 0 0
## 8302 2 0 0
## 8303 2 0 0
## 8304 2 0 0
## 8305 2 0 0
## 8306 2 1 0
## 8307 2 0 0
## 8308 2 0 0
## 8309 2 0 0
## 8310 2 0 0
## 8311 2 0 0
## 8312 3 1 0
## 8313 2 0 0
## 8314 2 0 0
## 8315 2 0 0
## 8316 2 0 0
## 8317 2 1 0
## 8318 2 0 0
## 8319 2 0 0
## 8320 1 0 0
## 8321 2 0 0
## 8322 2 2 0
## 8323 2 2 0
## 8324 2 0 0
## 8325 3 0 0
## 8326 2 0 0
## 8327 3 0 0
## 8328 2 0 0
## 8329 2 0 0
## 8330 2 0 0
## 8331 2 0 0
## 8332 2 0 0
## 8333 2 0 0
## 8334 2 0 0
## 8335 2 0 0
## 8336 2 2 0
## 8337 2 2 0
## 8338 2 0 0
## 8339 2 0 0
## 8340 2 0 0
## 8341 2 2 0
## 8342 2 0 0
## 8343 2 0 0
## 8344 2 0 0
## 8345 2 0 0
## 8346 2 2 0
## 8347 2 1 0
## 8348 2 0 0
## 8349 2 0 0
## 8350 2 0 0
## 8351 2 0 0
## 8352 2 0 0
## 8353 1 1 0
## 8354 2 2 0
## 8355 2 0 0
## 8356 2 0 0
## 8357 2 1 0
## 8358 2 0 0
## 8359 2 0 0
## 8360 2 0 0
## 8361 1 0 0
## 8362 2 0 0
## 8363 2 0 0
## 8364 2 0 0
## 8365 2 0 0
## 8366 3 1 0
## 8367 2 0 0
## 8368 2 0 0
## 8369 2 2 0
## 8370 2 1 0
## 8371 2 1 0
## 8372 2 0 0
## 8373 2 0 0
## 8374 2 0 0
## 8375 2 0 0
## 8376 2 0 0
## 8377 2 0 0
## 8378 2 0 0
## 8379 2 0 0
## 8380 2 1 0
## 8381 2 0 0
## 8382 2 0 0
## 8383 1 1 0
## 8384 2 1 0
## 8385 2 0 0
## 8386 2 0 0
## 8387 2 0 0
## 8388 2 0 0
## 8389 2 0 0
## 8390 2 0 0
## 8391 2 1 0
## 8392 2 0 0
## 8393 2 0 0
## 8394 2 0 0
## 8395 2 0 0
## 8396 2 0 0
## 8397 2 0 0
## 8398 2 0 0
## 8399 2 0 0
## 8400 2 0 0
## 8401 2 0 0
## 8402 2 0 0
## 8403 3 1 0
## 8404 2 0 0
## 8405 2 0 0
## 8406 2 0 0
## 8407 3 1 0
## 8408 3 1 0
## 8409 2 0 0
## 8410 2 0 0
## 8411 2 0 0
## 8412 3 0 0
## 8413 2 0 0
## 8414 2 0 0
## 8415 2 1 0
## 8416 2 0 0
## 8417 2 0 0
## 8418 2 2 0
## 8419 2 0 0
## 8420 2 0 0
## 8421 2 0 0
## 8422 2 0 0
## 8423 3 1 0
## 8424 2 0 0
## 8425 2 0 0
## 8426 1 0 0
## 8427 2 0 0
## 8428 2 0 0
## 8429 2 0 0
## 8430 2 0 0
## 8431 2 0 0
## 8432 2 0 0
## 8433 2 0 0
## 8434 3 0 0
## 8435 2 0 0
## 8436 2 0 0
## 8437 2 0 0
## 8438 2 0 0
## 8439 2 0 0
## 8440 2 0 0
## 8441 2 0 0
## 8442 2 0 0
## 8443 2 0 0
## 8444 2 0 0
## 8445 2 0 0
## 8446 2 0 0
## 8447 2 0 0
## 8448 2 0 0
## 8449 2 0 0
## 8450 2 0 0
## 8451 2 2 0
## 8452 2 0 0
## 8453 3 0 0
## 8454 2 0 0
## 8455 2 0 0
## 8456 2 1 0
## 8457 2 1 0
## 8458 2 0 0
## 8459 2 0 0
## 8460 2 0 0
## 8461 2 0 0
## 8462 2 0 0
## 8463 2 2 0
## 8464 2 0 0
## 8465 3 1 0
## 8466 2 0 0
## 8467 1 3 0
## 8468 2 0 0
## 8469 2 0 0
## 8470 2 0 0
## 8471 2 0 0
## 8472 2 0 0
## 8473 2 0 0
## 8474 3 1 0
## 8475 2 0 0
## 8476 2 0 0
## 8477 3 1 0
## 8478 2 0 0
## 8479 2 0 0
## 8480 2 0 0
## 8481 2 1 0
## 8482 2 0 0
## 8483 2 0 0
## 8484 2 0 0
## 8485 3 1 0
## 8486 2 0 0
## 8487 2 0 0
## 8488 2 1 0
## 8489 2 0 0
## 8490 2 0 0
## 8491 2 0 0
## 8492 2 0 0
## 8493 3 0 0
## 8494 2 2 0
## 8495 2 0 0
## 8496 2 0 0
## 8497 3 1 0
## 8498 2 0 0
## 8499 2 0 0
## 8500 2 0 0
## 8501 2 0 0
## 8502 2 1 0
## 8503 2 0 0
## 8504 2 1 0
## 8505 2 0 0
## 8506 2 0 0
## 8507 2 0 0
## 8508 2 0 0
## 8509 1 0 0
## 8510 2 0 0
## 8511 2 0 0
## 8512 2 0 0
## 8513 2 0 0
## 8514 2 0 0
## 8515 2 0 0
## 8516 2 0 0
## 8517 2 0 0
## 8518 3 1 0
## 8519 2 2 0
## 8520 2 0 0
## 8521 2 0 0
## 8522 2 0 0
## 8523 1 0 0
## 8524 2 0 0
## 8525 3 0 0
## 8526 2 0 0
## 8527 1 0 0
## 8528 2 0 0
## 8529 2 0 0
## 8530 2 0 0
## 8531 1 0 0
## 8532 2 0 0
## 8533 2 0 0
## 8534 2 0 0
## 8535 2 0 0
## 8536 2 2 0
## 8537 2 0 0
## 8538 1 0 0
## 8539 2 0 0
## 8540 2 0 0
## 8541 2 0 0
## 8542 2 0 0
## 8543 2 0 0
## 8544 2 0 0
## 8545 2 0 0
## 8546 2 0 0
## 8547 2 0 0
## 8548 2 2 0
## 8549 2 0 0
## 8550 2 2 0
## 8551 2 0 0
## 8552 2 2 0
## 8553 2 0 0
## 8554 2 0 0
## 8555 2 0 0
## 8556 2 0 0
## 8557 2 0 0
## 8558 2 1 0
## 8559 2 0 0
## 8560 1 0 0
## 8561 2 0 0
## 8562 2 0 0
## 8563 2 0 0
## 8564 2 0 0
## 8565 2 0 0
## 8566 2 0 0
## 8567 2 0 0
## 8568 2 0 0
## 8569 2 0 0
## 8570 2 0 0
## 8571 3 0 0
## 8572 2 0 0
## 8573 2 2 0
## 8574 2 0 0
## 8575 2 0 0
## 8576 2 2 0
## 8577 2 0 0
## 8578 2 0 0
## 8579 3 1 0
## 8580 2 2 0
## 8581 3 1 0
## 8582 3 1 0
## 8583 2 0 0
## 8584 2 0 0
## 8585 2 1 0
## 8586 2 0 0
## 8587 2 2 0
## 8588 2 0 0
## 8589 2 0 0
## 8590 2 0 0
## 8591 3 1 0
## 8592 2 0 0
## 8593 2 0 0
## 8594 2 2 0
## 8595 2 0 0
## 8596 2 1 0
## 8597 2 0 0
## 8598 2 0 0
## 8599 2 0 0
## 8600 2 0 0
## 8601 2 0 0
## 8602 3 0 0
## 8603 1 0 0
## 8604 2 0 0
## 8605 2 1 0
## 8606 2 0 0
## 8607 2 1 0
## 8608 2 0 0
## 8609 2 0 0
## 8610 2 0 0
## 8611 2 0 0
## 8612 2 0 0
## 8613 2 1 0
## 8614 2 0 0
## 8615 2 2 0
## 8616 2 2 0
## 8617 2 0 0
## 8618 2 0 0
## 8619 2 0 0
## 8620 2 0 0
## 8621 2 0 0
## 8622 1 0 0
## 8623 2 0 0
## 8624 2 0 0
## 8625 2 0 0
## 8626 2 0 0
## 8627 2 0 0
## 8628 2 2 0
## 8629 2 0 0
## 8630 2 0 0
## 8631 2 0 0
## 8632 2 0 0
## 8633 2 0 0
## 8634 2 0 0
## 8635 2 0 0
## 8636 2 0 0
## 8637 2 0 0
## 8638 2 0 0
## 8639 2 0 0
## 8640 2 2 0
## 8641 2 0 0
## 8642 2 0 0
## 8643 2 0 0
## 8644 2 0 0
## 8645 2 0 0
## 8646 2 0 0
## 8647 2 0 0
## 8648 2 0 0
## 8649 2 0 0
## 8650 2 0 0
## 8651 2 0 0
## 8652 2 2 0
## 8653 2 2 0
## 8654 2 0 0
## 8655 2 0 0
## 8656 2 0 0
## 8657 2 0 0
## 8658 2 0 0
## 8659 3 0 0
## 8660 2 2 0
## 8661 2 0 0
## 8662 2 0 0
## 8663 2 0 0
## 8664 1 0 0
## 8665 2 0 0
## 8666 2 0 0
## 8667 1 0 0
## 8668 2 0 0
## 8669 2 0 0
## 8670 2 0 0
## 8671 2 0 0
## 8672 2 0 0
## 8673 2 0 0
## 8674 2 0 0
## 8675 2 0 0
## 8676 2 0 0
## 8677 2 0 0
## 8678 2 0 0
## 8679 1 0 0
## 8680 1 0 0
## 8681 2 2 0
## 8682 2 0 0
## 8683 1 0 0
## 8684 2 0 0
## 8685 2 0 0
## 8686 2 1 0
## 8687 2 1 0
## 8688 2 2 0
## 8689 2 0 0
## 8690 2 0 0
## 8691 2 0 0
## 8692 2 0 0
## 8693 2 0 0
## 8694 2 0 0
## 8695 2 0 0
## 8696 2 0 0
## 8697 2 0 0
## 8698 2 0 0
## 8699 2 0 0
## 8700 2 0 0
## 8701 2 0 0
## 8702 2 0 0
## 8703 2 0 0
## 8704 2 0 0
## 8705 2 2 0
## 8706 2 0 0
## 8707 2 0 0
## 8708 2 0 0
## 8709 2 2 0
## 8710 2 2 0
## 8711 2 0 0
## 8712 2 2 0
## 8713 2 0 0
## 8714 2 0 0
## 8715 2 0 0
## 8716 2 0 0
## 8717 2 0 0
## 8718 2 0 0
## 8719 2 0 0
## 8720 2 0 0
## 8721 2 0 0
## 8722 2 0 0
## 8723 2 0 0
## 8724 2 0 0
## 8725 2 0 0
## 8726 2 0 0
## 8727 2 0 0
## 8728 2 0 0
## 8729 2 0 0
## 8730 3 1 0
## 8731 2 0 0
## 8732 2 0 0
## 8733 2 0 0
## 8734 1 0 0
## 8735 3 0 0
## 8736 3 0 0
## 8737 2 0 0
## 8738 2 0 0
## 8739 2 0 0
## 8740 2 0 0
## 8741 2 2 0
## 8742 2 0 0
## 8743 2 0 0
## 8744 2 0 0
## 8745 2 1 0
## 8746 2 1 0
## 8747 1 0 0
## 8748 2 2 0
## 8749 3 1 0
## 8750 2 0 0
## 8751 2 0 0
## 8752 3 1 0
## 8753 1 0 0
## 8754 2 0 0
## 8755 2 0 0
## 8756 2 0 0
## 8757 2 2 0
## 8758 2 2 0
## 8759 2 1 0
## 8760 4 0 0
## 8761 3 1 0
## 8762 2 0 0
## 8763 1 0 0
## 8764 1 0 0
## 8765 2 0 0
## 8766 2 0 0
## 8767 2 0 0
## 8768 2 0 0
## 8769 2 0 0
## 8770 2 0 0
## 8771 2 0 0
## 8772 2 0 0
## 8773 2 0 0
## 8774 2 0 0
## 8775 2 0 0
## 8776 2 0 0
## 8777 2 0 0
## 8778 2 0 0
## 8779 2 0 0
## 8780 2 1 0
## 8781 1 0 0
## 8782 1 0 0
## 8783 1 0 0
## 8784 1 0 0
## 8785 1 0 0
## 8786 1 0 0
## 8787 1 0 0
## 8788 1 0 0
## 8789 2 0 0
## 8790 1 0 0
## 8791 1 0 0
## 8792 1 0 0
## 8793 1 0 0
## 8794 1 0 0
## 8795 1 0 0
## 8796 1 0 0
## 8797 1 0 0
## 8798 1 0 0
## 8799 1 0 0
## 8800 1 0 0
## 8801 1 0 0
## 8802 1 0 0
## 8803 1 0 0
## 8804 1 0 0
## 8805 1 0 0
## 8806 1 0 0
## 8807 1 0 0
## 8808 1 0 0
## 8809 1 0 0
## 8810 1 0 0
## 8811 1 0 0
## 8812 1 0 0
## 8813 1 0 0
## 8814 1 0 0
## 8815 1 0 0
## 8816 1 0 0
## 8817 1 0 0
## 8818 1 0 0
## 8819 1 0 0
## 8820 1 0 0
## 8821 1 0 0
## 8822 1 0 0
## 8823 1 0 0
## 8824 1 0 0
## 8825 1 0 0
## 8826 1 0 0
## 8827 1 0 0
## 8828 1 0 0
## 8829 1 0 0
## 8830 1 0 0
## 8831 1 0 0
## 8832 1 0 0
## 8833 1 0 0
## 8834 2 0 0
## 8835 2 0 0
## 8836 2 0 0
## 8837 2 0 0
## 8838 2 0 0
## 8839 2 0 0
## 8840 2 0 0
## 8841 2 0 0
## 8842 2 0 0
## 8843 3 1 0
## 8844 3 1 0
## 8845 4 1 0
## 8846 2 0 0
## 8847 2 0 0
## 8848 2 0 0
## 8849 2 0 0
## 8850 2 0 0
## 8851 2 0 0
## 8852 2 0 0
## 8853 2 0 0
## 8854 2 0 0
## 8855 2 0 0
## 8856 2 0 0
## 8857 2 0 0
## 8858 2 1 0
## 8859 1 0 0
## 8860 1 0 0
## 8861 3 1 0
## 8862 2 1 0
## 8863 2 0 0
## 8864 2 0 0
## 8865 2 0 0
## 8866 2 0 0
## 8867 2 0 0
## 8868 2 0 0
## 8869 2 0 0
## 8870 2 0 0
## 8871 2 0 0
## 8872 2 0 0
## 8873 2 0 0
## 8874 2 0 0
## 8875 2 0 0
## 8876 2 0 0
## 8877 2 0 0
## 8878 2 0 0
## 8879 2 0 0
## 8880 2 0 0
## 8881 2 0 0
## 8882 2 0 0
## 8883 2 0 0
## 8884 2 0 0
## 8885 2 0 0
## 8886 2 0 0
## 8887 2 0 0
## 8888 2 0 0
## 8889 2 0 0
## 8890 2 0 0
## 8891 2 2 0
## 8892 2 0 0
## 8893 2 0 0
## 8894 2 0 0
## 8895 2 0 0
## 8896 2 0 0
## 8897 2 1 0
## 8898 3 1 0
## 8899 2 2 0
## 8900 2 0 0
## 8901 2 0 0
## 8902 2 2 0
## 8903 2 0 0
## 8904 2 0 0
## 8905 2 0 0
## 8906 2 2 0
## 8907 2 0 0
## 8908 2 0 0
## 8909 2 0 0
## 8910 2 0 0
## 8911 2 0 0
## 8912 2 0 0
## 8913 2 0 0
## 8914 2 0 0
## 8915 2 0 0
## 8916 2 2 0
## 8917 2 0 0
## 8918 2 0 0
## 8919 2 0 0
## 8920 2 0 0
## 8921 2 0 0
## 8922 2 0 0
## 8923 2 0 0
## 8924 2 0 0
## 8925 2 0 0
## 8926 1 0 0
## 8927 2 2 0
## 8928 2 0 0
## 8929 2 0 0
## 8930 2 0 0
## 8931 2 0 0
## 8932 2 0 0
## 8933 2 0 0
## 8934 2 0 0
## 8935 2 0 0
## 8936 2 0 0
## 8937 1 0 0
## 8938 1 0 0
## 8939 2 0 0
## 8940 2 0 0
## 8941 2 0 0
## 8942 2 0 0
## 8943 2 0 0
## 8944 2 0 0
## 8945 1 0 0
## 8946 2 0 0
## 8947 2 0 0
## 8948 2 0 0
## 8949 2 0 0
## 8950 2 0 0
## 8951 2 0 0
## 8952 2 0 0
## 8953 2 0 0
## 8954 2 0 0
## 8955 2 0 0
## 8956 2 0 0
## 8957 1 0 0
## 8958 2 0 0
## 8959 2 0 0
## 8960 2 0 0
## 8961 1 0 0
## 8962 3 0 0
## 8963 2 0 0
## 8964 2 0 0
## 8965 1 0 0
## 8966 2 1 0
## 8967 1 0 0
## 8968 2 0 0
## 8969 2 0 0
## 8970 1 0 0
## 8971 2 0 0
## 8972 1 0 0
## 8973 2 0 0
## 8974 2 0 0
## 8975 2 0 0
## 8976 1 0 0
## 8977 1 0 0
## 8978 2 0 0
## 8979 2 0 0
## 8980 2 0 0
## 8981 2 0 0
## 8982 2 0 0
## 8983 2 0 0
## 8984 2 0 0
## 8985 2 0 0
## 8986 2 0 0
## 8987 2 0 0
## 8988 2 0 0
## 8989 2 0 0
## 8990 2 0 0
## 8991 2 0 0
## 8992 2 0 0
## 8993 2 0 0
## 8994 2 0 0
## 8995 2 0 0
## 8996 2 0 0
## 8997 2 0 0
## 8998 1 0 0
## 8999 2 0 0
## 9000 2 0 0
## 9001 2 0 0
## 9002 2 0 0
## 9003 2 0 0
## 9004 2 0 0
## 9005 2 0 0
## 9006 2 0 0
## 9007 2 0 0
## 9008 2 0 0
## 9009 2 0 0
## 9010 1 0 0
## 9011 2 0 0
## 9012 2 0 0
## 9013 2 0 0
## 9014 1 0 0
## 9015 2 0 0
## 9016 2 0 0
## 9017 2 0 0
## 9018 2 0 0
## 9019 2 0 0
## 9020 2 0 0
## 9021 2 0 0
## 9022 2 0 0
## 9023 2 0 0
## 9024 2 0 0
## 9025 2 0 0
## 9026 2 0 0
## 9027 1 0 0
## 9028 2 0 0
## 9029 2 0 0
## 9030 1 0 0
## 9031 2 0 0
## 9032 2 0 0
## 9033 2 0 0
## 9034 2 0 0
## 9035 2 0 0
## 9036 3 1 0
## 9037 2 0 0
## 9038 2 0 0
## 9039 2 0 0
## 9040 2 0 0
## 9041 1 0 0
## 9042 2 0 0
## 9043 2 0 0
## 9044 2 2 0
## 9045 2 0 0
## 9046 1 0 0
## 9047 2 0 0
## 9048 2 0 0
## 9049 2 0 0
## 9050 2 0 0
## 9051 2 0 0
## 9052 2 0 0
## 9053 2 0 0
## 9054 2 0 0
## 9055 2 0 0
## 9056 2 0 0
## 9057 2 0 0
## 9058 2 0 0
## 9059 2 0 0
## 9060 2 0 0
## 9061 2 0 0
## 9062 2 0 0
## 9063 2 0 0
## 9064 2 0 0
## 9065 1 0 0
## 9066 1 0 0
## 9067 1 0 0
## 9068 2 0 0
## 9069 2 0 0
## 9070 2 0 0
## 9071 2 0 0
## 9072 2 0 0
## 9073 2 0 0
## 9074 2 0 0
## 9075 2 0 0
## 9076 3 0 0
## 9077 2 0 0
## 9078 2 0 0
## 9079 2 0 0
## 9080 2 0 0
## 9081 2 0 0
## 9082 2 0 0
## 9083 2 0 0
## 9084 2 0 0
## 9085 3 0 0
## 9086 2 0 0
## 9087 1 0 0
## 9088 1 0 0
## 9089 2 0 0
## 9090 2 0 0
## 9091 2 0 0
## 9092 2 0 0
## 9093 2 0 0
## 9094 2 0 0
## 9095 2 0 0
## 9096 2 0 0
## 9097 1 0 0
## 9098 2 0 0
## 9099 2 0 0
## 9100 2 0 0
## 9101 2 0 0
## 9102 2 0 0
## 9103 2 0 0
## 9104 2 0 0
## 9105 2 0 0
## 9106 2 0 0
## 9107 2 0 0
## 9108 2 0 0
## 9109 2 0 0
## 9110 2 0 0
## 9111 2 0 0
## 9112 2 0 0
## 9113 2 0 0
## 9114 1 0 0
## 9115 2 0 0
## 9116 2 0 0
## 9117 2 0 0
## 9118 2 0 0
## 9119 2 0 0
## 9120 2 0 0
## 9121 2 0 0
## 9122 2 0 0
## 9123 2 0 0
## 9124 2 0 0
## 9125 2 0 0
## 9126 2 0 0
## 9127 2 0 0
## 9128 2 0 0
## 9129 2 0 0
## 9130 2 0 0
## 9131 2 0 0
## 9132 1 0 0
## 9133 2 0 0
## 9134 2 0 0
## 9135 2 0 0
## 9136 2 0 0
## 9137 2 0 0
## 9138 3 0 0
## 9139 2 0 0
## 9140 2 0 0
## 9141 2 1 0
## 9142 2 0 0
## 9143 2 0 0
## 9144 2 0 0
## 9145 2 2 0
## 9146 2 2 0
## 9147 2 0 0
## 9148 2 0 0
## 9149 2 0 0
## 9150 2 0 0
## 9151 2 0 0
## 9152 2 2 0
## 9153 2 0 0
## 9154 2 2 0
## 9155 2 0 0
## 9156 2 0 0
## 9157 2 0 0
## 9158 2 0 0
## 9159 2 0 0
## 9160 2 0 0
## 9161 2 0 0
## 9162 2 2 0
## 9163 2 0 0
## 9164 2 0 0
## 9165 2 0 0
## 9166 2 0 0
## 9167 1 0 0
## 9168 1 0 0
## 9169 2 0 0
## 9170 2 0 0
## 9171 1 0 0
## 9172 1 0 0
## 9173 2 0 0
## 9174 2 0 0
## 9175 2 2 0
## 9176 1 2 0
## 9177 1 0 0
## 9178 3 1 0
## 9179 2 0 0
## 9180 1 0 0
## 9181 2 0 0
## 9182 2 0 0
## 9183 2 0 0
## 9184 2 0 0
## 9185 2 0 0
## 9186 2 0 0
## 9187 2 0 0
## 9188 2 0 0
## 9189 2 0 0
## 9190 2 0 0
## 9191 2 0 0
## 9192 2 0 0
## 9193 2 0 0
## 9194 2 0 0
## 9195 2 0 0
## 9196 2 0 0
## 9197 2 0 0
## 9198 2 0 0
## 9199 2 0 0
## 9200 2 0 0
## 9201 2 0 0
## 9202 2 0 0
## 9203 2 0 0
## 9204 2 0 0
## 9205 2 0 0
## 9206 2 0 0
## 9207 3 0 0
## 9208 1 0 0
## 9209 2 0 0
## 9210 2 0 0
## 9211 2 0 0
## 9212 2 0 0
## 9213 1 0 0
## 9214 2 2 0
## 9215 2 2 0
## 9216 2 2 0
## 9217 1 0 0
## 9218 2 0 0
## 9219 1 0 0
## 9220 2 0 0
## 9221 2 0 0
## 9222 2 0 0
## 9223 2 0 0
## 9224 2 0 0
## 9225 2 0 0
## 9226 2 0 0
## 9227 2 0 0
## 9228 2 0 0
## 9229 2 0 0
## 9230 2 0 0
## 9231 2 0 0
## 9232 2 0 0
## 9233 2 0 0
## 9234 2 0 0
## 9235 1 0 0
## 9236 2 0 0
## 9237 2 0 0
## 9238 2 2 0
## 9239 2 0 0
## 9240 2 0 0
## 9241 2 0 0
## 9242 2 0 0
## 9243 2 0 0
## 9244 2 0 0
## 9245 2 0 0
## 9246 1 0 0
## 9247 2 0 0
## 9248 2 0 0
## 9249 2 0 0
## 9250 2 0 0
## 9251 2 0 0
## 9252 2 0 0
## 9253 2 0 0
## 9254 2 0 0
## 9255 1 0 0
## 9256 2 0 0
## 9257 1 0 0
## 9258 2 0 0
## 9259 2 0 0
## 9260 2 0 0
## 9261 2 0 0
## 9262 2 0 0
## 9263 2 0 0
## 9264 2 0 0
## 9265 2 0 0
## 9266 2 0 0
## 9267 2 0 0
## 9268 2 0 0
## 9269 2 0 0
## 9270 2 0 0
## 9271 2 0 0
## 9272 2 0 0
## 9273 2 0 0
## 9274 2 0 0
## 9275 2 0 0
## 9276 2 0 0
## 9277 2 0 0
## 9278 2 0 0
## 9279 2 0 0
## 9280 2 0 0
## 9281 2 0 0
## 9282 2 0 0
## 9283 2 0 0
## 9284 2 0 0
## 9285 2 0 0
## 9286 2 0 0
## 9287 2 0 0
## 9288 2 0 0
## 9289 2 0 0
## 9290 1 0 0
## 9291 2 0 0
## 9292 2 0 0
## 9293 1 2 0
## 9294 1 0 0
## 9295 2 2 0
## 9296 2 2 0
## 9297 2 0 0
## 9298 2 1 0
## 9299 2 0 0
## 9300 2 0 0
## 9301 2 0 0
## 9302 2 0 0
## 9303 2 0 0
## 9304 2 0 0
## 9305 2 0 0
## 9306 2 0 0
## 9307 1 0 0
## 9308 2 0 0
## 9309 2 0 0
## 9310 2 0 0
## 9311 2 0 0
## 9312 2 0 0
## 9313 1 0 0
## 9314 1 0 0
## 9315 2 0 0
## 9316 3 1 0
## 9317 2 0 0
## 9318 3 1 0
## 9319 2 0 0
## 9320 2 0 0
## 9321 2 0 0
## 9322 2 0 0
## 9323 2 0 0
## 9324 2 0 0
## 9325 2 0 0
## 9326 2 0 0
## 9327 2 0 0
## 9328 1 0 0
## 9329 2 0 0
## 9330 2 0 0
## 9331 1 0 0
## 9332 2 0 0
## 9333 1 0 0
## 9334 1 0 0
## 9335 2 0 0
## 9336 1 0 0
## 9337 3 0 0
## 9338 1 0 0
## 9339 2 0 0
## 9340 2 0 0
## 9341 1 0 0
## 9342 1 0 0
## 9343 1 0 0
## 9344 1 0 0
## 9345 2 0 0
## 9346 2 0 0
## 9347 1 0 0
## 9348 1 0 0
## 9349 1 0 0
## 9350 2 0 0
## 9351 2 0 0
## 9352 2 0 0
## 9353 1 0 0
## 9354 2 0 0
## 9355 2 0 0
## 9356 2 0 0
## 9357 2 0 0
## 9358 2 0 0
## 9359 2 0 0
## 9360 2 0 0
## 9361 1 0 0
## 9362 2 0 0
## 9363 2 0 0
## 9364 2 0 0
## 9365 2 0 0
## 9366 2 0 0
## 9367 2 0 0
## 9368 2 0 0
## 9369 2 0 0
## 9370 2 2 0
## 9371 2 0 0
## 9372 2 0 0
## 9373 2 0 0
## 9374 2 0 0
## 9375 2 0 0
## 9376 2 0 0
## 9377 2 0 0
## 9378 2 0 0
## 9379 2 0 0
## 9380 2 0 0
## 9381 2 0 0
## 9382 2 0 0
## 9383 2 2 0
## 9384 2 0 0
## 9385 2 0 0
## 9386 2 1 0
## 9387 2 0 0
## 9388 2 0 0
## 9389 2 2 0
## 9390 2 0 0
## 9391 2 0 0
## 9392 2 2 0
## 9393 2 0 0
## 9394 2 1 0
## 9395 2 0 0
## 9396 2 0 0
## 9397 1 0 0
## 9398 2 0 0
## 9399 2 0 0
## 9400 2 0 0
## 9401 2 0 0
## 9402 2 0 0
## 9403 2 0 0
## 9404 2 0 0
## 9405 2 0 0
## 9406 2 0 0
## 9407 2 0 0
## 9408 2 0 0
## 9409 2 0 0
## 9410 2 0 0
## 9411 2 0 0
## 9412 2 0 0
## 9413 2 0 0
## 9414 2 0 0
## 9415 2 0 0
## 9416 2 0 0
## 9417 2 0 0
## 9418 2 0 0
## 9419 2 0 0
## 9420 2 0 0
## 9421 2 0 0
## 9422 2 0 0
## 9423 2 0 0
## 9424 2 0 0
## 9425 2 0 0
## 9426 2 0 0
## 9427 2 0 0
## 9428 2 0 0
## 9429 2 0 0
## 9430 1 0 0
## 9431 1 0 0
## 9432 2 0 0
## 9433 2 0 0
## 9434 2 0 0
## 9435 2 0 0
## 9436 2 0 0
## 9437 2 0 0
## 9438 2 0 0
## 9439 2 0 0
## 9440 2 0 0
## 9441 2 0 0
## 9442 2 0 0
## 9443 2 0 0
## 9444 2 0 0
## 9445 2 0 0
## 9446 2 0 0
## 9447 2 0 0
## 9448 2 0 0
## 9449 2 0 0
## 9450 2 0 0
## 9451 2 0 0
## 9452 2 0 0
## 9453 2 0 0
## 9454 2 0 0
## 9455 2 0 0
## 9456 1 0 0
## 9457 2 0 0
## 9458 2 0 0
## 9459 2 0 0
## 9460 1 0 0
## 9461 1 0 0
## 9462 2 0 0
## 9463 2 0 0
## 9464 2 0 0
## 9465 2 0 0
## 9466 2 0 0
## 9467 2 0 0
## 9468 2 0 0
## 9469 1 0 0
## 9470 2 0 0
## 9471 2 0 0
## 9472 2 0 0
## 9473 2 2 0
## 9474 2 0 0
## 9475 2 0 0
## 9476 2 0 0
## 9477 1 0 0
## 9478 2 0 0
## 9479 2 0 0
## 9480 1 0 0
## 9481 1 0 0
## 9482 2 0 0
## 9483 2 0 0
## 9484 2 0 0
## 9485 2 0 0
## 9486 2 0 0
## 9487 2 0 0
## 9488 2 0 0
## 9489 2 0 0
## 9490 2 0 0
## 9491 2 0 0
## 9492 2 0 0
## 9493 1 0 0
## 9494 1 0 0
## 9495 2 0 0
## 9496 2 0 0
## 9497 1 0 0
## 9498 1 0 0
## 9499 1 0 0
## 9500 1 0 0
## 9501 2 0 0
## 9502 2 0 0
## 9503 2 0 0
## 9504 2 0 0
## 9505 2 0 0
## 9506 1 0 0
## 9507 2 0 0
## 9508 1 0 0
## 9509 2 0 0
## 9510 1 0 0
## 9511 2 0 0
## 9512 2 0 0
## 9513 2 0 0
## 9514 2 0 0
## 9515 2 0 0
## 9516 2 0 0
## 9517 1 0 0
## 9518 2 0 0
## 9519 1 0 0
## 9520 1 0 0
## 9521 1 0 0
## 9522 1 0 0
## 9523 1 0 0
## 9524 2 0 0
## 9525 2 0 0
## 9526 1 0 0
## 9527 2 0 0
## 9528 2 0 0
## 9529 2 0 0
## 9530 2 0 0
## 9531 1 0 0
## 9532 1 0 0
## 9533 2 0 0
## 9534 2 0 0
## 9535 2 0 0
## 9536 2 0 0
## 9537 2 0 0
## 9538 2 0 0
## 9539 1 0 0
## 9540 2 0 0
## 9541 2 0 0
## 9542 3 0 0
## 9543 1 0 0
## 9544 2 0 0
## 9545 2 0 0
## 9546 2 0 0
## 9547 2 0 0
## 9548 2 0 0
## 9549 1 0 0
## 9550 2 0 0
## 9551 2 0 0
## 9552 2 0 0
## 9553 2 0 0
## 9554 2 0 0
## 9555 2 0 0
## 9556 2 0 0
## 9557 2 0 0
## 9558 2 0 0
## 9559 1 0 0
## 9560 2 0 0
## 9561 2 0 0
## 9562 2 0 0
## 9563 2 0 0
## 9564 2 0 0
## 9565 1 0 0
## 9566 1 0 0
## 9567 2 0 0
## 9568 2 0 0
## 9569 2 0 0
## 9570 2 0 0
## 9571 2 0 0
## 9572 2 0 0
## 9573 2 0 0
## 9574 1 0 0
## 9575 1 0 0
## 9576 2 0 0
## 9577 2 0 0
## 9578 1 0 0
## 9579 1 0 0
## 9580 2 0 0
## 9581 2 0 0
## 9582 2 2 0
## 9583 2 0 0
## 9584 2 0 0
## 9585 2 0 0
## 9586 2 0 0
## 9587 2 2 0
## 9588 2 0 0
## 9589 2 0 0
## 9590 2 0 0
## 9591 2 2 0
## 9592 2 2 0
## 9593 2 2 0
## 9594 2 2 0
## 9595 2 2 0
## 9596 2 0 0
## 9597 2 0 0
## 9598 2 0 0
## 9599 3 1 0
## 9600 2 0 0
## 9601 2 0 0
## 9602 2 0 0
## 9603 2 0 0
## 9604 2 2 0
## 9605 2 0 0
## 9606 2 0 0
## 9607 2 0 0
## 9608 2 0 0
## 9609 2 0 0
## 9610 2 0 0
## 9611 2 0 0
## 9612 2 0 0
## 9613 2 0 0
## 9614 2 0 0
## 9615 2 0 0
## 9616 2 0 0
## 9617 2 0 0
## 9618 2 0 0
## 9619 2 0 0
## 9620 2 0 0
## 9621 2 0 0
## 9622 2 0 0
## 9623 2 0 0
## 9624 2 0 0
## 9625 2 0 0
## 9626 2 0 0
## 9627 2 0 0
## 9628 2 0 0
## 9629 2 0 0
## 9630 2 2 0
## 9631 2 0 0
## 9632 3 0 0
## 9633 2 0 0
## 9634 2 0 0
## 9635 3 0 0
## 9636 2 1 0
## 9637 2 0 0
## 9638 2 0 0
## 9639 1 0 0
## 9640 1 0 0
## 9641 2 0 0
## 9642 1 0 0
## 9643 2 0 0
## 9644 2 0 0
## 9645 1 0 0
## 9646 2 0 0
## 9647 2 0 0
## 9648 1 0 0
## 9649 2 0 0
## 9650 2 0 0
## 9651 2 0 0
## 9652 2 0 0
## 9653 2 0 0
## 9654 2 0 0
## 9655 2 0 0
## 9656 3 1 0
## 9657 1 0 0
## 9658 2 0 0
## 9659 2 0 0
## 9660 2 0 0
## 9661 2 0 0
## 9662 2 0 0
## 9663 2 0 0
## 9664 2 0 0
## 9665 2 0 0
## 9666 1 0 0
## 9667 2 2 0
## 9668 2 0 0
## 9669 2 1 0
## 9670 3 0 0
## 9671 2 0 0
## 9672 3 0 0
## 9673 2 0 0
## 9674 3 1 0
## 9675 2 0 0
## 9676 1 0 0
## 9677 2 0 0
## 9678 2 0 0
## 9679 2 0 0
## 9680 2 2 0
## 9681 2 0 0
## 9682 2 0 0
## 9683 2 0 0
## 9684 2 0 0
## 9685 2 0 0
## 9686 2 0 0
## 9687 3 0 0
## 9688 2 2 0
## 9689 2 0 0
## 9690 2 0 0
## 9691 1 0 0
## 9692 2 0 0
## 9693 2 0 0
## 9694 2 0 0
## 9695 2 0 0
## 9696 2 0 0
## 9697 2 0 0
## 9698 2 0 0
## 9699 2 0 0
## 9700 2 0 0
## 9701 2 0 0
## 9702 2 0 0
## 9703 2 0 0
## 9704 2 0 0
## 9705 2 0 0
## 9706 2 0 0
## 9707 2 0 0
## 9708 2 0 0
## 9709 2 0 0
## 9710 2 0 0
## 9711 2 0 0
## 9712 3 0 0
## 9713 3 1 0
## 9714 2 0 0
## 9715 2 0 0
## 9716 2 0 0
## 9717 3 1 0
## 9718 3 1 0
## 9719 2 0 0
## 9720 2 0 0
## 9721 2 0 0
## 9722 2 0 0
## 9723 2 0 0
## 9724 2 0 0
## 9725 2 0 0
## 9726 2 0 0
## 9727 2 2 0
## 9728 2 0 0
## 9729 2 1 0
## 9730 2 0 0
## 9731 2 0 0
## 9732 2 2 0
## 9733 2 0 0
## 9734 2 1 0
## 9735 2 0 0
## 9736 2 0 0
## 9737 2 0 0
## 9738 2 0 0
## 9739 2 0 0
## 9740 2 0 0
## 9741 2 0 0
## 9742 2 2 0
## 9743 3 1 0
## 9744 2 0 0
## 9745 2 0 0
## 9746 2 0 0
## 9747 2 0 0
## 9748 2 2 0
## 9749 2 2 0
## 9750 2 0 0
## 9751 2 0 0
## 9752 2 0 0
## 9753 2 2 0
## 9754 2 0 0
## 9755 2 0 0
## 9756 2 0 0
## 9757 2 0 0
## 9758 2 2 0
## 9759 2 0 0
## 9760 2 0 0
## 9761 2 0 0
## 9762 2 0 0
## 9763 2 0 0
## 9764 3 1 0
## 9765 2 0 0
## 9766 2 0 0
## 9767 2 0 0
## 9768 2 0 0
## 9769 2 0 0
## 9770 2 0 0
## 9771 2 2 0
## 9772 2 2 0
## 9773 2 0 0
## 9774 2 0 0
## 9775 2 1 0
## 9776 2 0 0
## 9777 2 2 0
## 9778 2 0 0
## 9779 2 0 0
## 9780 2 0 0
## 9781 2 0 0
## 9782 2 0 0
## 9783 2 0 0
## 9784 2 0 0
## 9785 2 0 0
## 9786 2 0 0
## 9787 2 0 0
## 9788 2 0 0
## 9789 2 0 0
## 9790 2 0 0
## 9791 2 0 0
## 9792 2 0 0
## 9793 2 0 0
## 9794 2 0 0
## 9795 2 0 0
## 9796 2 0 0
## 9797 2 0 0
## 9798 2 0 0
## 9799 2 0 0
## 9800 2 0 0
## 9801 2 0 0
## 9802 2 0 0
## 9803 2 0 0
## 9804 2 0 0
## 9805 2 0 0
## 9806 2 0 0
## 9807 2 0 0
## 9808 2 0 0
## 9809 2 0 0
## 9810 1 0 0
## 9811 2 0 0
## 9812 2 0 0
## 9813 2 0 0
## 9814 2 0 0
## 9815 2 0 0
## 9816 1 0 0
## 9817 2 0 0
## 9818 2 0 0
## 9819 2 0 0
## 9820 2 1 0
## 9821 2 0 0
## 9822 2 1 0
## 9823 2 0 0
## 9824 1 0 0
## 9825 1 0 0
## 9826 1 0 0
## 9827 1 0 0
## 9828 2 0 0
## 9829 2 2 0
## 9830 2 0 0
## 9831 2 0 0
## 9832 3 1 0
## 9833 1 0 0
## 9834 2 0 0
## 9835 2 0 0
## 9836 2 0 0
## 9837 2 0 0
## 9838 2 0 0
## 9839 2 0 0
## 9840 2 0 0
## 9841 2 0 0
## 9842 2 0 0
## 9843 2 0 0
## 9844 2 0 0
## 9845 2 0 0
## 9846 2 0 0
## 9847 2 0 0
## 9848 2 0 0
## 9849 2 0 0
## 9850 2 0 0
## 9851 2 0 0
## 9852 1 0 0
## 9853 1 0 0
## 9854 1 0 0
## 9855 2 0 0
## 9856 2 0 0
## 9857 2 0 0
## 9858 2 0 0
## 9859 2 0 0
## 9860 2 0 0
## 9861 2 0 0
## 9862 2 0 0
## 9863 2 0 0
## 9864 2 0 0
## 9865 2 0 0
## 9866 2 0 0
## 9867 2 0 0
## 9868 3 1 0
## 9869 2 0 0
## 9870 2 0 0
## 9871 2 0 0
## 9872 2 0 0
## 9873 2 0 0
## 9874 2 0 0
## 9875 2 0 0
## 9876 2 0 0
## 9877 2 0 0
## 9878 2 0 0
## 9879 1 0 0
## 9880 2 0 0
## 9881 2 0 0
## 9882 2 0 0
## 9883 2 0 0
## 9884 2 0 0
## 9885 2 0 0
## 9886 1 0 0
## 9887 1 0 0
## 9888 2 0 0
## 9889 2 0 0
## 9890 2 0 0
## 9891 2 0 0
## 9892 2 0 0
## 9893 2 0 0
## 9894 3 0 0
## 9895 2 0 0
## 9896 1 0 0
## 9897 2 0 0
## 9898 2 0 0
## 9899 2 0 0
## 9900 2 0 0
## 9901 2 1 0
## 9902 2 0 0
## 9903 2 0 0
## 9904 2 0 0
## 9905 2 0 0
## 9906 2 0 0
## 9907 2 0 0
## 9908 2 0 0
## 9909 2 0 0
## 9910 2 0 0
## 9911 1 0 0
## 9912 2 0 0
## 9913 2 0 0
## 9914 1 0 0
## 9915 1 0 0
## 9916 2 0 0
## 9917 2 0 0
## 9918 2 0 0
## 9919 2 0 0
## 9920 2 0 0
## 9921 2 0 0
## 9922 2 0 0
## 9923 2 0 0
## 9924 2 0 0
## 9925 2 0 0
## 9926 2 0 0
## 9927 3 1 0
## 9928 2 2 0
## 9929 2 0 0
## 9930 2 0 0
## 9931 2 0 0
## 9932 2 0 0
## 9933 2 0 0
## 9934 2 0 0
## 9935 2 0 0
## 9936 2 0 0
## 9937 2 0 0
## 9938 2 0 0
## 9939 2 0 0
## 9940 2 0 0
## 9941 2 0 0
## 9942 2 0 0
## 9943 2 0 0
## 9944 2 0 0
## 9945 2 0 0
## 9946 2 0 0
## 9947 2 0 0
## 9948 2 0 0
## 9949 2 1 0
## 9950 3 1 0
## 9951 3 0 0
## 9952 2 0 0
## 9953 2 0 0
## 9954 1 0 0
## 9955 2 0 0
## 9956 2 0 0
## 9957 2 0 0
## 9958 2 0 0
## 9959 2 0 0
## 9960 2 0 0
## 9961 2 0 0
## 9962 2 0 0
## 9963 2 0 0
## 9964 2 0 0
## 9965 2 0 0
## 9966 2 0 0
## 9967 2 0 0
## 9968 2 0 0
## 9969 2 0 0
## 9970 2 0 0
## 9971 2 0 0
## 9972 2 0 0
## 9973 2 0 0
## 9974 2 0 0
## 9975 2 0 0
## 9976 2 0 0
## 9977 2 0 0
## 9978 2 0 0
## 9979 1 0 0
## 9980 2 0 0
## 9981 2 0 0
## 9982 2 0 0
## 9983 2 0 0
## 9984 1 0 0
## 9985 2 0 0
## 9986 2 0 0
## 9987 2 0 0
## 9988 2 0 0
## 9989 2 0 0
## 9990 2 0 0
## 9991 2 0 0
## 9992 2 0 0
## 9993 2 0 0
## 9994 2 0 0
## 9995 2 0 0
## 9996 2 0 0
## 9997 2 0 0
## 9998 2 0 0
## 9999 2 0 0
## 10000 2 0 0
## 10001 2 0 0
## 10002 2 0 0
## 10003 2 0 0
## 10004 2 0 0
## 10005 2 0 0
## 10006 2 0 0
## 10007 2 0 0
## 10008 2 0 0
## 10009 2 0 0
## 10010 2 0 0
## 10011 2 0 0
## 10012 2 0 0
## 10013 2 0 0
## 10014 2 0 0
## 10015 2 0 0
## 10016 2 0 0
## 10017 2 0 0
## 10018 2 0 0
## 10019 2 0 0
## 10020 2 0 0
## 10021 2 0 0
## 10022 2 0 0
## 10023 2 0 0
## 10024 2 0 0
## 10025 2 0 0
## 10026 2 0 0
## 10027 2 0 0
## 10028 2 0 0
## 10029 2 0 0
## 10030 2 0 0
## 10031 2 0 0
## 10032 2 0 0
## 10033 2 0 0
## 10034 2 0 0
## 10035 2 0 0
## 10036 2 0 0
## 10037 2 0 0
## 10038 2 0 0
## 10039 2 0 0
## 10040 2 0 0
## 10041 2 0 0
## 10042 2 0 0
## 10043 2 0 0
## 10044 2 0 0
## 10045 2 0 0
## 10046 2 0 0
## 10047 2 0 0
## 10048 2 0 0
## 10049 2 0 0
## 10050 1 0 0
## 10051 1 0 0
## 10052 2 0 0
## 10053 2 0 0
## 10054 2 0 0
## 10055 2 0 0
## 10056 2 0 0
## 10057 2 0 0
## 10058 1 0 0
## 10059 2 0 0
## 10060 1 0 0
## 10061 2 0 0
## 10062 2 0 0
## 10063 2 0 0
## 10064 2 0 0
## 10065 2 0 0
## 10066 1 0 0
## 10067 2 0 0
## 10068 2 0 0
## 10069 3 0 0
## 10070 2 0 0
## 10071 2 0 0
## 10072 2 2 0
## 10073 2 0 0
## 10074 2 0 0
## 10075 2 0 0
## 10076 2 0 0
## 10077 2 0 0
## 10078 2 0 0
## 10079 2 0 0
## 10080 2 0 0
## 10081 2 0 0
## 10082 2 0 0
## 10083 1 0 0
## 10084 1 0 0
## 10085 1 0 0
## 10086 2 0 0
## 10087 2 0 0
## 10088 2 0 0
## 10089 2 0 0
## 10090 2 0 0
## 10091 2 0 0
## 10092 1 0 0
## 10093 2 0 0
## 10094 2 0 0
## 10095 3 1 0
## 10096 2 0 0
## 10097 2 0 0
## 10098 2 0 0
## 10099 2 0 0
## 10100 2 0 0
## 10101 2 0 0
## 10102 2 0 0
## 10103 2 0 0
## 10104 2 0 0
## 10105 2 0 0
## 10106 2 0 0
## 10107 2 0 0
## 10108 2 0 0
## 10109 2 0 0
## 10110 1 0 0
## 10111 1 0 0
## 10112 3 0 0
## 10113 2 0 0
## 10114 1 0 0
## 10115 1 0 0
## 10116 2 0 0
## 10117 2 0 0
## 10118 2 0 0
## 10119 1 0 0
## 10120 2 0 0
## 10121 2 0 0
## 10122 2 0 0
## 10123 1 0 0
## 10124 2 0 0
## 10125 2 0 0
## 10126 2 0 0
## 10127 2 0 0
## 10128 2 0 0
## 10129 2 0 0
## 10130 2 0 0
## 10131 2 0 0
## 10132 2 0 0
## 10133 2 0 0
## 10134 2 0 0
## 10135 1 0 0
## 10136 2 0 0
## 10137 2 0 0
## 10138 2 0 0
## 10139 2 0 0
## 10140 2 0 0
## 10141 2 0 0
## 10142 2 0 0
## 10143 2 0 0
## 10144 1 0 0
## 10145 2 0 0
## 10146 2 0 0
## 10147 2 0 0
## 10148 2 0 0
## 10149 2 0 0
## 10150 2 0 0
## 10151 1 0 0
## 10152 2 0 0
## 10153 0 0 0
## 10154 2 2 0
## 10155 2 1 0
## 10156 2 0 0
## 10157 2 0 0
## 10158 2 0 0
## 10159 1 0 0
## 10160 2 0 0
## 10161 2 0 0
## 10162 2 0 0
## 10163 2 0 0
## 10164 1 0 0
## 10165 1 0 0
## 10166 2 0 0
## 10167 1 0 0
## 10168 1 0 0
## 10169 2 0 0
## 10170 2 0 0
## 10171 1 0 0
## 10172 2 0 0
## 10173 2 0 0
## 10174 2 0 0
## 10175 2 0 0
## 10176 2 0 0
## 10177 1 0 0
## 10178 2 0 0
## 10179 2 0 0
## 10180 2 0 0
## 10181 1 0 0
## 10182 2 0 0
## 10183 2 0 0
## 10184 2 0 0
## 10185 2 2 0
## 10186 2 0 0
## 10187 2 2 0
## 10188 2 0 0
## 10189 3 1 0
## 10190 2 2 0
## 10191 2 0 0
## 10192 2 0 0
## 10193 2 0 0
## 10194 2 0 0
## 10195 2 0 0
## 10196 2 0 0
## 10197 2 0 0
## 10198 2 0 0
## 10199 2 0 0
## 10200 2 0 0
## 10201 2 0 0
## 10202 2 0 0
## 10203 2 0 0
## 10204 2 0 0
## 10205 2 0 0
## 10206 2 0 0
## 10207 2 0 0
## 10208 2 0 0
## 10209 2 0 0
## 10210 2 0 0
## 10211 1 0 0
## 10212 1 0 0
## 10213 2 0 0
## 10214 1 0 0
## 10215 1 0 0
## 10216 2 0 0
## 10217 2 0 0
## 10218 2 0 0
## 10219 2 0 0
## 10220 2 0 0
## 10221 2 0 0
## 10222 1 0 0
## 10223 2 0 0
## 10224 1 0 0
## 10225 2 0 0
## 10226 2 0 0
## 10227 2 0 0
## 10228 2 0 0
## 10229 2 0 0
## 10230 1 0 0
## 10231 2 0 0
## 10232 2 0 0
## 10233 2 0 0
## 10234 2 0 0
## 10235 2 0 0
## 10236 2 0 0
## 10237 2 0 0
## 10238 2 0 0
## 10239 2 0 0
## 10240 2 0 0
## 10241 1 0 0
## 10242 2 0 0
## 10243 2 0 0
## 10244 2 0 0
## 10245 2 0 0
## 10246 2 0 0
## 10247 2 0 0
## 10248 2 0 0
## 10249 2 0 0
## 10250 2 0 0
## 10251 2 0 0
## 10252 2 0 0
## 10253 2 0 0
## 10254 2 0 0
## 10255 2 0 0
## 10256 2 0 0
## 10257 2 0 0
## 10258 2 0 0
## 10259 2 0 0
## 10260 2 0 0
## 10261 2 0 0
## 10262 2 0 0
## 10263 2 0 0
## 10264 2 0 0
## 10265 2 0 0
## 10266 2 0 0
## 10267 2 0 0
## 10268 2 0 0
## 10269 2 0 0
## 10270 2 0 0
## 10271 2 0 0
## 10272 2 0 0
## 10273 2 0 0
## 10274 2 0 0
## 10275 2 0 0
## 10276 2 0 0
## 10277 2 0 0
## 10278 2 0 0
## 10279 2 0 0
## 10280 2 0 0
## 10281 2 0 0
## 10282 2 0 0
## 10283 2 0 0
## 10284 2 0 0
## 10285 2 0 0
## 10286 2 0 0
## 10287 2 0 0
## 10288 1 0 0
## 10289 2 0 0
## 10290 2 0 0
## 10291 2 0 0
## 10292 2 0 0
## 10293 2 0 0
## 10294 2 0 0
## 10295 2 0 0
## 10296 2 0 0
## 10297 2 0 0
## 10298 2 2 0
## 10299 2 0 0
## 10300 2 0 0
## 10301 2 0 0
## 10302 2 0 0
## 10303 2 1 0
## 10304 2 0 0
## 10305 2 0 0
## 10306 2 0 0
## 10307 2 0 0
## 10308 2 0 0
## 10309 1 0 0
## 10310 1 0 0
## 10311 2 0 0
## 10312 1 0 0
## 10313 2 0 0
## 10314 2 0 0
## 10315 2 0 0
## 10316 2 0 0
## 10317 2 0 0
## 10318 2 0 0
## 10319 2 0 0
## 10320 2 0 0
## 10321 2 0 0
## 10322 2 0 0
## 10323 2 0 0
## 10324 2 0 0
## 10325 2 0 0
## 10326 2 0 0
## 10327 2 0 0
## 10328 2 0 0
## 10329 1 0 0
## 10330 2 0 0
## 10331 2 0 0
## 10332 2 0 0
## 10333 2 0 0
## 10334 2 0 0
## 10335 2 0 0
## 10336 2 0 0
## 10337 2 0 0
## 10338 2 0 0
## 10339 2 0 0
## 10340 2 0 0
## 10341 3 1 0
## 10342 2 0 0
## 10343 1 0 0
## 10344 1 0 0
## 10345 2 0 0
## 10346 1 0 0
## 10347 1 0 0
## 10348 2 0 0
## 10349 2 0 0
## 10350 2 0 0
## 10351 2 0 0
## 10352 1 0 0
## 10353 2 0 0
## 10354 2 0 0
## 10355 1 0 0
## 10356 1 0 0
## 10357 2 0 0
## 10358 2 0 0
## 10359 2 0 0
## 10360 2 0 0
## 10361 2 0 0
## 10362 2 0 0
## 10363 2 0 0
## 10364 1 0 0
## 10365 1 0 0
## 10366 1 0 0
## 10367 1 0 0
## 10368 2 0 0
## 10369 1 0 0
## 10370 2 0 0
## 10371 2 0 0
## 10372 2 0 0
## 10373 2 0 0
## 10374 2 0 0
## 10375 2 0 0
## 10376 1 0 0
## 10377 2 0 0
## 10378 2 0 0
## 10379 2 0 0
## 10380 1 0 0
## 10381 3 2 0
## 10382 2 0 0
## 10383 2 0 0
## 10384 1 0 0
## 10385 2 0 0
## 10386 1 0 0
## 10387 2 0 0
## 10388 1 0 0
## 10389 2 2 0
## 10390 3 1 0
## 10391 2 2 0
## 10392 2 0 0
## 10393 2 0 0
## 10394 2 0 0
## 10395 2 0 0
## 10396 2 0 0
## 10397 2 0 0
## 10398 2 0 0
## 10399 1 0 0
## 10400 2 0 0
## 10401 1 0 0
## 10402 2 0 0
## 10403 2 0 0
## 10404 2 0 0
## 10405 2 0 0
## 10406 2 0 0
## 10407 1 0 0
## 10408 3 1 0
## 10409 2 0 0
## 10410 2 0 0
## 10411 2 0 0
## 10412 2 0 0
## 10413 2 0 0
## 10414 2 0 0
## 10415 1 0 0
## 10416 1 0 0
## 10417 1 0 0
## 10418 2 0 0
## 10419 2 0 0
## 10420 2 0 0
## 10421 2 0 0
## 10422 1 0 0
## 10423 2 0 0
## 10424 2 0 0
## 10425 2 0 0
## 10426 2 0 0
## 10427 1 0 0
## 10428 2 0 0
## 10429 2 0 0
## 10430 2 0 0
## 10431 2 0 0
## 10432 2 0 0
## 10433 2 0 0
## 10434 2 1 0
## 10435 2 0 0
## 10436 2 0 0
## 10437 2 1 0
## 10438 2 0 0
## 10439 2 2 0
## 10440 1 0 0
## 10441 2 0 0
## 10442 2 0 0
## 10443 2 0 0
## 10444 2 0 0
## 10445 2 0 0
## 10446 2 0 0
## 10447 2 0 0
## 10448 2 0 0
## 10449 2 0 0
## 10450 2 0 0
## 10451 2 0 0
## 10452 2 0 0
## 10453 2 1 0
## 10454 1 0 0
## 10455 1 0 0
## 10456 2 0 0
## 10457 3 1 0
## 10458 2 0 0
## 10459 2 1 0
## 10460 2 0 0
## 10461 2 2 0
## 10462 2 0 0
## 10463 2 0 0
## 10464 2 0 0
## 10465 2 0 0
## 10466 2 0 0
## 10467 2 0 0
## 10468 2 0 0
## 10469 2 0 0
## 10470 2 0 0
## 10471 2 0 0
## 10472 2 0 0
## 10473 1 0 0
## 10474 2 0 0
## 10475 2 0 0
## 10476 2 0 0
## 10477 1 0 0
## 10478 2 2 0
## 10479 2 0 0
## 10480 2 2 0
## 10481 1 0 0
## 10482 1 0 0
## 10483 2 0 0
## 10484 2 0 0
## 10485 2 0 0
## 10486 2 0 0
## 10487 3 1 0
## 10488 2 0 0
## 10489 1 0 0
## 10490 2 0 0
## 10491 2 2 0
## 10492 2 0 0
## 10493 2 0 0
## 10494 1 0 0
## 10495 1 0 0
## 10496 2 0 0
## 10497 2 0 0
## 10498 2 0 0
## 10499 2 0 0
## 10500 2 2 0
## 10501 2 0 0
## 10502 2 0 0
## 10503 2 0 0
## 10504 2 2 0
## 10505 2 2 0
## 10506 2 0 0
## 10507 2 0 0
## 10508 2 1 0
## 10509 2 1 0
## 10510 2 1 0
## 10511 2 0 0
## 10512 2 0 0
## 10513 2 1 0
## 10514 2 0 0
## 10515 2 0 0
## 10516 2 0 0
## 10517 3 1 0
## 10518 2 0 0
## 10519 2 0 0
## 10520 2 0 0
## 10521 2 0 0
## 10522 2 0 0
## 10523 2 0 0
## 10524 2 0 0
## 10525 2 0 0
## 10526 2 0 0
## 10527 2 0 0
## 10528 2 0 0
## 10529 2 0 0
## 10530 2 0 0
## 10531 2 0 0
## 10532 2 0 0
## 10533 2 0 0
## 10534 2 0 0
## 10535 2 0 0
## 10536 1 0 0
## 10537 2 0 0
## 10538 2 0 0
## 10539 1 0 0
## 10540 2 1 0
## 10541 2 1 0
## 10542 2 0 0
## 10543 2 0 0
## 10544 2 0 0
## 10545 2 0 0
## 10546 2 0 0
## 10547 2 0 0
## 10548 2 0 0
## 10549 2 0 0
## 10550 2 0 0
## 10551 2 0 0
## 10552 2 0 0
## 10553 2 0 0
## 10554 1 0 0
## 10555 2 0 0
## 10556 2 0 0
## 10557 2 0 0
## 10558 1 0 0
## 10559 1 0 0
## 10560 2 0 0
## 10561 2 0 0
## 10562 2 0 0
## 10563 2 0 0
## 10564 2 0 0
## 10565 2 0 0
## 10566 2 0 0
## 10567 2 0 0
## 10568 2 2 0
## 10569 2 0 0
## 10570 2 0 0
## 10571 2 0 0
## 10572 2 0 0
## 10573 2 1 0
## 10574 3 0 0
## 10575 2 1 0
## 10576 2 2 0
## 10577 2 0 0
## 10578 2 0 0
## 10579 1 0 0
## 10580 2 0 0
## 10581 2 0 0
## 10582 1 0 0
## 10583 2 0 0
## 10584 2 0 0
## 10585 3 1 0
## 10586 2 0 0
## 10587 2 0 0
## 10588 2 0 0
## 10589 1 0 0
## 10590 2 0 0
## 10591 2 0 0
## 10592 1 0 0
## 10593 2 0 0
## 10594 2 0 0
## 10595 2 0 0
## 10596 2 0 0
## 10597 2 0 0
## 10598 2 0 0
## 10599 2 0 0
## 10600 2 0 0
## 10601 2 0 0
## 10602 2 0 0
## 10603 2 0 0
## 10604 2 0 0
## 10605 2 0 0
## 10606 2 0 0
## 10607 2 0 0
## 10608 1 0 0
## 10609 2 0 0
## 10610 2 0 0
## 10611 2 0 0
## 10612 2 0 0
## 10613 2 0 0
## 10614 1 0 0
## 10615 2 0 0
## 10616 1 0 0
## 10617 2 0 0
## 10618 2 0 0
## 10619 2 0 0
## 10620 2 0 0
## 10621 2 0 0
## 10622 1 0 0
## 10623 2 0 0
## 10624 1 0 0
## 10625 2 0 0
## 10626 2 0 0
## 10627 2 0 0
## 10628 1 0 0
## 10629 2 0 0
## 10630 2 1 0
## 10631 2 0 0
## 10632 2 0 0
## 10633 2 2 0
## 10634 2 0 0
## 10635 1 0 0
## 10636 2 0 0
## 10637 2 0 0
## 10638 2 0 0
## 10639 2 0 0
## 10640 2 0 0
## 10641 2 0 0
## 10642 2 0 0
## 10643 3 1 0
## 10644 1 0 0
## 10645 2 0 0
## 10646 2 0 0
## 10647 1 0 0
## 10648 1 0 0
## 10649 1 0 0
## 10650 1 0 0
## 10651 1 0 0
## 10652 1 0 0
## 10653 1 0 0
## 10654 1 0 0
## 10655 1 0 0
## 10656 1 0 0
## 10657 1 0 0
## 10658 1 0 0
## 10659 1 0 0
## 10660 1 0 0
## 10661 1 0 0
## 10662 1 0 0
## 10663 2 0 0
## 10664 2 0 0
## 10665 1 0 0
## 10666 1 0 0
## 10667 2 0 0
## 10668 2 0 0
## 10669 1 0 0
## 10670 1 0 0
## 10671 2 0 0
## 10672 2 0 0
## 10673 2 2 0
## 10674 2 2 0
## 10675 2 0 0
## 10676 2 0 0
## 10677 2 0 0
## 10678 2 0 0
## 10679 2 0 0
## 10680 2 0 0
## 10681 2 0 0
## 10682 2 0 0
## 10683 2 1 0
## 10684 2 0 0
## 10685 2 0 0
## 10686 2 0 0
## 10687 2 0 0
## 10688 2 2 0
## 10689 1 0 0
## 10690 1 0 0
## 10691 1 0 0
## 10692 1 0 0
## 10693 1 0 0
## 10694 2 0 0
## 10695 2 0 0
## 10696 1 0 0
## 10697 3 1 0
## 10698 1 0 0
## 10699 2 0 0
## 10700 1 0 0
## 10701 1 0 0
## 10702 2 0 0
## 10703 2 0 0
## 10704 2 2 0
## 10705 2 0 0
## 10706 2 0 0
## 10707 2 0 0
## 10708 2 0 0
## 10709 2 0 0
## 10710 2 0 0
## 10711 2 0 0
## 10712 1 0 0
## 10713 2 0 0
## 10714 2 0 0
## 10715 1 0 0
## 10716 2 0 0
## 10717 2 0 0
## 10718 1 0 0
## 10719 2 0 0
## 10720 2 0 0
## 10721 2 0 0
## 10722 2 0 0
## 10723 2 1 0
## 10724 2 0 0
## 10725 2 0 0
## 10726 2 0 0
## 10727 2 0 0
## 10728 2 0 0
## 10729 2 0 0
## 10730 2 0 0
## 10731 2 0 0
## 10732 2 0 0
## 10733 2 0 0
## 10734 2 0 0
## 10735 1 0 0
## 10736 2 0 0
## 10737 2 0 0
## 10738 2 0 0
## 10739 2 2 0
## 10740 1 0 0
## 10741 1 0 0
## 10742 2 0 0
## 10743 2 0 0
## 10744 2 0 0
## 10745 2 0 0
## 10746 2 0 0
## 10747 2 0 0
## 10748 2 0 0
## 10749 2 0 0
## 10750 2 2 0
## 10751 2 0 0
## 10752 2 0 0
## 10753 2 0 0
## 10754 2 0 0
## 10755 2 0 0
## 10756 2 0 0
## 10757 2 0 0
## 10758 2 0 0
## 10759 2 0 0
## 10760 2 0 0
## 10761 1 0 0
## 10762 1 0 0
## 10763 1 0 0
## 10764 1 0 0
## 10765 2 0 0
## 10766 2 0 0
## 10767 2 0 0
## 10768 2 0 0
## 10769 2 0 0
## 10770 1 0 0
## 10771 2 0 0
## 10772 2 0 0
## 10773 2 0 0
## 10774 1 0 0
## 10775 2 0 0
## 10776 1 0 0
## 10777 2 0 0
## 10778 1 0 0
## 10779 2 0 0
## 10780 2 0 0
## 10781 2 0 0
## 10782 2 0 0
## 10783 2 0 0
## 10784 2 0 0
## 10785 2 0 0
## 10786 2 0 0
## 10787 2 0 0
## 10788 2 0 0
## 10789 2 0 0
## 10790 2 0 0
## 10791 2 0 0
## 10792 1 0 0
## 10793 3 1 0
## 10794 2 0 0
## 10795 2 0 0
## 10796 2 0 0
## 10797 2 0 0
## 10798 2 0 0
## 10799 2 0 0
## 10800 2 0 0
## 10801 2 0 0
## 10802 3 1 0
## 10803 2 0 0
## 10804 2 2 0
## 10805 2 0 0
## 10806 2 0 0
## 10807 2 0 0
## 10808 2 0 0
## 10809 2 0 0
## 10810 2 0 0
## 10811 2 0 0
## 10812 2 0 0
## 10813 2 0 0
## 10814 2 0 0
## 10815 2 0 0
## 10816 2 0 0
## 10817 2 0 0
## 10818 2 0 0
## 10819 1 0 0
## 10820 3 0 0
## 10821 2 0 0
## 10822 2 0 0
## 10823 2 0 0
## 10824 2 0 0
## 10825 2 0 0
## 10826 2 0 0
## 10827 2 0 0
## 10828 2 0 0
## 10829 2 0 0
## 10830 1 0 0
## 10831 2 0 0
## 10832 2 0 0
## 10833 2 0 0
## 10834 2 0 0
## 10835 2 0 0
## 10836 2 0 0
## 10837 2 0 0
## 10838 2 0 0
## 10839 2 0 0
## 10840 2 0 0
## 10841 2 0 0
## 10842 2 0 0
## 10843 2 1 0
## 10844 2 0 0
## 10845 2 0 0
## 10846 2 0 0
## 10847 2 0 0
## 10848 2 0 0
## 10849 2 0 0
## 10850 2 0 0
## 10851 2 0 0
## 10852 2 0 0
## 10853 2 0 0
## 10854 2 0 0
## 10855 2 0 0
## 10856 2 0 0
## 10857 2 0 0
## 10858 2 0 0
## 10859 2 0 0
## 10860 2 0 0
## 10861 2 0 0
## 10862 2 0 0
## 10863 2 0 0
## 10864 2 0 0
## 10865 2 0 0
## 10866 2 0 0
## 10867 2 0 0
## 10868 3 1 0
## 10869 2 0 0
## 10870 2 0 0
## 10871 2 1 0
## 10872 1 0 0
## 10873 2 0 0
## 10874 2 0 0
## 10875 1 0 0
## 10876 2 0 0
## 10877 2 0 0
## 10878 2 0 0
## 10879 2 0 0
## 10880 2 0 0
## 10881 2 0 0
## 10882 2 0 0
## 10883 2 0 0
## 10884 2 0 0
## 10885 2 0 0
## 10886 2 0 0
## 10887 2 0 0
## 10888 2 0 0
## 10889 2 0 0
## 10890 1 0 0
## 10891 1 0 0
## 10892 2 2 0
## 10893 2 0 0
## 10894 2 0 0
## 10895 2 0 0
## 10896 2 0 0
## 10897 2 0 0
## 10898 2 0 0
## 10899 2 0 0
## 10900 2 0 0
## 10901 1 0 0
## 10902 2 0 0
## 10903 2 0 0
## 10904 2 0 0
## 10905 2 1 0
## 10906 2 0 0
## 10907 2 0 0
## 10908 2 0 0
## 10909 1 0 0
## 10910 2 0 0
## 10911 2 0 0
## 10912 1 0 0
## 10913 2 1 0
## 10914 2 1 0
## 10915 2 0 0
## 10916 2 0 0
## 10917 2 0 0
## 10918 1 0 0
## 10919 2 0 0
## 10920 2 0 0
## 10921 1 0 0
## 10922 2 0 0
## 10923 2 0 0
## 10924 2 0 0
## 10925 2 0 0
## 10926 2 0 0
## 10927 2 0 0
## 10928 2 0 0
## 10929 1 0 0
## 10930 2 2 0
## 10931 2 0 0
## 10932 2 0 0
## 10933 2 0 0
## 10934 2 0 0
## 10935 2 0 0
## 10936 2 0 0
## 10937 2 0 0
## 10938 2 0 0
## 10939 2 0 0
## 10940 2 2 0
## 10941 2 0 0
## 10942 2 0 0
## 10943 2 0 0
## 10944 2 0 0
## 10945 2 0 0
## 10946 2 0 0
## 10947 2 0 0
## 10948 2 2 0
## 10949 2 0 0
## 10950 2 0 0
## 10951 2 0 0
## 10952 2 0 0
## 10953 2 0 0
## 10954 2 0 0
## 10955 1 0 0
## 10956 2 0 0
## 10957 2 0 0
## 10958 2 0 0
## 10959 2 0 0
## 10960 2 0 0
## 10961 2 0 0
## 10962 2 0 0
## 10963 2 0 0
## 10964 2 0 0
## 10965 2 0 0
## 10966 2 0 0
## 10967 2 2 0
## 10968 2 2 0
## 10969 2 0 0
## 10970 2 0 0
## 10971 2 0 0
## 10972 1 0 0
## 10973 2 0 0
## 10974 2 0 0
## 10975 2 0 0
## 10976 1 0 0
## 10977 2 0 0
## 10978 1 0 0
## 10979 2 0 0
## 10980 2 0 0
## 10981 2 0 0
## 10982 2 0 0
## 10983 2 0 0
## 10984 2 0 0
## 10985 2 0 0
## 10986 1 0 0
## 10987 2 0 0
## 10988 2 0 0
## 10989 2 0 0
## 10990 2 0 0
## 10991 2 0 0
## 10992 2 0 0
## 10993 2 0 0
## 10994 1 0 0
## 10995 2 0 0
## 10996 3 0 0
## 10997 2 0 0
## 10998 3 0 0
## 10999 3 0 0
## 11000 1 2 0
## 11001 2 0 0
## 11002 2 0 0
## 11003 2 0 0
## 11004 2 0 0
## 11005 2 0 0
## 11006 2 0 0
## 11007 2 0 0
## 11008 2 0 0
## 11009 2 0 0
## 11010 1 0 0
## 11011 2 0 0
## 11012 1 0 0
## 11013 1 0 0
## 11014 2 0 0
## 11015 2 0 0
## 11016 3 0 0
## 11017 2 0 0
## 11018 2 0 0
## 11019 2 0 0
## 11020 1 0 0
## 11021 1 0 0
## 11022 2 0 0
## 11023 2 0 0
## 11024 2 0 0
## 11025 2 0 0
## 11026 2 0 0
## 11027 2 0 0
## 11028 2 1 0
## 11029 2 0 0
## 11030 2 0 0
## 11031 2 0 0
## 11032 2 0 0
## 11033 2 0 0
## 11034 2 0 0
## 11035 2 0 0
## 11036 2 0 0
## 11037 3 0 0
## 11038 2 0 0
## 11039 2 0 0
## 11040 2 0 0
## 11041 2 0 0
## 11042 1 0 0
## 11043 2 0 0
## 11044 2 0 0
## 11045 2 0 0
## 11046 2 0 0
## 11047 2 0 0
## 11048 2 0 0
## 11049 2 1 0
## 11050 2 1 0
## 11051 2 1 0
## 11052 2 0 0
## 11053 2 0 0
## 11054 2 0 0
## 11055 2 0 0
## 11056 2 0 0
## 11057 2 0 0
## 11058 2 0 0
## 11059 2 0 0
## 11060 2 2 0
## 11061 2 0 0
## 11062 2 0 0
## 11063 2 0 0
## 11064 2 0 0
## 11065 2 0 0
## 11066 2 0 0
## 11067 2 2 0
## 11068 2 0 0
## 11069 2 2 0
## 11070 2 2 0
## 11071 2 0 0
## 11072 2 0 0
## 11073 2 0 0
## 11074 2 0 0
## 11075 2 0 0
## 11076 2 0 0
## 11077 2 0 0
## 11078 2 0 0
## 11079 2 0 0
## 11080 2 0 0
## 11081 1 0 0
## 11082 2 0 0
## 11083 2 0 0
## 11084 2 0 0
## 11085 2 1 0
## 11086 2 0 0
## 11087 2 0 0
## 11088 2 0 0
## 11089 2 0 0
## 11090 2 0 0
## 11091 2 0 0
## 11092 2 0 0
## 11093 2 0 0
## 11094 2 0 0
## 11095 1 0 0
## 11096 1 0 0
## 11097 1 0 0
## 11098 2 0 0
## 11099 2 0 0
## 11100 2 2 0
## 11101 1 0 0
## 11102 2 0 0
## 11103 2 0 0
## 11104 2 0 0
## 11105 2 0 0
## 11106 2 0 0
## 11107 1 0 0
## 11108 2 0 0
## 11109 2 0 0
## 11110 2 0 0
## 11111 2 0 0
## 11112 2 0 0
## 11113 2 0 0
## 11114 2 0 0
## 11115 2 0 0
## 11116 2 0 0
## 11117 2 0 0
## 11118 2 0 0
## 11119 2 0 0
## 11120 2 0 0
## 11121 1 0 0
## 11122 2 0 0
## 11123 2 0 0
## 11124 2 0 0
## 11125 2 0 0
## 11126 2 0 0
## 11127 2 0 0
## 11128 2 0 0
## 11129 2 0 0
## 11130 2 0 0
## 11131 2 0 0
## 11132 2 0 0
## 11133 2 0 0
## 11134 2 0 0
## 11135 2 2 0
## 11136 2 0 0
## 11137 2 0 0
## 11138 2 0 0
## 11139 2 0 0
## 11140 2 0 0
## 11141 2 0 0
## 11142 2 0 0
## 11143 2 0 0
## 11144 1 0 0
## 11145 1 0 0
## 11146 2 0 0
## 11147 2 0 0
## 11148 2 0 0
## 11149 2 0 0
## 11150 2 0 0
## 11151 2 0 0
## 11152 2 0 0
## 11153 2 0 0
## 11154 2 0 0
## 11155 2 0 0
## 11156 2 0 0
## 11157 2 0 0
## 11158 2 0 0
## 11159 2 2 0
## 11160 2 0 0
## 11161 1 0 0
## 11162 1 0 0
## 11163 2 0 0
## 11164 1 0 0
## 11165 2 0 0
## 11166 1 0 0
## 11167 2 0 0
## 11168 2 0 0
## 11169 2 0 0
## 11170 2 0 0
## 11171 2 0 0
## 11172 2 0 0
## 11173 2 0 0
## 11174 2 0 0
## 11175 2 0 0
## 11176 2 0 0
## 11177 2 0 0
## 11178 1 0 0
## 11179 2 0 0
## 11180 2 0 0
## 11181 2 0 0
## 11182 2 0 0
## 11183 2 0 0
## 11184 1 0 0
## 11185 2 0 0
## 11186 2 0 0
## 11187 1 0 0
## 11188 2 0 0
## 11189 2 0 0
## 11190 2 0 0
## 11191 2 0 0
## 11192 1 0 0
## 11193 2 0 0
## 11194 2 0 0
## 11195 2 0 0
## 11196 2 0 0
## 11197 2 0 0
## 11198 1 0 0
## 11199 2 0 0
## 11200 2 0 0
## 11201 2 0 0
## 11202 1 0 0
## 11203 1 0 0
## 11204 1 0 0
## 11205 1 0 0
## 11206 2 0 0
## 11207 2 0 0
## 11208 1 0 0
## 11209 2 0 0
## 11210 1 0 0
## 11211 2 0 0
## 11212 2 2 0
## 11213 2 0 0
## 11214 2 2 0
## 11215 1 0 0
## 11216 2 2 0
## 11217 2 0 0
## 11218 2 0 0
## 11219 1 0 0
## 11220 2 0 0
## 11221 1 0 0
## 11222 2 0 0
## 11223 2 0 0
## 11224 2 0 0
## 11225 2 0 0
## 11226 2 0 0
## 11227 2 0 0
## 11228 2 0 0
## 11229 2 0 0
## 11230 2 0 0
## 11231 2 0 0
## 11232 2 0 0
## 11233 2 0 0
## 11234 2 0 0
## 11235 2 0 0
## 11236 2 0 0
## 11237 2 0 0
## 11238 2 0 0
## 11239 2 0 0
## 11240 2 0 0
## 11241 2 0 0
## 11242 2 0 0
## 11243 2 0 0
## 11244 2 0 0
## 11245 2 0 0
## 11246 2 0 0
## 11247 2 0 0
## 11248 2 0 0
## 11249 2 0 0
## 11250 2 0 0
## 11251 2 0 0
## 11252 1 0 0
## 11253 2 0 0
## 11254 2 0 0
## 11255 2 0 0
## 11256 2 0 0
## 11257 2 0 0
## 11258 2 0 0
## 11259 2 2 0
## 11260 2 0 0
## 11261 2 2 0
## 11262 2 0 0
## 11263 2 2 0
## 11264 2 0 0
## 11265 2 0 0
## 11266 2 0 0
## 11267 2 0 0
## 11268 2 0 0
## 11269 2 0 0
## 11270 2 2 0
## 11271 2 0 0
## 11272 2 2 0
## 11273 2 0 0
## 11274 2 0 0
## 11275 2 0 0
## 11276 2 0 0
## 11277 2 0 0
## 11278 2 0 0
## 11279 2 0 0
## 11280 2 0 0
## 11281 2 2 0
## 11282 2 0 0
## 11283 2 0 0
## 11284 2 0 0
## 11285 1 0 0
## 11286 1 0 0
## 11287 1 0 0
## 11288 1 0 0
## 11289 2 0 0
## 11290 2 0 0
## 11291 2 0 0
## 11292 3 1 0
## 11293 2 0 0
## 11294 2 0 0
## 11295 2 0 0
## 11296 2 0 0
## 11297 2 0 0
## 11298 1 0 0
## 11299 2 0 0
## 11300 2 0 0
## 11301 1 0 0
## 11302 2 0 0
## 11303 2 2 0
## 11304 2 0 0
## 11305 2 0 0
## 11306 2 0 0
## 11307 2 0 0
## 11308 2 0 0
## 11309 1 0 0
## 11310 1 0 0
## 11311 1 0 0
## 11312 2 0 0
## 11313 2 2 0
## 11314 2 2 0
## 11315 2 0 0
## 11316 2 0 0
## 11317 1 0 0
## 11318 2 2 0
## 11319 2 0 0
## 11320 1 0 0
## 11321 2 0 0
## 11322 2 0 0
## 11323 2 0 0
## 11324 2 0 0
## 11325 1 0 0
## 11326 1 0 0
## 11327 2 0 0
## 11328 2 0 0
## 11329 2 0 0
## 11330 2 0 0
## 11331 1 0 0
## 11332 2 0 0
## 11333 1 0 0
## 11334 2 0 0
## 11335 2 0 0
## 11336 2 0 0
## 11337 2 0 0
## 11338 2 0 0
## 11339 2 0 0
## 11340 2 0 0
## 11341 2 0 0
## 11342 2 0 0
## 11343 2 0 0
## 11344 1 0 0
## 11345 2 0 0
## 11346 2 0 0
## 11347 2 0 0
## 11348 1 0 0
## 11349 1 0 0
## 11350 2 0 0
## 11351 1 0 0
## 11352 1 0 0
## 11353 1 0 0
## 11354 1 0 0
## 11355 1 0 0
## 11356 2 0 0
## 11357 2 0 0
## 11358 2 0 0
## 11359 2 0 0
## 11360 2 0 0
## 11361 2 0 0
## 11362 2 0 0
## 11363 2 0 0
## 11364 2 0 0
## 11365 2 0 0
## 11366 2 0 0
## 11367 2 2 0
## 11368 2 0 0
## 11369 2 2 0
## 11370 2 2 0
## 11371 2 0 0
## 11372 2 0 0
## 11373 2 0 0
## 11374 2 0 0
## 11375 2 0 0
## 11376 2 0 0
## 11377 2 0 0
## 11378 1 0 0
## 11379 2 0 0
## 11380 2 0 0
## 11381 2 0 0
## 11382 2 0 0
## 11383 2 0 0
## 11384 1 0 0
## 11385 2 0 0
## 11386 2 0 0
## 11387 2 0 0
## 11388 2 0 0
## 11389 2 0 0
## 11390 1 0 0
## 11391 2 0 0
## 11392 2 0 0
## 11393 2 0 0
## 11394 2 0 0
## 11395 2 0 0
## 11396 2 0 0
## 11397 2 0 0
## 11398 2 0 0
## 11399 2 0 0
## 11400 2 0 0
## 11401 2 0 0
## 11402 2 0 0
## 11403 2 0 0
## 11404 2 0 0
## 11405 2 0 0
## 11406 2 0 0
## 11407 2 0 0
## 11408 2 1 0
## 11409 2 0 0
## 11410 2 0 0
## 11411 2 0 0
## 11412 2 0 0
## 11413 1 0 0
## 11414 2 0 0
## 11415 1 0 0
## 11416 1 0 0
## 11417 2 0 0
## 11418 1 0 0
## 11419 1 0 0
## 11420 2 0 0
## 11421 2 0 0
## 11422 2 0 0
## 11423 2 0 0
## 11424 2 0 0
## 11425 2 0 0
## 11426 2 0 0
## 11427 2 0 0
## 11428 2 0 0
## 11429 1 0 0
## 11430 1 0 0
## 11431 1 0 0
## 11432 1 0 0
## 11433 1 0 0
## 11434 2 2 0
## 11435 2 0 0
## 11436 2 0 0
## 11437 2 0 0
## 11438 2 0 0
## 11439 2 0 0
## 11440 2 0 0
## 11441 2 0 0
## 11442 2 0 0
## 11443 1 0 0
## 11444 2 0 0
## 11445 2 0 0
## 11446 2 0 0
## 11447 2 0 0
## 11448 2 0 0
## 11449 2 0 0
## 11450 2 0 0
## 11451 2 0 0
## 11452 2 0 0
## 11453 2 0 0
## 11454 1 0 0
## 11455 2 0 0
## 11456 2 0 0
## 11457 2 0 0
## 11458 2 0 0
## 11459 2 0 0
## 11460 2 0 0
## 11461 2 0 0
## 11462 2 0 0
## 11463 2 0 0
## 11464 2 0 0
## 11465 2 0 0
## 11466 2 0 0
## 11467 2 0 0
## 11468 2 0 0
## 11469 1 0 0
## 11470 1 0 0
## 11471 2 0 0
## 11472 2 0 0
## 11473 2 0 0
## 11474 2 0 0
## 11475 2 0 0
## 11476 2 0 0
## 11477 2 0 0
## 11478 2 0 0
## 11479 2 0 0
## 11480 2 0 0
## 11481 2 0 0
## 11482 1 0 0
## 11483 2 0 0
## 11484 2 0 0
## 11485 2 0 0
## 11486 2 0 0
## 11487 1 0 0
## 11488 2 0 0
## 11489 1 0 0
## 11490 2 0 0
## 11491 1 0 0
## 11492 2 0 0
## 11493 2 0 0
## 11494 2 0 0
## 11495 2 0 0
## 11496 1 0 0
## 11497 2 0 0
## 11498 2 0 0
## 11499 2 0 0
## 11500 1 0 0
## 11501 2 0 0
## 11502 2 0 0
## 11503 2 0 0
## 11504 2 0 0
## 11505 2 0 0
## 11506 1 0 0
## 11507 2 0 0
## 11508 2 0 0
## 11509 2 0 0
## 11510 2 2 0
## 11511 2 0 0
## 11512 1 0 0
## 11513 1 0 0
## 11514 1 0 0
## 11515 2 2 0
## 11516 2 0 0
## 11517 2 0 0
## 11518 2 0 0
## 11519 2 0 0
## 11520 2 0 0
## 11521 2 0 0
## 11522 2 0 0
## 11523 2 0 0
## 11524 2 0 0
## 11525 2 0 0
## 11526 2 0 0
## 11527 3 1 0
## 11528 2 0 0
## 11529 2 0 0
## 11530 2 2 0
## 11531 2 0 0
## 11532 2 0 0
## 11533 2 0 0
## 11534 1 0 0
## 11535 2 0 0
## 11536 2 0 0
## 11537 2 0 0
## 11538 2 0 0
## 11539 2 0 0
## 11540 2 2 0
## 11541 1 0 0
## 11542 1 0 0
## 11543 2 0 0
## 11544 1 0 0
## 11545 1 0 0
## 11546 1 0 0
## 11547 1 0 0
## 11548 1 0 0
## 11549 1 0 0
## 11550 1 0 0
## 11551 1 0 0
## 11552 1 0 0
## 11553 1 0 0
## 11554 1 0 0
## 11555 1 0 0
## 11556 1 0 0
## 11557 2 0 0
## 11558 2 0 0
## 11559 1 0 0
## 11560 1 1 0
## 11561 2 0 0
## 11562 1 0 0
## 11563 2 0 0
## 11564 2 0 0
## 11565 2 0 0
## 11566 2 0 0
## 11567 2 0 0
## 11568 2 0 0
## 11569 2 0 0
## 11570 2 0 0
## 11571 2 0 0
## 11572 2 0 0
## 11573 1 0 0
## 11574 2 2 0
## 11575 2 0 0
## 11576 2 0 0
## 11577 2 0 0
## 11578 2 0 0
## 11579 2 0 0
## 11580 2 0 0
## 11581 2 0 0
## 11582 1 0 0
## 11583 1 0 0
## 11584 2 1 0
## 11585 2 0 0
## 11586 2 0 0
## 11587 2 0 0
## 11588 2 0 0
## 11589 2 0 0
## 11590 2 0 0
## 11591 2 0 0
## 11592 2 0 0
## 11593 2 0 0
## 11594 2 0 0
## 11595 1 0 0
## 11596 1 0 0
## 11597 3 1 0
## 11598 2 0 0
## 11599 2 0 0
## 11600 1 0 0
## 11601 1 0 0
## 11602 2 0 0
## 11603 2 2 0
## 11604 2 1 0
## 11605 2 0 0
## 11606 2 2 0
## 11607 2 0 0
## 11608 2 0 0
## 11609 3 0 0
## 11610 2 0 0
## 11611 3 1 0
## 11612 3 1 0
## 11613 2 0 0
## 11614 2 0 0
## 11615 2 0 0
## 11616 2 2 0
## 11617 3 1 0
## 11618 2 0 0
## 11619 2 0 0
## 11620 2 0 0
## 11621 2 2 0
## 11622 2 0 0
## 11623 2 2 0
## 11624 2 2 0
## 11625 2 0 0
## 11626 2 0 0
## 11627 2 0 0
## 11628 2 0 0
## 11629 2 2 0
## 11630 2 0 0
## 11631 2 0 0
## 11632 2 0 0
## 11633 2 0 0
## 11634 3 1 0
## 11635 2 0 0
## 11636 2 2 0
## 11637 2 0 0
## 11638 2 0 0
## 11639 2 0 0
## 11640 2 0 0
## 11641 2 0 0
## 11642 2 0 0
## 11643 2 2 0
## 11644 1 0 0
## 11645 2 0 0
## 11646 2 0 0
## 11647 2 0 0
## 11648 2 0 0
## 11649 1 0 0
## 11650 2 0 0
## 11651 2 2 0
## 11652 2 0 0
## 11653 2 0 0
## 11654 2 0 0
## 11655 2 0 0
## 11656 2 0 0
## 11657 2 0 0
## 11658 2 0 0
## 11659 2 0 0
## 11660 2 0 0
## 11661 2 0 0
## 11662 2 0 0
## 11663 2 0 0
## 11664 2 0 0
## 11665 2 2 0
## 11666 2 1 0
## 11667 2 0 0
## 11668 2 0 0
## 11669 2 0 0
## 11670 2 0 0
## 11671 2 0 0
## 11672 2 0 0
## 11673 2 0 0
## 11674 2 0 0
## 11675 2 0 0
## 11676 2 0 0
## 11677 2 0 0
## 11678 2 0 0
## 11679 2 0 0
## 11680 2 0 0
## 11681 2 0 0
## 11682 2 0 0
## 11683 2 0 0
## 11684 2 2 0
## 11685 2 0 0
## 11686 2 2 0
## 11687 2 0 0
## 11688 2 0 0
## 11689 2 0 0
## 11690 2 0 0
## 11691 2 0 0
## 11692 2 1 0
## 11693 2 1 0
## 11694 2 2 0
## 11695 2 0 0
## 11696 3 0 0
## 11697 1 0 0
## 11698 2 0 0
## 11699 2 0 0
## 11700 2 0 0
## 11701 2 0 0
## 11702 2 1 0
## 11703 3 1 0
## 11704 2 0 0
## 11705 2 0 0
## 11706 2 0 0
## 11707 2 0 0
## 11708 2 0 0
## 11709 2 0 0
## 11710 2 0 0
## 11711 2 0 0
## 11712 2 0 0
## 11713 2 0 0
## 11714 2 0 0
## 11715 2 0 0
## 11716 2 0 0
## 11717 2 0 0
## 11718 2 0 0
## 11719 2 0 0
## 11720 2 0 0
## 11721 2 0 0
## 11722 2 0 0
## 11723 2 0 0
## 11724 2 2 0
## 11725 1 0 0
## 11726 3 0 0
## 11727 2 0 0
## 11728 2 0 0
## 11729 2 0 0
## 11730 2 0 0
## 11731 2 0 0
## 11732 2 0 0
## 11733 2 2 0
## 11734 2 0 0
## 11735 2 0 0
## 11736 2 1 0
## 11737 2 0 0
## 11738 2 0 0
## 11739 2 0 0
## 11740 3 1 0
## 11741 2 0 0
## 11742 2 0 0
## 11743 2 2 0
## 11744 2 0 0
## 11745 2 0 0
## 11746 2 0 0
## 11747 2 1 0
## 11748 1 0 0
## 11749 2 1 0
## 11750 2 0 0
## 11751 2 0 0
## 11752 2 0 0
## 11753 2 0 0
## 11754 2 0 0
## 11755 2 0 0
## 11756 2 0 0
## 11757 2 2 0
## 11758 2 0 0
## 11759 2 0 0
## 11760 2 0 0
## 11761 2 2 0
## 11762 2 0 0
## 11763 2 0 0
## 11764 2 0 0
## 11765 2 0 0
## 11766 2 0 0
## 11767 2 0 0
## 11768 2 0 0
## 11769 2 0 0
## 11770 2 0 0
## 11771 2 2 0
## 11772 2 0 0
## 11773 2 0 0
## 11774 2 0 0
## 11775 2 0 0
## 11776 2 0 0
## 11777 2 0 0
## 11778 2 0 0
## 11779 2 0 0
## 11780 2 0 0
## 11781 2 0 0
## 11782 2 0 0
## 11783 2 0 0
## 11784 2 0 0
## 11785 2 2 0
## 11786 2 0 0
## 11787 2 0 0
## 11788 1 0 0
## 11789 2 0 0
## 11790 2 0 0
## 11791 2 0 0
## 11792 3 1 0
## 11793 2 0 0
## 11794 2 0 0
## 11795 2 1 0
## 11796 2 0 0
## 11797 2 0 0
## 11798 2 0 0
## 11799 2 1 0
## 11800 2 0 0
## 11801 2 0 0
## 11802 2 0 0
## 11803 2 0 0
## 11804 1 1 0
## 11805 2 0 0
## 11806 1 0 0
## 11807 1 1 0
## 11808 2 1 0
## 11809 1 1 0
## 11810 2 0 0
## 11811 2 2 0
## 11812 2 0 0
## 11813 2 0 0
## 11814 2 1 0
## 11815 2 0 0
## 11816 2 0 0
## 11817 2 0 0
## 11818 2 0 0
## 11819 2 0 0
## 11820 2 0 0
## 11821 3 1 0
## 11822 4 0 0
## 11823 2 0 0
## 11824 2 0 0
## 11825 3 1 0
## 11826 2 0 0
## 11827 2 0 0
## 11828 3 0 0
## 11829 2 0 0
## 11830 2 0 0
## 11831 2 0 0
## 11832 2 0 0
## 11833 2 0 0
## 11834 2 0 0
## 11835 2 1 0
## 11836 2 0 0
## 11837 2 0 0
## 11838 2 0 0
## 11839 2 2 0
## 11840 2 0 0
## 11841 2 0 0
## 11842 3 0 0
## 11843 2 0 0
## 11844 2 0 0
## 11845 2 0 0
## 11846 2 0 0
## 11847 1 0 0
## 11848 2 0 0
## 11849 2 0 0
## 11850 2 0 0
## 11851 2 0 0
## 11852 2 0 0
## 11853 2 0 0
## 11854 2 0 0
## 11855 2 0 0
## 11856 2 0 0
## 11857 2 0 0
## 11858 2 0 0
## 11859 2 0 0
## 11860 2 0 0
## 11861 2 0 0
## 11862 2 1 0
## 11863 2 1 0
## 11864 2 0 0
## 11865 2 0 0
## 11866 2 0 0
## 11867 2 0 0
## 11868 3 1 0
## 11869 2 0 0
## 11870 2 0 0
## 11871 2 0 0
## 11872 2 0 0
## 11873 2 0 0
## 11874 2 0 0
## 11875 2 0 0
## 11876 1 0 0
## 11877 2 0 0
## 11878 2 0 0
## 11879 2 0 0
## 11880 2 0 0
## 11881 2 0 0
## 11882 1 0 0
## 11883 1 0 0
## 11884 2 0 0
## 11885 1 0 0
## 11886 2 0 0
## 11887 2 0 0
## 11888 2 0 0
## 11889 2 0 0
## 11890 1 0 0
## 11891 2 0 0
## 11892 2 0 0
## 11893 2 2 0
## 11894 2 0 0
## 11895 2 0 0
## 11896 1 0 0
## 11897 2 0 0
## 11898 2 0 0
## 11899 2 0 0
## 11900 2 0 0
## 11901 2 0 0
## 11902 1 0 0
## 11903 2 0 0
## 11904 2 0 0
## 11905 2 0 0
## 11906 2 0 0
## 11907 1 0 0
## 11908 3 0 0
## 11909 2 0 0
## 11910 2 2 0
## 11911 2 0 0
## 11912 2 0 0
## 11913 2 0 0
## 11914 2 0 0
## 11915 3 0 0
## 11916 3 0 0
## 11917 2 0 0
## 11918 3 0 0
## 11919 3 0 0
## 11920 2 0 0
## 11921 2 0 0
## 11922 2 0 0
## 11923 2 0 0
## 11924 2 0 0
## 11925 1 0 0
## 11926 2 0 0
## 11927 2 0 0
## 11928 1 0 0
## 11929 1 0 0
## 11930 2 0 0
## 11931 2 0 0
## 11932 2 0 0
## 11933 2 0 0
## 11934 1 0 0
## 11935 2 0 0
## 11936 2 0 0
## 11937 2 0 0
## 11938 2 0 0
## 11939 2 0 0
## 11940 2 0 0
## 11941 2 0 0
## 11942 2 0 0
## 11943 2 0 0
## 11944 2 0 0
## 11945 2 2 0
## 11946 2 2 0
## 11947 1 0 0
## 11948 2 0 0
## 11949 2 2 0
## 11950 2 0 0
## 11951 2 0 0
## 11952 2 0 0
## 11953 2 0 0
## 11954 2 0 0
## 11955 2 0 0
## 11956 2 1 0
## 11957 2 1 0
## 11958 2 0 0
## 11959 2 0 0
## 11960 2 0 0
## 11961 2 0 0
## 11962 2 2 0
## 11963 2 0 0
## 11964 2 2 0
## 11965 2 1 0
## 11966 2 0 0
## 11967 2 2 0
## 11968 2 0 0
## 11969 2 0 0
## 11970 2 0 0
## 11971 2 0 0
## 11972 2 0 0
## 11973 2 0 0
## 11974 2 0 0
## 11975 2 0 0
## 11976 2 0 0
## 11977 2 0 0
## 11978 2 0 0
## 11979 2 0 0
## 11980 2 0 0
## 11981 2 2 0
## 11982 2 0 0
## 11983 2 0 0
## 11984 2 0 0
## 11985 2 2 0
## 11986 2 2 0
## 11987 2 0 0
## 11988 2 0 0
## 11989 2 0 0
## 11990 2 0 0
## 11991 2 0 0
## 11992 2 0 0
## 11993 2 2 0
## 11994 2 2 0
## 11995 2 0 0
## 11996 2 0 0
## 11997 2 0 0
## 11998 2 0 0
## 11999 2 0 0
## 12000 2 0 0
## 12001 2 0 0
## 12002 2 0 0
## 12003 1 0 0
## 12004 1 0 0
## 12005 2 0 0
## 12006 2 0 0
## 12007 2 0 0
## 12008 2 0 0
## 12009 2 0 0
## 12010 2 0 0
## 12011 2 0 0
## 12012 2 0 0
## 12013 2 0 0
## 12014 2 2 0
## 12015 2 0 0
## 12016 2 0 0
## 12017 2 2 0
## 12018 2 0 0
## 12019 2 2 0
## 12020 2 0 0
## 12021 2 0 0
## 12022 2 0 0
## 12023 2 2 0
## 12024 2 0 0
## 12025 2 0 0
## 12026 2 0 0
## 12027 2 0 0
## 12028 2 0 0
## 12029 2 0 0
## 12030 2 0 0
## 12031 2 0 0
## 12032 2 1 0
## 12033 2 0 0
## 12034 2 0 0
## 12035 2 0 0
## 12036 2 0 0
## 12037 2 0 0
## 12038 2 0 0
## 12039 2 0 0
## 12040 2 0 0
## 12041 2 0 0
## 12042 2 0 0
## 12043 2 2 0
## 12044 2 0 0
## 12045 2 0 0
## 12046 2 0 0
## 12047 2 0 0
## 12048 2 0 0
## 12049 2 0 0
## 12050 2 0 0
## 12051 2 0 0
## 12052 2 0 0
## 12053 2 0 0
## 12054 2 0 0
## 12055 2 0 0
## 12056 2 0 0
## 12057 2 2 0
## 12058 2 0 0
## 12059 2 0 0
## 12060 2 2 0
## 12061 2 0 0
## 12062 2 2 0
## 12063 2 2 0
## 12064 2 1 0
## 12065 2 0 0
## 12066 2 0 0
## 12067 2 0 0
## 12068 2 0 0
## 12069 2 2 0
## 12070 2 0 0
## 12071 2 0 0
## 12072 2 0 0
## 12073 2 0 0
## 12074 2 0 0
## 12075 2 2 0
## 12076 2 0 0
## 12077 1 0 0
## 12078 1 0 0
## 12079 2 0 0
## 12080 2 0 0
## 12081 2 0 0
## 12082 2 0 0
## 12083 2 0 0
## 12084 2 0 0
## 12085 2 0 0
## 12086 2 0 0
## 12087 2 0 0
## 12088 2 0 0
## 12089 2 0 0
## 12090 2 0 0
## 12091 2 0 0
## 12092 2 0 0
## 12093 2 0 0
## 12094 2 0 0
## 12095 2 0 0
## 12096 2 0 0
## 12097 2 0 0
## 12098 2 0 0
## 12099 2 0 0
## 12100 2 0 0
## 12101 2 0 0
## 12102 2 0 0
## 12103 2 0 0
## 12104 2 0 0
## 12105 2 0 0
## 12106 2 0 0
## 12107 2 0 0
## 12108 2 0 0
## 12109 2 0 0
## 12110 2 0 0
## 12111 2 0 0
## 12112 2 0 0
## 12113 2 0 0
## 12114 2 0 0
## 12115 2 0 0
## 12116 2 0 0
## 12117 2 0 0
## 12118 2 0 0
## 12119 2 0 0
## 12120 2 0 0
## 12121 2 0 0
## 12122 1 0 0
## 12123 2 0 0
## 12124 2 0 0
## 12125 2 0 0
## 12126 2 0 0
## 12127 2 2 0
## 12128 2 0 0
## 12129 2 0 0
## 12130 1 0 0
## 12131 1 0 0
## 12132 2 0 0
## 12133 2 0 0
## 12134 2 0 0
## 12135 1 0 0
## 12136 2 0 0
## 12137 2 0 0
## 12138 1 0 0
## 12139 1 0 0
## 12140 2 0 0
## 12141 2 0 0
## 12142 1 0 0
## 12143 1 0 0
## 12144 1 0 0
## 12145 2 0 0
## 12146 1 0 0
## 12147 1 0 0
## 12148 2 0 0
## 12149 2 0 0
## 12150 2 0 0
## 12151 2 0 0
## 12152 2 0 0
## 12153 1 0 0
## 12154 2 0 0
## 12155 2 0 0
## 12156 1 0 0
## 12157 2 0 0
## 12158 2 0 0
## 12159 2 0 0
## 12160 2 0 0
## 12161 2 0 0
## 12162 2 0 0
## 12163 2 0 0
## 12164 2 0 0
## 12165 2 0 0
## 12166 2 0 0
## 12167 2 0 0
## 12168 2 0 0
## 12169 2 0 0
## 12170 1 0 0
## 12171 2 0 0
## 12172 2 0 0
## 12173 1 0 0
## 12174 2 0 0
## 12175 2 0 0
## 12176 1 0 0
## 12177 2 0 0
## 12178 2 0 0
## 12179 2 0 0
## 12180 2 0 0
## 12181 2 0 0
## 12182 2 0 0
## 12183 2 0 0
## 12184 2 0 0
## 12185 2 0 0
## 12186 3 0 0
## 12187 2 0 0
## 12188 2 0 0
## 12189 2 1 0
## 12190 2 2 0
## 12191 2 0 0
## 12192 2 2 0
## 12193 2 2 0
## 12194 2 0 0
## 12195 2 0 0
## 12196 2 0 0
## 12197 1 0 0
## 12198 2 0 0
## 12199 2 2 0
## 12200 2 0 0
## 12201 2 0 0
## 12202 2 0 0
## 12203 2 0 0
## 12204 1 0 0
## 12205 1 0 0
## 12206 1 0 0
## 12207 1 0 0
## 12208 2 0 0
## 12209 2 0 0
## 12210 2 2 0
## 12211 2 0 0
## 12212 2 2 0
## 12213 2 0 0
## 12214 1 0 0
## 12215 2 0 0
## 12216 2 0 0
## 12217 2 0 0
## 12218 1 0 0
## 12219 2 0 0
## 12220 1 0 0
## 12221 2 2 0
## 12222 2 0 0
## 12223 2 0 0
## 12224 2 0 0
## 12225 2 0 0
## 12226 2 0 0
## 12227 2 0 0
## 12228 2 0 0
## 12229 2 0 0
## 12230 2 0 0
## 12231 2 0 0
## 12232 2 0 0
## 12233 2 0 0
## 12234 2 0 0
## 12235 1 0 0
## 12236 2 0 0
## 12237 2 0 0
## 12238 2 0 0
## 12239 2 0 0
## 12240 3 1 0
## 12241 2 2 0
## 12242 2 2 0
## 12243 2 0 0
## 12244 2 0 0
## 12245 2 2 0
## 12246 2 2 0
## 12247 2 2 0
## 12248 1 0 0
## 12249 1 0 0
## 12250 1 0 0
## 12251 1 0 0
## 12252 2 0 0
## 12253 1 0 0
## 12254 1 0 0
## 12255 2 0 0
## 12256 2 0 0
## 12257 3 1 0
## 12258 2 0 0
## 12259 2 0 0
## 12260 1 0 0
## 12261 2 0 0
## 12262 2 0 0
## 12263 2 2 0
## 12264 2 0 0
## 12265 2 0 0
## 12266 2 0 0
## 12267 2 0 0
## 12268 2 0 0
## 12269 2 0 0
## 12270 2 0 0
## 12271 2 0 0
## 12272 2 0 0
## 12273 2 0 0
## 12274 2 0 0
## 12275 2 2 0
## 12276 2 0 0
## 12277 2 0 0
## 12278 2 0 0
## 12279 2 0 0
## 12280 2 0 0
## 12281 2 0 0
## 12282 2 0 0
## 12283 2 0 0
## 12284 2 0 0
## 12285 2 0 0
## 12286 2 0 0
## 12287 2 0 0
## 12288 2 0 0
## 12289 2 0 0
## 12290 2 0 0
## 12291 2 2 0
## 12292 2 0 0
## 12293 2 0 0
## 12294 2 0 0
## 12295 2 0 0
## 12296 2 0 0
## 12297 2 0 0
## 12298 2 0 0
## 12299 2 0 0
## 12300 2 0 0
## 12301 1 0 0
## 12302 2 0 0
## 12303 1 0 0
## 12304 2 0 0
## 12305 2 0 0
## 12306 2 2 0
## 12307 2 0 0
## 12308 2 0 0
## 12309 2 0 0
## 12310 2 0 0
## 12311 2 0 0
## 12312 2 0 0
## 12313 1 0 0
## 12314 2 0 0
## 12315 2 0 0
## 12316 2 0 0
## 12317 2 0 0
## 12318 2 0 0
## 12319 2 0 0
## 12320 2 0 0
## 12321 2 0 0
## 12322 2 0 0
## 12323 2 0 0
## 12324 2 0 0
## 12325 2 0 0
## 12326 2 2 0
## 12327 2 2 0
## 12328 2 0 0
## 12329 2 0 0
## 12330 2 2 0
## 12331 2 0 0
## 12332 2 2 0
## 12333 2 1 0
## 12334 2 0 0
## 12335 2 0 0
## 12336 2 0 0
## 12337 2 0 0
## 12338 2 0 0
## 12339 2 0 0
## 12340 2 2 0
## 12341 2 2 0
## 12342 2 0 0
## 12343 1 0 0
## 12344 2 0 0
## 12345 2 0 0
## 12346 2 0 0
## 12347 2 0 0
## 12348 2 0 0
## 12349 2 0 0
## 12350 2 0 0
## 12351 2 0 0
## 12352 2 2 0
## 12353 2 0 0
## 12354 2 0 0
## 12355 4 0 0
## 12356 2 2 0
## 12357 2 0 0
## 12358 2 0 0
## 12359 2 0 0
## 12360 2 0 0
## 12361 2 0 0
## 12362 2 0 0
## 12363 2 2 0
## 12364 2 0 0
## 12365 2 0 0
## 12366 2 0 0
## 12367 2 0 0
## 12368 2 2 0
## 12369 2 2 0
## 12370 2 0 0
## 12371 2 0 0
## 12372 2 0 0
## 12373 2 0 0
## 12374 2 0 0
## 12375 2 0 0
## 12376 2 0 0
## 12377 2 0 0
## 12378 2 0 0
## 12379 1 0 0
## 12380 2 0 0
## 12381 1 0 0
## 12382 1 0 0
## 12383 1 0 0
## 12384 1 0 0
## 12385 1 0 0
## 12386 1 0 0
## 12387 2 2 0
## 12388 3 0 0
## 12389 2 0 0
## 12390 2 0 0
## 12391 2 0 0
## 12392 2 0 0
## 12393 2 0 0
## 12394 2 0 0
## 12395 2 2 0
## 12396 2 0 0
## 12397 2 0 0
## 12398 2 0 0
## 12399 2 2 0
## 12400 2 2 0
## 12401 2 2 0
## 12402 2 2 0
## 12403 3 2 0
## 12404 2 0 0
## 12405 2 0 0
## 12406 2 0 0
## 12407 2 0 0
## 12408 2 0 0
## 12409 2 0 0
## 12410 2 0 0
## 12411 2 0 0
## 12412 2 0 0
## 12413 1 0 0
## 12414 2 0 0
## 12415 2 2 0
## 12416 2 0 0
## 12417 1 0 0
## 12418 2 1 0
## 12419 1 0 0
## 12420 2 0 0
## 12421 2 0 0
## 12422 1 0 0
## 12423 2 0 0
## 12424 2 0 0
## 12425 2 0 0
## 12426 2 0 0
## 12427 2 0 0
## 12428 2 0 0
## 12429 2 0 0
## 12430 2 0 0
## 12431 2 0 0
## 12432 2 0 0
## 12433 1 0 0
## 12434 2 0 0
## 12435 2 0 0
## 12436 2 0 0
## 12437 2 1 0
## 12438 2 0 0
## 12439 2 0 0
## 12440 2 0 0
## 12441 2 0 0
## 12442 2 0 0
## 12443 2 0 0
## 12444 2 0 0
## 12445 2 2 0
## 12446 2 0 0
## 12447 2 0 0
## 12448 2 0 0
## 12449 2 0 0
## 12450 2 0 0
## 12451 2 0 0
## 12452 2 0 0
## 12453 2 0 0
## 12454 2 2 0
## 12455 2 0 0
## 12456 2 0 0
## 12457 2 1 0
## 12458 2 1 0
## 12459 2 0 0
## 12460 2 2 0
## 12461 2 0 0
## 12462 2 0 0
## 12463 3 1 0
## 12464 1 0 0
## 12465 2 2 0
## 12466 2 0 0
## 12467 3 1 0
## 12468 1 0 0
## 12469 2 2 0
## 12470 2 2 0
## 12471 3 1 0
## 12472 2 0 0
## 12473 2 0 0
## 12474 2 0 0
## 12475 3 1 0
## 12476 2 0 0
## 12477 2 0 0
## 12478 2 0 0
## 12479 2 0 0
## 12480 2 0 0
## 12481 2 0 0
## 12482 2 2 0
## 12483 1 0 0
## 12484 2 1 0
## 12485 2 1 0
## 12486 3 0 0
## 12487 2 0 0
## 12488 2 0 0
## 12489 2 0 0
## 12490 2 0 0
## 12491 2 0 0
## 12492 2 0 0
## 12493 2 0 0
## 12494 2 0 0
## 12495 2 0 0
## 12496 1 0 0
## 12497 2 0 0
## 12498 2 0 0
## 12499 2 0 0
## 12500 2 0 0
## 12501 2 0 0
## 12502 2 0 0
## 12503 2 0 0
## 12504 2 0 0
## 12505 2 0 0
## 12506 3 1 0
## 12507 2 0 0
## 12508 2 0 0
## 12509 2 0 0
## 12510 2 0 0
## 12511 2 0 0
## 12512 2 0 0
## 12513 2 0 0
## 12514 2 0 0
## 12515 2 0 0
## 12516 2 0 0
## 12517 2 0 0
## 12518 2 0 0
## 12519 2 0 0
## 12520 2 0 0
## 12521 2 0 0
## 12522 1 0 0
## 12523 2 0 0
## 12524 2 1 0
## 12525 2 0 0
## 12526 2 1 0
## 12527 2 2 0
## 12528 2 2 0
## 12529 2 0 0
## 12530 2 0 0
## 12531 2 0 0
## 12532 2 2 0
## 12533 2 0 0
## 12534 2 0 0
## 12535 2 0 0
## 12536 1 0 0
## 12537 2 0 0
## 12538 1 0 0
## 12539 2 0 0
## 12540 2 0 0
## 12541 2 0 0
## 12542 3 1 0
## 12543 2 0 0
## 12544 2 0 0
## 12545 2 0 0
## 12546 2 0 0
## 12547 1 0 0
## 12548 2 0 0
## 12549 2 0 0
## 12550 2 0 0
## 12551 1 0 0
## 12552 2 0 0
## 12553 2 0 0
## 12554 2 0 0
## 12555 2 0 0
## 12556 2 0 0
## 12557 2 0 0
## 12558 2 0 0
## 12559 2 0 0
## 12560 2 0 0
## 12561 2 0 0
## 12562 2 0 0
## 12563 2 0 0
## 12564 2 0 0
## 12565 2 0 0
## 12566 2 0 0
## 12567 2 0 0
## 12568 1 0 0
## 12569 2 0 0
## 12570 2 0 0
## 12571 2 2 0
## 12572 2 0 0
## 12573 2 2 0
## 12574 2 0 0
## 12575 2 0 0
## 12576 2 0 0
## 12577 2 0 0
## 12578 2 0 0
## 12579 2 0 0
## 12580 2 0 0
## 12581 2 0 0
## 12582 2 0 0
## 12583 2 0 0
## 12584 2 0 0
## 12585 2 0 0
## 12586 2 0 0
## 12587 2 0 0
## 12588 2 0 0
## 12589 2 0 0
## 12590 2 0 0
## 12591 2 0 0
## 12592 2 0 0
## 12593 2 0 0
## 12594 2 0 0
## 12595 2 0 0
## 12596 2 0 0
## 12597 2 0 0
## 12598 2 0 0
## 12599 2 2 0
## 12600 2 0 0
## 12601 2 0 0
## 12602 2 0 0
## 12603 2 0 0
## 12604 2 0 0
## 12605 2 0 0
## 12606 2 0 0
## 12607 2 0 0
## 12608 2 0 0
## 12609 2 0 0
## 12610 2 0 0
## 12611 2 0 0
## 12612 2 0 0
## 12613 2 0 0
## 12614 2 2 0
## 12615 2 0 0
## 12616 2 0 0
## 12617 2 0 0
## 12618 2 0 0
## 12619 2 2 0
## 12620 2 0 0
## 12621 2 0 0
## 12622 1 0 0
## 12623 2 0 0
## 12624 2 1 0
## 12625 1 0 0
## 12626 1 0 0
## 12627 2 0 0
## 12628 2 0 0
## 12629 2 1 0
## 12630 2 2 0
## 12631 3 1 0
## 12632 1 0 0
## 12633 1 1 0
## 12634 2 0 0
## 12635 2 0 0
## 12636 1 0 0
## 12637 1 0 0
## 12638 2 1 0
## 12639 2 0 0
## 12640 2 1 0
## 12641 2 0 0
## 12642 1 0 0
## 12643 2 1 0
## 12644 2 0 0
## 12645 2 0 0
## 12646 2 0 0
## 12647 2 0 0
## 12648 2 0 0
## 12649 2 0 0
## 12650 2 0 0
## 12651 1 0 0
## 12652 2 0 0
## 12653 2 2 0
## 12654 2 0 0
## 12655 2 2 0
## 12656 2 2 0
## 12657 2 2 0
## 12658 2 0 0
## 12659 1 0 0
## 12660 2 0 0
## 12661 2 0 0
## 12662 2 0 0
## 12663 2 0 0
## 12664 2 0 0
## 12665 2 0 0
## 12666 2 0 0
## 12667 2 0 0
## 12668 2 0 0
## 12669 2 0 0
## 12670 2 0 0
## 12671 2 0 0
## 12672 2 0 0
## 12673 2 0 0
## 12674 1 0 0
## 12675 2 0 0
## 12676 2 0 0
## 12677 2 0 0
## 12678 2 0 0
## 12679 2 0 0
## 12680 2 0 0
## 12681 2 0 0
## 12682 2 0 0
## 12683 2 0 0
## 12684 2 0 0
## 12685 2 0 0
## 12686 2 0 0
## 12687 2 0 0
## 12688 2 0 0
## 12689 2 0 0
## 12690 2 0 0
## 12691 2 0 0
## 12692 2 0 0
## 12693 2 2 0
## 12694 2 0 0
## 12695 2 0 0
## 12696 2 0 0
## 12697 2 0 0
## 12698 2 0 0
## 12699 2 0 0
## 12700 2 0 0
## 12701 2 0 0
## 12702 2 0 0
## 12703 2 0 0
## 12704 1 0 0
## 12705 2 0 0
## 12706 2 0 0
## 12707 3 1 0
## 12708 2 0 0
## 12709 2 0 0
## 12710 2 0 0
## 12711 2 0 0
## 12712 2 0 0
## 12713 2 0 0
## 12714 2 0 0
## 12715 2 0 0
## 12716 2 0 0
## 12717 2 0 0
## 12718 2 0 0
## 12719 2 0 0
## 12720 2 0 0
## 12721 2 0 0
## 12722 2 0 0
## 12723 2 0 0
## 12724 2 0 0
## 12725 2 0 0
## 12726 2 2 0
## 12727 2 2 0
## 12728 2 0 0
## 12729 2 0 0
## 12730 2 2 0
## 12731 2 0 0
## 12732 2 1 0
## 12733 2 0 0
## 12734 2 0 0
## 12735 2 0 0
## 12736 2 0 0
## 12737 1 0 0
## 12738 2 0 0
## 12739 2 0 0
## 12740 2 0 0
## 12741 2 0 0
## 12742 2 0 0
## 12743 2 0 0
## 12744 2 0 0
## 12745 2 0 0
## 12746 2 0 0
## 12747 2 0 0
## 12748 2 0 0
## 12749 2 0 0
## 12750 2 0 0
## 12751 1 0 0
## 12752 2 0 0
## 12753 1 0 0
## 12754 2 0 0
## 12755 2 0 0
## 12756 2 0 0
## 12757 2 2 0
## 12758 2 0 0
## 12759 2 0 0
## 12760 1 0 0
## 12761 2 0 0
## 12762 2 0 0
## 12763 2 0 0
## 12764 2 0 0
## 12765 1 0 0
## 12766 1 0 0
## 12767 2 0 0
## 12768 2 2 0
## 12769 2 0 0
## 12770 1 0 0
## 12771 1 0 0
## 12772 1 0 0
## 12773 2 0 0
## 12774 2 0 0
## 12775 2 0 0
## 12776 2 0 0
## 12777 2 0 0
## 12778 2 0 0
## 12779 1 0 0
## 12780 1 0 0
## 12781 2 0 0
## 12782 2 0 0
## 12783 2 0 0
## 12784 2 0 0
## 12785 2 0 0
## 12786 2 2 0
## 12787 2 0 0
## 12788 2 0 0
## 12789 2 0 0
## 12790 2 0 0
## 12791 2 2 0
## 12792 2 0 0
## 12793 2 2 0
## 12794 2 0 0
## 12795 2 1 0
## 12796 2 0 0
## 12797 2 1 0
## 12798 2 2 0
## 12799 2 0 0
## 12800 2 0 0
## 12801 2 0 0
## 12802 2 0 0
## 12803 2 0 0
## 12804 3 0 0
## 12805 2 0 0
## 12806 2 0 0
## 12807 2 2 0
## 12808 1 0 0
## 12809 2 2 0
## 12810 2 2 0
## 12811 2 0 0
## 12812 2 0 0
## 12813 2 1 0
## 12814 2 0 0
## 12815 2 2 0
## 12816 2 0 0
## 12817 2 0 0
## 12818 2 0 0
## 12819 2 0 0
## 12820 2 2 0
## 12821 2 0 0
## 12822 2 0 0
## 12823 2 0 0
## 12824 1 0 0
## 12825 2 0 0
## 12826 2 0 0
## 12827 2 0 0
## 12828 3 0 0
## 12829 2 0 0
## 12830 2 0 0
## 12831 2 0 0
## 12832 2 0 0
## 12833 2 2 0
## 12834 2 0 0
## 12835 2 0 0
## 12836 2 0 0
## 12837 2 0 0
## 12838 2 0 0
## 12839 2 0 0
## 12840 2 0 0
## 12841 1 0 0
## 12842 2 0 0
## 12843 2 0 0
## 12844 2 0 0
## 12845 2 0 0
## 12846 2 0 0
## 12847 1 0 0
## 12848 2 0 0
## 12849 1 0 0
## 12850 2 0 0
## 12851 2 0 0
## 12852 4 0 0
## 12853 2 2 0
## 12854 2 0 0
## 12855 3 0 0
## 12856 2 0 0
## 12857 2 0 0
## 12858 2 0 0
## 12859 2 2 0
## 12860 2 0 0
## 12861 2 0 0
## 12862 2 0 0
## 12863 2 0 0
## 12864 3 1 0
## 12865 2 0 0
## 12866 2 0 0
## 12867 2 0 0
## 12868 2 0 0
## 12869 2 0 0
## 12870 2 0 0
## 12871 2 0 0
## 12872 2 0 0
## 12873 2 0 0
## 12874 2 0 0
## 12875 2 1 0
## 12876 2 0 0
## 12877 2 0 0
## 12878 2 0 0
## 12879 2 0 0
## 12880 2 0 0
## 12881 2 0 0
## 12882 2 0 0
## 12883 2 0 0
## 12884 2 0 0
## 12885 2 0 0
## 12886 2 0 0
## 12887 2 0 0
## 12888 2 0 0
## 12889 2 2 0
## 12890 2 0 0
## 12891 2 0 0
## 12892 2 0 0
## 12893 3 1 0
## 12894 2 0 0
## 12895 2 0 0
## 12896 1 0 0
## 12897 1 0 0
## 12898 2 0 0
## 12899 2 0 0
## 12900 2 0 0
## 12901 2 0 0
## 12902 2 0 0
## 12903 2 0 0
## 12904 2 0 0
## 12905 1 0 0
## 12906 2 0 0
## 12907 2 0 0
## 12908 2 0 0
## 12909 2 0 0
## 12910 2 0 0
## 12911 2 0 0
## 12912 2 0 0
## 12913 2 0 0
## 12914 2 0 0
## 12915 2 2 0
## 12916 2 2 0
## 12917 2 0 0
## 12918 2 0 0
## 12919 2 0 0
## 12920 3 1 0
## 12921 2 0 0
## 12922 2 0 0
## 12923 2 2 0
## 12924 1 0 0
## 12925 2 2 0
## 12926 2 0 0
## 12927 2 0 0
## 12928 2 0 0
## 12929 2 0 0
## 12930 2 0 0
## 12931 2 0 0
## 12932 2 0 0
## 12933 2 0 0
## 12934 2 2 0
## 12935 2 2 0
## 12936 2 2 0
## 12937 2 0 0
## 12938 2 0 0
## 12939 2 1 0
## 12940 2 1 0
## 12941 2 0 0
## 12942 2 0 0
## 12943 2 0 0
## 12944 2 0 0
## 12945 1 1 0
## 12946 1 1 0
## 12947 2 0 0
## 12948 2 0 0
## 12949 2 0 0
## 12950 2 0 0
## 12951 2 0 0
## 12952 2 0 0
## 12953 2 0 0
## 12954 2 0 0
## 12955 2 0 0
## 12956 2 0 0
## 12957 2 0 0
## 12958 2 2 0
## 12959 1 0 0
## 12960 2 0 0
## 12961 2 0 0
## 12962 2 2 0
## 12963 2 0 0
## 12964 2 2 0
## 12965 2 2 0
## 12966 2 0 0
## 12967 2 0 0
## 12968 2 0 0
## 12969 2 0 0
## 12970 2 0 0
## 12971 2 0 0
## 12972 2 0 0
## 12973 2 0 0
## 12974 2 0 0
## 12975 2 0 0
## 12976 1 0 0
## 12977 2 0 0
## 12978 2 0 0
## 12979 1 0 0
## 12980 2 0 0
## 12981 2 0 0
## 12982 2 0 0
## 12983 2 0 0
## 12984 2 0 0
## 12985 2 0 0
## 12986 2 0 0
## 12987 2 0 0
## 12988 2 0 0
## 12989 2 0 0
## 12990 2 0 0
## 12991 2 0 0
## 12992 1 1 0
## 12993 2 0 0
## 12994 2 0 0
## 12995 2 1 0
## 12996 2 0 0
## 12997 2 0 0
## 12998 2 0 0
## 12999 2 0 0
## 13000 1 0 0
## 13001 2 0 0
## 13002 2 0 0
## 13003 2 0 0
## 13004 2 0 0
## 13005 2 1 0
## 13006 3 1 0
## 13007 2 0 0
## 13008 2 0 0
## 13009 2 0 0
## 13010 2 0 0
## 13011 2 2 0
## 13012 2 0 0
## 13013 2 0 0
## 13014 2 2 0
## 13015 2 0 0
## 13016 2 2 0
## 13017 2 0 0
## 13018 2 0 0
## 13019 2 0 0
## 13020 2 2 0
## 13021 2 0 0
## 13022 2 2 0
## 13023 2 0 0
## 13024 2 0 0
## 13025 1 2 0
## 13026 2 0 0
## 13027 1 0 0
## 13028 1 0 0
## 13029 2 2 0
## 13030 2 0 0
## 13031 2 0 0
## 13032 2 2 0
## 13033 3 1 0
## 13034 2 0 0
## 13035 2 0 0
## 13036 2 0 0
## 13037 2 0 0
## 13038 2 2 0
## 13039 2 0 0
## 13040 2 0 0
## 13041 2 0 0
## 13042 2 0 0
## 13043 2 0 0
## 13044 2 0 0
## 13045 2 0 0
## 13046 2 0 0
## 13047 2 2 0
## 13048 2 0 0
## 13049 3 0 0
## 13050 1 1 0
## 13051 2 0 0
## 13052 1 0 0
## 13053 3 0 0
## 13054 2 0 0
## 13055 2 0 0
## 13056 3 0 0
## 13057 1 0 0
## 13058 2 0 0
## 13059 2 0 0
## 13060 2 0 0
## 13061 2 1 0
## 13062 2 0 0
## 13063 2 0 0
## 13064 2 0 0
## 13065 2 0 0
## 13066 2 2 0
## 13067 2 0 0
## 13068 2 0 0
## 13069 1 0 0
## 13070 2 0 0
## 13071 2 2 0
## 13072 2 0 0
## 13073 2 1 0
## 13074 2 0 0
## 13075 3 0 0
## 13076 2 0 0
## 13077 2 0 0
## 13078 2 0 0
## 13079 1 0 0
## 13080 2 0 0
## 13081 2 0 0
## 13082 2 0 0
## 13083 2 0 0
## 13084 2 1 0
## 13085 3 0 0
## 13086 2 2 0
## 13087 2 0 0
## 13088 2 0 0
## 13089 2 2 0
## 13090 2 0 0
## 13091 2 0 0
## 13092 2 0 0
## 13093 2 0 0
## 13094 2 0 0
## 13095 2 0 0
## 13096 2 0 0
## 13097 2 0 0
## 13098 2 0 0
## 13099 2 0 0
## 13100 2 0 0
## 13101 2 0 0
## 13102 1 0 0
## 13103 1 0 0
## 13104 2 0 0
## 13105 2 0 0
## 13106 2 0 0
## 13107 2 2 0
## 13108 2 0 0
## 13109 2 0 0
## 13110 3 0 0
## 13111 2 0 0
## 13112 2 0 0
## 13113 2 2 0
## 13114 2 0 0
## 13115 2 1 0
## 13116 2 1 0
## 13117 2 2 0
## 13118 2 2 0
## 13119 2 0 0
## 13120 3 1 0
## 13121 2 0 0
## 13122 2 2 0
## 13123 2 0 0
## 13124 2 0 0
## 13125 2 2 0
## 13126 2 2 0
## 13127 2 0 0
## 13128 2 0 0
## 13129 2 0 0
## 13130 2 2 0
## 13131 2 0 0
## 13132 2 0 0
## 13133 2 2 0
## 13134 1 0 0
## 13135 2 0 0
## 13136 2 0 0
## 13137 2 0 0
## 13138 2 0 0
## 13139 2 2 0
## 13140 2 0 0
## 13141 2 0 0
## 13142 2 0 0
## 13143 2 0 0
## 13144 2 0 0
## 13145 2 0 0
## 13146 2 1 0
## 13147 2 0 0
## 13148 2 2 0
## 13149 2 0 0
## 13150 2 1 0
## 13151 2 0 0
## 13152 2 0 0
## 13153 2 1 0
## 13154 2 2 0
## 13155 2 0 0
## 13156 2 0 0
## 13157 2 0 0
## 13158 2 1 0
## 13159 2 0 0
## 13160 3 0 0
## 13161 2 0 0
## 13162 2 0 0
## 13163 2 0 0
## 13164 2 0 0
## 13165 2 0 0
## 13166 2 1 0
## 13167 2 1 0
## 13168 2 0 0
## 13169 2 1 0
## 13170 2 0 0
## 13171 2 0 0
## 13172 2 0 0
## 13173 2 0 0
## 13174 2 0 0
## 13175 2 2 0
## 13176 2 0 0
## 13177 3 1 0
## 13178 2 0 0
## 13179 2 1 0
## 13180 2 0 0
## 13181 2 0 0
## 13182 2 0 0
## 13183 2 0 0
## 13184 2 0 0
## 13185 2 0 0
## 13186 2 0 0
## 13187 2 1 0
## 13188 2 2 0
## 13189 1 0 0
## 13190 2 0 0
## 13191 2 0 0
## 13192 2 0 0
## 13193 2 2 0
## 13194 2 0 0
## 13195 2 0 0
## 13196 2 0 0
## 13197 2 2 0
## 13198 2 2 0
## 13199 2 0 0
## 13200 2 0 0
## 13201 2 0 0
## 13202 2 0 0
## 13203 1 0 0
## 13204 2 0 0
## 13205 1 0 0
## 13206 2 0 0
## 13207 2 0 0
## 13208 2 0 0
## 13209 2 0 0
## 13210 2 0 0
## 13211 2 0 0
## 13212 3 0 0
## 13213 2 0 0
## 13214 2 0 0
## 13215 2 0 0
## 13216 2 0 0
## 13217 2 0 0
## 13218 2 2 0
## 13219 2 0 0
## 13220 2 2 0
## 13221 2 0 0
## 13222 2 0 0
## 13223 2 0 0
## 13224 2 0 0
## 13225 2 2 0
## 13226 2 0 0
## 13227 2 0 0
## 13228 2 2 0
## 13229 2 0 0
## 13230 2 0 0
## 13231 2 0 0
## 13232 2 0 0
## 13233 3 1 0
## 13234 2 0 0
## 13235 2 2 0
## 13236 3 0 0
## 13237 2 0 0
## 13238 3 0 0
## 13239 2 1 0
## 13240 2 0 0
## 13241 2 0 0
## 13242 3 0 0
## 13243 2 1 0
## 13244 2 1 0
## 13245 2 0 0
## 13246 2 1 0
## 13247 2 1 0
## 13248 2 0 0
## 13249 2 1 0
## 13250 2 0 0
## 13251 2 0 0
## 13252 2 0 0
## 13253 2 0 0
## 13254 2 0 0
## 13255 2 0 0
## 13256 2 0 0
## 13257 2 0 0
## 13258 2 0 0
## 13259 2 0 0
## 13260 2 2 0
## 13261 2 0 0
## 13262 2 0 0
## 13263 2 2 0
## 13264 1 0 0
## 13265 2 0 0
## 13266 2 0 0
## 13267 2 2 0
## 13268 2 0 0
## 13269 1 2 0
## 13270 2 2 0
## 13271 2 0 0
## 13272 2 0 0
## 13273 2 2 0
## 13274 2 0 0
## 13275 2 2 0
## 13276 2 2 0
## 13277 2 2 0
## 13278 2 2 0
## 13279 2 0 0
## 13280 2 1 0
## 13281 2 0 0
## 13282 2 0 0
## 13283 2 0 0
## 13284 2 0 0
## 13285 2 2 0
## 13286 2 0 0
## 13287 2 0 0
## 13288 2 0 0
## 13289 2 0 0
## 13290 2 2 0
## 13291 2 2 0
## 13292 2 0 0
## 13293 2 0 0
## 13294 2 0 0
## 13295 2 1 0
## 13296 2 0 0
## 13297 2 0 0
## 13298 2 0 0
## 13299 3 1 0
## 13300 2 0 0
## 13301 2 0 0
## 13302 2 0 0
## 13303 2 2 0
## 13304 2 2 0
## 13305 2 0 0
## 13306 2 2 0
## 13307 2 0 0
## 13308 3 1 0
## 13309 2 1 0
## 13310 3 1 0
## 13311 2 2 0
## 13312 3 1 0
## 13313 3 1 0
## 13314 2 0 0
## 13315 2 0 0
## 13316 2 2 0
## 13317 2 0 0
## 13318 3 1 0
## 13319 2 2 0
## 13320 3 1 0
## 13321 2 0 0
## 13322 2 0 0
## 13323 2 2 0
## 13324 3 1 0
## 13325 2 0 0
## 13326 2 0 0
## 13327 2 0 0
## 13328 2 0 0
## 13329 2 0 0
## 13330 2 0 0
## 13331 2 0 0
## 13332 2 2 0
## 13333 1 0 0
## 13334 1 0 0
## 13335 1 0 0
## 13336 2 0 0
## 13337 2 0 0
## 13338 2 0 0
## 13339 3 1 0
## 13340 2 0 0
## 13341 2 0 0
## 13342 2 0 0
## 13343 2 0 0
## 13344 2 0 0
## 13345 2 0 0
## 13346 2 0 0
## 13347 2 2 0
## 13348 2 2 0
## 13349 2 0 0
## 13350 2 1 0
## 13351 2 0 0
## 13352 1 2 0
## 13353 2 0 0
## 13354 2 0 0
## 13355 2 0 0
## 13356 2 0 0
## 13357 2 0 0
## 13358 3 0 0
## 13359 2 0 0
## 13360 2 0 0
## 13361 2 2 0
## 13362 2 0 0
## 13363 2 2 0
## 13364 2 2 0
## 13365 2 0 0
## 13366 2 0 0
## 13367 2 0 0
## 13368 2 0 0
## 13369 2 0 0
## 13370 2 0 0
## 13371 2 0 0
## 13372 2 0 0
## 13373 3 0 0
## 13374 2 0 0
## 13375 2 0 0
## 13376 2 0 0
## 13377 2 0 0
## 13378 3 1 0
## 13379 2 0 0
## 13380 2 0 0
## 13381 2 2 0
## 13382 2 2 0
## 13383 2 1 0
## 13384 2 0 0
## 13385 2 0 0
## 13386 2 0 0
## 13387 2 2 0
## 13388 3 0 0
## 13389 3 0 0
## 13390 2 0 0
## 13391 2 0 0
## 13392 2 2 0
## 13393 3 0 0
## 13394 2 0 0
## 13395 1 0 0
## 13396 3 1 0
## 13397 2 2 0
## 13398 2 2 0
## 13399 2 2 0
## 13400 2 0 0
## 13401 2 0 0
## 13402 2 0 0
## 13403 2 0 0
## 13404 3 1 0
## 13405 2 0 0
## 13406 2 0 0
## 13407 2 0 0
## 13408 2 0 0
## 13409 2 0 0
## 13410 2 0 0
## 13411 2 0 0
## 13412 2 0 0
## 13413 2 2 0
## 13414 3 1 0
## 13415 2 0 0
## 13416 2 0 0
## 13417 2 0 0
## 13418 2 0 0
## 13419 2 0 0
## 13420 2 0 0
## 13421 2 0 0
## 13422 2 0 0
## 13423 2 0 0
## 13424 2 0 0
## 13425 2 0 0
## 13426 2 1 0
## 13427 2 0 0
## 13428 1 0 0
## 13429 2 2 0
## 13430 1 0 0
## 13431 2 0 0
## 13432 2 0 0
## 13433 2 0 0
## 13434 2 0 0
## 13435 2 0 0
## 13436 2 0 0
## 13437 2 0 0
## 13438 2 0 0
## 13439 2 0 0
## 13440 2 0 0
## 13441 2 0 0
## 13442 2 1 0
## 13443 2 1 0
## 13444 2 0 0
## 13445 2 2 0
## 13446 2 0 0
## 13447 2 0 0
## 13448 2 0 0
## 13449 2 2 0
## 13450 1 0 0
## 13451 2 0 0
## 13452 2 0 0
## 13453 2 1 0
## 13454 2 0 0
## 13455 2 0 0
## 13456 2 0 0
## 13457 2 2 0
## 13458 2 0 0
## 13459 2 0 0
## 13460 2 0 0
## 13461 2 0 0
## 13462 2 0 0
## 13463 2 2 0
## 13464 2 2 0
## 13465 2 0 0
## 13466 2 0 0
## 13467 2 0 0
## 13468 2 0 0
## 13469 1 0 0
## 13470 1 0 0
## 13471 1 0 0
## 13472 2 0 0
## 13473 1 0 0
## 13474 2 0 0
## 13475 2 0 0
## 13476 2 0 0
## 13477 2 0 0
## 13478 2 0 0
## 13479 2 0 0
## 13480 2 0 0
## 13481 2 0 0
## 13482 2 0 0
## 13483 2 0 0
## 13484 2 2 0
## 13485 2 0 0
## 13486 2 0 0
## 13487 2 2 0
## 13488 2 1 0
## 13489 3 1 0
## 13490 2 0 0
## 13491 3 0 0
## 13492 2 0 0
## 13493 2 1 0
## 13494 2 0 0
## 13495 2 0 0
## 13496 2 0 0
## 13497 2 1 0
## 13498 2 2 0
## 13499 1 0 0
## 13500 2 0 0
## 13501 3 0 0
## 13502 2 0 0
## 13503 2 0 0
## 13504 3 0 0
## 13505 2 0 0
## 13506 2 2 0
## 13507 2 0 0
## 13508 2 0 0
## 13509 2 0 0
## 13510 2 0 0
## 13511 2 0 0
## 13512 2 0 0
## 13513 2 0 0
## 13514 2 2 0
## 13515 2 0 0
## 13516 2 0 0
## 13517 2 0 0
## 13518 2 0 0
## 13519 2 0 0
## 13520 2 0 0
## 13521 2 0 0
## 13522 2 0 0
## 13523 3 0 0
## 13524 2 0 0
## 13525 2 0 0
## 13526 2 2 0
## 13527 2 0 0
## 13528 1 0 0
## 13529 2 1 0
## 13530 2 0 0
## 13531 2 0 0
## 13532 2 0 0
## 13533 2 0 0
## 13534 2 2 0
## 13535 2 2 0
## 13536 2 0 0
## 13537 2 0 0
## 13538 2 0 0
## 13539 2 1 0
## 13540 2 0 0
## 13541 2 0 0
## 13542 2 0 0
## 13543 2 0 0
## 13544 2 0 0
## 13545 2 1 0
## 13546 2 1 0
## 13547 2 0 0
## 13548 2 1 0
## 13549 2 2 0
## 13550 2 0 0
## 13551 2 0 0
## 13552 2 2 0
## 13553 1 0 0
## 13554 2 1 0
## 13555 2 2 0
## 13556 2 0 0
## 13557 2 0 0
## 13558 2 0 0
## 13559 2 0 0
## 13560 2 0 0
## 13561 2 0 0
## 13562 2 0 0
## 13563 2 2 0
## 13564 3 0 0
## 13565 2 2 0
## 13566 3 0 0
## 13567 2 1 0
## 13568 2 1 0
## 13569 2 0 0
## 13570 2 0 0
## 13571 2 0 0
## 13572 2 0 0
## 13573 2 2 0
## 13574 2 0 0
## 13575 1 0 0
## 13576 2 2 0
## 13577 2 0 0
## 13578 2 0 0
## 13579 2 0 0
## 13580 2 0 0
## 13581 2 0 0
## 13582 2 0 0
## 13583 2 0 0
## 13584 2 0 0
## 13585 1 0 0
## 13586 2 0 0
## 13587 2 0 0
## 13588 2 0 0
## 13589 2 0 0
## 13590 2 0 0
## 13591 2 0 0
## 13592 2 0 0
## 13593 2 1 0
## 13594 2 0 0
## 13595 2 0 0
## 13596 1 0 0
## 13597 2 0 0
## 13598 2 1 0
## 13599 2 1 0
## 13600 2 0 0
## 13601 2 0 0
## 13602 2 0 0
## 13603 2 0 0
## 13604 2 0 0
## 13605 2 0 0
## 13606 2 0 0
## 13607 2 0 0
## 13608 2 0 0
## 13609 3 1 0
## 13610 2 0 0
## 13611 2 0 0
## 13612 2 0 0
## 13613 2 0 0
## 13614 2 2 0
## 13615 3 0 0
## 13616 2 0 0
## 13617 2 0 0
## 13618 2 0 0
## 13619 3 0 0
## 13620 2 0 0
## 13621 1 2 0
## 13622 2 0 0
## 13623 2 1 0
## 13624 2 0 0
## 13625 2 0 0
## 13626 2 0 0
## 13627 2 0 0
## 13628 2 0 0
## 13629 3 0 0
## 13630 2 0 0
## 13631 2 0 0
## 13632 2 0 0
## 13633 2 2 0
## 13634 2 0 0
## 13635 2 0 0
## 13636 2 1 0
## 13637 2 0 0
## 13638 2 0 0
## 13639 2 0 0
## 13640 3 0 0
## 13641 3 0 0
## 13642 2 2 0
## 13643 2 0 0
## 13644 2 0 0
## 13645 3 1 0
## 13646 2 2 0
## 13647 2 0 0
## 13648 2 0 0
## 13649 2 2 0
## 13650 2 0 0
## 13651 2 2 0
## 13652 2 0 0
## 13653 2 0 0
## 13654 2 0 0
## 13655 2 0 0
## 13656 2 0 0
## 13657 2 0 0
## 13658 2 0 0
## 13659 3 0 0
## 13660 2 0 0
## 13661 2 0 0
## 13662 2 0 0
## 13663 2 0 0
## 13664 2 2 0
## 13665 3 0 0
## 13666 2 0 0
## 13667 2 2 0
## 13668 2 0 0
## 13669 1 0 0
## 13670 2 2 0
## 13671 2 0 0
## 13672 2 0 0
## 13673 2 0 0
## 13674 2 0 0
## 13675 3 1 0
## 13676 3 1 0
## 13677 2 1 0
## 13678 2 0 0
## 13679 2 0 0
## 13680 2 2 0
## 13681 3 0 0
## 13682 2 0 0
## 13683 2 0 0
## 13684 2 0 0
## 13685 2 0 0
## 13686 2 0 0
## 13687 2 0 0
## 13688 2 0 0
## 13689 3 1 0
## 13690 2 0 0
## 13691 2 0 0
## 13692 2 2 0
## 13693 2 0 0
## 13694 2 0 0
## 13695 2 0 0
## 13696 2 0 0
## 13697 1 0 0
## 13698 2 0 0
## 13699 2 0 0
## 13700 2 0 0
## 13701 2 2 0
## 13702 2 0 0
## 13703 2 2 0
## 13704 2 0 0
## 13705 2 2 0
## 13706 2 0 0
## 13707 2 0 0
## 13708 2 0 0
## 13709 2 0 0
## 13710 2 0 0
## 13711 2 0 0
## 13712 2 0 0
## 13713 2 2 0
## 13714 2 2 0
## 13715 2 0 0
## 13716 2 0 0
## 13717 2 0 0
## 13718 2 0 0
## 13719 2 0 0
## 13720 3 0 0
## 13721 2 0 0
## 13722 1 0 0
## 13723 1 0 0
## 13724 1 0 0
## 13725 2 0 0
## 13726 2 1 0
## 13727 2 0 0
## 13728 2 0 0
## 13729 2 1 0
## 13730 2 1 0
## 13731 2 1 0
## 13732 3 0 0
## 13733 2 1 0
## 13734 1 2 0
## 13735 2 0 0
## 13736 2 0 0
## 13737 2 0 0
## 13738 2 0 0
## 13739 3 0 0
## 13740 2 0 0
## 13741 2 0 0
## 13742 2 0 0
## 13743 1 2 0
## 13744 2 1 0
## 13745 1 2 0
## 13746 2 1 0
## 13747 2 0 0
## 13748 1 0 0
## 13749 2 0 0
## 13750 2 0 0
## 13751 2 0 0
## 13752 2 2 0
## 13753 2 0 0
## 13754 1 0 0
## 13755 2 0 0
## 13756 1 2 0
## 13757 2 0 0
## 13758 2 0 0
## 13759 2 0 0
## 13760 1 0 0
## 13761 2 0 0
## 13762 2 2 0
## 13763 2 0 0
## 13764 2 0 0
## 13765 2 0 0
## 13766 2 2 0
## 13767 2 0 0
## 13768 2 0 0
## 13769 2 0 0
## 13770 2 0 0
## 13771 2 0 0
## 13772 2 0 0
## 13773 2 2 0
## 13774 2 2 0
## 13775 2 0 0
## 13776 2 0 0
## 13777 2 0 0
## 13778 2 0 0
## 13779 4 0 0
## 13780 2 0 0
## 13781 2 0 0
## 13782 2 1 0
## 13783 3 0 0
## 13784 2 2 0
## 13785 2 0 0
## 13786 2 0 0
## 13787 2 0 0
## 13788 2 0 0
## 13789 2 0 0
## 13790 4 0 0
## 13791 2 0 0
## 13792 2 0 0
## 13793 2 0 0
## 13794 2 0 0
## 13795 3 1 0
## 13796 2 0 0
## 13797 2 0 0
## 13798 2 0 0
## 13799 2 0 0
## 13800 2 2 0
## 13801 3 1 0
## 13802 2 0 0
## 13803 2 0 0
## 13804 2 0 0
## 13805 2 2 0
## 13806 2 0 0
## 13807 2 1 0
## 13808 2 1 0
## 13809 2 1 0
## 13810 3 1 0
## 13811 3 1 0
## 13812 2 2 0
## 13813 2 0 0
## 13814 2 0 0
## 13815 2 0 0
## 13816 2 0 0
## 13817 2 0 0
## 13818 2 0 0
## 13819 2 2 0
## 13820 2 0 0
## 13821 2 0 0
## 13822 2 0 0
## 13823 2 2 0
## 13824 2 0 0
## 13825 2 0 0
## 13826 2 2 0
## 13827 2 2 0
## 13828 3 0 0
## 13829 3 0 0
## 13830 2 2 0
## 13831 2 2 0
## 13832 2 0 0
## 13833 2 0 0
## 13834 2 1 0
## 13835 2 0 0
## 13836 2 0 0
## 13837 2 0 0
## 13838 2 0 0
## 13839 2 0 0
## 13840 2 2 0
## 13841 2 0 0
## 13842 2 0 0
## 13843 2 0 0
## 13844 2 0 0
## 13845 3 1 0
## 13846 2 0 0
## 13847 2 0 0
## 13848 2 0 0
## 13849 2 0 0
## 13850 1 0 0
## 13851 2 0 0
## 13852 2 0 0
## 13853 1 0 0
## 13854 2 0 0
## 13855 2 2 0
## 13856 2 1 0
## 13857 2 0 0
## 13858 2 1 0
## 13859 2 0 0
## 13860 2 0 0
## 13861 2 0 0
## 13862 2 0 0
## 13863 2 0 0
## 13864 2 0 0
## 13865 2 0 0
## 13866 2 0 0
## 13867 2 2 0
## 13868 2 0 0
## 13869 2 0 0
## 13870 2 1 0
## 13871 3 0 0
## 13872 2 0 0
## 13873 2 0 0
## 13874 2 0 0
## 13875 2 2 0
## 13876 2 0 0
## 13877 2 1 0
## 13878 2 0 0
## 13879 2 0 0
## 13880 1 0 0
## 13881 2 0 0
## 13882 2 0 0
## 13883 2 0 0
## 13884 2 0 0
## 13885 2 0 0
## 13886 3 0 0
## 13887 2 0 0
## 13888 2 0 0
## 13889 2 0 0
## 13890 2 0 0
## 13891 2 2 0
## 13892 3 1 0
## 13893 3 0 0
## 13894 2 0 0
## 13895 2 0 0
## 13896 2 2 0
## 13897 2 0 0
## 13898 2 1 0
## 13899 2 2 0
## 13900 3 0 0
## 13901 2 0 0
## 13902 2 0 0
## 13903 2 0 0
## 13904 2 0 0
## 13905 2 0 0
## 13906 2 2 0
## 13907 2 2 0
## 13908 2 2 0
## 13909 2 2 0
## 13910 2 1 0
## 13911 2 1 0
## 13912 2 0 0
## 13913 2 0 0
## 13914 2 1 0
## 13915 2 1 0
## 13916 2 0 0
## 13917 2 0 0
## 13918 3 0 0
## 13919 2 0 0
## 13920 2 0 0
## 13921 2 0 0
## 13922 2 0 0
## 13923 2 0 0
## 13924 2 0 0
## 13925 2 0 0
## 13926 2 0 0
## 13927 2 0 0
## 13928 2 0 0
## 13929 2 0 0
## 13930 2 0 0
## 13931 2 0 0
## 13932 2 0 0
## 13933 2 0 0
## 13934 2 1 0
## 13935 2 0 0
## 13936 2 0 0
## 13937 2 0 0
## 13938 2 2 0
## 13939 2 0 0
## 13940 2 0 0
## 13941 2 0 0
## 13942 2 0 0
## 13943 2 0 0
## 13944 2 0 0
## 13945 2 0 0
## 13946 2 0 0
## 13947 2 0 0
## 13948 2 0 0
## 13949 2 0 0
## 13950 2 0 0
## 13951 2 0 0
## 13952 1 0 0
## 13953 2 0 0
## 13954 2 0 0
## 13955 2 0 0
## 13956 3 0 0
## 13957 2 0 0
## 13958 2 2 0
## 13959 2 0 0
## 13960 2 1 0
## 13961 1 0 0
## 13962 2 2 0
## 13963 2 1 0
## 13964 3 0 0
## 13965 2 2 0
## 13966 2 0 0
## 13967 2 2 0
## 13968 2 0 0
## 13969 2 0 0
## 13970 2 0 0
## 13971 2 0 0
## 13972 2 0 0
## 13973 2 0 0
## 13974 2 0 0
## 13975 2 2 0
## 13976 1 0 0
## 13977 2 2 0
## 13978 2 0 0
## 13979 2 0 0
## 13980 2 0 0
## 13981 2 0 0
## 13982 2 2 0
## 13983 1 1 0
## 13984 2 0 0
## 13985 2 0 0
## 13986 2 1 0
## 13987 2 0 0
## 13988 2 2 0
## 13989 2 1 0
## 13990 2 2 0
## 13991 2 0 0
## 13992 2 1 0
## 13993 2 2 0
## 13994 2 0 0
## 13995 2 0 0
## 13996 2 0 0
## 13997 3 1 0
## 13998 2 0 0
## 13999 2 0 0
## 14000 2 0 0
## 14001 2 1 0
## 14002 2 0 0
## 14003 2 0 0
## 14004 2 0 0
## 14005 2 0 0
## 14006 2 0 0
## 14007 2 1 0
## 14008 2 0 0
## 14009 2 0 0
## 14010 2 2 0
## 14011 2 0 0
## 14012 2 0 0
## 14013 2 0 0
## 14014 2 0 0
## 14015 2 0 0
## 14016 2 0 0
## 14017 2 0 0
## 14018 2 0 0
## 14019 2 0 0
## 14020 2 0 0
## 14021 2 0 0
## 14022 2 1 0
## 14023 2 0 0
## 14024 2 0 0
## 14025 2 0 0
## 14026 3 0 0
## 14027 2 0 0
## 14028 2 0 0
## 14029 2 0 0
## 14030 2 0 0
## 14031 3 0 0
## 14032 2 0 0
## 14033 2 1 0
## 14034 3 0 0
## 14035 3 1 0
## 14036 2 0 0
## 14037 2 2 0
## 14038 2 0 0
## 14039 2 0 0
## 14040 2 0 0
## 14041 2 0 0
## 14042 2 2 0
## 14043 2 0 0
## 14044 2 1 0
## 14045 2 0 0
## 14046 2 0 0
## 14047 2 2 0
## 14048 2 0 0
## 14049 2 0 0
## 14050 2 0 0
## 14051 2 0 0
## 14052 2 0 0
## 14053 2 0 0
## 14054 2 0 0
## 14055 2 0 0
## 14056 2 1 0
## 14057 2 0 0
## 14058 2 0 0
## 14059 2 0 0
## 14060 3 0 0
## 14061 2 0 0
## 14062 2 0 0
## 14063 2 0 0
## 14064 2 0 0
## 14065 2 0 0
## 14066 2 0 0
## 14067 2 1 0
## 14068 2 2 0
## 14069 2 0 0
## 14070 2 2 0
## 14071 2 0 0
## 14072 2 2 0
## 14073 2 0 0
## 14074 2 0 0
## 14075 2 0 0
## 14076 2 1 0
## 14077 2 0 0
## 14078 2 0 0
## 14079 3 1 0
## 14080 2 0 0
## 14081 2 0 0
## 14082 2 0 0
## 14083 2 0 0
## 14084 2 0 0
## 14085 2 0 0
## 14086 2 1 0
## 14087 2 0 0
## 14088 2 1 0
## 14089 2 0 0
## 14090 2 2 0
## 14091 2 1 0
## 14092 2 0 0
## 14093 1 0 0
## 14094 2 0 0
## 14095 2 0 0
## 14096 2 0 0
## 14097 2 0 0
## 14098 2 2 0
## 14099 2 0 0
## 14100 1 0 0
## 14101 2 2 0
## 14102 1 0 0
## 14103 2 1 0
## 14104 2 0 0
## 14105 2 0 0
## 14106 2 0 0
## 14107 1 0 0
## 14108 2 0 0
## 14109 2 1 0
## 14110 2 0 0
## 14111 2 1 0
## 14112 2 0 0
## 14113 2 2 0
## 14114 2 0 0
## 14115 2 0 0
## 14116 2 0 0
## 14117 1 0 0
## 14118 1 0 0
## 14119 1 0 0
## 14120 1 0 0
## 14121 2 2 0
## 14122 1 0 0
## 14123 2 0 0
## 14124 2 0 0
## 14125 2 0 0
## 14126 2 0 0
## 14127 2 0 0
## 14128 2 2 0
## 14129 3 1 0
## 14130 2 0 0
## 14131 2 2 0
## 14132 2 0 0
## 14133 2 0 0
## 14134 2 2 0
## 14135 2 0 0
## 14136 2 1 0
## 14137 2 0 0
## 14138 2 0 0
## 14139 2 0 0
## 14140 2 0 0
## 14141 2 0 0
## 14142 2 0 0
## 14143 2 1 0
## 14144 2 0 0
## 14145 2 0 0
## 14146 2 0 0
## 14147 2 0 0
## 14148 2 0 0
## 14149 2 0 0
## 14150 2 0 0
## 14151 2 0 0
## 14152 2 0 0
## 14153 2 0 0
## 14154 2 2 0
## 14155 2 0 0
## 14156 2 0 0
## 14157 3 1 0
## 14158 2 0 0
## 14159 2 0 0
## 14160 2 0 0
## 14161 2 1 0
## 14162 2 0 0
## 14163 2 0 0
## 14164 2 0 0
## 14165 2 0 0
## 14166 2 0 0
## 14167 2 0 0
## 14168 3 1 0
## 14169 2 0 0
## 14170 2 1 0
## 14171 2 0 0
## 14172 2 0 0
## 14173 2 0 0
## 14174 2 0 0
## 14175 3 1 0
## 14176 2 0 0
## 14177 2 0 0
## 14178 2 0 0
## 14179 2 0 0
## 14180 1 0 0
## 14181 2 0 0
## 14182 2 1 0
## 14183 2 1 0
## 14184 2 0 0
## 14185 2 2 0
## 14186 2 1 0
## 14187 3 0 0
## 14188 2 0 0
## 14189 2 0 0
## 14190 3 1 0
## 14191 2 2 0
## 14192 3 0 0
## 14193 2 2 0
## 14194 2 0 0
## 14195 2 2 0
## 14196 2 0 0
## 14197 2 0 0
## 14198 2 0 0
## 14199 2 0 0
## 14200 2 2 0
## 14201 2 0 0
## 14202 2 0 0
## 14203 1 0 0
## 14204 2 0 0
## 14205 2 0 0
## 14206 2 2 0
## 14207 3 0 0
## 14208 2 1 0
## 14209 2 0 0
## 14210 2 0 0
## 14211 2 0 0
## 14212 2 0 0
## 14213 2 0 0
## 14214 2 0 0
## 14215 2 2 0
## 14216 2 0 0
## 14217 2 0 0
## 14218 2 0 0
## 14219 3 1 0
## 14220 2 0 0
## 14221 2 0 0
## 14222 2 0 0
## 14223 1 0 0
## 14224 1 0 0
## 14225 2 0 0
## 14226 2 0 0
## 14227 2 1 0
## 14228 2 0 0
## 14229 2 0 0
## 14230 2 2 0
## 14231 1 0 0
## 14232 2 0 0
## 14233 1 0 0
## 14234 2 0 0
## 14235 1 0 0
## 14236 2 0 0
## 14237 3 0 0
## 14238 2 2 0
## 14239 2 0 0
## 14240 2 0 0
## 14241 2 2 0
## 14242 2 2 0
## 14243 1 2 0
## 14244 2 0 0
## 14245 2 2 0
## 14246 2 0 0
## 14247 2 0 0
## 14248 2 0 0
## 14249 2 0 0
## 14250 2 0 0
## 14251 2 0 0
## 14252 2 0 0
## 14253 2 0 0
## 14254 2 0 0
## 14255 2 0 0
## 14256 2 0 0
## 14257 2 0 0
## 14258 2 0 0
## 14259 3 1 0
## 14260 2 1 0
## 14261 2 1 0
## 14262 2 1 0
## 14263 2 2 0
## 14264 2 0 0
## 14265 2 1 0
## 14266 2 0 0
## 14267 2 0 0
## 14268 2 2 0
## 14269 2 0 0
## 14270 2 0 0
## 14271 2 0 0
## 14272 2 0 0
## 14273 2 0 0
## 14274 2 0 0
## 14275 2 0 0
## 14276 2 0 0
## 14277 2 0 0
## 14278 2 0 0
## 14279 2 0 0
## 14280 2 0 0
## 14281 2 0 0
## 14282 2 2 0
## 14283 2 1 0
## 14284 2 1 0
## 14285 2 0 0
## 14286 2 0 0
## 14287 2 0 0
## 14288 2 0 0
## 14289 2 0 0
## 14290 3 0 0
## 14291 2 2 0
## 14292 2 0 0
## 14293 2 0 0
## 14294 2 1 0
## 14295 2 0 0
## 14296 2 0 0
## 14297 2 0 0
## 14298 2 0 0
## 14299 2 0 0
## 14300 2 0 0
## 14301 2 0 0
## 14302 2 0 0
## 14303 2 0 0
## 14304 3 1 0
## 14305 2 0 0
## 14306 2 2 0
## 14307 2 0 0
## 14308 2 0 0
## 14309 2 0 0
## 14310 2 0 0
## 14311 2 0 0
## 14312 2 0 0
## 14313 2 0 0
## 14314 1 0 0
## 14315 2 0 0
## 14316 2 0 0
## 14317 3 0 0
## 14318 2 0 0
## 14319 3 0 0
## 14320 2 2 0
## 14321 2 2 0
## 14322 2 2 0
## 14323 2 0 0
## 14324 2 0 0
## 14325 2 0 0
## 14326 2 1 0
## 14327 2 0 0
## 14328 2 0 0
## 14329 2 0 0
## 14330 2 0 0
## 14331 2 0 0
## 14332 2 0 0
## 14333 3 1 0
## 14334 2 0 0
## 14335 2 0 0
## 14336 2 0 0
## 14337 2 0 0
## 14338 2 0 0
## 14339 2 1 0
## 14340 2 0 0
## 14341 2 0 0
## 14342 2 0 0
## 14343 2 0 0
## 14344 2 0 0
## 14345 2 2 0
## 14346 2 0 0
## 14347 2 0 0
## 14348 2 0 0
## 14349 3 1 0
## 14350 2 0 0
## 14351 2 0 0
## 14352 2 2 0
## 14353 3 1 0
## 14354 2 0 0
## 14355 2 2 0
## 14356 2 0 0
## 14357 2 1 0
## 14358 2 0 0
## 14359 2 0 0
## 14360 3 0 0
## 14361 2 0 0
## 14362 2 0 0
## 14363 2 1 0
## 14364 2 0 0
## 14365 3 0 0
## 14366 2 1 0
## 14367 2 2 0
## 14368 2 0 0
## 14369 2 2 0
## 14370 2 2 0
## 14371 2 0 0
## 14372 2 2 0
## 14373 2 0 0
## 14374 2 0 0
## 14375 2 0 0
## 14376 2 2 0
## 14377 2 0 0
## 14378 2 0 0
## 14379 2 0 0
## 14380 2 0 0
## 14381 2 0 0
## 14382 2 0 0
## 14383 2 0 0
## 14384 1 1 0
## 14385 2 0 0
## 14386 2 0 0
## 14387 2 0 0
## 14388 3 0 0
## 14389 2 0 0
## 14390 2 0 0
## 14391 2 0 0
## 14392 2 0 0
## 14393 2 0 0
## 14394 2 0 0
## 14395 2 0 0
## 14396 2 0 0
## 14397 2 0 0
## 14398 2 0 0
## 14399 2 0 0
## 14400 2 0 0
## 14401 2 0 0
## 14402 2 0 0
## 14403 2 0 0
## 14404 2 0 0
## 14405 2 0 0
## 14406 2 2 0
## 14407 2 0 0
## 14408 2 0 0
## 14409 2 0 0
## 14410 3 0 0
## 14411 2 0 0
## 14412 2 1 0
## 14413 3 0 0
## 14414 3 0 0
## 14415 2 1 0
## 14416 2 0 0
## 14417 1 0 0
## 14418 2 0 0
## 14419 2 0 0
## 14420 2 2 0
## 14421 2 2 0
## 14422 2 2 0
## 14423 2 0 0
## 14424 1 0 0
## 14425 2 2 0
## 14426 2 0 0
## 14427 2 0 0
## 14428 2 0 0
## 14429 2 0 0
## 14430 2 2 0
## 14431 3 0 0
## 14432 3 1 0
## 14433 2 0 0
## 14434 3 0 0
## 14435 2 0 0
## 14436 2 0 0
## 14437 2 2 0
## 14438 2 2 0
## 14439 2 0 0
## 14440 2 2 0
## 14441 2 0 0
## 14442 2 0 0
## 14443 2 2 0
## 14444 2 0 0
## 14445 2 0 0
## 14446 2 2 0
## 14447 2 0 0
## 14448 2 1 0
## 14449 2 2 0
## 14450 2 0 0
## 14451 1 0 0
## 14452 2 2 0
## 14453 3 0 0
## 14454 2 0 0
## 14455 2 2 0
## 14456 2 2 0
## 14457 1 0 0
## 14458 2 0 0
## 14459 2 1 0
## 14460 2 0 0
## 14461 2 0 0
## 14462 2 1 0
## 14463 2 0 0
## 14464 2 0 0
## 14465 2 0 0
## 14466 2 2 0
## 14467 2 2 0
## 14468 2 0 0
## 14469 2 1 0
## 14470 2 0 0
## 14471 2 0 0
## 14472 2 1 0
## 14473 2 0 0
## 14474 2 2 0
## 14475 1 2 0
## 14476 1 1 0
## 14477 1 0 0
## 14478 2 0 0
## 14479 2 0 0
## 14480 2 0 0
## 14481 2 0 0
## 14482 3 0 0
## 14483 2 0 0
## 14484 2 0 0
## 14485 2 0 0
## 14486 2 0 0
## 14487 2 0 0
## 14488 2 0 0
## 14489 2 0 0
## 14490 2 0 0
## 14491 2 0 0
## 14492 2 0 0
## 14493 1 0 0
## 14494 3 0 0
## 14495 2 0 0
## 14496 2 0 0
## 14497 2 0 0
## 14498 2 0 0
## 14499 2 0 0
## 14500 2 2 0
## 14501 2 0 0
## 14502 2 0 0
## 14503 2 0 0
## 14504 2 0 0
## 14505 2 2 0
## 14506 2 0 0
## 14507 2 0 0
## 14508 3 0 0
## 14509 2 0 0
## 14510 2 2 0
## 14511 3 0 0
## 14512 2 0 0
## 14513 3 0 0
## 14514 2 0 0
## 14515 3 0 0
## 14516 2 0 0
## 14517 2 0 0
## 14518 2 0 0
## 14519 2 0 0
## 14520 3 1 0
## 14521 2 0 0
## 14522 2 0 0
## 14523 2 0 0
## 14524 2 0 0
## 14525 2 0 0
## 14526 2 0 0
## 14527 2 0 0
## 14528 2 0 0
## 14529 3 0 0
## 14530 2 2 0
## 14531 2 1 0
## 14532 2 0 0
## 14533 2 2 0
## 14534 2 0 0
## 14535 2 0 0
## 14536 2 0 0
## 14537 2 0 0
## 14538 2 0 0
## 14539 2 0 0
## 14540 2 0 0
## 14541 2 2 0
## 14542 2 0 0
## 14543 2 2 0
## 14544 2 0 0
## 14545 2 2 0
## 14546 2 0 0
## 14547 2 0 0
## 14548 3 0 0
## 14549 1 0 0
## 14550 2 1 0
## 14551 2 0 0
## 14552 2 0 0
## 14553 2 0 0
## 14554 2 0 0
## 14555 2 0 0
## 14556 2 0 0
## 14557 2 2 0
## 14558 2 1 0
## 14559 2 0 0
## 14560 2 0 0
## 14561 2 0 0
## 14562 2 2 0
## 14563 1 0 0
## 14564 1 0 0
## 14565 1 0 0
## 14566 1 0 0
## 14567 1 0 0
## 14568 1 0 0
## 14569 1 0 0
## 14570 2 0 0
## 14571 2 0 0
## 14572 1 0 0
## 14573 1 0 0
## 14574 1 0 0
## 14575 1 0 0
## 14576 1 0 0
## 14577 1 0 0
## 14578 1 0 0
## 14579 1 0 0
## 14580 1 0 0
## 14581 1 0 0
## 14582 1 0 0
## 14583 1 0 0
## 14584 1 0 0
## 14585 1 0 0
## 14586 1 0 0
## 14587 2 0 0
## 14588 1 0 0
## 14589 1 0 0
## 14590 1 0 0
## 14591 1 0 0
## 14592 1 0 0
## 14593 1 0 0
## 14594 1 0 0
## 14595 1 0 0
## 14596 1 0 0
## 14597 1 0 0
## 14598 2 1 0
## 14599 3 0 0
## 14600 1 0 0
## 14601 1 0 0
## 14602 2 0 0
## 14603 1 0 0
## 14604 2 0 0
## 14605 2 0 0
## 14606 1 0 0
## 14607 1 0 0
## 14608 2 0 0
## 14609 2 0 0
## 14610 2 0 0
## 14611 2 0 0
## 14612 2 0 0
## 14613 1 0 0
## 14614 1 0 0
## 14615 1 0 0
## 14616 1 0 0
## 14617 1 0 0
## 14618 1 0 0
## 14619 2 0 0
## 14620 2 0 0
## 14621 2 0 0
## 14622 2 1 0
## 14623 2 0 0
## 14624 2 0 0
## 14625 1 0 0
## 14626 1 0 0
## 14627 1 0 0
## 14628 1 0 0
## 14629 1 0 0
## 14630 1 0 0
## 14631 2 0 0
## 14632 1 0 0
## 14633 1 0 0
## 14634 1 0 0
## 14635 1 0 0
## 14636 1 0 0
## 14637 1 0 0
## 14638 1 0 0
## 14639 2 0 0
## 14640 1 0 0
## 14641 1 0 0
## 14642 2 0 0
## 14643 2 0 0
## 14644 2 0 0
## 14645 1 0 0
## 14646 1 0 0
## 14647 2 0 0
## 14648 1 0 0
## 14649 1 0 0
## 14650 1 0 0
## 14651 2 0 0
## 14652 2 0 0
## 14653 1 0 0
## 14654 1 0 0
## 14655 1 0 0
## 14656 1 0 0
## 14657 1 0 0
## 14658 1 0 0
## 14659 1 0 0
## 14660 2 0 0
## 14661 1 0 0
## 14662 1 0 0
## 14663 1 0 0
## 14664 1 0 0
## 14665 2 0 0
## 14666 1 0 0
## 14667 1 0 0
## 14668 2 0 0
## 14669 2 0 0
## 14670 2 0 0
## 14671 2 1 0
## 14672 1 0 0
## 14673 1 0 0
## 14674 1 0 0
## 14675 1 0 0
## 14676 1 0 0
## 14677 1 0 0
## 14678 1 0 0
## 14679 1 0 0
## 14680 1 0 0
## 14681 1 0 0
## 14682 1 0 0
## 14683 1 0 0
## 14684 1 0 0
## 14685 1 0 0
## 14686 1 0 0
## 14687 2 0 0
## 14688 1 0 0
## 14689 1 0 0
## 14690 2 0 0
## 14691 2 0 0
## 14692 2 0 0
## 14693 2 0 0
## 14694 2 0 0
## 14695 2 0 0
## 14696 2 1 0
## 14697 1 0 0
## 14698 2 0 0
## 14699 1 0 0
## 14700 1 0 0
## 14701 1 0 0
## 14702 1 0 0
## 14703 2 0 0
## 14704 1 0 0
## 14705 1 0 0
## 14706 1 0 0
## 14707 1 0 0
## 14708 1 0 0
## 14709 1 0 0
## 14710 2 0 0
## 14711 2 0 0
## 14712 1 0 0
## 14713 1 0 0
## 14714 1 0 0
## 14715 1 0 0
## 14716 1 0 0
## 14717 1 0 0
## 14718 1 0 0
## 14719 1 0 0
## 14720 2 0 0
## 14721 1 0 0
## 14722 1 0 0
## 14723 1 0 0
## 14724 1 0 0
## 14725 1 0 0
## 14726 2 0 0
## 14727 2 0 0
## 14728 2 0 0
## 14729 2 0 0
## 14730 1 0 0
## 14731 2 0 0
## 14732 1 0 0
## 14733 1 0 0
## 14734 1 0 0
## 14735 1 0 0
## 14736 1 0 0
## 14737 1 0 0
## 14738 1 0 0
## 14739 1 0 0
## 14740 1 0 0
## 14741 1 0 0
## 14742 1 0 0
## 14743 1 0 0
## 14744 1 0 0
## 14745 1 0 0
## 14746 1 0 0
## 14747 2 0 0
## 14748 1 0 0
## 14749 1 0 0
## 14750 1 0 0
## 14751 2 0 0
## 14752 2 1 0
## 14753 2 0 0
## 14754 2 0 0
## 14755 2 2 0
## 14756 3 0 0
## 14757 1 0 0
## 14758 1 0 0
## 14759 1 0 0
## 14760 1 0 0
## 14761 1 0 0
## 14762 1 0 0
## 14763 1 0 0
## 14764 1 0 0
## 14765 1 0 0
## 14766 2 0 0
## 14767 2 0 0
## 14768 1 0 0
## 14769 1 0 0
## 14770 1 0 0
## 14771 1 0 0
## 14772 1 0 0
## 14773 1 0 0
## 14774 1 0 0
## 14775 1 0 0
## 14776 1 0 0
## 14777 1 0 0
## 14778 1 0 0
## 14779 1 0 0
## 14780 1 0 0
## 14781 1 0 0
## 14782 1 0 0
## 14783 1 0 0
## 14784 1 0 0
## 14785 1 0 0
## 14786 1 0 0
## 14787 1 0 0
## 14788 1 0 0
## 14789 1 0 0
## 14790 1 0 0
## 14791 1 0 0
## 14792 1 0 0
## 14793 1 0 0
## 14794 1 0 0
## 14795 1 0 0
## 14796 1 0 0
## 14797 1 0 0
## 14798 1 0 0
## 14799 1 0 0
## 14800 1 0 0
## 14801 1 0 0
## 14802 1 0 0
## 14803 1 0 0
## 14804 1 0 0
## 14805 1 0 0
## 14806 1 0 0
## 14807 2 0 0
## 14808 2 0 0
## 14809 2 0 0
## 14810 1 0 0
## 14811 1 0 0
## 14812 1 0 0
## 14813 1 0 0
## 14814 1 0 0
## 14815 1 0 0
## 14816 1 0 0
## 14817 1 0 0
## 14818 2 0 0
## 14819 2 0 0
## 14820 2 0 0
## 14821 2 0 0
## 14822 2 0 0
## 14823 2 0 0
## 14824 1 0 0
## 14825 1 0 0
## 14826 1 0 0
## 14827 2 0 0
## 14828 1 0 0
## 14829 1 0 0
## 14830 2 0 0
## 14831 2 0 0
## 14832 2 0 0
## 14833 2 0 0
## 14834 2 0 0
## 14835 2 0 0
## 14836 1 0 0
## 14837 2 0 0
## 14838 2 0 0
## 14839 2 0 0
## 14840 2 0 0
## 14841 1 0 0
## 14842 1 0 0
## 14843 2 0 0
## 14844 1 0 0
## 14845 1 0 0
## 14846 1 0 0
## 14847 2 0 0
## 14848 2 0 0
## 14849 1 0 0
## 14850 1 0 0
## 14851 1 0 0
## 14852 2 0 0
## 14853 2 0 0
## 14854 2 0 0
## 14855 2 0 0
## 14856 2 0 0
## 14857 2 0 0
## 14858 2 0 0
## 14859 2 1 0
## 14860 2 1 0
## 14861 2 1 0
## 14862 2 1 0
## 14863 2 0 0
## 14864 2 0 0
## 14865 1 0 0
## 14866 1 0 0
## 14867 2 0 0
## 14868 2 0 0
## 14869 2 0 0
## 14870 2 0 0
## 14871 1 0 0
## 14872 2 0 0
## 14873 1 0 0
## 14874 1 0 0
## 14875 2 0 0
## 14876 3 0 0
## 14877 3 0 0
## 14878 1 0 0
## 14879 2 0 0
## 14880 1 0 0
## 14881 1 0 0
## 14882 1 0 0
## 14883 1 0 0
## 14884 1 0 0
## 14885 2 0 0
## 14886 2 0 0
## 14887 1 0 0
## 14888 1 0 0
## 14889 2 0 0
## 14890 2 0 0
## 14891 2 0 0
## 14892 2 0 0
## 14893 2 0 0
## 14894 1 0 0
## 14895 1 0 0
## 14896 2 0 0
## 14897 1 0 0
## 14898 1 0 0
## 14899 1 0 0
## 14900 1 0 0
## 14901 1 0 0
## 14902 1 0 0
## 14903 1 0 0
## 14904 1 0 0
## 14905 1 0 0
## 14906 1 0 0
## 14907 2 0 0
## 14908 2 0 0
## 14909 2 0 0
## 14910 1 0 0
## 14911 2 0 0
## 14912 1 0 0
## 14913 1 0 0
## 14914 1 0 0
## 14915 1 0 0
## 14916 1 0 0
## 14917 1 0 0
## 14918 1 0 0
## 14919 1 0 0
## 14920 1 0 0
## 14921 2 0 0
## 14922 1 0 0
## 14923 2 0 0
## 14924 3 0 0
## 14925 2 0 0
## 14926 2 0 0
## 14927 1 0 0
## 14928 1 0 0
## 14929 1 0 0
## 14930 1 0 0
## 14931 1 0 0
## 14932 1 0 0
## 14933 1 0 0
## 14934 1 0 0
## 14935 2 0 0
## 14936 1 0 0
## 14937 1 0 0
## 14938 1 0 0
## 14939 1 0 0
## 14940 1 0 0
## 14941 2 0 0
## 14942 2 0 0
## 14943 2 0 0
## 14944 2 0 0
## 14945 2 0 0
## 14946 2 0 0
## 14947 2 0 0
## 14948 2 0 0
## 14949 2 0 0
## 14950 2 0 0
## 14951 2 0 0
## 14952 2 0 0
## 14953 1 0 0
## 14954 1 0 0
## 14955 1 0 0
## 14956 1 0 0
## 14957 1 0 0
## 14958 1 0 0
## 14959 1 0 0
## 14960 1 0 0
## 14961 1 0 0
## 14962 1 0 0
## 14963 1 0 0
## 14964 1 0 0
## 14965 2 0 0
## 14966 1 0 0
## 14967 1 0 0
## 14968 1 0 0
## 14969 1 0 0
## 14970 2 0 0
## 14971 2 0 0
## 14972 2 0 0
## 14973 1 0 0
## 14974 1 0 0
## 14975 1 0 0
## 14976 1 0 0
## 14977 1 0 0
## 14978 1 0 0
## 14979 1 0 0
## 14980 2 0 0
## 14981 1 0 0
## 14982 1 0 0
## 14983 2 0 0
## 14984 2 0 0
## 14985 2 0 0
## 14986 1 0 0
## 14987 1 0 0
## 14988 1 0 0
## 14989 1 0 0
## 14990 1 0 0
## 14991 1 0 0
## 14992 1 0 0
## 14993 1 0 0
## 14994 1 0 0
## 14995 1 0 0
## 14996 1 0 0
## 14997 1 0 0
## 14998 1 0 0
## 14999 1 0 0
## 15000 1 0 0
## 15001 1 0 0
## 15002 1 0 0
## 15003 1 0 0
## 15004 1 0 0
## 15005 1 0 0
## 15006 2 0 0
## 15007 1 0 0
## 15008 1 0 0
## 15009 1 0 0
## 15010 1 0 0
## 15011 1 0 0
## 15012 2 0 0
## 15013 2 0 0
## 15014 2 0 0
## 15015 2 0 0
## 15016 2 0 0
## 15017 1 0 0
## 15018 2 0 0
## 15019 1 0 0
## 15020 1 0 0
## 15021 1 0 0
## 15022 1 0 0
## 15023 1 0 0
## 15024 1 0 0
## 15025 1 0 0
## 15026 2 0 0
## 15027 1 0 0
## 15028 1 0 0
## 15029 1 0 0
## 15030 1 0 0
## 15031 1 0 0
## 15032 2 0 0
## 15033 1 0 0
## 15034 2 1 0
## 15035 3 0 0
## 15036 2 0 0
## 15037 2 0 0
## 15038 2 0 0
## 15039 2 0 0
## 15040 2 0 0
## 15041 2 0 0
## 15042 2 0 0
## 15043 1 0 0
## 15044 2 0 0
## 15045 1 0 0
## 15046 1 0 0
## 15047 1 0 0
## 15048 1 0 0
## 15049 1 0 0
## 15050 1 0 0
## 15051 1 0 0
## 15052 1 0 0
## 15053 2 0 0
## 15054 1 0 0
## 15055 2 1 0
## 15056 1 0 0
## 15057 1 0 0
## 15058 1 0 0
## 15059 1 0 0
## 15060 1 0 0
## 15061 1 0 0
## 15062 1 0 0
## 15063 1 0 0
## 15064 2 0 0
## 15065 2 0 0
## 15066 1 0 0
## 15067 1 0 0
## 15068 1 0 0
## 15069 1 0 0
## 15070 1 0 0
## 15071 1 0 0
## 15072 1 0 0
## 15073 1 0 0
## 15074 1 0 0
## 15075 2 0 0
## 15076 2 0 0
## 15077 1 0 0
## 15078 1 0 0
## 15079 1 0 0
## 15080 1 0 0
## 15081 1 0 0
## 15082 1 0 0
## 15083 2 0 0
## 15084 1 0 0
## 15085 1 0 0
## 15086 1 0 0
## 15087 2 0 0
## 15088 2 0 0
## 15089 2 0 0
## 15090 2 0 0
## 15091 3 0 0
## 15092 2 0 0
## 15093 2 0 0
## 15094 2 0 0
## 15095 2 0 0
## 15096 1 0 0
## 15097 1 0 0
## 15098 2 0 0
## 15099 1 0 0
## 15100 1 0 0
## 15101 1 0 0
## 15102 1 0 0
## 15103 1 0 0
## 15104 1 0 0
## 15105 2 1 0
## 15106 1 0 0
## 15107 1 0 0
## 15108 2 0 0
## 15109 2 1 0
## 15110 1 0 0
## 15111 2 0 0
## 15112 1 0 0
## 15113 1 0 0
## 15114 1 0 0
## 15115 1 0 0
## 15116 2 0 0
## 15117 1 0 0
## 15118 1 0 0
## 15119 2 0 0
## 15120 1 0 0
## 15121 2 0 0
## 15122 1 0 0
## 15123 1 0 0
## 15124 2 0 0
## 15125 2 0 0
## 15126 2 0 0
## 15127 2 0 0
## 15128 2 0 0
## 15129 2 0 0
## 15130 2 0 0
## 15131 1 0 0
## 15132 1 0 0
## 15133 1 0 0
## 15134 1 0 0
## 15135 1 0 0
## 15136 2 0 0
## 15137 1 0 0
## 15138 2 0 0
## 15139 1 0 0
## 15140 2 0 0
## 15141 2 0 0
## 15142 2 0 0
## 15143 1 0 0
## 15144 1 0 0
## 15145 2 0 0
## 15146 1 0 0
## 15147 1 0 0
## 15148 1 0 0
## 15149 1 0 0
## 15150 1 0 0
## 15151 2 0 0
## 15152 2 0 0
## 15153 1 0 0
## 15154 2 0 0
## 15155 2 0 0
## 15156 3 0 0
## 15157 2 0 0
## 15158 1 0 0
## 15159 2 0 0
## 15160 3 0 0
## 15161 2 0 0
## 15162 2 2 0
## 15163 2 0 0
## 15164 3 0 0
## 15165 2 1 0
## 15166 2 1 0
## 15167 2 0 0
## 15168 2 0 0
## 15169 2 0 0
## 15170 2 0 0
## 15171 2 1 0
## 15172 2 0 0
## 15173 1 0 0
## 15174 2 0 0
## 15175 2 0 0
## 15176 1 0 0
## 15177 1 0 0
## 15178 1 0 0
## 15179 2 0 0
## 15180 2 0 0
## 15181 2 0 0
## 15182 1 0 0
## 15183 1 0 0
## 15184 1 0 0
## 15185 1 0 0
## 15186 1 0 0
## 15187 1 0 0
## 15188 1 0 0
## 15189 1 0 0
## 15190 1 0 0
## 15191 1 0 0
## 15192 1 0 0
## 15193 3 0 0
## 15194 2 0 0
## 15195 2 0 0
## 15196 1 0 0
## 15197 1 0 0
## 15198 1 0 0
## 15199 1 0 0
## 15200 2 0 0
## 15201 1 0 0
## 15202 1 0 0
## 15203 2 0 0
## 15204 1 0 0
## 15205 2 0 0
## 15206 1 0 0
## 15207 2 0 0
## 15208 1 0 0
## 15209 1 0 0
## 15210 1 0 0
## 15211 1 0 0
## 15212 1 0 0
## 15213 1 0 0
## 15214 1 0 0
## 15215 1 0 0
## 15216 1 0 0
## 15217 1 0 0
## 15218 2 0 0
## 15219 2 0 0
## 15220 2 0 0
## 15221 1 0 0
## 15222 2 0 0
## 15223 1 0 0
## 15224 1 0 0
## 15225 2 0 0
## 15226 2 0 0
## 15227 1 0 0
## 15228 2 0 0
## 15229 2 0 0
## 15230 2 0 0
## 15231 2 0 0
## 15232 2 0 0
## 15233 2 0 0
## 15234 1 0 0
## 15235 1 0 0
## 15236 1 0 0
## 15237 1 0 0
## 15238 1 0 0
## 15239 1 0 0
## 15240 1 0 0
## 15241 1 0 0
## 15242 1 0 0
## 15243 1 0 0
## 15244 1 0 0
## 15245 1 0 0
## 15246 1 0 0
## 15247 1 0 0
## 15248 1 0 0
## 15249 1 0 0
## 15250 1 0 0
## 15251 1 0 0
## 15252 1 0 0
## 15253 1 0 0
## 15254 1 0 0
## 15255 1 0 0
## 15256 1 0 0
## 15257 1 0 0
## 15258 1 0 0
## 15259 1 0 0
## 15260 2 0 0
## 15261 2 0 0
## 15262 1 0 0
## 15263 1 0 0
## 15264 2 0 0
## 15265 1 0 0
## 15266 1 0 0
## 15267 1 0 0
## 15268 1 0 0
## 15269 1 0 0
## 15270 2 0 0
## 15271 2 0 0
## 15272 1 0 0
## 15273 1 0 0
## 15274 1 0 0
## 15275 1 0 0
## 15276 1 0 0
## 15277 1 0 0
## 15278 1 0 0
## 15279 1 0 0
## 15280 2 0 0
## 15281 2 0 0
## 15282 2 0 0
## 15283 2 0 0
## 15284 2 0 0
## 15285 2 0 0
## 15286 1 0 0
## 15287 2 1 0
## 15288 1 0 0
## 15289 1 0 0
## 15290 1 0 0
## 15291 1 0 0
## 15292 2 0 0
## 15293 2 0 0
## 15294 1 0 0
## 15295 1 0 0
## 15296 1 0 0
## 15297 1 0 0
## 15298 1 0 0
## 15299 1 0 0
## 15300 2 0 0
## 15301 2 0 0
## 15302 2 0 0
## 15303 2 0 0
## 15304 1 0 0
## 15305 1 0 0
## 15306 1 0 0
## 15307 1 0 0
## 15308 1 0 0
## 15309 1 0 0
## 15310 1 0 0
## 15311 1 0 0
## 15312 1 0 0
## 15313 2 0 0
## 15314 2 0 0
## 15315 2 0 0
## 15316 2 2 0
## 15317 2 2 0
## 15318 1 0 0
## 15319 2 0 0
## 15320 2 0 0
## 15321 2 0 0
## 15322 2 0 0
## 15323 2 0 0
## 15324 2 0 0
## 15325 2 2 0
## 15326 2 0 0
## 15327 3 0 0
## 15328 3 0 0
## 15329 1 0 0
## 15330 2 0 0
## 15331 2 0 0
## 15332 2 0 0
## 15333 1 0 0
## 15334 1 0 0
## 15335 2 0 0
## 15336 2 0 0
## 15337 1 0 0
## 15338 1 0 0
## 15339 2 0 0
## 15340 2 0 0
## 15341 2 0 0
## 15342 2 0 0
## 15343 2 0 0
## 15344 2 1 0
## 15345 2 0 0
## 15346 2 0 0
## 15347 1 0 0
## 15348 2 0 0
## 15349 2 0 0
## 15350 2 0 0
## 15351 1 0 0
## 15352 1 0 0
## 15353 2 1 0
## 15354 2 0 0
## 15355 3 0 0
## 15356 2 0 0
## 15357 2 0 0
## 15358 1 0 0
## 15359 2 0 0
## 15360 1 0 0
## 15361 2 0 0
## 15362 2 0 0
## 15363 2 0 0
## 15364 2 0 0
## 15365 2 0 0
## 15366 2 0 0
## 15367 1 0 0
## 15368 1 0 0
## 15369 1 0 0
## 15370 2 0 0
## 15371 2 0 0
## 15372 2 0 0
## 15373 2 1 0
## 15374 2 1 0
## 15375 2 0 0
## 15376 2 1 0
## 15377 2 2 0
## 15378 2 1 0
## 15379 2 0 0
## 15380 2 0 0
## 15381 2 0 0
## 15382 2 0 0
## 15383 1 0 0
## 15384 1 0 0
## 15385 2 0 0
## 15386 2 0 0
## 15387 2 0 0
## 15388 2 1 0
## 15389 2 0 0
## 15390 2 0 0
## 15391 1 0 0
## 15392 2 0 0
## 15393 2 0 0
## 15394 2 0 0
## 15395 1 0 0
## 15396 1 0 0
## 15397 1 0 0
## 15398 1 0 0
## 15399 1 0 0
## 15400 1 0 0
## 15401 1 0 0
## 15402 2 0 0
## 15403 2 0 0
## 15404 2 0 0
## 15405 2 0 0
## 15406 2 0 0
## 15407 1 0 0
## 15408 2 0 0
## 15409 1 0 0
## 15410 2 0 0
## 15411 1 0 0
## 15412 1 0 0
## 15413 1 0 0
## 15414 2 0 0
## 15415 2 0 0
## 15416 2 0 0
## 15417 2 0 0
## 15418 2 0 0
## 15419 1 0 0
## 15420 2 0 0
## 15421 2 0 0
## 15422 1 0 0
## 15423 1 0 0
## 15424 1 0 0
## 15425 1 0 0
## 15426 1 0 0
## 15427 1 0 0
## 15428 1 0 0
## 15429 1 0 0
## 15430 2 0 0
## 15431 2 0 0
## 15432 2 0 0
## 15433 1 0 0
## 15434 1 0 0
## 15435 1 0 0
## 15436 1 0 0
## 15437 1 0 0
## 15438 2 0 0
## 15439 2 0 0
## 15440 2 0 0
## 15441 2 0 0
## 15442 2 0 0
## 15443 2 0 0
## 15444 2 0 0
## 15445 2 0 0
## 15446 2 0 0
## 15447 2 0 0
## 15448 2 0 0
## 15449 2 0 0
## 15450 2 0 0
## 15451 2 0 0
## 15452 2 0 0
## 15453 2 0 0
## 15454 2 0 0
## 15455 2 0 0
## 15456 2 0 0
## 15457 2 0 0
## 15458 2 0 0
## 15459 2 0 0
## 15460 2 0 0
## 15461 2 0 0
## 15462 2 0 0
## 15463 2 0 0
## 15464 2 0 0
## 15465 2 0 0
## 15466 2 0 0
## 15467 2 0 0
## 15468 2 0 0
## 15469 2 0 0
## 15470 2 0 0
## 15471 2 0 0
## 15472 2 0 0
## 15473 2 0 0
## 15474 2 0 0
## 15475 2 0 0
## 15476 2 0 0
## 15477 2 0 0
## 15478 2 0 0
## 15479 2 0 0
## 15480 2 0 0
## 15481 2 0 0
## 15482 2 0 0
## 15483 2 0 0
## 15484 2 0 0
## 15485 2 0 0
## 15486 2 0 0
## 15487 2 0 0
## 15488 2 0 0
## 15489 2 0 0
## 15490 1 0 0
## 15491 1 0 0
## 15492 1 0 0
## 15493 1 0 0
## 15494 1 0 0
## 15495 1 0 0
## 15496 1 0 0
## 15497 1 0 0
## 15498 1 0 0
## 15499 1 0 0
## 15500 1 0 0
## 15501 1 0 0
## 15502 1 0 0
## 15503 1 0 0
## 15504 1 0 0
## 15505 1 0 0
## 15506 1 0 0
## 15507 1 0 0
## 15508 1 0 0
## 15509 1 0 0
## 15510 1 0 0
## 15511 1 0 0
## 15512 1 0 0
## 15513 1 0 0
## 15514 1 0 0
## 15515 1 0 0
## 15516 1 0 0
## 15517 1 0 0
## 15518 1 0 0
## 15519 1 0 0
## 15520 1 0 0
## 15521 1 0 0
## 15522 1 0 0
## 15523 1 0 0
## 15524 1 0 0
## 15525 1 0 0
## 15526 1 0 0
## 15527 1 0 0
## 15528 1 0 0
## 15529 1 0 0
## 15530 2 0 0
## 15531 2 0 0
## 15532 2 0 0
## 15533 2 0 0
## 15534 2 2 0
## 15535 2 0 0
## 15536 2 0 0
## 15537 2 0 0
## 15538 2 0 0
## 15539 2 0 0
## 15540 2 0 0
## 15541 2 0 0
## 15542 2 0 0
## 15543 2 0 0
## 15544 2 0 0
## 15545 2 0 0
## 15546 2 0 0
## 15547 2 0 0
## 15548 2 0 0
## 15549 2 0 0
## 15550 2 0 0
## 15551 2 0 0
## 15552 2 0 0
## 15553 2 0 0
## 15554 2 0 0
## 15555 2 0 0
## 15556 2 0 0
## 15557 2 0 0
## 15558 2 0 0
## 15559 2 0 0
## 15560 2 0 0
## 15561 2 0 0
## 15562 2 0 0
## 15563 3 0 0
## 15564 3 0 0
## 15565 2 0 0
## 15566 2 0 0
## 15567 2 0 0
## 15568 2 0 0
## 15569 2 0 0
## 15570 2 2 0
## 15571 2 0 0
## 15572 2 0 0
## 15573 2 0 0
## 15574 3 0 0
## 15575 2 0 0
## 15576 2 0 0
## 15577 2 0 0
## 15578 3 1 0
## 15579 2 0 0
## 15580 2 0 0
## 15581 2 0 0
## 15582 2 0 0
## 15583 2 0 0
## 15584 2 0 0
## 15585 2 2 0
## 15586 2 0 0
## 15587 2 0 0
## 15588 2 0 0
## 15589 2 0 0
## 15590 2 0 0
## 15591 2 0 0
## 15592 2 0 0
## 15593 2 0 0
## 15594 2 0 0
## 15595 2 0 0
## 15596 2 0 0
## 15597 2 0 0
## 15598 2 0 0
## 15599 2 0 0
## 15600 2 0 0
## 15601 2 0 0
## 15602 2 0 0
## 15603 2 0 0
## 15604 2 0 0
## 15605 2 0 0
## 15606 2 0 0
## 15607 2 0 0
## 15608 2 0 0
## 15609 2 0 0
## 15610 2 0 0
## 15611 2 0 0
## 15612 2 0 0
## 15613 2 0 0
## 15614 2 0 0
## 15615 2 0 0
## 15616 2 0 0
## 15617 2 0 0
## 15618 2 0 0
## 15619 2 0 0
## 15620 2 0 0
## 15621 2 0 0
## 15622 2 0 0
## 15623 2 0 0
## 15624 2 0 0
## 15625 2 0 0
## 15626 2 0 0
## 15627 2 0 0
## 15628 2 0 0
## 15629 2 0 0
## 15630 2 0 0
## 15631 2 0 0
## 15632 2 0 0
## 15633 2 0 0
## 15634 2 2 0
## 15635 2 0 0
## 15636 2 0 0
## 15637 2 0 0
## 15638 1 0 0
## 15639 1 0 0
## 15640 1 0 0
## 15641 2 0 0
## 15642 2 0 0
## 15643 2 0 0
## 15644 2 0 0
## 15645 2 0 0
## 15646 2 0 0
## 15647 2 0 0
## 15648 2 0 0
## 15649 2 0 0
## 15650 2 0 0
## 15651 2 0 0
## 15652 2 0 0
## 15653 2 0 0
## 15654 2 0 0
## 15655 2 0 0
## 15656 2 0 0
## 15657 2 1 0
## 15658 2 0 0
## 15659 2 0 0
## 15660 2 0 0
## 15661 2 0 0
## 15662 2 0 0
## 15663 2 1 0
## 15664 2 0 0
## 15665 2 1 0
## 15666 3 0 0
## 15667 3 0 0
## 15668 3 0 0
## 15669 1 0 0
## 15670 1 0 0
## 15671 1 0 0
## 15672 1 0 0
## 15673 1 0 0
## 15674 1 0 0
## 15675 1 0 0
## 15676 1 0 0
## 15677 1 0 0
## 15678 1 0 0
## 15679 1 0 0
## 15680 1 0 0
## 15681 1 0 0
## 15682 1 0 0
## 15683 2 0 0
## 15684 2 0 0
## 15685 2 0 0
## 15686 1 0 0
## 15687 1 0 0
## 15688 2 0 0
## 15689 2 0 0
## 15690 1 0 0
## 15691 1 0 0
## 15692 1 0 0
## 15693 2 0 0
## 15694 2 0 0
## 15695 2 0 0
## 15696 2 1 0
## 15697 1 0 0
## 15698 1 0 0
## 15699 1 0 0
## 15700 1 0 0
## 15701 2 1 0
## 15702 2 1 0
## 15703 2 0 0
## 15704 1 0 0
## 15705 2 2 0
## 15706 2 0 0
## 15707 2 0 0
## 15708 2 0 0
## 15709 1 0 0
## 15710 1 0 0
## 15711 1 0 0
## 15712 1 0 0
## 15713 1 0 0
## 15714 1 0 0
## 15715 2 0 0
## 15716 2 0 0
## 15717 1 0 0
## 15718 1 0 0
## 15719 2 0 0
## 15720 1 0 0
## 15721 1 0 0
## 15722 2 0 0
## 15723 2 0 0
## 15724 2 0 0
## 15725 1 0 0
## 15726 2 0 0
## 15727 2 0 0
## 15728 2 0 0
## 15729 2 0 0
## 15730 2 0 0
## 15731 2 0 0
## 15732 2 0 0
## 15733 2 0 0
## 15734 2 0 0
## 15735 2 0 0
## 15736 2 0 0
## 15737 2 0 0
## 15738 2 0 0
## 15739 2 0 0
## 15740 2 0 0
## 15741 2 0 0
## 15742 2 0 0
## 15743 2 0 0
## 15744 2 0 0
## 15745 2 0 0
## 15746 2 0 0
## 15747 2 0 0
## 15748 2 0 0
## 15749 2 0 0
## 15750 2 0 0
## 15751 2 0 0
## 15752 2 0 0
## 15753 2 0 0
## 15754 2 0 0
## 15755 2 0 0
## 15756 2 0 0
## 15757 2 0 0
## 15758 2 0 0
## 15759 2 0 0
## 15760 2 0 0
## 15761 2 0 0
## 15762 2 0 0
## 15763 2 0 0
## 15764 2 0 0
## 15765 2 0 0
## 15766 2 0 0
## 15767 2 0 0
## 15768 2 0 0
## 15769 2 0 0
## 15770 2 0 0
## 15771 2 0 0
## 15772 2 0 0
## 15773 2 0 0
## 15774 2 0 0
## 15775 2 0 0
## 15776 1 0 0
## 15777 1 0 0
## 15778 1 0 0
## 15779 1 0 0
## 15780 1 0 0
## 15781 1 0 0
## 15782 1 0 0
## 15783 2 0 0
## 15784 2 0 0
## 15785 2 0 0
## 15786 2 0 0
## 15787 3 0 0
## 15788 2 0 0
## 15789 1 0 0
## 15790 1 0 0
## 15791 1 0 0
## 15792 1 0 0
## 15793 1 0 0
## 15794 2 0 0
## 15795 2 0 0
## 15796 2 0 0
## 15797 2 0 0
## 15798 1 0 0
## 15799 2 0 0
## 15800 2 0 0
## 15801 2 0 0
## 15802 2 2 0
## 15803 1 0 0
## 15804 1 0 0
## 15805 1 0 0
## 15806 1 0 0
## 15807 1 0 0
## 15808 1 0 0
## 15809 1 0 0
## 15810 1 0 0
## 15811 1 0 0
## 15812 1 0 0
## 15813 1 0 0
## 15814 1 0 0
## 15815 2 0 0
## 15816 1 0 0
## 15817 1 0 0
## 15818 2 0 0
## 15819 1 0 0
## 15820 1 0 0
## 15821 1 0 0
## 15822 1 0 0
## 15823 1 0 0
## 15824 1 0 0
## 15825 1 0 0
## 15826 1 0 0
## 15827 1 0 0
## 15828 1 0 0
## 15829 1 0 0
## 15830 1 0 0
## 15831 2 0 0
## 15832 2 0 0
## 15833 1 0 0
## 15834 2 0 0
## 15835 2 0 0
## 15836 2 0 0
## 15837 2 0 0
## 15838 2 0 0
## 15839 2 0 0
## 15840 2 0 0
## 15841 2 0 0
## 15842 1 0 0
## 15843 1 0 0
## 15844 1 0 0
## 15845 1 0 0
## 15846 2 0 0
## 15847 2 0 0
## 15848 1 0 0
## 15849 3 0 0
## 15850 2 0 0
## 15851 2 0 0
## 15852 2 0 0
## 15853 2 0 0
## 15854 2 0 0
## 15855 2 0 0
## 15856 2 0 0
## 15857 2 0 0
## 15858 2 0 0
## 15859 2 0 0
## 15860 2 0 0
## 15861 2 0 0
## 15862 2 0 0
## 15863 2 0 0
## 15864 2 0 0
## 15865 2 0 0
## 15866 2 0 0
## 15867 2 0 0
## 15868 2 0 0
## 15869 2 0 0
## 15870 2 0 0
## 15871 2 0 0
## 15872 2 0 0
## 15873 2 0 0
## 15874 2 0 0
## 15875 2 0 0
## 15876 2 0 0
## 15877 2 0 0
## 15878 2 0 0
## 15879 2 0 0
## 15880 2 0 0
## 15881 2 0 0
## 15882 2 0 0
## 15883 2 0 0
## 15884 2 0 0
## 15885 2 0 0
## 15886 2 0 0
## 15887 2 0 0
## 15888 2 0 0
## 15889 2 0 0
## 15890 2 0 0
## 15891 2 0 0
## 15892 2 0 0
## 15893 2 0 0
## 15894 2 0 0
## 15895 1 0 0
## 15896 2 0 0
## 15897 2 0 0
## 15898 1 0 0
## 15899 1 0 0
## 15900 2 0 0
## 15901 1 0 0
## 15902 1 0 0
## 15903 1 0 0
## 15904 2 1 0
## 15905 2 0 0
## 15906 2 0 0
## 15907 2 0 0
## 15908 2 0 0
## 15909 2 0 0
## 15910 2 0 0
## 15911 2 0 0
## 15912 2 0 0
## 15913 2 0 0
## 15914 2 0 0
## 15915 2 0 0
## 15916 2 0 0
## 15917 2 0 0
## 15918 2 0 0
## 15919 2 0 0
## 15920 2 0 0
## 15921 2 0 0
## 15922 2 0 0
## 15923 2 0 0
## 15924 2 0 0
## 15925 2 0 0
## 15926 2 0 0
## 15927 2 0 0
## 15928 2 0 0
## 15929 2 0 0
## 15930 2 0 0
## 15931 2 0 0
## 15932 2 0 0
## 15933 2 0 0
## 15934 2 0 0
## 15935 2 0 0
## 15936 2 0 0
## 15937 2 0 0
## 15938 2 0 0
## 15939 2 0 0
## 15940 2 0 0
## 15941 2 0 0
## 15942 2 0 0
## 15943 2 0 0
## 15944 2 0 0
## 15945 2 0 0
## 15946 2 0 0
## 15947 2 0 0
## 15948 2 0 0
## 15949 2 0 0
## 15950 2 0 0
## 15951 2 0 0
## 15952 2 0 0
## 15953 2 0 0
## 15954 2 0 0
## 15955 2 0 0
## 15956 2 0 0
## 15957 2 0 0
## 15958 2 0 0
## 15959 2 0 0
## 15960 2 0 0
## 15961 2 0 0
## 15962 2 0 0
## 15963 2 0 0
## 15964 2 0 0
## 15965 2 0 0
## 15966 2 0 0
## 15967 2 0 0
## 15968 2 0 0
## 15969 2 0 0
## 15970 2 0 0
## 15971 2 0 0
## 15972 2 0 0
## 15973 2 0 0
## 15974 2 0 0
## 15975 2 0 0
## 15976 2 0 0
## 15977 2 0 0
## 15978 2 0 0
## 15979 2 0 0
## 15980 2 0 0
## 15981 2 0 0
## 15982 2 0 0
## 15983 2 0 0
## 15984 2 0 0
## 15985 2 0 0
## 15986 1 0 0
## 15987 2 0 0
## 15988 1 0 0
## 15989 2 0 0
## 15990 1 0 0
## 15991 1 0 0
## 15992 1 0 0
## 15993 1 0 0
## 15994 1 0 0
## 15995 1 0 0
## 15996 1 0 0
## 15997 1 0 0
## 15998 1 0 0
## 15999 1 0 0
## 16000 2 0 0
## 16001 2 0 0
## 16002 2 0 0
## 16003 2 0 0
## 16004 2 0 0
## 16005 2 0 0
## 16006 2 0 0
## 16007 2 0 0
## 16008 2 0 0
## 16009 2 0 0
## 16010 1 0 0
## 16011 2 0 0
## 16012 2 1 0
## 16013 1 0 0
## 16014 1 0 0
## 16015 1 0 0
## 16016 1 0 0
## 16017 1 0 0
## 16018 1 0 0
## 16019 1 0 0
## 16020 1 0 0
## 16021 2 0 0
## 16022 1 0 0
## 16023 1 0 0
## 16024 2 0 0
## 16025 1 0 0
## 16026 2 0 0
## 16027 1 0 0
## 16028 1 0 0
## 16029 1 0 0
## 16030 1 0 0
## 16031 1 0 0
## 16032 1 0 0
## 16033 1 0 0
## 16034 1 0 0
## 16035 1 0 0
## 16036 1 0 0
## 16037 1 0 0
## 16038 1 0 0
## 16039 1 0 0
## 16040 1 0 0
## 16041 1 0 0
## 16042 1 0 0
## 16043 2 0 0
## 16044 1 0 0
## 16045 2 0 0
## 16046 1 1 0
## 16047 2 0 0
## 16048 2 0 0
## 16049 2 0 0
## 16050 2 0 0
## 16051 2 0 0
## 16052 2 0 0
## 16053 2 0 0
## 16054 2 0 0
## 16055 2 0 0
## 16056 2 0 0
## 16057 3 0 0
## 16058 3 0 0
## 16059 2 0 0
## 16060 2 2 0
## 16061 3 0 0
## 16062 2 0 0
## 16063 2 0 0
## 16064 2 0 0
## 16065 2 0 0
## 16066 2 0 0
## 16067 2 0 0
## 16068 2 0 0
## 16069 2 0 0
## 16070 2 0 0
## 16071 2 0 0
## 16072 2 0 0
## 16073 2 0 0
## 16074 2 0 0
## 16075 2 0 0
## 16076 2 0 0
## 16077 2 0 0
## 16078 2 0 0
## 16079 2 0 0
## 16080 2 0 0
## 16081 2 0 0
## 16082 2 0 0
## 16083 2 0 0
## 16084 2 0 0
## 16085 2 0 0
## 16086 2 0 0
## 16087 2 0 0
## 16088 2 0 0
## 16089 2 0 0
## 16090 2 0 0
## 16091 2 0 0
## 16092 2 1 0
## 16093 2 0 0
## 16094 2 0 0
## 16095 2 0 0
## 16096 2 0 0
## 16097 2 0 0
## 16098 2 0 0
## 16099 2 0 0
## 16100 2 0 0
## 16101 2 0 0
## 16102 2 0 0
## 16103 2 0 0
## 16104 2 0 0
## 16105 2 0 0
## 16106 2 0 0
## 16107 1 0 0
## 16108 1 0 0
## 16109 2 0 0
## 16110 2 0 0
## 16111 2 0 0
## 16112 2 0 0
## 16113 2 0 0
## 16114 2 0 0
## 16115 1 0 0
## 16116 1 0 0
## 16117 1 0 0
## 16118 1 0 0
## 16119 2 0 0
## 16120 1 0 0
## 16121 1 0 0
## 16122 1 0 0
## 16123 2 0 0
## 16124 2 0 0
## 16125 2 0 0
## 16126 2 0 0
## 16127 3 2 0
## 16128 2 0 0
## 16129 2 0 0
## 16130 1 0 0
## 16131 1 0 0
## 16132 2 0 0
## 16133 2 0 0
## 16134 2 0 0
## 16135 2 2 0
## 16136 2 0 0
## 16137 2 2 0
## 16138 2 1 0
## 16139 2 0 0
## 16140 2 0 0
## 16141 2 0 0
## 16142 2 0 0
## 16143 2 0 0
## 16144 2 0 0
## 16145 2 0 0
## 16146 2 0 0
## 16147 1 0 0
## 16148 2 0 0
## 16149 3 0 0
## 16150 2 0 0
## 16151 2 0 0
## 16152 2 0 0
## 16153 2 0 0
## 16154 2 0 0
## 16155 3 0 0
## 16156 3 0 0
## 16157 3 0 0
## 16158 2 0 0
## 16159 2 0 0
## 16160 3 0 0
## 16161 2 0 0
## 16162 2 0 0
## 16163 2 0 0
## 16164 2 0 0
## 16165 3 0 0
## 16166 3 0 0
## 16167 2 0 0
## 16168 2 0 0
## 16169 2 2 0
## 16170 2 0 0
## 16171 2 1 0
## 16172 2 0 0
## 16173 2 0 0
## 16174 2 0 0
## 16175 2 0 0
## 16176 2 0 0
## 16177 2 0 0
## 16178 2 0 0
## 16179 2 0 0
## 16180 2 0 0
## 16181 3 0 0
## 16182 2 0 0
## 16183 3 0 0
## 16184 2 0 0
## 16185 2 0 0
## 16186 2 0 0
## 16187 2 0 0
## 16188 2 2 0
## 16189 2 0 0
## 16190 1 0 0
## 16191 2 0 0
## 16192 2 1 0
## 16193 2 0 0
## 16194 2 0 0
## 16195 2 0 0
## 16196 2 0 0
## 16197 2 0 0
## 16198 2 0 0
## 16199 2 0 0
## 16200 2 0 0
## 16201 2 0 0
## 16202 2 0 0
## 16203 2 0 0
## 16204 2 0 0
## 16205 2 0 0
## 16206 2 0 0
## 16207 2 0 0
## 16208 2 1 0
## 16209 2 0 0
## 16210 2 0 0
## 16211 2 1 0
## 16212 2 0 0
## 16213 2 0 0
## 16214 2 0 0
## 16215 2 0 0
## 16216 2 0 0
## 16217 2 0 0
## 16218 2 0 0
## 16219 2 0 0
## 16220 2 0 0
## 16221 2 0 0
## 16222 1 0 0
## 16223 2 0 0
## 16224 2 0 0
## 16225 2 0 0
## 16226 3 0 0
## 16227 2 0 0
## 16228 1 0 0
## 16229 2 0 0
## 16230 2 0 0
## 16231 2 0 0
## 16232 2 0 0
## 16233 2 0 0
## 16234 2 0 0
## 16235 3 0 0
## 16236 2 0 0
## 16237 3 0 0
## 16238 2 0 0
## 16239 2 0 0
## 16240 2 0 0
## 16241 2 0 0
## 16242 2 0 0
## 16243 2 0 0
## 16244 2 0 0
## 16245 2 0 0
## 16246 2 0 0
## 16247 2 0 0
## 16248 2 0 0
## 16249 2 0 0
## 16250 2 0 0
## 16251 2 0 0
## 16252 2 2 0
## 16253 2 0 0
## 16254 2 0 0
## 16255 2 0 0
## 16256 2 0 0
## 16257 2 0 0
## 16258 2 0 0
## 16259 2 0 0
## 16260 2 0 0
## 16261 2 1 0
## 16262 2 1 0
## 16263 2 1 0
## 16264 1 0 0
## 16265 3 1 0
## 16266 2 0 0
## 16267 3 0 0
## 16268 2 0 0
## 16269 1 0 0
## 16270 2 0 0
## 16271 2 0 0
## 16272 2 0 0
## 16273 2 0 0
## 16274 2 0 0
## 16275 2 0 0
## 16276 2 0 0
## 16277 2 0 0
## 16278 2 0 0
## 16279 2 0 0
## 16280 2 0 0
## 16281 2 0 0
## 16282 2 0 0
## 16283 2 0 0
## 16284 2 0 0
## 16285 2 2 0
## 16286 2 0 0
## 16287 2 0 0
## 16288 2 0 0
## 16289 2 1 0
## 16290 2 0 0
## 16291 2 0 0
## 16292 2 0 0
## 16293 1 0 0
## 16294 1 0 0
## 16295 1 0 0
## 16296 2 0 0
## 16297 2 0 0
## 16298 2 0 0
## 16299 2 0 0
## 16300 2 0 0
## 16301 2 1 0
## 16302 2 0 0
## 16303 2 0 0
## 16304 2 1 0
## 16305 2 0 0
## 16306 2 0 0
## 16307 2 1 0
## 16308 2 0 0
## 16309 2 0 0
## 16310 2 0 0
## 16311 2 0 0
## 16312 3 0 0
## 16313 2 0 0
## 16314 2 0 0
## 16315 2 0 0
## 16316 2 0 0
## 16317 2 0 0
## 16318 2 0 0
## 16319 2 0 0
## 16320 2 0 0
## 16321 2 0 0
## 16322 2 0 0
## 16323 2 0 0
## 16324 2 0 0
## 16325 1 0 0
## 16326 2 0 0
## 16327 2 1 0
## 16328 2 0 0
## 16329 2 0 0
## 16330 2 0 0
## 16331 2 1 0
## 16332 2 0 0
## 16333 2 0 0
## 16334 1 0 0
## 16335 3 0 0
## 16336 2 0 0
## 16337 2 0 0
## 16338 2 0 0
## 16339 2 1 0
## 16340 2 0 0
## 16341 2 0 0
## 16342 2 0 0
## 16343 2 1 0
## 16344 2 2 0
## 16345 2 0 0
## 16346 2 0 0
## 16347 2 0 0
## 16348 2 0 0
## 16349 1 0 0
## 16350 2 0 0
## 16351 2 0 0
## 16352 2 0 0
## 16353 2 2 0
## 16354 2 0 0
## 16355 2 0 0
## 16356 2 0 0
## 16357 2 2 0
## 16358 2 0 0
## 16359 2 0 0
## 16360 2 1 0
## 16361 2 1 0
## 16362 2 0 0
## 16363 2 0 0
## 16364 2 2 0
## 16365 2 2 0
## 16366 2 0 0
## 16367 2 0 0
## 16368 3 0 0
## 16369 2 0 0
## 16370 2 0 0
## 16371 2 1 0
## 16372 2 0 0
## 16373 2 0 0
## 16374 2 0 0
## 16375 2 0 0
## 16376 2 0 0
## 16377 2 0 0
## 16378 2 0 0
## 16379 2 0 0
## 16380 2 0 0
## 16381 2 0 0
## 16382 2 0 0
## 16383 2 0 0
## 16384 3 0 0
## 16385 2 0 0
## 16386 2 0 0
## 16387 2 0 0
## 16388 2 0 0
## 16389 2 0 0
## 16390 2 0 0
## 16391 2 0 0
## 16392 2 0 0
## 16393 2 0 0
## 16394 2 0 0
## 16395 2 0 0
## 16396 2 0 0
## 16397 2 0 0
## 16398 2 0 0
## 16399 2 0 0
## 16400 2 1 0
## 16401 2 1 0
## 16402 2 0 0
## 16403 2 0 0
## 16404 2 0 0
## 16405 2 0 0
## 16406 2 0 0
## 16407 2 0 0
## 16408 2 0 0
## 16409 2 0 0
## 16410 2 0 0
## 16411 2 0 0
## 16412 2 0 0
## 16413 2 0 0
## 16414 2 0 0
## 16415 2 0 0
## 16416 2 0 0
## 16417 2 0 0
## 16418 2 0 0
## 16419 2 0 0
## 16420 2 0 0
## 16421 2 0 0
## 16422 2 0 0
## 16423 2 0 0
## 16424 2 0 0
## 16425 2 0 0
## 16426 2 0 0
## 16427 1 0 0
## 16428 1 0 0
## 16429 2 0 0
## 16430 2 0 0
## 16431 2 0 0
## 16432 2 0 0
## 16433 3 0 0
## 16434 3 0 0
## 16435 2 1 0
## 16436 2 0 0
## 16437 2 0 0
## 16438 2 0 0
## 16439 2 0 0
## 16440 1 0 0
## 16441 2 0 0
## 16442 2 0 0
## 16443 3 0 0
## 16444 2 1 0
## 16445 2 0 0
## 16446 2 0 0
## 16447 2 0 0
## 16448 2 0 0
## 16449 3 0 0
## 16450 2 1 0
## 16451 2 0 0
## 16452 2 0 0
## 16453 2 0 0
## 16454 2 0 0
## 16455 2 0 0
## 16456 2 0 0
## 16457 2 0 0
## 16458 2 0 0
## 16459 2 0 0
## 16460 2 0 0
## 16461 2 0 0
## 16462 2 0 0
## 16463 2 0 0
## 16464 2 0 0
## 16465 2 0 0
## 16466 2 0 0
## 16467 2 0 0
## 16468 2 0 0
## 16469 2 0 0
## 16470 2 0 0
## 16471 2 0 0
## 16472 2 0 0
## 16473 2 0 0
## 16474 2 0 0
## 16475 2 0 0
## 16476 2 0 0
## 16477 2 0 0
## 16478 2 0 0
## 16479 2 0 0
## 16480 2 0 0
## 16481 2 0 0
## 16482 2 0 0
## 16483 2 0 0
## 16484 2 0 0
## 16485 2 0 0
## 16486 2 0 0
## 16487 2 0 0
## 16488 2 0 0
## 16489 3 0 0
## 16490 2 0 0
## 16491 2 0 0
## 16492 2 0 0
## 16493 2 0 0
## 16494 2 2 0
## 16495 2 0 0
## 16496 2 0 0
## 16497 2 0 0
## 16498 2 0 0
## 16499 2 2 0
## 16500 1 0 0
## 16501 2 0 0
## 16502 3 0 0
## 16503 2 0 0
## 16504 2 0 0
## 16505 2 0 0
## 16506 2 1 0
## 16507 2 0 0
## 16508 2 0 0
## 16509 2 0 0
## 16510 2 0 0
## 16511 2 0 0
## 16512 2 0 0
## 16513 2 0 0
## 16514 2 0 0
## 16515 2 0 0
## 16516 2 0 0
## 16517 2 0 0
## 16518 2 0 0
## 16519 2 0 0
## 16520 2 0 0
## 16521 2 0 0
## 16522 2 0 0
## 16523 2 0 0
## 16524 2 1 0
## 16525 2 2 0
## 16526 2 0 0
## 16527 2 0 0
## 16528 2 0 0
## 16529 2 0 0
## 16530 2 0 0
## 16531 3 0 0
## 16532 2 0 0
## 16533 2 0 0
## 16534 2 0 0
## 16535 2 2 0
## 16536 2 0 0
## 16537 2 0 0
## 16538 2 0 0
## 16539 2 1 0
## 16540 2 0 0
## 16541 2 0 0
## 16542 2 0 0
## 16543 3 0 0
## 16544 2 0 0
## 16545 2 0 0
## 16546 2 0 0
## 16547 2 0 0
## 16548 1 0 0
## 16549 2 0 0
## 16550 2 1 0
## 16551 2 0 0
## 16552 2 0 0
## 16553 2 0 0
## 16554 2 1 0
## 16555 2 1 0
## 16556 2 2 0
## 16557 2 0 0
## 16558 2 0 0
## 16559 2 0 0
## 16560 2 0 0
## 16561 2 0 0
## 16562 2 2 0
## 16563 2 0 0
## 16564 1 0 0
## 16565 2 0 0
## 16566 2 0 0
## 16567 2 0 0
## 16568 2 0 0
## 16569 2 0 0
## 16570 2 0 0
## 16571 2 0 0
## 16572 2 0 0
## 16573 2 0 0
## 16574 2 0 0
## 16575 2 0 0
## 16576 2 0 0
## 16577 2 0 0
## 16578 3 0 0
## 16579 2 0 0
## 16580 2 0 0
## 16581 2 0 0
## 16582 2 0 0
## 16583 2 0 0
## 16584 2 1 0
## 16585 2 2 0
## 16586 2 0 0
## 16587 2 0 0
## 16588 2 1 0
## 16589 2 0 0
## 16590 2 0 0
## 16591 2 0 0
## 16592 2 1 0
## 16593 2 0 0
## 16594 2 0 0
## 16595 2 0 0
## 16596 2 0 0
## 16597 2 0 0
## 16598 1 0 0
## 16599 2 0 0
## 16600 1 0 0
## 16601 2 0 0
## 16602 2 0 0
## 16603 1 0 0
## 16604 2 0 0
## 16605 2 0 0
## 16606 2 0 0
## 16607 2 0 0
## 16608 2 0 0
## 16609 2 1 0
## 16610 2 0 0
## 16611 2 0 0
## 16612 2 0 0
## 16613 3 0 0
## 16614 2 0 0
## 16615 2 1 0
## 16616 2 0 0
## 16617 2 0 0
## 16618 2 0 0
## 16619 2 0 0
## 16620 1 0 0
## 16621 1 0 0
## 16622 1 0 0
## 16623 1 0 0
## 16624 1 0 0
## 16625 1 0 0
## 16626 2 1 0
## 16627 2 0 0
## 16628 2 2 0
## 16629 2 1 0
## 16630 2 0 0
## 16631 2 0 0
## 16632 2 0 0
## 16633 2 0 0
## 16634 2 0 0
## 16635 3 0 0
## 16636 2 0 0
## 16637 2 0 0
## 16638 2 2 0
## 16639 2 0 0
## 16640 2 0 0
## 16641 2 0 0
## 16642 2 0 0
## 16643 2 0 0
## 16644 2 0 0
## 16645 2 2 0
## 16646 2 1 0
## 16647 3 0 0
## 16648 2 0 0
## 16649 2 0 0
## 16650 2 0 0
## 16651 2 0 0
## 16652 2 0 0
## 16653 2 0 0
## 16654 2 0 0
## 16655 2 0 0
## 16656 3 0 0
## 16657 2 0 0
## 16658 2 2 0
## 16659 2 0 0
## 16660 2 0 0
## 16661 2 1 0
## 16662 2 0 0
## 16663 2 0 0
## 16664 2 1 0
## 16665 2 1 0
## 16666 2 1 0
## 16667 2 0 0
## 16668 3 0 0
## 16669 2 0 0
## 16670 1 0 0
## 16671 2 0 0
## 16672 2 1 0
## 16673 2 0 0
## 16674 2 0 0
## 16675 2 0 0
## 16676 2 0 0
## 16677 2 0 0
## 16678 2 0 0
## 16679 2 0 0
## 16680 2 0 0
## 16681 2 0 0
## 16682 2 0 0
## 16683 2 0 0
## 16684 2 0 0
## 16685 2 0 0
## 16686 2 0 0
## 16687 2 0 0
## 16688 2 0 0
## 16689 2 0 0
## 16690 2 0 0
## 16691 2 0 0
## 16692 2 0 0
## 16693 3 0 0
## 16694 2 0 0
## 16695 2 0 0
## 16696 2 0 0
## 16697 2 2 0
## 16698 2 0 0
## 16699 1 2 0
## 16700 2 0 0
## 16701 2 1 0
## 16702 2 0 0
## 16703 1 1 0
## 16704 2 0 0
## 16705 2 0 0
## 16706 2 0 0
## 16707 2 0 0
## 16708 2 0 0
## 16709 2 0 0
## 16710 2 0 0
## 16711 2 0 0
## 16712 2 0 0
## 16713 2 0 0
## 16714 2 0 0
## 16715 2 0 0
## 16716 2 0 0
## 16717 2 0 0
## 16718 2 0 0
## 16719 2 0 0
## 16720 1 0 0
## 16721 2 0 0
## 16722 2 1 0
## 16723 2 0 0
## 16724 2 1 0
## 16725 2 0 0
## 16726 1 0 0
## 16727 2 0 0
## 16728 2 0 0
## 16729 2 0 0
## 16730 3 0 0
## 16731 2 0 0
## 16732 2 0 0
## 16733 2 0 0
## 16734 2 0 0
## 16735 2 0 0
## 16736 2 0 0
## 16737 2 1 0
## 16738 2 0 0
## 16739 4 0 0
## 16740 2 0 0
## 16741 3 0 0
## 16742 2 1 0
## 16743 2 0 0
## 16744 1 1 0
## 16745 2 0 0
## 16746 3 0 0
## 16747 2 0 0
## 16748 2 0 0
## 16749 2 2 0
## 16750 2 0 0
## 16751 2 0 0
## 16752 2 0 0
## 16753 2 1 0
## 16754 2 0 0
## 16755 2 0 0
## 16756 2 0 0
## 16757 2 0 0
## 16758 2 0 0
## 16759 2 0 0
## 16760 2 0 0
## 16761 2 0 0
## 16762 2 0 0
## 16763 2 0 0
## 16764 3 0 0
## 16765 2 0 0
## 16766 2 0 0
## 16767 3 0 0
## 16768 2 0 0
## 16769 2 0 0
## 16770 2 0 0
## 16771 2 0 0
## 16772 2 0 0
## 16773 2 0 0
## 16774 2 0 0
## 16775 2 0 0
## 16776 2 0 0
## 16777 2 0 0
## 16778 2 1 0
## 16779 2 0 0
## 16780 2 2 0
## 16781 2 0 0
## 16782 2 0 0
## 16783 2 0 0
## 16784 2 0 0
## 16785 2 0 0
## 16786 2 0 0
## 16787 2 0 0
## 16788 2 0 0
## 16789 2 0 0
## 16790 2 0 0
## 16791 2 0 0
## 16792 2 0 0
## 16793 2 0 0
## 16794 2 1 0
## 16795 1 0 0
## 16796 2 0 0
## 16797 2 0 0
## 16798 2 0 0
## 16799 2 0 0
## 16800 2 0 0
## 16801 2 0 0
## 16802 2 0 0
## 16803 2 0 0
## 16804 2 0 0
## 16805 2 0 0
## 16806 2 0 0
## 16807 2 0 0
## 16808 2 0 0
## 16809 2 0 0
## 16810 2 0 0
## 16811 2 0 0
## 16812 2 0 0
## 16813 2 0 0
## 16814 2 0 0
## 16815 2 0 0
## 16816 2 0 0
## 16817 2 0 0
## 16818 2 0 0
## 16819 3 0 0
## 16820 2 0 0
## 16821 2 0 0
## 16822 2 0 0
## 16823 1 0 0
## 16824 2 0 0
## 16825 2 0 0
## 16826 2 0 0
## 16827 2 0 0
## 16828 2 0 0
## 16829 2 1 0
## 16830 2 0 0
## 16831 2 0 0
## 16832 2 0 0
## 16833 2 0 0
## 16834 2 0 0
## 16835 2 1 0
## 16836 2 0 0
## 16837 2 0 0
## 16838 1 0 0
## 16839 3 0 0
## 16840 2 0 0
## 16841 2 0 0
## 16842 2 0 0
## 16843 2 0 0
## 16844 2 1 0
## 16845 2 0 0
## 16846 2 0 0
## 16847 2 0 0
## 16848 2 0 0
## 16849 2 0 0
## 16850 2 2 0
## 16851 2 1 0
## 16852 2 2 0
## 16853 2 0 0
## 16854 2 0 0
## 16855 2 0 0
## 16856 2 0 0
## 16857 2 1 0
## 16858 3 0 0
## 16859 2 1 0
## 16860 2 1 0
## 16861 2 0 0
## 16862 2 0 0
## 16863 2 0 0
## 16864 2 0 0
## 16865 3 0 0
## 16866 2 0 0
## 16867 3 0 0
## 16868 2 1 0
## 16869 3 0 0
## 16870 2 1 0
## 16871 2 1 0
## 16872 2 0 0
## 16873 2 0 0
## 16874 2 0 0
## 16875 1 0 0
## 16876 2 0 0
## 16877 2 0 0
## 16878 2 0 0
## 16879 2 1 0
## 16880 2 1 0
## 16881 2 0 0
## 16882 2 0 0
## 16883 2 0 0
## 16884 2 0 0
## 16885 2 0 0
## 16886 2 0 0
## 16887 3 0 0
## 16888 2 0 0
## 16889 2 0 0
## 16890 2 0 0
## 16891 2 0 0
## 16892 2 0 0
## 16893 2 0 0
## 16894 2 0 0
## 16895 2 0 0
## 16896 2 0 0
## 16897 2 0 0
## 16898 2 0 0
## 16899 3 0 0
## 16900 2 0 0
## 16901 2 0 0
## 16902 1 0 0
## 16903 1 0 0
## 16904 2 0 0
## 16905 2 0 0
## 16906 2 0 0
## 16907 1 0 0
## 16908 2 0 0
## 16909 2 1 0
## 16910 2 1 0
## 16911 2 0 0
## 16912 2 0 0
## 16913 2 0 0
## 16914 1 0 0
## 16915 3 0 0
## 16916 1 0 0
## 16917 1 0 0
## 16918 2 0 0
## 16919 2 0 0
## 16920 2 0 0
## 16921 2 0 0
## 16922 2 0 0
## 16923 2 0 0
## 16924 2 0 0
## 16925 2 0 0
## 16926 2 0 0
## 16927 2 0 0
## 16928 2 0 0
## 16929 1 0 0
## 16930 2 2 0
## 16931 2 0 0
## 16932 2 0 0
## 16933 2 2 0
## 16934 2 0 0
## 16935 2 0 0
## 16936 2 0 0
## 16937 2 0 0
## 16938 2 0 0
## 16939 3 0 0
## 16940 2 0 0
## 16941 2 0 0
## 16942 2 0 0
## 16943 2 0 0
## 16944 2 0 0
## 16945 2 0 0
## 16946 1 0 0
## 16947 2 0 0
## 16948 2 0 0
## 16949 2 0 0
## 16950 2 0 0
## 16951 2 0 0
## 16952 2 0 0
## 16953 2 0 0
## 16954 2 0 0
## 16955 2 0 0
## 16956 2 0 0
## 16957 2 1 0
## 16958 2 0 0
## 16959 2 0 0
## 16960 2 0 0
## 16961 2 0 0
## 16962 2 0 0
## 16963 2 0 0
## 16964 2 0 0
## 16965 2 0 0
## 16966 2 0 0
## 16967 2 0 0
## 16968 2 0 0
## 16969 2 0 0
## 16970 2 0 0
## 16971 2 0 0
## 16972 2 0 0
## 16973 2 0 0
## 16974 2 0 0
## 16975 2 0 0
## 16976 2 0 0
## 16977 2 2 0
## 16978 2 0 0
## 16979 2 0 0
## 16980 3 0 0
## 16981 2 0 0
## 16982 3 0 0
## 16983 3 0 0
## 16984 2 0 0
## 16985 2 1 0
## 16986 3 0 0
## 16987 2 0 0
## 16988 2 2 0
## 16989 2 0 0
## 16990 2 0 0
## 16991 2 0 0
## 16992 2 0 0
## 16993 2 0 0
## 16994 2 0 0
## 16995 2 0 0
## 16996 2 0 0
## 16997 2 0 0
## 16998 2 2 0
## 16999 2 0 0
## 17000 3 0 0
## 17001 2 0 0
## 17002 2 0 0
## 17003 2 0 0
## 17004 2 1 0
## 17005 2 0 0
## 17006 2 1 0
## 17007 2 2 0
## 17008 2 0 0
## 17009 2 0 0
## 17010 2 0 0
## 17011 1 0 0
## 17012 1 0 0
## 17013 2 0 0
## 17014 2 0 0
## 17015 2 0 0
## 17016 2 0 0
## 17017 2 0 0
## 17018 2 0 0
## 17019 2 0 0
## 17020 1 0 0
## 17021 2 0 0
## 17022 2 2 0
## 17023 2 2 0
## 17024 2 0 0
## 17025 2 0 0
## 17026 3 0 0
## 17027 2 0 0
## 17028 2 0 0
## 17029 2 0 0
## 17030 2 0 0
## 17031 2 0 0
## 17032 2 0 0
## 17033 2 0 0
## 17034 2 0 0
## 17035 2 0 0
## 17036 2 0 0
## 17037 3 0 0
## 17038 3 0 0
## 17039 2 0 0
## 17040 2 0 0
## 17041 2 0 0
## 17042 2 0 0
## 17043 2 0 0
## 17044 3 0 0
## 17045 4 0 0
## 17046 2 0 0
## 17047 2 0 0
## 17048 2 0 0
## 17049 2 0 0
## 17050 2 0 0
## 17051 2 0 0
## 17052 2 0 0
## 17053 2 0 0
## 17054 2 0 0
## 17055 2 0 0
## 17056 2 0 0
## 17057 2 0 0
## 17058 2 0 0
## 17059 2 0 0
## 17060 2 0 0
## 17061 2 2 0
## 17062 2 0 0
## 17063 2 0 0
## 17064 2 0 0
## 17065 2 0 0
## 17066 3 0 0
## 17067 2 0 0
## 17068 2 0 0
## 17069 2 0 0
## 17070 2 0 0
## 17071 2 0 0
## 17072 2 0 0
## 17073 2 0 0
## 17074 2 0 0
## 17075 2 0 0
## 17076 2 0 0
## 17077 3 0 0
## 17078 2 1 0
## 17079 2 0 0
## 17080 2 0 0
## 17081 2 0 0
## 17082 3 0 0
## 17083 2 0 0
## 17084 1 0 0
## 17085 2 0 0
## 17086 2 0 0
## 17087 3 0 0
## 17088 3 0 0
## 17089 2 0 0
## 17090 2 3 0
## 17091 2 0 0
## 17092 2 0 0
## 17093 2 2 0
## 17094 2 0 0
## 17095 2 0 0
## 17096 2 1 0
## 17097 2 0 0
## 17098 2 0 0
## 17099 2 1 0
## 17100 2 0 0
## 17101 2 0 0
## 17102 3 2 0
## 17103 2 1 0
## 17104 2 0 0
## 17105 3 0 0
## 17106 2 2 0
## 17107 2 0 0
## 17108 1 0 0
## 17109 1 0 0
## 17110 2 0 0
## 17111 2 0 0
## 17112 3 0 0
## 17113 2 0 0
## 17114 1 0 0
## 17115 1 0 0
## 17116 1 0 0
## 17117 1 0 0
## 17118 1 0 0
## 17119 1 0 0
## 17120 1 0 0
## 17121 2 0 0
## 17122 2 2 0
## 17123 1 0 0
## 17124 2 0 0
## 17125 2 0 0
## 17126 2 0 0
## 17127 2 0 0
## 17128 2 0 0
## 17129 2 1 0
## 17130 2 0 0
## 17131 3 0 0
## 17132 2 0 0
## 17133 2 0 0
## 17134 2 0 0
## 17135 2 0 0
## 17136 2 0 0
## 17137 2 0 0
## 17138 2 0 0
## 17139 2 0 0
## 17140 2 0 0
## 17141 2 0 0
## 17142 2 0 0
## 17143 1 1 0
## 17144 2 0 0
## 17145 2 0 0
## 17146 2 0 0
## 17147 2 0 0
## 17148 2 0 0
## 17149 2 0 0
## 17150 2 0 0
## 17151 2 0 0
## 17152 2 0 0
## 17153 2 0 0
## 17154 2 0 0
## 17155 2 2 0
## 17156 2 0 0
## 17157 3 0 0
## 17158 2 2 0
## 17159 2 2 0
## 17160 2 1 0
## 17161 2 1 0
## 17162 2 0 0
## 17163 2 0 0
## 17164 2 0 0
## 17165 2 1 0
## 17166 2 0 0
## 17167 2 2 0
## 17168 2 0 0
## 17169 1 0 0
## 17170 2 0 0
## 17171 2 0 0
## 17172 2 0 0
## 17173 2 0 0
## 17174 2 0 0
## 17175 3 0 0
## 17176 2 0 0
## 17177 2 0 0
## 17178 2 1 0
## 17179 2 0 0
## 17180 2 0 0
## 17181 2 0 0
## 17182 2 0 0
## 17183 2 0 0
## 17184 3 0 0
## 17185 2 0 0
## 17186 2 0 0
## 17187 2 0 0
## 17188 2 0 0
## 17189 2 0 0
## 17190 2 0 0
## 17191 2 0 0
## 17192 2 0 0
## 17193 2 1 0
## 17194 2 0 0
## 17195 2 0 0
## 17196 2 0 0
## 17197 1 0 0
## 17198 2 0 0
## 17199 2 2 0
## 17200 2 0 0
## 17201 2 0 0
## 17202 3 0 0
## 17203 2 0 0
## 17204 2 0 0
## 17205 2 0 0
## 17206 2 0 0
## 17207 2 0 0
## 17208 2 0 0
## 17209 3 0 0
## 17210 2 0 0
## 17211 2 0 0
## 17212 2 0 0
## 17213 2 0 0
## 17214 2 0 0
## 17215 2 0 0
## 17216 1 0 0
## 17217 3 0 0
## 17218 2 0 0
## 17219 2 0 0
## 17220 2 0 0
## 17221 2 0 0
## 17222 2 1 0
## 17223 2 1 0
## 17224 2 0 0
## 17225 2 0 0
## 17226 2 0 0
## 17227 2 0 0
## 17228 2 0 0
## 17229 2 0 0
## 17230 2 0 0
## 17231 3 0 0
## 17232 2 0 0
## 17233 2 0 0
## 17234 2 0 0
## 17235 2 0 0
## 17236 1 0 0
## 17237 2 0 0
## 17238 2 0 0
## 17239 2 0 0
## 17240 2 0 0
## 17241 2 0 0
## 17242 2 0 0
## 17243 2 0 0
## 17244 2 0 0
## 17245 2 0 0
## 17246 2 0 0
## 17247 2 0 0
## 17248 2 0 0
## 17249 3 0 0
## 17250 2 0 0
## 17251 2 0 0
## 17252 2 0 0
## 17253 2 0 0
## 17254 3 0 0
## 17255 2 0 0
## 17256 2 0 0
## 17257 2 0 0
## 17258 2 0 0
## 17259 2 0 0
## 17260 2 0 0
## 17261 2 0 0
## 17262 2 1 0
## 17263 2 0 0
## 17264 2 0 0
## 17265 2 0 0
## 17266 2 1 0
## 17267 2 0 0
## 17268 2 0 0
## 17269 1 0 0
## 17270 2 0 0
## 17271 2 0 0
## 17272 2 0 0
## 17273 2 0 0
## 17274 2 0 0
## 17275 2 0 0
## 17276 2 0 0
## 17277 2 0 0
## 17278 2 0 0
## 17279 2 0 0
## 17280 2 0 0
## 17281 2 0 0
## 17282 2 0 0
## 17283 2 0 0
## 17284 2 0 0
## 17285 2 0 0
## 17286 2 0 0
## 17287 2 0 0
## 17288 2 0 0
## 17289 2 0 0
## 17290 2 0 0
## 17291 2 0 0
## 17292 2 0 0
## 17293 2 0 0
## 17294 2 0 0
## 17295 1 0 0
## 17296 1 0 0
## 17297 2 0 0
## 17298 2 0 0
## 17299 2 0 0
## 17300 2 0 0
## 17301 2 0 0
## 17302 2 0 0
## 17303 2 0 0
## 17304 2 0 0
## 17305 2 0 0
## 17306 3 0 0
## 17307 2 0 0
## 17308 2 0 0
## 17309 2 0 0
## 17310 1 0 0
## 17311 2 0 0
## 17312 2 1 0
## 17313 2 0 0
## 17314 2 0 0
## 17315 2 0 0
## 17316 2 0 0
## 17317 2 0 0
## 17318 2 0 0
## 17319 2 0 0
## 17320 2 0 0
## 17321 2 1 0
## 17322 2 0 0
## 17323 2 1 0
## 17324 2 0 0
## 17325 2 0 0
## 17326 2 1 0
## 17327 2 0 0
## 17328 2 0 0
## 17329 2 0 0
## 17330 2 0 0
## 17331 2 0 0
## 17332 2 0 0
## 17333 2 0 0
## 17334 2 1 0
## 17335 2 0 0
## 17336 2 0 0
## 17337 2 0 0
## 17338 2 0 0
## 17339 2 0 0
## 17340 3 0 0
## 17341 3 0 0
## 17342 2 0 0
## 17343 3 0 0
## 17344 2 0 0
## 17345 2 0 0
## 17346 2 0 0
## 17347 2 0 0
## 17348 2 0 0
## 17349 2 0 0
## 17350 4 0 0
## 17351 2 0 0
## 17352 3 0 0
## 17353 2 0 0
## 17354 2 0 0
## 17355 2 0 0
## 17356 2 0 0
## 17357 2 0 0
## 17358 2 0 0
## 17359 2 0 0
## 17360 2 0 0
## 17361 2 1 0
## 17362 2 0 0
## 17363 2 2 0
## 17364 2 2 0
## 17365 2 0 0
## 17366 2 0 0
## 17367 2 0 0
## 17368 1 0 0
## 17369 2 0 0
## 17370 2 0 0
## 17371 2 0 0
## 17372 2 0 0
## 17373 1 0 0
## 17374 1 0 0
## 17375 2 0 0
## 17376 2 1 0
## 17377 2 0 0
## 17378 2 0 0
## 17379 1 0 0
## 17380 2 0 0
## 17381 3 1 0
## 17382 1 0 0
## 17383 2 0 0
## 17384 3 0 0
## 17385 2 0 0
## 17386 2 0 0
## 17387 2 0 0
## 17388 1 0 0
## 17389 1 0 0
## 17390 1 0 0
## 17391 2 0 0
## 17392 2 0 0
## 17393 2 0 0
## 17394 2 0 0
## 17395 2 0 0
## 17396 2 0 0
## 17397 2 0 0
## 17398 2 0 0
## 17399 1 0 0
## 17400 2 0 0
## 17401 2 0 0
## 17402 1 0 0
## 17403 2 0 0
## 17404 2 0 0
## 17405 2 0 0
## 17406 1 0 0
## 17407 2 0 0
## 17408 3 0 0
## 17409 3 0 0
## 17410 2 0 0
## 17411 2 0 0
## 17412 2 0 0
## 17413 2 0 0
## 17414 2 0 0
## 17415 2 0 0
## 17416 2 0 0
## 17417 2 0 0
## 17418 2 0 0
## 17419 2 0 0
## 17420 2 0 0
## 17421 2 0 0
## 17422 2 0 0
## 17423 2 0 0
## 17424 2 0 0
## 17425 2 0 0
## 17426 2 0 0
## 17427 2 0 0
## 17428 2 0 0
## 17429 3 0 0
## 17430 3 0 0
## 17431 2 0 0
## 17432 2 0 0
## 17433 2 0 0
## 17434 2 0 0
## 17435 2 0 0
## 17436 2 0 0
## 17437 2 0 0
## 17438 2 0 0
## 17439 2 0 0
## 17440 2 0 0
## 17441 2 0 0
## 17442 2 0 0
## 17443 2 0 0
## 17444 2 0 0
## 17445 2 0 0
## 17446 2 2 0
## 17447 2 0 0
## 17448 2 0 0
## 17449 1 0 0
## 17450 2 0 0
## 17451 2 0 0
## 17452 2 0 0
## 17453 2 0 0
## 17454 2 0 0
## 17455 2 0 0
## 17456 2 0 0
## 17457 2 0 0
## 17458 2 0 0
## 17459 2 0 0
## 17460 2 1 0
## 17461 1 0 0
## 17462 1 0 0
## 17463 1 0 0
## 17464 1 0 0
## 17465 1 0 0
## 17466 2 0 0
## 17467 2 0 0
## 17468 2 2 0
## 17469 2 0 0
## 17470 2 0 0
## 17471 2 0 0
## 17472 2 0 0
## 17473 2 0 0
## 17474 2 0 0
## 17475 2 0 0
## 17476 1 0 0
## 17477 2 0 0
## 17478 2 0 0
## 17479 2 0 0
## 17480 3 0 0
## 17481 2 0 0
## 17482 2 0 0
## 17483 2 1 0
## 17484 3 0 0
## 17485 2 2 0
## 17486 2 0 0
## 17487 2 0 0
## 17488 2 0 0
## 17489 2 1 0
## 17490 2 0 0
## 17491 2 0 0
## 17492 2 0 0
## 17493 2 0 0
## 17494 2 0 0
## 17495 2 0 0
## 17496 2 0 0
## 17497 2 0 0
## 17498 2 0 0
## 17499 2 0 0
## 17500 1 0 0
## 17501 2 0 0
## 17502 2 0 0
## 17503 2 0 0
## 17504 2 0 0
## 17505 2 0 0
## 17506 2 0 0
## 17507 2 0 0
## 17508 2 0 0
## 17509 2 0 0
## 17510 2 0 0
## 17511 2 0 0
## 17512 1 0 0
## 17513 2 0 0
## 17514 2 0 0
## 17515 1 0 0
## 17516 1 0 0
## 17517 2 0 0
## 17518 2 0 0
## 17519 2 0 0
## 17520 2 0 0
## 17521 2 0 0
## 17522 1 0 0
## 17523 2 0 0
## 17524 2 0 0
## 17525 2 0 0
## 17526 3 0 0
## 17527 2 0 0
## 17528 2 0 0
## 17529 2 0 0
## 17530 2 0 0
## 17531 2 0 0
## 17532 2 0 0
## 17533 2 0 0
## 17534 2 0 0
## 17535 2 0 0
## 17536 2 0 0
## 17537 2 0 0
## 17538 1 0 0
## 17539 1 0 0
## 17540 2 1 0
## 17541 2 0 0
## 17542 2 0 0
## 17543 2 0 0
## 17544 2 0 0
## 17545 2 0 0
## 17546 2 0 0
## 17547 2 0 0
## 17548 2 0 0
## 17549 2 0 0
## 17550 2 0 0
## 17551 2 0 0
## 17552 2 0 0
## 17553 2 0 0
## 17554 2 0 0
## 17555 2 0 0
## 17556 2 0 0
## 17557 2 0 0
## 17558 2 0 0
## 17559 2 0 0
## 17560 2 0 0
## 17561 2 0 0
## 17562 2 0 0
## 17563 1 0 0
## 17564 2 0 0
## 17565 2 0 0
## 17566 2 0 0
## 17567 2 0 0
## 17568 2 0 0
## 17569 2 0 0
## 17570 2 0 0
## 17571 2 0 0
## 17572 2 0 0
## 17573 2 0 0
## 17574 2 0 0
## 17575 2 0 0
## 17576 2 0 0
## 17577 2 0 0
## 17578 2 0 0
## 17579 2 0 0
## 17580 2 0 0
## 17581 2 0 0
## 17582 2 0 0
## 17583 2 0 0
## 17584 2 0 0
## 17585 2 0 0
## 17586 2 0 0
## 17587 2 0 0
## 17588 2 0 0
## 17589 2 0 0
## 17590 1 0 0
## 17591 2 0 0
## 17592 2 0 0
## 17593 2 0 0
## 17594 2 0 0
## 17595 2 0 0
## 17596 2 0 0
## 17597 2 0 0
## 17598 2 0 0
## 17599 2 0 0
## 17600 2 0 0
## 17601 2 0 0
## 17602 2 0 0
## 17603 2 0 0
## 17604 2 0 0
## 17605 2 0 0
## 17606 1 0 0
## 17607 2 0 0
## 17608 2 0 0
## 17609 2 0 0
## 17610 3 0 0
## 17611 2 0 0
## 17612 1 0 0
## 17613 2 0 0
## 17614 2 0 0
## 17615 2 0 0
## 17616 1 0 0
## 17617 1 0 0
## 17618 1 0 0
## 17619 1 0 0
## 17620 1 0 0
## 17621 2 0 0
## 17622 2 0 0
## 17623 1 0 0
## 17624 2 0 0
## 17625 2 0 0
## 17626 2 0 0
## 17627 1 0 0
## 17628 2 0 0
## 17629 2 0 0
## 17630 1 0 0
## 17631 2 0 0
## 17632 2 0 0
## 17633 2 0 0
## 17634 2 0 0
## 17635 2 0 0
## 17636 1 0 0
## 17637 2 0 0
## 17638 2 0 0
## 17639 2 0 0
## 17640 2 0 0
## 17641 2 0 0
## 17642 2 0 0
## 17643 2 0 0
## 17644 2 0 0
## 17645 2 0 0
## 17646 2 0 0
## 17647 1 0 0
## 17648 1 0 0
## 17649 1 0 0
## 17650 1 0 0
## 17651 1 0 0
## 17652 1 0 0
## 17653 1 0 0
## 17654 1 0 0
## 17655 1 0 0
## 17656 1 0 0
## 17657 1 0 0
## 17658 2 0 0
## 17659 2 0 0
## 17660 2 0 0
## 17661 2 0 0
## 17662 2 0 0
## 17663 2 2 0
## 17664 2 0 0
## 17665 2 0 0
## 17666 2 0 0
## 17667 1 0 0
## 17668 2 0 0
## 17669 2 0 0
## 17670 2 0 0
## 17671 2 0 0
## 17672 2 0 0
## 17673 2 0 0
## 17674 2 0 0
## 17675 1 0 0
## 17676 2 2 0
## 17677 2 0 0
## 17678 2 0 0
## 17679 2 0 0
## 17680 2 0 0
## 17681 2 0 0
## 17682 1 0 0
## 17683 1 0 0
## 17684 2 0 0
## 17685 2 0 0
## 17686 2 0 0
## 17687 2 0 0
## 17688 2 0 0
## 17689 2 0 0
## 17690 2 0 0
## 17691 2 0 0
## 17692 2 0 0
## 17693 2 0 0
## 17694 2 0 0
## 17695 3 0 0
## 17696 2 0 0
## 17697 2 0 0
## 17698 2 0 0
## 17699 2 0 0
## 17700 2 0 0
## 17701 2 2 0
## 17702 2 0 0
## 17703 2 1 0
## 17704 2 0 0
## 17705 2 0 0
## 17706 2 0 0
## 17707 2 0 0
## 17708 2 0 0
## 17709 2 0 0
## 17710 2 0 0
## 17711 1 0 0
## 17712 2 0 0
## 17713 2 0 0
## 17714 2 0 0
## 17715 2 0 0
## 17716 2 0 0
## 17717 2 0 0
## 17718 2 0 0
## 17719 2 0 0
## 17720 1 0 0
## 17721 2 0 0
## 17722 2 0 0
## 17723 2 0 0
## 17724 2 0 0
## 17725 2 0 0
## 17726 1 0 0
## 17727 2 0 0
## 17728 2 0 0
## 17729 2 0 0
## 17730 2 0 0
## 17731 2 0 0
## 17732 2 0 0
## 17733 2 0 0
## 17734 1 0 0
## 17735 1 0 0
## 17736 2 0 0
## 17737 2 0 0
## 17738 2 0 0
## 17739 2 0 0
## 17740 2 2 0
## 17741 2 0 0
## 17742 2 0 0
## 17743 2 0 0
## 17744 2 0 0
## 17745 2 0 0
## 17746 2 0 0
## 17747 2 0 0
## 17748 2 0 0
## 17749 2 0 0
## 17750 2 0 0
## 17751 2 0 0
## 17752 2 0 0
## 17753 2 0 0
## 17754 2 0 0
## 17755 2 0 0
## 17756 2 0 0
## 17757 2 0 0
## 17758 1 0 0
## 17759 2 0 0
## 17760 2 0 0
## 17761 2 0 0
## 17762 2 0 0
## 17763 2 0 0
## 17764 2 0 0
## 17765 1 0 0
## 17766 2 0 0
## 17767 2 0 0
## 17768 2 0 0
## 17769 2 0 0
## 17770 2 0 0
## 17771 2 0 0
## 17772 2 0 0
## 17773 2 2 0
## 17774 2 0 0
## 17775 2 0 0
## 17776 2 0 0
## 17777 2 0 0
## 17778 2 0 0
## 17779 2 0 0
## 17780 2 0 0
## 17781 2 0 0
## 17782 2 0 0
## 17783 1 0 0
## 17784 1 0 0
## 17785 1 0 0
## 17786 2 0 0
## 17787 2 0 0
## 17788 2 0 0
## 17789 2 0 0
## 17790 2 0 0
## 17791 2 0 0
## 17792 2 0 0
## 17793 2 0 0
## 17794 2 0 0
## 17795 2 0 0
## 17796 2 0 0
## 17797 2 0 0
## 17798 2 0 0
## 17799 2 0 0
## 17800 2 0 0
## 17801 2 0 0
## 17802 2 0 0
## 17803 2 0 0
## 17804 2 0 0
## 17805 2 0 0
## 17806 2 0 0
## 17807 2 0 0
## 17808 1 0 0
## 17809 1 0 0
## 17810 2 0 0
## 17811 1 0 0
## 17812 2 0 0
## 17813 2 0 0
## 17814 2 0 0
## 17815 2 0 0
## 17816 2 0 0
## 17817 2 0 0
## 17818 2 0 0
## 17819 2 0 0
## 17820 2 0 0
## 17821 2 0 0
## 17822 2 0 0
## 17823 2 2 0
## 17824 2 0 0
## 17825 2 0 0
## 17826 2 0 0
## 17827 2 0 0
## 17828 2 0 0
## 17829 2 1 0
## 17830 2 0 0
## 17831 2 0 0
## 17832 2 0 0
## 17833 2 0 0
## 17834 2 0 0
## 17835 2 0 0
## 17836 2 0 0
## 17837 2 2 0
## 17838 2 0 0
## 17839 2 0 0
## 17840 2 0 0
## 17841 2 0 0
## 17842 2 0 0
## 17843 2 0 0
## 17844 2 0 0
## 17845 2 0 0
## 17846 2 0 0
## 17847 2 0 0
## 17848 2 0 0
## 17849 2 0 0
## 17850 2 0 0
## 17851 2 0 0
## 17852 2 0 0
## 17853 2 0 0
## 17854 2 0 0
## 17855 2 0 0
## 17856 2 0 0
## 17857 2 0 0
## 17858 2 0 0
## 17859 1 0 0
## 17860 1 0 0
## 17861 1 0 0
## 17862 1 0 0
## 17863 2 0 0
## 17864 2 0 0
## 17865 2 0 0
## 17866 2 0 0
## 17867 1 0 0
## 17868 2 0 0
## 17869 2 0 0
## 17870 2 0 0
## 17871 2 0 0
## 17872 2 0 0
## 17873 2 0 0
## 17874 2 0 0
## 17875 2 0 0
## 17876 2 0 0
## 17877 2 0 0
## 17878 2 0 0
## 17879 2 0 0
## 17880 2 0 0
## 17881 2 0 0
## 17882 1 0 0
## 17883 1 0 0
## 17884 1 0 0
## 17885 1 0 0
## 17886 2 0 0
## 17887 2 0 0
## 17888 2 0 0
## 17889 2 0 0
## 17890 2 0 0
## 17891 2 0 0
## 17892 2 0 0
## 17893 2 0 0
## 17894 2 1 0
## 17895 2 0 0
## 17896 1 0 0
## 17897 2 0 0
## 17898 2 0 0
## 17899 1 0 0
## 17900 2 0 0
## 17901 2 1 0
## 17902 2 0 0
## 17903 2 0 0
## 17904 2 1 0
## 17905 2 0 0
## 17906 2 0 0
## 17907 1 0 0
## 17908 1 0 0
## 17909 1 0 0
## 17910 2 0 0
## 17911 2 0 0
## 17912 3 0 0
## 17913 2 0 0
## 17914 2 0 0
## 17915 2 0 0
## 17916 2 0 0
## 17917 2 0 0
## 17918 2 0 0
## 17919 2 0 0
## 17920 2 0 0
## 17921 2 0 0
## 17922 2 0 0
## 17923 2 0 0
## 17924 2 0 0
## 17925 2 0 0
## 17926 2 0 0
## 17927 2 0 0
## 17928 2 0 0
## 17929 2 0 0
## 17930 2 0 0
## 17931 3 0 0
## 17932 2 0 0
## 17933 2 0 0
## 17934 2 0 0
## 17935 2 0 0
## 17936 2 0 0
## 17937 2 0 0
## 17938 1 0 0
## 17939 2 0 0
## 17940 2 0 0
## 17941 2 0 0
## 17942 2 0 0
## 17943 2 1 0
## 17944 1 0 0
## 17945 2 0 0
## 17946 2 0 0
## 17947 2 0 0
## 17948 1 0 0
## 17949 2 1 0
## 17950 2 0 0
## 17951 2 0 0
## 17952 2 0 0
## 17953 2 0 0
## 17954 1 0 0
## 17955 2 0 0
## 17956 2 0 0
## 17957 1 0 0
## 17958 2 0 0
## 17959 2 0 0
## 17960 2 0 0
## 17961 2 0 0
## 17962 2 0 0
## 17963 2 0 0
## 17964 2 0 0
## 17965 2 0 0
## 17966 2 0 0
## 17967 1 0 0
## 17968 2 2 0
## 17969 2 0 0
## 17970 2 0 0
## 17971 2 0 0
## 17972 2 0 0
## 17973 2 0 0
## 17974 2 0 0
## 17975 2 0 0
## 17976 2 0 0
## 17977 2 0 0
## 17978 2 0 0
## 17979 2 0 0
## 17980 2 0 0
## 17981 2 0 0
## 17982 1 0 0
## 17983 1 0 0
## 17984 1 0 0
## 17985 1 0 0
## 17986 2 0 0
## 17987 1 0 0
## 17988 1 0 0
## 17989 2 0 0
## 17990 2 0 0
## 17991 2 0 0
## 17992 2 0 0
## 17993 2 0 0
## 17994 2 0 0
## 17995 2 0 0
## 17996 3 0 0
## 17997 1 0 0
## 17998 1 0 0
## 17999 1 0 0
## 18000 2 0 0
## 18001 2 0 0
## 18002 2 0 0
## 18003 2 0 0
## 18004 2 0 0
## 18005 2 0 0
## 18006 2 0 0
## 18007 2 0 0
## 18008 2 0 0
## 18009 2 0 0
## 18010 2 0 0
## 18011 2 0 0
## 18012 1 0 0
## 18013 2 0 0
## 18014 2 0 0
## 18015 2 0 0
## 18016 2 0 0
## 18017 2 0 0
## 18018 2 0 0
## 18019 2 0 0
## 18020 2 0 0
## 18021 2 0 0
## 18022 1 0 0
## 18023 1 0 0
## 18024 1 0 0
## 18025 2 0 0
## 18026 2 0 0
## 18027 1 0 0
## 18028 2 0 0
## 18029 2 0 0
## 18030 2 0 0
## 18031 2 0 0
## 18032 2 0 0
## 18033 2 0 0
## 18034 2 0 0
## 18035 2 0 0
## 18036 2 0 0
## 18037 2 0 0
## 18038 2 0 0
## 18039 2 0 0
## 18040 2 0 0
## 18041 2 0 0
## 18042 2 0 0
## 18043 1 0 0
## 18044 2 0 0
## 18045 2 0 0
## 18046 2 0 0
## 18047 2 0 0
## 18048 2 0 0
## 18049 1 0 0
## 18050 2 0 0
## 18051 2 0 0
## 18052 2 0 0
## 18053 2 0 0
## 18054 1 0 0
## 18055 2 0 0
## 18056 2 0 0
## 18057 2 0 0
## 18058 2 0 0
## 18059 2 0 0
## 18060 1 0 0
## 18061 1 0 0
## 18062 2 0 0
## 18063 2 0 0
## 18064 2 0 0
## 18065 2 0 0
## 18066 1 0 0
## 18067 2 0 0
## 18068 2 0 0
## 18069 2 0 0
## 18070 2 0 0
## 18071 2 0 0
## 18072 2 0 0
## 18073 2 0 0
## 18074 2 0 0
## 18075 1 0 0
## 18076 1 0 0
## 18077 2 0 0
## 18078 2 0 0
## 18079 2 0 0
## 18080 1 0 0
## 18081 1 0 0
## 18082 2 0 0
## 18083 2 0 0
## 18084 2 0 0
## 18085 2 0 0
## 18086 2 0 0
## 18087 2 0 0
## 18088 2 0 0
## 18089 2 0 0
## 18090 2 0 0
## 18091 1 0 0
## 18092 2 0 0
## 18093 2 0 0
## 18094 2 0 0
## 18095 1 0 0
## 18096 2 0 0
## 18097 2 0 0
## 18098 2 0 0
## 18099 2 0 0
## 18100 2 0 0
## 18101 2 0 0
## 18102 2 0 0
## 18103 2 0 0
## 18104 2 0 0
## 18105 2 0 0
## 18106 2 0 0
## 18107 2 0 0
## 18108 1 0 0
## 18109 2 0 0
## 18110 2 0 0
## 18111 1 0 0
## 18112 2 0 0
## 18113 2 0 0
## 18114 2 0 0
## 18115 2 0 0
## 18116 2 0 0
## 18117 1 0 0
## 18118 2 0 0
## 18119 2 0 0
## 18120 2 0 0
## 18121 2 0 0
## 18122 2 0 0
## 18123 2 0 0
## 18124 2 0 0
## 18125 2 0 0
## 18126 2 0 0
## 18127 2 0 0
## 18128 2 0 0
## 18129 1 0 0
## 18130 1 0 0
## 18131 1 0 0
## 18132 1 0 0
## 18133 1 0 0
## 18134 1 0 0
## 18135 3 0 0
## 18136 1 0 0
## 18137 3 0 0
## 18138 2 0 0
## 18139 2 0 0
## 18140 2 0 0
## 18141 2 0 0
## 18142 2 0 0
## 18143 1 0 0
## 18144 2 0 0
## 18145 1 0 0
## 18146 1 0 0
## 18147 2 0 0
## 18148 2 0 0
## 18149 2 0 0
## 18150 3 0 0
## 18151 1 0 0
## 18152 2 0 0
## 18153 2 0 0
## 18154 2 0 0
## 18155 2 1 0
## 18156 1 0 0
## 18157 2 0 0
## 18158 2 0 0
## 18159 2 0 0
## 18160 1 0 0
## 18161 2 0 0
## 18162 2 0 0
## 18163 2 0 0
## 18164 2 0 0
## 18165 2 0 0
## 18166 2 0 0
## 18167 2 0 0
## 18168 2 0 0
## 18169 2 0 0
## 18170 2 0 0
## 18171 2 0 0
## 18172 2 0 0
## 18173 2 0 0
## 18174 1 0 0
## 18175 2 0 0
## 18176 2 0 0
## 18177 3 0 0
## 18178 2 0 0
## 18179 2 0 0
## 18180 2 0 0
## 18181 2 0 0
## 18182 2 0 0
## 18183 2 0 0
## 18184 2 0 0
## 18185 2 0 0
## 18186 2 0 0
## 18187 2 2 0
## 18188 2 0 0
## 18189 1 0 0
## 18190 2 0 0
## 18191 2 0 0
## 18192 2 0 0
## 18193 2 0 0
## 18194 2 0 0
## 18195 2 2 0
## 18196 2 0 0
## 18197 2 1 0
## 18198 2 0 0
## 18199 2 0 0
## 18200 2 0 0
## 18201 2 0 0
## 18202 1 0 0
## 18203 2 0 0
## 18204 1 0 0
## 18205 2 0 0
## 18206 1 0 0
## 18207 2 0 0
## 18208 2 0 0
## 18209 2 0 0
## 18210 2 0 0
## 18211 1 0 0
## 18212 1 0 0
## 18213 1 0 0
## 18214 2 0 0
## 18215 1 0 0
## 18216 1 0 0
## 18217 1 0 0
## 18218 1 0 0
## 18219 1 0 0
## 18220 1 0 0
## 18221 1 0 0
## 18222 1 0 0
## 18223 1 0 0
## 18224 1 0 0
## 18225 1 0 0
## 18226 2 0 0
## 18227 1 0 0
## 18228 1 0 0
## 18229 1 0 0
## 18230 1 0 0
## 18231 1 0 0
## 18232 1 0 0
## 18233 1 0 0
## 18234 1 0 0
## 18235 1 0 0
## 18236 1 0 0
## 18237 1 0 0
## 18238 1 0 0
## 18239 1 0 0
## 18240 2 0 0
## 18241 2 0 0
## 18242 1 0 0
## 18243 2 0 0
## 18244 2 0 0
## 18245 2 0 0
## 18246 2 0 0
## 18247 2 0 0
## 18248 2 0 0
## 18249 2 2 0
## 18250 1 0 0
## 18251 1 0 0
## 18252 1 0 0
## 18253 1 0 0
## 18254 1 0 0
## 18255 2 0 0
## 18256 2 0 0
## 18257 2 0 0
## 18258 2 0 0
## 18259 2 0 0
## 18260 1 0 0
## 18261 2 0 0
## 18262 2 0 0
## 18263 2 0 0
## 18264 1 0 0
## 18265 1 0 0
## 18266 1 0 0
## 18267 2 0 0
## 18268 2 0 0
## 18269 2 1 0
## 18270 1 0 0
## 18271 2 0 0
## 18272 2 0 0
## 18273 2 0 0
## 18274 2 0 0
## 18275 2 0 0
## 18276 2 0 0
## 18277 2 0 0
## 18278 2 0 0
## 18279 2 0 0
## 18280 1 0 0
## 18281 2 0 0
## 18282 2 0 0
## 18283 2 0 0
## 18284 2 0 0
## 18285 2 0 0
## 18286 2 0 0
## 18287 1 0 0
## 18288 1 0 0
## 18289 2 0 0
## 18290 2 0 0
## 18291 1 0 0
## 18292 2 0 0
## 18293 2 0 0
## 18294 2 0 0
## 18295 2 0 0
## 18296 2 0 0
## 18297 1 0 0
## 18298 2 0 0
## 18299 2 0 0
## 18300 2 0 0
## 18301 2 0 0
## 18302 2 0 0
## 18303 2 0 0
## 18304 2 0 0
## 18305 1 0 0
## 18306 1 0 0
## 18307 1 0 0
## 18308 2 0 0
## 18309 2 0 0
## 18310 2 0 0
## 18311 2 0 0
## 18312 2 0 0
## 18313 2 0 0
## 18314 2 0 0
## 18315 2 0 0
## 18316 1 0 0
## 18317 1 0 0
## 18318 2 0 0
## 18319 2 0 0
## 18320 2 0 0
## 18321 3 0 0
## 18322 2 0 0
## 18323 1 0 0
## 18324 2 0 0
## 18325 2 0 0
## 18326 1 0 0
## 18327 2 0 0
## 18328 2 0 0
## 18329 2 0 0
## 18330 1 0 0
## 18331 1 0 0
## 18332 2 0 0
## 18333 2 0 0
## 18334 2 0 0
## 18335 2 0 0
## 18336 2 0 0
## 18337 2 0 0
## 18338 2 0 0
## 18339 1 0 0
## 18340 2 0 0
## 18341 3 0 0
## 18342 2 0 0
## 18343 2 2 0
## 18344 2 0 0
## 18345 2 0 0
## 18346 2 0 0
## 18347 2 0 0
## 18348 2 0 0
## 18349 2 0 0
## 18350 1 0 0
## 18351 1 0 0
## 18352 2 0 0
## 18353 2 0 0
## 18354 2 0 0
## 18355 2 0 0
## 18356 2 0 0
## 18357 2 0 0
## 18358 2 0 0
## 18359 2 0 0
## 18360 2 0 0
## 18361 2 0 0
## 18362 2 0 0
## 18363 2 0 0
## 18364 2 0 0
## 18365 2 0 0
## 18366 2 0 0
## 18367 2 0 0
## 18368 1 0 0
## 18369 2 0 0
## 18370 2 0 0
## 18371 2 0 0
## 18372 2 0 0
## 18373 2 0 0
## 18374 2 0 0
## 18375 2 0 0
## 18376 2 0 0
## 18377 2 0 0
## 18378 2 0 0
## 18379 2 0 0
## 18380 2 0 0
## 18381 2 0 0
## 18382 2 0 0
## 18383 2 0 0
## 18384 2 0 0
## 18385 2 0 0
## 18386 3 0 0
## 18387 2 0 0
## 18388 3 0 0
## 18389 2 0 0
## 18390 1 0 0
## 18391 1 0 0
## 18392 1 0 0
## 18393 2 0 0
## 18394 2 0 0
## 18395 2 0 0
## 18396 2 0 0
## 18397 1 0 0
## 18398 2 0 0
## 18399 1 0 0
## 18400 3 0 0
## 18401 2 0 0
## 18402 2 0 0
## 18403 1 0 0
## 18404 1 0 0
## 18405 1 0 0
## 18406 1 0 0
## 18407 1 0 0
## 18408 2 0 0
## 18409 1 0 0
## 18410 2 0 0
## 18411 2 0 0
## 18412 2 0 0
## 18413 3 0 0
## 18414 2 0 0
## 18415 2 0 0
## 18416 2 0 0
## 18417 2 0 0
## 18418 1 0 0
## 18419 1 0 0
## 18420 1 0 0
## 18421 2 0 0
## 18422 2 0 0
## 18423 2 0 0
## 18424 1 0 0
## 18425 2 0 0
## 18426 1 0 0
## 18427 2 0 0
## 18428 1 0 0
## 18429 3 0 0
## 18430 1 0 0
## 18431 1 0 0
## 18432 2 0 0
## 18433 2 0 0
## 18434 2 0 0
## 18435 2 0 0
## 18436 2 0 0
## 18437 2 0 0
## 18438 2 0 0
## 18439 2 0 0
## 18440 2 0 0
## 18441 2 0 0
## 18442 2 0 0
## 18443 2 0 0
## 18444 2 0 0
## 18445 2 0 0
## 18446 2 0 0
## 18447 2 1 0
## 18448 2 0 0
## 18449 2 0 0
## 18450 2 0 0
## 18451 1 0 0
## 18452 2 0 0
## 18453 2 0 0
## 18454 2 0 0
## 18455 2 0 0
## 18456 1 0 0
## 18457 2 0 0
## 18458 1 0 0
## 18459 1 0 0
## 18460 1 0 0
## 18461 1 0 0
## 18462 1 0 0
## 18463 1 0 0
## 18464 1 0 0
## 18465 1 0 0
## 18466 2 0 0
## 18467 2 0 0
## 18468 2 0 0
## 18469 2 0 0
## 18470 2 0 0
## 18471 2 0 0
## 18472 2 0 0
## 18473 2 0 0
## 18474 2 0 0
## 18475 2 0 0
## 18476 2 0 0
## 18477 2 0 0
## 18478 2 0 0
## 18479 2 0 0
## 18480 1 0 0
## 18481 1 0 0
## 18482 2 0 0
## 18483 2 0 0
## 18484 1 0 0
## 18485 2 0 0
## 18486 2 0 0
## 18487 2 0 0
## 18488 2 0 0
## 18489 2 0 0
## 18490 2 0 0
## 18491 2 0 0
## 18492 1 0 0
## 18493 2 0 0
## 18494 1 0 0
## 18495 1 0 0
## 18496 1 0 0
## 18497 1 0 0
## 18498 1 0 0
## 18499 1 0 0
## 18500 1 0 0
## 18501 1 0 0
## 18502 1 0 0
## 18503 1 0 0
## 18504 1 0 0
## 18505 1 0 0
## 18506 1 0 0
## 18507 1 0 0
## 18508 1 0 0
## 18509 1 0 0
## 18510 2 0 0
## 18511 2 0 0
## 18512 1 0 0
## 18513 2 0 0
## 18514 1 0 0
## 18515 1 0 0
## 18516 1 0 0
## 18517 1 0 0
## 18518 1 0 0
## 18519 1 0 0
## 18520 3 1 0
## 18521 2 0 0
## 18522 2 0 0
## 18523 2 0 0
## 18524 2 0 0
## 18525 2 0 0
## 18526 2 1 0
## 18527 2 0 0
## 18528 2 2 0
## 18529 2 0 0
## 18530 2 0 0
## 18531 2 0 0
## 18532 1 0 0
## 18533 2 0 0
## 18534 2 0 0
## 18535 2 0 0
## 18536 1 0 0
## 18537 1 0 0
## 18538 1 0 0
## 18539 1 0 0
## 18540 1 0 0
## 18541 2 0 0
## 18542 2 0 0
## 18543 1 0 0
## 18544 1 0 0
## 18545 2 0 0
## 18546 2 0 0
## 18547 2 0 0
## 18548 2 0 0
## 18549 2 0 0
## 18550 2 0 0
## 18551 2 0 0
## 18552 2 0 0
## 18553 3 0 0
## 18554 2 0 0
## 18555 2 0 0
## 18556 2 0 0
## 18557 1 0 0
## 18558 2 0 0
## 18559 2 0 0
## 18560 2 0 0
## 18561 2 0 0
## 18562 2 0 0
## 18563 2 0 0
## 18564 1 0 0
## 18565 1 0 0
## 18566 1 0 0
## 18567 1 0 0
## 18568 1 0 0
## 18569 2 0 0
## 18570 1 0 0
## 18571 1 0 0
## 18572 2 0 0
## 18573 2 0 0
## 18574 1 0 0
## 18575 2 0 0
## 18576 2 0 0
## 18577 2 0 0
## 18578 1 0 0
## 18579 2 0 0
## 18580 1 0 0
## 18581 2 0 0
## 18582 2 0 0
## 18583 2 0 0
## 18584 1 0 0
## 18585 2 0 0
## 18586 2 0 0
## 18587 2 0 0
## 18588 1 0 0
## 18589 2 0 0
## 18590 2 0 0
## 18591 1 0 0
## 18592 2 0 0
## 18593 2 0 0
## 18594 2 0 0
## 18595 2 0 0
## 18596 2 0 0
## 18597 2 0 0
## 18598 2 0 0
## 18599 3 0 0
## 18600 2 0 0
## 18601 1 0 0
## 18602 1 0 0
## 18603 1 0 0
## 18604 2 0 0
## 18605 2 0 0
## 18606 2 0 0
## 18607 2 0 0
## 18608 2 0 0
## 18609 2 0 0
## 18610 2 0 0
## 18611 2 0 0
## 18612 1 0 0
## 18613 1 0 0
## 18614 1 0 0
## 18615 2 0 0
## 18616 2 0 0
## 18617 1 0 0
## 18618 1 0 0
## 18619 2 0 0
## 18620 2 0 0
## 18621 2 0 0
## 18622 1 0 0
## 18623 1 0 0
## 18624 1 0 0
## 18625 1 0 0
## 18626 1 0 0
## 18627 2 0 0
## 18628 1 0 0
## 18629 1 0 0
## 18630 1 0 0
## 18631 1 0 0
## 18632 1 0 0
## 18633 1 1 0
## 18634 1 0 0
## 18635 2 0 0
## 18636 1 0 0
## 18637 2 0 0
## 18638 1 0 0
## 18639 2 0 0
## 18640 1 0 0
## 18641 1 0 0
## 18642 2 0 0
## 18643 2 0 0
## 18644 2 0 0
## 18645 2 0 0
## 18646 1 0 0
## 18647 1 0 0
## 18648 2 0 0
## 18649 1 0 0
## 18650 1 0 0
## 18651 1 0 0
## 18652 1 0 0
## 18653 1 0 0
## 18654 2 0 0
## 18655 2 0 0
## 18656 1 0 0
## 18657 2 0 0
## 18658 1 0 0
## 18659 1 0 0
## 18660 1 0 0
## 18661 1 0 0
## 18662 2 0 0
## 18663 2 1 0
## 18664 1 0 0
## 18665 1 0 0
## 18666 1 0 0
## 18667 2 0 0
## 18668 1 0 0
## 18669 1 0 0
## 18670 1 0 0
## 18671 2 0 0
## 18672 2 0 0
## 18673 3 0 0
## 18674 1 0 0
## 18675 1 0 0
## 18676 1 0 0
## 18677 1 0 0
## 18678 1 0 0
## 18679 1 0 0
## 18680 2 1 0
## 18681 1 0 0
## 18682 1 0 0
## 18683 1 0 0
## 18684 2 0 0
## 18685 2 0 0
## 18686 1 0 0
## 18687 2 0 0
## 18688 1 0 0
## 18689 2 0 0
## 18690 2 0 0
## 18691 2 0 0
## 18692 1 0 0
## 18693 1 0 0
## 18694 1 0 0
## 18695 1 0 0
## 18696 1 0 0
## 18697 1 0 0
## 18698 1 0 0
## 18699 1 0 0
## 18700 1 0 0
## 18701 1 0 0
## 18702 1 0 0
## 18703 1 0 0
## 18704 1 0 0
## 18705 1 0 0
## 18706 1 0 0
## 18707 1 0 0
## 18708 1 0 0
## 18709 1 0 0
## 18710 1 0 0
## 18711 1 0 0
## 18712 1 0 0
## 18713 1 0 0
## 18714 1 0 0
## 18715 1 0 0
## 18716 1 0 0
## 18717 1 0 0
## 18718 1 0 0
## 18719 1 0 0
## 18720 1 0 0
## 18721 1 0 0
## 18722 1 0 0
## 18723 1 0 0
## 18724 1 0 0
## 18725 1 0 0
## 18726 1 0 0
## 18727 1 0 0
## 18728 2 0 0
## 18729 2 0 0
## 18730 1 0 0
## 18731 1 0 0
## 18732 1 0 0
## 18733 2 0 0
## 18734 2 0 0
## 18735 2 0 0
## 18736 2 0 0
## 18737 2 0 0
## 18738 2 0 0
## 18739 2 0 0
## 18740 2 0 0
## 18741 2 0 0
## 18742 2 2 0
## 18743 2 0 0
## 18744 2 0 0
## 18745 2 0 0
## 18746 2 0 0
## 18747 2 2 0
## 18748 2 0 0
## 18749 1 0 0
## 18750 1 0 0
## 18751 1 0 0
## 18752 2 0 0
## 18753 2 0 0
## 18754 2 0 0
## 18755 2 0 0
## 18756 2 0 0
## 18757 2 0 0
## 18758 2 0 0
## 18759 2 0 0
## 18760 2 0 0
## 18761 1 0 0
## 18762 1 0 0
## 18763 2 0 0
## 18764 2 0 0
## 18765 2 0 0
## 18766 1 0 0
## 18767 2 0 0
## 18768 2 0 0
## 18769 2 0 0
## 18770 1 0 0
## 18771 2 0 0
## 18772 2 0 0
## 18773 1 0 0
## 18774 2 0 0
## 18775 2 0 0
## 18776 2 1 0
## 18777 2 0 0
## 18778 2 0 0
## 18779 2 0 0
## 18780 1 0 0
## 18781 1 0 0
## 18782 2 0 0
## 18783 2 0 0
## 18784 2 0 0
## 18785 2 0 0
## 18786 2 1 0
## 18787 2 0 0
## 18788 2 0 0
## 18789 2 0 0
## 18790 2 0 0
## 18791 2 1 0
## 18792 1 0 0
## 18793 2 0 0
## 18794 2 0 0
## 18795 1 0 0
## 18796 2 0 0
## 18797 1 0 0
## 18798 1 0 0
## 18799 1 0 0
## 18800 1 0 0
## 18801 2 0 0
## 18802 1 0 0
## 18803 1 0 0
## 18804 1 0 0
## 18805 1 0 0
## 18806 1 0 0
## 18807 2 0 0
## 18808 1 0 0
## 18809 1 0 0
## 18810 2 0 0
## 18811 1 0 0
## 18812 1 0 0
## 18813 1 0 0
## 18814 2 0 0
## 18815 1 0 0
## 18816 1 0 0
## 18817 1 0 0
## 18818 1 0 0
## 18819 1 0 0
## 18820 2 0 0
## 18821 2 0 0
## 18822 2 0 0
## 18823 2 0 0
## 18824 2 0 0
## 18825 1 0 0
## 18826 1 0 0
## 18827 1 0 0
## 18828 2 0 0
## 18829 2 0 0
## 18830 1 0 0
## 18831 2 0 0
## 18832 2 0 0
## 18833 1 0 0
## 18834 2 0 0
## 18835 1 0 0
## 18836 2 0 0
## 18837 2 0 0
## 18838 2 0 0
## 18839 2 0 0
## 18840 2 0 0
## 18841 2 0 0
## 18842 2 0 0
## 18843 2 0 0
## 18844 2 0 0
## 18845 2 0 0
## 18846 2 0 0
## 18847 2 0 0
## 18848 2 0 0
## 18849 2 0 0
## 18850 2 0 0
## 18851 2 0 0
## 18852 2 0 0
## 18853 2 0 0
## 18854 2 0 0
## 18855 2 0 0
## 18856 2 0 0
## 18857 2 2 0
## 18858 2 0 0
## 18859 2 0 0
## 18860 2 0 0
## 18861 2 0 0
## 18862 2 1 0
## 18863 2 0 0
## 18864 1 0 0
## 18865 1 0 0
## 18866 2 0 0
## 18867 2 0 0
## 18868 2 0 0
## 18869 3 0 0
## 18870 2 0 0
## 18871 2 0 0
## 18872 2 0 0
## 18873 2 0 0
## 18874 2 0 0
## 18875 2 0 0
## 18876 2 0 0
## 18877 2 0 0
## 18878 2 0 0
## 18879 1 0 0
## 18880 2 0 0
## 18881 2 0 0
## 18882 2 0 0
## 18883 2 0 0
## 18884 2 0 0
## 18885 1 0 0
## 18886 2 0 0
## 18887 2 0 0
## 18888 2 0 0
## 18889 2 0 0
## 18890 1 0 0
## 18891 1 0 0
## 18892 1 0 0
## 18893 1 0 0
## 18894 2 0 0
## 18895 2 0 0
## 18896 1 0 0
## 18897 2 0 0
## 18898 1 0 0
## 18899 2 0 0
## 18900 3 0 0
## 18901 2 1 0
## 18902 1 0 0
## 18903 1 0 0
## 18904 2 0 0
## 18905 2 0 0
## 18906 2 0 0
## 18907 2 0 0
## 18908 3 0 0
## 18909 2 0 0
## 18910 2 0 0
## 18911 1 0 0
## 18912 1 0 0
## 18913 1 0 0
## 18914 2 0 0
## 18915 2 0 0
## 18916 2 0 0
## 18917 1 0 0
## 18918 2 0 0
## 18919 2 1 0
## 18920 1 0 0
## 18921 1 0 0
## 18922 2 0 0
## 18923 2 1 0
## 18924 1 0 0
## 18925 2 0 0
## 18926 1 0 0
## 18927 2 0 0
## 18928 2 0 0
## 18929 2 0 0
## 18930 2 0 0
## 18931 1 0 0
## 18932 2 0 0
## 18933 2 0 0
## 18934 2 0 0
## 18935 1 0 0
## 18936 1 0 0
## 18937 1 0 0
## 18938 1 0 0
## 18939 2 0 0
## 18940 2 0 0
## 18941 2 0 0
## 18942 1 0 0
## 18943 4 0 0
## 18944 2 0 0
## 18945 2 0 0
## 18946 1 0 0
## 18947 2 0 0
## 18948 2 0 0
## 18949 2 0 0
## 18950 1 0 0
## 18951 1 0 0
## 18952 2 2 0
## 18953 2 0 0
## 18954 1 0 0
## 18955 1 0 0
## 18956 1 0 0
## 18957 1 0 0
## 18958 1 0 0
## 18959 2 0 0
## 18960 2 0 0
## 18961 1 0 0
## 18962 1 0 0
## 18963 2 0 0
## 18964 2 0 0
## 18965 1 0 0
## 18966 1 0 0
## 18967 2 0 0
## 18968 2 0 0
## 18969 2 0 0
## 18970 2 0 0
## 18971 1 0 0
## 18972 1 0 0
## 18973 2 0 0
## 18974 1 0 0
## 18975 1 0 0
## 18976 1 0 0
## 18977 1 0 0
## 18978 2 0 0
## 18979 2 0 0
## 18980 1 0 0
## 18981 1 0 0
## 18982 1 0 0
## 18983 1 0 0
## 18984 1 0 0
## 18985 1 0 0
## 18986 2 0 0
## 18987 1 0 0
## 18988 1 0 0
## 18989 1 0 0
## 18990 2 0 0
## 18991 1 0 0
## 18992 1 0 0
## 18993 1 0 0
## 18994 1 0 0
## 18995 2 0 0
## 18996 2 0 0
## 18997 1 0 0
## 18998 2 0 0
## 18999 2 0 0
## 19000 1 0 0
## 19001 1 0 0
## 19002 1 0 0
## 19003 1 0 0
## 19004 1 0 0
## 19005 1 0 0
## 19006 1 0 0
## 19007 1 0 0
## 19008 2 0 0
## 19009 1 0 0
## 19010 1 0 0
## 19011 1 0 0
## 19012 2 0 0
## 19013 1 0 0
## 19014 1 0 0
## 19015 1 0 0
## 19016 1 0 0
## 19017 1 0 0
## 19018 2 0 0
## 19019 2 0 0
## 19020 1 0 0
## 19021 2 0 0
## 19022 1 0 0
## 19023 1 0 0
## 19024 1 0 0
## 19025 2 0 0
## 19026 1 0 0
## 19027 1 0 0
## 19028 1 0 0
## 19029 2 0 0
## 19030 2 0 0
## 19031 1 0 0
## 19032 2 2 0
## 19033 2 0 0
## 19034 2 0 0
## 19035 2 0 0
## 19036 2 0 0
## 19037 2 0 0
## 19038 2 1 0
## 19039 2 0 0
## 19040 2 0 0
## 19041 2 0 0
## 19042 2 0 0
## 19043 2 0 0
## 19044 2 0 0
## 19045 1 0 0
## 19046 2 0 0
## 19047 2 0 0
## 19048 2 0 0
## 19049 2 0 0
## 19050 2 0 0
## 19051 2 0 0
## 19052 2 0 0
## 19053 2 0 0
## 19054 2 0 0
## 19055 2 0 0
## 19056 2 0 0
## 19057 2 0 0
## 19058 2 0 0
## 19059 2 0 0
## 19060 2 0 0
## 19061 2 0 0
## 19062 2 0 0
## 19063 2 0 0
## 19064 2 0 0
## 19065 2 0 0
## 19066 2 0 0
## 19067 2 0 0
## 19068 2 0 0
## 19069 2 0 0
## 19070 2 0 0
## 19071 2 0 0
## 19072 2 0 0
## 19073 2 0 0
## 19074 2 0 0
## 19075 2 0 0
## 19076 1 0 0
## 19077 1 0 0
## 19078 1 0 0
## 19079 2 0 0
## 19080 1 0 0
## 19081 1 0 0
## 19082 1 0 0
## 19083 1 0 0
## 19084 2 0 0
## 19085 1 0 0
## 19086 1 0 0
## 19087 2 0 0
## 19088 2 0 0
## 19089 2 0 0
## 19090 2 0 0
## 19091 1 0 0
## 19092 2 0 0
## 19093 2 0 0
## 19094 2 0 0
## 19095 2 0 0
## 19096 2 0 0
## 19097 1 0 0
## 19098 2 0 0
## 19099 2 0 0
## 19100 1 0 0
## 19101 1 0 0
## 19102 1 0 0
## 19103 1 0 0
## 19104 1 0 0
## 19105 2 0 0
## 19106 2 0 0
## 19107 1 0 0
## 19108 1 0 0
## 19109 1 0 0
## 19110 1 0 0
## 19111 1 0 0
## 19112 1 0 0
## 19113 1 0 0
## 19114 1 0 0
## 19115 1 0 0
## 19116 1 0 0
## 19117 1 0 0
## 19118 1 0 0
## 19119 1 0 0
## 19120 1 0 0
## 19121 1 0 0
## 19122 1 0 0
## 19123 2 1 0
## 19124 1 0 0
## 19125 2 0 0
## 19126 2 0 0
## 19127 2 0 0
## 19128 2 0 0
## 19129 1 0 0
## 19130 1 0 0
## 19131 1 0 0
## 19132 2 0 0
## 19133 2 0 0
## 19134 2 0 0
## 19135 1 0 0
## 19136 1 0 0
## 19137 1 0 0
## 19138 1 0 0
## 19139 1 0 0
## 19140 1 0 0
## 19141 1 0 0
## 19142 2 0 0
## 19143 1 0 0
## 19144 1 0 0
## 19145 1 0 0
## 19146 1 0 0
## 19147 3 0 0
## 19148 1 0 0
## 19149 1 0 0
## 19150 1 0 0
## 19151 1 0 0
## 19152 2 0 0
## 19153 1 0 0
## 19154 1 0 0
## 19155 2 0 0
## 19156 1 0 0
## 19157 2 0 0
## 19158 1 0 0
## 19159 2 0 0
## 19160 1 0 0
## 19161 2 0 0
## 19162 2 0 0
## 19163 1 0 0
## 19164 1 0 0
## 19165 1 0 0
## 19166 1 0 0
## 19167 1 0 0
## 19168 2 0 0
## 19169 1 0 0
## 19170 2 0 0
## 19171 2 0 0
## 19172 2 0 0
## 19173 1 0 0
## 19174 2 0 0
## 19175 2 0 0
## 19176 2 0 0
## 19177 3 0 0
## 19178 1 0 0
## 19179 1 0 0
## 19180 1 0 0
## 19181 1 0 0
## 19182 1 0 0
## 19183 1 0 0
## 19184 1 0 0
## 19185 2 0 0
## 19186 2 0 0
## 19187 2 0 0
## 19188 1 0 0
## 19189 2 0 0
## 19190 1 0 0
## 19191 1 0 0
## 19192 1 0 0
## 19193 1 0 0
## 19194 2 0 0
## 19195 1 0 0
## 19196 1 0 0
## 19197 2 0 0
## 19198 1 0 0
## 19199 1 0 0
## 19200 2 0 0
## 19201 2 0 0
## 19202 2 0 0
## 19203 2 0 0
## 19204 1 0 0
## 19205 2 0 0
## 19206 2 0 0
## 19207 2 0 0
## 19208 2 0 0
## 19209 2 0 0
## 19210 2 0 0
## 19211 2 0 0
## 19212 2 0 0
## 19213 2 0 0
## 19214 2 0 0
## 19215 2 0 0
## 19216 1 0 0
## 19217 2 0 0
## 19218 2 0 0
## 19219 2 0 0
## 19220 2 0 0
## 19221 2 0 0
## 19222 2 0 0
## 19223 2 0 0
## 19224 2 0 0
## 19225 2 0 0
## 19226 2 0 0
## 19227 2 0 0
## 19228 2 0 0
## 19229 2 0 0
## 19230 2 0 0
## 19231 2 0 0
## 19232 2 0 0
## 19233 2 0 0
## 19234 2 0 0
## 19235 2 0 0
## 19236 2 0 0
## 19237 2 0 0
## 19238 2 0 0
## 19239 2 0 0
## 19240 2 0 0
## 19241 2 0 0
## 19242 1 0 0
## 19243 1 0 0
## 19244 1 0 0
## 19245 1 0 0
## 19246 2 0 0
## 19247 2 0 0
## 19248 2 0 0
## 19249 2 0 0
## 19250 2 0 0
## 19251 2 0 0
## 19252 2 0 0
## 19253 1 0 0
## 19254 2 0 0
## 19255 3 0 0
## 19256 3 0 0
## 19257 2 0 0
## 19258 2 0 0
## 19259 2 0 0
## 19260 2 0 0
## 19261 2 0 0
## 19262 2 0 0
## 19263 2 0 0
## 19264 2 0 0
## 19265 2 0 0
## 19266 1 0 0
## 19267 2 0 0
## 19268 2 0 0
## 19269 2 0 0
## 19270 2 0 0
## 19271 2 0 0
## 19272 2 0 0
## 19273 2 0 0
## 19274 2 0 0
## 19275 1 0 0
## 19276 2 0 0
## 19277 2 0 0
## 19278 2 0 0
## 19279 2 0 0
## 19280 2 2 0
## 19281 2 0 0
## 19282 2 0 0
## 19283 2 0 0
## 19284 2 0 0
## 19285 2 0 0
## 19286 2 0 0
## 19287 2 0 0
## 19288 1 0 0
## 19289 1 0 0
## 19290 1 0 0
## 19291 1 0 0
## 19292 2 0 0
## 19293 2 0 0
## 19294 2 0 0
## 19295 2 0 0
## 19296 2 0 0
## 19297 2 0 0
## 19298 2 0 0
## 19299 2 0 0
## 19300 2 0 0
## 19301 2 0 0
## 19302 1 0 0
## 19303 1 0 0
## 19304 1 0 0
## 19305 1 0 0
## 19306 1 0 0
## 19307 1 0 0
## 19308 2 0 0
## 19309 2 0 0
## 19310 2 2 0
## 19311 2 0 0
## 19312 1 0 0
## 19313 1 0 0
## 19314 2 0 0
## 19315 2 0 0
## 19316 2 0 0
## 19317 2 0 0
## 19318 1 0 0
## 19319 1 0 0
## 19320 1 0 0
## 19321 1 0 0
## 19322 1 0 0
## 19323 1 0 0
## 19324 1 0 0
## 19325 2 0 0
## 19326 1 0 0
## 19327 2 0 0
## 19328 2 0 0
## 19329 2 0 0
## 19330 2 0 0
## 19331 1 0 0
## 19332 1 0 0
## 19333 1 0 0
## 19334 1 0 0
## 19335 1 0 0
## 19336 1 0 0
## 19337 1 0 0
## 19338 1 0 0
## 19339 1 0 0
## 19340 1 0 0
## 19341 2 0 0
## 19342 2 0 0
## 19343 1 0 0
## 19344 1 0 0
## 19345 1 0 0
## 19346 1 0 0
## 19347 1 0 0
## 19348 2 0 0
## 19349 3 0 0
## 19350 2 0 0
## 19351 2 0 0
## 19352 2 0 0
## 19353 2 0 0
## 19354 1 0 0
## 19355 1 0 0
## 19356 1 0 0
## 19357 1 0 0
## 19358 1 0 0
## 19359 1 0 0
## 19360 1 0 0
## 19361 2 0 0
## 19362 1 0 0
## 19363 1 0 0
## 19364 1 0 0
## 19365 1 0 0
## 19366 1 0 0
## 19367 1 0 0
## 19368 1 0 0
## 19369 1 0 0
## 19370 1 0 0
## 19371 1 0 0
## 19372 1 0 0
## 19373 1 0 0
## 19374 2 0 0
## 19375 2 0 0
## 19376 1 0 0
## 19377 1 0 0
## 19378 1 0 0
## 19379 1 0 0
## 19380 1 0 0
## 19381 1 0 0
## 19382 1 0 0
## 19383 2 0 0
## 19384 2 1 0
## 19385 2 0 0
## 19386 1 0 0
## 19387 2 0 0
## 19388 2 0 0
## 19389 2 0 0
## 19390 2 0 0
## 19391 2 0 0
## 19392 2 0 0
## 19393 2 0 0
## 19394 2 0 0
## 19395 2 0 0
## 19396 2 0 0
## 19397 1 0 0
## 19398 1 0 0
## 19399 1 0 0
## 19400 1 0 0
## 19401 2 0 0
## 19402 2 0 0
## 19403 2 0 0
## 19404 1 0 0
## 19405 1 0 0
## 19406 1 0 0
## 19407 2 0 0
## 19408 2 0 0
## 19409 2 0 0
## 19410 2 0 0
## 19411 1 0 0
## 19412 2 0 0
## 19413 2 0 0
## 19414 2 0 0
## 19415 1 0 0
## 19416 1 0 0
## 19417 1 0 0
## 19418 1 0 0
## 19419 2 0 0
## 19420 2 0 0
## 19421 2 0 0
## 19422 2 0 0
## 19423 2 0 0
## 19424 2 0 0
## 19425 2 0 0
## 19426 1 0 0
## 19427 2 0 0
## 19428 2 0 0
## 19429 3 0 0
## 19430 1 0 0
## 19431 1 0 0
## 19432 2 0 0
## 19433 1 0 0
## 19434 1 0 0
## 19435 2 0 0
## 19436 1 0 0
## 19437 2 0 0
## 19438 2 0 0
## 19439 2 0 0
## 19440 2 0 0
## 19441 1 0 0
## 19442 2 0 0
## 19443 2 0 0
## 19444 2 0 0
## 19445 2 0 0
## 19446 2 0 0
## 19447 1 0 0
## 19448 2 0 0
## 19449 2 0 0
## 19450 2 0 0
## 19451 2 0 0
## 19452 2 0 0
## 19453 2 3 0
## 19454 2 3 0
## 19455 2 2 0
## 19456 2 2 0
## 19457 2 0 0
## 19458 2 0 0
## 19459 2 1 0
## 19460 2 1 0
## 19461 2 0 0
## 19462 2 0 0
## 19463 1 0 0
## 19464 2 0 0
## 19465 2 0 0
## 19466 2 0 0
## 19467 2 0 0
## 19468 2 0 0
## 19469 2 0 0
## 19470 2 0 0
## 19471 2 0 0
## 19472 2 0 0
## 19473 1 0 0
## 19474 2 0 0
## 19475 2 0 0
## 19476 2 0 0
## 19477 2 0 0
## 19478 2 0 0
## 19479 2 0 0
## 19480 2 0 0
## 19481 2 0 0
## 19482 2 0 0
## 19483 2 0 0
## 19484 3 0 0
## 19485 2 0 0
## 19486 2 0 0
## 19487 2 0 0
## 19488 2 0 0
## 19489 2 0 0
## 19490 2 0 0
## 19491 2 0 0
## 19492 2 0 0
## 19493 2 0 0
## 19494 2 0 0
## 19495 2 0 0
## 19496 2 0 0
## 19497 2 0 0
## 19498 2 0 0
## 19499 2 0 0
## 19500 3 0 0
## 19501 2 0 0
## 19502 2 0 0
## 19503 2 0 0
## 19504 2 0 0
## 19505 2 0 0
## 19506 2 0 0
## 19507 2 0 0
## 19508 2 0 0
## 19509 2 1 0
## 19510 2 0 0
## 19511 2 0 0
## 19512 2 0 0
## 19513 2 0 0
## 19514 1 0 0
## 19515 2 0 0
## 19516 2 0 0
## 19517 2 0 0
## 19518 2 0 0
## 19519 2 0 0
## 19520 2 0 0
## 19521 2 0 0
## 19522 2 0 0
## 19523 2 0 0
## 19524 2 0 0
## 19525 1 0 0
## 19526 2 0 0
## 19527 2 0 0
## 19528 2 0 0
## 19529 2 0 0
## 19530 2 0 0
## 19531 2 0 0
## 19532 2 0 0
## 19533 2 0 0
## 19534 2 2 0
## 19535 2 2 0
## 19536 2 0 0
## 19537 2 2 0
## 19538 2 0 0
## 19539 3 0 0
## 19540 2 0 0
## 19541 1 0 0
## 19542 1 0 0
## 19543 2 0 0
## 19544 1 0 0
## 19545 1 0 0
## 19546 1 0 0
## 19547 1 0 0
## 19548 2 0 0
## 19549 1 0 0
## 19550 2 0 0
## 19551 2 0 0
## 19552 2 0 0
## 19553 2 0 0
## 19554 3 0 0
## 19555 2 0 0
## 19556 2 0 0
## 19557 1 0 0
## 19558 1 0 0
## 19559 1 0 0
## 19560 2 0 0
## 19561 2 0 0
## 19562 2 0 0
## 19563 1 0 0
## 19564 1 0 0
## 19565 1 0 0
## 19566 2 0 0
## 19567 1 0 0
## 19568 1 0 0
## 19569 2 0 0
## 19570 1 0 0
## 19571 1 0 0
## 19572 1 0 0
## 19573 2 0 0
## 19574 2 0 0
## 19575 1 0 0
## 19576 2 0 0
## 19577 1 0 0
## 19578 1 0 0
## 19579 2 0 0
## 19580 2 0 0
## 19581 1 0 0
## 19582 2 0 0
## 19583 2 0 0
## 19584 2 0 0
## 19585 2 0 0
## 19586 2 0 0
## 19587 2 0 0
## 19588 2 0 0
## 19589 2 0 0
## 19590 2 0 0
## 19591 2 0 0
## 19592 2 0 0
## 19593 2 0 0
## 19594 1 0 0
## 19595 1 0 0
## 19596 1 0 0
## 19597 1 0 0
## 19598 2 0 0
## 19599 2 0 0
## 19600 1 0 0
## 19601 1 0 0
## 19602 2 2 0
## 19603 2 0 0
## 19604 1 0 0
## 19605 1 0 0
## 19606 2 0 0
## 19607 2 0 0
## 19608 2 2 0
## 19609 1 0 0
## 19610 1 0 0
## 19611 2 0 0
## 19612 2 0 0
## 19613 2 0 0
## 19614 2 0 0
## 19615 2 0 0
## 19616 2 0 0
## 19617 2 0 0
## 19618 2 0 0
## 19619 2 0 0
## 19620 2 0 0
## 19621 1 0 0
## 19622 2 0 0
## 19623 1 0 0
## 19624 1 0 0
## 19625 2 0 0
## 19626 1 0 0
## 19627 1 0 0
## 19628 1 0 0
## 19629 1 0 0
## 19630 1 0 0
## 19631 1 0 0
## 19632 1 0 0
## 19633 1 0 0
## 19634 1 0 0
## 19635 1 0 0
## 19636 1 0 0
## 19637 1 0 0
## 19638 1 0 0
## 19639 1 0 0
## 19640 1 0 0
## 19641 1 0 0
## 19642 1 0 0
## 19643 1 0 0
## 19644 1 0 0
## 19645 1 0 0
## 19646 1 0 0
## 19647 1 0 0
## 19648 1 0 0
## 19649 1 0 0
## 19650 1 0 0
## 19651 2 0 0
## 19652 1 0 0
## 19653 2 0 0
## 19654 1 0 0
## 19655 1 0 0
## 19656 1 0 0
## 19657 1 0 0
## 19658 1 0 0
## 19659 1 0 0
## 19660 1 0 0
## 19661 2 0 0
## 19662 1 0 0
## 19663 1 0 0
## 19664 1 0 0
## 19665 2 0 0
## 19666 1 0 0
## 19667 1 0 0
## 19668 1 0 0
## 19669 2 0 0
## 19670 1 0 0
## 19671 1 0 0
## 19672 1 0 0
## 19673 1 0 0
## 19674 1 0 0
## 19675 1 0 0
## 19676 1 0 0
## 19677 1 0 0
## 19678 2 0 0
## 19679 1 0 0
## 19680 2 0 0
## 19681 1 0 0
## 19682 2 0 0
## 19683 2 0 0
## 19684 1 0 0
## 19685 2 0 0
## 19686 2 0 0
## 19687 2 0 0
## 19688 2 0 0
## 19689 2 0 0
## 19690 2 0 0
## 19691 2 0 0
## 19692 2 0 0
## 19693 2 0 0
## 19694 2 0 0
## 19695 2 0 0
## 19696 2 0 0
## 19697 2 0 0
## 19698 2 0 0
## 19699 1 0 0
## 19700 2 0 0
## 19701 2 0 0
## 19702 2 0 0
## 19703 2 0 0
## 19704 2 0 0
## 19705 2 0 0
## 19706 2 0 0
## 19707 2 0 0
## 19708 2 0 0
## 19709 2 0 0
## 19710 2 0 0
## 19711 1 0 0
## 19712 2 0 0
## 19713 2 0 0
## 19714 1 0 0
## 19715 2 0 0
## 19716 2 0 0
## 19717 2 0 0
## 19718 2 0 0
## 19719 2 0 0
## 19720 2 0 0
## 19721 2 0 0
## 19722 2 0 0
## 19723 2 0 0
## 19724 2 0 0
## 19725 2 0 0
## 19726 2 0 0
## 19727 2 1 0
## 19728 3 2 0
## 19729 2 0 0
## 19730 2 0 0
## 19731 2 0 0
## 19732 1 0 0
## 19733 2 0 0
## 19734 2 0 0
## 19735 2 0 0
## 19736 2 0 0
## 19737 2 2 0
## 19738 2 0 0
## 19739 2 0 0
## 19740 2 0 0
## 19741 2 0 0
## 19742 2 0 0
## 19743 2 0 0
## 19744 2 0 0
## 19745 2 0 0
## 19746 2 0 0
## 19747 2 0 0
## 19748 2 1 0
## 19749 3 0 0
## 19750 2 0 0
## 19751 2 0 0
## 19752 2 0 0
## 19753 2 0 0
## 19754 2 0 0
## 19755 2 0 0
## 19756 2 0 0
## 19757 1 0 0
## 19758 1 0 0
## 19759 2 0 0
## 19760 2 0 0
## 19761 2 0 0
## 19762 2 0 0
## 19763 2 0 0
## 19764 2 0 0
## 19765 2 0 0
## 19766 2 0 0
## 19767 2 0 0
## 19768 2 0 0
## 19769 2 0 0
## 19770 2 0 0
## 19771 1 0 0
## 19772 1 0 0
## 19773 2 0 0
## 19774 2 0 0
## 19775 3 0 0
## 19776 2 0 0
## 19777 1 0 0
## 19778 2 0 0
## 19779 2 0 0
## 19780 2 0 0
## 19781 3 0 0
## 19782 3 0 0
## 19783 2 0 0
## 19784 1 0 0
## 19785 2 0 0
## 19786 2 0 0
## 19787 2 0 0
## 19788 2 0 0
## 19789 2 0 0
## 19790 2 0 0
## 19791 2 0 0
## 19792 2 0 0
## 19793 2 0 0
## 19794 2 0 0
## 19795 2 0 0
## 19796 2 2 0
## 19797 2 0 0
## 19798 2 0 0
## 19799 2 0 0
## 19800 2 0 0
## 19801 3 1 0
## 19802 2 2 0
## 19803 2 0 0
## 19804 2 0 0
## 19805 2 0 0
## 19806 2 0 0
## 19807 2 0 0
## 19808 1 0 0
## 19809 2 1 0
## 19810 2 0 0
## 19811 2 0 0
## 19812 2 0 0
## 19813 2 0 0
## 19814 2 2 0
## 19815 2 0 0
## 19816 2 0 0
## 19817 2 0 0
## 19818 2 0 0
## 19819 2 1 0
## 19820 2 0 0
## 19821 2 0 0
## 19822 2 0 0
## 19823 2 0 0
## 19824 2 0 0
## 19825 2 0 0
## 19826 2 0 0
## 19827 2 0 0
## 19828 2 0 0
## 19829 2 0 0
## 19830 2 1 0
## 19831 2 0 0
## 19832 2 0 0
## 19833 2 0 0
## 19834 2 0 0
## 19835 2 0 0
## 19836 2 0 0
## 19837 1 0 0
## 19838 1 0 0
## 19839 1 0 0
## 19840 1 0 0
## 19841 1 0 0
## 19842 1 0 0
## 19843 2 0 0
## 19844 2 0 0
## 19845 1 0 0
## 19846 2 0 0
## 19847 2 0 0
## 19848 1 0 0
## 19849 2 0 0
## 19850 2 0 0
## 19851 2 0 0
## 19852 2 0 0
## 19853 2 0 0
## 19854 1 0 0
## 19855 1 0 0
## 19856 2 0 0
## 19857 2 0 0
## 19858 1 0 0
## 19859 1 0 0
## 19860 1 0 0
## 19861 1 0 0
## 19862 1 0 0
## 19863 1 0 0
## 19864 1 0 0
## 19865 1 0 0
## 19866 1 0 0
## 19867 1 0 0
## 19868 2 0 0
## 19869 1 0 0
## 19870 2 0 0
## 19871 2 0 0
## 19872 1 0 0
## 19873 2 0 0
## 19874 1 0 0
## 19875 1 0 0
## 19876 2 0 0
## 19877 1 0 0
## 19878 1 0 0
## 19879 1 0 0
## 19880 2 0 0
## 19881 2 0 0
## 19882 1 0 0
## 19883 2 0 0
## 19884 2 0 0
## 19885 2 0 0
## 19886 2 0 0
## 19887 2 0 0
## 19888 2 0 0
## 19889 2 0 0
## 19890 2 0 0
## 19891 2 0 0
## 19892 2 0 0
## 19893 2 0 0
## 19894 2 0 0
## 19895 2 0 0
## 19896 2 0 0
## 19897 2 0 0
## 19898 2 0 0
## 19899 2 0 0
## 19900 2 0 0
## 19901 2 0 0
## 19902 2 0 0
## 19903 2 0 0
## 19904 2 0 0
## 19905 2 0 0
## 19906 2 0 0
## 19907 2 0 0
## 19908 2 0 0
## 19909 2 0 0
## 19910 2 0 0
## 19911 2 0 0
## 19912 2 0 0
## 19913 2 0 0
## 19914 2 0 0
## 19915 2 0 0
## 19916 2 0 0
## 19917 2 0 0
## 19918 2 0 0
## 19919 2 0 0
## 19920 2 0 0
## 19921 2 0 0
## 19922 2 0 0
## 19923 2 0 0
## 19924 2 0 0
## 19925 2 0 0
## 19926 2 0 0
## 19927 2 0 0
## 19928 2 0 0
## 19929 2 0 0
## 19930 2 0 0
## 19931 2 0 0
## 19932 2 0 0
## 19933 2 0 0
## 19934 2 0 0
## 19935 2 0 0
## 19936 2 0 0
## 19937 2 0 0
## 19938 2 0 0
## 19939 2 0 0
## 19940 2 0 0
## 19941 2 0 0
## 19942 2 0 0
## 19943 1 0 0
## 19944 1 0 0
## 19945 1 0 0
## 19946 1 0 0
## 19947 1 0 0
## 19948 2 0 0
## 19949 1 0 0
## 19950 1 0 0
## 19951 2 0 0
## 19952 1 0 0
## 19953 1 0 0
## 19954 1 0 0
## 19955 2 0 0
## 19956 1 0 0
## 19957 1 0 0
## 19958 2 0 0
## 19959 2 0 0
## 19960 2 0 0
## 19961 2 0 0
## 19962 3 0 0
## 19963 1 0 0
## 19964 2 0 0
## 19965 3 1 0
## 19966 1 0 0
## 19967 2 0 0
## 19968 2 0 0
## 19969 2 0 0
## 19970 2 0 0
## 19971 1 0 0
## 19972 2 0 0
## 19973 2 0 0
## 19974 2 0 0
## 19975 1 0 0
## 19976 2 0 0
## 19977 2 0 0
## 19978 2 0 0
## 19979 1 0 0
## 19980 2 0 0
## 19981 2 0 0
## 19982 2 0 0
## 19983 2 0 0
## 19984 2 2 0
## 19985 1 0 0
## 19986 2 0 0
## 19987 2 0 0
## 19988 2 0 0
## 19989 2 0 0
## 19990 2 2 0
## 19991 2 0 0
## 19992 2 0 0
## 19993 2 0 0
## 19994 2 0 0
## 19995 2 0 0
## 19996 2 0 0
## 19997 1 0 0
## 19998 2 0 0
## 19999 2 0 0
## 20000 1 0 0
## 20001 2 0 0
## 20002 2 0 0
## 20003 2 0 0
## 20004 2 1 0
## 20005 2 0 0
## 20006 3 1 0
## 20007 2 2 0
## 20008 2 1 0
## 20009 2 0 0
## 20010 2 0 0
## 20011 1 0 0
## 20012 2 0 0
## 20013 2 0 0
## 20014 2 0 0
## 20015 1 0 0
## 20016 2 0 0
## 20017 2 0 0
## 20018 2 0 0
## 20019 2 0 0
## 20020 2 0 0
## 20021 1 0 0
## 20022 2 0 0
## 20023 1 0 0
## 20024 1 0 0
## 20025 1 0 0
## 20026 2 0 0
## 20027 2 0 0
## 20028 1 0 0
## 20029 2 0 0
## 20030 2 0 0
## 20031 2 0 0
## 20032 2 0 0
## 20033 2 0 0
## 20034 2 0 0
## 20035 1 0 0
## 20036 1 0 0
## 20037 2 0 0
## 20038 1 0 0
## 20039 1 0 0
## 20040 2 0 0
## 20041 1 0 0
## 20042 1 0 0
## 20043 1 0 0
## 20044 2 0 0
## 20045 1 0 0
## 20046 2 0 0
## 20047 2 0 0
## 20048 1 0 0
## 20049 2 0 0
## 20050 1 0 0
## 20051 2 0 0
## 20052 1 0 0
## 20053 1 0 0
## 20054 1 0 0
## 20055 2 0 0
## 20056 1 0 0
## 20057 1 0 0
## 20058 1 0 0
## 20059 2 0 0
## 20060 2 0 0
## 20061 2 0 0
## 20062 1 0 0
## 20063 1 0 0
## 20064 1 0 0
## 20065 2 0 0
## 20066 2 0 0
## 20067 2 0 0
## 20068 2 0 0
## 20069 2 0 0
## 20070 1 0 0
## 20071 2 0 0
## 20072 2 0 0
## 20073 2 0 0
## 20074 2 0 0
## 20075 2 2 0
## 20076 2 0 0
## 20077 2 0 0
## 20078 1 0 0
## 20079 1 0 0
## 20080 1 0 0
## 20081 1 0 0
## 20082 1 0 0
## 20083 1 0 0
## 20084 1 0 0
## 20085 1 0 0
## 20086 1 0 0
## 20087 1 0 0
## 20088 1 0 0
## 20089 1 0 0
## 20090 1 0 0
## 20091 1 0 0
## 20092 1 0 0
## 20093 1 0 0
## 20094 2 0 0
## 20095 2 0 0
## 20096 2 0 0
## 20097 1 0 0
## 20098 1 0 0
## 20099 2 0 0
## 20100 1 0 0
## 20101 1 0 0
## 20102 1 0 0
## 20103 1 0 0
## 20104 1 0 0
## 20105 1 0 0
## 20106 1 0 0
## 20107 1 0 0
## 20108 1 0 0
## 20109 1 0 0
## 20110 2 0 0
## 20111 2 0 0
## 20112 2 0 0
## 20113 2 0 0
## 20114 1 0 0
## 20115 1 0 0
## 20116 2 0 0
## 20117 2 0 0
## 20118 2 0 0
## 20119 2 0 0
## 20120 2 0 0
## 20121 2 0 0
## 20122 2 0 0
## 20123 2 0 0
## 20124 2 0 0
## 20125 2 0 0
## 20126 2 0 0
## 20127 2 1 0
## 20128 1 0 0
## 20129 2 2 0
## 20130 2 0 0
## 20131 2 0 0
## 20132 2 0 0
## 20133 2 0 0
## 20134 1 0 0
## 20135 2 0 0
## 20136 2 0 0
## 20137 2 0 0
## 20138 2 0 0
## 20139 2 0 0
## 20140 2 0 0
## 20141 2 0 0
## 20142 2 0 0
## 20143 2 1 0
## 20144 2 0 0
## 20145 2 0 0
## 20146 2 0 0
## 20147 2 1 0
## 20148 2 0 0
## 20149 3 0 0
## 20150 1 0 0
## 20151 2 0 0
## 20152 2 0 0
## 20153 2 0 0
## 20154 2 0 0
## 20155 2 0 0
## 20156 2 0 0
## 20157 2 0 0
## 20158 2 0 0
## 20159 2 0 0
## 20160 2 0 0
## 20161 2 0 0
## 20162 2 0 0
## 20163 2 0 0
## 20164 2 0 0
## 20165 2 0 0
## 20166 1 0 0
## 20167 2 0 0
## 20168 1 0 0
## 20169 2 0 0
## 20170 1 0 0
## 20171 1 0 0
## 20172 2 0 0
## 20173 2 0 0
## 20174 2 1 0
## 20175 2 0 0
## 20176 2 0 0
## 20177 1 0 0
## 20178 1 0 0
## 20179 1 0 0
## 20180 2 0 0
## 20181 2 0 0
## 20182 2 0 0
## 20183 2 0 0
## 20184 2 0 0
## 20185 3 0 0
## 20186 2 0 0
## 20187 1 0 0
## 20188 1 0 0
## 20189 1 0 0
## 20190 1 0 0
## 20191 2 0 0
## 20192 2 0 0
## 20193 2 0 0
## 20194 1 0 0
## 20195 2 0 0
## 20196 2 0 0
## 20197 2 0 0
## 20198 2 1 0
## 20199 2 0 0
## 20200 2 0 0
## 20201 2 0 0
## 20202 2 1 0
## 20203 2 0 0
## 20204 2 0 0
## 20205 2 0 0
## 20206 2 0 0
## 20207 2 0 0
## 20208 2 2 0
## 20209 2 0 0
## 20210 1 0 0
## 20211 2 0 0
## 20212 2 2 0
## 20213 2 0 0
## 20214 2 0 0
## 20215 2 0 0
## 20216 2 0 0
## 20217 2 0 0
## 20218 2 1 0
## 20219 2 0 0
## 20220 2 0 0
## 20221 2 0 0
## 20222 2 0 0
## 20223 2 0 0
## 20224 2 0 0
## 20225 2 0 0
## 20226 2 1 0
## 20227 2 0 0
## 20228 2 1 0
## 20229 2 0 0
## 20230 1 0 0
## 20231 2 0 0
## 20232 1 0 0
## 20233 2 0 0
## 20234 2 0 0
## 20235 2 0 0
## 20236 2 0 0
## 20237 2 0 0
## 20238 2 0 0
## 20239 2 0 0
## 20240 2 0 0
## 20241 1 0 0
## 20242 2 0 0
## 20243 2 0 0
## 20244 2 0 0
## 20245 2 0 0
## 20246 2 2 0
## 20247 2 0 0
## 20248 2 0 0
## 20249 2 0 0
## 20250 2 0 0
## 20251 2 0 0
## 20252 2 2 0
## 20253 2 0 0
## 20254 1 0 0
## 20255 2 0 0
## 20256 2 0 0
## 20257 2 0 0
## 20258 2 0 0
## 20259 2 0 0
## 20260 2 0 0
## 20261 2 0 0
## 20262 2 0 0
## 20263 1 0 0
## 20264 1 0 0
## 20265 1 0 0
## 20266 1 0 0
## 20267 3 0 0
## 20268 2 0 0
## 20269 2 0 0
## 20270 2 0 0
## 20271 2 0 0
## 20272 2 0 0
## 20273 1 0 0
## 20274 2 0 0
## 20275 2 0 0
## 20276 2 0 0
## 20277 1 0 0
## 20278 2 0 0
## 20279 2 1 0
## 20280 2 0 0
## 20281 2 0 0
## 20282 2 0 0
## 20283 2 0 0
## 20284 1 0 0
## 20285 2 0 0
## 20286 2 0 0
## 20287 2 0 0
## 20288 2 0 0
## 20289 3 0 0
## 20290 1 0 0
## 20291 2 0 0
## 20292 2 0 0
## 20293 2 0 0
## 20294 2 0 0
## 20295 2 0 0
## 20296 1 0 0
## 20297 2 0 0
## 20298 2 0 0
## 20299 2 0 0
## 20300 1 0 0
## 20301 2 0 0
## 20302 2 0 0
## 20303 2 0 0
## 20304 1 0 0
## 20305 2 0 0
## 20306 2 0 0
## 20307 2 0 0
## 20308 2 0 0
## 20309 2 0 0
## 20310 2 0 0
## 20311 2 0 0
## 20312 1 0 0
## 20313 2 0 0
## 20314 2 0 0
## 20315 2 0 0
## 20316 1 0 0
## 20317 2 0 0
## 20318 2 0 0
## 20319 2 0 0
## 20320 2 0 0
## 20321 2 0 0
## 20322 1 0 0
## 20323 2 0 0
## 20324 2 0 0
## 20325 2 0 0
## 20326 2 0 0
## 20327 2 0 0
## 20328 2 0 0
## 20329 2 0 0
## 20330 2 1 0
## 20331 2 0 0
## 20332 2 0 0
## 20333 2 0 0
## 20334 3 0 0
## 20335 2 0 0
## 20336 2 0 0
## 20337 1 0 0
## 20338 2 0 0
## 20339 1 0 0
## 20340 1 0 0
## 20341 1 0 0
## 20342 2 0 0
## 20343 2 0 0
## 20344 2 0 0
## 20345 2 1 0
## 20346 2 0 0
## 20347 2 2 0
## 20348 2 0 0
## 20349 2 0 0
## 20350 2 1 0
## 20351 1 1 0
## 20352 3 0 0
## 20353 2 0 0
## 20354 2 0 0
## 20355 2 0 0
## 20356 2 0 0
## 20357 2 0 0
## 20358 1 0 0
## 20359 2 0 0
## 20360 2 1 0
## 20361 2 0 0
## 20362 2 0 0
## 20363 2 0 0
## 20364 2 0 0
## 20365 2 0 0
## 20366 2 0 0
## 20367 2 0 0
## 20368 2 0 0
## 20369 2 0 0
## 20370 2 0 0
## 20371 2 0 0
## 20372 2 0 0
## 20373 2 0 0
## 20374 2 0 0
## 20375 2 0 0
## 20376 2 0 0
## 20377 2 0 0
## 20378 2 0 0
## 20379 2 2 0
## 20380 2 0 0
## 20381 2 0 0
## 20382 2 0 0
## 20383 2 0 0
## 20384 2 0 0
## 20385 3 1 0
## 20386 3 1 0
## 20387 2 0 0
## 20388 2 0 0
## 20389 2 0 0
## 20390 2 0 0
## 20391 2 0 0
## 20392 2 0 0
## 20393 2 0 0
## 20394 2 0 0
## 20395 2 0 0
## 20396 2 1 0
## 20397 2 0 0
## 20398 2 0 0
## 20399 2 0 0
## 20400 2 0 0
## 20401 2 1 0
## 20402 2 0 0
## 20403 2 0 0
## 20404 2 0 0
## 20405 2 0 0
## 20406 2 0 0
## 20407 2 0 0
## 20408 2 0 0
## 20409 2 3 0
## 20410 2 2 0
## 20411 2 0 0
## 20412 2 0 0
## 20413 2 0 0
## 20414 2 0 0
## 20415 2 0 0
## 20416 2 0 0
## 20417 1 0 0
## 20418 1 0 0
## 20419 2 0 0
## 20420 2 0 0
## 20421 2 0 0
## 20422 2 0 0
## 20423 2 0 0
## 20424 2 0 0
## 20425 2 0 0
## 20426 2 0 0
## 20427 2 0 0
## 20428 2 0 0
## 20429 2 0 0
## 20430 2 0 0
## 20431 2 0 0
## 20432 2 0 0
## 20433 2 0 0
## 20434 2 0 0
## 20435 2 0 0
## 20436 2 0 0
## 20437 2 0 0
## 20438 1 0 0
## 20439 2 0 0
## 20440 2 0 0
## 20441 1 0 0
## 20442 2 0 0
## 20443 2 0 0
## 20444 2 0 0
## 20445 2 0 0
## 20446 1 0 0
## 20447 2 0 0
## 20448 2 0 0
## 20449 3 0 0
## 20450 2 0 0
## 20451 2 0 0
## 20452 2 0 0
## 20453 2 0 0
## 20454 2 0 0
## 20455 2 0 0
## 20456 2 0 0
## 20457 2 0 0
## 20458 2 0 0
## 20459 2 0 0
## 20460 2 0 0
## 20461 2 0 0
## 20462 2 0 0
## 20463 2 0 0
## 20464 2 0 0
## 20465 2 0 0
## 20466 2 0 0
## 20467 2 0 0
## 20468 2 0 0
## 20469 2 0 0
## 20470 2 0 0
## 20471 2 1 0
## 20472 2 1 0
## 20473 2 0 0
## 20474 2 0 0
## 20475 2 0 0
## 20476 2 0 0
## 20477 2 0 0
## 20478 2 0 0
## 20479 2 0 0
## 20480 2 0 0
## 20481 1 0 0
## 20482 2 0 0
## 20483 2 0 0
## 20484 2 0 0
## 20485 2 0 0
## 20486 2 0 0
## 20487 2 0 0
## 20488 2 0 0
## 20489 2 0 0
## 20490 2 0 0
## 20491 2 0 0
## 20492 3 0 0
## 20493 2 0 0
## 20494 2 0 0
## 20495 2 0 0
## 20496 2 0 0
## 20497 1 0 0
## 20498 2 0 0
## 20499 2 0 0
## 20500 2 0 0
## 20501 2 0 0
## 20502 2 0 0
## 20503 2 0 0
## 20504 2 0 0
## 20505 2 0 0
## 20506 2 0 0
## 20507 1 0 0
## 20508 2 0 0
## 20509 2 0 0
## 20510 2 0 0
## 20511 2 0 0
## 20512 2 0 0
## 20513 2 0 0
## 20514 2 0 0
## 20515 2 0 0
## 20516 2 0 0
## 20517 2 0 0
## 20518 2 0 0
## 20519 2 0 0
## 20520 2 0 0
## 20521 2 0 0
## 20522 2 0 0
## 20523 2 0 0
## 20524 2 0 0
## 20525 2 0 0
## 20526 2 0 0
## 20527 2 0 0
## 20528 2 0 0
## 20529 2 0 0
## 20530 1 0 0
## 20531 2 0 0
## 20532 1 0 0
## 20533 1 0 0
## 20534 1 0 0
## 20535 1 0 0
## 20536 2 0 0
## 20537 2 0 0
## 20538 1 0 0
## 20539 2 0 0
## 20540 1 0 0
## 20541 1 0 0
## 20542 2 0 0
## 20543 2 0 0
## 20544 2 0 0
## 20545 2 0 0
## 20546 2 0 0
## 20547 2 0 0
## 20548 2 0 0
## 20549 2 0 0
## 20550 2 0 0
## 20551 2 0 0
## 20552 1 0 0
## 20553 1 0 0
## 20554 2 0 0
## 20555 1 0 0
## 20556 1 0 0
## 20557 2 0 0
## 20558 2 0 0
## 20559 2 0 0
## 20560 1 0 0
## 20561 2 0 0
## 20562 2 0 0
## 20563 2 0 0
## 20564 2 0 0
## 20565 1 0 0
## 20566 1 0 0
## 20567 1 0 0
## 20568 1 0 0
## 20569 1 0 0
## 20570 1 0 0
## 20571 2 0 0
## 20572 2 0 0
## 20573 1 0 0
## 20574 2 0 0
## 20575 2 0 0
## 20576 2 0 0
## 20577 2 0 0
## 20578 2 0 0
## 20579 2 0 0
## 20580 2 0 0
## 20581 2 0 0
## 20582 2 0 0
## 20583 2 0 0
## 20584 2 0 0
## 20585 2 0 0
## 20586 2 0 0
## 20587 1 0 0
## 20588 1 0 0
## 20589 1 0 0
## 20590 2 0 0
## 20591 1 0 0
## 20592 3 0 0
## 20593 1 0 0
## 20594 2 0 0
## 20595 2 0 0
## 20596 2 0 0
## 20597 3 0 0
## 20598 2 0 0
## 20599 2 0 0
## 20600 2 0 0
## 20601 2 0 0
## 20602 2 0 0
## 20603 3 0 0
## 20604 2 0 0
## 20605 2 0 0
## 20606 2 0 0
## 20607 2 0 0
## 20608 2 0 0
## 20609 2 0 0
## 20610 2 0 0
## 20611 1 0 0
## 20612 2 0 0
## 20613 2 0 0
## 20614 2 0 0
## 20615 2 0 0
## 20616 2 0 0
## 20617 2 0 0
## 20618 1 0 0
## 20619 1 0 0
## 20620 2 0 0
## 20621 2 0 0
## 20622 2 0 0
## 20623 2 0 0
## 20624 2 0 0
## 20625 2 0 0
## 20626 2 0 0
## 20627 2 0 0
## 20628 2 0 0
## 20629 2 0 0
## 20630 1 0 0
## 20631 1 0 0
## 20632 2 0 0
## 20633 2 0 0
## 20634 1 0 0
## 20635 1 0 0
## 20636 1 0 0
## 20637 1 0 0
## 20638 1 0 0
## 20639 2 0 0
## 20640 2 0 0
## 20641 1 0 0
## 20642 1 0 0
## 20643 2 0 0
## 20644 2 0 0
## 20645 2 0 0
## 20646 2 0 0
## 20647 2 0 0
## 20648 2 0 0
## 20649 2 0 0
## 20650 2 0 0
## 20651 2 0 0
## 20652 2 0 0
## 20653 2 0 0
## 20654 2 0 0
## 20655 2 0 0
## 20656 2 0 0
## 20657 2 0 0
## 20658 1 0 0
## 20659 1 0 0
## 20660 1 0 0
## 20661 1 0 0
## 20662 1 0 0
## 20663 1 0 0
## 20664 2 0 0
## 20665 1 0 0
## 20666 1 0 0
## 20667 1 0 0
## 20668 1 0 0
## 20669 1 0 0
## 20670 1 0 0
## 20671 1 0 0
## 20672 1 0 0
## 20673 1 0 0
## 20674 1 0 0
## 20675 2 0 0
## 20676 2 0 0
## 20677 1 0 0
## 20678 1 0 0
## 20679 1 0 0
## 20680 2 0 0
## 20681 2 0 0
## 20682 2 0 0
## 20683 2 0 0
## 20684 1 0 0
## 20685 1 0 0
## 20686 2 0 0
## 20687 2 0 0
## 20688 1 0 0
## 20689 1 0 0
## 20690 1 0 0
## 20691 1 0 0
## 20692 1 0 0
## 20693 1 0 0
## 20694 1 0 0
## 20695 1 0 0
## 20696 1 0 0
## 20697 1 0 0
## 20698 2 0 0
## 20699 2 0 0
## 20700 1 0 0
## 20701 2 0 0
## 20702 2 0 0
## 20703 2 0 0
## 20704 1 0 0
## 20705 1 0 0
## 20706 2 0 0
## 20707 2 0 0
## 20708 2 0 0
## 20709 2 0 0
## 20710 2 0 0
## 20711 1 0 0
## 20712 1 0 0
## 20713 1 0 0
## 20714 2 0 0
## 20715 1 0 0
## 20716 2 0 0
## 20717 1 0 0
## 20718 2 0 0
## 20719 1 0 0
## 20720 1 0 0
## 20721 1 0 0
## 20722 1 0 0
## 20723 2 0 0
## 20724 2 0 0
## 20725 2 0 0
## 20726 2 0 0
## 20727 2 0 0
## 20728 1 0 0
## 20729 1 0 0
## 20730 1 0 0
## 20731 2 0 0
## 20732 1 0 0
## 20733 1 0 0
## 20734 2 0 0
## 20735 1 0 0
## 20736 2 0 0
## 20737 2 0 0
## 20738 1 0 0
## 20739 1 0 0
## 20740 2 0 0
## 20741 1 0 0
## 20742 1 0 0
## 20743 2 0 0
## 20744 2 0 0
## 20745 1 0 0
## 20746 1 0 0
## 20747 1 0 0
## 20748 2 0 0
## 20749 2 0 0
## 20750 1 0 0
## 20751 2 0 0
## 20752 2 2 0
## 20753 2 0 0
## 20754 2 0 0
## 20755 2 0 0
## 20756 2 0 0
## 20757 1 0 0
## 20758 2 0 0
## 20759 2 2 0
## 20760 2 0 0
## 20761 1 0 0
## 20762 2 0 0
## 20763 2 0 0
## 20764 2 0 0
## 20765 2 0 0
## 20766 1 0 0
## 20767 1 0 0
## 20768 2 0 0
## 20769 2 0 0
## 20770 1 0 0
## 20771 1 0 0
## 20772 1 0 0
## 20773 1 0 0
## 20774 1 0 0
## 20775 1 0 0
## 20776 2 0 0
## 20777 1 0 0
## 20778 1 0 0
## 20779 1 0 0
## 20780 1 0 0
## 20781 1 0 0
## 20782 1 0 0
## 20783 1 0 0
## 20784 1 0 0
## 20785 2 0 0
## 20786 1 0 0
## 20787 2 0 0
## 20788 2 0 0
## 20789 2 0 0
## 20790 2 0 0
## 20791 1 0 0
## 20792 2 0 0
## 20793 2 0 0
## 20794 2 0 0
## 20795 2 0 0
## 20796 2 0 0
## 20797 1 0 0
## 20798 2 0 0
## 20799 2 2 0
## 20800 2 0 0
## 20801 2 0 0
## 20802 2 0 0
## 20803 2 0 0
## 20804 2 1 0
## 20805 2 0 0
## 20806 2 2 0
## 20807 2 0 0
## 20808 2 0 0
## 20809 2 0 0
## 20810 2 0 0
## 20811 2 0 0
## 20812 2 0 0
## 20813 2 0 0
## 20814 2 0 0
## 20815 2 0 0
## 20816 2 0 0
## 20817 2 0 0
## 20818 2 0 0
## 20819 3 1 0
## 20820 1 0 0
## 20821 2 0 0
## 20822 2 0 0
## 20823 2 0 0
## 20824 2 1 0
## 20825 2 0 0
## 20826 2 0 0
## 20827 2 1 0
## 20828 3 0 0
## 20829 2 0 0
## 20830 2 0 0
## 20831 2 0 0
## 20832 2 0 0
## 20833 2 0 0
## 20834 2 0 0
## 20835 2 0 0
## 20836 2 0 0
## 20837 2 0 0
## 20838 2 0 0
## 20839 2 0 0
## 20840 1 0 0
## 20841 2 1 0
## 20842 2 0 0
## 20843 2 0 0
## 20844 1 0 0
## 20845 2 0 0
## 20846 2 0 0
## 20847 3 0 0
## 20848 2 0 0
## 20849 2 0 0
## 20850 2 0 0
## 20851 2 0 0
## 20852 2 0 0
## 20853 2 0 0
## 20854 2 0 0
## 20855 1 0 0
## 20856 1 0 0
## 20857 1 0 0
## 20858 1 0 0
## 20859 2 0 0
## 20860 1 0 0
## 20861 1 0 0
## 20862 1 0 0
## 20863 1 0 0
## 20864 1 0 0
## 20865 1 0 0
## 20866 1 0 0
## 20867 1 0 0
## 20868 1 0 0
## 20869 2 0 0
## 20870 2 0 0
## 20871 1 0 0
## 20872 1 0 0
## 20873 1 0 0
## 20874 2 0 0
## 20875 2 0 0
## 20876 1 0 0
## 20877 1 0 0
## 20878 1 0 0
## 20879 2 0 0
## 20880 2 0 0
## 20881 2 0 0
## 20882 2 0 0
## 20883 2 2 0
## 20884 1 0 0
## 20885 1 0 0
## 20886 1 0 0
## 20887 2 0 0
## 20888 1 0 0
## 20889 2 0 0
## 20890 2 0 0
## 20891 2 0 0
## 20892 2 0 0
## 20893 2 0 0
## 20894 2 0 0
## 20895 1 0 0
## 20896 2 0 0
## 20897 2 0 0
## 20898 2 0 0
## 20899 1 0 0
## 20900 2 0 0
## 20901 2 0 0
## 20902 2 0 0
## 20903 2 0 0
## 20904 2 0 0
## 20905 2 0 0
## 20906 2 0 0
## 20907 1 0 0
## 20908 2 0 0
## 20909 1 0 0
## 20910 1 0 0
## 20911 2 0 0
## 20912 1 0 0
## 20913 1 0 0
## 20914 1 0 0
## 20915 1 0 0
## 20916 1 0 0
## 20917 2 0 0
## 20918 1 0 0
## 20919 3 0 0
## 20920 2 0 0
## 20921 1 0 0
## 20922 2 1 0
## 20923 2 0 0
## 20924 1 0 0
## 20925 2 0 0
## 20926 1 0 0
## 20927 1 0 0
## 20928 2 0 0
## 20929 1 0 0
## 20930 1 0 0
## 20931 1 0 0
## 20932 1 0 0
## 20933 1 0 0
## 20934 2 0 0
## 20935 1 0 0
## 20936 1 0 0
## 20937 1 0 0
## 20938 1 0 0
## 20939 1 0 0
## 20940 1 0 0
## 20941 1 0 0
## 20942 1 0 0
## 20943 1 0 0
## 20944 1 0 0
## 20945 1 0 0
## 20946 2 0 0
## 20947 2 0 0
## 20948 1 0 0
## 20949 1 0 0
## 20950 1 0 0
## 20951 1 0 0
## 20952 1 0 0
## 20953 1 0 0
## 20954 1 0 0
## 20955 2 0 0
## 20956 2 0 0
## 20957 2 0 0
## 20958 2 0 0
## 20959 1 0 0
## 20960 2 0 0
## 20961 2 0 0
## 20962 2 1 0
## 20963 2 0 0
## 20964 2 0 0
## 20965 2 0 0
## 20966 2 0 0
## 20967 2 0 0
## 20968 1 0 0
## 20969 1 0 0
## 20970 2 0 0
## 20971 1 0 0
## 20972 2 0 0
## 20973 2 0 0
## 20974 2 0 0
## 20975 1 0 0
## 20976 2 0 0
## 20977 2 0 0
## 20978 2 1 0
## 20979 2 0 0
## 20980 2 0 0
## 20981 2 0 0
## 20982 2 0 0
## 20983 2 0 0
## 20984 2 0 0
## 20985 2 0 0
## 20986 1 0 0
## 20987 2 0 0
## 20988 2 0 0
## 20989 2 0 0
## 20990 2 0 0
## 20991 2 0 0
## 20992 2 0 0
## 20993 2 0 0
## 20994 2 0 0
## 20995 2 1 0
## 20996 2 0 0
## 20997 2 0 0
## 20998 2 0 0
## 20999 1 0 0
## 21000 2 0 0
## 21001 2 0 0
## 21002 2 0 0
## 21003 2 0 0
## 21004 2 0 0
## 21005 2 0 0
## 21006 2 0 0
## 21007 2 0 0
## 21008 2 0 0
## 21009 2 0 0
## 21010 2 0 0
## 21011 2 0 0
## 21012 2 0 0
## 21013 2 0 0
## 21014 1 0 0
## 21015 1 0 0
## 21016 1 0 0
## 21017 2 0 0
## 21018 2 0 0
## 21019 3 1 0
## 21020 2 0 0
## 21021 2 0 0
## 21022 2 0 0
## 21023 1 0 0
## 21024 2 0 0
## 21025 1 0 0
## 21026 2 0 0
## 21027 2 0 0
## 21028 2 0 0
## 21029 2 0 0
## 21030 2 0 0
## 21031 1 0 0
## 21032 2 0 0
## 21033 1 0 0
## 21034 1 0 0
## 21035 1 0 0
## 21036 1 0 0
## 21037 2 0 0
## 21038 1 0 0
## 21039 1 0 0
## 21040 1 0 0
## 21041 1 0 0
## 21042 1 0 0
## 21043 1 0 0
## 21044 2 0 0
## 21045 2 0 0
## 21046 2 0 0
## 21047 2 0 0
## 21048 2 0 0
## 21049 2 0 0
## 21050 3 0 0
## 21051 2 0 0
## 21052 1 0 0
## 21053 1 0 0
## 21054 1 0 0
## 21055 1 0 0
## 21056 1 0 0
## 21057 1 0 0
## 21058 1 0 0
## 21059 1 0 0
## 21060 1 0 0
## 21061 1 0 0
## 21062 2 0 0
## 21063 1 0 0
## 21064 1 0 0
## 21065 1 0 0
## 21066 2 0 0
## 21067 1 0 0
## 21068 1 0 0
## 21069 1 0 0
## 21070 1 0 0
## 21071 2 0 0
## 21072 1 0 0
## 21073 2 0 0
## 21074 1 0 0
## 21075 1 0 0
## 21076 3 1 0
## 21077 3 0 0
## 21078 3 0 0
## 21079 1 0 0
## 21080 1 0 0
## 21081 2 0 0
## 21082 1 0 0
## 21083 1 0 0
## 21084 2 0 0
## 21085 1 0 0
## 21086 2 0 0
## 21087 2 0 0
## 21088 2 0 0
## 21089 1 0 0
## 21090 2 0 0
## 21091 1 0 0
## 21092 1 0 0
## 21093 2 0 0
## 21094 2 0 0
## 21095 1 0 0
## 21096 1 0 0
## 21097 1 0 0
## 21098 1 0 0
## 21099 1 0 0
## 21100 1 0 0
## 21101 1 0 0
## 21102 1 0 0
## 21103 1 0 0
## 21104 1 0 0
## 21105 1 0 0
## 21106 1 0 0
## 21107 1 0 0
## 21108 1 0 0
## 21109 1 0 0
## 21110 1 0 0
## 21111 1 0 0
## 21112 1 0 0
## 21113 1 0 0
## 21114 1 0 0
## 21115 1 0 0
## 21116 1 0 0
## 21117 1 0 0
## 21118 1 0 0
## 21119 2 0 0
## 21120 1 0 0
## 21121 1 0 0
## 21122 2 0 0
## 21123 2 0 0
## 21124 2 0 0
## 21125 1 0 0
## 21126 2 0 0
## 21127 2 0 0
## 21128 2 2 0
## 21129 2 0 0
## 21130 1 1 0
## 21131 2 0 0
## 21132 2 0 0
## 21133 2 0 0
## 21134 2 2 0
## 21135 2 2 0
## 21136 2 2 0
## 21137 2 0 0
## 21138 2 0 0
## 21139 1 0 0
## 21140 2 0 0
## 21141 1 0 0
## 21142 2 0 0
## 21143 2 0 0
## 21144 1 0 0
## 21145 2 0 0
## 21146 1 0 0
## 21147 2 0 0
## 21148 2 0 0
## 21149 2 0 0
## 21150 2 0 0
## 21151 2 0 0
## 21152 1 0 0
## 21153 1 0 0
## 21154 2 0 0
## 21155 2 0 0
## 21156 2 0 0
## 21157 1 0 0
## 21158 1 0 0
## 21159 1 0 0
## 21160 2 0 0
## 21161 2 0 0
## 21162 2 0 0
## 21163 2 0 0
## 21164 2 0 0
## 21165 2 0 0
## 21166 2 0 0
## 21167 2 0 0
## 21168 2 1 0
## 21169 3 1 0
## 21170 2 1 0
## 21171 2 0 0
## 21172 1 0 0
## 21173 3 0 0
## 21174 2 2 0
## 21175 1 0 0
## 21176 1 0 0
## 21177 2 2 0
## 21178 2 0 0
## 21179 2 0 0
## 21180 2 0 0
## 21181 2 0 0
## 21182 2 0 0
## 21183 2 0 0
## 21184 2 0 0
## 21185 2 0 0
## 21186 2 0 0
## 21187 2 0 0
## 21188 2 0 0
## 21189 2 0 0
## 21190 2 0 0
## 21191 2 0 0
## 21192 2 0 0
## 21193 2 0 0
## 21194 2 0 0
## 21195 2 0 0
## 21196 2 0 0
## 21197 2 0 0
## 21198 2 0 0
## 21199 2 0 0
## 21200 2 0 0
## 21201 2 0 0
## 21202 2 1 0
## 21203 2 0 0
## 21204 2 0 0
## 21205 2 0 0
## 21206 1 0 0
## 21207 2 0 0
## 21208 2 0 0
## 21209 3 0 0
## 21210 3 0 0
## 21211 2 0 0
## 21212 2 0 0
## 21213 2 0 0
## 21214 2 1 0
## 21215 2 0 0
## 21216 2 0 0
## 21217 1 0 0
## 21218 2 0 0
## 21219 2 0 0
## 21220 2 0 0
## 21221 1 0 0
## 21222 1 0 0
## 21223 1 0 0
## 21224 2 0 0
## 21225 2 0 0
## 21226 2 0 0
## 21227 2 0 0
## 21228 1 0 0
## 21229 1 0 0
## 21230 1 0 0
## 21231 1 0 0
## 21232 2 0 0
## 21233 2 0 0
## 21234 2 0 0
## 21235 1 0 0
## 21236 1 0 0
## 21237 1 0 0
## 21238 1 0 0
## 21239 1 0 0
## 21240 1 0 0
## 21241 1 0 0
## 21242 2 0 0
## 21243 2 1 0
## 21244 2 0 0
## 21245 1 0 0
## 21246 1 0 0
## 21247 2 0 0
## 21248 2 0 0
## 21249 2 2 0
## 21250 2 0 0
## 21251 1 0 0
## 21252 1 0 0
## 21253 1 0 0
## 21254 1 0 0
## 21255 1 0 0
## 21256 1 0 0
## 21257 1 0 0
## 21258 1 0 0
## 21259 1 0 0
## 21260 1 0 0
## 21261 1 0 0
## 21262 1 0 0
## 21263 2 0 0
## 21264 1 0 0
## 21265 1 0 0
## 21266 1 0 0
## 21267 1 0 0
## 21268 1 0 0
## 21269 1 0 0
## 21270 1 0 0
## 21271 2 0 0
## 21272 1 0 0
## 21273 2 0 0
## 21274 1 0 0
## 21275 1 0 0
## 21276 1 0 0
## 21277 1 0 0
## 21278 2 0 0
## 21279 2 0 0
## 21280 2 0 0
## 21281 1 0 0
## 21282 2 0 0
## 21283 2 0 0
## 21284 1 0 0
## 21285 1 0 0
## 21286 1 0 0
## 21287 2 0 0
## 21288 1 0 0
## 21289 1 0 0
## 21290 1 0 0
## 21291 1 0 0
## 21292 1 0 0
## 21293 1 0 0
## 21294 2 0 0
## 21295 1 0 0
## 21296 1 0 0
## 21297 2 0 0
## 21298 1 0 0
## 21299 1 0 0
## 21300 1 0 0
## 21301 1 0 0
## 21302 1 0 0
## 21303 1 0 0
## 21304 1 0 0
## 21305 2 0 0
## 21306 2 0 0
## 21307 1 0 0
## 21308 2 0 0
## 21309 2 0 0
## 21310 2 0 0
## 21311 1 0 0
## 21312 1 0 0
## 21313 1 0 0
## 21314 1 0 0
## 21315 1 0 0
## 21316 1 0 0
## 21317 1 0 0
## 21318 2 0 0
## 21319 2 0 0
## 21320 2 0 0
## 21321 2 0 0
## 21322 1 0 0
## 21323 1 0 0
## 21324 2 0 0
## 21325 2 0 0
## 21326 2 0 0
## 21327 2 0 0
## 21328 2 0 0
## 21329 2 0 0
## 21330 2 0 0
## 21331 2 0 0
## 21332 2 0 0
## 21333 2 0 0
## 21334 1 0 0
## 21335 2 0 0
## 21336 2 0 0
## 21337 2 0 0
## 21338 2 0 0
## 21339 2 0 0
## 21340 2 0 0
## 21341 2 0 0
## 21342 2 0 0
## 21343 2 0 0
## 21344 2 0 0
## 21345 2 0 0
## 21346 2 0 0
## 21347 2 0 0
## 21348 2 0 0
## 21349 2 0 0
## 21350 1 0 0
## 21351 2 0 0
## 21352 2 0 0
## 21353 2 0 0
## 21354 2 0 0
## 21355 2 2 0
## 21356 2 0 0
## 21357 2 0 0
## 21358 2 0 0
## 21359 2 2 0
## 21360 2 0 0
## 21361 2 0 0
## 21362 1 0 0
## 21363 2 0 0
## 21364 2 0 0
## 21365 2 0 0
## 21366 2 0 0
## 21367 2 0 0
## 21368 2 0 0
## 21369 2 0 0
## 21370 2 0 0
## 21371 2 0 0
## 21372 2 0 0
## 21373 2 0 0
## 21374 2 0 0
## 21375 2 0 0
## 21376 2 0 0
## 21377 2 1 0
## 21378 2 0 0
## 21379 2 0 0
## 21380 2 0 0
## 21381 1 0 0
## 21382 2 0 0
## 21383 2 0 0
## 21384 2 0 0
## 21385 2 1 0
## 21386 2 0 0
## 21387 2 0 0
## 21388 2 0 0
## 21389 2 0 0
## 21390 1 0 0
## 21391 2 0 0
## 21392 2 0 0
## 21393 2 0 0
## 21394 2 0 0
## 21395 2 1 0
## 21396 2 0 0
## 21397 2 0 0
## 21398 2 0 0
## 21399 2 0 0
## 21400 2 0 0
## 21401 2 0 0
## 21402 2 0 0
## 21403 2 0 0
## 21404 2 0 0
## 21405 2 0 0
## 21406 2 0 0
## 21407 1 0 0
## 21408 2 0 0
## 21409 2 0 0
## 21410 2 0 0
## 21411 2 0 0
## 21412 1 0 0
## 21413 2 0 0
## 21414 1 0 0
## 21415 1 0 0
## 21416 2 0 0
## 21417 1 0 0
## 21418 2 0 0
## 21419 2 0 0
## 21420 2 0 0
## 21421 2 0 0
## 21422 1 0 0
## 21423 2 0 0
## 21424 2 0 0
## 21425 2 0 0
## 21426 2 0 0
## 21427 2 0 0
## 21428 2 0 0
## 21429 2 0 0
## 21430 2 0 0
## 21431 2 0 0
## 21432 2 0 0
## 21433 2 0 0
## 21434 2 0 0
## 21435 2 0 0
## 21436 2 0 0
## 21437 2 2 0
## 21438 2 2 0
## 21439 1 1 0
## 21440 2 0 0
## 21441 2 0 0
## 21442 2 0 0
## 21443 2 0 0
## 21444 2 0 0
## 21445 2 0 0
## 21446 2 0 0
## 21447 2 2 0
## 21448 2 0 0
## 21449 2 0 0
## 21450 3 2 0
## 21451 2 0 0
## 21452 2 0 0
## 21453 2 1 0
## 21454 2 1 0
## 21455 1 0 0
## 21456 2 0 0
## 21457 2 0 0
## 21458 2 0 0
## 21459 2 1 0
## 21460 1 0 0
## 21461 2 0 0
## 21462 2 0 0
## 21463 2 0 0
## 21464 2 0 0
## 21465 2 0 0
## 21466 2 0 0
## 21467 2 0 0
## 21468 2 0 0
## 21469 2 0 0
## 21470 2 0 0
## 21471 2 0 0
## 21472 2 0 0
## 21473 2 0 0
## 21474 2 0 0
## 21475 1 0 0
## 21476 2 0 0
## 21477 2 0 0
## 21478 2 0 0
## 21479 2 0 0
## 21480 2 0 0
## 21481 2 0 0
## 21482 2 0 0
## 21483 2 0 0
## 21484 2 0 0
## 21485 2 1 0
## 21486 2 0 0
## 21487 2 0 0
## 21488 2 0 0
## 21489 2 1 0
## 21490 2 0 0
## 21491 2 0 0
## 21492 3 0 0
## 21493 2 0 0
## 21494 2 0 0
## 21495 1 0 0
## 21496 2 1 0
## 21497 2 0 0
## 21498 2 0 0
## 21499 3 0 0
## 21500 1 0 0
## 21501 1 0 0
## 21502 1 0 0
## 21503 1 0 0
## 21504 1 0 0
## 21505 2 0 0
## 21506 2 0 0
## 21507 2 0 0
## 21508 1 0 0
## 21509 2 0 0
## 21510 1 0 0
## 21511 1 0 0
## 21512 1 0 0
## 21513 1 0 0
## 21514 1 0 0
## 21515 2 0 0
## 21516 2 0 0
## 21517 2 0 0
## 21518 1 0 0
## 21519 1 0 0
## 21520 1 0 0
## 21521 1 0 0
## 21522 1 0 0
## 21523 1 0 0
## 21524 1 0 0
## 21525 2 0 0
## 21526 2 0 0
## 21527 2 0 0
## 21528 2 0 0
## 21529 2 0 0
## 21530 2 0 0
## 21531 2 0 0
## 21532 1 0 0
## 21533 2 0 0
## 21534 1 0 0
## 21535 1 0 0
## 21536 1 0 0
## 21537 2 0 0
## 21538 2 0 0
## 21539 2 0 0
## 21540 2 0 0
## 21541 2 0 0
## 21542 2 0 0
## 21543 1 0 0
## 21544 1 0 0
## 21545 1 0 0
## 21546 2 1 0
## 21547 2 0 0
## 21548 2 0 0
## 21549 1 0 0
## 21550 2 0 0
## 21551 2 0 0
## 21552 2 0 0
## 21553 3 0 0
## 21554 2 0 0
## 21555 2 0 0
## 21556 2 0 0
## 21557 2 0 0
## 21558 2 0 0
## 21559 2 0 0
## 21560 2 0 0
## 21561 1 0 0
## 21562 1 0 0
## 21563 1 0 0
## 21564 1 0 0
## 21565 2 0 0
## 21566 2 0 0
## 21567 2 0 0
## 21568 2 0 0
## 21569 2 0 0
## 21570 2 0 0
## 21571 2 0 0
## 21572 2 0 0
## 21573 2 0 0
## 21574 2 0 0
## 21575 2 0 0
## 21576 2 0 0
## 21577 2 0 0
## 21578 2 0 0
## 21579 2 0 0
## 21580 2 0 0
## 21581 2 0 0
## 21582 2 0 0
## 21583 2 0 0
## 21584 2 0 0
## 21585 2 0 0
## 21586 2 0 0
## 21587 2 0 0
## 21588 2 0 0
## 21589 2 1 0
## 21590 1 0 0
## 21591 1 0 0
## 21592 1 0 0
## 21593 1 0 0
## 21594 1 0 0
## 21595 1 0 0
## 21596 1 0 0
## 21597 1 0 0
## 21598 1 0 0
## 21599 1 0 0
## 21600 2 0 0
## 21601 2 0 0
## 21602 2 2 0
## 21603 2 0 0
## 21604 2 0 0
## 21605 2 0 0
## 21606 2 0 0
## 21607 2 0 0
## 21608 2 0 0
## 21609 2 0 0
## 21610 2 0 0
## 21611 2 0 0
## 21612 2 0 0
## 21613 2 0 0
## 21614 2 0 0
## 21615 2 0 0
## 21616 2 0 0
## 21617 2 0 0
## 21618 2 0 0
## 21619 2 0 0
## 21620 2 0 0
## 21621 2 0 0
## 21622 2 0 0
## 21623 2 0 0
## 21624 2 0 0
## 21625 2 0 0
## 21626 2 0 0
## 21627 2 0 0
## 21628 2 0 0
## 21629 2 0 0
## 21630 2 0 0
## 21631 2 0 0
## 21632 2 0 0
## 21633 2 0 0
## 21634 2 0 0
## 21635 2 0 0
## 21636 2 0 0
## 21637 2 0 0
## 21638 2 0 0
## 21639 2 0 0
## 21640 2 0 0
## 21641 2 0 0
## 21642 2 0 0
## 21643 2 0 0
## 21644 2 0 0
## 21645 2 0 0
## 21646 2 2 0
## 21647 2 0 0
## 21648 2 0 0
## 21649 2 0 0
## 21650 2 0 0
## 21651 2 0 0
## 21652 2 0 0
## 21653 2 0 0
## 21654 2 0 0
## 21655 2 0 0
## 21656 2 0 0
## 21657 2 0 0
## 21658 2 0 0
## 21659 2 0 0
## 21660 2 0 0
## 21661 2 0 0
## 21662 2 0 0
## 21663 2 0 0
## 21664 2 0 0
## 21665 2 0 0
## 21666 1 0 0
## 21667 2 0 0
## 21668 2 0 0
## 21669 2 0 0
## 21670 2 0 0
## 21671 2 0 0
## 21672 2 0 0
## 21673 2 0 0
## 21674 2 0 0
## 21675 2 0 0
## 21676 2 0 0
## 21677 2 0 0
## 21678 2 0 0
## 21679 2 0 0
## 21680 2 0 0
## 21681 2 0 0
## 21682 2 3 0
## 21683 2 0 0
## 21684 2 0 0
## 21685 2 0 0
## 21686 2 0 0
## 21687 2 1 0
## 21688 2 0 0
## 21689 2 0 0
## 21690 2 0 0
## 21691 2 0 0
## 21692 2 0 0
## 21693 2 0 0
## 21694 2 0 0
## 21695 2 0 0
## 21696 2 0 0
## 21697 2 0 0
## 21698 2 0 0
## 21699 2 0 0
## 21700 2 0 0
## 21701 2 0 0
## 21702 2 0 0
## 21703 2 0 0
## 21704 2 0 0
## 21705 1 0 0
## 21706 2 0 0
## 21707 2 0 0
## 21708 2 1 0
## 21709 1 0 0
## 21710 2 0 0
## 21711 2 0 0
## 21712 2 1 0
## 21713 1 0 0
## 21714 1 0 0
## 21715 2 0 0
## 21716 2 0 0
## 21717 2 0 0
## 21718 2 0 0
## 21719 2 0 0
## 21720 2 0 0
## 21721 1 0 0
## 21722 1 0 0
## 21723 1 0 0
## 21724 1 0 0
## 21725 2 0 0
## 21726 2 0 0
## 21727 2 0 0
## 21728 1 0 0
## 21729 2 0 0
## 21730 1 0 0
## 21731 2 0 0
## 21732 1 0 0
## 21733 1 0 0
## 21734 2 0 0
## 21735 1 0 0
## 21736 2 0 0
## 21737 1 0 0
## 21738 1 0 0
## 21739 1 0 0
## 21740 1 0 0
## 21741 2 0 0
## 21742 2 0 0
## 21743 2 0 0
## 21744 2 0 0
## 21745 2 0 0
## 21746 2 0 0
## 21747 2 0 0
## 21748 2 2 0
## 21749 2 0 0
## 21750 2 1 0
## 21751 2 0 0
## 21752 1 0 0
## 21753 1 0 0
## 21754 1 0 0
## 21755 1 0 0
## 21756 1 0 0
## 21757 1 0 0
## 21758 2 0 0
## 21759 3 1 0
## 21760 1 0 0
## 21761 1 0 0
## 21762 1 0 0
## 21763 2 0 0
## 21764 2 0 0
## 21765 1 0 0
## 21766 2 0 0
## 21767 1 0 0
## 21768 2 0 0
## 21769 2 0 0
## 21770 2 0 0
## 21771 2 0 0
## 21772 2 0 0
## 21773 2 0 0
## 21774 2 0 0
## 21775 2 0 0
## 21776 2 0 0
## 21777 1 1 0
## 21778 2 1 0
## 21779 2 0 0
## 21780 2 0 0
## 21781 1 0 0
## 21782 1 0 0
## 21783 2 0 0
## 21784 2 0 0
## 21785 2 0 0
## 21786 1 0 0
## 21787 1 0 0
## 21788 2 0 0
## 21789 1 0 0
## 21790 1 0 0
## 21791 1 0 0
## 21792 1 0 0
## 21793 1 0 0
## 21794 1 0 0
## 21795 1 0 0
## 21796 1 0 0
## 21797 1 0 0
## 21798 1 0 0
## 21799 1 0 0
## 21800 1 0 0
## 21801 2 0 0
## 21802 1 0 0
## 21803 1 0 0
## 21804 2 0 0
## 21805 2 1 0
## 21806 2 2 0
## 21807 2 0 0
## 21808 2 0 0
## 21809 2 0 0
## 21810 1 0 0
## 21811 1 0 0
## 21812 2 1 0
## 21813 1 0 0
## 21814 1 0 0
## 21815 2 0 0
## 21816 2 2 0
## 21817 2 0 0
## 21818 1 0 0
## 21819 2 0 0
## 21820 1 0 0
## 21821 2 0 0
## 21822 2 0 0
## 21823 1 0 0
## 21824 2 0 0
## 21825 1 0 0
## 21826 2 0 0
## 21827 2 0 0
## 21828 1 0 0
## 21829 1 0 0
## 21830 2 0 0
## 21831 1 0 0
## 21832 2 0 0
## 21833 2 1 0
## 21834 2 0 0
## 21835 2 0 0
## 21836 2 0 0
## 21837 1 0 0
## 21838 1 0 0
## 21839 1 0 0
## 21840 2 0 0
## 21841 2 0 0
## 21842 2 0 0
## 21843 2 0 0
## 21844 2 0 0
## 21845 2 0 0
## 21846 2 0 0
## 21847 1 0 0
## 21848 1 0 0
## 21849 2 0 0
## 21850 3 0 0
## 21851 2 0 0
## 21852 2 0 0
## 21853 2 2 0
## 21854 2 0 0
## 21855 2 0 0
## 21856 2 0 0
## 21857 2 0 0
## 21858 1 0 0
## 21859 2 0 0
## 21860 2 0 0
## 21861 3 0 0
## 21862 2 0 0
## 21863 2 0 0
## 21864 2 0 0
## 21865 2 0 0
## 21866 2 0 0
## 21867 2 0 0
## 21868 2 0 0
## 21869 2 0 0
## 21870 3 0 0
## 21871 2 0 0
## 21872 1 0 0
## 21873 2 1 0
## 21874 2 0 0
## 21875 2 0 0
## 21876 2 0 0
## 21877 2 0 0
## 21878 2 0 0
## 21879 2 0 0
## 21880 2 0 0
## 21881 2 0 0
## 21882 2 0 0
## 21883 2 1 0
## 21884 2 0 0
## 21885 2 0 0
## 21886 2 0 0
## 21887 2 0 0
## 21888 2 0 0
## 21889 2 0 0
## 21890 2 0 0
## 21891 2 0 0
## 21892 2 0 0
## 21893 2 0 0
## 21894 2 0 0
## 21895 2 0 0
## 21896 1 0 0
## 21897 2 0 0
## 21898 2 0 0
## 21899 2 0 0
## 21900 2 0 0
## 21901 3 0 0
## 21902 1 0 0
## 21903 1 0 0
## 21904 1 0 0
## 21905 1 0 0
## 21906 1 0 0
## 21907 1 0 0
## 21908 2 0 0
## 21909 1 0 0
## 21910 1 0 0
## 21911 1 0 0
## 21912 1 0 0
## 21913 2 0 0
## 21914 2 0 0
## 21915 2 0 0
## 21916 1 0 0
## 21917 2 0 0
## 21918 2 0 0
## 21919 1 0 0
## 21920 1 0 0
## 21921 1 0 0
## 21922 2 0 0
## 21923 1 0 0
## 21924 1 0 0
## 21925 2 0 0
## 21926 1 0 0
## 21927 1 0 0
## 21928 3 0 0
## 21929 2 0 0
## 21930 2 0 0
## 21931 1 0 0
## 21932 2 0 0
## 21933 1 0 0
## 21934 2 1 0
## 21935 2 0 0
## 21936 2 0 0
## 21937 1 0 0
## 21938 1 0 0
## 21939 2 0 0
## 21940 2 0 0
## 21941 2 0 0
## 21942 2 0 0
## 21943 1 0 0
## 21944 1 0 0
## 21945 2 0 0
## 21946 2 0 0
## 21947 2 0 0
## 21948 2 0 0
## 21949 2 0 0
## 21950 1 0 0
## 21951 1 0 0
## 21952 2 0 0
## 21953 2 0 0
## 21954 1 0 0
## 21955 1 0 0
## 21956 1 0 0
## 21957 1 0 0
## 21958 1 0 0
## 21959 2 0 0
## 21960 2 0 0
## 21961 2 0 0
## 21962 2 0 0
## 21963 2 0 0
## 21964 2 0 0
## 21965 2 0 0
## 21966 2 0 0
## 21967 2 0 0
## 21968 2 0 0
## 21969 2 0 0
## 21970 2 0 0
## 21971 2 0 0
## 21972 2 0 0
## 21973 2 0 0
## 21974 2 0 0
## 21975 2 0 0
## 21976 1 0 0
## 21977 1 0 0
## 21978 1 0 0
## 21979 1 0 0
## 21980 1 0 0
## 21981 1 0 0
## 21982 2 0 0
## 21983 1 0 0
## 21984 1 0 0
## 21985 1 0 0
## 21986 1 0 0
## 21987 1 0 0
## 21988 2 0 0
## 21989 1 0 0
## 21990 2 2 0
## 21991 1 0 0
## 21992 2 0 0
## 21993 1 0 0
## 21994 1 0 0
## 21995 2 0 0
## 21996 1 0 0
## 21997 1 0 0
## 21998 1 0 0
## 21999 2 0 0
## 22000 2 0 0
## 22001 1 0 0
## 22002 1 0 0
## 22003 1 0 0
## 22004 1 0 0
## 22005 1 0 0
## 22006 2 0 0
## 22007 2 1 0
## 22008 1 0 0
## 22009 1 0 0
## 22010 2 0 0
## 22011 2 0 0
## 22012 1 0 0
## 22013 1 0 0
## 22014 1 0 0
## 22015 1 0 0
## 22016 1 0 0
## 22017 2 0 0
## 22018 1 0 0
## 22019 1 0 0
## 22020 1 0 0
## 22021 2 0 0
## 22022 1 0 0
## 22023 2 0 0
## 22024 2 0 0
## 22025 2 0 0
## 22026 2 0 0
## 22027 1 0 0
## 22028 1 0 0
## 22029 2 0 0
## 22030 2 0 0
## 22031 2 0 0
## 22032 1 0 0
## 22033 2 0 0
## 22034 2 0 0
## 22035 1 0 0
## 22036 2 0 0
## 22037 2 0 0
## 22038 2 0 0
## 22039 1 0 0
## 22040 2 0 0
## 22041 1 0 0
## 22042 2 0 0
## 22043 2 0 0
## 22044 2 0 0
## 22045 2 1 0
## 22046 1 0 0
## 22047 2 0 0
## 22048 2 0 0
## 22049 2 0 0
## 22050 2 0 0
## 22051 2 2 0
## 22052 2 0 0
## 22053 2 0 0
## 22054 2 0 0
## 22055 3 1 0
## 22056 2 0 0
## 22057 2 0 0
## 22058 2 0 0
## 22059 2 0 0
## 22060 2 0 0
## 22061 2 2 0
## 22062 2 0 0
## 22063 2 2 0
## 22064 2 0 0
## 22065 2 0 0
## 22066 2 0 0
## 22067 2 0 0
## 22068 2 0 0
## 22069 3 0 0
## 22070 2 0 0
## 22071 2 1 0
## 22072 2 0 0
## 22073 1 0 0
## 22074 2 0 0
## 22075 2 0 0
## 22076 2 0 0
## 22077 2 0 0
## 22078 1 0 0
## 22079 1 0 0
## 22080 1 0 0
## 22081 2 2 0
## 22082 2 0 0
## 22083 2 0 0
## 22084 1 0 0
## 22085 1 0 0
## 22086 3 0 0
## 22087 2 0 0
## 22088 2 2 0
## 22089 2 0 0
## 22090 2 0 0
## 22091 2 0 0
## 22092 2 0 0
## 22093 2 0 0
## 22094 2 0 0
## 22095 2 0 0
## 22096 1 0 0
## 22097 2 0 0
## 22098 2 0 0
## 22099 2 0 0
## 22100 2 0 0
## 22101 2 0 0
## 22102 2 0 0
## 22103 2 0 0
## 22104 2 0 0
## 22105 2 0 0
## 22106 2 0 0
## 22107 2 0 0
## 22108 2 0 0
## 22109 2 0 0
## 22110 2 0 0
## 22111 1 0 0
## 22112 2 0 0
## 22113 2 0 0
## 22114 2 0 0
## 22115 2 0 0
## 22116 2 0 0
## 22117 2 0 0
## 22118 2 0 0
## 22119 2 0 0
## 22120 2 0 0
## 22121 2 0 0
## 22122 2 0 0
## 22123 2 0 0
## 22124 2 0 0
## 22125 2 0 0
## 22126 3 1 0
## 22127 2 0 0
## 22128 2 2 0
## 22129 2 2 0
## 22130 2 1 0
## 22131 2 1 0
## 22132 2 2 0
## 22133 2 0 0
## 22134 2 0 0
## 22135 2 0 0
## 22136 1 0 0
## 22137 2 0 0
## 22138 2 0 0
## 22139 2 0 0
## 22140 2 0 0
## 22141 2 0 0
## 22142 2 0 0
## 22143 2 0 0
## 22144 2 0 0
## 22145 2 0 0
## 22146 2 0 0
## 22147 1 0 0
## 22148 1 0 0
## 22149 2 0 0
## 22150 1 0 0
## 22151 2 0 0
## 22152 2 0 0
## 22153 2 0 0
## 22154 2 0 0
## 22155 2 0 0
## 22156 1 0 0
## 22157 3 0 0
## 22158 1 0 0
## 22159 1 0 0
## 22160 1 0 0
## 22161 2 0 0
## 22162 1 0 0
## 22163 1 0 0
## 22164 1 0 0
## 22165 1 0 0
## 22166 1 0 0
## 22167 1 0 0
## 22168 1 0 0
## 22169 1 0 0
## 22170 1 0 0
## 22171 1 0 0
## 22172 1 0 0
## 22173 1 0 0
## 22174 1 0 0
## 22175 2 0 0
## 22176 1 0 0
## 22177 1 0 0
## 22178 1 0 0
## 22179 2 0 0
## 22180 1 0 0
## 22181 2 0 0
## 22182 1 0 0
## 22183 2 0 0
## 22184 2 0 0
## 22185 2 0 0
## 22186 2 0 0
## 22187 2 0 0
## 22188 2 0 0
## 22189 2 0 0
## 22190 2 0 0
## 22191 2 0 0
## 22192 2 0 0
## 22193 1 0 0
## 22194 2 0 0
## 22195 1 0 0
## 22196 1 0 0
## 22197 2 0 0
## 22198 1 0 0
## 22199 1 0 0
## 22200 1 0 0
## 22201 2 0 0
## 22202 2 0 0
## 22203 2 0 0
## 22204 2 0 0
## 22205 2 0 0
## 22206 2 0 0
## 22207 2 0 0
## 22208 2 0 0
## 22209 2 0 0
## 22210 2 0 0
## 22211 1 0 0
## 22212 1 0 0
## 22213 2 0 0
## 22214 2 0 0
## 22215 2 0 0
## 22216 2 0 0
## 22217 2 0 0
## 22218 2 0 0
## 22219 1 0 0
## 22220 2 0 0
## 22221 2 2 0
## 22222 2 0 0
## 22223 2 0 0
## 22224 2 0 0
## 22225 1 0 0
## 22226 1 0 0
## 22227 1 0 0
## 22228 1 0 0
## 22229 1 0 0
## 22230 2 0 0
## 22231 2 1 0
## 22232 1 0 0
## 22233 1 0 0
## 22234 2 0 0
## 22235 2 0 0
## 22236 2 0 0
## 22237 3 0 0
## 22238 2 0 0
## 22239 2 0 0
## 22240 2 0 0
## 22241 1 0 0
## 22242 1 0 0
## 22243 2 0 0
## 22244 2 0 0
## 22245 1 0 0
## 22246 1 0 0
## 22247 2 0 0
## 22248 2 0 0
## 22249 1 0 0
## 22250 1 0 0
## 22251 2 0 0
## 22252 2 0 0
## 22253 2 0 0
## 22254 2 0 0
## 22255 2 0 0
## 22256 2 0 0
## 22257 2 0 0
## 22258 2 0 0
## 22259 2 0 0
## 22260 2 1 0
## 22261 2 0 0
## 22262 2 0 0
## 22263 1 0 0
## 22264 2 0 0
## 22265 2 0 0
## 22266 2 0 0
## 22267 2 0 0
## 22268 2 2 0
## 22269 2 0 0
## 22270 1 0 0
## 22271 1 0 0
## 22272 1 0 0
## 22273 2 0 0
## 22274 2 0 0
## 22275 2 0 0
## 22276 1 0 0
## 22277 1 1 0
## 22278 2 0 0
## 22279 2 0 0
## 22280 2 0 0
## 22281 2 0 0
## 22282 2 0 0
## 22283 2 0 0
## 22284 1 0 0
## 22285 2 0 0
## 22286 2 0 0
## 22287 2 0 0
## 22288 2 0 0
## 22289 2 1 0
## 22290 2 2 0
## 22291 2 0 0
## 22292 2 0 0
## 22293 2 0 0
## 22294 2 0 0
## 22295 2 0 0
## 22296 2 0 0
## 22297 2 0 0
## 22298 2 0 0
## 22299 2 0 0
## 22300 2 0 0
## 22301 2 0 0
## 22302 2 0 0
## 22303 2 0 0
## 22304 2 0 0
## 22305 3 0 0
## 22306 1 0 0
## 22307 2 0 0
## 22308 2 0 0
## 22309 2 0 0
## 22310 2 0 0
## 22311 2 0 0
## 22312 2 0 0
## 22313 2 0 0
## 22314 2 0 0
## 22315 2 0 0
## 22316 2 0 0
## 22317 1 0 0
## 22318 1 0 0
## 22319 2 0 0
## 22320 2 0 0
## 22321 2 0 0
## 22322 2 0 0
## 22323 1 0 0
## 22324 1 0 0
## 22325 2 0 0
## 22326 1 0 0
## 22327 2 0 0
## 22328 2 0 0
## 22329 2 0 0
## 22330 2 0 0
## 22331 2 0 0
## 22332 1 0 0
## 22333 2 0 0
## 22334 2 0 0
## 22335 2 0 0
## 22336 2 0 0
## 22337 2 0 0
## 22338 2 0 0
## 22339 2 0 0
## 22340 1 0 0
## 22341 2 0 0
## 22342 2 0 0
## 22343 2 0 0
## 22344 2 0 0
## 22345 2 0 0
## 22346 2 0 0
## 22347 2 0 0
## 22348 1 0 0
## 22349 2 0 0
## 22350 2 0 0
## 22351 2 0 0
## 22352 1 0 0
## 22353 2 0 0
## 22354 2 0 0
## 22355 2 0 0
## 22356 2 0 0
## 22357 2 0 0
## 22358 2 0 0
## 22359 2 0 0
## 22360 1 0 0
## 22361 1 0 0
## 22362 1 0 0
## 22363 2 0 0
## 22364 1 0 0
## 22365 1 0 0
## 22366 1 0 0
## 22367 2 0 0
## 22368 1 0 0
## 22369 2 0 0
## 22370 1 0 0
## 22371 1 0 0
## 22372 1 0 0
## 22373 2 0 0
## 22374 2 0 0
## 22375 2 0 0
## 22376 2 2 0
## 22377 2 2 0
## 22378 1 0 0
## 22379 2 0 0
## 22380 2 0 0
## 22381 2 0 0
## 22382 2 0 0
## 22383 1 0 0
## 22384 2 0 0
## 22385 2 0 0
## 22386 1 0 0
## 22387 2 0 0
## 22388 1 0 0
## 22389 2 0 0
## 22390 2 0 0
## 22391 1 0 0
## 22392 1 0 0
## 22393 1 0 0
## 22394 2 0 0
## 22395 2 0 0
## 22396 2 0 0
## 22397 2 0 0
## 22398 1 0 0
## 22399 2 0 0
## 22400 2 0 0
## 22401 2 0 0
## 22402 2 0 0
## 22403 1 0 0
## 22404 2 0 0
## 22405 1 0 0
## 22406 1 0 0
## 22407 1 0 0
## 22408 2 0 0
## 22409 2 0 0
## 22410 1 0 0
## 22411 2 0 0
## 22412 1 0 0
## 22413 2 0 0
## 22414 1 0 0
## 22415 2 0 0
## 22416 2 0 0
## 22417 1 0 0
## 22418 2 0 0
## 22419 2 0 0
## 22420 2 0 0
## 22421 2 0 0
## 22422 1 0 0
## 22423 2 0 0
## 22424 2 0 0
## 22425 2 1 0
## 22426 2 0 0
## 22427 1 0 0
## 22428 1 0 0
## 22429 2 0 0
## 22430 1 0 0
## 22431 1 0 0
## 22432 1 0 0
## 22433 1 0 0
## 22434 1 0 0
## 22435 1 0 0
## 22436 1 0 0
## 22437 1 0 0
## 22438 1 0 0
## 22439 1 0 0
## 22440 2 0 0
## 22441 1 0 0
## 22442 1 0 0
## 22443 1 0 0
## 22444 1 0 0
## 22445 2 0 0
## 22446 2 0 0
## 22447 2 0 0
## 22448 1 0 0
## 22449 2 0 0
## 22450 2 0 0
## 22451 2 0 0
## 22452 1 0 0
## 22453 2 0 0
## 22454 2 0 0
## 22455 1 0 0
## 22456 1 0 0
## 22457 1 0 0
## 22458 1 0 0
## 22459 2 0 0
## 22460 1 0 0
## 22461 1 0 0
## 22462 2 0 0
## 22463 1 0 0
## 22464 2 0 0
## 22465 1 0 0
## 22466 2 0 0
## 22467 1 0 0
## 22468 2 0 0
## 22469 2 0 0
## 22470 2 0 0
## 22471 2 0 0
## 22472 1 0 0
## 22473 1 0 0
## 22474 3 0 0
## 22475 2 0 0
## 22476 1 0 0
## 22477 1 0 0
## 22478 2 0 0
## 22479 2 0 0
## 22480 2 0 0
## 22481 2 0 0
## 22482 1 0 0
## 22483 2 0 0
## 22484 3 0 0
## 22485 3 0 0
## 22486 2 0 0
## 22487 3 0 0
## 22488 2 0 0
## 22489 3 0 0
## 22490 3 0 0
## 22491 3 0 0
## 22492 3 0 0
## 22493 2 0 0
## 22494 2 0 0
## 22495 1 0 0
## 22496 3 0 0
## 22497 3 0 0
## 22498 3 0 0
## 22499 2 0 0
## 22500 3 0 0
## 22501 2 0 0
## 22502 2 0 0
## 22503 1 0 0
## 22504 1 0 0
## 22505 1 0 0
## 22506 2 0 0
## 22507 1 0 0
## 22508 1 0 0
## 22509 1 0 0
## 22510 1 0 0
## 22511 1 0 0
## 22512 1 0 0
## 22513 1 0 0
## 22514 1 0 0
## 22515 1 0 0
## 22516 2 0 0
## 22517 1 0 0
## 22518 1 0 0
## 22519 2 0 0
## 22520 2 0 0
## 22521 2 0 0
## 22522 1 0 0
## 22523 2 0 0
## 22524 3 0 0
## 22525 1 0 0
## 22526 1 0 0
## 22527 1 0 0
## 22528 2 0 0
## 22529 2 0 0
## 22530 1 0 0
## 22531 2 0 0
## 22532 3 1 0
## 22533 2 0 0
## 22534 2 0 0
## 22535 2 0 0
## 22536 2 0 0
## 22537 1 0 0
## 22538 2 0 0
## 22539 2 1 0
## 22540 2 0 0
## 22541 2 0 0
## 22542 2 0 0
## 22543 2 0 0
## 22544 2 0 0
## 22545 2 0 0
## 22546 2 0 0
## 22547 1 0 0
## 22548 1 0 0
## 22549 2 0 0
## 22550 1 0 0
## 22551 2 0 0
## 22552 2 0 0
## 22553 1 0 0
## 22554 1 0 0
## 22555 2 0 0
## 22556 2 0 0
## 22557 2 0 0
## 22558 2 0 0
## 22559 2 0 0
## 22560 2 0 0
## 22561 2 0 0
## 22562 2 0 0
## 22563 1 0 0
## 22564 2 2 0
## 22565 2 1 0
## 22566 2 0 0
## 22567 2 0 0
## 22568 2 0 0
## 22569 1 0 0
## 22570 2 0 0
## 22571 2 0 0
## 22572 1 0 0
## 22573 2 0 0
## 22574 1 0 0
## 22575 2 0 0
## 22576 2 0 0
## 22577 2 0 0
## 22578 2 0 0
## 22579 2 0 0
## 22580 2 0 0
## 22581 2 0 0
## 22582 1 0 0
## 22583 2 0 0
## 22584 2 0 0
## 22585 2 1 0
## 22586 2 0 0
## 22587 2 0 0
## 22588 1 0 0
## 22589 3 0 0
## 22590 2 0 0
## 22591 1 0 0
## 22592 2 0 0
## 22593 2 0 0
## 22594 2 0 0
## 22595 2 1 0
## 22596 2 0 0
## 22597 2 0 0
## 22598 3 0 0
## 22599 3 0 0
## 22600 2 0 0
## 22601 2 0 0
## 22602 2 0 0
## 22603 2 0 0
## 22604 2 0 0
## 22605 2 0 0
## 22606 2 0 0
## 22607 1 0 0
## 22608 2 0 0
## 22609 2 1 0
## 22610 2 0 0
## 22611 2 0 0
## 22612 1 0 0
## 22613 1 0 0
## 22614 2 0 0
## 22615 1 0 0
## 22616 2 0 0
## 22617 2 0 0
## 22618 2 0 0
## 22619 2 0 0
## 22620 2 0 0
## 22621 1 0 0
## 22622 2 0 0
## 22623 2 0 0
## 22624 2 0 0
## 22625 1 0 0
## 22626 1 0 0
## 22627 1 0 0
## 22628 1 0 0
## 22629 1 0 0
## 22630 2 0 0
## 22631 2 0 0
## 22632 2 0 0
## 22633 1 0 0
## 22634 2 0 0
## 22635 1 0 0
## 22636 2 0 0
## 22637 2 0 0
## 22638 2 0 0
## 22639 2 0 0
## 22640 1 0 0
## 22641 1 0 0
## 22642 1 0 0
## 22643 1 0 0
## 22644 2 0 0
## 22645 1 0 0
## 22646 2 0 0
## 22647 1 0 0
## 22648 2 0 0
## 22649 1 0 0
## 22650 2 0 0
## 22651 2 0 0
## 22652 2 0 0
## 22653 1 0 0
## 22654 2 0 0
## 22655 2 0 0
## 22656 2 0 0
## 22657 2 0 0
## 22658 1 0 0
## 22659 2 0 0
## 22660 2 0 0
## 22661 2 0 0
## 22662 2 0 0
## 22663 2 0 0
## 22664 2 0 0
## 22665 2 0 0
## 22666 1 0 0
## 22667 2 0 0
## 22668 1 0 0
## 22669 1 0 0
## 22670 1 0 0
## 22671 1 0 0
## 22672 2 0 0
## 22673 1 0 0
## 22674 1 0 0
## 22675 2 0 0
## 22676 1 0 0
## 22677 1 0 0
## 22678 2 2 0
## 22679 2 0 0
## 22680 1 0 0
## 22681 2 0 0
## 22682 1 0 0
## 22683 1 0 0
## 22684 1 0 0
## 22685 1 0 0
## 22686 1 0 0
## 22687 2 0 0
## 22688 2 2 0
## 22689 2 0 0
## 22690 2 0 0
## 22691 2 0 0
## 22692 2 0 0
## 22693 2 0 0
## 22694 3 0 0
## 22695 1 0 0
## 22696 1 0 0
## 22697 1 0 0
## 22698 1 0 0
## 22699 1 0 0
## 22700 1 0 0
## 22701 1 0 0
## 22702 1 0 0
## 22703 1 0 0
## 22704 1 0 0
## 22705 1 0 0
## 22706 2 0 0
## 22707 1 0 0
## 22708 1 0 0
## 22709 1 0 0
## 22710 2 0 0
## 22711 1 0 0
## 22712 1 0 0
## 22713 1 0 0
## 22714 1 0 0
## 22715 1 0 0
## 22716 1 0 0
## 22717 1 0 0
## 22718 1 0 0
## 22719 1 0 0
## 22720 2 0 0
## 22721 2 0 0
## 22722 2 0 0
## 22723 2 0 0
## 22724 2 0 0
## 22725 2 0 0
## 22726 1 0 0
## 22727 2 0 0
## 22728 1 0 0
## 22729 1 0 0
## 22730 1 0 0
## 22731 2 0 0
## 22732 2 0 0
## 22733 3 1 0
## 22734 1 0 0
## 22735 2 0 0
## 22736 2 0 0
## 22737 1 0 0
## 22738 2 0 0
## 22739 2 0 0
## 22740 2 0 0
## 22741 2 0 0
## 22742 1 0 0
## 22743 2 0 0
## 22744 2 0 0
## 22745 2 0 0
## 22746 2 0 0
## 22747 1 0 0
## 22748 1 0 0
## 22749 2 0 0
## 22750 1 0 0
## 22751 1 0 0
## 22752 1 0 0
## 22753 1 0 0
## 22754 1 0 0
## 22755 1 0 0
## 22756 3 0 0
## 22757 3 0 0
## 22758 2 0 0
## 22759 1 0 0
## 22760 1 0 0
## 22761 1 0 0
## 22762 1 0 0
## 22763 1 0 0
## 22764 2 0 0
## 22765 2 0 0
## 22766 1 0 0
## 22767 1 0 0
## 22768 2 0 0
## 22769 2 0 0
## 22770 1 0 0
## 22771 1 0 0
## 22772 2 0 0
## 22773 2 0 0
## 22774 2 0 0
## 22775 1 0 0
## 22776 1 0 0
## 22777 2 0 0
## 22778 2 0 0
## 22779 2 0 0
## 22780 2 0 0
## 22781 2 0 0
## 22782 2 0 0
## 22783 2 0 0
## 22784 2 0 0
## 22785 1 0 0
## 22786 1 0 0
## 22787 2 0 0
## 22788 1 0 0
## 22789 1 0 0
## 22790 1 0 0
## 22791 1 0 0
## 22792 1 0 0
## 22793 2 0 0
## 22794 2 0 0
## 22795 1 0 0
## 22796 2 0 0
## 22797 2 0 0
## 22798 2 0 0
## 22799 2 0 0
## 22800 2 0 0
## 22801 1 0 0
## 22802 2 0 0
## 22803 1 0 0
## 22804 1 0 0
## 22805 2 0 0
## 22806 2 0 0
## 22807 2 2 0
## 22808 3 1 0
## 22809 1 0 0
## 22810 2 0 0
## 22811 1 0 0
## 22812 2 0 0
## 22813 2 0 0
## 22814 2 0 0
## 22815 2 0 0
## 22816 1 0 0
## 22817 2 0 0
## 22818 2 0 0
## 22819 2 0 0
## 22820 2 2 0
## 22821 3 0 0
## 22822 2 0 0
## 22823 2 0 0
## 22824 2 0 0
## 22825 2 0 0
## 22826 2 0 0
## 22827 1 0 0
## 22828 2 0 0
## 22829 1 0 0
## 22830 2 0 0
## 22831 2 0 0
## 22832 2 0 0
## 22833 2 0 0
## 22834 2 0 0
## 22835 2 0 0
## 22836 2 0 0
## 22837 2 0 0
## 22838 2 0 0
## 22839 2 0 0
## 22840 2 0 0
## 22841 3 1 0
## 22842 1 0 0
## 22843 2 0 0
## 22844 2 0 0
## 22845 2 0 0
## 22846 2 0 0
## 22847 2 0 0
## 22848 2 0 0
## 22849 2 0 0
## 22850 2 0 0
## 22851 2 0 0
## 22852 2 0 0
## 22853 2 0 0
## 22854 2 0 0
## 22855 2 0 0
## 22856 2 0 0
## 22857 2 0 0
## 22858 2 0 0
## 22859 2 0 0
## 22860 2 0 0
## 22861 2 0 0
## 22862 2 0 0
## 22863 2 0 0
## 22864 2 0 0
## 22865 1 0 0
## 22866 2 0 0
## 22867 1 0 0
## 22868 2 0 0
## 22869 2 0 0
## 22870 2 0 0
## 22871 2 0 0
## 22872 2 0 0
## 22873 1 0 0
## 22874 3 0 0
## 22875 2 0 0
## 22876 2 0 0
## 22877 3 0 0
## 22878 3 0 0
## 22879 3 0 0
## 22880 3 0 0
## 22881 2 0 0
## 22882 1 0 0
## 22883 2 0 0
## 22884 1 0 0
## 22885 2 0 0
## 22886 1 0 0
## 22887 1 0 0
## 22888 2 2 0
## 22889 2 0 0
## 22890 2 0 0
## 22891 3 0 0
## 22892 2 0 0
## 22893 2 0 0
## 22894 2 0 0
## 22895 2 0 0
## 22896 2 0 0
## 22897 2 0 0
## 22898 2 0 0
## 22899 2 0 0
## 22900 2 0 0
## 22901 2 0 0
## 22902 2 0 0
## 22903 2 0 0
## 22904 2 0 0
## 22905 2 2 0
## 22906 2 0 0
## 22907 2 0 0
## 22908 2 0 0
## 22909 2 0 0
## 22910 1 0 0
## 22911 2 0 0
## 22912 2 0 0
## 22913 2 0 0
## 22914 2 0 0
## 22915 1 0 0
## 22916 2 0 0
## 22917 2 0 0
## 22918 2 2 0
## 22919 2 0 0
## 22920 2 0 0
## 22921 2 0 0
## 22922 2 0 0
## 22923 2 0 0
## 22924 1 0 0
## 22925 3 0 0
## 22926 2 0 0
## 22927 2 0 0
## 22928 2 0 0
## 22929 2 0 0
## 22930 2 0 0
## 22931 1 0 0
## 22932 1 0 0
## 22933 1 0 0
## 22934 2 0 0
## 22935 2 0 0
## 22936 2 0 0
## 22937 2 0 0
## 22938 2 0 0
## 22939 2 0 0
## 22940 1 0 0
## 22941 1 0 0
## 22942 2 0 0
## 22943 2 0 0
## 22944 1 0 0
## 22945 2 0 0
## 22946 1 0 0
## 22947 1 0 0
## 22948 1 0 0
## 22949 2 0 0
## 22950 2 0 0
## 22951 2 0 0
## 22952 2 0 0
## 22953 1 0 0
## 22954 2 0 0
## 22955 2 0 0
## 22956 1 0 0
## 22957 1 0 0
## 22958 1 0 0
## 22959 1 0 0
## 22960 1 0 0
## 22961 1 0 0
## 22962 1 0 0
## 22963 1 0 0
## 22964 1 0 0
## 22965 2 0 0
## 22966 2 0 0
## 22967 2 0 0
## 22968 1 0 0
## 22969 1 2 0
## 22970 2 0 0
## 22971 1 0 0
## 22972 3 0 0
## 22973 2 0 0
## 22974 2 0 0
## 22975 2 0 0
## 22976 2 0 0
## 22977 2 0 0
## 22978 2 0 0
## 22979 2 0 0
## 22980 2 0 0
## 22981 2 0 0
## 22982 2 0 0
## 22983 1 0 0
## 22984 1 0 0
## 22985 2 0 0
## 22986 2 0 0
## 22987 2 0 0
## 22988 2 0 0
## 22989 1 0 0
## 22990 2 0 0
## 22991 2 0 0
## 22992 1 0 0
## 22993 2 0 0
## 22994 2 0 0
## 22995 2 0 0
## 22996 2 0 0
## 22997 2 0 0
## 22998 2 0 0
## 22999 2 0 0
## 23000 2 0 0
## 23001 2 0 0
## 23002 2 0 0
## 23003 2 0 0
## 23004 2 0 0
## 23005 2 0 0
## 23006 2 0 0
## 23007 2 0 0
## 23008 2 0 0
## 23009 2 0 0
## 23010 1 0 0
## 23011 1 0 0
## 23012 1 0 0
## 23013 1 0 0
## 23014 2 0 0
## 23015 2 0 0
## 23016 2 0 0
## 23017 2 0 0
## 23018 2 0 0
## 23019 2 0 0
## 23020 2 0 0
## 23021 2 0 0
## 23022 1 2 0
## 23023 2 2 0
## 23024 2 0 0
## 23025 2 0 0
## 23026 2 0 0
## 23027 2 0 0
## 23028 2 2 0
## 23029 2 0 0
## 23030 2 0 0
## 23031 2 0 0
## 23032 2 2 0
## 23033 2 0 0
## 23034 2 0 0
## 23035 2 0 0
## 23036 2 0 0
## 23037 4 0 0
## 23038 1 0 0
## 23039 1 0 0
## 23040 1 0 0
## 23041 2 0 0
## 23042 2 0 0
## 23043 2 0 0
## 23044 2 0 0
## 23045 2 0 0
## 23046 2 1 0
## 23047 2 1 0
## 23048 2 0 0
## 23049 2 0 0
## 23050 3 0 0
## 23051 2 0 0
## 23052 2 2 0
## 23053 1 0 0
## 23054 1 0 0
## 23055 2 0 0
## 23056 2 0 0
## 23057 2 0 0
## 23058 2 0 0
## 23059 2 0 0
## 23060 2 0 0
## 23061 2 0 0
## 23062 1 0 0
## 23063 2 0 0
## 23064 2 0 0
## 23065 2 0 0
## 23066 2 0 0
## 23067 2 0 0
## 23068 2 0 0
## 23069 2 0 0
## 23070 1 0 0
## 23071 2 0 0
## 23072 2 1 0
## 23073 2 0 0
## 23074 2 0 0
## 23075 2 0 0
## 23076 2 0 0
## 23077 2 0 0
## 23078 2 0 0
## 23079 2 0 0
## 23080 2 0 0
## 23081 2 0 0
## 23082 2 0 0
## 23083 2 1 0
## 23084 2 0 0
## 23085 2 0 0
## 23086 2 1 0
## 23087 2 0 0
## 23088 1 0 0
## 23089 1 0 0
## 23090 2 0 0
## 23091 3 1 0
## 23092 2 0 0
## 23093 2 0 0
## 23094 2 0 0
## 23095 2 0 0
## 23096 2 0 0
## 23097 2 0 0
## 23098 2 0 0
## 23099 2 0 0
## 23100 2 0 0
## 23101 2 0 0
## 23102 2 0 0
## 23103 3 0 0
## 23104 2 0 0
## 23105 3 0 0
## 23106 2 2 0
## 23107 2 2 0
## 23108 2 0 0
## 23109 2 1 0
## 23110 2 0 0
## 23111 2 0 0
## 23112 2 0 0
## 23113 2 0 0
## 23114 2 0 0
## 23115 2 0 0
## 23116 1 0 0
## 23117 3 0 0
## 23118 2 2 0
## 23119 1 0 0
## 23120 2 0 0
## 23121 2 0 0
## 23122 2 0 0
## 23123 2 0 0
## 23124 2 0 0
## 23125 2 0 0
## 23126 2 0 0
## 23127 2 0 0
## 23128 2 0 0
## 23129 2 0 0
## 23130 2 0 0
## 23131 2 0 0
## 23132 2 0 0
## 23133 2 1 0
## 23134 2 0 0
## 23135 2 0 0
## 23136 2 0 0
## 23137 2 0 0
## 23138 3 0 0
## 23139 2 0 0
## 23140 2 0 0
## 23141 2 0 0
## 23142 2 0 0
## 23143 2 0 0
## 23144 3 1 0
## 23145 2 2 0
## 23146 2 1 0
## 23147 2 2 0
## 23148 2 0 0
## 23149 2 1 0
## 23150 1 0 0
## 23151 2 0 0
## 23152 2 0 0
## 23153 2 0 0
## 23154 2 0 0
## 23155 2 0 0
## 23156 2 0 0
## 23157 2 0 0
## 23158 2 0 0
## 23159 2 1 0
## 23160 2 0 0
## 23161 2 0 0
## 23162 2 0 0
## 23163 2 0 0
## 23164 2 0 0
## 23165 2 0 0
## 23166 2 0 0
## 23167 3 1 0
## 23168 2 0 0
## 23169 2 0 0
## 23170 2 0 0
## 23171 2 0 0
## 23172 2 0 0
## 23173 2 1 0
## 23174 2 0 0
## 23175 2 0 0
## 23176 1 0 0
## 23177 3 1 0
## 23178 2 0 0
## 23179 2 0 0
## 23180 2 0 0
## 23181 2 0 0
## 23182 2 0 0
## 23183 2 0 0
## 23184 2 0 0
## 23185 2 0 0
## 23186 2 0 0
## 23187 1 0 0
## 23188 1 0 0
## 23189 2 0 0
## 23190 2 0 0
## 23191 2 1 0
## 23192 2 0 0
## 23193 2 2 0
## 23194 2 0 0
## 23195 2 0 0
## 23196 2 0 0
## 23197 2 0 0
## 23198 2 0 0
## 23199 2 0 0
## 23200 2 0 0
## 23201 1 0 0
## 23202 2 0 0
## 23203 1 0 0
## 23204 2 0 0
## 23205 2 0 0
## 23206 2 0 0
## 23207 2 0 0
## 23208 3 0 0
## 23209 2 0 0
## 23210 1 0 0
## 23211 2 0 0
## 23212 1 0 0
## 23213 2 0 0
## 23214 2 0 0
## 23215 2 0 0
## 23216 2 0 0
## 23217 2 0 0
## 23218 2 0 0
## 23219 2 0 0
## 23220 2 0 0
## 23221 2 0 0
## 23222 2 0 0
## 23223 2 1 0
## 23224 2 0 0
## 23225 2 0 0
## 23226 2 0 0
## 23227 2 0 0
## 23228 2 0 0
## 23229 2 0 0
## 23230 2 2 0
## 23231 2 0 0
## 23232 2 0 0
## 23233 2 0 0
## 23234 2 0 0
## 23235 2 0 0
## 23236 2 0 0
## 23237 2 0 0
## 23238 2 0 0
## 23239 2 0 0
## 23240 2 0 0
## 23241 2 0 0
## 23242 2 0 0
## 23243 2 0 0
## 23244 1 0 0
## 23245 2 0 0
## 23246 1 0 0
## 23247 2 0 0
## 23248 2 0 0
## 23249 2 0 0
## 23250 2 0 0
## 23251 2 1 0
## 23252 2 0 0
## 23253 2 0 0
## 23254 2 0 0
## 23255 2 0 0
## 23256 2 1 0
## 23257 2 0 0
## 23258 2 0 0
## 23259 2 0 0
## 23260 2 0 0
## 23261 2 0 0
## 23262 2 0 0
## 23263 2 0 0
## 23264 1 0 0
## 23265 2 0 0
## 23266 2 0 0
## 23267 2 0 0
## 23268 2 0 0
## 23269 2 0 0
## 23270 2 0 0
## 23271 3 0 0
## 23272 1 0 0
## 23273 2 0 0
## 23274 2 0 0
## 23275 2 0 0
## 23276 1 0 0
## 23277 2 0 0
## 23278 2 0 0
## 23279 1 0 0
## 23280 2 0 0
## 23281 2 0 0
## 23282 1 0 0
## 23283 2 0 0
## 23284 2 0 0
## 23285 2 0 0
## 23286 2 0 0
## 23287 1 0 0
## 23288 2 0 0
## 23289 2 3 0
## 23290 2 0 0
## 23291 2 0 0
## 23292 2 0 0
## 23293 1 0 0
## 23294 2 1 0
## 23295 2 2 0
## 23296 1 0 0
## 23297 2 0 0
## 23298 2 0 0
## 23299 2 0 0
## 23300 2 0 0
## 23301 2 1 0
## 23302 2 0 0
## 23303 2 0 0
## 23304 2 2 0
## 23305 2 0 0
## 23306 2 0 0
## 23307 2 0 0
## 23308 2 0 0
## 23309 2 0 0
## 23310 3 0 0
## 23311 2 0 0
## 23312 2 2 0
## 23313 2 0 0
## 23314 2 0 0
## 23315 2 0 0
## 23316 2 0 0
## 23317 2 0 0
## 23318 1 0 0
## 23319 1 0 0
## 23320 1 0 0
## 23321 2 0 0
## 23322 2 0 0
## 23323 2 0 0
## 23324 1 0 0
## 23325 2 1 0
## 23326 2 0 0
## 23327 2 0 0
## 23328 2 0 0
## 23329 2 0 0
## 23330 2 2 0
## 23331 2 0 0
## 23332 2 0 0
## 23333 2 0 0
## 23334 2 0 0
## 23335 2 0 0
## 23336 2 0 0
## 23337 2 0 0
## 23338 2 0 0
## 23339 2 0 0
## 23340 2 0 0
## 23341 2 0 0
## 23342 2 0 0
## 23343 3 0 0
## 23344 2 2 0
## 23345 2 2 0
## 23346 2 0 0
## 23347 2 0 0
## 23348 2 0 0
## 23349 2 1 0
## 23350 1 0 0
## 23351 2 0 0
## 23352 2 0 0
## 23353 1 0 0
## 23354 2 0 0
## 23355 2 0 0
## 23356 2 0 0
## 23357 2 2 0
## 23358 2 0 0
## 23359 3 0 0
## 23360 2 0 0
## 23361 2 0 0
## 23362 2 0 0
## 23363 2 0 0
## 23364 2 0 0
## 23365 2 2 0
## 23366 2 0 0
## 23367 2 0 0
## 23368 2 0 0
## 23369 2 0 0
## 23370 2 0 0
## 23371 2 0 0
## 23372 2 0 0
## 23373 2 0 0
## 23374 2 0 0
## 23375 2 0 0
## 23376 2 0 0
## 23377 3 0 0
## 23378 2 0 0
## 23379 2 0 0
## 23380 2 0 0
## 23381 2 0 0
## 23382 2 0 0
## 23383 1 0 0
## 23384 2 0 0
## 23385 2 0 0
## 23386 1 0 0
## 23387 1 0 0
## 23388 1 0 0
## 23389 2 0 0
## 23390 2 0 0
## 23391 2 0 0
## 23392 2 0 0
## 23393 2 0 0
## 23394 2 2 0
## 23395 2 0 0
## 23396 2 2 0
## 23397 2 0 0
## 23398 2 0 0
## 23399 2 0 0
## 23400 1 0 0
## 23401 1 0 0
## 23402 2 0 0
## 23403 3 1 0
## 23404 2 0 0
## 23405 2 0 0
## 23406 1 0 0
## 23407 1 0 0
## 23408 1 0 0
## 23409 2 0 0
## 23410 2 1 0
## 23411 2 1 0
## 23412 1 0 0
## 23413 2 0 0
## 23414 2 0 0
## 23415 2 0 0
## 23416 2 0 0
## 23417 2 0 0
## 23418 2 1 0
## 23419 2 0 0
## 23420 2 0 0
## 23421 2 0 0
## 23422 1 0 0
## 23423 1 0 0
## 23424 1 0 0
## 23425 1 0 0
## 23426 1 0 0
## 23427 1 0 0
## 23428 1 0 0
## 23429 1 0 0
## 23430 1 0 0
## 23431 1 0 0
## 23432 2 0 0
## 23433 1 0 0
## 23434 2 0 0
## 23435 2 0 0
## 23436 2 0 0
## 23437 1 0 0
## 23438 2 0 0
## 23439 2 0 0
## 23440 2 0 0
## 23441 2 0 0
## 23442 2 0 0
## 23443 2 0 0
## 23444 2 0 0
## 23445 2 0 0
## 23446 2 0 0
## 23447 1 0 0
## 23448 2 0 0
## 23449 1 0 0
## 23450 1 0 0
## 23451 2 0 0
## 23452 2 0 0
## 23453 2 0 0
## 23454 2 0 0
## 23455 2 0 0
## 23456 1 0 0
## 23457 1 0 0
## 23458 1 0 0
## 23459 1 0 0
## 23460 2 0 0
## 23461 1 0 0
## 23462 2 0 0
## 23463 2 0 0
## 23464 2 0 0
## 23465 2 2 0
## 23466 2 0 0
## 23467 1 0 0
## 23468 1 0 0
## 23469 1 0 0
## 23470 2 0 0
## 23471 1 0 0
## 23472 2 0 0
## 23473 1 0 0
## 23474 2 0 0
## 23475 1 0 0
## 23476 1 0 0
## 23477 2 0 0
## 23478 2 0 0
## 23479 4 1 0
## 23480 2 0 0
## 23481 2 0 0
## 23482 2 0 0
## 23483 2 0 0
## 23484 2 0 0
## 23485 3 1 0
## 23486 2 0 0
## 23487 2 0 0
## 23488 2 0 0
## 23489 1 0 0
## 23490 2 0 0
## 23491 2 0 0
## 23492 2 1 0
## 23493 2 0 0
## 23494 2 0 0
## 23495 2 0 0
## 23496 1 0 0
## 23497 2 0 0
## 23498 2 0 0
## 23499 2 0 0
## 23500 2 0 0
## 23501 1 0 0
## 23502 2 0 0
## 23503 2 0 0
## 23504 2 0 0
## 23505 1 0 0
## 23506 2 0 0
## 23507 1 0 0
## 23508 3 0 0
## 23509 2 0 0
## 23510 2 0 0
## 23511 2 0 0
## 23512 2 0 0
## 23513 2 0 0
## 23514 2 0 0
## 23515 2 0 0
## 23516 2 2 0
## 23517 2 0 0
## 23518 1 0 0
## 23519 2 0 0
## 23520 2 0 0
## 23521 1 0 0
## 23522 2 1 0
## 23523 2 0 0
## 23524 2 0 0
## 23525 1 0 0
## 23526 2 0 0
## 23527 1 0 0
## 23528 2 0 0
## 23529 2 0 0
## 23530 1 0 0
## 23531 2 0 0
## 23532 2 0 0
## 23533 2 0 0
## 23534 2 0 0
## 23535 2 0 0
## 23536 2 0 0
## 23537 2 0 0
## 23538 2 0 0
## 23539 2 0 0
## 23540 2 0 0
## 23541 2 0 0
## 23542 2 0 0
## 23543 2 0 0
## 23544 2 0 0
## 23545 2 0 0
## 23546 2 0 0
## 23547 2 0 0
## 23548 2 0 0
## 23549 2 0 0
## 23550 2 0 0
## 23551 2 0 0
## 23552 2 0 0
## 23553 2 0 0
## 23554 2 0 0
## 23555 2 0 0
## 23556 2 0 0
## 23557 2 0 0
## 23558 1 0 0
## 23559 1 0 0
## 23560 2 0 0
## 23561 2 0 0
## 23562 2 0 0
## 23563 3 0 0
## 23564 1 0 0
## 23565 1 0 0
## 23566 2 0 0
## 23567 2 0 0
## 23568 1 0 0
## 23569 2 0 0
## 23570 2 0 0
## 23571 2 0 0
## 23572 2 0 0
## 23573 2 0 0
## 23574 1 0 0
## 23575 2 0 0
## 23576 1 0 0
## 23577 1 0 0
## 23578 1 0 0
## 23579 2 0 0
## 23580 1 0 0
## 23581 2 0 0
## 23582 2 0 0
## 23583 2 0 0
## 23584 2 0 0
## 23585 2 0 0
## 23586 2 0 0
## 23587 2 0 0
## 23588 2 0 0
## 23589 2 0 0
## 23590 2 0 0
## 23591 1 0 0
## 23592 1 0 0
## 23593 2 0 0
## 23594 2 0 0
## 23595 2 0 0
## 23596 2 2 0
## 23597 2 0 0
## 23598 2 0 0
## 23599 2 0 0
## 23600 1 0 0
## 23601 1 0 0
## 23602 2 0 0
## 23603 2 0 0
## 23604 2 0 0
## 23605 2 0 0
## 23606 2 0 0
## 23607 1 0 0
## 23608 2 0 0
## 23609 2 0 0
## 23610 2 0 0
## 23611 2 0 0
## 23612 2 0 0
## 23613 2 0 0
## 23614 2 0 0
## 23615 2 0 0
## 23616 2 0 0
## 23617 2 0 0
## 23618 2 0 0
## 23619 2 0 0
## 23620 1 0 0
## 23621 1 0 0
## 23622 1 0 0
## 23623 2 0 0
## 23624 2 0 0
## 23625 2 0 0
## 23626 2 0 0
## 23627 1 0 0
## 23628 1 0 0
## 23629 1 0 0
## 23630 1 0 0
## 23631 1 0 0
## 23632 1 0 0
## 23633 2 0 0
## 23634 2 0 0
## 23635 2 0 0
## 23636 2 0 0
## 23637 2 0 0
## 23638 2 0 0
## 23639 2 0 0
## 23640 1 0 0
## 23641 3 0 0
## 23642 2 0 0
## 23643 1 0 0
## 23644 2 0 0
## 23645 2 0 0
## 23646 2 0 0
## 23647 2 0 0
## 23648 2 0 0
## 23649 1 0 0
## 23650 1 0 0
## 23651 2 2 0
## 23652 2 0 0
## 23653 2 0 0
## 23654 2 0 0
## 23655 2 0 0
## 23656 2 0 0
## 23657 2 0 0
## 23658 2 0 0
## 23659 3 1 0
## 23660 1 0 0
## 23661 1 0 0
## 23662 2 0 0
## 23663 2 0 0
## 23664 2 0 0
## 23665 1 0 0
## 23666 1 0 0
## 23667 1 0 0
## 23668 2 0 0
## 23669 1 0 0
## 23670 2 0 0
## 23671 1 0 0
## 23672 1 0 0
## 23673 1 0 0
## 23674 2 0 0
## 23675 2 0 0
## 23676 2 0 0
## 23677 2 0 0
## 23678 1 0 0
## 23679 1 0 0
## 23680 1 0 0
## 23681 1 0 0
## 23682 1 0 0
## 23683 1 0 0
## 23684 1 0 0
## 23685 1 0 0
## 23686 1 0 0
## 23687 1 0 0
## 23688 1 0 0
## 23689 1 0 0
## 23690 1 0 0
## 23691 1 0 0
## 23692 1 0 0
## 23693 1 0 0
## 23694 1 0 0
## 23695 1 0 0
## 23696 1 0 0
## 23697 2 0 0
## 23698 3 0 0
## 23699 2 0 0
## 23700 2 0 0
## 23701 2 0 0
## 23702 3 1 0
## 23703 2 0 0
## 23704 2 0 0
## 23705 2 0 0
## 23706 1 0 0
## 23707 1 0 0
## 23708 1 0 0
## 23709 1 0 0
## 23710 2 0 0
## 23711 1 0 0
## 23712 1 0 0
## 23713 1 0 0
## 23714 2 0 0
## 23715 2 0 0
## 23716 2 0 0
## 23717 2 0 0
## 23718 2 0 0
## 23719 2 0 0
## 23720 2 0 0
## 23721 1 0 0
## 23722 2 0 0
## 23723 1 0 0
## 23724 1 0 0
## 23725 1 0 0
## 23726 1 0 0
## 23727 1 0 0
## 23728 1 0 0
## 23729 1 0 0
## 23730 1 0 0
## 23731 2 0 0
## 23732 2 0 0
## 23733 2 0 0
## 23734 2 0 0
## 23735 2 0 0
## 23736 2 0 0
## 23737 2 0 0
## 23738 1 0 0
## 23739 1 0 0
## 23740 2 0 0
## 23741 1 0 0
## 23742 1 0 0
## 23743 1 0 0
## 23744 2 0 0
## 23745 1 0 0
## 23746 1 0 0
## 23747 2 0 0
## 23748 2 0 0
## 23749 3 0 0
## 23750 2 0 0
## 23751 2 0 0
## 23752 2 0 0
## 23753 2 0 0
## 23754 2 0 0
## 23755 2 0 0
## 23756 3 0 0
## 23757 2 0 0
## 23758 1 0 0
## 23759 2 0 0
## 23760 1 0 0
## 23761 2 0 0
## 23762 2 0 0
## 23763 2 0 0
## 23764 2 0 0
## 23765 1 1 0
## 23766 2 0 0
## 23767 1 0 0
## 23768 2 0 0
## 23769 2 0 0
## 23770 2 0 0
## 23771 2 0 0
## 23772 2 0 0
## 23773 2 0 0
## 23774 1 0 0
## 23775 1 0 0
## 23776 1 0 0
## 23777 1 0 0
## 23778 1 0 0
## 23779 2 0 0
## 23780 2 0 0
## 23781 2 0 0
## 23782 2 0 0
## 23783 1 0 0
## 23784 2 0 0
## 23785 2 0 0
## 23786 2 0 0
## 23787 2 0 0
## 23788 2 0 0
## 23789 2 0 0
## 23790 2 0 0
## 23791 2 0 0
## 23792 2 0 0
## 23793 2 0 0
## 23794 2 0 0
## 23795 2 0 0
## 23796 1 0 0
## 23797 1 0 0
## 23798 1 0 0
## 23799 2 0 0
## 23800 2 0 0
## 23801 1 0 0
## 23802 1 0 0
## 23803 2 0 0
## 23804 2 0 0
## 23805 2 0 0
## 23806 2 0 0
## 23807 1 0 0
## 23808 2 0 0
## 23809 1 0 0
## 23810 2 0 0
## 23811 2 0 0
## 23812 2 0 0
## 23813 2 0 0
## 23814 2 0 0
## 23815 2 0 0
## 23816 2 0 0
## 23817 2 0 0
## 23818 2 0 0
## 23819 2 0 0
## 23820 2 0 0
## 23821 1 0 0
## 23822 1 0 0
## 23823 1 0 0
## 23824 1 0 0
## 23825 1 0 0
## 23826 2 0 0
## 23827 2 1 0
## 23828 3 0 0
## 23829 2 0 0
## 23830 2 0 0
## 23831 1 0 0
## 23832 2 0 0
## 23833 2 0 0
## 23834 2 0 0
## 23835 3 0 0
## 23836 2 2 0
## 23837 2 0 0
## 23838 2 0 0
## 23839 2 0 0
## 23840 2 0 0
## 23841 3 1 0
## 23842 2 0 0
## 23843 2 0 0
## 23844 2 0 0
## 23845 2 0 0
## 23846 1 0 0
## 23847 2 2 0
## 23848 1 0 0
## 23849 2 0 0
## 23850 2 0 0
## 23851 2 0 0
## 23852 2 0 0
## 23853 1 0 0
## 23854 2 0 0
## 23855 2 0 0
## 23856 2 0 0
## 23857 2 0 0
## 23858 2 0 0
## 23859 2 0 0
## 23860 2 0 0
## 23861 2 0 0
## 23862 2 0 0
## 23863 2 0 0
## 23864 1 0 0
## 23865 2 0 0
## 23866 2 0 0
## 23867 1 0 0
## 23868 2 0 0
## 23869 2 0 0
## 23870 2 0 0
## 23871 2 0 0
## 23872 2 0 0
## 23873 1 0 0
## 23874 1 0 0
## 23875 2 0 0
## 23876 1 0 0
## 23877 2 0 0
## 23878 2 0 0
## 23879 2 0 0
## 23880 1 0 0
## 23881 2 0 0
## 23882 1 0 0
## 23883 1 0 0
## 23884 2 0 0
## 23885 1 0 0
## 23886 1 0 0
## 23887 1 0 0
## 23888 1 0 0
## 23889 1 0 0
## 23890 2 0 0
## 23891 2 0 0
## 23892 1 0 0
## 23893 2 0 0
## 23894 2 0 0
## 23895 1 0 0
## 23896 2 0 0
## 23897 2 0 0
## 23898 2 0 0
## 23899 2 0 0
## 23900 2 0 0
## 23901 2 0 0
## 23902 1 0 0
## 23903 1 0 0
## 23904 1 0 0
## 23905 1 0 0
## 23906 1 0 0
## 23907 2 0 0
## 23908 1 0 0
## 23909 1 0 0
## 23910 2 0 0
## 23911 2 0 0
## 23912 1 0 0
## 23913 2 0 0
## 23914 2 0 0
## 23915 2 0 0
## 23916 2 0 0
## 23917 1 0 0
## 23918 2 0 0
## 23919 2 0 0
## 23920 2 0 0
## 23921 2 0 0
## 23922 3 0 0
## 23923 2 0 0
## 23924 2 0 0
## 23925 2 0 0
## 23926 3 0 0
## 23927 1 0 0
## 23928 2 0 0
## 23929 2 0 0
## 23930 2 0 0
## 23931 2 0 0
## 23932 1 0 0
## 23933 2 0 0
## 23934 2 0 0
## 23935 1 0 0
## 23936 2 0 0
## 23937 2 0 0
## 23938 2 0 0
## 23939 2 2 0
## 23940 2 0 0
## 23941 2 0 0
## 23942 2 0 0
## 23943 1 0 0
## 23944 2 0 0
## 23945 2 0 0
## 23946 1 0 0
## 23947 1 0 0
## 23948 2 0 0
## 23949 2 0 0
## 23950 2 0 0
## 23951 2 0 0
## 23952 2 0 0
## 23953 3 0 0
## 23954 2 0 0
## 23955 2 0 0
## 23956 1 0 0
## 23957 1 0 0
## 23958 1 0 0
## 23959 2 0 0
## 23960 2 0 0
## 23961 2 0 0
## 23962 2 0 0
## 23963 2 0 0
## 23964 2 0 0
## 23965 2 0 0
## 23966 2 0 0
## 23967 2 0 0
## 23968 2 0 0
## 23969 2 0 0
## 23970 2 2 0
## 23971 2 0 0
## 23972 2 0 0
## 23973 2 0 0
## 23974 2 0 0
## 23975 1 0 0
## 23976 1 0 0
## 23977 2 0 0
## 23978 2 0 0
## 23979 2 0 0
## 23980 2 0 0
## 23981 2 0 0
## 23982 2 0 0
## 23983 2 0 0
## 23984 2 0 0
## 23985 2 0 0
## 23986 2 0 0
## 23987 2 0 0
## 23988 2 0 0
## 23989 2 0 0
## 23990 2 0 0
## 23991 2 0 0
## 23992 2 0 0
## 23993 2 0 0
## 23994 2 0 0
## 23995 2 0 0
## 23996 1 0 0
## 23997 1 0 0
## 23998 1 0 0
## 23999 1 0 0
## 24000 3 1 0
## 24001 2 0 0
## 24002 2 0 0
## 24003 2 0 0
## 24004 1 0 0
## 24005 2 0 0
## 24006 2 0 0
## 24007 2 0 0
## 24008 2 0 0
## 24009 2 0 0
## 24010 2 0 0
## 24011 2 0 0
## 24012 2 0 0
## 24013 1 0 0
## 24014 2 0 0
## 24015 2 0 0
## 24016 1 0 0
## 24017 2 0 0
## 24018 2 0 0
## 24019 2 0 0
## 24020 2 0 0
## 24021 2 0 0
## 24022 2 2 0
## 24023 2 0 0
## 24024 2 0 0
## 24025 2 0 0
## 24026 1 0 0
## 24027 2 0 0
## 24028 2 0 0
## 24029 2 0 0
## 24030 2 0 0
## 24031 2 0 0
## 24032 2 0 0
## 24033 2 0 0
## 24034 2 0 0
## 24035 2 0 0
## 24036 2 0 0
## 24037 2 0 0
## 24038 2 0 0
## 24039 2 0 0
## 24040 2 0 0
## 24041 2 0 0
## 24042 2 0 0
## 24043 2 0 0
## 24044 2 0 0
## 24045 2 0 0
## 24046 2 0 0
## 24047 2 0 0
## 24048 2 0 0
## 24049 2 1 0
## 24050 2 0 0
## 24051 2 0 0
## 24052 3 0 0
## 24053 2 3 0
## 24054 2 0 0
## 24055 2 0 0
## 24056 2 0 0
## 24057 2 0 0
## 24058 2 0 0
## 24059 2 0 0
## 24060 2 0 0
## 24061 2 0 0
## 24062 2 0 0
## 24063 2 1 0
## 24064 2 0 0
## 24065 2 0 0
## 24066 2 0 0
## 24067 2 0 0
## 24068 3 1 0
## 24069 2 0 0
## 24070 2 0 0
## 24071 2 0 0
## 24072 2 1 0
## 24073 2 1 0
## 24074 2 0 0
## 24075 2 0 0
## 24076 1 1 0
## 24077 2 0 0
## 24078 2 0 0
## 24079 2 0 0
## 24080 2 0 0
## 24081 2 0 0
## 24082 2 0 0
## 24083 2 0 0
## 24084 2 0 0
## 24085 2 0 0
## 24086 2 0 0
## 24087 2 0 0
## 24088 2 0 0
## 24089 2 0 0
## 24090 1 0 0
## 24091 1 0 0
## 24092 1 0 0
## 24093 1 0 0
## 24094 2 0 0
## 24095 2 0 0
## 24096 2 0 0
## 24097 2 0 0
## 24098 1 0 0
## 24099 2 2 0
## 24100 2 0 0
## 24101 2 0 0
## 24102 2 0 0
## 24103 2 0 0
## 24104 1 0 0
## 24105 2 0 0
## 24106 1 0 0
## 24107 2 0 0
## 24108 1 0 0
## 24109 1 0 0
## 24110 1 0 0
## 24111 2 0 0
## 24112 2 0 0
## 24113 1 0 0
## 24114 2 0 0
## 24115 2 0 0
## 24116 2 0 0
## 24117 2 0 0
## 24118 2 0 0
## 24119 2 0 0
## 24120 1 0 0
## 24121 1 0 0
## 24122 2 0 0
## 24123 2 0 0
## 24124 1 0 0
## 24125 2 0 0
## 24126 2 0 0
## 24127 2 0 0
## 24128 2 0 0
## 24129 2 0 0
## 24130 2 0 0
## 24131 2 0 0
## 24132 1 0 0
## 24133 1 0 0
## 24134 2 0 0
## 24135 2 0 0
## 24136 2 0 0
## 24137 2 0 0
## 24138 2 0 0
## 24139 2 0 0
## 24140 2 0 0
## 24141 3 0 0
## 24142 2 0 0
## 24143 1 0 0
## 24144 1 0 0
## 24145 2 0 0
## 24146 1 0 0
## 24147 2 0 0
## 24148 1 0 0
## 24149 2 0 0
## 24150 2 0 0
## 24151 2 0 0
## 24152 1 0 0
## 24153 1 0 0
## 24154 1 0 0
## 24155 2 0 0
## 24156 2 0 0
## 24157 3 0 0
## 24158 2 0 0
## 24159 1 0 0
## 24160 2 0 0
## 24161 2 2 0
## 24162 1 0 0
## 24163 2 0 0
## 24164 2 0 0
## 24165 2 0 0
## 24166 2 0 0
## 24167 2 0 0
## 24168 1 0 0
## 24169 2 0 0
## 24170 2 0 0
## 24171 2 0 0
## 24172 1 0 0
## 24173 1 0 0
## 24174 1 0 0
## 24175 2 0 0
## 24176 2 0 0
## 24177 2 0 0
## 24178 1 0 0
## 24179 2 0 0
## 24180 2 0 0
## 24181 2 0 0
## 24182 2 0 0
## 24183 2 0 0
## 24184 2 0 0
## 24185 2 0 0
## 24186 2 0 0
## 24187 2 0 0
## 24188 2 0 0
## 24189 2 0 0
## 24190 2 0 0
## 24191 2 0 0
## 24192 2 0 0
## 24193 2 0 0
## 24194 2 0 0
## 24195 2 0 0
## 24196 2 0 0
## 24197 2 0 0
## 24198 2 0 0
## 24199 2 0 0
## 24200 2 0 0
## 24201 2 0 0
## 24202 2 0 0
## 24203 2 0 0
## 24204 2 0 0
## 24205 2 0 0
## 24206 2 0 0
## 24207 2 0 0
## 24208 2 0 0
## 24209 2 1 0
## 24210 2 0 0
## 24211 1 0 0
## 24212 1 0 0
## 24213 1 0 0
## 24214 1 0 0
## 24215 2 1 0
## 24216 1 0 0
## 24217 1 0 0
## 24218 1 0 0
## 24219 1 0 0
## 24220 1 0 0
## 24221 2 0 0
## 24222 2 0 0
## 24223 2 0 0
## 24224 2 0 0
## 24225 1 0 0
## 24226 1 0 0
## 24227 1 0 0
## 24228 1 0 0
## 24229 1 0 0
## 24230 1 0 0
## 24231 1 0 0
## 24232 2 0 0
## 24233 2 0 0
## 24234 2 0 0
## 24235 2 0 0
## 24236 2 0 0
## 24237 2 0 0
## 24238 2 0 0
## 24239 2 0 0
## 24240 2 1 0
## 24241 1 0 0
## 24242 2 1 0
## 24243 1 0 0
## 24244 2 0 0
## 24245 2 0 0
## 24246 1 0 0
## 24247 2 1 0
## 24248 2 0 0
## 24249 2 0 0
## 24250 2 0 0
## 24251 2 0 0
## 24252 2 0 0
## 24253 2 0 0
## 24254 2 0 0
## 24255 2 0 0
## 24256 2 0 0
## 24257 2 0 0
## 24258 2 0 0
## 24259 2 0 0
## 24260 2 0 0
## 24261 2 0 0
## 24262 1 0 0
## 24263 2 0 0
## 24264 2 0 0
## 24265 1 0 0
## 24266 2 0 0
## 24267 2 0 0
## 24268 2 0 0
## 24269 2 0 0
## 24270 2 0 0
## 24271 2 0 0
## 24272 2 0 0
## 24273 2 0 0
## 24274 2 0 0
## 24275 2 0 0
## 24276 2 0 0
## 24277 2 0 0
## 24278 2 0 0
## 24279 2 0 0
## 24280 2 0 0
## 24281 1 0 0
## 24282 2 0 0
## 24283 2 0 0
## 24284 2 0 0
## 24285 2 0 0
## 24286 2 0 0
## 24287 1 0 0
## 24288 2 0 0
## 24289 2 0 0
## 24290 1 0 0
## 24291 2 0 0
## 24292 1 0 0
## 24293 2 0 0
## 24294 2 0 0
## 24295 1 0 0
## 24296 2 0 0
## 24297 2 1 0
## 24298 2 0 0
## 24299 2 0 0
## 24300 2 0 0
## 24301 2 0 0
## 24302 2 0 0
## 24303 2 0 0
## 24304 2 0 0
## 24305 1 0 0
## 24306 2 0 0
## 24307 2 0 0
## 24308 2 0 0
## 24309 2 2 0
## 24310 2 0 0
## 24311 2 0 0
## 24312 1 0 0
## 24313 2 0 0
## 24314 3 0 0
## 24315 2 0 0
## 24316 2 0 0
## 24317 2 0 0
## 24318 2 0 0
## 24319 2 0 0
## 24320 2 0 0
## 24321 2 0 0
## 24322 2 0 0
## 24323 2 0 0
## 24324 2 0 0
## 24325 2 0 0
## 24326 2 0 0
## 24327 2 2 0
## 24328 2 0 0
## 24329 2 0 0
## 24330 1 2 0
## 24331 2 0 0
## 24332 2 0 0
## 24333 2 0 0
## 24334 2 0 0
## 24335 2 0 0
## 24336 2 0 0
## 24337 2 0 0
## 24338 2 0 0
## 24339 1 0 0
## 24340 1 0 0
## 24341 2 0 0
## 24342 2 0 0
## 24343 2 0 0
## 24344 1 0 0
## 24345 1 0 0
## 24346 2 0 0
## 24347 2 0 0
## 24348 2 0 0
## 24349 2 0 0
## 24350 2 0 0
## 24351 1 0 0
## 24352 1 0 0
## 24353 1 0 0
## 24354 1 0 0
## 24355 1 0 0
## 24356 1 0 0
## 24357 2 0 0
## 24358 2 0 0
## 24359 1 0 0
## 24360 1 0 0
## 24361 1 0 0
## 24362 1 0 0
## 24363 1 0 0
## 24364 1 0 0
## 24365 1 0 0
## 24366 1 0 0
## 24367 1 0 0
## 24368 1 0 0
## 24369 1 0 0
## 24370 1 0 0
## 24371 2 0 0
## 24372 2 0 0
## 24373 1 0 0
## 24374 2 0 0
## 24375 2 0 0
## 24376 2 0 0
## 24377 2 0 0
## 24378 3 0 0
## 24379 2 0 0
## 24380 2 0 0
## 24381 2 0 0
## 24382 2 0 0
## 24383 2 0 0
## 24384 2 0 0
## 24385 2 0 0
## 24386 2 1 0
## 24387 2 0 0
## 24388 2 0 0
## 24389 2 0 0
## 24390 2 0 0
## 24391 2 0 0
## 24392 3 0 0
## 24393 2 0 0
## 24394 3 1 0
## 24395 2 0 0
## 24396 2 0 0
## 24397 2 2 0
## 24398 3 0 0
## 24399 2 0 0
## 24400 1 0 0
## 24401 1 0 0
## 24402 1 0 0
## 24403 2 0 0
## 24404 2 0 0
## 24405 2 0 0
## 24406 2 0 0
## 24407 2 0 0
## 24408 2 0 0
## 24409 2 0 0
## 24410 2 0 0
## 24411 2 2 0
## 24412 2 0 0
## 24413 2 0 0
## 24414 2 0 0
## 24415 1 0 0
## 24416 2 0 0
## 24417 2 0 0
## 24418 2 0 0
## 24419 1 0 0
## 24420 2 0 0
## 24421 2 0 0
## 24422 2 0 0
## 24423 2 2 0
## 24424 2 0 0
## 24425 2 0 0
## 24426 2 0 0
## 24427 2 0 0
## 24428 1 0 0
## 24429 1 0 0
## 24430 1 0 0
## 24431 1 0 0
## 24432 1 0 0
## 24433 2 0 0
## 24434 2 0 0
## 24435 1 0 0
## 24436 2 0 0
## 24437 1 0 0
## 24438 2 0 0
## 24439 1 0 0
## 24440 2 1 0
## 24441 1 0 0
## 24442 1 0 0
## 24443 1 0 0
## 24444 1 0 0
## 24445 2 0 0
## 24446 2 0 0
## 24447 1 0 0
## 24448 1 0 0
## 24449 1 0 0
## 24450 2 0 0
## 24451 2 0 0
## 24452 2 2 0
## 24453 2 0 0
## 24454 2 0 0
## 24455 2 0 0
## 24456 2 0 0
## 24457 2 0 0
## 24458 2 0 0
## 24459 2 0 0
## 24460 2 0 0
## 24461 2 0 0
## 24462 2 0 0
## 24463 2 0 0
## 24464 1 0 0
## 24465 1 0 0
## 24466 2 0 0
## 24467 2 0 0
## 24468 2 0 0
## 24469 2 0 0
## 24470 2 0 0
## 24471 2 0 0
## 24472 2 0 0
## 24473 2 0 0
## 24474 2 0 0
## 24475 2 0 0
## 24476 2 0 0
## 24477 2 0 0
## 24478 2 0 0
## 24479 2 0 0
## 24480 2 0 0
## 24481 2 0 0
## 24482 2 0 0
## 24483 2 0 0
## 24484 2 0 0
## 24485 2 0 0
## 24486 2 0 0
## 24487 2 0 0
## 24488 1 0 0
## 24489 1 0 0
## 24490 2 0 0
## 24491 1 0 0
## 24492 2 0 0
## 24493 2 0 0
## 24494 2 0 0
## 24495 1 0 0
## 24496 1 0 0
## 24497 2 0 0
## 24498 2 0 0
## 24499 2 0 0
## 24500 1 0 0
## 24501 2 0 0
## 24502 1 0 0
## 24503 2 0 0
## 24504 2 0 0
## 24505 2 2 0
## 24506 2 0 0
## 24507 2 0 0
## 24508 2 0 0
## 24509 2 0 0
## 24510 2 0 0
## 24511 2 0 0
## 24512 2 0 0
## 24513 2 0 0
## 24514 1 0 0
## 24515 2 0 0
## 24516 2 0 0
## 24517 1 0 0
## 24518 2 0 0
## 24519 1 0 0
## 24520 2 0 0
## 24521 2 0 0
## 24522 2 0 0
## 24523 2 0 0
## 24524 2 0 0
## 24525 2 0 0
## 24526 2 0 0
## 24527 2 0 0
## 24528 2 0 0
## 24529 2 2 0
## 24530 2 0 0
## 24531 2 0 0
## 24532 2 0 0
## 24533 2 0 0
## 24534 2 0 0
## 24535 2 0 0
## 24536 2 0 0
## 24537 1 0 0
## 24538 2 0 0
## 24539 2 0 0
## 24540 2 0 0
## 24541 2 0 0
## 24542 2 0 0
## 24543 1 0 0
## 24544 2 0 0
## 24545 2 0 0
## 24546 1 0 0
## 24547 2 0 0
## 24548 2 0 0
## 24549 3 0 0
## 24550 2 0 0
## 24551 2 0 0
## 24552 2 0 0
## 24553 2 0 0
## 24554 2 0 0
## 24555 2 0 0
## 24556 2 0 0
## 24557 2 0 0
## 24558 2 0 0
## 24559 1 0 0
## 24560 2 0 0
## 24561 2 0 0
## 24562 2 2 0
## 24563 2 2 0
## 24564 3 0 0
## 24565 2 1 0
## 24566 2 0 0
## 24567 1 0 0
## 24568 2 0 0
## 24569 2 0 0
## 24570 3 0 0
## 24571 2 0 0
## 24572 2 0 0
## 24573 2 0 0
## 24574 2 0 0
## 24575 2 0 0
## 24576 2 0 0
## 24577 2 0 0
## 24578 2 0 0
## 24579 2 0 0
## 24580 2 0 0
## 24581 2 0 0
## 24582 2 0 0
## 24583 2 0 0
## 24584 2 0 0
## 24585 2 0 0
## 24586 2 0 0
## 24587 2 0 0
## 24588 2 0 0
## 24589 2 0 0
## 24590 2 0 0
## 24591 2 0 0
## 24592 2 0 0
## 24593 2 0 0
## 24594 2 0 0
## 24595 2 0 0
## 24596 2 0 0
## 24597 2 0 0
## 24598 2 0 0
## 24599 2 0 0
## 24600 2 0 0
## 24601 2 2 0
## 24602 2 0 0
## 24603 1 0 0
## 24604 1 0 0
## 24605 2 0 0
## 24606 2 0 0
## 24607 2 0 0
## 24608 2 0 0
## 24609 2 0 0
## 24610 2 0 0
## 24611 1 0 0
## 24612 2 0 0
## 24613 2 0 0
## 24614 1 0 0
## 24615 2 0 0
## 24616 1 0 0
## 24617 2 1 0
## 24618 2 0 0
## 24619 2 0 0
## 24620 2 0 0
## 24621 2 0 0
## 24622 2 0 0
## 24623 1 0 0
## 24624 2 0 0
## 24625 2 1 0
## 24626 2 0 0
## 24627 2 0 0
## 24628 2 0 0
## 24629 1 0 0
## 24630 2 0 0
## 24631 2 0 0
## 24632 2 0 0
## 24633 1 0 0
## 24634 2 0 0
## 24635 1 0 0
## 24636 1 0 0
## 24637 1 0 0
## 24638 1 0 0
## 24639 2 0 0
## 24640 2 0 0
## 24641 2 0 0
## 24642 2 0 0
## 24643 1 0 0
## 24644 2 0 0
## 24645 2 0 0
## 24646 1 0 0
## 24647 3 0 0
## 24648 2 0 0
## 24649 2 0 0
## 24650 2 0 0
## 24651 2 0 0
## 24652 1 0 0
## 24653 1 0 0
## 24654 2 0 0
## 24655 1 0 0
## 24656 2 0 0
## 24657 2 0 0
## 24658 2 0 0
## 24659 1 0 0
## 24660 1 0 0
## 24661 2 0 0
## 24662 2 0 0
## 24663 1 0 0
## 24664 1 0 0
## 24665 2 0 0
## 24666 1 0 0
## 24667 2 0 0
## 24668 2 0 0
## 24669 3 0 0
## 24670 2 0 0
## 24671 2 0 0
## 24672 2 0 0
## 24673 2 0 0
## 24674 2 0 0
## 24675 1 0 0
## 24676 2 0 0
## 24677 2 0 0
## 24678 2 0 0
## 24679 1 0 0
## 24680 2 0 0
## 24681 2 0 0
## 24682 2 0 0
## 24683 2 0 0
## 24684 1 0 0
## 24685 1 0 0
## 24686 1 0 0
## 24687 2 0 0
## 24688 2 0 0
## 24689 2 0 0
## 24690 2 0 0
## 24691 2 0 0
## 24692 2 0 0
## 24693 2 0 0
## 24694 2 0 0
## 24695 2 0 0
## 24696 2 0 0
## 24697 1 0 0
## 24698 2 0 0
## 24699 2 0 0
## 24700 2 0 0
## 24701 2 0 0
## 24702 2 0 0
## 24703 2 0 0
## 24704 2 0 0
## 24705 2 0 0
## 24706 1 0 0
## 24707 2 0 0
## 24708 2 0 0
## 24709 2 0 0
## 24710 2 0 0
## 24711 2 0 0
## 24712 2 0 0
## 24713 2 0 0
## 24714 2 0 0
## 24715 2 0 0
## 24716 2 0 0
## 24717 2 0 0
## 24718 2 0 0
## 24719 1 0 0
## 24720 2 0 0
## 24721 2 0 0
## 24722 2 0 0
## 24723 2 0 0
## 24724 2 0 0
## 24725 2 0 0
## 24726 2 0 0
## 24727 1 0 0
## 24728 1 0 0
## 24729 2 0 0
## 24730 2 0 0
## 24731 2 0 0
## 24732 2 0 0
## 24733 2 0 0
## 24734 2 0 0
## 24735 2 0 0
## 24736 2 0 0
## 24737 2 0 0
## 24738 2 0 0
## 24739 2 0 0
## 24740 3 0 0
## 24741 1 0 0
## 24742 1 0 0
## 24743 1 0 0
## 24744 1 0 0
## 24745 2 0 0
## 24746 1 0 0
## 24747 2 0 0
## 24748 2 0 0
## 24749 2 0 0
## 24750 3 1 0
## 24751 1 0 0
## 24752 2 0 0
## 24753 2 0 0
## 24754 2 0 0
## 24755 2 0 0
## 24756 2 0 0
## 24757 2 0 0
## 24758 2 0 0
## 24759 2 0 0
## 24760 2 0 0
## 24761 2 0 0
## 24762 2 0 0
## 24763 2 0 0
## 24764 2 0 0
## 24765 2 0 0
## 24766 2 0 0
## 24767 1 0 0
## 24768 2 0 0
## 24769 2 0 0
## 24770 2 0 0
## 24771 2 0 0
## 24772 2 2 0
## 24773 1 0 0
## 24774 2 0 0
## 24775 2 0 0
## 24776 2 0 0
## 24777 2 0 0
## 24778 2 0 0
## 24779 2 0 0
## 24780 2 0 0
## 24781 2 0 0
## 24782 2 1 0
## 24783 2 0 0
## 24784 2 0 0
## 24785 1 0 0
## 24786 2 0 0
## 24787 1 0 0
## 24788 2 0 0
## 24789 2 0 0
## 24790 2 0 0
## 24791 2 0 0
## 24792 2 0 0
## 24793 2 0 0
## 24794 2 0 0
## 24795 2 0 0
## 24796 2 0 0
## 24797 2 0 0
## 24798 2 0 0
## 24799 2 0 0
## 24800 2 1 0
## 24801 2 1 0
## 24802 2 0 0
## 24803 2 0 0
## 24804 1 0 0
## 24805 2 0 0
## 24806 2 0 0
## 24807 2 0 0
## 24808 2 0 0
## 24809 2 0 0
## 24810 2 0 0
## 24811 2 0 0
## 24812 2 0 0
## 24813 2 0 0
## 24814 2 0 0
## 24815 2 0 0
## 24816 2 0 0
## 24817 2 0 0
## 24818 2 0 0
## 24819 2 0 0
## 24820 1 0 0
## 24821 2 0 0
## 24822 2 0 0
## 24823 1 0 0
## 24824 2 0 0
## 24825 2 0 0
## 24826 2 0 0
## 24827 2 0 0
## 24828 2 0 0
## 24829 2 0 0
## 24830 2 0 0
## 24831 2 0 0
## 24832 1 0 0
## 24833 2 2 0
## 24834 2 0 0
## 24835 2 0 0
## 24836 2 0 0
## 24837 2 0 0
## 24838 2 0 0
## 24839 1 0 0
## 24840 1 0 0
## 24841 2 0 0
## 24842 2 0 0
## 24843 2 0 0
## 24844 2 0 0
## 24845 2 0 0
## 24846 2 0 0
## 24847 2 2 0
## 24848 2 0 0
## 24849 2 0 0
## 24850 2 0 0
## 24851 2 0 0
## 24852 2 0 0
## 24853 2 0 0
## 24854 2 0 0
## 24855 2 0 0
## 24856 2 0 0
## 24857 1 0 0
## 24858 1 0 0
## 24859 2 0 0
## 24860 3 0 0
## 24861 3 0 0
## 24862 2 0 0
## 24863 2 0 0
## 24864 3 0 0
## 24865 1 0 0
## 24866 1 0 0
## 24867 2 0 0
## 24868 1 0 0
## 24869 2 0 0
## 24870 1 0 0
## 24871 1 0 0
## 24872 2 0 0
## 24873 2 0 0
## 24874 2 0 0
## 24875 2 0 0
## 24876 2 0 0
## 24877 2 0 0
## 24878 2 0 0
## 24879 3 0 0
## 24880 2 0 0
## 24881 2 0 0
## 24882 2 0 0
## 24883 2 0 0
## 24884 2 0 0
## 24885 1 0 0
## 24886 2 0 0
## 24887 2 0 0
## 24888 2 0 0
## 24889 2 0 0
## 24890 2 0 0
## 24891 2 0 0
## 24892 2 0 0
## 24893 2 0 0
## 24894 2 0 0
## 24895 2 0 0
## 24896 2 0 0
## 24897 2 0 0
## 24898 2 0 0
## 24899 2 0 0
## 24900 2 0 0
## 24901 2 0 0
## 24902 2 0 0
## 24903 1 0 0
## 24904 2 0 0
## 24905 2 0 0
## 24906 2 0 0
## 24907 1 0 0
## 24908 2 0 0
## 24909 1 0 0
## 24910 1 0 0
## 24911 1 0 0
## 24912 1 0 0
## 24913 2 0 0
## 24914 2 0 0
## 24915 2 0 0
## 24916 2 0 0
## 24917 2 0 0
## 24918 2 0 0
## 24919 2 0 0
## 24920 2 0 0
## 24921 2 0 0
## 24922 2 0 0
## 24923 2 0 0
## 24924 3 0 0
## 24925 2 2 0
## 24926 2 0 0
## 24927 2 0 0
## 24928 2 2 0
## 24929 1 0 0
## 24930 1 0 0
## 24931 2 0 0
## 24932 2 0 0
## 24933 2 0 0
## 24934 2 0 0
## 24935 2 0 0
## 24936 2 0 0
## 24937 2 0 0
## 24938 2 0 0
## 24939 2 0 0
## 24940 2 0 0
## 24941 1 0 0
## 24942 1 0 0
## 24943 2 0 0
## 24944 2 0 0
## 24945 1 0 0
## 24946 1 0 0
## 24947 2 2 0
## 24948 1 0 0
## 24949 1 0 0
## 24950 1 0 0
## 24951 1 0 0
## 24952 1 0 0
## 24953 2 0 0
## 24954 2 0 0
## 24955 1 0 0
## 24956 1 0 0
## 24957 1 0 0
## 24958 2 0 0
## 24959 2 0 0
## 24960 2 0 0
## 24961 2 0 0
## 24962 2 0 0
## 24963 2 0 0
## 24964 2 0 0
## 24965 2 0 0
## 24966 2 0 0
## 24967 1 0 0
## 24968 2 0 0
## 24969 2 0 0
## 24970 2 0 0
## 24971 2 0 0
## 24972 2 0 0
## 24973 1 0 0
## 24974 1 0 0
## 24975 2 0 0
## 24976 1 0 0
## 24977 2 0 0
## 24978 2 0 0
## 24979 2 0 0
## 24980 2 0 0
## 24981 2 0 0
## 24982 1 0 0
## 24983 2 0 0
## 24984 2 0 0
## 24985 2 0 0
## 24986 2 0 0
## 24987 2 0 0
## 24988 1 0 0
## 24989 2 0 0
## 24990 2 0 0
## 24991 2 0 0
## 24992 2 0 0
## 24993 2 0 0
## 24994 2 0 0
## 24995 1 0 0
## 24996 2 0 0
## 24997 2 0 0
## 24998 2 0 0
## 24999 2 0 0
## 25000 2 0 0
## 25001 2 0 0
## 25002 1 0 0
## 25003 1 0 0
## 25004 2 0 0
## 25005 2 0 0
## 25006 1 0 0
## 25007 1 0 0
## 25008 1 0 0
## 25009 1 0 0
## 25010 2 0 0
## 25011 2 2 0
## 25012 2 0 0
## 25013 2 0 0
## 25014 2 0 0
## 25015 3 2 0
## 25016 1 0 0
## 25017 1 0 0
## 25018 2 2 0
## 25019 2 2 0
## 25020 2 2 0
## 25021 1 0 0
## 25022 2 0 0
## 25023 2 2 0
## 25024 2 0 0
## 25025 2 0 0
## 25026 2 0 0
## 25027 2 0 0
## 25028 2 0 0
## 25029 2 0 0
## 25030 1 0 0
## 25031 1 0 0
## 25032 1 0 0
## 25033 2 0 0
## 25034 1 0 0
## 25035 1 0 0
## 25036 1 0 0
## 25037 1 0 0
## 25038 1 0 0
## 25039 1 0 0
## 25040 1 0 0
## 25041 1 0 0
## 25042 2 0 0
## 25043 2 0 0
## 25044 2 0 0
## 25045 2 0 0
## 25046 2 3 0
## 25047 3 0 0
## 25048 2 0 0
## 25049 2 0 0
## 25050 2 0 0
## 25051 2 0 0
## 25052 2 0 0
## 25053 2 0 0
## 25054 2 0 0
## 25055 2 0 0
## 25056 1 0 0
## 25057 1 0 0
## 25058 1 0 0
## 25059 2 0 0
## 25060 2 0 0
## 25061 3 1 0
## 25062 2 0 0
## 25063 2 0 0
## 25064 2 0 0
## 25065 2 0 0
## 25066 2 0 0
## 25067 2 0 0
## 25068 2 0 0
## 25069 2 0 0
## 25070 2 0 0
## 25071 1 0 0
## 25072 2 0 0
## 25073 2 0 0
## 25074 2 0 0
## 25075 3 0 0
## 25076 2 0 0
## 25077 2 0 0
## 25078 2 0 0
## 25079 2 0 0
## 25080 2 0 0
## 25081 2 0 0
## 25082 2 1 0
## 25083 1 0 0
## 25084 2 0 0
## 25085 2 0 0
## 25086 2 0 0
## 25087 2 0 0
## 25088 2 0 0
## 25089 2 0 0
## 25090 2 0 0
## 25091 2 0 0
## 25092 2 0 0
## 25093 1 0 0
## 25094 2 0 0
## 25095 2 0 0
## 25096 2 0 0
## 25097 2 0 0
## 25098 2 0 0
## 25099 2 0 0
## 25100 2 2 0
## 25101 3 1 0
## 25102 2 0 0
## 25103 1 0 0
## 25104 2 2 0
## 25105 2 0 0
## 25106 2 0 0
## 25107 1 0 0
## 25108 2 0 0
## 25109 2 0 0
## 25110 2 0 0
## 25111 2 0 0
## 25112 2 2 0
## 25113 2 2 0
## 25114 2 0 0
## 25115 2 0 0
## 25116 2 0 0
## 25117 2 0 0
## 25118 2 0 0
## 25119 2 0 0
## 25120 2 0 0
## 25121 2 0 0
## 25122 2 0 0
## 25123 2 0 0
## 25124 2 0 0
## 25125 2 0 0
## 25126 2 0 0
## 25127 2 0 0
## 25128 2 0 0
## 25129 2 0 0
## 25130 2 0 0
## 25131 2 0 0
## 25132 2 0 0
## 25133 2 0 0
## 25134 2 0 0
## 25135 2 0 0
## 25136 2 0 0
## 25137 2 0 0
## 25138 1 0 0
## 25139 1 0 0
## 25140 2 0 0
## 25141 1 0 0
## 25142 2 0 0
## 25143 2 0 0
## 25144 2 0 0
## 25145 1 0 0
## 25146 2 0 0
## 25147 2 0 0
## 25148 2 0 0
## 25149 2 0 0
## 25150 2 0 0
## 25151 2 0 0
## 25152 3 0 0
## 25153 2 0 0
## 25154 2 0 0
## 25155 1 0 0
## 25156 2 0 0
## 25157 2 0 0
## 25158 1 0 0
## 25159 1 0 0
## 25160 2 0 0
## 25161 2 1 0
## 25162 2 0 0
## 25163 2 0 0
## 25164 2 0 0
## 25165 2 0 0
## 25166 2 0 0
## 25167 1 0 0
## 25168 2 1 0
## 25169 2 0 0
## 25170 1 0 0
## 25171 2 0 0
## 25172 2 0 0
## 25173 2 0 0
## 25174 2 0 0
## 25175 2 0 0
## 25176 2 0 0
## 25177 2 0 0
## 25178 2 0 0
## 25179 2 0 0
## 25180 2 0 0
## 25181 2 0 0
## 25182 2 0 0
## 25183 2 0 0
## 25184 2 0 0
## 25185 2 0 0
## 25186 3 0 0
## 25187 2 0 0
## 25188 2 0 0
## 25189 2 0 0
## 25190 2 0 0
## 25191 2 0 0
## 25192 2 0 0
## 25193 2 0 0
## 25194 2 0 0
## 25195 2 0 0
## 25196 2 0 0
## 25197 2 0 0
## 25198 2 0 0
## 25199 2 0 0
## 25200 2 0 0
## 25201 2 0 0
## 25202 2 0 0
## 25203 1 0 0
## 25204 2 0 0
## 25205 1 0 0
## 25206 2 0 0
## 25207 2 0 0
## 25208 2 0 0
## 25209 2 0 0
## 25210 2 0 0
## 25211 2 0 0
## 25212 2 0 0
## 25213 2 0 0
## 25214 2 0 0
## 25215 2 0 0
## 25216 2 0 0
## 25217 2 0 0
## 25218 2 0 0
## 25219 2 0 0
## 25220 2 0 0
## 25221 2 0 0
## 25222 2 0 0
## 25223 2 1 0
## 25224 2 0 0
## 25225 2 0 0
## 25226 2 0 0
## 25227 2 0 0
## 25228 2 0 0
## 25229 2 0 0
## 25230 2 0 0
## 25231 2 0 0
## 25232 2 0 0
## 25233 2 0 0
## 25234 2 0 0
## 25235 2 2 0
## 25236 3 0 0
## 25237 2 0 0
## 25238 2 0 0
## 25239 2 0 0
## 25240 2 0 0
## 25241 2 0 0
## 25242 2 0 0
## 25243 2 0 0
## 25244 2 0 0
## 25245 2 0 0
## 25246 2 0 0
## 25247 2 0 0
## 25248 2 0 0
## 25249 2 0 0
## 25250 2 0 0
## 25251 2 0 0
## 25252 2 0 0
## 25253 2 0 0
## 25254 2 0 0
## 25255 2 0 0
## 25256 2 0 0
## 25257 1 0 0
## 25258 2 0 0
## 25259 2 2 0
## 25260 2 2 0
## 25261 1 0 0
## 25262 2 0 0
## 25263 2 0 0
## 25264 2 0 0
## 25265 2 0 0
## 25266 2 0 0
## 25267 3 1 0
## 25268 2 0 0
## 25269 2 2 0
## 25270 2 2 0
## 25271 2 0 0
## 25272 2 0 0
## 25273 2 0 0
## 25274 2 0 0
## 25275 2 0 0
## 25276 2 0 0
## 25277 2 0 0
## 25278 2 0 0
## 25279 2 0 0
## 25280 2 0 0
## 25281 1 0 0
## 25282 2 0 0
## 25283 3 0 0
## 25284 2 0 0
## 25285 2 0 0
## 25286 1 0 0
## 25287 2 2 0
## 25288 2 0 0
## 25289 2 1 0
## 25290 2 0 0
## 25291 2 0 0
## 25292 2 0 0
## 25293 2 0 0
## 25294 2 0 0
## 25295 2 0 0
## 25296 2 0 0
## 25297 2 0 0
## 25298 2 0 0
## 25299 2 0 0
## 25300 2 0 0
## 25301 2 2 0
## 25302 2 0 0
## 25303 2 0 0
## 25304 2 0 0
## 25305 2 0 0
## 25306 2 0 0
## 25307 2 0 0
## 25308 2 0 0
## 25309 2 0 0
## 25310 2 1 0
## 25311 2 0 0
## 25312 2 0 0
## 25313 2 2 0
## 25314 2 0 0
## 25315 2 2 0
## 25316 2 0 0
## 25317 2 1 0
## 25318 2 0 0
## 25319 2 0 0
## 25320 3 0 0
## 25321 2 2 0
## 25322 2 0 0
## 25323 2 0 0
## 25324 2 0 0
## 25325 1 0 0
## 25326 1 0 0
## 25327 1 0 0
## 25328 2 0 0
## 25329 2 0 0
## 25330 1 0 0
## 25331 2 0 0
## 25332 3 0 0
## 25333 2 0 0
## 25334 2 0 0
## 25335 1 0 0
## 25336 1 0 0
## 25337 2 0 0
## 25338 1 0 0
## 25339 1 0 0
## 25340 1 0 0
## 25341 2 0 0
## 25342 2 0 0
## 25343 1 0 0
## 25344 2 0 0
## 25345 2 0 0
## 25346 1 0 0
## 25347 2 0 0
## 25348 2 0 0
## 25349 2 0 0
## 25350 2 0 0
## 25351 2 0 0
## 25352 2 0 0
## 25353 2 0 0
## 25354 2 0 0
## 25355 2 0 0
## 25356 2 0 0
## 25357 2 0 0
## 25358 2 2 0
## 25359 2 0 0
## 25360 2 0 0
## 25361 2 0 0
## 25362 2 0 0
## 25363 2 0 0
## 25364 1 0 0
## 25365 1 0 0
## 25366 2 0 0
## 25367 2 0 0
## 25368 2 0 0
## 25369 1 0 0
## 25370 1 0 0
## 25371 1 0 0
## 25372 1 0 0
## 25373 2 0 0
## 25374 2 0 0
## 25375 2 0 0
## 25376 2 0 0
## 25377 2 0 0
## 25378 2 0 0
## 25379 2 1 0
## 25380 2 0 0
## 25381 2 0 0
## 25382 2 0 0
## 25383 2 0 0
## 25384 2 0 0
## 25385 2 0 0
## 25386 2 0 0
## 25387 2 0 0
## 25388 2 0 0
## 25389 2 0 0
## 25390 2 0 0
## 25391 1 0 0
## 25392 2 0 0
## 25393 2 0 0
## 25394 2 0 0
## 25395 1 0 0
## 25396 1 0 0
## 25397 2 0 0
## 25398 2 0 0
## 25399 2 0 0
## 25400 1 0 0
## 25401 2 0 0
## 25402 1 0 0
## 25403 2 0 0
## 25404 1 0 0
## 25405 2 0 0
## 25406 2 0 0
## 25407 2 0 0
## 25408 2 0 0
## 25409 1 0 0
## 25410 1 0 0
## 25411 3 1 0
## 25412 2 0 0
## 25413 2 0 0
## 25414 2 0 0
## 25415 2 0 0
## 25416 2 0 0
## 25417 1 0 0
## 25418 2 0 0
## 25419 2 0 0
## 25420 2 0 0
## 25421 2 0 0
## 25422 2 0 0
## 25423 2 1 0
## 25424 2 0 0
## 25425 2 0 0
## 25426 2 0 0
## 25427 2 0 0
## 25428 2 0 0
## 25429 1 0 0
## 25430 1 0 0
## 25431 2 0 0
## 25432 2 0 0
## 25433 2 0 0
## 25434 2 0 0
## 25435 2 0 0
## 25436 2 0 0
## 25437 2 0 0
## 25438 2 2 0
## 25439 2 0 0
## 25440 3 0 0
## 25441 2 0 0
## 25442 2 0 0
## 25443 2 0 0
## 25444 2 0 0
## 25445 2 0 0
## 25446 2 0 0
## 25447 2 0 0
## 25448 2 0 0
## 25449 2 2 0
## 25450 2 0 0
## 25451 1 2 0
## 25452 2 1 0
## 25453 2 0 0
## 25454 1 2 0
## 25455 3 1 0
## 25456 2 2 0
## 25457 2 0 0
## 25458 2 0 0
## 25459 2 0 0
## 25460 2 0 0
## 25461 2 2 0
## 25462 2 0 0
## 25463 2 0 0
## 25464 2 1 0
## 25465 2 0 0
## 25466 2 0 0
## 25467 2 0 0
## 25468 2 0 0
## 25469 2 0 0
## 25470 3 0 0
## 25471 2 0 0
## 25472 2 0 0
## 25473 2 0 0
## 25474 2 0 0
## 25475 2 0 0
## 25476 2 0 0
## 25477 2 0 0
## 25478 3 1 0
## 25479 2 0 0
## 25480 2 0 0
## 25481 3 1 0
## 25482 3 1 0
## 25483 2 0 0
## 25484 2 0 0
## 25485 2 0 0
## 25486 2 0 0
## 25487 2 0 0
## 25488 2 0 0
## 25489 2 0 0
## 25490 2 0 0
## 25491 2 2 0
## 25492 2 0 0
## 25493 2 0 0
## 25494 2 0 0
## 25495 2 0 0
## 25496 2 0 0
## 25497 1 0 0
## 25498 2 0 0
## 25499 2 0 0
## 25500 2 0 0
## 25501 2 0 0
## 25502 2 0 0
## 25503 2 1 0
## 25504 2 0 0
## 25505 2 0 0
## 25506 2 0 0
## 25507 2 0 0
## 25508 2 0 0
## 25509 2 0 0
## 25510 1 0 0
## 25511 2 0 0
## 25512 2 0 0
## 25513 2 0 0
## 25514 2 0 0
## 25515 2 0 0
## 25516 2 0 0
## 25517 3 0 0
## 25518 3 0 0
## 25519 2 0 0
## 25520 2 0 0
## 25521 2 0 0
## 25522 2 0 0
## 25523 2 0 0
## 25524 2 0 0
## 25525 2 0 0
## 25526 2 0 0
## 25527 2 0 0
## 25528 2 0 0
## 25529 2 0 0
## 25530 2 0 0
## 25531 2 0 0
## 25532 2 0 0
## 25533 2 0 0
## 25534 2 0 0
## 25535 2 0 0
## 25536 2 0 0
## 25537 2 0 0
## 25538 2 0 0
## 25539 2 0 0
## 25540 2 0 0
## 25541 2 0 0
## 25542 2 0 0
## 25543 2 0 0
## 25544 2 0 0
## 25545 2 0 0
## 25546 2 0 0
## 25547 2 0 0
## 25548 2 0 0
## 25549 2 0 0
## 25550 2 0 0
## 25551 3 1 0
## 25552 2 1 0
## 25553 2 0 0
## 25554 1 0 0
## 25555 2 0 0
## 25556 2 0 0
## 25557 2 0 0
## 25558 2 0 0
## 25559 3 0 0
## 25560 2 0 0
## 25561 2 0 0
## 25562 2 0 0
## 25563 2 0 0
## 25564 2 0 0
## 25565 2 0 0
## 25566 2 0 0
## 25567 2 0 0
## 25568 2 0 0
## 25569 2 0 0
## 25570 2 0 0
## 25571 2 0 0
## 25572 2 0 0
## 25573 2 0 0
## 25574 2 0 0
## 25575 2 0 0
## 25576 2 0 0
## 25577 2 0 0
## 25578 1 0 0
## 25579 2 0 0
## 25580 2 0 0
## 25581 1 0 0
## 25582 2 0 0
## 25583 2 0 0
## 25584 2 0 0
## 25585 2 0 0
## 25586 1 0 0
## 25587 2 0 0
## 25588 2 0 0
## 25589 2 0 0
## 25590 2 0 0
## 25591 2 0 0
## 25592 2 0 0
## 25593 2 0 0
## 25594 2 0 0
## 25595 2 0 0
## 25596 2 0 0
## 25597 2 0 0
## 25598 3 0 0
## 25599 2 0 0
## 25600 2 0 0
## 25601 2 0 0
## 25602 2 0 0
## 25603 2 0 0
## 25604 2 0 0
## 25605 2 0 0
## 25606 2 0 0
## 25607 2 0 0
## 25608 2 0 0
## 25609 2 0 0
## 25610 2 0 0
## 25611 2 0 0
## 25612 2 0 0
## 25613 2 0 0
## 25614 2 0 0
## 25615 2 0 0
## 25616 2 0 0
## 25617 2 2 0
## 25618 2 0 0
## 25619 2 0 0
## 25620 2 0 0
## 25621 2 0 0
## 25622 1 0 0
## 25623 2 0 0
## 25624 2 0 0
## 25625 2 0 0
## 25626 2 0 0
## 25627 2 0 0
## 25628 2 1 0
## 25629 2 2 0
## 25630 2 0 0
## 25631 1 1 0
## 25632 3 1 0
## 25633 2 1 0
## 25634 2 0 0
## 25635 2 1 0
## 25636 2 0 0
## 25637 2 0 0
## 25638 2 0 0
## 25639 2 0 0
## 25640 2 0 0
## 25641 2 0 0
## 25642 1 0 0
## 25643 2 0 0
## 25644 2 1 0
## 25645 3 0 0
## 25646 2 0 0
## 25647 2 0 0
## 25648 3 0 0
## 25649 1 0 0
## 25650 2 0 0
## 25651 1 0 0
## 25652 3 0 0
## 25653 2 1 0
## 25654 1 0 0
## 25655 2 0 0
## 25656 2 0 0
## 25657 2 0 0
## 25658 2 0 0
## 25659 2 0 0
## 25660 2 0 0
## 25661 2 0 0
## 25662 2 0 0
## 25663 2 0 0
## 25664 3 0 0
## 25665 1 0 0
## 25666 2 0 0
## 25667 2 0 0
## 25668 1 0 0
## 25669 2 0 0
## 25670 2 0 0
## 25671 1 0 0
## 25672 3 0 0
## 25673 1 0 0
## 25674 2 0 0
## 25675 2 0 0
## 25676 2 0 0
## 25677 2 0 0
## 25678 2 0 0
## 25679 2 0 0
## 25680 2 0 0
## 25681 2 0 0
## 25682 2 0 0
## 25683 2 0 0
## 25684 2 0 0
## 25685 2 0 0
## 25686 1 0 0
## 25687 2 0 0
## 25688 2 0 0
## 25689 2 0 0
## 25690 3 1 0
## 25691 2 0 0
## 25692 2 0 0
## 25693 2 0 0
## 25694 2 0 0
## 25695 2 0 0
## 25696 2 0 0
## 25697 2 0 0
## 25698 2 0 0
## 25699 1 1 0
## 25700 2 0 0
## 25701 1 0 0
## 25702 2 0 0
## 25703 2 0 0
## 25704 2 0 0
## 25705 2 0 0
## 25706 2 0 0
## 25707 2 0 0
## 25708 2 0 0
## 25709 2 0 0
## 25710 2 0 0
## 25711 2 0 0
## 25712 1 0 0
## 25713 2 0 0
## 25714 1 0 0
## 25715 1 0 0
## 25716 2 0 0
## 25717 2 2 0
## 25718 1 0 0
## 25719 2 0 0
## 25720 2 0 0
## 25721 2 0 0
## 25722 2 0 0
## 25723 2 0 0
## 25724 2 0 0
## 25725 2 0 0
## 25726 2 0 0
## 25727 2 0 0
## 25728 2 0 0
## 25729 2 0 0
## 25730 2 0 0
## 25731 2 0 0
## 25732 2 0 0
## 25733 2 2 0
## 25734 2 0 0
## 25735 2 0 0
## 25736 3 0 0
## 25737 2 0 0
## 25738 3 1 0
## 25739 2 0 0
## 25740 2 0 0
## 25741 2 0 0
## 25742 2 0 0
## 25743 2 0 0
## 25744 2 0 0
## 25745 1 1 0
## 25746 2 0 0
## 25747 2 0 0
## 25748 2 0 0
## 25749 2 0 0
## 25750 2 0 0
## 25751 1 0 0
## 25752 1 0 0
## 25753 1 0 0
## 25754 1 0 0
## 25755 1 0 0
## 25756 1 0 0
## 25757 1 0 0
## 25758 1 0 0
## 25759 1 0 0
## 25760 1 0 0
## 25761 1 0 0
## 25762 1 0 0
## 25763 1 0 0
## 25764 1 0 0
## 25765 2 0 0
## 25766 1 0 0
## 25767 2 0 0
## 25768 2 0 0
## 25769 2 0 0
## 25770 2 0 0
## 25771 2 0 0
## 25772 2 0 0
## 25773 2 2 0
## 25774 2 0 0
## 25775 2 0 0
## 25776 2 0 0
## 25777 2 0 0
## 25778 2 0 0
## 25779 2 0 0
## 25780 2 0 0
## 25781 2 0 0
## 25782 1 0 0
## 25783 2 0 0
## 25784 1 0 0
## 25785 2 0 0
## 25786 2 0 0
## 25787 2 0 0
## 25788 2 0 0
## 25789 2 0 0
## 25790 2 2 0
## 25791 2 2 0
## 25792 2 2 0
## 25793 2 0 0
## 25794 2 0 0
## 25795 3 0 0
## 25796 2 2 0
## 25797 2 0 0
## 25798 2 0 0
## 25799 2 0 0
## 25800 2 0 0
## 25801 2 0 0
## 25802 2 0 0
## 25803 2 0 0
## 25804 2 0 0
## 25805 2 0 0
## 25806 2 0 0
## 25807 2 0 0
## 25808 1 0 0
## 25809 1 0 0
## 25810 1 0 0
## 25811 2 0 0
## 25812 1 0 0
## 25813 2 0 0
## 25814 2 0 0
## 25815 2 0 0
## 25816 1 0 0
## 25817 2 0 0
## 25818 2 0 0
## 25819 2 0 0
## 25820 3 0 0
## 25821 2 0 0
## 25822 2 0 0
## 25823 2 0 0
## 25824 1 0 0
## 25825 2 0 0
## 25826 2 0 0
## 25827 3 0 0
## 25828 2 0 0
## 25829 2 0 0
## 25830 2 0 0
## 25831 2 2 0
## 25832 2 0 0
## 25833 2 0 0
## 25834 2 0 0
## 25835 2 0 0
## 25836 2 0 0
## 25837 2 0 0
## 25838 2 2 0
## 25839 2 0 0
## 25840 2 0 0
## 25841 2 0 0
## 25842 2 0 0
## 25843 2 0 0
## 25844 2 0 0
## 25845 3 0 0
## 25846 2 0 0
## 25847 2 0 0
## 25848 2 1 0
## 25849 2 0 0
## 25850 2 0 0
## 25851 2 0 0
## 25852 3 1 0
## 25853 2 2 0
## 25854 2 0 0
## 25855 2 0 0
## 25856 2 0 0
## 25857 2 0 0
## 25858 2 0 0
## 25859 1 0 0
## 25860 1 0 0
## 25861 1 0 0
## 25862 1 0 0
## 25863 2 0 0
## 25864 2 2 0
## 25865 2 0 0
## 25866 1 0 0
## 25867 2 0 0
## 25868 2 0 0
## 25869 2 0 0
## 25870 2 0 0
## 25871 2 0 0
## 25872 2 0 0
## 25873 2 0 0
## 25874 2 0 0
## 25875 2 0 0
## 25876 2 0 0
## 25877 2 0 0
## 25878 2 0 0
## 25879 1 0 0
## 25880 2 0 0
## 25881 2 0 0
## 25882 2 2 0
## 25883 2 0 0
## 25884 2 0 0
## 25885 2 0 0
## 25886 2 0 0
## 25887 2 0 0
## 25888 2 0 0
## 25889 2 0 0
## 25890 2 0 0
## 25891 2 0 0
## 25892 2 0 0
## 25893 2 0 0
## 25894 2 0 0
## 25895 2 0 0
## 25896 2 0 0
## 25897 3 0 0
## 25898 2 0 0
## 25899 2 0 0
## 25900 2 0 0
## 25901 1 0 0
## 25902 2 0 0
## 25903 2 0 0
## 25904 1 0 0
## 25905 2 0 0
## 25906 2 0 0
## 25907 2 0 0
## 25908 2 0 0
## 25909 2 0 0
## 25910 2 0 0
## 25911 2 0 0
## 25912 2 1 0
## 25913 2 0 0
## 25914 2 0 0
## 25915 2 0 0
## 25916 2 0 0
## 25917 2 0 0
## 25918 2 0 0
## 25919 2 0 0
## 25920 2 0 0
## 25921 2 2 0
## 25922 2 1 0
## 25923 2 0 0
## 25924 2 0 0
## 25925 3 0 0
## 25926 1 0 0
## 25927 2 0 0
## 25928 2 0 0
## 25929 1 0 0
## 25930 2 0 0
## 25931 2 0 0
## 25932 2 0 0
## 25933 2 2 0
## 25934 1 0 0
## 25935 2 2 0
## 25936 1 0 0
## 25937 1 0 0
## 25938 2 0 0
## 25939 1 0 0
## 25940 2 0 0
## 25941 2 2 0
## 25942 2 0 0
## 25943 2 0 0
## 25944 2 0 0
## 25945 2 0 0
## 25946 2 0 0
## 25947 2 0 0
## 25948 1 1 0
## 25949 1 0 0
## 25950 1 0 0
## 25951 2 0 0
## 25952 2 0 0
## 25953 2 0 0
## 25954 2 0 0
## 25955 2 0 0
## 25956 2 0 0
## 25957 2 0 0
## 25958 2 0 0
## 25959 2 0 0
## 25960 2 0 0
## 25961 2 0 0
## 25962 1 0 0
## 25963 2 0 0
## 25964 2 0 0
## 25965 2 0 0
## 25966 2 0 0
## 25967 2 0 0
## 25968 2 0 0
## 25969 2 0 0
## 25970 2 0 0
## 25971 2 0 0
## 25972 1 0 0
## 25973 1 0 0
## 25974 3 1 0
## 25975 2 2 0
## 25976 1 0 0
## 25977 2 0 0
## 25978 2 0 0
## 25979 1 0 0
## 25980 2 0 0
## 25981 2 0 0
## 25982 2 0 0
## 25983 2 0 0
## 25984 2 0 0
## 25985 2 0 0
## 25986 3 1 0
## 25987 2 0 0
## 25988 2 2 0
## 25989 2 0 0
## 25990 2 0 0
## 25991 3 0 0
## 25992 2 0 0
## 25993 2 0 0
## 25994 2 0 0
## 25995 2 0 0
## 25996 2 0 0
## 25997 2 0 0
## 25998 2 0 0
## 25999 2 0 0
## 26000 2 0 0
## 26001 2 0 0
## 26002 2 3 0
## 26003 2 0 0
## 26004 2 0 0
## 26005 2 0 0
## 26006 2 0 0
## 26007 2 0 0
## 26008 2 0 0
## 26009 3 1 0
## 26010 1 0 0
## 26011 2 0 0
## 26012 2 0 0
## 26013 2 0 0
## 26014 2 0 0
## 26015 2 0 0
## 26016 1 0 0
## 26017 2 0 0
## 26018 2 0 0
## 26019 2 0 0
## 26020 2 0 0
## 26021 2 0 0
## 26022 2 0 0
## 26023 2 0 0
## 26024 3 0 0
## 26025 2 1 0
## 26026 2 0 0
## 26027 2 0 0
## 26028 2 0 0
## 26029 2 0 0
## 26030 2 0 0
## 26031 3 0 0
## 26032 2 0 0
## 26033 2 0 0
## 26034 2 0 0
## 26035 2 0 0
## 26036 2 0 0
## 26037 3 1 0
## 26038 2 0 0
## 26039 3 0 0
## 26040 2 0 0
## 26041 1 0 0
## 26042 2 2 0
## 26043 2 0 0
## 26044 2 1 0
## 26045 2 0 0
## 26046 2 0 0
## 26047 2 0 0
## 26048 2 0 0
## 26049 2 0 0
## 26050 2 0 0
## 26051 3 1 0
## 26052 2 0 0
## 26053 2 1 0
## 26054 2 0 0
## 26055 2 0 0
## 26056 2 0 0
## 26057 1 0 0
## 26058 1 0 0
## 26059 1 0 0
## 26060 1 0 0
## 26061 1 0 0
## 26062 1 0 0
## 26063 2 0 0
## 26064 2 0 0
## 26065 2 0 0
## 26066 2 0 0
## 26067 3 1 0
## 26068 2 0 0
## 26069 2 0 0
## 26070 2 0 0
## 26071 1 0 0
## 26072 2 0 0
## 26073 2 0 0
## 26074 2 0 0
## 26075 2 0 0
## 26076 2 0 0
## 26077 2 0 0
## 26078 2 0 0
## 26079 2 0 0
## 26080 2 0 0
## 26081 2 0 0
## 26082 2 0 0
## 26083 2 0 0
## 26084 2 0 0
## 26085 1 0 0
## 26086 2 2 0
## 26087 2 0 0
## 26088 2 0 0
## 26089 2 0 0
## 26090 2 0 0
## 26091 2 0 0
## 26092 2 0 0
## 26093 1 0 0
## 26094 2 0 0
## 26095 2 0 0
## 26096 2 0 0
## 26097 2 0 0
## 26098 2 0 0
## 26099 2 0 0
## 26100 2 0 0
## 26101 2 0 0
## 26102 2 0 0
## 26103 2 0 0
## 26104 2 0 0
## 26105 2 0 0
## 26106 2 0 0
## 26107 2 0 0
## 26108 1 0 0
## 26109 2 0 0
## 26110 2 0 0
## 26111 2 0 0
## 26112 2 0 0
## 26113 2 0 0
## 26114 2 0 0
## 26115 3 0 0
## 26116 2 0 0
## 26117 2 0 0
## 26118 2 0 0
## 26119 2 2 0
## 26120 2 2 0
## 26121 2 0 0
## 26122 2 0 0
## 26123 2 1 0
## 26124 2 0 0
## 26125 2 0 0
## 26126 2 0 0
## 26127 2 0 0
## 26128 2 0 0
## 26129 2 0 0
## 26130 1 0 0
## 26131 2 0 0
## 26132 2 0 0
## 26133 2 0 0
## 26134 1 0 0
## 26135 1 0 0
## 26136 3 0 0
## 26137 2 0 0
## 26138 2 0 0
## 26139 2 0 0
## 26140 2 0 0
## 26141 2 0 0
## 26142 2 0 0
## 26143 2 0 0
## 26144 1 0 0
## 26145 2 0 0
## 26146 2 2 0
## 26147 2 0 0
## 26148 2 0 0
## 26149 3 0 0
## 26150 2 0 0
## 26151 2 0 0
## 26152 2 0 0
## 26153 2 0 0
## 26154 2 0 0
## 26155 2 0 0
## 26156 2 0 0
## 26157 2 0 0
## 26158 2 0 0
## 26159 2 0 0
## 26160 2 0 0
## 26161 2 0 0
## 26162 2 0 0
## 26163 3 0 0
## 26164 2 0 0
## 26165 2 0 0
## 26166 2 1 0
## 26167 2 0 0
## 26168 2 0 0
## 26169 2 0 0
## 26170 2 1 0
## 26171 2 2 0
## 26172 2 2 0
## 26173 1 0 0
## 26174 2 0 0
## 26175 2 0 0
## 26176 2 0 0
## 26177 1 0 0
## 26178 2 0 0
## 26179 2 0 0
## 26180 2 0 0
## 26181 2 0 0
## 26182 1 0 0
## 26183 2 0 0
## 26184 2 0 0
## 26185 2 0 0
## 26186 2 1 0
## 26187 2 1 0
## 26188 2 0 0
## 26189 2 0 0
## 26190 2 0 0
## 26191 2 0 0
## 26192 2 0 0
## 26193 2 0 0
## 26194 2 0 0
## 26195 2 0 0
## 26196 2 0 0
## 26197 2 0 0
## 26198 2 0 0
## 26199 2 1 0
## 26200 2 1 0
## 26201 2 2 0
## 26202 2 2 0
## 26203 2 0 0
## 26204 2 0 0
## 26205 2 0 0
## 26206 2 0 0
## 26207 2 2 0
## 26208 2 0 0
## 26209 2 0 0
## 26210 2 0 0
## 26211 3 0 0
## 26212 2 0 0
## 26213 2 0 0
## 26214 2 0 0
## 26215 2 0 0
## 26216 2 0 0
## 26217 2 0 0
## 26218 1 0 0
## 26219 2 0 0
## 26220 2 0 0
## 26221 2 0 0
## 26222 2 0 0
## 26223 2 0 0
## 26224 2 0 0
## 26225 2 0 0
## 26226 2 0 0
## 26227 2 0 0
## 26228 2 0 0
## 26229 2 0 0
## 26230 3 0 0
## 26231 1 0 0
## 26232 2 0 0
## 26233 2 0 0
## 26234 2 0 0
## 26235 3 0 0
## 26236 2 0 0
## 26237 2 0 0
## 26238 2 0 0
## 26239 2 0 0
## 26240 2 0 0
## 26241 2 0 0
## 26242 2 0 0
## 26243 2 0 0
## 26244 2 0 0
## 26245 2 0 0
## 26246 2 0 0
## 26247 2 1 0
## 26248 2 0 0
## 26249 2 0 0
## 26250 2 0 0
## 26251 2 0 0
## 26252 2 1 0
## 26253 2 0 0
## 26254 2 0 0
## 26255 2 0 0
## 26256 2 0 0
## 26257 2 0 0
## 26258 2 0 0
## 26259 3 0 0
## 26260 3 0 0
## 26261 2 0 0
## 26262 2 2 0
## 26263 2 0 0
## 26264 2 0 0
## 26265 1 0 0
## 26266 2 0 0
## 26267 2 0 0
## 26268 2 0 0
## 26269 2 0 0
## 26270 2 0 0
## 26271 2 0 0
## 26272 2 0 0
## 26273 2 0 0
## 26274 2 2 0
## 26275 2 0 0
## 26276 2 0 0
## 26277 1 0 0
## 26278 2 0 0
## 26279 1 0 0
## 26280 2 0 0
## 26281 1 0 0
## 26282 2 0 0
## 26283 2 0 0
## 26284 2 0 0
## 26285 2 0 0
## 26286 2 0 0
## 26287 2 0 0
## 26288 2 0 0
## 26289 2 0 0
## 26290 2 0 0
## 26291 3 1 0
## 26292 2 0 0
## 26293 3 1 0
## 26294 2 1 0
## 26295 2 2 0
## 26296 2 1 0
## 26297 2 0 0
## 26298 2 0 0
## 26299 2 0 0
## 26300 2 0 0
## 26301 2 0 0
## 26302 2 0 0
## 26303 2 2 0
## 26304 2 0 0
## 26305 3 0 0
## 26306 3 0 0
## 26307 1 0 0
## 26308 2 0 0
## 26309 2 0 0
## 26310 2 0 0
## 26311 2 0 0
## 26312 2 2 0
## 26313 2 0 0
## 26314 1 0 0
## 26315 1 0 0
## 26316 1 0 0
## 26317 1 0 0
## 26318 1 0 0
## 26319 1 0 0
## 26320 1 0 0
## 26321 1 0 0
## 26322 1 0 0
## 26323 1 0 0
## 26324 2 0 0
## 26325 2 0 0
## 26326 2 1 0
## 26327 2 2 0
## 26328 3 0 0
## 26329 2 0 0
## 26330 2 0 0
## 26331 2 0 0
## 26332 2 0 0
## 26333 1 0 0
## 26334 2 0 0
## 26335 3 0 0
## 26336 2 0 0
## 26337 2 0 0
## 26338 2 0 0
## 26339 2 0 0
## 26340 2 0 0
## 26341 2 0 0
## 26342 2 0 0
## 26343 2 0 0
## 26344 2 0 0
## 26345 2 0 0
## 26346 2 2 0
## 26347 2 0 0
## 26348 2 0 0
## 26349 2 0 0
## 26350 2 0 0
## 26351 2 0 0
## 26352 2 0 0
## 26353 1 0 0
## 26354 2 0 0
## 26355 2 0 0
## 26356 2 0 0
## 26357 2 0 0
## 26358 2 0 0
## 26359 2 0 0
## 26360 2 0 0
## 26361 2 2 0
## 26362 2 0 0
## 26363 2 0 0
## 26364 2 0 0
## 26365 2 0 0
## 26366 2 0 0
## 26367 2 0 0
## 26368 2 0 0
## 26369 2 0 0
## 26370 2 0 0
## 26371 2 0 0
## 26372 1 0 0
## 26373 2 0 0
## 26374 2 0 0
## 26375 2 0 0
## 26376 2 2 0
## 26377 2 0 0
## 26378 2 0 0
## 26379 2 0 0
## 26380 2 0 0
## 26381 2 0 0
## 26382 2 0 0
## 26383 2 0 0
## 26384 2 0 0
## 26385 2 0 0
## 26386 2 0 0
## 26387 2 0 0
## 26388 2 0 0
## 26389 2 0 0
## 26390 1 0 0
## 26391 2 1 0
## 26392 2 1 0
## 26393 3 0 0
## 26394 2 0 0
## 26395 2 0 0
## 26396 2 0 0
## 26397 2 0 0
## 26398 3 1 0
## 26399 2 0 0
## 26400 2 1 0
## 26401 2 2 0
## 26402 2 0 0
## 26403 2 0 0
## 26404 2 0 0
## 26405 2 0 0
## 26406 2 0 0
## 26407 2 0 0
## 26408 2 1 0
## 26409 1 0 0
## 26410 2 0 0
## 26411 2 0 0
## 26412 2 0 0
## 26413 2 0 0
## 26414 2 0 0
## 26415 2 0 0
## 26416 2 0 0
## 26417 1 2 0
## 26418 1 0 0
## 26419 2 0 0
## 26420 2 0 0
## 26421 2 0 0
## 26422 2 0 0
## 26423 2 0 0
## 26424 2 1 0
## 26425 1 0 0
## 26426 2 2 0
## 26427 1 0 0
## 26428 2 0 0
## 26429 3 1 0
## 26430 2 3 0
## 26431 2 0 0
## 26432 2 0 0
## 26433 2 0 0
## 26434 2 0 0
## 26435 2 0 0
## 26436 2 0 0
## 26437 2 0 0
## 26438 2 0 0
## 26439 2 0 0
## 26440 2 0 0
## 26441 3 0 0
## 26442 2 0 0
## 26443 2 0 0
## 26444 2 2 0
## 26445 2 0 0
## 26446 2 0 0
## 26447 2 0 0
## 26448 1 0 0
## 26449 1 0 0
## 26450 1 0 0
## 26451 1 0 0
## 26452 1 0 0
## 26453 2 0 0
## 26454 1 0 0
## 26455 1 0 0
## 26456 1 0 0
## 26457 2 0 0
## 26458 2 0 0
## 26459 2 0 0
## 26460 2 0 0
## 26461 2 0 0
## 26462 2 0 0
## 26463 2 0 0
## 26464 2 0 0
## 26465 2 0 0
## 26466 2 0 0
## 26467 2 0 0
## 26468 2 0 0
## 26469 2 0 0
## 26470 2 0 0
## 26471 2 0 0
## 26472 2 0 0
## 26473 2 0 0
## 26474 2 0 0
## 26475 2 0 0
## 26476 2 0 0
## 26477 2 0 0
## 26478 2 0 0
## 26479 2 0 0
## 26480 3 1 0
## 26481 1 0 0
## 26482 2 0 0
## 26483 2 0 0
## 26484 2 0 0
## 26485 2 0 0
## 26486 2 2 0
## 26487 2 0 0
## 26488 2 0 0
## 26489 2 0 0
## 26490 1 0 0
## 26491 2 1 0
## 26492 2 1 0
## 26493 2 0 0
## 26494 2 0 0
## 26495 2 0 0
## 26496 2 0 0
## 26497 2 0 0
## 26498 2 0 0
## 26499 2 0 0
## 26500 2 0 0
## 26501 2 0 0
## 26502 2 0 0
## 26503 2 0 0
## 26504 2 0 0
## 26505 2 0 0
## 26506 2 0 0
## 26507 1 0 0
## 26508 3 1 0
## 26509 3 0 0
## 26510 2 0 0
## 26511 2 0 0
## 26512 2 0 0
## 26513 2 0 0
## 26514 2 0 0
## 26515 2 0 0
## 26516 2 0 0
## 26517 2 0 0
## 26518 2 0 0
## 26519 1 1 0
## 26520 2 0 0
## 26521 2 0 0
## 26522 2 0 0
## 26523 2 0 0
## 26524 1 0 0
## 26525 2 0 0
## 26526 2 2 0
## 26527 2 0 0
## 26528 2 0 0
## 26529 2 0 0
## 26530 2 0 0
## 26531 2 1 0
## 26532 2 0 0
## 26533 2 0 0
## 26534 3 0 0
## 26535 2 1 0
## 26536 2 0 0
## 26537 2 0 0
## 26538 2 0 0
## 26539 2 0 0
## 26540 2 0 0
## 26541 2 0 0
## 26542 2 0 0
## 26543 2 0 0
## 26544 1 1 0
## 26545 2 0 0
## 26546 2 0 0
## 26547 2 0 0
## 26548 2 0 0
## 26549 2 0 0
## 26550 2 0 0
## 26551 2 0 0
## 26552 1 0 0
## 26553 1 0 0
## 26554 2 0 0
## 26555 2 0 0
## 26556 2 0 0
## 26557 1 0 0
## 26558 2 0 0
## 26559 2 2 0
## 26560 2 0 0
## 26561 2 0 0
## 26562 2 1 0
## 26563 2 0 0
## 26564 2 0 0
## 26565 2 0 0
## 26566 3 1 0
## 26567 2 0 0
## 26568 2 0 0
## 26569 2 0 0
## 26570 2 0 0
## 26571 2 2 0
## 26572 2 1 0
## 26573 2 1 0
## 26574 2 0 0
## 26575 2 0 0
## 26576 2 1 0
## 26577 2 0 0
## 26578 2 1 0
## 26579 2 0 0
## 26580 2 0 0
## 26581 2 2 0
## 26582 2 0 0
## 26583 3 0 0
## 26584 2 0 0
## 26585 2 0 0
## 26586 2 0 0
## 26587 3 0 0
## 26588 2 0 0
## 26589 2 0 0
## 26590 2 0 0
## 26591 3 0 0
## 26592 3 0 0
## 26593 2 1 0
## 26594 2 0 0
## 26595 2 2 0
## 26596 2 0 0
## 26597 2 0 0
## 26598 2 0 0
## 26599 2 0 0
## 26600 2 0 0
## 26601 2 0 0
## 26602 2 2 0
## 26603 2 0 0
## 26604 2 0 0
## 26605 2 0 0
## 26606 2 0 0
## 26607 2 0 0
## 26608 2 0 0
## 26609 2 0 0
## 26610 2 0 0
## 26611 3 0 0
## 26612 2 0 0
## 26613 2 0 0
## 26614 2 0 0
## 26615 2 0 0
## 26616 2 0 0
## 26617 1 0 0
## 26618 1 0 0
## 26619 2 0 0
## 26620 2 1 0
## 26621 2 0 0
## 26622 2 0 0
## 26623 2 0 0
## 26624 2 0 0
## 26625 2 2 0
## 26626 2 2 0
## 26627 2 0 0
## 26628 2 0 0
## 26629 2 2 0
## 26630 2 0 0
## 26631 2 1 0
## 26632 2 1 0
## 26633 2 2 0
## 26634 3 2 0
## 26635 2 0 0
## 26636 2 0 0
## 26637 2 0 0
## 26638 2 0 0
## 26639 2 0 0
## 26640 2 0 0
## 26641 2 0 0
## 26642 2 0 0
## 26643 2 0 0
## 26644 2 0 0
## 26645 2 0 0
## 26646 2 0 0
## 26647 2 0 0
## 26648 1 0 0
## 26649 3 0 0
## 26650 2 0 0
## 26651 1 0 0
## 26652 1 0 0
## 26653 2 2 0
## 26654 1 0 0
## 26655 1 0 0
## 26656 2 0 0
## 26657 2 0 0
## 26658 2 0 0
## 26659 1 0 0
## 26660 1 0 0
## 26661 3 0 0
## 26662 2 0 0
## 26663 2 0 0
## 26664 2 0 0
## 26665 2 0 0
## 26666 2 0 0
## 26667 2 0 0
## 26668 2 0 0
## 26669 2 0 0
## 26670 2 0 0
## 26671 2 0 0
## 26672 2 0 0
## 26673 2 0 0
## 26674 2 0 0
## 26675 3 0 0
## 26676 2 0 0
## 26677 2 0 0
## 26678 2 0 0
## 26679 2 0 0
## 26680 2 0 0
## 26681 2 0 0
## 26682 2 2 0
## 26683 2 0 0
## 26684 2 0 0
## 26685 2 0 0
## 26686 2 0 0
## 26687 2 0 0
## 26688 2 0 0
## 26689 2 0 0
## 26690 2 2 0
## 26691 2 0 0
## 26692 2 0 0
## 26693 2 0 0
## 26694 2 0 0
## 26695 2 0 0
## 26696 2 1 0
## 26697 2 0 0
## 26698 2 0 0
## 26699 2 0 0
## 26700 2 1 0
## 26701 2 1 0
## 26702 2 0 0
## 26703 2 0 0
## 26704 2 0 0
## 26705 2 0 0
## 26706 2 0 0
## 26707 2 0 0
## 26708 2 1 0
## 26709 2 0 0
## 26710 2 2 0
## 26711 2 2 0
## 26712 2 0 0
## 26713 2 0 0
## 26714 2 0 0
## 26715 2 0 0
## 26716 2 0 0
## 26717 2 0 0
## 26718 2 0 0
## 26719 2 2 0
## 26720 2 0 0
## 26721 2 0 0
## 26722 2 0 0
## 26723 2 0 0
## 26724 2 0 0
## 26725 1 0 0
## 26726 2 0 0
## 26727 2 0 0
## 26728 2 0 0
## 26729 2 1 0
## 26730 2 0 0
## 26731 2 0 0
## 26732 3 0 0
## 26733 2 0 0
## 26734 2 0 0
## 26735 2 0 0
## 26736 3 0 0
## 26737 2 0 0
## 26738 2 2 0
## 26739 2 0 0
## 26740 2 0 0
## 26741 2 0 0
## 26742 2 0 0
## 26743 2 0 0
## 26744 2 0 0
## 26745 2 0 0
## 26746 2 0 0
## 26747 2 0 0
## 26748 3 0 0
## 26749 2 0 0
## 26750 1 0 0
## 26751 2 0 0
## 26752 1 0 0
## 26753 2 0 0
## 26754 2 0 0
## 26755 3 0 0
## 26756 3 1 0
## 26757 2 0 0
## 26758 1 0 0
## 26759 2 0 0
## 26760 2 0 0
## 26761 2 0 0
## 26762 2 0 0
## 26763 2 0 0
## 26764 2 0 0
## 26765 2 0 0
## 26766 2 0 0
## 26767 2 0 0
## 26768 2 0 0
## 26769 2 0 0
## 26770 2 1 0
## 26771 2 1 0
## 26772 2 0 0
## 26773 2 1 0
## 26774 2 0 0
## 26775 2 0 0
## 26776 2 0 0
## 26777 2 0 0
## 26778 2 1 0
## 26779 2 0 0
## 26780 3 0 0
## 26781 2 0 0
## 26782 2 0 0
## 26783 2 0 0
## 26784 2 1 0
## 26785 2 0 0
## 26786 2 0 0
## 26787 2 0 0
## 26788 2 0 0
## 26789 2 0 0
## 26790 2 0 0
## 26791 2 0 0
## 26792 2 0 0
## 26793 2 0 0
## 26794 2 0 0
## 26795 2 0 0
## 26796 2 0 0
## 26797 3 0 0
## 26798 3 0 0
## 26799 2 0 0
## 26800 2 0 0
## 26801 1 0 0
## 26802 2 0 0
## 26803 2 0 0
## 26804 2 0 0
## 26805 2 0 0
## 26806 3 0 0
## 26807 2 0 0
## 26808 2 0 0
## 26809 2 0 0
## 26810 2 0 0
## 26811 2 0 0
## 26812 1 0 0
## 26813 2 0 0
## 26814 4 0 0
## 26815 4 0 0
## 26816 2 0 0
## 26817 2 0 0
## 26818 2 0 0
## 26819 2 0 0
## 26820 2 0 0
## 26821 2 1 0
## 26822 2 0 0
## 26823 2 0 0
## 26824 2 0 0
## 26825 2 0 0
## 26826 2 0 0
## 26827 2 0 0
## 26828 3 0 0
## 26829 2 2 0
## 26830 2 0 0
## 26831 1 1 0
## 26832 2 1 0
## 26833 2 0 0
## 26834 2 0 0
## 26835 2 2 0
## 26836 2 0 0
## 26837 2 1 0
## 26838 2 0 0
## 26839 2 0 0
## 26840 2 0 0
## 26841 2 0 0
## 26842 2 0 0
## 26843 2 0 0
## 26844 2 0 0
## 26845 2 0 0
## 26846 2 0 0
## 26847 3 0 0
## 26848 2 0 0
## 26849 2 0 0
## 26850 2 0 0
## 26851 3 1 0
## 26852 3 0 0
## 26853 2 0 0
## 26854 2 0 0
## 26855 2 0 0
## 26856 3 0 0
## 26857 2 0 0
## 26858 2 0 0
## 26859 2 0 0
## 26860 2 0 0
## 26861 2 0 0
## 26862 2 0 0
## 26863 2 0 0
## 26864 2 0 0
## 26865 2 2 0
## 26866 2 0 0
## 26867 2 0 0
## 26868 2 0 0
## 26869 2 0 0
## 26870 2 0 0
## 26871 3 0 0
## 26872 2 0 0
## 26873 2 0 0
## 26874 1 0 0
## 26875 1 0 0
## 26876 2 0 0
## 26877 2 0 0
## 26878 1 0 0
## 26879 2 0 0
## 26880 3 0 0
## 26881 2 0 0
## 26882 2 0 0
## 26883 2 0 0
## 26884 3 0 0
## 26885 2 0 0
## 26886 2 0 0
## 26887 2 0 0
## 26888 3 0 0
## 26889 2 0 0
## 26890 2 0 0
## 26891 2 0 0
## 26892 2 0 0
## 26893 2 0 0
## 26894 2 2 0
## 26895 2 0 0
## 26896 2 0 0
## 26897 2 0 0
## 26898 2 0 0
## 26899 3 0 0
## 26900 2 0 0
## 26901 2 1 0
## 26902 3 0 0
## 26903 4 0 0
## 26904 2 0 0
## 26905 2 0 0
## 26906 2 0 0
## 26907 2 1 0
## 26908 3 0 0
## 26909 2 0 0
## 26910 2 1 0
## 26911 2 0 0
## 26912 2 1 0
## 26913 2 0 0
## 26914 2 1 0
## 26915 2 0 0
## 26916 2 0 0
## 26917 3 0 0
## 26918 2 2 0
## 26919 2 2 0
## 26920 2 0 0
## 26921 2 0 0
## 26922 3 0 0
## 26923 2 0 0
## 26924 2 0 0
## 26925 2 0 0
## 26926 2 0 0
## 26927 2 0 0
## 26928 2 0 0
## 26929 2 0 0
## 26930 2 0 0
## 26931 1 0 0
## 26932 3 0 0
## 26933 3 0 0
## 26934 2 0 0
## 26935 2 0 0
## 26936 3 1 0
## 26937 2 0 0
## 26938 2 2 0
## 26939 3 0 0
## 26940 3 0 0
## 26941 2 0 0
## 26942 2 0 0
## 26943 2 0 0
## 26944 1 1 0
## 26945 2 0 0
## 26946 2 0 0
## 26947 2 1 0
## 26948 3 1 0
## 26949 2 0 0
## 26950 2 0 0
## 26951 2 2 0
## 26952 2 0 0
## 26953 2 0 0
## 26954 2 2 0
## 26955 3 1 0
## 26956 2 0 0
## 26957 2 0 0
## 26958 2 0 0
## 26959 2 0 0
## 26960 2 0 0
## 26961 2 0 0
## 26962 2 0 0
## 26963 2 0 0
## 26964 2 1 0
## 26965 2 0 0
## 26966 3 1 0
## 26967 1 0 0
## 26968 2 1 0
## 26969 1 0 0
## 26970 2 0 0
## 26971 2 1 0
## 26972 2 1 0
## 26973 2 0 0
## 26974 2 0 0
## 26975 2 0 0
## 26976 2 0 0
## 26977 3 0 0
## 26978 2 0 0
## 26979 2 0 0
## 26980 3 0 0
## 26981 3 0 0
## 26982 2 0 0
## 26983 2 0 0
## 26984 2 0 0
## 26985 2 0 0
## 26986 2 0 0
## 26987 2 0 0
## 26988 2 0 0
## 26989 2 0 0
## 26990 2 0 0
## 26991 2 0 0
## 26992 2 0 0
## 26993 2 2 0
## 26994 2 2 0
## 26995 2 0 0
## 26996 2 0 0
## 26997 2 0 0
## 26998 2 0 0
## 26999 2 0 0
## 27000 2 0 0
## 27001 2 0 0
## 27002 2 0 0
## 27003 2 2 0
## 27004 2 0 0
## 27005 3 0 0
## 27006 3 0 0
## 27007 3 0 0
## 27008 2 1 0
## 27009 2 0 0
## 27010 2 0 0
## 27011 3 0 0
## 27012 1 0 0
## 27013 2 0 0
## 27014 2 0 0
## 27015 2 0 0
## 27016 2 0 0
## 27017 2 0 0
## 27018 2 0 0
## 27019 2 0 0
## 27020 2 0 0
## 27021 2 0 0
## 27022 2 0 0
## 27023 1 0 0
## 27024 1 0 0
## 27025 2 0 0
## 27026 2 0 0
## 27027 1 0 0
## 27028 2 0 0
## 27029 2 0 0
## 27030 3 0 0
## 27031 2 2 0
## 27032 2 1 0
## 27033 2 1 0
## 27034 2 0 0
## 27035 2 0 0
## 27036 2 0 0
## 27037 2 0 0
## 27038 2 0 0
## 27039 2 0 0
## 27040 2 0 0
## 27041 2 0 0
## 27042 2 1 0
## 27043 2 0 0
## 27044 2 0 0
## 27045 2 0 0
## 27046 2 0 0
## 27047 1 0 0
## 27048 2 0 0
## 27049 2 0 0
## 27050 2 0 0
## 27051 2 0 0
## 27052 2 0 0
## 27053 2 0 0
## 27054 2 0 0
## 27055 2 2 0
## 27056 2 1 0
## 27057 2 0 0
## 27058 2 0 0
## 27059 2 2 0
## 27060 2 0 0
## 27061 2 0 0
## 27062 2 0 0
## 27063 2 0 0
## 27064 2 2 0
## 27065 2 0 0
## 27066 2 0 0
## 27067 1 0 0
## 27068 2 0 0
## 27069 2 0 0
## 27070 2 0 0
## 27071 2 0 0
## 27072 3 0 0
## 27073 2 1 0
## 27074 2 1 0
## 27075 2 2 0
## 27076 2 2 0
## 27077 2 1 0
## 27078 3 0 0
## 27079 2 0 0
## 27080 1 0 0
## 27081 2 0 0
## 27082 2 1 0
## 27083 2 0 0
## 27084 2 2 0
## 27085 2 0 0
## 27086 3 0 0
## 27087 2 0 0
## 27088 2 0 0
## 27089 2 0 0
## 27090 1 0 0
## 27091 2 0 0
## 27092 2 0 0
## 27093 2 0 0
## 27094 2 0 0
## 27095 2 0 0
## 27096 2 0 0
## 27097 2 0 0
## 27098 2 0 0
## 27099 3 0 0
## 27100 2 0 0
## 27101 1 0 0
## 27102 2 0 0
## 27103 2 0 0
## 27104 2 0 0
## 27105 2 0 0
## 27106 2 0 0
## 27107 2 0 0
## 27108 3 1 0
## 27109 2 2 0
## 27110 2 0 0
## 27111 2 2 0
## 27112 2 0 0
## 27113 2 0 0
## 27114 1 0 0
## 27115 2 0 0
## 27116 2 0 0
## 27117 2 0 0
## 27118 2 0 0
## 27119 2 0 0
## 27120 2 0 0
## 27121 2 0 0
## 27122 2 0 0
## 27123 2 0 0
## 27124 2 0 0
## 27125 2 0 0
## 27126 2 0 0
## 27127 2 2 0
## 27128 2 0 0
## 27129 2 0 0
## 27130 2 0 0
## 27131 2 0 0
## 27132 2 0 0
## 27133 2 0 0
## 27134 2 0 0
## 27135 2 0 0
## 27136 2 0 0
## 27137 2 0 0
## 27138 2 0 0
## 27139 2 0 0
## 27140 2 0 0
## 27141 2 0 0
## 27142 3 1 0
## 27143 2 0 0
## 27144 2 0 0
## 27145 2 0 0
## 27146 2 0 0
## 27147 2 0 0
## 27148 2 0 0
## 27149 2 0 0
## 27150 2 0 0
## 27151 2 0 0
## 27152 2 0 0
## 27153 2 0 0
## 27154 2 0 0
## 27155 2 0 0
## 27156 2 0 0
## 27157 2 0 0
## 27158 2 0 0
## 27159 2 0 0
## 27160 2 0 0
## 27161 2 0 0
## 27162 2 0 0
## 27163 2 0 0
## 27164 2 1 0
## 27165 4 0 0
## 27166 2 0 0
## 27167 3 0 0
## 27168 2 0 0
## 27169 2 0 0
## 27170 2 0 0
## 27171 2 1 0
## 27172 2 0 0
## 27173 2 2 0
## 27174 2 0 0
## 27175 2 1 0
## 27176 2 1 0
## 27177 2 0 0
## 27178 2 0 0
## 27179 2 0 0
## 27180 2 0 0
## 27181 2 0 0
## 27182 2 0 0
## 27183 2 0 0
## 27184 2 1 0
## 27185 3 0 0
## 27186 2 0 0
## 27187 2 0 0
## 27188 2 0 0
## 27189 2 0 0
## 27190 2 0 0
## 27191 3 0 0
## 27192 2 1 0
## 27193 2 0 0
## 27194 2 1 0
## 27195 2 0 0
## 27196 3 0 0
## 27197 2 0 0
## 27198 2 0 0
## 27199 2 0 0
## 27200 2 0 0
## 27201 2 3 0
## 27202 2 2 0
## 27203 2 0 0
## 27204 2 0 0
## 27205 2 1 0
## 27206 2 2 0
## 27207 1 0 0
## 27208 2 0 0
## 27209 2 0 0
## 27210 1 2 0
## 27211 2 1 0
## 27212 2 0 0
## 27213 2 0 0
## 27214 3 0 0
## 27215 2 0 0
## 27216 3 0 0
## 27217 2 2 0
## 27218 2 0 0
## 27219 3 1 0
## 27220 3 0 0
## 27221 3 0 0
## 27222 2 0 0
## 27223 2 0 0
## 27224 2 0 0
## 27225 2 0 0
## 27226 2 0 0
## 27227 2 1 0
## 27228 3 1 0
## 27229 2 2 0
## 27230 2 0 0
## 27231 2 0 0
## 27232 2 0 0
## 27233 2 0 0
## 27234 2 1 0
## 27235 2 0 0
## 27236 2 0 0
## 27237 2 0 0
## 27238 2 0 0
## 27239 2 2 0
## 27240 2 0 0
## 27241 2 0 0
## 27242 2 0 0
## 27243 3 0 0
## 27244 3 0 0
## 27245 3 0 0
## 27246 2 0 0
## 27247 2 0 0
## 27248 2 0 0
## 27249 2 0 0
## 27250 3 1 0
## 27251 2 0 0
## 27252 2 0 0
## 27253 2 0 0
## 27254 2 0 0
## 27255 2 0 0
## 27256 2 0 0
## 27257 2 0 0
## 27258 2 0 0
## 27259 2 0 0
## 27260 2 0 0
## 27261 2 0 0
## 27262 2 0 0
## 27263 2 0 0
## 27264 2 0 0
## 27265 2 0 0
## 27266 2 0 0
## 27267 2 0 0
## 27268 2 0 0
## 27269 2 0 0
## 27270 2 1 0
## 27271 2 1 0
## 27272 2 0 0
## 27273 2 0 0
## 27274 2 0 0
## 27275 2 0 0
## 27276 2 0 0
## 27277 2 0 0
## 27278 2 0 0
## 27279 4 0 0
## 27280 1 0 0
## 27281 1 0 0
## 27282 2 1 0
## 27283 2 2 0
## 27284 2 2 0
## 27285 2 2 0
## 27286 2 0 0
## 27287 3 1 0
## 27288 2 0 0
## 27289 2 0 0
## 27290 2 0 0
## 27291 2 0 0
## 27292 1 0 0
## 27293 2 0 0
## 27294 2 0 0
## 27295 2 0 0
## 27296 2 0 0
## 27297 2 0 0
## 27298 2 0 0
## 27299 2 1 0
## 27300 2 0 0
## 27301 2 0 0
## 27302 2 0 0
## 27303 2 0 0
## 27304 2 2 0
## 27305 2 0 0
## 27306 2 0 0
## 27307 2 0 0
## 27308 2 0 0
## 27309 2 2 0
## 27310 2 0 0
## 27311 2 0 0
## 27312 2 0 0
## 27313 2 0 0
## 27314 2 0 0
## 27315 2 0 0
## 27316 2 0 0
## 27317 2 0 0
## 27318 2 1 0
## 27319 2 1 0
## 27320 2 0 0
## 27321 2 0 0
## 27322 1 0 0
## 27323 2 0 0
## 27324 2 0 0
## 27325 2 0 0
## 27326 2 0 0
## 27327 2 0 0
## 27328 2 0 0
## 27329 2 0 0
## 27330 2 0 0
## 27331 2 0 0
## 27332 3 0 0
## 27333 2 0 0
## 27334 2 0 0
## 27335 1 2 0
## 27336 2 1 0
## 27337 2 0 0
## 27338 1 0 0
## 27339 2 0 0
## 27340 3 0 0
## 27341 2 0 0
## 27342 2 0 0
## 27343 2 0 0
## 27344 2 0 0
## 27345 2 0 0
## 27346 2 0 0
## 27347 2 0 0
## 27348 2 0 0
## 27349 2 0 0
## 27350 2 0 0
## 27351 2 1 0
## 27352 2 0 0
## 27353 2 0 0
## 27354 2 0 0
## 27355 2 0 0
## 27356 2 0 0
## 27357 2 0 0
## 27358 2 0 0
## 27359 2 0 0
## 27360 2 0 0
## 27361 2 0 0
## 27362 2 0 0
## 27363 2 0 0
## 27364 2 0 0
## 27365 2 2 0
## 27366 1 0 0
## 27367 2 0 0
## 27368 2 0 0
## 27369 2 1 0
## 27370 2 1 0
## 27371 2 2 0
## 27372 3 0 0
## 27373 3 0 0
## 27374 2 1 0
## 27375 3 0 0
## 27376 2 2 0
## 27377 2 0 0
## 27378 2 0 0
## 27379 1 1 0
## 27380 2 0 0
## 27381 2 0 0
## 27382 3 0 0
## 27383 2 0 0
## 27384 2 0 0
## 27385 2 0 0
## 27386 2 2 0
## 27387 2 0 0
## 27388 2 0 0
## 27389 2 2 0
## 27390 2 0 0
## 27391 2 0 0
## 27392 2 0 0
## 27393 2 0 0
## 27394 3 0 0
## 27395 2 2 0
## 27396 2 0 0
## 27397 2 0 0
## 27398 1 0 0
## 27399 1 0 0
## 27400 1 0 0
## 27401 2 0 0
## 27402 2 1 0
## 27403 2 0 0
## 27404 2 0 0
## 27405 2 0 0
## 27406 2 0 0
## 27407 2 0 0
## 27408 2 0 0
## 27409 2 0 0
## 27410 2 0 0
## 27411 2 0 0
## 27412 2 0 0
## 27413 2 0 0
## 27414 2 2 0
## 27415 2 0 0
## 27416 2 0 0
## 27417 2 0 0
## 27418 2 0 0
## 27419 2 0 0
## 27420 3 1 0
## 27421 2 2 0
## 27422 2 0 0
## 27423 2 0 0
## 27424 2 0 0
## 27425 2 0 0
## 27426 2 0 0
## 27427 2 0 0
## 27428 2 0 0
## 27429 3 0 0
## 27430 2 0 0
## 27431 2 0 0
## 27432 1 0 0
## 27433 2 0 0
## 27434 1 0 0
## 27435 1 0 0
## 27436 2 2 0
## 27437 3 0 0
## 27438 2 0 0
## 27439 2 0 0
## 27440 2 0 0
## 27441 2 0 0
## 27442 3 0 0
## 27443 2 0 0
## 27444 2 0 0
## 27445 2 0 0
## 27446 2 0 0
## 27447 2 0 0
## 27448 2 0 0
## 27449 2 0 0
## 27450 2 1 0
## 27451 2 1 0
## 27452 2 2 0
## 27453 2 0 0
## 27454 2 0 0
## 27455 2 0 0
## 27456 3 0 0
## 27457 2 0 0
## 27458 2 0 0
## 27459 2 2 0
## 27460 2 0 0
## 27461 2 0 0
## 27462 2 0 0
## 27463 2 0 0
## 27464 2 0 0
## 27465 2 0 0
## 27466 2 0 0
## 27467 1 0 0
## 27468 2 0 0
## 27469 2 0 0
## 27470 1 0 0
## 27471 2 0 0
## 27472 1 0 0
## 27473 2 2 0
## 27474 2 0 0
## 27475 2 0 0
## 27476 2 0 0
## 27477 2 0 0
## 27478 2 2 0
## 27479 2 1 0
## 27480 2 0 0
## 27481 2 0 0
## 27482 2 0 0
## 27483 3 0 0
## 27484 2 0 0
## 27485 2 0 0
## 27486 2 0 0
## 27487 2 0 0
## 27488 2 0 0
## 27489 2 0 0
## 27490 2 0 0
## 27491 1 0 0
## 27492 2 0 0
## 27493 2 0 0
## 27494 2 0 0
## 27495 2 0 0
## 27496 2 0 0
## 27497 2 1 0
## 27498 3 1 0
## 27499 2 2 0
## 27500 2 0 0
## 27501 2 1 0
## 27502 2 0 0
## 27503 2 0 0
## 27504 2 0 0
## 27505 2 0 0
## 27506 2 0 0
## 27507 3 0 0
## 27508 2 0 0
## 27509 2 2 0
## 27510 3 1 0
## 27511 2 0 0
## 27512 3 0 0
## 27513 3 0 0
## 27514 3 0 0
## 27515 2 1 0
## 27516 2 0 0
## 27517 2 0 0
## 27518 2 0 0
## 27519 2 0 0
## 27520 2 0 0
## 27521 2 0 0
## 27522 2 0 0
## 27523 2 0 0
## 27524 2 0 0
## 27525 2 1 0
## 27526 2 0 0
## 27527 2 0 0
## 27528 1 1 0
## 27529 2 0 0
## 27530 2 0 0
## 27531 2 0 0
## 27532 2 0 0
## 27533 2 0 0
## 27534 2 1 0
## 27535 2 0 0
## 27536 2 1 0
## 27537 2 1 0
## 27538 2 0 0
## 27539 2 0 0
## 27540 2 0 0
## 27541 3 0 0
## 27542 3 0 0
## 27543 2 0 0
## 27544 2 0 0
## 27545 2 0 0
## 27546 2 0 0
## 27547 2 0 0
## 27548 2 0 0
## 27549 2 0 0
## 27550 2 0 0
## 27551 2 0 0
## 27552 2 0 0
## 27553 2 0 0
## 27554 2 0 0
## 27555 2 0 0
## 27556 3 0 0
## 27557 2 0 0
## 27558 2 0 0
## 27559 2 0 0
## 27560 2 0 0
## 27561 2 0 0
## 27562 2 0 0
## 27563 2 0 0
## 27564 2 0 0
## 27565 2 0 0
## 27566 3 0 0
## 27567 2 0 0
## 27568 3 0 0
## 27569 2 0 0
## 27570 2 1 0
## 27571 3 0 0
## 27572 2 1 0
## 27573 2 2 0
## 27574 2 0 0
## 27575 2 0 0
## 27576 1 0 0
## 27577 2 0 0
## 27578 2 0 0
## 27579 2 0 0
## 27580 2 0 0
## 27581 2 0 0
## 27582 2 2 0
## 27583 2 0 0
## 27584 2 0 0
## 27585 2 0 0
## 27586 2 0 0
## 27587 2 0 0
## 27588 2 1 0
## 27589 2 0 0
## 27590 2 0 0
## 27591 2 1 0
## 27592 2 0 0
## 27593 2 0 0
## 27594 2 0 0
## 27595 2 1 0
## 27596 2 0 0
## 27597 2 0 0
## 27598 2 0 0
## 27599 2 1 0
## 27600 2 1 0
## 27601 2 0 0
## 27602 2 0 0
## 27603 2 0 0
## 27604 2 0 0
## 27605 2 0 0
## 27606 2 0 0
## 27607 2 0 0
## 27608 2 0 0
## 27609 2 0 0
## 27610 2 0 0
## 27611 2 2 0
## 27612 2 0 0
## 27613 2 0 0
## 27614 2 0 0
## 27615 2 0 0
## 27616 2 2 0
## 27617 2 0 0
## 27618 1 1 0
## 27619 2 0 0
## 27620 2 2 0
## 27621 2 0 0
## 27622 2 0 0
## 27623 2 0 0
## 27624 1 0 0
## 27625 1 0 0
## 27626 2 0 0
## 27627 2 0 0
## 27628 2 0 0
## 27629 2 0 0
## 27630 2 0 0
## 27631 2 0 0
## 27632 3 0 0
## 27633 3 0 0
## 27634 2 0 0
## 27635 2 0 0
## 27636 2 0 0
## 27637 2 0 0
## 27638 2 0 0
## 27639 3 0 0
## 27640 2 2 0
## 27641 2 0 0
## 27642 2 0 0
## 27643 3 0 0
## 27644 2 1 0
## 27645 3 0 0
## 27646 2 0 0
## 27647 3 0 0
## 27648 2 0 0
## 27649 2 0 0
## 27650 2 0 0
## 27651 2 0 0
## 27652 2 0 0
## 27653 2 0 0
## 27654 3 1 0
## 27655 2 0 0
## 27656 2 0 0
## 27657 2 0 0
## 27658 2 0 0
## 27659 2 0 0
## 27660 2 0 0
## 27661 2 0 0
## 27662 1 0 0
## 27663 2 2 0
## 27664 2 0 0
## 27665 2 0 0
## 27666 2 0 0
## 27667 2 0 0
## 27668 2 0 0
## 27669 1 0 0
## 27670 2 0 0
## 27671 2 0 0
## 27672 2 0 0
## 27673 2 0 0
## 27674 2 0 0
## 27675 2 2 0
## 27676 2 0 0
## 27677 1 0 0
## 27678 2 1 0
## 27679 2 0 0
## 27680 2 0 0
## 27681 2 0 0
## 27682 2 1 0
## 27683 2 0 0
## 27684 2 0 0
## 27685 2 0 0
## 27686 2 0 0
## 27687 2 0 0
## 27688 2 1 0
## 27689 2 0 0
## 27690 2 0 0
## 27691 2 0 0
## 27692 2 0 0
## 27693 2 1 0
## 27694 2 0 0
## 27695 2 0 0
## 27696 2 0 0
## 27697 2 0 0
## 27698 2 0 0
## 27699 2 0 0
## 27700 2 0 0
## 27701 2 0 0
## 27702 2 0 0
## 27703 3 0 0
## 27704 2 0 0
## 27705 2 0 0
## 27706 2 1 0
## 27707 2 0 0
## 27708 2 2 0
## 27709 2 0 0
## 27710 2 0 0
## 27711 2 0 0
## 27712 2 0 0
## 27713 2 0 0
## 27714 2 0 0
## 27715 2 0 0
## 27716 2 0 0
## 27717 2 0 0
## 27718 2 2 0
## 27719 2 0 0
## 27720 2 0 0
## 27721 2 0 0
## 27722 1 1 0
## 27723 1 1 0
## 27724 2 0 0
## 27725 2 1 0
## 27726 2 0 0
## 27727 2 0 0
## 27728 3 0 0
## 27729 2 0 0
## 27730 2 0 0
## 27731 1 0 0
## 27732 3 0 0
## 27733 2 0 0
## 27734 3 0 0
## 27735 2 0 0
## 27736 2 0 0
## 27737 2 0 0
## 27738 2 0 0
## 27739 2 0 0
## 27740 2 0 0
## 27741 2 0 0
## 27742 2 0 0
## 27743 2 2 0
## 27744 3 0 0
## 27745 2 0 0
## 27746 2 1 0
## 27747 2 1 0
## 27748 3 0 0
## 27749 2 0 0
## 27750 2 0 0
## 27751 2 0 0
## 27752 2 0 0
## 27753 2 0 0
## 27754 2 0 0
## 27755 2 0 0
## 27756 3 0 0
## 27757 2 0 0
## 27758 2 0 0
## 27759 2 0 0
## 27760 2 0 0
## 27761 2 0 0
## 27762 2 0 0
## 27763 2 0 0
## 27764 2 0 0
## 27765 2 0 0
## 27766 2 0 0
## 27767 2 0 0
## 27768 2 0 0
## 27769 2 1 0
## 27770 2 0 0
## 27771 2 0 0
## 27772 2 0 0
## 27773 2 0 0
## 27774 2 1 0
## 27775 2 0 0
## 27776 2 0 0
## 27777 2 0 0
## 27778 2 0 0
## 27779 2 0 0
## 27780 2 0 0
## 27781 2 0 0
## 27782 2 0 0
## 27783 2 0 0
## 27784 2 0 0
## 27785 2 0 0
## 27786 2 2 0
## 27787 2 0 0
## 27788 3 1 0
## 27789 2 0 0
## 27790 2 1 0
## 27791 3 0 0
## 27792 2 0 0
## 27793 2 0 0
## 27794 3 0 0
## 27795 2 2 0
## 27796 2 0 0
## 27797 2 2 0
## 27798 2 2 0
## 27799 2 0 0
## 27800 2 0 0
## 27801 2 0 0
## 27802 2 2 0
## 27803 2 2 0
## 27804 2 2 0
## 27805 2 2 0
## 27806 1 0 0
## 27807 2 1 0
## 27808 1 3 0
## 27809 1 1 0
## 27810 2 0 0
## 27811 2 1 0
## 27812 2 0 0
## 27813 2 0 0
## 27814 2 1 0
## 27815 2 0 0
## 27816 2 0 0
## 27817 2 0 0
## 27818 2 0 0
## 27819 2 0 0
## 27820 2 2 0
## 27821 2 0 0
## 27822 2 0 0
## 27823 2 0 0
## 27824 2 0 0
## 27825 2 0 0
## 27826 2 0 0
## 27827 2 0 0
## 27828 2 0 0
## 27829 2 2 0
## 27830 2 2 0
## 27831 2 0 0
## 27832 2 0 0
## 27833 2 1 0
## 27834 2 0 0
## 27835 2 2 0
## 27836 2 0 0
## 27837 2 0 0
## 27838 2 0 0
## 27839 2 1 0
## 27840 2 1 0
## 27841 2 0 0
## 27842 2 0 0
## 27843 2 0 0
## 27844 2 2 0
## 27845 2 0 0
## 27846 2 1 0
## 27847 2 0 0
## 27848 2 0 0
## 27849 2 0 0
## 27850 3 0 0
## 27851 1 0 0
## 27852 2 0 0
## 27853 2 2 0
## 27854 2 0 0
## 27855 2 0 0
## 27856 2 0 0
## 27857 2 0 0
## 27858 2 0 0
## 27859 2 1 0
## 27860 2 1 0
## 27861 2 0 0
## 27862 3 0 0
## 27863 2 0 0
## 27864 2 0 0
## 27865 2 0 0
## 27866 2 0 0
## 27867 2 0 0
## 27868 2 0 0
## 27869 2 0 0
## 27870 2 0 0
## 27871 2 0 0
## 27872 2 0 0
## 27873 2 0 0
## 27874 2 0 0
## 27875 2 0 0
## 27876 2 0 0
## 27877 2 0 0
## 27878 2 0 0
## 27879 2 0 0
## 27880 3 0 0
## 27881 2 0 0
## 27882 2 0 0
## 27883 2 2 0
## 27884 4 0 0
## 27885 3 0 0
## 27886 2 0 0
## 27887 2 0 0
## 27888 2 1 0
## 27889 2 0 0
## 27890 3 0 0
## 27891 2 0 0
## 27892 2 0 0
## 27893 2 0 0
## 27894 2 1 0
## 27895 2 0 0
## 27896 2 0 0
## 27897 2 1 0
## 27898 2 0 0
## 27899 2 1 0
## 27900 2 0 0
## 27901 2 0 0
## 27902 3 0 0
## 27903 2 1 0
## 27904 2 0 0
## 27905 3 0 0
## 27906 2 0 0
## 27907 2 1 0
## 27908 3 0 0
## 27909 2 0 0
## 27910 2 0 0
## 27911 4 0 0
## 27912 2 0 0
## 27913 2 0 0
## 27914 2 0 0
## 27915 3 0 0
## 27916 2 0 0
## 27917 2 1 0
## 27918 2 0 0
## 27919 2 1 0
## 27920 2 0 0
## 27921 2 0 0
## 27922 2 0 0
## 27923 2 0 0
## 27924 2 0 0
## 27925 2 0 0
## 27926 2 1 0
## 27927 3 0 0
## 27928 3 0 0
## 27929 2 0 0
## 27930 2 0 0
## 27931 3 0 0
## 27932 2 0 0
## 27933 2 0 0
## 27934 2 0 0
## 27935 2 0 0
## 27936 2 1 0
## 27937 2 0 0
## 27938 3 0 0
## 27939 2 0 0
## 27940 2 0 0
## 27941 3 0 0
## 27942 3 0 0
## 27943 2 2 0
## 27944 2 0 0
## 27945 2 0 0
## 27946 3 0 0
## 27947 2 0 0
## 27948 2 0 0
## 27949 3 0 0
## 27950 2 0 0
## 27951 2 0 0
## 27952 3 0 0
## 27953 2 0 0
## 27954 2 0 0
## 27955 2 0 0
## 27956 2 0 0
## 27957 2 0 0
## 27958 2 2 0
## 27959 2 2 0
## 27960 2 0 0
## 27961 2 0 0
## 27962 3 1 0
## 27963 2 2 0
## 27964 2 0 0
## 27965 2 1 0
## 27966 2 0 0
## 27967 2 0 0
## 27968 3 0 0
## 27969 1 0 0
## 27970 2 0 0
## 27971 1 0 0
## 27972 2 0 0
## 27973 2 0 0
## 27974 2 1 0
## 27975 2 0 0
## 27976 2 2 0
## 27977 3 0 0
## 27978 2 0 0
## 27979 3 1 0
## 27980 2 0 0
## 27981 3 1 0
## 27982 2 0 0
## 27983 2 2 0
## 27984 2 0 0
## 27985 2 0 0
## 27986 2 0 0
## 27987 2 0 0
## 27988 2 2 0
## 27989 3 0 0
## 27990 2 0 0
## 27991 2 0 0
## 27992 1 0 0
## 27993 2 2 0
## 27994 2 0 0
## 27995 1 0 0
## 27996 2 0 0
## 27997 2 0 0
## 27998 2 0 0
## 27999 2 0 0
## 28000 2 0 0
## 28001 2 1 0
## 28002 2 0 0
## 28003 2 0 0
## 28004 2 1 0
## 28005 3 0 0
## 28006 2 0 0
## 28007 2 0 0
## 28008 3 1 0
## 28009 2 0 0
## 28010 2 0 0
## 28011 2 0 0
## 28012 2 0 0
## 28013 2 0 0
## 28014 2 0 0
## 28015 3 0 0
## 28016 2 0 0
## 28017 2 0 0
## 28018 2 0 0
## 28019 3 0 0
## 28020 2 2 0
## 28021 3 0 0
## 28022 2 1 0
## 28023 2 0 0
## 28024 2 0 0
## 28025 1 1 0
## 28026 2 0 0
## 28027 3 0 0
## 28028 3 0 0
## 28029 2 0 0
## 28030 2 0 0
## 28031 2 1 0
## 28032 2 0 0
## 28033 2 0 0
## 28034 1 0 0
## 28035 2 0 0
## 28036 2 0 0
## 28037 1 0 0
## 28038 2 0 0
## 28039 2 0 0
## 28040 2 0 0
## 28041 2 0 0
## 28042 3 1 0
## 28043 2 0 0
## 28044 2 0 0
## 28045 2 1 0
## 28046 3 0 0
## 28047 2 0 0
## 28048 3 1 0
## 28049 3 1 0
## 28050 2 0 0
## 28051 1 0 0
## 28052 2 0 0
## 28053 2 2 0
## 28054 2 2 0
## 28055 3 0 0
## 28056 2 0 0
## 28057 2 0 0
## 28058 2 0 0
## 28059 2 0 0
## 28060 2 0 0
## 28061 2 2 0
## 28062 2 0 0
## 28063 2 0 0
## 28064 2 0 0
## 28065 2 0 0
## 28066 2 0 0
## 28067 2 0 0
## 28068 2 0 0
## 28069 2 1 0
## 28070 2 0 0
## 28071 3 0 0
## 28072 3 0 0
## 28073 2 0 0
## 28074 2 0 0
## 28075 2 0 0
## 28076 2 0 0
## 28077 2 0 0
## 28078 2 0 0
## 28079 2 0 0
## 28080 2 0 0
## 28081 2 0 0
## 28082 2 0 0
## 28083 2 0 0
## 28084 2 0 0
## 28085 2 0 0
## 28086 2 0 0
## 28087 2 0 0
## 28088 2 0 0
## 28089 2 0 0
## 28090 2 0 0
## 28091 2 0 0
## 28092 2 0 0
## 28093 2 0 0
## 28094 2 0 0
## 28095 2 0 0
## 28096 2 0 0
## 28097 2 0 0
## 28098 2 0 0
## 28099 2 0 0
## 28100 2 0 0
## 28101 2 0 0
## 28102 2 0 0
## 28103 1 0 0
## 28104 2 0 0
## 28105 2 0 0
## 28106 2 0 0
## 28107 2 0 0
## 28108 2 0 0
## 28109 2 0 0
## 28110 2 0 0
## 28111 2 0 0
## 28112 2 0 0
## 28113 2 0 0
## 28114 2 0 0
## 28115 2 0 0
## 28116 2 0 0
## 28117 2 2 0
## 28118 2 0 0
## 28119 2 1 0
## 28120 2 0 0
## 28121 2 0 0
## 28122 2 0 0
## 28123 2 0 0
## 28124 2 0 0
## 28125 2 0 0
## 28126 2 0 0
## 28127 2 0 0
## 28128 2 0 0
## 28129 2 0 0
## 28130 2 0 0
## 28131 2 0 0
## 28132 2 0 0
## 28133 2 0 0
## 28134 2 0 0
## 28135 2 0 0
## 28136 2 0 0
## 28137 2 0 0
## 28138 2 1 0
## 28139 3 0 0
## 28140 2 0 0
## 28141 3 0 0
## 28142 2 0 0
## 28143 2 0 0
## 28144 2 0 0
## 28145 2 0 0
## 28146 2 0 0
## 28147 2 1 0
## 28148 2 2 0
## 28149 2 0 0
## 28150 2 0 0
## 28151 2 0 0
## 28152 2 0 0
## 28153 3 0 0
## 28154 2 0 0
## 28155 2 0 0
## 28156 2 0 0
## 28157 2 0 0
## 28158 2 0 0
## 28159 2 0 0
## 28160 2 0 0
## 28161 2 0 0
## 28162 2 0 0
## 28163 2 0 0
## 28164 2 0 0
## 28165 2 1 0
## 28166 2 0 0
## 28167 2 0 0
## 28168 2 0 0
## 28169 2 0 0
## 28170 2 0 0
## 28171 2 0 0
## 28172 2 0 0
## 28173 1 1 0
## 28174 2 0 0
## 28175 2 0 0
## 28176 2 0 0
## 28177 2 0 0
## 28178 2 0 0
## 28179 2 0 0
## 28180 2 0 0
## 28181 1 0 0
## 28182 1 0 0
## 28183 2 0 0
## 28184 2 0 0
## 28185 2 0 0
## 28186 2 0 0
## 28187 2 0 0
## 28188 2 0 0
## 28189 3 1 0
## 28190 2 0 0
## 28191 2 0 0
## 28192 1 0 0
## 28193 2 0 0
## 28194 1 0 0
## 28195 2 1 0
## 28196 2 1 0
## 28197 2 0 0
## 28198 2 0 0
## 28199 2 0 0
## 28200 3 1 0
## 28201 2 0 0
## 28202 2 0 0
## 28203 2 0 0
## 28204 2 0 0
## 28205 2 0 0
## 28206 2 0 0
## 28207 2 0 0
## 28208 1 0 0
## 28209 2 0 0
## 28210 3 0 0
## 28211 2 0 0
## 28212 2 0 0
## 28213 2 1 0
## 28214 2 0 0
## 28215 2 0 0
## 28216 2 0 0
## 28217 2 0 0
## 28218 2 0 0
## 28219 2 0 0
## 28220 2 0 0
## 28221 2 0 0
## 28222 2 0 0
## 28223 2 0 0
## 28224 2 0 0
## 28225 2 0 0
## 28226 2 0 0
## 28227 3 0 0
## 28228 2 0 0
## 28229 2 0 0
## 28230 2 2 0
## 28231 2 0 0
## 28232 2 0 0
## 28233 2 0 0
## 28234 2 0 0
## 28235 2 0 0
## 28236 2 0 0
## 28237 2 0 0
## 28238 2 0 0
## 28239 2 0 0
## 28240 2 0 0
## 28241 3 1 0
## 28242 2 0 0
## 28243 2 0 0
## 28244 3 0 0
## 28245 3 0 0
## 28246 2 0 0
## 28247 2 0 0
## 28248 2 0 0
## 28249 2 0 0
## 28250 2 0 0
## 28251 2 0 0
## 28252 2 0 0
## 28253 2 0 0
## 28254 2 0 0
## 28255 2 0 0
## 28256 2 1 0
## 28257 2 0 0
## 28258 2 0 0
## 28259 2 0 0
## 28260 2 2 0
## 28261 2 0 0
## 28262 2 1 0
## 28263 2 0 0
## 28264 1 0 0
## 28265 1 0 0
## 28266 2 0 0
## 28267 2 0 0
## 28268 2 0 0
## 28269 2 0 0
## 28270 2 0 0
## 28271 2 0 0
## 28272 2 0 0
## 28273 2 0 0
## 28274 2 0 0
## 28275 2 0 0
## 28276 2 0 0
## 28277 2 0 0
## 28278 2 0 0
## 28279 1 0 0
## 28280 2 2 0
## 28281 2 0 0
## 28282 3 0 0
## 28283 2 0 0
## 28284 2 0 0
## 28285 2 0 0
## 28286 2 0 0
## 28287 2 0 0
## 28288 2 0 0
## 28289 2 0 0
## 28290 2 0 0
## 28291 3 0 0
## 28292 4 0 0
## 28293 2 0 0
## 28294 2 0 0
## 28295 2 0 0
## 28296 2 0 0
## 28297 2 0 0
## 28298 2 0 0
## 28299 2 0 0
## 28300 2 0 0
## 28301 2 0 0
## 28302 2 0 0
## 28303 2 0 0
## 28304 2 0 0
## 28305 2 0 0
## 28306 2 0 0
## 28307 2 0 0
## 28308 2 0 0
## 28309 2 0 0
## 28310 2 0 0
## 28311 2 0 0
## 28312 2 0 0
## 28313 3 0 0
## 28314 2 0 0
## 28315 1 0 0
## 28316 2 0 0
## 28317 2 0 0
## 28318 2 0 0
## 28319 2 0 0
## 28320 2 0 0
## 28321 2 0 0
## 28322 2 0 0
## 28323 2 0 0
## 28324 2 0 0
## 28325 2 0 0
## 28326 2 0 0
## 28327 2 0 0
## 28328 2 0 0
## 28329 2 0 0
## 28330 2 0 0
## 28331 2 0 0
## 28332 2 0 0
## 28333 2 0 0
## 28334 1 0 0
## 28335 2 0 0
## 28336 2 0 0
## 28337 2 0 0
## 28338 2 0 0
## 28339 2 0 0
## 28340 2 0 0
## 28341 2 0 0
## 28342 2 0 0
## 28343 2 0 0
## 28344 2 0 0
## 28345 2 0 0
## 28346 2 0 0
## 28347 2 0 0
## 28348 2 1 0
## 28349 1 0 0
## 28350 3 0 0
## 28351 2 0 0
## 28352 2 0 0
## 28353 2 0 0
## 28354 2 0 0
## 28355 2 0 0
## 28356 2 2 0
## 28357 1 0 0
## 28358 2 2 0
## 28359 2 0 0
## 28360 2 0 0
## 28361 1 0 0
## 28362 2 0 0
## 28363 1 0 0
## 28364 2 0 0
## 28365 2 0 0
## 28366 2 0 0
## 28367 2 0 0
## 28368 2 0 0
## 28369 2 0 0
## 28370 2 0 0
## 28371 3 0 0
## 28372 2 0 0
## 28373 2 0 0
## 28374 2 1 0
## 28375 2 1 0
## 28376 3 0 0
## 28377 2 0 0
## 28378 3 1 0
## 28379 2 0 0
## 28380 2 1 0
## 28381 2 0 0
## 28382 2 0 0
## 28383 2 1 0
## 28384 2 0 0
## 28385 2 0 0
## 28386 2 0 0
## 28387 3 0 0
## 28388 2 0 0
## 28389 2 0 0
## 28390 2 0 0
## 28391 2 0 0
## 28392 2 0 0
## 28393 2 0 0
## 28394 2 0 0
## 28395 2 0 0
## 28396 2 0 0
## 28397 2 0 0
## 28398 2 0 0
## 28399 3 0 0
## 28400 2 0 0
## 28401 2 0 0
## 28402 2 0 0
## 28403 2 0 0
## 28404 2 0 0
## 28405 2 0 0
## 28406 2 0 0
## 28407 2 0 0
## 28408 2 0 0
## 28409 2 0 0
## 28410 2 0 0
## 28411 2 0 0
## 28412 2 2 0
## 28413 2 0 0
## 28414 3 0 0
## 28415 2 0 0
## 28416 3 0 0
## 28417 2 0 0
## 28418 2 0 0
## 28419 2 0 0
## 28420 2 0 0
## 28421 2 0 0
## 28422 2 0 0
## 28423 2 0 0
## 28424 2 0 0
## 28425 2 0 0
## 28426 2 0 0
## 28427 2 0 0
## 28428 2 0 0
## 28429 2 0 0
## 28430 2 1 0
## 28431 2 0 0
## 28432 2 0 0
## 28433 2 0 0
## 28434 2 0 0
## 28435 1 0 0
## 28436 1 0 0
## 28437 1 0 0
## 28438 2 0 0
## 28439 2 0 0
## 28440 2 1 0
## 28441 2 0 0
## 28442 2 0 0
## 28443 2 0 0
## 28444 2 0 0
## 28445 2 0 0
## 28446 2 0 0
## 28447 2 0 0
## 28448 2 0 0
## 28449 2 0 0
## 28450 2 0 0
## 28451 2 0 0
## 28452 2 0 0
## 28453 2 0 0
## 28454 2 0 0
## 28455 2 0 0
## 28456 2 0 0
## 28457 2 0 0
## 28458 2 0 0
## 28459 2 2 0
## 28460 2 0 0
## 28461 2 0 0
## 28462 2 0 0
## 28463 2 0 0
## 28464 2 0 0
## 28465 2 0 0
## 28466 2 0 0
## 28467 1 0 0
## 28468 2 0 0
## 28469 2 0 0
## 28470 2 0 0
## 28471 1 0 0
## 28472 1 0 0
## 28473 1 0 0
## 28474 2 0 0
## 28475 2 0 0
## 28476 2 0 0
## 28477 2 0 0
## 28478 2 0 0
## 28479 2 0 0
## 28480 2 0 0
## 28481 2 0 0
## 28482 2 0 0
## 28483 2 0 0
## 28484 3 0 0
## 28485 1 0 0
## 28486 2 0 0
## 28487 2 0 0
## 28488 2 0 0
## 28489 2 0 0
## 28490 2 0 0
## 28491 2 0 0
## 28492 2 0 0
## 28493 2 0 0
## 28494 2 0 0
## 28495 2 0 0
## 28496 2 0 0
## 28497 2 0 0
## 28498 2 0 0
## 28499 2 0 0
## 28500 2 0 0
## 28501 2 0 0
## 28502 2 0 0
## 28503 2 0 0
## 28504 2 0 0
## 28505 2 0 0
## 28506 2 2 0
## 28507 2 0 0
## 28508 2 0 0
## 28509 2 2 0
## 28510 2 0 0
## 28511 2 0 0
## 28512 2 0 0
## 28513 2 0 0
## 28514 3 1 0
## 28515 2 1 0
## 28516 2 0 0
## 28517 2 0 0
## 28518 2 0 0
## 28519 2 0 0
## 28520 1 0 0
## 28521 1 0 0
## 28522 2 0 0
## 28523 2 0 0
## 28524 2 1 0
## 28525 2 0 0
## 28526 2 0 0
## 28527 2 0 0
## 28528 2 0 0
## 28529 2 0 0
## 28530 2 0 0
## 28531 2 0 0
## 28532 2 0 0
## 28533 2 0 0
## 28534 2 0 0
## 28535 1 0 0
## 28536 2 0 0
## 28537 1 0 0
## 28538 1 0 0
## 28539 1 0 0
## 28540 2 0 0
## 28541 2 0 0
## 28542 2 0 0
## 28543 1 0 0
## 28544 2 0 0
## 28545 1 0 0
## 28546 3 0 0
## 28547 2 0 0
## 28548 3 0 0
## 28549 2 0 0
## 28550 2 0 0
## 28551 2 0 0
## 28552 2 0 0
## 28553 3 1 0
## 28554 2 0 0
## 28555 2 0 0
## 28556 2 0 0
## 28557 2 0 0
## 28558 3 0 0
## 28559 3 0 0
## 28560 2 0 0
## 28561 2 0 0
## 28562 2 0 0
## 28563 2 0 0
## 28564 2 0 0
## 28565 2 0 0
## 28566 2 0 0
## 28567 2 0 0
## 28568 2 0 0
## 28569 2 0 0
## 28570 2 0 0
## 28571 2 0 0
## 28572 1 0 0
## 28573 2 1 0
## 28574 2 0 0
## 28575 2 0 0
## 28576 2 0 0
## 28577 2 0 0
## 28578 2 0 0
## 28579 2 0 0
## 28580 2 0 0
## 28581 1 0 0
## 28582 1 0 0
## 28583 1 0 0
## 28584 1 0 0
## 28585 1 0 0
## 28586 2 0 0
## 28587 2 0 0
## 28588 2 0 0
## 28589 1 0 0
## 28590 1 0 0
## 28591 3 0 0
## 28592 2 0 0
## 28593 2 0 0
## 28594 2 0 0
## 28595 2 0 0
## 28596 2 0 0
## 28597 2 0 0
## 28598 2 0 0
## 28599 2 0 0
## 28600 1 0 0
## 28601 2 0 0
## 28602 2 0 0
## 28603 2 0 0
## 28604 2 0 0
## 28605 2 0 0
## 28606 1 0 0
## 28607 2 0 0
## 28608 1 0 0
## 28609 2 0 0
## 28610 2 0 0
## 28611 2 0 0
## 28612 2 0 0
## 28613 1 0 0
## 28614 1 0 0
## 28615 2 0 0
## 28616 2 0 0
## 28617 2 0 0
## 28618 2 0 0
## 28619 1 0 0
## 28620 1 0 0
## 28621 2 0 0
## 28622 2 0 0
## 28623 4 0 0
## 28624 2 0 0
## 28625 2 0 0
## 28626 2 0 0
## 28627 3 0 0
## 28628 2 0 0
## 28629 2 0 0
## 28630 1 0 0
## 28631 2 0 0
## 28632 4 0 0
## 28633 2 0 0
## 28634 2 0 0
## 28635 1 0 0
## 28636 2 0 0
## 28637 2 0 0
## 28638 2 2 0
## 28639 2 0 0
## 28640 2 0 0
## 28641 2 0 0
## 28642 1 0 0
## 28643 2 0 0
## 28644 1 0 0
## 28645 1 0 0
## 28646 1 0 0
## 28647 2 0 0
## 28648 2 0 0
## 28649 2 0 0
## 28650 2 0 0
## 28651 1 0 0
## 28652 2 0 0
## 28653 2 0 0
## 28654 2 0 0
## 28655 2 0 0
## 28656 2 0 0
## 28657 2 0 0
## 28658 2 0 0
## 28659 2 0 0
## 28660 2 0 0
## 28661 2 0 0
## 28662 1 0 0
## 28663 2 0 0
## 28664 2 0 0
## 28665 2 0 0
## 28666 2 0 0
## 28667 2 2 0
## 28668 2 0 0
## 28669 2 0 0
## 28670 2 0 0
## 28671 2 0 0
## 28672 2 0 0
## 28673 2 0 0
## 28674 2 0 0
## 28675 2 0 0
## 28676 2 0 0
## 28677 2 0 0
## 28678 2 0 0
## 28679 2 0 0
## 28680 2 0 0
## 28681 2 0 0
## 28682 2 0 0
## 28683 2 0 0
## 28684 2 0 0
## 28685 3 0 0
## 28686 2 0 0
## 28687 2 0 0
## 28688 2 0 0
## 28689 2 0 0
## 28690 3 0 0
## 28691 2 0 0
## 28692 2 0 0
## 28693 2 0 0
## 28694 2 0 0
## 28695 2 0 0
## 28696 2 2 0
## 28697 2 0 0
## 28698 2 0 0
## 28699 2 0 0
## 28700 2 0 0
## 28701 2 0 0
## 28702 2 0 0
## 28703 2 2 0
## 28704 2 0 0
## 28705 2 0 0
## 28706 2 0 0
## 28707 2 0 0
## 28708 2 0 0
## 28709 2 0 0
## 28710 2 0 0
## 28711 2 0 0
## 28712 2 0 0
## 28713 2 0 0
## 28714 2 0 0
## 28715 1 0 0
## 28716 2 0 0
## 28717 2 0 0
## 28718 2 0 0
## 28719 2 2 0
## 28720 2 0 0
## 28721 2 0 0
## 28722 2 0 0
## 28723 2 0 0
## 28724 2 0 0
## 28725 2 0 0
## 28726 2 0 0
## 28727 2 0 0
## 28728 2 0 0
## 28729 2 0 0
## 28730 2 0 0
## 28731 2 0 0
## 28732 2 0 0
## 28733 2 2 0
## 28734 2 2 0
## 28735 3 0 0
## 28736 2 2 0
## 28737 2 0 0
## 28738 2 0 0
## 28739 2 0 0
## 28740 2 0 0
## 28741 2 0 0
## 28742 2 0 0
## 28743 2 0 0
## 28744 2 0 0
## 28745 2 0 0
## 28746 2 0 0
## 28747 2 0 0
## 28748 2 0 0
## 28749 2 0 0
## 28750 2 0 0
## 28751 2 0 0
## 28752 2 0 0
## 28753 2 0 0
## 28754 2 0 0
## 28755 2 2 0
## 28756 2 0 0
## 28757 2 0 0
## 28758 1 0 0
## 28759 2 0 0
## 28760 2 0 0
## 28761 2 0 0
## 28762 3 1 0
## 28763 2 0 0
## 28764 2 0 0
## 28765 2 0 0
## 28766 2 0 0
## 28767 2 0 0
## 28768 2 0 0
## 28769 2 0 0
## 28770 1 0 0
## 28771 2 0 0
## 28772 2 0 0
## 28773 2 0 0
## 28774 2 0 0
## 28775 2 0 0
## 28776 2 0 0
## 28777 2 0 0
## 28778 2 0 0
## 28779 3 1 0
## 28780 2 0 0
## 28781 2 0 0
## 28782 2 0 0
## 28783 1 0 0
## 28784 2 0 0
## 28785 2 0 0
## 28786 2 0 0
## 28787 2 0 0
## 28788 2 0 0
## 28789 3 0 0
## 28790 2 0 0
## 28791 2 0 0
## 28792 2 0 0
## 28793 2 0 0
## 28794 2 0 0
## 28795 2 0 0
## 28796 2 0 0
## 28797 2 0 0
## 28798 2 0 0
## 28799 1 0 0
## 28800 2 0 0
## 28801 2 0 0
## 28802 2 0 0
## 28803 2 0 0
## 28804 2 0 0
## 28805 2 0 0
## 28806 2 0 0
## 28807 2 0 0
## 28808 2 0 0
## 28809 2 0 0
## 28810 2 0 0
## 28811 2 0 0
## 28812 3 0 0
## 28813 2 0 0
## 28814 2 0 0
## 28815 2 0 0
## 28816 2 0 0
## 28817 2 0 0
## 28818 2 0 0
## 28819 2 0 0
## 28820 2 0 0
## 28821 2 0 0
## 28822 2 0 0
## 28823 1 0 0
## 28824 2 0 0
## 28825 1 0 0
## 28826 2 0 0
## 28827 2 0 0
## 28828 2 0 0
## 28829 2 0 0
## 28830 2 0 0
## 28831 2 0 0
## 28832 2 0 0
## 28833 2 0 0
## 28834 2 0 0
## 28835 2 0 0
## 28836 2 0 0
## 28837 2 0 0
## 28838 1 2 0
## 28839 2 0 0
## 28840 2 0 0
## 28841 2 0 0
## 28842 2 0 0
## 28843 2 0 0
## 28844 2 0 0
## 28845 2 0 0
## 28846 1 0 0
## 28847 2 0 0
## 28848 2 0 0
## 28849 2 0 0
## 28850 1 0 0
## 28851 2 0 0
## 28852 2 0 0
## 28853 2 0 0
## 28854 1 0 0
## 28855 1 0 0
## 28856 1 0 0
## 28857 2 0 0
## 28858 2 0 0
## 28859 2 0 0
## 28860 2 0 0
## 28861 2 0 0
## 28862 2 0 0
## 28863 3 1 0
## 28864 2 0 0
## 28865 2 0 0
## 28866 2 2 0
## 28867 2 0 0
## 28868 2 0 0
## 28869 2 0 0
## 28870 2 0 0
## 28871 2 0 0
## 28872 2 0 0
## 28873 2 0 0
## 28874 1 0 0
## 28875 2 0 0
## 28876 2 0 0
## 28877 2 0 0
## 28878 2 0 0
## 28879 2 0 0
## 28880 2 0 0
## 28881 2 2 0
## 28882 2 0 0
## 28883 2 0 0
## 28884 2 0 0
## 28885 2 0 0
## 28886 2 0 0
## 28887 2 0 0
## 28888 2 0 0
## 28889 2 0 0
## 28890 2 0 0
## 28891 1 0 0
## 28892 2 0 0
## 28893 2 0 0
## 28894 2 0 0
## 28895 3 1 0
## 28896 1 0 0
## 28897 1 0 0
## 28898 1 0 0
## 28899 2 0 0
## 28900 2 0 0
## 28901 2 0 0
## 28902 2 0 0
## 28903 2 0 0
## 28904 2 0 0
## 28905 2 0 0
## 28906 2 0 0
## 28907 2 0 0
## 28908 2 0 0
## 28909 1 0 0
## 28910 2 0 0
## 28911 2 0 0
## 28912 2 0 0
## 28913 1 0 0
## 28914 2 0 0
## 28915 2 0 0
## 28916 2 0 0
## 28917 2 0 0
## 28918 2 0 0
## 28919 2 0 0
## 28920 2 0 0
## 28921 2 0 0
## 28922 2 0 0
## 28923 2 0 0
## 28924 1 0 0
## 28925 2 0 0
## 28926 2 0 0
## 28927 2 0 0
## 28928 2 0 0
## 28929 2 2 0
## 28930 2 0 0
## 28931 2 0 0
## 28932 2 0 0
## 28933 2 0 0
## 28934 2 0 0
## 28935 2 0 0
## 28936 2 2 0
## 28937 2 0 0
## 28938 3 0 0
## 28939 2 0 0
## 28940 2 0 0
## 28941 2 0 0
## 28942 2 0 0
## 28943 2 0 0
## 28944 2 0 0
## 28945 2 0 0
## 28946 2 0 0
## 28947 1 0 0
## 28948 3 1 0
## 28949 2 0 0
## 28950 2 0 0
## 28951 2 0 0
## 28952 1 0 0
## 28953 2 0 0
## 28954 1 0 0
## 28955 2 0 0
## 28956 1 0 0
## 28957 2 0 0
## 28958 2 0 0
## 28959 2 0 0
## 28960 2 0 0
## 28961 2 0 0
## 28962 2 0 0
## 28963 2 0 0
## 28964 2 0 0
## 28965 2 2 0
## 28966 2 0 0
## 28967 2 0 0
## 28968 2 0 0
## 28969 2 0 0
## 28970 2 0 0
## 28971 2 0 0
## 28972 2 0 0
## 28973 1 0 0
## 28974 2 0 0
## 28975 2 0 0
## 28976 2 0 0
## 28977 2 0 0
## 28978 2 0 0
## 28979 2 0 0
## 28980 2 0 0
## 28981 2 0 0
## 28982 1 0 0
## 28983 1 0 0
## 28984 2 0 0
## 28985 2 0 0
## 28986 2 2 0
## 28987 2 0 0
## 28988 2 0 0
## 28989 2 0 0
## 28990 2 0 0
## 28991 2 0 0
## 28992 1 0 0
## 28993 2 0 0
## 28994 2 0 0
## 28995 2 0 0
## 28996 2 0 0
## 28997 2 0 0
## 28998 2 0 0
## 28999 2 0 0
## 29000 2 0 0
## 29001 2 0 0
## 29002 2 0 0
## 29003 2 0 0
## 29004 2 0 0
## 29005 1 0 0
## 29006 2 0 0
## 29007 2 0 0
## 29008 1 0 0
## 29009 2 0 0
## 29010 1 0 0
## 29011 1 0 0
## 29012 2 0 0
## 29013 2 0 0
## 29014 2 0 0
## 29015 3 0 0
## 29016 3 0 0
## 29017 1 0 0
## 29018 1 0 0
## 29019 2 0 0
## 29020 2 0 0
## 29021 2 0 0
## 29022 2 0 0
## 29023 2 0 0
## 29024 2 0 0
## 29025 3 0 0
## 29026 2 0 0
## 29027 1 0 0
## 29028 2 0 0
## 29029 2 0 0
## 29030 2 0 0
## 29031 2 0 0
## 29032 2 0 0
## 29033 1 0 0
## 29034 2 0 0
## 29035 2 0 0
## 29036 1 0 0
## 29037 2 0 0
## 29038 2 0 0
## 29039 2 0 0
## 29040 2 0 0
## 29041 2 0 0
## 29042 2 0 0
## 29043 2 0 0
## 29044 2 0 0
## 29045 2 0 0
## 29046 2 0 0
## 29047 2 0 0
## 29048 2 0 0
## 29049 2 0 0
## 29050 2 0 0
## 29051 2 0 0
## 29052 2 0 0
## 29053 2 0 0
## 29054 2 0 0
## 29055 2 0 0
## 29056 2 0 0
## 29057 2 0 0
## 29058 2 0 0
## 29059 2 0 0
## 29060 2 0 0
## 29061 2 0 0
## 29062 2 0 0
## 29063 2 0 0
## 29064 2 0 0
## 29065 2 0 0
## 29066 2 0 0
## 29067 2 0 0
## 29068 1 0 0
## 29069 2 0 0
## 29070 2 0 0
## 29071 2 0 0
## 29072 1 0 0
## 29073 2 0 0
## 29074 2 0 0
## 29075 2 0 0
## 29076 2 0 0
## 29077 2 0 0
## 29078 1 0 0
## 29079 2 0 0
## 29080 2 0 0
## 29081 2 0 0
## 29082 2 0 0
## 29083 2 0 0
## 29084 2 0 0
## 29085 2 0 0
## 29086 2 0 0
## 29087 2 0 0
## 29088 2 0 0
## 29089 3 0 0
## 29090 2 0 0
## 29091 2 0 0
## 29092 2 0 0
## 29093 2 0 0
## 29094 2 0 0
## 29095 2 0 0
## 29096 2 0 0
## 29097 2 0 0
## 29098 1 0 0
## 29099 2 0 0
## 29100 2 0 0
## 29101 2 0 0
## 29102 2 0 0
## 29103 2 0 0
## 29104 2 0 0
## 29105 1 0 0
## 29106 2 0 0
## 29107 2 0 0
## 29108 1 0 0
## 29109 1 0 0
## 29110 2 0 0
## 29111 3 0 0
## 29112 2 0 0
## 29113 2 0 0
## 29114 2 0 0
## 29115 3 0 0
## 29116 2 0 0
## 29117 2 0 0
## 29118 1 0 0
## 29119 2 0 0
## 29120 2 0 0
## 29121 3 0 0
## 29122 1 0 0
## 29123 2 0 0
## 29124 2 0 0
## 29125 2 2 0
## 29126 2 0 0
## 29127 2 0 0
## 29128 2 0 0
## 29129 2 0 0
## 29130 2 0 0
## 29131 2 0 0
## 29132 2 0 0
## 29133 2 0 0
## 29134 2 0 0
## 29135 2 0 0
## 29136 2 2 0
## 29137 2 1 0
## 29138 2 0 0
## 29139 2 0 0
## 29140 2 0 0
## 29141 2 0 0
## 29142 3 1 0
## 29143 2 0 0
## 29144 2 0 0
## 29145 1 0 0
## 29146 2 0 0
## 29147 2 0 0
## 29148 2 0 0
## 29149 2 0 0
## 29150 2 0 0
## 29151 2 0 0
## 29152 2 0 0
## 29153 2 0 0
## 29154 2 0 0
## 29155 2 0 0
## 29156 2 0 0
## 29157 2 0 0
## 29158 2 0 0
## 29159 2 0 0
## 29160 2 0 0
## 29161 1 0 0
## 29162 2 0 0
## 29163 1 0 0
## 29164 2 0 0
## 29165 2 0 0
## 29166 2 0 0
## 29167 1 0 0
## 29168 2 0 0
## 29169 2 0 0
## 29170 2 0 0
## 29171 2 0 0
## 29172 2 0 0
## 29173 2 0 0
## 29174 2 0 0
## 29175 2 0 0
## 29176 2 0 0
## 29177 2 0 0
## 29178 2 0 0
## 29179 1 0 0
## 29180 2 0 0
## 29181 2 0 0
## 29182 2 0 0
## 29183 2 0 0
## 29184 2 0 0
## 29185 2 0 0
## 29186 2 0 0
## 29187 2 0 0
## 29188 2 0 0
## 29189 2 0 0
## 29190 1 0 0
## 29191 2 0 0
## 29192 3 1 0
## 29193 2 0 0
## 29194 2 0 0
## 29195 2 0 0
## 29196 3 1 0
## 29197 2 0 0
## 29198 2 0 0
## 29199 2 2 0
## 29200 2 0 0
## 29201 2 1 0
## 29202 2 0 0
## 29203 2 0 0
## 29204 2 0 0
## 29205 2 2 0
## 29206 2 0 0
## 29207 2 0 0
## 29208 2 0 0
## 29209 2 0 0
## 29210 2 0 0
## 29211 2 0 0
## 29212 1 0 0
## 29213 2 0 0
## 29214 2 0 0
## 29215 2 0 0
## 29216 2 0 0
## 29217 2 0 0
## 29218 2 0 0
## 29219 2 0 0
## 29220 2 0 0
## 29221 1 0 0
## 29222 1 0 0
## 29223 2 0 0
## 29224 2 0 0
## 29225 2 0 0
## 29226 2 0 0
## 29227 2 0 0
## 29228 2 0 0
## 29229 2 0 0
## 29230 2 0 0
## 29231 2 0 0
## 29232 1 0 0
## 29233 2 0 0
## 29234 2 0 0
## 29235 2 0 0
## 29236 2 2 0
## 29237 2 0 0
## 29238 2 0 0
## 29239 2 0 0
## 29240 2 0 0
## 29241 2 0 0
## 29242 2 2 0
## 29243 2 0 0
## 29244 2 0 0
## 29245 2 0 0
## 29246 2 0 0
## 29247 2 0 0
## 29248 3 0 0
## 29249 2 0 0
## 29250 2 0 0
## 29251 2 0 0
## 29252 2 0 0
## 29253 2 0 0
## 29254 2 0 0
## 29255 2 0 0
## 29256 2 0 0
## 29257 2 0 0
## 29258 1 0 0
## 29259 2 0 0
## 29260 2 0 0
## 29261 1 0 0
## 29262 2 0 0
## 29263 2 0 0
## 29264 2 0 0
## 29265 1 0 0
## 29266 2 0 0
## 29267 2 0 0
## 29268 2 0 0
## 29269 2 0 0
## 29270 2 2 0
## 29271 2 0 0
## 29272 1 0 0
## 29273 2 2 0
## 29274 2 0 0
## 29275 1 0 0
## 29276 1 0 0
## 29277 1 0 0
## 29278 2 0 0
## 29279 2 0 0
## 29280 2 0 0
## 29281 1 0 0
## 29282 1 0 0
## 29283 2 0 0
## 29284 1 0 0
## 29285 2 0 0
## 29286 2 0 0
## 29287 2 0 0
## 29288 1 0 0
## 29289 1 0 0
## 29290 2 0 0
## 29291 1 0 0
## 29292 2 0 0
## 29293 2 0 0
## 29294 2 0 0
## 29295 1 0 0
## 29296 1 0 0
## 29297 1 0 0
## 29298 1 0 0
## 29299 1 0 0
## 29300 2 0 0
## 29301 2 0 0
## 29302 2 0 0
## 29303 2 0 0
## 29304 1 0 0
## 29305 1 0 0
## 29306 2 0 0
## 29307 1 0 0
## 29308 2 0 0
## 29309 1 0 0
## 29310 1 0 0
## 29311 2 0 0
## 29312 2 0 0
## 29313 2 0 0
## 29314 1 0 0
## 29315 2 0 0
## 29316 1 0 0
## 29317 2 0 0
## 29318 1 0 0
## 29319 1 0 0
## 29320 3 0 0
## 29321 2 0 0
## 29322 2 0 0
## 29323 2 0 0
## 29324 2 0 0
## 29325 1 0 0
## 29326 2 0 0
## 29327 2 0 0
## 29328 2 0 0
## 29329 2 0 0
## 29330 1 0 0
## 29331 1 0 0
## 29332 2 0 0
## 29333 1 0 0
## 29334 2 0 0
## 29335 1 0 0
## 29336 2 0 0
## 29337 2 0 0
## 29338 2 0 0
## 29339 1 0 0
## 29340 2 0 0
## 29341 1 0 0
## 29342 2 0 0
## 29343 2 0 0
## 29344 2 0 0
## 29345 1 0 0
## 29346 1 0 0
## 29347 1 0 0
## 29348 2 0 0
## 29349 1 0 0
## 29350 2 0 0
## 29351 1 0 0
## 29352 1 0 0
## 29353 1 0 0
## 29354 1 0 0
## 29355 1 0 0
## 29356 1 0 0
## 29357 1 0 0
## 29358 2 0 0
## 29359 2 0 0
## 29360 2 0 0
## 29361 2 0 0
## 29362 1 0 0
## 29363 2 0 0
## 29364 3 0 0
## 29365 2 0 0
## 29366 1 0 0
## 29367 1 0 0
## 29368 1 0 0
## 29369 2 0 0
## 29370 2 0 0
## 29371 2 0 0
## 29372 2 0 0
## 29373 2 0 0
## 29374 2 0 0
## 29375 2 0 0
## 29376 2 0 0
## 29377 2 0 0
## 29378 1 0 0
## 29379 2 0 0
## 29380 2 0 0
## 29381 1 0 0
## 29382 1 0 0
## 29383 2 0 0
## 29384 2 0 0
## 29385 1 0 0
## 29386 2 0 0
## 29387 1 0 0
## 29388 2 0 0
## 29389 2 0 0
## 29390 2 0 0
## 29391 2 0 0
## 29392 2 0 0
## 29393 1 0 0
## 29394 2 0 0
## 29395 2 0 0
## 29396 2 0 0
## 29397 2 0 0
## 29398 2 0 0
## 29399 2 0 0
## 29400 2 0 0
## 29401 2 0 0
## 29402 2 0 0
## 29403 2 0 0
## 29404 2 0 0
## 29405 2 0 0
## 29406 1 0 0
## 29407 1 0 0
## 29408 1 0 0
## 29409 1 0 0
## 29410 1 0 0
## 29411 2 0 0
## 29412 2 0 0
## 29413 2 0 0
## 29414 2 0 0
## 29415 2 0 0
## 29416 2 0 0
## 29417 2 0 0
## 29418 2 0 0
## 29419 2 0 0
## 29420 1 0 0
## 29421 1 0 0
## 29422 1 0 0
## 29423 1 0 0
## 29424 2 0 0
## 29425 2 0 0
## 29426 2 0 0
## 29427 2 0 0
## 29428 2 0 0
## 29429 2 0 0
## 29430 2 0 0
## 29431 2 0 0
## 29432 1 0 0
## 29433 1 0 0
## 29434 2 0 0
## 29435 2 0 0
## 29436 2 0 0
## 29437 1 0 0
## 29438 2 0 0
## 29439 2 0 0
## 29440 2 0 0
## 29441 2 0 0
## 29442 2 2 0
## 29443 1 0 0
## 29444 1 0 0
## 29445 2 0 0
## 29446 1 0 0
## 29447 2 0 0
## 29448 2 0 0
## 29449 2 0 0
## 29450 2 0 0
## 29451 2 0 0
## 29452 2 0 0
## 29453 1 0 0
## 29454 2 0 0
## 29455 2 0 0
## 29456 1 0 0
## 29457 1 0 0
## 29458 1 0 0
## 29459 2 0 0
## 29460 2 0 0
## 29461 1 0 0
## 29462 1 0 0
## 29463 1 0 0
## 29464 3 0 0
## 29465 1 0 0
## 29466 2 0 0
## 29467 2 0 0
## 29468 3 0 0
## 29469 2 0 0
## 29470 2 0 0
## 29471 1 0 0
## 29472 2 0 0
## 29473 2 0 0
## 29474 1 0 0
## 29475 1 0 0
## 29476 2 0 0
## 29477 1 0 0
## 29478 2 0 0
## 29479 2 0 0
## 29480 2 0 0
## 29481 1 0 0
## 29482 1 0 0
## 29483 1 0 0
## 29484 2 0 0
## 29485 2 0 0
## 29486 2 0 0
## 29487 1 0 0
## 29488 2 0 0
## 29489 2 0 0
## 29490 2 0 0
## 29491 2 0 0
## 29492 2 0 0
## 29493 2 0 0
## 29494 2 0 0
## 29495 2 0 0
## 29496 2 0 0
## 29497 3 0 0
## 29498 2 0 0
## 29499 2 0 0
## 29500 2 0 0
## 29501 2 0 0
## 29502 2 0 0
## 29503 2 0 0
## 29504 2 0 0
## 29505 2 0 0
## 29506 1 0 0
## 29507 1 0 0
## 29508 2 0 0
## 29509 2 0 0
## 29510 2 0 0
## 29511 2 0 0
## 29512 2 0 0
## 29513 1 0 0
## 29514 1 0 0
## 29515 2 0 0
## 29516 2 0 0
## 29517 2 0 0
## 29518 2 0 0
## 29519 2 0 0
## 29520 1 0 0
## 29521 2 0 0
## 29522 1 0 0
## 29523 1 0 0
## 29524 2 0 0
## 29525 2 0 0
## 29526 2 0 0
## 29527 2 0 0
## 29528 2 0 0
## 29529 2 0 0
## 29530 2 0 0
## 29531 2 0 0
## 29532 1 0 0
## 29533 1 0 0
## 29534 1 0 0
## 29535 2 0 0
## 29536 1 0 0
## 29537 1 0 0
## 29538 1 0 0
## 29539 1 0 0
## 29540 2 0 0
## 29541 2 0 0
## 29542 2 0 0
## 29543 2 0 0
## 29544 1 0 0
## 29545 2 0 0
## 29546 2 0 0
## 29547 2 0 0
## 29548 2 0 0
## 29549 2 0 0
## 29550 2 0 0
## 29551 2 0 0
## 29552 2 0 0
## 29553 2 0 0
## 29554 2 0 0
## 29555 2 0 0
## 29556 1 0 0
## 29557 2 0 0
## 29558 1 0 0
## 29559 2 0 0
## 29560 2 0 0
## 29561 2 0 0
## 29562 2 0 0
## 29563 2 0 0
## 29564 2 0 0
## 29565 2 0 0
## 29566 2 0 0
## 29567 2 0 0
## 29568 2 1 0
## 29569 1 0 0
## 29570 2 0 0
## 29571 1 0 0
## 29572 2 0 0
## 29573 2 0 0
## 29574 2 0 0
## 29575 2 0 0
## 29576 2 0 0
## 29577 1 0 0
## 29578 1 0 0
## 29579 1 0 0
## 29580 1 0 0
## 29581 1 0 0
## 29582 1 0 0
## 29583 1 0 0
## 29584 1 0 0
## 29585 1 0 0
## 29586 1 0 0
## 29587 1 0 0
## 29588 1 0 0
## 29589 1 0 0
## 29590 1 0 0
## 29591 1 0 0
## 29592 1 0 0
## 29593 1 0 0
## 29594 1 0 0
## 29595 1 0 0
## 29596 2 0 0
## 29597 2 1 0
## 29598 2 1 0
## 29599 1 0 0
## 29600 1 0 0
## 29601 1 0 0
## 29602 2 0 0
## 29603 2 0 0
## 29604 2 0 0
## 29605 2 0 0
## 29606 1 0 0
## 29607 2 0 0
## 29608 2 0 0
## 29609 2 0 0
## 29610 2 0 0
## 29611 2 0 0
## 29612 2 0 0
## 29613 1 0 0
## 29614 1 0 0
## 29615 2 0 0
## 29616 1 0 0
## 29617 2 0 0
## 29618 2 0 0
## 29619 2 0 0
## 29620 2 0 0
## 29621 1 0 0
## 29622 2 0 0
## 29623 2 0 0
## 29624 2 0 0
## 29625 2 0 0
## 29626 2 0 0
## 29627 2 0 0
## 29628 2 0 0
## 29629 2 0 0
## 29630 2 0 0
## 29631 1 0 0
## 29632 2 0 0
## 29633 2 0 0
## 29634 2 0 0
## 29635 2 0 0
## 29636 2 0 0
## 29637 2 0 0
## 29638 2 0 0
## 29639 2 0 0
## 29640 3 0 0
## 29641 2 0 0
## 29642 2 0 0
## 29643 2 0 0
## 29644 2 0 0
## 29645 2 0 0
## 29646 1 0 0
## 29647 1 0 0
## 29648 1 0 0
## 29649 1 0 0
## 29650 2 0 0
## 29651 2 0 0
## 29652 1 0 0
## 29653 1 0 0
## 29654 2 0 0
## 29655 3 0 0
## 29656 1 0 0
## 29657 2 0 0
## 29658 1 0 0
## 29659 1 0 0
## 29660 2 0 0
## 29661 2 0 0
## 29662 2 0 0
## 29663 3 1 0
## 29664 2 0 0
## 29665 2 0 0
## 29666 2 0 0
## 29667 2 0 0
## 29668 2 0 0
## 29669 2 0 0
## 29670 2 0 0
## 29671 2 0 0
## 29672 2 0 0
## 29673 2 0 0
## 29674 2 2 0
## 29675 1 0 0
## 29676 3 0 0
## 29677 2 0 0
## 29678 2 0 0
## 29679 2 0 0
## 29680 2 0 0
## 29681 2 0 0
## 29682 2 0 0
## 29683 2 0 0
## 29684 2 0 0
## 29685 2 0 0
## 29686 2 0 0
## 29687 2 0 0
## 29688 2 0 0
## 29689 2 0 0
## 29690 2 2 0
## 29691 2 0 0
## 29692 2 0 0
## 29693 2 0 0
## 29694 2 0 0
## 29695 2 0 0
## 29696 2 0 0
## 29697 2 0 0
## 29698 2 0 0
## 29699 2 0 0
## 29700 2 0 0
## 29701 2 0 0
## 29702 2 1 0
## 29703 1 0 0
## 29704 1 0 0
## 29705 1 0 0
## 29706 2 0 0
## 29707 2 0 0
## 29708 1 0 0
## 29709 1 0 0
## 29710 1 0 0
## 29711 2 0 0
## 29712 2 0 0
## 29713 1 0 0
## 29714 2 0 0
## 29715 2 0 0
## 29716 1 0 0
## 29717 2 0 0
## 29718 2 0 0
## 29719 2 0 0
## 29720 2 1 0
## 29721 2 0 0
## 29722 2 0 0
## 29723 2 0 0
## 29724 1 0 0
## 29725 2 0 0
## 29726 2 0 0
## 29727 2 0 0
## 29728 2 0 0
## 29729 2 0 0
## 29730 2 1 0
## 29731 2 0 0
## 29732 1 0 0
## 29733 2 0 0
## 29734 2 0 0
## 29735 2 0 0
## 29736 2 0 0
## 29737 2 0 0
## 29738 2 0 0
## 29739 2 0 0
## 29740 2 0 0
## 29741 2 0 0
## 29742 2 0 0
## 29743 2 0 0
## 29744 2 0 0
## 29745 2 0 0
## 29746 2 0 0
## 29747 2 0 0
## 29748 2 0 0
## 29749 1 0 0
## 29750 1 0 0
## 29751 2 0 0
## 29752 2 0 0
## 29753 2 0 0
## 29754 2 0 0
## 29755 2 0 0
## 29756 2 0 0
## 29757 2 0 0
## 29758 2 0 0
## 29759 2 0 0
## 29760 3 0 0
## 29761 2 1 0
## 29762 2 0 0
## 29763 2 0 0
## 29764 2 0 0
## 29765 2 0 0
## 29766 2 0 0
## 29767 2 0 0
## 29768 2 0 0
## 29769 3 0 0
## 29770 2 0 0
## 29771 2 0 0
## 29772 2 0 0
## 29773 2 0 0
## 29774 2 0 0
## 29775 2 0 0
## 29776 2 0 0
## 29777 2 0 0
## 29778 1 0 0
## 29779 2 0 0
## 29780 2 2 0
## 29781 2 0 0
## 29782 2 0 0
## 29783 2 0 0
## 29784 2 2 0
## 29785 1 0 0
## 29786 1 0 0
## 29787 2 0 0
## 29788 2 0 0
## 29789 2 0 0
## 29790 2 0 0
## 29791 2 0 0
## 29792 3 0 0
## 29793 2 0 0
## 29794 2 0 0
## 29795 2 0 0
## 29796 2 0 0
## 29797 1 0 0
## 29798 2 0 0
## 29799 2 0 0
## 29800 2 0 0
## 29801 2 0 0
## 29802 1 0 0
## 29803 2 0 0
## 29804 1 0 0
## 29805 2 0 0
## 29806 3 0 0
## 29807 2 0 0
## 29808 2 0 0
## 29809 2 0 0
## 29810 2 0 0
## 29811 1 0 0
## 29812 2 0 0
## 29813 1 0 0
## 29814 1 0 0
## 29815 1 0 0
## 29816 2 0 0
## 29817 2 0 0
## 29818 1 0 0
## 29819 2 0 0
## 29820 2 0 0
## 29821 2 0 0
## 29822 1 0 0
## 29823 2 0 0
## 29824 2 0 0
## 29825 3 0 0
## 29826 2 0 0
## 29827 1 0 0
## 29828 2 0 0
## 29829 2 0 0
## 29830 2 0 0
## 29831 2 0 0
## 29832 2 0 0
## 29833 2 0 0
## 29834 2 0 0
## 29835 2 0 0
## 29836 2 0 0
## 29837 2 0 0
## 29838 1 0 0
## 29839 1 0 0
## 29840 2 0 0
## 29841 2 0 0
## 29842 2 0 0
## 29843 2 0 0
## 29844 2 0 0
## 29845 2 0 0
## 29846 2 0 0
## 29847 2 0 0
## 29848 2 0 0
## 29849 2 0 0
## 29850 1 0 0
## 29851 2 0 0
## 29852 2 0 0
## 29853 1 0 0
## 29854 1 0 0
## 29855 2 0 0
## 29856 2 0 0
## 29857 2 0 0
## 29858 2 0 0
## 29859 2 0 0
## 29860 2 0 0
## 29861 2 0 0
## 29862 1 0 0
## 29863 2 0 0
## 29864 2 0 0
## 29865 2 0 0
## 29866 2 0 0
## 29867 1 0 0
## 29868 2 0 0
## 29869 2 0 0
## 29870 3 0 0
## 29871 3 0 0
## 29872 1 0 0
## 29873 2 0 0
## 29874 2 0 0
## 29875 3 0 0
## 29876 2 0 0
## 29877 3 0 0
## 29878 2 0 0
## 29879 1 0 0
## 29880 2 0 0
## 29881 1 0 0
## 29882 1 0 0
## 29883 1 0 0
## 29884 1 0 0
## 29885 2 0 0
## 29886 1 0 0
## 29887 1 0 0
## 29888 2 0 0
## 29889 2 0 0
## 29890 2 0 0
## 29891 1 0 0
## 29892 2 0 0
## 29893 2 0 0
## 29894 2 0 0
## 29895 1 0 0
## 29896 2 0 0
## 29897 2 0 0
## 29898 2 0 0
## 29899 2 0 0
## 29900 2 0 0
## 29901 2 0 0
## 29902 2 0 0
## 29903 2 0 0
## 29904 2 0 0
## 29905 2 0 0
## 29906 2 0 0
## 29907 2 0 0
## 29908 2 1 0
## 29909 1 0 0
## 29910 2 0 0
## 29911 2 0 0
## 29912 2 0 0
## 29913 2 0 0
## 29914 2 0 0
## 29915 2 0 0
## 29916 2 0 0
## 29917 2 0 0
## 29918 1 0 0
## 29919 2 0 0
## 29920 2 0 0
## 29921 1 0 0
## 29922 2 0 0
## 29923 2 0 0
## 29924 2 0 0
## 29925 2 0 0
## 29926 2 0 0
## 29927 1 0 0
## 29928 1 0 0
## 29929 1 0 0
## 29930 1 0 0
## 29931 2 0 0
## 29932 3 0 0
## 29933 1 0 0
## 29934 2 0 0
## 29935 2 0 0
## 29936 2 0 0
## 29937 2 0 0
## 29938 2 0 0
## 29939 2 0 0
## 29940 2 0 0
## 29941 2 2 0
## 29942 3 0 0
## 29943 2 0 0
## 29944 2 0 0
## 29945 1 0 0
## 29946 1 0 0
## 29947 1 0 0
## 29948 2 0 0
## 29949 2 0 0
## 29950 2 0 0
## 29951 2 0 0
## 29952 2 0 0
## 29953 3 0 0
## 29954 2 0 0
## 29955 2 0 0
## 29956 2 1 0
## 29957 2 0 0
## 29958 2 0 0
## 29959 2 0 0
## 29960 1 0 0
## 29961 2 0 0
## 29962 2 0 0
## 29963 2 0 0
## 29964 2 0 0
## 29965 2 0 0
## 29966 3 1 0
## 29967 2 0 0
## 29968 2 0 0
## 29969 2 0 0
## 29970 2 0 0
## 29971 2 0 0
## 29972 2 0 0
## 29973 2 0 0
## 29974 2 0 0
## 29975 2 0 0
## 29976 1 0 0
## 29977 2 0 0
## 29978 2 0 0
## 29979 2 2 0
## 29980 2 0 0
## 29981 2 0 0
## 29982 1 0 0
## 29983 1 0 0
## 29984 3 1 0
## 29985 1 0 0
## 29986 1 0 0
## 29987 2 0 0
## 29988 2 0 0
## 29989 2 0 0
## 29990 2 0 0
## 29991 2 0 0
## 29992 2 0 0
## 29993 2 0 0
## 29994 2 0 0
## 29995 2 0 0
## 29996 2 0 0
## 29997 2 0 0
## 29998 2 0 0
## 29999 2 0 0
## 30000 1 0 0
## 30001 2 0 0
## 30002 2 1 0
## 30003 1 0 0
## 30004 2 0 0
## 30005 2 0 0
## 30006 2 0 0
## 30007 2 0 0
## 30008 2 0 0
## 30009 2 0 0
## 30010 1 0 0
## 30011 2 0 0
## 30012 2 0 0
## 30013 2 0 0
## 30014 1 0 0
## 30015 3 0 0
## 30016 2 0 0
## 30017 3 0 0
## 30018 2 1 0
## 30019 1 0 0
## 30020 2 0 0
## 30021 2 0 0
## 30022 2 0 0
## 30023 2 0 0
## 30024 2 0 0
## 30025 2 0 0
## 30026 2 1 0
## 30027 2 0 0
## 30028 2 0 0
## 30029 2 2 0
## 30030 2 0 0
## 30031 2 0 0
## 30032 2 0 0
## 30033 2 0 0
## 30034 2 0 0
## 30035 2 0 0
## 30036 3 0 0
## 30037 2 0 0
## 30038 2 0 0
## 30039 2 0 0
## 30040 2 0 0
## 30041 2 0 0
## 30042 2 0 0
## 30043 2 0 0
## 30044 2 0 0
## 30045 2 0 0
## 30046 2 0 0
## 30047 2 0 0
## 30048 1 0 0
## 30049 2 0 0
## 30050 2 0 0
## 30051 1 0 0
## 30052 2 1 0
## 30053 2 0 0
## 30054 2 0 0
## 30055 2 0 0
## 30056 2 0 0
## 30057 2 0 0
## 30058 3 0 0
## 30059 2 0 0
## 30060 2 0 0
## 30061 3 0 0
## 30062 2 0 0
## 30063 2 0 0
## 30064 2 0 0
## 30065 2 0 0
## 30066 2 0 0
## 30067 2 0 0
## 30068 2 0 0
## 30069 2 0 0
## 30070 1 0 0
## 30071 2 0 0
## 30072 2 0 0
## 30073 2 0 0
## 30074 2 0 0
## 30075 1 0 0
## 30076 2 1 0
## 30077 2 0 0
## 30078 2 0 0
## 30079 2 0 0
## 30080 2 0 0
## 30081 2 0 0
## 30082 2 0 0
## 30083 2 0 0
## 30084 2 0 0
## 30085 2 0 0
## 30086 2 0 0
## 30087 2 0 0
## 30088 3 0 0
## 30089 2 0 0
## 30090 2 0 0
## 30091 2 0 0
## 30092 2 0 0
## 30093 2 0 0
## 30094 2 0 0
## 30095 2 0 0
## 30096 2 0 0
## 30097 2 0 0
## 30098 2 0 0
## 30099 2 0 0
## 30100 2 0 0
## 30101 2 0 0
## 30102 2 0 0
## 30103 2 0 0
## 30104 2 0 0
## 30105 2 0 0
## 30106 2 0 0
## 30107 2 1 0
## 30108 2 0 0
## 30109 2 0 0
## 30110 2 0 0
## 30111 2 0 0
## 30112 2 0 0
## 30113 2 0 0
## 30114 2 0 0
## 30115 2 0 0
## 30116 2 0 0
## 30117 2 0 0
## 30118 2 0 0
## 30119 2 0 0
## 30120 2 0 0
## 30121 2 0 0
## 30122 1 0 0
## 30123 2 0 0
## 30124 3 1 0
## 30125 2 2 0
## 30126 2 0 0
## 30127 2 0 0
## 30128 2 0 0
## 30129 2 0 0
## 30130 2 0 0
## 30131 2 0 0
## 30132 1 0 0
## 30133 2 0 0
## 30134 2 0 0
## 30135 2 0 0
## 30136 2 0 0
## 30137 2 0 0
## 30138 2 0 0
## 30139 2 0 0
## 30140 2 0 0
## 30141 2 0 0
## 30142 2 0 0
## 30143 2 0 0
## 30144 2 0 0
## 30145 2 0 0
## 30146 2 0 0
## 30147 2 0 0
## 30148 2 0 0
## 30149 1 0 0
## 30150 2 0 0
## 30151 2 0 0
## 30152 1 0 0
## 30153 2 0 0
## 30154 2 0 0
## 30155 3 0 0
## 30156 2 0 0
## 30157 2 0 0
## 30158 2 1 0
## 30159 2 0 0
## 30160 2 2 0
## 30161 2 0 0
## 30162 2 0 0
## 30163 2 2 0
## 30164 2 1 0
## 30165 2 0 0
## 30166 2 0 0
## 30167 1 0 0
## 30168 2 0 0
## 30169 2 0 0
## 30170 2 0 0
## 30171 2 0 0
## 30172 2 0 0
## 30173 2 0 0
## 30174 2 0 0
## 30175 2 0 0
## 30176 2 0 0
## 30177 2 0 0
## 30178 2 1 0
## 30179 2 0 0
## 30180 2 0 0
## 30181 2 0 0
## 30182 2 0 0
## 30183 1 0 0
## 30184 1 0 0
## 30185 1 0 0
## 30186 1 0 0
## 30187 2 0 0
## 30188 2 0 0
## 30189 2 0 0
## 30190 2 0 0
## 30191 2 0 0
## 30192 2 0 0
## 30193 2 1 0
## 30194 2 0 0
## 30195 2 0 0
## 30196 2 0 0
## 30197 2 0 0
## 30198 2 0 0
## 30199 2 0 0
## 30200 2 0 0
## 30201 2 0 0
## 30202 3 0 0
## 30203 2 0 0
## 30204 2 0 0
## 30205 2 0 0
## 30206 2 0 0
## 30207 2 0 0
## 30208 2 0 0
## 30209 2 0 0
## 30210 2 0 0
## 30211 2 0 0
## 30212 2 1 0
## 30213 2 0 0
## 30214 2 0 0
## 30215 2 0 0
## 30216 2 1 0
## 30217 1 0 0
## 30218 2 0 0
## 30219 1 0 0
## 30220 1 0 0
## 30221 1 0 0
## 30222 1 0 0
## 30223 2 0 0
## 30224 2 0 0
## 30225 2 0 0
## 30226 2 0 0
## 30227 2 0 0
## 30228 1 0 0
## 30229 2 0 0
## 30230 1 0 0
## 30231 2 0 0
## 30232 2 0 0
## 30233 2 0 0
## 30234 2 0 0
## 30235 2 0 0
## 30236 2 0 0
## 30237 2 0 0
## 30238 1 0 0
## 30239 2 0 0
## 30240 2 0 0
## 30241 2 0 0
## 30242 2 0 0
## 30243 2 0 0
## 30244 2 0 0
## 30245 2 2 0
## 30246 2 0 0
## 30247 2 0 0
## 30248 1 0 0
## 30249 2 0 0
## 30250 1 0 0
## 30251 2 2 0
## 30252 1 0 0
## 30253 2 0 0
## 30254 1 0 0
## 30255 2 0 0
## 30256 2 0 0
## 30257 2 0 0
## 30258 2 0 0
## 30259 2 0 0
## 30260 2 0 0
## 30261 2 0 0
## 30262 2 0 0
## 30263 2 0 0
## 30264 2 0 0
## 30265 2 0 0
## 30266 2 0 0
## 30267 2 0 0
## 30268 2 0 0
## 30269 2 0 0
## 30270 2 0 0
## 30271 2 0 0
## 30272 1 0 0
## 30273 2 0 0
## 30274 2 0 0
## 30275 2 0 0
## 30276 2 0 0
## 30277 2 0 0
## 30278 2 0 0
## 30279 2 0 0
## 30280 1 0 0
## 30281 2 0 0
## 30282 2 0 0
## 30283 2 0 0
## 30284 1 0 0
## 30285 2 0 0
## 30286 2 0 0
## 30287 2 0 0
## 30288 2 0 0
## 30289 2 0 0
## 30290 2 0 0
## 30291 2 0 0
## 30292 2 0 0
## 30293 2 0 0
## 30294 2 0 0
## 30295 2 0 0
## 30296 2 0 0
## 30297 2 0 0
## 30298 2 2 0
## 30299 2 0 0
## 30300 2 0 0
## 30301 2 0 0
## 30302 2 2 0
## 30303 2 0 0
## 30304 2 0 0
## 30305 2 0 0
## 30306 2 0 0
## 30307 2 0 0
## 30308 2 1 0
## 30309 1 1 0
## 30310 2 0 0
## 30311 1 0 0
## 30312 1 0 0
## 30313 2 0 0
## 30314 2 0 0
## 30315 1 0 0
## 30316 2 0 0
## 30317 2 0 0
## 30318 2 0 0
## 30319 2 0 0
## 30320 2 0 0
## 30321 2 0 0
## 30322 2 0 0
## 30323 2 0 0
## 30324 2 0 0
## 30325 2 0 0
## 30326 2 0 0
## 30327 2 0 0
## 30328 2 0 0
## 30329 2 0 0
## 30330 2 0 0
## 30331 2 2 0
## 30332 2 0 0
## 30333 2 0 0
## 30334 2 0 0
## 30335 2 0 0
## 30336 2 0 0
## 30337 2 0 0
## 30338 2 0 0
## 30339 2 0 0
## 30340 2 0 0
## 30341 2 0 0
## 30342 1 0 0
## 30343 2 0 0
## 30344 2 0 0
## 30345 2 0 0
## 30346 2 0 0
## 30347 2 0 0
## 30348 3 1 0
## 30349 2 0 0
## 30350 2 0 0
## 30351 2 1 0
## 30352 2 0 0
## 30353 2 0 0
## 30354 2 0 0
## 30355 2 2 0
## 30356 2 0 0
## 30357 2 0 0
## 30358 2 0 0
## 30359 2 1 0
## 30360 1 0 0
## 30361 2 0 0
## 30362 1 0 0
## 30363 2 0 0
## 30364 2 0 0
## 30365 1 0 0
## 30366 2 0 0
## 30367 2 0 0
## 30368 1 0 0
## 30369 2 0 0
## 30370 2 0 0
## 30371 2 1 0
## 30372 1 1 0
## 30373 2 0 0
## 30374 2 0 0
## 30375 2 0 0
## 30376 1 0 0
## 30377 2 0 0
## 30378 2 0 0
## 30379 1 0 0
## 30380 2 0 0
## 30381 2 0 0
## 30382 1 0 0
## 30383 2 0 0
## 30384 2 0 0
## 30385 2 0 0
## 30386 2 0 0
## 30387 2 0 0
## 30388 1 0 0
## 30389 2 0 0
## 30390 1 0 0
## 30391 1 0 0
## 30392 2 0 0
## 30393 2 0 0
## 30394 1 0 0
## 30395 1 0 0
## 30396 2 1 0
## 30397 1 0 0
## 30398 2 0 0
## 30399 2 0 0
## 30400 2 0 0
## 30401 2 0 0
## 30402 2 0 0
## 30403 1 0 0
## 30404 1 0 0
## 30405 2 0 0
## 30406 2 0 0
## 30407 1 0 0
## 30408 2 0 0
## 30409 2 0 0
## 30410 2 1 0
## 30411 2 2 0
## 30412 2 0 0
## 30413 2 0 0
## 30414 2 0 0
## 30415 2 0 0
## 30416 2 0 0
## 30417 2 0 0
## 30418 2 0 0
## 30419 2 0 0
## 30420 2 0 0
## 30421 2 0 0
## 30422 2 0 0
## 30423 2 0 0
## 30424 2 0 0
## 30425 2 0 0
## 30426 2 0 0
## 30427 2 0 0
## 30428 2 0 0
## 30429 2 0 0
## 30430 2 0 0
## 30431 2 0 0
## 30432 1 0 0
## 30433 1 0 0
## 30434 1 0 0
## 30435 1 0 0
## 30436 2 0 0
## 30437 1 0 0
## 30438 1 0 0
## 30439 1 0 0
## 30440 2 0 0
## 30441 2 0 0
## 30442 2 0 0
## 30443 2 2 0
## 30444 1 0 0
## 30445 2 0 0
## 30446 2 0 0
## 30447 2 0 0
## 30448 2 0 0
## 30449 2 0 0
## 30450 2 0 0
## 30451 2 0 0
## 30452 2 0 0
## 30453 2 0 0
## 30454 2 0 0
## 30455 2 0 0
## 30456 2 0 0
## 30457 2 0 0
## 30458 1 0 0
## 30459 2 0 0
## 30460 2 0 0
## 30461 2 0 0
## 30462 2 0 0
## 30463 2 0 0
## 30464 2 0 0
## 30465 2 0 0
## 30466 2 0 0
## 30467 2 0 0
## 30468 2 0 0
## 30469 2 0 0
## 30470 2 0 0
## 30471 1 0 0
## 30472 2 0 0
## 30473 2 0 0
## 30474 2 0 0
## 30475 2 0 0
## 30476 2 0 0
## 30477 2 0 0
## 30478 2 0 0
## 30479 1 0 0
## 30480 1 0 0
## 30481 2 0 0
## 30482 1 0 0
## 30483 2 0 0
## 30484 2 0 0
## 30485 2 0 0
## 30486 1 0 0
## 30487 1 0 0
## 30488 1 0 0
## 30489 1 0 0
## 30490 2 0 0
## 30491 2 0 0
## 30492 2 0 0
## 30493 2 0 0
## 30494 2 0 0
## 30495 1 0 0
## 30496 2 0 0
## 30497 2 0 0
## 30498 2 0 0
## 30499 2 0 0
## 30500 2 0 0
## 30501 2 0 0
## 30502 1 0 0
## 30503 2 0 0
## 30504 2 0 0
## 30505 2 0 0
## 30506 2 0 0
## 30507 2 0 0
## 30508 1 0 0
## 30509 2 0 0
## 30510 2 0 0
## 30511 1 0 0
## 30512 2 0 0
## 30513 2 0 0
## 30514 2 0 0
## 30515 2 0 0
## 30516 2 0 0
## 30517 2 0 0
## 30518 2 0 0
## 30519 2 0 0
## 30520 2 0 0
## 30521 2 0 0
## 30522 2 0 0
## 30523 1 0 0
## 30524 2 0 0
## 30525 3 0 0
## 30526 2 0 0
## 30527 2 0 0
## 30528 2 0 0
## 30529 2 0 0
## 30530 2 0 0
## 30531 2 0 0
## 30532 2 0 0
## 30533 2 0 0
## 30534 2 0 0
## 30535 2 0 0
## 30536 2 0 0
## 30537 2 0 0
## 30538 2 0 0
## 30539 1 0 0
## 30540 2 0 0
## 30541 2 0 0
## 30542 2 0 0
## 30543 2 0 0
## 30544 2 0 0
## 30545 1 0 0
## 30546 2 2 0
## 30547 2 0 0
## 30548 2 0 0
## 30549 2 0 0
## 30550 2 0 0
## 30551 1 0 0
## 30552 2 0 0
## 30553 2 0 0
## 30554 1 0 0
## 30555 2 0 0
## 30556 2 0 0
## 30557 2 0 0
## 30558 2 0 0
## 30559 2 0 0
## 30560 2 0 0
## 30561 2 0 0
## 30562 2 0 0
## 30563 2 0 0
## 30564 2 0 0
## 30565 2 0 0
## 30566 2 0 0
## 30567 2 0 0
## 30568 2 0 0
## 30569 2 0 0
## 30570 2 0 0
## 30571 2 0 0
## 30572 2 0 0
## 30573 2 0 0
## 30574 2 0 0
## 30575 2 0 0
## 30576 3 0 0
## 30577 2 0 0
## 30578 1 0 0
## 30579 2 1 0
## 30580 2 0 0
## 30581 3 0 0
## 30582 2 0 0
## 30583 2 0 0
## 30584 2 1 0
## 30585 2 0 0
## 30586 1 0 0
## 30587 2 0 0
## 30588 2 0 0
## 30589 2 0 0
## 30590 1 0 0
## 30591 2 0 0
## 30592 2 0 0
## 30593 2 0 0
## 30594 2 0 0
## 30595 2 0 0
## 30596 2 0 0
## 30597 2 0 0
## 30598 2 0 0
## 30599 2 0 0
## 30600 2 0 0
## 30601 2 0 0
## 30602 3 0 0
## 30603 2 0 0
## 30604 2 0 0
## 30605 2 0 0
## 30606 2 0 0
## 30607 2 0 0
## 30608 2 0 0
## 30609 2 0 0
## 30610 2 0 0
## 30611 2 0 0
## 30612 2 0 0
## 30613 2 0 0
## 30614 2 0 0
## 30615 2 0 0
## 30616 1 0 0
## 30617 3 0 0
## 30618 2 0 0
## 30619 2 0 0
## 30620 2 0 0
## 30621 2 2 0
## 30622 2 0 0
## 30623 2 0 0
## 30624 2 0 0
## 30625 2 0 0
## 30626 2 0 0
## 30627 2 0 0
## 30628 2 0 0
## 30629 2 0 0
## 30630 2 0 0
## 30631 2 0 0
## 30632 1 0 0
## 30633 1 0 0
## 30634 1 0 0
## 30635 1 0 0
## 30636 1 0 0
## 30637 1 0 0
## 30638 1 0 0
## 30639 2 0 0
## 30640 2 0 0
## 30641 2 0 0
## 30642 2 0 0
## 30643 2 0 0
## 30644 2 0 0
## 30645 2 0 0
## 30646 1 0 0
## 30647 1 0 0
## 30648 1 0 0
## 30649 2 0 0
## 30650 2 0 0
## 30651 2 0 0
## 30652 2 0 0
## 30653 2 0 0
## 30654 2 0 0
## 30655 2 0 0
## 30656 2 0 0
## 30657 2 0 0
## 30658 2 0 0
## 30659 2 0 0
## 30660 2 0 0
## 30661 2 0 0
## 30662 2 0 0
## 30663 2 0 0
## 30664 2 0 0
## 30665 2 0 0
## 30666 2 0 0
## 30667 2 0 0
## 30668 2 0 0
## 30669 2 0 0
## 30670 1 0 0
## 30671 1 0 0
## 30672 2 0 0
## 30673 2 0 0
## 30674 2 0 0
## 30675 1 0 0
## 30676 1 0 0
## 30677 1 0 0
## 30678 1 0 0
## 30679 1 0 0
## 30680 2 0 0
## 30681 2 0 0
## 30682 2 0 0
## 30683 2 0 0
## 30684 3 0 0
## 30685 1 0 0
## 30686 2 0 0
## 30687 1 0 0
## 30688 1 0 0
## 30689 2 0 0
## 30690 2 0 0
## 30691 1 0 0
## 30692 1 0 0
## 30693 1 0 0
## 30694 1 0 0
## 30695 2 0 0
## 30696 2 0 0
## 30697 1 0 0
## 30698 2 0 0
## 30699 2 0 0
## 30700 1 0 0
## 30701 2 0 0
## 30702 1 0 0
## 30703 2 0 0
## 30704 1 0 0
## 30705 1 0 0
## 30706 2 0 0
## 30707 2 0 0
## 30708 2 0 0
## 30709 1 0 0
## 30710 1 0 0
## 30711 2 0 0
## 30712 2 0 0
## 30713 1 0 0
## 30714 1 0 0
## 30715 1 0 0
## 30716 2 0 0
## 30717 2 1 0
## 30718 2 0 0
## 30719 2 0 0
## 30720 2 0 0
## 30721 2 0 0
## 30722 2 0 0
## 30723 1 0 0
## 30724 2 0 0
## 30725 1 0 0
## 30726 1 0 0
## 30727 1 0 0
## 30728 1 0 0
## 30729 2 0 0
## 30730 2 0 0
## 30731 2 0 0
## 30732 2 0 0
## 30733 2 0 0
## 30734 2 0 0
## 30735 2 0 0
## 30736 2 0 0
## 30737 2 0 0
## 30738 2 0 0
## 30739 1 0 0
## 30740 2 0 0
## 30741 2 0 0
## 30742 2 0 0
## 30743 2 0 0
## 30744 1 0 0
## 30745 1 0 0
## 30746 1 0 0
## 30747 2 0 0
## 30748 1 0 0
## 30749 2 0 0
## 30750 1 0 0
## 30751 2 0 0
## 30752 2 0 0
## 30753 3 0 0
## 30754 1 0 0
## 30755 2 0 0
## 30756 2 0 0
## 30757 2 0 0
## 30758 2 0 0
## 30759 2 0 0
## 30760 1 0 0
## 30761 2 0 0
## 30762 1 0 0
## 30763 1 0 0
## 30764 2 0 0
## 30765 2 0 0
## 30766 1 0 0
## 30767 1 0 0
## 30768 1 0 0
## 30769 1 0 0
## 30770 1 0 0
## 30771 1 0 0
## 30772 2 0 0
## 30773 2 0 0
## 30774 1 0 0
## 30775 2 0 0
## 30776 2 0 0
## 30777 1 0 0
## 30778 2 0 0
## 30779 2 0 0
## 30780 2 0 0
## 30781 2 0 0
## 30782 2 0 0
## 30783 2 0 0
## 30784 2 0 0
## 30785 2 0 0
## 30786 2 0 0
## 30787 2 0 0
## 30788 2 0 0
## 30789 2 0 0
## 30790 2 0 0
## 30791 2 0 0
## 30792 2 0 0
## 30793 2 0 0
## 30794 2 0 0
## 30795 2 0 0
## 30796 2 0 0
## 30797 1 0 0
## 30798 1 0 0
## 30799 2 0 0
## 30800 2 0 0
## 30801 1 0 0
## 30802 2 2 0
## 30803 2 0 0
## 30804 2 0 0
## 30805 2 0 0
## 30806 2 0 0
## 30807 2 0 0
## 30808 2 0 0
## 30809 2 0 0
## 30810 3 0 0
## 30811 2 0 0
## 30812 2 0 0
## 30813 2 0 0
## 30814 2 0 0
## 30815 2 0 0
## 30816 2 0 0
## 30817 2 0 0
## 30818 2 0 0
## 30819 2 0 0
## 30820 2 0 0
## 30821 1 0 0
## 30822 1 0 0
## 30823 2 0 0
## 30824 2 0 0
## 30825 2 0 0
## 30826 1 0 0
## 30827 1 0 0
## 30828 1 0 0
## 30829 2 0 0
## 30830 2 0 0
## 30831 2 0 0
## 30832 2 0 0
## 30833 2 0 0
## 30834 2 0 0
## 30835 2 0 0
## 30836 2 0 0
## 30837 2 0 0
## 30838 2 0 0
## 30839 2 0 0
## 30840 2 0 0
## 30841 2 0 0
## 30842 1 0 0
## 30843 1 0 0
## 30844 2 0 0
## 30845 2 0 0
## 30846 2 0 0
## 30847 2 0 0
## 30848 2 0 0
## 30849 2 0 0
## 30850 2 0 0
## 30851 2 0 0
## 30852 2 0 0
## 30853 1 0 0
## 30854 1 0 0
## 30855 2 0 0
## 30856 1 0 0
## 30857 2 0 0
## 30858 2 0 0
## 30859 2 0 0
## 30860 2 1 0
## 30861 2 0 0
## 30862 2 0 0
## 30863 2 0 0
## 30864 2 0 0
## 30865 2 0 0
## 30866 2 2 0
## 30867 2 0 0
## 30868 2 0 0
## 30869 2 0 0
## 30870 2 0 0
## 30871 2 0 0
## 30872 2 0 0
## 30873 1 0 0
## 30874 2 0 0
## 30875 2 0 0
## 30876 2 0 0
## 30877 2 0 0
## 30878 2 0 0
## 30879 1 0 0
## 30880 2 0 0
## 30881 2 1 0
## 30882 2 0 0
## 30883 2 0 0
## 30884 2 1 0
## 30885 2 0 0
## 30886 2 0 0
## 30887 2 0 0
## 30888 2 0 0
## 30889 2 0 0
## 30890 2 0 0
## 30891 2 0 0
## 30892 2 0 0
## 30893 2 0 0
## 30894 2 0 0
## 30895 1 0 0
## 30896 1 0 0
## 30897 2 0 0
## 30898 1 0 0
## 30899 2 0 0
## 30900 2 0 0
## 30901 2 0 0
## 30902 2 0 0
## 30903 2 0 0
## 30904 2 0 0
## 30905 2 0 0
## 30906 1 0 0
## 30907 2 0 0
## 30908 2 0 0
## 30909 2 0 0
## 30910 2 0 0
## 30911 2 0 0
## 30912 3 0 0
## 30913 2 0 0
## 30914 1 0 0
## 30915 2 0 0
## 30916 1 0 0
## 30917 2 0 0
## 30918 2 0 0
## 30919 2 0 0
## 30920 2 0 0
## 30921 2 0 0
## 30922 2 0 0
## 30923 3 0 0
## 30924 2 0 0
## 30925 2 0 0
## 30926 2 0 0
## 30927 2 0 0
## 30928 2 0 0
## 30929 2 0 0
## 30930 2 0 0
## 30931 2 0 0
## 30932 2 0 0
## 30933 2 0 0
## 30934 1 0 0
## 30935 3 0 0
## 30936 2 0 0
## 30937 2 0 0
## 30938 3 0 0
## 30939 2 0 0
## 30940 2 0 0
## 30941 2 0 0
## 30942 2 0 0
## 30943 2 0 0
## 30944 2 0 0
## 30945 2 0 0
## 30946 2 0 0
## 30947 2 0 0
## 30948 2 0 0
## 30949 2 0 0
## 30950 2 0 0
## 30951 2 0 0
## 30952 2 0 0
## 30953 2 0 0
## 30954 2 0 0
## 30955 2 0 0
## 30956 1 0 0
## 30957 2 0 0
## 30958 2 1 0
## 30959 2 0 0
## 30960 2 0 0
## 30961 2 0 0
## 30962 2 0 0
## 30963 2 0 0
## 30964 2 0 0
## 30965 2 0 0
## 30966 1 0 0
## 30967 1 0 0
## 30968 1 0 0
## 30969 2 0 0
## 30970 2 0 0
## 30971 2 0 0
## 30972 2 0 0
## 30973 2 0 0
## 30974 2 0 0
## 30975 2 0 0
## 30976 2 0 0
## 30977 2 0 0
## 30978 2 0 0
## 30979 1 0 0
## 30980 1 0 0
## 30981 2 0 0
## 30982 1 0 0
## 30983 2 0 0
## 30984 2 0 0
## 30985 2 0 0
## 30986 2 0 0
## 30987 1 0 0
## 30988 1 0 0
## 30989 1 0 0
## 30990 2 0 0
## 30991 1 0 0
## 30992 1 0 0
## 30993 1 0 0
## 30994 2 0 0
## 30995 2 0 0
## 30996 1 0 0
## 30997 2 0 0
## 30998 2 0 0
## 30999 1 0 0
## 31000 1 0 0
## 31001 1 0 0
## 31002 2 0 0
## 31003 2 0 0
## 31004 2 0 0
## 31005 1 0 0
## 31006 2 0 0
## 31007 1 0 0
## 31008 1 0 0
## 31009 1 0 0
## 31010 2 0 0
## 31011 1 0 0
## 31012 2 0 0
## 31013 1 0 0
## 31014 2 0 0
## 31015 2 0 0
## 31016 2 0 0
## 31017 1 0 0
## 31018 2 0 0
## 31019 2 0 0
## 31020 1 0 0
## 31021 2 0 0
## 31022 1 0 0
## 31023 1 0 0
## 31024 2 0 0
## 31025 2 0 0
## 31026 2 0 0
## 31027 2 0 0
## 31028 2 2 0
## 31029 2 0 0
## 31030 1 0 0
## 31031 2 0 0
## 31032 2 0 0
## 31033 2 0 0
## 31034 2 0 0
## 31035 2 0 0
## 31036 2 0 0
## 31037 2 0 0
## 31038 2 0 0
## 31039 2 0 0
## 31040 2 0 0
## 31041 2 0 0
## 31042 2 0 0
## 31043 2 0 0
## 31044 2 0 0
## 31045 2 0 0
## 31046 3 1 0
## 31047 2 0 0
## 31048 2 0 0
## 31049 1 0 0
## 31050 2 0 0
## 31051 2 0 0
## 31052 2 0 0
## 31053 2 0 0
## 31054 2 0 0
## 31055 2 0 0
## 31056 2 0 0
## 31057 2 0 0
## 31058 1 0 0
## 31059 2 0 0
## 31060 2 0 0
## 31061 1 0 0
## 31062 2 0 0
## 31063 2 0 0
## 31064 2 0 0
## 31065 2 0 0
## 31066 2 0 0
## 31067 2 0 0
## 31068 1 0 0
## 31069 1 0 0
## 31070 2 0 0
## 31071 2 1 0
## 31072 2 1 0
## 31073 2 0 0
## 31074 2 0 0
## 31075 2 0 0
## 31076 2 1 0
## 31077 2 1 0
## 31078 2 1 0
## 31079 2 0 0
## 31080 2 0 0
## 31081 2 0 0
## 31082 2 0 0
## 31083 2 0 0
## 31084 2 0 0
## 31085 2 0 0
## 31086 2 0 0
## 31087 2 0 0
## 31088 2 0 0
## 31089 2 0 0
## 31090 2 0 0
## 31091 2 0 0
## 31092 2 0 0
## 31093 1 0 0
## 31094 2 0 0
## 31095 2 0 0
## 31096 2 0 0
## 31097 2 0 0
## 31098 2 0 0
## 31099 2 0 0
## 31100 2 0 0
## 31101 1 0 0
## 31102 2 0 0
## 31103 2 0 0
## 31104 2 0 0
## 31105 2 0 0
## 31106 1 0 0
## 31107 2 0 0
## 31108 2 0 0
## 31109 2 2 0
## 31110 2 0 0
## 31111 3 1 0
## 31112 2 2 0
## 31113 2 0 0
## 31114 1 0 0
## 31115 1 0 0
## 31116 1 0 0
## 31117 1 0 0
## 31118 2 0 0
## 31119 1 0 0
## 31120 2 0 0
## 31121 1 0 0
## 31122 2 0 0
## 31123 1 0 0
## 31124 1 0 0
## 31125 1 0 0
## 31126 1 0 0
## 31127 1 0 0
## 31128 2 0 0
## 31129 2 0 0
## 31130 2 0 0
## 31131 2 0 0
## 31132 2 0 0
## 31133 2 0 0
## 31134 2 0 0
## 31135 2 1 0
## 31136 2 0 0
## 31137 2 0 0
## 31138 2 0 0
## 31139 1 0 0
## 31140 1 0 0
## 31141 1 0 0
## 31142 1 0 0
## 31143 2 0 0
## 31144 1 0 0
## 31145 2 0 0
## 31146 1 0 0
## 31147 2 0 0
## 31148 1 0 0
## 31149 1 0 0
## 31150 2 0 0
## 31151 2 0 0
## 31152 2 0 0
## 31153 2 0 0
## 31154 2 0 0
## 31155 1 0 0
## 31156 2 0 0
## 31157 2 0 0
## 31158 2 0 0
## 31159 2 0 0
## 31160 2 0 0
## 31161 1 0 0
## 31162 1 0 0
## 31163 2 0 0
## 31164 2 0 0
## 31165 2 0 0
## 31166 1 0 0
## 31167 1 0 0
## 31168 1 0 0
## 31169 2 0 0
## 31170 1 0 0
## 31171 2 0 0
## 31172 1 0 0
## 31173 2 0 0
## 31174 2 0 0
## 31175 2 0 0
## 31176 2 0 0
## 31177 1 1 0
## 31178 2 0 0
## 31179 2 0 0
## 31180 2 0 0
## 31181 1 0 0
## 31182 2 0 0
## 31183 2 0 0
## 31184 1 0 0
## 31185 2 0 0
## 31186 2 0 0
## 31187 1 0 0
## 31188 2 0 0
## 31189 1 0 0
## 31190 2 0 0
## 31191 1 0 0
## 31192 2 0 0
## 31193 2 0 0
## 31194 2 0 0
## 31195 2 0 0
## 31196 1 0 0
## 31197 1 0 0
## 31198 2 0 0
## 31199 2 0 0
## 31200 2 0 0
## 31201 2 0 0
## 31202 2 0 0
## 31203 2 0 0
## 31204 2 0 0
## 31205 2 0 0
## 31206 2 0 0
## 31207 2 0 0
## 31208 2 0 0
## 31209 1 0 0
## 31210 2 0 0
## 31211 2 0 0
## 31212 2 0 0
## 31213 2 0 0
## 31214 2 0 0
## 31215 2 0 0
## 31216 2 0 0
## 31217 2 0 0
## 31218 2 0 0
## 31219 2 0 0
## 31220 2 1 0
## 31221 2 0 0
## 31222 2 0 0
## 31223 2 0 0
## 31224 2 0 0
## 31225 2 0 0
## 31226 2 0 0
## 31227 2 0 0
## 31228 2 0 0
## 31229 2 0 0
## 31230 2 0 0
## 31231 1 0 0
## 31232 1 0 0
## 31233 2 2 0
## 31234 2 0 0
## 31235 2 0 0
## 31236 1 0 0
## 31237 1 0 0
## 31238 2 0 0
## 31239 2 0 0
## 31240 1 0 0
## 31241 2 0 0
## 31242 2 0 0
## 31243 2 0 0
## 31244 2 0 0
## 31245 2 0 0
## 31246 2 1 0
## 31247 2 0 0
## 31248 2 0 0
## 31249 3 1 0
## 31250 2 0 0
## 31251 2 0 0
## 31252 2 0 0
## 31253 2 0 0
## 31254 2 0 0
## 31255 2 0 0
## 31256 2 0 0
## 31257 2 0 0
## 31258 2 0 0
## 31259 2 0 0
## 31260 2 0 0
## 31261 2 0 0
## 31262 2 0 0
## 31263 2 0 0
## 31264 2 0 0
## 31265 2 0 0
## 31266 2 0 0
## 31267 2 0 0
## 31268 1 0 0
## 31269 2 0 0
## 31270 3 0 0
## 31271 1 0 0
## 31272 1 0 0
## 31273 2 0 0
## 31274 1 0 0
## 31275 1 0 0
## 31276 1 0 0
## 31277 2 0 0
## 31278 2 0 0
## 31279 2 0 0
## 31280 1 0 0
## 31281 2 0 0
## 31282 1 0 0
## 31283 1 0 0
## 31284 2 0 0
## 31285 2 0 0
## 31286 1 0 0
## 31287 2 0 0
## 31288 2 0 0
## 31289 1 0 0
## 31290 3 0 0
## 31291 1 0 0
## 31292 2 0 0
## 31293 2 0 0
## 31294 2 0 0
## 31295 1 0 0
## 31296 2 0 0
## 31297 2 0 0
## 31298 2 0 0
## 31299 2 0 0
## 31300 2 0 0
## 31301 2 0 0
## 31302 2 2 0
## 31303 2 1 0
## 31304 2 0 0
## 31305 2 0 0
## 31306 2 0 0
## 31307 1 0 0
## 31308 2 0 0
## 31309 2 1 0
## 31310 2 0 0
## 31311 2 0 0
## 31312 2 0 0
## 31313 2 0 0
## 31314 1 0 0
## 31315 2 0 0
## 31316 2 0 0
## 31317 1 0 0
## 31318 2 0 0
## 31319 2 0 0
## 31320 2 0 0
## 31321 2 0 0
## 31322 3 1 0
## 31323 1 0 0
## 31324 2 0 0
## 31325 2 0 0
## 31326 3 1 0
## 31327 2 0 0
## 31328 2 0 0
## 31329 1 0 0
## 31330 2 0 0
## 31331 2 0 0
## 31332 2 0 0
## 31333 2 0 0
## 31334 2 0 0
## 31335 2 0 0
## 31336 2 0 0
## 31337 2 0 0
## 31338 1 0 0
## 31339 1 0 0
## 31340 2 0 0
## 31341 2 0 0
## 31342 2 0 0
## 31343 2 0 0
## 31344 2 0 0
## 31345 2 0 0
## 31346 2 0 0
## 31347 2 0 0
## 31348 2 0 0
## 31349 2 0 0
## 31350 1 0 0
## 31351 1 0 0
## 31352 2 0 0
## 31353 2 0 0
## 31354 2 0 0
## 31355 2 0 0
## 31356 1 0 0
## 31357 2 0 0
## 31358 2 0 0
## 31359 2 0 0
## 31360 2 0 0
## 31361 2 0 0
## 31362 1 0 0
## 31363 2 0 0
## 31364 2 0 0
## 31365 2 0 0
## 31366 1 0 0
## 31367 2 0 0
## 31368 1 0 0
## 31369 2 2 0
## 31370 2 0 0
## 31371 1 0 0
## 31372 1 0 0
## 31373 1 0 0
## 31374 2 0 0
## 31375 2 0 0
## 31376 2 0 0
## 31377 2 0 0
## 31378 1 0 0
## 31379 2 0 0
## 31380 3 0 0
## 31381 2 0 0
## 31382 1 0 0
## 31383 2 0 0
## 31384 3 0 0
## 31385 2 0 0
## 31386 2 0 0
## 31387 2 0 0
## 31388 2 0 0
## 31389 2 0 0
## 31390 2 0 0
## 31391 2 0 0
## 31392 2 0 0
## 31393 2 0 0
## 31394 2 0 0
## 31395 2 0 0
## 31396 2 0 0
## 31397 2 0 0
## 31398 2 0 0
## 31399 2 0 0
## 31400 2 0 0
## 31401 2 0 0
## 31402 2 0 0
## 31403 2 0 0
## 31404 2 0 0
## 31405 2 0 0
## 31406 2 0 0
## 31407 2 0 0
## 31408 2 0 0
## 31409 2 0 0
## 31410 2 0 0
## 31411 2 0 0
## 31412 2 0 0
## 31413 2 0 0
## 31414 2 0 0
## 31415 1 0 0
## 31416 2 0 0
## 31417 2 0 0
## 31418 1 0 0
## 31419 2 0 0
## 31420 2 0 0
## 31421 2 0 0
## 31422 2 0 0
## 31423 2 0 0
## 31424 1 0 0
## 31425 2 0 0
## 31426 2 0 0
## 31427 2 0 0
## 31428 2 0 0
## 31429 2 0 0
## 31430 2 0 0
## 31431 1 0 0
## 31432 2 0 0
## 31433 3 1 0
## 31434 2 0 0
## 31435 2 0 0
## 31436 3 0 0
## 31437 2 0 0
## 31438 2 0 0
## 31439 1 0 0
## 31440 1 0 0
## 31441 1 0 0
## 31442 2 0 0
## 31443 2 0 0
## 31444 2 0 0
## 31445 2 0 0
## 31446 1 0 0
## 31447 2 0 0
## 31448 1 0 0
## 31449 1 0 0
## 31450 2 1 0
## 31451 2 0 0
## 31452 2 0 0
## 31453 2 0 0
## 31454 1 0 0
## 31455 1 0 0
## 31456 1 0 0
## 31457 1 0 0
## 31458 2 0 0
## 31459 2 0 0
## 31460 1 0 0
## 31461 2 1 0
## 31462 2 0 0
## 31463 2 0 0
## 31464 2 0 0
## 31465 2 0 0
## 31466 2 0 0
## 31467 1 0 0
## 31468 2 0 0
## 31469 2 0 0
## 31470 2 0 0
## 31471 1 0 0
## 31472 2 0 0
## 31473 2 0 0
## 31474 2 0 0
## 31475 2 0 0
## 31476 2 2 0
## 31477 2 0 0
## 31478 2 0 0
## 31479 2 0 0
## 31480 2 0 0
## 31481 2 0 0
## 31482 2 0 0
## 31483 1 0 0
## 31484 2 0 0
## 31485 1 0 0
## 31486 2 0 0
## 31487 2 0 0
## 31488 2 0 0
## 31489 2 0 0
## 31490 2 0 0
## 31491 2 0 0
## 31492 2 0 0
## 31493 2 0 0
## 31494 2 0 0
## 31495 2 0 0
## 31496 2 0 0
## 31497 2 0 0
## 31498 2 0 0
## 31499 2 0 0
## 31500 2 0 0
## 31501 2 0 0
## 31502 1 0 0
## 31503 2 0 0
## 31504 2 0 0
## 31505 2 0 0
## 31506 1 0 0
## 31507 1 0 0
## 31508 1 0 0
## 31509 2 0 0
## 31510 2 0 0
## 31511 2 0 0
## 31512 2 0 0
## 31513 2 0 0
## 31514 2 0 0
## 31515 2 0 0
## 31516 2 0 0
## 31517 2 0 0
## 31518 1 0 0
## 31519 1 0 0
## 31520 2 0 0
## 31521 2 0 0
## 31522 2 0 0
## 31523 2 0 0
## 31524 3 1 0
## 31525 2 0 0
## 31526 2 0 0
## 31527 1 0 0
## 31528 2 0 0
## 31529 2 0 0
## 31530 2 0 0
## 31531 2 0 0
## 31532 2 0 0
## 31533 2 0 0
## 31534 3 0 0
## 31535 2 0 0
## 31536 2 0 0
## 31537 2 0 0
## 31538 2 0 0
## 31539 2 0 0
## 31540 2 0 0
## 31541 2 0 0
## 31542 2 1 0
## 31543 2 0 0
## 31544 2 0 0
## 31545 2 0 0
## 31546 3 0 0
## 31547 2 0 0
## 31548 2 0 0
## 31549 2 0 0
## 31550 2 0 0
## 31551 2 0 0
## 31552 2 0 0
## 31553 2 0 0
## 31554 2 0 0
## 31555 1 0 0
## 31556 2 0 0
## 31557 2 0 0
## 31558 1 0 0
## 31559 2 0 0
## 31560 2 0 0
## 31561 2 0 0
## 31562 2 0 0
## 31563 1 0 0
## 31564 1 0 0
## 31565 2 0 0
## 31566 2 0 0
## 31567 1 0 0
## 31568 1 0 0
## 31569 1 0 0
## 31570 2 0 0
## 31571 1 0 0
## 31572 1 0 0
## 31573 1 0 0
## 31574 2 0 0
## 31575 2 0 0
## 31576 2 0 0
## 31577 2 0 0
## 31578 2 0 0
## 31579 2 0 0
## 31580 2 0 0
## 31581 2 0 0
## 31582 1 0 0
## 31583 2 0 0
## 31584 2 0 0
## 31585 2 0 0
## 31586 2 0 0
## 31587 1 0 0
## 31588 1 0 0
## 31589 2 0 0
## 31590 1 0 0
## 31591 1 0 0
## 31592 1 0 0
## 31593 2 0 0
## 31594 1 0 0
## 31595 1 0 0
## 31596 1 0 0
## 31597 1 0 0
## 31598 1 0 0
## 31599 2 0 0
## 31600 2 0 0
## 31601 2 0 0
## 31602 2 2 0
## 31603 1 0 0
## 31604 2 0 0
## 31605 2 0 0
## 31606 2 0 0
## 31607 2 0 0
## 31608 1 0 0
## 31609 1 0 0
## 31610 2 0 0
## 31611 1 0 0
## 31612 1 0 0
## 31613 1 0 0
## 31614 1 0 0
## 31615 1 0 0
## 31616 1 0 0
## 31617 1 0 0
## 31618 1 0 0
## 31619 1 0 0
## 31620 2 0 0
## 31621 1 0 0
## 31622 1 0 0
## 31623 1 0 0
## 31624 1 0 0
## 31625 1 0 0
## 31626 1 0 0
## 31627 1 0 0
## 31628 1 0 0
## 31629 1 0 0
## 31630 1 0 0
## 31631 1 0 0
## 31632 2 0 0
## 31633 2 0 0
## 31634 2 0 0
## 31635 1 0 0
## 31636 2 0 0
## 31637 2 0 0
## 31638 2 0 0
## 31639 2 0 0
## 31640 2 0 0
## 31641 2 0 0
## 31642 2 0 0
## 31643 1 0 0
## 31644 1 0 0
## 31645 2 0 0
## 31646 1 0 0
## 31647 2 0 0
## 31648 1 0 0
## 31649 1 0 0
## 31650 2 0 0
## 31651 2 0 0
## 31652 3 1 0
## 31653 1 0 0
## 31654 2 0 0
## 31655 1 0 0
## 31656 2 0 0
## 31657 1 0 0
## 31658 2 0 0
## 31659 1 0 0
## 31660 1 0 0
## 31661 2 0 0
## 31662 1 0 0
## 31663 2 0 0
## 31664 2 0 0
## 31665 1 0 0
## 31666 1 0 0
## 31667 2 0 0
## 31668 1 0 0
## 31669 2 0 0
## 31670 2 0 0
## 31671 2 0 0
## 31672 1 0 0
## 31673 2 0 0
## 31674 2 0 0
## 31675 2 0 0
## 31676 2 0 0
## 31677 2 0 0
## 31678 1 0 0
## 31679 1 0 0
## 31680 2 0 0
## 31681 2 0 0
## 31682 2 0 0
## 31683 2 0 0
## 31684 2 0 0
## 31685 1 0 0
## 31686 2 0 0
## 31687 1 0 0
## 31688 1 0 0
## 31689 1 0 0
## 31690 1 0 0
## 31691 2 0 0
## 31692 2 0 0
## 31693 2 0 0
## 31694 2 0 0
## 31695 2 0 0
## 31696 1 0 0
## 31697 2 1 0
## 31698 2 1 0
## 31699 2 0 0
## 31700 1 0 0
## 31701 2 0 0
## 31702 2 0 0
## 31703 2 0 0
## 31704 2 0 0
## 31705 2 0 0
## 31706 2 0 0
## 31707 1 0 0
## 31708 2 1 0
## 31709 2 0 0
## 31710 2 0 0
## 31711 2 0 0
## 31712 2 0 0
## 31713 2 0 0
## 31714 2 0 0
## 31715 2 0 0
## 31716 2 0 0
## 31717 2 0 0
## 31718 2 0 0
## 31719 2 0 0
## 31720 2 0 0
## 31721 2 0 0
## 31722 2 0 0
## 31723 2 0 0
## 31724 2 0 0
## 31725 2 0 0
## 31726 2 0 0
## 31727 2 0 0
## 31728 2 0 0
## 31729 2 0 0
## 31730 2 0 0
## 31731 2 0 0
## 31732 2 1 0
## 31733 2 0 0
## 31734 2 0 0
## 31735 2 0 0
## 31736 2 3 0
## 31737 1 0 0
## 31738 2 0 0
## 31739 1 0 0
## 31740 2 0 0
## 31741 1 0 0
## 31742 2 0 0
## 31743 2 0 0
## 31744 1 0 0
## 31745 1 0 0
## 31746 1 0 0
## 31747 2 0 0
## 31748 2 0 0
## 31749 1 0 0
## 31750 1 0 0
## 31751 1 0 0
## 31752 3 0 0
## 31753 2 2 0
## 31754 2 0 0
## 31755 2 0 0
## 31756 3 1 0
## 31757 1 0 0
## 31758 2 0 0
## 31759 2 0 0
## 31760 2 0 0
## 31761 2 0 0
## 31762 1 0 0
## 31763 1 0 0
## 31764 2 0 0
## 31765 1 0 0
## 31766 1 0 0
## 31767 1 0 0
## 31768 2 2 0
## 31769 1 0 0
## 31770 1 0 0
## 31771 1 0 0
## 31772 1 0 0
## 31773 2 0 0
## 31774 1 0 0
## 31775 2 0 0
## 31776 2 0 0
## 31777 1 0 0
## 31778 2 0 0
## 31779 1 0 0
## 31780 1 0 0
## 31781 2 0 0
## 31782 2 0 0
## 31783 2 0 0
## 31784 2 0 0
## 31785 2 0 0
## 31786 2 0 0
## 31787 2 0 0
## 31788 1 0 0
## 31789 1 0 0
## 31790 1 0 0
## 31791 2 0 0
## 31792 2 0 0
## 31793 1 0 0
## 31794 1 0 0
## 31795 1 0 0
## 31796 1 0 0
## 31797 3 1 0
## 31798 2 0 0
## 31799 2 0 0
## 31800 2 0 0
## 31801 2 0 0
## 31802 2 0 0
## 31803 2 0 0
## 31804 2 0 0
## 31805 1 0 0
## 31806 1 0 0
## 31807 1 0 0
## 31808 2 0 0
## 31809 2 0 0
## 31810 1 0 0
## 31811 1 0 0
## 31812 1 0 0
## 31813 1 0 0
## 31814 2 0 0
## 31815 2 0 0
## 31816 1 0 0
## 31817 2 0 0
## 31818 2 0 0
## 31819 2 0 0
## 31820 2 0 0
## 31821 2 0 0
## 31822 2 0 0
## 31823 2 0 0
## 31824 3 0 0
## 31825 1 0 0
## 31826 1 0 0
## 31827 2 0 0
## 31828 1 0 0
## 31829 1 0 0
## 31830 1 0 0
## 31831 2 1 0
## 31832 2 0 0
## 31833 2 0 0
## 31834 2 1 0
## 31835 2 0 0
## 31836 2 1 0
## 31837 2 0 0
## 31838 2 0 0
## 31839 2 0 0
## 31840 2 0 0
## 31841 1 0 0
## 31842 2 0 0
## 31843 2 2 0
## 31844 2 0 0
## 31845 1 0 0
## 31846 2 0 0
## 31847 2 2 0
## 31848 2 0 0
## 31849 2 0 0
## 31850 2 0 0
## 31851 2 0 0
## 31852 2 0 0
## 31853 2 0 0
## 31854 2 0 0
## 31855 2 1 0
## 31856 2 0 0
## 31857 2 0 0
## 31858 1 0 0
## 31859 2 0 0
## 31860 2 0 0
## 31861 2 0 0
## 31862 2 0 0
## 31863 2 0 0
## 31864 2 0 0
## 31865 1 0 0
## 31866 1 0 0
## 31867 2 0 0
## 31868 2 0 0
## 31869 2 0 0
## 31870 2 0 0
## 31871 2 0 0
## 31872 2 0 0
## 31873 2 0 0
## 31874 1 0 0
## 31875 2 0 0
## 31876 2 0 0
## 31877 2 0 0
## 31878 2 2 0
## 31879 2 0 0
## 31880 2 0 0
## 31881 1 0 0
## 31882 1 0 0
## 31883 2 0 0
## 31884 1 0 0
## 31885 2 0 0
## 31886 2 0 0
## 31887 2 0 0
## 31888 2 0 0
## 31889 2 0 0
## 31890 1 0 0
## 31891 2 0 0
## 31892 1 0 0
## 31893 1 0 0
## 31894 2 0 0
## 31895 3 1 0
## 31896 2 0 0
## 31897 2 0 0
## 31898 2 0 0
## 31899 2 0 0
## 31900 2 0 0
## 31901 2 1 0
## 31902 2 0 0
## 31903 2 0 0
## 31904 2 0 0
## 31905 2 0 0
## 31906 1 0 0
## 31907 2 0 0
## 31908 1 0 0
## 31909 2 0 0
## 31910 2 0 0
## 31911 2 0 0
## 31912 2 0 0
## 31913 2 2 0
## 31914 2 0 0
## 31915 2 0 0
## 31916 2 0 0
## 31917 1 0 0
## 31918 2 0 0
## 31919 2 1 0
## 31920 3 0 0
## 31921 2 0 0
## 31922 2 0 0
## 31923 2 0 0
## 31924 2 2 0
## 31925 2 0 0
## 31926 3 0 0
## 31927 1 0 0
## 31928 2 0 0
## 31929 2 0 0
## 31930 2 0 0
## 31931 2 0 0
## 31932 2 0 0
## 31933 2 0 0
## 31934 2 0 0
## 31935 1 0 0
## 31936 2 0 0
## 31937 2 0 0
## 31938 2 0 0
## 31939 2 0 0
## 31940 2 0 0
## 31941 2 0 0
## 31942 1 0 0
## 31943 2 1 0
## 31944 2 2 0
## 31945 2 0 0
## 31946 2 0 0
## 31947 1 0 0
## 31948 1 0 0
## 31949 2 0 0
## 31950 2 0 0
## 31951 2 0 0
## 31952 1 0 0
## 31953 2 0 0
## 31954 2 0 0
## 31955 2 0 0
## 31956 1 0 0
## 31957 1 0 0
## 31958 2 0 0
## 31959 2 0 0
## 31960 1 0 0
## 31961 2 0 0
## 31962 2 0 0
## 31963 1 0 0
## 31964 1 0 0
## 31965 2 0 0
## 31966 2 0 0
## 31967 1 0 0
## 31968 1 0 0
## 31969 1 0 0
## 31970 2 0 0
## 31971 2 0 0
## 31972 1 2 0
## 31973 2 0 0
## 31974 1 0 0
## 31975 2 0 0
## 31976 2 0 0
## 31977 2 0 0
## 31978 2 1 0
## 31979 2 0 0
## 31980 2 0 0
## 31981 2 0 0
## 31982 2 0 0
## 31983 2 0 0
## 31984 2 0 0
## 31985 1 0 0
## 31986 2 1 0
## 31987 2 0 0
## 31988 2 0 0
## 31989 2 0 0
## 31990 2 0 0
## 31991 1 0 0
## 31992 2 0 0
## 31993 2 0 0
## 31994 2 0 0
## 31995 2 0 0
## 31996 1 0 0
## 31997 2 0 0
## 31998 2 2 0
## 31999 2 0 0
## 32000 1 0 0
## 32001 1 0 0
## 32002 1 0 0
## 32003 2 1 0
## 32004 1 0 0
## 32005 2 0 0
## 32006 2 0 0
## 32007 2 0 0
## 32008 2 0 0
## 32009 2 2 0
## 32010 2 2 0
## 32011 2 0 0
## 32012 2 0 0
## 32013 2 0 0
## 32014 2 0 0
## 32015 2 0 0
## 32016 2 0 0
## 32017 2 0 0
## 32018 2 2 0
## 32019 2 2 0
## 32020 2 0 0
## 32021 2 0 0
## 32022 3 1 0
## 32023 2 0 0
## 32024 2 0 0
## 32025 2 0 0
## 32026 2 0 0
## 32027 2 0 0
## 32028 1 0 0
## 32029 2 0 0
## 32030 1 0 0
## 32031 1 0 0
## 32032 2 0 0
## 32033 1 0 0
## 32034 1 0 0
## 32035 2 0 0
## 32036 2 1 0
## 32037 2 0 0
## 32038 2 0 0
## 32039 1 0 0
## 32040 2 0 0
## 32041 2 0 0
## 32042 2 0 0
## 32043 2 0 0
## 32044 2 0 0
## 32045 2 0 0
## 32046 2 0 0
## 32047 2 0 0
## 32048 2 0 0
## 32049 2 0 0
## 32050 2 0 0
## 32051 2 0 0
## 32052 2 0 0
## 32053 2 0 0
## 32054 2 1 0
## 32055 2 0 0
## 32056 2 0 0
## 32057 2 0 0
## 32058 2 0 0
## 32059 2 0 0
## 32060 2 0 0
## 32061 2 0 0
## 32062 2 0 0
## 32063 2 0 0
## 32064 2 0 0
## 32065 2 0 0
## 32066 2 0 0
## 32067 2 0 0
## 32068 2 0 0
## 32069 2 0 0
## 32070 2 1 0
## 32071 2 0 0
## 32072 2 2 0
## 32073 2 0 0
## 32074 3 1 0
## 32075 2 0 0
## 32076 2 1 0
## 32077 2 0 0
## 32078 2 0 0
## 32079 2 2 0
## 32080 2 0 0
## 32081 2 0 0
## 32082 2 0 0
## 32083 2 0 0
## 32084 2 0 0
## 32085 2 0 0
## 32086 2 0 0
## 32087 2 0 0
## 32088 2 0 0
## 32089 2 0 0
## 32090 2 0 0
## 32091 2 1 0
## 32092 2 0 0
## 32093 2 0 0
## 32094 2 0 0
## 32095 2 0 0
## 32096 1 0 0
## 32097 2 0 0
## 32098 3 1 0
## 32099 2 0 0
## 32100 2 0 0
## 32101 1 0 0
## 32102 2 0 0
## 32103 2 0 0
## 32104 2 0 0
## 32105 2 0 0
## 32106 2 0 0
## 32107 2 0 0
## 32108 2 0 0
## 32109 2 0 0
## 32110 2 0 0
## 32111 1 0 0
## 32112 1 0 0
## 32113 1 0 0
## 32114 2 0 0
## 32115 2 0 0
## 32116 1 0 0
## 32117 1 0 0
## 32118 1 0 0
## 32119 2 0 0
## 32120 1 0 0
## 32121 2 0 0
## 32122 2 0 0
## 32123 1 0 0
## 32124 2 0 0
## 32125 1 1 0
## 32126 2 0 0
## 32127 1 0 0
## 32128 2 0 0
## 32129 2 0 0
## 32130 2 0 0
## 32131 2 1 0
## 32132 2 0 0
## 32133 2 0 0
## 32134 2 1 0
## 32135 3 0 0
## 32136 2 0 0
## 32137 2 0 0
## 32138 2 0 0
## 32139 2 0 0
## 32140 2 0 0
## 32141 2 0 0
## 32142 2 0 0
## 32143 2 0 0
## 32144 2 0 0
## 32145 2 0 0
## 32146 2 0 0
## 32147 2 0 0
## 32148 2 0 0
## 32149 2 1 0
## 32150 2 0 0
## 32151 2 0 0
## 32152 2 0 0
## 32153 2 0 0
## 32154 2 0 0
## 32155 2 0 0
## 32156 2 0 0
## 32157 2 0 0
## 32158 2 0 0
## 32159 1 0 0
## 32160 2 0 0
## 32161 1 0 0
## 32162 2 0 0
## 32163 3 1 0
## 32164 2 0 0
## 32165 2 0 0
## 32166 1 1 0
## 32167 1 1 0
## 32168 2 0 0
## 32169 2 0 0
## 32170 2 0 0
## 32171 2 0 0
## 32172 2 0 0
## 32173 2 0 0
## 32174 2 0 0
## 32175 2 0 0
## 32176 2 0 0
## 32177 2 0 0
## 32178 2 0 0
## 32179 2 0 0
## 32180 1 0 0
## 32181 1 0 0
## 32182 2 0 0
## 32183 2 0 0
## 32184 1 0 0
## 32185 2 0 0
## 32186 2 0 0
## 32187 1 0 0
## 32188 1 0 0
## 32189 1 0 0
## 32190 1 0 0
## 32191 1 0 0
## 32192 1 0 0
## 32193 2 0 0
## 32194 2 0 0
## 32195 2 0 0
## 32196 2 0 0
## 32197 2 0 0
## 32198 2 0 0
## 32199 2 0 0
## 32200 2 0 0
## 32201 1 0 0
## 32202 2 0 0
## 32203 2 0 0
## 32204 2 0 0
## 32205 1 0 0
## 32206 2 0 0
## 32207 2 0 0
## 32208 2 0 0
## 32209 2 0 0
## 32210 2 0 0
## 32211 3 1 0
## 32212 2 0 0
## 32213 2 0 0
## 32214 2 0 0
## 32215 2 0 0
## 32216 2 0 0
## 32217 2 0 0
## 32218 2 0 0
## 32219 2 0 0
## 32220 2 0 0
## 32221 2 0 0
## 32222 2 0 0
## 32223 2 0 0
## 32224 1 0 0
## 32225 1 0 0
## 32226 2 0 0
## 32227 2 0 0
## 32228 2 0 0
## 32229 2 0 0
## 32230 2 0 0
## 32231 2 0 0
## 32232 2 0 0
## 32233 2 0 0
## 32234 2 0 0
## 32235 2 1 0
## 32236 1 0 0
## 32237 2 0 0
## 32238 2 0 0
## 32239 2 0 0
## 32240 2 0 0
## 32241 2 0 0
## 32242 2 0 0
## 32243 2 0 0
## 32244 2 0 0
## 32245 2 0 0
## 32246 2 0 0
## 32247 2 0 0
## 32248 1 0 0
## 32249 2 0 0
## 32250 2 0 0
## 32251 2 0 0
## 32252 1 0 0
## 32253 1 0 0
## 32254 1 0 0
## 32255 1 0 0
## 32256 2 0 0
## 32257 1 0 0
## 32258 1 0 0
## 32259 2 0 0
## 32260 1 0 0
## 32261 1 0 0
## 32262 2 0 0
## 32263 1 0 0
## 32264 2 0 0
## 32265 2 0 0
## 32266 2 0 0
## 32267 0 0 0
## 32268 2 0 0
## 32269 3 0 0
## 32270 3 0 0
## 32271 2 1 0
## 32272 2 1 0
## 32273 2 0 0
## 32274 1 0 0
## 32275 2 0 0
## 32276 2 0 0
## 32277 2 0 0
## 32278 2 0 0
## 32279 2 0 0
## 32280 2 0 0
## 32281 2 0 0
## 32282 2 0 0
## 32283 2 0 0
## 32284 1 0 0
## 32285 2 0 0
## 32286 1 0 0
## 32287 2 0 0
## 32288 1 0 0
## 32289 1 0 0
## 32290 1 0 0
## 32291 1 0 0
## 32292 2 0 0
## 32293 2 0 0
## 32294 2 0 0
## 32295 2 0 0
## 32296 2 0 0
## 32297 2 0 0
## 32298 2 2 0
## 32299 2 1 0
## 32300 2 0 0
## 32301 2 0 0
## 32302 2 0 0
## 32303 2 0 0
## 32304 1 0 0
## 32305 2 0 0
## 32306 2 0 0
## 32307 2 0 0
## 32308 2 2 0
## 32309 2 0 0
## 32310 2 0 0
## 32311 2 0 0
## 32312 2 0 0
## 32313 2 0 0
## 32314 2 0 0
## 32315 2 0 0
## 32316 2 0 0
## 32317 1 0 0
## 32318 2 0 0
## 32319 2 0 0
## 32320 2 0 0
## 32321 2 0 0
## 32322 2 0 0
## 32323 2 0 0
## 32324 2 0 0
## 32325 2 2 0
## 32326 2 0 0
## 32327 1 0 0
## 32328 2 0 0
## 32329 3 0 0
## 32330 2 0 0
## 32331 2 2 0
## 32332 2 0 0
## 32333 2 0 0
## 32334 2 0 0
## 32335 2 1 0
## 32336 2 1 0
## 32337 2 0 0
## 32338 2 0 0
## 32339 1 0 0
## 32340 2 0 0
## 32341 2 0 0
## 32342 2 0 0
## 32343 2 0 0
## 32344 2 0 0
## 32345 2 0 0
## 32346 2 0 0
## 32347 2 0 0
## 32348 2 0 0
## 32349 2 0 0
## 32350 2 0 0
## 32351 2 0 0
## 32352 1 0 0
## 32353 2 0 0
## 32354 2 1 0
## 32355 3 0 0
## 32356 2 0 0
## 32357 2 0 0
## 32358 2 0 0
## 32359 2 0 0
## 32360 2 2 0
## 32361 2 0 0
## 32362 2 0 0
## 32363 2 0 0
## 32364 2 0 0
## 32365 2 0 0
## 32366 1 0 0
## 32367 1 0 0
## 32368 2 0 0
## 32369 2 0 0
## 32370 2 0 0
## 32371 2 0 0
## 32372 2 0 0
## 32373 2 2 0
## 32374 2 0 0
## 32375 2 0 0
## 32376 1 0 0
## 32377 2 0 0
## 32378 1 0 0
## 32379 2 0 0
## 32380 2 0 0
## 32381 2 0 0
## 32382 1 0 0
## 32383 2 0 0
## 32384 2 0 0
## 32385 2 0 0
## 32386 1 0 0
## 32387 2 0 0
## 32388 1 0 0
## 32389 2 0 0
## 32390 2 0 0
## 32391 2 0 0
## 32392 2 0 0
## 32393 2 0 0
## 32394 2 0 0
## 32395 2 0 0
## 32396 2 0 0
## 32397 2 0 0
## 32398 2 0 0
## 32399 1 0 0
## 32400 1 0 0
## 32401 1 0 0
## 32402 2 0 0
## 32403 2 0 0
## 32404 2 0 0
## 32405 2 0 0
## 32406 2 0 0
## 32407 1 0 0
## 32408 1 0 0
## 32409 1 0 0
## 32410 2 0 0
## 32411 2 0 0
## 32412 2 0 0
## 32413 2 0 0
## 32414 2 0 0
## 32415 2 0 0
## 32416 2 0 0
## 32417 1 0 0
## 32418 1 0 0
## 32419 2 0 0
## 32420 2 0 0
## 32421 1 0 0
## 32422 1 0 0
## 32423 1 0 0
## 32424 1 0 0
## 32425 1 0 0
## 32426 1 0 0
## 32427 1 0 0
## 32428 2 0 0
## 32429 2 0 0
## 32430 1 0 0
## 32431 2 0 0
## 32432 2 0 0
## 32433 2 0 0
## 32434 1 0 0
## 32435 1 0 0
## 32436 2 0 0
## 32437 2 0 0
## 32438 2 0 0
## 32439 1 0 0
## 32440 1 0 0
## 32441 1 0 0
## 32442 2 0 0
## 32443 1 0 0
## 32444 1 0 0
## 32445 1 0 0
## 32446 2 0 0
## 32447 1 0 0
## 32448 2 0 0
## 32449 1 0 0
## 32450 1 0 0
## 32451 1 0 0
## 32452 2 0 0
## 32453 1 0 0
## 32454 1 0 0
## 32455 2 0 0
## 32456 2 0 0
## 32457 2 0 0
## 32458 2 0 0
## 32459 2 0 0
## 32460 2 0 0
## 32461 2 0 0
## 32462 2 0 0
## 32463 2 0 0
## 32464 2 0 0
## 32465 2 0 0
## 32466 2 0 0
## 32467 2 0 0
## 32468 2 0 0
## 32469 2 0 0
## 32470 1 0 0
## 32471 2 0 0
## 32472 2 0 0
## 32473 1 0 0
## 32474 1 0 0
## 32475 2 0 0
## 32476 1 0 0
## 32477 2 0 0
## 32478 2 0 0
## 32479 1 0 0
## 32480 2 0 0
## 32481 2 0 0
## 32482 2 0 0
## 32483 2 0 0
## 32484 2 0 0
## 32485 2 0 0
## 32486 2 0 0
## 32487 2 0 0
## 32488 2 0 0
## 32489 1 0 0
## 32490 2 0 0
## 32491 1 0 0
## 32492 1 0 0
## 32493 2 0 0
## 32494 2 0 0
## 32495 2 0 0
## 32496 2 0 0
## 32497 1 0 0
## 32498 2 0 0
## 32499 2 0 0
## 32500 2 0 0
## 32501 1 0 0
## 32502 2 2 0
## 32503 2 2 0
## 32504 2 0 0
## 32505 2 0 0
## 32506 2 0 0
## 32507 2 0 0
## 32508 2 0 0
## 32509 1 0 0
## 32510 1 0 0
## 32511 2 0 0
## 32512 2 0 0
## 32513 1 0 0
## 32514 1 0 0
## 32515 1 0 0
## 32516 1 0 0
## 32517 2 0 0
## 32518 1 0 0
## 32519 1 0 0
## 32520 2 0 0
## 32521 1 0 0
## 32522 2 0 0
## 32523 2 0 0
## 32524 2 0 0
## 32525 2 0 0
## 32526 2 0 0
## 32527 2 0 0
## 32528 2 0 0
## 32529 0 0 0
## 32530 2 0 0
## 32531 2 0 0
## 32532 1 0 0
## 32533 1 0 0
## 32534 1 0 0
## 32535 2 0 0
## 32536 2 0 0
## 32537 2 0 0
## 32538 2 0 0
## 32539 2 0 0
## 32540 2 0 0
## 32541 2 0 0
## 32542 2 0 0
## 32543 2 0 0
## 32544 2 0 0
## 32545 2 0 0
## 32546 2 0 0
## 32547 2 0 0
## 32548 2 0 0
## 32549 2 0 0
## 32550 2 0 0
## 32551 2 0 0
## 32552 1 0 0
## 32553 2 0 0
## 32554 2 0 0
## 32555 2 0 0
## 32556 2 0 0
## 32557 2 0 0
## 32558 2 0 0
## 32559 1 0 0
## 32560 1 0 0
## 32561 2 0 0
## 32562 2 0 0
## 32563 2 0 0
## 32564 2 0 0
## 32565 2 0 0
## 32566 2 1 0
## 32567 2 0 0
## 32568 1 0 0
## 32569 1 0 0
## 32570 1 0 0
## 32571 2 0 0
## 32572 2 0 0
## 32573 2 0 0
## 32574 2 0 0
## 32575 2 0 0
## 32576 2 0 0
## 32577 2 0 0
## 32578 2 0 0
## 32579 2 0 0
## 32580 2 0 0
## 32581 2 0 0
## 32582 2 0 0
## 32583 2 0 0
## 32584 2 0 0
## 32585 2 0 0
## 32586 2 0 0
## 32587 2 0 0
## 32588 2 0 0
## 32589 2 0 0
## 32590 1 0 0
## 32591 1 0 0
## 32592 1 0 0
## 32593 2 0 0
## 32594 2 0 0
## 32595 1 0 0
## 32596 2 0 0
## 32597 2 0 0
## 32598 2 0 0
## 32599 1 0 0
## 32600 2 0 0
## 32601 1 0 0
## 32602 2 0 0
## 32603 2 0 0
## 32604 2 0 0
## 32605 1 1 0
## 32606 2 0 0
## 32607 1 0 0
## 32608 1 0 0
## 32609 2 0 0
## 32610 1 0 0
## 32611 1 0 0
## 32612 1 0 0
## 32613 1 0 0
## 32614 1 0 0
## 32615 1 0 0
## 32616 1 0 0
## 32617 1 0 0
## 32618 1 0 0
## 32619 1 0 0
## 32620 1 0 0
## 32621 1 0 0
## 32622 1 0 0
## 32623 2 0 0
## 32624 1 0 0
## 32625 1 0 0
## 32626 2 0 0
## 32627 1 0 0
## 32628 1 0 0
## 32629 1 0 0
## 32630 1 0 0
## 32631 1 0 0
## 32632 2 0 0
## 32633 2 0 0
## 32634 2 0 0
## 32635 1 0 0
## 32636 1 0 0
## 32637 2 0 0
## 32638 1 0 0
## 32639 2 0 0
## 32640 1 0 0
## 32641 1 0 0
## 32642 1 0 0
## 32643 1 0 0
## 32644 1 0 0
## 32645 1 0 0
## 32646 1 0 0
## 32647 1 0 0
## 32648 2 0 0
## 32649 1 0 0
## 32650 2 0 0
## 32651 1 0 0
## 32652 1 0 0
## 32653 1 0 0
## 32654 1 0 0
## 32655 1 0 0
## 32656 1 0 0
## 32657 1 0 0
## 32658 1 0 0
## 32659 1 0 0
## 32660 1 0 0
## 32661 1 0 0
## 32662 2 0 0
## 32663 2 0 0
## 32664 1 0 0
## 32665 1 0 0
## 32666 1 0 0
## 32667 2 0 0
## 32668 2 0 0
## 32669 2 0 0
## 32670 1 0 0
## 32671 1 0 0
## 32672 2 0 0
## 32673 1 0 0
## 32674 1 0 0
## 32675 1 0 0
## 32676 1 0 0
## 32677 1 0 0
## 32678 1 0 0
## 32679 1 0 0
## 32680 1 0 0
## 32681 1 0 0
## 32682 1 0 0
## 32683 1 0 0
## 32684 1 0 0
## 32685 1 0 0
## 32686 1 0 0
## 32687 1 0 0
## 32688 1 0 0
## 32689 1 0 0
## 32690 1 0 0
## 32691 1 0 0
## 32692 1 0 0
## 32693 1 0 0
## 32694 1 0 0
## 32695 1 0 0
## 32696 1 0 0
## 32697 1 0 0
## 32698 1 0 0
## 32699 1 0 0
## 32700 1 0 0
## 32701 1 0 0
## 32702 1 0 0
## 32703 1 0 0
## 32704 1 0 0
## 32705 1 0 0
## 32706 1 0 0
## 32707 1 0 0
## 32708 1 0 0
## 32709 1 0 0
## 32710 1 0 0
## 32711 1 0 0
## 32712 1 0 0
## 32713 1 0 0
## 32714 1 0 0
## 32715 1 0 0
## 32716 1 0 0
## 32717 1 0 0
## 32718 1 0 0
## 32719 1 0 0
## 32720 1 0 0
## 32721 1 0 0
## 32722 1 0 0
## 32723 1 0 0
## 32724 1 0 0
## 32725 1 0 0
## 32726 1 0 0
## 32727 1 0 0
## 32728 1 0 0
## 32729 1 0 0
## 32730 1 0 0
## 32731 1 0 0
## 32732 1 0 0
## 32733 1 0 0
## 32734 1 0 0
## 32735 1 0 0
## 32736 1 0 0
## 32737 1 0 0
## 32738 1 0 0
## 32739 1 0 0
## 32740 1 0 0
## 32741 1 0 0
## 32742 1 0 0
## 32743 1 0 0
## 32744 1 0 0
## 32745 1 0 0
## 32746 1 0 0
## 32747 1 0 0
## 32748 1 0 0
## 32749 1 0 0
## 32750 2 0 0
## 32751 2 0 0
## 32752 1 0 0
## 32753 1 0 0
## 32754 1 0 0
## 32755 1 0 0
## 32756 2 0 0
## 32757 2 0 0
## 32758 1 0 0
## 32759 1 0 0
## 32760 1 0 0
## 32761 2 0 0
## 32762 1 0 0
## 32763 2 0 0
## 32764 2 0 0
## 32765 2 0 0
## 32766 2 0 0
## 32767 2 0 0
## 32768 2 0 0
## 32769 2 0 0
## 32770 2 0 0
## 32771 2 0 0
## 32772 2 0 0
## 32773 2 0 0
## 32774 2 0 0
## 32775 2 0 0
## 32776 2 0 0
## 32777 2 0 0
## 32778 2 0 0
## 32779 2 0 0
## 32780 2 0 0
## 32781 2 0 0
## 32782 2 0 0
## 32783 1 0 0
## 32784 2 0 0
## 32785 2 0 0
## 32786 3 0 0
## 32787 2 2 0
## 32788 3 1 0
## 32789 1 0 0
## 32790 1 0 0
## 32791 1 0 0
## 32792 1 0 0
## 32793 2 0 0
## 32794 2 0 0
## 32795 1 0 0
## 32796 1 0 0
## 32797 1 0 0
## 32798 2 0 0
## 32799 2 0 0
## 32800 2 0 0
## 32801 2 0 0
## 32802 2 0 0
## 32803 2 0 0
## 32804 2 0 0
## 32805 2 0 0
## 32806 2 0 0
## 32807 2 0 0
## 32808 2 0 0
## 32809 2 0 0
## 32810 2 0 0
## 32811 2 1 0
## 32812 2 0 0
## 32813 2 1 0
## 32814 2 0 0
## 32815 2 0 0
## 32816 2 0 0
## 32817 2 0 0
## 32818 2 0 0
## 32819 2 0 0
## 32820 2 0 0
## 32821 1 0 0
## 32822 2 0 0
## 32823 2 0 0
## 32824 2 0 0
## 32825 2 0 0
## 32826 2 0 0
## 32827 2 0 0
## 32828 2 2 0
## 32829 2 1 0
## 32830 2 1 0
## 32831 2 0 0
## 32832 2 0 0
## 32833 2 0 0
## 32834 2 0 0
## 32835 2 0 0
## 32836 2 0 0
## 32837 2 0 0
## 32838 1 0 0
## 32839 2 0 0
## 32840 2 0 0
## 32841 2 0 0
## 32842 2 0 0
## 32843 2 0 0
## 32844 1 0 0
## 32845 1 0 0
## 32846 1 0 0
## 32847 2 0 0
## 32848 1 0 0
## 32849 1 0 0
## 32850 3 0 0
## 32851 1 0 0
## 32852 1 0 0
## 32853 2 0 0
## 32854 2 0 0
## 32855 2 0 0
## 32856 1 0 0
## 32857 2 0 0
## 32858 2 0 0
## 32859 1 0 0
## 32860 1 0 0
## 32861 1 0 0
## 32862 1 0 0
## 32863 1 0 0
## 32864 2 0 0
## 32865 2 0 0
## 32866 2 0 0
## 32867 2 2 0
## 32868 2 0 0
## 32869 3 0 0
## 32870 2 0 0
## 32871 2 0 0
## 32872 1 0 0
## 32873 2 1 0
## 32874 1 0 0
## 32875 2 0 0
## 32876 2 2 0
## 32877 1 0 0
## 32878 1 0 0
## 32879 2 0 0
## 32880 2 0 0
## 32881 1 0 0
## 32882 2 0 0
## 32883 2 0 0
## 32884 2 0 0
## 32885 1 0 0
## 32886 2 0 0
## 32887 2 0 0
## 32888 2 0 0
## 32889 2 0 0
## 32890 2 0 0
## 32891 2 0 0
## 32892 1 0 0
## 32893 1 0 0
## 32894 1 0 0
## 32895 2 0 0
## 32896 1 0 0
## 32897 1 0 0
## 32898 1 0 0
## 32899 1 0 0
## 32900 1 0 0
## 32901 1 0 0
## 32902 1 0 0
## 32903 1 0 0
## 32904 1 0 0
## 32905 1 0 0
## 32906 2 0 0
## 32907 2 0 0
## 32908 2 1 0
## 32909 2 0 0
## 32910 2 0 0
## 32911 2 0 0
## 32912 2 0 0
## 32913 1 0 0
## 32914 2 0 0
## 32915 2 0 0
## 32916 2 0 0
## 32917 1 0 0
## 32918 1 0 0
## 32919 1 0 0
## 32920 2 0 0
## 32921 2 0 0
## 32922 2 0 0
## 32923 2 0 0
## 32924 1 0 0
## 32925 1 0 0
## 32926 1 0 0
## 32927 1 0 0
## 32928 1 0 0
## 32929 1 0 0
## 32930 1 0 0
## 32931 1 0 0
## 32932 1 0 0
## 32933 1 0 0
## 32934 1 0 0
## 32935 2 0 0
## 32936 2 0 0
## 32937 1 0 0
## 32938 1 0 0
## 32939 1 0 0
## 32940 1 0 0
## 32941 2 0 0
## 32942 2 0 0
## 32943 2 0 0
## 32944 2 0 0
## 32945 2 0 0
## 32946 2 0 0
## 32947 2 0 0
## 32948 2 0 0
## 32949 2 0 0
## 32950 2 0 0
## 32951 1 0 0
## 32952 1 0 0
## 32953 2 0 0
## 32954 1 0 0
## 32955 2 0 0
## 32956 1 0 0
## 32957 1 0 0
## 32958 2 0 0
## 32959 2 0 0
## 32960 2 0 0
## 32961 2 0 0
## 32962 2 0 0
## 32963 2 0 0
## 32964 2 0 0
## 32965 2 0 0
## 32966 1 0 0
## 32967 2 0 0
## 32968 2 0 0
## 32969 2 0 0
## 32970 2 0 0
## 32971 2 0 0
## 32972 1 0 0
## 32973 1 0 0
## 32974 2 0 0
## 32975 2 0 0
## 32976 2 0 0
## 32977 2 0 0
## 32978 3 0 0
## 32979 2 0 0
## 32980 1 0 0
## 32981 2 0 0
## 32982 2 0 0
## 32983 2 0 0
## 32984 2 0 0
## 32985 2 0 0
## 32986 2 0 0
## 32987 2 0 0
## 32988 2 0 0
## 32989 2 2 0
## 32990 2 0 0
## 32991 2 0 0
## 32992 2 0 0
## 32993 3 0 0
## 32994 2 0 0
## 32995 2 0 0
## 32996 2 0 0
## 32997 1 0 0
## 32998 2 0 0
## 32999 2 0 0
## 33000 2 0 0
## 33001 2 0 0
## 33002 2 0 0
## 33003 2 0 0
## 33004 2 0 0
## 33005 2 0 0
## 33006 2 0 0
## 33007 2 0 0
## 33008 3 1 0
## 33009 2 0 0
## 33010 2 0 0
## 33011 2 0 0
## 33012 2 0 0
## 33013 2 0 0
## 33014 2 0 0
## 33015 2 0 0
## 33016 1 0 0
## 33017 1 0 0
## 33018 2 0 0
## 33019 3 0 0
## 33020 2 0 0
## 33021 2 0 0
## 33022 2 0 0
## 33023 2 0 0
## 33024 2 0 0
## 33025 2 0 0
## 33026 2 0 0
## 33027 2 0 0
## 33028 2 0 0
## 33029 2 0 0
## 33030 2 0 0
## 33031 2 0 0
## 33032 2 0 0
## 33033 2 0 0
## 33034 2 0 0
## 33035 2 0 0
## 33036 2 0 0
## 33037 2 0 0
## 33038 2 0 0
## 33039 2 0 0
## 33040 2 1 0
## 33041 2 0 0
## 33042 2 0 0
## 33043 2 0 0
## 33044 2 0 0
## 33045 2 0 0
## 33046 2 0 0
## 33047 2 2 0
## 33048 2 0 0
## 33049 2 0 0
## 33050 2 2 0
## 33051 2 2 0
## 33052 2 0 0
## 33053 1 0 0
## 33054 2 0 0
## 33055 2 0 0
## 33056 2 0 0
## 33057 1 0 0
## 33058 1 0 0
## 33059 2 0 0
## 33060 2 0 0
## 33061 1 0 0
## 33062 1 0 0
## 33063 1 0 0
## 33064 1 0 0
## 33065 2 0 0
## 33066 1 0 0
## 33067 2 0 0
## 33068 2 0 0
## 33069 2 0 0
## 33070 1 0 0
## 33071 1 0 0
## 33072 2 1 0
## 33073 2 0 0
## 33074 2 0 0
## 33075 2 0 0
## 33076 2 0 0
## 33077 2 0 0
## 33078 2 0 0
## 33079 1 0 0
## 33080 2 0 0
## 33081 2 0 0
## 33082 1 0 0
## 33083 1 0 0
## 33084 1 0 0
## 33085 2 0 0
## 33086 1 0 0
## 33087 2 0 0
## 33088 2 0 0
## 33089 2 0 0
## 33090 1 0 0
## 33091 1 0 0
## 33092 2 0 0
## 33093 2 0 0
## 33094 2 0 0
## 33095 2 0 0
## 33096 2 0 0
## 33097 2 0 0
## 33098 2 0 0
## 33099 2 0 0
## 33100 2 0 0
## 33101 2 0 0
## 33102 2 0 0
## 33103 2 0 0
## 33104 1 0 0
## 33105 1 0 0
## 33106 1 0 0
## 33107 2 0 0
## 33108 1 0 0
## 33109 1 0 0
## 33110 2 0 0
## 33111 2 0 0
## 33112 1 0 0
## 33113 2 0 0
## 33114 2 0 0
## 33115 2 0 0
## 33116 2 0 0
## 33117 1 0 0
## 33118 2 0 0
## 33119 2 0 0
## 33120 1 0 0
## 33121 1 0 0
## 33122 1 0 0
## 33123 1 0 0
## 33124 1 0 0
## 33125 1 0 0
## 33126 1 0 0
## 33127 2 0 0
## 33128 2 0 0
## 33129 3 1 0
## 33130 1 0 0
## 33131 2 0 0
## 33132 1 0 0
## 33133 1 0 0
## 33134 3 1 0
## 33135 2 0 0
## 33136 1 0 0
## 33137 1 0 0
## 33138 2 0 0
## 33139 2 0 0
## 33140 1 0 0
## 33141 1 0 0
## 33142 1 0 0
## 33143 1 0 0
## 33144 2 0 0
## 33145 1 0 0
## 33146 1 0 0
## 33147 1 0 0
## 33148 2 0 0
## 33149 2 0 0
## 33150 2 0 0
## 33151 2 0 0
## 33152 1 0 0
## 33153 1 0 0
## 33154 2 0 0
## 33155 2 0 0
## 33156 1 0 0
## 33157 2 0 0
## 33158 2 0 0
## 33159 2 2 0
## 33160 2 0 0
## 33161 1 0 0
## 33162 2 0 0
## 33163 2 0 0
## 33164 2 0 0
## 33165 2 0 0
## 33166 2 0 0
## 33167 1 0 0
## 33168 1 0 0
## 33169 1 0 0
## 33170 2 0 0
## 33171 1 0 0
## 33172 1 0 0
## 33173 1 0 0
## 33174 1 0 0
## 33175 1 0 0
## 33176 1 0 0
## 33177 2 1 0
## 33178 2 0 0
## 33179 1 0 0
## 33180 1 0 0
## 33181 1 0 0
## 33182 1 0 0
## 33183 1 0 0
## 33184 1 0 0
## 33185 1 0 0
## 33186 2 0 0
## 33187 2 2 0
## 33188 2 0 0
## 33189 1 0 0
## 33190 2 0 0
## 33191 1 0 0
## 33192 2 0 0
## 33193 2 0 0
## 33194 1 0 0
## 33195 1 0 0
## 33196 1 0 0
## 33197 1 0 0
## 33198 1 0 0
## 33199 2 0 0
## 33200 1 0 0
## 33201 2 0 0
## 33202 2 0 0
## 33203 2 0 0
## 33204 2 0 0
## 33205 2 0 0
## 33206 2 0 0
## 33207 1 0 0
## 33208 2 0 0
## 33209 2 0 0
## 33210 2 0 0
## 33211 1 0 0
## 33212 2 0 0
## 33213 1 0 0
## 33214 1 0 0
## 33215 2 0 0
## 33216 1 0 0
## 33217 2 0 0
## 33218 2 0 0
## 33219 2 0 0
## 33220 2 0 0
## 33221 2 0 0
## 33222 2 0 0
## 33223 2 1 0
## 33224 1 0 0
## 33225 2 0 0
## 33226 1 0 0
## 33227 2 0 0
## 33228 1 0 0
## 33229 2 0 0
## 33230 2 0 0
## 33231 2 0 0
## 33232 1 0 0
## 33233 2 0 0
## 33234 1 0 0
## 33235 1 0 0
## 33236 2 0 0
## 33237 2 0 0
## 33238 2 0 0
## 33239 1 0 0
## 33240 2 0 0
## 33241 1 0 0
## 33242 1 0 0
## 33243 2 0 0
## 33244 2 0 0
## 33245 2 0 0
## 33246 2 0 0
## 33247 1 0 0
## 33248 2 0 0
## 33249 2 0 0
## 33250 2 0 0
## 33251 2 0 0
## 33252 2 0 0
## 33253 2 0 0
## 33254 2 0 0
## 33255 2 0 0
## 33256 2 0 0
## 33257 2 0 0
## 33258 2 0 0
## 33259 2 1 0
## 33260 1 0 0
## 33261 1 0 0
## 33262 2 1 0
## 33263 2 0 0
## 33264 2 0 0
## 33265 2 0 0
## 33266 1 0 0
## 33267 1 0 0
## 33268 1 0 0
## 33269 2 0 0
## 33270 2 0 0
## 33271 2 1 0
## 33272 2 0 0
## 33273 2 0 0
## 33274 2 0 0
## 33275 2 2 0
## 33276 2 0 0
## 33277 2 0 0
## 33278 2 2 0
## 33279 2 0 0
## 33280 2 0 0
## 33281 2 0 0
## 33282 2 0 0
## 33283 2 0 0
## 33284 2 0 0
## 33285 1 0 0
## 33286 2 0 0
## 33287 2 0 0
## 33288 2 0 0
## 33289 2 0 0
## 33290 2 0 0
## 33291 1 0 0
## 33292 2 0 0
## 33293 2 0 0
## 33294 1 0 0
## 33295 1 0 0
## 33296 2 0 0
## 33297 2 0 0
## 33298 2 0 0
## 33299 1 0 0
## 33300 2 0 0
## 33301 2 0 0
## 33302 2 0 0
## 33303 2 0 0
## 33304 2 0 0
## 33305 1 0 0
## 33306 2 0 0
## 33307 2 0 0
## 33308 2 0 0
## 33309 2 0 0
## 33310 2 0 0
## 33311 2 0 0
## 33312 2 0 0
## 33313 2 0 0
## 33314 1 0 0
## 33315 0 0 0
## 33316 2 0 0
## 33317 2 0 0
## 33318 2 0 0
## 33319 2 0 0
## 33320 2 0 0
## 33321 2 0 0
## 33322 2 0 0
## 33323 2 0 0
## 33324 1 0 0
## 33325 1 0 0
## 33326 2 0 0
## 33327 2 0 0
## 33328 2 0 0
## 33329 1 0 0
## 33330 2 0 0
## 33331 2 0 0
## 33332 2 0 0
## 33333 2 0 0
## [ reached 'max' / getOption("max.print") -- omitted 86057 rows ]
###Slice for first five rows
hotels %>%
slice(1:5)
## hotel is_canceled lead_time arrival_date_year arrival_date_month
## 1 Resort Hotel 0 342 2015 July
## 2 Resort Hotel 0 737 2015 July
## 3 Resort Hotel 0 7 2015 July
## 4 Resort Hotel 0 13 2015 July
## 5 Resort Hotel 0 14 2015 July
## arrival_date_week_number arrival_date_day_of_month stays_in_weekend_nights
## 1 27 1 0
## 2 27 1 0
## 3 27 1 0
## 4 27 1 0
## 5 27 1 0
## stays_in_week_nights adults children babies meal country market_segment
## 1 0 2 0 0 BB PRT Direct
## 2 0 2 0 0 BB PRT Direct
## 3 1 1 0 0 BB GBR Direct
## 4 1 1 0 0 BB GBR Corporate
## 5 2 2 0 0 BB GBR Online TA
## distribution_channel is_repeated_guest previous_cancellations
## 1 Direct 0 0
## 2 Direct 0 0
## 3 Direct 0 0
## 4 Corporate 0 0
## 5 TA/TO 0 0
## previous_bookings_not_canceled reserved_room_type assigned_room_type
## 1 0 C C
## 2 0 C C
## 3 0 A C
## 4 0 A A
## 5 0 A A
## booking_changes deposit_type agent company days_in_waiting_list customer_type
## 1 3 No Deposit NULL NULL 0 Transient
## 2 4 No Deposit NULL NULL 0 Transient
## 3 0 No Deposit NULL NULL 0 Transient
## 4 0 No Deposit 304 NULL 0 Transient
## 5 0 No Deposit 240 NULL 0 Transient
## adr required_car_parking_spaces total_of_special_requests reservation_status
## 1 0 0 0 Check-Out
## 2 0 0 0 Check-Out
## 3 75 0 0 Check-Out
## 4 75 0 0 Check-Out
## 5 98 0 1 Check-Out
## reservation_status_date
## 1 2015-07-01
## 2 2015-07-01
## 3 2015-07-02
## 4 2015-07-02
## 5 2015-07-03
hotels %>%
filter(hotel == "City Hotel")
## hotel is_canceled lead_time arrival_date_year arrival_date_month
## 1 City Hotel 0 6 2015 July
## 2 City Hotel 1 88 2015 July
## 3 City Hotel 1 65 2015 July
## 4 City Hotel 1 92 2015 July
## 5 City Hotel 1 100 2015 July
## 6 City Hotel 1 79 2015 July
## 7 City Hotel 0 3 2015 July
## 8 City Hotel 1 63 2015 July
## 9 City Hotel 1 62 2015 July
## 10 City Hotel 1 62 2015 July
## 11 City Hotel 0 43 2015 July
## 12 City Hotel 0 43 2015 July
## 13 City Hotel 0 43 2015 July
## 14 City Hotel 0 4 2015 July
## 15 City Hotel 1 43 2015 July
## 16 City Hotel 0 43 2015 July
## 17 City Hotel 1 43 2015 July
## 18 City Hotel 0 43 2015 July
## 19 City Hotel 0 43 2015 July
## 20 City Hotel 1 43 2015 July
## 21 City Hotel 1 43 2015 July
## 22 City Hotel 1 97 2015 July
## 23 City Hotel 0 43 2015 July
## 24 City Hotel 0 43 2015 July
## 25 City Hotel 1 80 2015 July
## 26 City Hotel 0 60 2015 July
## 27 City Hotel 1 106 2015 July
## 28 City Hotel 1 68 2015 July
## 29 City Hotel 1 92 2015 July
## 30 City Hotel 0 18 2015 July
## 31 City Hotel 1 71 2015 July
## 32 City Hotel 1 85 2015 July
## 33 City Hotel 1 92 2015 July
## 34 City Hotel 1 75 2015 July
## 35 City Hotel 1 92 2015 July
## 36 City Hotel 1 89 2015 July
## 37 City Hotel 1 100 2015 July
## 38 City Hotel 1 83 2015 July
## 39 City Hotel 1 72 2015 July
## 40 City Hotel 1 111 2015 July
## 41 City Hotel 1 86 2015 July
## 42 City Hotel 1 73 2015 July
## 43 City Hotel 1 92 2015 July
## 44 City Hotel 1 55 2015 July
## 45 City Hotel 0 69 2015 July
## 46 City Hotel 1 76 2015 July
## 47 City Hotel 1 76 2015 July
## 48 City Hotel 1 79 2015 July
## 49 City Hotel 1 61 2015 July
## 50 City Hotel 1 55 2015 July
## 51 City Hotel 1 63 2015 July
## 52 City Hotel 1 63 2015 July
## 53 City Hotel 1 77 2015 July
## 54 City Hotel 0 54 2015 July
## 55 City Hotel 1 90 2015 July
## 56 City Hotel 1 90 2015 July
## 57 City Hotel 1 117 2015 July
## 58 City Hotel 0 6 2015 July
## 59 City Hotel 1 105 2015 July
## 60 City Hotel 0 51 2015 July
## 61 City Hotel 1 97 2015 July
## 62 City Hotel 0 72 2015 July
## 63 City Hotel 1 72 2015 July
## 64 City Hotel 1 61 2015 July
## 65 City Hotel 1 63 2015 July
## 66 City Hotel 1 24 2015 July
## 67 City Hotel 1 89 2015 July
## 68 City Hotel 0 92 2015 July
## 69 City Hotel 1 84 2015 July
## 70 City Hotel 1 65 2015 July
## 71 City Hotel 1 85 2015 July
## 72 City Hotel 1 115 2015 July
## 73 City Hotel 0 67 2015 July
## 74 City Hotel 1 87 2015 July
## 75 City Hotel 1 87 2015 July
## 76 City Hotel 0 71 2015 July
## 77 City Hotel 0 3 2015 July
## 78 City Hotel 0 71 2015 July
## 79 City Hotel 0 3 2015 July
## 80 City Hotel 1 109 2015 July
## 81 City Hotel 0 96 2015 July
## 82 City Hotel 0 96 2015 July
## 83 City Hotel 1 65 2015 July
## 84 City Hotel 1 114 2015 July
## 85 City Hotel 0 96 2015 July
## 86 City Hotel 1 96 2015 July
## 87 City Hotel 0 3 2015 July
## 88 City Hotel 0 61 2015 July
## 89 City Hotel 0 96 2015 July
## 90 City Hotel 0 96 2015 July
## 91 City Hotel 0 3 2015 July
## 92 City Hotel 1 96 2015 July
## 93 City Hotel 1 96 2015 July
## 94 City Hotel 0 96 2015 July
## 95 City Hotel 1 96 2015 July
## 96 City Hotel 0 3 2015 July
## 97 City Hotel 0 96 2015 July
## 98 City Hotel 1 96 2015 July
## 99 City Hotel 1 96 2015 July
## 100 City Hotel 0 96 2015 July
## 101 City Hotel 1 96 2015 July
## 102 City Hotel 0 61 2015 July
## 103 City Hotel 0 3 2015 July
## 104 City Hotel 0 66 2015 July
## 105 City Hotel 0 96 2015 July
## 106 City Hotel 0 96 2015 July
## 107 City Hotel 0 96 2015 July
## 108 City Hotel 0 96 2015 July
## 109 City Hotel 1 96 2015 July
## 110 City Hotel 1 114 2015 July
## 111 City Hotel 0 96 2015 July
## 112 City Hotel 1 96 2015 July
## 113 City Hotel 0 3 2015 July
## 114 City Hotel 0 96 2015 July
## 115 City Hotel 1 96 2015 July
## 116 City Hotel 1 96 2015 July
## 117 City Hotel 1 69 2015 July
## 118 City Hotel 1 59 2015 July
## 119 City Hotel 0 96 2015 July
## 120 City Hotel 1 60 2015 July
## 121 City Hotel 1 122 2015 July
## 122 City Hotel 1 60 2015 July
## 123 City Hotel 1 60 2015 July
## 124 City Hotel 1 60 2015 July
## 125 City Hotel 1 122 2015 July
## 126 City Hotel 1 60 2015 July
## 127 City Hotel 1 123 2015 July
## 128 City Hotel 1 60 2015 July
## 129 City Hotel 1 73 2015 July
## 130 City Hotel 1 77 2015 July
## 131 City Hotel 1 123 2015 July
## 132 City Hotel 1 94 2015 July
## 133 City Hotel 1 120 2015 July
## 134 City Hotel 1 94 2015 July
## 135 City Hotel 1 0 2015 July
## 136 City Hotel 1 79 2015 July
## 137 City Hotel 1 92 2015 July
## 138 City Hotel 1 92 2015 July
## 139 City Hotel 1 125 2015 July
## 140 City Hotel 0 0 2015 July
## 141 City Hotel 1 62 2015 July
## 142 City Hotel 1 109 2015 July
## 143 City Hotel 1 109 2015 July
## 144 City Hotel 1 109 2015 July
## 145 City Hotel 1 80 2015 July
## 146 City Hotel 1 122 2015 July
## 147 City Hotel 1 82 2015 July
## 148 City Hotel 1 82 2015 July
## 149 City Hotel 1 107 2015 July
## 150 City Hotel 0 18 2015 July
## 151 City Hotel 0 18 2015 July
## 152 City Hotel 0 18 2015 July
## 153 City Hotel 0 18 2015 July
## 154 City Hotel 0 18 2015 July
## 155 City Hotel 0 18 2015 July
## 156 City Hotel 0 18 2015 July
## 157 City Hotel 0 18 2015 July
## 158 City Hotel 0 18 2015 July
## 159 City Hotel 0 18 2015 July
## 160 City Hotel 0 18 2015 July
## 161 City Hotel 0 18 2015 July
## 162 City Hotel 0 18 2015 July
## 163 City Hotel 0 18 2015 July
## 164 City Hotel 0 18 2015 July
## 165 City Hotel 0 18 2015 July
## 166 City Hotel 0 18 2015 July
## 167 City Hotel 0 18 2015 July
## 168 City Hotel 0 18 2015 July
## 169 City Hotel 0 18 2015 July
## 170 City Hotel 0 18 2015 July
## 171 City Hotel 1 103 2015 July
## 172 City Hotel 0 103 2015 July
## 173 City Hotel 1 103 2015 July
## 174 City Hotel 0 103 2015 July
## 175 City Hotel 1 103 2015 July
## 176 City Hotel 1 103 2015 July
## 177 City Hotel 1 103 2015 July
## 178 City Hotel 1 103 2015 July
## 179 City Hotel 1 103 2015 July
## 180 City Hotel 0 103 2015 July
## 181 City Hotel 0 103 2015 July
## 182 City Hotel 1 103 2015 July
## 183 City Hotel 1 103 2015 July
## 184 City Hotel 0 103 2015 July
## 185 City Hotel 1 103 2015 July
## 186 City Hotel 1 103 2015 July
## 187 City Hotel 1 103 2015 July
## 188 City Hotel 1 103 2015 July
## 189 City Hotel 1 103 2015 July
## 190 City Hotel 1 103 2015 July
## 191 City Hotel 0 103 2015 July
## 192 City Hotel 1 103 2015 July
## 193 City Hotel 1 103 2015 July
## 194 City Hotel 1 103 2015 July
## 195 City Hotel 0 12 2015 July
## 196 City Hotel 0 12 2015 July
## 197 City Hotel 0 12 2015 July
## 198 City Hotel 1 12 2015 July
## 199 City Hotel 1 12 2015 July
## 200 City Hotel 1 12 2015 July
## 201 City Hotel 1 88 2015 July
## 202 City Hotel 1 12 2015 July
## 203 City Hotel 1 12 2015 July
## 204 City Hotel 0 12 2015 July
## 205 City Hotel 1 12 2015 July
## 206 City Hotel 1 12 2015 July
## 207 City Hotel 0 12 2015 July
## 208 City Hotel 0 12 2015 July
## 209 City Hotel 1 12 2015 July
## 210 City Hotel 1 12 2015 July
## 211 City Hotel 0 12 2015 July
## 212 City Hotel 0 12 2015 July
## 213 City Hotel 1 12 2015 July
## 214 City Hotel 1 12 2015 July
## 215 City Hotel 0 12 2015 July
## 216 City Hotel 1 12 2015 July
## 217 City Hotel 1 12 2015 July
## 218 City Hotel 0 12 2015 July
## 219 City Hotel 1 12 2015 July
## 220 City Hotel 0 12 2015 July
## 221 City Hotel 0 12 2015 July
## 222 City Hotel 1 12 2015 July
## 223 City Hotel 0 12 2015 July
## 224 City Hotel 0 12 2015 July
## 225 City Hotel 1 12 2015 July
## 226 City Hotel 0 12 2015 July
## 227 City Hotel 1 118 2015 July
## 228 City Hotel 1 82 2015 July
## 229 City Hotel 1 82 2015 July
## 230 City Hotel 1 96 2015 July
## 231 City Hotel 1 108 2015 July
## 232 City Hotel 1 119 2015 July
## 233 City Hotel 1 119 2015 July
## 234 City Hotel 0 90 2015 July
## 235 City Hotel 0 62 2015 July
## 236 City Hotel 1 67 2015 July
## 237 City Hotel 1 106 2015 July
## 238 City Hotel 0 20 2015 July
## 239 City Hotel 0 20 2015 July
## 240 City Hotel 0 20 2015 July
## 241 City Hotel 1 22 2015 July
## 242 City Hotel 1 22 2015 July
## 243 City Hotel 0 20 2015 July
## 244 City Hotel 1 20 2015 July
## 245 City Hotel 1 22 2015 July
## 246 City Hotel 1 22 2015 July
## 247 City Hotel 0 20 2015 July
## 248 City Hotel 1 20 2015 July
## 249 City Hotel 1 22 2015 July
## 250 City Hotel 0 20 2015 July
## 251 City Hotel 0 20 2015 July
## 252 City Hotel 0 20 2015 July
## 253 City Hotel 0 20 2015 July
## 254 City Hotel 0 20 2015 July
## 255 City Hotel 0 20 2015 July
## 256 City Hotel 1 22 2015 July
## 257 City Hotel 1 22 2015 July
## 258 City Hotel 0 20 2015 July
## 259 City Hotel 1 20 2015 July
## 260 City Hotel 0 20 2015 July
## 261 City Hotel 1 22 2015 July
## 262 City Hotel 1 22 2015 July
## 263 City Hotel 1 22 2015 July
## 264 City Hotel 0 20 2015 July
## 265 City Hotel 1 20 2015 July
## 266 City Hotel 0 20 2015 July
## 267 City Hotel 0 20 2015 July
## 268 City Hotel 0 20 2015 July
## 269 City Hotel 0 20 2015 July
## 270 City Hotel 1 20 2015 July
## 271 City Hotel 0 20 2015 July
## 272 City Hotel 1 99 2015 July
## 273 City Hotel 1 112 2015 July
## 274 City Hotel 1 69 2015 July
## 275 City Hotel 1 96 2015 July
## 276 City Hotel 1 72 2015 July
## 277 City Hotel 1 69 2015 July
## 278 City Hotel 1 69 2015 July
## 279 City Hotel 1 22 2015 July
## 280 City Hotel 0 20 2015 July
## 281 City Hotel 0 20 2015 July
## 282 City Hotel 0 20 2015 July
## 283 City Hotel 1 22 2015 July
## 284 City Hotel 0 111 2015 July
## 285 City Hotel 1 20 2015 July
## 286 City Hotel 0 20 2015 July
## 287 City Hotel 1 22 2015 July
## 288 City Hotel 1 93 2015 July
## 289 City Hotel 0 132 2015 July
## 290 City Hotel 0 132 2015 July
## 291 City Hotel 0 132 2015 July
## 292 City Hotel 0 132 2015 July
## 293 City Hotel 0 132 2015 July
## 294 City Hotel 0 132 2015 July
## 295 City Hotel 0 132 2015 July
## 296 City Hotel 0 132 2015 July
## 297 City Hotel 0 132 2015 July
## 298 City Hotel 0 132 2015 July
## 299 City Hotel 0 132 2015 July
## 300 City Hotel 0 132 2015 July
## 301 City Hotel 0 132 2015 July
## 302 City Hotel 0 132 2015 July
## 303 City Hotel 0 132 2015 July
## 304 City Hotel 0 132 2015 July
## 305 City Hotel 0 132 2015 July
## 306 City Hotel 0 132 2015 July
## 307 City Hotel 0 132 2015 July
## 308 City Hotel 0 132 2015 July
## 309 City Hotel 0 132 2015 July
## 310 City Hotel 0 132 2015 July
## 311 City Hotel 0 132 2015 July
## 312 City Hotel 0 132 2015 July
## 313 City Hotel 0 132 2015 July
## 314 City Hotel 0 132 2015 July
## 315 City Hotel 0 110 2015 July
## 316 City Hotel 0 132 2015 July
## 317 City Hotel 0 132 2015 July
## 318 City Hotel 0 132 2015 July
## 319 City Hotel 0 132 2015 July
## 320 City Hotel 0 132 2015 July
## 321 City Hotel 0 132 2015 July
## 322 City Hotel 0 110 2015 July
## 323 City Hotel 0 132 2015 July
## 324 City Hotel 0 132 2015 July
## 325 City Hotel 0 132 2015 July
## 326 City Hotel 0 132 2015 July
## 327 City Hotel 1 96 2015 July
## 328 City Hotel 1 132 2015 July
## 329 City Hotel 1 2 2015 July
## 330 City Hotel 1 132 2015 July
## 331 City Hotel 1 132 2015 July
## 332 City Hotel 1 2 2015 July
## 333 City Hotel 0 132 2015 July
## 334 City Hotel 1 85 2015 July
## 335 City Hotel 0 0 2015 July
## 336 City Hotel 0 0 2015 July
## 337 City Hotel 0 0 2015 July
## 338 City Hotel 0 0 2015 July
## 339 City Hotel 0 0 2015 July
## 340 City Hotel 0 15 2015 July
## 341 City Hotel 0 84 2015 July
## 342 City Hotel 0 0 2015 July
## 343 City Hotel 0 15 2015 July
## 344 City Hotel 0 84 2015 July
## 345 City Hotel 1 98 2015 July
## 346 City Hotel 1 124 2015 July
## 347 City Hotel 1 110 2015 July
## 348 City Hotel 1 110 2015 July
## 349 City Hotel 0 16 2015 July
## 350 City Hotel 0 16 2015 July
## 351 City Hotel 1 110 2015 July
## 352 City Hotel 1 110 2015 July
## 353 City Hotel 1 110 2015 July
## 354 City Hotel 1 110 2015 July
## 355 City Hotel 0 16 2015 July
## 356 City Hotel 0 110 2015 July
## 357 City Hotel 1 110 2015 July
## 358 City Hotel 1 110 2015 July
## 359 City Hotel 1 110 2015 July
## 360 City Hotel 1 110 2015 July
## 361 City Hotel 1 110 2015 July
## 362 City Hotel 1 110 2015 July
## 363 City Hotel 0 16 2015 July
## 364 City Hotel 1 110 2015 July
## 365 City Hotel 1 110 2015 July
## 366 City Hotel 0 110 2015 July
## 367 City Hotel 0 110 2015 July
## 368 City Hotel 1 110 2015 July
## 369 City Hotel 1 110 2015 July
## 370 City Hotel 0 16 2015 July
## 371 City Hotel 0 16 2015 July
## 372 City Hotel 1 110 2015 July
## 373 City Hotel 0 16 2015 July
## 374 City Hotel 0 16 2015 July
## 375 City Hotel 0 110 2015 July
## 376 City Hotel 1 110 2015 July
## 377 City Hotel 0 16 2015 July
## 378 City Hotel 0 16 2015 July
## 379 City Hotel 1 110 2015 July
## 380 City Hotel 1 110 2015 July
## 381 City Hotel 0 19 2015 July
## 382 City Hotel 0 19 2015 July
## 383 City Hotel 0 19 2015 July
## 384 City Hotel 0 19 2015 July
## 385 City Hotel 0 19 2015 July
## 386 City Hotel 0 19 2015 July
## 387 City Hotel 1 19 2015 July
## 388 City Hotel 1 19 2015 July
## 389 City Hotel 1 19 2015 July
## 390 City Hotel 1 19 2015 July
## 391 City Hotel 0 19 2015 July
## 392 City Hotel 0 19 2015 July
## 393 City Hotel 0 19 2015 July
## 394 City Hotel 0 2 2015 July
## 395 City Hotel 0 19 2015 July
## 396 City Hotel 0 16 2015 July
## 397 City Hotel 0 19 2015 July
## 398 City Hotel 0 19 2015 July
## 399 City Hotel 0 19 2015 July
## 400 City Hotel 0 19 2015 July
## 401 City Hotel 1 19 2015 July
## 402 City Hotel 1 19 2015 July
## 403 City Hotel 0 19 2015 July
## 404 City Hotel 1 19 2015 July
## 405 City Hotel 0 19 2015 July
## 406 City Hotel 1 19 2015 July
## 407 City Hotel 1 19 2015 July
## 408 City Hotel 0 19 2015 July
## 409 City Hotel 0 19 2015 July
## 410 City Hotel 1 19 2015 July
## 411 City Hotel 1 19 2015 July
## 412 City Hotel 1 19 2015 July
## 413 City Hotel 1 125 2015 July
## 414 City Hotel 0 0 2015 July
## 415 City Hotel 1 81 2015 July
## 416 City Hotel 0 5 2015 July
## 417 City Hotel 1 87 2015 July
## 418 City Hotel 1 27 2015 July
## 419 City Hotel 0 25 2015 July
## 420 City Hotel 1 25 2015 July
## 421 City Hotel 1 25 2015 July
## 422 City Hotel 0 25 2015 July
## 423 City Hotel 1 27 2015 July
## 424 City Hotel 1 27 2015 July
## 425 City Hotel 0 25 2015 July
## 426 City Hotel 1 25 2015 July
## 427 City Hotel 1 25 2015 July
## 428 City Hotel 1 27 2015 July
## 429 City Hotel 1 27 2015 July
## 430 City Hotel 1 25 2015 July
## 431 City Hotel 0 25 2015 July
## 432 City Hotel 0 25 2015 July
## 433 City Hotel 0 25 2015 July
## 434 City Hotel 0 25 2015 July
## 435 City Hotel 0 25 2015 July
## 436 City Hotel 1 27 2015 July
## 437 City Hotel 1 27 2015 July
## 438 City Hotel 1 89 2015 July
## 439 City Hotel 0 25 2015 July
## 440 City Hotel 0 25 2015 July
## 441 City Hotel 0 25 2015 July
## 442 City Hotel 0 25 2015 July
## 443 City Hotel 0 25 2015 July
## 444 City Hotel 1 27 2015 July
## 445 City Hotel 1 27 2015 July
## 446 City Hotel 1 27 2015 July
## 447 City Hotel 1 27 2015 July
## 448 City Hotel 1 25 2015 July
## 449 City Hotel 1 27 2015 July
## 450 City Hotel 1 27 2015 July
## 451 City Hotel 1 27 2015 July
## 452 City Hotel 1 25 2015 July
## 453 City Hotel 0 25 2015 July
## 454 City Hotel 0 25 2015 July
## 455 City Hotel 0 25 2015 July
## 456 City Hotel 1 25 2015 July
## 457 City Hotel 1 27 2015 July
## 458 City Hotel 0 25 2015 July
## 459 City Hotel 0 25 2015 July
## 460 City Hotel 0 25 2015 July
## 461 City Hotel 1 27 2015 July
## 462 City Hotel 1 27 2015 July
## 463 City Hotel 1 25 2015 July
## 464 City Hotel 1 25 2015 July
## 465 City Hotel 1 27 2015 July
## 466 City Hotel 0 126 2015 July
## 467 City Hotel 0 0 2015 July
## 468 City Hotel 0 0 2015 July
## 469 City Hotel 0 126 2015 July
## 470 City Hotel 1 81 2015 July
## 471 City Hotel 0 114 2015 July
## 472 City Hotel 0 74 2015 July
## 473 City Hotel 0 74 2015 July
## 474 City Hotel 0 0 2015 July
## 475 City Hotel 0 0 2015 July
## 476 City Hotel 0 1 2015 July
## 477 City Hotel 0 0 2015 July
## 478 City Hotel 0 0 2015 July
## 479 City Hotel 0 75 2015 July
## 480 City Hotel 0 69 2015 July
## 481 City Hotel 0 64 2015 July
## 482 City Hotel 0 2 2015 July
## 483 City Hotel 0 0 2015 July
## 484 City Hotel 0 122 2015 July
## 485 City Hotel 0 138 2015 July
## 486 City Hotel 0 122 2015 July
## 487 City Hotel 1 106 2015 July
## 488 City Hotel 0 115 2015 July
## 489 City Hotel 0 102 2015 July
## 490 City Hotel 0 2 2015 July
## 491 City Hotel 0 85 2015 July
## 492 City Hotel 1 115 2015 July
## 493 City Hotel 1 92 2015 July
## 494 City Hotel 0 100 2015 July
## 495 City Hotel 0 0 2015 July
## 496 City Hotel 0 78 2015 July
## 497 City Hotel 0 80 2015 July
## 498 City Hotel 0 80 2015 July
## 499 City Hotel 0 80 2015 July
## 500 City Hotel 1 130 2015 July
## 501 City Hotel 0 0 2015 August
## 502 City Hotel 0 117 2015 August
## 503 City Hotel 0 117 2015 August
## 504 City Hotel 1 117 2015 August
## 505 City Hotel 1 117 2015 August
## 506 City Hotel 1 130 2015 August
## 507 City Hotel 0 117 2015 August
## 508 City Hotel 0 117 2015 August
## 509 City Hotel 1 117 2015 August
## 510 City Hotel 1 117 2015 August
## 511 City Hotel 1 117 2015 August
## 512 City Hotel 1 130 2015 August
## 513 City Hotel 0 117 2015 August
## 514 City Hotel 1 117 2015 August
## 515 City Hotel 1 2 2015 August
## 516 City Hotel 1 117 2015 August
## 517 City Hotel 0 117 2015 August
## 518 City Hotel 1 117 2015 August
## 519 City Hotel 0 117 2015 August
## 520 City Hotel 1 117 2015 August
## 521 City Hotel 1 2 2015 August
## 522 City Hotel 0 117 2015 August
## 523 City Hotel 1 117 2015 August
## 524 City Hotel 1 117 2015 August
## 525 City Hotel 0 117 2015 August
## 526 City Hotel 0 117 2015 August
## 527 City Hotel 1 117 2015 August
## 528 City Hotel 1 117 2015 August
## 529 City Hotel 1 2 2015 August
## 530 City Hotel 0 117 2015 August
## 531 City Hotel 0 117 2015 August
## 532 City Hotel 0 4 2015 August
## 533 City Hotel 0 135 2015 August
## 534 City Hotel 0 94 2015 August
## 535 City Hotel 0 2 2015 August
## 536 City Hotel 0 83 2015 August
## 537 City Hotel 0 0 2015 August
## 538 City Hotel 0 6 2015 August
## 539 City Hotel 0 0 2015 August
## 540 City Hotel 0 6 2015 August
## 541 City Hotel 1 2 2015 August
## 542 City Hotel 1 76 2015 August
## 543 City Hotel 0 84 2015 August
## 544 City Hotel 0 7 2015 August
## 545 City Hotel 1 76 2015 August
## 546 City Hotel 1 28 2015 August
## 547 City Hotel 1 28 2015 August
## 548 City Hotel 1 28 2015 August
## 549 City Hotel 0 28 2015 August
## 550 City Hotel 1 28 2015 August
## 551 City Hotel 0 28 2015 August
## 552 City Hotel 1 28 2015 August
## 553 City Hotel 0 28 2015 August
## 554 City Hotel 1 28 2015 August
## 555 City Hotel 1 28 2015 August
## 556 City Hotel 1 28 2015 August
## 557 City Hotel 0 28 2015 August
## 558 City Hotel 1 28 2015 August
## 559 City Hotel 1 28 2015 August
## 560 City Hotel 1 28 2015 August
## 561 City Hotel 0 28 2015 August
## 562 City Hotel 0 28 2015 August
## 563 City Hotel 1 28 2015 August
## 564 City Hotel 0 28 2015 August
## 565 City Hotel 1 28 2015 August
## 566 City Hotel 1 28 2015 August
## 567 City Hotel 1 28 2015 August
## 568 City Hotel 0 3 2015 August
## 569 City Hotel 0 28 2015 August
## 570 City Hotel 1 28 2015 August
## 571 City Hotel 0 28 2015 August
## 572 City Hotel 0 28 2015 August
## 573 City Hotel 1 28 2015 August
## 574 City Hotel 0 28 2015 August
## 575 City Hotel 1 28 2015 August
## 576 City Hotel 0 111 2015 August
## 577 City Hotel 1 81 2015 August
## 578 City Hotel 1 77 2015 August
## 579 City Hotel 0 28 2015 August
## 580 City Hotel 0 28 2015 August
## 581 City Hotel 0 0 2015 August
## 582 City Hotel 0 0 2015 August
## 583 City Hotel 0 0 2015 August
## 584 City Hotel 1 0 2015 August
## 585 City Hotel 1 0 2015 August
## 586 City Hotel 0 0 2015 August
## 587 City Hotel 1 1 2015 August
## 588 City Hotel 0 1 2015 August
## 589 City Hotel 0 34 2015 August
## 590 City Hotel 1 34 2015 August
## 591 City Hotel 0 34 2015 August
## 592 City Hotel 0 34 2015 August
## 593 City Hotel 1 34 2015 August
## 594 City Hotel 0 0 2015 August
## 595 City Hotel 0 0 2015 August
## 596 City Hotel 0 1 2015 August
## 597 City Hotel 0 1 2015 August
## 598 City Hotel 0 0 2015 August
## 599 City Hotel 1 1 2015 August
## 600 City Hotel 1 1 2015 August
## 601 City Hotel 0 0 2015 August
## 602 City Hotel 0 34 2015 August
## 603 City Hotel 1 34 2015 August
## 604 City Hotel 1 34 2015 August
## 605 City Hotel 1 34 2015 August
## 606 City Hotel 1 34 2015 August
## 607 City Hotel 0 141 2015 August
## 608 City Hotel 1 1 2015 August
## 609 City Hotel 0 0 2015 August
## 610 City Hotel 0 34 2015 August
## 611 City Hotel 1 34 2015 August
## 612 City Hotel 0 34 2015 August
## 613 City Hotel 0 34 2015 August
## 614 City Hotel 1 34 2015 August
## 615 City Hotel 1 34 2015 August
## 616 City Hotel 0 34 2015 August
## 617 City Hotel 0 34 2015 August
## 618 City Hotel 1 34 2015 August
## 619 City Hotel 1 34 2015 August
## 620 City Hotel 1 1 2015 August
## 621 City Hotel 0 1 2015 August
## 622 City Hotel 0 1 2015 August
## 623 City Hotel 1 34 2015 August
## 624 City Hotel 1 34 2015 August
## 625 City Hotel 1 34 2015 August
## 626 City Hotel 1 34 2015 August
## 627 City Hotel 0 119 2015 August
## 628 City Hotel 0 34 2015 August
## 629 City Hotel 0 34 2015 August
## 630 City Hotel 1 34 2015 August
## 631 City Hotel 0 12 2015 August
## 632 City Hotel 0 12 2015 August
## 633 City Hotel 0 12 2015 August
## 634 City Hotel 0 12 2015 August
## 635 City Hotel 0 135 2015 August
## 636 City Hotel 0 12 2015 August
## 637 City Hotel 0 12 2015 August
## 638 City Hotel 1 1 2015 August
## 639 City Hotel 0 12 2015 August
## 640 City Hotel 0 12 2015 August
## 641 City Hotel 0 12 2015 August
## 642 City Hotel 0 12 2015 August
## 643 City Hotel 0 12 2015 August
## 644 City Hotel 0 12 2015 August
## 645 City Hotel 0 12 2015 August
## 646 City Hotel 0 12 2015 August
## 647 City Hotel 0 12 2015 August
## 648 City Hotel 0 7 2015 August
## 649 City Hotel 0 12 2015 August
## 650 City Hotel 0 12 2015 August
## 651 City Hotel 0 0 2015 August
## 652 City Hotel 0 12 2015 August
## 653 City Hotel 0 12 2015 August
## 654 City Hotel 0 12 2015 August
## 655 City Hotel 0 12 2015 August
## 656 City Hotel 0 12 2015 August
## 657 City Hotel 0 7 2015 August
## 658 City Hotel 0 12 2015 August
## 659 City Hotel 0 12 2015 August
## 660 City Hotel 0 135 2015 August
## 661 City Hotel 0 12 2015 August
## 662 City Hotel 0 12 2015 August
## 663 City Hotel 0 12 2015 August
## 664 City Hotel 0 12 2015 August
## 665 City Hotel 0 1 2015 August
## 666 City Hotel 1 1 2015 August
## 667 City Hotel 0 12 2015 August
## 668 City Hotel 0 12 2015 August
## 669 City Hotel 1 33 2015 August
## 670 City Hotel 1 33 2015 August
## 671 City Hotel 0 0 2015 August
## 672 City Hotel 0 0 2015 August
## 673 City Hotel 0 83 2015 August
## 674 City Hotel 0 83 2015 August
## 675 City Hotel 0 34 2015 August
## 676 City Hotel 0 34 2015 August
## 677 City Hotel 1 34 2015 August
## 678 City Hotel 0 34 2015 August
## 679 City Hotel 0 6 2015 August
## 680 City Hotel 0 0 2015 August
## 681 City Hotel 0 0 2015 August
## 682 City Hotel 0 0 2015 August
## 683 City Hotel 0 0 2015 August
## 684 City Hotel 0 0 2015 August
## 685 City Hotel 0 0 2015 August
## 686 City Hotel 0 0 2015 August
## 687 City Hotel 0 0 2015 August
## 688 City Hotel 0 0 2015 August
## 689 City Hotel 0 0 2015 August
## 690 City Hotel 0 0 2015 August
## 691 City Hotel 0 0 2015 August
## 692 City Hotel 0 101 2015 August
## 693 City Hotel 0 0 2015 August
## 694 City Hotel 1 84 2015 August
## 695 City Hotel 0 92 2015 August
## 696 City Hotel 0 92 2015 August
## 697 City Hotel 0 1 2015 August
## 698 City Hotel 0 1 2015 August
## 699 City Hotel 0 0 2015 August
## 700 City Hotel 0 13 2015 August
## 701 City Hotel 0 11 2015 August
## 702 City Hotel 1 0 2015 August
## 703 City Hotel 0 3 2015 August
## 704 City Hotel 0 0 2015 August
## 705 City Hotel 0 36 2015 August
## 706 City Hotel 0 36 2015 August
## 707 City Hotel 1 36 2015 August
## 708 City Hotel 0 13 2015 August
## 709 City Hotel 0 13 2015 August
## 710 City Hotel 0 1 2015 August
## 711 City Hotel 0 36 2015 August
## 712 City Hotel 0 36 2015 August
## 713 City Hotel 0 0 2015 August
## 714 City Hotel 0 36 2015 August
## 715 City Hotel 1 36 2015 August
## 716 City Hotel 1 36 2015 August
## 717 City Hotel 0 1 2015 August
## 718 City Hotel 0 0 2015 August
## 719 City Hotel 0 36 2015 August
## 720 City Hotel 0 0 2015 August
## 721 City Hotel 0 36 2015 August
## 722 City Hotel 0 36 2015 August
## 723 City Hotel 1 36 2015 August
## 724 City Hotel 1 36 2015 August
## 725 City Hotel 1 36 2015 August
## 726 City Hotel 0 36 2015 August
## 727 City Hotel 0 36 2015 August
## 728 City Hotel 1 36 2015 August
## 729 City Hotel 0 36 2015 August
## 730 City Hotel 0 0 2015 August
## 731 City Hotel 0 36 2015 August
## 732 City Hotel 0 1 2015 August
## 733 City Hotel 0 36 2015 August
## 734 City Hotel 1 36 2015 August
## 735 City Hotel 0 36 2015 August
## 736 City Hotel 0 36 2015 August
## 737 City Hotel 0 36 2015 August
## 738 City Hotel 0 36 2015 August
## 739 City Hotel 0 36 2015 August
## 740 City Hotel 0 36 2015 August
## 741 City Hotel 0 36 2015 August
## 742 City Hotel 0 0 2015 August
## 743 City Hotel 0 0 2015 August
## 744 City Hotel 0 36 2015 August
## 745 City Hotel 0 36 2015 August
## 746 City Hotel 1 36 2015 August
## 747 City Hotel 0 1 2015 August
## 748 City Hotel 0 1 2015 August
## 749 City Hotel 0 0 2015 August
## 750 City Hotel 1 112 2015 August
## 751 City Hotel 1 125 2015 August
## 752 City Hotel 0 2 2015 August
## 753 City Hotel 0 141 2015 August
## 754 City Hotel 0 0 2015 August
## 755 City Hotel 1 92 2015 August
## 756 City Hotel 1 92 2015 August
## 757 City Hotel 0 1 2015 August
## 758 City Hotel 0 1 2015 August
## 759 City Hotel 0 0 2015 August
## 760 City Hotel 0 0 2015 August
## 761 City Hotel 0 0 2015 August
## 762 City Hotel 0 0 2015 August
## 763 City Hotel 0 1 2015 August
## 764 City Hotel 0 128 2015 August
## 765 City Hotel 0 0 2015 August
## 766 City Hotel 0 1 2015 August
## 767 City Hotel 0 1 2015 August
## 768 City Hotel 0 128 2015 August
## 769 City Hotel 0 0 2015 August
## 770 City Hotel 1 124 2015 August
## 771 City Hotel 0 124 2015 August
## 772 City Hotel 0 124 2015 August
## 773 City Hotel 1 124 2015 August
## 774 City Hotel 0 30 2015 August
## 775 City Hotel 1 30 2015 August
## 776 City Hotel 0 4 2015 August
## 777 City Hotel 0 124 2015 August
## 778 City Hotel 1 124 2015 August
## 779 City Hotel 0 0 2015 August
## 780 City Hotel 1 1 2015 August
## 781 City Hotel 0 0 2015 August
## 782 City Hotel 0 103 2015 August
## 783 City Hotel 0 1 2015 August
## 784 City Hotel 1 30 2015 August
## 785 City Hotel 0 124 2015 August
## 786 City Hotel 0 30 2015 August
## 787 City Hotel 1 30 2015 August
## 788 City Hotel 0 0 2015 August
## 789 City Hotel 0 4 2015 August
## 790 City Hotel 0 4 2015 August
## 791 City Hotel 0 124 2015 August
## 792 City Hotel 1 124 2015 August
## 793 City Hotel 1 124 2015 August
## 794 City Hotel 1 124 2015 August
## 795 City Hotel 1 124 2015 August
## 796 City Hotel 1 30 2015 August
## 797 City Hotel 0 124 2015 August
## 798 City Hotel 1 124 2015 August
## 799 City Hotel 1 30 2015 August
## 800 City Hotel 0 4 2015 August
## 801 City Hotel 1 30 2015 August
## 802 City Hotel 1 124 2015 August
## 803 City Hotel 1 124 2015 August
## 804 City Hotel 1 30 2015 August
## 805 City Hotel 0 0 2015 August
## 806 City Hotel 1 124 2015 August
## 807 City Hotel 1 124 2015 August
## 808 City Hotel 0 124 2015 August
## 809 City Hotel 1 124 2015 August
## 810 City Hotel 1 124 2015 August
## 811 City Hotel 0 30 2015 August
## 812 City Hotel 0 124 2015 August
## 813 City Hotel 0 124 2015 August
## 814 City Hotel 1 124 2015 August
## 815 City Hotel 1 124 2015 August
## 816 City Hotel 0 16 2015 August
## 817 City Hotel 0 16 2015 August
## 818 City Hotel 1 16 2015 August
## 819 City Hotel 0 16 2015 August
## 820 City Hotel 0 16 2015 August
## 821 City Hotel 0 1 2015 August
## 822 City Hotel 0 16 2015 August
## 823 City Hotel 0 16 2015 August
## 824 City Hotel 0 16 2015 August
## 825 City Hotel 1 16 2015 August
## 826 City Hotel 0 16 2015 August
## 827 City Hotel 0 16 2015 August
## 828 City Hotel 1 16 2015 August
## 829 City Hotel 0 16 2015 August
## 830 City Hotel 0 16 2015 August
## 831 City Hotel 0 16 2015 August
## 832 City Hotel 0 16 2015 August
## 833 City Hotel 0 1 2015 August
## 834 City Hotel 0 16 2015 August
## 835 City Hotel 0 16 2015 August
## 836 City Hotel 0 16 2015 August
## 837 City Hotel 0 16 2015 August
## 838 City Hotel 0 16 2015 August
## 839 City Hotel 0 16 2015 August
## 840 City Hotel 0 16 2015 August
## 841 City Hotel 0 16 2015 August
## 842 City Hotel 0 16 2015 August
## 843 City Hotel 1 16 2015 August
## 844 City Hotel 0 16 2015 August
## 845 City Hotel 0 16 2015 August
## 846 City Hotel 0 16 2015 August
## 847 City Hotel 0 16 2015 August
## 848 City Hotel 1 16 2015 August
## 849 City Hotel 0 0 2015 August
## 850 City Hotel 0 1 2015 August
## 851 City Hotel 0 1 2015 August
## 852 City Hotel 0 1 2015 August
## 853 City Hotel 0 1 2015 August
## 854 City Hotel 0 109 2015 August
## 855 City Hotel 1 107 2015 August
## 856 City Hotel 0 123 2015 August
## 857 City Hotel 0 2 2015 August
## 858 City Hotel 0 2 2015 August
## 859 City Hotel 0 1 2015 August
## 860 City Hotel 0 4 2015 August
## 861 City Hotel 0 0 2015 August
## 862 City Hotel 0 2 2015 August
## 863 City Hotel 0 0 2015 August
## 864 City Hotel 0 2 2015 August
## 865 City Hotel 0 2 2015 August
## 866 City Hotel 0 1 2015 August
## 867 City Hotel 0 0 2015 August
## 868 City Hotel 0 0 2015 August
## 869 City Hotel 0 1 2015 August
## 870 City Hotel 0 0 2015 August
## 871 City Hotel 0 0 2015 August
## 872 City Hotel 1 145 2015 August
## 873 City Hotel 0 142 2015 August
## 874 City Hotel 0 3 2015 August
## 875 City Hotel 0 120 2015 August
## 876 City Hotel 0 87 2015 August
## 877 City Hotel 0 3 2015 August
## 878 City Hotel 0 1 2015 August
## 879 City Hotel 0 0 2015 August
## 880 City Hotel 0 0 2015 August
## 881 City Hotel 0 0 2015 August
## 882 City Hotel 0 0 2015 August
## 883 City Hotel 0 39 2015 August
## 884 City Hotel 0 39 2015 August
## 885 City Hotel 1 39 2015 August
## 886 City Hotel 1 39 2015 August
## 887 City Hotel 0 1 2015 August
## 888 City Hotel 0 0 2015 August
## 889 City Hotel 0 3 2015 August
## 890 City Hotel 0 39 2015 August
## 891 City Hotel 0 39 2015 August
## 892 City Hotel 0 1 2015 August
## 893 City Hotel 0 1 2015 August
## 894 City Hotel 0 1 2015 August
## 895 City Hotel 0 2 2015 August
## 896 City Hotel 0 39 2015 August
## 897 City Hotel 0 39 2015 August
## 898 City Hotel 0 39 2015 August
## 899 City Hotel 0 39 2015 August
## 900 City Hotel 1 2 2015 August
## 901 City Hotel 0 39 2015 August
## 902 City Hotel 0 39 2015 August
## 903 City Hotel 0 2 2015 August
## 904 City Hotel 0 39 2015 August
## 905 City Hotel 0 39 2015 August
## 906 City Hotel 1 39 2015 August
## 907 City Hotel 0 1 2015 August
## 908 City Hotel 0 39 2015 August
## 909 City Hotel 1 39 2015 August
## 910 City Hotel 0 39 2015 August
## 911 City Hotel 0 39 2015 August
## 912 City Hotel 1 39 2015 August
## 913 City Hotel 0 3 2015 August
## 914 City Hotel 1 4 2015 August
## 915 City Hotel 0 1 2015 August
## 916 City Hotel 0 39 2015 August
## 917 City Hotel 0 39 2015 August
## 918 City Hotel 0 39 2015 August
## 919 City Hotel 0 2 2015 August
## 920 City Hotel 0 39 2015 August
## 921 City Hotel 1 39 2015 August
## 922 City Hotel 1 39 2015 August
## 923 City Hotel 0 0 2015 August
## 924 City Hotel 1 1 2015 August
## 925 City Hotel 0 1 2015 August
## 926 City Hotel 0 3 2015 August
## 927 City Hotel 0 39 2015 August
## 928 City Hotel 0 39 2015 August
## 929 City Hotel 0 39 2015 August
## 930 City Hotel 0 0 2015 August
## 931 City Hotel 1 121 2015 August
## 932 City Hotel 0 105 2015 August
## 933 City Hotel 0 3 2015 August
## 934 City Hotel 0 5 2015 August
## 935 City Hotel 0 1 2015 August
## 936 City Hotel 0 0 2015 August
## 937 City Hotel 0 3 2015 August
## 938 City Hotel 0 1 2015 August
## 939 City Hotel 0 3 2015 August
## 940 City Hotel 0 147 2015 August
## 941 City Hotel 0 0 2015 August
## 942 City Hotel 0 1 2015 August
## 943 City Hotel 0 1 2015 August
## 944 City Hotel 0 0 2015 August
## 945 City Hotel 0 0 2015 August
## 946 City Hotel 0 0 2015 August
## 947 City Hotel 0 5 2015 August
## 948 City Hotel 1 5 2015 August
## 949 City Hotel 1 0 2015 August
## 950 City Hotel 0 6 2015 August
## 951 City Hotel 1 0 2015 August
## 952 City Hotel 0 5 2015 August
## 953 City Hotel 0 6 2015 August
## 954 City Hotel 0 5 2015 August
## 955 City Hotel 0 0 2015 August
## 956 City Hotel 0 39 2015 August
## 957 City Hotel 0 39 2015 August
## 958 City Hotel 0 0 2015 August
## 959 City Hotel 0 1 2015 August
## 960 City Hotel 0 140 2015 August
## 961 City Hotel 0 0 2015 August
## 962 City Hotel 0 0 2015 August
## 963 City Hotel 0 1 2015 August
## 964 City Hotel 0 0 2015 August
## 965 City Hotel 0 1 2015 August
## 966 City Hotel 0 0 2015 August
## 967 City Hotel 0 0 2015 August
## 968 City Hotel 0 0 2015 August
## 969 City Hotel 0 0 2015 August
## 970 City Hotel 0 0 2015 August
## 971 City Hotel 0 0 2015 August
## 972 City Hotel 1 1 2015 August
## 973 City Hotel 0 1 2015 August
## 974 City Hotel 1 97 2015 August
## 975 City Hotel 0 2 2015 August
## 976 City Hotel 0 0 2015 August
## 977 City Hotel 0 2 2015 August
## 978 City Hotel 0 0 2015 August
## 979 City Hotel 0 0 2015 August
## 980 City Hotel 0 3 2015 August
## 981 City Hotel 0 0 2015 August
## 982 City Hotel 0 0 2015 August
## 983 City Hotel 0 0 2015 August
## 984 City Hotel 0 2 2015 August
## 985 City Hotel 1 85 2015 August
## 986 City Hotel 0 3 2015 August
## 987 City Hotel 0 1 2015 August
## 988 City Hotel 1 3 2015 August
## 989 City Hotel 0 104 2015 August
## 990 City Hotel 0 1 2015 August
## 991 City Hotel 0 1 2015 August
## 992 City Hotel 1 147 2015 August
## 993 City Hotel 0 0 2015 August
## 994 City Hotel 0 104 2015 August
## 995 City Hotel 0 1 2015 August
## 996 City Hotel 0 0 2015 August
## 997 City Hotel 0 0 2015 August
## 998 City Hotel 0 1 2015 August
## 999 City Hotel 0 1 2015 August
## 1000 City Hotel 0 0 2015 August
## 1001 City Hotel 0 2 2015 August
## 1002 City Hotel 0 4 2015 August
## 1003 City Hotel 0 4 2015 August
## 1004 City Hotel 1 89 2015 August
## 1005 City Hotel 0 1 2015 August
## 1006 City Hotel 0 1 2015 August
## 1007 City Hotel 0 5 2015 August
## 1008 City Hotel 0 0 2015 August
## 1009 City Hotel 0 0 2015 August
## 1010 City Hotel 0 3 2015 August
## 1011 City Hotel 0 0 2015 August
## 1012 City Hotel 0 0 2015 August
## 1013 City Hotel 0 0 2015 August
## 1014 City Hotel 0 0 2015 August
## 1015 City Hotel 0 0 2015 August
## 1016 City Hotel 0 0 2015 August
## 1017 City Hotel 0 107 2015 August
## 1018 City Hotel 0 107 2015 August
## 1019 City Hotel 0 0 2015 August
## 1020 City Hotel 0 0 2015 August
## 1021 City Hotel 0 107 2015 August
## 1022 City Hotel 0 6 2015 August
## 1023 City Hotel 0 107 2015 August
## 1024 City Hotel 0 107 2015 August
## 1025 City Hotel 0 1 2015 August
## 1026 City Hotel 0 5 2015 August
## 1027 City Hotel 0 41 2015 August
## 1028 City Hotel 0 0 2015 August
## 1029 City Hotel 1 0 2015 August
## 1030 City Hotel 0 2 2015 August
## 1031 City Hotel 0 41 2015 August
## 1032 City Hotel 0 41 2015 August
## 1033 City Hotel 0 41 2015 August
## 1034 City Hotel 0 41 2015 August
## 1035 City Hotel 0 41 2015 August
## 1036 City Hotel 0 2 2015 August
## 1037 City Hotel 0 41 2015 August
## 1038 City Hotel 0 41 2015 August
## 1039 City Hotel 0 41 2015 August
## 1040 City Hotel 1 41 2015 August
## 1041 City Hotel 0 41 2015 August
## 1042 City Hotel 0 1 2015 August
## 1043 City Hotel 0 41 2015 August
## 1044 City Hotel 0 41 2015 August
## 1045 City Hotel 0 41 2015 August
## 1046 City Hotel 0 41 2015 August
## 1047 City Hotel 0 41 2015 August
## 1048 City Hotel 0 41 2015 August
## 1049 City Hotel 0 41 2015 August
## 1050 City Hotel 0 41 2015 August
## 1051 City Hotel 0 41 2015 August
## 1052 City Hotel 0 41 2015 August
## 1053 City Hotel 0 123 2015 August
## 1054 City Hotel 0 41 2015 August
## 1055 City Hotel 0 41 2015 August
## 1056 City Hotel 1 4 2015 August
## 1057 City Hotel 0 41 2015 August
## 1058 City Hotel 1 41 2015 August
## 1059 City Hotel 1 41 2015 August
## 1060 City Hotel 0 1 2015 August
## 1061 City Hotel 0 41 2015 August
## 1062 City Hotel 0 41 2015 August
## 1063 City Hotel 0 41 2015 August
## 1064 City Hotel 1 41 2015 August
## 1065 City Hotel 0 0 2015 August
## 1066 City Hotel 0 0 2015 August
## 1067 City Hotel 0 0 2015 August
## 1068 City Hotel 0 2 2015 August
## 1069 City Hotel 1 1 2015 August
## 1070 City Hotel 1 7 2015 August
## 1071 City Hotel 0 6 2015 August
## 1072 City Hotel 0 6 2015 August
## 1073 City Hotel 0 4 2015 August
## 1074 City Hotel 0 1 2015 August
## 1075 City Hotel 0 6 2015 August
## 1076 City Hotel 0 0 2015 August
## 1077 City Hotel 0 0 2015 August
## 1078 City Hotel 0 3 2015 August
## 1079 City Hotel 0 2 2015 August
## 1080 City Hotel 0 0 2015 August
## 1081 City Hotel 0 0 2015 August
## 1082 City Hotel 0 2 2015 August
## 1083 City Hotel 0 0 2015 August
## 1084 City Hotel 1 0 2015 August
## 1085 City Hotel 0 0 2015 August
## 1086 City Hotel 0 0 2015 August
## 1087 City Hotel 0 119 2015 August
## 1088 City Hotel 0 134 2015 August
## 1089 City Hotel 0 150 2015 August
## 1090 City Hotel 0 8 2015 August
## 1091 City Hotel 0 119 2015 August
## 1092 City Hotel 1 5 2015 August
## 1093 City Hotel 0 3 2015 August
## 1094 City Hotel 0 8 2015 August
## 1095 City Hotel 1 0 2015 August
## 1096 City Hotel 0 0 2015 August
## 1097 City Hotel 0 16 2015 August
## 1098 City Hotel 1 87 2015 August
## 1099 City Hotel 0 3 2015 August
## 1100 City Hotel 0 142 2015 August
## 1101 City Hotel 1 8 2015 August
## 1102 City Hotel 0 106 2015 August
## 1103 City Hotel 1 87 2015 August
## 1104 City Hotel 1 87 2015 August
## 1105 City Hotel 0 39 2015 August
## 1106 City Hotel 0 39 2015 August
## 1107 City Hotel 0 39 2015 August
## 1108 City Hotel 0 39 2015 August
## 1109 City Hotel 0 39 2015 August
## 1110 City Hotel 0 39 2015 August
## 1111 City Hotel 0 39 2015 August
## 1112 City Hotel 1 39 2015 August
## 1113 City Hotel 1 39 2015 August
## 1114 City Hotel 1 39 2015 August
## 1115 City Hotel 1 39 2015 August
## 1116 City Hotel 1 39 2015 August
## 1117 City Hotel 1 1 2015 August
## 1118 City Hotel 1 0 2015 August
## 1119 City Hotel 1 0 2015 August
## 1120 City Hotel 0 39 2015 August
## 1121 City Hotel 1 39 2015 August
## 1122 City Hotel 0 39 2015 August
## 1123 City Hotel 0 39 2015 August
## 1124 City Hotel 1 39 2015 August
## 1125 City Hotel 1 39 2015 August
## 1126 City Hotel 1 39 2015 August
## 1127 City Hotel 1 87 2015 August
## 1128 City Hotel 0 39 2015 August
## 1129 City Hotel 0 39 2015 August
## 1130 City Hotel 0 39 2015 August
## 1131 City Hotel 0 39 2015 August
## 1132 City Hotel 0 39 2015 August
## 1133 City Hotel 0 39 2015 August
## 1134 City Hotel 1 39 2015 August
## 1135 City Hotel 1 39 2015 August
## 1136 City Hotel 1 39 2015 August
## 1137 City Hotel 1 39 2015 August
## 1138 City Hotel 1 0 2015 August
## 1139 City Hotel 1 0 2015 August
## 1140 City Hotel 1 0 2015 August
## 1141 City Hotel 0 39 2015 August
## 1142 City Hotel 1 39 2015 August
## 1143 City Hotel 1 39 2015 August
## 1144 City Hotel 1 39 2015 August
## 1145 City Hotel 1 39 2015 August
## 1146 City Hotel 1 0 2015 August
## 1147 City Hotel 1 0 2015 August
## 1148 City Hotel 1 0 2015 August
## 1149 City Hotel 1 0 2015 August
## 1150 City Hotel 0 39 2015 August
## 1151 City Hotel 0 39 2015 August
## 1152 City Hotel 0 39 2015 August
## 1153 City Hotel 0 39 2015 August
## 1154 City Hotel 1 39 2015 August
## 1155 City Hotel 1 39 2015 August
## 1156 City Hotel 1 39 2015 August
## 1157 City Hotel 0 8 2015 August
## 1158 City Hotel 1 0 2015 August
## 1159 City Hotel 1 0 2015 August
## 1160 City Hotel 0 39 2015 August
## 1161 City Hotel 0 39 2015 August
## 1162 City Hotel 0 39 2015 August
## 1163 City Hotel 0 39 2015 August
## 1164 City Hotel 0 39 2015 August
## 1165 City Hotel 0 39 2015 August
## 1166 City Hotel 0 39 2015 August
## 1167 City Hotel 1 39 2015 August
## 1168 City Hotel 1 39 2015 August
## 1169 City Hotel 1 39 2015 August
## 1170 City Hotel 1 39 2015 August
## 1171 City Hotel 1 39 2015 August
## 1172 City Hotel 1 39 2015 August
## 1173 City Hotel 1 0 2015 August
## 1174 City Hotel 0 39 2015 August
## 1175 City Hotel 0 39 2015 August
## 1176 City Hotel 0 39 2015 August
## 1177 City Hotel 1 39 2015 August
## 1178 City Hotel 1 39 2015 August
## 1179 City Hotel 0 39 2015 August
## 1180 City Hotel 0 39 2015 August
## 1181 City Hotel 0 39 2015 August
## 1182 City Hotel 0 39 2015 August
## 1183 City Hotel 0 39 2015 August
## 1184 City Hotel 0 39 2015 August
## 1185 City Hotel 1 39 2015 August
## 1186 City Hotel 1 39 2015 August
## 1187 City Hotel 1 39 2015 August
## 1188 City Hotel 1 39 2015 August
## 1189 City Hotel 1 39 2015 August
## 1190 City Hotel 1 39 2015 August
## 1191 City Hotel 1 39 2015 August
## 1192 City Hotel 0 39 2015 August
## 1193 City Hotel 0 39 2015 August
## 1194 City Hotel 0 39 2015 August
## 1195 City Hotel 0 39 2015 August
## 1196 City Hotel 0 39 2015 August
## 1197 City Hotel 0 39 2015 August
## 1198 City Hotel 1 39 2015 August
## 1199 City Hotel 1 39 2015 August
## 1200 City Hotel 1 39 2015 August
## 1201 City Hotel 1 39 2015 August
## 1202 City Hotel 1 39 2015 August
## 1203 City Hotel 1 0 2015 August
## 1204 City Hotel 1 0 2015 August
## 1205 City Hotel 1 0 2015 August
## 1206 City Hotel 0 39 2015 August
## 1207 City Hotel 0 39 2015 August
## 1208 City Hotel 0 39 2015 August
## 1209 City Hotel 0 39 2015 August
## 1210 City Hotel 0 39 2015 August
## 1211 City Hotel 1 39 2015 August
## 1212 City Hotel 1 39 2015 August
## 1213 City Hotel 1 39 2015 August
## 1214 City Hotel 1 39 2015 August
## 1215 City Hotel 1 39 2015 August
## 1216 City Hotel 1 39 2015 August
## 1217 City Hotel 1 39 2015 August
## 1218 City Hotel 1 0 2015 August
## 1219 City Hotel 1 0 2015 August
## 1220 City Hotel 1 0 2015 August
## 1221 City Hotel 1 0 2015 August
## 1222 City Hotel 0 39 2015 August
## 1223 City Hotel 0 39 2015 August
## 1224 City Hotel 1 39 2015 August
## 1225 City Hotel 1 39 2015 August
## 1226 City Hotel 1 39 2015 August
## 1227 City Hotel 1 39 2015 August
## 1228 City Hotel 1 0 2015 August
## 1229 City Hotel 1 0 2015 August
## 1230 City Hotel 1 0 2015 August
## 1231 City Hotel 1 0 2015 August
## 1232 City Hotel 1 0 2015 August
## 1233 City Hotel 0 39 2015 August
## 1234 City Hotel 1 39 2015 August
## 1235 City Hotel 1 39 2015 August
## 1236 City Hotel 1 39 2015 August
## 1237 City Hotel 1 39 2015 August
## 1238 City Hotel 1 0 2015 August
## 1239 City Hotel 1 0 2015 August
## 1240 City Hotel 0 39 2015 August
## 1241 City Hotel 0 39 2015 August
## 1242 City Hotel 0 39 2015 August
## 1243 City Hotel 0 39 2015 August
## 1244 City Hotel 0 39 2015 August
## 1245 City Hotel 1 39 2015 August
## 1246 City Hotel 1 39 2015 August
## 1247 City Hotel 0 39 2015 August
## 1248 City Hotel 0 39 2015 August
## 1249 City Hotel 1 39 2015 August
## 1250 City Hotel 1 39 2015 August
## 1251 City Hotel 1 39 2015 August
## 1252 City Hotel 1 0 2015 August
## 1253 City Hotel 1 0 2015 August
## 1254 City Hotel 0 88 2015 August
## 1255 City Hotel 0 39 2015 August
## 1256 City Hotel 0 39 2015 August
## 1257 City Hotel 0 39 2015 August
## 1258 City Hotel 0 39 2015 August
## 1259 City Hotel 0 39 2015 August
## 1260 City Hotel 0 39 2015 August
## 1261 City Hotel 1 39 2015 August
## 1262 City Hotel 1 39 2015 August
## 1263 City Hotel 1 39 2015 August
## 1264 City Hotel 1 39 2015 August
## 1265 City Hotel 1 39 2015 August
## 1266 City Hotel 0 39 2015 August
## 1267 City Hotel 0 39 2015 August
## 1268 City Hotel 0 39 2015 August
## 1269 City Hotel 0 39 2015 August
## 1270 City Hotel 0 39 2015 August
## 1271 City Hotel 1 39 2015 August
## 1272 City Hotel 1 39 2015 August
## 1273 City Hotel 1 39 2015 August
## 1274 City Hotel 1 39 2015 August
## 1275 City Hotel 1 39 2015 August
## 1276 City Hotel 1 39 2015 August
## 1277 City Hotel 1 0 2015 August
## 1278 City Hotel 1 0 2015 August
## 1279 City Hotel 1 6 2015 August
## 1280 City Hotel 1 3 2015 August
## 1281 City Hotel 0 4 2015 August
## 1282 City Hotel 0 150 2015 August
## 1283 City Hotel 0 1 2015 August
## 1284 City Hotel 1 6 2015 August
## 1285 City Hotel 0 1 2015 August
## 1286 City Hotel 0 133 2015 August
## 1287 City Hotel 0 119 2015 August
## 1288 City Hotel 0 6 2015 August
## 1289 City Hotel 0 6 2015 August
## 1290 City Hotel 0 6 2015 August
## 1291 City Hotel 0 4 2015 August
## 1292 City Hotel 0 10 2015 August
## 1293 City Hotel 0 4 2015 August
## 1294 City Hotel 0 0 2015 August
## 1295 City Hotel 0 4 2015 August
## 1296 City Hotel 0 4 2015 August
## 1297 City Hotel 0 5 2015 August
## 1298 City Hotel 0 5 2015 August
## 1299 City Hotel 0 16 2015 August
## 1300 City Hotel 1 5 2015 August
## 1301 City Hotel 0 40 2015 August
## 1302 City Hotel 0 40 2015 August
## 1303 City Hotel 0 40 2015 August
## 1304 City Hotel 0 40 2015 August
## 1305 City Hotel 1 40 2015 August
## 1306 City Hotel 0 40 2015 August
## 1307 City Hotel 0 40 2015 August
## 1308 City Hotel 0 40 2015 August
## 1309 City Hotel 1 40 2015 August
## 1310 City Hotel 1 40 2015 August
## 1311 City Hotel 1 5 2015 August
## 1312 City Hotel 0 40 2015 August
## 1313 City Hotel 0 40 2015 August
## 1314 City Hotel 0 2 2015 August
## 1315 City Hotel 0 40 2015 August
## 1316 City Hotel 1 40 2015 August
## 1317 City Hotel 0 145 2015 August
## 1318 City Hotel 0 40 2015 August
## 1319 City Hotel 0 40 2015 August
## 1320 City Hotel 0 40 2015 August
## 1321 City Hotel 0 40 2015 August
## 1322 City Hotel 0 40 2015 August
## 1323 City Hotel 0 40 2015 August
## 1324 City Hotel 1 40 2015 August
## 1325 City Hotel 1 40 2015 August
## 1326 City Hotel 0 40 2015 August
## 1327 City Hotel 0 40 2015 August
## 1328 City Hotel 1 40 2015 August
## 1329 City Hotel 1 40 2015 August
## 1330 City Hotel 0 7 2015 August
## 1331 City Hotel 0 8 2015 August
## 1332 City Hotel 1 93 2015 August
## 1333 City Hotel 1 93 2015 August
## 1334 City Hotel 0 8 2015 August
## 1335 City Hotel 0 40 2015 August
## 1336 City Hotel 1 40 2015 August
## 1337 City Hotel 1 40 2015 August
## 1338 City Hotel 0 40 2015 August
## 1339 City Hotel 1 40 2015 August
## 1340 City Hotel 0 131 2015 August
## 1341 City Hotel 0 131 2015 August
## 1342 City Hotel 1 131 2015 August
## 1343 City Hotel 1 131 2015 August
## 1344 City Hotel 0 5 2015 August
## 1345 City Hotel 1 131 2015 August
## 1346 City Hotel 1 131 2015 August
## 1347 City Hotel 1 131 2015 August
## 1348 City Hotel 0 131 2015 August
## 1349 City Hotel 1 131 2015 August
## 1350 City Hotel 1 2 2015 August
## 1351 City Hotel 1 131 2015 August
## 1352 City Hotel 0 5 2015 August
## 1353 City Hotel 0 5 2015 August
## 1354 City Hotel 0 131 2015 August
## 1355 City Hotel 0 131 2015 August
## 1356 City Hotel 1 131 2015 August
## 1357 City Hotel 0 131 2015 August
## 1358 City Hotel 1 131 2015 August
## 1359 City Hotel 1 131 2015 August
## 1360 City Hotel 0 2 2015 August
## 1361 City Hotel 0 1 2015 August
## 1362 City Hotel 1 11 2015 August
## 1363 City Hotel 0 131 2015 August
## 1364 City Hotel 0 9 2015 August
## 1365 City Hotel 1 131 2015 August
## 1366 City Hotel 1 131 2015 August
## 1367 City Hotel 1 131 2015 August
## 1368 City Hotel 0 0 2015 August
## 1369 City Hotel 1 131 2015 August
## 1370 City Hotel 1 131 2015 August
## 1371 City Hotel 0 5 2015 August
## 1372 City Hotel 0 5 2015 August
## 1373 City Hotel 1 2 2015 August
## 1374 City Hotel 0 11 2015 August
## 1375 City Hotel 0 131 2015 August
## 1376 City Hotel 0 131 2015 August
## 1377 City Hotel 1 131 2015 August
## 1378 City Hotel 0 5 2015 August
## 1379 City Hotel 0 8 2015 August
## 1380 City Hotel 0 12 2015 August
## 1381 City Hotel 0 5 2015 August
## 1382 City Hotel 1 8 2015 August
## 1383 City Hotel 1 6 2015 August
## 1384 City Hotel 0 5 2015 August
## 1385 City Hotel 0 137 2015 August
## 1386 City Hotel 0 3 2015 August
## 1387 City Hotel 0 3 2015 August
## 1388 City Hotel 0 0 2015 August
## 1389 City Hotel 0 1 2015 August
## 1390 City Hotel 0 5 2015 August
## 1391 City Hotel 0 6 2015 August
## 1392 City Hotel 0 3 2015 August
## 1393 City Hotel 0 6 2015 August
## 1394 City Hotel 1 127 2015 August
## 1395 City Hotel 0 1 2015 August
## 1396 City Hotel 0 5 2015 August
## 1397 City Hotel 0 5 2015 August
## 1398 City Hotel 0 6 2015 August
## 1399 City Hotel 0 5 2015 August
## 1400 City Hotel 1 90 2015 August
## 1401 City Hotel 0 6 2015 August
## 1402 City Hotel 0 0 2015 August
## 1403 City Hotel 0 0 2015 August
## 1404 City Hotel 0 0 2015 August
## 1405 City Hotel 0 0 2015 August
## 1406 City Hotel 0 0 2015 August
## 1407 City Hotel 1 0 2015 August
## 1408 City Hotel 0 0 2015 August
## 1409 City Hotel 0 46 2015 August
## 1410 City Hotel 0 46 2015 August
## 1411 City Hotel 0 46 2015 August
## 1412 City Hotel 0 46 2015 August
## 1413 City Hotel 0 46 2015 August
## 1414 City Hotel 0 46 2015 August
## 1415 City Hotel 1 46 2015 August
## 1416 City Hotel 0 46 2015 August
## 1417 City Hotel 0 46 2015 August
## 1418 City Hotel 0 46 2015 August
## 1419 City Hotel 0 46 2015 August
## 1420 City Hotel 0 46 2015 August
## 1421 City Hotel 0 46 2015 August
## 1422 City Hotel 0 46 2015 August
## 1423 City Hotel 0 46 2015 August
## 1424 City Hotel 0 46 2015 August
## 1425 City Hotel 0 46 2015 August
## 1426 City Hotel 0 4 2015 August
## 1427 City Hotel 0 5 2015 August
## 1428 City Hotel 0 46 2015 August
## 1429 City Hotel 0 92 2015 August
## 1430 City Hotel 0 7 2015 August
## 1431 City Hotel 0 4 2015 August
## 1432 City Hotel 0 46 2015 August
## 1433 City Hotel 0 46 2015 August
## 1434 City Hotel 0 46 2015 August
## 1435 City Hotel 0 46 2015 August
## 1436 City Hotel 0 3 2015 August
## 1437 City Hotel 0 2 2015 August
## 1438 City Hotel 0 6 2015 August
## 1439 City Hotel 0 4 2015 August
## 1440 City Hotel 1 6 2015 August
## 1441 City Hotel 0 7 2015 August
## 1442 City Hotel 1 9 2015 August
## 1443 City Hotel 0 112 2015 August
## 1444 City Hotel 1 3 2015 August
## 1445 City Hotel 1 9 2015 August
## 1446 City Hotel 1 3 2015 August
## 1447 City Hotel 0 2 2015 August
## 1448 City Hotel 0 7 2015 August
## 1449 City Hotel 0 46 2015 August
## 1450 City Hotel 1 3 2015 August
## 1451 City Hotel 0 4 2015 August
## 1452 City Hotel 0 4 2015 August
## 1453 City Hotel 0 2 2015 August
## 1454 City Hotel 0 4 2015 August
## 1455 City Hotel 1 3 2015 August
## 1456 City Hotel 1 10 2015 August
## 1457 City Hotel 0 137 2015 August
## 1458 City Hotel 1 3 2015 August
## 1459 City Hotel 1 11 2015 August
## 1460 City Hotel 0 5 2015 August
## 1461 City Hotel 1 3 2015 August
## 1462 City Hotel 1 4 2015 August
## 1463 City Hotel 0 6 2015 August
## 1464 City Hotel 0 5 2015 August
## 1465 City Hotel 1 3 2015 August
## 1466 City Hotel 0 4 2015 August
## 1467 City Hotel 0 4 2015 August
## 1468 City Hotel 1 3 2015 August
## 1469 City Hotel 0 0 2015 August
## 1470 City Hotel 0 46 2015 August
## 1471 City Hotel 0 46 2015 August
## 1472 City Hotel 0 46 2015 August
## 1473 City Hotel 0 46 2015 August
## 1474 City Hotel 0 46 2015 August
## 1475 City Hotel 0 46 2015 August
## 1476 City Hotel 1 46 2015 August
## 1477 City Hotel 0 46 2015 August
## 1478 City Hotel 0 5 2015 August
## 1479 City Hotel 1 1 2015 August
## 1480 City Hotel 0 0 2015 August
## 1481 City Hotel 1 1 2015 August
## 1482 City Hotel 0 0 2015 August
## 1483 City Hotel 0 0 2015 August
## 1484 City Hotel 0 0 2015 August
## 1485 City Hotel 1 1 2015 August
## 1486 City Hotel 1 1 2015 August
## 1487 City Hotel 0 0 2015 August
## 1488 City Hotel 0 0 2015 August
## 1489 City Hotel 0 0 2015 August
## 1490 City Hotel 1 1 2015 August
## 1491 City Hotel 0 0 2015 August
## 1492 City Hotel 0 0 2015 August
## 1493 City Hotel 1 4 2015 August
## 1494 City Hotel 1 1 2015 August
## 1495 City Hotel 0 47 2015 August
## 1496 City Hotel 0 14 2015 August
## 1497 City Hotel 0 12 2015 August
## 1498 City Hotel 1 11 2015 August
## 1499 City Hotel 1 11 2015 August
## 1500 City Hotel 1 11 2015 August
## 1501 City Hotel 0 12 2015 August
## 1502 City Hotel 0 11 2015 August
## 1503 City Hotel 0 7 2015 August
## 1504 City Hotel 0 1 2015 August
## 1505 City Hotel 0 4 2015 August
## 1506 City Hotel 0 15 2015 August
## 1507 City Hotel 0 6 2015 August
## 1508 City Hotel 1 7 2015 August
## 1509 City Hotel 0 7 2015 August
## 1510 City Hotel 0 10 2015 August
## 1511 City Hotel 0 8 2015 August
## 1512 City Hotel 0 10 2015 August
## 1513 City Hotel 0 14 2015 August
## 1514 City Hotel 0 8 2015 August
## 1515 City Hotel 0 4 2015 August
## 1516 City Hotel 1 5 2015 August
## 1517 City Hotel 1 13 2015 August
## 1518 City Hotel 0 3 2015 August
## 1519 City Hotel 1 11 2015 August
## 1520 City Hotel 0 47 2015 August
## 1521 City Hotel 1 13 2015 August
## 1522 City Hotel 0 1 2015 August
## 1523 City Hotel 0 4 2015 August
## 1524 City Hotel 0 6 2015 August
## 1525 City Hotel 0 6 2015 August
## 1526 City Hotel 0 8 2015 August
## 1527 City Hotel 1 104 2015 August
## 1528 City Hotel 0 6 2015 August
## 1529 City Hotel 0 10 2015 August
## 1530 City Hotel 0 6 2015 August
## 1531 City Hotel 0 1 2015 August
## 1532 City Hotel 1 11 2015 August
## 1533 City Hotel 0 12 2015 August
## 1534 City Hotel 0 6 2015 August
## 1535 City Hotel 0 8 2015 August
## 1536 City Hotel 0 9 2015 August
## 1537 City Hotel 0 97 2015 August
## 1538 City Hotel 1 135 2015 August
## 1539 City Hotel 0 6 2015 August
## 1540 City Hotel 0 9 2015 August
## 1541 City Hotel 0 7 2015 August
## 1542 City Hotel 0 7 2015 August
## 1543 City Hotel 0 2 2015 August
## 1544 City Hotel 0 4 2015 August
## 1545 City Hotel 0 1 2015 August
## 1546 City Hotel 0 4 2015 August
## 1547 City Hotel 0 7 2015 August
## 1548 City Hotel 0 0 2015 August
## 1549 City Hotel 0 0 2015 August
## 1550 City Hotel 0 4 2015 August
## 1551 City Hotel 0 9 2015 August
## 1552 City Hotel 0 2 2015 August
## 1553 City Hotel 0 5 2015 August
## 1554 City Hotel 0 7 2015 August
## 1555 City Hotel 0 6 2015 August
## 1556 City Hotel 0 8 2015 August
## 1557 City Hotel 0 9 2015 August
## 1558 City Hotel 0 2 2015 August
## 1559 City Hotel 0 0 2015 August
## 1560 City Hotel 0 0 2015 August
## 1561 City Hotel 0 0 2015 August
## 1562 City Hotel 0 97 2015 August
## 1563 City Hotel 0 0 2015 August
## 1564 City Hotel 0 0 2015 August
## 1565 City Hotel 0 0 2015 August
## 1566 City Hotel 0 5 2015 August
## 1567 City Hotel 0 5 2015 August
## 1568 City Hotel 0 10 2015 August
## 1569 City Hotel 0 0 2015 August
## 1570 City Hotel 0 1 2015 August
## 1571 City Hotel 0 0 2015 August
## 1572 City Hotel 1 118 2015 August
## 1573 City Hotel 0 134 2015 August
## 1574 City Hotel 0 0 2015 August
## 1575 City Hotel 0 1 2015 August
## 1576 City Hotel 0 0 2015 August
## 1577 City Hotel 0 7 2015 August
## 1578 City Hotel 0 10 2015 August
## 1579 City Hotel 1 3 2015 August
## 1580 City Hotel 0 9 2015 August
## 1581 City Hotel 0 10 2015 August
## 1582 City Hotel 1 1 2015 August
## 1583 City Hotel 1 1 2015 August
## 1584 City Hotel 0 1 2015 August
## 1585 City Hotel 0 2 2015 August
## 1586 City Hotel 0 12 2015 August
## 1587 City Hotel 1 13 2015 August
## 1588 City Hotel 0 13 2015 August
## 1589 City Hotel 0 10 2015 August
## 1590 City Hotel 1 7 2015 August
## 1591 City Hotel 0 10 2015 August
## 1592 City Hotel 0 10 2015 August
## 1593 City Hotel 0 6 2015 August
## 1594 City Hotel 0 120 2015 August
## 1595 City Hotel 0 120 2015 August
## 1596 City Hotel 0 0 2015 August
## 1597 City Hotel 0 5 2015 August
## 1598 City Hotel 0 3 2015 August
## 1599 City Hotel 0 0 2015 August
## 1600 City Hotel 0 22 2015 August
## 1601 City Hotel 0 0 2015 August
## 1602 City Hotel 0 22 2015 August
## 1603 City Hotel 0 10 2015 August
## 1604 City Hotel 0 2 2015 August
## 1605 City Hotel 0 2 2015 August
## 1606 City Hotel 0 4 2015 August
## 1607 City Hotel 0 2 2015 August
## 1608 City Hotel 0 4 2015 August
## 1609 City Hotel 0 3 2015 August
## 1610 City Hotel 0 102 2015 August
## 1611 City Hotel 1 107 2015 August
## 1612 City Hotel 1 10 2015 August
## 1613 City Hotel 0 2 2015 August
## 1614 City Hotel 1 0 2015 August
## 1615 City Hotel 0 1 2015 August
## 1616 City Hotel 1 0 2015 August
## 1617 City Hotel 0 3 2015 August
## 1618 City Hotel 0 11 2015 August
## 1619 City Hotel 0 11 2015 August
## 1620 City Hotel 0 10 2015 August
## 1621 City Hotel 1 0 2015 August
## 1622 City Hotel 0 9 2015 August
## 1623 City Hotel 1 0 2015 August
## 1624 City Hotel 0 2 2015 August
## 1625 City Hotel 0 43 2015 August
## 1626 City Hotel 0 2 2015 August
## 1627 City Hotel 0 43 2015 August
## 1628 City Hotel 0 2 2015 August
## 1629 City Hotel 0 43 2015 August
## 1630 City Hotel 0 151 2015 August
## 1631 City Hotel 0 151 2015 August
## 1632 City Hotel 0 9 2015 August
## 1633 City Hotel 1 99 2015 August
## 1634 City Hotel 0 8 2015 August
## 1635 City Hotel 0 14 2015 August
## 1636 City Hotel 0 6 2015 August
## 1637 City Hotel 0 138 2015 August
## 1638 City Hotel 1 138 2015 August
## 1639 City Hotel 0 3 2015 August
## 1640 City Hotel 1 17 2015 August
## 1641 City Hotel 1 44 2015 August
## 1642 City Hotel 0 138 2015 August
## 1643 City Hotel 1 138 2015 August
## 1644 City Hotel 0 138 2015 August
## 1645 City Hotel 0 138 2015 August
## 1646 City Hotel 0 138 2015 August
## 1647 City Hotel 1 138 2015 August
## 1648 City Hotel 1 138 2015 August
## 1649 City Hotel 0 18 2015 August
## 1650 City Hotel 1 117 2015 August
## 1651 City Hotel 0 18 2015 August
## 1652 City Hotel 0 10 2015 August
## 1653 City Hotel 0 12 2015 August
## 1654 City Hotel 0 0 2015 August
## 1655 City Hotel 0 0 2015 August
## 1656 City Hotel 1 113 2015 August
## 1657 City Hotel 0 4 2015 August
## 1658 City Hotel 1 113 2015 August
## 1659 City Hotel 1 5 2015 August
## 1660 City Hotel 0 0 2015 August
## 1661 City Hotel 0 5 2015 August
## 1662 City Hotel 1 3 2015 August
## 1663 City Hotel 0 44 2015 August
## 1664 City Hotel 1 138 2015 August
## 1665 City Hotel 1 138 2015 August
## 1666 City Hotel 0 138 2015 August
## 1667 City Hotel 1 138 2015 August
## 1668 City Hotel 1 44 2015 August
## 1669 City Hotel 0 3 2015 August
## 1670 City Hotel 0 138 2015 August
## 1671 City Hotel 0 138 2015 August
## 1672 City Hotel 1 138 2015 August
## 1673 City Hotel 1 17 2015 August
## 1674 City Hotel 0 44 2015 August
## 1675 City Hotel 0 138 2015 August
## 1676 City Hotel 1 138 2015 August
## 1677 City Hotel 0 1 2015 August
## 1678 City Hotel 0 3 2015 August
## 1679 City Hotel 1 138 2015 August
## 1680 City Hotel 0 138 2015 August
## 1681 City Hotel 0 44 2015 August
## 1682 City Hotel 0 44 2015 August
## 1683 City Hotel 0 138 2015 August
## 1684 City Hotel 0 0 2015 August
## 1685 City Hotel 1 138 2015 August
## 1686 City Hotel 1 138 2015 August
## 1687 City Hotel 0 44 2015 August
## 1688 City Hotel 0 138 2015 August
## 1689 City Hotel 0 138 2015 August
## 1690 City Hotel 0 0 2015 August
## 1691 City Hotel 1 1 2015 August
## 1692 City Hotel 1 11 2015 August
## 1693 City Hotel 1 96 2015 August
## 1694 City Hotel 0 103 2015 August
## 1695 City Hotel 0 6 2015 August
## 1696 City Hotel 0 3 2015 August
## 1697 City Hotel 0 10 2015 August
## 1698 City Hotel 0 0 2015 August
## 1699 City Hotel 0 0 2015 August
## 1700 City Hotel 1 15 2015 August
## 1701 City Hotel 0 3 2015 August
## 1702 City Hotel 0 9 2015 August
## 1703 City Hotel 0 1 2015 August
## 1704 City Hotel 0 4 2015 August
## 1705 City Hotel 0 4 2015 August
## 1706 City Hotel 0 11 2015 August
## 1707 City Hotel 0 12 2015 August
## 1708 City Hotel 0 12 2015 August
## 1709 City Hotel 0 6 2015 August
## 1710 City Hotel 1 4 2015 August
## 1711 City Hotel 0 9 2015 August
## 1712 City Hotel 0 9 2015 August
## 1713 City Hotel 0 4 2015 August
## 1714 City Hotel 0 90 2015 August
## 1715 City Hotel 0 90 2015 August
## 1716 City Hotel 0 0 2015 August
## 1717 City Hotel 0 11 2015 August
## 1718 City Hotel 0 4 2015 August
## 1719 City Hotel 0 53 2015 August
## 1720 City Hotel 0 53 2015 August
## 1721 City Hotel 1 53 2015 August
## 1722 City Hotel 0 53 2015 August
## 1723 City Hotel 0 53 2015 August
## 1724 City Hotel 0 13 2015 August
## 1725 City Hotel 0 53 2015 August
## 1726 City Hotel 0 53 2015 August
## 1727 City Hotel 0 53 2015 August
## 1728 City Hotel 0 53 2015 August
## 1729 City Hotel 0 53 2015 August
## 1730 City Hotel 0 53 2015 August
## 1731 City Hotel 0 53 2015 August
## 1732 City Hotel 0 53 2015 August
## 1733 City Hotel 0 53 2015 August
## 1734 City Hotel 0 53 2015 August
## 1735 City Hotel 0 53 2015 August
## 1736 City Hotel 0 53 2015 August
## 1737 City Hotel 0 53 2015 August
## 1738 City Hotel 0 53 2015 August
## 1739 City Hotel 0 53 2015 August
## 1740 City Hotel 0 53 2015 August
## 1741 City Hotel 0 53 2015 August
## 1742 City Hotel 1 53 2015 August
## 1743 City Hotel 0 53 2015 August
## 1744 City Hotel 0 53 2015 August
## 1745 City Hotel 0 53 2015 August
## 1746 City Hotel 0 53 2015 August
## 1747 City Hotel 0 53 2015 August
## 1748 City Hotel 1 53 2015 August
## 1749 City Hotel 0 53 2015 August
## 1750 City Hotel 0 6 2015 August
## 1751 City Hotel 0 7 2015 August
## 1752 City Hotel 0 13 2015 August
## 1753 City Hotel 0 108 2015 August
## 1754 City Hotel 0 5 2015 August
## 1755 City Hotel 0 14 2015 August
## 1756 City Hotel 0 11 2015 August
## 1757 City Hotel 0 5 2015 August
## 1758 City Hotel 0 10 2015 August
## 1759 City Hotel 0 10 2015 August
## 1760 City Hotel 0 11 2015 August
## 1761 City Hotel 0 11 2015 August
## 1762 City Hotel 0 10 2015 August
## 1763 City Hotel 0 0 2015 August
## 1764 City Hotel 0 50 2015 August
## 1765 City Hotel 1 50 2015 August
## 1766 City Hotel 0 50 2015 August
## 1767 City Hotel 0 50 2015 August
## 1768 City Hotel 0 4 2015 August
## 1769 City Hotel 0 50 2015 August
## 1770 City Hotel 0 50 2015 August
## 1771 City Hotel 1 50 2015 August
## 1772 City Hotel 0 50 2015 August
## 1773 City Hotel 1 50 2015 August
## 1774 City Hotel 0 4 2015 August
## 1775 City Hotel 0 4 2015 August
## 1776 City Hotel 1 50 2015 August
## 1777 City Hotel 1 50 2015 August
## 1778 City Hotel 0 4 2015 August
## 1779 City Hotel 1 50 2015 August
## 1780 City Hotel 0 4 2015 August
## 1781 City Hotel 0 50 2015 August
## 1782 City Hotel 1 50 2015 August
## 1783 City Hotel 1 50 2015 August
## 1784 City Hotel 0 50 2015 August
## 1785 City Hotel 0 50 2015 August
## 1786 City Hotel 1 50 2015 August
## 1787 City Hotel 0 4 2015 August
## 1788 City Hotel 0 50 2015 August
## 1789 City Hotel 1 50 2015 August
## 1790 City Hotel 1 50 2015 August
## 1791 City Hotel 0 50 2015 August
## 1792 City Hotel 1 50 2015 August
## 1793 City Hotel 0 50 2015 August
## 1794 City Hotel 1 50 2015 August
## 1795 City Hotel 0 50 2015 August
## 1796 City Hotel 0 10 2015 August
## 1797 City Hotel 0 4 2015 August
## 1798 City Hotel 0 4 2015 August
## 1799 City Hotel 0 4 2015 August
## 1800 City Hotel 0 4 2015 August
## 1801 City Hotel 0 50 2015 August
## 1802 City Hotel 0 50 2015 August
## 1803 City Hotel 0 5 2015 August
## 1804 City Hotel 0 1 2015 August
## 1805 City Hotel 0 4 2015 August
## 1806 City Hotel 0 0 2015 August
## 1807 City Hotel 0 0 2015 August
## 1808 City Hotel 0 0 2015 August
## 1809 City Hotel 0 0 2015 August
## 1810 City Hotel 0 0 2015 August
## 1811 City Hotel 0 13 2015 August
## 1812 City Hotel 0 11 2015 August
## 1813 City Hotel 0 0 2015 August
## 1814 City Hotel 0 1 2015 August
## 1815 City Hotel 1 12 2015 August
## 1816 City Hotel 0 50 2015 August
## 1817 City Hotel 1 50 2015 August
## 1818 City Hotel 0 4 2015 August
## 1819 City Hotel 0 4 2015 August
## 1820 City Hotel 1 50 2015 August
## 1821 City Hotel 0 6 2015 August
## 1822 City Hotel 1 1 2015 August
## 1823 City Hotel 0 2 2015 August
## 1824 City Hotel 0 1 2015 August
## 1825 City Hotel 0 2 2015 August
## 1826 City Hotel 0 1 2015 August
## 1827 City Hotel 0 0 2015 August
## 1828 City Hotel 0 0 2015 August
## 1829 City Hotel 0 2 2015 August
## 1830 City Hotel 0 55 2015 August
## 1831 City Hotel 0 55 2015 August
## 1832 City Hotel 1 55 2015 August
## 1833 City Hotel 0 8 2015 August
## 1834 City Hotel 0 55 2015 August
## 1835 City Hotel 0 55 2015 August
## 1836 City Hotel 0 55 2015 August
## 1837 City Hotel 0 55 2015 August
## 1838 City Hotel 0 55 2015 August
## 1839 City Hotel 0 55 2015 August
## 1840 City Hotel 0 55 2015 August
## 1841 City Hotel 0 55 2015 August
## 1842 City Hotel 0 55 2015 August
## 1843 City Hotel 0 55 2015 August
## 1844 City Hotel 1 2 2015 August
## 1845 City Hotel 0 55 2015 August
## 1846 City Hotel 0 55 2015 August
## 1847 City Hotel 0 55 2015 August
## 1848 City Hotel 0 55 2015 August
## 1849 City Hotel 0 55 2015 August
## 1850 City Hotel 0 0 2015 August
## 1851 City Hotel 0 55 2015 August
## 1852 City Hotel 0 55 2015 August
## 1853 City Hotel 1 2 2015 August
## 1854 City Hotel 1 55 2015 August
## 1855 City Hotel 1 5 2015 August
## 1856 City Hotel 1 2 2015 August
## 1857 City Hotel 0 55 2015 August
## 1858 City Hotel 0 55 2015 August
## 1859 City Hotel 0 55 2015 August
## 1860 City Hotel 1 55 2015 August
## 1861 City Hotel 0 55 2015 August
## 1862 City Hotel 0 55 2015 August
## 1863 City Hotel 0 55 2015 August
## 1864 City Hotel 0 55 2015 August
## 1865 City Hotel 0 55 2015 August
## 1866 City Hotel 0 7 2015 August
## 1867 City Hotel 0 55 2015 August
## 1868 City Hotel 0 1 2015 August
## 1869 City Hotel 0 18 2015 August
## 1870 City Hotel 0 8 2015 August
## 1871 City Hotel 1 118 2015 August
## 1872 City Hotel 0 7 2015 August
## 1873 City Hotel 0 14 2015 August
## 1874 City Hotel 1 118 2015 August
## 1875 City Hotel 1 118 2015 August
## 1876 City Hotel 0 1 2015 August
## 1877 City Hotel 0 13 2015 August
## 1878 City Hotel 0 0 2015 August
## 1879 City Hotel 1 1 2015 August
## 1880 City Hotel 0 8 2015 August
## 1881 City Hotel 1 15 2015 August
## 1882 City Hotel 0 15 2015 August
## 1883 City Hotel 0 2 2015 August
## 1884 City Hotel 0 4 2015 August
## 1885 City Hotel 0 17 2015 August
## 1886 City Hotel 0 12 2015 August
## 1887 City Hotel 0 17 2015 August
## 1888 City Hotel 1 13 2015 August
## 1889 City Hotel 1 15 2015 August
## 1890 City Hotel 0 119 2015 August
## 1891 City Hotel 1 0 2015 August
## 1892 City Hotel 1 10 2015 August
## 1893 City Hotel 0 15 2015 August
## 1894 City Hotel 0 24 2015 August
## 1895 City Hotel 1 10 2015 August
## 1896 City Hotel 0 15 2015 August
## 1897 City Hotel 0 0 2015 August
## 1898 City Hotel 1 11 2015 August
## 1899 City Hotel 0 11 2015 August
## 1900 City Hotel 0 2 2015 August
## 1901 City Hotel 0 11 2015 August
## 1902 City Hotel 1 11 2015 August
## 1903 City Hotel 1 162 2015 August
## 1904 City Hotel 0 1 2015 August
## 1905 City Hotel 0 11 2015 August
## 1906 City Hotel 1 148 2015 August
## 1907 City Hotel 0 8 2015 August
## 1908 City Hotel 0 4 2015 August
## 1909 City Hotel 1 17 2015 August
## 1910 City Hotel 0 3 2015 August
## 1911 City Hotel 0 10 2015 August
## 1912 City Hotel 1 11 2015 August
## 1913 City Hotel 0 1 2015 August
## 1914 City Hotel 1 12 2015 August
## 1915 City Hotel 0 17 2015 August
## 1916 City Hotel 0 3 2015 August
## 1917 City Hotel 0 11 2015 August
## 1918 City Hotel 0 17 2015 August
## 1919 City Hotel 0 0 2015 August
## 1920 City Hotel 0 3 2015 August
## 1921 City Hotel 0 16 2015 August
## 1922 City Hotel 0 0 2015 August
## 1923 City Hotel 0 15 2015 August
## 1924 City Hotel 0 15 2015 August
## 1925 City Hotel 1 15 2015 August
## 1926 City Hotel 0 16 2015 August
## 1927 City Hotel 0 145 2015 August
## 1928 City Hotel 1 145 2015 August
## 1929 City Hotel 0 145 2015 August
## 1930 City Hotel 0 12 2015 August
## 1931 City Hotel 0 145 2015 August
## 1932 City Hotel 0 145 2015 August
## 1933 City Hotel 0 145 2015 August
## 1934 City Hotel 0 145 2015 August
## 1935 City Hotel 0 145 2015 August
## 1936 City Hotel 0 145 2015 August
## 1937 City Hotel 0 1 2015 August
## 1938 City Hotel 0 145 2015 August
## 1939 City Hotel 0 145 2015 August
## 1940 City Hotel 0 145 2015 August
## 1941 City Hotel 1 145 2015 August
## 1942 City Hotel 0 145 2015 August
## 1943 City Hotel 0 145 2015 August
## 1944 City Hotel 0 145 2015 August
## 1945 City Hotel 0 145 2015 August
## 1946 City Hotel 0 145 2015 August
## 1947 City Hotel 0 145 2015 August
## 1948 City Hotel 1 145 2015 August
## 1949 City Hotel 0 10 2015 August
## 1950 City Hotel 0 145 2015 August
## 1951 City Hotel 0 1 2015 August
## 1952 City Hotel 0 145 2015 August
## 1953 City Hotel 0 145 2015 August
## 1954 City Hotel 0 145 2015 August
## 1955 City Hotel 0 145 2015 August
## 1956 City Hotel 0 0 2015 August
## 1957 City Hotel 0 5 2015 August
## 1958 City Hotel 1 10 2015 August
## 1959 City Hotel 1 149 2015 August
## 1960 City Hotel 1 17 2015 August
## 1961 City Hotel 1 17 2015 August
## 1962 City Hotel 0 0 2015 August
## 1963 City Hotel 1 18 2015 August
## 1964 City Hotel 0 14 2015 August
## 1965 City Hotel 0 0 2015 August
## 1966 City Hotel 0 12 2015 August
## 1967 City Hotel 0 2 2015 August
## 1968 City Hotel 0 2 2015 August
## 1969 City Hotel 1 12 2015 August
## 1970 City Hotel 1 12 2015 August
## 1971 City Hotel 1 12 2015 August
## 1972 City Hotel 0 2 2015 August
## 1973 City Hotel 1 2 2015 August
## 1974 City Hotel 0 2 2015 August
## 1975 City Hotel 1 104 2015 August
## 1976 City Hotel 1 104 2015 August
## 1977 City Hotel 1 104 2015 August
## 1978 City Hotel 1 104 2015 August
## 1979 City Hotel 1 104 2015 August
## 1980 City Hotel 1 104 2015 August
## 1981 City Hotel 1 104 2015 August
## 1982 City Hotel 1 104 2015 August
## 1983 City Hotel 1 104 2015 August
## 1984 City Hotel 1 104 2015 August
## 1985 City Hotel 1 104 2015 August
## 1986 City Hotel 1 104 2015 August
## 1987 City Hotel 1 104 2015 August
## 1988 City Hotel 1 104 2015 August
## 1989 City Hotel 1 104 2015 August
## 1990 City Hotel 1 104 2015 August
## 1991 City Hotel 1 104 2015 August
## 1992 City Hotel 1 104 2015 August
## 1993 City Hotel 1 104 2015 August
## 1994 City Hotel 1 104 2015 August
## 1995 City Hotel 1 104 2015 August
## 1996 City Hotel 1 104 2015 August
## 1997 City Hotel 1 104 2015 August
## 1998 City Hotel 1 104 2015 August
## 1999 City Hotel 1 104 2015 August
## 2000 City Hotel 1 104 2015 August
## 2001 City Hotel 1 104 2015 August
## 2002 City Hotel 1 104 2015 August
## 2003 City Hotel 1 104 2015 August
## 2004 City Hotel 1 104 2015 August
## 2005 City Hotel 1 104 2015 August
## 2006 City Hotel 1 104 2015 August
## 2007 City Hotel 1 104 2015 August
## 2008 City Hotel 1 104 2015 August
## 2009 City Hotel 1 104 2015 August
## 2010 City Hotel 1 104 2015 August
## 2011 City Hotel 1 104 2015 August
## 2012 City Hotel 1 104 2015 August
## 2013 City Hotel 1 104 2015 August
## 2014 City Hotel 1 104 2015 August
## 2015 City Hotel 0 1 2015 August
## 2016 City Hotel 0 6 2015 August
## 2017 City Hotel 0 13 2015 August
## 2018 City Hotel 0 6 2015 August
## 2019 City Hotel 1 18 2015 August
## 2020 City Hotel 0 5 2015 August
## 2021 City Hotel 0 0 2015 August
## 2022 City Hotel 0 4 2015 August
## 2023 City Hotel 0 0 2015 August
## 2024 City Hotel 0 0 2015 August
## 2025 City Hotel 0 0 2015 August
## 2026 City Hotel 0 0 2015 August
## 2027 City Hotel 0 145 2015 August
## 2028 City Hotel 1 145 2015 August
## 2029 City Hotel 0 145 2015 August
## 2030 City Hotel 0 145 2015 August
## 2031 City Hotel 0 0 2015 August
## 2032 City Hotel 0 7 2015 August
## 2033 City Hotel 0 145 2015 August
## 2034 City Hotel 0 145 2015 August
## 2035 City Hotel 1 145 2015 August
## 2036 City Hotel 0 7 2015 August
## 2037 City Hotel 0 7 2015 August
## 2038 City Hotel 0 7 2015 August
## 2039 City Hotel 0 7 2015 August
## 2040 City Hotel 0 145 2015 August
## 2041 City Hotel 1 145 2015 August
## 2042 City Hotel 0 145 2015 August
## 2043 City Hotel 0 7 2015 August
## 2044 City Hotel 0 7 2015 August
## 2045 City Hotel 0 7 2015 August
## 2046 City Hotel 0 145 2015 August
## 2047 City Hotel 0 0 2015 August
## 2048 City Hotel 1 145 2015 August
## 2049 City Hotel 0 12 2015 August
## 2050 City Hotel 0 7 2015 August
## 2051 City Hotel 0 145 2015 August
## 2052 City Hotel 0 0 2015 August
## 2053 City Hotel 0 7 2015 August
## 2054 City Hotel 0 145 2015 August
## 2055 City Hotel 1 145 2015 August
## 2056 City Hotel 0 3 2015 August
## 2057 City Hotel 0 0 2015 August
## 2058 City Hotel 0 0 2015 August
## 2059 City Hotel 0 5 2015 August
## 2060 City Hotel 0 13 2015 August
## 2061 City Hotel 1 21 2015 August
## 2062 City Hotel 0 5 2015 August
## 2063 City Hotel 1 18 2015 August
## 2064 City Hotel 0 5 2015 August
## 2065 City Hotel 0 3 2015 August
## 2066 City Hotel 0 19 2015 August
## 2067 City Hotel 0 1 2015 August
## 2068 City Hotel 0 23 2015 August
## 2069 City Hotel 0 27 2015 August
## 2070 City Hotel 0 9 2015 August
## 2071 City Hotel 1 13 2015 August
## 2072 City Hotel 1 9 2015 August
## 2073 City Hotel 0 9 2015 August
## 2074 City Hotel 0 21 2015 August
## 2075 City Hotel 0 7 2015 August
## 2076 City Hotel 0 10 2015 August
## 2077 City Hotel 0 21 2015 August
## 2078 City Hotel 0 16 2015 August
## 2079 City Hotel 0 1 2015 September
## 2080 City Hotel 0 8 2015 September
## 2081 City Hotel 0 0 2015 September
## 2082 City Hotel 0 1 2015 September
## 2083 City Hotel 0 1 2015 September
## 2084 City Hotel 0 1 2015 September
## 2085 City Hotel 0 1 2015 September
## 2086 City Hotel 0 12 2015 September
## 2087 City Hotel 0 21 2015 September
## 2088 City Hotel 0 0 2015 September
## 2089 City Hotel 1 15 2015 September
## 2090 City Hotel 0 7 2015 September
## 2091 City Hotel 0 22 2015 September
## 2092 City Hotel 0 22 2015 September
## 2093 City Hotel 0 20 2015 September
## 2094 City Hotel 0 20 2015 September
## 2095 City Hotel 0 20 2015 September
## 2096 City Hotel 0 24 2015 September
## 2097 City Hotel 0 96 2015 September
## 2098 City Hotel 1 6 2015 September
## 2099 City Hotel 0 17 2015 September
## 2100 City Hotel 0 8 2015 September
## 2101 City Hotel 0 5 2015 September
## 2102 City Hotel 0 0 2015 September
## 2103 City Hotel 0 8 2015 September
## 2104 City Hotel 0 1 2015 September
## 2105 City Hotel 0 111 2015 September
## 2106 City Hotel 0 8 2015 September
## 2107 City Hotel 0 22 2015 September
## 2108 City Hotel 0 8 2015 September
## 2109 City Hotel 0 12 2015 September
## 2110 City Hotel 0 0 2015 September
## 2111 City Hotel 0 4 2015 September
## 2112 City Hotel 0 1 2015 September
## 2113 City Hotel 0 4 2015 September
## 2114 City Hotel 0 23 2015 September
## 2115 City Hotel 0 2 2015 September
## 2116 City Hotel 0 6 2015 September
## 2117 City Hotel 0 20 2015 September
## 2118 City Hotel 0 53 2015 September
## 2119 City Hotel 0 14 2015 September
## 2120 City Hotel 0 55 2015 September
## 2121 City Hotel 0 14 2015 September
## 2122 City Hotel 0 5 2015 September
## 2123 City Hotel 0 5 2015 September
## 2124 City Hotel 0 1 2015 September
## 2125 City Hotel 1 37 2015 September
## 2126 City Hotel 0 1 2015 September
## 2127 City Hotel 0 4 2015 September
## 2128 City Hotel 1 21 2015 September
## 2129 City Hotel 0 23 2015 September
## 2130 City Hotel 0 5 2015 September
## 2131 City Hotel 0 0 2015 September
## 2132 City Hotel 0 18 2015 September
## 2133 City Hotel 0 63 2015 September
## 2134 City Hotel 0 63 2015 September
## 2135 City Hotel 0 63 2015 September
## 2136 City Hotel 1 79 2015 September
## 2137 City Hotel 1 49 2015 September
## 2138 City Hotel 0 63 2015 September
## 2139 City Hotel 0 63 2015 September
## 2140 City Hotel 0 63 2015 September
## 2141 City Hotel 0 18 2015 September
## 2142 City Hotel 0 63 2015 September
## 2143 City Hotel 0 63 2015 September
## 2144 City Hotel 1 49 2015 September
## 2145 City Hotel 0 63 2015 September
## 2146 City Hotel 0 63 2015 September
## 2147 City Hotel 0 16 2015 September
## 2148 City Hotel 0 18 2015 September
## 2149 City Hotel 0 63 2015 September
## 2150 City Hotel 0 63 2015 September
## 2151 City Hotel 0 20 2015 September
## 2152 City Hotel 0 9 2015 September
## 2153 City Hotel 0 16 2015 September
## 2154 City Hotel 0 20 2015 September
## 2155 City Hotel 0 19 2015 September
## 2156 City Hotel 0 10 2015 September
## 2157 City Hotel 0 1 2015 September
## 2158 City Hotel 0 0 2015 September
## 2159 City Hotel 0 0 2015 September
## 2160 City Hotel 0 0 2015 September
## 2161 City Hotel 0 1 2015 September
## 2162 City Hotel 0 6 2015 September
## 2163 City Hotel 0 2 2015 September
## 2164 City Hotel 0 21 2015 September
## 2165 City Hotel 0 3 2015 September
## 2166 City Hotel 0 5 2015 September
## 2167 City Hotel 0 5 2015 September
## 2168 City Hotel 0 22 2015 September
## 2169 City Hotel 0 1 2015 September
## 2170 City Hotel 0 8 2015 September
## 2171 City Hotel 0 97 2015 September
## 2172 City Hotel 1 8 2015 September
## 2173 City Hotel 0 80 2015 September
## 2174 City Hotel 0 10 2015 September
## 2175 City Hotel 0 21 2015 September
## 2176 City Hotel 0 0 2015 September
## 2177 City Hotel 0 1 2015 September
## 2178 City Hotel 0 5 2015 September
## 2179 City Hotel 0 8 2015 September
## 2180 City Hotel 0 8 2015 September
## 2181 City Hotel 0 16 2015 September
## 2182 City Hotel 0 27 2015 September
## 2183 City Hotel 0 13 2015 September
## 2184 City Hotel 0 80 2015 September
## 2185 City Hotel 0 10 2015 September
## 2186 City Hotel 0 21 2015 September
## 2187 City Hotel 0 28 2015 September
## 2188 City Hotel 0 9 2015 September
## 2189 City Hotel 0 28 2015 September
## 2190 City Hotel 0 10 2015 September
## 2191 City Hotel 0 6 2015 September
## 2192 City Hotel 0 1 2015 September
## 2193 City Hotel 0 3 2015 September
## 2194 City Hotel 0 41 2015 September
## 2195 City Hotel 0 0 2015 September
## 2196 City Hotel 0 23 2015 September
## 2197 City Hotel 0 41 2015 September
## 2198 City Hotel 0 41 2015 September
## 2199 City Hotel 0 41 2015 September
## 2200 City Hotel 0 14 2015 September
## 2201 City Hotel 0 6 2015 September
## 2202 City Hotel 0 41 2015 September
## 2203 City Hotel 0 63 2015 September
## 2204 City Hotel 0 63 2015 September
## 2205 City Hotel 1 0 2015 September
## 2206 City Hotel 0 63 2015 September
## 2207 City Hotel 0 63 2015 September
## 2208 City Hotel 0 8 2015 September
## 2209 City Hotel 0 18 2015 September
## 2210 City Hotel 0 63 2015 September
## 2211 City Hotel 1 63 2015 September
## 2212 City Hotel 0 63 2015 September
## 2213 City Hotel 0 63 2015 September
## 2214 City Hotel 0 3 2015 September
## 2215 City Hotel 1 63 2015 September
## 2216 City Hotel 1 63 2015 September
## 2217 City Hotel 0 63 2015 September
## 2218 City Hotel 0 63 2015 September
## 2219 City Hotel 1 63 2015 September
## 2220 City Hotel 0 63 2015 September
## 2221 City Hotel 0 63 2015 September
## 2222 City Hotel 0 11 2015 September
## 2223 City Hotel 0 4 2015 September
## 2224 City Hotel 0 63 2015 September
## 2225 City Hotel 1 63 2015 September
## 2226 City Hotel 1 63 2015 September
## 2227 City Hotel 1 63 2015 September
## 2228 City Hotel 0 63 2015 September
## 2229 City Hotel 0 63 2015 September
## 2230 City Hotel 1 63 2015 September
## 2231 City Hotel 1 63 2015 September
## 2232 City Hotel 0 1 2015 September
## 2233 City Hotel 1 106 2015 September
## 2234 City Hotel 0 63 2015 September
## 2235 City Hotel 0 63 2015 September
## 2236 City Hotel 0 11 2015 September
## 2237 City Hotel 0 3 2015 September
## 2238 City Hotel 0 162 2015 September
## 2239 City Hotel 0 16 2015 September
## 2240 City Hotel 0 23 2015 September
## 2241 City Hotel 0 41 2015 September
## 2242 City Hotel 0 1 2015 September
## 2243 City Hotel 0 41 2015 September
## 2244 City Hotel 0 0 2015 September
## 2245 City Hotel 0 41 2015 September
## 2246 City Hotel 0 162 2015 September
## 2247 City Hotel 0 9 2015 September
## 2248 City Hotel 0 1 2015 September
## 2249 City Hotel 0 14 2015 September
## 2250 City Hotel 0 23 2015 September
## 2251 City Hotel 0 21 2015 September
## 2252 City Hotel 0 39 2015 September
## 2253 City Hotel 0 14 2015 September
## 2254 City Hotel 0 28 2015 September
## 2255 City Hotel 0 22 2015 September
## 2256 City Hotel 0 162 2015 September
## 2257 City Hotel 0 22 2015 September
## 2258 City Hotel 0 22 2015 September
## 2259 City Hotel 0 60 2015 September
## 2260 City Hotel 0 22 2015 September
## 2261 City Hotel 0 13 2015 September
## 2262 City Hotel 0 14 2015 September
## 2263 City Hotel 0 22 2015 September
## 2264 City Hotel 0 14 2015 September
## 2265 City Hotel 1 69 2015 September
## 2266 City Hotel 1 69 2015 September
## 2267 City Hotel 0 22 2015 September
## 2268 City Hotel 0 82 2015 September
## 2269 City Hotel 0 10 2015 September
## 2270 City Hotel 0 12 2015 September
## 2271 City Hotel 0 3 2015 September
## 2272 City Hotel 0 0 2015 September
## 2273 City Hotel 0 0 2015 September
## 2274 City Hotel 0 10 2015 September
## 2275 City Hotel 0 0 2015 September
## 2276 City Hotel 0 2 2015 September
## 2277 City Hotel 1 0 2015 September
## 2278 City Hotel 1 5 2015 September
## 2279 City Hotel 0 0 2015 September
## 2280 City Hotel 1 25 2015 September
## 2281 City Hotel 0 82 2015 September
## 2282 City Hotel 0 9 2015 September
## 2283 City Hotel 0 7 2015 September
## 2284 City Hotel 1 65 2015 September
## 2285 City Hotel 1 65 2015 September
## 2286 City Hotel 1 65 2015 September
## 2287 City Hotel 0 16 2015 September
## 2288 City Hotel 0 15 2015 September
## 2289 City Hotel 1 65 2015 September
## 2290 City Hotel 1 65 2015 September
## 2291 City Hotel 1 65 2015 September
## 2292 City Hotel 1 65 2015 September
## 2293 City Hotel 1 65 2015 September
## 2294 City Hotel 1 65 2015 September
## 2295 City Hotel 0 26 2015 September
## 2296 City Hotel 1 65 2015 September
## 2297 City Hotel 1 65 2015 September
## 2298 City Hotel 1 65 2015 September
## 2299 City Hotel 1 65 2015 September
## 2300 City Hotel 1 65 2015 September
## 2301 City Hotel 1 65 2015 September
## 2302 City Hotel 1 65 2015 September
## 2303 City Hotel 0 26 2015 September
## 2304 City Hotel 0 16 2015 September
## 2305 City Hotel 1 65 2015 September
## 2306 City Hotel 1 65 2015 September
## 2307 City Hotel 1 65 2015 September
## 2308 City Hotel 1 65 2015 September
## 2309 City Hotel 0 16 2015 September
## 2310 City Hotel 1 65 2015 September
## 2311 City Hotel 1 65 2015 September
## 2312 City Hotel 1 65 2015 September
## 2313 City Hotel 1 65 2015 September
## 2314 City Hotel 1 65 2015 September
## 2315 City Hotel 1 65 2015 September
## 2316 City Hotel 0 14 2015 September
## 2317 City Hotel 0 18 2015 September
## 2318 City Hotel 1 65 2015 September
## 2319 City Hotel 0 21 2015 September
## 2320 City Hotel 1 65 2015 September
## 2321 City Hotel 1 65 2015 September
## 2322 City Hotel 1 65 2015 September
## 2323 City Hotel 1 65 2015 September
## 2324 City Hotel 0 47 2015 September
## 2325 City Hotel 0 19 2015 September
## 2326 City Hotel 0 21 2015 September
## 2327 City Hotel 0 16 2015 September
## 2328 City Hotel 0 32 2015 September
## 2329 City Hotel 0 26 2015 September
## 2330 City Hotel 0 32 2015 September
## 2331 City Hotel 0 17 2015 September
## 2332 City Hotel 0 16 2015 September
## 2333 City Hotel 0 23 2015 September
## 2334 City Hotel 0 16 2015 September
## 2335 City Hotel 0 4 2015 September
## 2336 City Hotel 1 61 2015 September
## 2337 City Hotel 1 61 2015 September
## 2338 City Hotel 0 3 2015 September
## 2339 City Hotel 0 3 2015 September
## 2340 City Hotel 0 61 2015 September
## 2341 City Hotel 1 61 2015 September
## 2342 City Hotel 1 61 2015 September
## 2343 City Hotel 0 61 2015 September
## 2344 City Hotel 0 21 2015 September
## 2345 City Hotel 0 61 2015 September
## 2346 City Hotel 0 61 2015 September
## 2347 City Hotel 1 61 2015 September
## 2348 City Hotel 0 3 2015 September
## 2349 City Hotel 0 61 2015 September
## 2350 City Hotel 1 61 2015 September
## 2351 City Hotel 1 61 2015 September
## 2352 City Hotel 1 61 2015 September
## 2353 City Hotel 0 30 2015 September
## 2354 City Hotel 0 4 2015 September
## 2355 City Hotel 0 61 2015 September
## 2356 City Hotel 0 61 2015 September
## 2357 City Hotel 0 61 2015 September
## 2358 City Hotel 0 21 2015 September
## 2359 City Hotel 0 3 2015 September
## 2360 City Hotel 1 3 2015 September
## 2361 City Hotel 0 3 2015 September
## 2362 City Hotel 0 2 2015 September
## 2363 City Hotel 1 61 2015 September
## 2364 City Hotel 1 61 2015 September
## 2365 City Hotel 0 3 2015 September
## 2366 City Hotel 0 61 2015 September
## 2367 City Hotel 0 61 2015 September
## 2368 City Hotel 1 61 2015 September
## 2369 City Hotel 1 61 2015 September
## 2370 City Hotel 0 4 2015 September
## 2371 City Hotel 1 61 2015 September
## 2372 City Hotel 1 61 2015 September
## 2373 City Hotel 1 61 2015 September
## 2374 City Hotel 0 3 2015 September
## 2375 City Hotel 1 61 2015 September
## 2376 City Hotel 1 61 2015 September
## 2377 City Hotel 1 3 2015 September
## 2378 City Hotel 0 3 2015 September
## 2379 City Hotel 0 2 2015 September
## 2380 City Hotel 0 10 2015 September
## 2381 City Hotel 0 10 2015 September
## 2382 City Hotel 0 10 2015 September
## 2383 City Hotel 0 16 2015 September
## 2384 City Hotel 1 26 2015 September
## 2385 City Hotel 0 22 2015 September
## 2386 City Hotel 1 14 2015 September
## 2387 City Hotel 0 61 2015 September
## 2388 City Hotel 0 61 2015 September
## 2389 City Hotel 1 61 2015 September
## 2390 City Hotel 1 61 2015 September
## 2391 City Hotel 0 72 2015 September
## 2392 City Hotel 0 1 2015 September
## 2393 City Hotel 1 1 2015 September
## 2394 City Hotel 0 55 2015 September
## 2395 City Hotel 0 55 2015 September
## 2396 City Hotel 0 55 2015 September
## 2397 City Hotel 1 55 2015 September
## 2398 City Hotel 1 55 2015 September
## 2399 City Hotel 0 63 2015 September
## 2400 City Hotel 0 22 2015 September
## 2401 City Hotel 0 55 2015 September
## 2402 City Hotel 0 55 2015 September
## 2403 City Hotel 0 55 2015 September
## 2404 City Hotel 0 55 2015 September
## 2405 City Hotel 0 55 2015 September
## 2406 City Hotel 1 55 2015 September
## 2407 City Hotel 0 1 2015 September
## 2408 City Hotel 0 55 2015 September
## 2409 City Hotel 0 55 2015 September
## 2410 City Hotel 0 55 2015 September
## 2411 City Hotel 0 55 2015 September
## 2412 City Hotel 0 55 2015 September
## 2413 City Hotel 0 55 2015 September
## 2414 City Hotel 1 1 2015 September
## 2415 City Hotel 1 1 2015 September
## 2416 City Hotel 0 55 2015 September
## 2417 City Hotel 0 55 2015 September
## 2418 City Hotel 0 55 2015 September
## 2419 City Hotel 0 55 2015 September
## 2420 City Hotel 0 55 2015 September
## 2421 City Hotel 0 55 2015 September
## 2422 City Hotel 0 55 2015 September
## 2423 City Hotel 0 55 2015 September
## 2424 City Hotel 0 1 2015 September
## 2425 City Hotel 0 1 2015 September
## 2426 City Hotel 0 55 2015 September
## 2427 City Hotel 0 55 2015 September
## 2428 City Hotel 1 55 2015 September
## 2429 City Hotel 0 55 2015 September
## 2430 City Hotel 0 55 2015 September
## 2431 City Hotel 0 55 2015 September
## 2432 City Hotel 0 55 2015 September
## 2433 City Hotel 0 55 2015 September
## 2434 City Hotel 0 55 2015 September
## 2435 City Hotel 1 55 2015 September
## 2436 City Hotel 1 1 2015 September
## 2437 City Hotel 0 55 2015 September
## 2438 City Hotel 0 55 2015 September
## 2439 City Hotel 0 55 2015 September
## 2440 City Hotel 0 55 2015 September
## 2441 City Hotel 0 55 2015 September
## 2442 City Hotel 0 55 2015 September
## 2443 City Hotel 0 55 2015 September
## 2444 City Hotel 0 1 2015 September
## 2445 City Hotel 1 0 2015 September
## 2446 City Hotel 0 55 2015 September
## 2447 City Hotel 0 55 2015 September
## 2448 City Hotel 1 1 2015 September
## 2449 City Hotel 0 1 2015 September
## 2450 City Hotel 0 55 2015 September
## 2451 City Hotel 0 55 2015 September
## 2452 City Hotel 0 55 2015 September
## 2453 City Hotel 0 55 2015 September
## 2454 City Hotel 0 55 2015 September
## 2455 City Hotel 0 55 2015 September
## 2456 City Hotel 0 55 2015 September
## 2457 City Hotel 0 55 2015 September
## 2458 City Hotel 0 55 2015 September
## 2459 City Hotel 0 55 2015 September
## 2460 City Hotel 0 55 2015 September
## 2461 City Hotel 0 55 2015 September
## 2462 City Hotel 0 55 2015 September
## 2463 City Hotel 0 55 2015 September
## 2464 City Hotel 0 55 2015 September
## 2465 City Hotel 0 55 2015 September
## 2466 City Hotel 0 55 2015 September
## 2467 City Hotel 0 55 2015 September
## 2468 City Hotel 0 55 2015 September
## 2469 City Hotel 0 55 2015 September
## 2470 City Hotel 0 67 2015 September
## 2471 City Hotel 0 69 2015 September
## 2472 City Hotel 0 1 2015 September
## 2473 City Hotel 0 67 2015 September
## 2474 City Hotel 0 67 2015 September
## 2475 City Hotel 0 23 2015 September
## 2476 City Hotel 0 23 2015 September
## 2477 City Hotel 0 15 2015 September
## 2478 City Hotel 0 81 2015 September
## 2479 City Hotel 0 2 2015 September
## 2480 City Hotel 0 6 2015 September
## 2481 City Hotel 0 1 2015 September
## 2482 City Hotel 1 4 2015 September
## 2483 City Hotel 0 0 2015 September
## 2484 City Hotel 0 1 2015 September
## 2485 City Hotel 0 0 2015 September
## 2486 City Hotel 0 0 2015 September
## 2487 City Hotel 1 28 2015 September
## 2488 City Hotel 1 7 2015 September
## 2489 City Hotel 0 3 2015 September
## 2490 City Hotel 0 0 2015 September
## 2491 City Hotel 1 32 2015 September
## 2492 City Hotel 1 6 2015 September
## 2493 City Hotel 0 0 2015 September
## 2494 City Hotel 0 9 2015 September
## 2495 City Hotel 0 0 2015 September
## 2496 City Hotel 0 0 2015 September
## 2497 City Hotel 0 4 2015 September
## 2498 City Hotel 1 3 2015 September
## 2499 City Hotel 0 0 2015 September
## 2500 City Hotel 0 52 2015 September
## 2501 City Hotel 0 10 2015 September
## 2502 City Hotel 0 14 2015 September
## 2503 City Hotel 0 0 2015 September
## 2504 City Hotel 0 13 2015 September
## 2505 City Hotel 0 24 2015 September
## 2506 City Hotel 0 9 2015 September
## 2507 City Hotel 0 9 2015 September
## 2508 City Hotel 0 0 2015 September
## 2509 City Hotel 0 0 2015 September
## 2510 City Hotel 0 0 2015 September
## 2511 City Hotel 0 7 2015 September
## 2512 City Hotel 0 0 2015 September
## 2513 City Hotel 0 5 2015 September
## 2514 City Hotel 0 3 2015 September
## 2515 City Hotel 0 16 2015 September
## 2516 City Hotel 0 28 2015 September
## 2517 City Hotel 0 18 2015 September
## 2518 City Hotel 0 10 2015 September
## 2519 City Hotel 0 0 2015 September
## 2520 City Hotel 0 14 2015 September
## 2521 City Hotel 1 3 2015 September
## 2522 City Hotel 0 5 2015 September
## 2523 City Hotel 0 9 2015 September
## 2524 City Hotel 0 3 2015 September
## 2525 City Hotel 1 0 2015 September
## 2526 City Hotel 0 4 2015 September
## 2527 City Hotel 0 5 2015 September
## 2528 City Hotel 0 6 2015 September
## 2529 City Hotel 0 6 2015 September
## 2530 City Hotel 0 14 2015 September
## 2531 City Hotel 0 10 2015 September
## 2532 City Hotel 0 0 2015 September
## 2533 City Hotel 1 9 2015 September
## 2534 City Hotel 0 3 2015 September
## 2535 City Hotel 0 0 2015 September
## 2536 City Hotel 0 21 2015 September
## 2537 City Hotel 0 14 2015 September
## 2538 City Hotel 0 13 2015 September
## 2539 City Hotel 0 23 2015 September
## 2540 City Hotel 1 18 2015 September
## 2541 City Hotel 0 1 2015 September
## 2542 City Hotel 0 0 2015 September
## 2543 City Hotel 0 0 2015 September
## 2544 City Hotel 0 0 2015 September
## 2545 City Hotel 0 0 2015 September
## 2546 City Hotel 0 0 2015 September
## 2547 City Hotel 0 0 2015 September
## 2548 City Hotel 0 26 2015 September
## 2549 City Hotel 0 0 2015 September
## 2550 City Hotel 0 0 2015 September
## 2551 City Hotel 0 0 2015 September
## 2552 City Hotel 0 0 2015 September
## 2553 City Hotel 0 1 2015 September
## 2554 City Hotel 0 8 2015 September
## 2555 City Hotel 0 0 2015 September
## 2556 City Hotel 1 1 2015 September
## 2557 City Hotel 0 8 2015 September
## 2558 City Hotel 0 0 2015 September
## 2559 City Hotel 0 7 2015 September
## 2560 City Hotel 0 5 2015 September
## 2561 City Hotel 0 8 2015 September
## 2562 City Hotel 0 11 2015 September
## 2563 City Hotel 0 7 2015 September
## 2564 City Hotel 0 0 2015 September
## 2565 City Hotel 0 14 2015 September
## 2566 City Hotel 0 173 2015 September
## 2567 City Hotel 0 15 2015 September
## 2568 City Hotel 0 15 2015 September
## 2569 City Hotel 0 15 2015 September
## 2570 City Hotel 0 5 2015 September
## 2571 City Hotel 0 4 2015 September
## 2572 City Hotel 0 3 2015 September
## 2573 City Hotel 1 11 2015 September
## 2574 City Hotel 0 0 2015 September
## 2575 City Hotel 0 5 2015 September
## 2576 City Hotel 0 0 2015 September
## 2577 City Hotel 0 0 2015 September
## 2578 City Hotel 0 0 2015 September
## 2579 City Hotel 0 22 2015 September
## 2580 City Hotel 0 0 2015 September
## 2581 City Hotel 0 0 2015 September
## 2582 City Hotel 0 10 2015 September
## 2583 City Hotel 1 11 2015 September
## 2584 City Hotel 0 0 2015 September
## 2585 City Hotel 0 45 2015 September
## 2586 City Hotel 1 164 2015 September
## 2587 City Hotel 0 13 2015 September
## 2588 City Hotel 0 7 2015 September
## 2589 City Hotel 0 15 2015 September
## 2590 City Hotel 0 4 2015 September
## 2591 City Hotel 0 42 2015 September
## 2592 City Hotel 0 5 2015 September
## 2593 City Hotel 0 8 2015 September
## 2594 City Hotel 0 2 2015 September
## 2595 City Hotel 0 69 2015 September
## 2596 City Hotel 0 69 2015 September
## 2597 City Hotel 0 1 2015 September
## 2598 City Hotel 0 1 2015 September
## 2599 City Hotel 0 16 2015 September
## 2600 City Hotel 0 86 2015 September
## 2601 City Hotel 0 86 2015 September
## 2602 City Hotel 1 86 2015 September
## 2603 City Hotel 0 85 2015 September
## 2604 City Hotel 0 69 2015 September
## 2605 City Hotel 0 69 2015 September
## 2606 City Hotel 0 0 2015 September
## 2607 City Hotel 0 5 2015 September
## 2608 City Hotel 0 0 2015 September
## 2609 City Hotel 0 0 2015 September
## 2610 City Hotel 0 103 2015 September
## 2611 City Hotel 0 8 2015 September
## 2612 City Hotel 0 2 2015 September
## 2613 City Hotel 0 0 2015 September
## 2614 City Hotel 0 12 2015 September
## 2615 City Hotel 0 69 2015 September
## 2616 City Hotel 0 69 2015 September
## 2617 City Hotel 0 85 2015 September
## 2618 City Hotel 0 85 2015 September
## 2619 City Hotel 0 86 2015 September
## 2620 City Hotel 0 86 2015 September
## 2621 City Hotel 0 69 2015 September
## 2622 City Hotel 0 69 2015 September
## 2623 City Hotel 1 69 2015 September
## 2624 City Hotel 1 86 2015 September
## 2625 City Hotel 1 86 2015 September
## 2626 City Hotel 1 86 2015 September
## 2627 City Hotel 1 55 2015 September
## 2628 City Hotel 0 69 2015 September
## 2629 City Hotel 0 69 2015 September
## 2630 City Hotel 0 69 2015 September
## 2631 City Hotel 1 69 2015 September
## 2632 City Hotel 0 86 2015 September
## 2633 City Hotel 0 15 2015 September
## 2634 City Hotel 0 86 2015 September
## 2635 City Hotel 1 85 2015 September
## 2636 City Hotel 0 69 2015 September
## 2637 City Hotel 0 69 2015 September
## 2638 City Hotel 1 69 2015 September
## 2639 City Hotel 0 1 2015 September
## 2640 City Hotel 1 1 2015 September
## 2641 City Hotel 0 5 2015 September
## 2642 City Hotel 0 86 2015 September
## 2643 City Hotel 0 86 2015 September
## 2644 City Hotel 1 86 2015 September
## 2645 City Hotel 0 85 2015 September
## 2646 City Hotel 0 86 2015 September
## 2647 City Hotel 1 86 2015 September
## 2648 City Hotel 0 69 2015 September
## 2649 City Hotel 0 69 2015 September
## 2650 City Hotel 0 1 2015 September
## 2651 City Hotel 0 1 2015 September
## 2652 City Hotel 0 12 2015 September
## 2653 City Hotel 0 69 2015 September
## 2654 City Hotel 0 69 2015 September
## 2655 City Hotel 0 86 2015 September
## 2656 City Hotel 1 86 2015 September
## 2657 City Hotel 1 86 2015 September
## 2658 City Hotel 0 69 2015 September
## 2659 City Hotel 0 69 2015 September
## 2660 City Hotel 1 69 2015 September
## 2661 City Hotel 0 107 2015 September
## 2662 City Hotel 0 86 2015 September
## 2663 City Hotel 0 86 2015 September
## 2664 City Hotel 0 69 2015 September
## 2665 City Hotel 0 69 2015 September
## 2666 City Hotel 0 69 2015 September
## 2667 City Hotel 0 86 2015 September
## 2668 City Hotel 0 85 2015 September
## 2669 City Hotel 1 85 2015 September
## 2670 City Hotel 0 1 2015 September
## 2671 City Hotel 0 86 2015 September
## 2672 City Hotel 0 86 2015 September
## 2673 City Hotel 0 85 2015 September
## 2674 City Hotel 0 69 2015 September
## 2675 City Hotel 0 69 2015 September
## 2676 City Hotel 0 71 2015 September
## 2677 City Hotel 0 86 2015 September
## 2678 City Hotel 1 86 2015 September
## 2679 City Hotel 0 69 2015 September
## 2680 City Hotel 0 69 2015 September
## 2681 City Hotel 0 69 2015 September
## 2682 City Hotel 1 86 2015 September
## 2683 City Hotel 0 86 2015 September
## 2684 City Hotel 0 86 2015 September
## 2685 City Hotel 0 71 2015 September
## 2686 City Hotel 0 1 2015 September
## 2687 City Hotel 0 86 2015 September
## 2688 City Hotel 0 86 2015 September
## 2689 City Hotel 0 2 2015 September
## 2690 City Hotel 0 16 2015 September
## 2691 City Hotel 0 0 2015 September
## 2692 City Hotel 0 11 2015 September
## 2693 City Hotel 0 0 2015 September
## 2694 City Hotel 0 16 2015 September
## 2695 City Hotel 0 1 2015 September
## 2696 City Hotel 0 1 2015 September
## 2697 City Hotel 0 14 2015 September
## 2698 City Hotel 0 15 2015 September
## 2699 City Hotel 1 18 2015 September
## 2700 City Hotel 1 15 2015 September
## 2701 City Hotel 0 8 2015 September
## 2702 City Hotel 0 3 2015 September
## 2703 City Hotel 0 1 2015 September
## 2704 City Hotel 0 16 2015 September
## 2705 City Hotel 0 1 2015 September
## 2706 City Hotel 1 6 2015 September
## 2707 City Hotel 0 2 2015 September
## 2708 City Hotel 1 6 2015 September
## 2709 City Hotel 1 87 2015 September
## 2710 City Hotel 1 6 2015 September
## 2711 City Hotel 0 2 2015 September
## 2712 City Hotel 1 9 2015 September
## 2713 City Hotel 1 6 2015 September
## 2714 City Hotel 0 2 2015 September
## 2715 City Hotel 1 9 2015 September
## 2716 City Hotel 1 44 2015 September
## 2717 City Hotel 1 44 2015 September
## 2718 City Hotel 1 44 2015 September
## 2719 City Hotel 1 44 2015 September
## 2720 City Hotel 1 44 2015 September
## 2721 City Hotel 0 0 2015 September
## 2722 City Hotel 0 28 2015 September
## 2723 City Hotel 1 44 2015 September
## 2724 City Hotel 0 2 2015 September
## 2725 City Hotel 0 12 2015 September
## 2726 City Hotel 1 44 2015 September
## 2727 City Hotel 1 44 2015 September
## 2728 City Hotel 1 44 2015 September
## 2729 City Hotel 1 44 2015 September
## 2730 City Hotel 1 44 2015 September
## 2731 City Hotel 1 44 2015 September
## 2732 City Hotel 1 44 2015 September
## 2733 City Hotel 1 44 2015 September
## 2734 City Hotel 1 44 2015 September
## 2735 City Hotel 0 17 2015 September
## 2736 City Hotel 1 44 2015 September
## 2737 City Hotel 1 44 2015 September
## 2738 City Hotel 1 44 2015 September
## 2739 City Hotel 1 44 2015 September
## 2740 City Hotel 1 44 2015 September
## 2741 City Hotel 1 44 2015 September
## 2742 City Hotel 1 44 2015 September
## 2743 City Hotel 1 44 2015 September
## 2744 City Hotel 0 58 2015 September
## 2745 City Hotel 0 17 2015 September
## 2746 City Hotel 0 5 2015 September
## 2747 City Hotel 0 2 2015 September
## 2748 City Hotel 0 6 2015 September
## 2749 City Hotel 0 3 2015 September
## 2750 City Hotel 0 16 2015 September
## 2751 City Hotel 0 2 2015 September
## 2752 City Hotel 0 14 2015 September
## 2753 City Hotel 1 17 2015 September
## 2754 City Hotel 1 44 2015 September
## 2755 City Hotel 1 44 2015 September
## 2756 City Hotel 1 5 2015 September
## 2757 City Hotel 0 34 2015 September
## 2758 City Hotel 0 3 2015 September
## 2759 City Hotel 0 24 2015 September
## 2760 City Hotel 1 21 2015 September
## 2761 City Hotel 1 21 2015 September
## 2762 City Hotel 0 9 2015 September
## 2763 City Hotel 0 23 2015 September
## 2764 City Hotel 0 6 2015 September
## 2765 City Hotel 1 22 2015 September
## 2766 City Hotel 0 115 2015 September
## 2767 City Hotel 1 15 2015 September
## 2768 City Hotel 1 48 2015 September
## 2769 City Hotel 0 168 2015 September
## 2770 City Hotel 0 168 2015 September
## 2771 City Hotel 0 168 2015 September
## 2772 City Hotel 0 168 2015 September
## 2773 City Hotel 1 168 2015 September
## 2774 City Hotel 1 87 2015 September
## 2775 City Hotel 1 87 2015 September
## 2776 City Hotel 0 72 2015 September
## 2777 City Hotel 0 72 2015 September
## 2778 City Hotel 0 168 2015 September
## 2779 City Hotel 0 148 2015 September
## 2780 City Hotel 1 8 2015 September
## 2781 City Hotel 0 8 2015 September
## 2782 City Hotel 0 48 2015 September
## 2783 City Hotel 0 48 2015 September
## 2784 City Hotel 0 48 2015 September
## 2785 City Hotel 0 31 2015 September
## 2786 City Hotel 0 168 2015 September
## 2787 City Hotel 0 48 2015 September
## 2788 City Hotel 0 48 2015 September
## 2789 City Hotel 0 48 2015 September
## 2790 City Hotel 0 48 2015 September
## 2791 City Hotel 0 48 2015 September
## 2792 City Hotel 1 48 2015 September
## 2793 City Hotel 1 48 2015 September
## 2794 City Hotel 0 72 2015 September
## 2795 City Hotel 0 168 2015 September
## 2796 City Hotel 0 168 2015 September
## 2797 City Hotel 0 168 2015 September
## 2798 City Hotel 0 168 2015 September
## 2799 City Hotel 1 168 2015 September
## 2800 City Hotel 0 41 2015 September
## 2801 City Hotel 0 32 2015 September
## 2802 City Hotel 0 148 2015 September
## 2803 City Hotel 0 72 2015 September
## 2804 City Hotel 0 168 2015 September
## 2805 City Hotel 0 168 2015 September
## 2806 City Hotel 0 168 2015 September
## 2807 City Hotel 0 168 2015 September
## 2808 City Hotel 1 72 2015 September
## 2809 City Hotel 0 72 2015 September
## 2810 City Hotel 1 87 2015 September
## 2811 City Hotel 1 87 2015 September
## 2812 City Hotel 0 0 2015 September
## 2813 City Hotel 0 72 2015 September
## 2814 City Hotel 0 168 2015 September
## 2815 City Hotel 0 168 2015 September
## 2816 City Hotel 0 168 2015 September
## 2817 City Hotel 0 10 2015 September
## 2818 City Hotel 0 11 2015 September
## 2819 City Hotel 0 58 2015 September
## 2820 City Hotel 0 72 2015 September
## 2821 City Hotel 0 168 2015 September
## 2822 City Hotel 1 168 2015 September
## 2823 City Hotel 0 0 2015 September
## 2824 City Hotel 0 168 2015 September
## 2825 City Hotel 0 168 2015 September
## 2826 City Hotel 1 168 2015 September
## 2827 City Hotel 1 72 2015 September
## 2828 City Hotel 0 168 2015 September
## 2829 City Hotel 0 168 2015 September
## 2830 City Hotel 0 168 2015 September
## 2831 City Hotel 1 168 2015 September
## 2832 City Hotel 1 87 2015 September
## 2833 City Hotel 1 87 2015 September
## 2834 City Hotel 0 72 2015 September
## 2835 City Hotel 0 168 2015 September
## 2836 City Hotel 0 168 2015 September
## 2837 City Hotel 0 168 2015 September
## 2838 City Hotel 1 8 2015 September
## 2839 City Hotel 0 16 2015 September
## 2840 City Hotel 0 48 2015 September
## 2841 City Hotel 1 38 2015 September
## 2842 City Hotel 1 6 2015 September
## 2843 City Hotel 1 18 2015 September
## 2844 City Hotel 0 175 2015 September
## 2845 City Hotel 0 15 2015 September
## 2846 City Hotel 0 46 2015 September
## 2847 City Hotel 1 28 2015 September
## 2848 City Hotel 1 28 2015 September
## 2849 City Hotel 0 9 2015 September
## 2850 City Hotel 1 17 2015 September
## 2851 City Hotel 0 72 2015 September
## 2852 City Hotel 0 72 2015 September
## 2853 City Hotel 0 168 2015 September
## 2854 City Hotel 0 168 2015 September
## 2855 City Hotel 0 168 2015 September
## 2856 City Hotel 1 168 2015 September
## 2857 City Hotel 1 168 2015 September
## 2858 City Hotel 1 17 2015 September
## 2859 City Hotel 0 9 2015 September
## 2860 City Hotel 0 2 2015 September
## 2861 City Hotel 1 87 2015 September
## 2862 City Hotel 0 72 2015 September
## 2863 City Hotel 0 168 2015 September
## 2864 City Hotel 1 168 2015 September
## 2865 City Hotel 1 2 2015 September
## 2866 City Hotel 0 17 2015 September
## 2867 City Hotel 1 9 2015 September
## 2868 City Hotel 0 48 2015 September
## 2869 City Hotel 0 48 2015 September
## 2870 City Hotel 1 87 2015 September
## 2871 City Hotel 1 87 2015 September
## 2872 City Hotel 0 48 2015 September
## 2873 City Hotel 0 48 2015 September
## 2874 City Hotel 1 87 2015 September
## 2875 City Hotel 0 4 2015 September
## 2876 City Hotel 0 48 2015 September
## 2877 City Hotel 0 11 2015 September
## 2878 City Hotel 0 48 2015 September
## 2879 City Hotel 0 13 2015 September
## 2880 City Hotel 0 0 2015 September
## 2881 City Hotel 0 9 2015 September
## 2882 City Hotel 1 17 2015 September
## 2883 City Hotel 0 48 2015 September
## 2884 City Hotel 0 48 2015 September
## 2885 City Hotel 1 87 2015 September
## 2886 City Hotel 0 168 2015 September
## 2887 City Hotel 1 168 2015 September
## 2888 City Hotel 0 72 2015 September
## 2889 City Hotel 0 72 2015 September
## 2890 City Hotel 0 3 2015 September
## 2891 City Hotel 0 72 2015 September
## 2892 City Hotel 0 168 2015 September
## 2893 City Hotel 0 168 2015 September
## 2894 City Hotel 0 168 2015 September
## 2895 City Hotel 1 168 2015 September
## 2896 City Hotel 1 168 2015 September
## 2897 City Hotel 1 87 2015 September
## 2898 City Hotel 1 87 2015 September
## 2899 City Hotel 0 148 2015 September
## 2900 City Hotel 1 72 2015 September
## 2901 City Hotel 0 168 2015 September
## 2902 City Hotel 0 168 2015 September
## 2903 City Hotel 0 168 2015 September
## 2904 City Hotel 0 10 2015 September
## 2905 City Hotel 0 0 2015 September
## 2906 City Hotel 1 87 2015 September
## 2907 City Hotel 0 168 2015 September
## 2908 City Hotel 0 168 2015 September
## 2909 City Hotel 1 168 2015 September
## 2910 City Hotel 1 7 2015 September
## 2911 City Hotel 1 8 2015 September
## 2912 City Hotel 0 3 2015 September
## 2913 City Hotel 0 170 2015 September
## 2914 City Hotel 0 170 2015 September
## 2915 City Hotel 0 11 2015 September
## 2916 City Hotel 0 29 2015 September
## 2917 City Hotel 0 170 2015 September
## 2918 City Hotel 0 26 2015 September
## 2919 City Hotel 0 4 2015 September
## 2920 City Hotel 1 65 2015 September
## 2921 City Hotel 1 65 2015 September
## 2922 City Hotel 1 65 2015 September
## 2923 City Hotel 1 65 2015 September
## 2924 City Hotel 1 65 2015 September
## 2925 City Hotel 1 28 2015 September
## 2926 City Hotel 1 65 2015 September
## 2927 City Hotel 1 65 2015 September
## 2928 City Hotel 1 65 2015 September
## 2929 City Hotel 0 26 2015 September
## 2930 City Hotel 0 12 2015 September
## 2931 City Hotel 1 65 2015 September
## 2932 City Hotel 0 44 2015 September
## 2933 City Hotel 0 9 2015 September
## 2934 City Hotel 1 65 2015 September
## 2935 City Hotel 0 68 2015 September
## 2936 City Hotel 0 68 2015 September
## 2937 City Hotel 1 68 2015 September
## 2938 City Hotel 1 68 2015 September
## 2939 City Hotel 0 60 2015 September
## 2940 City Hotel 0 68 2015 September
## 2941 City Hotel 0 68 2015 September
## 2942 City Hotel 0 68 2015 September
## 2943 City Hotel 0 68 2015 September
## 2944 City Hotel 0 68 2015 September
## 2945 City Hotel 0 68 2015 September
## 2946 City Hotel 0 68 2015 September
## 2947 City Hotel 0 68 2015 September
## 2948 City Hotel 0 68 2015 September
## 2949 City Hotel 0 68 2015 September
## 2950 City Hotel 0 68 2015 September
## 2951 City Hotel 0 68 2015 September
## 2952 City Hotel 0 68 2015 September
## 2953 City Hotel 0 68 2015 September
## 2954 City Hotel 1 68 2015 September
## 2955 City Hotel 0 68 2015 September
## 2956 City Hotel 0 68 2015 September
## 2957 City Hotel 0 92 2015 September
## 2958 City Hotel 0 68 2015 September
## 2959 City Hotel 0 68 2015 September
## 2960 City Hotel 0 68 2015 September
## 2961 City Hotel 1 68 2015 September
## 2962 City Hotel 0 68 2015 September
## 2963 City Hotel 0 68 2015 September
## 2964 City Hotel 1 68 2015 September
## 2965 City Hotel 0 68 2015 September
## 2966 City Hotel 0 68 2015 September
## 2967 City Hotel 0 60 2015 September
## 2968 City Hotel 0 7 2015 September
## 2969 City Hotel 0 30 2015 September
## 2970 City Hotel 0 9 2015 September
## 2971 City Hotel 0 68 2015 September
## 2972 City Hotel 1 10 2015 September
## 2973 City Hotel 0 68 2015 September
## 2974 City Hotel 0 12 2015 September
## 2975 City Hotel 0 21 2015 September
## 2976 City Hotel 0 30 2015 September
## 2977 City Hotel 1 30 2015 September
## 2978 City Hotel 1 90 2015 September
## 2979 City Hotel 0 16 2015 September
## 2980 City Hotel 0 4 2015 September
## 2981 City Hotel 0 16 2015 September
## 2982 City Hotel 0 11 2015 September
## 2983 City Hotel 0 30 2015 September
## 2984 City Hotel 0 34 2015 September
## 2985 City Hotel 0 39 2015 September
## 2986 City Hotel 0 13 2015 September
## 2987 City Hotel 0 18 2015 September
## 2988 City Hotel 0 25 2015 September
## 2989 City Hotel 0 13 2015 September
## 2990 City Hotel 0 19 2015 September
## 2991 City Hotel 0 13 2015 September
## 2992 City Hotel 0 6 2015 September
## 2993 City Hotel 1 40 2015 September
## 2994 City Hotel 1 40 2015 September
## 2995 City Hotel 0 34 2015 September
## 2996 City Hotel 0 76 2015 September
## 2997 City Hotel 0 78 2015 September
## 2998 City Hotel 0 11 2015 September
## 2999 City Hotel 0 6 2015 September
## 3000 City Hotel 0 18 2015 September
## 3001 City Hotel 0 18 2015 September
## 3002 City Hotel 0 35 2015 September
## 3003 City Hotel 0 5 2015 September
## 3004 City Hotel 0 33 2015 September
## 3005 City Hotel 1 135 2015 September
## 3006 City Hotel 0 135 2015 September
## 3007 City Hotel 0 19 2015 September
## 3008 City Hotel 0 14 2015 September
## 3009 City Hotel 0 135 2015 September
## 3010 City Hotel 0 135 2015 September
## 3011 City Hotel 0 135 2015 September
## 3012 City Hotel 0 135 2015 September
## 3013 City Hotel 0 135 2015 September
## 3014 City Hotel 0 135 2015 September
## 3015 City Hotel 0 12 2015 September
## 3016 City Hotel 0 135 2015 September
## 3017 City Hotel 0 20 2015 September
## 3018 City Hotel 1 135 2015 September
## 3019 City Hotel 0 17 2015 September
## 3020 City Hotel 0 135 2015 September
## 3021 City Hotel 0 135 2015 September
## 3022 City Hotel 0 7 2015 September
## 3023 City Hotel 0 6 2015 September
## 3024 City Hotel 0 135 2015 September
## 3025 City Hotel 0 135 2015 September
## 3026 City Hotel 0 6 2015 September
## 3027 City Hotel 0 20 2015 September
## 3028 City Hotel 0 25 2015 September
## 3029 City Hotel 1 38 2015 September
## 3030 City Hotel 0 23 2015 September
## 3031 City Hotel 0 14 2015 September
## 3032 City Hotel 0 30 2015 September
## 3033 City Hotel 0 13 2015 September
## 3034 City Hotel 1 12 2015 September
## 3035 City Hotel 0 20 2015 September
## 3036 City Hotel 1 14 2015 September
## 3037 City Hotel 0 17 2015 September
## 3038 City Hotel 0 38 2015 September
## 3039 City Hotel 0 35 2015 September
## 3040 City Hotel 0 8 2015 September
## 3041 City Hotel 0 29 2015 September
## 3042 City Hotel 0 18 2015 September
## 3043 City Hotel 0 61 2015 September
## 3044 City Hotel 1 34 2015 September
## 3045 City Hotel 0 61 2015 September
## 3046 City Hotel 1 34 2015 September
## 3047 City Hotel 0 14 2015 September
## 3048 City Hotel 0 8 2015 September
## 3049 City Hotel 0 0 2015 September
## 3050 City Hotel 1 54 2015 September
## 3051 City Hotel 0 74 2015 September
## 3052 City Hotel 0 14 2015 September
## 3053 City Hotel 0 42 2015 September
## 3054 City Hotel 1 33 2015 September
## 3055 City Hotel 0 29 2015 September
## 3056 City Hotel 0 29 2015 September
## 3057 City Hotel 0 31 2015 September
## 3058 City Hotel 0 7 2015 September
## 3059 City Hotel 0 14 2015 September
## 3060 City Hotel 0 22 2015 September
## 3061 City Hotel 0 10 2015 September
## 3062 City Hotel 0 33 2015 September
## 3063 City Hotel 0 14 2015 September
## 3064 City Hotel 0 24 2015 September
## 3065 City Hotel 0 87 2015 September
## 3066 City Hotel 0 25 2015 September
## 3067 City Hotel 0 14 2015 September
## 3068 City Hotel 0 14 2015 September
## 3069 City Hotel 0 11 2015 September
## 3070 City Hotel 0 18 2015 September
## 3071 City Hotel 0 14 2015 September
## 3072 City Hotel 0 20 2015 September
## 3073 City Hotel 0 14 2015 September
## 3074 City Hotel 0 6 2015 September
## 3075 City Hotel 0 28 2015 September
## 3076 City Hotel 1 76 2015 September
## 3077 City Hotel 0 14 2015 September
## 3078 City Hotel 0 14 2015 September
## 3079 City Hotel 0 14 2015 September
## 3080 City Hotel 0 42 2015 September
## 3081 City Hotel 0 87 2015 September
## 3082 City Hotel 0 28 2015 September
## 3083 City Hotel 0 14 2015 September
## 3084 City Hotel 0 26 2015 September
## 3085 City Hotel 0 12 2015 September
## 3086 City Hotel 0 12 2015 September
## 3087 City Hotel 0 14 2015 September
## 3088 City Hotel 0 20 2015 September
## 3089 City Hotel 0 76 2015 September
## 3090 City Hotel 0 32 2015 September
## 3091 City Hotel 0 13 2015 September
## 3092 City Hotel 0 27 2015 September
## 3093 City Hotel 0 30 2015 September
## 3094 City Hotel 0 76 2015 September
## 3095 City Hotel 0 76 2015 September
## 3096 City Hotel 1 13 2015 September
## 3097 City Hotel 0 37 2015 September
## 3098 City Hotel 0 76 2015 September
## 3099 City Hotel 0 76 2015 September
## 3100 City Hotel 0 76 2015 September
## 3101 City Hotel 0 76 2015 September
## 3102 City Hotel 0 37 2015 September
## 3103 City Hotel 0 37 2015 September
## 3104 City Hotel 0 37 2015 September
## 3105 City Hotel 0 76 2015 September
## 3106 City Hotel 0 76 2015 September
## 3107 City Hotel 1 8 2015 September
## 3108 City Hotel 0 76 2015 September
## 3109 City Hotel 0 76 2015 September
## 3110 City Hotel 0 76 2015 September
## 3111 City Hotel 0 76 2015 September
## 3112 City Hotel 0 76 2015 September
## 3113 City Hotel 0 76 2015 September
## 3114 City Hotel 0 14 2015 September
## 3115 City Hotel 0 15 2015 September
## 3116 City Hotel 1 13 2015 September
## 3117 City Hotel 1 13 2015 September
## 3118 City Hotel 1 19 2015 September
## 3119 City Hotel 0 15 2015 September
## 3120 City Hotel 0 7 2015 September
## 3121 City Hotel 0 76 2015 September
## 3122 City Hotel 0 76 2015 September
## 3123 City Hotel 1 76 2015 September
## 3124 City Hotel 0 37 2015 September
## arrival_date_week_number arrival_date_day_of_month stays_in_weekend_nights
## 1 27 1 0
## 2 27 1 0
## 3 27 1 0
## 4 27 1 2
## 5 27 2 0
## 6 27 2 0
## 7 27 2 0
## 8 27 2 1
## 9 27 2 2
## 10 27 2 2
## 11 27 3 0
## 12 27 3 0
## 13 27 3 0
## 14 27 3 0
## 15 27 3 0
## 16 27 3 0
## 17 27 3 0
## 18 27 3 0
## 19 27 3 0
## 20 27 3 0
## 21 27 3 0
## 22 27 3 0
## 23 27 3 0
## 24 27 3 0
## 25 27 3 1
## 26 27 3 2
## 27 27 4 1
## 28 27 4 2
## 29 27 4 2
## 30 27 4 2
## 31 28 5 2
## 32 28 5 2
## 33 28 5 2
## 34 28 6 1
## 35 28 6 1
## 36 28 6 1
## 37 28 6 1
## 38 28 6 2
## 39 28 6 3
## 40 28 6 1
## 41 28 6 1
## 42 28 7 0
## 43 28 7 0
## 44 28 7 0
## 45 28 7 0
## 46 28 7 0
## 47 28 7 0
## 48 28 7 0
## 49 28 7 0
## 50 28 7 0
## 51 28 7 2
## 52 28 7 2
## 53 28 7 2
## 54 28 7 2
## 55 28 7 5
## 56 28 7 5
## 57 28 7 5
## 58 28 8 0
## 59 28 8 0
## 60 28 8 1
## 61 28 8 1
## 62 28 8 1
## 63 28 8 2
## 64 28 8 2
## 65 28 8 2
## 66 28 9 0
## 67 28 9 0
## 68 28 9 2
## 69 28 10 0
## 70 28 10 0
## 71 28 10 1
## 72 28 10 2
## 73 28 10 2
## 74 28 10 3
## 75 28 10 3
## 76 28 11 0
## 77 28 11 0
## 78 28 11 0
## 79 28 11 0
## 80 28 11 2
## 81 28 11 2
## 82 28 11 2
## 83 28 11 2
## 84 28 11 2
## 85 28 11 2
## 86 28 11 2
## 87 28 11 2
## 88 28 11 2
## 89 28 11 2
## 90 28 11 2
## 91 28 11 2
## 92 28 11 2
## 93 28 11 2
## 94 28 11 2
## 95 28 11 2
## 96 28 11 2
## 97 28 11 2
## 98 28 11 2
## 99 28 11 2
## 100 28 11 2
## 101 28 11 2
## 102 28 11 2
## 103 28 11 2
## 104 28 11 2
## 105 28 11 2
## 106 28 11 2
## 107 28 11 2
## 108 28 11 2
## 109 28 11 2
## 110 28 11 2
## 111 28 11 2
## 112 28 11 2
## 113 28 11 2
## 114 28 11 2
## 115 28 11 2
## 116 28 11 2
## 117 29 12 2
## 118 29 12 2
## 119 29 13 1
## 120 29 13 1
## 121 29 13 1
## 122 29 13 1
## 123 29 13 1
## 124 29 13 1
## 125 29 13 1
## 126 29 13 1
## 127 29 13 1
## 128 29 13 1
## 129 29 13 1
## 130 29 13 1
## 131 29 13 1
## 132 29 14 0
## 133 29 14 0
## 134 29 14 2
## 135 29 15 0
## 136 29 15 0
## 137 29 15 0
## 138 29 15 0
## 139 29 15 2
## 140 29 15 2
## 141 29 15 2
## 142 29 15 2
## 143 29 16 0
## 144 29 16 0
## 145 29 16 0
## 146 29 16 0
## 147 29 16 2
## 148 29 16 0
## 149 29 17 0
## 150 29 18 1
## 151 29 18 1
## 152 29 18 1
## 153 29 18 1
## 154 29 18 1
## 155 29 18 1
## 156 29 18 1
## 157 29 18 1
## 158 29 18 1
## 159 29 18 1
## 160 29 18 1
## 161 29 18 1
## 162 29 18 1
## 163 29 18 1
## 164 29 18 1
## 165 29 18 1
## 166 29 18 1
## 167 29 18 1
## 168 29 18 1
## 169 29 18 1
## 170 29 18 1
## 171 29 18 2
## 172 29 18 2
## 173 29 18 2
## 174 29 18 2
## 175 29 18 2
## 176 29 18 2
## 177 29 18 2
## 178 29 18 2
## 179 29 18 2
## 180 29 18 2
## 181 29 18 2
## 182 29 18 2
## 183 29 18 2
## 184 29 18 2
## 185 29 18 2
## 186 29 18 2
## 187 29 18 2
## 188 29 18 2
## 189 29 18 2
## 190 29 18 2
## 191 29 18 2
## 192 29 18 2
## 193 29 18 2
## 194 29 18 2
## 195 29 18 2
## 196 29 18 2
## 197 29 18 2
## 198 29 18 2
## 199 29 18 2
## 200 29 18 2
## 201 29 18 2
## 202 29 18 2
## 203 29 18 2
## 204 29 18 2
## 205 29 18 2
## 206 29 18 2
## 207 29 18 2
## 208 29 18 2
## 209 29 18 2
## 210 29 18 2
## 211 29 18 2
## 212 29 18 2
## 213 29 18 2
## 214 29 18 2
## 215 29 18 2
## 216 29 18 2
## 217 29 18 2
## 218 29 18 2
## 219 29 18 2
## 220 29 18 2
## 221 29 18 2
## 222 29 18 2
## 223 29 18 2
## 224 29 18 2
## 225 29 18 2
## 226 29 18 2
## 227 30 19 2
## 228 30 19 2
## 229 30 19 2
## 230 30 19 3
## 231 30 19 4
## 232 30 20 1
## 233 30 20 1
## 234 30 20 1
## 235 30 20 1
## 236 30 20 3
## 237 30 21 0
## 238 30 22 0
## 239 30 22 0
## 240 30 22 0
## 241 30 22 0
## 242 30 22 0
## 243 30 22 0
## 244 30 22 0
## 245 30 22 0
## 246 30 22 0
## 247 30 22 0
## 248 30 22 0
## 249 30 22 0
## 250 30 22 0
## 251 30 22 0
## 252 30 22 0
## 253 30 22 0
## 254 30 22 0
## 255 30 22 0
## 256 30 22 0
## 257 30 22 0
## 258 30 22 0
## 259 30 22 0
## 260 30 22 0
## 261 30 22 0
## 262 30 22 0
## 263 30 22 0
## 264 30 22 0
## 265 30 22 0
## 266 30 22 0
## 267 30 22 0
## 268 30 22 0
## 269 30 22 0
## 270 30 22 0
## 271 30 22 0
## 272 30 22 0
## 273 30 22 0
## 274 30 22 0
## 275 30 22 1
## 276 30 22 2
## 277 30 22 2
## 278 30 22 2
## 279 30 22 0
## 280 30 22 0
## 281 30 22 0
## 282 30 22 0
## 283 30 22 0
## 284 30 22 0
## 285 30 22 0
## 286 30 22 0
## 287 30 22 0
## 288 30 23 0
## 289 30 23 0
## 290 30 23 0
## 291 30 23 0
## 292 30 23 0
## 293 30 23 0
## 294 30 23 0
## 295 30 23 0
## 296 30 23 0
## 297 30 23 0
## 298 30 23 0
## 299 30 23 0
## 300 30 23 0
## 301 30 23 0
## 302 30 23 0
## 303 30 23 0
## 304 30 23 0
## 305 30 23 0
## 306 30 23 0
## 307 30 23 0
## 308 30 23 0
## 309 30 23 0
## 310 30 23 0
## 311 30 23 0
## 312 30 23 0
## 313 30 23 0
## 314 30 23 0
## 315 30 23 0
## 316 30 23 0
## 317 30 23 0
## 318 30 23 0
## 319 30 23 0
## 320 30 23 0
## 321 30 23 0
## 322 30 23 0
## 323 30 23 0
## 324 30 23 0
## 325 30 23 0
## 326 30 23 0
## 327 30 23 0
## 328 30 23 1
## 329 30 23 1
## 330 30 23 1
## 331 30 23 1
## 332 30 23 1
## 333 30 23 2
## 334 30 24 2
## 335 30 24 0
## 336 30 24 0
## 337 30 24 0
## 338 30 24 0
## 339 30 24 0
## 340 30 25 0
## 341 30 25 0
## 342 30 25 0
## 343 30 25 0
## 344 30 25 0
## 345 30 25 1
## 346 30 25 1
## 347 30 25 2
## 348 30 25 2
## 349 30 25 2
## 350 30 25 2
## 351 30 25 2
## 352 30 25 2
## 353 30 25 2
## 354 30 25 2
## 355 30 25 2
## 356 30 25 2
## 357 30 25 2
## 358 30 25 2
## 359 30 25 2
## 360 30 25 2
## 361 30 25 2
## 362 30 25 2
## 363 30 25 2
## 364 30 25 2
## 365 30 25 2
## 366 30 25 2
## 367 30 25 2
## 368 30 25 2
## 369 30 25 2
## 370 30 25 2
## 371 30 25 2
## 372 30 25 2
## 373 30 25 2
## 374 30 25 2
## 375 30 25 2
## 376 30 25 2
## 377 30 25 2
## 378 30 25 2
## 379 30 25 2
## 380 30 25 2
## 381 30 25 2
## 382 30 25 2
## 383 30 25 2
## 384 30 25 2
## 385 30 25 2
## 386 30 25 2
## 387 30 25 2
## 388 30 25 2
## 389 30 25 2
## 390 30 25 2
## 391 30 25 2
## 392 30 25 2
## 393 30 25 2
## 394 30 25 2
## 395 30 25 2
## 396 30 25 2
## 397 30 25 2
## 398 30 25 2
## 399 30 25 2
## 400 30 25 2
## 401 30 25 2
## 402 30 25 2
## 403 30 25 2
## 404 30 25 2
## 405 30 25 2
## 406 30 25 2
## 407 30 25 2
## 408 30 25 2
## 409 30 25 2
## 410 30 25 2
## 411 30 25 2
## 412 30 25 2
## 413 31 26 1
## 414 31 26 1
## 415 31 26 2
## 416 31 26 2
## 417 31 26 2
## 418 31 27 1
## 419 31 27 1
## 420 31 27 1
## 421 31 27 1
## 422 31 27 1
## 423 31 27 1
## 424 31 27 1
## 425 31 27 1
## 426 31 27 1
## 427 31 27 1
## 428 31 27 1
## 429 31 27 1
## 430 31 27 1
## 431 31 27 1
## 432 31 27 1
## 433 31 27 1
## 434 31 27 1
## 435 31 27 1
## 436 31 27 1
## 437 31 27 1
## 438 31 27 1
## 439 31 27 1
## 440 31 27 1
## 441 31 27 1
## 442 31 27 1
## 443 31 27 1
## 444 31 27 1
## 445 31 27 1
## 446 31 27 1
## 447 31 27 1
## 448 31 27 1
## 449 31 27 1
## 450 31 27 1
## 451 31 27 1
## 452 31 27 1
## 453 31 27 1
## 454 31 27 1
## 455 31 27 1
## 456 31 27 1
## 457 31 27 1
## 458 31 27 1
## 459 31 27 1
## 460 31 27 1
## 461 31 27 1
## 462 31 27 1
## 463 31 27 1
## 464 31 27 1
## 465 31 27 1
## 466 31 27 1
## 467 31 27 1
## 468 31 27 1
## 469 31 27 1
## 470 31 27 1
## 471 31 27 1
## 472 31 27 3
## 473 31 27 3
## 474 31 28 0
## 475 31 28 0
## 476 31 28 0
## 477 31 28 0
## 478 31 28 0
## 479 31 28 0
## 480 31 28 2
## 481 31 28 2
## 482 31 29 0
## 483 31 29 0
## 484 31 29 0
## 485 31 29 0
## 486 31 29 0
## 487 31 29 2
## 488 31 29 2
## 489 31 29 2
## 490 31 29 0
## 491 31 30 0
## 492 31 30 0
## 493 31 31 0
## 494 31 31 0
## 495 31 31 2
## 496 31 31 2
## 497 31 31 2
## 498 31 31 2
## 499 31 31 2
## 500 31 31 4
## 501 31 1 0
## 502 31 1 2
## 503 31 1 2
## 504 31 1 2
## 505 31 1 2
## 506 31 1 2
## 507 31 1 2
## 508 31 1 2
## 509 31 1 2
## 510 31 1 2
## 511 31 1 2
## 512 31 1 2
## 513 31 1 2
## 514 31 1 2
## 515 31 1 2
## 516 31 1 2
## 517 31 1 2
## 518 31 1 2
## 519 31 1 2
## 520 31 1 2
## 521 31 1 2
## 522 31 1 2
## 523 31 1 2
## 524 31 1 2
## 525 31 1 2
## 526 31 1 2
## 527 31 1 2
## 528 31 1 2
## 529 31 1 2
## 530 31 1 2
## 531 31 1 2
## 532 31 1 2
## 533 31 1 2
## 534 31 1 2
## 535 32 2 1
## 536 32 2 2
## 537 32 3 1
## 538 32 3 1
## 539 32 3 1
## 540 32 3 1
## 541 32 3 1
## 542 32 3 1
## 543 32 3 1
## 544 32 3 1
## 545 32 3 1
## 546 32 3 1
## 547 32 3 1
## 548 32 3 1
## 549 32 3 1
## 550 32 3 1
## 551 32 3 1
## 552 32 3 1
## 553 32 3 1
## 554 32 3 1
## 555 32 3 1
## 556 32 3 1
## 557 32 3 1
## 558 32 3 1
## 559 32 3 1
## 560 32 3 1
## 561 32 3 1
## 562 32 3 1
## 563 32 3 1
## 564 32 3 1
## 565 32 3 1
## 566 32 3 1
## 567 32 3 1
## 568 32 3 1
## 569 32 3 1
## 570 32 3 1
## 571 32 3 1
## 572 32 3 1
## 573 32 3 1
## 574 32 3 1
## 575 32 3 1
## 576 32 3 1
## 577 32 3 5
## 578 32 3 5
## 579 32 3 1
## 580 32 3 1
## 581 32 4 0
## 582 32 4 0
## 583 32 4 0
## 584 32 4 0
## 585 32 4 0
## 586 32 4 0
## 587 32 4 0
## 588 32 4 1
## 589 32 5 0
## 590 32 5 0
## 591 32 5 0
## 592 32 5 0
## 593 32 5 0
## 594 32 5 0
## 595 32 5 0
## 596 32 5 0
## 597 32 5 0
## 598 32 5 0
## 599 32 5 0
## 600 32 5 0
## 601 32 5 0
## 602 32 5 0
## 603 32 5 0
## 604 32 5 0
## 605 32 5 0
## 606 32 5 0
## 607 32 5 0
## 608 32 5 0
## 609 32 5 0
## 610 32 5 0
## 611 32 5 0
## 612 32 5 0
## 613 32 5 0
## 614 32 5 0
## 615 32 5 0
## 616 32 5 0
## 617 32 5 0
## 618 32 5 0
## 619 32 5 0
## 620 32 5 0
## 621 32 5 0
## 622 32 5 0
## 623 32 5 0
## 624 32 5 0
## 625 32 5 0
## 626 32 5 0
## 627 32 5 0
## 628 32 5 0
## 629 32 5 0
## 630 32 5 0
## 631 32 5 0
## 632 32 5 0
## 633 32 5 0
## 634 32 5 0
## 635 32 5 0
## 636 32 5 0
## 637 32 5 0
## 638 32 5 0
## 639 32 5 0
## 640 32 5 0
## 641 32 5 0
## 642 32 5 0
## 643 32 5 0
## 644 32 5 0
## 645 32 5 0
## 646 32 5 0
## 647 32 5 0
## 648 32 5 0
## 649 32 5 0
## 650 32 5 0
## 651 32 5 0
## 652 32 5 0
## 653 32 5 0
## 654 32 5 0
## 655 32 5 0
## 656 32 5 0
## 657 32 5 0
## 658 32 5 0
## 659 32 5 0
## 660 32 5 0
## 661 32 5 0
## 662 32 5 0
## 663 32 5 0
## 664 32 5 0
## 665 32 5 0
## 666 32 5 0
## 667 32 5 0
## 668 32 5 0
## 669 32 5 0
## 670 32 5 0
## 671 32 5 0
## 672 32 5 1
## 673 32 5 1
## 674 32 5 1
## 675 32 5 0
## 676 32 5 0
## 677 32 5 0
## 678 32 5 0
## 679 32 5 2
## 680 32 6 0
## 681 32 6 0
## 682 32 6 0
## 683 32 6 0
## 684 32 6 0
## 685 32 6 0
## 686 32 6 0
## 687 32 6 0
## 688 32 6 0
## 689 32 6 0
## 690 32 6 0
## 691 32 6 0
## 692 32 6 0
## 693 32 6 0
## 694 32 6 0
## 695 32 6 0
## 696 32 6 0
## 697 32 6 2
## 698 32 6 2
## 699 32 6 2
## 700 32 7 0
## 701 32 7 0
## 702 32 7 0
## 703 32 7 0
## 704 32 7 0
## 705 32 7 0
## 706 32 7 0
## 707 32 7 0
## 708 32 7 0
## 709 32 7 0
## 710 32 7 0
## 711 32 7 0
## 712 32 7 0
## 713 32 7 0
## 714 32 7 0
## 715 32 7 0
## 716 32 7 0
## 717 32 7 0
## 718 32 7 0
## 719 32 7 0
## 720 32 7 0
## 721 32 7 0
## 722 32 7 0
## 723 32 7 0
## 724 32 7 0
## 725 32 7 0
## 726 32 7 0
## 727 32 7 0
## 728 32 7 0
## 729 32 7 0
## 730 32 7 0
## 731 32 7 0
## 732 32 7 0
## 733 32 7 0
## 734 32 7 0
## 735 32 7 0
## 736 32 7 0
## 737 32 7 0
## 738 32 7 0
## 739 32 7 0
## 740 32 7 0
## 741 32 7 0
## 742 32 7 0
## 743 32 7 0
## 744 32 7 0
## 745 32 7 0
## 746 32 7 0
## 747 32 7 2
## 748 32 7 2
## 749 32 7 2
## 750 32 7 2
## 751 32 7 2
## 752 32 7 2
## 753 32 7 2
## 754 32 7 2
## 755 32 7 2
## 756 32 7 2
## 757 32 8 0
## 758 32 8 0
## 759 32 8 0
## 760 32 8 0
## 761 32 8 0
## 762 32 8 0
## 763 32 8 0
## 764 32 8 1
## 765 32 8 1
## 766 32 8 1
## 767 32 8 1
## 768 32 8 1
## 769 32 8 1
## 770 32 8 2
## 771 32 8 2
## 772 32 8 2
## 773 32 8 2
## 774 32 8 2
## 775 32 8 2
## 776 32 8 2
## 777 32 8 2
## 778 32 8 2
## 779 32 8 0
## 780 32 8 1
## 781 32 8 1
## 782 32 8 1
## 783 32 8 1
## 784 32 8 2
## 785 32 8 2
## 786 32 8 2
## 787 32 8 2
## 788 32 8 2
## 789 32 8 2
## 790 32 8 2
## 791 32 8 2
## 792 32 8 2
## 793 32 8 2
## 794 32 8 2
## 795 32 8 2
## 796 32 8 2
## 797 32 8 2
## 798 32 8 2
## 799 32 8 2
## 800 32 8 2
## 801 32 8 2
## 802 32 8 2
## 803 32 8 2
## 804 32 8 2
## 805 32 8 2
## 806 32 8 2
## 807 32 8 2
## 808 32 8 2
## 809 32 8 2
## 810 32 8 2
## 811 32 8 2
## 812 32 8 2
## 813 32 8 2
## 814 32 8 2
## 815 32 8 2
## 816 32 8 2
## 817 32 8 2
## 818 32 8 2
## 819 32 8 2
## 820 32 8 2
## 821 32 8 2
## 822 32 8 2
## 823 32 8 2
## 824 32 8 2
## 825 32 8 2
## 826 32 8 2
## 827 32 8 2
## 828 32 8 2
## 829 32 8 2
## 830 32 8 2
## 831 32 8 2
## 832 32 8 2
## 833 32 8 2
## 834 32 8 2
## 835 32 8 2
## 836 32 8 2
## 837 32 8 2
## 838 32 8 2
## 839 32 8 2
## 840 32 8 2
## 841 32 8 2
## 842 32 8 2
## 843 32 8 2
## 844 32 8 2
## 845 32 8 2
## 846 32 8 2
## 847 32 8 2
## 848 32 8 2
## 849 32 8 2
## 850 32 8 2
## 851 32 8 2
## 852 32 8 2
## 853 33 9 2
## 854 33 9 2
## 855 33 9 2
## 856 33 9 2
## 857 33 9 3
## 858 33 9 1
## 859 33 9 1
## 860 33 9 1
## 861 33 9 1
## 862 33 9 1
## 863 33 9 2
## 864 33 9 2
## 865 33 9 2
## 866 33 9 2
## 867 33 9 2
## 868 33 9 2
## 869 33 9 2
## 870 33 9 2
## 871 33 9 2
## 872 33 9 2
## 873 33 9 2
## 874 33 9 2
## 875 33 9 2
## 876 33 9 2
## 877 33 9 2
## 878 33 9 2
## 879 33 10 1
## 880 33 10 1
## 881 33 10 1
## 882 33 10 1
## 883 33 10 1
## 884 33 10 1
## 885 33 10 1
## 886 33 10 1
## 887 33 10 1
## 888 33 10 1
## 889 33 10 1
## 890 33 10 1
## 891 33 10 1
## 892 33 10 1
## 893 33 10 1
## 894 33 10 1
## 895 33 10 1
## 896 33 10 1
## 897 33 10 1
## 898 33 10 1
## 899 33 10 1
## 900 33 10 1
## 901 33 10 1
## 902 33 10 1
## 903 33 10 1
## 904 33 10 1
## 905 33 10 1
## 906 33 10 1
## 907 33 10 1
## 908 33 10 1
## 909 33 10 1
## 910 33 10 1
## 911 33 10 1
## 912 33 10 1
## 913 33 10 1
## 914 33 10 1
## 915 33 10 1
## 916 33 10 1
## 917 33 10 1
## 918 33 10 1
## 919 33 10 1
## 920 33 10 1
## 921 33 10 1
## 922 33 10 1
## 923 33 10 1
## 924 33 10 1
## 925 33 10 1
## 926 33 10 1
## 927 33 10 1
## 928 33 10 1
## 929 33 10 1
## 930 33 10 1
## 931 33 10 1
## 932 33 10 1
## 933 33 10 1
## 934 33 10 1
## 935 33 10 1
## 936 33 10 1
## 937 33 10 1
## 938 33 10 1
## 939 33 10 1
## 940 33 10 1
## 941 33 10 1
## 942 33 10 1
## 943 33 10 1
## 944 33 10 1
## 945 33 10 1
## 946 33 10 1
## 947 33 10 1
## 948 33 10 1
## 949 33 10 1
## 950 33 10 1
## 951 33 10 1
## 952 33 10 1
## 953 33 10 1
## 954 33 10 1
## 955 33 10 1
## 956 33 10 1
## 957 33 10 1
## 958 33 10 2
## 959 33 10 2
## 960 33 10 3
## 961 33 10 9
## 962 33 11 0
## 963 33 11 0
## 964 33 11 0
## 965 33 11 0
## 966 33 11 0
## 967 33 11 0
## 968 33 11 0
## 969 33 11 0
## 970 33 11 0
## 971 33 11 0
## 972 33 11 0
## 973 33 11 0
## 974 33 11 0
## 975 33 11 0
## 976 33 11 0
## 977 33 11 0
## 978 33 11 0
## 979 33 11 0
## 980 33 11 0
## 981 33 11 0
## 982 33 11 0
## 983 33 11 0
## 984 33 11 0
## 985 33 11 0
## 986 33 11 0
## 987 33 11 0
## 988 33 11 0
## 989 33 11 0
## 990 33 11 0
## 991 33 11 0
## 992 33 11 0
## 993 33 11 0
## 994 33 11 0
## 995 33 11 0
## 996 33 11 0
## 997 33 11 0
## 998 33 11 0
## 999 33 11 0
## 1000 33 11 0
## 1001 33 11 0
## 1002 33 11 0
## 1003 33 11 0
## 1004 33 11 0
## 1005 33 11 0
## 1006 33 11 3
## 1007 33 11 4
## 1008 33 11 0
## 1009 33 11 0
## 1010 33 11 0
## 1011 33 11 0
## 1012 33 11 0
## 1013 33 11 0
## 1014 33 11 0
## 1015 33 11 0
## 1016 33 11 0
## 1017 33 12 0
## 1018 33 12 0
## 1019 33 12 0
## 1020 33 12 0
## 1021 33 12 0
## 1022 33 12 0
## 1023 33 12 0
## 1024 33 12 0
## 1025 33 12 0
## 1026 33 12 0
## 1027 33 12 0
## 1028 33 12 0
## 1029 33 12 0
## 1030 33 12 0
## 1031 33 12 0
## 1032 33 12 0
## 1033 33 12 0
## 1034 33 12 0
## 1035 33 12 0
## 1036 33 12 0
## 1037 33 12 0
## 1038 33 12 0
## 1039 33 12 0
## 1040 33 12 0
## 1041 33 12 0
## 1042 33 12 0
## 1043 33 12 0
## 1044 33 12 0
## 1045 33 12 0
## 1046 33 12 0
## 1047 33 12 0
## 1048 33 12 0
## 1049 33 12 0
## 1050 33 12 0
## 1051 33 12 0
## 1052 33 12 0
## 1053 33 12 0
## 1054 33 12 0
## 1055 33 12 0
## 1056 33 12 0
## 1057 33 12 0
## 1058 33 12 0
## 1059 33 12 0
## 1060 33 12 0
## 1061 33 12 0
## 1062 33 12 0
## 1063 33 12 0
## 1064 33 12 0
## 1065 33 12 0
## 1066 33 12 0
## 1067 33 12 0
## 1068 33 12 0
## 1069 33 12 0
## 1070 33 12 1
## 1071 33 12 1
## 1072 33 12 2
## 1073 33 12 2
## 1074 33 12 3
## 1075 33 12 0
## 1076 33 12 0
## 1077 33 13 0
## 1078 33 13 0
## 1079 33 13 0
## 1080 33 13 0
## 1081 33 13 0
## 1082 33 13 0
## 1083 33 13 0
## 1084 33 13 0
## 1085 33 13 0
## 1086 33 13 0
## 1087 33 13 0
## 1088 33 13 0
## 1089 33 13 0
## 1090 33 13 0
## 1091 33 13 0
## 1092 33 13 0
## 1093 33 13 0
## 1094 33 13 0
## 1095 33 13 0
## 1096 33 13 1
## 1097 33 13 2
## 1098 33 13 2
## 1099 33 13 2
## 1100 33 13 2
## 1101 33 13 2
## 1102 33 13 2
## 1103 33 14 0
## 1104 33 14 0
## 1105 33 14 0
## 1106 33 14 0
## 1107 33 14 0
## 1108 33 14 0
## 1109 33 14 0
## 1110 33 14 0
## 1111 33 14 0
## 1112 33 14 0
## 1113 33 14 0
## 1114 33 14 0
## 1115 33 14 0
## 1116 33 14 0
## 1117 33 14 0
## 1118 33 14 0
## 1119 33 14 0
## 1120 33 14 0
## 1121 33 14 0
## 1122 33 14 0
## 1123 33 14 0
## 1124 33 14 0
## 1125 33 14 0
## 1126 33 14 0
## 1127 33 14 0
## 1128 33 14 0
## 1129 33 14 0
## 1130 33 14 0
## 1131 33 14 0
## 1132 33 14 0
## 1133 33 14 0
## 1134 33 14 0
## 1135 33 14 0
## 1136 33 14 0
## 1137 33 14 0
## 1138 33 14 0
## 1139 33 14 0
## 1140 33 14 0
## 1141 33 14 0
## 1142 33 14 0
## 1143 33 14 0
## 1144 33 14 0
## 1145 33 14 0
## 1146 33 14 0
## 1147 33 14 0
## 1148 33 14 0
## 1149 33 14 0
## 1150 33 14 0
## 1151 33 14 0
## 1152 33 14 0
## 1153 33 14 0
## 1154 33 14 0
## 1155 33 14 0
## 1156 33 14 0
## 1157 33 14 0
## 1158 33 14 0
## 1159 33 14 0
## 1160 33 14 0
## 1161 33 14 0
## 1162 33 14 0
## 1163 33 14 0
## 1164 33 14 0
## 1165 33 14 0
## 1166 33 14 0
## 1167 33 14 0
## 1168 33 14 0
## 1169 33 14 0
## 1170 33 14 0
## 1171 33 14 0
## 1172 33 14 0
## 1173 33 14 0
## 1174 33 14 0
## 1175 33 14 0
## 1176 33 14 0
## 1177 33 14 0
## 1178 33 14 0
## 1179 33 14 0
## 1180 33 14 0
## 1181 33 14 0
## 1182 33 14 0
## 1183 33 14 0
## 1184 33 14 0
## 1185 33 14 0
## 1186 33 14 0
## 1187 33 14 0
## 1188 33 14 0
## 1189 33 14 0
## 1190 33 14 0
## 1191 33 14 0
## 1192 33 14 0
## 1193 33 14 0
## 1194 33 14 0
## 1195 33 14 0
## 1196 33 14 0
## 1197 33 14 0
## 1198 33 14 0
## 1199 33 14 0
## 1200 33 14 0
## 1201 33 14 0
## 1202 33 14 0
## 1203 33 14 0
## 1204 33 14 0
## 1205 33 14 0
## 1206 33 14 0
## 1207 33 14 0
## 1208 33 14 0
## 1209 33 14 0
## 1210 33 14 0
## 1211 33 14 0
## 1212 33 14 0
## 1213 33 14 0
## 1214 33 14 0
## 1215 33 14 0
## 1216 33 14 0
## 1217 33 14 0
## 1218 33 14 0
## 1219 33 14 0
## 1220 33 14 0
## 1221 33 14 0
## 1222 33 14 0
## 1223 33 14 0
## 1224 33 14 0
## 1225 33 14 0
## 1226 33 14 0
## 1227 33 14 0
## 1228 33 14 0
## 1229 33 14 0
## 1230 33 14 0
## 1231 33 14 0
## 1232 33 14 0
## 1233 33 14 0
## 1234 33 14 0
## 1235 33 14 0
## 1236 33 14 0
## 1237 33 14 0
## 1238 33 14 0
## 1239 33 14 0
## 1240 33 14 0
## 1241 33 14 0
## 1242 33 14 0
## 1243 33 14 0
## 1244 33 14 0
## 1245 33 14 0
## 1246 33 14 0
## 1247 33 14 0
## 1248 33 14 0
## 1249 33 14 0
## 1250 33 14 0
## 1251 33 14 0
## 1252 33 14 0
## 1253 33 14 0
## 1254 33 14 0
## 1255 33 14 0
## 1256 33 14 0
## 1257 33 14 0
## 1258 33 14 0
## 1259 33 14 0
## 1260 33 14 0
## 1261 33 14 0
## 1262 33 14 0
## 1263 33 14 0
## 1264 33 14 0
## 1265 33 14 0
## 1266 33 14 0
## 1267 33 14 0
## 1268 33 14 0
## 1269 33 14 0
## 1270 33 14 0
## 1271 33 14 0
## 1272 33 14 0
## 1273 33 14 0
## 1274 33 14 0
## 1275 33 14 0
## 1276 33 14 0
## 1277 33 14 0
## 1278 33 14 0
## 1279 33 14 1
## 1280 33 14 1
## 1281 33 14 1
## 1282 33 14 1
## 1283 33 14 1
## 1284 33 14 1
## 1285 33 14 1
## 1286 33 14 2
## 1287 33 14 2
## 1288 33 14 2
## 1289 33 14 2
## 1290 33 14 2
## 1291 33 14 2
## 1292 33 14 2
## 1293 33 15 0
## 1294 33 15 0
## 1295 33 15 0
## 1296 33 15 0
## 1297 33 15 0
## 1298 33 15 1
## 1299 33 15 1
## 1300 33 15 1
## 1301 33 15 2
## 1302 33 15 2
## 1303 33 15 2
## 1304 33 15 2
## 1305 33 15 2
## 1306 33 15 2
## 1307 33 15 2
## 1308 33 15 2
## 1309 33 15 2
## 1310 33 15 2
## 1311 33 15 2
## 1312 33 15 2
## 1313 33 15 2
## 1314 33 15 2
## 1315 33 15 2
## 1316 33 15 2
## 1317 33 15 2
## 1318 33 15 2
## 1319 33 15 2
## 1320 33 15 2
## 1321 33 15 2
## 1322 33 15 2
## 1323 33 15 2
## 1324 33 15 2
## 1325 33 15 2
## 1326 33 15 2
## 1327 33 15 2
## 1328 33 15 2
## 1329 33 15 2
## 1330 33 15 2
## 1331 33 15 2
## 1332 33 15 2
## 1333 33 15 2
## 1334 33 15 2
## 1335 33 15 2
## 1336 33 15 2
## 1337 33 15 2
## 1338 33 15 2
## 1339 33 15 2
## 1340 33 15 2
## 1341 33 15 2
## 1342 33 15 2
## 1343 33 15 2
## 1344 33 15 2
## 1345 33 15 2
## 1346 33 15 2
## 1347 33 15 2
## 1348 33 15 2
## 1349 33 15 2
## 1350 33 15 2
## 1351 33 15 2
## 1352 33 15 2
## 1353 33 15 2
## 1354 33 15 2
## 1355 33 15 2
## 1356 33 15 2
## 1357 33 15 2
## 1358 33 15 2
## 1359 33 15 2
## 1360 33 15 2
## 1361 33 15 2
## 1362 33 15 2
## 1363 33 15 2
## 1364 33 15 2
## 1365 33 15 2
## 1366 33 15 2
## 1367 33 15 2
## 1368 33 15 2
## 1369 33 15 2
## 1370 33 15 2
## 1371 33 15 2
## 1372 33 15 2
## 1373 33 15 2
## 1374 33 15 2
## 1375 33 15 2
## 1376 33 15 2
## 1377 33 15 2
## 1378 34 16 2
## 1379 34 16 2
## 1380 34 16 2
## 1381 34 16 2
## 1382 34 16 1
## 1383 34 16 1
## 1384 34 16 1
## 1385 34 16 1
## 1386 34 16 2
## 1387 34 16 2
## 1388 34 16 2
## 1389 34 16 2
## 1390 34 16 2
## 1391 34 16 2
## 1392 34 16 2
## 1393 34 16 2
## 1394 34 16 2
## 1395 34 16 2
## 1396 34 16 2
## 1397 34 16 2
## 1398 34 16 2
## 1399 34 16 2
## 1400 34 16 2
## 1401 34 16 3
## 1402 34 17 1
## 1403 34 17 1
## 1404 34 17 1
## 1405 34 17 1
## 1406 34 17 1
## 1407 34 17 1
## 1408 34 17 1
## 1409 34 17 1
## 1410 34 17 1
## 1411 34 17 1
## 1412 34 17 1
## 1413 34 17 1
## 1414 34 17 1
## 1415 34 17 1
## 1416 34 17 1
## 1417 34 17 1
## 1418 34 17 1
## 1419 34 17 1
## 1420 34 17 1
## 1421 34 17 1
## 1422 34 17 1
## 1423 34 17 1
## 1424 34 17 1
## 1425 34 17 1
## 1426 34 17 1
## 1427 34 17 1
## 1428 34 17 1
## 1429 34 17 1
## 1430 34 17 1
## 1431 34 17 1
## 1432 34 17 1
## 1433 34 17 1
## 1434 34 17 1
## 1435 34 17 1
## 1436 34 17 1
## 1437 34 17 1
## 1438 34 17 1
## 1439 34 17 1
## 1440 34 17 1
## 1441 34 17 1
## 1442 34 17 1
## 1443 34 17 1
## 1444 34 17 1
## 1445 34 17 1
## 1446 34 17 1
## 1447 34 17 1
## 1448 34 17 1
## 1449 34 17 1
## 1450 34 17 1
## 1451 34 17 1
## 1452 34 17 1
## 1453 34 17 1
## 1454 34 17 1
## 1455 34 17 1
## 1456 34 17 1
## 1457 34 17 1
## 1458 34 17 1
## 1459 34 17 1
## 1460 34 17 1
## 1461 34 17 1
## 1462 34 17 1
## 1463 34 17 1
## 1464 34 17 1
## 1465 34 17 2
## 1466 34 17 2
## 1467 34 17 2
## 1468 34 17 2
## 1469 34 17 1
## 1470 34 17 1
## 1471 34 17 1
## 1472 34 17 1
## 1473 34 17 1
## 1474 34 17 1
## 1475 34 17 1
## 1476 34 17 1
## 1477 34 17 1
## 1478 34 17 3
## 1479 34 18 0
## 1480 34 18 0
## 1481 34 18 0
## 1482 34 18 0
## 1483 34 18 0
## 1484 34 18 0
## 1485 34 18 0
## 1486 34 18 0
## 1487 34 18 0
## 1488 34 18 0
## 1489 34 18 0
## 1490 34 18 0
## 1491 34 18 0
## 1492 34 18 0
## 1493 34 18 0
## 1494 34 18 0
## 1495 34 18 0
## 1496 34 18 0
## 1497 34 18 0
## 1498 34 18 0
## 1499 34 18 0
## 1500 34 18 0
## 1501 34 18 0
## 1502 34 18 0
## 1503 34 18 0
## 1504 34 18 0
## 1505 34 18 0
## 1506 34 18 0
## 1507 34 18 0
## 1508 34 18 0
## 1509 34 18 0
## 1510 34 18 0
## 1511 34 18 0
## 1512 34 18 0
## 1513 34 18 1
## 1514 34 18 1
## 1515 34 18 2
## 1516 34 18 3
## 1517 34 18 0
## 1518 34 18 0
## 1519 34 18 0
## 1520 34 18 0
## 1521 34 18 0
## 1522 34 18 0
## 1523 34 18 0
## 1524 34 18 0
## 1525 34 18 0
## 1526 34 18 0
## 1527 34 18 0
## 1528 34 18 0
## 1529 34 18 0
## 1530 34 18 0
## 1531 34 18 0
## 1532 34 18 0
## 1533 34 18 0
## 1534 34 19 0
## 1535 34 19 0
## 1536 34 19 0
## 1537 34 19 0
## 1538 34 19 0
## 1539 34 19 0
## 1540 34 19 0
## 1541 34 19 1
## 1542 34 19 1
## 1543 34 19 1
## 1544 34 19 1
## 1545 34 19 0
## 1546 34 19 0
## 1547 34 19 0
## 1548 34 19 0
## 1549 34 19 0
## 1550 34 19 0
## 1551 34 19 0
## 1552 34 19 0
## 1553 34 19 0
## 1554 34 19 0
## 1555 34 19 2
## 1556 34 19 2
## 1557 34 19 2
## 1558 34 19 2
## 1559 34 19 3
## 1560 34 19 4
## 1561 34 19 0
## 1562 34 19 0
## 1563 34 19 0
## 1564 34 19 0
## 1565 34 19 0
## 1566 34 19 0
## 1567 34 20 0
## 1568 34 20 0
## 1569 34 20 0
## 1570 34 20 0
## 1571 34 20 0
## 1572 34 20 0
## 1573 34 20 0
## 1574 34 20 0
## 1575 34 20 0
## 1576 34 20 0
## 1577 34 20 0
## 1578 34 20 0
## 1579 34 20 0
## 1580 34 20 0
## 1581 34 20 0
## 1582 34 20 0
## 1583 34 20 0
## 1584 34 20 0
## 1585 34 20 0
## 1586 34 20 0
## 1587 34 20 0
## 1588 34 20 0
## 1589 34 20 0
## 1590 34 20 1
## 1591 34 20 1
## 1592 34 20 1
## 1593 34 20 2
## 1594 34 20 2
## 1595 34 20 2
## 1596 34 20 2
## 1597 34 20 3
## 1598 34 21 0
## 1599 34 21 0
## 1600 34 21 0
## 1601 34 21 0
## 1602 34 21 0
## 1603 34 21 0
## 1604 34 21 0
## 1605 34 21 0
## 1606 34 21 0
## 1607 34 21 0
## 1608 34 21 0
## 1609 34 21 0
## 1610 34 21 0
## 1611 34 21 1
## 1612 34 21 1
## 1613 34 21 1
## 1614 34 21 1
## 1615 34 21 1
## 1616 34 21 1
## 1617 34 21 1
## 1618 34 21 1
## 1619 34 21 1
## 1620 34 21 1
## 1621 34 21 1
## 1622 34 21 1
## 1623 34 21 1
## 1624 34 21 1
## 1625 34 21 2
## 1626 34 21 2
## 1627 34 21 2
## 1628 34 21 2
## 1629 34 21 2
## 1630 34 21 2
## 1631 34 21 2
## 1632 34 21 2
## 1633 34 21 2
## 1634 34 21 2
## 1635 34 21 4
## 1636 34 21 2
## 1637 34 22 2
## 1638 34 22 2
## 1639 34 22 2
## 1640 34 22 2
## 1641 34 22 2
## 1642 34 22 2
## 1643 34 22 2
## 1644 34 22 2
## 1645 34 22 2
## 1646 34 22 2
## 1647 34 22 2
## 1648 34 22 2
## 1649 34 22 0
## 1650 34 22 0
## 1651 34 22 0
## 1652 34 22 0
## 1653 34 22 0
## 1654 34 22 0
## 1655 34 22 0
## 1656 34 22 0
## 1657 34 22 0
## 1658 34 22 0
## 1659 34 22 1
## 1660 34 22 1
## 1661 34 22 1
## 1662 34 22 1
## 1663 34 22 2
## 1664 34 22 2
## 1665 34 22 2
## 1666 34 22 2
## 1667 34 22 2
## 1668 34 22 2
## 1669 34 22 2
## 1670 34 22 2
## 1671 34 22 2
## 1672 34 22 2
## 1673 34 22 2
## 1674 34 22 2
## 1675 34 22 2
## 1676 34 22 2
## 1677 34 22 2
## 1678 34 22 2
## 1679 34 22 2
## 1680 34 22 2
## 1681 34 22 2
## 1682 34 22 2
## 1683 34 22 2
## 1684 34 22 2
## 1685 34 22 2
## 1686 34 22 2
## 1687 34 22 2
## 1688 34 22 2
## 1689 34 22 2
## 1690 34 22 2
## 1691 34 22 2
## 1692 34 22 2
## 1693 34 22 2
## 1694 34 22 2
## 1695 35 23 1
## 1696 35 23 1
## 1697 35 23 1
## 1698 35 23 1
## 1699 35 23 1
## 1700 35 23 1
## 1701 35 23 2
## 1702 35 23 2
## 1703 35 23 2
## 1704 35 23 2
## 1705 35 23 2
## 1706 35 23 2
## 1707 35 23 2
## 1708 35 23 2
## 1709 35 23 2
## 1710 35 23 2
## 1711 35 23 2
## 1712 35 23 2
## 1713 35 23 2
## 1714 35 23 2
## 1715 35 23 2
## 1716 35 24 1
## 1717 35 24 1
## 1718 35 24 1
## 1719 35 24 1
## 1720 35 24 1
## 1721 35 24 1
## 1722 35 24 1
## 1723 35 24 1
## 1724 35 24 1
## 1725 35 24 1
## 1726 35 24 1
## 1727 35 24 1
## 1728 35 24 1
## 1729 35 24 1
## 1730 35 24 1
## 1731 35 24 1
## 1732 35 24 1
## 1733 35 24 1
## 1734 35 24 1
## 1735 35 24 1
## 1736 35 24 1
## 1737 35 24 1
## 1738 35 24 1
## 1739 35 24 1
## 1740 35 24 1
## 1741 35 24 1
## 1742 35 24 1
## 1743 35 24 1
## 1744 35 24 1
## 1745 35 24 1
## 1746 35 24 1
## 1747 35 24 1
## 1748 35 24 1
## 1749 35 24 1
## 1750 35 24 1
## 1751 35 24 1
## 1752 35 24 1
## 1753 35 24 1
## 1754 35 24 1
## 1755 35 24 1
## 1756 35 24 1
## 1757 35 24 1
## 1758 35 24 1
## 1759 35 24 1
## 1760 35 24 1
## 1761 35 24 3
## 1762 35 24 1
## 1763 35 24 1
## 1764 35 25 0
## 1765 35 25 0
## 1766 35 25 0
## 1767 35 25 0
## 1768 35 25 0
## 1769 35 25 0
## 1770 35 25 0
## 1771 35 25 0
## 1772 35 25 0
## 1773 35 25 0
## 1774 35 25 0
## 1775 35 25 0
## 1776 35 25 0
## 1777 35 25 0
## 1778 35 25 0
## 1779 35 25 0
## 1780 35 25 0
## 1781 35 25 0
## 1782 35 25 0
## 1783 35 25 0
## 1784 35 25 0
## 1785 35 25 0
## 1786 35 25 0
## 1787 35 25 0
## 1788 35 25 0
## 1789 35 25 0
## 1790 35 25 0
## 1791 35 25 0
## 1792 35 25 0
## 1793 35 25 0
## 1794 35 25 0
## 1795 35 25 0
## 1796 35 25 0
## 1797 35 25 0
## 1798 35 25 0
## 1799 35 25 0
## 1800 35 25 0
## 1801 35 25 0
## 1802 35 25 0
## 1803 35 25 2
## 1804 35 25 0
## 1805 35 25 0
## 1806 35 25 0
## 1807 35 25 0
## 1808 35 25 0
## 1809 35 25 0
## 1810 35 25 0
## 1811 35 25 0
## 1812 35 25 0
## 1813 35 25 0
## 1814 35 25 0
## 1815 35 25 0
## 1816 35 25 0
## 1817 35 25 0
## 1818 35 25 0
## 1819 35 25 0
## 1820 35 25 0
## 1821 35 26 0
## 1822 35 26 0
## 1823 35 26 0
## 1824 35 26 0
## 1825 35 26 0
## 1826 35 26 0
## 1827 35 26 0
## 1828 35 26 0
## 1829 35 26 0
## 1830 35 26 0
## 1831 35 26 0
## 1832 35 26 0
## 1833 35 26 0
## 1834 35 26 0
## 1835 35 26 0
## 1836 35 26 0
## 1837 35 26 0
## 1838 35 26 0
## 1839 35 26 0
## 1840 35 26 0
## 1841 35 26 0
## 1842 35 26 0
## 1843 35 26 0
## 1844 35 26 0
## 1845 35 26 0
## 1846 35 26 0
## 1847 35 26 0
## 1848 35 26 0
## 1849 35 26 0
## 1850 35 26 0
## 1851 35 26 0
## 1852 35 26 0
## 1853 35 26 0
## 1854 35 26 0
## 1855 35 26 0
## 1856 35 26 0
## 1857 35 26 0
## 1858 35 26 0
## 1859 35 26 0
## 1860 35 26 0
## 1861 35 26 0
## 1862 35 26 0
## 1863 35 26 0
## 1864 35 26 0
## 1865 35 26 0
## 1866 35 26 0
## 1867 35 26 0
## 1868 35 26 0
## 1869 35 26 0
## 1870 35 26 0
## 1871 35 26 0
## 1872 35 26 0
## 1873 35 26 0
## 1874 35 26 0
## 1875 35 26 0
## 1876 35 26 1
## 1877 35 27 0
## 1878 35 27 0
## 1879 35 27 0
## 1880 35 27 0
## 1881 35 27 0
## 1882 35 27 0
## 1883 35 27 0
## 1884 35 27 0
## 1885 35 27 2
## 1886 35 27 2
## 1887 35 27 2
## 1888 35 27 2
## 1889 35 27 2
## 1890 35 27 2
## 1891 35 27 2
## 1892 35 28 0
## 1893 35 28 0
## 1894 35 28 0
## 1895 35 28 0
## 1896 35 28 0
## 1897 35 28 0
## 1898 35 28 0
## 1899 35 28 0
## 1900 35 28 0
## 1901 35 28 0
## 1902 35 28 0
## 1903 35 28 1
## 1904 35 28 1
## 1905 35 28 2
## 1906 35 28 2
## 1907 35 28 2
## 1908 35 28 2
## 1909 35 28 4
## 1910 35 29 0
## 1911 35 29 0
## 1912 35 29 0
## 1913 35 29 0
## 1914 35 29 0
## 1915 35 29 0
## 1916 35 29 0
## 1917 35 29 0
## 1918 35 29 0
## 1919 35 29 0
## 1920 35 29 0
## 1921 35 29 1
## 1922 35 29 1
## 1923 35 29 1
## 1924 35 29 1
## 1925 35 29 1
## 1926 35 29 1
## 1927 35 29 2
## 1928 35 29 2
## 1929 35 29 2
## 1930 35 29 2
## 1931 35 29 2
## 1932 35 29 2
## 1933 35 29 2
## 1934 35 29 2
## 1935 35 29 2
## 1936 35 29 2
## 1937 35 29 2
## 1938 35 29 2
## 1939 35 29 2
## 1940 35 29 2
## 1941 35 29 2
## 1942 35 29 2
## 1943 35 29 2
## 1944 35 29 2
## 1945 35 29 2
## 1946 35 29 2
## 1947 35 29 2
## 1948 35 29 2
## 1949 35 29 2
## 1950 35 29 2
## 1951 35 29 2
## 1952 35 29 2
## 1953 35 29 2
## 1954 35 29 2
## 1955 35 29 2
## 1956 35 29 2
## 1957 35 29 2
## 1958 35 29 2
## 1959 35 29 2
## 1960 35 29 2
## 1961 35 29 2
## 1962 35 29 2
## 1963 35 29 2
## 1964 35 29 2
## 1965 36 30 0
## 1966 36 30 1
## 1967 36 30 1
## 1968 36 30 1
## 1969 36 30 1
## 1970 36 30 1
## 1971 36 30 1
## 1972 36 30 1
## 1973 36 30 1
## 1974 36 30 1
## 1975 36 30 2
## 1976 36 30 2
## 1977 36 30 2
## 1978 36 30 2
## 1979 36 30 2
## 1980 36 30 2
## 1981 36 30 2
## 1982 36 30 2
## 1983 36 30 2
## 1984 36 30 2
## 1985 36 30 2
## 1986 36 30 2
## 1987 36 30 2
## 1988 36 30 2
## 1989 36 30 2
## 1990 36 30 2
## 1991 36 30 2
## 1992 36 30 2
## 1993 36 30 2
## 1994 36 30 2
## 1995 36 30 2
## 1996 36 30 2
## 1997 36 30 2
## 1998 36 30 2
## 1999 36 30 2
## 2000 36 30 2
## 2001 36 30 2
## 2002 36 30 2
## 2003 36 30 2
## 2004 36 30 2
## 2005 36 30 2
## 2006 36 30 2
## 2007 36 30 2
## 2008 36 30 2
## 2009 36 30 2
## 2010 36 30 2
## 2011 36 30 2
## 2012 36 30 2
## 2013 36 30 2
## 2014 36 30 2
## 2015 36 30 2
## 2016 36 30 2
## 2017 36 30 2
## 2018 36 30 2
## 2019 36 30 2
## 2020 36 30 2
## 2021 36 31 1
## 2022 36 31 1
## 2023 36 31 1
## 2024 36 31 1
## 2025 36 31 1
## 2026 36 31 1
## 2027 36 31 1
## 2028 36 31 1
## 2029 36 31 1
## 2030 36 31 1
## 2031 36 31 1
## 2032 36 31 1
## 2033 36 31 1
## 2034 36 31 1
## 2035 36 31 1
## 2036 36 31 1
## 2037 36 31 1
## 2038 36 31 1
## 2039 36 31 1
## 2040 36 31 1
## 2041 36 31 1
## 2042 36 31 1
## 2043 36 31 1
## 2044 36 31 1
## 2045 36 31 1
## 2046 36 31 1
## 2047 36 31 1
## 2048 36 31 1
## 2049 36 31 1
## 2050 36 31 1
## 2051 36 31 1
## 2052 36 31 1
## 2053 36 31 1
## 2054 36 31 1
## 2055 36 31 1
## 2056 36 31 1
## 2057 36 31 1
## 2058 36 31 1
## 2059 36 31 1
## 2060 36 31 1
## 2061 36 31 1
## 2062 36 31 1
## 2063 36 31 1
## 2064 36 31 1
## 2065 36 31 1
## 2066 36 31 1
## 2067 36 31 1
## 2068 36 31 1
## 2069 36 31 1
## 2070 36 31 1
## 2071 36 31 1
## 2072 36 31 1
## 2073 36 31 1
## 2074 36 31 1
## 2075 36 31 1
## 2076 36 31 2
## 2077 36 31 3
## 2078 36 31 1
## 2079 36 1 0
## 2080 36 1 0
## 2081 36 1 0
## 2082 36 1 0
## 2083 36 1 0
## 2084 36 1 0
## 2085 36 1 0
## 2086 36 1 0
## 2087 36 1 0
## 2088 36 1 0
## 2089 36 1 0
## 2090 36 1 0
## 2091 36 1 1
## 2092 36 1 1
## 2093 36 1 2
## 2094 36 1 2
## 2095 36 1 2
## 2096 36 1 2
## 2097 36 1 2
## 2098 36 1 3
## 2099 36 1 0
## 2100 36 1 0
## 2101 36 1 0
## 2102 36 1 0
## 2103 36 1 0
## 2104 36 1 0
## 2105 36 1 0
## 2106 36 1 0
## 2107 36 1 0
## 2108 36 1 0
## 2109 36 1 0
## 2110 36 1 0
## 2111 36 1 0
## 2112 36 1 0
## 2113 36 2 0
## 2114 36 2 0
## 2115 36 2 0
## 2116 36 2 0
## 2117 36 2 0
## 2118 36 2 2
## 2119 36 2 2
## 2120 36 2 2
## 2121 36 2 0
## 2122 36 2 0
## 2123 36 2 0
## 2124 36 2 0
## 2125 36 2 0
## 2126 36 2 0
## 2127 36 2 0
## 2128 36 2 0
## 2129 36 2 0
## 2130 36 2 0
## 2131 36 2 0
## 2132 36 2 0
## 2133 36 2 0
## 2134 36 2 0
## 2135 36 2 0
## 2136 36 2 0
## 2137 36 2 0
## 2138 36 2 0
## 2139 36 2 0
## 2140 36 2 0
## 2141 36 2 0
## 2142 36 2 0
## 2143 36 2 0
## 2144 36 2 0
## 2145 36 2 0
## 2146 36 2 0
## 2147 36 2 0
## 2148 36 2 0
## 2149 36 2 0
## 2150 36 2 0
## 2151 36 2 0
## 2152 36 2 0
## 2153 36 2 0
## 2154 36 2 0
## 2155 36 2 0
## 2156 36 3 0
## 2157 36 3 0
## 2158 36 3 0
## 2159 36 3 0
## 2160 36 3 0
## 2161 36 3 0
## 2162 36 3 0
## 2163 36 3 0
## 2164 36 3 0
## 2165 36 3 0
## 2166 36 3 0
## 2167 36 3 0
## 2168 36 3 0
## 2169 36 3 0
## 2170 36 3 0
## 2171 36 3 0
## 2172 36 3 0
## 2173 36 3 0
## 2174 36 3 0
## 2175 36 3 0
## 2176 36 3 0
## 2177 36 3 0
## 2178 36 3 0
## 2179 36 3 0
## 2180 36 3 0
## 2181 36 3 1
## 2182 36 3 1
## 2183 36 3 1
## 2184 36 3 1
## 2185 36 3 1
## 2186 36 3 2
## 2187 36 3 2
## 2188 36 3 2
## 2189 36 3 2
## 2190 36 3 0
## 2191 36 3 0
## 2192 36 3 0
## 2193 36 3 0
## 2194 36 4 0
## 2195 36 4 0
## 2196 36 4 0
## 2197 36 4 0
## 2198 36 4 0
## 2199 36 4 0
## 2200 36 4 0
## 2201 36 4 0
## 2202 36 4 0
## 2203 36 4 0
## 2204 36 4 0
## 2205 36 4 0
## 2206 36 4 0
## 2207 36 4 0
## 2208 36 4 0
## 2209 36 4 0
## 2210 36 4 0
## 2211 36 4 0
## 2212 36 4 0
## 2213 36 4 0
## 2214 36 4 0
## 2215 36 4 0
## 2216 36 4 0
## 2217 36 4 0
## 2218 36 4 0
## 2219 36 4 0
## 2220 36 4 0
## 2221 36 4 0
## 2222 36 4 0
## 2223 36 4 0
## 2224 36 4 0
## 2225 36 4 0
## 2226 36 4 0
## 2227 36 4 0
## 2228 36 4 0
## 2229 36 4 0
## 2230 36 4 0
## 2231 36 4 0
## 2232 36 4 0
## 2233 36 4 0
## 2234 36 4 0
## 2235 36 4 0
## 2236 36 4 0
## 2237 36 4 0
## 2238 36 4 1
## 2239 36 4 0
## 2240 36 4 0
## 2241 36 4 0
## 2242 36 4 0
## 2243 36 4 0
## 2244 36 4 0
## 2245 36 4 0
## 2246 36 4 1
## 2247 36 4 1
## 2248 36 4 1
## 2249 36 4 2
## 2250 36 4 2
## 2251 36 4 2
## 2252 36 4 2
## 2253 36 4 2
## 2254 36 4 2
## 2255 36 4 2
## 2256 36 4 1
## 2257 36 4 1
## 2258 36 4 1
## 2259 36 4 2
## 2260 36 4 2
## 2261 36 4 2
## 2262 36 4 2
## 2263 36 4 2
## 2264 36 4 2
## 2265 36 4 2
## 2266 36 4 2
## 2267 36 4 2
## 2268 36 5 0
## 2269 36 5 0
## 2270 36 5 0
## 2271 36 5 0
## 2272 36 5 0
## 2273 36 5 0
## 2274 36 5 0
## 2275 36 5 0
## 2276 36 5 0
## 2277 36 5 0
## 2278 36 5 0
## 2279 36 5 0
## 2280 36 5 0
## 2281 36 5 0
## 2282 36 5 0
## 2283 36 5 0
## 2284 36 5 1
## 2285 36 5 1
## 2286 36 5 1
## 2287 36 5 1
## 2288 36 5 1
## 2289 36 5 1
## 2290 36 5 1
## 2291 36 5 1
## 2292 36 5 1
## 2293 36 5 1
## 2294 36 5 1
## 2295 36 5 1
## 2296 36 5 1
## 2297 36 5 1
## 2298 36 5 1
## 2299 36 5 1
## 2300 36 5 1
## 2301 36 5 1
## 2302 36 5 1
## 2303 36 5 1
## 2304 36 5 1
## 2305 36 5 1
## 2306 36 5 1
## 2307 36 5 1
## 2308 36 5 1
## 2309 36 5 1
## 2310 36 5 1
## 2311 36 5 1
## 2312 36 5 1
## 2313 36 5 1
## 2314 36 5 1
## 2315 36 5 1
## 2316 36 5 1
## 2317 36 5 1
## 2318 36 5 1
## 2319 36 5 1
## 2320 36 5 1
## 2321 36 5 1
## 2322 36 5 1
## 2323 36 5 1
## 2324 36 5 1
## 2325 36 5 2
## 2326 36 5 2
## 2327 36 5 2
## 2328 36 5 2
## 2329 36 5 2
## 2330 36 5 2
## 2331 36 5 2
## 2332 36 5 2
## 2333 36 5 2
## 2334 36 5 2
## 2335 36 5 2
## 2336 36 5 2
## 2337 36 5 2
## 2338 36 5 2
## 2339 36 5 2
## 2340 36 5 2
## 2341 36 5 2
## 2342 36 5 2
## 2343 36 5 2
## 2344 36 5 2
## 2345 36 5 2
## 2346 36 5 2
## 2347 36 5 2
## 2348 36 5 2
## 2349 36 5 2
## 2350 36 5 2
## 2351 36 5 2
## 2352 36 5 2
## 2353 36 5 2
## 2354 36 5 2
## 2355 36 5 2
## 2356 36 5 2
## 2357 36 5 2
## 2358 36 5 2
## 2359 36 5 2
## 2360 36 5 2
## 2361 36 5 2
## 2362 36 5 2
## 2363 36 5 2
## 2364 36 5 2
## 2365 36 5 2
## 2366 36 5 2
## 2367 36 5 2
## 2368 36 5 2
## 2369 36 5 2
## 2370 36 5 2
## 2371 36 5 2
## 2372 36 5 2
## 2373 36 5 2
## 2374 36 5 2
## 2375 36 5 2
## 2376 36 5 2
## 2377 36 5 2
## 2378 36 5 2
## 2379 36 5 2
## 2380 36 5 2
## 2381 36 5 2
## 2382 36 5 2
## 2383 36 5 2
## 2384 36 5 2
## 2385 36 5 2
## 2386 36 5 2
## 2387 36 5 2
## 2388 36 5 2
## 2389 36 5 2
## 2390 36 5 2
## 2391 36 5 2
## 2392 37 6 2
## 2393 37 6 2
## 2394 37 6 2
## 2395 37 6 2
## 2396 37 6 2
## 2397 37 6 2
## 2398 37 6 2
## 2399 37 6 1
## 2400 37 6 1
## 2401 37 6 2
## 2402 37 6 2
## 2403 37 6 2
## 2404 37 6 2
## 2405 37 6 2
## 2406 37 6 2
## 2407 37 6 2
## 2408 37 6 2
## 2409 37 6 2
## 2410 37 6 2
## 2411 37 6 2
## 2412 37 6 2
## 2413 37 6 2
## 2414 37 6 2
## 2415 37 6 2
## 2416 37 6 2
## 2417 37 6 2
## 2418 37 6 2
## 2419 37 6 2
## 2420 37 6 2
## 2421 37 6 2
## 2422 37 6 2
## 2423 37 6 2
## 2424 37 6 2
## 2425 37 6 2
## 2426 37 6 2
## 2427 37 6 2
## 2428 37 6 2
## 2429 37 6 2
## 2430 37 6 2
## 2431 37 6 2
## 2432 37 6 2
## 2433 37 6 2
## 2434 37 6 2
## 2435 37 6 2
## 2436 37 6 2
## 2437 37 6 2
## 2438 37 6 2
## 2439 37 6 2
## 2440 37 6 2
## 2441 37 6 2
## 2442 37 6 2
## 2443 37 6 2
## 2444 37 6 2
## 2445 37 6 2
## 2446 37 6 2
## 2447 37 6 2
## 2448 37 6 2
## 2449 37 6 2
## 2450 37 6 2
## 2451 37 6 2
## 2452 37 6 2
## 2453 37 6 2
## 2454 37 6 2
## 2455 37 6 2
## 2456 37 6 2
## 2457 37 6 2
## 2458 37 6 2
## 2459 37 6 2
## 2460 37 6 2
## 2461 37 6 2
## 2462 37 6 2
## 2463 37 6 2
## 2464 37 6 2
## 2465 37 6 2
## 2466 37 6 2
## 2467 37 6 2
## 2468 37 6 2
## 2469 37 6 2
## 2470 37 6 2
## 2471 37 6 2
## 2472 37 6 2
## 2473 37 6 2
## 2474 37 6 2
## 2475 37 6 2
## 2476 37 6 2
## 2477 37 6 2
## 2478 37 6 2
## 2479 37 6 2
## 2480 37 6 4
## 2481 37 7 1
## 2482 37 7 1
## 2483 37 7 1
## 2484 37 7 1
## 2485 37 7 1
## 2486 37 7 1
## 2487 37 7 1
## 2488 37 7 1
## 2489 37 7 1
## 2490 37 7 1
## 2491 37 7 1
## 2492 37 7 1
## 2493 37 7 1
## 2494 37 7 1
## 2495 37 7 1
## 2496 37 7 1
## 2497 37 7 1
## 2498 37 7 1
## 2499 37 7 1
## 2500 37 7 1
## 2501 37 7 1
## 2502 37 7 1
## 2503 37 7 1
## 2504 37 7 1
## 2505 37 7 1
## 2506 37 7 1
## 2507 37 7 1
## 2508 37 7 1
## 2509 37 7 1
## 2510 37 7 1
## 2511 37 7 1
## 2512 37 7 1
## 2513 37 7 1
## 2514 37 7 1
## 2515 37 7 1
## 2516 37 7 1
## 2517 37 7 1
## 2518 37 7 1
## 2519 37 7 1
## 2520 37 7 1
## 2521 37 7 1
## 2522 37 7 1
## 2523 37 7 1
## 2524 37 7 1
## 2525 37 7 1
## 2526 37 7 1
## 2527 37 7 1
## 2528 37 7 1
## 2529 37 7 1
## 2530 37 7 1
## 2531 37 7 1
## 2532 37 7 1
## 2533 37 7 1
## 2534 37 7 1
## 2535 37 7 1
## 2536 37 7 1
## 2537 37 7 1
## 2538 37 7 3
## 2539 37 7 3
## 2540 37 7 1
## 2541 37 8 0
## 2542 37 8 0
## 2543 37 8 0
## 2544 37 8 0
## 2545 37 8 0
## 2546 37 8 0
## 2547 37 8 0
## 2548 37 8 0
## 2549 37 8 0
## 2550 37 8 0
## 2551 37 8 0
## 2552 37 8 0
## 2553 37 8 0
## 2554 37 8 0
## 2555 37 8 0
## 2556 37 8 0
## 2557 37 8 0
## 2558 37 8 0
## 2559 37 8 0
## 2560 37 8 0
## 2561 37 8 0
## 2562 37 8 0
## 2563 37 8 0
## 2564 37 8 0
## 2565 37 8 0
## 2566 37 8 0
## 2567 37 8 0
## 2568 37 8 0
## 2569 37 8 0
## 2570 37 8 0
## 2571 37 8 0
## 2572 37 8 0
## 2573 37 8 0
## 2574 37 8 0
## 2575 37 8 0
## 2576 37 8 0
## 2577 37 8 0
## 2578 37 8 0
## 2579 37 8 0
## 2580 37 8 0
## 2581 37 8 0
## 2582 37 8 0
## 2583 37 8 0
## 2584 37 8 0
## 2585 37 8 0
## 2586 37 8 1
## 2587 37 8 1
## 2588 37 8 2
## 2589 37 8 2
## 2590 37 8 2
## 2591 37 8 2
## 2592 37 9 0
## 2593 37 9 0
## 2594 37 9 0
## 2595 37 9 0
## 2596 37 9 0
## 2597 37 9 0
## 2598 37 9 0
## 2599 37 9 0
## 2600 37 9 0
## 2601 37 9 0
## 2602 37 9 0
## 2603 37 9 0
## 2604 37 9 0
## 2605 37 9 0
## 2606 37 9 0
## 2607 37 9 0
## 2608 37 9 0
## 2609 37 9 0
## 2610 37 9 0
## 2611 37 9 0
## 2612 37 9 0
## 2613 37 9 0
## 2614 37 9 0
## 2615 37 9 0
## 2616 37 9 0
## 2617 37 9 0
## 2618 37 9 0
## 2619 37 9 0
## 2620 37 9 0
## 2621 37 9 0
## 2622 37 9 0
## 2623 37 9 0
## 2624 37 9 0
## 2625 37 9 0
## 2626 37 9 0
## 2627 37 9 0
## 2628 37 9 0
## 2629 37 9 0
## 2630 37 9 0
## 2631 37 9 0
## 2632 37 9 0
## 2633 37 9 0
## 2634 37 9 0
## 2635 37 9 0
## 2636 37 9 0
## 2637 37 9 0
## 2638 37 9 0
## 2639 37 9 0
## 2640 37 9 0
## 2641 37 9 0
## 2642 37 9 0
## 2643 37 9 0
## 2644 37 9 0
## 2645 37 9 0
## 2646 37 9 0
## 2647 37 9 0
## 2648 37 9 0
## 2649 37 9 0
## 2650 37 9 0
## 2651 37 9 0
## 2652 37 9 0
## 2653 37 9 0
## 2654 37 9 0
## 2655 37 9 0
## 2656 37 9 0
## 2657 37 9 0
## 2658 37 9 0
## 2659 37 9 0
## 2660 37 9 0
## 2661 37 9 0
## 2662 37 9 0
## 2663 37 9 0
## 2664 37 9 0
## 2665 37 9 0
## 2666 37 9 0
## 2667 37 9 0
## 2668 37 9 0
## 2669 37 9 0
## 2670 37 9 0
## 2671 37 9 0
## 2672 37 9 0
## 2673 37 9 0
## 2674 37 9 0
## 2675 37 9 0
## 2676 37 9 0
## 2677 37 9 0
## 2678 37 9 0
## 2679 37 9 0
## 2680 37 9 0
## 2681 37 9 0
## 2682 37 9 0
## 2683 37 9 0
## 2684 37 9 0
## 2685 37 9 0
## 2686 37 9 0
## 2687 37 9 0
## 2688 37 9 0
## 2689 37 9 0
## 2690 37 9 0
## 2691 37 9 0
## 2692 37 9 0
## 2693 37 9 0
## 2694 37 9 0
## 2695 37 9 0
## 2696 37 9 0
## 2697 37 9 0
## 2698 37 9 0
## 2699 37 9 0
## 2700 37 9 0
## 2701 37 9 0
## 2702 37 9 0
## 2703 37 9 0
## 2704 37 9 0
## 2705 37 10 0
## 2706 37 10 0
## 2707 37 10 0
## 2708 37 10 0
## 2709 37 10 0
## 2710 37 10 0
## 2711 37 10 0
## 2712 37 10 0
## 2713 37 10 0
## 2714 37 10 0
## 2715 37 10 0
## 2716 37 10 0
## 2717 37 10 0
## 2718 37 10 0
## 2719 37 10 0
## 2720 37 10 0
## 2721 37 10 0
## 2722 37 10 0
## 2723 37 10 0
## 2724 37 10 0
## 2725 37 10 0
## 2726 37 10 0
## 2727 37 10 0
## 2728 37 10 0
## 2729 37 10 0
## 2730 37 10 0
## 2731 37 10 0
## 2732 37 10 0
## 2733 37 10 0
## 2734 37 10 0
## 2735 37 10 0
## 2736 37 10 0
## 2737 37 10 0
## 2738 37 10 0
## 2739 37 10 0
## 2740 37 10 0
## 2741 37 10 0
## 2742 37 10 0
## 2743 37 10 0
## 2744 37 10 2
## 2745 37 10 2
## 2746 37 10 2
## 2747 37 10 2
## 2748 37 10 2
## 2749 37 10 2
## 2750 37 10 2
## 2751 37 10 2
## 2752 37 10 2
## 2753 37 10 2
## 2754 37 10 0
## 2755 37 10 0
## 2756 37 10 0
## 2757 37 10 0
## 2758 37 10 1
## 2759 37 10 1
## 2760 37 10 1
## 2761 37 10 1
## 2762 37 10 1
## 2763 37 10 1
## 2764 37 10 1
## 2765 37 10 1
## 2766 37 10 1
## 2767 37 10 1
## 2768 37 11 1
## 2769 37 11 0
## 2770 37 11 0
## 2771 37 11 0
## 2772 37 11 0
## 2773 37 11 0
## 2774 37 11 0
## 2775 37 11 0
## 2776 37 11 0
## 2777 37 11 0
## 2778 37 11 0
## 2779 37 11 0
## 2780 37 11 0
## 2781 37 11 0
## 2782 37 11 1
## 2783 37 11 1
## 2784 37 11 1
## 2785 37 11 1
## 2786 37 11 1
## 2787 37 11 1
## 2788 37 11 1
## 2789 37 11 1
## 2790 37 11 1
## 2791 37 11 1
## 2792 37 11 1
## 2793 37 11 1
## 2794 37 11 0
## 2795 37 11 0
## 2796 37 11 0
## 2797 37 11 0
## 2798 37 11 0
## 2799 37 11 0
## 2800 37 11 0
## 2801 37 11 0
## 2802 37 11 0
## 2803 37 11 0
## 2804 37 11 0
## 2805 37 11 0
## 2806 37 11 0
## 2807 37 11 0
## 2808 37 11 0
## 2809 37 11 0
## 2810 37 11 0
## 2811 37 11 0
## 2812 37 11 0
## 2813 37 11 0
## 2814 37 11 0
## 2815 37 11 0
## 2816 37 11 0
## 2817 37 11 0
## 2818 37 11 0
## 2819 37 11 0
## 2820 37 11 0
## 2821 37 11 0
## 2822 37 11 0
## 2823 37 11 0
## 2824 37 11 0
## 2825 37 11 0
## 2826 37 11 0
## 2827 37 11 0
## 2828 37 11 0
## 2829 37 11 0
## 2830 37 11 0
## 2831 37 11 0
## 2832 37 11 0
## 2833 37 11 0
## 2834 37 11 0
## 2835 37 11 0
## 2836 37 11 0
## 2837 37 11 0
## 2838 37 11 0
## 2839 37 11 0
## 2840 37 11 1
## 2841 37 11 1
## 2842 37 11 1
## 2843 37 11 2
## 2844 37 11 2
## 2845 37 11 2
## 2846 37 11 2
## 2847 37 11 2
## 2848 37 11 2
## 2849 37 11 0
## 2850 37 11 0
## 2851 37 11 0
## 2852 37 11 0
## 2853 37 11 0
## 2854 37 11 0
## 2855 37 11 0
## 2856 37 11 0
## 2857 37 11 0
## 2858 37 11 0
## 2859 37 11 0
## 2860 37 11 0
## 2861 37 11 0
## 2862 37 11 0
## 2863 37 11 0
## 2864 37 11 0
## 2865 37 11 0
## 2866 37 11 0
## 2867 37 11 0
## 2868 37 11 0
## 2869 37 11 0
## 2870 37 11 0
## 2871 37 11 0
## 2872 37 11 0
## 2873 37 11 0
## 2874 37 11 0
## 2875 37 11 0
## 2876 37 11 0
## 2877 37 11 0
## 2878 37 11 0
## 2879 37 11 0
## 2880 37 11 0
## 2881 37 11 0
## 2882 37 11 0
## 2883 37 11 0
## 2884 37 11 0
## 2885 37 11 0
## 2886 37 11 0
## 2887 37 11 0
## 2888 37 11 0
## 2889 37 11 0
## 2890 37 11 0
## 2891 37 11 0
## 2892 37 11 0
## 2893 37 11 0
## 2894 37 11 0
## 2895 37 11 0
## 2896 37 11 0
## 2897 37 11 0
## 2898 37 11 0
## 2899 37 11 0
## 2900 37 11 0
## 2901 37 11 0
## 2902 37 11 0
## 2903 37 11 0
## 2904 37 11 0
## 2905 37 11 0
## 2906 37 11 0
## 2907 37 11 0
## 2908 37 11 0
## 2909 37 11 0
## 2910 37 11 0
## 2911 37 11 0
## 2912 37 12 0
## 2913 37 12 0
## 2914 37 12 0
## 2915 37 12 0
## 2916 37 12 0
## 2917 37 12 0
## 2918 37 12 1
## 2919 37 12 1
## 2920 37 12 2
## 2921 37 12 2
## 2922 37 12 2
## 2923 37 12 2
## 2924 37 12 2
## 2925 37 12 2
## 2926 37 12 2
## 2927 37 12 2
## 2928 37 12 2
## 2929 37 12 2
## 2930 37 12 2
## 2931 37 12 2
## 2932 37 12 2
## 2933 37 12 2
## 2934 37 12 2
## 2935 37 12 2
## 2936 37 12 2
## 2937 37 12 2
## 2938 37 12 2
## 2939 37 12 2
## 2940 37 12 2
## 2941 37 12 2
## 2942 37 12 2
## 2943 37 12 2
## 2944 37 12 2
## 2945 37 12 2
## 2946 37 12 2
## 2947 37 12 2
## 2948 37 12 2
## 2949 37 12 2
## 2950 37 12 2
## 2951 37 12 2
## 2952 37 12 2
## 2953 37 12 2
## 2954 37 12 2
## 2955 37 12 2
## 2956 37 12 2
## 2957 37 12 2
## 2958 37 12 2
## 2959 37 12 2
## 2960 37 12 2
## 2961 37 12 2
## 2962 37 12 2
## 2963 37 12 2
## 2964 37 12 2
## 2965 37 12 2
## 2966 37 12 2
## 2967 37 12 2
## 2968 37 12 2
## 2969 37 12 2
## 2970 37 12 2
## 2971 37 12 2
## 2972 37 12 2
## 2973 37 12 2
## 2974 37 12 2
## 2975 37 12 2
## 2976 38 13 2
## 2977 38 13 2
## 2978 38 13 2
## 2979 38 13 2
## 2980 38 13 2
## 2981 38 13 2
## 2982 38 13 2
## 2983 38 13 2
## 2984 38 13 2
## 2985 38 13 2
## 2986 38 13 2
## 2987 38 13 2
## 2988 38 13 2
## 2989 38 13 2
## 2990 38 13 2
## 2991 38 13 2
## 2992 38 13 2
## 2993 38 13 2
## 2994 38 13 2
## 2995 38 13 2
## 2996 38 13 2
## 2997 38 13 2
## 2998 38 13 1
## 2999 38 13 1
## 3000 38 13 2
## 3001 38 13 2
## 3002 38 14 1
## 3003 38 14 1
## 3004 38 14 1
## 3005 38 14 1
## 3006 38 14 1
## 3007 38 14 1
## 3008 38 14 1
## 3009 38 14 1
## 3010 38 14 1
## 3011 38 14 1
## 3012 38 14 1
## 3013 38 14 1
## 3014 38 14 1
## 3015 38 14 1
## 3016 38 14 1
## 3017 38 14 1
## 3018 38 14 1
## 3019 38 14 1
## 3020 38 14 1
## 3021 38 14 1
## 3022 38 14 1
## 3023 38 14 1
## 3024 38 14 1
## 3025 38 14 1
## 3026 38 14 1
## 3027 38 14 1
## 3028 38 14 1
## 3029 38 14 1
## 3030 38 14 1
## 3031 38 14 1
## 3032 38 14 1
## 3033 38 14 1
## 3034 38 14 1
## 3035 38 14 1
## 3036 38 14 1
## 3037 38 14 1
## 3038 38 14 2
## 3039 38 14 2
## 3040 38 15 0
## 3041 38 15 0
## 3042 38 15 0
## 3043 38 15 0
## 3044 38 15 0
## 3045 38 15 0
## 3046 38 15 0
## 3047 38 15 0
## 3048 38 15 0
## 3049 38 15 0
## 3050 38 15 0
## 3051 38 15 0
## 3052 38 15 0
## 3053 38 15 0
## 3054 38 15 0
## 3055 38 15 0
## 3056 38 15 0
## 3057 38 15 0
## 3058 38 15 0
## 3059 38 15 0
## 3060 38 15 0
## 3061 38 15 0
## 3062 38 15 0
## 3063 38 15 0
## 3064 38 15 0
## 3065 38 15 0
## 3066 38 15 0
## 3067 38 15 0
## 3068 38 15 0
## 3069 38 15 0
## 3070 38 15 0
## 3071 38 15 0
## 3072 38 15 0
## 3073 38 15 0
## 3074 38 15 0
## 3075 38 15 0
## 3076 38 15 0
## 3077 38 15 0
## 3078 38 15 0
## 3079 38 15 0
## 3080 38 15 0
## 3081 38 15 0
## 3082 38 15 0
## 3083 38 15 2
## 3084 38 15 2
## 3085 38 15 2
## 3086 38 15 2
## 3087 38 15 0
## 3088 38 15 0
## 3089 38 15 0
## 3090 38 15 1
## 3091 38 16 0
## 3092 38 16 0
## 3093 38 16 0
## 3094 38 16 0
## 3095 38 16 0
## 3096 38 16 0
## 3097 38 16 0
## 3098 38 16 0
## 3099 38 16 0
## 3100 38 16 0
## 3101 38 16 0
## 3102 38 16 0
## 3103 38 16 0
## 3104 38 16 0
## 3105 38 16 0
## 3106 38 16 0
## 3107 38 16 0
## 3108 38 16 0
## 3109 38 16 0
## 3110 38 16 0
## 3111 38 16 0
## 3112 38 16 0
## 3113 38 16 0
## 3114 38 16 0
## 3115 38 16 0
## 3116 38 16 0
## 3117 38 16 0
## 3118 38 16 0
## 3119 38 16 0
## 3120 38 16 0
## 3121 38 16 0
## 3122 38 16 0
## 3123 38 16 0
## 3124 38 16 0
## stays_in_week_nights adults children babies meal country market_segment
## 1 2 1 0 0 HB PRT Offline TA/TO
## 2 4 2 0 0 BB PRT Online TA
## 3 4 1 0 0 BB PRT Online TA
## 4 4 2 0 0 BB PRT Online TA
## 5 2 2 0 0 BB PRT Online TA
## 6 3 2 0 0 BB PRT Online TA
## 7 3 1 0 0 HB PRT Groups
## 8 3 1 0 0 BB PRT Online TA
## 9 3 2 0 0 BB PRT Online TA
## 10 3 2 0 0 BB PRT Online TA
## 11 2 2 0 0 HB PRT Groups
## 12 2 2 0 0 HB PRT Groups
## 13 2 2 0 0 HB PRT Groups
## 14 2 1 0 0 HB PRT Groups
## 15 2 2 0 0 HB PRT Groups
## 16 2 1 0 0 HB PRT Groups
## 17 2 1 0 0 HB PRT Groups
## 18 2 2 0 0 HB PRT Groups
## 19 2 2 0 0 HB PRT Groups
## 20 2 1 0 0 HB PRT Groups
## 21 2 2 0 0 HB PRT Groups
## 22 2 2 0 0 BB PRT Offline TA/TO
## 23 2 2 0 0 HB PRT Groups
## 24 2 2 0 0 HB PRT Groups
## 25 2 2 0 0 BB PRT Online TA
## 26 5 2 0 0 SC PRT Online TA
## 27 1 1 0 0 BB PRT Online TA
## 28 1 1 0 0 BB PRT Online TA
## 29 1 2 0 0 BB PRT Online TA
## 30 2 1 0 0 BB PRT Groups
## 31 1 2 0 0 SC PRT Online TA
## 32 1 2 0 0 BB PRT Online TA
## 33 3 2 0 0 BB PRT Online TA
## 34 1 2 0 0 BB PRT Online TA
## 35 3 1 0 0 BB PRT Online TA
## 36 4 1 0 0 BB PRT Online TA
## 37 4 2 0 1 HB PRT Online TA
## 38 5 2 0 0 BB PRT Online TA
## 39 6 2 0 0 BB PRT Online TA
## 40 2 2 0 0 BB PRT Online TA
## 41 3 2 0 0 BB PRT Online TA
## 42 4 2 0 0 BB PRT Online TA
## 43 4 1 0 0 BB PRT Online TA
## 44 4 2 0 0 BB PRT Online TA
## 45 2 2 1 0 BB PRT Offline TA/TO
## 46 3 2 0 0 BB PRT Online TA
## 47 3 2 0 0 BB PRT Online TA
## 48 3 2 0 0 BB PRT Complementary
## 49 4 2 0 0 BB PRT Online TA
## 50 4 2 0 0 BB PRT Online TA
## 51 5 2 0 0 BB PRT Direct
## 52 5 2 0 0 BB PRT Direct
## 53 5 2 0 0 BB PRT Online TA
## 54 8 2 0 0 BB PRT Online TA
## 55 15 1 0 0 SC PRT Online TA
## 56 15 1 0 0 SC PRT Online TA
## 57 15 1 0 0 BB PRT Online TA
## 58 2 2 0 0 BB PRT Groups
## 59 2 2 0 0 BB PRT Online TA
## 60 4 2 0 0 BB PRT Offline TA/TO
## 61 4 2 0 0 BB PRT Online TA
## 62 4 2 0 0 BB PRT Online TA
## 63 5 2 0 0 BB PRT Online TA
## 64 8 2 0 0 BB PRT Online TA
## 65 8 2 0 0 SC PRT Online TA
## 66 2 3 0 0 BB PRT Online TA
## 67 3 2 0 0 BB PRT Online TA
## 68 3 2 0 0 BB PRT Online TA
## 69 1 2 0 0 BB PRT Groups
## 70 2 2 0 0 BB PRT Online TA
## 71 2 2 0 0 BB PRT Direct
## 72 3 1 0 0 BB PRT Online TA
## 73 3 2 2 0 BB PRT Offline TA/TO
## 74 7 2 0 0 BB PRT Online TA
## 75 7 2 0 0 BB PRT Online TA
## 76 1 1 0 0 SC PRT Online TA
## 77 1 2 0 0 BB PRT Offline TA/TO
## 78 1 1 0 0 SC PRT Online TA
## 79 1 3 0 0 BB PRT Offline TA/TO
## 80 1 2 0 0 BB PRT Online TA
## 81 1 2 0 0 HB PRT Offline TA/TO
## 82 1 2 0 0 HB PRT Offline TA/TO
## 83 1 2 0 0 BB PRT Online TA
## 84 1 2 0 0 BB PRT Online TA
## 85 1 2 0 0 HB PRT Offline TA/TO
## 86 1 2 0 0 HB ITA Offline TA/TO
## 87 1 3 0 0 HB PRT Offline TA/TO
## 88 1 2 0 0 BB PRT Online TA
## 89 1 2 0 0 HB PRT Offline TA/TO
## 90 1 2 0 0 HB PRT Offline TA/TO
## 91 1 1 0 0 HB PRT Offline TA/TO
## 92 1 2 0 0 HB ITA Offline TA/TO
## 93 1 2 0 0 HB ITA Offline TA/TO
## 94 1 2 0 0 HB PRT Offline TA/TO
## 95 1 2 0 0 HB ITA Offline TA/TO
## 96 1 1 0 0 HB PRT Offline TA/TO
## 97 1 2 0 0 HB PRT Offline TA/TO
## 98 1 2 0 0 HB ITA Offline TA/TO
## 99 1 2 0 0 HB ITA Offline TA/TO
## 100 1 2 0 0 HB PRT Offline TA/TO
## 101 1 2 0 0 HB ITA Offline TA/TO
## 102 1 2 0 0 BB PRT Online TA
## 103 1 1 0 0 HB PRT Offline TA/TO
## 104 1 2 0 0 BB PRT Online TA
## 105 1 2 0 0 HB PRT Offline TA/TO
## 106 1 2 0 0 HB PRT Offline TA/TO
## 107 1 2 0 0 HB PRT Offline TA/TO
## 108 1 2 0 0 HB PRT Offline TA/TO
## 109 1 2 0 0 HB ITA Offline TA/TO
## 110 1 2 0 0 BB PRT Online TA
## 111 1 2 0 0 HB PRT Offline TA/TO
## 112 1 2 0 0 HB ITA Offline TA/TO
## 113 1 3 0 0 HB PRT Offline TA/TO
## 114 1 2 0 0 HB PRT Offline TA/TO
## 115 1 2 0 0 HB ITA Offline TA/TO
## 116 1 2 0 0 HB ITA Offline TA/TO
## 117 0 2 0 0 BB PRT Online TA
## 118 4 2 0 0 BB PRT Online TA
## 119 0 2 0 0 BB PRT Offline TA/TO
## 120 0 2 0 0 BB PRT Direct
## 121 0 2 0 0 BB PRT Online TA
## 122 0 2 0 0 BB PRT Direct
## 123 0 2 0 0 BB PRT Direct
## 124 0 2 1 0 BB PRT Direct
## 125 0 2 0 0 BB PRT Online TA
## 126 0 2 0 0 BB PRT Direct
## 127 0 2 0 0 BB PRT Online TA
## 128 0 1 0 0 BB PRT Direct
## 129 2 2 0 0 BB PRT Online TA
## 130 2 2 0 0 BB PRT Online TA
## 131 3 2 0 0 BB PRT Online TA
## 132 3 2 0 0 BB PRT Online TA
## 133 5 2 0 0 BB PRT Online TA
## 134 7 2 0 0 BB PRT Online TA
## 135 1 2 0 0 SC PRT Direct
## 136 4 2 0 0 BB PRT Online TA
## 137 4 2 0 0 BB PRT Online TA
## 138 4 2 0 0 BB PRT Online TA
## 139 4 2 0 0 BB PRT Online TA
## 140 5 2 0 0 SC PRT Direct
## 141 7 1 0 0 BB PRT Online TA
## 142 7 1 0 0 BB PRT Online TA
## 143 1 2 0 0 BB PRT Online TA
## 144 1 2 0 0 BB PRT Online TA
## 145 2 2 0 0 BB PRT Online TA
## 146 2 2 0 0 BB PRT Online TA
## 147 5 2 0 0 BB PRT Online TA
## 148 3 2 0 0 BB PRT Online TA
## 149 2 1 0 0 BB PRT Online TA
## 150 1 1 0 0 BB PRT Groups
## 151 1 1 0 0 BB PRT Groups
## 152 1 3 0 0 BB PRT Groups
## 153 1 2 0 0 BB PRT Groups
## 154 1 2 0 0 BB PRT Groups
## 155 1 2 0 0 BB PRT Groups
## 156 1 2 0 0 BB PRT Groups
## 157 1 2 0 0 BB PRT Groups
## 158 1 2 0 0 BB PRT Groups
## 159 1 2 0 0 BB PRT Groups
## 160 1 1 0 0 BB PRT Groups
## 161 1 2 0 0 BB PRT Groups
## 162 1 2 0 0 BB PRT Groups
## 163 1 3 0 0 BB PRT Groups
## 164 1 2 0 0 BB PRT Groups
## 165 1 2 0 0 BB PRT Groups
## 166 1 2 0 0 BB PRT Groups
## 167 1 1 0 0 BB PRT Groups
## 168 1 3 0 0 BB PRT Groups
## 169 1 2 0 0 BB PRT Groups
## 170 1 1 0 0 BB PRT Groups
## 171 1 2 0 0 HB ITA Offline TA/TO
## 172 1 1 0 0 HB PRT Offline TA/TO
## 173 1 2 0 0 HB ITA Offline TA/TO
## 174 1 2 0 0 HB PRT Offline TA/TO
## 175 1 2 0 0 HB ITA Offline TA/TO
## 176 1 2 0 0 HB ITA Offline TA/TO
## 177 1 2 0 0 HB ITA Offline TA/TO
## 178 1 2 0 0 HB ITA Offline TA/TO
## 179 1 2 0 0 HB ITA Offline TA/TO
## 180 1 2 0 0 HB PRT Offline TA/TO
## 181 1 2 0 0 HB PRT Offline TA/TO
## 182 1 2 0 0 HB ITA Offline TA/TO
## 183 1 2 0 0 HB ITA Offline TA/TO
## 184 1 2 0 0 HB PRT Offline TA/TO
## 185 1 2 0 0 HB ITA Offline TA/TO
## 186 1 2 0 0 HB ITA Offline TA/TO
## 187 1 2 0 0 HB ITA Offline TA/TO
## 188 1 2 0 0 HB ITA Offline TA/TO
## 189 1 2 0 0 HB ITA Offline TA/TO
## 190 1 2 0 0 HB ITA Offline TA/TO
## 191 1 3 0 0 HB PRT Offline TA/TO
## 192 1 2 0 0 HB ITA Offline TA/TO
## 193 1 2 0 0 HB ITA Offline TA/TO
## 194 1 2 0 0 HB ITA Offline TA/TO
## 195 2 2 0 0 BB PRT Groups
## 196 2 2 0 0 BB PRT Groups
## 197 2 1 0 0 BB PRT Groups
## 198 2 2 0 0 BB PRT Groups
## 199 2 2 0 0 BB PRT Groups
## 200 2 2 0 0 BB PRT Groups
## 201 2 1 0 0 BB PRT Online TA
## 202 2 2 0 0 BB PRT Groups
## 203 2 2 0 0 BB PRT Groups
## 204 2 1 0 0 BB PRT Groups
## 205 2 2 0 0 BB PRT Groups
## 206 2 2 0 0 BB PRT Groups
## 207 2 2 0 0 BB PRT Groups
## 208 2 2 0 0 BB PRT Groups
## 209 2 2 0 0 BB PRT Groups
## 210 2 2 0 0 BB PRT Groups
## 211 2 2 0 0 BB PRT Groups
## 212 2 2 0 0 BB PRT Groups
## 213 2 2 0 0 BB PRT Groups
## 214 2 2 0 0 BB PRT Groups
## 215 2 3 0 0 BB PRT Groups
## 216 2 2 0 0 BB PRT Groups
## 217 2 2 0 0 BB PRT Groups
## 218 2 2 0 0 BB PRT Groups
## 219 2 2 0 0 BB PRT Groups
## 220 2 2 0 0 BB PRT Groups
## 221 2 1 0 0 BB PRT Groups
## 222 2 2 0 0 BB PRT Groups
## 223 2 2 0 0 BB PRT Groups
## 224 2 2 0 0 BB PRT Groups
## 225 2 2 0 0 BB PRT Groups
## 226 3 2 0 0 BB PRT Groups
## 227 0 2 0 0 BB PRT Online TA
## 228 2 2 0 0 BB PRT Online TA
## 229 2 2 0 0 BB PRT Online TA
## 230 5 1 0 0 BB PRT Online TA
## 231 7 2 0 0 BB PRT Online TA
## 232 0 1 0 0 BB PRT Online TA
## 233 0 2 0 0 BB PRT Online TA
## 234 1 2 0 0 SC PRT Online TA
## 235 3 2 0 0 HB PRT Offline TA/TO
## 236 8 2 0 0 BB PRT Online TA
## 237 2 2 0 0 SC PRT Online TA
## 238 2 2 0 0 BB PRT Groups
## 239 2 2 0 0 BB PRT Groups
## 240 2 3 0 0 BB PRT Groups
## 241 2 2 0 0 BB PRT Groups
## 242 2 2 0 0 BB PRT Groups
## 243 2 2 0 0 BB PRT Groups
## 244 2 2 0 0 BB PRT Groups
## 245 2 2 0 0 BB PRT Groups
## 246 2 2 0 0 BB PRT Groups
## 247 2 2 0 0 BB PRT Groups
## 248 2 2 0 0 BB PRT Groups
## 249 2 2 0 0 BB PRT Groups
## 250 2 2 0 0 BB PRT Groups
## 251 2 2 0 0 BB PRT Groups
## 252 2 1 0 0 BB PRT Groups
## 253 2 3 0 0 BB PRT Groups
## 254 2 2 0 0 BB PRT Groups
## 255 2 2 0 0 BB PRT Groups
## 256 2 2 0 0 BB PRT Groups
## 257 2 2 0 0 BB PRT Groups
## 258 2 2 0 0 BB PRT Groups
## 259 2 2 0 0 BB PRT Groups
## 260 2 1 0 0 BB PRT Groups
## 261 2 2 0 0 BB PRT Groups
## 262 2 2 0 0 BB PRT Groups
## 263 2 2 0 0 BB PRT Groups
## 264 2 2 0 0 BB PRT Groups
## 265 2 2 0 0 BB PRT Groups
## 266 2 2 0 0 BB PRT Groups
## 267 2 2 0 0 BB PRT Groups
## 268 2 2 0 0 BB PRT Groups
## 269 2 2 0 0 BB PRT Groups
## 270 2 2 0 0 BB PRT Groups
## 271 2 3 0 0 BB PRT Groups
## 272 3 2 0 0 BB PRT Direct
## 273 4 2 0 0 BB PRT Online TA
## 274 4 1 0 0 BB PRT Online TA
## 275 4 2 0 0 BB PRT Online TA
## 276 5 2 0 0 BB PRT Online TA
## 277 5 2 0 0 BB PRT Online TA
## 278 5 2 0 0 BB PRT Online TA
## 279 2 2 0 0 BB PRT Groups
## 280 2 2 0 0 BB PRT Groups
## 281 2 1 0 0 BB PRT Groups
## 282 2 2 0 0 BB PRT Groups
## 283 2 2 0 0 BB PRT Groups
## 284 2 1 0 0 BB PRT Online TA
## 285 2 2 0 0 BB PRT Groups
## 286 2 2 0 0 BB PRT Groups
## 287 2 2 0 0 BB PRT Groups
## 288 2 2 0 0 BB PRT Online TA
## 289 1 2 0 0 HB PRT Groups
## 290 1 2 0 0 HB PRT Groups
## 291 1 2 0 0 HB PRT Groups
## 292 1 2 0 0 HB PRT Groups
## 293 1 2 0 0 HB PRT Groups
## 294 1 2 0 0 HB PRT Groups
## 295 1 2 0 0 HB PRT Groups
## 296 1 2 0 0 HB PRT Groups
## 297 1 2 0 0 HB PRT Groups
## 298 1 1 0 0 HB PRT Groups
## 299 1 2 0 0 HB PRT Groups
## 300 1 2 0 0 HB PRT Groups
## 301 1 1 0 0 HB PRT Groups
## 302 1 2 0 0 HB PRT Groups
## 303 1 2 0 0 HB PRT Groups
## 304 1 2 0 0 HB PRT Groups
## 305 1 2 0 0 HB PRT Groups
## 306 1 2 0 0 HB PRT Groups
## 307 1 2 0 0 HB PRT Groups
## 308 1 2 0 0 HB PRT Groups
## 309 1 2 0 0 HB PRT Groups
## 310 1 1 0 0 HB PRT Groups
## 311 1 2 0 0 HB PRT Groups
## 312 1 2 0 0 HB PRT Groups
## 313 1 2 0 0 HB PRT Groups
## 314 1 3 0 0 HB PRT Groups
## 315 1 2 0 0 HB PRT Offline TA/TO
## 316 1 2 0 0 HB PRT Groups
## 317 1 1 0 0 HB PRT Groups
## 318 1 2 0 0 HB PRT Groups
## 319 1 2 0 0 HB PRT Groups
## 320 1 2 0 0 HB PRT Groups
## 321 1 2 0 0 HB PRT Groups
## 322 1 2 0 0 HB PRT Offline TA/TO
## 323 1 2 0 0 HB PRT Groups
## 324 1 2 0 0 HB PRT Groups
## 325 1 2 0 0 HB PRT Groups
## 326 1 2 0 0 HB PRT Groups
## 327 2 1 0 0 BB PRT Online TA
## 328 3 2 0 0 HB PRT Groups
## 329 3 1 0 0 HB PRT Groups
## 330 3 2 0 0 HB PRT Groups
## 331 3 2 0 0 HB PRT Groups
## 332 3 1 0 0 HB PRT Groups
## 333 5 0 0 0 HB PRT Groups
## 334 3 2 0 0 BB PRT Online TA
## 335 1 2 0 0 SC PRT Direct
## 336 2 2 1 0 BB PRT Direct
## 337 2 2 1 0 BB PRT Direct
## 338 2 1 0 0 BB PRT Direct
## 339 2 1 0 0 BB PRT Direct
## 340 1 1 0 0 BB PRT Groups
## 341 1 2 0 0 BB PRT Online TA
## 342 1 2 1 0 BB PRT Direct
## 343 1 1 0 0 BB PRT Groups
## 344 1 2 1 0 BB PRT Online TA
## 345 1 3 0 0 BB PRT Online TA
## 346 1 2 0 0 BB PRT Online TA
## 347 1 2 0 0 HB ITA Offline TA/TO
## 348 1 2 0 0 HB ITA Offline TA/TO
## 349 1 2 0 0 HB ITA Groups
## 350 1 1 0 0 HB PRT Groups
## 351 1 2 0 0 HB ITA Offline TA/TO
## 352 1 2 0 0 HB ITA Offline TA/TO
## 353 1 2 0 0 HB ITA Offline TA/TO
## 354 1 2 0 0 HB ITA Offline TA/TO
## 355 1 1 0 0 HB PRT Groups
## 356 1 2 0 0 HB ITA Offline TA/TO
## 357 1 2 0 0 HB ITA Offline TA/TO
## 358 1 2 0 0 HB ITA Offline TA/TO
## 359 1 2 0 0 HB ITA Offline TA/TO
## 360 1 2 0 0 HB ITA Offline TA/TO
## 361 1 2 0 0 HB ITA Offline TA/TO
## 362 1 2 0 0 HB ITA Offline TA/TO
## 363 1 1 0 0 HB PRT Groups
## 364 1 2 0 0 HB ITA Offline TA/TO
## 365 1 2 0 0 HB ITA Offline TA/TO
## 366 1 2 0 0 HB ITA Offline TA/TO
## 367 1 1 0 0 HB ITA Offline TA/TO
## 368 1 2 0 0 HB ITA Offline TA/TO
## 369 1 2 0 0 HB ITA Offline TA/TO
## 370 1 2 0 0 HB PRT Groups
## 371 1 2 0 0 HB PRT Groups
## 372 1 2 0 0 HB ITA Offline TA/TO
## 373 1 2 0 0 HB PRT Groups
## 374 1 2 0 0 HB PRT Groups
## 375 1 2 0 0 HB ITA Offline TA/TO
## 376 1 2 0 0 HB ITA Offline TA/TO
## 377 1 3 0 0 HB PRT Groups
## 378 1 2 0 0 HB PRT Groups
## 379 1 2 0 0 HB ITA Offline TA/TO
## 380 1 2 0 0 HB ITA Offline TA/TO
## 381 2 2 0 0 BB PRT Groups
## 382 2 1 0 0 BB PRT Groups
## 383 2 2 0 0 BB ESP Groups
## 384 2 2 0 0 BB PRT Groups
## 385 2 2 0 0 BB PRT Groups
## 386 2 2 0 0 BB PRT Groups
## 387 2 2 0 0 BB PRT Groups
## 388 2 2 0 0 BB PRT Groups
## 389 2 2 0 0 BB PRT Groups
## 390 2 2 0 0 BB PRT Groups
## 391 2 2 0 0 BB PRT Groups
## 392 2 2 0 0 BB PRT Groups
## 393 2 1 0 0 BB PRT Groups
## 394 2 2 0 0 BB PRT Groups
## 395 2 2 0 0 BB PRT Groups
## 396 2 1 0 0 HB PRT Groups
## 397 2 2 0 0 BB PRT Groups
## 398 2 1 0 0 BB PRT Groups
## 399 2 2 0 0 BB PRT Groups
## 400 2 2 0 0 BB PRT Groups
## 401 2 2 0 0 BB PRT Groups
## 402 2 2 0 0 BB PRT Groups
## 403 2 2 0 0 BB PRT Groups
## 404 2 2 0 0 BB PRT Groups
## 405 2 2 0 0 BB ITA Groups
## 406 2 2 0 0 BB PRT Groups
## 407 2 2 0 0 BB PRT Groups
## 408 2 2 0 0 BB ESP Groups
## 409 2 2 0 0 BB PRT Groups
## 410 2 2 0 0 BB PRT Groups
## 411 2 2 0 0 BB PRT Groups
## 412 2 2 0 0 BB PRT Groups
## 413 0 2 0 0 BB PRT Online TA
## 414 0 2 0 0 BB PRT Direct
## 415 1 2 0 0 BB PRT Online TA
## 416 3 2 0 0 BB PRT Groups
## 417 3 2 0 0 BB PRT Online TA
## 418 1 2 0 0 BB PRT Groups
## 419 1 2 0 0 BB ESP Groups
## 420 1 2 0 0 BB PRT Groups
## 421 1 2 0 0 BB PRT Groups
## 422 1 2 0 0 BB ESP Groups
## 423 1 2 0 0 BB PRT Groups
## 424 1 2 0 0 BB PRT Groups
## 425 1 3 0 0 BB ESP Groups
## 426 1 2 0 0 BB PRT Groups
## 427 1 2 0 0 BB PRT Groups
## 428 1 2 0 0 BB PRT Groups
## 429 1 2 0 0 BB PRT Groups
## 430 1 2 0 0 BB PRT Groups
## 431 1 2 0 0 BB ESP Groups
## 432 1 2 0 0 BB ESP Groups
## 433 1 2 0 0 BB PRT Groups
## 434 1 1 0 0 BB ESP Groups
## 435 1 1 0 0 BB ESP Groups
## 436 1 2 0 0 BB PRT Groups
## 437 1 2 0 0 BB PRT Groups
## 438 1 2 0 0 BB PRT Online TA
## 439 1 3 0 0 BB PRT Groups
## 440 1 2 0 0 BB ESP Groups
## 441 1 2 0 0 BB ESP Groups
## 442 1 1 0 0 BB ESP Groups
## 443 1 1 0 0 BB ESP Groups
## 444 1 2 0 0 BB PRT Groups
## 445 1 2 0 0 BB PRT Groups
## 446 1 2 0 0 BB PRT Groups
## 447 1 2 0 0 BB PRT Groups
## 448 1 2 0 0 BB PRT Groups
## 449 1 2 0 0 BB PRT Groups
## 450 1 2 0 0 BB PRT Groups
## 451 1 2 0 0 BB PRT Groups
## 452 1 2 0 0 BB PRT Groups
## 453 1 2 0 0 BB ESP Groups
## 454 1 3 0 0 BB ESP Groups
## 455 1 2 0 0 BB PRT Groups
## 456 1 2 0 0 BB PRT Groups
## 457 1 2 0 0 BB PRT Groups
## 458 1 2 0 0 BB ESP Groups
## 459 1 2 0 0 BB ESP Groups
## 460 1 1 0 0 BB ESP Groups
## 461 1 2 0 0 BB PRT Groups
## 462 1 2 0 0 BB PRT Groups
## 463 1 3 0 0 BB PRT Groups
## 464 1 2 0 0 BB PRT Groups
## 465 1 2 0 0 BB PRT Groups
## 466 2 2 0 0 BB PRT Online TA
## 467 2 1 0 0 BB PRT Corporate
## 468 2 2 0 0 BB DEU Offline TA/TO
## 469 2 2 0 0 BB FRA Online TA
## 470 2 2 0 0 BB PRT Online TA
## 471 2 2 0 0 BB NLD Online TA
## 472 7 2 1 0 BB GBR Online TA
## 473 7 2 0 0 BB PRT Online TA
## 474 0 2 0 0 BB PRT Direct
## 475 0 2 0 0 BB PRT Direct
## 476 2 1 0 0 BB PRT Corporate
## 477 2 2 0 0 BB PRT Direct
## 478 3 2 0 0 BB PRT Direct
## 479 3 2 1 0 BB ROU Online TA
## 480 5 3 0 0 BB DEU Offline TA/TO
## 481 5 2 0 0 BB DEU Offline TA/TO
## 482 1 1 0 0 BB PRT Corporate
## 483 1 2 0 0 BB PRT Complementary
## 484 3 2 0 1 BB PRT Online TA
## 485 3 2 0 0 BB BRA Online TA
## 486 3 2 1 0 BB PRT Online TA
## 487 5 2 1 0 BB PRT Online TA
## 488 5 2 0 0 BB FRA Online TA
## 489 5 2 0 0 SC SWE Online TA
## 490 1 1 0 0 BB PRT Corporate
## 491 3 2 0 0 BB PRT Online TA
## 492 3 2 0 0 SC PRT Online TA
## 493 1 2 0 0 BB PRT Online TA
## 494 2 2 0 0 BB DEU Online TA
## 495 2 2 0 0 BB PRT Groups
## 496 3 1 0 0 BB GBR Online TA
## 497 7 2 1 0 BB PRT Online TA
## 498 7 2 0 0 BB PRT Online TA
## 499 7 2 0 0 BB PRT Online TA
## 500 11 1 0 0 BB PRT Online TA
## 501 1 2 0 0 BB PRT Direct
## 502 1 2 0 0 HB ITA Offline TA/TO
## 503 1 1 0 0 HB ITA Offline TA/TO
## 504 1 2 0 0 HB ITA Offline TA/TO
## 505 1 2 0 0 HB ITA Offline TA/TO
## 506 1 2 0 0 BB PRT Online TA
## 507 1 2 0 0 HB ITA Offline TA/TO
## 508 1 2 0 0 HB ITA Offline TA/TO
## 509 1 2 0 0 HB ITA Offline TA/TO
## 510 1 2 0 0 HB ITA Offline TA/TO
## 511 1 2 0 0 HB ITA Offline TA/TO
## 512 1 2 0 0 BB PRT Online TA
## 513 1 3 0 0 HB ITA Offline TA/TO
## 514 1 2 0 0 HB ITA Offline TA/TO
## 515 1 2 0 0 HB ITA Offline TA/TO
## 516 1 2 0 0 HB ITA Offline TA/TO
## 517 1 2 0 0 HB ITA Offline TA/TO
## 518 1 2 0 0 HB ITA Offline TA/TO
## 519 1 1 0 0 HB ITA Offline TA/TO
## 520 1 2 0 0 HB ITA Offline TA/TO
## 521 1 2 0 0 HB ITA Offline TA/TO
## 522 1 2 0 0 HB ITA Offline TA/TO
## 523 1 2 0 0 HB ITA Offline TA/TO
## 524 1 2 0 0 HB ITA Offline TA/TO
## 525 1 1 1 0 HB ITA Offline TA/TO
## 526 1 1 0 0 HB ITA Offline TA/TO
## 527 1 2 0 0 HB ITA Offline TA/TO
## 528 1 2 0 0 HB ITA Offline TA/TO
## 529 1 2 0 0 HB ITA Offline TA/TO
## 530 1 2 0 0 HB ITA Offline TA/TO
## 531 1 2 0 0 HB ITA Offline TA/TO
## 532 1 1 0 0 HB ITA Offline TA/TO
## 533 3 2 0 0 BB AUT Online TA
## 534 4 2 0 0 BB PRT Online TA
## 535 0 1 0 0 BB AGO Complementary
## 536 1 2 0 0 BB BEL Online TA
## 537 0 2 0 0 BB PRT Complementary
## 538 0 1 2 0 BB PRT Direct
## 539 0 2 0 0 BB PRT Complementary
## 540 0 2 0 0 BB PRT Direct
## 541 0 2 NA 0 BB PRT Undefined
## 542 2 2 0 0 BB PRT Groups
## 543 2 2 0 0 BB PRT Online TA
## 544 2 2 1 1 BB PRT Complementary
## 545 2 2 0 0 BB PRT Groups
## 546 3 2 0 0 BB PRT Groups
## 547 3 2 0 0 BB PRT Groups
## 548 3 2 0 0 BB PRT Groups
## 549 3 2 0 0 BB ESP Groups
## 550 3 2 0 0 BB PRT Groups
## 551 3 2 0 0 BB ESP Groups
## 552 3 2 0 0 BB PRT Groups
## 553 3 2 0 0 BB ESP Groups
## 554 3 2 0 0 BB PRT Groups
## 555 3 2 0 0 BB PRT Groups
## 556 3 2 0 0 BB PRT Groups
## 557 3 2 0 0 BB ESP Groups
## 558 3 2 0 0 BB PRT Groups
## 559 3 2 0 0 BB PRT Groups
## 560 3 2 0 0 BB PRT Groups
## 561 3 2 0 0 BB ESP Groups
## 562 3 2 0 0 BB ESP Groups
## 563 3 2 0 0 BB PRT Groups
## 564 3 2 0 0 BB ESP Groups
## 565 3 2 0 0 BB PRT Groups
## 566 3 2 0 0 BB PRT Groups
## 567 3 2 0 0 BB PRT Groups
## 568 3 1 0 0 BB ESP Groups
## 569 3 3 0 0 BB ESP Groups
## 570 3 2 0 0 BB PRT Groups
## 571 3 2 0 0 BB ESP Groups
## 572 3 2 0 0 BB ESP Groups
## 573 3 2 0 0 BB PRT Groups
## 574 3 1 0 0 BB ESP Groups
## 575 3 2 0 0 BB PRT Groups
## 576 4 2 0 0 BB FRA Online TA
## 577 12 2 0 0 BB PRT Online TA
## 578 12 2 0 0 BB PRT Online TA
## 579 3 3 0 0 BB ESP Groups
## 580 3 1 0 0 BB PRT Groups
## 581 2 2 0 0 SC BEL Online TA
## 582 2 2 0 0 BB PRT Complementary
## 583 2 2 0 0 SC CHE Online TA
## 584 1 2 0 0 BB PRT Direct
## 585 1 2 0 0 BB PRT Direct
## 586 1 2 0 0 BB PRT Online TA
## 587 2 1 0 0 BB PRT Corporate
## 588 5 2 0 0 BB NOR Online TA
## 589 2 3 0 0 BB ESP Groups
## 590 2 2 0 0 BB PRT Groups
## 591 2 3 0 0 BB PRT Groups
## 592 2 2 0 0 BB ESP Groups
## 593 2 2 0 0 BB PRT Groups
## 594 1 2 0 0 BB FRA Direct
## 595 1 2 0 0 BB PRT Direct
## 596 1 2 0 0 BB PRT Direct
## 597 1 2 0 0 BB PRT Direct
## 598 1 1 0 0 BB AGO Complementary
## 599 1 1 0 0 BB RUS Corporate
## 600 1 1 0 0 BB RUS Corporate
## 601 1 1 0 0 BB PRT Complementary
## 602 2 2 0 0 BB ESP Groups
## 603 2 2 0 0 BB PRT Groups
## 604 2 2 0 0 BB PRT Groups
## 605 2 2 0 0 BB PRT Groups
## 606 2 2 0 0 BB PRT Groups
## 607 2 2 0 0 BB FRA Online TA
## 608 2 2 NA 0 BB PRT Direct
## 609 2 2 0 0 BB ITA Direct
## 610 2 2 0 0 BB ESP Groups
## 611 2 2 0 0 BB PRT Groups
## 612 2 1 0 0 BB ESP Groups
## 613 2 2 0 0 BB ESP Groups
## 614 2 2 0 0 BB PRT Groups
## 615 2 2 0 0 BB PRT Groups
## 616 2 2 0 0 BB ESP Groups
## 617 2 2 0 0 BB ESP Groups
## 618 2 2 0 0 BB PRT Groups
## 619 2 2 0 0 BB PRT Groups
## 620 2 3 NA 0 BB PRT Undefined
## 621 2 3 0 0 BB DEU Direct
## 622 2 2 0 0 BB DEU Direct
## 623 2 2 0 0 BB PRT Groups
## 624 2 2 0 0 BB PRT Groups
## 625 2 2 0 0 BB PRT Groups
## 626 2 2 0 0 BB PRT Groups
## 627 2 2 0 0 BB ISR Online TA
## 628 2 2 0 0 BB ESP Groups
## 629 2 2 0 0 BB ESP Groups
## 630 2 2 0 0 BB PRT Groups
## 631 3 2 0 0 BB RUS Corporate
## 632 3 2 0 0 BB RUS Corporate
## 633 3 1 0 0 BB RUS Corporate
## 634 3 2 0 0 BB RUS Corporate
## 635 3 2 0 0 BB IRL Direct
## 636 3 2 0 0 BB RUS Corporate
## 637 3 2 0 0 BB RUS Corporate
## 638 3 1 0 0 BB RUS Corporate
## 639 3 2 0 0 BB RUS Corporate
## 640 3 2 0 0 BB RUS Corporate
## 641 3 1 0 0 BB RUS Corporate
## 642 3 2 0 0 BB RUS Corporate
## 643 3 2 0 0 BB RUS Corporate
## 644 3 2 0 0 BB RUS Corporate
## 645 3 2 0 0 BB RUS Corporate
## 646 3 2 0 0 BB RUS Corporate
## 647 3 1 0 0 BB RUS Corporate
## 648 3 1 0 0 BB PRT Offline TA/TO
## 649 3 2 0 0 BB RUS Corporate
## 650 3 2 0 0 BB RUS Corporate
## 651 3 2 0 0 BB ESP Online TA
## 652 3 2 0 0 BB RUS Corporate
## 653 3 1 0 0 BB RUS Corporate
## 654 3 3 0 0 BB RUS Corporate
## 655 3 2 0 0 BB RUS Corporate
## 656 3 2 0 0 BB RUS Corporate
## 657 3 2 0 0 BB PRT Offline TA/TO
## 658 3 2 0 0 BB RUS Corporate
## 659 3 2 0 0 BB RUS Corporate
## 660 3 2 1 0 BB IRL Direct
## 661 3 2 0 0 BB RUS Corporate
## 662 3 2 0 0 BB RUS Corporate
## 663 3 1 0 0 BB RUS Corporate
## 664 3 2 0 0 BB RUS Corporate
## 665 3 2 0 0 SC FRA Online TA
## 666 3 1 0 0 BB RUS Corporate
## 667 3 2 0 0 BB RUS Corporate
## 668 3 1 0 0 BB RUS Corporate
## 669 4 2 0 0 BB PRT Online TA
## 670 4 2 0 0 BB PRT Online TA
## 671 4 2 0 0 BB POL Online TA
## 672 4 2 0 0 BB PRT Direct
## 673 4 2 0 0 BB FRA Online TA
## 674 4 2 0 0 BB FRA Online TA
## 675 2 3 0 0 BB ESP Groups
## 676 2 2 0 0 BB ESP Groups
## 677 2 2 0 0 BB PRT Groups
## 678 2 1 0 0 BB ESP Groups
## 679 4 2 0 0 BB PRT Offline TA/TO
## 680 1 1 0 0 BB PRT Direct
## 681 1 2 0 0 BB PRT Direct
## 682 1 1 0 0 SC CHN Online TA
## 683 1 2 0 0 BB PRT Online TA
## 684 1 1 0 0 BB PRT Online TA
## 685 1 2 0 0 SC USA Online TA
## 686 1 2 0 0 SC POL Online TA
## 687 1 2 0 0 SC PRT Online TA
## 688 1 2 0 0 BB PRT Complementary
## 689 1 2 0 0 BB ESP Online TA
## 690 1 2 0 0 BB PRT Direct
## 691 2 1 0 0 SC PRT Online TA
## 692 2 1 0 0 BB PRT Online TA
## 693 2 2 0 0 BB ITA Online TA
## 694 3 2 0 0 BB PRT Online TA
## 695 3 2 1 0 BB FRA Offline TA/TO
## 696 3 2 0 0 BB FRA Offline TA/TO
## 697 3 1 0 0 BB DEU Direct
## 698 3 1 0 0 BB DEU Direct
## 699 5 1 0 0 BB AGO Direct
## 700 1 2 0 1 BB PRT Online TA
## 701 1 2 0 0 BB PRT Online TA
## 702 1 2 0 0 BB PRT Online TA
## 703 1 2 0 0 BB PRT Direct
## 704 1 2 0 0 SC FRA Online TA
## 705 2 2 0 0 BB ESP Groups
## 706 2 2 0 0 BB ESP Groups
## 707 2 2 0 0 BB PRT Groups
## 708 1 2 0 0 BB PRT Online TA
## 709 1 2 0 1 BB PRT Online TA
## 710 1 2 0 0 SC PRT Online TA
## 711 2 2 0 0 BB ESP Groups
## 712 2 3 0 0 BB ESP Groups
## 713 2 2 0 0 BB PRT Direct
## 714 2 2 0 0 BB ESP Groups
## 715 2 2 0 0 BB PRT Groups
## 716 2 2 0 0 BB PRT Groups
## 717 2 1 0 0 BB PRT Online TA
## 718 2 2 0 0 SC PRT Online TA
## 719 2 2 0 0 BB ESP Groups
## 720 2 2 2 0 SC POL Online TA
## 721 2 2 0 0 BB ESP Groups
## 722 2 2 0 0 BB ESP Groups
## 723 2 2 0 0 BB PRT Groups
## 724 2 2 0 0 BB PRT Groups
## 725 2 2 0 0 BB PRT Groups
## 726 2 3 0 0 BB ESP Groups
## 727 2 2 0 0 BB ESP Groups
## 728 2 2 0 0 BB PRT Groups
## 729 2 1 0 0 BB PRT Groups
## 730 2 2 0 1 SC PRT Online TA
## 731 2 3 0 0 BB ESP Groups
## 732 2 2 0 0 SC FRA Online TA
## 733 2 2 0 0 BB ESP Groups
## 734 2 2 0 0 BB PRT Groups
## 735 2 2 0 0 BB ESP Groups
## 736 2 2 0 0 BB ESP Groups
## 737 2 2 0 0 BB ESP Groups
## 738 2 1 0 0 BB ESP Groups
## 739 2 2 0 0 BB ESP Groups
## 740 2 2 0 0 BB ESP Groups
## 741 2 2 0 0 BB ESP Groups
## 742 2 2 0 0 BB PRT Online TA
## 743 2 2 0 0 BB PRT Direct
## 744 2 2 0 0 BB ESP Groups
## 745 2 2 0 0 BB ESP Groups
## 746 2 2 0 0 BB PRT Groups
## 747 2 1 0 0 HB PRT Direct
## 748 2 2 0 1 BB ESP Online TA
## 749 2 2 0 0 BB PRT Direct
## 750 2 2 0 0 BB PRT Online TA
## 751 2 2 0 0 BB PRT Online TA
## 752 3 1 0 0 BB ESP Direct
## 753 3 2 0 0 BB PRT Online TA
## 754 4 2 0 0 BB PRT Online TA
## 755 4 2 0 0 BB PRT Online TA
## 756 4 2 0 0 BB PRT Online TA
## 757 1 2 0 0 BB PRT Direct
## 758 1 1 0 0 BB FRA Online TA
## 759 1 1 2 0 BB PRT Online TA
## 760 1 2 0 0 BB CHE Direct
## 761 1 2 0 0 BB PRT Online TA
## 762 1 2 0 0 SC PRT Online TA
## 763 1 2 0 0 BB FRA Direct
## 764 1 2 1 0 BB FRA Online TA
## 765 1 2 0 0 BB PRT Direct
## 766 1 2 0 1 BB PRT Direct
## 767 1 2 0 0 BB FRA Online TA
## 768 1 2 1 0 BB FRA Online TA
## 769 1 2 0 0 BB PRT Direct
## 770 1 2 0 0 HB ITA Offline TA/TO
## 771 1 2 0 0 HB ITA Offline TA/TO
## 772 1 1 0 0 HB ITA Offline TA/TO
## 773 1 2 0 0 HB ITA Offline TA/TO
## 774 1 2 0 0 HB ITA Groups
## 775 1 2 0 0 HB PRT Groups
## 776 1 2 0 0 HB ITA Offline TA/TO
## 777 1 1 0 0 HB ITA Offline TA/TO
## 778 1 2 0 0 HB ITA Offline TA/TO
## 779 1 2 0 0 SC PRT Online TA
## 780 1 2 0 0 SC PRT Direct
## 781 1 2 0 0 BB BRA Direct
## 782 1 2 0 0 BB PRT Online TA
## 783 1 2 0 0 BB PRT Direct
## 784 1 2 0 0 HB PRT Groups
## 785 1 2 0 0 HB ITA Offline TA/TO
## 786 1 3 0 0 HB ITA Groups
## 787 1 2 0 0 HB PRT Groups
## 788 1 2 2 0 SC FRA Online TA
## 789 1 2 0 0 HB ITA Offline TA/TO
## 790 1 2 0 0 HB ITA Offline TA/TO
## 791 1 2 0 0 HB ITA Offline TA/TO
## 792 1 2 0 0 HB ITA Offline TA/TO
## 793 1 2 0 0 HB ITA Offline TA/TO
## 794 1 2 0 0 HB ITA Offline TA/TO
## 795 1 2 0 0 HB ITA Offline TA/TO
## 796 1 2 0 0 HB PRT Groups
## 797 1 2 0 0 HB ITA Offline TA/TO
## 798 1 2 0 0 HB ITA Offline TA/TO
## 799 1 2 0 0 HB PRT Groups
## 800 1 2 0 0 HB ITA Offline TA/TO
## 801 1 2 0 0 HB PRT Groups
## 802 1 2 0 0 HB ITA Offline TA/TO
## 803 1 2 0 0 HB ITA Offline TA/TO
## 804 1 2 0 0 HB PRT Groups
## 805 1 2 0 0 BB FRA Online TA
## 806 1 2 0 0 HB ITA Offline TA/TO
## 807 1 2 0 0 HB ITA Offline TA/TO
## 808 1 2 0 0 HB ITA Offline TA/TO
## 809 1 2 0 0 HB ITA Offline TA/TO
## 810 1 2 0 0 HB ITA Offline TA/TO
## 811 1 2 0 0 HB ITA Groups
## 812 1 2 0 0 HB ITA Offline TA/TO
## 813 1 2 0 0 HB ITA Offline TA/TO
## 814 1 2 0 0 HB ITA Offline TA/TO
## 815 1 2 0 0 HB ITA Offline TA/TO
## 816 2 2 0 0 BB ESP Groups
## 817 2 2 0 0 BB ESP Groups
## 818 2 2 0 0 BB PRT Groups
## 819 2 1 0 0 BB PRT Groups
## 820 2 2 0 0 BB ESP Groups
## 821 2 2 0 0 SC PRT Online TA
## 822 2 2 0 0 BB ESP Groups
## 823 2 2 0 0 BB ESP Groups
## 824 2 3 0 0 BB ESP Groups
## 825 2 2 0 0 BB PRT Groups
## 826 2 2 0 0 BB ESP Groups
## 827 2 2 0 0 BB ESP Groups
## 828 2 2 0 0 BB PRT Groups
## 829 2 1 0 0 BB ESP Groups
## 830 2 2 0 0 BB ESP Groups
## 831 2 2 0 0 BB ESP Groups
## 832 2 3 0 0 BB ESP Groups
## 833 2 2 0 0 BB ESP Online TA
## 834 2 2 0 0 BB ESP Groups
## 835 2 2 0 0 BB ESP Groups
## 836 2 2 0 0 BB ESP Groups
## 837 2 1 0 0 BB POL Groups
## 838 2 2 0 0 BB ESP Groups
## 839 2 2 0 0 BB ESP Groups
## 840 2 2 0 0 BB ESP Groups
## 841 2 2 0 0 BB ESP Groups
## 842 2 2 0 0 BB ESP Groups
## 843 2 2 0 0 BB PRT Groups
## 844 2 2 0 0 BB ESP Groups
## 845 2 2 0 0 BB ESP Groups
## 846 2 2 0 0 BB ESP Groups
## 847 2 1 0 0 BB ESP Groups
## 848 2 2 0 0 BB PRT Groups
## 849 3 2 0 0 BB PRT Online TA
## 850 3 2 0 0 BB NLD Online TA
## 851 4 2 0 0 SC FRA Online TA
## 852 5 1 0 0 BB POL Online TA
## 853 3 2 2 0 SC AGO Online TA
## 854 3 2 0 0 BB FRA Online TA
## 855 4 2 0 0 BB PRT Offline TA/TO
## 856 4 2 0 0 BB DEU Offline TA/TO
## 857 5 1 0 0 BB PRT Online TA
## 858 0 2 0 0 BB PRT Direct
## 859 0 2 2 0 BB PRT Online TA
## 860 0 2 0 0 BB PRT Direct
## 861 0 2 0 0 BB PRT Online TA
## 862 0 2 0 0 BB PRT Direct
## 863 0 0 0 0 BB FRA Online TA
## 864 0 2 0 0 BB ESP Online TA
## 865 0 2 0 0 BB ESP Online TA
## 866 0 2 2 0 BB PRT Online TA
## 867 0 2 0 0 SC CHE Online TA
## 868 0 2 3 0 BB FRA Online TA
## 869 0 2 0 0 BB ESP Online TA
## 870 0 2 0 0 BB ESP Online TA
## 871 0 2 0 0 BB FRA Direct
## 872 1 2 0 0 BB PRT Online TA
## 873 1 2 0 0 BB PRT Online TA
## 874 1 2 0 0 BB PRT Offline TA/TO
## 875 1 2 0 0 BB ITA Online TA
## 876 1 2 0 0 BB NOR Online TA
## 877 1 2 0 0 BB PRT Offline TA/TO
## 878 2 2 0 0 SC PRT Online TA
## 879 0 2 0 0 BB PRT Online TA
## 880 0 2 0 0 SC PRT Online TA
## 881 0 2 0 0 SC PRT Online TA
## 882 0 2 0 0 SC PRT Online TA
## 883 1 2 0 0 BB PRT Groups
## 884 1 2 0 0 BB ESP Groups
## 885 1 2 0 0 BB PRT Groups
## 886 1 2 0 0 BB PRT Groups
## 887 1 2 0 0 BB SWE Direct
## 888 1 1 0 0 BB PRT Direct
## 889 1 1 0 0 BB DEU Offline TA/TO
## 890 1 2 0 0 BB ESP Groups
## 891 1 1 0 0 BB PRT Groups
## 892 0 2 0 0 BB PRT Online TA
## 893 0 2 0 0 BB FRA Online TA
## 894 0 2 0 0 SC USA Online TA
## 895 1 2 0 0 SC PRT Online TA
## 896 1 2 0 0 BB ESP Groups
## 897 1 2 0 0 BB PRT Groups
## 898 1 2 0 0 BB ESP Groups
## 899 1 2 0 0 BB ESP Groups
## 900 1 2 0 0 BB PRT Online TA
## 901 1 2 0 0 BB PRT Groups
## 902 1 2 0 0 BB PRT Groups
## 903 1 2 0 0 BB PRT Direct
## 904 1 2 0 0 BB PRT Groups
## 905 1 2 0 0 BB ESP Groups
## 906 1 2 0 0 BB PRT Groups
## 907 1 2 0 0 BB PRT Online TA
## 908 1 2 0 0 BB PRT Groups
## 909 1 2 0 0 BB PRT Groups
## 910 1 2 0 0 BB PRT Groups
## 911 1 2 0 0 BB PRT Groups
## 912 1 2 0 0 BB PRT Groups
## 913 1 2 0 0 BB MAR Online TA
## 914 1 2 0 0 BB PRT Offline TA/TO
## 915 1 2 0 0 BB FRA Online TA
## 916 1 2 0 0 BB ESP Groups
## 917 1 2 0 0 BB ESP Groups
## 918 1 2 0 0 BB ESP Groups
## 919 1 2 0 0 BB PRT Online TA
## 920 1 2 0 0 BB ESP Groups
## 921 1 2 0 0 BB PRT Groups
## 922 1 2 0 0 BB PRT Groups
## 923 1 2 1 0 BB MAR Direct
## 924 1 2 0 0 BB ITA Online TA
## 925 1 0 3 0 BB PRT Direct
## 926 1 2 2 0 BB ESP Online TA
## 927 1 2 0 0 BB PRT Groups
## 928 1 2 0 0 BB ESP Groups
## 929 1 1 0 0 BB PRT Groups
## 930 2 2 0 0 BB PRT Online TA
## 931 2 2 0 0 BB PRT Online TA
## 932 2 2 0 0 BB ESP Online TA
## 933 2 2 0 0 BB ESP Offline TA/TO
## 934 2 2 0 0 BB BEL Direct
## 935 3 2 0 0 BB ESP Online TA
## 936 3 2 0 0 BB DEU Direct
## 937 3 2 0 0 SC PRT Online TA
## 938 3 2 0 0 SC PRT Online TA
## 939 3 2 0 0 SC AUS Online TA
## 940 3 2 0 0 BB FRA Online TA
## 941 3 2 0 0 BB ESP Online TA
## 942 3 2 0 0 SC BRA Online TA
## 943 3 2 0 0 BB PRT Online TA
## 944 3 2 0 0 SC FRA Online TA
## 945 3 1 0 0 BB FRA Online TA
## 946 3 2 0 0 SC FRA Online TA
## 947 4 2 0 0 BB PRT Online TA
## 948 4 2 0 0 BB PRT Online TA
## 949 4 2 0 0 BB PRT Direct
## 950 5 2 0 0 SC ESP Online TA
## 951 5 2 0 0 BB PRT Direct
## 952 5 2 0 0 BB PRT Online TA
## 953 5 2 0 0 SC ESP Online TA
## 954 5 2 0 0 BB PRT Online TA
## 955 1 2 0 0 BB MOZ Direct
## 956 1 2 0 0 BB PRT Groups
## 957 1 2 0 0 BB PRT Groups
## 958 5 2 0 0 BB TUN Direct
## 959 5 2 0 0 BB ISR Direct
## 960 6 2 0 0 BB NOR Online TA
## 961 20 0 0 0 SC PRT Online TA
## 962 0 2 0 0 BB PRT Direct
## 963 1 2 0 0 BB PRT Online TA
## 964 1 2 0 0 BB FRA Direct
## 965 1 1 0 0 BB PRT Online TA
## 966 1 2 0 0 BB PRT Complementary
## 967 1 2 0 0 BB PRT Online TA
## 968 1 2 0 0 BB PRT Online TA
## 969 1 2 0 0 BB PRT Direct
## 970 1 1 0 0 BB FRA Online TA
## 971 1 1 0 0 BB PRT Online TA
## 972 2 1 0 0 BB PRT Corporate
## 973 2 2 2 0 SC FRA Online TA
## 974 2 2 0 0 BB PRT Online TA
## 975 2 2 2 0 BB DNK Direct
## 976 2 1 0 0 BB MEX Online TA
## 977 2 2 1 0 BB FRA Direct
## 978 2 2 0 0 BB PRT Complementary
## 979 2 2 0 0 BB PRT Online TA
## 980 2 2 0 0 SC ESP Online TA
## 981 2 1 0 0 BB PRT Complementary
## 982 2 1 0 0 BB CHE Direct
## 983 2 1 0 0 BB MEX Online TA
## 984 2 2 1 0 BB FRA Direct
## 985 2 3 0 0 BB PRT Online TA
## 986 2 1 2 0 BB FRA Online TA
## 987 3 1 0 0 BB DEU Online TA
## 988 3 2 0 0 SC PRT Online TA
## 989 3 0 2 0 BB FRA Online TA
## 990 3 2 0 0 BB ESP Online TA
## 991 3 2 0 0 BB ESP Online TA
## 992 3 2 0 0 BB PRT Online TA
## 993 3 2 0 0 BB FRA Online TA
## 994 3 2 0 0 BB FRA Online TA
## 995 4 2 2 0 SC ESP Online TA
## 996 4 2 0 0 BB PRT Direct
## 997 4 0 0 0 BB PRT Online TA
## 998 1 2 0 0 BB FRA Direct
## 999 1 1 0 0 BB GRC Corporate
## 1000 2 2 0 0 BB PRT Direct
## 1001 2 2 0 0 BB FRA Direct
## 1002 5 2 0 0 BB PRT Online TA
## 1003 5 2 0 0 BB FRA Online TA
## 1004 4 2 0 0 BB PRT Online TA
## 1005 4 2 0 0 BB PRT Online TA
## 1006 10 2 0 0 BB MOZ Online TA
## 1007 15 2 0 0 BB USA Direct
## 1008 1 1 0 0 BB PRT Corporate
## 1009 1 2 0 0 BB PRT Online TA
## 1010 1 2 2 0 SC PRT Online TA
## 1011 1 2 0 0 BB PRT Online TA
## 1012 1 2 0 0 BB PRT Direct
## 1013 1 2 0 0 BB FRA Online TA
## 1014 1 1 0 0 BB PRT Corporate
## 1015 1 2 0 0 BB PRT Direct
## 1016 1 1 0 0 BB PRT Direct
## 1017 1 2 0 0 BB PRT Online TA
## 1018 1 2 0 0 BB PRT Online TA
## 1019 1 2 0 0 BB PRT Direct
## 1020 1 2 0 0 BB ITA Direct
## 1021 1 2 0 0 BB PRT Online TA
## 1022 1 1 0 0 BB PRT Corporate
## 1023 1 2 0 0 BB PRT Online TA
## 1024 1 2 0 0 BB FRA Online TA
## 1025 1 2 0 0 BB PRT Direct
## 1026 1 2 0 0 BB DEU Offline TA/TO
## 1027 2 2 0 0 BB PRT Groups
## 1028 1 2 0 0 BB PRT Direct
## 1029 1 2 0 0 BB FRA Groups
## 1030 1 2 0 0 BB FRA Online TA
## 1031 2 2 0 0 BB ESP Groups
## 1032 2 2 0 0 BB PRT Groups
## 1033 2 3 0 0 BB PRT Groups
## 1034 2 2 0 0 BB PRT Groups
## 1035 2 2 0 0 BB PRT Groups
## 1036 2 2 2 0 SC PRT Online TA
## 1037 2 2 0 0 BB PRT Groups
## 1038 2 2 0 0 BB PRT Groups
## 1039 2 2 0 0 BB PRT Groups
## 1040 2 2 0 0 BB PRT Groups
## 1041 2 2 0 0 BB PRT Groups
## 1042 2 1 2 0 BB PRT Offline TA/TO
## 1043 2 2 0 0 BB PRT Groups
## 1044 2 2 0 0 BB PRT Groups
## 1045 2 3 0 0 BB PRT Groups
## 1046 2 2 0 0 BB PRT Groups
## 1047 2 2 0 0 BB PRT Groups
## 1048 2 2 0 0 BB PRT Groups
## 1049 2 2 0 0 BB PRT Groups
## 1050 2 2 0 0 BB PRT Groups
## 1051 2 2 0 0 BB PRT Groups
## 1052 2 2 0 0 BB PRT Groups
## 1053 2 2 0 0 BB DZA Online TA
## 1054 2 2 0 0 BB PRT Groups
## 1055 2 2 0 0 BB PRT Groups
## 1056 2 1 0 0 BB PRT Online TA
## 1057 2 2 0 0 BB PRT Groups
## 1058 2 2 0 0 BB PRT Groups
## 1059 2 2 0 0 BB PRT Groups
## 1060 2 2 0 0 BB PRT Offline TA/TO
## 1061 2 2 0 0 BB PRT Groups
## 1062 2 1 0 0 BB PRT Groups
## 1063 2 2 0 0 BB PRT Groups
## 1064 2 2 0 0 BB PRT Groups
## 1065 3 2 0 0 BB FRA Online TA
## 1066 3 2 1 0 BB ESP Direct
## 1067 3 2 0 0 BB FRA Online TA
## 1068 3 2 0 0 BB PRT Online TA
## 1069 4 2 0 0 BB PRT Offline TA/TO
## 1070 4 2 0 0 BB PRT Online TA
## 1071 4 2 0 0 BB TUN Direct
## 1072 4 2 0 0 BB PRT Online TA
## 1073 7 2 0 0 BB ITA Online TA
## 1074 9 1 0 0 BB AGO Direct
## 1075 4 2 0 0 BB BEL Online TA
## 1076 4 2 0 0 BB ITA Online TA
## 1077 1 2 0 0 BB DEU Online TA
## 1078 1 2 2 0 SC FRA Online TA
## 1079 2 2 0 0 BB PRT Online TA
## 1080 0 2 0 0 BB PRT Online TA
## 1081 1 2 0 0 BB PRT Direct
## 1082 1 2 0 0 BB PRT Online TA
## 1083 2 2 0 0 BB PRT Online TA
## 1084 2 2 0 0 BB PRT Direct
## 1085 2 2 0 0 BB PRT Online TA
## 1086 2 2 0 0 BB CHN Direct
## 1087 3 2 0 0 BB GBR Online TA
## 1088 3 2 0 0 BB BEL Online TA
## 1089 3 2 0 0 BB PRT Online TA
## 1090 3 2 0 0 BB MAR Online TA
## 1091 3 2 0 0 BB GBR Online TA
## 1092 3 2 0 0 BB PRT Online TA
## 1093 3 3 0 0 BB COL Online TA
## 1094 3 2 0 0 BB ESP Online TA
## 1095 2 2 0 0 BB PRT Direct
## 1096 3 2 0 0 BB PRT Online TA
## 1097 3 2 0 0 BB CHE Offline TA/TO
## 1098 3 2 0 0 BB PRT Online TA
## 1099 4 2 0 0 BB FRA Online TA
## 1100 5 2 0 0 BB AUT Online TA
## 1101 5 2 NA 0 BB PRT Online TA
## 1102 7 2 0 0 BB ITA Online TA
## 1103 1 2 0 0 BB PRT Groups
## 1104 1 2 0 0 BB PRT Groups
## 1105 2 2 0 0 HB PRT Offline TA/TO
## 1106 2 2 0 0 HB PRT Offline TA/TO
## 1107 2 2 0 0 HB PRT Offline TA/TO
## 1108 2 2 0 0 HB DEU Offline TA/TO
## 1109 2 2 0 0 HB PRT Offline TA/TO
## 1110 2 1 0 0 HB PRT Offline TA/TO
## 1111 2 1 0 0 HB PRT Offline TA/TO
## 1112 2 2 0 0 HB PRT Offline TA/TO
## 1113 2 2 0 0 HB PRT Offline TA/TO
## 1114 2 2 0 0 HB PRT Offline TA/TO
## 1115 2 2 0 0 HB PRT Offline TA/TO
## 1116 2 2 0 0 HB PRT Offline TA/TO
## 1117 2 2 0 0 HB PRT Offline TA/TO
## 1118 2 2 0 0 HB PRT Offline TA/TO
## 1119 2 2 0 0 HB PRT Offline TA/TO
## 1120 2 2 0 0 HB PRT Offline TA/TO
## 1121 2 2 0 0 HB PRT Offline TA/TO
## 1122 2 2 0 0 HB DEU Offline TA/TO
## 1123 2 1 0 0 HB PRT Offline TA/TO
## 1124 2 2 0 0 HB PRT Offline TA/TO
## 1125 2 2 0 0 HB PRT Offline TA/TO
## 1126 2 2 0 0 HB PRT Offline TA/TO
## 1127 1 2 0 0 BB PRT Groups
## 1128 2 2 0 0 HB DEU Offline TA/TO
## 1129 2 2 0 0 HB PRT Offline TA/TO
## 1130 2 2 0 0 HB DEU Offline TA/TO
## 1131 2 2 0 0 HB DEU Offline TA/TO
## 1132 2 1 0 0 HB DEU Offline TA/TO
## 1133 2 1 0 0 HB PRT Offline TA/TO
## 1134 2 2 0 0 HB PRT Offline TA/TO
## 1135 2 2 0 0 HB PRT Offline TA/TO
## 1136 2 2 0 0 HB PRT Offline TA/TO
## 1137 2 2 0 0 HB PRT Offline TA/TO
## 1138 2 2 0 0 HB PRT Offline TA/TO
## 1139 2 2 0 0 HB PRT Offline TA/TO
## 1140 2 2 0 0 HB PRT Offline TA/TO
## 1141 2 2 0 0 HB DEU Offline TA/TO
## 1142 2 2 0 0 HB PRT Offline TA/TO
## 1143 2 2 0 0 HB PRT Offline TA/TO
## 1144 2 2 0 0 HB PRT Offline TA/TO
## 1145 2 2 0 0 HB PRT Offline TA/TO
## 1146 2 2 0 0 HB PRT Offline TA/TO
## 1147 2 2 0 0 HB PRT Offline TA/TO
## 1148 2 2 0 0 HB PRT Offline TA/TO
## 1149 2 2 0 0 HB PRT Offline TA/TO
## 1150 2 2 0 0 HB DEU Offline TA/TO
## 1151 2 2 0 0 HB DEU Offline TA/TO
## 1152 2 2 0 0 HB DEU Offline TA/TO
## 1153 2 2 0 0 HB DEU Offline TA/TO
## 1154 2 2 0 0 HB PRT Offline TA/TO
## 1155 2 2 0 0 HB PRT Offline TA/TO
## 1156 2 2 0 0 HB PRT Offline TA/TO
## 1157 2 1 0 0 HB PRT Offline TA/TO
## 1158 2 2 0 0 HB PRT Offline TA/TO
## 1159 2 2 0 0 HB PRT Offline TA/TO
## 1160 2 2 0 0 HB PRT Offline TA/TO
## 1161 2 2 0 0 HB DEU Offline TA/TO
## 1162 2 2 0 0 HB DEU Offline TA/TO
## 1163 2 2 0 0 HB DEU Offline TA/TO
## 1164 2 2 0 0 HB DEU Offline TA/TO
## 1165 2 1 0 0 HB PRT Offline TA/TO
## 1166 2 1 0 0 HB PRT Offline TA/TO
## 1167 2 2 0 0 HB PRT Offline TA/TO
## 1168 2 2 0 0 HB PRT Offline TA/TO
## 1169 2 2 0 0 HB PRT Offline TA/TO
## 1170 2 2 0 0 HB PRT Offline TA/TO
## 1171 2 2 0 0 HB PRT Offline TA/TO
## 1172 2 2 0 0 HB PRT Offline TA/TO
## 1173 2 2 0 0 HB PRT Offline TA/TO
## 1174 2 2 0 0 HB PRT Offline TA/TO
## 1175 2 2 0 0 HB DEU Offline TA/TO
## 1176 2 1 0 0 HB DEU Offline TA/TO
## 1177 2 2 0 0 HB PRT Offline TA/TO
## 1178 2 2 0 0 HB PRT Offline TA/TO
## 1179 2 2 0 0 HB DEU Offline TA/TO
## 1180 2 2 0 0 HB PRT Offline TA/TO
## 1181 2 2 0 0 HB DEU Offline TA/TO
## 1182 2 2 0 0 HB DEU Offline TA/TO
## 1183 2 2 0 0 HB DEU Offline TA/TO
## 1184 2 1 0 0 HB USA Offline TA/TO
## 1185 2 2 0 0 HB PRT Offline TA/TO
## 1186 2 2 0 0 HB PRT Offline TA/TO
## 1187 2 2 0 0 HB PRT Offline TA/TO
## 1188 2 2 0 0 HB PRT Offline TA/TO
## 1189 2 2 0 0 HB PRT Offline TA/TO
## 1190 2 2 0 0 HB PRT Offline TA/TO
## 1191 2 2 0 0 HB PRT Offline TA/TO
## 1192 2 2 0 0 HB PRT Offline TA/TO
## 1193 2 2 0 0 HB DEU Offline TA/TO
## 1194 2 2 0 0 HB DEU Offline TA/TO
## 1195 2 2 0 0 HB DEU Offline TA/TO
## 1196 2 1 0 0 HB PRT Offline TA/TO
## 1197 2 1 0 0 HB PRT Offline TA/TO
## 1198 2 2 0 0 HB PRT Offline TA/TO
## 1199 2 2 0 0 HB PRT Offline TA/TO
## 1200 2 2 0 0 HB PRT Offline TA/TO
## 1201 2 2 0 0 HB PRT Offline TA/TO
## 1202 2 2 0 0 HB PRT Offline TA/TO
## 1203 2 2 0 0 HB PRT Offline TA/TO
## 1204 2 2 0 0 HB PRT Offline TA/TO
## 1205 2 2 0 0 HB PRT Offline TA/TO
## 1206 2 2 0 0 HB PRT Offline TA/TO
## 1207 2 2 0 0 HB PRT Offline TA/TO
## 1208 2 2 0 0 HB DEU Offline TA/TO
## 1209 2 2 0 0 HB DEU Offline TA/TO
## 1210 2 2 0 0 HB DEU Offline TA/TO
## 1211 2 2 0 0 HB PRT Offline TA/TO
## 1212 2 2 0 0 HB PRT Offline TA/TO
## 1213 2 2 0 0 HB PRT Offline TA/TO
## 1214 2 2 0 0 HB PRT Offline TA/TO
## 1215 2 2 0 0 HB PRT Offline TA/TO
## 1216 2 2 0 0 HB PRT Offline TA/TO
## 1217 2 2 0 0 HB PRT Offline TA/TO
## 1218 2 2 0 0 HB PRT Offline TA/TO
## 1219 2 2 0 0 HB PRT Offline TA/TO
## 1220 2 2 0 0 HB PRT Offline TA/TO
## 1221 2 2 0 0 HB PRT Offline TA/TO
## 1222 2 2 0 0 HB PRT Offline TA/TO
## 1223 2 2 0 0 HB PRT Offline TA/TO
## 1224 2 2 0 0 HB PRT Offline TA/TO
## 1225 2 2 0 0 HB PRT Offline TA/TO
## 1226 2 2 0 0 HB PRT Offline TA/TO
## 1227 2 2 0 0 HB PRT Offline TA/TO
## 1228 2 2 0 0 HB PRT Offline TA/TO
## 1229 2 2 0 0 HB PRT Offline TA/TO
## 1230 2 2 0 0 HB PRT Offline TA/TO
## 1231 2 2 0 0 HB PRT Offline TA/TO
## 1232 2 2 0 0 HB PRT Offline TA/TO
## 1233 2 2 0 0 HB DEU Offline TA/TO
## 1234 2 2 0 0 HB PRT Offline TA/TO
## 1235 2 2 0 0 HB PRT Offline TA/TO
## 1236 2 2 0 0 HB PRT Offline TA/TO
## 1237 2 2 0 0 HB PRT Offline TA/TO
## 1238 2 2 0 0 HB PRT Offline TA/TO
## 1239 2 2 0 0 HB PRT Offline TA/TO
## 1240 2 2 0 0 HB DEU Offline TA/TO
## 1241 2 2 0 0 HB DEU Offline TA/TO
## 1242 2 2 0 0 HB DEU Offline TA/TO
## 1243 2 2 0 0 HB DEU Offline TA/TO
## 1244 2 1 0 0 HB PRT Offline TA/TO
## 1245 2 2 0 0 HB PRT Offline TA/TO
## 1246 2 2 0 0 HB PRT Offline TA/TO
## 1247 2 2 0 0 HB DEU Offline TA/TO
## 1248 2 2 0 0 HB DEU Offline TA/TO
## 1249 2 2 0 0 HB PRT Offline TA/TO
## 1250 2 2 0 0 HB PRT Offline TA/TO
## 1251 2 2 0 0 HB PRT Offline TA/TO
## 1252 2 2 0 0 HB PRT Offline TA/TO
## 1253 2 2 0 0 HB PRT Offline TA/TO
## 1254 2 2 0 0 BB NLD Online TA
## 1255 2 2 0 0 HB PRT Offline TA/TO
## 1256 2 2 0 0 HB PRT Offline TA/TO
## 1257 2 2 0 0 HB DEU Offline TA/TO
## 1258 2 2 0 0 HB DEU Offline TA/TO
## 1259 2 1 0 0 HB PRT Offline TA/TO
## 1260 2 1 0 0 HB PRT Offline TA/TO
## 1261 2 2 0 0 HB PRT Offline TA/TO
## 1262 2 2 0 0 HB PRT Offline TA/TO
## 1263 2 2 0 0 HB PRT Offline TA/TO
## 1264 2 2 0 0 HB PRT Offline TA/TO
## 1265 2 2 0 0 HB PRT Offline TA/TO
## 1266 2 2 0 0 HB DEU Offline TA/TO
## 1267 2 2 0 0 HB DEU Offline TA/TO
## 1268 2 2 0 0 HB DEU Offline TA/TO
## 1269 2 1 0 0 HB DEU Offline TA/TO
## 1270 2 1 0 0 HB PRT Offline TA/TO
## 1271 2 2 0 0 HB PRT Offline TA/TO
## 1272 2 2 0 0 HB PRT Offline TA/TO
## 1273 2 2 0 0 HB PRT Offline TA/TO
## 1274 2 2 0 0 HB PRT Offline TA/TO
## 1275 2 2 0 0 HB PRT Offline TA/TO
## 1276 2 2 0 0 HB PRT Offline TA/TO
## 1277 2 2 0 0 HB PRT Offline TA/TO
## 1278 2 2 0 0 HB PRT Offline TA/TO
## 1279 2 2 0 0 BB PRT Online TA
## 1280 2 2 0 0 BB PRT Online TA
## 1281 2 2 2 0 SC PRT Online TA
## 1282 2 2 0 0 BB FRA Online TA
## 1283 2 2 0 0 BB PRT Complementary
## 1284 2 2 0 0 BB PRT Online TA
## 1285 2 2 0 0 BB PRT Complementary
## 1286 2 2 0 0 BB FRA Online TA
## 1287 2 2 0 0 BB BEL Online TA
## 1288 3 1 0 0 BB FRA Online TA
## 1289 3 1 0 0 BB FRA Online TA
## 1290 3 2 0 0 BB FRA Online TA
## 1291 5 2 0 0 BB FRA Online TA
## 1292 6 2 0 0 BB FRA Direct
## 1293 1 2 0 0 BB PRT Online TA
## 1294 1 2 0 0 BB PRT Direct
## 1295 1 2 0 0 BB FRA Online TA
## 1296 1 2 0 0 BB FRA Online TA
## 1297 1 2 0 0 BB FRA Online TA
## 1298 1 2 2 0 BB PRT Direct
## 1299 1 2 0 0 HB ITA Offline TA/TO
## 1300 1 2 2 0 BB PRT Online TA
## 1301 2 2 0 0 BB ESP Groups
## 1302 2 2 0 0 BB ESP Groups
## 1303 2 2 0 0 BB ESP Groups
## 1304 2 2 0 0 BB ESP Groups
## 1305 2 2 0 0 BB PRT Groups
## 1306 2 1 0 0 BB ESP Groups
## 1307 2 2 0 0 BB ESP Groups
## 1308 2 2 0 0 BB ESP Groups
## 1309 2 2 0 0 BB PRT Groups
## 1310 2 2 0 0 BB PRT Groups
## 1311 2 1 0 0 BB PRT Online TA
## 1312 2 2 0 0 BB ESP Groups
## 1313 2 2 0 0 BB ESP Groups
## 1314 2 2 0 0 BB ESP Groups
## 1315 2 1 0 0 BB ESP Groups
## 1316 2 2 0 0 BB PRT Groups
## 1317 2 2 0 0 BB PRT Online TA
## 1318 2 2 0 0 BB ESP Groups
## 1319 2 1 0 0 BB ESP Groups
## 1320 2 2 0 0 BB ESP Groups
## 1321 2 2 0 0 BB ESP Groups
## 1322 2 2 0 0 BB ESP Groups
## 1323 2 2 0 0 BB ESP Groups
## 1324 2 2 0 0 BB PRT Groups
## 1325 2 2 0 0 BB PRT Groups
## 1326 2 1 0 0 BB ESP Groups
## 1327 2 2 0 0 BB ESP Groups
## 1328 2 2 0 0 BB PRT Groups
## 1329 2 2 0 0 BB PRT Groups
## 1330 3 2 1 0 BB LUX Direct
## 1331 3 2 0 0 BB NLD Direct
## 1332 3 2 0 0 BB PRT Online TA
## 1333 3 2 0 0 BB PRT Online TA
## 1334 5 2 0 0 BB PRT Direct
## 1335 2 3 0 0 BB ESP Groups
## 1336 2 2 0 0 BB PRT Groups
## 1337 2 2 0 0 BB PRT Groups
## 1338 2 2 0 0 BB ESP Groups
## 1339 2 2 0 0 BB PRT Groups
## 1340 1 2 0 0 HB ITA Offline TA/TO
## 1341 1 2 0 0 HB ITA Offline TA/TO
## 1342 1 2 0 0 HB ITA Offline TA/TO
## 1343 1 2 0 0 HB ITA Offline TA/TO
## 1344 1 2 0 0 HB ITA Offline TA/TO
## 1345 1 1 0 0 HB ITA Offline TA/TO
## 1346 1 2 0 0 HB ITA Offline TA/TO
## 1347 1 2 0 0 HB ITA Offline TA/TO
## 1348 1 2 0 0 HB ITA Offline TA/TO
## 1349 1 2 0 0 HB ITA Offline TA/TO
## 1350 1 2 1 0 BB ITA Offline TA/TO
## 1351 1 2 0 0 HB ITA Offline TA/TO
## 1352 1 2 0 0 HB ITA Offline TA/TO
## 1353 1 2 1 0 HB ITA Offline TA/TO
## 1354 1 2 0 0 HB ITA Offline TA/TO
## 1355 1 2 0 0 HB ITA Offline TA/TO
## 1356 1 2 0 0 HB ITA Offline TA/TO
## 1357 1 2 0 0 HB ITA Offline TA/TO
## 1358 1 2 0 0 HB ITA Offline TA/TO
## 1359 1 2 0 0 HB ITA Offline TA/TO
## 1360 1 1 0 0 HB ITA Offline TA/TO
## 1361 1 3 0 0 HB ITA Offline TA/TO
## 1362 1 3 0 0 HB ITA Offline TA/TO
## 1363 1 2 0 0 HB ITA Offline TA/TO
## 1364 1 1 0 0 HB ITA Offline TA/TO
## 1365 1 2 0 0 HB ITA Offline TA/TO
## 1366 1 2 0 0 HB ITA Offline TA/TO
## 1367 1 2 0 0 HB ITA Offline TA/TO
## 1368 1 2 0 0 BB PRT Online TA
## 1369 1 2 0 0 HB ITA Offline TA/TO
## 1370 1 2 0 0 HB ITA Offline TA/TO
## 1371 1 2 0 0 HB ITA Offline TA/TO
## 1372 1 2 0 0 HB ITA Offline TA/TO
## 1373 1 1 0 0 HB ITA Offline TA/TO
## 1374 1 2 0 0 HB ITA Offline TA/TO
## 1375 1 2 0 0 HB ITA Offline TA/TO
## 1376 1 2 0 0 HB ITA Offline TA/TO
## 1377 1 2 0 0 HB ITA Offline TA/TO
## 1378 2 2 0 0 BB PRT Direct
## 1379 2 2 2 0 SC PRT Online TA
## 1380 3 3 0 0 BB DEU Offline TA/TO
## 1381 3 2 2 0 BB ESP Online TA
## 1382 0 2 0 0 BB PRT Online TA
## 1383 0 2 2 0 BB PRT Online TA
## 1384 0 1 0 0 BB PRT Direct
## 1385 0 2 0 0 BB GBR Online TA
## 1386 0 2 0 0 BB PRT Direct
## 1387 0 0 2 0 BB PRT Direct
## 1388 1 2 0 0 BB PRT Direct
## 1389 1 2 0 0 BB FRA Direct
## 1390 1 1 0 0 BB IRL Direct
## 1391 1 2 1 0 BB ESP Direct
## 1392 1 2 0 0 BB BEL Direct
## 1393 1 2 1 0 BB ESP Direct
## 1394 1 2 0 0 BB PRT Offline TA/TO
## 1395 1 2 0 0 BB FRA Online TA
## 1396 1 2 0 0 BB BEL Online TA
## 1397 1 2 0 0 BB BEL Online TA
## 1398 1 2 0 0 BB ESP Direct
## 1399 2 2 0 0 SC PRT Online TA
## 1400 4 2 0 0 BB PRT Online TA
## 1401 5 1 0 0 BB MAR Online TA
## 1402 0 2 0 0 BB PRT Direct
## 1403 0 1 0 0 BB PRT Direct
## 1404 0 2 0 0 BB AGO Direct
## 1405 0 1 0 0 BB AGO Direct
## 1406 0 2 0 0 SC FRA Online TA
## 1407 0 1 0 0 BB PRT Direct
## 1408 0 2 0 0 BB ROU Online TA
## 1409 1 2 0 0 BB ESP Groups
## 1410 1 2 0 0 BB ESP Groups
## 1411 1 2 0 0 BB ESP Groups
## 1412 1 1 0 0 BB ESP Groups
## 1413 1 2 0 0 BB ESP Groups
## 1414 1 2 0 0 BB ESP Groups
## 1415 1 1 0 0 BB PRT Groups
## 1416 1 2 0 0 BB ESP Groups
## 1417 1 2 0 0 BB ESP Groups
## 1418 1 1 0 0 BB ESP Groups
## 1419 1 3 0 0 BB ESP Groups
## 1420 1 2 0 0 BB ESP Groups
## 1421 1 2 0 0 BB ESP Groups
## 1422 1 1 0 0 BB ESP Groups
## 1423 1 2 0 0 BB ESP Groups
## 1424 1 2 0 0 BB ESP Groups
## 1425 1 2 0 0 BB ESP Groups
## 1426 1 1 0 0 BB PRT Online TA
## 1427 1 2 0 0 BB ESP Direct
## 1428 1 2 0 0 BB ESP Groups
## 1429 1 2 0 0 BB ESP Online TA
## 1430 1 2 2 0 SC NLD Online TA
## 1431 1 1 0 0 BB FRA Online TA
## 1432 1 2 0 0 BB ESP Groups
## 1433 1 2 0 0 BB ESP Groups
## 1434 1 2 0 0 BB ESP Groups
## 1435 1 2 0 0 BB ESP Groups
## 1436 2 1 0 0 BB DEU Online TA
## 1437 2 2 0 0 BB PRT Online TA
## 1438 2 2 0 0 BB PRT Online TA
## 1439 2 1 0 0 BB CHE Direct
## 1440 2 2 0 0 BB PRT Direct
## 1441 2 2 0 0 BB ESP Online TA
## 1442 2 2 2 0 BB PRT Online TA
## 1443 2 2 0 0 BB ITA Online TA
## 1444 2 2 0 0 BB PRT Corporate
## 1445 2 1 2 0 BB PRT Online TA
## 1446 2 2 0 0 BB PRT Corporate
## 1447 3 2 0 0 BB CHN Online TA
## 1448 3 2 0 0 BB PRT Direct
## 1449 3 2 0 0 BB ESP Groups
## 1450 3 2 0 0 BB PRT Corporate
## 1451 3 2 0 0 BB ESP Online TA
## 1452 3 2 0 0 BB ESP Online TA
## 1453 3 2 0 0 BB ESP Online TA
## 1454 3 2 0 0 BB ESP Online TA
## 1455 3 2 0 0 BB PRT Corporate
## 1456 3 2 0 0 BB PRT Online TA
## 1457 4 2 0 0 HB FRA Offline TA/TO
## 1458 4 2 0 0 BB PRT Corporate
## 1459 4 2 0 0 BB PRT Online TA
## 1460 5 2 0 0 BB ESP Direct
## 1461 5 2 0 0 BB PRT Corporate
## 1462 5 2 1 0 BB PRT Online TA
## 1463 5 2 0 1 BB MAR Online TA
## 1464 5 2 0 0 BB ESP Direct
## 1465 5 2 0 0 BB PRT Corporate
## 1466 5 2 0 0 BB ESP Direct
## 1467 5 2 0 0 BB ESP Direct
## 1468 5 2 0 0 BB PRT Corporate
## 1469 1 2 0 0 BB ESP Corporate
## 1470 1 2 0 0 BB ESP Groups
## 1471 1 2 0 0 BB ESP Groups
## 1472 1 2 0 0 BB ESP Groups
## 1473 1 2 0 0 BB ESP Groups
## 1474 1 2 0 0 BB ESP Groups
## 1475 1 1 0 0 BB ESP Groups
## 1476 1 1 0 0 BB PRT Groups
## 1477 1 2 0 0 BB ESP Groups
## 1478 10 1 0 0 BB FRA Online TA
## 1479 1 2 0 0 BB PRT Direct
## 1480 1 1 0 0 SC AGO Direct
## 1481 1 1 0 0 BB PRT Direct
## 1482 1 2 0 0 SC PRT Online TA
## 1483 1 2 0 0 BB PRT Direct
## 1484 1 2 0 0 BB PRT Direct
## 1485 1 2 0 0 BB PRT Direct
## 1486 1 1 0 0 BB PRT Direct
## 1487 1 2 0 0 BB PRT Direct
## 1488 1 2 0 0 BB PRT Direct
## 1489 1 2 0 0 BB PRT Direct
## 1490 1 2 0 0 BB PRT Direct
## 1491 1 2 0 0 BB ROU Online TA
## 1492 1 2 0 0 BB PRT Direct
## 1493 1 1 0 0 BB PRT Corporate
## 1494 1 1 0 0 BB PRT Direct
## 1495 2 1 0 0 BB DEU Offline TA/TO
## 1496 2 2 0 0 SC NLD Online TA
## 1497 2 3 0 0 BB ESP Direct
## 1498 2 2 0 0 BB PRT Corporate
## 1499 2 2 0 0 BB PRT Corporate
## 1500 2 2 0 0 BB PRT Corporate
## 1501 2 2 1 0 BB ESP Direct
## 1502 2 2 0 0 BB PRT Online TA
## 1503 3 2 2 0 BB PRT Online TA
## 1504 4 2 0 0 HB ITA Offline TA/TO
## 1505 4 2 0 0 BB PRT Online TA
## 1506 4 2 0 0 BB DEU Offline TA/TO
## 1507 4 2 0 0 BB ESP Groups
## 1508 4 2 0 0 BB MOZ Direct
## 1509 4 2 2 0 BB PRT Direct
## 1510 5 2 0 0 BB ESP Online TA
## 1511 5 2 0 0 BB ESP Online TA
## 1512 5 2 0 0 BB PRT Online TA
## 1513 5 2 0 0 BB NLD Direct
## 1514 5 2 0 0 BB CN Online TA
## 1515 10 2 0 0 BB AGO Online TA
## 1516 10 2 0 0 BB PRT Online TA
## 1517 2 1 0 0 BB PRT Online TA
## 1518 2 2 0 0 BB FRA Online TA
## 1519 2 1 0 0 BB PRT Corporate
## 1520 2 1 0 0 BB DEU Offline TA/TO
## 1521 2 2 0 0 BB PRT Online TA
## 1522 2 1 0 0 BB PRT Corporate
## 1523 3 1 0 0 BB PRT Corporate
## 1524 3 1 0 0 BB PRT Direct
## 1525 3 2 0 0 BB ESP Direct
## 1526 3 2 0 0 BB ESP Online TA
## 1527 3 2 0 0 BB PRT Online TA
## 1528 3 2 0 0 BB ESP Direct
## 1529 3 2 0 0 SC FRA Online TA
## 1530 3 2 0 0 BB PRT Direct
## 1531 2 1 0 0 BB PRT Corporate
## 1532 2 2 0 0 BB PRT Corporate
## 1533 2 2 1 0 BB ESP Direct
## 1534 3 2 0 0 BB BEL Direct
## 1535 3 2 0 0 SC FRA Online TA
## 1536 3 2 0 0 BB FRA Online TA
## 1537 3 2 0 0 BB FRA Online TA
## 1538 4 2 0 0 SC PRT Online TA
## 1539 4 2 0 0 BB PRT Online TA
## 1540 4 2 0 0 BB NOR Online TA
## 1541 4 2 0 0 BB ESP Direct
## 1542 4 2 0 0 BB ESP Direct
## 1543 4 2 0 0 BB PRT Online TA
## 1544 4 2 0 0 BB FRA Direct
## 1545 1 1 0 0 BB PRT Corporate
## 1546 2 2 0 0 BB GBR Online TA
## 1547 2 2 0 0 BB PRT Corporate
## 1548 2 2 1 0 SC LVA Online TA
## 1549 2 2 0 0 SC ESP Online TA
## 1550 2 2 0 0 BB RUS Online TA
## 1551 2 2 0 0 BB FIN Direct
## 1552 2 1 0 0 BB PRT Complementary
## 1553 2 1 0 0 BB PRT Direct
## 1554 2 2 2 0 BB PRT Online TA
## 1555 4 2 0 0 BB HRV Online TA
## 1556 5 1 0 0 BB FRA Online TA
## 1557 5 2 0 0 BB DEU Direct
## 1558 5 2 0 0 BB BEL Online TA
## 1559 9 2 0 0 BB AGO Online TA
## 1560 9 2 0 0 SC AGO Online TA
## 1561 1 2 0 0 BB PRT Direct
## 1562 1 2 0 0 BB ITA Online TA
## 1563 1 2 0 0 BB FRA Online TA
## 1564 1 2 0 0 BB FRA Online TA
## 1565 1 2 0 0 BB FRA Online TA
## 1566 1 1 0 0 BB PRT Complementary
## 1567 1 2 0 0 BB PRT Online TA
## 1568 1 2 2 0 SC PRT Online TA
## 1569 1 1 0 0 BB ESP Online TA
## 1570 1 2 0 0 BB PRT Direct
## 1571 1 2 0 0 BB PRT Direct
## 1572 1 2 0 0 BB PRT Offline TA/TO
## 1573 1 2 0 0 BB PRT Offline TA/TO
## 1574 1 2 0 0 BB STP Direct
## 1575 1 1 0 0 BB PRT Complementary
## 1576 1 2 0 0 BB PRT Direct
## 1577 1 2 1 0 BB PRT Direct
## 1578 2 2 0 0 SC FRA Online TA
## 1579 2 2 0 0 BB PRT Direct
## 1580 2 2 0 0 BB PRT Online TA
## 1581 2 2 2 0 BB ESP Online TA
## 1582 2 2 0 0 BB PRT Online TA
## 1583 2 2 0 0 BB PRT Online TA
## 1584 2 2 0 0 BB DEU Online TA
## 1585 3 1 0 0 BB BGR Direct
## 1586 3 3 0 0 BB POL Online TA
## 1587 3 1 0 0 BB PRT Online TA
## 1588 3 2 0 0 BB PRT Online TA
## 1589 3 2 0 0 BB ITA Direct
## 1590 3 2 1 0 BB PRT Online TA
## 1591 3 2 0 0 SC PRT Online TA
## 1592 3 2 0 0 BB PRT Direct
## 1593 4 2 0 0 BB ITA Online TA
## 1594 5 2 0 0 HB PRT Offline TA/TO
## 1595 5 2 0 1 HB PRT Offline TA/TO
## 1596 5 2 0 0 BB POL Direct
## 1597 8 2 0 0 BB PRT Direct
## 1598 1 2 1 0 BB PRT Direct
## 1599 1 2 2 0 BB FRA Online TA
## 1600 1 2 0 0 BB ITA Offline TA/TO
## 1601 1 2 0 0 BB AGO Direct
## 1602 1 2 0 0 BB ITA Offline TA/TO
## 1603 1 2 0 0 BB PRT Complementary
## 1604 2 2 0 0 BB POL Online TA
## 1605 2 1 0 0 BB AGO Direct
## 1606 2 2 0 0 BB PRT Online TA
## 1607 2 2 1 0 BB ESP Online TA
## 1608 2 2 0 0 BB ESP Online TA
## 1609 2 2 0 0 BB FRA Online TA
## 1610 2 2 0 0 BB PRT Online TA
## 1611 2 2 0 0 BB PRT Online TA
## 1612 2 2 2 0 BB PRT Online TA
## 1613 2 2 0 0 BB ESP Online TA
## 1614 2 2 0 0 BB PRT Online TA
## 1615 2 2 0 0 BB ESP Online TA
## 1616 2 2 0 0 BB PRT Online TA
## 1617 2 1 0 0 BB ESP Direct
## 1618 2 2 0 0 BB POL Online TA
## 1619 2 2 2 0 SC PRT Online TA
## 1620 2 1 0 0 BB ESP Online TA
## 1621 2 2 0 0 BB PRT Online TA
## 1622 2 2 2 0 BB RUS Online TA
## 1623 2 2 0 0 BB PRT Online TA
## 1624 2 2 0 0 BB RUS Online TA
## 1625 2 2 0 0 HB ITA Groups
## 1626 2 2 0 0 BB ESP Direct
## 1627 2 1 0 0 HB ITA Groups
## 1628 2 2 0 0 SC MEX Online TA
## 1629 2 2 0 0 HB ITA Groups
## 1630 3 2 0 0 BB DEU Online TA
## 1631 3 2 0 0 BB DEU Online TA
## 1632 4 2 2 0 BB ESP Direct
## 1633 5 2 0 0 BB PRT Online TA
## 1634 5 2 0 0 BB FRA Online TA
## 1635 11 2 0 0 BB PRT Online TA
## 1636 3 2 0 0 BB ESP Online TA
## 1637 1 1 0 0 HB ITA Offline TA/TO
## 1638 1 2 0 0 HB ITA Offline TA/TO
## 1639 1 3 0 0 HB ITA Offline TA/TO
## 1640 1 2 0 0 HB PRT Groups
## 1641 1 2 0 0 HB PRT Groups
## 1642 1 2 0 0 HB ITA Offline TA/TO
## 1643 1 2 0 0 HB ITA Offline TA/TO
## 1644 1 3 0 0 HB ITA Offline TA/TO
## 1645 1 2 0 0 HB ITA Offline TA/TO
## 1646 1 2 0 0 HB ITA Offline TA/TO
## 1647 1 2 0 0 HB ITA Offline TA/TO
## 1648 1 2 0 0 HB ITA Offline TA/TO
## 1649 1 2 0 0 BB PRT Direct
## 1650 1 2 0 0 BB PRT Online TA
## 1651 1 2 0 0 BB PRT Direct
## 1652 1 2 2 0 BB FRA Online TA
## 1653 1 2 0 0 SC DEU Online TA
## 1654 1 2 2 0 BB PRT Online TA
## 1655 1 2 2 0 BB PRT Direct
## 1656 1 2 0 0 BB PRT Online TA
## 1657 1 2 0 0 BB PRT Direct
## 1658 1 2 0 0 BB PRT Online TA
## 1659 1 2 0 0 BB PRT Direct
## 1660 1 2 0 0 SC NLD Online TA
## 1661 1 2 0 0 BB ITA Direct
## 1662 1 2 0 0 BB PRT Online TA
## 1663 1 2 0 0 HB PRT Groups
## 1664 1 2 0 0 HB ITA Offline TA/TO
## 1665 1 2 0 0 HB ITA Offline TA/TO
## 1666 1 1 0 0 HB ITA Offline TA/TO
## 1667 1 2 0 0 HB ITA Offline TA/TO
## 1668 1 2 0 0 HB PRT Groups
## 1669 1 1 0 0 HB PRT Groups
## 1670 1 2 0 0 HB ITA Offline TA/TO
## 1671 1 2 0 0 HB ITA Offline TA/TO
## 1672 1 2 0 0 HB ITA Offline TA/TO
## 1673 1 2 0 0 HB PRT Groups
## 1674 1 2 0 0 HB ITA Groups
## 1675 1 2 0 0 HB PRT Offline TA/TO
## 1676 1 2 0 0 HB ITA Offline TA/TO
## 1677 1 2 0 0 HB ITA Offline TA/TO
## 1678 1 1 0 0 HB ITA Offline TA/TO
## 1679 1 2 0 0 HB ITA Offline TA/TO
## 1680 1 2 0 0 HB ITA Offline TA/TO
## 1681 1 2 0 0 HB ITA Groups
## 1682 1 2 0 0 HB PRT Groups
## 1683 1 3 0 0 HB ITA Offline TA/TO
## 1684 1 2 0 0 BB PRT Online TA
## 1685 1 2 0 0 HB ITA Offline TA/TO
## 1686 1 2 0 0 HB ITA Offline TA/TO
## 1687 1 1 0 0 HB PRT Groups
## 1688 1 3 0 0 HB ITA Offline TA/TO
## 1689 1 2 0 0 HB ITA Offline TA/TO
## 1690 1 2 0 0 BB PRT Online TA
## 1691 2 2 0 0 BB PRT Online TA
## 1692 2 2 0 0 BB PRT Online TA
## 1693 5 2 0 0 BB PRT Online TA
## 1694 5 2 0 0 BB PRT Online TA
## 1695 0 2 0 0 SC PRT Online TA
## 1696 0 2 0 1 BB CHE Online TA
## 1697 0 2 2 0 BB PRT Online TA
## 1698 0 1 0 0 BB AGO Direct
## 1699 0 1 0 0 BB UKR Online TA
## 1700 0 2 0 0 BB PRT Online TA
## 1701 0 2 0 0 BB ESP Direct
## 1702 0 2 0 0 BB ESP Direct
## 1703 0 2 0 0 BB FRA Online TA
## 1704 1 1 0 0 BB PRT Complementary
## 1705 1 1 0 0 BB PRT Complementary
## 1706 1 2 1 0 BB ESP Direct
## 1707 2 2 0 0 BB PRT Online TA
## 1708 2 2 0 0 BB ESP Online TA
## 1709 3 1 0 0 BB PRT Online TA
## 1710 3 1 0 0 BB PRT Online TA
## 1711 3 2 0 0 BB FRA Online TA
## 1712 4 2 0 0 BB FRA Online TA
## 1713 4 1 0 0 BB MAR Direct
## 1714 3 2 0 0 BB FRA Online TA
## 1715 3 2 0 0 BB FRA Online TA
## 1716 0 2 2 0 BB PRT Direct
## 1717 0 2 0 0 BB PRT Online TA
## 1718 0 2 0 0 BB PRT Direct
## 1719 1 2 0 0 BB ESP Groups
## 1720 1 2 0 0 BB ESP Groups
## 1721 1 2 0 0 BB PRT Groups
## 1722 1 2 0 0 BB ESP Groups
## 1723 1 2 0 0 BB ESP Groups
## 1724 1 2 0 0 BB ESP Online TA
## 1725 1 2 0 0 BB ESP Groups
## 1726 1 2 0 0 BB ESP Groups
## 1727 1 2 0 0 BB ESP Groups
## 1728 1 2 0 0 BB ESP Groups
## 1729 1 2 0 0 BB ESP Groups
## 1730 1 2 0 0 BB PRT Groups
## 1731 1 2 0 0 BB ESP Groups
## 1732 1 1 0 0 BB PRT Groups
## 1733 1 2 0 0 BB ESP Groups
## 1734 1 2 0 0 BB ESP Groups
## 1735 1 2 0 0 BB ESP Groups
## 1736 1 3 0 0 BB ESP Groups
## 1737 1 3 0 0 BB ESP Groups
## 1738 1 2 0 0 BB ESP Groups
## 1739 1 2 1 0 BB ESP Groups
## 1740 1 2 0 0 BB ESP Groups
## 1741 1 2 0 0 BB ESP Groups
## 1742 1 2 0 0 BB PRT Groups
## 1743 1 2 0 0 BB ESP Groups
## 1744 1 2 0 0 BB ESP Groups
## 1745 1 1 0 0 BB ESP Groups
## 1746 1 2 0 0 BB ESP Groups
## 1747 1 2 0 0 BB ESP Groups
## 1748 1 2 0 0 BB PRT Groups
## 1749 1 1 0 0 BB PRT Groups
## 1750 2 2 0 0 BB ESP Online TA
## 1751 2 2 0 0 BB PRT Online TA
## 1752 2 2 0 0 BB FRA Online TA
## 1753 2 2 0 0 BB ESP Online TA
## 1754 3 2 0 0 BB FRA Online TA
## 1755 3 2 0 0 BB ESP Online TA
## 1756 3 2 0 0 BB SWE Online TA
## 1757 3 2 0 0 BB ESP Online TA
## 1758 4 2 0 0 BB PRT Direct
## 1759 4 2 0 0 BB PRT Direct
## 1760 5 1 0 0 BB PRT Direct
## 1761 5 2 0 0 BB FRA Direct
## 1762 2 2 0 0 BB PRT Online TA
## 1763 2 2 0 0 BB PRT Direct
## 1764 4 2 0 0 BB ESP Groups
## 1765 4 2 0 0 BB PRT Groups
## 1766 4 2 0 0 BB ESP Groups
## 1767 4 1 0 0 BB PRT Groups
## 1768 4 2 0 0 BB ESP Groups
## 1769 4 1 0 0 BB PRT Groups
## 1770 4 2 0 0 BB ESP Groups
## 1771 4 2 0 0 BB PRT Groups
## 1772 4 2 0 0 BB ESP Groups
## 1773 4 2 0 0 BB PRT Groups
## 1774 4 2 0 0 BB ESP Groups
## 1775 4 2 0 0 BB ESP Groups
## 1776 4 2 0 0 BB PRT Groups
## 1777 4 2 0 0 BB PRT Groups
## 1778 4 2 0 0 BB PRT Groups
## 1779 4 2 0 0 BB PRT Groups
## 1780 4 2 0 0 BB ESP Groups
## 1781 4 2 0 0 BB ESP Groups
## 1782 4 2 0 0 BB PRT Groups
## 1783 4 2 0 0 BB PRT Groups
## 1784 4 2 0 0 BB PRT Groups
## 1785 4 2 0 0 BB PRT Groups
## 1786 4 2 0 0 BB PRT Groups
## 1787 4 1 0 0 BB PRT Groups
## 1788 4 3 0 0 BB PRT Groups
## 1789 4 1 0 0 BB PRT Groups
## 1790 4 2 0 0 BB PRT Groups
## 1791 4 2 0 0 BB PRT Groups
## 1792 4 2 0 0 BB PRT Groups
## 1793 4 2 0 0 BB ESP Groups
## 1794 4 2 0 0 BB PRT Groups
## 1795 4 1 0 0 BB PRT Groups
## 1796 4 2 2 0 BB PRT Online TA
## 1797 4 2 0 0 BB ESP Groups
## 1798 4 2 0 0 BB PRT Groups
## 1799 4 2 0 0 BB ESP Groups
## 1800 4 1 0 0 BB PRT Groups
## 1801 5 2 0 0 BB ESP Groups
## 1802 4 1 0 0 BB ESP Groups
## 1803 5 2 0 0 HB FRA Offline TA/TO
## 1804 1 2 0 0 BB FRA Online TA
## 1805 1 2 0 0 BB ITA Direct
## 1806 1 2 2 0 BB PRT Online TA
## 1807 1 2 0 0 BB ESP Direct
## 1808 1 2 0 0 BB AGO Direct
## 1809 2 2 2 0 BB FRA Online TA
## 1810 2 2 1 0 BB PRT Direct
## 1811 2 2 0 0 BB SWE Online TA
## 1812 2 1 0 0 BB GBR Online TA
## 1813 2 2 0 0 BB PRT Online TA
## 1814 2 2 2 0 BB PRT Online TA
## 1815 2 2 0 0 BB PRT Online TA
## 1816 4 1 0 0 BB ESP Groups
## 1817 4 2 0 0 BB PRT Groups
## 1818 4 2 0 0 BB ESP Groups
## 1819 4 1 0 0 BB ESP Groups
## 1820 4 2 0 0 BB PRT Groups
## 1821 1 2 0 0 SC FRA Online TA
## 1822 1 2 1 0 BB PRT Complementary
## 1823 1 2 2 0 BB PRT Online TA
## 1824 1 2 0 0 BB PRT Complementary
## 1825 1 1 0 0 BB PRT Corporate
## 1826 1 1 0 0 BB PRT Offline TA/TO
## 1827 1 3 0 0 BB PRT Direct
## 1828 1 2 0 0 BB PRT Direct
## 1829 1 1 0 0 BB PRT Corporate
## 1830 2 2 0 0 BB ESP Groups
## 1831 2 2 0 0 BB ESP Groups
## 1832 2 2 0 0 BB PRT Groups
## 1833 2 2 0 0 BB NLD Online TA
## 1834 2 2 0 0 BB ESP Groups
## 1835 2 2 0 0 BB ESP Groups
## 1836 2 2 0 1 BB ESP Groups
## 1837 2 1 0 0 BB ESP Groups
## 1838 2 1 0 0 BB PRT Groups
## 1839 2 2 0 0 BB ESP Groups
## 1840 2 1 0 0 BB ESP Groups
## 1841 2 3 0 0 BB ESP Groups
## 1842 2 2 0 0 BB ESP Groups
## 1843 2 2 0 0 BB ESP Groups
## 1844 2 2 0 0 BB PRT Groups
## 1845 2 2 0 0 BB ESP Groups
## 1846 2 2 0 0 BB ESP Groups
## 1847 2 1 0 0 BB ESP Groups
## 1848 2 3 0 0 BB ESP Groups
## 1849 2 2 0 0 BB ESP Groups
## 1850 2 2 0 0 BB PRT Direct
## 1851 2 2 0 0 BB PRT Groups
## 1852 2 2 0 0 BB PRT Groups
## 1853 2 2 0 0 BB PRT Groups
## 1854 2 2 0 0 BB PRT Groups
## 1855 2 1 0 0 BB PRT Corporate
## 1856 2 2 0 0 BB PRT Groups
## 1857 2 2 0 0 BB ESP Groups
## 1858 2 3 0 0 BB ESP Groups
## 1859 2 1 0 0 BB ESP Groups
## 1860 2 2 0 0 BB PRT Groups
## 1861 2 2 0 0 BB ESP Groups
## 1862 2 2 0 0 BB ESP Groups
## 1863 2 2 0 0 BB ESP Groups
## 1864 2 2 0 0 BB ESP Groups
## 1865 2 1 0 0 BB ESP Groups
## 1866 2 2 0 0 BB AUT Online TA
## 1867 2 2 0 0 BB ESP Groups
## 1868 3 2 1 0 BB ESP Offline TA/TO
## 1869 3 2 0 0 BB ESP Online TA
## 1870 4 2 0 0 BB PRT Online TA
## 1871 4 2 0 0 BB PRT Online TA
## 1872 4 2 0 0 BB ESP Online TA
## 1873 4 2 0 0 BB ITA Direct
## 1874 4 2 0 0 BB PRT Online TA
## 1875 4 2 0 0 BB PRT Online TA
## 1876 4 2 0 0 BB PRT Online TA
## 1877 1 2 2 0 BB FRA Online TA
## 1878 1 2 0 0 BB PRT Online TA
## 1879 1 2 0 0 BB PRT Direct
## 1880 1 2 0 0 BB NLD Online TA
## 1881 2 1 0 0 BB PRT Online TA
## 1882 2 2 0 0 BB ESP Online TA
## 1883 2 1 0 0 BB ITA Direct
## 1884 2 2 0 0 BB FRA Online TA
## 1885 3 2 0 0 BB FRA Online TA
## 1886 3 2 0 1 BB PRT Online TA
## 1887 3 2 0 0 BB PRT Online TA
## 1888 5 2 0 0 BB PRT Online TA
## 1889 5 2 0 0 BB PRT Online TA
## 1890 6 2 0 0 BB ISR Online TA
## 1891 6 2 0 0 BB PRT Direct
## 1892 1 1 0 0 BB PRT Online TA
## 1893 1 0 2 0 BB PRT Complementary
## 1894 1 2 0 0 BB PRT Direct
## 1895 1 2 0 1 BB PRT Online TA
## 1896 1 2 0 1 BB PRT Complementary
## 1897 1 1 0 0 BB FRA Online TA
## 1898 1 2 0 0 BB PRT Online TA
## 1899 2 2 0 0 SC FRA Online TA
## 1900 2 2 1 0 BB PRT Online TA
## 1901 2 2 0 0 BB GBR Direct
## 1902 2 2 2 0 BB PRT Online TA
## 1903 2 2 0 0 BB PRT Online TA
## 1904 2 2 0 0 BB FRA Online TA
## 1905 2 2 0 0 BB FRA Direct
## 1906 3 2 0 0 BB PRT Online TA
## 1907 4 2 0 0 BB ITA Online TA
## 1908 6 2 0 0 BB FRA Direct
## 1909 10 1 0 0 BB PRT Online TA
## 1910 1 2 2 0 BB GBR Online TA
## 1911 1 1 0 0 BB PRT Offline TA/TO
## 1912 1 2 0 0 BB PRT Online TA
## 1913 1 2 0 0 BB DEU Online TA
## 1914 1 2 0 0 BB PRT Online TA
## 1915 1 2 0 0 BB PRT Online TA
## 1916 1 2 1 0 BB PRT Direct
## 1917 1 2 0 0 BB PRT Online TA
## 1918 1 2 2 1 BB PRT Online TA
## 1919 1 2 0 0 BB PRT Direct
## 1920 1 2 1 0 BB PRT Direct
## 1921 1 2 0 0 BB PRT Online TA
## 1922 1 1 0 0 BB AGO Direct
## 1923 1 2 0 0 BB PRT Direct
## 1924 1 2 0 0 BB PRT Direct
## 1925 1 2 2 0 BB PRT Online TA
## 1926 1 2 0 0 BB FRA Online TA
## 1927 1 2 0 0 HB ITA Offline TA/TO
## 1928 1 2 0 0 HB ITA Offline TA/TO
## 1929 1 2 0 0 HB ITA Offline TA/TO
## 1930 1 2 0 0 BB AUT Online TA
## 1931 1 2 0 0 HB ITA Offline TA/TO
## 1932 1 2 0 0 HB ITA Offline TA/TO
## 1933 1 1 0 0 HB ITA Offline TA/TO
## 1934 1 2 0 0 HB ITA Offline TA/TO
## 1935 1 2 0 0 HB ITA Offline TA/TO
## 1936 1 3 0 0 HB ITA Offline TA/TO
## 1937 1 2 0 0 HB ITA Offline TA/TO
## 1938 1 2 0 0 HB ITA Offline TA/TO
## 1939 1 2 0 0 HB ITA Offline TA/TO
## 1940 1 1 0 0 HB ITA Offline TA/TO
## 1941 1 2 0 0 HB ITA Offline TA/TO
## 1942 1 2 0 0 HB ITA Offline TA/TO
## 1943 1 1 0 0 HB ITA Offline TA/TO
## 1944 1 1 0 0 HB ITA Offline TA/TO
## 1945 1 2 0 0 HB ITA Offline TA/TO
## 1946 1 2 0 0 HB ITA Offline TA/TO
## 1947 1 2 0 0 HB ITA Offline TA/TO
## 1948 1 2 0 0 HB ITA Offline TA/TO
## 1949 1 2 0 0 BB ESP Online TA
## 1950 1 2 0 0 HB ITA Offline TA/TO
## 1951 1 1 0 0 BB FRA Online TA
## 1952 1 2 0 0 HB ITA Offline TA/TO
## 1953 1 2 0 0 HB ITA Offline TA/TO
## 1954 1 2 0 0 HB ITA Offline TA/TO
## 1955 1 2 0 0 HB ITA Offline TA/TO
## 1956 1 2 1 0 BB PRT Direct
## 1957 2 2 0 0 BB ESP Direct
## 1958 2 2 0 0 BB PRT Online TA
## 1959 2 2 0 0 BB PRT Online TA
## 1960 4 2 0 0 BB PRT Online TA
## 1961 4 1 0 0 BB PRT Online TA
## 1962 5 2 0 0 SC AUS Online TA
## 1963 5 2 0 0 BB PRT Online TA
## 1964 5 2 0 0 BB PRT Direct
## 1965 0 1 0 0 BB PRT Direct
## 1966 0 2 0 0 BB PRT Direct
## 1967 0 1 0 0 BB PRT Online TA
## 1968 0 1 0 0 BB ISR Groups
## 1969 0 1 0 0 BB PRT Direct
## 1970 0 2 0 0 BB PRT Online TA
## 1971 0 1 0 0 BB PRT Direct
## 1972 0 1 0 0 BB ISR Groups
## 1973 0 1 0 0 BB PRT Groups
## 1974 0 1 0 0 BB ISR Groups
## 1975 1 2 0 0 HB ESP Groups
## 1976 1 2 0 0 HB ESP Groups
## 1977 1 2 0 0 HB ESP Groups
## 1978 1 2 0 0 HB ESP Groups
## 1979 1 2 0 0 HB ESP Groups
## 1980 1 2 0 0 HB ESP Groups
## 1981 1 2 0 0 HB ESP Groups
## 1982 1 2 0 0 HB ESP Groups
## 1983 1 2 0 0 HB ESP Groups
## 1984 1 2 0 0 HB ESP Groups
## 1985 1 2 0 0 HB ESP Groups
## 1986 1 2 0 0 HB ESP Groups
## 1987 1 2 0 0 HB ESP Groups
## 1988 1 2 0 0 HB ESP Groups
## 1989 1 2 0 0 HB ESP Groups
## 1990 1 2 0 0 HB ESP Groups
## 1991 1 2 0 0 HB ESP Groups
## 1992 1 2 0 0 HB ESP Groups
## 1993 1 2 0 0 HB ESP Groups
## 1994 1 2 0 0 HB ESP Groups
## 1995 1 2 0 0 HB ESP Groups
## 1996 1 2 0 0 HB ESP Groups
## 1997 1 2 0 0 HB ESP Groups
## 1998 1 2 0 0 HB ESP Groups
## 1999 1 2 0 0 HB ESP Groups
## 2000 1 2 0 0 HB ESP Groups
## 2001 1 2 0 0 HB ESP Groups
## 2002 1 2 0 0 HB ESP Groups
## 2003 1 2 0 0 HB ESP Groups
## 2004 1 2 0 0 HB ESP Groups
## 2005 1 2 0 0 HB ESP Groups
## 2006 1 2 0 0 HB ESP Groups
## 2007 1 2 0 0 HB ESP Groups
## 2008 1 2 0 0 HB ESP Groups
## 2009 1 2 0 0 HB ESP Groups
## 2010 1 2 0 0 HB ESP Groups
## 2011 1 2 0 0 HB ESP Groups
## 2012 1 2 0 0 HB ESP Groups
## 2013 1 2 0 0 HB ESP Groups
## 2014 1 2 0 0 HB ESP Groups
## 2015 2 2 0 0 BB PRT Direct
## 2016 2 1 0 0 BB BEL Online TA
## 2017 3 2 0 0 BB BEL Online TA
## 2018 3 2 1 0 BB ESP Direct
## 2019 3 2 0 0 BB PRT Online TA
## 2020 5 2 0 0 BB FRA Online TA
## 2021 0 2 0 0 BB PRT Direct
## 2022 0 1 0 0 BB PRT Corporate
## 2023 0 2 0 0 BB PRT Direct
## 2024 0 2 0 0 BB PRT Direct
## 2025 0 2 0 0 BB FRA Direct
## 2026 0 2 0 0 BB ITA Online TA
## 2027 2 2 0 0 HB ISR Groups
## 2028 2 2 0 0 HB PRT Groups
## 2029 2 2 0 0 HB ISR Groups
## 2030 2 2 0 0 HB ISR Groups
## 2031 2 1 0 0 BB PRT Corporate
## 2032 2 1 0 0 HB ISR Groups
## 2033 2 2 0 0 HB ISR Groups
## 2034 2 2 0 0 HB ISR Groups
## 2035 2 2 0 0 HB PRT Groups
## 2036 2 1 0 0 HB ISR Groups
## 2037 2 1 0 0 HB ISR Groups
## 2038 2 1 0 0 HB ISR Groups
## 2039 2 1 0 0 HB ISR Groups
## 2040 2 2 0 0 HB ISR Groups
## 2041 2 2 0 0 HB PRT Groups
## 2042 2 2 0 0 HB ISR Groups
## 2043 2 1 0 0 HB ISR Groups
## 2044 2 1 0 0 HB ISR Groups
## 2045 2 1 0 0 HB ISR Groups
## 2046 2 2 0 0 HB ISR Groups
## 2047 2 2 2 0 BB VEN Online TA
## 2048 2 2 0 0 HB PRT Groups
## 2049 2 1 0 0 BB AUS Online TA
## 2050 2 1 0 0 HB ISR Groups
## 2051 2 2 0 0 HB ISR Groups
## 2052 2 1 0 0 BB ESP Corporate
## 2053 2 1 0 0 HB ISR Groups
## 2054 2 2 0 0 HB ISR Groups
## 2055 2 2 0 0 HB PRT Groups
## 2056 2 2 0 0 BB PRT Direct
## 2057 2 2 0 0 SC GBR Online TA
## 2058 3 1 0 0 BB RUS Groups
## 2059 3 2 0 0 BB FRA Online TA
## 2060 3 2 0 0 BB NLD Direct
## 2061 3 1 0 0 BB PRT Online TA
## 2062 3 2 0 0 BB ITA Online TA
## 2063 3 2 0 0 BB PRT Online TA
## 2064 3 2 0 0 BB PRT Direct
## 2065 3 2 0 0 BB DEU Offline TA/TO
## 2066 4 2 0 0 BB BEL Online TA
## 2067 4 1 0 0 BB FRA Online TA
## 2068 4 1 0 0 BB NLD Online TA
## 2069 4 2 0 0 BB PRT Direct
## 2070 4 2 0 0 BB DEU Online TA
## 2071 4 1 0 0 BB PRT Online TA
## 2072 4 2 0 0 BB PRT Online TA
## 2073 4 2 0 0 BB DEU Online TA
## 2074 5 2 0 0 BB ITA Direct
## 2075 5 2 0 0 BB FRA Direct
## 2076 5 2 0 0 BB ESP Offline TA/TO
## 2077 5 2 0 0 BB DEU Online TA
## 2078 1 2 0 0 BB ITA Online TA
## 2079 1 1 0 0 BB DEU Online TA
## 2080 2 1 0 0 BB PRT Online TA
## 2081 1 2 0 0 BB PRT Complementary
## 2082 1 1 0 0 BB PRT Complementary
## 2083 1 1 0 0 BB PRT Complementary
## 2084 1 2 0 0 BB PRT Online TA
## 2085 1 2 0 0 BB PRT Direct
## 2086 4 2 0 0 BB ESP Direct
## 2087 4 2 0 0 BB BEL Online TA
## 2088 4 2 2 0 BB ESP Direct
## 2089 5 2 2 0 BB PRT Online TA
## 2090 5 2 0 0 BB PRT Direct
## 2091 5 1 0 0 BB PRT Online TA
## 2092 5 2 0 0 BB ITA Online TA
## 2093 5 1 0 0 BB PRT Offline TA/TO
## 2094 5 2 0 0 BB ITA Offline TA/TO
## 2095 5 2 0 0 BB FRA Online TA
## 2096 6 2 0 0 BB DEU Offline TA/TO
## 2097 7 2 0 0 BB DEU Offline TA/TO
## 2098 10 2 0 0 BB PRT Online TA
## 2099 3 2 0 0 BB AUT Online TA
## 2100 3 3 0 0 HB ESP Offline TA/TO
## 2101 3 2 0 0 SC FRA Online TA
## 2102 3 1 0 0 BB PRT Direct
## 2103 3 2 1 0 HB PRT Offline TA/TO
## 2104 3 1 0 0 BB ITA Groups
## 2105 3 2 2 0 HB DEU Direct
## 2106 3 3 0 0 BB PRT Offline TA/TO
## 2107 3 2 0 0 BB FRA Online TA
## 2108 3 2 1 0 HB PRT Offline TA/TO
## 2109 3 2 1 0 BB ESP Offline TA/TO
## 2110 3 2 2 0 BB ESP Online TA
## 2111 2 2 0 0 SC CHN Online TA
## 2112 3 1 0 0 BB ESP Groups
## 2113 1 1 0 0 BB PRT Online TA
## 2114 1 2 0 0 BB CN Direct
## 2115 1 2 0 0 SC PRT Online TA
## 2116 4 2 0 0 BB ESP Online TA
## 2117 4 2 0 0 BB TWN Online TA
## 2118 5 2 0 0 SC NLD Online TA
## 2119 5 2 0 0 BB PRT Online TA
## 2120 6 2 0 0 BB FRA Online TA
## 2121 1 2 0 0 BB DEU Online TA
## 2122 1 1 1 0 BB ESP Offline TA/TO
## 2123 1 1 0 0 BB PRT Corporate
## 2124 1 1 0 0 BB PRT Corporate
## 2125 1 2 0 0 BB PRT Online TA
## 2126 2 1 0 0 BB PRT Corporate
## 2127 2 2 0 0 SC FRA Online TA
## 2128 2 2 0 0 BB IRN Online TA
## 2129 2 2 0 0 SC RUS Online TA
## 2130 2 1 0 0 BB PRT Corporate
## 2131 2 2 0 0 SC AUS Online TA
## 2132 3 1 0 0 BB ITA Online TA
## 2133 3 2 0 0 BB BRA Groups
## 2134 3 2 0 0 BB BRA Groups
## 2135 3 2 0 0 BB BRA Groups
## 2136 3 2 0 0 BB PRT Online TA
## 2137 3 2 0 0 BB PRT Offline TA/TO
## 2138 3 2 0 0 BB ESP Groups
## 2139 3 2 0 0 BB BRA Groups
## 2140 3 1 0 0 BB BRA Groups
## 2141 3 2 0 0 BB ITA Online TA
## 2142 3 2 0 0 BB BRA Groups
## 2143 3 2 0 0 BB BRA Groups
## 2144 3 2 0 0 BB PRT Offline TA/TO
## 2145 3 2 0 0 BB BRA Groups
## 2146 3 2 0 0 BB BRA Groups
## 2147 3 2 0 0 BB NLD Online TA
## 2148 3 2 0 0 BB ITA Online TA
## 2149 3 2 0 0 BB BRA Groups
## 2150 3 2 0 0 BB BRA Groups
## 2151 4 2 0 0 BB TWN Online TA
## 2152 4 2 0 0 BB DEU Online TA
## 2153 4 2 0 0 BB PRT Direct
## 2154 4 2 0 0 BB FRA Online TA
## 2155 4 2 0 0 BB FRA Offline TA/TO
## 2156 1 2 2 0 BB PRT Online TA
## 2157 1 2 0 0 BB ITA Online TA
## 2158 1 2 0 0 BB FRA Direct
## 2159 1 2 2 0 BB PRT Online TA
## 2160 1 2 0 0 BB FRA Direct
## 2161 1 2 0 0 SC PRT Online TA
## 2162 1 2 2 0 BB PRT Direct
## 2163 2 2 0 0 BB PRT Online TA
## 2164 2 2 0 0 BB SWE Online TA
## 2165 2 2 0 0 BB BEL Online TA
## 2166 2 2 0 0 SC ESP Online TA
## 2167 2 2 0 0 SC ESP Online TA
## 2168 2 1 0 0 BB SWE Online TA
## 2169 2 1 0 0 BB AGO Direct
## 2170 2 2 2 0 BB PRT Online TA
## 2171 3 2 0 0 BB NLD Online TA
## 2172 3 2 0 0 BB PRT Online TA
## 2173 3 2 0 0 BB CHN Online TA
## 2174 3 2 0 0 BB PRT Online TA
## 2175 3 2 0 0 BB DEU Online TA
## 2176 3 2 0 0 SC PRT Online TA
## 2177 3 2 2 0 BB AGO Online TA
## 2178 3 2 0 0 BB MEX Online TA
## 2179 3 2 1 0 BB ESP Online TA
## 2180 3 2 0 0 BB ESP Online TA
## 2181 3 1 0 0 BB NOR Direct
## 2182 3 1 0 0 BB SWE Online TA
## 2183 3 2 0 0 BB FRA Offline TA/TO
## 2184 3 2 0 0 SC PRT Online TA
## 2185 3 2 0 0 BB ESP Offline TA/TO
## 2186 3 2 0 0 BB PRT Online TA
## 2187 3 2 0 0 BB ITA Online TA
## 2188 4 2 0 0 BB FRA Online TA
## 2189 5 2 0 0 BB ESP Offline TA/TO
## 2190 3 2 0 0 BB PRT Online TA
## 2191 3 2 0 0 BB PRT Online TA
## 2192 3 2 0 0 SC PRT Online TA
## 2193 2 1 0 0 BB AGO Direct
## 2194 1 2 0 0 HB ITA Offline TA/TO
## 2195 1 1 0 0 BB PRT Online TA
## 2196 1 2 0 0 BB DEU Online TA
## 2197 1 2 0 0 HB ITA Offline TA/TO
## 2198 1 1 0 0 HB ITA Offline TA/TO
## 2199 1 2 0 0 HB ITA Offline TA/TO
## 2200 1 1 0 0 BB PRT Online TA
## 2201 1 1 2 0 BB AGO Online TA
## 2202 1 1 0 0 HB ITA Offline TA/TO
## 2203 2 2 0 0 HB PRT Offline TA/TO
## 2204 2 1 0 0 HB PRT Offline TA/TO
## 2205 2 1 0 0 BB PRT Online TA
## 2206 2 2 0 0 HB ITA Offline TA/TO
## 2207 2 2 0 0 HB PRT Offline TA/TO
## 2208 2 2 0 0 BB NLD Online TA
## 2209 2 2 0 0 SC ESP Online TA
## 2210 2 2 0 0 HB ITA Offline TA/TO
## 2211 2 2 0 0 HB PRT Offline TA/TO
## 2212 2 2 0 0 HB PRT Offline TA/TO
## 2213 2 1 0 0 HB PRT Offline TA/TO
## 2214 2 2 1 0 BB PRT Direct
## 2215 2 2 0 0 HB PRT Offline TA/TO
## 2216 2 2 0 0 HB PRT Offline TA/TO
## 2217 2 2 0 0 HB PRT Offline TA/TO
## 2218 2 1 0 0 HB PRT Offline TA/TO
## 2219 2 2 0 0 HB PRT Offline TA/TO
## 2220 2 2 0 0 HB ITA Offline TA/TO
## 2221 2 2 0 0 HB PRT Offline TA/TO
## 2222 2 2 0 0 BB FRA Online TA
## 2223 2 2 0 0 BB GBR Online TA
## 2224 2 2 0 0 HB PRT Offline TA/TO
## 2225 2 2 0 0 HB PRT Offline TA/TO
## 2226 2 2 0 0 HB PRT Offline TA/TO
## 2227 2 2 0 0 HB PRT Offline TA/TO
## 2228 2 2 0 0 HB PRT Offline TA/TO
## 2229 2 2 0 0 HB PRT Offline TA/TO
## 2230 2 2 0 0 HB PRT Offline TA/TO
## 2231 2 2 0 0 HB PRT Offline TA/TO
## 2232 2 2 0 0 BB ITA Offline TA/TO
## 2233 2 2 0 0 BB PRT Online TA
## 2234 2 2 0 0 HB PRT Offline TA/TO
## 2235 2 2 0 0 HB PRT Offline TA/TO
## 2236 2 3 0 0 BB KOR Online TA
## 2237 2 2 0 0 BB PRT Online TA
## 2238 2 2 0 0 HB PRT Offline TA/TO
## 2239 1 2 0 0 BB TUR Online TA
## 2240 1 2 0 0 BB DEU Online TA
## 2241 1 2 0 0 HB ITA Offline TA/TO
## 2242 1 2 0 0 HB PRT Offline TA/TO
## 2243 1 2 0 0 HB ITA Offline TA/TO
## 2244 1 2 1 0 BB PRT Direct
## 2245 1 1 0 0 HB ITA Offline TA/TO
## 2246 2 2 0 0 HB FRA Offline TA/TO
## 2247 2 2 0 0 BB AUT Direct
## 2248 2 1 0 0 BB SWE Offline TA/TO
## 2249 2 2 0 0 HB ESP Online TA
## 2250 2 2 1 0 BB PRT Offline TA/TO
## 2251 2 2 0 0 BB PRT Online TA
## 2252 2 1 0 0 BB IRL Online TA
## 2253 2 2 0 0 HB ESP Online TA
## 2254 2 1 0 0 BB PRT Online TA
## 2255 3 2 0 0 BB IRL Online TA
## 2256 2 2 0 0 HB FRA Offline TA/TO
## 2257 2 2 0 0 BB FRA Online TA
## 2258 2 2 0 0 BB PRT Online TA
## 2259 3 1 0 0 BB NLD Online TA
## 2260 3 2 0 0 BB IRL Online TA
## 2261 3 1 0 0 BB PRT Offline TA/TO
## 2262 3 2 0 0 BB FRA Online TA
## 2263 3 1 0 0 BB NOR Online TA
## 2264 3 2 0 0 BB FRA Online TA
## 2265 4 1 0 0 BB PRT Online TA
## 2266 4 2 0 0 BB PRT Online TA
## 2267 4 3 0 0 BB PRT Online TA
## 2268 1 2 0 0 BB AUT Online TA
## 2269 1 2 0 0 BB PRT Offline TA/TO
## 2270 1 2 0 0 BB FRA Online TA
## 2271 1 2 0 0 BB USA Online TA
## 2272 1 2 0 0 BB ESP Direct
## 2273 1 2 0 0 BB ESP Online TA
## 2274 1 2 0 0 BB PRT Offline TA/TO
## 2275 1 1 0 0 BB PRT Direct
## 2276 1 1 0 0 BB PRT Offline TA/TO
## 2277 1 1 0 0 BB PRT Online TA
## 2278 1 2 0 0 BB PRT Online TA
## 2279 1 2 0 0 BB PRT Direct
## 2280 1 2 0 0 BB PRT Online TA
## 2281 1 2 0 0 BB USA Online TA
## 2282 1 2 0 0 BB PRT Complementary
## 2283 1 2 0 0 SC AUT Online TA
## 2284 1 2 0 0 BB PRT Groups
## 2285 1 2 0 0 BB PRT Groups
## 2286 1 2 0 0 BB PRT Groups
## 2287 1 2 2 0 BB ESP Direct
## 2288 1 1 0 0 BB NOR Online TA
## 2289 1 2 0 0 BB PRT Groups
## 2290 1 2 0 0 BB PRT Groups
## 2291 1 2 0 0 BB PRT Groups
## 2292 1 2 0 0 BB PRT Groups
## 2293 1 2 0 0 BB PRT Groups
## 2294 1 2 0 0 BB PRT Groups
## 2295 1 1 0 0 BB GBR Online TA
## 2296 1 2 0 0 BB PRT Groups
## 2297 1 2 0 0 BB PRT Groups
## 2298 1 2 0 0 BB PRT Groups
## 2299 1 2 0 0 BB PRT Groups
## 2300 1 2 0 0 BB PRT Groups
## 2301 1 2 0 0 BB PRT Groups
## 2302 1 2 0 0 BB PRT Groups
## 2303 1 1 0 0 BB GBR Online TA
## 2304 1 2 1 0 BB PRT Direct
## 2305 1 2 0 0 BB PRT Groups
## 2306 1 2 0 0 BB PRT Groups
## 2307 1 2 0 0 BB PRT Groups
## 2308 1 2 0 0 BB PRT Groups
## 2309 1 2 0 0 BB ESP Direct
## 2310 1 2 0 0 BB PRT Groups
## 2311 1 2 0 0 BB PRT Groups
## 2312 1 2 0 0 BB PRT Groups
## 2313 1 2 0 0 BB PRT Groups
## 2314 1 2 0 0 BB PRT Groups
## 2315 1 1 0 0 BB PRT Groups
## 2316 1 2 0 0 SC GBR Online TA
## 2317 1 2 0 0 BB PRT Online TA
## 2318 1 2 0 0 BB PRT Groups
## 2319 1 2 0 0 BB CHE Online TA
## 2320 1 2 0 0 BB PRT Groups
## 2321 1 1 0 0 BB PRT Groups
## 2322 1 2 0 0 BB PRT Groups
## 2323 1 2 0 0 BB PRT Groups
## 2324 1 2 0 0 BB BLR Online TA
## 2325 1 2 0 0 BB FRA Online TA
## 2326 1 1 0 0 BB BRA Online TA
## 2327 1 2 2 0 BB ESP Online TA
## 2328 1 2 0 0 BB PRT Online TA
## 2329 1 3 1 0 BB LUX Direct
## 2330 1 2 0 0 BB ITA Online TA
## 2331 1 1 0 0 BB NOR Online TA
## 2332 1 2 1 0 BB ESP Online TA
## 2333 1 1 0 0 BB SWE Online TA
## 2334 1 2 2 0 BB ESP Online TA
## 2335 2 1 0 0 BB ESP Groups
## 2336 2 2 0 0 BB PRT Groups
## 2337 2 2 0 0 BB PRT Groups
## 2338 2 2 0 0 BB ESP Groups
## 2339 2 1 0 0 BB ESP Groups
## 2340 2 3 0 0 BB ESP Groups
## 2341 2 2 0 0 BB PRT Groups
## 2342 2 2 0 0 BB PRT Groups
## 2343 2 2 0 0 BB ESP Groups
## 2344 2 2 0 0 BB TUN Online TA
## 2345 2 1 0 0 BB ESP Groups
## 2346 2 2 0 0 BB ESP Groups
## 2347 2 2 0 0 BB PRT Groups
## 2348 2 2 0 0 BB ESP Groups
## 2349 2 2 0 0 BB ESP Groups
## 2350 2 2 0 0 BB PRT Groups
## 2351 2 2 0 0 BB PRT Groups
## 2352 2 2 0 0 BB PRT Groups
## 2353 2 2 0 0 BB FRA Online TA
## 2354 2 2 1 0 BB ESP Groups
## 2355 2 1 0 0 BB PRT Groups
## 2356 2 3 0 0 BB ESP Groups
## 2357 2 2 0 0 BB ESP Groups
## 2358 2 2 0 0 BB TUN Online TA
## 2359 2 2 0 0 BB ESP Groups
## 2360 2 1 0 0 BB PRT Groups
## 2361 2 2 0 0 BB ESP Groups
## 2362 2 2 0 0 BB ESP Groups
## 2363 2 2 0 0 BB PRT Groups
## 2364 2 2 0 0 BB PRT Groups
## 2365 2 1 0 0 BB PRT Groups
## 2366 2 2 0 0 BB ESP Groups
## 2367 2 1 0 0 BB ESP Groups
## 2368 2 2 0 0 BB PRT Groups
## 2369 2 2 0 0 BB PRT Groups
## 2370 2 2 0 0 BB ESP Groups
## 2371 2 2 0 0 BB PRT Groups
## 2372 2 2 0 0 BB PRT Groups
## 2373 2 2 0 0 BB PRT Groups
## 2374 2 2 0 0 BB ESP Groups
## 2375 2 2 0 0 BB PRT Groups
## 2376 2 2 0 0 BB PRT Groups
## 2377 2 1 0 0 BB PRT Groups
## 2378 2 2 0 0 BB PRT Groups
## 2379 2 2 0 0 BB ESP Groups
## 2380 3 2 0 0 BB FRA Online TA
## 2381 4 2 0 0 BB ROU Online TA
## 2382 4 2 0 0 SC ESP Online TA
## 2383 4 3 0 0 BB ESP Offline TA/TO
## 2384 4 2 0 0 BB PRT Online TA
## 2385 5 2 0 1 BB PRT Online TA
## 2386 5 2 0 1 BB PRT Online TA
## 2387 2 2 0 0 BB PRT Groups
## 2388 2 2 0 0 BB ESP Groups
## 2389 2 2 0 0 BB PRT Groups
## 2390 2 2 0 0 BB PRT Groups
## 2391 2 2 0 0 BB DEU Offline TA/TO
## 2392 0 1 0 0 BB FRA Groups
## 2393 0 0 0 0 SC PRT Groups
## 2394 0 2 0 0 BB ESP Groups
## 2395 0 2 0 0 BB ESP Groups
## 2396 0 2 0 0 BB FRA Groups
## 2397 0 2 0 0 BB PRT Groups
## 2398 0 2 0 0 BB PRT Groups
## 2399 0 2 0 0 BB ROU Online TA
## 2400 0 2 0 0 BB ITA Online TA
## 2401 0 2 0 0 BB ESP Groups
## 2402 0 2 0 0 BB ESP Groups
## 2403 0 2 0 0 BB FRA Groups
## 2404 0 1 0 0 BB FRA Groups
## 2405 0 2 0 0 BB PRT Groups
## 2406 0 2 0 0 BB PRT Groups
## 2407 0 1 0 0 BB PRT Groups
## 2408 0 2 0 0 BB ESP Groups
## 2409 0 2 0 0 BB ESP Groups
## 2410 0 2 0 0 BB PRT Groups
## 2411 0 2 0 0 BB ESP Groups
## 2412 0 2 0 0 BB ESP Groups
## 2413 0 2 0 0 BB FRA Groups
## 2414 0 1 0 0 BB PRT Groups
## 2415 0 1 0 0 BB PRT Groups
## 2416 0 2 0 0 BB FRA Groups
## 2417 0 2 0 0 BB PRT Groups
## 2418 0 2 0 0 BB ESP Groups
## 2419 0 2 0 0 BB ESP Groups
## 2420 0 2 0 0 BB FRA Groups
## 2421 0 2 0 0 BB FRA Groups
## 2422 0 2 0 0 BB PRT Groups
## 2423 0 2 0 0 BB PRT Groups
## 2424 0 1 0 0 BB FRA Groups
## 2425 0 1 0 0 BB FRA Groups
## 2426 0 2 0 0 BB ESP Groups
## 2427 0 2 0 0 BB FRA Groups
## 2428 0 2 0 0 BB PRT Groups
## 2429 0 2 0 0 BB ESP Groups
## 2430 0 2 0 0 BB PRT Groups
## 2431 0 2 0 0 BB ESP Groups
## 2432 0 2 0 0 BB ESP Groups
## 2433 0 2 0 0 BB FRA Groups
## 2434 0 2 0 0 BB FRA Groups
## 2435 0 2 0 0 BB PRT Groups
## 2436 0 1 0 0 BB PRT Groups
## 2437 0 2 0 0 BB FRA Groups
## 2438 0 2 0 0 BB PRT Groups
## 2439 0 2 0 0 BB ESP Groups
## 2440 0 2 0 0 BB ESP Groups
## 2441 0 2 0 0 BB ESP Groups
## 2442 0 2 0 0 BB FRA Groups
## 2443 0 1 0 0 BB ESP Groups
## 2444 0 1 0 0 BB FRA Groups
## 2445 0 1 0 0 BB PRT Groups
## 2446 0 2 0 0 BB ESP Groups
## 2447 0 2 0 0 BB FRA Groups
## 2448 0 1 0 0 BB PRT Groups
## 2449 0 1 0 0 BB PRT Groups
## 2450 0 2 0 0 BB ESP Groups
## 2451 0 2 0 0 BB FRA Groups
## 2452 0 1 0 0 BB ESP Groups
## 2453 0 2 0 0 BB ESP Groups
## 2454 0 2 0 0 BB ESP Groups
## 2455 0 2 0 0 BB ESP Groups
## 2456 0 2 0 0 BB FRA Groups
## 2457 0 2 0 0 BB PRT Groups
## 2458 0 2 0 0 BB PRT Groups
## 2459 0 2 0 0 BB ESP Groups
## 2460 0 2 0 0 BB ESP Groups
## 2461 0 2 0 0 BB FRA Groups
## 2462 0 2 0 0 BB FRA Groups
## 2463 0 2 0 0 BB PRT Groups
## 2464 0 2 0 0 BB PRT Groups
## 2465 0 2 0 0 BB ESP Groups
## 2466 0 2 0 0 BB ESP Groups
## 2467 0 2 0 0 BB FRA Groups
## 2468 0 2 0 0 BB PRT Groups
## 2469 0 2 0 0 BB PRT Groups
## 2470 2 2 0 0 HB FRA Complementary
## 2471 2 2 0 0 BB AUT Offline TA/TO
## 2472 2 2 0 0 BB ESP Online TA
## 2473 2 2 0 0 HB FRA Direct
## 2474 2 2 0 0 HB FRA Direct
## 2475 2 2 0 0 BB DEU Offline TA/TO
## 2476 3 2 0 0 BB GBR Online TA
## 2477 3 2 0 0 BB CHE Online TA
## 2478 5 2 0 0 BB AUT Offline TA/TO
## 2479 5 2 0 0 BB CHE Direct
## 2480 5 1 0 0 BB MAR Direct
## 2481 0 1 0 0 BB MEX Online TA
## 2482 0 1 0 0 BB PRT Direct
## 2483 0 3 0 0 BB PRT Direct
## 2484 0 1 0 0 BB PRT Direct
## 2485 0 1 0 0 BB GBR Online TA
## 2486 0 2 0 0 BB PRT Online TA
## 2487 0 2 0 0 BB PRT Online TA
## 2488 0 2 0 0 BB PRT Online TA
## 2489 0 1 0 0 BB PRT Online TA
## 2490 1 1 0 0 BB PRT Offline TA/TO
## 2491 1 2 0 0 BB PRT Online TA
## 2492 1 1 0 0 BB PRT Online TA
## 2493 1 2 0 0 BB USA Online TA
## 2494 1 2 0 0 BB NLD Online TA
## 2495 1 2 0 0 BB PRT Direct
## 2496 1 2 0 0 BB PRT Direct
## 2497 1 2 0 0 BB POL Online TA
## 2498 1 1 0 0 BB PRT Online TA
## 2499 1 2 0 0 BB ESP Offline TA/TO
## 2500 1 2 0 0 BB USA Online TA
## 2501 2 2 0 0 SC ESP Online TA
## 2502 2 2 0 0 BB PRT Online TA
## 2503 2 1 0 0 BB PRT Corporate
## 2504 2 2 0 0 SC BEL Online TA
## 2505 2 2 1 1 BB BRA Offline TA/TO
## 2506 2 1 0 0 BB PRT Online TA
## 2507 2 2 0 0 BB CHN Online TA
## 2508 2 1 0 0 BB PRT Online TA
## 2509 2 1 0 0 BB PRT Corporate
## 2510 2 1 0 0 BB PRT Online TA
## 2511 2 2 0 0 BB BEL Online TA
## 2512 2 1 0 0 BB SWE Online TA
## 2513 2 1 0 0 BB VEN Online TA
## 2514 2 2 0 0 BB BEL Online TA
## 2515 3 2 0 0 BB BEL Online TA
## 2516 3 2 0 0 BB FRA Online TA
## 2517 3 1 0 0 BB ESP Online TA
## 2518 3 2 2 0 BB BEL Online TA
## 2519 3 2 0 0 BB PRT Online TA
## 2520 3 2 0 0 BB PRT Online TA
## 2521 1 1 0 0 BB PRT Online TA
## 2522 1 2 0 0 BB PRT Online TA
## 2523 1 2 0 0 BB PRT Online TA
## 2524 1 1 0 0 BB PRT Offline TA/TO
## 2525 1 2 0 0 BB PRT Offline TA/TO
## 2526 3 1 0 0 BB PRT Corporate
## 2527 3 2 0 0 BB ESP Direct
## 2528 3 2 0 0 BB FRA Online TA
## 2529 3 2 0 0 BB NLD Online TA
## 2530 3 2 0 0 BB GBR Online TA
## 2531 4 1 0 0 BB PRT Online TA
## 2532 4 0 0 0 BB SWE Online TA
## 2533 4 2 0 0 HB PRT Offline TA/TO
## 2534 4 2 0 0 BB ESP Direct
## 2535 4 1 0 0 BB PRT Online TA
## 2536 4 2 0 0 BB FRA Online TA
## 2537 5 2 2 0 BB ITA Online TA
## 2538 6 2 0 0 BB CHE Direct
## 2539 7 2 0 0 BB GBR Online TA
## 2540 5 2 0 0 BB PRT Online TA
## 2541 1 2 0 0 BB PRT Offline TA/TO
## 2542 1 1 0 0 BB ESP Corporate
## 2543 1 2 0 0 BB PRT Direct
## 2544 1 1 0 0 BB PRT Corporate
## 2545 1 2 0 0 BB FRA Direct
## 2546 1 2 0 0 BB PRT Direct
## 2547 1 2 0 0 BB PRT Direct
## 2548 1 2 0 0 BB AUS Online TA
## 2549 1 1 0 0 BB ESP Offline TA/TO
## 2550 1 1 0 0 BB PRT Offline TA/TO
## 2551 1 2 0 0 SC AGO Direct
## 2552 1 2 0 0 BB PRT Online TA
## 2553 2 2 0 0 BB PRT Direct
## 2554 2 2 0 1 BB PRT Online TA
## 2555 2 2 0 0 BB PRT Offline TA/TO
## 2556 2 2 0 0 BB PRT Direct
## 2557 2 2 0 0 BB USA Online TA
## 2558 2 2 0 0 BB PRT Offline TA/TO
## 2559 2 1 0 0 BB PRT Corporate
## 2560 3 2 0 0 BB PRT Online TA
## 2561 3 2 0 0 BB JPN Online TA
## 2562 3 2 0 0 BB PRT Direct
## 2563 3 1 0 0 BB PRT Direct
## 2564 3 1 0 0 BB PRT Online TA
## 2565 3 2 0 0 BB ESP Online TA
## 2566 3 2 0 0 BB IRL Online TA
## 2567 3 2 0 0 BB PRT Offline TA/TO
## 2568 3 2 0 0 BB PRT Offline TA/TO
## 2569 4 2 0 0 BB ESP Online TA
## 2570 4 1 0 0 BB PRT Online TA
## 2571 4 2 0 0 BB ESP Direct
## 2572 4 2 0 0 BB PRT Online TA
## 2573 4 2 1 0 BB PRT Offline TA/TO
## 2574 4 2 2 0 BB PRT Online TA
## 2575 4 2 0 0 SC GBR Offline TA/TO
## 2576 1 1 0 0 BB PRT Direct
## 2577 1 1 0 0 BB PRT Direct
## 2578 1 2 0 0 BB PRT Direct
## 2579 1 2 0 0 BB FRA Online TA
## 2580 1 1 0 0 BB PRT Online TA
## 2581 1 2 0 0 BB PRT Direct
## 2582 4 2 0 0 BB NOR Online TA
## 2583 4 2 0 0 BB PRT Offline TA/TO
## 2584 5 2 0 0 BB GBR Online TA
## 2585 5 2 0 0 BB CHE Online TA
## 2586 5 2 0 0 BB PRT Online TA
## 2587 5 2 0 0 SC ITA Offline TA/TO
## 2588 5 2 0 0 BB FRA Online TA
## 2589 5 2 0 0 BB FRA Direct
## 2590 6 2 0 0 BB PRT Online TA
## 2591 7 2 0 0 HB DEU Offline TA/TO
## 2592 2 1 0 0 BB DEU Online TA
## 2593 2 2 0 0 BB DNK Direct
## 2594 2 2 0 0 BB AGO Direct
## 2595 2 2 0 0 BB PRT Groups
## 2596 2 3 0 0 BB PRT Groups
## 2597 2 2 0 0 SC FRA Online TA
## 2598 2 1 0 0 BB PRT Corporate
## 2599 2 2 0 0 BB RUS Online TA
## 2600 2 2 0 0 BB FRA Corporate
## 2601 2 2 0 0 BB FRA Corporate
## 2602 2 2 0 0 BB FRA Groups
## 2603 2 1 0 0 BB PRT Corporate
## 2604 2 2 0 0 BB PRT Groups
## 2605 2 1 0 0 BB PRT Groups
## 2606 1 2 0 0 BB PRT Online TA
## 2607 1 2 0 0 SC ESP Online TA
## 2608 1 1 0 0 BB PRT Online TA
## 2609 1 1 0 0 BB ESP Corporate
## 2610 1 2 0 0 BB DEU Online TA
## 2611 1 2 0 0 BB PRT Online TA
## 2612 1 1 0 0 BB PRT Corporate
## 2613 1 2 0 0 SC BRA Direct
## 2614 2 2 0 0 BB NOR Online TA
## 2615 2 2 0 0 BB PRT Groups
## 2616 2 2 0 0 BB PRT Groups
## 2617 2 1 0 0 BB FRA Corporate
## 2618 2 1 0 0 BB FRA Corporate
## 2619 2 2 0 0 BB FRA Corporate
## 2620 2 2 0 0 BB FRA Corporate
## 2621 2 2 0 0 BB PRT Groups
## 2622 2 2 0 0 BB PRT Groups
## 2623 2 2 0 0 BB PRT Groups
## 2624 2 2 0 0 BB FRA Groups
## 2625 2 2 0 0 BB FRA Corporate
## 2626 2 2 0 0 BB FRA Groups
## 2627 2 2 0 0 BB FRA Corporate
## 2628 2 2 0 0 BB PRT Groups
## 2629 2 2 0 0 BB PRT Groups
## 2630 2 2 0 0 BB PRT Groups
## 2631 2 2 0 0 BB PRT Groups
## 2632 2 2 0 0 BB PRT Corporate
## 2633 2 2 0 0 BB FRA Online TA
## 2634 2 2 0 0 BB FRA Corporate
## 2635 2 2 0 0 BB FRA Groups
## 2636 2 2 0 0 BB PRT Groups
## 2637 2 2 0 0 BB PRT Groups
## 2638 2 2 0 0 BB PRT Groups
## 2639 2 1 0 0 BB PRT Corporate
## 2640 2 2 0 0 BB PRT Online TA
## 2641 2 1 0 0 BB PRT Corporate
## 2642 2 2 0 0 BB FRA Corporate
## 2643 2 1 0 0 BB FRA Corporate
## 2644 2 2 0 0 BB FRA Corporate
## 2645 2 1 0 0 BB FRA Corporate
## 2646 2 2 0 0 BB FRA Corporate
## 2647 2 2 0 0 BB FRA Groups
## 2648 2 2 0 0 BB PRT Groups
## 2649 2 2 0 0 BB PRT Groups
## 2650 2 1 0 0 BB FRA Corporate
## 2651 2 1 0 0 BB FRA Corporate
## 2652 2 2 2 0 BB ESP Online TA
## 2653 2 2 0 0 BB PRT Groups
## 2654 2 2 0 0 BB PRT Groups
## 2655 2 2 0 0 BB FRA Corporate
## 2656 2 2 0 0 BB FRA Groups
## 2657 2 2 0 0 BB FRA Groups
## 2658 2 2 0 0 BB PRT Groups
## 2659 2 2 0 0 BB PRT Groups
## 2660 2 2 0 0 BB PRT Groups
## 2661 2 2 0 0 BB NLD Online TA
## 2662 2 2 0 0 BB FRA Corporate
## 2663 2 2 0 0 BB FRA Corporate
## 2664 2 2 0 0 BB ESP Groups
## 2665 2 2 0 0 BB PRT Groups
## 2666 2 2 0 0 BB PRT Groups
## 2667 2 2 0 0 BB FRA Corporate
## 2668 2 1 0 0 BB FRA Corporate
## 2669 2 2 0 0 BB FRA Groups
## 2670 2 1 0 0 BB FRA Online TA
## 2671 2 2 0 0 BB FRA Corporate
## 2672 2 2 0 0 BB FRA Corporate
## 2673 2 1 0 0 BB FRA Corporate
## 2674 2 2 0 0 BB PRT Groups
## 2675 2 2 0 0 BB PRT Groups
## 2676 2 1 0 0 BB FRA Corporate
## 2677 2 2 0 0 BB FRA Corporate
## 2678 2 2 0 0 BB FRA Groups
## 2679 2 2 0 0 BB PRT Groups
## 2680 2 2 0 0 BB PRT Groups
## 2681 2 1 0 0 BB PRT Groups
## 2682 2 2 0 0 BB FRA Corporate
## 2683 2 1 0 0 BB FRA Corporate
## 2684 3 1 0 0 BB FRA Corporate
## 2685 3 1 0 0 BB FRA Corporate
## 2686 3 1 0 0 BB FRA Corporate
## 2687 3 2 0 0 BB FRA Corporate
## 2688 3 2 0 0 BB FRA Corporate
## 2689 3 2 2 0 BB PRT Online TA
## 2690 3 3 0 0 BB DEU Online TA
## 2691 3 2 0 0 BB USA Online TA
## 2692 3 2 0 0 BB PRT Online TA
## 2693 3 2 0 0 BB USA Online TA
## 2694 3 2 0 0 BB RUS Online TA
## 2695 3 2 0 0 BB FRA Online TA
## 2696 3 1 0 0 BB FRA Corporate
## 2697 3 2 0 0 HB ESP Offline TA/TO
## 2698 4 2 0 0 BB PRT Online TA
## 2699 4 2 0 0 SC PRT Online TA
## 2700 4 2 0 0 SC PRT Offline TA/TO
## 2701 4 2 0 0 BB DEU Offline TA/TO
## 2702 2 1 0 0 BB FRA Corporate
## 2703 2 1 0 0 BB FRA Corporate
## 2704 4 2 0 0 BB PRT Online TA
## 2705 1 2 0 0 BB NLD Online TA
## 2706 1 2 0 0 BB PRT Direct
## 2707 1 2 0 0 BB PRT Corporate
## 2708 1 1 0 0 BB PRT Direct
## 2709 1 2 0 0 BB FRA Corporate
## 2710 1 2 0 0 BB PRT Direct
## 2711 1 1 0 0 BB FRA Corporate
## 2712 1 1 0 0 BB PRT Online TA
## 2713 1 2 0 0 BB PRT Direct
## 2714 1 1 0 0 BB PRT Corporate
## 2715 1 1 0 0 BB PRT Online TA
## 2716 2 2 0 0 HB PRT Groups
## 2717 2 2 0 0 HB PRT Groups
## 2718 2 2 0 0 HB PRT Groups
## 2719 2 2 0 0 HB PRT Groups
## 2720 2 2 0 0 HB PRT Groups
## 2721 1 1 0 0 BB FRA Corporate
## 2722 2 2 0 0 BB CN Offline TA/TO
## 2723 2 2 0 0 HB PRT Groups
## 2724 2 2 0 0 BB RUS Online TA
## 2725 2 2 0 0 BB PRT Direct
## 2726 2 2 0 0 HB PRT Groups
## 2727 2 2 0 0 HB PRT Groups
## 2728 2 2 0 0 HB PRT Groups
## 2729 2 2 0 0 HB PRT Groups
## 2730 2 2 0 0 HB PRT Groups
## 2731 2 2 0 0 HB PRT Groups
## 2732 2 2 0 0 HB PRT Groups
## 2733 2 2 0 0 HB PRT Groups
## 2734 2 2 0 0 HB PRT Groups
## 2735 2 2 0 0 SC USA Online TA
## 2736 2 2 0 0 HB PRT Groups
## 2737 2 2 0 0 HB PRT Groups
## 2738 2 2 0 0 HB PRT Groups
## 2739 2 2 0 0 HB PRT Groups
## 2740 2 2 0 0 HB PRT Groups
## 2741 2 2 0 0 HB PRT Groups
## 2742 2 2 0 0 HB PRT Groups
## 2743 2 2 0 0 HB PRT Groups
## 2744 3 2 0 0 BB BEL Online TA
## 2745 3 2 0 0 BB DEU Online TA
## 2746 4 2 0 0 BB ESP Online TA
## 2747 4 1 0 0 BB ITA Direct
## 2748 4 2 0 0 BB FRA Online TA
## 2749 5 2 0 0 BB DEU Online TA
## 2750 6 1 0 0 BB BRA Direct
## 2751 6 2 1 0 BB RUS Online TA
## 2752 6 1 0 0 BB GBR Direct
## 2753 8 2 0 0 BB PRT Online TA
## 2754 2 2 0 0 HB PRT Groups
## 2755 2 2 0 0 HB PRT Groups
## 2756 2 2 0 0 BB PRT Online TA
## 2757 3 2 0 0 BB USA Online TA
## 2758 3 2 0 0 BB DNK Online TA
## 2759 3 2 0 0 BB GBR Online TA
## 2760 3 2 0 0 BB PRT Offline TA/TO
## 2761 3 1 0 0 BB PRT Offline TA/TO
## 2762 3 2 0 0 BB AUT Offline TA/TO
## 2763 3 2 0 0 BB CN Offline TA/TO
## 2764 3 2 0 0 BB NLD Online TA
## 2765 3 2 0 0 BB PRT Online TA
## 2766 3 2 0 0 BB DEU Online TA
## 2767 3 2 0 0 BB PRT Online TA
## 2768 2 2 0 0 HB PRT Groups
## 2769 2 1 0 0 BB PRT Groups
## 2770 2 1 0 0 BB PRT Groups
## 2771 2 2 0 0 BB PRT Groups
## 2772 2 2 0 0 BB PRT Groups
## 2773 2 2 0 0 BB PRT Groups
## 2774 2 2 0 0 BB FRA Groups
## 2775 2 1 0 0 BB FRA Groups
## 2776 2 2 0 0 HB LUX Groups
## 2777 2 2 0 0 HB LUX Groups
## 2778 2 1 0 0 BB PRT Groups
## 2779 2 2 0 0 BB ESP Online TA
## 2780 2 1 0 0 BB PRT Direct
## 2781 2 2 0 0 BB PRT Direct
## 2782 2 2 0 0 BB PRT Groups
## 2783 2 1 0 0 BB PRT Groups
## 2784 2 2 0 0 BB PRT Groups
## 2785 2 2 0 0 BB GBR Online TA
## 2786 2 2 0 0 BB PRT Groups
## 2787 2 2 0 0 BB PRT Groups
## 2788 2 1 0 0 BB PRT Groups
## 2789 2 1 0 0 BB PRT Groups
## 2790 2 2 0 0 BB PRT Groups
## 2791 2 2 0 0 BB PRT Groups
## 2792 2 2 0 0 HB PRT Groups
## 2793 2 2 0 0 HB PRT Groups
## 2794 2 1 0 0 HB PRT Groups
## 2795 2 1 0 0 BB PRT Groups
## 2796 2 1 0 0 BB PRT Groups
## 2797 2 2 0 0 BB PRT Groups
## 2798 2 2 0 0 BB PRT Groups
## 2799 2 2 0 0 BB PRT Groups
## 2800 2 2 0 0 BB PRT Direct
## 2801 2 2 0 0 BB PRT Direct
## 2802 2 2 0 0 BB ESP Online TA
## 2803 2 2 0 0 HB LUX Groups
## 2804 2 1 0 0 BB PRT Groups
## 2805 2 1 0 0 BB PRT Groups
## 2806 2 2 0 0 BB PRT Groups
## 2807 2 2 0 0 BB PRT Groups
## 2808 2 2 0 0 HB PRT Groups
## 2809 2 2 0 0 HB LUX Groups
## 2810 2 1 0 0 BB FRA Groups
## 2811 2 1 0 0 BB FRA Groups
## 2812 2 0 0 0 BB FRA Groups
## 2813 2 1 0 0 HB LUX Groups
## 2814 2 1 0 0 BB PRT Groups
## 2815 2 2 0 0 BB PRT Groups
## 2816 2 2 0 0 BB PRT Groups
## 2817 2 2 0 0 BB PRT Direct
## 2818 2 1 0 0 BB PRT Direct
## 2819 2 2 0 0 BB FRA Direct
## 2820 2 1 0 0 HB LUX Groups
## 2821 2 1 0 0 BB PRT Groups
## 2822 2 2 0 0 BB PRT Groups
## 2823 2 1 0 0 BB FRA Groups
## 2824 2 1 0 0 BB PRT Groups
## 2825 2 2 0 0 BB PRT Groups
## 2826 2 2 0 0 BB PRT Groups
## 2827 2 2 0 0 HB PRT Groups
## 2828 2 1 0 0 BB PRT Groups
## 2829 2 2 0 0 BB PRT Groups
## 2830 2 2 0 0 BB PRT Groups
## 2831 2 2 0 0 BB PRT Groups
## 2832 2 1 0 0 BB FRA Groups
## 2833 2 1 0 0 BB FRA Groups
## 2834 2 2 0 0 HB LUX Groups
## 2835 2 1 0 0 BB PRT Groups
## 2836 2 1 0 0 BB PRT Groups
## 2837 2 2 0 0 BB PRT Groups
## 2838 2 1 0 0 BB PRT Direct
## 2839 2 2 0 0 BB PRT Direct
## 2840 2 2 0 0 BB PRT Groups
## 2841 2 2 0 0 BB PRT Direct
## 2842 2 2 0 0 BB PRT Online TA
## 2843 2 2 0 0 BB PRT Online TA
## 2844 2 2 0 0 BB NLD Online TA
## 2845 2 2 0 0 SC CZE Online TA
## 2846 4 2 0 0 BB IRL Offline TA/TO
## 2847 5 2 0 0 BB PRT Online TA
## 2848 5 2 0 0 BB PRT Online TA
## 2849 2 2 0 0 BB FRA Online TA
## 2850 2 2 0 0 HB PRT Groups
## 2851 2 1 0 0 HB LUX Groups
## 2852 2 1 0 0 HB PRT Groups
## 2853 2 1 0 0 BB PRT Groups
## 2854 2 2 0 0 BB PRT Groups
## 2855 2 2 0 0 BB PRT Groups
## 2856 2 2 0 0 BB PRT Groups
## 2857 2 2 0 0 BB PRT Groups
## 2858 2 2 0 0 HB PRT Groups
## 2859 2 2 0 0 BB BEL Online TA
## 2860 2 2 0 0 BB FRA Corporate
## 2861 2 1 0 0 BB FRA Groups
## 2862 2 2 0 0 HB LUX Groups
## 2863 2 1 0 0 BB PRT Groups
## 2864 2 2 0 0 BB PRT Groups
## 2865 2 1 0 0 HB PRT Groups
## 2866 2 2 0 0 HB BEL Groups
## 2867 1 2 0 0 BB PRT Online TA
## 2868 1 1 0 0 HB PRT Offline TA/TO
## 2869 1 2 0 0 HB PRT Offline TA/TO
## 2870 1 2 0 0 BB FRA Corporate
## 2871 1 1 0 0 BB FRA Groups
## 2872 1 1 0 0 HB PRT Offline TA/TO
## 2873 1 2 0 0 HB PRT Offline TA/TO
## 2874 1 1 0 0 BB FRA Corporate
## 2875 1 0 0 0 BB PRT Direct
## 2876 1 2 0 0 HB PRT Offline TA/TO
## 2877 1 1 0 0 BB FRA Online TA
## 2878 1 2 0 0 HB PRT Offline TA/TO
## 2879 1 1 0 0 BB BRA Online TA
## 2880 1 2 0 0 BB PRT Online TA
## 2881 1 2 0 0 BB FRA Direct
## 2882 1 2 0 0 BB PRT Online TA
## 2883 1 2 0 0 HB PRT Offline TA/TO
## 2884 1 1 0 0 HB PRT Offline TA/TO
## 2885 1 2 0 0 BB FRA Corporate
## 2886 2 1 0 0 BB PRT Groups
## 2887 2 2 0 0 BB PRT Groups
## 2888 2 1 0 0 HB PRT Groups
## 2889 2 1 0 0 HB LUX Groups
## 2890 2 2 0 0 BB PRT Direct
## 2891 2 1 0 0 HB BEL Groups
## 2892 2 1 0 0 BB PRT Groups
## 2893 2 2 0 0 BB PRT Groups
## 2894 2 2 0 0 BB PRT Groups
## 2895 2 2 0 0 BB PRT Groups
## 2896 2 2 0 0 BB PRT Groups
## 2897 2 1 0 0 BB FRA Groups
## 2898 2 1 0 0 BB FRA Groups
## 2899 2 2 0 0 BB ESP Online TA
## 2900 2 2 0 0 HB PRT Groups
## 2901 2 1 0 0 BB PRT Groups
## 2902 2 2 0 0 BB PRT Groups
## 2903 2 2 0 0 BB PRT Groups
## 2904 2 2 0 0 BB FRA Online TA
## 2905 2 2 0 0 BB FRA Groups
## 2906 2 1 0 0 BB FRA Groups
## 2907 2 1 0 0 BB PRT Groups
## 2908 2 2 0 0 BB PRT Groups
## 2909 2 2 0 0 BB PRT Groups
## 2910 2 2 0 0 BB PRT Online TA
## 2911 2 1 0 0 BB PRT Direct
## 2912 1 2 0 0 BB ESP Online TA
## 2913 1 2 0 0 HB PRT Offline TA/TO
## 2914 1 2 0 0 HB PRT Offline TA/TO
## 2915 1 2 0 0 BB PRT Direct
## 2916 1 2 0 0 BB DEU Offline TA/TO
## 2917 1 2 0 0 HB PRT Offline TA/TO
## 2918 1 2 0 0 BB HUN Online TA
## 2919 1 2 0 0 BB DEU Online TA
## 2920 1 2 0 0 HB PRT Groups
## 2921 1 2 0 0 HB PRT Groups
## 2922 1 2 0 0 HB PRT Groups
## 2923 1 2 0 0 HB PRT Groups
## 2924 1 2 0 0 HB PRT Groups
## 2925 1 2 0 0 BB PRT Online TA
## 2926 1 2 0 0 HB PRT Groups
## 2927 1 2 0 0 HB PRT Groups
## 2928 1 2 0 0 HB PRT Groups
## 2929 1 2 0 0 BB FRA Online TA
## 2930 1 2 0 0 BB FRA Online TA
## 2931 1 2 0 0 HB PRT Groups
## 2932 1 2 0 0 BB IRL Online TA
## 2933 1 2 2 0 BB ESP Online TA
## 2934 1 2 0 0 HB PRT Groups
## 2935 2 1 0 0 BB PRT Groups
## 2936 2 3 0 0 BB PRT Groups
## 2937 2 2 0 0 BB PRT Groups
## 2938 2 2 0 0 BB PRT Groups
## 2939 2 2 0 0 BB BEL Online TA
## 2940 2 2 0 0 BB PRT Groups
## 2941 2 2 0 0 BB PRT Groups
## 2942 2 3 0 0 BB PRT Groups
## 2943 2 2 0 0 BB PRT Groups
## 2944 2 2 0 0 BB PRT Groups
## 2945 2 2 0 0 BB PRT Groups
## 2946 2 1 0 0 BB PRT Groups
## 2947 2 2 0 0 BB PRT Groups
## 2948 2 2 0 0 BB PRT Groups
## 2949 2 2 0 0 BB PRT Groups
## 2950 2 2 0 0 BB PRT Groups
## 2951 2 2 0 0 BB PRT Groups
## 2952 2 2 0 0 BB PRT Groups
## 2953 2 2 0 0 BB PRT Groups
## 2954 2 2 0 0 BB PRT Groups
## 2955 2 1 0 0 BB ESP Groups
## 2956 2 2 0 0 BB PRT Groups
## 2957 2 2 1 0 BB ESP Offline TA/TO
## 2958 2 2 0 0 BB PRT Groups
## 2959 2 1 0 0 BB PRT Groups
## 2960 2 2 0 0 BB PRT Groups
## 2961 2 2 0 0 BB PRT Groups
## 2962 2 2 0 0 BB PRT Groups
## 2963 2 1 0 0 BB PRT Groups
## 2964 2 2 0 0 BB PRT Groups
## 2965 2 1 0 0 BB PRT Groups
## 2966 2 2 0 0 BB PRT Groups
## 2967 3 2 0 0 BB PRT Online TA
## 2968 3 2 0 0 BB NLD Online TA
## 2969 4 2 0 0 BB PRT Online TA
## 2970 4 2 0 0 BB ESP Online TA
## 2971 5 2 0 0 BB BEL Online TA
## 2972 5 2 0 0 BB PRT Online TA
## 2973 2 2 0 0 BB PRT Groups
## 2974 2 2 0 0 BB DEU Direct
## 2975 5 1 0 0 BB ITA Online TA
## 2976 0 2 0 0 BB DEU Online TA
## 2977 0 2 0 0 BB PRT Online TA
## 2978 1 2 0 0 BB PRT Online TA
## 2979 1 2 0 0 BB BEL Online TA
## 2980 1 2 2 0 BB PRT Online TA
## 2981 1 2 0 0 BB BEL Online TA
## 2982 2 2 0 0 BB FRA Online TA
## 2983 2 2 0 0 BB GBR Online TA
## 2984 2 2 0 0 BB DEU Online TA
## 2985 2 2 0 0 BB BRA Online TA
## 2986 2 2 0 1 BB ISR Online TA
## 2987 2 2 0 0 BB SWE Online TA
## 2988 3 2 0 0 BB PRT Online TA
## 2989 3 1 0 0 BB PRT Corporate
## 2990 3 2 0 0 BB FRA Online TA
## 2991 3 2 0 0 HB FRA Offline TA/TO
## 2992 3 2 0 0 BB BEL Online TA
## 2993 3 2 0 0 BB PRT Online TA
## 2994 3 1 0 0 BB PRT Online TA
## 2995 4 2 0 0 SC FRA Online TA
## 2996 4 1 0 0 BB PRT Direct
## 2997 4 1 0 0 BB PRT Direct
## 2998 0 2 1 0 SC BRA Online TA
## 2999 0 2 0 1 BB DEU Online TA
## 3000 5 2 0 0 BB DEU Direct
## 3001 5 1 0 0 BB DEU Direct
## 3002 0 2 0 0 SC GBR Online TA
## 3003 0 1 0 0 BB PRT Corporate
## 3004 1 1 0 0 BB CN Online TA
## 3005 2 2 0 0 BB PRT Offline TA/TO
## 3006 2 2 0 0 BB CN Offline TA/TO
## 3007 2 2 0 0 BB AZE Online TA
## 3008 2 3 0 0 SC FRA Online TA
## 3009 2 2 0 0 BB CN Offline TA/TO
## 3010 2 2 0 0 BB PRT Offline TA/TO
## 3011 2 2 0 0 BB CN Offline TA/TO
## 3012 2 2 0 0 BB CN Offline TA/TO
## 3013 2 2 0 0 BB CN Offline TA/TO
## 3014 2 2 0 0 BB CN Offline TA/TO
## 3015 2 2 0 0 BB ROU Online TA
## 3016 2 1 0 0 BB CN Offline TA/TO
## 3017 2 2 0 0 BB BEL Online TA
## 3018 2 2 0 0 BB PRT Offline TA/TO
## 3019 2 2 0 0 BB GBR Offline TA/TO
## 3020 2 2 0 0 BB PRT Offline TA/TO
## 3021 2 2 0 0 BB CN Offline TA/TO
## 3022 2 2 0 0 BB DEU Online TA
## 3023 2 1 1 0 BB PRT Online TA
## 3024 2 2 0 0 BB CN Offline TA/TO
## 3025 2 2 0 0 BB PRT Offline TA/TO
## 3026 3 2 0 0 BB GBR Online TA
## 3027 3 2 0 0 BB FRA Online TA
## 3028 3 2 0 0 BB ESP Online TA
## 3029 3 2 0 0 BB PRT Online TA
## 3030 3 2 0 0 BB PRT Online TA
## 3031 3 1 0 0 BB PRT Corporate
## 3032 3 2 0 0 BB CHE Online TA
## 3033 3 2 2 0 BB PRT Online TA
## 3034 3 1 0 0 BB PRT Corporate
## 3035 4 2 0 0 BB ITA Online TA
## 3036 2 3 0 0 SC PRT Online TA
## 3037 3 2 0 0 BB ITA Online TA
## 3038 5 2 0 0 BB BEL Online TA
## 3039 5 2 0 0 BB PRT Online TA
## 3040 1 1 0 0 BB PRT Corporate
## 3041 1 2 0 0 BB PRT Online TA
## 3042 1 2 0 0 SC PRT Offline TA/TO
## 3043 1 1 0 0 BB PRT Online TA
## 3044 1 1 0 0 BB PRT Corporate
## 3045 1 2 0 0 BB RUS Online TA
## 3046 1 1 0 0 BB PRT Corporate
## 3047 1 2 0 0 BB PRT Online TA
## 3048 1 1 0 0 BB PRT Corporate
## 3049 1 1 0 0 HB PRT Direct
## 3050 1 1 0 0 BB PRT Online TA
## 3051 2 2 0 0 BB DEU Online TA
## 3052 2 1 0 0 BB RUS Online TA
## 3053 2 1 0 0 BB PRT Corporate
## 3054 2 1 0 0 BB PRT Online TA
## 3055 2 2 0 0 BB FRA Online TA
## 3056 2 2 0 0 BB AUT Online TA
## 3057 2 2 0 0 BB PRT Online TA
## 3058 2 2 0 0 BB FRA Online TA
## 3059 3 1 0 0 BB BLR Online TA
## 3060 3 2 0 0 BB KAZ Online TA
## 3061 3 1 0 0 BB FRA Offline TA/TO
## 3062 3 2 0 0 BB DEU Online TA
## 3063 3 1 0 0 BB BLR Online TA
## 3064 3 2 0 0 BB ITA Online TA
## 3065 3 2 0 0 BB FRA Online TA
## 3066 3 2 0 1 BB MAR Online TA
## 3067 3 1 0 0 BB RUS Online TA
## 3068 3 1 0 0 BB RUS Online TA
## 3069 3 1 0 0 BB PRT Corporate
## 3070 3 2 0 0 SC USA Online TA
## 3071 3 1 0 0 BB FRA Direct
## 3072 3 1 0 0 BB AGO Direct
## 3073 3 1 0 0 BB RUS Online TA
## 3074 3 2 0 0 BB GBR Online TA
## 3075 3 2 0 0 BB DEU Online TA
## 3076 3 1 0 0 BB PRT Offline TA/TO
## 3077 3 1 0 0 BB RUS Online TA
## 3078 3 1 0 0 BB RUS Online TA
## 3079 3 1 0 0 BB RUS Online TA
## 3080 3 1 0 0 BB PRT Corporate
## 3081 3 2 0 0 BB FRA Online TA
## 3082 3 2 0 0 BB FRA Direct
## 3083 5 2 0 0 BB FRA Online TA
## 3084 6 2 0 0 BB DEU Offline TA/TO
## 3085 7 1 0 0 BB USA Direct
## 3086 7 1 0 0 BB USA Direct
## 3087 5 2 2 0 BB ESP Online TA
## 3088 5 2 0 0 BB FRA Direct
## 3089 5 1 0 0 BB DEU Online TA
## 3090 5 2 0 0 BB DEU Offline TA/TO
## 3091 1 2 0 0 BB IND Online TA
## 3092 1 2 0 0 BB PRT Direct
## 3093 2 1 0 0 BB PRT Online TA
## 3094 2 2 0 0 BB ESP Groups
## 3095 2 2 0 0 BB ESP Groups
## 3096 1 1 0 0 BB PRT Direct
## 3097 2 2 0 0 BB NZL Direct
## 3098 2 2 0 0 BB ESP Groups
## 3099 2 2 0 0 BB ESP Groups
## 3100 2 2 0 0 BB ESP Groups
## 3101 2 3 0 0 BB ESP Groups
## 3102 2 1 0 0 BB NZL Online TA
## 3103 2 1 0 0 BB PRT Online TA
## 3104 2 2 0 0 BB CZE Online TA
## 3105 2 2 0 0 BB ESP Groups
## 3106 2 2 0 0 BB ESP Groups
## 3107 2 1 0 0 BB PRT Online TA
## 3108 2 2 0 0 BB ESP Groups
## 3109 2 2 0 0 BB ESP Groups
## 3110 2 1 0 0 BB ESP Groups
## 3111 2 2 0 0 BB PRT Groups
## 3112 2 2 0 0 BB ESP Groups
## 3113 2 2 0 0 BB ESP Groups
## 3114 1 1 0 0 BB GBR Online TA
## 3115 1 2 0 0 SC PRT Online TA
## 3116 1 1 0 0 BB PRT Direct
## 3117 1 1 0 0 BB PRT Direct
## 3118 1 2 2 0 BB PRT Online TA
## 3119 2 2 0 0 SC PRT Online TA
## 3120 2 1 0 0 BB ESP Offline TA/TO
## 3121 2 2 0 0 BB ESP Groups
## 3122 2 2 0 0 BB ESP Groups
## 3123 2 2 0 0 BB PRT Groups
## 3124 2 2 0 0 BB NZL Online TA
## distribution_channel is_repeated_guest previous_cancellations
## 1 TA/TO 0 0
## 2 TA/TO 0 0
## 3 TA/TO 0 0
## 4 TA/TO 0 0
## 5 TA/TO 0 0
## 6 TA/TO 0 0
## 7 TA/TO 0 0
## 8 TA/TO 0 0
## 9 TA/TO 0 0
## 10 TA/TO 0 0
## 11 TA/TO 0 0
## 12 TA/TO 0 0
## 13 TA/TO 0 0
## 14 TA/TO 0 0
## 15 TA/TO 0 0
## 16 TA/TO 0 0
## 17 TA/TO 0 0
## 18 TA/TO 0 0
## 19 TA/TO 0 0
## 20 TA/TO 0 0
## 21 TA/TO 0 0
## 22 TA/TO 0 0
## 23 TA/TO 0 0
## 24 TA/TO 0 0
## 25 TA/TO 0 0
## 26 TA/TO 0 0
## 27 TA/TO 0 0
## 28 TA/TO 0 0
## 29 TA/TO 0 0
## 30 TA/TO 0 0
## 31 TA/TO 0 0
## 32 TA/TO 0 0
## 33 TA/TO 0 0
## 34 TA/TO 0 0
## 35 TA/TO 0 0
## 36 TA/TO 0 0
## 37 TA/TO 0 0
## 38 TA/TO 0 0
## 39 TA/TO 0 0
## 40 TA/TO 0 0
## 41 TA/TO 0 0
## 42 TA/TO 0 0
## 43 TA/TO 0 0
## 44 TA/TO 0 0
## 45 TA/TO 0 0
## 46 TA/TO 0 0
## 47 TA/TO 0 0
## 48 TA/TO 0 0
## 49 TA/TO 0 0
## 50 TA/TO 0 0
## 51 Direct 0 0
## 52 Direct 0 0
## 53 TA/TO 0 0
## 54 TA/TO 0 0
## 55 TA/TO 0 0
## 56 TA/TO 0 0
## 57 TA/TO 0 0
## 58 TA/TO 0 0
## 59 TA/TO 0 0
## 60 TA/TO 0 0
## 61 TA/TO 0 0
## 62 TA/TO 0 0
## 63 TA/TO 0 0
## 64 TA/TO 0 0
## 65 TA/TO 0 0
## 66 TA/TO 0 0
## 67 TA/TO 0 0
## 68 TA/TO 0 0
## 69 TA/TO 0 0
## 70 TA/TO 0 0
## 71 Direct 0 0
## 72 TA/TO 0 0
## 73 TA/TO 0 0
## 74 TA/TO 0 0
## 75 TA/TO 0 0
## 76 TA/TO 0 0
## 77 TA/TO 0 0
## 78 TA/TO 0 0
## 79 TA/TO 0 0
## 80 TA/TO 0 0
## 81 TA/TO 0 0
## 82 TA/TO 0 0
## 83 TA/TO 0 0
## 84 TA/TO 0 0
## 85 TA/TO 0 0
## 86 TA/TO 0 0
## 87 TA/TO 0 0
## 88 TA/TO 0 0
## 89 TA/TO 0 0
## 90 TA/TO 0 0
## 91 TA/TO 0 0
## 92 TA/TO 0 0
## 93 TA/TO 0 0
## 94 TA/TO 0 0
## 95 TA/TO 0 0
## 96 TA/TO 0 0
## 97 TA/TO 0 0
## 98 TA/TO 0 0
## 99 TA/TO 0 0
## 100 TA/TO 0 0
## 101 TA/TO 0 0
## 102 TA/TO 0 0
## 103 TA/TO 0 0
## 104 TA/TO 0 0
## 105 TA/TO 0 0
## 106 TA/TO 0 0
## 107 TA/TO 0 0
## 108 TA/TO 0 0
## 109 TA/TO 0 0
## 110 TA/TO 0 0
## 111 TA/TO 0 0
## 112 TA/TO 0 0
## 113 TA/TO 0 0
## 114 TA/TO 0 0
## 115 TA/TO 0 0
## 116 TA/TO 0 0
## 117 TA/TO 0 0
## 118 TA/TO 0 0
## 119 TA/TO 0 0
## 120 Direct 0 0
## 121 TA/TO 0 0
## 122 Direct 0 0
## 123 Direct 0 0
## 124 Direct 0 0
## 125 TA/TO 0 0
## 126 Direct 0 0
## 127 TA/TO 0 0
## 128 Direct 0 0
## 129 TA/TO 0 0
## 130 TA/TO 0 0
## 131 TA/TO 0 0
## 132 TA/TO 0 0
## 133 TA/TO 0 0
## 134 TA/TO 0 0
## 135 Direct 0 0
## 136 TA/TO 0 0
## 137 TA/TO 0 0
## 138 TA/TO 0 0
## 139 TA/TO 0 0
## 140 Direct 0 0
## 141 TA/TO 0 0
## 142 TA/TO 0 0
## 143 TA/TO 0 0
## 144 TA/TO 0 0
## 145 TA/TO 0 0
## 146 TA/TO 0 0
## 147 TA/TO 0 0
## 148 TA/TO 0 0
## 149 TA/TO 0 0
## 150 TA/TO 0 0
## 151 TA/TO 0 0
## 152 TA/TO 0 0
## 153 TA/TO 0 0
## 154 TA/TO 0 0
## 155 TA/TO 0 0
## 156 TA/TO 0 0
## 157 TA/TO 0 0
## 158 TA/TO 0 0
## 159 TA/TO 0 0
## 160 TA/TO 0 0
## 161 TA/TO 0 0
## 162 TA/TO 0 0
## 163 TA/TO 0 0
## 164 TA/TO 0 0
## 165 TA/TO 0 0
## 166 TA/TO 0 0
## 167 TA/TO 0 0
## 168 TA/TO 0 0
## 169 TA/TO 0 0
## 170 TA/TO 0 0
## 171 TA/TO 0 0
## 172 TA/TO 0 0
## 173 TA/TO 0 0
## 174 TA/TO 0 0
## 175 TA/TO 0 0
## 176 TA/TO 0 0
## 177 TA/TO 0 0
## 178 TA/TO 0 0
## 179 TA/TO 0 0
## 180 TA/TO 0 0
## 181 TA/TO 0 0
## 182 TA/TO 0 0
## 183 TA/TO 0 0
## 184 TA/TO 0 0
## 185 TA/TO 0 0
## 186 TA/TO 0 0
## 187 TA/TO 0 0
## 188 TA/TO 0 0
## 189 TA/TO 0 0
## 190 TA/TO 0 0
## 191 TA/TO 0 0
## 192 TA/TO 0 0
## 193 TA/TO 0 0
## 194 TA/TO 0 0
## 195 TA/TO 0 0
## 196 TA/TO 0 0
## 197 TA/TO 0 0
## 198 TA/TO 0 0
## 199 TA/TO 0 0
## 200 TA/TO 0 0
## 201 TA/TO 0 0
## 202 TA/TO 0 0
## 203 TA/TO 0 0
## 204 TA/TO 0 0
## 205 TA/TO 0 0
## 206 TA/TO 0 0
## 207 TA/TO 0 0
## 208 TA/TO 0 0
## 209 TA/TO 0 0
## 210 TA/TO 0 0
## 211 TA/TO 0 0
## 212 TA/TO 0 0
## 213 TA/TO 0 0
## 214 TA/TO 0 0
## 215 TA/TO 0 0
## 216 TA/TO 0 0
## 217 TA/TO 0 0
## 218 TA/TO 0 0
## 219 TA/TO 0 0
## 220 TA/TO 0 0
## 221 TA/TO 0 0
## 222 TA/TO 0 0
## 223 TA/TO 0 0
## 224 TA/TO 0 0
## 225 TA/TO 0 0
## 226 TA/TO 0 0
## 227 TA/TO 0 0
## 228 TA/TO 0 0
## 229 TA/TO 0 0
## 230 TA/TO 0 0
## 231 TA/TO 0 0
## 232 TA/TO 0 0
## 233 TA/TO 0 0
## 234 TA/TO 0 0
## 235 TA/TO 0 0
## 236 TA/TO 0 0
## 237 TA/TO 0 0
## 238 TA/TO 0 0
## 239 TA/TO 0 0
## 240 TA/TO 0 0
## 241 TA/TO 0 0
## 242 TA/TO 0 0
## 243 TA/TO 0 0
## 244 TA/TO 0 0
## 245 TA/TO 0 0
## 246 TA/TO 0 0
## 247 TA/TO 0 0
## 248 TA/TO 0 0
## 249 TA/TO 0 0
## 250 TA/TO 0 0
## 251 TA/TO 0 0
## 252 TA/TO 0 0
## 253 TA/TO 0 0
## 254 TA/TO 0 0
## 255 TA/TO 0 0
## 256 TA/TO 0 0
## 257 TA/TO 0 0
## 258 TA/TO 0 0
## 259 TA/TO 0 0
## 260 TA/TO 0 0
## 261 TA/TO 0 0
## 262 TA/TO 0 0
## 263 TA/TO 0 0
## 264 TA/TO 0 0
## 265 TA/TO 0 0
## 266 TA/TO 0 0
## 267 TA/TO 0 0
## 268 TA/TO 0 0
## 269 TA/TO 0 0
## 270 TA/TO 0 0
## 271 TA/TO 0 0
## 272 Direct 0 0
## 273 TA/TO 0 0
## 274 TA/TO 0 0
## 275 TA/TO 0 0
## 276 TA/TO 0 0
## 277 TA/TO 0 0
## 278 TA/TO 0 0
## 279 TA/TO 0 0
## 280 TA/TO 0 0
## 281 TA/TO 0 0
## 282 TA/TO 0 0
## 283 TA/TO 0 0
## 284 TA/TO 0 0
## 285 TA/TO 0 0
## 286 TA/TO 0 0
## 287 TA/TO 0 0
## 288 TA/TO 0 0
## 289 TA/TO 0 0
## 290 TA/TO 0 0
## 291 TA/TO 0 0
## 292 TA/TO 0 0
## 293 TA/TO 0 0
## 294 TA/TO 0 0
## 295 TA/TO 0 0
## 296 TA/TO 0 0
## 297 TA/TO 0 0
## 298 TA/TO 0 0
## 299 TA/TO 0 0
## 300 TA/TO 0 0
## 301 TA/TO 0 0
## 302 TA/TO 0 0
## 303 TA/TO 0 0
## 304 TA/TO 0 0
## 305 TA/TO 0 0
## 306 TA/TO 0 0
## 307 TA/TO 0 0
## 308 TA/TO 0 0
## 309 TA/TO 0 0
## 310 TA/TO 0 0
## 311 TA/TO 0 0
## 312 TA/TO 0 0
## 313 TA/TO 0 0
## 314 TA/TO 0 0
## 315 TA/TO 0 0
## 316 TA/TO 0 0
## 317 TA/TO 0 0
## 318 TA/TO 0 0
## 319 TA/TO 0 0
## 320 TA/TO 0 0
## 321 TA/TO 0 0
## 322 TA/TO 0 0
## 323 TA/TO 0 0
## 324 TA/TO 0 0
## 325 TA/TO 0 0
## 326 TA/TO 0 0
## 327 TA/TO 0 0
## 328 TA/TO 0 0
## 329 TA/TO 0 0
## 330 TA/TO 0 0
## 331 TA/TO 0 0
## 332 TA/TO 0 0
## 333 TA/TO 0 0
## 334 TA/TO 0 0
## 335 Direct 0 0
## 336 Direct 0 0
## 337 Direct 0 0
## 338 Direct 0 0
## 339 Direct 0 0
## 340 TA/TO 0 0
## 341 TA/TO 0 0
## 342 Direct 0 0
## 343 TA/TO 0 0
## 344 TA/TO 0 0
## 345 TA/TO 0 0
## 346 TA/TO 0 0
## 347 TA/TO 0 0
## 348 TA/TO 0 0
## 349 TA/TO 0 0
## 350 TA/TO 0 0
## 351 TA/TO 0 0
## 352 TA/TO 0 0
## 353 TA/TO 0 0
## 354 TA/TO 0 0
## 355 TA/TO 0 0
## 356 TA/TO 0 0
## 357 TA/TO 0 0
## 358 TA/TO 0 0
## 359 TA/TO 0 0
## 360 TA/TO 0 0
## 361 TA/TO 0 0
## 362 TA/TO 0 0
## 363 TA/TO 0 0
## 364 TA/TO 0 0
## 365 TA/TO 0 0
## 366 TA/TO 0 0
## 367 TA/TO 0 0
## 368 TA/TO 0 0
## 369 TA/TO 0 0
## 370 TA/TO 0 0
## 371 TA/TO 0 0
## 372 TA/TO 0 0
## 373 TA/TO 0 0
## 374 TA/TO 0 0
## 375 TA/TO 0 0
## 376 TA/TO 0 0
## 377 TA/TO 0 0
## 378 TA/TO 0 0
## 379 TA/TO 0 0
## 380 TA/TO 0 0
## 381 TA/TO 0 0
## 382 TA/TO 0 0
## 383 TA/TO 0 0
## 384 TA/TO 0 0
## 385 TA/TO 0 0
## 386 TA/TO 0 0
## 387 TA/TO 0 0
## 388 TA/TO 0 0
## 389 TA/TO 0 0
## 390 TA/TO 0 0
## 391 TA/TO 0 0
## 392 TA/TO 0 0
## 393 TA/TO 0 0
## 394 TA/TO 0 0
## 395 TA/TO 0 0
## 396 TA/TO 0 0
## 397 TA/TO 0 0
## 398 TA/TO 0 0
## 399 TA/TO 0 0
## 400 TA/TO 0 0
## 401 TA/TO 0 0
## 402 TA/TO 0 0
## 403 TA/TO 0 0
## 404 TA/TO 0 0
## 405 TA/TO 0 0
## 406 TA/TO 0 0
## 407 TA/TO 0 0
## 408 TA/TO 0 0
## 409 TA/TO 0 0
## 410 TA/TO 0 0
## 411 TA/TO 0 0
## 412 TA/TO 0 0
## 413 TA/TO 0 0
## 414 Direct 0 0
## 415 TA/TO 0 0
## 416 TA/TO 0 0
## 417 TA/TO 0 0
## 418 TA/TO 0 0
## 419 TA/TO 0 0
## 420 TA/TO 0 0
## 421 TA/TO 0 0
## 422 TA/TO 0 0
## 423 TA/TO 0 0
## 424 TA/TO 0 0
## 425 TA/TO 0 0
## 426 TA/TO 0 0
## 427 TA/TO 0 0
## 428 TA/TO 0 0
## 429 TA/TO 0 0
## 430 TA/TO 0 0
## 431 TA/TO 0 0
## 432 TA/TO 0 0
## 433 TA/TO 0 0
## 434 TA/TO 0 0
## 435 TA/TO 0 0
## 436 TA/TO 0 0
## 437 TA/TO 0 0
## 438 TA/TO 0 0
## 439 TA/TO 0 0
## 440 TA/TO 0 0
## 441 TA/TO 0 0
## 442 TA/TO 0 0
## 443 TA/TO 0 0
## 444 TA/TO 0 0
## 445 TA/TO 0 0
## 446 TA/TO 0 0
## 447 TA/TO 0 0
## 448 TA/TO 0 0
## 449 TA/TO 0 0
## 450 TA/TO 0 0
## 451 TA/TO 0 0
## 452 TA/TO 0 0
## 453 TA/TO 0 0
## 454 TA/TO 0 0
## 455 TA/TO 0 0
## 456 TA/TO 0 0
## 457 TA/TO 0 0
## 458 TA/TO 0 0
## 459 TA/TO 0 0
## 460 TA/TO 0 0
## 461 TA/TO 0 0
## 462 TA/TO 0 0
## 463 TA/TO 0 0
## 464 TA/TO 0 0
## 465 TA/TO 0 0
## 466 TA/TO 0 0
## 467 Direct 0 0
## 468 TA/TO 0 0
## 469 TA/TO 0 0
## 470 TA/TO 0 0
## 471 TA/TO 0 0
## 472 TA/TO 0 0
## 473 TA/TO 0 0
## 474 Direct 0 0
## 475 Direct 0 0
## 476 Direct 0 0
## 477 Direct 0 0
## 478 Direct 0 0
## 479 TA/TO 0 0
## 480 TA/TO 0 0
## 481 TA/TO 0 0
## 482 Direct 0 0
## 483 TA/TO 0 0
## 484 TA/TO 0 0
## 485 TA/TO 0 0
## 486 TA/TO 0 0
## 487 TA/TO 0 0
## 488 TA/TO 0 0
## 489 TA/TO 0 0
## 490 Direct 0 0
## 491 TA/TO 0 0
## 492 TA/TO 0 0
## 493 TA/TO 0 0
## 494 TA/TO 0 0
## 495 TA/TO 0 0
## 496 TA/TO 0 0
## 497 TA/TO 0 0
## 498 TA/TO 0 0
## 499 TA/TO 0 0
## 500 TA/TO 0 0
## 501 Direct 0 0
## 502 TA/TO 0 0
## 503 TA/TO 0 0
## 504 TA/TO 0 0
## 505 TA/TO 0 0
## 506 TA/TO 0 0
## 507 TA/TO 0 0
## 508 TA/TO 0 0
## 509 TA/TO 0 0
## 510 TA/TO 0 0
## 511 TA/TO 0 0
## 512 TA/TO 0 0
## 513 TA/TO 0 0
## 514 TA/TO 0 0
## 515 TA/TO 0 0
## 516 TA/TO 0 0
## 517 TA/TO 0 0
## 518 TA/TO 0 0
## 519 TA/TO 0 0
## 520 TA/TO 0 0
## 521 TA/TO 0 0
## 522 TA/TO 0 0
## 523 TA/TO 0 0
## 524 TA/TO 0 0
## 525 TA/TO 0 0
## 526 TA/TO 0 0
## 527 TA/TO 0 0
## 528 TA/TO 0 0
## 529 TA/TO 0 0
## 530 TA/TO 0 0
## 531 TA/TO 0 0
## 532 TA/TO 0 0
## 533 TA/TO 0 0
## 534 TA/TO 0 0
## 535 Direct 0 0
## 536 TA/TO 0 0
## 537 Direct 0 0
## 538 Direct 0 0
## 539 Direct 0 0
## 540 Direct 0 0
## 541 Undefined 0 0
## 542 TA/TO 0 0
## 543 TA/TO 0 0
## 544 Direct 0 0
## 545 TA/TO 0 0
## 546 TA/TO 0 0
## 547 TA/TO 0 0
## 548 TA/TO 0 0
## 549 TA/TO 0 0
## 550 TA/TO 0 0
## 551 TA/TO 0 0
## 552 TA/TO 0 0
## 553 TA/TO 0 0
## 554 TA/TO 0 0
## 555 TA/TO 0 0
## 556 TA/TO 0 0
## 557 TA/TO 0 0
## 558 TA/TO 0 0
## 559 TA/TO 0 0
## 560 TA/TO 0 0
## 561 TA/TO 0 0
## 562 TA/TO 0 0
## 563 TA/TO 0 0
## 564 TA/TO 0 0
## 565 TA/TO 0 0
## 566 TA/TO 0 0
## 567 TA/TO 0 0
## 568 TA/TO 0 0
## 569 TA/TO 0 0
## 570 TA/TO 0 0
## 571 TA/TO 0 0
## 572 TA/TO 0 0
## 573 TA/TO 0 0
## 574 TA/TO 0 0
## 575 TA/TO 0 0
## 576 TA/TO 0 0
## 577 TA/TO 0 0
## 578 TA/TO 0 0
## 579 TA/TO 0 0
## 580 TA/TO 0 0
## 581 TA/TO 0 0
## 582 Direct 0 0
## 583 TA/TO 0 0
## 584 Direct 0 0
## 585 Direct 0 0
## 586 TA/TO 0 0
## 587 Corporate 0 0
## 588 TA/TO 0 0
## 589 TA/TO 0 0
## 590 TA/TO 0 0
## 591 TA/TO 0 0
## 592 TA/TO 0 0
## 593 TA/TO 0 0
## 594 Direct 0 0
## 595 Direct 0 0
## 596 Direct 0 0
## 597 Direct 0 0
## 598 Direct 0 0
## 599 Corporate 0 0
## 600 Corporate 0 0
## 601 Direct 0 0
## 602 TA/TO 0 0
## 603 TA/TO 0 0
## 604 TA/TO 0 0
## 605 TA/TO 0 0
## 606 TA/TO 0 0
## 607 TA/TO 0 0
## 608 Undefined 0 0
## 609 Direct 0 0
## 610 TA/TO 0 0
## 611 TA/TO 0 0
## 612 TA/TO 0 0
## 613 TA/TO 0 0
## 614 TA/TO 0 0
## 615 TA/TO 0 0
## 616 TA/TO 0 0
## 617 TA/TO 0 0
## 618 TA/TO 0 0
## 619 TA/TO 0 0
## 620 Undefined 0 0
## 621 Direct 0 0
## 622 Direct 0 0
## 623 TA/TO 0 0
## 624 TA/TO 0 0
## 625 TA/TO 0 0
## 626 TA/TO 0 0
## 627 TA/TO 0 0
## 628 TA/TO 0 0
## 629 TA/TO 0 0
## 630 TA/TO 0 0
## 631 Corporate 0 0
## 632 Corporate 0 0
## 633 Corporate 0 0
## 634 Corporate 0 0
## 635 Direct 0 0
## 636 Corporate 0 0
## 637 Corporate 0 0
## 638 Corporate 0 0
## 639 Corporate 0 0
## 640 Corporate 0 0
## 641 Corporate 0 0
## 642 Corporate 0 0
## 643 Corporate 0 0
## 644 Corporate 0 0
## 645 Corporate 0 0
## 646 Corporate 0 0
## 647 Corporate 0 0
## 648 TA/TO 0 0
## 649 Corporate 0 0
## 650 Corporate 0 0
## 651 TA/TO 0 0
## 652 Corporate 0 0
## 653 Corporate 0 0
## 654 Corporate 0 0
## 655 Corporate 0 0
## 656 Corporate 0 0
## 657 TA/TO 0 0
## 658 Corporate 0 0
## 659 Corporate 0 0
## 660 Direct 0 0
## 661 Corporate 0 0
## 662 Corporate 0 0
## 663 Corporate 0 0
## 664 Corporate 0 0
## 665 TA/TO 0 0
## 666 Corporate 0 0
## 667 Corporate 0 0
## 668 Corporate 0 0
## 669 TA/TO 0 0
## 670 TA/TO 0 0
## 671 TA/TO 0 0
## 672 Direct 0 0
## 673 TA/TO 0 0
## 674 TA/TO 0 0
## 675 TA/TO 0 0
## 676 TA/TO 0 0
## 677 TA/TO 0 0
## 678 TA/TO 0 0
## 679 TA/TO 0 0
## 680 Direct 0 0
## 681 Direct 0 0
## 682 TA/TO 0 0
## 683 TA/TO 0 0
## 684 TA/TO 0 0
## 685 TA/TO 0 0
## 686 TA/TO 0 0
## 687 TA/TO 0 0
## 688 Direct 0 0
## 689 TA/TO 0 0
## 690 Direct 0 0
## 691 TA/TO 0 0
## 692 TA/TO 0 0
## 693 TA/TO 0 0
## 694 TA/TO 0 0
## 695 TA/TO 0 0
## 696 TA/TO 0 0
## 697 Direct 0 0
## 698 Direct 0 0
## 699 Direct 0 0
## 700 TA/TO 0 0
## 701 TA/TO 0 0
## 702 TA/TO 0 0
## 703 Direct 0 0
## 704 TA/TO 0 0
## 705 TA/TO 0 0
## 706 TA/TO 0 0
## 707 TA/TO 0 0
## 708 TA/TO 0 0
## 709 TA/TO 0 0
## 710 TA/TO 0 0
## 711 TA/TO 0 0
## 712 TA/TO 0 0
## 713 Direct 0 0
## 714 TA/TO 0 0
## 715 TA/TO 0 0
## 716 TA/TO 0 0
## 717 TA/TO 0 0
## 718 TA/TO 0 0
## 719 TA/TO 0 0
## 720 TA/TO 0 0
## 721 TA/TO 0 0
## 722 TA/TO 0 0
## 723 TA/TO 0 0
## 724 TA/TO 0 0
## 725 TA/TO 0 0
## 726 TA/TO 0 0
## 727 TA/TO 0 0
## 728 TA/TO 0 0
## 729 TA/TO 0 0
## 730 TA/TO 0 0
## 731 TA/TO 0 0
## 732 TA/TO 0 0
## 733 TA/TO 0 0
## 734 TA/TO 0 0
## 735 TA/TO 0 0
## 736 TA/TO 0 0
## 737 TA/TO 0 0
## 738 TA/TO 0 0
## 739 TA/TO 0 0
## 740 TA/TO 0 0
## 741 TA/TO 0 0
## 742 TA/TO 0 0
## 743 Direct 0 0
## 744 TA/TO 0 0
## 745 TA/TO 0 0
## 746 TA/TO 0 0
## 747 Direct 0 0
## 748 TA/TO 0 0
## 749 Direct 0 0
## 750 TA/TO 0 0
## 751 TA/TO 0 0
## 752 Direct 0 0
## 753 TA/TO 0 0
## 754 TA/TO 0 0
## 755 TA/TO 0 0
## 756 TA/TO 0 0
## 757 Direct 0 0
## 758 TA/TO 0 0
## 759 TA/TO 0 0
## 760 Direct 0 0
## 761 TA/TO 0 0
## 762 TA/TO 0 0
## 763 Direct 0 0
## 764 TA/TO 0 0
## 765 Direct 0 0
## 766 Direct 0 0
## 767 TA/TO 0 0
## 768 TA/TO 0 0
## 769 Direct 0 0
## 770 TA/TO 0 0
## 771 TA/TO 0 0
## 772 TA/TO 0 0
## 773 TA/TO 0 0
## 774 TA/TO 0 0
## 775 TA/TO 0 0
## 776 TA/TO 0 0
## 777 TA/TO 0 0
## 778 TA/TO 0 0
## 779 TA/TO 0 0
## 780 Direct 0 0
## 781 Direct 0 0
## 782 TA/TO 0 0
## 783 Direct 0 0
## 784 TA/TO 0 0
## 785 TA/TO 0 0
## 786 TA/TO 0 0
## 787 TA/TO 0 0
## 788 TA/TO 0 0
## 789 TA/TO 0 0
## 790 TA/TO 0 0
## 791 TA/TO 0 0
## 792 TA/TO 0 0
## 793 TA/TO 0 0
## 794 TA/TO 0 0
## 795 TA/TO 0 0
## 796 TA/TO 0 0
## 797 TA/TO 0 0
## 798 TA/TO 0 0
## 799 TA/TO 0 0
## 800 TA/TO 0 0
## 801 TA/TO 0 0
## 802 TA/TO 0 0
## 803 TA/TO 0 0
## 804 TA/TO 0 0
## 805 TA/TO 0 0
## 806 TA/TO 0 0
## 807 TA/TO 0 0
## 808 TA/TO 0 0
## 809 TA/TO 0 0
## 810 TA/TO 0 0
## 811 TA/TO 0 0
## 812 TA/TO 0 0
## 813 TA/TO 0 0
## 814 TA/TO 0 0
## 815 TA/TO 0 0
## 816 TA/TO 0 0
## 817 TA/TO 0 0
## 818 TA/TO 0 0
## 819 TA/TO 0 0
## 820 TA/TO 0 0
## 821 TA/TO 0 0
## 822 TA/TO 0 0
## 823 TA/TO 0 0
## 824 TA/TO 0 0
## 825 TA/TO 0 0
## 826 TA/TO 0 0
## 827 TA/TO 0 0
## 828 TA/TO 0 0
## 829 TA/TO 0 0
## 830 TA/TO 0 0
## 831 TA/TO 0 0
## 832 TA/TO 0 0
## 833 TA/TO 0 0
## 834 TA/TO 0 0
## 835 TA/TO 0 0
## 836 TA/TO 0 0
## 837 TA/TO 0 0
## 838 TA/TO 0 0
## 839 TA/TO 0 0
## 840 TA/TO 0 0
## 841 TA/TO 0 0
## 842 TA/TO 0 0
## 843 TA/TO 0 0
## 844 TA/TO 0 0
## 845 TA/TO 0 0
## 846 TA/TO 0 0
## 847 TA/TO 0 0
## 848 TA/TO 0 0
## 849 TA/TO 0 0
## 850 TA/TO 0 0
## 851 TA/TO 0 0
## 852 TA/TO 0 0
## 853 TA/TO 0 0
## 854 TA/TO 0 0
## 855 TA/TO 0 0
## 856 TA/TO 0 0
## 857 TA/TO 0 0
## 858 Direct 0 0
## 859 TA/TO 0 0
## 860 Direct 0 0
## 861 TA/TO 0 0
## 862 Direct 0 0
## 863 TA/TO 0 0
## 864 TA/TO 0 0
## 865 TA/TO 0 0
## 866 TA/TO 0 0
## 867 TA/TO 0 0
## 868 TA/TO 0 0
## 869 TA/TO 0 0
## 870 TA/TO 0 0
## 871 Direct 0 0
## 872 TA/TO 0 0
## 873 TA/TO 0 0
## 874 TA/TO 0 0
## 875 TA/TO 0 0
## 876 TA/TO 0 0
## 877 TA/TO 0 0
## 878 TA/TO 0 0
## 879 TA/TO 0 0
## 880 TA/TO 0 0
## 881 TA/TO 0 0
## 882 TA/TO 0 0
## 883 TA/TO 0 0
## 884 TA/TO 0 0
## 885 TA/TO 0 0
## 886 TA/TO 0 0
## 887 Direct 0 0
## 888 Direct 0 0
## 889 TA/TO 0 0
## 890 TA/TO 0 0
## 891 TA/TO 0 0
## 892 TA/TO 0 0
## 893 TA/TO 0 0
## 894 Direct 0 0
## 895 TA/TO 0 0
## 896 TA/TO 0 0
## 897 TA/TO 0 0
## 898 TA/TO 0 0
## 899 TA/TO 0 0
## 900 TA/TO 0 0
## 901 TA/TO 0 0
## 902 TA/TO 0 0
## 903 Direct 0 0
## 904 TA/TO 0 0
## 905 TA/TO 0 0
## 906 TA/TO 0 0
## 907 TA/TO 0 0
## 908 TA/TO 0 0
## 909 TA/TO 0 0
## 910 TA/TO 0 0
## 911 TA/TO 0 0
## 912 TA/TO 0 0
## 913 TA/TO 0 0
## 914 TA/TO 0 0
## 915 TA/TO 0 0
## 916 TA/TO 0 0
## 917 TA/TO 0 0
## 918 TA/TO 0 0
## 919 TA/TO 0 0
## 920 TA/TO 0 0
## 921 TA/TO 0 0
## 922 TA/TO 0 0
## 923 Direct 0 0
## 924 TA/TO 0 0
## 925 Direct 0 0
## 926 TA/TO 0 0
## 927 TA/TO 0 0
## 928 TA/TO 0 0
## 929 TA/TO 0 0
## 930 TA/TO 0 0
## 931 TA/TO 0 0
## 932 TA/TO 0 0
## 933 TA/TO 0 0
## 934 Direct 0 0
## 935 TA/TO 0 0
## 936 Direct 0 0
## 937 TA/TO 0 0
## 938 TA/TO 0 0
## 939 TA/TO 0 0
## 940 TA/TO 0 0
## 941 TA/TO 0 0
## 942 TA/TO 0 0
## 943 TA/TO 0 0
## 944 TA/TO 0 0
## 945 TA/TO 0 0
## 946 TA/TO 0 0
## 947 TA/TO 0 0
## 948 TA/TO 0 0
## 949 Direct 0 0
## 950 TA/TO 0 0
## 951 Direct 0 0
## 952 TA/TO 0 0
## 953 TA/TO 0 0
## 954 TA/TO 0 0
## 955 Direct 0 0
## 956 TA/TO 0 0
## 957 TA/TO 0 0
## 958 Direct 0 0
## 959 Direct 0 0
## 960 TA/TO 0 0
## 961 Direct 0 0
## 962 Direct 0 0
## 963 TA/TO 0 0
## 964 Direct 0 0
## 965 TA/TO 0 0
## 966 Direct 0 0
## 967 TA/TO 0 0
## 968 Direct 0 0
## 969 Direct 0 0
## 970 TA/TO 0 0
## 971 Direct 0 0
## 972 Corporate 0 0
## 973 TA/TO 0 0
## 974 TA/TO 0 0
## 975 Direct 0 0
## 976 TA/TO 0 0
## 977 Direct 0 0
## 978 Direct 0 0
## 979 TA/TO 0 0
## 980 TA/TO 0 0
## 981 Direct 0 0
## 982 Direct 0 0
## 983 TA/TO 0 0
## 984 Direct 0 0
## 985 TA/TO 0 0
## 986 TA/TO 0 0
## 987 TA/TO 0 0
## 988 TA/TO 0 0
## 989 TA/TO 0 0
## 990 TA/TO 0 0
## 991 TA/TO 0 0
## 992 TA/TO 0 0
## 993 TA/TO 0 0
## 994 TA/TO 0 0
## 995 TA/TO 0 0
## 996 Direct 0 0
## 997 Direct 0 0
## 998 Direct 0 0
## 999 Corporate 0 0
## 1000 Direct 0 0
## 1001 Direct 0 0
## 1002 TA/TO 0 0
## 1003 TA/TO 0 0
## 1004 TA/TO 0 0
## 1005 TA/TO 0 0
## 1006 TA/TO 0 0
## 1007 Direct 0 0
## 1008 Corporate 0 0
## 1009 Direct 0 0
## 1010 TA/TO 0 0
## 1011 Direct 0 0
## 1012 Direct 0 0
## 1013 TA/TO 0 0
## 1014 Corporate 0 0
## 1015 Direct 0 0
## 1016 Direct 0 0
## 1017 TA/TO 0 0
## 1018 TA/TO 0 0
## 1019 Direct 0 0
## 1020 Direct 0 0
## 1021 TA/TO 0 0
## 1022 Corporate 0 0
## 1023 TA/TO 0 0
## 1024 TA/TO 0 0
## 1025 Direct 0 0
## 1026 TA/TO 0 0
## 1027 TA/TO 0 0
## 1028 Direct 0 0
## 1029 TA/TO 0 0
## 1030 TA/TO 0 0
## 1031 TA/TO 0 0
## 1032 TA/TO 0 0
## 1033 TA/TO 0 0
## 1034 TA/TO 0 0
## 1035 TA/TO 0 0
## 1036 TA/TO 0 0
## 1037 TA/TO 0 0
## 1038 TA/TO 0 0
## 1039 TA/TO 0 0
## 1040 TA/TO 0 0
## 1041 TA/TO 0 0
## 1042 TA/TO 0 0
## 1043 TA/TO 0 0
## 1044 TA/TO 0 0
## 1045 TA/TO 0 0
## 1046 TA/TO 0 0
## 1047 TA/TO 0 0
## 1048 TA/TO 0 0
## 1049 TA/TO 0 0
## 1050 TA/TO 0 0
## 1051 TA/TO 0 0
## 1052 TA/TO 0 0
## 1053 TA/TO 0 0
## 1054 TA/TO 0 0
## 1055 TA/TO 0 0
## 1056 TA/TO 0 0
## 1057 TA/TO 0 0
## 1058 TA/TO 0 0
## 1059 TA/TO 0 0
## 1060 TA/TO 0 0
## 1061 TA/TO 0 0
## 1062 TA/TO 0 0
## 1063 TA/TO 0 0
## 1064 TA/TO 0 0
## 1065 TA/TO 0 0
## 1066 Direct 0 0
## 1067 TA/TO 0 0
## 1068 TA/TO 0 0
## 1069 TA/TO 0 0
## 1070 TA/TO 0 0
## 1071 Direct 0 0
## 1072 TA/TO 0 0
## 1073 TA/TO 0 0
## 1074 Direct 0 0
## 1075 TA/TO 0 0
## 1076 TA/TO 0 0
## 1077 TA/TO 0 0
## 1078 TA/TO 0 0
## 1079 TA/TO 0 0
## 1080 TA/TO 0 0
## 1081 Direct 0 0
## 1082 TA/TO 0 0
## 1083 TA/TO 0 0
## 1084 Direct 0 0
## 1085 TA/TO 0 0
## 1086 Direct 0 0
## 1087 TA/TO 0 0
## 1088 TA/TO 0 0
## 1089 TA/TO 0 0
## 1090 TA/TO 0 0
## 1091 TA/TO 0 0
## 1092 TA/TO 0 0
## 1093 TA/TO 0 0
## 1094 TA/TO 0 0
## 1095 Direct 0 0
## 1096 TA/TO 0 0
## 1097 TA/TO 0 0
## 1098 TA/TO 0 0
## 1099 TA/TO 0 0
## 1100 TA/TO 0 0
## 1101 Undefined 0 0
## 1102 TA/TO 0 0
## 1103 TA/TO 0 0
## 1104 TA/TO 0 0
## 1105 TA/TO 0 0
## 1106 TA/TO 0 0
## 1107 TA/TO 0 0
## 1108 TA/TO 0 0
## 1109 TA/TO 0 0
## 1110 TA/TO 0 0
## 1111 TA/TO 0 0
## 1112 TA/TO 0 0
## 1113 TA/TO 0 0
## 1114 TA/TO 0 0
## 1115 TA/TO 0 0
## 1116 TA/TO 0 0
## 1117 TA/TO 0 0
## 1118 TA/TO 0 0
## 1119 TA/TO 0 0
## 1120 TA/TO 0 0
## 1121 TA/TO 0 0
## 1122 TA/TO 0 0
## 1123 TA/TO 0 0
## 1124 TA/TO 0 0
## 1125 TA/TO 0 0
## 1126 TA/TO 0 0
## 1127 TA/TO 0 0
## 1128 TA/TO 0 0
## 1129 TA/TO 0 0
## 1130 TA/TO 0 0
## 1131 TA/TO 0 0
## 1132 TA/TO 0 0
## 1133 TA/TO 0 0
## 1134 TA/TO 0 0
## 1135 TA/TO 0 0
## 1136 TA/TO 0 0
## 1137 TA/TO 0 0
## 1138 TA/TO 0 0
## 1139 TA/TO 0 0
## 1140 TA/TO 0 0
## 1141 TA/TO 0 0
## 1142 TA/TO 0 0
## 1143 TA/TO 0 0
## 1144 TA/TO 0 0
## 1145 TA/TO 0 0
## 1146 TA/TO 0 0
## 1147 TA/TO 0 0
## 1148 TA/TO 0 0
## 1149 TA/TO 0 0
## 1150 TA/TO 0 0
## 1151 TA/TO 0 0
## 1152 TA/TO 0 0
## 1153 TA/TO 0 0
## 1154 TA/TO 0 0
## 1155 TA/TO 0 0
## 1156 TA/TO 0 0
## 1157 TA/TO 0 0
## 1158 TA/TO 0 0
## 1159 TA/TO 0 0
## 1160 TA/TO 0 0
## 1161 TA/TO 0 0
## 1162 TA/TO 0 0
## 1163 TA/TO 0 0
## 1164 TA/TO 0 0
## 1165 TA/TO 0 0
## 1166 TA/TO 0 0
## 1167 TA/TO 0 0
## 1168 TA/TO 0 0
## 1169 TA/TO 0 0
## 1170 TA/TO 0 0
## 1171 TA/TO 0 0
## 1172 TA/TO 0 0
## 1173 TA/TO 0 0
## 1174 TA/TO 0 0
## 1175 TA/TO 0 0
## 1176 TA/TO 0 0
## 1177 TA/TO 0 0
## 1178 TA/TO 0 0
## 1179 TA/TO 0 0
## 1180 TA/TO 0 0
## 1181 TA/TO 0 0
## 1182 TA/TO 0 0
## 1183 TA/TO 0 0
## 1184 TA/TO 0 0
## 1185 TA/TO 0 0
## 1186 TA/TO 0 0
## 1187 TA/TO 0 0
## 1188 TA/TO 0 0
## 1189 TA/TO 0 0
## 1190 TA/TO 0 0
## 1191 TA/TO 0 0
## 1192 TA/TO 0 0
## 1193 TA/TO 0 0
## 1194 TA/TO 0 0
## 1195 TA/TO 0 0
## 1196 TA/TO 0 0
## 1197 TA/TO 0 0
## 1198 TA/TO 0 0
## 1199 TA/TO 0 0
## 1200 TA/TO 0 0
## 1201 TA/TO 0 0
## 1202 TA/TO 0 0
## 1203 TA/TO 0 0
## 1204 TA/TO 0 0
## 1205 TA/TO 0 0
## 1206 TA/TO 0 0
## 1207 TA/TO 0 0
## 1208 TA/TO 0 0
## 1209 TA/TO 0 0
## 1210 TA/TO 0 0
## 1211 TA/TO 0 0
## 1212 TA/TO 0 0
## 1213 TA/TO 0 0
## 1214 TA/TO 0 0
## 1215 TA/TO 0 0
## 1216 TA/TO 0 0
## 1217 TA/TO 0 0
## 1218 TA/TO 0 0
## 1219 TA/TO 0 0
## 1220 TA/TO 0 0
## 1221 TA/TO 0 0
## 1222 TA/TO 0 0
## 1223 TA/TO 0 0
## 1224 TA/TO 0 0
## 1225 TA/TO 0 0
## 1226 TA/TO 0 0
## 1227 TA/TO 0 0
## 1228 TA/TO 0 0
## 1229 TA/TO 0 0
## 1230 TA/TO 0 0
## 1231 TA/TO 0 0
## 1232 TA/TO 0 0
## 1233 TA/TO 0 0
## 1234 TA/TO 0 0
## 1235 TA/TO 0 0
## 1236 TA/TO 0 0
## 1237 TA/TO 0 0
## 1238 TA/TO 0 0
## 1239 TA/TO 0 0
## 1240 TA/TO 0 0
## 1241 TA/TO 0 0
## 1242 TA/TO 0 0
## 1243 TA/TO 0 0
## 1244 TA/TO 0 0
## 1245 TA/TO 0 0
## 1246 TA/TO 0 0
## 1247 TA/TO 0 0
## 1248 TA/TO 0 0
## 1249 TA/TO 0 0
## 1250 TA/TO 0 0
## 1251 TA/TO 0 0
## 1252 TA/TO 0 0
## 1253 TA/TO 0 0
## 1254 TA/TO 0 0
## 1255 TA/TO 0 0
## 1256 TA/TO 0 0
## 1257 TA/TO 0 0
## 1258 TA/TO 0 0
## 1259 TA/TO 0 0
## 1260 TA/TO 0 0
## 1261 TA/TO 0 0
## 1262 TA/TO 0 0
## 1263 TA/TO 0 0
## 1264 TA/TO 0 0
## 1265 TA/TO 0 0
## 1266 TA/TO 0 0
## 1267 TA/TO 0 0
## 1268 TA/TO 0 0
## 1269 TA/TO 0 0
## 1270 TA/TO 0 0
## 1271 TA/TO 0 0
## 1272 TA/TO 0 0
## 1273 TA/TO 0 0
## 1274 TA/TO 0 0
## 1275 TA/TO 0 0
## 1276 TA/TO 0 0
## 1277 TA/TO 0 0
## 1278 TA/TO 0 0
## 1279 TA/TO 0 0
## 1280 TA/TO 0 0
## 1281 TA/TO 0 0
## 1282 TA/TO 0 0
## 1283 Direct 0 0
## 1284 TA/TO 0 0
## 1285 Direct 0 0
## 1286 TA/TO 0 0
## 1287 TA/TO 0 0
## 1288 TA/TO 0 0
## 1289 TA/TO 0 0
## 1290 TA/TO 0 0
## 1291 TA/TO 0 0
## 1292 Direct 0 0
## 1293 TA/TO 0 0
## 1294 Direct 0 0
## 1295 TA/TO 0 0
## 1296 TA/TO 0 0
## 1297 TA/TO 0 0
## 1298 Direct 0 0
## 1299 TA/TO 0 0
## 1300 TA/TO 0 0
## 1301 TA/TO 0 0
## 1302 TA/TO 0 0
## 1303 TA/TO 0 0
## 1304 TA/TO 0 0
## 1305 TA/TO 0 0
## 1306 TA/TO 0 0
## 1307 TA/TO 0 0
## 1308 TA/TO 0 0
## 1309 TA/TO 0 0
## 1310 TA/TO 0 0
## 1311 TA/TO 0 0
## 1312 TA/TO 0 0
## 1313 TA/TO 0 0
## 1314 TA/TO 0 0
## 1315 TA/TO 0 0
## 1316 TA/TO 0 0
## 1317 TA/TO 0 0
## 1318 TA/TO 0 0
## 1319 TA/TO 0 0
## 1320 TA/TO 0 0
## 1321 TA/TO 0 0
## 1322 TA/TO 0 0
## 1323 TA/TO 0 0
## 1324 TA/TO 0 0
## 1325 TA/TO 0 0
## 1326 TA/TO 0 0
## 1327 TA/TO 0 0
## 1328 TA/TO 0 0
## 1329 TA/TO 0 0
## 1330 Direct 0 0
## 1331 Direct 0 0
## 1332 TA/TO 0 0
## 1333 TA/TO 0 0
## 1334 Direct 0 0
## 1335 TA/TO 0 0
## 1336 TA/TO 0 0
## 1337 TA/TO 0 0
## 1338 TA/TO 0 0
## 1339 TA/TO 0 0
## 1340 TA/TO 0 0
## 1341 TA/TO 0 0
## 1342 TA/TO 0 0
## 1343 TA/TO 0 0
## 1344 TA/TO 0 0
## 1345 TA/TO 0 0
## 1346 TA/TO 0 0
## 1347 TA/TO 0 0
## 1348 TA/TO 0 0
## 1349 TA/TO 0 0
## 1350 TA/TO 0 0
## 1351 TA/TO 0 0
## 1352 TA/TO 0 0
## 1353 TA/TO 0 0
## 1354 TA/TO 0 0
## 1355 TA/TO 0 0
## 1356 TA/TO 0 0
## 1357 TA/TO 0 0
## 1358 TA/TO 0 0
## 1359 TA/TO 0 0
## 1360 TA/TO 0 0
## 1361 TA/TO 0 0
## 1362 TA/TO 0 0
## 1363 TA/TO 0 0
## 1364 TA/TO 0 0
## 1365 TA/TO 0 0
## 1366 TA/TO 0 0
## 1367 TA/TO 0 0
## 1368 TA/TO 0 0
## 1369 TA/TO 0 0
## 1370 TA/TO 0 0
## 1371 TA/TO 0 0
## 1372 TA/TO 0 0
## 1373 TA/TO 0 0
## 1374 TA/TO 0 0
## 1375 TA/TO 0 0
## 1376 TA/TO 0 0
## 1377 TA/TO 0 0
## 1378 Direct 0 0
## 1379 TA/TO 0 0
## 1380 TA/TO 0 0
## 1381 TA/TO 0 0
## 1382 TA/TO 0 0
## 1383 TA/TO 0 0
## 1384 Direct 0 0
## 1385 TA/TO 0 0
## 1386 Direct 0 0
## 1387 Direct 0 0
## 1388 Direct 0 0
## 1389 Direct 0 0
## 1390 Direct 0 0
## 1391 Direct 0 0
## 1392 Direct 0 0
## 1393 Direct 0 0
## 1394 TA/TO 0 0
## 1395 TA/TO 0 0
## 1396 TA/TO 0 0
## 1397 TA/TO 0 0
## 1398 Direct 0 0
## 1399 TA/TO 0 0
## 1400 TA/TO 0 0
## 1401 TA/TO 0 0
## 1402 Direct 0 0
## 1403 Direct 0 0
## 1404 Direct 0 0
## 1405 Direct 0 0
## 1406 TA/TO 0 0
## 1407 Direct 0 0
## 1408 TA/TO 0 0
## 1409 TA/TO 0 0
## 1410 TA/TO 0 0
## 1411 TA/TO 0 0
## 1412 TA/TO 0 0
## 1413 TA/TO 0 0
## 1414 TA/TO 0 0
## 1415 TA/TO 0 0
## 1416 TA/TO 0 0
## 1417 TA/TO 0 0
## 1418 TA/TO 0 0
## 1419 TA/TO 0 0
## 1420 TA/TO 0 0
## 1421 TA/TO 0 0
## 1422 TA/TO 0 0
## 1423 TA/TO 0 0
## 1424 TA/TO 0 0
## 1425 TA/TO 0 0
## 1426 TA/TO 0 0
## 1427 Direct 0 0
## 1428 TA/TO 0 0
## 1429 TA/TO 0 0
## 1430 TA/TO 0 0
## 1431 TA/TO 0 0
## 1432 TA/TO 0 0
## 1433 TA/TO 0 0
## 1434 TA/TO 0 0
## 1435 TA/TO 0 0
## 1436 TA/TO 0 0
## 1437 TA/TO 0 0
## 1438 TA/TO 0 0
## 1439 Direct 0 0
## 1440 Direct 0 0
## 1441 TA/TO 0 0
## 1442 TA/TO 0 0
## 1443 TA/TO 0 0
## 1444 Corporate 0 0
## 1445 TA/TO 0 0
## 1446 Corporate 0 0
## 1447 TA/TO 0 0
## 1448 Direct 0 0
## 1449 TA/TO 0 0
## 1450 Corporate 0 0
## 1451 TA/TO 0 0
## 1452 TA/TO 0 0
## 1453 TA/TO 0 0
## 1454 TA/TO 0 0
## 1455 Corporate 0 0
## 1456 TA/TO 0 0
## 1457 TA/TO 0 0
## 1458 Corporate 0 0
## 1459 TA/TO 0 0
## 1460 Direct 0 0
## 1461 Corporate 0 0
## 1462 TA/TO 0 0
## 1463 TA/TO 0 0
## 1464 Direct 0 0
## 1465 Corporate 0 0
## 1466 Direct 0 0
## 1467 Direct 0 0
## 1468 Corporate 0 0
## 1469 Direct 0 0
## 1470 TA/TO 0 0
## 1471 TA/TO 0 0
## 1472 TA/TO 0 0
## 1473 TA/TO 0 0
## 1474 TA/TO 0 0
## 1475 TA/TO 0 0
## 1476 TA/TO 0 0
## 1477 TA/TO 0 0
## 1478 TA/TO 0 0
## 1479 Direct 0 0
## 1480 Direct 0 0
## 1481 Direct 0 0
## 1482 TA/TO 0 0
## 1483 Direct 0 0
## 1484 Direct 0 0
## 1485 Direct 0 0
## 1486 Direct 0 0
## 1487 Direct 0 0
## 1488 Direct 0 0
## 1489 Direct 0 0
## 1490 Direct 0 0
## 1491 Direct 0 0
## 1492 Direct 0 0
## 1493 Corporate 0 0
## 1494 Direct 0 0
## 1495 TA/TO 0 0
## 1496 TA/TO 0 0
## 1497 Direct 0 0
## 1498 Corporate 0 0
## 1499 Corporate 0 0
## 1500 Corporate 0 0
## 1501 Direct 0 0
## 1502 TA/TO 0 0
## 1503 TA/TO 0 0
## 1504 TA/TO 0 0
## 1505 TA/TO 0 0
## 1506 TA/TO 0 0
## 1507 TA/TO 0 0
## 1508 Direct 0 0
## 1509 Direct 0 0
## 1510 TA/TO 0 0
## 1511 TA/TO 0 0
## 1512 TA/TO 0 0
## 1513 Direct 0 0
## 1514 TA/TO 0 0
## 1515 TA/TO 0 0
## 1516 TA/TO 0 0
## 1517 TA/TO 0 0
## 1518 TA/TO 0 0
## 1519 Corporate 0 0
## 1520 TA/TO 0 0
## 1521 TA/TO 0 0
## 1522 Corporate 0 0
## 1523 Corporate 0 0
## 1524 Direct 0 0
## 1525 Direct 0 0
## 1526 TA/TO 0 0
## 1527 TA/TO 0 0
## 1528 Direct 0 0
## 1529 TA/TO 0 0
## 1530 Direct 0 0
## 1531 Corporate 0 0
## 1532 Corporate 0 0
## 1533 Direct 0 0
## 1534 Direct 0 0
## 1535 TA/TO 0 0
## 1536 TA/TO 0 0
## 1537 TA/TO 0 0
## 1538 TA/TO 0 0
## 1539 TA/TO 0 0
## 1540 TA/TO 0 0
## 1541 Direct 0 0
## 1542 Direct 0 0
## 1543 TA/TO 0 0
## 1544 Direct 0 0
## 1545 Corporate 0 0
## 1546 TA/TO 0 0
## 1547 Corporate 0 0
## 1548 TA/TO 0 0
## 1549 TA/TO 0 0
## 1550 TA/TO 0 0
## 1551 Direct 0 0
## 1552 Direct 0 0
## 1553 Direct 0 0
## 1554 TA/TO 0 0
## 1555 TA/TO 0 0
## 1556 TA/TO 0 0
## 1557 Direct 0 0
## 1558 TA/TO 0 0
## 1559 TA/TO 0 0
## 1560 TA/TO 0 0
## 1561 Direct 0 0
## 1562 TA/TO 0 0
## 1563 TA/TO 0 0
## 1564 TA/TO 0 0
## 1565 TA/TO 0 0
## 1566 Corporate 0 0
## 1567 TA/TO 0 0
## 1568 TA/TO 0 0
## 1569 TA/TO 0 0
## 1570 Direct 0 0
## 1571 Direct 0 0
## 1572 TA/TO 0 0
## 1573 TA/TO 0 0
## 1574 Direct 0 0
## 1575 Direct 0 0
## 1576 Direct 0 0
## 1577 Direct 0 0
## 1578 TA/TO 0 0
## 1579 Direct 0 0
## 1580 TA/TO 0 0
## 1581 TA/TO 0 0
## 1582 TA/TO 0 0
## 1583 TA/TO 0 0
## 1584 TA/TO 0 0
## 1585 Direct 0 0
## 1586 TA/TO 0 0
## 1587 TA/TO 0 0
## 1588 TA/TO 0 0
## 1589 Direct 0 0
## 1590 TA/TO 0 0
## 1591 TA/TO 0 0
## 1592 Direct 0 0
## 1593 TA/TO 0 0
## 1594 TA/TO 0 0
## 1595 TA/TO 0 0
## 1596 Direct 0 0
## 1597 Direct 0 0
## 1598 Direct 0 0
## 1599 TA/TO 0 0
## 1600 TA/TO 0 0
## 1601 Direct 0 0
## 1602 TA/TO 0 0
## 1603 Direct 0 0
## 1604 TA/TO 0 0
## 1605 Direct 0 0
## 1606 TA/TO 0 0
## 1607 TA/TO 0 0
## 1608 TA/TO 0 0
## 1609 TA/TO 0 0
## 1610 TA/TO 0 0
## 1611 TA/TO 0 0
## 1612 TA/TO 0 0
## 1613 TA/TO 0 0
## 1614 TA/TO 0 0
## 1615 TA/TO 0 0
## 1616 TA/TO 0 0
## 1617 Direct 0 0
## 1618 TA/TO 0 0
## 1619 TA/TO 0 0
## 1620 TA/TO 0 0
## 1621 TA/TO 0 0
## 1622 TA/TO 0 0
## 1623 TA/TO 0 0
## 1624 TA/TO 0 0
## 1625 TA/TO 0 0
## 1626 Direct 0 0
## 1627 TA/TO 0 0
## 1628 TA/TO 0 0
## 1629 TA/TO 0 0
## 1630 TA/TO 0 0
## 1631 TA/TO 0 0
## 1632 Direct 0 0
## 1633 TA/TO 0 0
## 1634 TA/TO 0 0
## 1635 TA/TO 0 0
## 1636 TA/TO 0 0
## 1637 TA/TO 0 0
## 1638 TA/TO 0 0
## 1639 TA/TO 0 0
## 1640 TA/TO 0 0
## 1641 TA/TO 0 0
## 1642 TA/TO 0 0
## 1643 TA/TO 0 0
## 1644 TA/TO 0 0
## 1645 TA/TO 0 0
## 1646 TA/TO 0 0
## 1647 TA/TO 0 0
## 1648 TA/TO 0 0
## 1649 Direct 0 0
## 1650 TA/TO 0 0
## 1651 Direct 0 0
## 1652 TA/TO 0 0
## 1653 TA/TO 0 0
## 1654 TA/TO 0 0
## 1655 Direct 0 0
## 1656 TA/TO 0 0
## 1657 Direct 0 0
## 1658 TA/TO 0 0
## 1659 Direct 0 0
## 1660 TA/TO 0 0
## 1661 Direct 0 0
## 1662 TA/TO 0 0
## 1663 TA/TO 0 0
## 1664 TA/TO 0 0
## 1665 TA/TO 0 0
## 1666 TA/TO 0 0
## 1667 TA/TO 0 0
## 1668 TA/TO 0 0
## 1669 TA/TO 0 0
## 1670 TA/TO 0 0
## 1671 TA/TO 0 0
## 1672 TA/TO 0 0
## 1673 TA/TO 0 0
## 1674 TA/TO 0 0
## 1675 TA/TO 0 0
## 1676 TA/TO 0 0
## 1677 TA/TO 0 0
## 1678 TA/TO 0 0
## 1679 TA/TO 0 0
## 1680 TA/TO 0 0
## 1681 TA/TO 0 0
## 1682 TA/TO 0 0
## 1683 TA/TO 0 0
## 1684 TA/TO 0 0
## 1685 TA/TO 0 0
## 1686 TA/TO 0 0
## 1687 TA/TO 0 0
## 1688 TA/TO 0 0
## 1689 TA/TO 0 0
## 1690 TA/TO 0 0
## 1691 TA/TO 0 0
## 1692 TA/TO 0 0
## 1693 TA/TO 0 0
## 1694 TA/TO 0 0
## 1695 TA/TO 0 0
## 1696 TA/TO 0 0
## 1697 TA/TO 0 0
## 1698 Direct 0 0
## 1699 TA/TO 0 0
## 1700 TA/TO 0 0
## 1701 Direct 0 0
## 1702 Direct 0 0
## 1703 TA/TO 0 0
## 1704 Direct 0 0
## 1705 Direct 0 0
## 1706 Direct 0 0
## 1707 TA/TO 0 0
## 1708 TA/TO 0 0
## 1709 TA/TO 0 0
## 1710 TA/TO 0 0
## 1711 TA/TO 0 0
## 1712 TA/TO 0 0
## 1713 Direct 0 0
## 1714 TA/TO 0 0
## 1715 TA/TO 0 0
## 1716 Direct 0 0
## 1717 TA/TO 0 0
## 1718 Direct 0 0
## 1719 TA/TO 0 0
## 1720 TA/TO 0 0
## 1721 TA/TO 0 0
## 1722 TA/TO 0 0
## 1723 TA/TO 0 0
## 1724 TA/TO 0 0
## 1725 TA/TO 0 0
## 1726 TA/TO 0 0
## 1727 TA/TO 0 0
## 1728 TA/TO 0 0
## 1729 TA/TO 0 0
## 1730 TA/TO 0 0
## 1731 TA/TO 0 0
## 1732 TA/TO 0 0
## 1733 TA/TO 0 0
## 1734 TA/TO 0 0
## 1735 TA/TO 0 0
## 1736 TA/TO 0 0
## 1737 TA/TO 0 0
## 1738 TA/TO 0 0
## 1739 TA/TO 0 0
## 1740 TA/TO 0 0
## 1741 TA/TO 0 0
## 1742 TA/TO 0 0
## 1743 TA/TO 0 0
## 1744 TA/TO 0 0
## 1745 TA/TO 0 0
## 1746 TA/TO 0 0
## 1747 TA/TO 0 0
## 1748 TA/TO 0 0
## 1749 TA/TO 0 0
## 1750 TA/TO 0 0
## 1751 TA/TO 0 0
## 1752 TA/TO 0 0
## 1753 TA/TO 0 0
## 1754 TA/TO 0 0
## 1755 TA/TO 0 0
## 1756 TA/TO 0 0
## 1757 TA/TO 0 0
## 1758 Direct 0 0
## 1759 Direct 0 0
## 1760 Direct 0 0
## 1761 Direct 0 0
## 1762 TA/TO 0 0
## 1763 Direct 0 0
## 1764 TA/TO 0 0
## 1765 TA/TO 0 0
## 1766 TA/TO 0 0
## 1767 TA/TO 0 0
## 1768 TA/TO 0 0
## 1769 TA/TO 0 0
## 1770 TA/TO 0 0
## 1771 TA/TO 0 0
## 1772 TA/TO 0 0
## 1773 TA/TO 0 0
## 1774 TA/TO 0 0
## 1775 TA/TO 0 0
## 1776 TA/TO 0 0
## 1777 TA/TO 0 0
## 1778 TA/TO 0 0
## 1779 TA/TO 0 0
## 1780 TA/TO 0 0
## 1781 TA/TO 0 0
## 1782 TA/TO 0 0
## 1783 TA/TO 0 0
## 1784 TA/TO 0 0
## 1785 TA/TO 0 0
## 1786 TA/TO 0 0
## 1787 TA/TO 0 0
## 1788 TA/TO 0 0
## 1789 TA/TO 0 0
## 1790 TA/TO 0 0
## 1791 TA/TO 0 0
## 1792 TA/TO 0 0
## 1793 TA/TO 0 0
## 1794 TA/TO 0 0
## 1795 TA/TO 0 0
## 1796 TA/TO 0 0
## 1797 TA/TO 0 0
## 1798 TA/TO 0 0
## 1799 TA/TO 0 0
## 1800 TA/TO 0 0
## 1801 TA/TO 0 0
## 1802 TA/TO 0 0
## 1803 TA/TO 0 0
## 1804 TA/TO 0 0
## 1805 Direct 0 0
## 1806 TA/TO 0 0
## 1807 Direct 0 0
## 1808 Direct 0 0
## 1809 TA/TO 0 0
## 1810 Direct 0 0
## 1811 TA/TO 0 0
## 1812 TA/TO 0 0
## 1813 TA/TO 0 0
## 1814 TA/TO 0 0
## 1815 TA/TO 0 0
## 1816 TA/TO 0 0
## 1817 TA/TO 0 0
## 1818 TA/TO 0 0
## 1819 TA/TO 0 0
## 1820 TA/TO 0 0
## 1821 TA/TO 0 0
## 1822 Direct 0 0
## 1823 TA/TO 0 0
## 1824 Direct 0 0
## 1825 Corporate 0 0
## 1826 TA/TO 0 0
## 1827 Direct 0 0
## 1828 Direct 0 0
## 1829 Corporate 0 0
## 1830 TA/TO 0 0
## 1831 TA/TO 0 0
## 1832 TA/TO 0 0
## 1833 TA/TO 0 0
## 1834 TA/TO 0 0
## 1835 TA/TO 0 0
## 1836 TA/TO 0 0
## 1837 TA/TO 0 0
## 1838 TA/TO 0 0
## 1839 TA/TO 0 0
## 1840 TA/TO 0 0
## 1841 TA/TO 0 0
## 1842 TA/TO 0 0
## 1843 TA/TO 0 0
## 1844 TA/TO 0 0
## 1845 TA/TO 0 0
## 1846 TA/TO 0 0
## 1847 TA/TO 0 0
## 1848 TA/TO 0 0
## 1849 TA/TO 0 0
## 1850 Direct 0 0
## 1851 TA/TO 0 0
## 1852 TA/TO 0 0
## 1853 TA/TO 0 0
## 1854 TA/TO 0 0
## 1855 Corporate 0 0
## 1856 TA/TO 0 0
## 1857 TA/TO 0 0
## 1858 TA/TO 0 0
## 1859 TA/TO 0 0
## 1860 TA/TO 0 0
## 1861 TA/TO 0 0
## 1862 TA/TO 0 0
## 1863 TA/TO 0 0
## 1864 TA/TO 0 0
## 1865 TA/TO 0 0
## 1866 TA/TO 0 0
## 1867 TA/TO 0 0
## 1868 TA/TO 0 0
## 1869 TA/TO 0 0
## 1870 TA/TO 0 0
## 1871 TA/TO 0 0
## 1872 TA/TO 0 0
## 1873 Direct 0 0
## 1874 TA/TO 0 0
## 1875 TA/TO 0 0
## 1876 TA/TO 0 0
## 1877 TA/TO 0 0
## 1878 TA/TO 0 0
## 1879 Direct 0 0
## 1880 TA/TO 0 0
## 1881 TA/TO 0 0
## 1882 TA/TO 0 0
## 1883 Direct 0 0
## 1884 TA/TO 0 0
## 1885 TA/TO 0 0
## 1886 TA/TO 0 0
## 1887 TA/TO 0 0
## 1888 TA/TO 0 0
## 1889 TA/TO 0 0
## 1890 TA/TO 0 0
## 1891 Direct 0 0
## 1892 TA/TO 0 0
## 1893 Direct 0 0
## 1894 Direct 0 0
## 1895 TA/TO 0 0
## 1896 Direct 0 0
## 1897 TA/TO 0 0
## 1898 TA/TO 0 0
## 1899 TA/TO 0 0
## 1900 TA/TO 0 0
## 1901 Direct 0 0
## 1902 TA/TO 0 0
## 1903 TA/TO 0 0
## 1904 TA/TO 0 0
## 1905 Direct 0 0
## 1906 TA/TO 0 0
## 1907 TA/TO 0 0
## 1908 Direct 0 0
## 1909 TA/TO 0 0
## 1910 TA/TO 0 0
## 1911 TA/TO 0 0
## 1912 TA/TO 0 0
## 1913 TA/TO 0 0
## 1914 TA/TO 0 0
## 1915 TA/TO 0 0
## 1916 Direct 0 0
## 1917 TA/TO 0 0
## 1918 TA/TO 0 0
## 1919 Direct 0 0
## 1920 Direct 0 0
## 1921 TA/TO 0 0
## 1922 Direct 0 0
## 1923 Direct 0 0
## 1924 Direct 0 0
## 1925 TA/TO 0 0
## 1926 TA/TO 0 0
## 1927 TA/TO 0 0
## 1928 TA/TO 0 0
## 1929 TA/TO 0 0
## 1930 TA/TO 0 0
## 1931 TA/TO 0 0
## 1932 TA/TO 0 0
## 1933 TA/TO 0 0
## 1934 TA/TO 0 0
## 1935 TA/TO 0 0
## 1936 TA/TO 0 0
## 1937 TA/TO 0 0
## 1938 TA/TO 0 0
## 1939 TA/TO 0 0
## 1940 TA/TO 0 0
## 1941 TA/TO 0 0
## 1942 TA/TO 0 0
## 1943 TA/TO 0 0
## 1944 TA/TO 0 0
## 1945 TA/TO 0 0
## 1946 TA/TO 0 0
## 1947 TA/TO 0 0
## 1948 TA/TO 0 0
## 1949 TA/TO 0 0
## 1950 TA/TO 0 0
## 1951 TA/TO 0 0
## 1952 TA/TO 0 0
## 1953 TA/TO 0 0
## 1954 TA/TO 0 0
## 1955 TA/TO 0 0
## 1956 Direct 0 0
## 1957 Direct 0 0
## 1958 TA/TO 0 0
## 1959 TA/TO 0 0
## 1960 TA/TO 0 0
## 1961 TA/TO 0 0
## 1962 TA/TO 0 0
## 1963 TA/TO 0 0
## 1964 Direct 0 0
## 1965 Direct 0 0
## 1966 Direct 0 0
## 1967 TA/TO 0 0
## 1968 TA/TO 0 0
## 1969 Direct 0 0
## 1970 TA/TO 0 0
## 1971 Direct 0 0
## 1972 TA/TO 0 0
## 1973 TA/TO 0 0
## 1974 TA/TO 0 0
## 1975 TA/TO 0 0
## 1976 TA/TO 0 0
## 1977 TA/TO 0 0
## 1978 TA/TO 0 0
## 1979 TA/TO 0 0
## 1980 TA/TO 0 0
## 1981 TA/TO 0 0
## 1982 TA/TO 0 0
## 1983 TA/TO 0 0
## 1984 TA/TO 0 0
## 1985 TA/TO 0 0
## 1986 TA/TO 0 0
## 1987 TA/TO 0 0
## 1988 TA/TO 0 0
## 1989 TA/TO 0 0
## 1990 TA/TO 0 0
## 1991 TA/TO 0 0
## 1992 TA/TO 0 0
## 1993 TA/TO 0 0
## 1994 TA/TO 0 0
## 1995 TA/TO 0 0
## 1996 TA/TO 0 0
## 1997 TA/TO 0 0
## 1998 TA/TO 0 0
## 1999 TA/TO 0 0
## 2000 TA/TO 0 0
## 2001 TA/TO 0 0
## 2002 TA/TO 0 0
## 2003 TA/TO 0 0
## 2004 TA/TO 0 0
## 2005 TA/TO 0 0
## 2006 TA/TO 0 0
## 2007 TA/TO 0 0
## 2008 TA/TO 0 0
## 2009 TA/TO 0 0
## 2010 TA/TO 0 0
## 2011 TA/TO 0 0
## 2012 TA/TO 0 0
## 2013 TA/TO 0 0
## 2014 TA/TO 0 0
## 2015 Direct 0 0
## 2016 TA/TO 0 0
## 2017 TA/TO 0 0
## 2018 Direct 0 0
## 2019 TA/TO 0 0
## 2020 TA/TO 0 0
## 2021 Direct 0 0
## 2022 Corporate 0 0
## 2023 Direct 0 0
## 2024 Direct 0 0
## 2025 Direct 0 0
## 2026 TA/TO 0 0
## 2027 TA/TO 0 0
## 2028 TA/TO 0 0
## 2029 TA/TO 0 0
## 2030 TA/TO 0 0
## 2031 Corporate 0 0
## 2032 TA/TO 0 0
## 2033 TA/TO 0 0
## 2034 TA/TO 0 0
## 2035 TA/TO 0 0
## 2036 TA/TO 0 0
## 2037 TA/TO 0 0
## 2038 TA/TO 0 0
## 2039 TA/TO 0 0
## 2040 TA/TO 0 0
## 2041 TA/TO 0 0
## 2042 TA/TO 0 0
## 2043 TA/TO 0 0
## 2044 TA/TO 0 0
## 2045 TA/TO 0 0
## 2046 TA/TO 0 0
## 2047 TA/TO 0 0
## 2048 TA/TO 0 0
## 2049 TA/TO 0 0
## 2050 TA/TO 0 0
## 2051 TA/TO 0 0
## 2052 Direct 0 0
## 2053 TA/TO 0 0
## 2054 TA/TO 0 0
## 2055 TA/TO 0 0
## 2056 Direct 0 0
## 2057 TA/TO 0 0
## 2058 TA/TO 0 0
## 2059 TA/TO 0 0
## 2060 Direct 0 0
## 2061 TA/TO 0 0
## 2062 TA/TO 0 0
## 2063 TA/TO 0 0
## 2064 Direct 0 0
## 2065 TA/TO 0 0
## 2066 TA/TO 0 0
## 2067 TA/TO 0 0
## 2068 TA/TO 0 0
## 2069 Direct 0 0
## 2070 TA/TO 0 0
## 2071 TA/TO 0 0
## 2072 TA/TO 0 0
## 2073 TA/TO 0 0
## 2074 Direct 0 0
## 2075 Direct 0 0
## 2076 TA/TO 0 0
## 2077 TA/TO 0 0
## 2078 TA/TO 0 0
## 2079 TA/TO 0 0
## 2080 TA/TO 0 0
## 2081 Direct 0 0
## 2082 Direct 0 0
## 2083 Direct 0 0
## 2084 TA/TO 0 0
## 2085 Direct 0 0
## 2086 Direct 0 0
## 2087 TA/TO 0 0
## 2088 Direct 0 0
## 2089 TA/TO 0 0
## 2090 Direct 0 0
## 2091 TA/TO 0 0
## 2092 TA/TO 0 0
## 2093 TA/TO 0 0
## 2094 TA/TO 0 0
## 2095 TA/TO 0 0
## 2096 TA/TO 0 0
## 2097 TA/TO 0 0
## 2098 TA/TO 0 0
## 2099 TA/TO 0 0
## 2100 TA/TO 0 0
## 2101 TA/TO 0 0
## 2102 Direct 0 0
## 2103 TA/TO 0 0
## 2104 TA/TO 0 0
## 2105 Direct 0 0
## 2106 TA/TO 0 0
## 2107 TA/TO 0 0
## 2108 TA/TO 0 0
## 2109 TA/TO 0 0
## 2110 TA/TO 0 0
## 2111 TA/TO 0 0
## 2112 TA/TO 0 0
## 2113 TA/TO 0 0
## 2114 Direct 0 0
## 2115 TA/TO 0 0
## 2116 TA/TO 0 0
## 2117 TA/TO 0 0
## 2118 TA/TO 0 0
## 2119 TA/TO 0 0
## 2120 TA/TO 0 0
## 2121 TA/TO 0 0
## 2122 TA/TO 0 0
## 2123 Corporate 0 0
## 2124 Corporate 0 0
## 2125 TA/TO 0 0
## 2126 Corporate 0 0
## 2127 TA/TO 0 0
## 2128 TA/TO 0 0
## 2129 TA/TO 0 0
## 2130 Corporate 0 0
## 2131 TA/TO 0 0
## 2132 TA/TO 0 0
## 2133 TA/TO 0 0
## 2134 TA/TO 0 0
## 2135 TA/TO 0 0
## 2136 TA/TO 0 0
## 2137 TA/TO 0 0
## 2138 TA/TO 0 0
## 2139 TA/TO 0 0
## 2140 TA/TO 0 0
## 2141 TA/TO 0 0
## 2142 TA/TO 0 0
## 2143 TA/TO 0 0
## 2144 TA/TO 0 0
## 2145 TA/TO 0 0
## 2146 TA/TO 0 0
## 2147 TA/TO 0 0
## 2148 TA/TO 0 0
## 2149 TA/TO 0 0
## 2150 TA/TO 0 0
## 2151 TA/TO 0 0
## 2152 TA/TO 0 0
## 2153 Direct 0 0
## 2154 TA/TO 0 0
## 2155 TA/TO 0 0
## 2156 TA/TO 0 0
## 2157 TA/TO 0 0
## 2158 Direct 0 0
## 2159 TA/TO 0 0
## 2160 Direct 0 0
## 2161 TA/TO 0 0
## 2162 Direct 0 0
## 2163 TA/TO 0 0
## 2164 TA/TO 0 0
## 2165 TA/TO 0 0
## 2166 TA/TO 0 0
## 2167 TA/TO 0 0
## 2168 TA/TO 0 0
## 2169 Direct 0 0
## 2170 TA/TO 0 0
## 2171 TA/TO 0 0
## 2172 TA/TO 0 0
## 2173 TA/TO 0 0
## 2174 TA/TO 0 0
## 2175 TA/TO 0 0
## 2176 TA/TO 0 0
## 2177 TA/TO 0 0
## 2178 TA/TO 0 0
## 2179 TA/TO 0 0
## 2180 TA/TO 0 0
## 2181 Direct 0 0
## 2182 TA/TO 0 0
## 2183 TA/TO 0 0
## 2184 TA/TO 0 0
## 2185 TA/TO 0 0
## 2186 TA/TO 0 0
## 2187 TA/TO 0 0
## 2188 TA/TO 0 0
## 2189 TA/TO 0 0
## 2190 TA/TO 0 0
## 2191 TA/TO 0 0
## 2192 TA/TO 0 0
## 2193 Direct 0 0
## 2194 TA/TO 0 0
## 2195 TA/TO 0 0
## 2196 TA/TO 0 0
## 2197 TA/TO 0 0
## 2198 TA/TO 0 0
## 2199 TA/TO 0 0
## 2200 TA/TO 0 0
## 2201 TA/TO 0 0
## 2202 TA/TO 0 0
## 2203 TA/TO 0 0
## 2204 TA/TO 0 0
## 2205 TA/TO 0 0
## 2206 TA/TO 0 0
## 2207 TA/TO 0 0
## 2208 TA/TO 0 0
## 2209 TA/TO 0 0
## 2210 TA/TO 0 0
## 2211 TA/TO 0 0
## 2212 TA/TO 0 0
## 2213 TA/TO 0 0
## 2214 Direct 0 0
## 2215 TA/TO 0 0
## 2216 TA/TO 0 0
## 2217 TA/TO 0 0
## 2218 TA/TO 0 0
## 2219 TA/TO 0 0
## 2220 TA/TO 0 0
## 2221 TA/TO 0 0
## 2222 TA/TO 0 0
## 2223 TA/TO 0 0
## 2224 TA/TO 0 0
## 2225 TA/TO 0 0
## 2226 TA/TO 0 0
## 2227 TA/TO 0 0
## 2228 TA/TO 0 0
## 2229 TA/TO 0 0
## 2230 TA/TO 0 0
## 2231 TA/TO 0 0
## 2232 TA/TO 0 0
## 2233 TA/TO 0 0
## 2234 TA/TO 0 0
## 2235 TA/TO 0 0
## 2236 TA/TO 0 0
## 2237 TA/TO 0 0
## 2238 TA/TO 0 0
## 2239 TA/TO 0 0
## 2240 TA/TO 0 0
## 2241 TA/TO 0 0
## 2242 TA/TO 0 0
## 2243 TA/TO 0 0
## 2244 Direct 0 0
## 2245 TA/TO 0 0
## 2246 TA/TO 0 0
## 2247 Direct 0 0
## 2248 TA/TO 0 0
## 2249 TA/TO 0 0
## 2250 TA/TO 0 0
## 2251 TA/TO 0 0
## 2252 TA/TO 0 0
## 2253 TA/TO 0 0
## 2254 TA/TO 0 0
## 2255 TA/TO 0 0
## 2256 TA/TO 0 0
## 2257 TA/TO 0 0
## 2258 TA/TO 0 0
## 2259 TA/TO 0 0
## 2260 TA/TO 0 0
## 2261 TA/TO 0 0
## 2262 TA/TO 0 0
## 2263 TA/TO 0 0
## 2264 TA/TO 0 0
## 2265 TA/TO 0 0
## 2266 TA/TO 0 0
## 2267 TA/TO 0 0
## 2268 TA/TO 0 0
## 2269 TA/TO 0 0
## 2270 TA/TO 0 0
## 2271 TA/TO 0 0
## 2272 Direct 0 0
## 2273 TA/TO 0 0
## 2274 TA/TO 0 0
## 2275 Direct 0 0
## 2276 TA/TO 0 0
## 2277 TA/TO 0 0
## 2278 TA/TO 0 0
## 2279 Direct 0 0
## 2280 TA/TO 0 0
## 2281 TA/TO 0 0
## 2282 Direct 0 0
## 2283 TA/TO 0 0
## 2284 TA/TO 0 0
## 2285 TA/TO 0 0
## 2286 TA/TO 0 0
## 2287 Direct 0 0
## 2288 TA/TO 0 0
## 2289 TA/TO 0 0
## 2290 TA/TO 0 0
## 2291 TA/TO 0 0
## 2292 TA/TO 0 0
## 2293 TA/TO 0 0
## 2294 TA/TO 0 0
## 2295 TA/TO 0 0
## 2296 TA/TO 0 0
## 2297 TA/TO 0 0
## 2298 TA/TO 0 0
## 2299 TA/TO 0 0
## 2300 TA/TO 0 0
## 2301 TA/TO 0 0
## 2302 TA/TO 0 0
## 2303 TA/TO 0 0
## 2304 Direct 0 0
## 2305 TA/TO 0 0
## 2306 TA/TO 0 0
## 2307 TA/TO 0 0
## 2308 TA/TO 0 0
## 2309 Direct 0 0
## 2310 TA/TO 0 0
## 2311 TA/TO 0 0
## 2312 TA/TO 0 0
## 2313 TA/TO 0 0
## 2314 TA/TO 0 0
## 2315 TA/TO 0 0
## 2316 TA/TO 0 0
## 2317 TA/TO 0 0
## 2318 TA/TO 0 0
## 2319 TA/TO 0 0
## 2320 TA/TO 0 0
## 2321 TA/TO 0 0
## 2322 TA/TO 0 0
## 2323 TA/TO 0 0
## 2324 TA/TO 0 0
## 2325 TA/TO 0 0
## 2326 TA/TO 0 0
## 2327 TA/TO 0 0
## 2328 TA/TO 0 0
## 2329 Direct 0 0
## 2330 TA/TO 0 0
## 2331 TA/TO 0 0
## 2332 TA/TO 0 0
## 2333 TA/TO 0 0
## 2334 TA/TO 0 0
## 2335 TA/TO 0 0
## 2336 TA/TO 0 0
## 2337 TA/TO 0 0
## 2338 TA/TO 0 0
## 2339 TA/TO 0 0
## 2340 TA/TO 0 0
## 2341 TA/TO 0 0
## 2342 TA/TO 0 0
## 2343 TA/TO 0 0
## 2344 TA/TO 0 0
## 2345 TA/TO 0 0
## 2346 TA/TO 0 0
## 2347 TA/TO 0 0
## 2348 TA/TO 0 0
## 2349 TA/TO 0 0
## 2350 TA/TO 0 0
## 2351 TA/TO 0 0
## 2352 TA/TO 0 0
## 2353 TA/TO 0 0
## 2354 TA/TO 0 0
## 2355 TA/TO 0 0
## 2356 TA/TO 0 0
## 2357 TA/TO 0 0
## 2358 TA/TO 0 0
## 2359 TA/TO 0 0
## 2360 TA/TO 0 0
## 2361 TA/TO 0 0
## 2362 TA/TO 0 0
## 2363 TA/TO 0 0
## 2364 TA/TO 0 0
## 2365 TA/TO 0 0
## 2366 TA/TO 0 0
## 2367 TA/TO 0 0
## 2368 TA/TO 0 0
## 2369 TA/TO 0 0
## 2370 TA/TO 0 0
## 2371 TA/TO 0 0
## 2372 TA/TO 0 0
## 2373 TA/TO 0 0
## 2374 TA/TO 0 0
## 2375 TA/TO 0 0
## 2376 TA/TO 0 0
## 2377 TA/TO 0 0
## 2378 TA/TO 0 0
## 2379 TA/TO 0 0
## 2380 TA/TO 0 0
## 2381 TA/TO 0 0
## 2382 TA/TO 0 0
## 2383 TA/TO 0 0
## 2384 TA/TO 0 0
## 2385 TA/TO 0 0
## 2386 TA/TO 0 0
## 2387 TA/TO 0 0
## 2388 TA/TO 0 0
## 2389 TA/TO 0 0
## 2390 TA/TO 0 0
## 2391 TA/TO 0 0
## 2392 TA/TO 0 0
## 2393 TA/TO 0 0
## 2394 TA/TO 0 0
## 2395 TA/TO 0 0
## 2396 TA/TO 0 0
## 2397 TA/TO 0 0
## 2398 TA/TO 0 0
## 2399 TA/TO 0 0
## 2400 TA/TO 0 0
## 2401 TA/TO 0 0
## 2402 TA/TO 0 0
## 2403 TA/TO 0 0
## 2404 TA/TO 0 0
## 2405 TA/TO 0 0
## 2406 TA/TO 0 0
## 2407 TA/TO 0 0
## 2408 TA/TO 0 0
## 2409 TA/TO 0 0
## 2410 TA/TO 0 0
## 2411 TA/TO 0 0
## 2412 TA/TO 0 0
## 2413 TA/TO 0 0
## 2414 TA/TO 0 0
## 2415 TA/TO 0 0
## 2416 TA/TO 0 0
## 2417 TA/TO 0 0
## 2418 TA/TO 0 0
## 2419 TA/TO 0 0
## 2420 TA/TO 0 0
## 2421 TA/TO 0 0
## 2422 TA/TO 0 0
## 2423 TA/TO 0 0
## 2424 TA/TO 0 0
## 2425 TA/TO 0 0
## 2426 TA/TO 0 0
## 2427 TA/TO 0 0
## 2428 TA/TO 0 0
## 2429 TA/TO 0 0
## 2430 TA/TO 0 0
## 2431 TA/TO 0 0
## 2432 TA/TO 0 0
## 2433 TA/TO 0 0
## 2434 TA/TO 0 0
## 2435 TA/TO 0 0
## 2436 TA/TO 0 0
## 2437 TA/TO 0 0
## 2438 TA/TO 0 0
## 2439 TA/TO 0 0
## 2440 TA/TO 0 0
## 2441 TA/TO 0 0
## 2442 TA/TO 0 0
## 2443 TA/TO 0 0
## 2444 TA/TO 0 0
## 2445 TA/TO 0 0
## 2446 TA/TO 0 0
## 2447 TA/TO 0 0
## 2448 TA/TO 0 0
## 2449 TA/TO 0 0
## 2450 TA/TO 0 0
## 2451 TA/TO 0 0
## 2452 TA/TO 0 0
## 2453 TA/TO 0 0
## 2454 TA/TO 0 0
## 2455 TA/TO 0 0
## 2456 TA/TO 0 0
## 2457 TA/TO 0 0
## 2458 TA/TO 0 0
## 2459 TA/TO 0 0
## 2460 TA/TO 0 0
## 2461 TA/TO 0 0
## 2462 TA/TO 0 0
## 2463 TA/TO 0 0
## 2464 TA/TO 0 0
## 2465 TA/TO 0 0
## 2466 TA/TO 0 0
## 2467 TA/TO 0 0
## 2468 TA/TO 0 0
## 2469 TA/TO 0 0
## 2470 Direct 0 0
## 2471 TA/TO 0 0
## 2472 TA/TO 0 0
## 2473 Direct 0 0
## 2474 Direct 0 0
## 2475 TA/TO 0 0
## 2476 TA/TO 0 0
## 2477 TA/TO 0 0
## 2478 TA/TO 0 0
## 2479 Direct 0 0
## 2480 Direct 0 0
## 2481 TA/TO 0 0
## 2482 Direct 0 0
## 2483 Direct 0 0
## 2484 Direct 0 0
## 2485 TA/TO 0 0
## 2486 TA/TO 0 0
## 2487 TA/TO 0 0
## 2488 TA/TO 0 0
## 2489 TA/TO 0 0
## 2490 TA/TO 0 0
## 2491 TA/TO 0 0
## 2492 TA/TO 0 0
## 2493 TA/TO 0 0
## 2494 TA/TO 0 0
## 2495 Direct 0 0
## 2496 Direct 0 0
## 2497 TA/TO 0 0
## 2498 TA/TO 0 0
## 2499 TA/TO 0 0
## 2500 TA/TO 0 0
## 2501 TA/TO 0 0
## 2502 TA/TO 0 0
## 2503 Corporate 0 0
## 2504 TA/TO 0 0
## 2505 TA/TO 0 0
## 2506 TA/TO 0 0
## 2507 TA/TO 0 0
## 2508 TA/TO 0 0
## 2509 Corporate 0 0
## 2510 TA/TO 0 0
## 2511 TA/TO 0 0
## 2512 TA/TO 0 0
## 2513 TA/TO 0 0
## 2514 TA/TO 0 0
## 2515 TA/TO 0 0
## 2516 TA/TO 0 0
## 2517 TA/TO 0 0
## 2518 TA/TO 0 0
## 2519 TA/TO 0 0
## 2520 TA/TO 0 0
## 2521 TA/TO 0 0
## 2522 TA/TO 0 0
## 2523 TA/TO 0 0
## 2524 TA/TO 0 0
## 2525 TA/TO 0 0
## 2526 Corporate 0 0
## 2527 Direct 0 0
## 2528 TA/TO 0 0
## 2529 TA/TO 0 0
## 2530 TA/TO 0 0
## 2531 TA/TO 0 0
## 2532 TA/TO 0 0
## 2533 TA/TO 0 0
## 2534 Direct 0 0
## 2535 TA/TO 0 0
## 2536 TA/TO 0 0
## 2537 TA/TO 0 0
## 2538 Direct 0 0
## 2539 TA/TO 0 0
## 2540 TA/TO 0 0
## 2541 TA/TO 0 0
## 2542 Direct 0 0
## 2543 Direct 0 0
## 2544 Direct 0 0
## 2545 Direct 0 0
## 2546 Direct 0 0
## 2547 Direct 0 0
## 2548 TA/TO 0 0
## 2549 TA/TO 0 0
## 2550 TA/TO 0 0
## 2551 Direct 0 0
## 2552 TA/TO 0 0
## 2553 Direct 0 0
## 2554 TA/TO 0 0
## 2555 TA/TO 0 0
## 2556 Direct 0 0
## 2557 TA/TO 0 0
## 2558 TA/TO 0 0
## 2559 Corporate 0 0
## 2560 TA/TO 0 0
## 2561 TA/TO 0 0
## 2562 Direct 0 0
## 2563 Direct 0 0
## 2564 TA/TO 0 0
## 2565 TA/TO 0 0
## 2566 TA/TO 0 0
## 2567 TA/TO 0 0
## 2568 TA/TO 0 0
## 2569 TA/TO 0 0
## 2570 TA/TO 0 0
## 2571 Direct 0 0
## 2572 TA/TO 0 0
## 2573 TA/TO 0 0
## 2574 TA/TO 0 0
## 2575 TA/TO 0 0
## 2576 Direct 0 0
## 2577 Direct 0 0
## 2578 Direct 0 0
## 2579 TA/TO 0 0
## 2580 TA/TO 0 0
## 2581 Direct 0 0
## 2582 TA/TO 0 0
## 2583 TA/TO 0 0
## 2584 TA/TO 0 0
## 2585 TA/TO 0 0
## 2586 TA/TO 0 0
## 2587 TA/TO 0 0
## 2588 TA/TO 0 0
## 2589 Direct 0 0
## 2590 TA/TO 0 0
## 2591 TA/TO 0 0
## 2592 TA/TO 0 0
## 2593 Direct 0 0
## 2594 Direct 0 0
## 2595 TA/TO 0 0
## 2596 TA/TO 0 0
## 2597 TA/TO 0 0
## 2598 Corporate 0 0
## 2599 TA/TO 0 0
## 2600 Corporate 0 0
## 2601 Corporate 0 0
## 2602 Corporate 0 0
## 2603 Corporate 0 0
## 2604 TA/TO 0 0
## 2605 TA/TO 0 0
## 2606 Direct 0 0
## 2607 TA/TO 0 0
## 2608 TA/TO 0 0
## 2609 Direct 0 0
## 2610 TA/TO 0 0
## 2611 TA/TO 0 0
## 2612 Corporate 0 0
## 2613 Direct 0 0
## 2614 TA/TO 0 0
## 2615 TA/TO 0 0
## 2616 TA/TO 0 0
## 2617 Corporate 0 0
## 2618 Corporate 0 0
## 2619 Corporate 0 0
## 2620 Corporate 0 0
## 2621 TA/TO 0 0
## 2622 TA/TO 0 0
## 2623 TA/TO 0 0
## 2624 Corporate 0 0
## 2625 Corporate 0 0
## 2626 Corporate 0 0
## 2627 Corporate 0 0
## 2628 TA/TO 0 0
## 2629 TA/TO 0 0
## 2630 TA/TO 0 0
## 2631 TA/TO 0 0
## 2632 Corporate 0 0
## 2633 TA/TO 0 0
## 2634 Corporate 0 0
## 2635 Corporate 0 0
## 2636 TA/TO 0 0
## 2637 TA/TO 0 0
## 2638 TA/TO 0 0
## 2639 Corporate 0 0
## 2640 TA/TO 0 0
## 2641 Corporate 0 0
## 2642 Corporate 0 0
## 2643 Corporate 0 0
## 2644 Corporate 0 0
## 2645 Corporate 0 0
## 2646 Corporate 0 0
## 2647 Corporate 0 0
## 2648 TA/TO 0 0
## 2649 TA/TO 0 0
## 2650 Corporate 0 0
## 2651 Corporate 0 0
## 2652 TA/TO 0 0
## 2653 TA/TO 0 0
## 2654 TA/TO 0 0
## 2655 Corporate 0 0
## 2656 Corporate 0 0
## 2657 Corporate 0 0
## 2658 TA/TO 0 0
## 2659 TA/TO 0 0
## 2660 TA/TO 0 0
## 2661 TA/TO 0 0
## 2662 Corporate 0 0
## 2663 Corporate 0 0
## 2664 TA/TO 0 0
## 2665 TA/TO 0 0
## 2666 TA/TO 0 0
## 2667 Corporate 0 0
## 2668 Corporate 0 0
## 2669 Corporate 0 0
## 2670 TA/TO 0 0
## 2671 Corporate 0 0
## 2672 Corporate 0 0
## 2673 Corporate 0 0
## 2674 TA/TO 0 0
## 2675 TA/TO 0 0
## 2676 Corporate 0 0
## 2677 Corporate 0 0
## 2678 Corporate 0 0
## 2679 TA/TO 0 0
## 2680 TA/TO 0 0
## 2681 TA/TO 0 0
## 2682 Corporate 0 0
## 2683 Corporate 0 0
## 2684 Corporate 0 0
## 2685 Corporate 0 0
## 2686 Corporate 0 0
## 2687 Corporate 0 0
## 2688 Corporate 0 0
## 2689 TA/TO 0 0
## 2690 TA/TO 0 0
## 2691 TA/TO 0 0
## 2692 TA/TO 0 0
## 2693 TA/TO 0 0
## 2694 TA/TO 0 0
## 2695 TA/TO 0 0
## 2696 Corporate 0 0
## 2697 TA/TO 0 0
## 2698 TA/TO 0 0
## 2699 TA/TO 0 0
## 2700 TA/TO 0 0
## 2701 TA/TO 0 0
## 2702 Corporate 0 0
## 2703 Corporate 0 0
## 2704 TA/TO 0 0
## 2705 TA/TO 0 0
## 2706 Direct 0 0
## 2707 Corporate 0 0
## 2708 Direct 0 0
## 2709 Corporate 0 0
## 2710 Direct 0 0
## 2711 Corporate 0 0
## 2712 TA/TO 0 0
## 2713 Direct 0 0
## 2714 Corporate 0 0
## 2715 TA/TO 0 0
## 2716 TA/TO 0 0
## 2717 TA/TO 0 0
## 2718 TA/TO 0 0
## 2719 TA/TO 0 0
## 2720 TA/TO 0 0
## 2721 Corporate 0 0
## 2722 TA/TO 0 0
## 2723 TA/TO 0 0
## 2724 TA/TO 0 0
## 2725 Direct 0 0
## 2726 TA/TO 0 0
## 2727 TA/TO 0 0
## 2728 TA/TO 0 0
## 2729 TA/TO 0 0
## 2730 TA/TO 0 0
## 2731 TA/TO 0 0
## 2732 TA/TO 0 0
## 2733 TA/TO 0 0
## 2734 TA/TO 0 0
## 2735 TA/TO 0 0
## 2736 TA/TO 0 0
## 2737 TA/TO 0 0
## 2738 TA/TO 0 0
## 2739 TA/TO 0 0
## 2740 TA/TO 0 0
## 2741 TA/TO 0 0
## 2742 TA/TO 0 0
## 2743 TA/TO 0 0
## 2744 TA/TO 0 0
## 2745 TA/TO 0 0
## 2746 TA/TO 0 0
## 2747 Direct 0 0
## 2748 TA/TO 0 0
## 2749 TA/TO 0 0
## 2750 Direct 0 0
## 2751 TA/TO 0 0
## 2752 Direct 0 0
## 2753 TA/TO 0 0
## 2754 TA/TO 0 0
## 2755 TA/TO 0 0
## 2756 TA/TO 0 0
## 2757 TA/TO 0 0
## 2758 TA/TO 0 0
## 2759 TA/TO 0 0
## 2760 TA/TO 0 0
## 2761 TA/TO 0 0
## 2762 TA/TO 0 0
## 2763 TA/TO 0 0
## 2764 TA/TO 0 0
## 2765 TA/TO 0 0
## 2766 TA/TO 0 0
## 2767 TA/TO 0 0
## 2768 TA/TO 0 0
## 2769 TA/TO 0 0
## 2770 TA/TO 0 0
## 2771 TA/TO 0 0
## 2772 TA/TO 0 0
## 2773 TA/TO 0 0
## 2774 Corporate 0 0
## 2775 Corporate 0 0
## 2776 TA/TO 0 0
## 2777 TA/TO 0 0
## 2778 TA/TO 0 0
## 2779 TA/TO 0 0
## 2780 Direct 0 0
## 2781 Direct 0 0
## 2782 TA/TO 0 0
## 2783 TA/TO 0 0
## 2784 TA/TO 0 0
## 2785 TA/TO 0 0
## 2786 TA/TO 0 0
## 2787 TA/TO 0 0
## 2788 TA/TO 0 0
## 2789 TA/TO 0 0
## 2790 TA/TO 0 0
## 2791 TA/TO 0 0
## 2792 TA/TO 0 0
## 2793 TA/TO 0 0
## 2794 TA/TO 0 0
## 2795 TA/TO 0 0
## 2796 TA/TO 0 0
## 2797 TA/TO 0 0
## 2798 TA/TO 0 0
## 2799 TA/TO 0 0
## 2800 Direct 0 0
## 2801 Direct 0 0
## 2802 TA/TO 0 0
## 2803 TA/TO 0 0
## 2804 TA/TO 0 0
## 2805 TA/TO 0 0
## 2806 TA/TO 0 0
## 2807 TA/TO 0 0
## 2808 TA/TO 0 0
## 2809 TA/TO 0 0
## 2810 Corporate 0 0
## 2811 Corporate 0 0
## 2812 Corporate 0 0
## 2813 TA/TO 0 0
## 2814 TA/TO 0 0
## 2815 TA/TO 0 0
## 2816 TA/TO 0 0
## 2817 Direct 0 0
## 2818 Direct 0 0
## 2819 Direct 0 0
## 2820 TA/TO 0 0
## 2821 TA/TO 0 0
## 2822 TA/TO 0 0
## 2823 Corporate 0 0
## 2824 TA/TO 0 0
## 2825 TA/TO 0 0
## 2826 TA/TO 0 0
## 2827 TA/TO 0 0
## 2828 TA/TO 0 0
## 2829 TA/TO 0 0
## 2830 TA/TO 0 0
## 2831 TA/TO 0 0
## 2832 Corporate 0 0
## 2833 Corporate 0 0
## 2834 TA/TO 0 0
## 2835 TA/TO 0 0
## 2836 TA/TO 0 0
## 2837 TA/TO 0 0
## 2838 Direct 0 0
## 2839 Direct 0 0
## 2840 TA/TO 0 0
## 2841 Direct 0 0
## 2842 TA/TO 0 0
## 2843 TA/TO 0 0
## 2844 TA/TO 0 0
## 2845 TA/TO 0 0
## 2846 TA/TO 0 0
## 2847 TA/TO 0 0
## 2848 TA/TO 0 0
## 2849 TA/TO 0 0
## 2850 TA/TO 0 0
## 2851 TA/TO 0 0
## 2852 TA/TO 0 0
## 2853 TA/TO 0 0
## 2854 TA/TO 0 0
## 2855 TA/TO 0 0
## 2856 TA/TO 0 0
## 2857 TA/TO 0 0
## 2858 TA/TO 0 0
## 2859 TA/TO 0 0
## 2860 Corporate 0 0
## 2861 Corporate 0 0
## 2862 TA/TO 0 0
## 2863 TA/TO 0 0
## 2864 TA/TO 0 0
## 2865 TA/TO 0 0
## 2866 TA/TO 0 0
## 2867 TA/TO 0 0
## 2868 TA/TO 0 0
## 2869 TA/TO 0 0
## 2870 Corporate 0 0
## 2871 Corporate 0 0
## 2872 TA/TO 0 0
## 2873 TA/TO 0 0
## 2874 Corporate 0 0
## 2875 Direct 0 0
## 2876 TA/TO 0 0
## 2877 TA/TO 0 0
## 2878 TA/TO 0 0
## 2879 TA/TO 0 0
## 2880 TA/TO 0 0
## 2881 Direct 0 0
## 2882 TA/TO 0 0
## 2883 TA/TO 0 0
## 2884 TA/TO 0 0
## 2885 Corporate 0 0
## 2886 TA/TO 0 0
## 2887 TA/TO 0 0
## 2888 TA/TO 0 0
## 2889 TA/TO 0 0
## 2890 Direct 0 0
## 2891 TA/TO 0 0
## 2892 TA/TO 0 0
## 2893 TA/TO 0 0
## 2894 TA/TO 0 0
## 2895 TA/TO 0 0
## 2896 TA/TO 0 0
## 2897 Corporate 0 0
## 2898 Corporate 0 0
## 2899 TA/TO 0 0
## 2900 TA/TO 0 0
## 2901 TA/TO 0 0
## 2902 TA/TO 0 0
## 2903 TA/TO 0 0
## 2904 TA/TO 0 0
## 2905 Corporate 0 0
## 2906 Corporate 0 0
## 2907 TA/TO 0 0
## 2908 TA/TO 0 0
## 2909 TA/TO 0 0
## 2910 TA/TO 0 0
## 2911 Direct 0 0
## 2912 TA/TO 0 0
## 2913 TA/TO 0 0
## 2914 TA/TO 0 0
## 2915 Direct 0 0
## 2916 TA/TO 0 0
## 2917 TA/TO 0 0
## 2918 TA/TO 0 0
## 2919 TA/TO 0 0
## 2920 TA/TO 0 0
## 2921 TA/TO 0 0
## 2922 TA/TO 0 0
## 2923 TA/TO 0 0
## 2924 TA/TO 0 0
## 2925 TA/TO 0 0
## 2926 TA/TO 0 0
## 2927 TA/TO 0 0
## 2928 TA/TO 0 0
## 2929 TA/TO 0 0
## 2930 TA/TO 0 0
## 2931 TA/TO 0 0
## 2932 TA/TO 0 0
## 2933 TA/TO 0 0
## 2934 TA/TO 0 0
## 2935 TA/TO 0 0
## 2936 TA/TO 0 0
## 2937 TA/TO 0 0
## 2938 TA/TO 0 0
## 2939 TA/TO 0 0
## 2940 TA/TO 0 0
## 2941 TA/TO 0 0
## 2942 TA/TO 0 0
## 2943 TA/TO 0 0
## 2944 TA/TO 0 0
## 2945 TA/TO 0 0
## 2946 TA/TO 0 0
## 2947 TA/TO 0 0
## 2948 TA/TO 0 0
## 2949 TA/TO 0 0
## 2950 TA/TO 0 0
## 2951 TA/TO 0 0
## 2952 TA/TO 0 0
## 2953 TA/TO 0 0
## 2954 TA/TO 0 0
## 2955 TA/TO 0 0
## 2956 TA/TO 0 0
## 2957 TA/TO 0 0
## 2958 TA/TO 0 0
## 2959 TA/TO 0 0
## 2960 TA/TO 0 0
## 2961 TA/TO 0 0
## 2962 TA/TO 0 0
## 2963 TA/TO 0 0
## 2964 TA/TO 0 0
## 2965 TA/TO 0 0
## 2966 TA/TO 0 0
## 2967 TA/TO 0 0
## 2968 TA/TO 0 0
## 2969 TA/TO 0 0
## 2970 TA/TO 0 0
## 2971 TA/TO 0 0
## 2972 TA/TO 0 0
## 2973 TA/TO 0 0
## 2974 Direct 0 0
## 2975 TA/TO 0 0
## 2976 TA/TO 0 0
## 2977 TA/TO 0 0
## 2978 TA/TO 0 0
## 2979 TA/TO 0 0
## 2980 TA/TO 0 0
## 2981 TA/TO 0 0
## 2982 TA/TO 0 0
## 2983 TA/TO 0 0
## 2984 TA/TO 0 0
## 2985 TA/TO 0 0
## 2986 TA/TO 0 0
## 2987 TA/TO 0 0
## 2988 TA/TO 0 0
## 2989 Corporate 0 0
## 2990 TA/TO 0 0
## 2991 TA/TO 0 0
## 2992 TA/TO 0 0
## 2993 TA/TO 0 0
## 2994 TA/TO 0 0
## 2995 TA/TO 0 0
## 2996 Direct 0 0
## 2997 Direct 0 0
## 2998 TA/TO 0 0
## 2999 TA/TO 0 0
## 3000 Direct 0 0
## 3001 Direct 0 0
## 3002 TA/TO 0 0
## 3003 Corporate 0 0
## 3004 TA/TO 0 0
## 3005 TA/TO 0 0
## 3006 TA/TO 0 0
## 3007 TA/TO 0 0
## 3008 TA/TO 0 0
## 3009 TA/TO 0 0
## 3010 TA/TO 0 0
## 3011 TA/TO 0 0
## 3012 TA/TO 0 0
## 3013 TA/TO 0 0
## 3014 TA/TO 0 0
## 3015 TA/TO 0 0
## 3016 TA/TO 0 0
## 3017 TA/TO 0 0
## 3018 TA/TO 0 0
## 3019 TA/TO 0 0
## 3020 TA/TO 0 0
## 3021 TA/TO 0 0
## 3022 TA/TO 0 0
## 3023 Direct 0 0
## 3024 TA/TO 0 0
## 3025 TA/TO 0 0
## 3026 TA/TO 0 0
## 3027 TA/TO 0 0
## 3028 TA/TO 0 0
## 3029 TA/TO 0 0
## 3030 TA/TO 0 0
## 3031 Corporate 0 0
## 3032 TA/TO 0 0
## 3033 TA/TO 0 0
## 3034 Corporate 0 0
## 3035 TA/TO 0 0
## 3036 TA/TO 0 0
## 3037 TA/TO 0 0
## 3038 TA/TO 0 0
## 3039 TA/TO 0 0
## 3040 Corporate 0 0
## 3041 TA/TO 0 0
## 3042 TA/TO 0 0
## 3043 TA/TO 0 0
## 3044 Corporate 0 0
## 3045 TA/TO 0 0
## 3046 Corporate 0 0
## 3047 TA/TO 0 0
## 3048 Corporate 0 0
## 3049 Direct 0 0
## 3050 TA/TO 0 0
## 3051 TA/TO 0 0
## 3052 TA/TO 0 0
## 3053 Corporate 0 0
## 3054 TA/TO 0 0
## 3055 TA/TO 0 0
## 3056 TA/TO 0 0
## 3057 TA/TO 0 0
## 3058 TA/TO 0 0
## 3059 TA/TO 0 0
## 3060 TA/TO 0 0
## 3061 TA/TO 0 0
## 3062 TA/TO 0 0
## 3063 TA/TO 0 0
## 3064 TA/TO 0 0
## 3065 TA/TO 0 0
## 3066 TA/TO 0 0
## 3067 TA/TO 0 0
## 3068 TA/TO 0 0
## 3069 Corporate 0 0
## 3070 TA/TO 0 0
## 3071 Direct 0 0
## 3072 Direct 0 0
## 3073 TA/TO 0 0
## 3074 TA/TO 0 0
## 3075 TA/TO 0 0
## 3076 TA/TO 0 0
## 3077 TA/TO 0 0
## 3078 TA/TO 0 0
## 3079 TA/TO 0 0
## 3080 Corporate 0 0
## 3081 TA/TO 0 0
## 3082 Direct 0 0
## 3083 TA/TO 0 0
## 3084 TA/TO 0 0
## 3085 Direct 0 0
## 3086 Direct 0 0
## 3087 TA/TO 0 0
## 3088 Direct 0 0
## 3089 TA/TO 0 0
## 3090 TA/TO 0 0
## 3091 TA/TO 0 0
## 3092 Direct 0 0
## 3093 TA/TO 0 0
## 3094 TA/TO 0 0
## 3095 TA/TO 0 0
## 3096 Direct 0 0
## 3097 Direct 0 0
## 3098 TA/TO 0 0
## 3099 TA/TO 0 0
## 3100 TA/TO 0 0
## 3101 TA/TO 0 0
## 3102 TA/TO 0 0
## 3103 TA/TO 0 0
## 3104 TA/TO 0 0
## 3105 TA/TO 0 0
## 3106 TA/TO 0 0
## 3107 TA/TO 0 0
## 3108 TA/TO 0 0
## 3109 TA/TO 0 0
## 3110 TA/TO 0 0
## 3111 TA/TO 0 0
## 3112 TA/TO 0 0
## 3113 TA/TO 0 0
## 3114 TA/TO 0 0
## 3115 TA/TO 0 0
## 3116 Direct 0 0
## 3117 Direct 0 0
## 3118 TA/TO 0 0
## 3119 TA/TO 0 0
## 3120 TA/TO 0 0
## 3121 TA/TO 0 0
## 3122 TA/TO 0 0
## 3123 TA/TO 0 0
## 3124 TA/TO 0 0
## previous_bookings_not_canceled reserved_room_type assigned_room_type
## 1 0 A A
## 2 0 A A
## 3 0 A A
## 4 0 A A
## 5 0 A A
## 6 0 A A
## 7 0 A A
## 8 0 A A
## 9 0 A A
## 10 0 A A
## 11 0 A A
## 12 0 A A
## 13 0 A A
## 14 0 A A
## 15 0 A A
## 16 0 A A
## 17 0 A A
## 18 0 A A
## 19 0 A A
## 20 0 A A
## 21 0 A A
## 22 0 A A
## 23 0 A A
## 24 0 A A
## 25 0 A A
## 26 0 A A
## 27 0 A A
## 28 0 A A
## 29 0 A A
## 30 0 A A
## 31 0 A A
## 32 0 A A
## 33 0 A A
## 34 0 A A
## 35 0 A A
## 36 0 A A
## 37 0 A A
## 38 0 A A
## 39 0 A A
## 40 0 A A
## 41 0 A A
## 42 0 A A
## 43 0 A A
## 44 0 A A
## 45 0 A A
## 46 0 A A
## 47 0 A A
## 48 0 A A
## 49 0 A A
## 50 0 A A
## 51 0 B B
## 52 0 B B
## 53 0 A A
## 54 0 A A
## 55 0 A A
## 56 0 A A
## 57 0 A A
## 58 0 A A
## 59 0 A A
## 60 0 A A
## 61 0 A A
## 62 0 A A
## 63 0 A A
## 64 0 A A
## 65 0 A A
## 66 0 A A
## 67 0 A A
## 68 0 A A
## 69 0 A A
## 70 0 A A
## 71 0 A A
## 72 0 A A
## 73 0 A A
## 74 0 A A
## 75 0 A A
## 76 0 A A
## 77 0 A A
## 78 0 A A
## 79 0 A A
## 80 0 A A
## 81 0 A A
## 82 0 A A
## 83 0 A A
## 84 0 A A
## 85 0 A A
## 86 0 A A
## 87 0 A A
## 88 0 A A
## 89 0 A A
## 90 0 A A
## 91 0 A A
## 92 0 A A
## 93 0 A A
## 94 0 A A
## 95 0 A A
## 96 0 A A
## 97 0 A A
## 98 0 A A
## 99 0 A A
## 100 0 A A
## 101 0 A A
## 102 0 A A
## 103 0 A A
## 104 0 A A
## 105 0 A A
## 106 0 A A
## 107 0 A A
## 108 0 A A
## 109 0 A A
## 110 0 A A
## 111 0 A A
## 112 0 A A
## 113 0 A A
## 114 0 A A
## 115 0 A A
## 116 0 A A
## 117 0 A A
## 118 0 A A
## 119 0 A A
## 120 0 A A
## 121 0 A A
## 122 0 A A
## 123 0 A A
## 124 0 A A
## 125 0 A A
## 126 0 A A
## 127 0 A A
## 128 0 A A
## 129 0 A A
## 130 0 A A
## 131 0 A A
## 132 0 A A
## 133 0 A A
## 134 0 A A
## 135 0 A F
## 136 0 A A
## 137 0 D D
## 138 0 D D
## 139 0 A A
## 140 0 F A
## 141 0 A A
## 142 0 A A
## 143 0 A A
## 144 0 A A
## 145 0 A A
## 146 0 A A
## 147 0 A A
## 148 0 A A
## 149 0 A A
## 150 0 A A
## 151 0 A A
## 152 0 A A
## 153 0 A A
## 154 0 A A
## 155 0 A A
## 156 0 A A
## 157 0 A A
## 158 0 A A
## 159 0 A A
## 160 0 A A
## 161 0 A A
## 162 0 A A
## 163 0 A A
## 164 0 A A
## 165 0 A A
## 166 0 A A
## 167 0 A A
## 168 0 A A
## 169 0 A A
## 170 0 A A
## 171 0 A A
## 172 0 A A
## 173 0 A A
## 174 0 A A
## 175 0 A A
## 176 0 A A
## 177 0 A A
## 178 0 A A
## 179 0 A A
## 180 0 A A
## 181 0 A A
## 182 0 A A
## 183 0 A A
## 184 0 A A
## 185 0 A A
## 186 0 A A
## 187 0 A A
## 188 0 A A
## 189 0 A A
## 190 0 A A
## 191 0 A A
## 192 0 A A
## 193 0 A A
## 194 0 A A
## 195 0 A A
## 196 0 A A
## 197 0 A A
## 198 0 A A
## 199 0 A A
## 200 0 A A
## 201 0 A A
## 202 0 A A
## 203 0 A A
## 204 0 A A
## 205 0 A A
## 206 0 A A
## 207 0 A A
## 208 0 A A
## 209 0 A A
## 210 0 A A
## 211 0 A A
## 212 0 A A
## 213 0 A A
## 214 0 A A
## 215 0 A A
## 216 0 A A
## 217 0 A A
## 218 0 A A
## 219 0 A A
## 220 0 A A
## 221 0 A A
## 222 0 A A
## 223 0 A A
## 224 0 A A
## 225 0 A A
## 226 0 A A
## 227 0 A A
## 228 0 B B
## 229 0 B B
## 230 0 A A
## 231 0 A A
## 232 0 A A
## 233 0 A A
## 234 0 A A
## 235 0 A A
## 236 0 A A
## 237 0 A A
## 238 0 A D
## 239 0 A A
## 240 0 A A
## 241 0 A A
## 242 0 A A
## 243 0 A A
## 244 0 A A
## 245 0 A A
## 246 0 A A
## 247 0 A A
## 248 0 A A
## 249 0 A A
## 250 0 A A
## 251 0 A D
## 252 0 A A
## 253 0 A A
## 254 0 A D
## 255 0 A A
## 256 0 A A
## 257 0 A A
## 258 0 A A
## 259 0 A A
## 260 0 A A
## 261 0 A A
## 262 0 A A
## 263 0 A A
## 264 0 A A
## 265 0 A A
## 266 0 A A
## 267 0 A A
## 268 0 A G
## 269 0 A A
## 270 0 A A
## 271 0 A A
## 272 0 A A
## 273 0 A A
## 274 0 A A
## 275 0 A A
## 276 0 A A
## 277 0 A A
## 278 0 A A
## 279 0 A A
## 280 0 A A
## 281 0 A A
## 282 0 A D
## 283 0 A A
## 284 0 A A
## 285 0 A A
## 286 0 A A
## 287 0 A A
## 288 0 A A
## 289 0 A A
## 290 0 A D
## 291 0 A D
## 292 0 A A
## 293 0 A A
## 294 0 A A
## 295 0 A A
## 296 0 A A
## 297 0 A A
## 298 0 A A
## 299 0 A A
## 300 0 A A
## 301 0 A A
## 302 0 A A
## 303 0 A A
## 304 0 A D
## 305 0 A D
## 306 0 A A
## 307 0 A B
## 308 0 A A
## 309 0 A D
## 310 0 A A
## 311 0 A F
## 312 0 A D
## 313 0 A A
## 314 0 A A
## 315 0 B D
## 316 0 A A
## 317 0 A A
## 318 0 A E
## 319 0 A B
## 320 0 A D
## 321 0 A A
## 322 0 B B
## 323 0 A A
## 324 0 A A
## 325 0 A A
## 326 0 A A
## 327 0 A A
## 328 0 A A
## 329 0 A A
## 330 0 A A
## 331 0 A A
## 332 0 A A
## 333 0 A A
## 334 0 A A
## 335 0 A A
## 336 0 D F
## 337 0 D D
## 338 0 D A
## 339 0 D A
## 340 0 A A
## 341 0 A D
## 342 0 D A
## 343 0 A A
## 344 0 A D
## 345 0 D D
## 346 0 A A
## 347 0 A A
## 348 0 A A
## 349 0 A D
## 350 0 A A
## 351 0 A A
## 352 0 A A
## 353 0 A A
## 354 0 A A
## 355 0 A A
## 356 0 A A
## 357 0 A A
## 358 0 A A
## 359 0 A A
## 360 0 A A
## 361 0 A A
## 362 0 A A
## 363 0 A A
## 364 0 A A
## 365 0 A A
## 366 0 A A
## 367 0 A A
## 368 0 A A
## 369 0 A A
## 370 0 A A
## 371 0 A A
## 372 0 A A
## 373 0 A A
## 374 0 A A
## 375 0 A D
## 376 0 A A
## 377 0 A D
## 378 0 A A
## 379 0 A A
## 380 0 A A
## 381 0 A A
## 382 0 A D
## 383 0 A A
## 384 0 A D
## 385 0 A A
## 386 0 A D
## 387 0 A A
## 388 0 A A
## 389 0 A A
## 390 0 A A
## 391 0 A D
## 392 0 A D
## 393 0 A D
## 394 0 A D
## 395 0 A D
## 396 0 A K
## 397 0 A D
## 398 0 A D
## 399 0 A B
## 400 0 A A
## 401 0 A A
## 402 0 A A
## 403 0 A D
## 404 0 A A
## 405 0 A A
## 406 0 A A
## 407 0 A A
## 408 0 A B
## 409 0 A A
## 410 0 A A
## 411 0 A A
## 412 0 A A
## 413 0 A A
## 414 0 A D
## 415 0 A A
## 416 0 A A
## 417 0 A A
## 418 0 A A
## 419 0 A A
## 420 0 A A
## 421 0 A A
## 422 0 A A
## 423 0 A A
## 424 0 A A
## 425 0 A E
## 426 0 A A
## 427 0 A A
## 428 0 A A
## 429 0 A A
## 430 0 A A
## 431 0 A A
## 432 0 A A
## 433 0 A A
## 434 0 A A
## 435 0 A A
## 436 0 A A
## 437 0 A A
## 438 0 A A
## 439 0 A D
## 440 0 A A
## 441 0 A A
## 442 0 A A
## 443 0 A A
## 444 0 A A
## 445 0 A A
## 446 0 A A
## 447 0 A A
## 448 0 A A
## 449 0 A A
## 450 0 A A
## 451 0 A A
## 452 0 A A
## 453 0 A A
## 454 0 A D
## 455 0 A A
## 456 0 A A
## 457 0 A A
## 458 0 A A
## 459 0 A A
## 460 0 A A
## 461 0 A A
## 462 0 A A
## 463 0 A A
## 464 0 A A
## 465 0 A A
## 466 0 A D
## 467 0 A A
## 468 0 A A
## 469 0 A D
## 470 0 A A
## 471 0 A A
## 472 0 A E
## 473 0 A D
## 474 0 A A
## 475 0 A A
## 476 0 A A
## 477 0 A F
## 478 0 A D
## 479 0 A D
## 480 0 A D
## 481 0 A A
## 482 0 A A
## 483 0 E E
## 484 0 A A
## 485 0 A A
## 486 0 A A
## 487 0 A A
## 488 0 A A
## 489 0 A A
## 490 0 A A
## 491 0 A D
## 492 0 A A
## 493 0 A A
## 494 0 A A
## 495 0 A A
## 496 0 A A
## 497 0 A D
## 498 0 A A
## 499 0 A A
## 500 0 A A
## 501 0 A A
## 502 0 B B
## 503 0 A A
## 504 0 A A
## 505 0 A A
## 506 0 A A
## 507 0 A A
## 508 0 A A
## 509 0 A A
## 510 0 A A
## 511 0 A A
## 512 0 A A
## 513 0 A D
## 514 0 A A
## 515 0 A A
## 516 0 A A
## 517 0 A A
## 518 0 A A
## 519 0 A D
## 520 0 A A
## 521 0 A A
## 522 0 A A
## 523 0 A A
## 524 0 A A
## 525 0 B B
## 526 0 A A
## 527 0 A A
## 528 0 A A
## 529 0 A A
## 530 0 A A
## 531 0 A A
## 532 0 A D
## 533 0 A D
## 534 0 A D
## 535 0 E D
## 536 0 A A
## 537 0 D D
## 538 0 B B
## 539 0 A D
## 540 0 B B
## 541 0 B B
## 542 0 A A
## 543 0 A D
## 544 0 F F
## 545 0 A A
## 546 0 A A
## 547 0 A A
## 548 0 A A
## 549 0 A A
## 550 0 A A
## 551 0 A A
## 552 0 A A
## 553 0 A A
## 554 0 A A
## 555 0 A A
## 556 0 A A
## 557 0 A A
## 558 0 A A
## 559 0 A A
## 560 0 A A
## 561 0 A A
## 562 0 A A
## 563 0 A A
## 564 0 A A
## 565 0 A A
## 566 0 A A
## 567 0 A A
## 568 0 A A
## 569 0 A D
## 570 0 A A
## 571 0 A A
## 572 0 A A
## 573 0 A A
## 574 0 A A
## 575 0 A A
## 576 0 A D
## 577 0 A A
## 578 0 A A
## 579 0 A D
## 580 0 A A
## 581 0 A A
## 582 0 A D
## 583 0 A A
## 584 0 A A
## 585 0 A A
## 586 0 A A
## 587 0 A A
## 588 0 A A
## 589 0 A D
## 590 0 A A
## 591 0 A D
## 592 0 A A
## 593 0 A A
## 594 0 A A
## 595 0 D D
## 596 0 A A
## 597 0 A A
## 598 0 E A
## 599 0 A A
## 600 0 A A
## 601 0 A A
## 602 0 A A
## 603 0 A A
## 604 0 A A
## 605 0 A A
## 606 0 A A
## 607 0 A D
## 608 0 B B
## 609 0 A A
## 610 0 A A
## 611 0 A A
## 612 0 A A
## 613 0 A A
## 614 0 A A
## 615 0 A A
## 616 0 A A
## 617 0 A A
## 618 0 A A
## 619 0 A A
## 620 0 B B
## 621 0 A D
## 622 0 A A
## 623 0 A A
## 624 0 A A
## 625 0 A A
## 626 0 A A
## 627 0 A D
## 628 0 A A
## 629 0 A A
## 630 0 A A
## 631 0 A D
## 632 0 A D
## 633 0 A A
## 634 0 A D
## 635 0 B D
## 636 0 A A
## 637 0 A A
## 638 0 A A
## 639 0 A D
## 640 0 A A
## 641 0 A A
## 642 0 A D
## 643 0 A A
## 644 0 A A
## 645 0 A A
## 646 0 A D
## 647 0 A A
## 648 0 A A
## 649 0 A A
## 650 0 A A
## 651 0 A A
## 652 0 A A
## 653 0 A A
## 654 0 A D
## 655 0 A A
## 656 0 A D
## 657 0 A A
## 658 0 A A
## 659 0 A A
## 660 0 B E
## 661 0 A D
## 662 0 A A
## 663 0 A A
## 664 0 A A
## 665 0 A A
## 666 0 A A
## 667 0 A D
## 668 0 A A
## 669 0 B B
## 670 0 B B
## 671 0 A A
## 672 0 A A
## 673 0 A D
## 674 0 A D
## 675 0 A D
## 676 0 A A
## 677 0 A A
## 678 0 A A
## 679 0 A A
## 680 0 A A
## 681 0 A D
## 682 0 A A
## 683 0 A B
## 684 0 A A
## 685 0 A A
## 686 0 A A
## 687 0 A A
## 688 0 A D
## 689 0 A A
## 690 0 A A
## 691 0 A A
## 692 0 A A
## 693 0 A A
## 694 0 A A
## 695 0 A D
## 696 0 A A
## 697 0 A A
## 698 0 A A
## 699 0 A A
## 700 0 A B
## 701 0 A A
## 702 0 A A
## 703 0 A A
## 704 0 A A
## 705 0 A A
## 706 0 A A
## 707 0 A A
## 708 0 A B
## 709 0 A D
## 710 0 A A
## 711 0 A A
## 712 0 A D
## 713 0 A A
## 714 0 A A
## 715 0 A A
## 716 0 A A
## 717 0 A A
## 718 0 F F
## 719 0 A A
## 720 0 F F
## 721 0 A A
## 722 0 A A
## 723 0 A A
## 724 0 A A
## 725 0 A A
## 726 0 A D
## 727 0 A A
## 728 0 A A
## 729 0 A A
## 730 0 A A
## 731 0 A D
## 732 0 A A
## 733 0 A A
## 734 0 A A
## 735 0 A A
## 736 0 A A
## 737 0 A A
## 738 0 A A
## 739 0 A A
## 740 0 A A
## 741 0 A A
## 742 0 A A
## 743 0 A A
## 744 0 A A
## 745 0 A A
## 746 0 A A
## 747 0 E E
## 748 0 A A
## 749 0 A A
## 750 0 A A
## 751 0 A A
## 752 0 A D
## 753 0 A A
## 754 0 A A
## 755 0 A A
## 756 0 A A
## 757 0 A A
## 758 0 A A
## 759 0 F F
## 760 0 A A
## 761 0 A A
## 762 0 A A
## 763 0 A A
## 764 0 A D
## 765 0 A D
## 766 0 A D
## 767 0 A D
## 768 0 A D
## 769 0 D D
## 770 0 A A
## 771 0 A A
## 772 0 A A
## 773 0 A A
## 774 0 A A
## 775 0 A A
## 776 0 A A
## 777 0 A A
## 778 0 A A
## 779 0 A A
## 780 0 A A
## 781 0 D D
## 782 0 A A
## 783 0 A A
## 784 0 A A
## 785 0 A A
## 786 0 A D
## 787 0 A A
## 788 0 F F
## 789 0 A A
## 790 0 A A
## 791 0 A A
## 792 0 A A
## 793 0 A A
## 794 0 A A
## 795 0 A A
## 796 0 A A
## 797 0 A A
## 798 0 A A
## 799 0 A A
## 800 0 A A
## 801 0 A A
## 802 0 A A
## 803 0 A A
## 804 0 A A
## 805 0 A A
## 806 0 A A
## 807 0 A A
## 808 0 A A
## 809 0 A A
## 810 0 A A
## 811 0 A A
## 812 0 A A
## 813 0 A A
## 814 0 A A
## 815 0 A A
## 816 0 A D
## 817 0 A A
## 818 0 A A
## 819 0 A A
## 820 0 A A
## 821 0 A A
## 822 0 A D
## 823 0 A A
## 824 0 A D
## 825 0 A A
## 826 0 A B
## 827 0 A A
## 828 0 A A
## 829 0 A A
## 830 0 A A
## 831 0 A D
## 832 0 A D
## 833 0 A A
## 834 0 A D
## 835 0 A D
## 836 0 A A
## 837 0 A A
## 838 0 A A
## 839 0 A A
## 840 0 A B
## 841 0 A D
## 842 0 A A
## 843 0 A A
## 844 0 A A
## 845 0 A A
## 846 0 A A
## 847 0 A A
## 848 0 A A
## 849 0 A A
## 850 0 A A
## 851 0 A A
## 852 0 A A
## 853 0 F F
## 854 0 A A
## 855 0 A A
## 856 0 A E
## 857 0 A A
## 858 0 E E
## 859 0 F F
## 860 0 A A
## 861 0 A A
## 862 0 E E
## 863 0 F B
## 864 0 A A
## 865 0 A A
## 866 0 F F
## 867 0 A A
## 868 0 F B
## 869 0 A A
## 870 0 A A
## 871 0 A A
## 872 0 A A
## 873 0 A A
## 874 0 B B
## 875 0 A A
## 876 0 A A
## 877 0 B B
## 878 0 A D
## 879 0 A A
## 880 0 A A
## 881 0 A A
## 882 0 A A
## 883 0 A D
## 884 0 A D
## 885 0 A A
## 886 0 A A
## 887 0 B B
## 888 0 A A
## 889 0 A A
## 890 0 A D
## 891 0 A A
## 892 0 A A
## 893 0 A A
## 894 0 A A
## 895 0 A A
## 896 0 A D
## 897 0 A A
## 898 0 A A
## 899 0 A D
## 900 0 A D
## 901 0 A D
## 902 0 A D
## 903 0 A A
## 904 0 A D
## 905 0 A D
## 906 0 A A
## 907 0 A D
## 908 0 A A
## 909 0 A A
## 910 0 A D
## 911 0 A D
## 912 0 A A
## 913 0 A A
## 914 0 A A
## 915 0 A D
## 916 0 A D
## 917 0 A D
## 918 0 A D
## 919 0 A D
## 920 0 A D
## 921 0 A A
## 922 0 A A
## 923 0 A D
## 924 0 A A
## 925 0 B B
## 926 0 F F
## 927 0 A A
## 928 0 A D
## 929 0 A A
## 930 0 A A
## 931 0 A A
## 932 0 A A
## 933 0 A D
## 934 0 A A
## 935 0 A A
## 936 0 A A
## 937 0 A D
## 938 0 A A
## 939 0 A A
## 940 0 A A
## 941 0 A B
## 942 0 A A
## 943 0 A A
## 944 0 A A
## 945 0 A A
## 946 0 A E
## 947 0 A A
## 948 0 A A
## 949 0 A A
## 950 0 A B
## 951 0 A D
## 952 0 A A
## 953 0 A B
## 954 0 A A
## 955 0 A A
## 956 0 A D
## 957 0 A D
## 958 0 A A
## 959 0 A A
## 960 0 A A
## 961 0 E K
## 962 0 A E
## 963 0 A A
## 964 0 A E
## 965 0 A A
## 966 0 A A
## 967 0 A A
## 968 0 A A
## 969 0 A D
## 970 0 A A
## 971 0 A A
## 972 0 A A
## 973 0 F F
## 974 0 A A
## 975 0 D D
## 976 0 A A
## 977 0 A D
## 978 0 A D
## 979 0 A D
## 980 0 A A
## 981 0 D A
## 982 0 A A
## 983 0 A D
## 984 0 A D
## 985 0 A A
## 986 0 A A
## 987 0 A A
## 988 0 F F
## 989 0 B B
## 990 0 A A
## 991 0 A A
## 992 0 A A
## 993 0 A E
## 994 0 B B
## 995 0 F F
## 996 0 A A
## 997 0 A K
## 998 0 A A
## 999 0 A A
## 1000 0 E E
## 1001 0 A A
## 1002 0 A A
## 1003 0 A A
## 1004 0 A A
## 1005 0 A A
## 1006 0 A A
## 1007 0 A A
## 1008 0 A A
## 1009 0 A A
## 1010 0 F F
## 1011 0 A A
## 1012 0 A A
## 1013 0 A A
## 1014 0 A A
## 1015 0 A A
## 1016 0 A A
## 1017 0 B B
## 1018 0 B B
## 1019 0 D D
## 1020 0 A A
## 1021 0 B B
## 1022 0 A A
## 1023 0 B B
## 1024 0 A D
## 1025 0 A A
## 1026 0 A A
## 1027 0 A A
## 1028 0 A A
## 1029 0 A A
## 1030 0 A A
## 1031 0 A D
## 1032 0 A A
## 1033 0 A D
## 1034 0 A A
## 1035 0 A A
## 1036 0 F F
## 1037 0 A A
## 1038 0 A D
## 1039 0 A D
## 1040 0 A A
## 1041 0 A A
## 1042 0 B B
## 1043 0 A A
## 1044 0 A A
## 1045 0 A D
## 1046 0 A D
## 1047 0 A A
## 1048 0 A A
## 1049 0 A A
## 1050 0 A A
## 1051 0 A A
## 1052 0 A A
## 1053 0 A A
## 1054 0 A A
## 1055 0 A D
## 1056 0 A A
## 1057 0 A A
## 1058 0 A A
## 1059 0 A A
## 1060 0 B B
## 1061 0 A A
## 1062 0 A A
## 1063 0 A A
## 1064 0 A A
## 1065 0 A D
## 1066 0 A D
## 1067 0 A A
## 1068 0 A A
## 1069 0 A A
## 1070 0 A A
## 1071 0 A A
## 1072 0 A A
## 1073 0 A A
## 1074 0 A A
## 1075 0 A A
## 1076 0 A A
## 1077 0 A A
## 1078 0 F F
## 1079 0 A A
## 1080 0 A K
## 1081 0 A A
## 1082 0 A A
## 1083 0 A B
## 1084 0 D D
## 1085 0 A B
## 1086 0 A A
## 1087 0 A D
## 1088 0 A A
## 1089 0 A A
## 1090 0 A A
## 1091 0 A D
## 1092 0 A A
## 1093 0 A D
## 1094 0 A A
## 1095 0 D D
## 1096 0 A A
## 1097 0 A A
## 1098 0 A A
## 1099 0 A A
## 1100 0 A A
## 1101 0 B B
## 1102 0 A A
## 1103 0 A A
## 1104 0 A A
## 1105 0 A D
## 1106 0 A D
## 1107 0 A D
## 1108 0 A A
## 1109 0 A A
## 1110 0 A D
## 1111 0 A A
## 1112 0 A A
## 1113 0 A A
## 1114 0 A A
## 1115 0 A A
## 1116 0 A A
## 1117 0 A A
## 1118 0 A A
## 1119 0 A A
## 1120 0 A A
## 1121 0 A A
## 1122 0 A D
## 1123 0 A A
## 1124 0 A A
## 1125 0 A A
## 1126 0 A A
## 1127 0 A A
## 1128 0 A A
## 1129 0 A A
## 1130 0 A A
## 1131 0 A D
## 1132 0 A A
## 1133 0 A D
## 1134 0 A A
## 1135 0 A A
## 1136 0 A A
## 1137 0 A A
## 1138 0 A A
## 1139 0 A A
## 1140 0 A A
## 1141 0 A D
## 1142 0 A A
## 1143 0 A A
## 1144 0 A A
## 1145 0 A A
## 1146 0 A A
## 1147 0 A A
## 1148 0 A A
## 1149 0 A A
## 1150 0 A A
## 1151 0 A A
## 1152 0 A D
## 1153 0 A A
## 1154 0 A A
## 1155 0 A A
## 1156 0 A A
## 1157 0 A D
## 1158 0 A A
## 1159 0 A A
## 1160 0 A D
## 1161 0 A A
## 1162 0 A A
## 1163 0 A D
## 1164 0 A A
## 1165 0 A D
## 1166 0 A D
## 1167 0 A A
## 1168 0 A A
## 1169 0 A A
## 1170 0 A A
## 1171 0 A A
## 1172 0 A A
## 1173 0 A A
## 1174 0 A A
## 1175 0 A A
## 1176 0 A D
## 1177 0 A A
## 1178 0 A A
## 1179 0 A A
## 1180 0 A A
## 1181 0 A A
## 1182 0 A A
## 1183 0 A D
## 1184 0 A A
## 1185 0 A A
## 1186 0 A A
## 1187 0 A A
## 1188 0 A A
## 1189 0 A A
## 1190 0 A A
## 1191 0 A A
## 1192 0 A A
## 1193 0 A A
## 1194 0 A D
## 1195 0 A D
## 1196 0 A A
## 1197 0 A D
## 1198 0 A A
## 1199 0 A A
## 1200 0 A A
## 1201 0 A A
## 1202 0 A A
## 1203 0 A A
## 1204 0 A A
## 1205 0 A A
## 1206 0 A A
## 1207 0 A D
## 1208 0 A A
## 1209 0 A A
## 1210 0 A A
## 1211 0 A A
## 1212 0 A A
## 1213 0 A A
## 1214 0 A A
## 1215 0 A A
## 1216 0 A A
## 1217 0 A A
## 1218 0 A A
## 1219 0 A A
## 1220 0 A A
## 1221 0 A A
## 1222 0 A D
## 1223 0 A A
## 1224 0 A A
## 1225 0 A A
## 1226 0 A A
## 1227 0 A A
## 1228 0 A A
## 1229 0 A A
## 1230 0 A A
## 1231 0 A A
## 1232 0 A A
## 1233 0 A A
## 1234 0 A A
## 1235 0 A A
## 1236 0 A A
## 1237 0 A A
## 1238 0 A A
## 1239 0 A A
## 1240 0 A D
## 1241 0 A D
## 1242 0 A D
## 1243 0 A A
## 1244 0 A D
## 1245 0 A A
## 1246 0 A A
## 1247 0 A D
## 1248 0 A A
## 1249 0 A A
## 1250 0 A A
## 1251 0 A A
## 1252 0 A A
## 1253 0 A A
## 1254 0 A A
## 1255 0 A D
## 1256 0 A A
## 1257 0 A A
## 1258 0 A A
## 1259 0 A D
## 1260 0 A A
## 1261 0 A A
## 1262 0 A A
## 1263 0 A A
## 1264 0 A A
## 1265 0 A A
## 1266 0 A A
## 1267 0 A B
## 1268 0 A D
## 1269 0 A A
## 1270 0 A D
## 1271 0 A A
## 1272 0 A A
## 1273 0 A A
## 1274 0 A A
## 1275 0 A A
## 1276 0 A A
## 1277 0 A A
## 1278 0 A A
## 1279 0 A A
## 1280 0 A A
## 1281 0 F F
## 1282 0 A A
## 1283 0 B B
## 1284 0 A A
## 1285 0 B B
## 1286 0 A A
## 1287 0 A A
## 1288 0 A A
## 1289 0 A A
## 1290 0 A A
## 1291 0 A A
## 1292 0 A A
## 1293 0 A E
## 1294 0 B B
## 1295 0 A B
## 1296 0 A B
## 1297 0 A E
## 1298 0 F F
## 1299 0 A B
## 1300 0 F F
## 1301 0 A D
## 1302 0 A A
## 1303 0 A A
## 1304 0 A A
## 1305 0 A A
## 1306 0 A E
## 1307 0 A A
## 1308 0 A A
## 1309 0 A A
## 1310 0 A A
## 1311 0 A A
## 1312 0 A A
## 1313 0 A A
## 1314 0 A E
## 1315 0 A A
## 1316 0 A A
## 1317 0 A D
## 1318 0 A A
## 1319 0 A A
## 1320 0 A A
## 1321 0 A A
## 1322 0 A A
## 1323 0 A A
## 1324 0 A A
## 1325 0 A A
## 1326 0 A A
## 1327 0 A B
## 1328 0 A A
## 1329 0 A A
## 1330 0 A D
## 1331 0 A A
## 1332 0 A A
## 1333 0 A A
## 1334 0 A A
## 1335 0 A D
## 1336 0 A A
## 1337 0 A A
## 1338 0 A A
## 1339 0 A A
## 1340 0 A A
## 1341 0 A A
## 1342 0 A A
## 1343 0 A A
## 1344 0 A D
## 1345 0 A A
## 1346 0 A A
## 1347 0 A A
## 1348 0 A E
## 1349 0 A A
## 1350 0 A A
## 1351 0 A A
## 1352 0 A D
## 1353 0 A D
## 1354 0 A A
## 1355 0 A A
## 1356 0 A A
## 1357 0 A A
## 1358 0 A A
## 1359 0 A A
## 1360 0 A D
## 1361 0 A E
## 1362 0 A D
## 1363 0 A A
## 1364 0 A A
## 1365 0 A A
## 1366 0 A A
## 1367 0 A A
## 1368 0 A A
## 1369 0 A A
## 1370 0 A A
## 1371 0 A A
## 1372 0 A D
## 1373 0 A A
## 1374 0 A A
## 1375 0 A E
## 1376 0 A D
## 1377 0 A A
## 1378 0 A A
## 1379 0 F F
## 1380 0 A D
## 1381 0 F F
## 1382 0 A A
## 1383 0 F F
## 1384 0 A A
## 1385 0 A A
## 1386 0 B B
## 1387 0 B B
## 1388 0 A A
## 1389 0 D D
## 1390 0 A A
## 1391 0 A D
## 1392 0 A A
## 1393 0 A D
## 1394 0 A A
## 1395 0 A D
## 1396 0 A A
## 1397 0 A A
## 1398 0 A D
## 1399 0 A A
## 1400 0 A A
## 1401 0 A A
## 1402 0 A D
## 1403 0 A A
## 1404 0 A A
## 1405 0 A A
## 1406 0 D D
## 1407 0 A A
## 1408 0 A D
## 1409 0 A A
## 1410 0 A A
## 1411 0 A A
## 1412 0 A A
## 1413 0 A A
## 1414 0 A A
## 1415 0 A A
## 1416 0 A D
## 1417 0 A A
## 1418 0 A A
## 1419 0 A D
## 1420 0 A A
## 1421 0 A A
## 1422 0 A A
## 1423 0 A A
## 1424 0 A A
## 1425 0 A A
## 1426 0 A D
## 1427 0 A A
## 1428 0 A A
## 1429 0 A A
## 1430 0 F F
## 1431 0 A D
## 1432 0 A D
## 1433 0 A A
## 1434 0 A A
## 1435 0 A A
## 1436 0 A A
## 1437 0 A A
## 1438 0 A A
## 1439 0 A D
## 1440 0 A D
## 1441 0 A A
## 1442 0 F F
## 1443 0 A A
## 1444 0 A A
## 1445 0 A A
## 1446 0 A A
## 1447 0 A A
## 1448 0 A A
## 1449 0 A A
## 1450 0 A A
## 1451 0 A A
## 1452 0 A D
## 1453 0 A A
## 1454 0 A A
## 1455 0 A A
## 1456 0 A A
## 1457 0 A A
## 1458 0 A A
## 1459 0 A A
## 1460 0 B B
## 1461 0 A A
## 1462 0 A A
## 1463 0 A D
## 1464 0 B B
## 1465 0 A A
## 1466 0 A A
## 1467 0 A A
## 1468 0 A A
## 1469 0 A D
## 1470 0 A A
## 1471 0 A A
## 1472 0 A A
## 1473 0 A A
## 1474 0 A A
## 1475 0 A A
## 1476 0 A A
## 1477 0 A A
## 1478 0 A A
## 1479 0 A A
## 1480 0 D D
## 1481 0 A A
## 1482 0 D D
## 1483 0 A A
## 1484 0 A A
## 1485 0 A A
## 1486 0 A A
## 1487 0 A A
## 1488 0 A A
## 1489 0 A A
## 1490 0 A A
## 1491 0 A D
## 1492 0 A A
## 1493 0 A A
## 1494 0 A A
## 1495 0 A D
## 1496 0 A A
## 1497 0 D D
## 1498 0 A A
## 1499 0 A A
## 1500 0 A A
## 1501 0 D D
## 1502 0 A A
## 1503 0 F F
## 1504 0 A A
## 1505 0 A B
## 1506 0 A A
## 1507 0 A A
## 1508 0 A A
## 1509 0 F F
## 1510 0 A A
## 1511 0 A A
## 1512 0 A D
## 1513 0 A A
## 1514 0 A A
## 1515 0 A E
## 1516 0 A D
## 1517 0 A A
## 1518 0 A A
## 1519 0 A A
## 1520 0 A D
## 1521 0 A A
## 1522 0 A D
## 1523 0 A A
## 1524 0 A D
## 1525 0 A E
## 1526 0 A A
## 1527 0 A A
## 1528 0 A D
## 1529 0 A A
## 1530 0 A D
## 1531 0 A D
## 1532 0 A A
## 1533 0 D D
## 1534 0 D D
## 1535 0 A A
## 1536 0 A A
## 1537 0 A A
## 1538 0 A A
## 1539 0 A A
## 1540 0 A A
## 1541 0 A B
## 1542 0 A B
## 1543 0 A A
## 1544 0 E E
## 1545 0 A A
## 1546 0 A A
## 1547 0 A A
## 1548 0 A D
## 1549 0 A A
## 1550 0 A A
## 1551 0 A A
## 1552 0 A D
## 1553 0 A A
## 1554 0 F F
## 1555 0 A A
## 1556 0 A A
## 1557 0 A A
## 1558 0 A A
## 1559 0 A D
## 1560 0 A D
## 1561 0 A A
## 1562 0 A A
## 1563 0 A A
## 1564 0 A A
## 1565 0 A A
## 1566 0 A A
## 1567 0 A A
## 1568 0 F F
## 1569 0 A A
## 1570 0 A A
## 1571 0 A A
## 1572 0 A A
## 1573 0 A E
## 1574 0 A A
## 1575 0 A A
## 1576 0 A A
## 1577 0 A D
## 1578 0 A A
## 1579 0 A A
## 1580 0 A D
## 1581 0 F F
## 1582 0 A A
## 1583 0 A A
## 1584 0 A A
## 1585 0 A A
## 1586 0 A D
## 1587 0 A A
## 1588 0 A A
## 1589 0 A A
## 1590 0 A A
## 1591 0 A D
## 1592 0 A A
## 1593 0 A A
## 1594 0 A A
## 1595 0 A D
## 1596 0 A A
## 1597 0 A A
## 1598 0 A D
## 1599 0 F F
## 1600 0 A A
## 1601 0 D A
## 1602 0 A A
## 1603 0 D D
## 1604 0 A A
## 1605 0 A A
## 1606 0 A A
## 1607 0 A D
## 1608 0 A A
## 1609 0 A A
## 1610 0 A A
## 1611 0 A A
## 1612 0 F F
## 1613 0 A A
## 1614 0 A A
## 1615 0 A E
## 1616 0 A A
## 1617 0 A A
## 1618 0 A A
## 1619 0 F F
## 1620 0 A A
## 1621 0 A E
## 1622 0 F F
## 1623 0 A A
## 1624 0 A A
## 1625 0 A D
## 1626 0 D D
## 1627 0 A A
## 1628 0 A A
## 1629 0 A A
## 1630 0 A A
## 1631 0 A A
## 1632 0 F F
## 1633 0 A A
## 1634 0 A A
## 1635 0 A A
## 1636 0 A A
## 1637 0 A A
## 1638 0 A A
## 1639 0 A D
## 1640 0 A A
## 1641 0 A A
## 1642 0 A D
## 1643 0 A A
## 1644 0 A D
## 1645 0 A A
## 1646 0 A A
## 1647 0 A A
## 1648 0 A A
## 1649 0 A A
## 1650 0 A A
## 1651 0 A A
## 1652 0 F F
## 1653 0 A A
## 1654 0 F F
## 1655 0 A D
## 1656 0 A A
## 1657 0 D D
## 1658 0 A A
## 1659 0 A A
## 1660 0 A A
## 1661 0 A A
## 1662 0 A A
## 1663 0 A A
## 1664 0 A A
## 1665 0 A A
## 1666 0 A A
## 1667 0 A A
## 1668 0 A A
## 1669 0 A D
## 1670 0 A D
## 1671 0 A A
## 1672 0 A A
## 1673 0 A A
## 1674 0 A A
## 1675 0 A A
## 1676 0 A A
## 1677 0 A A
## 1678 0 A A
## 1679 0 A A
## 1680 0 A A
## 1681 0 A A
## 1682 0 A A
## 1683 0 A D
## 1684 0 A A
## 1685 0 A A
## 1686 0 A A
## 1687 0 A A
## 1688 0 A D
## 1689 0 A A
## 1690 0 A A
## 1691 0 A A
## 1692 0 A A
## 1693 0 A A
## 1694 0 A A
## 1695 0 A A
## 1696 0 A A
## 1697 0 F F
## 1698 0 D A
## 1699 0 A A
## 1700 0 A A
## 1701 0 A A
## 1702 0 A A
## 1703 0 A A
## 1704 0 A A
## 1705 0 A A
## 1706 0 A D
## 1707 0 A B
## 1708 0 A B
## 1709 0 A D
## 1710 0 A A
## 1711 0 A D
## 1712 0 A A
## 1713 0 A D
## 1714 0 A A
## 1715 0 A A
## 1716 0 F F
## 1717 0 A A
## 1718 0 A A
## 1719 0 A A
## 1720 0 A A
## 1721 0 A A
## 1722 0 A A
## 1723 0 A D
## 1724 0 F F
## 1725 0 A A
## 1726 0 A D
## 1727 0 A A
## 1728 0 A A
## 1729 0 A A
## 1730 0 A B
## 1731 0 A A
## 1732 0 A A
## 1733 0 A D
## 1734 0 A D
## 1735 0 A A
## 1736 0 A D
## 1737 0 A D
## 1738 0 A A
## 1739 0 A D
## 1740 0 A A
## 1741 0 A A
## 1742 0 A A
## 1743 0 A A
## 1744 0 A A
## 1745 0 A A
## 1746 0 A A
## 1747 0 A A
## 1748 0 A A
## 1749 0 A A
## 1750 0 A D
## 1751 0 A A
## 1752 0 A A
## 1753 0 A A
## 1754 0 A D
## 1755 0 A A
## 1756 0 A D
## 1757 0 A D
## 1758 0 B B
## 1759 0 B B
## 1760 0 A D
## 1761 0 D A
## 1762 0 A A
## 1763 0 B B
## 1764 0 A D
## 1765 0 A A
## 1766 0 A D
## 1767 0 A A
## 1768 0 A A
## 1769 0 A D
## 1770 0 A D
## 1771 0 A A
## 1772 0 A A
## 1773 0 A A
## 1774 0 A A
## 1775 0 A D
## 1776 0 A A
## 1777 0 A A
## 1778 0 A D
## 1779 0 A A
## 1780 0 A A
## 1781 0 A D
## 1782 0 A A
## 1783 0 A A
## 1784 0 A A
## 1785 0 A A
## 1786 0 A A
## 1787 0 A D
## 1788 0 A D
## 1789 0 A D
## 1790 0 A A
## 1791 0 A A
## 1792 0 A A
## 1793 0 A A
## 1794 0 A A
## 1795 0 A A
## 1796 0 F F
## 1797 0 A A
## 1798 0 A A
## 1799 0 A D
## 1800 0 A D
## 1801 0 A A
## 1802 0 A A
## 1803 0 A A
## 1804 0 A A
## 1805 0 A A
## 1806 0 F F
## 1807 0 A A
## 1808 0 A A
## 1809 0 F F
## 1810 0 A D
## 1811 0 A A
## 1812 0 A A
## 1813 0 A A
## 1814 0 F F
## 1815 0 A A
## 1816 0 A D
## 1817 0 A A
## 1818 0 A D
## 1819 0 A A
## 1820 0 A A
## 1821 0 A D
## 1822 0 D G
## 1823 0 F F
## 1824 0 A G
## 1825 0 A D
## 1826 0 A D
## 1827 0 D D
## 1828 0 A A
## 1829 0 A D
## 1830 0 A A
## 1831 0 A A
## 1832 0 A A
## 1833 0 A D
## 1834 0 A B
## 1835 0 A A
## 1836 0 A D
## 1837 0 A A
## 1838 0 A A
## 1839 0 A A
## 1840 0 A A
## 1841 0 A E
## 1842 0 A A
## 1843 0 A A
## 1844 0 A A
## 1845 0 A D
## 1846 0 A A
## 1847 0 A A
## 1848 0 A E
## 1849 0 A A
## 1850 0 E E
## 1851 0 A D
## 1852 0 A A
## 1853 0 A A
## 1854 0 A A
## 1855 0 A D
## 1856 0 A A
## 1857 0 A A
## 1858 0 A E
## 1859 0 A A
## 1860 0 A A
## 1861 0 A B
## 1862 0 A A
## 1863 0 A A
## 1864 0 A A
## 1865 0 A A
## 1866 0 A A
## 1867 0 A B
## 1868 0 A D
## 1869 0 A A
## 1870 0 A E
## 1871 0 A A
## 1872 0 A A
## 1873 0 A A
## 1874 0 A A
## 1875 0 A A
## 1876 0 A A
## 1877 0 F F
## 1878 0 A A
## 1879 0 E E
## 1880 0 A D
## 1881 0 A A
## 1882 0 A A
## 1883 0 A A
## 1884 0 A A
## 1885 0 A D
## 1886 0 A D
## 1887 0 A D
## 1888 0 B B
## 1889 0 B B
## 1890 0 A A
## 1891 0 A A
## 1892 0 A A
## 1893 0 B B
## 1894 0 A A
## 1895 0 A A
## 1896 0 B B
## 1897 0 A A
## 1898 0 A A
## 1899 0 A D
## 1900 0 A D
## 1901 0 D D
## 1902 0 F F
## 1903 0 A A
## 1904 0 A A
## 1905 0 A A
## 1906 0 A A
## 1907 0 A A
## 1908 0 A A
## 1909 0 A A
## 1910 0 F F
## 1911 0 A A
## 1912 0 A A
## 1913 0 A D
## 1914 0 A A
## 1915 0 A D
## 1916 0 A D
## 1917 0 A A
## 1918 0 F F
## 1919 0 A A
## 1920 0 A D
## 1921 0 A A
## 1922 0 A A
## 1923 0 A D
## 1924 0 A A
## 1925 0 F F
## 1926 0 A A
## 1927 0 A A
## 1928 0 A A
## 1929 0 A A
## 1930 0 A A
## 1931 0 A A
## 1932 0 A A
## 1933 0 A A
## 1934 0 A D
## 1935 0 A A
## 1936 0 A D
## 1937 0 A A
## 1938 0 A A
## 1939 0 A A
## 1940 0 A A
## 1941 0 A A
## 1942 0 A D
## 1943 0 A A
## 1944 0 A A
## 1945 0 A A
## 1946 0 A D
## 1947 0 A A
## 1948 0 A A
## 1949 0 A A
## 1950 0 A A
## 1951 0 A A
## 1952 0 A A
## 1953 0 A D
## 1954 0 A A
## 1955 0 A A
## 1956 0 A D
## 1957 0 E E
## 1958 0 F F
## 1959 0 A A
## 1960 0 A A
## 1961 0 A A
## 1962 0 A A
## 1963 0 A A
## 1964 0 D D
## 1965 0 A A
## 1966 0 D D
## 1967 0 A A
## 1968 0 A D
## 1969 0 D D
## 1970 0 A A
## 1971 0 D D
## 1972 0 A D
## 1973 0 A A
## 1974 0 A D
## 1975 0 A A
## 1976 0 A A
## 1977 0 A A
## 1978 0 A A
## 1979 0 A A
## 1980 0 A A
## 1981 0 A A
## 1982 0 A A
## 1983 0 A A
## 1984 0 A A
## 1985 0 A A
## 1986 0 A A
## 1987 0 A A
## 1988 0 A A
## 1989 0 A A
## 1990 0 A A
## 1991 0 A A
## 1992 0 A A
## 1993 0 A A
## 1994 0 A A
## 1995 0 A A
## 1996 0 A A
## 1997 0 A A
## 1998 0 A A
## 1999 0 A A
## 2000 0 A A
## 2001 0 A A
## 2002 0 A A
## 2003 0 A A
## 2004 0 A A
## 2005 0 A A
## 2006 0 A A
## 2007 0 A A
## 2008 0 A A
## 2009 0 A A
## 2010 0 A A
## 2011 0 A A
## 2012 0 A A
## 2013 0 A A
## 2014 0 A A
## 2015 0 A A
## 2016 0 A A
## 2017 0 A A
## 2018 0 D D
## 2019 0 A A
## 2020 0 A A
## 2021 0 A D
## 2022 0 A A
## 2023 0 A A
## 2024 0 A A
## 2025 0 D E
## 2026 0 A D
## 2027 0 A A
## 2028 0 A A
## 2029 0 A A
## 2030 0 A A
## 2031 0 A A
## 2032 0 A A
## 2033 0 A A
## 2034 0 A A
## 2035 0 A A
## 2036 0 A A
## 2037 0 A A
## 2038 0 A A
## 2039 0 A D
## 2040 0 A A
## 2041 0 A A
## 2042 0 A A
## 2043 0 A D
## 2044 0 A A
## 2045 0 A A
## 2046 0 A A
## 2047 0 F F
## 2048 0 A A
## 2049 0 A A
## 2050 0 A A
## 2051 0 A A
## 2052 0 A A
## 2053 0 A A
## 2054 0 A D
## 2055 0 A A
## 2056 0 A A
## 2057 0 A D
## 2058 0 A A
## 2059 0 A A
## 2060 0 A A
## 2061 0 A A
## 2062 0 F F
## 2063 0 A A
## 2064 0 A A
## 2065 0 A A
## 2066 0 A A
## 2067 0 A A
## 2068 0 A A
## 2069 0 A A
## 2070 0 A D
## 2071 0 A A
## 2072 0 A A
## 2073 0 A D
## 2074 0 A A
## 2075 0 A A
## 2076 0 A A
## 2077 0 A A
## 2078 0 A A
## 2079 0 A D
## 2080 0 A D
## 2081 0 A E
## 2082 0 A F
## 2083 0 A A
## 2084 0 A A
## 2085 0 A B
## 2086 0 E E
## 2087 0 A A
## 2088 0 E E
## 2089 0 F F
## 2090 0 A A
## 2091 0 A A
## 2092 0 A A
## 2093 0 B B
## 2094 0 B B
## 2095 0 A A
## 2096 0 A A
## 2097 0 A A
## 2098 0 A A
## 2099 0 A D
## 2100 0 A D
## 2101 0 A A
## 2102 0 A A
## 2103 0 A D
## 2104 0 A A
## 2105 0 G G
## 2106 0 A E
## 2107 0 A A
## 2108 0 A D
## 2109 0 A D
## 2110 0 A F
## 2111 0 A A
## 2112 0 A D
## 2113 0 A A
## 2114 0 A D
## 2115 0 D D
## 2116 0 A D
## 2117 0 A D
## 2118 0 A D
## 2119 0 D D
## 2120 0 A A
## 2121 0 A D
## 2122 0 A B
## 2123 0 A A
## 2124 0 A A
## 2125 0 A A
## 2126 0 A A
## 2127 0 A D
## 2128 0 A A
## 2129 0 A A
## 2130 0 A A
## 2131 0 D D
## 2132 0 A A
## 2133 0 A A
## 2134 0 A B
## 2135 0 A D
## 2136 0 A A
## 2137 0 A A
## 2138 0 A A
## 2139 0 A A
## 2140 0 A D
## 2141 0 A A
## 2142 0 A A
## 2143 0 A E
## 2144 0 A A
## 2145 0 A A
## 2146 0 A B
## 2147 0 A A
## 2148 0 A A
## 2149 0 A A
## 2150 0 A D
## 2151 0 A D
## 2152 0 A A
## 2153 0 A A
## 2154 0 A A
## 2155 0 E E
## 2156 0 F F
## 2157 0 A A
## 2158 0 A A
## 2159 0 F F
## 2160 0 A A
## 2161 0 D D
## 2162 0 F F
## 2163 0 A A
## 2164 0 A A
## 2165 0 A A
## 2166 0 D D
## 2167 0 D D
## 2168 0 A A
## 2169 0 A A
## 2170 0 A F
## 2171 0 A A
## 2172 0 A D
## 2173 0 A A
## 2174 0 A A
## 2175 0 A A
## 2176 0 D D
## 2177 0 F F
## 2178 0 A A
## 2179 0 A B
## 2180 0 A D
## 2181 0 A A
## 2182 0 A A
## 2183 0 A A
## 2184 0 A A
## 2185 0 A A
## 2186 0 A A
## 2187 0 A D
## 2188 0 A A
## 2189 0 A A
## 2190 0 A A
## 2191 0 A A
## 2192 0 D D
## 2193 0 A A
## 2194 0 A A
## 2195 0 A D
## 2196 0 A A
## 2197 0 A D
## 2198 0 A B
## 2199 0 A A
## 2200 0 A A
## 2201 0 F F
## 2202 0 A A
## 2203 0 A D
## 2204 0 A D
## 2205 0 A D
## 2206 0 A D
## 2207 0 A D
## 2208 0 A A
## 2209 0 A D
## 2210 0 A A
## 2211 0 A A
## 2212 0 A D
## 2213 0 A A
## 2214 0 E E
## 2215 0 A A
## 2216 0 A A
## 2217 0 A D
## 2218 0 A A
## 2219 0 A A
## 2220 0 A D
## 2221 0 A D
## 2222 0 A A
## 2223 0 A A
## 2224 0 A A
## 2225 0 A A
## 2226 0 A A
## 2227 0 A A
## 2228 0 A A
## 2229 0 A A
## 2230 0 A A
## 2231 0 A A
## 2232 0 A E
## 2233 0 A A
## 2234 0 A D
## 2235 0 A D
## 2236 0 A D
## 2237 0 A A
## 2238 0 A A
## 2239 0 A A
## 2240 0 A A
## 2241 0 A A
## 2242 0 A A
## 2243 0 A A
## 2244 0 D D
## 2245 0 A D
## 2246 0 A A
## 2247 0 A A
## 2248 0 A D
## 2249 0 A B
## 2250 0 D D
## 2251 0 A A
## 2252 0 A A
## 2253 0 A B
## 2254 0 A A
## 2255 0 A A
## 2256 0 A A
## 2257 0 A A
## 2258 0 A D
## 2259 0 A A
## 2260 0 A A
## 2261 0 A A
## 2262 0 D D
## 2263 0 A A
## 2264 0 D D
## 2265 0 A A
## 2266 0 A A
## 2267 0 A E
## 2268 0 A A
## 2269 0 A A
## 2270 0 A E
## 2271 0 A A
## 2272 0 A A
## 2273 0 A A
## 2274 0 A A
## 2275 0 A A
## 2276 0 A A
## 2277 0 A A
## 2278 0 A A
## 2279 0 A A
## 2280 0 A A
## 2281 0 A A
## 2282 0 E G
## 2283 0 A A
## 2284 0 A A
## 2285 0 A A
## 2286 0 A A
## 2287 0 F F
## 2288 0 A A
## 2289 0 A A
## 2290 0 A A
## 2291 0 A A
## 2292 0 A A
## 2293 0 A A
## 2294 0 A A
## 2295 0 A A
## 2296 0 A A
## 2297 0 A A
## 2298 0 A A
## 2299 0 A A
## 2300 0 A A
## 2301 0 A A
## 2302 0 A A
## 2303 0 A A
## 2304 0 A D
## 2305 0 A A
## 2306 0 A A
## 2307 0 A A
## 2308 0 A A
## 2309 0 A D
## 2310 0 A A
## 2311 0 A A
## 2312 0 A A
## 2313 0 A A
## 2314 0 A A
## 2315 0 A A
## 2316 0 A A
## 2317 0 A D
## 2318 0 A A
## 2319 0 A A
## 2320 0 A A
## 2321 0 A A
## 2322 0 A A
## 2323 0 A A
## 2324 0 A D
## 2325 0 F F
## 2326 0 A A
## 2327 0 F F
## 2328 0 A D
## 2329 0 F F
## 2330 0 A D
## 2331 0 A D
## 2332 0 F F
## 2333 0 A A
## 2334 0 F F
## 2335 0 A D
## 2336 0 A A
## 2337 0 A A
## 2338 0 A D
## 2339 0 A A
## 2340 0 A D
## 2341 0 A A
## 2342 0 A A
## 2343 0 A D
## 2344 0 A A
## 2345 0 A D
## 2346 0 A A
## 2347 0 A A
## 2348 0 A A
## 2349 0 A A
## 2350 0 A A
## 2351 0 A A
## 2352 0 A A
## 2353 0 A A
## 2354 0 A D
## 2355 0 A B
## 2356 0 A D
## 2357 0 A D
## 2358 0 A A
## 2359 0 A A
## 2360 0 A A
## 2361 0 A A
## 2362 0 A A
## 2363 0 A A
## 2364 0 A A
## 2365 0 A A
## 2366 0 A A
## 2367 0 A A
## 2368 0 A A
## 2369 0 A A
## 2370 0 A D
## 2371 0 A A
## 2372 0 A A
## 2373 0 A A
## 2374 0 A A
## 2375 0 A A
## 2376 0 A A
## 2377 0 A A
## 2378 0 A C
## 2379 0 A A
## 2380 0 A A
## 2381 0 D D
## 2382 0 A D
## 2383 0 A D
## 2384 0 A A
## 2385 0 D E
## 2386 0 A A
## 2387 0 A D
## 2388 0 A B
## 2389 0 A A
## 2390 0 A A
## 2391 0 A A
## 2392 0 A B
## 2393 0 A A
## 2394 0 A A
## 2395 0 A A
## 2396 0 A D
## 2397 0 A A
## 2398 0 A A
## 2399 0 A G
## 2400 0 A F
## 2401 0 A A
## 2402 0 A A
## 2403 0 A D
## 2404 0 A D
## 2405 0 A D
## 2406 0 A A
## 2407 0 A D
## 2408 0 A A
## 2409 0 A A
## 2410 0 A B
## 2411 0 A A
## 2412 0 A A
## 2413 0 A D
## 2414 0 A A
## 2415 0 A A
## 2416 0 A A
## 2417 0 A A
## 2418 0 A A
## 2419 0 A A
## 2420 0 A D
## 2421 0 A D
## 2422 0 A A
## 2423 0 A A
## 2424 0 A B
## 2425 0 A A
## 2426 0 A A
## 2427 0 A D
## 2428 0 A A
## 2429 0 A A
## 2430 0 A D
## 2431 0 A A
## 2432 0 A A
## 2433 0 A A
## 2434 0 A B
## 2435 0 A A
## 2436 0 A A
## 2437 0 A D
## 2438 0 A A
## 2439 0 A A
## 2440 0 A A
## 2441 0 A A
## 2442 0 A B
## 2443 0 A B
## 2444 0 A A
## 2445 0 A A
## 2446 0 A A
## 2447 0 A D
## 2448 0 A A
## 2449 0 A A
## 2450 0 A A
## 2451 0 A B
## 2452 0 A B
## 2453 0 A A
## 2454 0 A A
## 2455 0 A A
## 2456 0 A A
## 2457 0 A A
## 2458 0 A A
## 2459 0 A A
## 2460 0 A A
## 2461 0 A D
## 2462 0 A D
## 2463 0 A A
## 2464 0 A D
## 2465 0 A A
## 2466 0 A A
## 2467 0 A A
## 2468 0 A A
## 2469 0 A A
## 2470 0 D D
## 2471 0 A E
## 2472 0 A E
## 2473 0 D D
## 2474 0 D D
## 2475 0 A A
## 2476 0 A A
## 2477 0 A A
## 2478 0 A A
## 2479 0 A A
## 2480 0 A D
## 2481 0 A A
## 2482 0 A A
## 2483 0 D D
## 2484 0 A A
## 2485 0 A A
## 2486 0 A A
## 2487 0 A A
## 2488 0 A A
## 2489 0 A A
## 2490 0 A A
## 2491 0 A A
## 2492 0 A A
## 2493 0 A A
## 2494 0 A A
## 2495 0 A A
## 2496 0 A A
## 2497 0 A A
## 2498 0 A A
## 2499 0 A A
## 2500 0 A A
## 2501 0 A A
## 2502 0 A D
## 2503 0 A A
## 2504 0 A A
## 2505 0 A E
## 2506 0 A A
## 2507 0 A G
## 2508 0 A A
## 2509 0 A A
## 2510 0 A A
## 2511 0 A A
## 2512 0 A D
## 2513 0 A A
## 2514 0 A A
## 2515 0 A A
## 2516 0 A D
## 2517 0 A A
## 2518 0 F F
## 2519 0 A A
## 2520 0 A A
## 2521 0 A A
## 2522 0 A A
## 2523 0 A A
## 2524 0 A A
## 2525 0 D D
## 2526 0 A E
## 2527 0 A A
## 2528 0 A A
## 2529 0 D D
## 2530 0 A A
## 2531 0 A A
## 2532 0 A K
## 2533 0 A A
## 2534 0 A A
## 2535 0 A A
## 2536 0 A A
## 2537 0 F F
## 2538 0 A A
## 2539 0 A A
## 2540 0 A A
## 2541 0 A A
## 2542 0 A A
## 2543 0 A A
## 2544 0 A A
## 2545 0 A A
## 2546 0 A A
## 2547 0 A A
## 2548 0 A A
## 2549 0 A A
## 2550 0 A A
## 2551 0 A A
## 2552 0 A A
## 2553 0 A A
## 2554 0 D D
## 2555 0 A A
## 2556 0 A A
## 2557 0 A A
## 2558 0 A A
## 2559 0 A A
## 2560 0 A A
## 2561 0 D D
## 2562 0 D D
## 2563 0 A A
## 2564 0 A A
## 2565 0 A A
## 2566 0 A A
## 2567 0 A A
## 2568 0 A A
## 2569 0 A A
## 2570 0 A A
## 2571 0 D D
## 2572 0 A A
## 2573 0 B B
## 2574 0 F F
## 2575 0 A A
## 2576 0 A A
## 2577 0 A A
## 2578 0 A A
## 2579 0 D D
## 2580 0 A D
## 2581 0 A A
## 2582 0 A A
## 2583 0 B B
## 2584 0 A A
## 2585 0 A A
## 2586 0 A A
## 2587 0 D D
## 2588 0 A A
## 2589 0 A A
## 2590 0 A A
## 2591 0 A A
## 2592 0 A A
## 2593 0 A A
## 2594 0 A A
## 2595 0 A A
## 2596 0 A D
## 2597 0 A A
## 2598 0 A D
## 2599 0 A A
## 2600 0 A A
## 2601 0 A D
## 2602 0 A A
## 2603 0 A D
## 2604 0 A A
## 2605 0 A A
## 2606 0 A A
## 2607 0 A A
## 2608 0 A D
## 2609 0 A D
## 2610 0 A E
## 2611 0 A A
## 2612 0 A A
## 2613 0 A D
## 2614 0 A A
## 2615 0 A D
## 2616 0 A A
## 2617 0 A D
## 2618 0 A D
## 2619 0 A A
## 2620 0 A D
## 2621 0 A A
## 2622 0 A A
## 2623 0 A A
## 2624 0 A A
## 2625 0 A A
## 2626 0 A A
## 2627 0 A B
## 2628 0 A B
## 2629 0 A A
## 2630 0 A A
## 2631 0 A A
## 2632 0 A D
## 2633 0 A A
## 2634 0 A A
## 2635 0 A A
## 2636 0 A B
## 2637 0 A A
## 2638 0 A A
## 2639 0 A D
## 2640 0 A D
## 2641 0 A A
## 2642 0 A A
## 2643 0 A A
## 2644 0 A D
## 2645 0 A A
## 2646 0 A D
## 2647 0 A A
## 2648 0 A A
## 2649 0 A A
## 2650 0 A D
## 2651 0 A D
## 2652 0 F F
## 2653 0 A A
## 2654 0 A A
## 2655 0 A A
## 2656 0 A A
## 2657 0 A A
## 2658 0 A A
## 2659 0 A A
## 2660 0 A A
## 2661 0 A A
## 2662 0 A D
## 2663 0 A D
## 2664 0 A A
## 2665 0 A A
## 2666 0 A A
## 2667 0 A D
## 2668 0 A D
## 2669 0 A A
## 2670 0 A B
## 2671 0 A D
## 2672 0 A D
## 2673 0 A D
## 2674 0 A D
## 2675 0 A A
## 2676 0 A D
## 2677 0 A A
## 2678 0 A A
## 2679 0 A A
## 2680 0 A A
## 2681 0 A D
## 2682 0 A D
## 2683 0 A A
## 2684 0 A A
## 2685 0 A D
## 2686 0 A D
## 2687 0 A A
## 2688 0 A D
## 2689 0 F F
## 2690 0 A D
## 2691 0 A A
## 2692 0 A A
## 2693 0 A A
## 2694 0 A A
## 2695 0 A D
## 2696 0 A D
## 2697 0 A A
## 2698 0 A A
## 2699 0 A A
## 2700 0 A A
## 2701 0 A A
## 2702 0 A B
## 2703 0 A D
## 2704 0 A A
## 2705 0 A A
## 2706 0 A A
## 2707 0 A D
## 2708 0 A A
## 2709 0 A A
## 2710 0 A A
## 2711 0 A A
## 2712 0 A A
## 2713 0 A A
## 2714 0 A D
## 2715 0 A A
## 2716 0 A A
## 2717 0 A A
## 2718 0 A A
## 2719 0 A A
## 2720 0 A A
## 2721 0 A A
## 2722 0 D D
## 2723 0 A A
## 2724 0 A A
## 2725 0 A A
## 2726 0 A A
## 2727 0 A A
## 2728 0 A A
## 2729 0 A A
## 2730 0 A A
## 2731 0 A A
## 2732 0 A A
## 2733 0 A A
## 2734 0 A A
## 2735 0 A A
## 2736 0 A A
## 2737 0 A A
## 2738 0 A A
## 2739 0 A A
## 2740 0 A A
## 2741 0 A A
## 2742 0 A A
## 2743 0 A A
## 2744 0 A A
## 2745 0 A D
## 2746 0 A A
## 2747 0 A A
## 2748 0 A A
## 2749 0 A A
## 2750 0 A D
## 2751 0 A D
## 2752 0 A A
## 2753 0 A A
## 2754 0 A A
## 2755 0 A A
## 2756 0 A A
## 2757 0 A A
## 2758 0 A A
## 2759 0 A A
## 2760 0 A A
## 2761 0 A A
## 2762 0 D D
## 2763 0 A A
## 2764 0 A A
## 2765 0 A A
## 2766 0 A A
## 2767 0 A A
## 2768 0 A A
## 2769 0 A D
## 2770 0 A A
## 2771 0 A A
## 2772 0 A D
## 2773 0 A A
## 2774 0 A D
## 2775 0 A A
## 2776 0 A D
## 2777 0 A D
## 2778 0 A B
## 2779 0 A D
## 2780 0 A A
## 2781 0 A D
## 2782 0 A A
## 2783 0 A A
## 2784 0 A A
## 2785 0 A A
## 2786 0 A A
## 2787 0 A A
## 2788 0 A A
## 2789 0 A A
## 2790 0 A D
## 2791 0 A A
## 2792 0 A A
## 2793 0 A A
## 2794 0 A D
## 2795 0 A A
## 2796 0 A B
## 2797 0 A A
## 2798 0 A A
## 2799 0 A A
## 2800 0 A A
## 2801 0 A A
## 2802 0 A D
## 2803 0 A D
## 2804 0 A A
## 2805 0 A B
## 2806 0 A A
## 2807 0 A A
## 2808 0 A A
## 2809 0 A D
## 2810 0 A A
## 2811 0 A A
## 2812 0 A K
## 2813 0 A D
## 2814 0 A A
## 2815 0 A A
## 2816 0 A A
## 2817 0 A A
## 2818 0 A D
## 2819 0 A A
## 2820 0 A D
## 2821 0 A A
## 2822 0 A A
## 2823 0 A D
## 2824 0 A A
## 2825 0 A B
## 2826 0 A A
## 2827 0 A A
## 2828 0 A A
## 2829 0 A A
## 2830 0 A E
## 2831 0 A A
## 2832 0 A A
## 2833 0 A A
## 2834 0 A A
## 2835 0 A A
## 2836 0 A A
## 2837 0 A A
## 2838 0 A A
## 2839 0 A A
## 2840 0 A A
## 2841 0 A A
## 2842 0 A A
## 2843 0 A A
## 2844 0 A D
## 2845 0 A A
## 2846 0 A D
## 2847 0 A A
## 2848 0 A A
## 2849 0 A A
## 2850 0 A A
## 2851 0 A D
## 2852 0 A D
## 2853 0 A A
## 2854 0 A B
## 2855 0 A A
## 2856 0 A A
## 2857 0 A A
## 2858 0 A A
## 2859 0 A A
## 2860 0 A A
## 2861 0 A A
## 2862 0 A D
## 2863 0 A B
## 2864 0 A A
## 2865 0 A D
## 2866 0 A D
## 2867 0 A A
## 2868 0 A A
## 2869 0 A D
## 2870 0 A A
## 2871 0 A A
## 2872 0 A A
## 2873 0 A E
## 2874 0 A A
## 2875 0 A K
## 2876 0 A E
## 2877 0 A A
## 2878 0 A E
## 2879 0 A A
## 2880 0 A A
## 2881 0 A D
## 2882 0 A A
## 2883 0 A D
## 2884 0 A D
## 2885 0 A A
## 2886 0 A A
## 2887 0 A A
## 2888 0 A D
## 2889 0 A D
## 2890 0 A D
## 2891 0 A A
## 2892 0 A A
## 2893 0 A A
## 2894 0 A A
## 2895 0 A A
## 2896 0 A A
## 2897 0 A D
## 2898 0 A A
## 2899 0 A A
## 2900 0 A A
## 2901 0 A D
## 2902 0 A A
## 2903 0 A A
## 2904 0 A A
## 2905 0 A D
## 2906 0 A A
## 2907 0 A D
## 2908 0 A A
## 2909 0 A A
## 2910 0 A A
## 2911 0 A A
## 2912 0 A D
## 2913 0 A A
## 2914 0 A A
## 2915 0 D E
## 2916 0 A A
## 2917 0 A A
## 2918 0 A A
## 2919 0 A D
## 2920 0 A A
## 2921 0 A A
## 2922 0 A A
## 2923 0 A A
## 2924 0 A A
## 2925 0 A A
## 2926 0 A A
## 2927 0 A A
## 2928 0 A A
## 2929 0 A A
## 2930 0 A A
## 2931 0 A A
## 2932 0 A A
## 2933 0 F F
## 2934 0 A A
## 2935 0 A A
## 2936 0 A A
## 2937 0 A A
## 2938 0 A A
## 2939 0 A D
## 2940 0 A D
## 2941 0 A D
## 2942 0 A D
## 2943 0 A D
## 2944 0 A B
## 2945 0 A A
## 2946 0 A A
## 2947 0 A D
## 2948 0 A A
## 2949 0 A D
## 2950 0 A D
## 2951 0 A B
## 2952 0 A D
## 2953 0 A D
## 2954 0 A A
## 2955 0 A A
## 2956 0 A D
## 2957 0 A D
## 2958 0 A A
## 2959 0 A A
## 2960 0 A D
## 2961 0 A A
## 2962 0 A D
## 2963 0 A A
## 2964 0 A A
## 2965 0 A A
## 2966 0 A A
## 2967 0 A A
## 2968 0 A D
## 2969 0 A A
## 2970 0 A A
## 2971 0 A A
## 2972 0 A A
## 2973 0 A A
## 2974 0 A A
## 2975 0 A A
## 2976 0 A A
## 2977 0 A A
## 2978 0 A A
## 2979 0 A A
## 2980 0 F F
## 2981 0 A A
## 2982 0 A A
## 2983 0 A A
## 2984 0 A A
## 2985 0 A A
## 2986 0 A A
## 2987 0 A A
## 2988 0 A A
## 2989 0 A A
## 2990 0 A A
## 2991 0 A A
## 2992 0 D D
## 2993 0 A A
## 2994 0 A A
## 2995 0 A A
## 2996 0 A A
## 2997 0 A A
## 2998 0 A D
## 2999 0 A A
## 3000 0 A A
## 3001 0 A A
## 3002 0 A A
## 3003 0 A A
## 3004 0 A A
## 3005 0 A A
## 3006 0 A A
## 3007 0 A A
## 3008 0 A D
## 3009 0 A A
## 3010 0 A A
## 3011 0 A A
## 3012 0 A A
## 3013 0 A A
## 3014 0 A A
## 3015 0 A D
## 3016 0 A A
## 3017 0 A A
## 3018 0 A A
## 3019 0 A A
## 3020 0 A A
## 3021 0 A A
## 3022 0 A A
## 3023 0 A A
## 3024 0 A A
## 3025 0 A A
## 3026 0 D D
## 3027 0 A A
## 3028 0 D D
## 3029 0 A A
## 3030 0 A A
## 3031 0 A A
## 3032 0 A A
## 3033 0 F F
## 3034 0 A A
## 3035 0 A A
## 3036 0 A A
## 3037 0 D D
## 3038 0 A A
## 3039 0 A A
## 3040 0 A A
## 3041 0 A D
## 3042 0 A A
## 3043 0 A A
## 3044 0 A A
## 3045 0 A D
## 3046 0 A A
## 3047 0 A A
## 3048 0 A A
## 3049 0 A A
## 3050 0 A A
## 3051 0 A B
## 3052 0 A A
## 3053 0 A D
## 3054 0 A A
## 3055 0 A D
## 3056 0 A D
## 3057 0 A D
## 3058 0 A A
## 3059 0 A A
## 3060 0 A A
## 3061 0 A A
## 3062 0 A D
## 3063 0 A A
## 3064 0 A A
## 3065 0 A A
## 3066 0 A D
## 3067 0 A A
## 3068 0 A A
## 3069 0 A A
## 3070 0 A A
## 3071 0 A A
## 3072 0 A A
## 3073 0 A A
## 3074 0 A D
## 3075 0 A B
## 3076 0 A A
## 3077 0 A A
## 3078 0 A A
## 3079 0 A A
## 3080 0 A A
## 3081 0 A B
## 3082 0 A A
## 3083 0 A A
## 3084 0 A D
## 3085 0 A A
## 3086 0 A A
## 3087 0 F F
## 3088 0 A D
## 3089 0 A A
## 3090 0 A D
## 3091 0 A A
## 3092 0 A D
## 3093 0 A A
## 3094 0 A D
## 3095 0 A A
## 3096 0 A A
## 3097 0 A D
## 3098 0 A A
## 3099 0 A B
## 3100 0 A D
## 3101 0 A D
## 3102 0 A A
## 3103 0 A A
## 3104 0 A D
## 3105 0 A A
## 3106 0 A D
## 3107 0 A E
## 3108 0 A B
## 3109 0 A A
## 3110 0 A B
## 3111 0 A K
## 3112 0 A B
## 3113 0 A B
## 3114 0 A A
## 3115 0 D E
## 3116 0 A E
## 3117 0 A A
## 3118 0 F F
## 3119 0 D D
## 3120 0 A A
## 3121 0 A A
## 3122 0 A A
## 3123 0 A D
## 3124 0 A A
## booking_changes deposit_type agent company days_in_waiting_list
## 1 0 No Deposit 6 NULL 0
## 2 0 No Deposit 9 NULL 0
## 3 0 No Deposit 9 NULL 0
## 4 0 No Deposit 9 NULL 0
## 5 0 No Deposit 9 NULL 0
## 6 0 No Deposit 9 NULL 0
## 7 1 No Deposit 1 NULL 0
## 8 0 No Deposit 9 NULL 0
## 9 0 No Deposit 8 NULL 0
## 10 0 No Deposit 8 NULL 0
## 11 0 No Deposit 1 NULL 0
## 12 1 No Deposit 1 NULL 0
## 13 0 No Deposit 1 NULL 0
## 14 0 No Deposit 1 NULL 0
## 15 0 No Deposit 1 NULL 0
## 16 1 No Deposit 1 NULL 0
## 17 0 No Deposit 1 NULL 0
## 18 0 No Deposit 1 NULL 0
## 19 0 No Deposit 1 NULL 0
## 20 0 No Deposit 1 NULL 0
## 21 0 No Deposit 1 NULL 0
## 22 0 No Deposit 13 NULL 0
## 23 0 No Deposit 1 NULL 0
## 24 0 No Deposit 1 NULL 0
## 25 0 No Deposit 9 NULL 0
## 26 1 No Deposit 11 NULL 0
## 27 0 No Deposit 9 NULL 0
## 28 0 No Deposit 9 NULL 0
## 29 1 No Deposit 9 NULL 0
## 30 0 No Deposit 1 NULL 0
## 31 1 No Deposit 11 NULL 0
## 32 0 No Deposit 7 NULL 0
## 33 0 No Deposit 7 NULL 0
## 34 0 No Deposit 9 NULL 0
## 35 0 No Deposit 9 NULL 0
## 36 0 No Deposit 9 NULL 0
## 37 0 No Deposit 15 NULL 0
## 38 0 No Deposit 9 NULL 0
## 39 0 No Deposit 9 NULL 0
## 40 0 No Deposit 9 NULL 0
## 41 0 No Deposit 9 NULL 0
## 42 0 No Deposit 7 NULL 0
## 43 0 No Deposit 9 NULL 0
## 44 1 No Deposit 9 NULL 0
## 45 0 No Deposit 13 NULL 0
## 46 0 No Deposit 9 NULL 0
## 47 0 No Deposit 9 NULL 0
## 48 0 No Deposit NULL NULL 0
## 49 0 No Deposit 9 NULL 0
## 50 1 No Deposit 9 NULL 0
## 51 0 No Deposit NULL NULL 0
## 52 2 No Deposit NULL NULL 0
## 53 0 No Deposit 8 NULL 0
## 54 0 No Deposit 7 NULL 0
## 55 0 No Deposit 11 NULL 0
## 56 0 No Deposit 11 NULL 0
## 57 0 No Deposit 11 NULL 0
## 58 0 No Deposit 1 NULL 0
## 59 0 No Deposit 9 NULL 0
## 60 0 No Deposit 27 NULL 0
## 61 0 No Deposit 9 NULL 0
## 62 0 No Deposit 8 NULL 0
## 63 0 No Deposit 9 NULL 0
## 64 0 No Deposit 8 NULL 0
## 65 0 No Deposit 8 NULL 0
## 66 0 No Deposit 15 NULL 0
## 67 0 No Deposit 9 NULL 0
## 68 0 No Deposit 7 NULL 0
## 69 0 No Deposit 1 NULL 0
## 70 0 No Deposit 9 NULL 0
## 71 0 No Deposit 14 NULL 0
## 72 0 No Deposit 9 NULL 0
## 73 1 No Deposit 22 NULL 0
## 74 0 No Deposit 7 NULL 0
## 75 0 No Deposit 7 NULL 0
## 76 1 No Deposit 11 NULL 0
## 77 0 No Deposit 17 NULL 0
## 78 1 No Deposit 11 NULL 0
## 79 0 No Deposit 17 NULL 0
## 80 0 No Deposit 9 NULL 0
## 81 0 No Deposit 17 NULL 0
## 82 0 No Deposit 17 NULL 0
## 83 0 No Deposit 9 NULL 0
## 84 0 No Deposit 8 NULL 0
## 85 0 No Deposit 17 NULL 0
## 86 0 No Deposit 17 NULL 0
## 87 0 No Deposit 17 NULL 0
## 88 0 No Deposit 7 NULL 0
## 89 0 No Deposit 17 NULL 0
## 90 0 No Deposit 17 NULL 0
## 91 0 No Deposit 17 NULL 0
## 92 0 No Deposit 17 NULL 0
## 93 0 No Deposit 17 NULL 0
## 94 0 No Deposit 17 NULL 0
## 95 0 No Deposit 17 NULL 0
## 96 0 No Deposit 17 NULL 0
## 97 0 No Deposit 17 NULL 0
## 98 0 No Deposit 17 NULL 0
## 99 0 No Deposit 17 NULL 0
## 100 0 No Deposit 17 NULL 0
## 101 0 No Deposit 17 NULL 0
## 102 0 No Deposit 7 NULL 0
## 103 0 No Deposit 17 NULL 0
## 104 0 No Deposit 7 NULL 0
## 105 0 No Deposit 17 NULL 0
## 106 0 No Deposit 17 NULL 0
## 107 0 No Deposit 17 NULL 0
## 108 0 No Deposit 17 NULL 0
## 109 0 No Deposit 17 NULL 0
## 110 0 No Deposit 8 NULL 0
## 111 0 No Deposit 17 NULL 0
## 112 0 No Deposit 17 NULL 0
## 113 0 No Deposit 17 NULL 0
## 114 0 No Deposit 17 NULL 0
## 115 0 No Deposit 17 NULL 0
## 116 0 No Deposit 17 NULL 0
## 117 1 No Deposit 9 NULL 0
## 118 0 No Deposit 9 NULL 0
## 119 0 No Deposit 13 NULL 0
## 120 0 No Deposit 14 NULL 0
## 121 0 No Deposit 9 NULL 0
## 122 0 No Deposit 14 NULL 0
## 123 0 No Deposit 14 NULL 0
## 124 0 No Deposit 14 NULL 0
## 125 0 No Deposit 9 NULL 0
## 126 0 No Deposit 14 NULL 0
## 127 0 No Deposit 9 NULL 0
## 128 0 No Deposit 14 NULL 0
## 129 0 No Deposit 8 NULL 0
## 130 0 No Deposit 9 NULL 0
## 131 0 No Deposit 9 NULL 0
## 132 0 No Deposit 9 NULL 0
## 133 0 No Deposit 9 NULL 0
## 134 0 No Deposit 7 NULL 0
## 135 0 No Deposit NULL NULL 0
## 136 0 No Deposit 9 NULL 0
## 137 0 No Deposit 8 NULL 0
## 138 0 No Deposit 8 NULL 0
## 139 0 No Deposit 9 NULL 0
## 140 4 No Deposit NULL NULL 0
## 141 0 No Deposit 9 NULL 0
## 142 0 No Deposit 9 NULL 0
## 143 0 No Deposit 8 NULL 0
## 144 0 No Deposit 8 NULL 0
## 145 0 No Deposit 9 NULL 0
## 146 0 No Deposit 9 NULL 0
## 147 0 No Deposit 9 NULL 0
## 148 0 No Deposit 9 NULL 0
## 149 0 No Deposit 7 NULL 0
## 150 0 No Deposit 1 NULL 0
## 151 0 No Deposit 1 NULL 0
## 152 0 No Deposit 1 NULL 0
## 153 0 No Deposit 1 NULL 0
## 154 0 No Deposit 1 NULL 0
## 155 0 No Deposit 1 NULL 0
## 156 0 No Deposit 1 NULL 0
## 157 0 No Deposit 1 NULL 0
## 158 0 No Deposit 1 NULL 0
## 159 0 No Deposit 1 NULL 0
## 160 0 No Deposit 1 NULL 0
## 161 0 No Deposit 1 NULL 0
## 162 0 No Deposit 1 NULL 0
## 163 0 No Deposit 1 NULL 0
## 164 0 No Deposit 1 NULL 0
## 165 0 No Deposit 1 NULL 0
## 166 0 No Deposit 1 NULL 0
## 167 0 No Deposit 1 NULL 0
## 168 0 No Deposit 1 NULL 0
## 169 0 No Deposit 1 NULL 0
## 170 0 No Deposit 1 NULL 0
## 171 0 No Deposit 17 NULL 0
## 172 1 No Deposit 17 NULL 0
## 173 0 No Deposit 17 NULL 0
## 174 0 No Deposit 17 NULL 0
## 175 0 No Deposit 17 NULL 0
## 176 0 No Deposit 17 NULL 0
## 177 0 No Deposit 17 NULL 0
## 178 0 No Deposit 17 NULL 0
## 179 0 No Deposit 17 NULL 0
## 180 0 No Deposit 17 NULL 0
## 181 0 No Deposit 17 NULL 0
## 182 0 No Deposit 17 NULL 0
## 183 0 No Deposit 17 NULL 0
## 184 0 No Deposit 17 NULL 0
## 185 0 No Deposit 17 NULL 0
## 186 0 No Deposit 17 NULL 0
## 187 0 No Deposit 17 NULL 0
## 188 0 No Deposit 17 NULL 0
## 189 0 No Deposit 17 NULL 0
## 190 0 No Deposit 17 NULL 0
## 191 1 No Deposit 17 NULL 0
## 192 0 No Deposit 17 NULL 0
## 193 0 No Deposit 17 NULL 0
## 194 0 No Deposit 17 NULL 0
## 195 0 No Deposit 1 NULL 0
## 196 0 No Deposit 1 NULL 0
## 197 0 No Deposit 1 NULL 0
## 198 0 No Deposit 1 NULL 0
## 199 0 No Deposit 1 NULL 0
## 200 0 No Deposit 1 NULL 0
## 201 0 No Deposit 9 NULL 0
## 202 0 No Deposit 1 NULL 0
## 203 0 No Deposit 1 NULL 0
## 204 1 No Deposit 1 NULL 0
## 205 0 No Deposit 1 NULL 0
## 206 0 No Deposit 1 NULL 0
## 207 0 No Deposit 1 NULL 0
## 208 0 No Deposit 1 NULL 0
## 209 0 No Deposit 1 NULL 0
## 210 0 No Deposit 1 NULL 0
## 211 0 No Deposit 1 NULL 0
## 212 0 No Deposit 1 NULL 0
## 213 0 No Deposit 1 NULL 0
## 214 0 No Deposit 1 NULL 0
## 215 1 No Deposit 1 NULL 0
## 216 0 No Deposit 1 NULL 0
## 217 0 No Deposit 1 NULL 0
## 218 0 No Deposit 1 NULL 0
## 219 0 No Deposit 1 NULL 0
## 220 0 No Deposit 1 NULL 0
## 221 0 No Deposit 1 NULL 0
## 222 0 No Deposit 1 NULL 0
## 223 0 No Deposit 1 NULL 0
## 224 0 No Deposit 1 NULL 0
## 225 0 No Deposit 1 NULL 0
## 226 1 No Deposit 1 NULL 0
## 227 0 No Deposit 9 NULL 0
## 228 0 No Deposit 8 NULL 0
## 229 0 No Deposit 8 NULL 0
## 230 1 No Deposit 10 NULL 0
## 231 0 No Deposit 9 NULL 0
## 232 0 No Deposit 9 NULL 0
## 233 0 No Deposit 9 NULL 0
## 234 1 No Deposit 11 NULL 0
## 235 0 No Deposit 28 NULL 0
## 236 0 No Deposit 8 NULL 0
## 237 0 No Deposit 11 NULL 0
## 238 0 No Deposit 1 NULL 0
## 239 0 No Deposit 1 NULL 0
## 240 0 No Deposit 1 NULL 0
## 241 0 Non Refund 1 NULL 0
## 242 0 Non Refund 1 NULL 0
## 243 0 No Deposit 1 NULL 0
## 244 0 No Deposit 1 NULL 0
## 245 0 Non Refund 1 NULL 0
## 246 0 Non Refund 1 NULL 0
## 247 0 No Deposit 1 NULL 0
## 248 0 No Deposit 1 NULL 0
## 249 0 Non Refund 1 NULL 0
## 250 0 No Deposit 1 NULL 0
## 251 0 No Deposit 1 NULL 0
## 252 0 No Deposit 1 NULL 0
## 253 0 No Deposit 1 NULL 0
## 254 0 No Deposit 1 NULL 0
## 255 0 No Deposit 1 NULL 0
## 256 0 Non Refund 1 NULL 0
## 257 0 Non Refund 1 NULL 0
## 258 0 No Deposit 1 NULL 0
## 259 0 No Deposit 1 NULL 0
## 260 0 No Deposit 1 NULL 0
## 261 0 Non Refund 1 NULL 0
## 262 0 Non Refund 1 NULL 0
## 263 0 Non Refund 1 NULL 0
## 264 0 No Deposit 1 NULL 0
## 265 0 No Deposit 1 NULL 0
## 266 7 No Deposit 1 NULL 0
## 267 0 No Deposit 1 NULL 0
## 268 1 No Deposit 1 NULL 0
## 269 0 No Deposit 1 NULL 0
## 270 0 No Deposit 1 NULL 0
## 271 1 No Deposit 1 NULL 0
## 272 1 No Deposit 14 NULL 0
## 273 0 No Deposit 9 NULL 0
## 274 0 No Deposit 9 NULL 0
## 275 0 No Deposit 9 NULL 0
## 276 0 No Deposit 8 NULL 0
## 277 0 No Deposit 9 NULL 0
## 278 0 No Deposit 9 NULL 0
## 279 0 Non Refund 1 NULL 0
## 280 0 No Deposit 1 NULL 0
## 281 0 No Deposit 1 NULL 0
## 282 0 No Deposit 1 NULL 0
## 283 0 Non Refund 1 NULL 0
## 284 1 No Deposit 7 NULL 0
## 285 0 No Deposit 1 NULL 0
## 286 0 No Deposit 1 NULL 0
## 287 0 Non Refund 1 NULL 0
## 288 0 No Deposit 9 NULL 0
## 289 0 No Deposit 1 NULL 0
## 290 0 No Deposit 1 NULL 0
## 291 0 No Deposit 1 NULL 0
## 292 0 No Deposit 1 NULL 0
## 293 0 No Deposit 1 NULL 0
## 294 0 No Deposit 1 NULL 0
## 295 0 No Deposit 1 NULL 0
## 296 0 No Deposit 1 NULL 0
## 297 0 No Deposit 1 NULL 0
## 298 1 No Deposit 1 NULL 0
## 299 0 No Deposit 1 NULL 0
## 300 0 No Deposit 1 NULL 0
## 301 1 No Deposit 1 NULL 0
## 302 0 No Deposit 1 NULL 0
## 303 0 No Deposit 1 NULL 0
## 304 0 No Deposit 1 NULL 0
## 305 0 No Deposit 1 NULL 0
## 306 0 No Deposit 1 NULL 0
## 307 0 No Deposit 1 NULL 0
## 308 0 No Deposit 1 NULL 0
## 309 0 No Deposit 1 NULL 0
## 310 1 No Deposit 1 NULL 0
## 311 0 No Deposit 1 NULL 0
## 312 0 No Deposit 1 NULL 0
## 313 0 No Deposit 1 NULL 0
## 314 1 No Deposit 1 NULL 0
## 315 0 No Deposit 13 NULL 0
## 316 0 No Deposit 1 NULL 0
## 317 1 No Deposit 1 NULL 0
## 318 0 No Deposit 1 NULL 0
## 319 0 No Deposit 1 NULL 0
## 320 0 No Deposit 1 NULL 0
## 321 0 No Deposit 1 NULL 0
## 322 0 No Deposit 13 NULL 0
## 323 0 No Deposit 1 NULL 0
## 324 0 No Deposit 1 NULL 0
## 325 0 No Deposit 1 NULL 0
## 326 0 No Deposit 1 NULL 0
## 327 0 No Deposit 8 NULL 0
## 328 0 No Deposit 1 NULL 0
## 329 0 No Deposit 1 NULL 0
## 330 0 No Deposit 1 NULL 0
## 331 0 No Deposit 1 NULL 0
## 332 0 No Deposit 1 NULL 0
## 333 4 No Deposit 1 NULL 0
## 334 0 No Deposit 9 NULL 0
## 335 0 No Deposit NULL NULL 0
## 336 0 No Deposit NULL NULL 0
## 337 1 No Deposit NULL NULL 0
## 338 1 No Deposit NULL NULL 0
## 339 0 No Deposit NULL NULL 0
## 340 0 No Deposit 1 NULL 0
## 341 0 No Deposit 8 NULL 0
## 342 0 No Deposit NULL NULL 0
## 343 0 No Deposit 1 NULL 0
## 344 0 No Deposit 8 NULL 0
## 345 0 No Deposit 8 NULL 0
## 346 0 No Deposit 9 NULL 0
## 347 0 No Deposit 17 NULL 0
## 348 0 No Deposit 17 NULL 0
## 349 0 No Deposit 1 NULL 0
## 350 2 No Deposit 1 NULL 0
## 351 0 No Deposit 17 NULL 0
## 352 0 No Deposit 17 NULL 0
## 353 0 No Deposit 17 NULL 0
## 354 0 No Deposit 17 NULL 0
## 355 2 No Deposit 1 NULL 0
## 356 0 No Deposit 17 NULL 0
## 357 0 No Deposit 17 NULL 0
## 358 0 No Deposit 17 NULL 0
## 359 0 No Deposit 17 NULL 0
## 360 0 No Deposit 17 NULL 0
## 361 0 No Deposit 17 NULL 0
## 362 0 No Deposit 17 NULL 0
## 363 2 No Deposit 1 NULL 0
## 364 0 No Deposit 17 NULL 0
## 365 0 No Deposit 17 NULL 0
## 366 0 No Deposit 17 NULL 0
## 367 1 No Deposit 17 NULL 0
## 368 0 No Deposit 17 NULL 0
## 369 0 No Deposit 17 NULL 0
## 370 0 No Deposit 1 NULL 0
## 371 0 No Deposit 1 NULL 0
## 372 0 No Deposit 17 NULL 0
## 373 0 No Deposit 1 NULL 0
## 374 0 No Deposit 1 NULL 0
## 375 0 No Deposit 17 NULL 0
## 376 0 No Deposit 17 NULL 0
## 377 1 No Deposit 1 NULL 0
## 378 0 No Deposit 1 NULL 0
## 379 0 No Deposit 17 NULL 0
## 380 0 No Deposit 17 NULL 0
## 381 0 No Deposit 1 NULL 0
## 382 0 No Deposit 1 NULL 0
## 383 0 No Deposit 1 NULL 0
## 384 0 No Deposit 1 NULL 0
## 385 0 No Deposit 1 NULL 0
## 386 0 No Deposit 1 NULL 0
## 387 0 No Deposit 1 NULL 0
## 388 0 No Deposit 1 NULL 0
## 389 0 No Deposit 1 NULL 0
## 390 0 No Deposit 1 NULL 0
## 391 1 No Deposit 1 NULL 0
## 392 0 No Deposit 1 NULL 0
## 393 0 No Deposit 1 NULL 0
## 394 0 No Deposit 1 NULL 0
## 395 0 No Deposit 1 NULL 0
## 396 4 No Deposit 1 NULL 0
## 397 0 No Deposit 1 NULL 0
## 398 1 No Deposit 1 NULL 0
## 399 0 No Deposit 1 NULL 0
## 400 0 No Deposit 1 NULL 0
## 401 0 No Deposit 1 NULL 0
## 402 0 No Deposit 1 NULL 0
## 403 0 No Deposit 1 NULL 0
## 404 0 No Deposit 1 NULL 0
## 405 0 No Deposit 1 NULL 0
## 406 0 No Deposit 1 NULL 0
## 407 0 No Deposit 1 NULL 0
## 408 0 No Deposit 1 NULL 0
## 409 0 No Deposit 1 NULL 0
## 410 0 No Deposit 1 NULL 0
## 411 0 No Deposit 1 NULL 0
## 412 0 No Deposit 1 NULL 0
## 413 0 No Deposit 9 NULL 0
## 414 0 No Deposit NULL NULL 0
## 415 0 No Deposit 9 NULL 0
## 416 1 No Deposit 1 NULL 0
## 417 0 No Deposit 7 NULL 0
## 418 0 Non Refund 1 NULL 0
## 419 0 No Deposit 1 NULL 0
## 420 0 No Deposit 1 NULL 0
## 421 0 No Deposit 1 NULL 0
## 422 0 No Deposit 1 NULL 0
## 423 0 Non Refund 1 NULL 0
## 424 0 Non Refund 1 NULL 0
## 425 1 No Deposit 1 NULL 0
## 426 0 No Deposit 1 NULL 0
## 427 0 No Deposit 1 NULL 0
## 428 0 Non Refund 1 NULL 0
## 429 0 Non Refund 1 NULL 0
## 430 0 No Deposit 1 NULL 0
## 431 0 No Deposit 1 NULL 0
## 432 0 No Deposit 1 NULL 0
## 433 0 No Deposit 1 NULL 0
## 434 1 No Deposit 1 NULL 0
## 435 0 No Deposit 1 NULL 0
## 436 0 Non Refund 1 NULL 0
## 437 0 Non Refund 1 NULL 0
## 438 0 No Deposit 8 NULL 0
## 439 1 No Deposit 1 NULL 0
## 440 0 No Deposit 1 NULL 0
## 441 0 No Deposit 1 NULL 0
## 442 0 No Deposit 1 NULL 0
## 443 0 No Deposit 1 NULL 0
## 444 0 Non Refund 1 NULL 0
## 445 0 Non Refund 1 NULL 0
## 446 0 Non Refund 1 NULL 0
## 447 0 Non Refund 1 NULL 0
## 448 0 No Deposit 1 NULL 0
## 449 0 Non Refund 1 NULL 0
## 450 0 Non Refund 1 NULL 0
## 451 0 Non Refund 1 NULL 0
## 452 0 No Deposit 1 NULL 0
## 453 0 No Deposit 1 NULL 0
## 454 1 No Deposit 1 NULL 0
## 455 0 No Deposit 1 NULL 0
## 456 0 No Deposit 1 NULL 0
## 457 0 Non Refund 1 NULL 0
## 458 0 No Deposit 1 NULL 0
## 459 0 No Deposit 1 NULL 0
## 460 0 No Deposit 1 NULL 0
## 461 0 Non Refund 1 NULL 0
## 462 0 Non Refund 1 NULL 0
## 463 0 No Deposit 1 NULL 0
## 464 0 No Deposit 1 NULL 0
## 465 0 Non Refund 1 NULL 0
## 466 0 No Deposit 9 NULL 0
## 467 1 No Deposit NULL 40 0
## 468 1 No Deposit 27 NULL 0
## 469 0 No Deposit 9 NULL 0
## 470 0 No Deposit 9 NULL 0
## 471 1 No Deposit 9 NULL 0
## 472 0 No Deposit 7 NULL 0
## 473 0 No Deposit 7 NULL 0
## 474 0 No Deposit NULL NULL 0
## 475 2 No Deposit NULL NULL 0
## 476 3 No Deposit NULL 40 0
## 477 0 No Deposit NULL NULL 0
## 478 1 No Deposit NULL NULL 0
## 479 0 No Deposit 9 NULL 0
## 480 1 No Deposit 27 NULL 0
## 481 0 No Deposit 27 NULL 0
## 482 0 No Deposit NULL 40 0
## 483 0 No Deposit NULL NULL 0
## 484 1 No Deposit 9 NULL 0
## 485 0 No Deposit 7 NULL 0
## 486 1 No Deposit 9 NULL 0
## 487 0 No Deposit 9 NULL 0
## 488 0 No Deposit 9 NULL 0
## 489 0 No Deposit 11 NULL 0
## 490 0 No Deposit NULL 40 0
## 491 0 No Deposit 9 NULL 0
## 492 0 No Deposit 11 NULL 0
## 493 0 No Deposit 9 NULL 0
## 494 0 No Deposit 7 NULL 0
## 495 0 No Deposit 1 NULL 0
## 496 0 No Deposit 9 NULL 0
## 497 0 No Deposit 15 NULL 0
## 498 0 No Deposit 15 NULL 0
## 499 0 No Deposit 15 NULL 0
## 500 0 No Deposit 8 NULL 0
## 501 0 No Deposit NULL NULL 0
## 502 1 No Deposit 17 NULL 0
## 503 1 No Deposit 17 NULL 0
## 504 0 No Deposit 17 NULL 0
## 505 0 No Deposit 17 NULL 0
## 506 0 No Deposit 9 NULL 0
## 507 0 No Deposit 17 NULL 0
## 508 0 No Deposit 17 NULL 0
## 509 0 No Deposit 17 NULL 0
## 510 0 No Deposit 17 NULL 0
## 511 0 No Deposit 17 NULL 0
## 512 0 No Deposit 9 NULL 0
## 513 1 No Deposit 17 NULL 0
## 514 0 No Deposit 17 NULL 0
## 515 0 No Deposit 17 NULL 0
## 516 0 No Deposit 17 NULL 0
## 517 0 No Deposit 17 NULL 0
## 518 0 No Deposit 17 NULL 0
## 519 1 No Deposit 17 NULL 0
## 520 0 No Deposit 17 NULL 0
## 521 0 No Deposit 17 NULL 0
## 522 0 No Deposit 17 NULL 0
## 523 0 No Deposit 17 NULL 0
## 524 0 No Deposit 17 NULL 0
## 525 2 No Deposit 17 NULL 0
## 526 1 No Deposit 17 NULL 0
## 527 0 No Deposit 17 NULL 0
## 528 0 No Deposit 17 NULL 0
## 529 0 No Deposit 17 NULL 0
## 530 0 No Deposit 17 NULL 0
## 531 0 No Deposit 17 NULL 0
## 532 0 No Deposit 17 NULL 0
## 533 0 No Deposit 9 NULL 0
## 534 0 No Deposit 9 NULL 0
## 535 0 No Deposit NULL NULL 0
## 536 0 No Deposit 9 NULL 0
## 537 0 No Deposit NULL NULL 0
## 538 0 No Deposit NULL NULL 0
## 539 0 No Deposit NULL NULL 0
## 540 0 No Deposit NULL NULL 0
## 541 0 No Deposit NULL NULL 0
## 542 0 Non Refund 1 NULL 0
## 543 0 No Deposit 9 NULL 0
## 544 0 No Deposit NULL NULL 0
## 545 0 Non Refund 1 NULL 0
## 546 0 No Deposit 1 NULL 0
## 547 0 No Deposit 1 NULL 0
## 548 0 No Deposit 1 NULL 0
## 549 0 No Deposit 1 NULL 0
## 550 0 No Deposit 1 NULL 0
## 551 0 No Deposit 1 NULL 0
## 552 0 No Deposit 1 NULL 0
## 553 0 No Deposit 1 NULL 0
## 554 0 No Deposit 1 NULL 0
## 555 0 No Deposit 1 NULL 0
## 556 0 No Deposit 1 NULL 0
## 557 0 No Deposit 1 NULL 0
## 558 0 No Deposit 1 NULL 0
## 559 0 No Deposit 1 NULL 0
## 560 0 No Deposit 1 NULL 0
## 561 0 No Deposit 1 NULL 0
## 562 0 No Deposit 1 NULL 0
## 563 0 No Deposit 1 NULL 0
## 564 0 No Deposit 1 NULL 0
## 565 0 No Deposit 1 NULL 0
## 566 0 No Deposit 1 NULL 0
## 567 0 No Deposit 1 NULL 0
## 568 0 No Deposit 1 NULL 0
## 569 1 No Deposit 1 NULL 0
## 570 0 No Deposit 1 NULL 0
## 571 0 No Deposit 1 NULL 0
## 572 0 No Deposit 1 NULL 0
## 573 0 No Deposit 1 NULL 0
## 574 0 No Deposit 1 NULL 0
## 575 0 No Deposit 1 NULL 0
## 576 0 No Deposit 9 NULL 0
## 577 0 No Deposit 9 NULL 0
## 578 0 No Deposit 9 NULL 0
## 579 1 No Deposit 1 NULL 0
## 580 0 No Deposit 1 NULL 0
## 581 1 No Deposit 9 NULL 0
## 582 0 No Deposit NULL 45 0
## 583 1 No Deposit 9 NULL 0
## 584 0 No Deposit NULL NULL 0
## 585 0 No Deposit NULL NULL 0
## 586 0 No Deposit 9 NULL 0
## 587 0 No Deposit NULL 40 0
## 588 0 No Deposit 9 NULL 0
## 589 1 No Deposit 1 NULL 0
## 590 0 No Deposit 1 NULL 0
## 591 1 No Deposit 1 NULL 0
## 592 0 No Deposit 1 NULL 0
## 593 0 No Deposit 1 NULL 0
## 594 0 No Deposit NULL NULL 0
## 595 0 No Deposit NULL NULL 0
## 596 0 No Deposit 14 NULL 0
## 597 1 No Deposit 14 NULL 0
## 598 0 No Deposit NULL 45 0
## 599 0 No Deposit NULL 38 0
## 600 0 No Deposit NULL 38 0
## 601 0 No Deposit NULL 45 0
## 602 0 No Deposit 1 NULL 0
## 603 0 No Deposit 1 NULL 0
## 604 0 No Deposit 1 NULL 0
## 605 0 No Deposit 1 NULL 0
## 606 0 No Deposit 1 NULL 0
## 607 0 No Deposit 9 NULL 0
## 608 0 No Deposit 14 NULL 0
## 609 0 No Deposit NULL NULL 0
## 610 0 No Deposit 1 NULL 0
## 611 0 No Deposit 1 NULL 0
## 612 0 No Deposit 1 NULL 0
## 613 0 No Deposit 1 NULL 0
## 614 0 No Deposit 1 NULL 0
## 615 0 No Deposit 1 NULL 0
## 616 0 No Deposit 1 NULL 0
## 617 0 No Deposit 1 NULL 0
## 618 0 No Deposit 1 NULL 0
## 619 0 No Deposit 1 NULL 0
## 620 0 No Deposit NULL NULL 0
## 621 0 No Deposit NULL NULL 0
## 622 3 No Deposit 14 NULL 0
## 623 0 No Deposit 1 NULL 0
## 624 0 No Deposit 1 NULL 0
## 625 0 No Deposit 1 NULL 0
## 626 0 No Deposit 1 NULL 0
## 627 0 No Deposit 9 NULL 0
## 628 0 No Deposit 1 NULL 0
## 629 0 No Deposit 1 NULL 0
## 630 0 No Deposit 1 NULL 0
## 631 0 No Deposit NULL 38 0
## 632 0 No Deposit NULL 38 0
## 633 0 No Deposit NULL 38 0
## 634 0 No Deposit NULL 38 0
## 635 2 No Deposit 14 NULL 0
## 636 0 No Deposit NULL 38 0
## 637 0 No Deposit NULL 38 0
## 638 0 No Deposit NULL 38 0
## 639 0 No Deposit NULL 38 0
## 640 0 No Deposit NULL 38 0
## 641 0 No Deposit NULL 38 0
## 642 0 No Deposit NULL 38 0
## 643 0 No Deposit NULL 38 0
## 644 0 No Deposit NULL 38 0
## 645 0 No Deposit NULL 38 0
## 646 0 No Deposit NULL 38 0
## 647 0 No Deposit NULL 38 0
## 648 0 No Deposit 42 NULL 0
## 649 0 No Deposit NULL 38 0
## 650 0 No Deposit NULL 38 0
## 651 0 No Deposit 9 NULL 0
## 652 0 No Deposit NULL 38 0
## 653 0 No Deposit NULL 38 0
## 654 0 No Deposit NULL 38 0
## 655 0 No Deposit NULL 38 0
## 656 0 No Deposit NULL 38 0
## 657 1 No Deposit 42 NULL 0
## 658 0 No Deposit NULL 38 0
## 659 0 No Deposit NULL 38 0
## 660 2 No Deposit 14 NULL 0
## 661 0 No Deposit NULL 38 0
## 662 0 No Deposit NULL 38 0
## 663 0 No Deposit NULL 38 0
## 664 0 No Deposit NULL 38 0
## 665 0 No Deposit 9 NULL 0
## 666 0 No Deposit NULL 38 0
## 667 0 No Deposit NULL 38 0
## 668 0 No Deposit NULL 38 0
## 669 0 No Deposit 15 NULL 0
## 670 0 No Deposit 15 NULL 0
## 671 0 No Deposit 9 NULL 0
## 672 2 No Deposit NULL NULL 0
## 673 0 No Deposit 9 NULL 0
## 674 0 No Deposit 9 NULL 0
## 675 1 No Deposit 1 NULL 0
## 676 0 No Deposit 1 NULL 0
## 677 0 No Deposit 1 NULL 0
## 678 0 No Deposit 1 NULL 0
## 679 0 No Deposit 27 NULL 0
## 680 0 No Deposit 14 NULL 0
## 681 0 No Deposit NULL NULL 0
## 682 2 No Deposit 9 NULL 0
## 683 1 No Deposit NULL 9 0
## 684 0 No Deposit 9 NULL 0
## 685 0 No Deposit NULL 9 0
## 686 1 No Deposit 9 NULL 0
## 687 0 No Deposit 9 NULL 0
## 688 1 No Deposit NULL 45 0
## 689 0 No Deposit 9 NULL 0
## 690 0 No Deposit NULL NULL 0
## 691 2 No Deposit NULL 9 0
## 692 1 No Deposit 9 NULL 0
## 693 0 No Deposit 9 NULL 0
## 694 0 No Deposit 9 NULL 0
## 695 0 No Deposit 13 NULL 0
## 696 0 No Deposit 13 NULL 0
## 697 0 No Deposit 14 NULL 0
## 698 0 No Deposit 14 NULL 0
## 699 1 No Deposit NULL NULL 0
## 700 1 No Deposit 15 NULL 0
## 701 0 No Deposit 15 NULL 0
## 702 0 No Deposit 9 NULL 0
## 703 0 No Deposit 14 NULL 0
## 704 0 No Deposit 9 NULL 0
## 705 0 No Deposit 1 NULL 0
## 706 0 No Deposit 1 NULL 0
## 707 0 No Deposit 1 NULL 0
## 708 2 No Deposit 15 NULL 0
## 709 1 No Deposit 15 NULL 0
## 710 2 No Deposit 9 NULL 0
## 711 0 No Deposit 1 NULL 0
## 712 1 No Deposit 1 NULL 0
## 713 0 No Deposit 14 NULL 0
## 714 0 No Deposit 1 NULL 0
## 715 0 No Deposit 1 NULL 0
## 716 0 No Deposit 1 NULL 0
## 717 0 No Deposit 9 NULL 0
## 718 0 No Deposit 9 NULL 0
## 719 0 No Deposit 1 NULL 0
## 720 0 No Deposit 9 NULL 0
## 721 0 No Deposit 1 NULL 0
## 722 0 No Deposit 1 NULL 0
## 723 0 No Deposit 1 NULL 0
## 724 0 No Deposit 1 NULL 0
## 725 0 No Deposit 1 NULL 0
## 726 1 No Deposit 1 NULL 0
## 727 0 No Deposit 1 NULL 0
## 728 0 No Deposit 1 NULL 0
## 729 0 No Deposit 1 NULL 0
## 730 0 No Deposit 9 NULL 0
## 731 1 No Deposit 1 NULL 0
## 732 0 No Deposit 9 NULL 0
## 733 0 No Deposit 1 NULL 0
## 734 0 No Deposit 1 NULL 0
## 735 0 No Deposit 1 NULL 0
## 736 0 No Deposit 1 NULL 0
## 737 0 No Deposit 1 NULL 0
## 738 0 No Deposit 1 NULL 0
## 739 0 No Deposit 1 NULL 0
## 740 0 No Deposit 1 NULL 0
## 741 0 No Deposit 1 NULL 0
## 742 0 No Deposit 9 NULL 0
## 743 0 No Deposit 14 NULL 0
## 744 0 No Deposit 1 NULL 0
## 745 0 No Deposit 1 NULL 0
## 746 0 No Deposit 1 NULL 0
## 747 0 No Deposit NULL NULL 0
## 748 0 No Deposit 9 NULL 0
## 749 0 No Deposit NULL NULL 0
## 750 0 No Deposit 9 NULL 0
## 751 0 No Deposit 9 NULL 0
## 752 0 No Deposit 14 NULL 0
## 753 0 No Deposit 9 NULL 0
## 754 1 No Deposit 9 NULL 0
## 755 0 No Deposit 9 NULL 0
## 756 0 No Deposit 9 NULL 0
## 757 0 No Deposit NULL NULL 0
## 758 0 No Deposit 9 NULL 0
## 759 1 No Deposit 9 NULL 0
## 760 0 No Deposit 14 NULL 0
## 761 0 No Deposit 9 NULL 0
## 762 0 No Deposit 9 NULL 0
## 763 2 No Deposit NULL NULL 0
## 764 0 No Deposit NULL NULL 0
## 765 1 No Deposit NULL NULL 0
## 766 0 No Deposit 14 NULL 0
## 767 0 No Deposit 9 NULL 0
## 768 0 No Deposit NULL NULL 0
## 769 1 No Deposit NULL NULL 0
## 770 0 No Deposit 17 NULL 0
## 771 0 No Deposit 17 NULL 0
## 772 1 No Deposit 17 NULL 0
## 773 0 No Deposit 17 NULL 0
## 774 0 No Deposit 1 NULL 0
## 775 0 No Deposit 1 NULL 0
## 776 0 No Deposit 17 NULL 0
## 777 0 No Deposit 17 NULL 0
## 778 0 No Deposit 17 NULL 0
## 779 0 No Deposit 9 NULL 0
## 780 1 No Deposit NULL NULL 0
## 781 1 No Deposit NULL NULL 0
## 782 0 No Deposit 9 NULL 0
## 783 0 No Deposit 14 NULL 0
## 784 0 No Deposit 1 NULL 0
## 785 0 No Deposit 17 NULL 0
## 786 1 No Deposit 1 NULL 0
## 787 0 No Deposit 1 NULL 0
## 788 0 No Deposit 9 NULL 0
## 789 0 No Deposit 17 NULL 0
## 790 0 No Deposit 17 NULL 0
## 791 0 No Deposit 17 NULL 0
## 792 0 No Deposit 17 NULL 0
## 793 0 No Deposit 17 NULL 0
## 794 0 No Deposit 17 NULL 0
## 795 0 No Deposit 17 NULL 0
## 796 0 No Deposit 1 NULL 0
## 797 0 No Deposit 17 NULL 0
## 798 0 No Deposit 17 NULL 0
## 799 0 No Deposit 1 NULL 0
## 800 0 No Deposit 17 NULL 0
## 801 0 No Deposit 1 NULL 0
## 802 0 No Deposit 17 NULL 0
## 803 0 No Deposit 17 NULL 0
## 804 0 No Deposit 1 NULL 0
## 805 0 No Deposit 9 NULL 0
## 806 0 No Deposit 17 NULL 0
## 807 0 No Deposit 17 NULL 0
## 808 0 No Deposit 17 NULL 0
## 809 0 No Deposit 17 NULL 0
## 810 0 No Deposit 17 NULL 0
## 811 0 No Deposit 1 NULL 0
## 812 0 No Deposit 17 NULL 0
## 813 0 No Deposit 17 NULL 0
## 814 0 No Deposit 17 NULL 0
## 815 0 No Deposit 17 NULL 0
## 816 0 No Deposit 1 NULL 0
## 817 0 No Deposit 1 NULL 0
## 818 0 No Deposit 1 NULL 0
## 819 0 No Deposit 1 NULL 0
## 820 0 No Deposit 1 NULL 0
## 821 0 No Deposit 9 NULL 0
## 822 0 No Deposit 1 NULL 0
## 823 0 No Deposit 1 NULL 0
## 824 1 No Deposit 1 NULL 0
## 825 0 No Deposit 1 NULL 0
## 826 0 No Deposit 1 NULL 0
## 827 0 No Deposit 1 NULL 0
## 828 0 No Deposit 1 NULL 0
## 829 0 No Deposit 1 NULL 0
## 830 0 No Deposit 1 NULL 0
## 831 0 No Deposit 1 NULL 0
## 832 1 No Deposit 1 NULL 0
## 833 0 No Deposit 9 NULL 0
## 834 0 No Deposit 1 NULL 0
## 835 0 No Deposit 1 NULL 0
## 836 0 No Deposit 1 NULL 0
## 837 1 No Deposit 1 NULL 0
## 838 0 No Deposit 1 NULL 0
## 839 0 No Deposit 1 NULL 0
## 840 0 No Deposit 1 NULL 0
## 841 0 No Deposit 1 NULL 0
## 842 0 No Deposit 1 NULL 0
## 843 0 No Deposit 1 NULL 0
## 844 0 No Deposit 1 NULL 0
## 845 0 No Deposit 1 NULL 0
## 846 0 No Deposit 1 NULL 0
## 847 1 No Deposit 1 NULL 0
## 848 0 No Deposit 1 NULL 0
## 849 2 No Deposit 9 NULL 0
## 850 0 No Deposit 9 NULL 0
## 851 0 No Deposit 9 NULL 0
## 852 0 No Deposit 9 NULL 0
## 853 0 No Deposit 9 NULL 0
## 854 0 No Deposit 9 NULL 0
## 855 0 No Deposit 27 NULL 0
## 856 0 No Deposit 27 NULL 0
## 857 0 No Deposit 9 NULL 0
## 858 0 No Deposit NULL NULL 0
## 859 0 No Deposit 9 NULL 0
## 860 2 No Deposit NULL NULL 0
## 861 0 No Deposit 9 9 0
## 862 0 No Deposit NULL NULL 0
## 863 0 No Deposit 9 NULL 0
## 864 0 No Deposit 9 NULL 0
## 865 0 No Deposit 9 NULL 0
## 866 0 No Deposit 9 NULL 0
## 867 0 No Deposit 9 NULL 0
## 868 1 No Deposit 9 NULL 0
## 869 0 No Deposit 9 NULL 0
## 870 0 No Deposit 9 NULL 0
## 871 0 No Deposit NULL NULL 0
## 872 0 No Deposit 9 NULL 0
## 873 0 No Deposit NULL NULL 0
## 874 0 No Deposit 3 NULL 0
## 875 0 No Deposit 9 NULL 0
## 876 0 No Deposit 9 NULL 0
## 877 0 No Deposit 3 NULL 0
## 878 0 No Deposit 9 NULL 0
## 879 0 No Deposit 9 NULL 0
## 880 2 No Deposit 9 NULL 0
## 881 1 No Deposit 9 NULL 0
## 882 0 No Deposit 9 NULL 0
## 883 0 No Deposit 1 NULL 0
## 884 0 No Deposit 1 NULL 0
## 885 0 No Deposit 1 NULL 0
## 886 0 No Deposit 1 NULL 0
## 887 3 No Deposit NULL NULL 0
## 888 1 No Deposit NULL NULL 0
## 889 0 No Deposit 27 NULL 0
## 890 0 No Deposit 1 NULL 0
## 891 0 No Deposit 1 NULL 0
## 892 0 No Deposit 9 NULL 0
## 893 1 No Deposit 9 NULL 0
## 894 0 No Deposit 9 NULL 0
## 895 0 No Deposit 9 NULL 0
## 896 0 No Deposit 1 NULL 0
## 897 0 No Deposit 1 NULL 0
## 898 0 No Deposit 1 NULL 0
## 899 0 No Deposit 1 NULL 0
## 900 0 No Deposit 9 NULL 0
## 901 0 No Deposit 1 NULL 0
## 902 0 No Deposit 1 NULL 0
## 903 0 No Deposit NULL NULL 0
## 904 0 No Deposit 1 NULL 0
## 905 0 No Deposit 1 NULL 0
## 906 0 No Deposit 1 NULL 0
## 907 0 No Deposit 9 9 0
## 908 0 No Deposit 1 NULL 0
## 909 0 No Deposit 1 NULL 0
## 910 0 No Deposit 1 NULL 0
## 911 0 No Deposit 1 NULL 0
## 912 0 No Deposit 1 NULL 0
## 913 0 No Deposit 9 NULL 0
## 914 0 No Deposit 27 NULL 0
## 915 0 No Deposit 9 9 0
## 916 0 No Deposit 1 NULL 0
## 917 0 No Deposit 1 NULL 0
## 918 0 No Deposit 1 NULL 0
## 919 0 No Deposit 9 NULL 0
## 920 0 No Deposit 1 NULL 0
## 921 0 No Deposit 1 NULL 0
## 922 0 No Deposit 1 NULL 0
## 923 0 No Deposit NULL NULL 0
## 924 0 No Deposit 9 9 0
## 925 1 No Deposit NULL NULL 0
## 926 0 No Deposit 9 NULL 0
## 927 0 No Deposit 1 NULL 0
## 928 0 No Deposit 1 NULL 0
## 929 0 No Deposit 1 NULL 0
## 930 0 No Deposit 9 NULL 0
## 931 0 No Deposit 9 NULL 0
## 932 0 No Deposit 9 NULL 0
## 933 0 No Deposit NULL NULL 0
## 934 0 No Deposit 14 NULL 0
## 935 0 No Deposit 9 NULL 0
## 936 1 No Deposit 14 NULL 0
## 937 0 No Deposit 9 NULL 0
## 938 0 No Deposit 9 NULL 0
## 939 0 No Deposit 9 NULL 0
## 940 0 No Deposit 7 NULL 0
## 941 0 No Deposit 9 NULL 0
## 942 0 No Deposit 9 NULL 0
## 943 0 No Deposit 9 NULL 0
## 944 1 No Deposit 9 9 0
## 945 1 No Deposit 9 9 0
## 946 2 No Deposit 9 9 0
## 947 0 No Deposit 9 NULL 0
## 948 0 No Deposit 9 NULL 0
## 949 0 No Deposit NULL NULL 0
## 950 0 No Deposit 9 NULL 0
## 951 0 No Deposit NULL NULL 0
## 952 0 No Deposit 9 NULL 0
## 953 0 No Deposit 9 NULL 0
## 954 0 No Deposit 9 NULL 0
## 955 1 No Deposit NULL NULL 0
## 956 0 No Deposit 1 NULL 0
## 957 0 No Deposit 1 NULL 0
## 958 0 No Deposit NULL NULL 0
## 959 1 No Deposit 14 NULL 0
## 960 0 No Deposit 9 NULL 0
## 961 20 No Deposit NULL 47 0
## 962 1 No Deposit NULL NULL 0
## 963 0 No Deposit 9 NULL 0
## 964 0 No Deposit NULL NULL 0
## 965 0 No Deposit 9 NULL 0
## 966 0 No Deposit NULL 45 0
## 967 0 No Deposit NULL NULL 0
## 968 0 No Deposit NULL 49 0
## 969 1 No Deposit NULL NULL 0
## 970 0 No Deposit 9 NULL 0
## 971 0 No Deposit NULL 49 0
## 972 1 No Deposit NULL 38 0
## 973 1 No Deposit 9 NULL 0
## 974 0 No Deposit 9 NULL 0
## 975 0 No Deposit NULL NULL 0
## 976 0 No Deposit 9 NULL 0
## 977 0 No Deposit NULL NULL 0
## 978 0 No Deposit NULL 45 0
## 979 0 No Deposit 9 NULL 0
## 980 1 No Deposit 9 NULL 0
## 981 0 No Deposit NULL 45 0
## 982 1 No Deposit NULL NULL 0
## 983 0 No Deposit 9 NULL 0
## 984 0 No Deposit NULL NULL 0
## 985 3 No Deposit 9 NULL 0
## 986 1 No Deposit 9 NULL 0
## 987 0 No Deposit 9 NULL 0
## 988 0 No Deposit 9 NULL 0
## 989 1 No Deposit 7 NULL 0
## 990 0 No Deposit 9 NULL 0
## 991 0 No Deposit 9 NULL 0
## 992 0 No Deposit 9 NULL 0
## 993 1 No Deposit 9 NULL 0
## 994 0 No Deposit 7 NULL 0
## 995 0 No Deposit 9 NULL 0
## 996 2 No Deposit NULL NULL 0
## 997 4 No Deposit NULL 49 0
## 998 1 No Deposit NULL NULL 0
## 999 0 No Deposit NULL 38 0
## 1000 0 No Deposit NULL NULL 0
## 1001 0 No Deposit NULL NULL 0
## 1002 0 No Deposit 9 NULL 0
## 1003 0 No Deposit 9 NULL 0
## 1004 0 No Deposit 9 NULL 0
## 1005 1 No Deposit 9 NULL 0
## 1006 0 No Deposit 9 NULL 0
## 1007 4 No Deposit 14 NULL 0
## 1008 0 No Deposit NULL 38 0
## 1009 0 No Deposit NULL 49 0
## 1010 0 No Deposit 9 NULL 0
## 1011 0 No Deposit NULL 49 0
## 1012 0 No Deposit NULL NULL 0
## 1013 0 No Deposit 9 NULL 0
## 1014 0 No Deposit NULL 38 0
## 1015 0 No Deposit NULL NULL 0
## 1016 0 No Deposit NULL NULL 0
## 1017 0 No Deposit 8 NULL 0
## 1018 0 No Deposit 8 NULL 0
## 1019 0 No Deposit 14 NULL 0
## 1020 0 No Deposit NULL NULL 0
## 1021 1 No Deposit 8 NULL 0
## 1022 0 No Deposit NULL 40 0
## 1023 0 No Deposit 8 NULL 0
## 1024 0 No Deposit 8 NULL 0
## 1025 0 No Deposit NULL NULL 0
## 1026 0 No Deposit 27 NULL 0
## 1027 2 No Deposit 1 NULL 0
## 1028 0 No Deposit NULL NULL 0
## 1029 0 No Deposit 1 NULL 0
## 1030 0 No Deposit 9 NULL 0
## 1031 0 No Deposit 1 NULL 0
## 1032 0 No Deposit 1 NULL 0
## 1033 1 No Deposit 1 NULL 0
## 1034 0 No Deposit 1 NULL 0
## 1035 0 No Deposit 1 NULL 0
## 1036 0 No Deposit 9 NULL 0
## 1037 0 No Deposit 1 NULL 0
## 1038 0 No Deposit 1 NULL 0
## 1039 0 No Deposit 1 NULL 0
## 1040 0 No Deposit 1 NULL 0
## 1041 0 No Deposit 1 NULL 0
## 1042 2 No Deposit 20 NULL 0
## 1043 0 No Deposit 1 NULL 0
## 1044 0 No Deposit 1 NULL 0
## 1045 1 No Deposit 1 NULL 0
## 1046 0 No Deposit 1 NULL 0
## 1047 0 No Deposit 1 NULL 0
## 1048 0 No Deposit 1 NULL 0
## 1049 0 No Deposit 1 NULL 0
## 1050 0 No Deposit 1 NULL 0
## 1051 0 No Deposit 1 NULL 0
## 1052 0 No Deposit 1 NULL 0
## 1053 2 No Deposit 9 NULL 0
## 1054 0 No Deposit 1 NULL 0
## 1055 0 No Deposit 1 NULL 0
## 1056 0 No Deposit 9 NULL 0
## 1057 0 No Deposit 1 NULL 0
## 1058 0 No Deposit 1 NULL 0
## 1059 0 No Deposit 1 NULL 0
## 1060 2 No Deposit 20 NULL 0
## 1061 0 No Deposit 1 NULL 0
## 1062 0 No Deposit 1 NULL 0
## 1063 0 No Deposit 1 NULL 0
## 1064 0 No Deposit 1 NULL 0
## 1065 0 No Deposit 9 NULL 0
## 1066 1 No Deposit NULL NULL 0
## 1067 0 No Deposit 9 NULL 0
## 1068 0 No Deposit 9 NULL 0
## 1069 0 No Deposit 42 NULL 0
## 1070 0 No Deposit 9 NULL 0
## 1071 0 No Deposit 14 NULL 0
## 1072 0 No Deposit 9 NULL 0
## 1073 1 No Deposit 9 NULL 0
## 1074 2 No Deposit NULL NULL 0
## 1075 0 No Deposit 9 NULL 0
## 1076 0 No Deposit 9 NULL 0
## 1077 0 No Deposit 9 NULL 0
## 1078 0 No Deposit 9 NULL 0
## 1079 0 No Deposit NULL NULL 0
## 1080 0 No Deposit NULL NULL 0
## 1081 0 No Deposit NULL NULL 0
## 1082 0 No Deposit 9 NULL 0
## 1083 0 No Deposit 9 9 0
## 1084 0 No Deposit NULL NULL 0
## 1085 0 No Deposit 9 9 0
## 1086 3 No Deposit NULL NULL 0
## 1087 0 No Deposit 9 NULL 0
## 1088 0 No Deposit 9 NULL 0
## 1089 0 No Deposit 9 NULL 0
## 1090 0 No Deposit 9 NULL 0
## 1091 0 No Deposit 9 NULL 0
## 1092 0 No Deposit 9 NULL 0
## 1093 0 No Deposit 9 NULL 0
## 1094 0 No Deposit 9 NULL 0
## 1095 0 No Deposit NULL NULL 0
## 1096 0 No Deposit 9 NULL 0
## 1097 0 No Deposit 27 NULL 0
## 1098 0 No Deposit 9 NULL 0
## 1099 0 No Deposit 9 NULL 0
## 1100 0 No Deposit 9 NULL 0
## 1101 0 No Deposit 9 NULL 0
## 1102 0 No Deposit 9 NULL 0
## 1103 0 Non Refund 1 NULL 0
## 1104 0 Non Refund 1 NULL 0
## 1105 1 No Deposit 6 NULL 0
## 1106 1 No Deposit 6 NULL 0
## 1107 0 No Deposit 6 NULL 0
## 1108 0 No Deposit 6 NULL 0
## 1109 1 No Deposit 6 NULL 0
## 1110 1 No Deposit 6 NULL 0
## 1111 1 No Deposit 6 NULL 0
## 1112 0 No Deposit 6 NULL 0
## 1113 0 No Deposit 6 NULL 0
## 1114 0 No Deposit 6 NULL 0
## 1115 0 No Deposit 6 NULL 0
## 1116 0 No Deposit 6 NULL 0
## 1117 0 No Deposit 6 NULL 0
## 1118 0 No Deposit 6 NULL 0
## 1119 0 No Deposit 6 NULL 0
## 1120 1 No Deposit 6 NULL 0
## 1121 0 No Deposit 6 NULL 0
## 1122 0 No Deposit 6 NULL 0
## 1123 1 No Deposit 6 NULL 0
## 1124 0 No Deposit 6 NULL 0
## 1125 0 No Deposit 6 NULL 0
## 1126 0 No Deposit 6 NULL 0
## 1127 0 Non Refund 1 NULL 0
## 1128 1 No Deposit 6 NULL 0
## 1129 1 No Deposit 6 NULL 0
## 1130 0 No Deposit 6 NULL 0
## 1131 0 No Deposit 6 NULL 0
## 1132 1 No Deposit 6 NULL 0
## 1133 1 No Deposit 6 NULL 0
## 1134 0 No Deposit 6 NULL 0
## 1135 0 No Deposit 6 NULL 0
## 1136 0 No Deposit 6 NULL 0
## 1137 0 No Deposit 6 NULL 0
## 1138 0 No Deposit 6 NULL 0
## 1139 0 No Deposit 6 NULL 0
## 1140 0 No Deposit 6 NULL 0
## 1141 0 No Deposit 6 NULL 0
## 1142 0 No Deposit 6 NULL 0
## 1143 0 No Deposit 6 NULL 0
## 1144 0 No Deposit 6 NULL 0
## 1145 0 No Deposit 6 NULL 0
## 1146 0 No Deposit 6 NULL 0
## 1147 0 No Deposit 6 NULL 0
## 1148 0 No Deposit 6 NULL 0
## 1149 0 No Deposit 6 NULL 0
## 1150 1 No Deposit 6 NULL 0
## 1151 0 No Deposit 6 NULL 0
## 1152 0 No Deposit 6 NULL 0
## 1153 0 No Deposit 6 NULL 0
## 1154 0 No Deposit 6 NULL 0
## 1155 0 No Deposit 6 NULL 0
## 1156 0 No Deposit 6 NULL 0
## 1157 1 No Deposit 6 NULL 0
## 1158 0 No Deposit 6 NULL 0
## 1159 0 No Deposit 6 NULL 0
## 1160 1 No Deposit 6 NULL 0
## 1161 1 No Deposit 6 NULL 0
## 1162 1 No Deposit 6 NULL 0
## 1163 0 No Deposit 6 NULL 0
## 1164 0 No Deposit 6 NULL 0
## 1165 1 No Deposit 6 NULL 0
## 1166 1 No Deposit 6 NULL 0
## 1167 0 No Deposit 6 NULL 0
## 1168 0 No Deposit 6 NULL 0
## 1169 0 No Deposit 6 NULL 0
## 1170 0 No Deposit 6 NULL 0
## 1171 0 No Deposit 6 NULL 0
## 1172 0 No Deposit 6 NULL 0
## 1173 0 No Deposit 6 NULL 0
## 1174 1 No Deposit 6 NULL 0
## 1175 0 No Deposit 6 NULL 0
## 1176 1 No Deposit 6 NULL 0
## 1177 0 No Deposit 6 NULL 0
## 1178 0 No Deposit 6 NULL 0
## 1179 1 No Deposit 6 NULL 0
## 1180 1 No Deposit 6 NULL 0
## 1181 0 No Deposit 6 NULL 0
## 1182 0 No Deposit 6 NULL 0
## 1183 0 No Deposit 6 NULL 0
## 1184 1 No Deposit 6 NULL 0
## 1185 0 No Deposit 6 NULL 0
## 1186 0 No Deposit 6 NULL 0
## 1187 0 No Deposit 6 NULL 0
## 1188 0 No Deposit 6 NULL 0
## 1189 0 No Deposit 6 NULL 0
## 1190 0 No Deposit 6 NULL 0
## 1191 0 No Deposit 6 NULL 0
## 1192 1 No Deposit 6 NULL 0
## 1193 0 No Deposit 6 NULL 0
## 1194 0 No Deposit 6 NULL 0
## 1195 0 No Deposit 6 NULL 0
## 1196 1 No Deposit 6 NULL 0
## 1197 1 No Deposit 6 NULL 0
## 1198 0 No Deposit 6 NULL 0
## 1199 0 No Deposit 6 NULL 0
## 1200 0 No Deposit 6 NULL 0
## 1201 0 No Deposit 6 NULL 0
## 1202 0 No Deposit 6 NULL 0
## 1203 0 No Deposit 6 NULL 0
## 1204 0 No Deposit 6 NULL 0
## 1205 0 No Deposit 6 NULL 0
## 1206 1 No Deposit 6 NULL 0
## 1207 1 No Deposit 6 NULL 0
## 1208 0 No Deposit 6 NULL 0
## 1209 0 No Deposit 6 NULL 0
## 1210 0 No Deposit 6 NULL 0
## 1211 0 No Deposit 6 NULL 0
## 1212 0 No Deposit 6 NULL 0
## 1213 0 No Deposit 6 NULL 0
## 1214 0 No Deposit 6 NULL 0
## 1215 0 No Deposit 6 NULL 0
## 1216 0 No Deposit 6 NULL 0
## 1217 0 No Deposit 6 NULL 0
## 1218 0 No Deposit 6 NULL 0
## 1219 0 No Deposit 6 NULL 0
## 1220 0 No Deposit 6 NULL 0
## 1221 0 No Deposit 6 NULL 0
## 1222 1 No Deposit 6 NULL 0
## 1223 1 No Deposit 6 NULL 0
## 1224 0 No Deposit 6 NULL 0
## 1225 0 No Deposit 6 NULL 0
## 1226 0 No Deposit 6 NULL 0
## 1227 0 No Deposit 6 NULL 0
## 1228 0 No Deposit 6 NULL 0
## 1229 0 No Deposit 6 NULL 0
## 1230 0 No Deposit 6 NULL 0
## 1231 0 No Deposit 6 NULL 0
## 1232 0 No Deposit 6 NULL 0
## 1233 0 No Deposit 6 NULL 0
## 1234 0 No Deposit 6 NULL 0
## 1235 0 No Deposit 6 NULL 0
## 1236 0 No Deposit 6 NULL 0
## 1237 0 No Deposit 6 NULL 0
## 1238 0 No Deposit 6 NULL 0
## 1239 0 No Deposit 6 NULL 0
## 1240 1 No Deposit 6 NULL 0
## 1241 0 No Deposit 6 NULL 0
## 1242 0 No Deposit 6 NULL 0
## 1243 0 No Deposit 6 NULL 0
## 1244 1 No Deposit 6 NULL 0
## 1245 0 No Deposit 6 NULL 0
## 1246 0 No Deposit 6 NULL 0
## 1247 0 No Deposit 6 NULL 0
## 1248 0 No Deposit 6 NULL 0
## 1249 0 No Deposit 6 NULL 0
## 1250 0 No Deposit 6 NULL 0
## 1251 0 No Deposit 6 NULL 0
## 1252 0 No Deposit 6 NULL 0
## 1253 0 No Deposit 6 NULL 0
## 1254 0 No Deposit 9 NULL 0
## 1255 1 No Deposit 6 NULL 0
## 1256 1 No Deposit 6 NULL 0
## 1257 0 No Deposit 6 NULL 0
## 1258 0 No Deposit 6 NULL 0
## 1259 2 No Deposit 6 NULL 0
## 1260 1 No Deposit 6 NULL 0
## 1261 0 No Deposit 6 NULL 0
## 1262 0 No Deposit 6 NULL 0
## 1263 0 No Deposit 6 NULL 0
## 1264 0 No Deposit 6 NULL 0
## 1265 0 No Deposit 6 NULL 0
## 1266 1 No Deposit 6 NULL 0
## 1267 1 No Deposit 6 NULL 0
## 1268 0 No Deposit 6 NULL 0
## 1269 1 No Deposit 6 NULL 0
## 1270 1 No Deposit 6 NULL 0
## 1271 0 No Deposit 6 NULL 0
## 1272 0 No Deposit 6 NULL 0
## 1273 0 No Deposit 6 NULL 0
## 1274 0 No Deposit 6 NULL 0
## 1275 0 No Deposit 6 NULL 0
## 1276 0 No Deposit 6 NULL 0
## 1277 0 No Deposit 6 NULL 0
## 1278 0 No Deposit 6 NULL 0
## 1279 0 No Deposit 9 NULL 0
## 1280 0 No Deposit 9 NULL 0
## 1281 0 No Deposit 9 NULL 0
## 1282 0 No Deposit 9 NULL 0
## 1283 2 No Deposit NULL 45 0
## 1284 0 No Deposit 9 NULL 0
## 1285 2 No Deposit NULL 45 0
## 1286 0 No Deposit 8 NULL 0
## 1287 0 No Deposit 9 NULL 0
## 1288 0 No Deposit 9 NULL 0
## 1289 0 No Deposit 9 NULL 0
## 1290 0 No Deposit 9 NULL 0
## 1291 0 No Deposit 9 NULL 0
## 1292 1 No Deposit 14 NULL 0
## 1293 0 No Deposit 9 NULL 0
## 1294 0 No Deposit NULL NULL 0
## 1295 0 No Deposit 9 NULL 0
## 1296 0 No Deposit 9 NULL 0
## 1297 0 No Deposit 9 NULL 0
## 1298 0 No Deposit NULL NULL 0
## 1299 0 No Deposit 17 NULL 0
## 1300 0 No Deposit 9 NULL 0
## 1301 0 No Deposit 1 NULL 0
## 1302 0 No Deposit 1 NULL 0
## 1303 0 No Deposit 1 NULL 0
## 1304 0 No Deposit 1 NULL 0
## 1305 0 No Deposit 1 NULL 0
## 1306 0 No Deposit 1 NULL 0
## 1307 0 No Deposit 1 NULL 0
## 1308 0 No Deposit 1 NULL 0
## 1309 0 No Deposit 1 NULL 0
## 1310 0 No Deposit 1 NULL 0
## 1311 0 No Deposit 9 NULL 0
## 1312 0 No Deposit 1 NULL 0
## 1313 0 No Deposit 1 NULL 0
## 1314 0 No Deposit 1 NULL 0
## 1315 1 No Deposit 1 NULL 0
## 1316 0 No Deposit 1 NULL 0
## 1317 0 No Deposit 9 NULL 0
## 1318 0 No Deposit 1 NULL 0
## 1319 0 No Deposit 1 NULL 0
## 1320 0 No Deposit 1 NULL 0
## 1321 0 No Deposit 1 NULL 0
## 1322 0 No Deposit 1 NULL 0
## 1323 0 No Deposit 1 NULL 0
## 1324 0 No Deposit 1 NULL 0
## 1325 0 No Deposit 1 NULL 0
## 1326 1 No Deposit 1 NULL 0
## 1327 0 No Deposit 1 NULL 0
## 1328 0 No Deposit 1 NULL 0
## 1329 0 No Deposit 1 NULL 0
## 1330 0 No Deposit 14 NULL 0
## 1331 0 No Deposit 14 NULL 0
## 1332 0 No Deposit 9 NULL 0
## 1333 0 No Deposit 9 NULL 0
## 1334 1 No Deposit 14 NULL 0
## 1335 1 No Deposit 1 NULL 0
## 1336 0 No Deposit 1 NULL 0
## 1337 0 No Deposit 1 NULL 0
## 1338 0 No Deposit 1 NULL 0
## 1339 0 No Deposit 1 NULL 0
## 1340 0 No Deposit 17 NULL 0
## 1341 0 No Deposit 17 NULL 0
## 1342 0 No Deposit 17 NULL 0
## 1343 0 No Deposit 17 NULL 0
## 1344 0 No Deposit 17 NULL 0
## 1345 1 No Deposit 17 NULL 0
## 1346 0 No Deposit 17 NULL 0
## 1347 0 No Deposit 17 NULL 0
## 1348 0 No Deposit 17 NULL 0
## 1349 0 No Deposit 17 NULL 0
## 1350 0 No Deposit 17 NULL 0
## 1351 0 No Deposit 17 NULL 0
## 1352 0 No Deposit 17 NULL 0
## 1353 1 No Deposit 17 NULL 0
## 1354 2 No Deposit 17 NULL 0
## 1355 0 No Deposit 17 NULL 0
## 1356 0 No Deposit 17 NULL 0
## 1357 0 No Deposit 17 NULL 0
## 1358 0 No Deposit 17 NULL 0
## 1359 0 No Deposit 17 NULL 0
## 1360 0 No Deposit 17 NULL 0
## 1361 1 No Deposit 17 NULL 0
## 1362 1 No Deposit 17 NULL 0
## 1363 0 No Deposit 17 NULL 0
## 1364 0 No Deposit 17 NULL 0
## 1365 0 No Deposit 17 NULL 0
## 1366 0 No Deposit 17 NULL 0
## 1367 0 No Deposit 17 NULL 0
## 1368 0 No Deposit 9 NULL 0
## 1369 0 No Deposit 17 NULL 0
## 1370 0 No Deposit 17 NULL 0
## 1371 0 No Deposit 17 NULL 0
## 1372 0 No Deposit 17 NULL 0
## 1373 0 No Deposit 17 NULL 0
## 1374 0 No Deposit 17 NULL 0
## 1375 0 No Deposit 17 NULL 0
## 1376 0 No Deposit 17 NULL 0
## 1377 0 No Deposit 17 NULL 0
## 1378 0 No Deposit NULL NULL 0
## 1379 0 No Deposit 9 NULL 0
## 1380 1 No Deposit 27 NULL 0
## 1381 0 No Deposit 9 NULL 0
## 1382 1 No Deposit 9 NULL 0
## 1383 0 No Deposit 9 NULL 0
## 1384 0 No Deposit 14 NULL 0
## 1385 0 No Deposit 9 NULL 0
## 1386 0 No Deposit NULL NULL 0
## 1387 1 No Deposit NULL NULL 0
## 1388 2 No Deposit NULL NULL 0
## 1389 1 No Deposit 14 NULL 0
## 1390 0 No Deposit 14 NULL 0
## 1391 0 No Deposit 14 NULL 0
## 1392 0 No Deposit 14 NULL 0
## 1393 0 No Deposit 14 NULL 0
## 1394 0 No Deposit 13 NULL 0
## 1395 0 No Deposit 9 NULL 0
## 1396 0 No Deposit 9 NULL 0
## 1397 0 No Deposit 9 NULL 0
## 1398 0 No Deposit 14 NULL 0
## 1399 0 No Deposit 9 NULL 0
## 1400 0 No Deposit 9 NULL 0
## 1401 0 No Deposit 9 NULL 0
## 1402 1 No Deposit NULL NULL 0
## 1403 1 No Deposit NULL NULL 0
## 1404 2 No Deposit NULL NULL 0
## 1405 0 No Deposit NULL NULL 0
## 1406 1 No Deposit 9 NULL 0
## 1407 0 No Deposit NULL NULL 0
## 1408 0 No Deposit 9 NULL 0
## 1409 0 No Deposit 1 NULL 0
## 1410 0 No Deposit 1 NULL 0
## 1411 0 No Deposit 1 NULL 0
## 1412 0 No Deposit 1 NULL 0
## 1413 0 No Deposit 1 NULL 0
## 1414 0 No Deposit 1 NULL 0
## 1415 1 No Deposit 1 NULL 0
## 1416 0 No Deposit 1 NULL 0
## 1417 0 No Deposit 1 NULL 0
## 1418 0 No Deposit 1 NULL 0
## 1419 1 No Deposit 1 NULL 0
## 1420 0 No Deposit 1 NULL 0
## 1421 0 No Deposit 1 NULL 0
## 1422 1 No Deposit 1 NULL 0
## 1423 0 No Deposit 1 NULL 0
## 1424 0 No Deposit 1 NULL 0
## 1425 0 No Deposit 1 NULL 0
## 1426 0 No Deposit 9 NULL 0
## 1427 0 No Deposit NULL NULL 0
## 1428 0 No Deposit 1 NULL 0
## 1429 0 No Deposit 9 NULL 0
## 1430 1 No Deposit 9 NULL 0
## 1431 0 No Deposit 9 NULL 0
## 1432 0 No Deposit 1 NULL 0
## 1433 0 No Deposit 1 NULL 0
## 1434 0 No Deposit 1 NULL 0
## 1435 0 No Deposit 1 NULL 0
## 1436 0 No Deposit 9 NULL 0
## 1437 2 No Deposit 9 NULL 0
## 1438 0 No Deposit 9 NULL 0
## 1439 0 No Deposit 14 NULL 0
## 1440 1 No Deposit 14 NULL 0
## 1441 0 No Deposit 9 NULL 0
## 1442 0 No Deposit 9 NULL 0
## 1443 0 No Deposit 9 NULL 0
## 1444 0 No Deposit NULL 38 0
## 1445 0 No Deposit 9 NULL 0
## 1446 0 No Deposit NULL 38 0
## 1447 0 No Deposit 9 NULL 0
## 1448 0 No Deposit 14 NULL 0
## 1449 1 No Deposit 1 NULL 0
## 1450 0 No Deposit NULL 38 0
## 1451 0 No Deposit 9 NULL 0
## 1452 0 No Deposit 9 NULL 0
## 1453 0 No Deposit 9 NULL 0
## 1454 0 No Deposit 9 NULL 0
## 1455 0 No Deposit NULL 38 0
## 1456 0 No Deposit 9 NULL 0
## 1457 0 No Deposit 13 NULL 0
## 1458 0 No Deposit NULL 38 0
## 1459 0 No Deposit 9 NULL 0
## 1460 0 No Deposit 14 NULL 0
## 1461 0 No Deposit NULL 38 0
## 1462 0 No Deposit 9 NULL 0
## 1463 0 No Deposit 9 NULL 0
## 1464 0 No Deposit 14 NULL 0
## 1465 0 No Deposit NULL 38 0
## 1466 0 No Deposit NULL NULL 0
## 1467 0 No Deposit NULL NULL 0
## 1468 0 No Deposit NULL 38 0
## 1469 2 No Deposit NULL 38 0
## 1470 0 No Deposit 1 NULL 0
## 1471 0 No Deposit 1 NULL 0
## 1472 0 No Deposit 1 NULL 0
## 1473 0 No Deposit 1 NULL 0
## 1474 0 No Deposit 1 NULL 0
## 1475 1 No Deposit 1 NULL 0
## 1476 1 No Deposit 1 NULL 0
## 1477 0 No Deposit 1 NULL 0
## 1478 0 No Deposit 9 NULL 0
## 1479 0 No Deposit NULL NULL 0
## 1480 0 No Deposit NULL NULL 0
## 1481 0 No Deposit NULL NULL 0
## 1482 0 No Deposit 9 NULL 0
## 1483 0 No Deposit NULL NULL 0
## 1484 0 No Deposit NULL NULL 0
## 1485 0 No Deposit NULL NULL 0
## 1486 0 No Deposit NULL NULL 0
## 1487 0 No Deposit NULL NULL 0
## 1488 0 No Deposit NULL NULL 0
## 1489 0 No Deposit NULL NULL 0
## 1490 0 No Deposit NULL NULL 0
## 1491 0 No Deposit NULL NULL 0
## 1492 0 No Deposit NULL NULL 0
## 1493 0 No Deposit NULL 51 0
## 1494 0 No Deposit NULL NULL 0
## 1495 0 No Deposit 19 NULL 0
## 1496 0 No Deposit 9 NULL 0
## 1497 0 No Deposit NULL NULL 0
## 1498 1 Non Refund NULL 48 0
## 1499 1 Non Refund NULL 48 0
## 1500 1 Non Refund NULL 48 0
## 1501 0 No Deposit NULL NULL 0
## 1502 0 No Deposit 9 NULL 0
## 1503 1 No Deposit 9 NULL 0
## 1504 0 No Deposit 17 NULL 0
## 1505 1 No Deposit 9 NULL 0
## 1506 0 No Deposit 27 NULL 0
## 1507 0 No Deposit 1 NULL 0
## 1508 1 No Deposit NULL NULL 0
## 1509 1 No Deposit NULL NULL 0
## 1510 1 No Deposit 9 NULL 0
## 1511 0 No Deposit 9 NULL 0
## 1512 1 No Deposit 9 NULL 0
## 1513 0 No Deposit 14 NULL 0
## 1514 0 No Deposit 9 NULL 0
## 1515 0 No Deposit 9 NULL 0
## 1516 0 No Deposit 9 NULL 0
## 1517 0 No Deposit 9 NULL 0
## 1518 0 No Deposit 9 NULL 0
## 1519 2 Non Refund NULL 48 0
## 1520 0 No Deposit 19 NULL 0
## 1521 0 No Deposit 9 NULL 0
## 1522 0 No Deposit NULL 40 0
## 1523 0 No Deposit NULL 40 0
## 1524 0 No Deposit 14 NULL 0
## 1525 0 No Deposit 14 NULL 0
## 1526 0 No Deposit 9 NULL 0
## 1527 0 No Deposit 9 NULL 0
## 1528 0 No Deposit 14 NULL 0
## 1529 0 No Deposit 9 NULL 0
## 1530 0 No Deposit 14 NULL 0
## 1531 0 No Deposit NULL 40 0
## 1532 1 Non Refund NULL 48 0
## 1533 0 No Deposit NULL NULL 0
## 1534 0 No Deposit 14 NULL 0
## 1535 0 No Deposit 9 NULL 0
## 1536 0 No Deposit 9 NULL 0
## 1537 0 No Deposit 9 NULL 0
## 1538 0 No Deposit 11 NULL 0
## 1539 0 No Deposit 9 NULL 0
## 1540 0 No Deposit 9 NULL 0
## 1541 0 No Deposit NULL NULL 0
## 1542 1 No Deposit NULL NULL 0
## 1543 0 No Deposit 9 NULL 0
## 1544 1 No Deposit 14 NULL 0
## 1545 0 No Deposit 40 NULL 0
## 1546 0 No Deposit 9 NULL 0
## 1547 2 No Deposit NULL 40 0
## 1548 1 No Deposit 9 NULL 0
## 1549 0 No Deposit 9 NULL 0
## 1550 0 No Deposit 9 NULL 0
## 1551 1 No Deposit 14 NULL 0
## 1552 1 No Deposit NULL 45 0
## 1553 0 No Deposit 14 NULL 0
## 1554 0 No Deposit 9 NULL 0
## 1555 0 No Deposit 9 NULL 0
## 1556 0 No Deposit 9 NULL 0
## 1557 0 No Deposit 14 NULL 0
## 1558 0 No Deposit 9 NULL 0
## 1559 2 No Deposit NULL NULL 0
## 1560 0 No Deposit 9 NULL 0
## 1561 0 No Deposit NULL NULL 0
## 1562 0 No Deposit 9 NULL 0
## 1563 0 No Deposit 9 NULL 0
## 1564 0 No Deposit 9 NULL 0
## 1565 0 No Deposit 9 NULL 0
## 1566 0 No Deposit 45 NULL 0
## 1567 0 No Deposit 9 NULL 0
## 1568 0 No Deposit 9 NULL 0
## 1569 0 No Deposit 9 NULL 0
## 1570 0 No Deposit 14 NULL 0
## 1571 0 No Deposit NULL NULL 0
## 1572 0 No Deposit 27 NULL 0
## 1573 0 No Deposit 27 NULL 0
## 1574 0 No Deposit NULL NULL 0
## 1575 0 No Deposit NULL 45 0
## 1576 0 No Deposit NULL NULL 0
## 1577 0 No Deposit NULL NULL 0
## 1578 0 No Deposit 9 NULL 0
## 1579 0 No Deposit NULL NULL 0
## 1580 0 No Deposit 9 NULL 0
## 1581 1 No Deposit 9 NULL 0
## 1582 0 No Deposit 9 NULL 0
## 1583 0 No Deposit 9 NULL 0
## 1584 0 No Deposit 9 NULL 0
## 1585 0 No Deposit 14 NULL 0
## 1586 1 No Deposit 9 NULL 0
## 1587 0 No Deposit 9 NULL 0
## 1588 0 No Deposit 9 NULL 0
## 1589 0 No Deposit 14 NULL 0
## 1590 0 No Deposit 9 NULL 0
## 1591 1 No Deposit 9 NULL 0
## 1592 1 No Deposit 14 NULL 0
## 1593 0 No Deposit 9 NULL 0
## 1594 0 No Deposit 13 NULL 0
## 1595 0 No Deposit 13 NULL 0
## 1596 1 No Deposit NULL NULL 0
## 1597 0 No Deposit 14 NULL 0
## 1598 0 No Deposit NULL NULL 0
## 1599 0 No Deposit 9 NULL 0
## 1600 2 No Deposit 17 NULL 0
## 1601 0 No Deposit NULL NULL 0
## 1602 1 No Deposit 17 NULL 0
## 1603 0 No Deposit NULL NULL 0
## 1604 0 No Deposit 9 NULL 0
## 1605 0 No Deposit NULL NULL 0
## 1606 0 No Deposit 9 NULL 0
## 1607 0 No Deposit 9 NULL 0
## 1608 0 No Deposit 9 NULL 0
## 1609 0 No Deposit 9 NULL 0
## 1610 0 No Deposit 9 NULL 0
## 1611 0 No Deposit 9 NULL 0
## 1612 1 No Deposit 9 NULL 0
## 1613 0 No Deposit 9 NULL 0
## 1614 0 No Deposit 9 NULL 0
## 1615 0 No Deposit 9 NULL 0
## 1616 0 No Deposit 9 NULL 0
## 1617 0 No Deposit 14 NULL 0
## 1618 0 No Deposit 9 NULL 0
## 1619 0 No Deposit 9 NULL 0
## 1620 0 No Deposit 9 NULL 0
## 1621 0 No Deposit 9 NULL 0
## 1622 1 No Deposit 9 NULL 0
## 1623 0 No Deposit 9 NULL 0
## 1624 0 No Deposit 9 NULL 0
## 1625 1 No Deposit 1 NULL 0
## 1626 0 No Deposit 14 NULL 0
## 1627 1 No Deposit 1 NULL 0
## 1628 0 No Deposit 9 NULL 0
## 1629 1 No Deposit 1 NULL 0
## 1630 0 No Deposit 9 NULL 0
## 1631 0 No Deposit 9 NULL 0
## 1632 0 No Deposit NULL NULL 0
## 1633 0 No Deposit 9 NULL 0
## 1634 0 No Deposit 9 NULL 0
## 1635 0 No Deposit 9 NULL 0
## 1636 0 No Deposit 9 NULL 0
## 1637 1 No Deposit 17 NULL 0
## 1638 0 No Deposit 17 NULL 0
## 1639 0 No Deposit 17 NULL 0
## 1640 0 No Deposit 1 NULL 0
## 1641 0 No Deposit 1 NULL 0
## 1642 0 No Deposit 17 NULL 0
## 1643 0 No Deposit 17 NULL 0
## 1644 1 No Deposit 17 NULL 0
## 1645 0 No Deposit 17 NULL 0
## 1646 0 No Deposit 17 NULL 0
## 1647 0 No Deposit 17 NULL 0
## 1648 0 No Deposit 17 NULL 0
## 1649 0 No Deposit 14 NULL 0
## 1650 0 No Deposit 9 NULL 0
## 1651 0 No Deposit 14 NULL 0
## 1652 1 No Deposit 9 NULL 0
## 1653 2 No Deposit 9 NULL 0
## 1654 0 No Deposit 9 NULL 0
## 1655 0 No Deposit NULL NULL 0
## 1656 0 No Deposit 9 NULL 0
## 1657 0 No Deposit NULL NULL 0
## 1658 0 No Deposit 9 NULL 0
## 1659 0 No Deposit 14 NULL 0
## 1660 0 No Deposit 9 NULL 0
## 1661 0 No Deposit 14 NULL 0
## 1662 0 No Deposit 9 NULL 0
## 1663 0 No Deposit 1 NULL 0
## 1664 0 No Deposit 17 NULL 0
## 1665 0 No Deposit 17 NULL 0
## 1666 1 No Deposit 17 NULL 0
## 1667 0 No Deposit 17 NULL 0
## 1668 0 No Deposit 1 NULL 0
## 1669 0 No Deposit 1 NULL 0
## 1670 0 No Deposit 17 NULL 0
## 1671 0 No Deposit 17 NULL 0
## 1672 0 No Deposit 17 NULL 0
## 1673 0 No Deposit 1 NULL 0
## 1674 0 No Deposit 1 NULL 0
## 1675 0 No Deposit 17 NULL 0
## 1676 0 No Deposit 17 NULL 0
## 1677 0 No Deposit 17 NULL 0
## 1678 0 No Deposit 17 NULL 0
## 1679 0 No Deposit 17 NULL 0
## 1680 0 No Deposit 17 NULL 0
## 1681 0 No Deposit 1 NULL 0
## 1682 0 No Deposit 1 NULL 0
## 1683 1 No Deposit 17 NULL 0
## 1684 1 No Deposit 9 NULL 0
## 1685 0 No Deposit 17 NULL 0
## 1686 0 No Deposit 17 NULL 0
## 1687 1 No Deposit 1 NULL 0
## 1688 1 No Deposit 17 NULL 0
## 1689 0 No Deposit 17 NULL 0
## 1690 1 No Deposit 9 NULL 0
## 1691 1 No Deposit 9 NULL 0
## 1692 0 No Deposit 9 NULL 0
## 1693 0 No Deposit 9 NULL 0
## 1694 0 No Deposit 7 NULL 0
## 1695 0 No Deposit 9 NULL 0
## 1696 0 No Deposit 9 NULL 0
## 1697 0 No Deposit 9 NULL 0
## 1698 1 No Deposit NULL NULL 0
## 1699 0 No Deposit 9 NULL 0
## 1700 0 No Deposit 9 NULL 0
## 1701 0 No Deposit 14 NULL 0
## 1702 0 No Deposit 14 NULL 0
## 1703 0 No Deposit 9 NULL 0
## 1704 1 No Deposit NULL 45 0
## 1705 1 No Deposit NULL 45 0
## 1706 0 No Deposit 14 NULL 0
## 1707 0 No Deposit 9 NULL 0
## 1708 0 No Deposit 9 NULL 0
## 1709 0 No Deposit 9 NULL 0
## 1710 0 No Deposit 9 NULL 0
## 1711 0 No Deposit 9 NULL 0
## 1712 0 No Deposit 9 NULL 0
## 1713 1 No Deposit NULL NULL 0
## 1714 0 No Deposit 8 NULL 0
## 1715 0 No Deposit 8 NULL 0
## 1716 0 No Deposit NULL NULL 0
## 1717 0 No Deposit 9 NULL 0
## 1718 0 No Deposit NULL NULL 0
## 1719 0 No Deposit 1 NULL 0
## 1720 0 No Deposit 1 NULL 0
## 1721 0 No Deposit 1 NULL 0
## 1722 0 No Deposit 1 NULL 0
## 1723 0 No Deposit 1 NULL 0
## 1724 0 No Deposit 9 NULL 0
## 1725 0 No Deposit 1 NULL 0
## 1726 0 No Deposit 1 NULL 0
## 1727 0 No Deposit 1 NULL 0
## 1728 0 No Deposit 1 NULL 0
## 1729 0 No Deposit 1 NULL 0
## 1730 0 No Deposit 1 NULL 0
## 1731 0 No Deposit 1 NULL 0
## 1732 1 No Deposit 1 NULL 0
## 1733 0 No Deposit 1 NULL 0
## 1734 0 No Deposit 1 NULL 0
## 1735 0 No Deposit 1 NULL 0
## 1736 1 No Deposit 1 NULL 0
## 1737 1 No Deposit 1 NULL 0
## 1738 0 No Deposit 1 NULL 0
## 1739 1 No Deposit 1 NULL 0
## 1740 0 No Deposit 1 NULL 0
## 1741 0 No Deposit 1 NULL 0
## 1742 0 No Deposit 1 NULL 0
## 1743 0 No Deposit 1 NULL 0
## 1744 0 No Deposit 1 NULL 0
## 1745 1 No Deposit 1 NULL 0
## 1746 0 No Deposit 1 NULL 0
## 1747 0 No Deposit 1 NULL 0
## 1748 0 No Deposit 1 NULL 0
## 1749 0 No Deposit 1 NULL 0
## 1750 0 No Deposit 9 NULL 0
## 1751 0 No Deposit 9 NULL 0
## 1752 0 No Deposit 9 NULL 0
## 1753 0 No Deposit 9 NULL 0
## 1754 0 No Deposit 9 NULL 0
## 1755 0 No Deposit 9 NULL 0
## 1756 0 No Deposit 9 NULL 0
## 1757 0 No Deposit 9 NULL 0
## 1758 0 No Deposit NULL NULL 0
## 1759 0 No Deposit NULL NULL 0
## 1760 0 No Deposit 14 NULL 0
## 1761 0 No Deposit 14 NULL 0
## 1762 0 No Deposit 9 NULL 0
## 1763 1 No Deposit NULL NULL 0
## 1764 0 No Deposit 1 NULL 0
## 1765 0 No Deposit 1 NULL 0
## 1766 0 No Deposit 1 NULL 0
## 1767 0 No Deposit 1 NULL 0
## 1768 0 No Deposit 1 NULL 0
## 1769 1 No Deposit 1 NULL 0
## 1770 0 No Deposit 1 NULL 0
## 1771 0 No Deposit 1 NULL 0
## 1772 0 No Deposit 1 NULL 0
## 1773 0 No Deposit 1 NULL 0
## 1774 0 No Deposit 1 NULL 0
## 1775 0 No Deposit 1 NULL 0
## 1776 0 No Deposit 1 NULL 0
## 1777 0 No Deposit 1 NULL 0
## 1778 0 No Deposit 1 NULL 0
## 1779 0 No Deposit 1 NULL 0
## 1780 0 No Deposit 1 NULL 0
## 1781 0 No Deposit 1 NULL 0
## 1782 0 No Deposit 1 NULL 0
## 1783 0 No Deposit 1 NULL 0
## 1784 0 No Deposit 1 NULL 0
## 1785 0 No Deposit 1 NULL 0
## 1786 0 No Deposit 1 NULL 0
## 1787 0 No Deposit 1 NULL 0
## 1788 1 No Deposit 1 NULL 0
## 1789 1 No Deposit 1 NULL 0
## 1790 0 No Deposit 1 NULL 0
## 1791 0 No Deposit 1 NULL 0
## 1792 0 No Deposit 1 NULL 0
## 1793 0 No Deposit 1 NULL 0
## 1794 0 No Deposit 1 NULL 0
## 1795 0 No Deposit 1 NULL 0
## 1796 0 No Deposit 9 NULL 0
## 1797 0 No Deposit 1 NULL 0
## 1798 0 No Deposit 1 NULL 0
## 1799 0 No Deposit 1 NULL 0
## 1800 0 No Deposit 1 NULL 0
## 1801 0 No Deposit 1 NULL 0
## 1802 1 No Deposit 1 NULL 0
## 1803 0 No Deposit 20 NULL 0
## 1804 0 No Deposit 9 NULL 0
## 1805 2 No Deposit 14 NULL 0
## 1806 0 No Deposit 9 NULL 0
## 1807 0 No Deposit NULL NULL 0
## 1808 0 No Deposit NULL NULL 0
## 1809 0 No Deposit 9 NULL 0
## 1810 0 No Deposit NULL NULL 0
## 1811 0 No Deposit 9 NULL 0
## 1812 3 No Deposit 9 NULL 0
## 1813 0 No Deposit 9 NULL 0
## 1814 0 No Deposit 9 NULL 0
## 1815 0 No Deposit 9 NULL 0
## 1816 1 No Deposit 1 NULL 0
## 1817 0 No Deposit 1 NULL 0
## 1818 0 No Deposit 1 NULL 0
## 1819 0 No Deposit 1 NULL 0
## 1820 0 No Deposit 1 NULL 0
## 1821 0 No Deposit 9 NULL 0
## 1822 2 No Deposit NULL 45 0
## 1823 0 No Deposit 9 NULL 0
## 1824 2 No Deposit NULL 45 0
## 1825 0 No Deposit 40 NULL 0
## 1826 0 No Deposit 34 NULL 0
## 1827 0 No Deposit NULL NULL 0
## 1828 0 No Deposit NULL NULL 0
## 1829 0 No Deposit 40 NULL 0
## 1830 0 No Deposit 1 NULL 0
## 1831 0 No Deposit 1 NULL 0
## 1832 0 No Deposit 1 NULL 0
## 1833 0 No Deposit 9 NULL 0
## 1834 0 No Deposit 1 NULL 0
## 1835 0 No Deposit 1 NULL 0
## 1836 1 No Deposit 1 NULL 0
## 1837 1 No Deposit 1 NULL 0
## 1838 0 No Deposit 1 NULL 0
## 1839 0 No Deposit 1 NULL 0
## 1840 1 No Deposit 1 NULL 0
## 1841 1 No Deposit 1 NULL 0
## 1842 0 No Deposit 1 NULL 0
## 1843 0 No Deposit 1 NULL 0
## 1844 0 No Deposit 1 NULL 0
## 1845 0 No Deposit 1 NULL 0
## 1846 0 No Deposit 1 NULL 0
## 1847 1 No Deposit 1 NULL 0
## 1848 1 No Deposit 1 NULL 0
## 1849 0 No Deposit 1 NULL 0
## 1850 1 No Deposit 14 NULL 0
## 1851 0 No Deposit 1 NULL 0
## 1852 0 No Deposit 1 NULL 0
## 1853 0 No Deposit 1 NULL 0
## 1854 0 No Deposit 1 NULL 0
## 1855 0 No Deposit NULL 40 0
## 1856 0 No Deposit 1 NULL 0
## 1857 0 No Deposit 1 NULL 0
## 1858 1 No Deposit 1 NULL 0
## 1859 1 No Deposit 1 NULL 0
## 1860 0 No Deposit 1 NULL 0
## 1861 0 No Deposit 1 NULL 0
## 1862 0 No Deposit 1 NULL 0
## 1863 0 No Deposit 1 NULL 0
## 1864 0 No Deposit 1 NULL 0
## 1865 0 No Deposit 1 NULL 0
## 1866 0 No Deposit 9 NULL 0
## 1867 0 No Deposit 1 NULL 0
## 1868 1 No Deposit 13 NULL 0
## 1869 0 No Deposit 8 NULL 0
## 1870 0 No Deposit 9 NULL 0
## 1871 0 No Deposit 7 NULL 0
## 1872 0 No Deposit 9 NULL 0
## 1873 0 No Deposit 14 NULL 0
## 1874 0 No Deposit 7 NULL 0
## 1875 0 No Deposit 7 NULL 0
## 1876 0 No Deposit 9 NULL 0
## 1877 2 No Deposit 9 NULL 0
## 1878 0 No Deposit 9 NULL 0
## 1879 0 No Deposit NULL NULL 0
## 1880 0 No Deposit 9 NULL 0
## 1881 0 No Deposit 9 NULL 0
## 1882 0 No Deposit 9 NULL 0
## 1883 0 No Deposit 14 NULL 0
## 1884 0 No Deposit NULL NULL 0
## 1885 0 No Deposit 9 NULL 0
## 1886 1 No Deposit 9 NULL 0
## 1887 0 No Deposit 9 NULL 0
## 1888 0 No Deposit 9 NULL 0
## 1889 0 No Deposit 9 NULL 0
## 1890 1 No Deposit 9 NULL 0
## 1891 0 No Deposit NULL NULL 0
## 1892 1 No Deposit 9 NULL 0
## 1893 0 No Deposit NULL 45 0
## 1894 0 No Deposit 14 NULL 0
## 1895 0 No Deposit 9 NULL 0
## 1896 0 No Deposit NULL 45 0
## 1897 1 No Deposit 9 NULL 0
## 1898 0 No Deposit 9 NULL 0
## 1899 0 No Deposit 9 NULL 0
## 1900 0 No Deposit 9 NULL 0
## 1901 0 No Deposit 14 NULL 0
## 1902 0 No Deposit 9 NULL 0
## 1903 1 No Deposit 9 NULL 0
## 1904 0 No Deposit 9 NULL 0
## 1905 0 No Deposit 14 NULL 0
## 1906 0 No Deposit 9 NULL 0
## 1907 0 No Deposit 9 NULL 0
## 1908 0 No Deposit 14 NULL 0
## 1909 0 No Deposit 9 NULL 0
## 1910 0 No Deposit 9 NULL 0
## 1911 0 No Deposit 17 NULL 0
## 1912 0 No Deposit 9 NULL 0
## 1913 0 No Deposit 9 NULL 0
## 1914 1 No Deposit 9 NULL 0
## 1915 0 No Deposit 9 NULL 0
## 1916 1 No Deposit NULL NULL 0
## 1917 0 No Deposit 9 NULL 0
## 1918 1 No Deposit 9 NULL 0
## 1919 0 No Deposit NULL NULL 0
## 1920 1 No Deposit NULL NULL 0
## 1921 0 No Deposit 9 NULL 0
## 1922 0 No Deposit NULL NULL 0
## 1923 0 No Deposit NULL NULL 0
## 1924 0 No Deposit NULL NULL 0
## 1925 0 No Deposit 9 NULL 0
## 1926 0 No Deposit 9 NULL 0
## 1927 0 No Deposit 17 NULL 0
## 1928 0 No Deposit 17 NULL 0
## 1929 0 No Deposit 17 NULL 0
## 1930 0 No Deposit 9 NULL 0
## 1931 0 No Deposit 17 NULL 0
## 1932 0 No Deposit 17 NULL 0
## 1933 1 No Deposit 17 NULL 0
## 1934 0 No Deposit 17 NULL 0
## 1935 0 No Deposit 17 NULL 0
## 1936 1 No Deposit 17 NULL 0
## 1937 0 No Deposit 17 NULL 0
## 1938 0 No Deposit 17 NULL 0
## 1939 0 No Deposit 17 NULL 0
## 1940 1 No Deposit 17 NULL 0
## 1941 0 No Deposit 17 NULL 0
## 1942 0 No Deposit 17 NULL 0
## 1943 1 No Deposit 17 NULL 0
## 1944 0 No Deposit 17 NULL 0
## 1945 0 No Deposit 17 NULL 0
## 1946 0 No Deposit 17 NULL 0
## 1947 0 No Deposit 17 NULL 0
## 1948 0 No Deposit 17 NULL 0
## 1949 1 No Deposit 9 NULL 0
## 1950 0 No Deposit 17 NULL 0
## 1951 0 No Deposit 9 NULL 0
## 1952 0 No Deposit 17 NULL 0
## 1953 0 No Deposit 17 NULL 0
## 1954 0 No Deposit 17 NULL 0
## 1955 0 No Deposit 17 NULL 0
## 1956 0 No Deposit NULL NULL 0
## 1957 0 No Deposit 14 NULL 0
## 1958 0 No Deposit 9 NULL 0
## 1959 0 No Deposit 9 NULL 0
## 1960 1 No Deposit 9 NULL 0
## 1961 1 No Deposit 9 NULL 0
## 1962 0 No Deposit 9 NULL 0
## 1963 0 No Deposit 9 NULL 0
## 1964 0 No Deposit 14 NULL 0
## 1965 0 No Deposit NULL NULL 0
## 1966 0 No Deposit 14 NULL 0
## 1967 0 No Deposit 8 NULL 0
## 1968 1 No Deposit 37 NULL 0
## 1969 0 No Deposit 14 NULL 0
## 1970 0 No Deposit 9 NULL 0
## 1971 0 No Deposit 14 NULL 0
## 1972 1 No Deposit 37 NULL 0
## 1973 0 No Deposit 37 NULL 0
## 1974 0 No Deposit 37 NULL 0
## 1975 0 Non Refund 1 NULL 0
## 1976 0 Non Refund 1 NULL 0
## 1977 0 Non Refund 1 NULL 0
## 1978 0 Non Refund 1 NULL 0
## 1979 0 Non Refund 1 NULL 0
## 1980 0 Non Refund 1 NULL 0
## 1981 0 Non Refund 1 NULL 0
## 1982 0 Non Refund 1 NULL 0
## 1983 0 Non Refund 1 NULL 0
## 1984 0 Non Refund 1 NULL 0
## 1985 0 Non Refund 1 NULL 0
## 1986 0 Non Refund 1 NULL 0
## 1987 0 Non Refund 1 NULL 0
## 1988 0 Non Refund 1 NULL 0
## 1989 0 Non Refund 1 NULL 0
## 1990 0 Non Refund 1 NULL 0
## 1991 0 Non Refund 1 NULL 0
## 1992 0 Non Refund 1 NULL 0
## 1993 0 Non Refund 1 NULL 0
## 1994 0 Non Refund 1 NULL 0
## 1995 0 Non Refund 1 NULL 0
## 1996 0 Non Refund 1 NULL 0
## 1997 0 Non Refund 1 NULL 0
## 1998 0 Non Refund 1 NULL 0
## 1999 0 Non Refund 1 NULL 0
## 2000 0 Non Refund 1 NULL 0
## 2001 0 Non Refund 1 NULL 0
## 2002 0 Non Refund 1 NULL 0
## 2003 0 Non Refund 1 NULL 0
## 2004 0 Non Refund 1 NULL 0
## 2005 0 Non Refund 1 NULL 0
## 2006 0 Non Refund 1 NULL 0
## 2007 0 Non Refund 1 NULL 0
## 2008 0 Non Refund 1 NULL 0
## 2009 0 Non Refund 1 NULL 0
## 2010 0 Non Refund 1 NULL 0
## 2011 0 Non Refund 1 NULL 0
## 2012 0 Non Refund 1 NULL 0
## 2013 0 Non Refund 1 NULL 0
## 2014 0 Non Refund 1 NULL 0
## 2015 1 No Deposit NULL NULL 0
## 2016 0 No Deposit 9 NULL 0
## 2017 0 No Deposit 9 NULL 0
## 2018 0 No Deposit 14 NULL 0
## 2019 0 No Deposit 9 NULL 0
## 2020 0 No Deposit 9 NULL 0
## 2021 1 No Deposit NULL NULL 0
## 2022 0 No Deposit 40 NULL 0
## 2023 1 No Deposit NULL NULL 0
## 2024 1 No Deposit NULL NULL 0
## 2025 0 No Deposit NULL NULL 0
## 2026 0 No Deposit 9 NULL 0
## 2027 0 No Deposit 1 NULL 0
## 2028 0 No Deposit 1 NULL 0
## 2029 0 No Deposit 1 NULL 0
## 2030 0 No Deposit 1 NULL 0
## 2031 0 No Deposit NULL 40 0
## 2032 0 No Deposit 1 NULL 0
## 2033 0 No Deposit 1 NULL 0
## 2034 0 No Deposit 1 NULL 0
## 2035 0 No Deposit 1 NULL 0
## 2036 0 No Deposit 1 NULL 0
## 2037 0 No Deposit 1 NULL 0
## 2038 0 No Deposit 1 NULL 0
## 2039 0 No Deposit 1 NULL 0
## 2040 0 No Deposit 1 NULL 0
## 2041 0 No Deposit 1 NULL 0
## 2042 0 No Deposit 1 NULL 0
## 2043 0 No Deposit 1 NULL 0
## 2044 0 No Deposit 1 NULL 0
## 2045 0 No Deposit 1 NULL 0
## 2046 0 No Deposit 1 NULL 0
## 2047 0 No Deposit 9 NULL 0
## 2048 0 No Deposit 1 NULL 0
## 2049 0 No Deposit 9 NULL 0
## 2050 0 No Deposit 1 NULL 0
## 2051 0 No Deposit 1 NULL 0
## 2052 1 No Deposit NULL 62 0
## 2053 0 No Deposit 1 NULL 0
## 2054 0 No Deposit 1 NULL 0
## 2055 0 No Deposit 1 NULL 0
## 2056 0 No Deposit 14 NULL 0
## 2057 0 No Deposit 8 NULL 0
## 2058 0 No Deposit 1 NULL 0
## 2059 0 No Deposit 9 NULL 0
## 2060 0 No Deposit 14 NULL 0
## 2061 0 No Deposit 9 NULL 0
## 2062 0 No Deposit 9 NULL 0
## 2063 0 No Deposit 9 NULL 0
## 2064 2 No Deposit 14 NULL 0
## 2065 0 No Deposit 27 NULL 0
## 2066 0 No Deposit 9 NULL 0
## 2067 1 No Deposit 9 9 0
## 2068 0 No Deposit 9 NULL 0
## 2069 0 No Deposit 14 NULL 0
## 2070 0 No Deposit 9 NULL 0
## 2071 0 No Deposit 9 NULL 0
## 2072 0 No Deposit 9 NULL 0
## 2073 0 No Deposit 9 NULL 0
## 2074 0 No Deposit 14 NULL 0
## 2075 0 No Deposit 14 NULL 0
## 2076 0 No Deposit 57 NULL 0
## 2077 0 No Deposit 9 NULL 0
## 2078 0 No Deposit 9 NULL 0
## 2079 0 No Deposit 9 NULL 0
## 2080 0 No Deposit 7 NULL 0
## 2081 0 No Deposit NULL NULL 0
## 2082 0 No Deposit NULL 45 0
## 2083 0 No Deposit NULL 45 0
## 2084 0 No Deposit 9 NULL 0
## 2085 0 No Deposit 14 NULL 0
## 2086 3 No Deposit 14 NULL 0
## 2087 2 No Deposit 9 NULL 0
## 2088 1 No Deposit 14 NULL 0
## 2089 0 No Deposit 9 NULL 0
## 2090 0 No Deposit 14 NULL 0
## 2091 0 No Deposit 9 NULL 0
## 2092 0 No Deposit 9 NULL 0
## 2093 0 No Deposit 61 NULL 0
## 2094 0 No Deposit 61 NULL 0
## 2095 0 No Deposit 7 NULL 0
## 2096 1 No Deposit 16 NULL 0
## 2097 0 No Deposit 27 NULL 0
## 2098 0 No Deposit 9 NULL 0
## 2099 0 No Deposit 9 NULL 0
## 2100 0 No Deposit 13 NULL 0
## 2101 0 No Deposit 9 NULL 0
## 2102 1 No Deposit NULL NULL 0
## 2103 0 No Deposit 13 NULL 0
## 2104 0 No Deposit 1 NULL 0
## 2105 0 No Deposit 14 NULL 0
## 2106 0 No Deposit 13 NULL 0
## 2107 0 No Deposit 9 NULL 0
## 2108 1 No Deposit 13 NULL 0
## 2109 1 No Deposit 13 NULL 0
## 2110 1 No Deposit 9 NULL 0
## 2111 0 No Deposit 9 NULL 0
## 2112 0 No Deposit 1 NULL 0
## 2113 0 No Deposit 9 NULL 0
## 2114 0 No Deposit 14 NULL 0
## 2115 0 No Deposit 9 NULL 0
## 2116 0 No Deposit 9 NULL 0
## 2117 0 No Deposit 7 NULL 0
## 2118 0 No Deposit 7 NULL 0
## 2119 0 No Deposit 7 NULL 0
## 2120 0 No Deposit 9 NULL 0
## 2121 0 No Deposit 10 NULL 0
## 2122 0 No Deposit 42 NULL 0
## 2123 0 No Deposit NULL 40 0
## 2124 0 No Deposit NULL 40 0
## 2125 0 No Deposit 9 NULL 0
## 2126 0 No Deposit NULL 40 0
## 2127 0 No Deposit 7 NULL 0
## 2128 0 No Deposit 9 NULL 0
## 2129 1 No Deposit 9 NULL 0
## 2130 0 No Deposit NULL 40 0
## 2131 0 No Deposit 9 NULL 0
## 2132 2 No Deposit 7 NULL 0
## 2133 0 No Deposit 1 NULL 0
## 2134 0 No Deposit 1 NULL 0
## 2135 0 No Deposit 1 NULL 0
## 2136 0 No Deposit 9 NULL 0
## 2137 0 No Deposit 13 NULL 0
## 2138 0 No Deposit 1 NULL 0
## 2139 0 No Deposit 1 NULL 0
## 2140 1 No Deposit 1 NULL 0
## 2141 3 No Deposit 7 NULL 0
## 2142 0 No Deposit 1 NULL 0
## 2143 0 No Deposit 1 NULL 0
## 2144 0 No Deposit 13 NULL 0
## 2145 0 No Deposit 1 NULL 0
## 2146 0 No Deposit 1 NULL 0
## 2147 0 No Deposit 8 NULL 0
## 2148 3 No Deposit 7 NULL 0
## 2149 0 No Deposit 1 NULL 0
## 2150 0 No Deposit 1 NULL 0
## 2151 0 No Deposit 7 NULL 0
## 2152 0 No Deposit 10 NULL 0
## 2153 0 No Deposit 14 NULL 0
## 2154 0 No Deposit 7 NULL 0
## 2155 0 No Deposit 6 NULL 0
## 2156 0 No Deposit 9 NULL 0
## 2157 0 No Deposit 9 NULL 0
## 2158 0 No Deposit NULL NULL 0
## 2159 0 No Deposit 9 NULL 0
## 2160 0 No Deposit NULL NULL 0
## 2161 0 No Deposit 9 NULL 0
## 2162 0 No Deposit 14 NULL 0
## 2163 0 No Deposit 9 NULL 0
## 2164 0 No Deposit 9 NULL 0
## 2165 0 No Deposit 9 NULL 0
## 2166 0 No Deposit 9 NULL 0
## 2167 1 No Deposit 9 NULL 0
## 2168 0 No Deposit 9 NULL 0
## 2169 0 No Deposit NULL NULL 0
## 2170 0 No Deposit 9 NULL 0
## 2171 1 No Deposit 9 NULL 0
## 2172 0 No Deposit 9 NULL 0
## 2173 0 No Deposit 9 NULL 0
## 2174 0 No Deposit 9 NULL 0
## 2175 0 No Deposit 9 NULL 0
## 2176 0 No Deposit 9 NULL 0
## 2177 0 No Deposit 9 NULL 0
## 2178 0 No Deposit 9 NULL 0
## 2179 0 No Deposit 9 NULL 0
## 2180 0 No Deposit 9 NULL 0
## 2181 1 No Deposit NULL NULL 0
## 2182 0 No Deposit 8 NULL 0
## 2183 0 No Deposit 13 NULL 0
## 2184 0 No Deposit 7 NULL 0
## 2185 0 No Deposit 22 NULL 0
## 2186 0 No Deposit 9 NULL 0
## 2187 0 No Deposit 9 NULL 0
## 2188 0 No Deposit 9 NULL 0
## 2189 0 No Deposit 13 NULL 0
## 2190 0 No Deposit 9 NULL 0
## 2191 0 No Deposit 9 NULL 0
## 2192 0 No Deposit 9 NULL 0
## 2193 0 No Deposit NULL NULL 0
## 2194 0 No Deposit 39 NULL 38
## 2195 1 No Deposit 9 NULL 0
## 2196 0 No Deposit 8 NULL 0
## 2197 0 No Deposit 39 NULL 38
## 2198 0 No Deposit 39 NULL 38
## 2199 0 No Deposit 39 NULL 38
## 2200 0 No Deposit 9 NULL 0
## 2201 0 No Deposit 9 NULL 0
## 2202 0 No Deposit 39 NULL 38
## 2203 0 No Deposit 21 NULL 0
## 2204 1 No Deposit 21 NULL 0
## 2205 0 No Deposit 9 NULL 0
## 2206 0 No Deposit 21 NULL 0
## 2207 0 No Deposit 21 NULL 0
## 2208 0 No Deposit 9 NULL 0
## 2209 0 No Deposit 9 NULL 0
## 2210 0 No Deposit 21 NULL 0
## 2211 0 No Deposit 21 NULL 0
## 2212 0 No Deposit 21 NULL 0
## 2213 1 No Deposit 21 NULL 0
## 2214 0 No Deposit NULL NULL 0
## 2215 0 No Deposit 21 NULL 0
## 2216 0 No Deposit 21 NULL 0
## 2217 0 No Deposit 21 NULL 0
## 2218 1 No Deposit 21 NULL 0
## 2219 0 No Deposit 21 NULL 0
## 2220 0 No Deposit 21 NULL 0
## 2221 0 No Deposit 21 NULL 0
## 2222 0 No Deposit 9 NULL 0
## 2223 0 No Deposit 9 NULL 0
## 2224 0 No Deposit 21 NULL 0
## 2225 0 No Deposit 21 NULL 0
## 2226 0 No Deposit 21 NULL 0
## 2227 0 No Deposit 21 NULL 0
## 2228 1 No Deposit 21 NULL 0
## 2229 0 No Deposit 21 NULL 0
## 2230 0 No Deposit 21 NULL 0
## 2231 0 No Deposit 21 NULL 0
## 2232 0 No Deposit 21 NULL 0
## 2233 0 No Deposit 9 NULL 0
## 2234 0 No Deposit 21 NULL 0
## 2235 0 No Deposit 21 NULL 0
## 2236 1 No Deposit 9 NULL 0
## 2237 1 No Deposit 9 NULL 0
## 2238 0 No Deposit 24 NULL 0
## 2239 0 No Deposit 9 NULL 0
## 2240 0 No Deposit 8 NULL 0
## 2241 0 No Deposit 39 NULL 38
## 2242 0 No Deposit 6 NULL 0
## 2243 0 No Deposit 39 NULL 38
## 2244 1 No Deposit NULL NULL 0
## 2245 0 No Deposit 39 NULL 38
## 2246 0 No Deposit 24 NULL 0
## 2247 0 No Deposit NULL NULL 0
## 2248 1 No Deposit 3 NULL 0
## 2249 0 No Deposit 15 NULL 0
## 2250 0 No Deposit 13 NULL 0
## 2251 0 No Deposit 9 NULL 0
## 2252 0 No Deposit 8 NULL 0
## 2253 0 No Deposit 15 NULL 0
## 2254 0 No Deposit 9 NULL 0
## 2255 0 No Deposit 11 NULL 0
## 2256 0 No Deposit 24 NULL 0
## 2257 0 No Deposit 7 NULL 0
## 2258 2 No Deposit 9 NULL 0
## 2259 0 No Deposit 9 NULL 0
## 2260 0 No Deposit 11 NULL 0
## 2261 0 No Deposit 6 NULL 0
## 2262 0 No Deposit 7 NULL 0
## 2263 0 No Deposit 7 NULL 0
## 2264 0 No Deposit 7 NULL 0
## 2265 0 No Deposit 9 NULL 0
## 2266 0 No Deposit 9 NULL 0
## 2267 1 No Deposit 9 NULL 0
## 2268 0 No Deposit 9 NULL 0
## 2269 0 No Deposit 6 NULL 0
## 2270 0 No Deposit 9 NULL 0
## 2271 0 No Deposit 9 NULL 0
## 2272 0 No Deposit NULL NULL 0
## 2273 0 No Deposit 9 NULL 0
## 2274 0 No Deposit 6 NULL 0
## 2275 1 No Deposit NULL NULL 0
## 2276 0 No Deposit 6 NULL 0
## 2277 0 No Deposit 9 NULL 0
## 2278 0 No Deposit 9 NULL 0
## 2279 0 No Deposit 14 NULL 0
## 2280 0 No Deposit 9 NULL 0
## 2281 0 No Deposit 9 NULL 0
## 2282 2 No Deposit NULL NULL 0
## 2283 1 No Deposit 9 NULL 0
## 2284 0 Non Refund 1 NULL 0
## 2285 0 Non Refund 1 NULL 0
## 2286 0 Non Refund 1 NULL 0
## 2287 0 No Deposit NULL NULL 0
## 2288 0 No Deposit 7 NULL 0
## 2289 0 Non Refund 1 NULL 0
## 2290 0 Non Refund 1 NULL 0
## 2291 0 Non Refund 1 NULL 0
## 2292 0 Non Refund 1 NULL 0
## 2293 0 Non Refund 1 NULL 0
## 2294 0 Non Refund 1 NULL 0
## 2295 0 No Deposit 9 NULL 0
## 2296 0 Non Refund 1 NULL 0
## 2297 0 Non Refund 1 NULL 0
## 2298 0 Non Refund 1 NULL 0
## 2299 0 Non Refund 1 NULL 0
## 2300 0 Non Refund 1 NULL 0
## 2301 0 Non Refund 1 NULL 0
## 2302 0 Non Refund 1 NULL 0
## 2303 0 No Deposit 9 NULL 0
## 2304 0 No Deposit NULL NULL 0
## 2305 0 Non Refund 1 NULL 0
## 2306 0 Non Refund 1 NULL 0
## 2307 0 Non Refund 1 NULL 0
## 2308 0 Non Refund 1 NULL 0
## 2309 0 No Deposit NULL NULL 0
## 2310 0 Non Refund 1 NULL 0
## 2311 0 Non Refund 1 NULL 0
## 2312 0 Non Refund 1 NULL 0
## 2313 0 Non Refund 1 NULL 0
## 2314 0 Non Refund 1 NULL 0
## 2315 0 Non Refund 1 NULL 0
## 2316 0 No Deposit 9 NULL 0
## 2317 0 No Deposit 7 NULL 0
## 2318 0 Non Refund 1 NULL 0
## 2319 0 No Deposit 9 NULL 0
## 2320 0 Non Refund 1 NULL 0
## 2321 0 Non Refund 1 NULL 0
## 2322 0 Non Refund 1 NULL 0
## 2323 0 Non Refund 1 NULL 0
## 2324 0 No Deposit 9 NULL 0
## 2325 1 No Deposit 9 NULL 0
## 2326 0 No Deposit 9 NULL 0
## 2327 0 No Deposit 9 NULL 0
## 2328 0 No Deposit 9 NULL 0
## 2329 0 No Deposit 14 NULL 0
## 2330 0 No Deposit 9 NULL 0
## 2331 0 No Deposit 7 NULL 0
## 2332 1 No Deposit 9 NULL 0
## 2333 0 No Deposit 9 NULL 0
## 2334 0 No Deposit 9 NULL 0
## 2335 2 No Deposit 1 NULL 0
## 2336 0 No Deposit 1 NULL 0
## 2337 0 No Deposit 1 NULL 0
## 2338 0 No Deposit 1 NULL 0
## 2339 1 No Deposit 1 NULL 0
## 2340 1 No Deposit 1 NULL 0
## 2341 0 No Deposit 1 NULL 0
## 2342 0 No Deposit 1 NULL 0
## 2343 1 No Deposit 1 NULL 0
## 2344 0 No Deposit 9 NULL 0
## 2345 1 No Deposit 1 NULL 0
## 2346 0 No Deposit 1 NULL 0
## 2347 0 No Deposit 1 NULL 0
## 2348 0 No Deposit 1 NULL 0
## 2349 0 No Deposit 1 NULL 0
## 2350 0 No Deposit 1 NULL 0
## 2351 0 No Deposit 1 NULL 0
## 2352 0 No Deposit 1 NULL 0
## 2353 0 No Deposit 8 NULL 0
## 2354 3 No Deposit 1 NULL 0
## 2355 1 No Deposit 1 NULL 0
## 2356 1 No Deposit 1 NULL 0
## 2357 2 No Deposit 1 NULL 0
## 2358 0 No Deposit 9 NULL 0
## 2359 0 No Deposit 1 NULL 0
## 2360 1 No Deposit 1 NULL 0
## 2361 0 No Deposit 1 NULL 0
## 2362 0 No Deposit 1 NULL 0
## 2363 0 No Deposit 1 NULL 0
## 2364 0 No Deposit 1 NULL 0
## 2365 1 No Deposit 1 NULL 0
## 2366 2 No Deposit 1 NULL 0
## 2367 1 No Deposit 1 NULL 0
## 2368 0 No Deposit 1 NULL 0
## 2369 0 No Deposit 1 NULL 0
## 2370 1 No Deposit 1 NULL 0
## 2371 0 No Deposit 1 NULL 0
## 2372 0 No Deposit 1 NULL 0
## 2373 0 No Deposit 1 NULL 0
## 2374 0 No Deposit 1 NULL 0
## 2375 0 No Deposit 1 NULL 0
## 2376 0 No Deposit 1 NULL 0
## 2377 0 No Deposit 1 NULL 0
## 2378 0 No Deposit 1 NULL 0
## 2379 0 No Deposit 1 NULL 0
## 2380 1 No Deposit 9 NULL 0
## 2381 0 No Deposit 8 NULL 0
## 2382 0 No Deposit 9 NULL 0
## 2383 0 No Deposit 28 NULL 0
## 2384 0 No Deposit 9 NULL 0
## 2385 0 No Deposit 7 NULL 0
## 2386 1 No Deposit 9 NULL 0
## 2387 0 No Deposit 1 NULL 0
## 2388 0 No Deposit 1 NULL 0
## 2389 0 No Deposit 1 NULL 0
## 2390 0 No Deposit 1 NULL 0
## 2391 0 No Deposit 27 NULL 0
## 2392 0 No Deposit 1 NULL 0
## 2393 0 No Deposit 1 NULL 0
## 2394 0 No Deposit 1 NULL 0
## 2395 0 No Deposit 1 NULL 0
## 2396 0 No Deposit 1 NULL 0
## 2397 0 No Deposit 1 NULL 0
## 2398 0 No Deposit 1 NULL 0
## 2399 0 No Deposit 9 NULL 0
## 2400 0 No Deposit 9 NULL 0
## 2401 0 No Deposit 1 NULL 0
## 2402 0 No Deposit 1 NULL 0
## 2403 0 No Deposit 1 NULL 0
## 2404 1 No Deposit 1 NULL 0
## 2405 0 No Deposit 1 NULL 0
## 2406 0 No Deposit 1 NULL 0
## 2407 0 No Deposit 1 NULL 0
## 2408 0 No Deposit 1 NULL 0
## 2409 0 No Deposit 1 NULL 0
## 2410 0 No Deposit 1 NULL 0
## 2411 0 No Deposit 1 NULL 0
## 2412 0 No Deposit 1 NULL 0
## 2413 0 No Deposit 1 NULL 0
## 2414 0 No Deposit 1 NULL 0
## 2415 0 No Deposit 1 NULL 0
## 2416 0 No Deposit 1 NULL 0
## 2417 0 No Deposit 1 NULL 0
## 2418 0 No Deposit 1 NULL 0
## 2419 0 No Deposit 1 NULL 0
## 2420 0 No Deposit 1 NULL 0
## 2421 0 No Deposit 1 NULL 0
## 2422 0 No Deposit 1 NULL 0
## 2423 0 No Deposit 1 NULL 0
## 2424 0 No Deposit 1 NULL 0
## 2425 0 No Deposit 1 NULL 0
## 2426 0 No Deposit 1 NULL 0
## 2427 0 No Deposit 1 NULL 0
## 2428 0 No Deposit 1 NULL 0
## 2429 0 No Deposit 1 NULL 0
## 2430 0 No Deposit 1 NULL 0
## 2431 0 No Deposit 1 NULL 0
## 2432 0 No Deposit 1 NULL 0
## 2433 0 No Deposit 1 NULL 0
## 2434 0 No Deposit 1 NULL 0
## 2435 0 No Deposit 1 NULL 0
## 2436 0 No Deposit 1 NULL 0
## 2437 0 No Deposit 1 NULL 0
## 2438 0 No Deposit 1 NULL 0
## 2439 0 No Deposit 1 NULL 0
## 2440 0 No Deposit 1 NULL 0
## 2441 0 No Deposit 1 NULL 0
## 2442 0 No Deposit 1 NULL 0
## 2443 1 No Deposit 1 NULL 0
## 2444 0 No Deposit 1 NULL 0
## 2445 0 No Deposit 1 NULL 0
## 2446 0 No Deposit 1 NULL 0
## 2447 0 No Deposit 1 NULL 0
## 2448 0 No Deposit 1 NULL 0
## 2449 0 No Deposit 1 NULL 0
## 2450 0 No Deposit 1 NULL 0
## 2451 0 No Deposit 1 NULL 0
## 2452 0 No Deposit 1 NULL 0
## 2453 0 No Deposit 1 NULL 0
## 2454 0 No Deposit 1 NULL 0
## 2455 0 No Deposit 1 NULL 0
## 2456 0 No Deposit 1 NULL 0
## 2457 0 No Deposit 1 NULL 0
## 2458 0 No Deposit 1 NULL 0
## 2459 0 No Deposit 1 NULL 0
## 2460 0 No Deposit 1 NULL 0
## 2461 0 No Deposit 1 NULL 0
## 2462 0 No Deposit 1 NULL 0
## 2463 0 No Deposit 1 NULL 0
## 2464 0 No Deposit 1 NULL 0
## 2465 0 No Deposit 1 NULL 0
## 2466 0 No Deposit 1 NULL 0
## 2467 0 No Deposit 1 NULL 0
## 2468 0 No Deposit 1 NULL 0
## 2469 0 No Deposit 1 NULL 0
## 2470 0 No Deposit NULL NULL 0
## 2471 0 No Deposit 13 NULL 0
## 2472 0 No Deposit 9 NULL 0
## 2473 0 No Deposit NULL NULL 0
## 2474 0 No Deposit NULL NULL 0
## 2475 0 No Deposit 27 NULL 0
## 2476 0 No Deposit 9 NULL 0
## 2477 0 No Deposit 11 NULL 0
## 2478 0 No Deposit 27 NULL 0
## 2479 0 No Deposit 14 NULL 0
## 2480 1 No Deposit NULL NULL 0
## 2481 0 No Deposit 9 NULL 0
## 2482 1 No Deposit NULL NULL 0
## 2483 0 No Deposit NULL NULL 0
## 2484 2 No Deposit 14 NULL 0
## 2485 0 No Deposit 9 NULL 0
## 2486 0 No Deposit 9 NULL 0
## 2487 0 No Deposit 11 NULL 0
## 2488 0 No Deposit 9 NULL 0
## 2489 0 No Deposit 9 NULL 0
## 2490 1 No Deposit 13 NULL 0
## 2491 0 No Deposit 9 NULL 0
## 2492 0 No Deposit 9 NULL 0
## 2493 0 No Deposit 9 NULL 0
## 2494 0 No Deposit 15 NULL 0
## 2495 1 No Deposit NULL NULL 0
## 2496 0 No Deposit NULL NULL 0
## 2497 0 No Deposit 9 NULL 0
## 2498 0 No Deposit 9 NULL 0
## 2499 0 No Deposit 13 NULL 0
## 2500 0 No Deposit 7 NULL 0
## 2501 0 No Deposit 9 NULL 0
## 2502 0 No Deposit 9 NULL 0
## 2503 0 No Deposit NULL 40 0
## 2504 0 No Deposit 9 NULL 0
## 2505 0 No Deposit 22 NULL 0
## 2506 0 No Deposit 7 NULL 0
## 2507 0 No Deposit 9 NULL 0
## 2508 0 No Deposit 9 NULL 0
## 2509 0 No Deposit NULL 40 0
## 2510 0 No Deposit 9 NULL 0
## 2511 0 No Deposit 9 NULL 0
## 2512 0 No Deposit 11 NULL 0
## 2513 0 No Deposit 7 NULL 0
## 2514 1 No Deposit 9 NULL 0
## 2515 1 No Deposit 9 NULL 0
## 2516 0 No Deposit 9 NULL 0
## 2517 0 No Deposit 9 NULL 0
## 2518 0 No Deposit 9 NULL 0
## 2519 1 No Deposit 11 NULL 0
## 2520 0 No Deposit 9 NULL 0
## 2521 0 No Deposit 9 NULL 0
## 2522 0 No Deposit 11 NULL 0
## 2523 0 No Deposit 9 NULL 0
## 2524 0 No Deposit 13 NULL 0
## 2525 0 No Deposit 13 NULL 0
## 2526 0 No Deposit NULL 67 0
## 2527 0 No Deposit NULL NULL 0
## 2528 0 No Deposit 9 NULL 0
## 2529 0 No Deposit 7 NULL 0
## 2530 0 No Deposit 9 NULL 0
## 2531 0 No Deposit 7 NULL 0
## 2532 2 No Deposit 11 NULL 0
## 2533 0 No Deposit 13 NULL 0
## 2534 0 No Deposit 14 NULL 0
## 2535 0 No Deposit 7 NULL 0
## 2536 0 No Deposit 9 NULL 0
## 2537 0 No Deposit 9 NULL 0
## 2538 0 No Deposit 14 NULL 0
## 2539 0 No Deposit 7 NULL 0
## 2540 0 No Deposit 9 NULL 0
## 2541 0 No Deposit 13 NULL 0
## 2542 0 No Deposit NULL NULL 0
## 2543 0 No Deposit NULL NULL 0
## 2544 0 No Deposit NULL NULL 0
## 2545 0 No Deposit NULL NULL 0
## 2546 0 No Deposit NULL NULL 0
## 2547 0 No Deposit NULL NULL 0
## 2548 0 No Deposit 9 NULL 0
## 2549 0 No Deposit 13 NULL 0
## 2550 0 No Deposit 13 NULL 0
## 2551 1 No Deposit NULL NULL 0
## 2552 0 No Deposit 9 NULL 0
## 2553 1 No Deposit NULL NULL 0
## 2554 1 No Deposit 7 NULL 0
## 2555 0 No Deposit 13 NULL 0
## 2556 0 No Deposit NULL NULL 0
## 2557 1 No Deposit 7 NULL 0
## 2558 0 No Deposit 13 NULL 0
## 2559 1 No Deposit NULL 40 0
## 2560 1 No Deposit 9 NULL 0
## 2561 0 No Deposit 7 NULL 0
## 2562 0 No Deposit NULL NULL 0
## 2563 0 No Deposit 14 NULL 0
## 2564 0 No Deposit 9 NULL 0
## 2565 0 No Deposit 9 NULL 0
## 2566 0 No Deposit 8 NULL 0
## 2567 0 No Deposit 13 NULL 0
## 2568 0 No Deposit 13 NULL 0
## 2569 0 No Deposit 9 NULL 0
## 2570 1 No Deposit 9 NULL 0
## 2571 0 No Deposit NULL NULL 0
## 2572 0 No Deposit 9 NULL 0
## 2573 0 No Deposit 6 NULL 0
## 2574 0 No Deposit 9 NULL 0
## 2575 0 No Deposit 13 NULL 0
## 2576 0 No Deposit NULL NULL 0
## 2577 0 No Deposit NULL NULL 0
## 2578 0 No Deposit NULL NULL 0
## 2579 0 No Deposit 8 NULL 0
## 2580 0 No Deposit 9 NULL 0
## 2581 0 No Deposit NULL NULL 0
## 2582 0 No Deposit 9 NULL 0
## 2583 0 No Deposit 6 NULL 0
## 2584 0 No Deposit 9 NULL 0
## 2585 0 No Deposit 11 NULL 0
## 2586 0 No Deposit 9 NULL 0
## 2587 0 No Deposit 22 NULL 0
## 2588 0 No Deposit 9 NULL 0
## 2589 0 No Deposit 14 NULL 0
## 2590 0 No Deposit 9 NULL 0
## 2591 0 No Deposit 16 NULL 0
## 2592 0 No Deposit 9 NULL 0
## 2593 0 No Deposit NULL NULL 0
## 2594 0 No Deposit NULL NULL 0
## 2595 0 No Deposit 1 NULL 0
## 2596 2 No Deposit 1 NULL 0
## 2597 0 No Deposit 8 NULL 0
## 2598 0 No Deposit NULL 68 0
## 2599 0 No Deposit 9 NULL 0
## 2600 0 No Deposit NULL 68 0
## 2601 0 No Deposit NULL 68 0
## 2602 0 No Deposit NULL NULL 0
## 2603 0 No Deposit NULL 68 0
## 2604 0 No Deposit 1 NULL 0
## 2605 0 No Deposit 1 NULL 0
## 2606 0 No Deposit NULL NULL 0
## 2607 0 No Deposit 9 NULL 0
## 2608 0 No Deposit 9 NULL 0
## 2609 0 No Deposit NULL NULL 0
## 2610 0 No Deposit 8 NULL 0
## 2611 0 No Deposit 9 NULL 0
## 2612 0 No Deposit NULL 40 0
## 2613 0 No Deposit NULL NULL 0
## 2614 0 No Deposit 7 NULL 0
## 2615 0 No Deposit 1 NULL 0
## 2616 0 No Deposit 1 NULL 0
## 2617 0 No Deposit NULL 68 0
## 2618 0 No Deposit NULL 68 0
## 2619 0 No Deposit NULL 68 0
## 2620 0 No Deposit NULL 68 0
## 2621 0 No Deposit 1 NULL 0
## 2622 0 No Deposit 1 NULL 0
## 2623 0 No Deposit 1 NULL 0
## 2624 0 No Deposit NULL NULL 0
## 2625 0 No Deposit NULL 68 0
## 2626 0 No Deposit NULL NULL 0
## 2627 0 No Deposit NULL 68 0
## 2628 0 No Deposit 1 NULL 0
## 2629 0 No Deposit 1 NULL 0
## 2630 0 No Deposit 1 NULL 0
## 2631 0 No Deposit 1 NULL 0
## 2632 0 No Deposit NULL 68 0
## 2633 0 No Deposit 9 NULL 0
## 2634 0 No Deposit NULL 68 0
## 2635 0 No Deposit NULL NULL 0
## 2636 0 No Deposit 1 NULL 0
## 2637 0 No Deposit 1 NULL 0
## 2638 0 No Deposit 1 NULL 0
## 2639 0 No Deposit NULL 68 0
## 2640 0 No Deposit 9 NULL 0
## 2641 0 No Deposit NULL 40 0
## 2642 0 No Deposit NULL 68 0
## 2643 0 No Deposit NULL 68 0
## 2644 0 No Deposit NULL 68 0
## 2645 0 No Deposit NULL 68 0
## 2646 0 No Deposit NULL 68 0
## 2647 0 No Deposit NULL NULL 0
## 2648 0 No Deposit 1 NULL 0
## 2649 0 No Deposit 1 NULL 0
## 2650 0 No Deposit NULL 68 0
## 2651 0 No Deposit NULL 68 0
## 2652 0 No Deposit 9 NULL 0
## 2653 0 No Deposit 1 NULL 0
## 2654 0 No Deposit 1 NULL 0
## 2655 0 No Deposit NULL 68 0
## 2656 0 No Deposit NULL NULL 0
## 2657 0 No Deposit NULL NULL 0
## 2658 0 No Deposit 1 NULL 0
## 2659 0 No Deposit 1 NULL 0
## 2660 0 No Deposit 1 NULL 0
## 2661 0 No Deposit 9 NULL 0
## 2662 0 No Deposit NULL 68 0
## 2663 2 No Deposit NULL 68 0
## 2664 0 No Deposit 1 NULL 0
## 2665 0 No Deposit 1 NULL 0
## 2666 0 No Deposit 1 NULL 0
## 2667 0 No Deposit NULL 68 0
## 2668 0 No Deposit NULL 68 0
## 2669 0 No Deposit NULL NULL 0
## 2670 0 No Deposit 8 NULL 0
## 2671 0 No Deposit NULL 68 0
## 2672 0 No Deposit NULL 68 0
## 2673 0 No Deposit NULL 68 0
## 2674 0 No Deposit 1 NULL 0
## 2675 0 No Deposit 1 NULL 0
## 2676 0 No Deposit NULL 68 0
## 2677 0 No Deposit NULL 68 0
## 2678 0 No Deposit NULL NULL 0
## 2679 0 No Deposit 1 NULL 0
## 2680 0 No Deposit 1 NULL 0
## 2681 0 No Deposit 1 NULL 0
## 2682 0 No Deposit NULL 68 0
## 2683 0 No Deposit NULL 68 0
## 2684 1 No Deposit NULL 68 0
## 2685 1 No Deposit NULL 68 0
## 2686 1 No Deposit NULL 68 0
## 2687 1 No Deposit NULL 68 0
## 2688 1 No Deposit NULL 68 0
## 2689 0 No Deposit 9 NULL 0
## 2690 0 No Deposit 8 NULL 0
## 2691 0 No Deposit 9 NULL 0
## 2692 0 No Deposit 7 NULL 0
## 2693 0 No Deposit 9 NULL 0
## 2694 0 No Deposit 9 NULL 0
## 2695 0 No Deposit 9 NULL 0
## 2696 1 No Deposit NULL 68 0
## 2697 0 No Deposit 13 NULL 0
## 2698 0 No Deposit 9 NULL 0
## 2699 0 No Deposit 8 NULL 0
## 2700 0 No Deposit 6 NULL 0
## 2701 0 No Deposit 27 NULL 0
## 2702 0 No Deposit NULL 68 0
## 2703 0 No Deposit NULL 68 0
## 2704 0 No Deposit 9 NULL 0
## 2705 0 No Deposit 8 NULL 0
## 2706 0 No Deposit NULL NULL 0
## 2707 0 No Deposit 69 NULL 0
## 2708 0 No Deposit NULL NULL 0
## 2709 1 No Deposit NULL 68 0
## 2710 0 No Deposit NULL NULL 0
## 2711 1 No Deposit NULL 68 0
## 2712 0 No Deposit 9 NULL 0
## 2713 0 No Deposit NULL NULL 0
## 2714 0 No Deposit 69 NULL 0
## 2715 0 No Deposit 9 NULL 0
## 2716 0 Non Refund 41 NULL 0
## 2717 0 Non Refund 41 NULL 0
## 2718 0 Non Refund 41 NULL 0
## 2719 0 Non Refund 41 NULL 0
## 2720 0 Non Refund 41 NULL 0
## 2721 0 No Deposit NULL 68 0
## 2722 0 No Deposit 50 NULL 0
## 2723 0 Non Refund 41 NULL 0
## 2724 0 No Deposit 9 NULL 0
## 2725 0 No Deposit 14 NULL 0
## 2726 0 Non Refund 41 NULL 0
## 2727 0 Non Refund 41 NULL 0
## 2728 0 Non Refund 41 NULL 0
## 2729 0 Non Refund 41 NULL 0
## 2730 0 Non Refund 41 NULL 0
## 2731 0 Non Refund 41 NULL 0
## 2732 0 Non Refund 41 NULL 0
## 2733 0 Non Refund 41 NULL 0
## 2734 0 Non Refund 41 NULL 0
## 2735 0 No Deposit 7 NULL 0
## 2736 0 Non Refund 41 NULL 0
## 2737 0 Non Refund 41 NULL 0
## 2738 0 Non Refund 41 NULL 0
## 2739 0 Non Refund 41 NULL 0
## 2740 0 Non Refund 41 NULL 0
## 2741 0 Non Refund 41 NULL 0
## 2742 0 Non Refund 41 NULL 0
## 2743 0 Non Refund 41 NULL 0
## 2744 0 No Deposit 9 NULL 0
## 2745 0 No Deposit 9 NULL 0
## 2746 0 No Deposit 9 NULL 0
## 2747 4 No Deposit NULL NULL 0
## 2748 0 No Deposit 9 NULL 0
## 2749 0 No Deposit 9 NULL 0
## 2750 1 No Deposit 14 NULL 0
## 2751 0 No Deposit 9 NULL 0
## 2752 0 No Deposit 14 NULL 0
## 2753 0 No Deposit 9 NULL 0
## 2754 0 Non Refund 41 NULL 0
## 2755 0 Non Refund 41 NULL 0
## 2756 0 No Deposit 9 NULL 0
## 2757 0 No Deposit 9 NULL 0
## 2758 0 No Deposit 9 NULL 0
## 2759 0 No Deposit 7 NULL 0
## 2760 0 No Deposit 6 NULL 0
## 2761 0 No Deposit 6 NULL 0
## 2762 0 No Deposit 27 NULL 0
## 2763 0 No Deposit 6 NULL 0
## 2764 0 No Deposit 9 NULL 0
## 2765 0 No Deposit 9 NULL 0
## 2766 0 No Deposit 9 NULL 0
## 2767 0 No Deposit 9 NULL 0
## 2768 0 No Deposit 1 NULL 0
## 2769 1 No Deposit 1 NULL 0
## 2770 1 No Deposit 1 NULL 0
## 2771 0 No Deposit 1 NULL 0
## 2772 0 No Deposit 1 NULL 0
## 2773 0 No Deposit 1 NULL 0
## 2774 0 Non Refund NULL NULL 0
## 2775 0 Non Refund NULL NULL 0
## 2776 2 No Deposit 30 NULL 0
## 2777 0 No Deposit 30 NULL 0
## 2778 1 No Deposit 1 NULL 0
## 2779 0 No Deposit 9 NULL 0
## 2780 0 No Deposit NULL NULL 0
## 2781 0 No Deposit NULL NULL 0
## 2782 0 No Deposit 1 NULL 0
## 2783 2 No Deposit 1 NULL 0
## 2784 0 No Deposit 1 NULL 0
## 2785 0 No Deposit 9 NULL 0
## 2786 1 No Deposit 1 NULL 0
## 2787 0 No Deposit 1 NULL 0
## 2788 2 No Deposit 1 NULL 0
## 2789 2 No Deposit 1 NULL 0
## 2790 0 No Deposit 1 NULL 0
## 2791 0 No Deposit 1 NULL 0
## 2792 0 No Deposit 1 NULL 0
## 2793 0 No Deposit 1 NULL 0
## 2794 1 No Deposit 30 NULL 0
## 2795 1 No Deposit 1 NULL 0
## 2796 1 No Deposit 1 NULL 0
## 2797 0 No Deposit 1 NULL 0
## 2798 0 No Deposit 1 NULL 0
## 2799 0 No Deposit 1 NULL 0
## 2800 0 No Deposit NULL NULL 0
## 2801 0 No Deposit NULL NULL 0
## 2802 0 No Deposit 9 NULL 0
## 2803 0 No Deposit 30 NULL 0
## 2804 1 No Deposit 1 NULL 0
## 2805 1 No Deposit 1 NULL 0
## 2806 0 No Deposit 1 NULL 0
## 2807 0 No Deposit 1 NULL 0
## 2808 0 No Deposit 30 NULL 0
## 2809 0 No Deposit 30 NULL 0
## 2810 0 Non Refund NULL NULL 0
## 2811 0 Non Refund NULL NULL 0
## 2812 1 No Deposit NULL NULL 0
## 2813 0 No Deposit 30 NULL 0
## 2814 1 No Deposit 1 NULL 0
## 2815 0 No Deposit 1 NULL 0
## 2816 0 No Deposit 1 NULL 0
## 2817 1 No Deposit NULL NULL 0
## 2818 3 No Deposit NULL NULL 0
## 2819 0 No Deposit NULL NULL 0
## 2820 0 No Deposit 30 NULL 0
## 2821 1 No Deposit 1 NULL 0
## 2822 0 No Deposit 1 NULL 0
## 2823 0 No Deposit NULL NULL 0
## 2824 1 No Deposit 1 NULL 0
## 2825 0 No Deposit 1 NULL 0
## 2826 0 No Deposit 1 NULL 0
## 2827 0 No Deposit 30 NULL 0
## 2828 1 No Deposit 1 NULL 0
## 2829 0 No Deposit 1 NULL 0
## 2830 0 No Deposit 1 NULL 0
## 2831 0 No Deposit 1 NULL 0
## 2832 0 Non Refund NULL NULL 0
## 2833 0 Non Refund NULL NULL 0
## 2834 0 No Deposit 30 NULL 0
## 2835 1 No Deposit 1 NULL 0
## 2836 1 No Deposit 1 NULL 0
## 2837 0 No Deposit 1 NULL 0
## 2838 0 No Deposit NULL NULL 0
## 2839 0 No Deposit NULL NULL 0
## 2840 0 No Deposit 1 NULL 0
## 2841 0 No Deposit NULL NULL 0
## 2842 0 No Deposit 9 NULL 0
## 2843 1 No Deposit 9 NULL 0
## 2844 0 No Deposit 9 NULL 0
## 2845 0 No Deposit 9 NULL 0
## 2846 0 No Deposit 13 NULL 0
## 2847 0 No Deposit 9 NULL 0
## 2848 0 No Deposit 9 NULL 0
## 2849 0 No Deposit 9 NULL 0
## 2850 0 No Deposit 30 NULL 0
## 2851 0 No Deposit 30 NULL 0
## 2852 1 No Deposit 30 NULL 0
## 2853 1 No Deposit 1 NULL 0
## 2854 0 No Deposit 1 NULL 0
## 2855 0 No Deposit 1 NULL 0
## 2856 0 No Deposit 1 NULL 0
## 2857 0 No Deposit 1 NULL 0
## 2858 0 No Deposit 30 NULL 0
## 2859 0 No Deposit 9 NULL 0
## 2860 0 No Deposit NULL NULL 0
## 2861 0 Non Refund NULL NULL 0
## 2862 0 No Deposit 30 NULL 0
## 2863 1 No Deposit 1 NULL 0
## 2864 0 No Deposit 1 NULL 0
## 2865 0 No Deposit 30 NULL 0
## 2866 0 No Deposit 30 NULL 0
## 2867 0 No Deposit 9 NULL 0
## 2868 0 No Deposit 39 NULL 48
## 2869 0 No Deposit 39 NULL 48
## 2870 0 No Deposit NULL 68 0
## 2871 0 No Deposit NULL NULL 0
## 2872 0 No Deposit 39 NULL 48
## 2873 0 No Deposit 39 NULL 48
## 2874 0 No Deposit NULL 68 0
## 2875 0 No Deposit NULL NULL 0
## 2876 0 No Deposit 39 NULL 48
## 2877 0 No Deposit 9 NULL 0
## 2878 0 No Deposit 39 NULL 48
## 2879 0 No Deposit 9 NULL 0
## 2880 1 No Deposit 9 NULL 0
## 2881 0 No Deposit NULL NULL 0
## 2882 0 No Deposit 7 NULL 0
## 2883 0 No Deposit 39 NULL 48
## 2884 0 No Deposit 39 NULL 48
## 2885 0 No Deposit NULL 68 0
## 2886 1 No Deposit 1 NULL 0
## 2887 0 No Deposit 1 NULL 0
## 2888 0 No Deposit 30 NULL 0
## 2889 1 No Deposit 30 NULL 0
## 2890 0 No Deposit NULL NULL 0
## 2891 0 No Deposit 30 NULL 0
## 2892 1 No Deposit 1 NULL 0
## 2893 0 No Deposit 1 NULL 0
## 2894 0 No Deposit 1 NULL 0
## 2895 0 No Deposit 1 NULL 0
## 2896 0 No Deposit 1 NULL 0
## 2897 0 Non Refund NULL NULL 0
## 2898 0 Non Refund NULL NULL 0
## 2899 0 No Deposit 9 NULL 0
## 2900 0 No Deposit 30 NULL 0
## 2901 1 No Deposit 1 NULL 0
## 2902 0 No Deposit 1 NULL 0
## 2903 0 No Deposit 1 NULL 0
## 2904 0 No Deposit 9 NULL 0
## 2905 2 No Deposit NULL NULL 0
## 2906 0 Non Refund NULL NULL 0
## 2907 1 No Deposit 1 NULL 0
## 2908 0 No Deposit 1 NULL 0
## 2909 0 No Deposit 1 NULL 0
## 2910 0 No Deposit 9 NULL 0
## 2911 0 No Deposit NULL NULL 0
## 2912 0 No Deposit 9 NULL 0
## 2913 0 No Deposit 24 NULL 0
## 2914 0 No Deposit 24 NULL 0
## 2915 0 No Deposit NULL NULL 0
## 2916 0 No Deposit 27 NULL 0
## 2917 0 No Deposit 24 NULL 0
## 2918 0 No Deposit 9 NULL 0
## 2919 0 No Deposit 9 NULL 0
## 2920 0 Non Refund 1 NULL 0
## 2921 0 Non Refund 1 NULL 0
## 2922 0 Non Refund 1 NULL 0
## 2923 0 Non Refund 1 NULL 0
## 2924 0 Non Refund 1 NULL 0
## 2925 0 No Deposit 9 NULL 0
## 2926 0 Non Refund 1 NULL 0
## 2927 0 Non Refund 1 NULL 0
## 2928 0 Non Refund 1 NULL 0
## 2929 0 No Deposit 9 NULL 0
## 2930 0 No Deposit 7 NULL 0
## 2931 0 Non Refund 1 NULL 0
## 2932 0 No Deposit 9 NULL 0
## 2933 0 No Deposit 9 NULL 0
## 2934 0 Non Refund 1 NULL 0
## 2935 1 No Deposit 1 NULL 0
## 2936 1 No Deposit 1 NULL 0
## 2937 0 No Deposit 1 NULL 0
## 2938 0 No Deposit 1 NULL 0
## 2939 0 No Deposit 11 NULL 0
## 2940 0 No Deposit 1 NULL 0
## 2941 0 No Deposit 1 NULL 0
## 2942 1 No Deposit 1 NULL 0
## 2943 0 No Deposit 1 NULL 0
## 2944 0 No Deposit 1 NULL 0
## 2945 0 No Deposit 1 NULL 0
## 2946 0 No Deposit 1 NULL 0
## 2947 0 No Deposit 1 NULL 0
## 2948 0 No Deposit 1 NULL 0
## 2949 0 No Deposit 1 NULL 0
## 2950 0 No Deposit 1 NULL 0
## 2951 0 No Deposit 1 NULL 0
## 2952 0 No Deposit 1 NULL 0
## 2953 0 No Deposit 1 NULL 0
## 2954 0 No Deposit 1 NULL 0
## 2955 1 No Deposit 1 NULL 0
## 2956 0 No Deposit 1 NULL 0
## 2957 0 No Deposit 22 NULL 0
## 2958 0 No Deposit 1 NULL 0
## 2959 0 No Deposit 1 NULL 0
## 2960 0 No Deposit 1 NULL 0
## 2961 0 No Deposit 1 NULL 0
## 2962 0 No Deposit 1 NULL 0
## 2963 1 No Deposit 1 NULL 0
## 2964 0 No Deposit 1 NULL 0
## 2965 1 No Deposit 1 NULL 0
## 2966 0 No Deposit 1 NULL 0
## 2967 0 No Deposit 9 NULL 0
## 2968 0 No Deposit 9 NULL 0
## 2969 0 No Deposit 9 NULL 0
## 2970 1 No Deposit 9 NULL 0
## 2971 0 No Deposit 9 NULL 0
## 2972 0 No Deposit 9 NULL 0
## 2973 0 No Deposit 1 NULL 0
## 2974 0 No Deposit 14 NULL 0
## 2975 0 No Deposit 9 NULL 0
## 2976 0 No Deposit 9 NULL 0
## 2977 0 No Deposit 9 NULL 0
## 2978 0 No Deposit 9 NULL 0
## 2979 0 No Deposit 9 NULL 0
## 2980 1 No Deposit 9 NULL 0
## 2981 0 No Deposit 9 NULL 0
## 2982 1 No Deposit 11 NULL 0
## 2983 0 No Deposit 9 NULL 0
## 2984 0 No Deposit 9 NULL 0
## 2985 0 No Deposit 9 NULL 0
## 2986 0 No Deposit 8 NULL 0
## 2987 0 No Deposit 9 NULL 0
## 2988 0 No Deposit 11 NULL 0
## 2989 1 No Deposit NULL 40 0
## 2990 0 No Deposit 9 NULL 0
## 2991 0 No Deposit 13 NULL 0
## 2992 0 No Deposit 7 NULL 0
## 2993 0 No Deposit 9 NULL 0
## 2994 0 No Deposit 9 NULL 0
## 2995 0 No Deposit 9 NULL 0
## 2996 0 No Deposit 14 NULL 0
## 2997 0 No Deposit 14 NULL 0
## 2998 1 No Deposit 7 NULL 0
## 2999 0 No Deposit 9 NULL 0
## 3000 0 No Deposit 14 NULL 0
## 3001 0 No Deposit 14 NULL 0
## 3002 0 No Deposit 9 NULL 0
## 3003 1 No Deposit NULL 40 0
## 3004 0 No Deposit 9 NULL 0
## 3005 0 No Deposit 6 NULL 0
## 3006 0 No Deposit 6 NULL 0
## 3007 0 No Deposit 9 NULL 0
## 3008 0 No Deposit 7 NULL 0
## 3009 0 No Deposit 6 NULL 0
## 3010 0 No Deposit 6 NULL 0
## 3011 0 No Deposit 6 NULL 0
## 3012 0 No Deposit 6 NULL 0
## 3013 0 No Deposit 6 NULL 0
## 3014 0 No Deposit 6 NULL 0
## 3015 0 No Deposit 9 NULL 0
## 3016 1 No Deposit 6 NULL 0
## 3017 0 No Deposit 9 NULL 0
## 3018 0 No Deposit 6 NULL 0
## 3019 0 No Deposit 13 NULL 0
## 3020 0 No Deposit 6 NULL 0
## 3021 0 No Deposit 6 NULL 0
## 3022 0 No Deposit 9 NULL 0
## 3023 7 No Deposit NULL NULL 0
## 3024 0 No Deposit 6 NULL 0
## 3025 0 No Deposit 6 NULL 0
## 3026 0 No Deposit 7 NULL 0
## 3027 0 No Deposit 9 NULL 0
## 3028 0 No Deposit 7 NULL 0
## 3029 0 No Deposit 9 NULL 0
## 3030 0 No Deposit 9 NULL 0
## 3031 1 No Deposit NULL 40 0
## 3032 0 No Deposit 9 NULL 0
## 3033 0 No Deposit 9 NULL 0
## 3034 0 No Deposit NULL 40 0
## 3035 0 No Deposit 9 NULL 0
## 3036 0 No Deposit 7 NULL 0
## 3037 0 No Deposit 7 NULL 0
## 3038 0 No Deposit 9 NULL 0
## 3039 1 No Deposit 11 NULL 0
## 3040 0 No Deposit NULL 40 0
## 3041 5 No Deposit 9 NULL 0
## 3042 0 No Deposit 13 NULL 0
## 3043 0 No Deposit 9 NULL 0
## 3044 0 No Deposit NULL 40 0
## 3045 0 No Deposit 9 NULL 0
## 3046 0 No Deposit NULL 40 0
## 3047 1 No Deposit 9 NULL 0
## 3048 0 No Deposit NULL 40 0
## 3049 1 No Deposit 14 NULL 0
## 3050 0 No Deposit 9 NULL 0
## 3051 0 No Deposit 9 NULL 0
## 3052 1 No Deposit 9 NULL 0
## 3053 0 No Deposit 40 NULL 0
## 3054 0 No Deposit 9 NULL 0
## 3055 0 No Deposit 9 NULL 0
## 3056 0 No Deposit 9 NULL 0
## 3057 0 No Deposit 9 NULL 0
## 3058 0 No Deposit 9 NULL 0
## 3059 0 No Deposit 9 NULL 0
## 3060 0 No Deposit 9 NULL 0
## 3061 0 No Deposit 13 NULL 0
## 3062 0 No Deposit 9 NULL 0
## 3063 0 No Deposit 9 NULL 0
## 3064 0 No Deposit 9 NULL 0
## 3065 0 No Deposit 9 NULL 0
## 3066 0 No Deposit 7 NULL 0
## 3067 0 No Deposit 9 NULL 0
## 3068 0 No Deposit 9 NULL 0
## 3069 0 No Deposit NULL 40 0
## 3070 0 No Deposit 7 NULL 0
## 3071 0 No Deposit NULL NULL 0
## 3072 0 No Deposit NULL NULL 0
## 3073 0 No Deposit 9 NULL 0
## 3074 0 No Deposit 11 NULL 0
## 3075 0 No Deposit 15 NULL 0
## 3076 0 No Deposit 13 NULL 0
## 3077 0 No Deposit 9 NULL 0
## 3078 0 No Deposit 9 NULL 0
## 3079 0 No Deposit 9 NULL 0
## 3080 1 No Deposit 40 NULL 0
## 3081 0 No Deposit 9 NULL 0
## 3082 0 No Deposit 14 NULL 0
## 3083 0 No Deposit 9 NULL 0
## 3084 0 No Deposit 27 NULL 0
## 3085 0 No Deposit 14 NULL 0
## 3086 0 No Deposit 14 NULL 0
## 3087 0 No Deposit 9 NULL 0
## 3088 0 No Deposit 14 NULL 0
## 3089 0 No Deposit 9 NULL 0
## 3090 0 No Deposit 27 NULL 0
## 3091 0 No Deposit 11 NULL 0
## 3092 0 No Deposit NULL NULL 0
## 3093 0 No Deposit 8 NULL 0
## 3094 0 No Deposit 1 NULL 0
## 3095 0 No Deposit 1 NULL 0
## 3096 0 No Deposit NULL NULL 0
## 3097 0 No Deposit 14 NULL 0
## 3098 0 No Deposit 1 NULL 0
## 3099 0 No Deposit 1 NULL 0
## 3100 0 No Deposit 1 NULL 0
## 3101 1 No Deposit 1 NULL 0
## 3102 1 No Deposit 9 NULL 0
## 3103 0 No Deposit 9 NULL 0
## 3104 0 No Deposit 9 NULL 0
## 3105 0 No Deposit 1 NULL 0
## 3106 0 No Deposit 1 NULL 0
## 3107 0 No Deposit 10 NULL 0
## 3108 0 No Deposit 1 NULL 0
## 3109 0 No Deposit 1 NULL 0
## 3110 0 No Deposit 1 NULL 0
## 3111 0 No Deposit 1 NULL 0
## 3112 0 No Deposit 1 NULL 0
## 3113 0 No Deposit 1 NULL 0
## 3114 1 No Deposit 9 NULL 0
## 3115 0 No Deposit 9 NULL 0
## 3116 0 No Deposit NULL NULL 0
## 3117 0 No Deposit NULL NULL 0
## 3118 0 No Deposit 9 NULL 0
## 3119 0 No Deposit 9 NULL 0
## 3120 0 No Deposit 13 NULL 0
## 3121 0 No Deposit 1 NULL 0
## 3122 0 No Deposit 1 NULL 0
## 3123 0 No Deposit 1 NULL 0
## 3124 0 No Deposit 9 NULL 0
## customer_type adr required_car_parking_spaces
## 1 Transient 0.00 0
## 2 Transient 76.50 0
## 3 Transient 68.00 0
## 4 Transient 76.50 0
## 5 Transient 76.50 0
## 6 Transient 76.50 0
## 7 Transient-Party 58.67 0
## 8 Transient 68.00 0
## 9 Transient 76.50 0
## 10 Transient 76.50 0
## 11 Transient-Party 86.00 0
## 12 Transient-Party 43.00 0
## 13 Transient-Party 86.00 0
## 14 Transient-Party 63.00 0
## 15 Transient-Party 86.00 0
## 16 Transient-Party 63.00 0
## 17 Transient-Party 63.00 0
## 18 Transient-Party 86.00 0
## 19 Transient-Party 86.00 0
## 20 Transient-Party 63.00 0
## 21 Transient-Party 86.00 0
## 22 Transient 63.75 0
## 23 Transient-Party 86.00 0
## 24 Transient-Party 86.00 0
## 25 Transient 76.50 0
## 26 Transient 60.27 0
## 27 Transient 68.00 0
## 28 Transient 68.00 0
## 29 Transient 76.50 0
## 30 Transient-Party 60.00 0
## 31 Transient 55.80 0
## 32 Transient 52.36 0
## 33 Transient 49.74 0
## 34 Transient 76.50 0
## 35 Transient 68.00 0
## 36 Transient 68.00 0
## 37 Transient 93.60 0
## 38 Transient 76.50 0
## 39 Transient 76.50 0
## 40 Transient 76.50 0
## 41 Transient 76.50 0
## 42 Transient 68.00 0
## 43 Transient 68.00 0
## 44 Transient-Party 81.00 0
## 45 Transient 76.08 0
## 46 Transient-Party 76.50 0
## 47 Transient-Party 76.50 0
## 48 Transient 37.33 0
## 49 Transient 76.50 0
## 50 Transient-Party 90.00 0
## 51 Transient-Party 45.00 0
## 52 Transient-Party 45.00 0
## 53 Transient 76.50 0
## 54 Transient 62.37 0
## 55 Transient 48.60 0
## 56 Transient 48.60 0
## 57 Transient 48.60 0
## 58 Transient-Party 62.00 0
## 59 Transient 76.50 0
## 60 Transient 67.50 0
## 61 Transient 76.50 0
## 62 Transient 76.50 0
## 63 Transient 76.50 0
## 64 Transient 68.85 0
## 65 Transient 68.85 0
## 66 Transient 100.00 0
## 67 Transient 76.50 0
## 68 Transient 58.90 0
## 69 Transient 63.75 0
## 70 Transient 68.85 0
## 71 Transient 76.50 0
## 72 Transient 68.00 0
## 73 Transient 106.25 0
## 74 Transient 58.90 0
## 75 Transient 58.90 0
## 76 Transient 51.96 0
## 77 Transient-Party 75.00 0
## 78 Transient 51.96 0
## 79 Transient-Party 104.00 0
## 80 Transient 76.50 0
## 81 Transient-Party 94.50 0
## 82 Transient-Party 94.50 0
## 83 Transient 76.50 0
## 84 Transient 76.50 0
## 85 Transient-Party 94.50 0
## 86 Transient-Party 94.50 0
## 87 Transient-Party 138.50 0
## 88 Transient 55.96 0
## 89 Transient-Party 94.50 0
## 90 Transient-Party 94.50 0
## 91 Transient-Party 72.50 0
## 92 Transient-Party 94.50 0
## 93 Transient-Party 94.50 0
## 94 Transient-Party 94.50 0
## 95 Transient-Party 94.50 0
## 96 Transient-Party 72.50 0
## 97 Transient-Party 94.50 0
## 98 Transient-Party 94.50 0
## 99 Transient-Party 94.50 0
## 100 Transient-Party 94.50 0
## 101 Transient-Party 94.50 0
## 102 Transient 55.96 0
## 103 Transient-Party 72.50 0
## 104 Transient 58.90 0
## 105 Transient-Party 94.50 0
## 106 Transient-Party 94.50 0
## 107 Transient-Party 94.50 0
## 108 Transient-Party 94.50 0
## 109 Transient-Party 94.50 0
## 110 Transient 76.50 0
## 111 Transient-Party 94.50 0
## 112 Transient-Party 94.50 0
## 113 Transient-Party 138.50 0
## 114 Transient-Party 94.50 0
## 115 Transient-Party 94.50 0
## 116 Transient-Party 94.50 0
## 117 Transient 76.50 0
## 118 Transient 76.50 0
## 119 Transient 63.75 0
## 120 Transient 76.50 0
## 121 Transient-Party 76.50 0
## 122 Transient 91.33 0
## 123 Transient 76.50 0
## 124 Transient 91.33 0
## 125 Transient-Party 76.50 0
## 126 Transient 91.33 0
## 127 Transient 76.50 0
## 128 Transient 67.15 0
## 129 Transient 76.50 0
## 130 Transient 76.50 0
## 131 Transient 76.50 0
## 132 Transient 76.50 0
## 133 Transient 76.50 0
## 134 Transient 55.96 0
## 135 Transient 0.00 0
## 136 Transient 85.50 0
## 137 Transient 89.25 0
## 138 Transient 89.25 0
## 139 Transient 76.50 0
## 140 Transient 0.00 0
## 141 Transient 68.00 0
## 142 Transient 68.00 0
## 143 Transient 76.50 0
## 144 Transient 76.50 0
## 145 Transient 76.50 0
## 146 Transient 85.50 0
## 147 Transient 76.50 0
## 148 Transient 76.50 0
## 149 Transient 52.36 0
## 150 Transient-Party 57.50 0
## 151 Transient-Party 57.50 0
## 152 Transient-Party 108.75 0
## 153 Transient-Party 75.00 0
## 154 Transient-Party 75.00 0
## 155 Transient-Party 75.00 0
## 156 Transient-Party 75.00 0
## 157 Transient-Party 75.00 0
## 158 Transient-Party 75.00 0
## 159 Transient-Party 75.00 0
## 160 Transient-Party 57.50 0
## 161 Transient-Party 75.00 0
## 162 Transient-Party 75.00 0
## 163 Transient-Party 108.75 0
## 164 Transient-Party 75.00 0
## 165 Transient-Party 75.00 0
## 166 Transient-Party 75.00 0
## 167 Transient-Party 0.00 0
## 168 Transient-Party 108.75 0
## 169 Transient-Party 75.00 0
## 170 Transient-Party 57.50 0
## 171 Transient-Party 94.50 0
## 172 Transient-Party 72.50 0
## 173 Transient-Party 94.50 0
## 174 Transient-Party 94.50 0
## 175 Transient-Party 94.50 0
## 176 Transient-Party 94.50 0
## 177 Transient-Party 94.50 0
## 178 Transient-Party 94.50 0
## 179 Transient-Party 94.50 0
## 180 Transient-Party 94.50 0
## 181 Transient-Party 94.50 0
## 182 Transient-Party 94.50 0
## 183 Transient-Party 94.50 0
## 184 Transient-Party 94.50 0
## 185 Transient-Party 94.50 0
## 186 Transient-Party 94.50 0
## 187 Transient-Party 94.50 0
## 188 Transient-Party 94.50 0
## 189 Transient-Party 94.50 0
## 190 Transient-Party 94.50 0
## 191 Transient-Party 138.50 0
## 192 Transient-Party 94.50 0
## 193 Transient-Party 94.50 0
## 194 Transient-Party 94.50 0
## 195 Transient-Party 62.00 0
## 196 Transient-Party 62.00 0
## 197 Transient-Party 0.00 0
## 198 Transient-Party 62.00 0
## 199 Transient-Party 62.00 0
## 200 Transient-Party 62.00 0
## 201 Transient 68.00 0
## 202 Transient-Party 62.00 0
## 203 Transient-Party 62.00 0
## 204 Transient-Party 60.00 0
## 205 Transient-Party 62.00 0
## 206 Transient-Party 62.00 0
## 207 Transient-Party 62.00 0
## 208 Transient-Party 62.00 0
## 209 Transient-Party 62.00 0
## 210 Transient-Party 62.00 0
## 211 Transient-Party 62.00 0
## 212 Transient-Party 62.00 0
## 213 Transient-Party 62.00 0
## 214 Transient-Party 62.00 0
## 215 Transient-Party 84.00 0
## 216 Transient-Party 62.00 0
## 217 Transient-Party 62.00 0
## 218 Transient-Party 62.00 0
## 219 Transient-Party 62.00 0
## 220 Transient-Party 62.00 0
## 221 Transient-Party 0.00 0
## 222 Transient-Party 62.00 0
## 223 Transient-Party 62.00 0
## 224 Transient-Party 62.00 0
## 225 Transient-Party 62.00 0
## 226 Transient 62.00 0
## 227 Transient 85.50 0
## 228 Transient-Party 76.50 0
## 229 Transient-Party 76.50 0
## 230 Transient 80.70 0
## 231 Transient 76.50 0
## 232 Transient-Party 68.00 0
## 233 Transient-Party 76.50 0
## 234 Transient 46.66 0
## 235 Transient 104.00 0
## 236 Transient 76.50 0
## 237 Transient 55.08 0
## 238 Transient-Party 62.00 0
## 239 Transient-Party 62.00 0
## 240 Transient-Party 84.00 0
## 241 Transient-Party 62.00 0
## 242 Transient-Party 62.00 0
## 243 Transient-Party 62.00 0
## 244 Transient-Party 62.00 0
## 245 Transient-Party 62.00 0
## 246 Transient-Party 62.00 0
## 247 Transient-Party 62.00 0
## 248 Transient-Party 62.00 0
## 249 Transient-Party 62.00 0
## 250 Transient-Party 62.00 0
## 251 Transient-Party 62.00 0
## 252 Transient-Party 0.00 0
## 253 Transient-Party 84.00 0
## 254 Transient-Party 62.00 0
## 255 Transient-Party 62.00 0
## 256 Transient-Party 62.00 0
## 257 Transient-Party 62.00 0
## 258 Transient-Party 62.00 0
## 259 Transient-Party 62.00 0
## 260 Transient-Party 60.00 0
## 261 Transient-Party 62.00 0
## 262 Transient-Party 62.00 0
## 263 Transient-Party 62.00 0
## 264 Transient-Party 62.00 0
## 265 Transient-Party 62.00 0
## 266 Transient 62.00 0
## 267 Transient-Party 62.00 0
## 268 Transient-Party 62.00 0
## 269 Transient-Party 62.00 0
## 270 Transient-Party 62.00 0
## 271 Transient-Party 84.00 0
## 272 Transient 68.50 0
## 273 Transient 76.50 0
## 274 Transient 68.00 0
## 275 Transient 76.50 0
## 276 Transient 76.50 0
## 277 Transient-Party 76.50 0
## 278 Transient-Party 76.50 0
## 279 Transient-Party 62.00 0
## 280 Transient-Party 62.00 0
## 281 Transient-Party 0.00 0
## 282 Transient-Party 62.00 0
## 283 Transient-Party 62.00 0
## 284 Transient 55.96 0
## 285 Transient-Party 62.00 0
## 286 Transient-Party 62.00 0
## 287 Transient-Party 62.00 0
## 288 Transient 76.50 0
## 289 Transient-Party 90.00 0
## 290 Transient-Party 90.00 0
## 291 Transient-Party 90.00 0
## 292 Transient-Party 90.00 0
## 293 Transient-Party 90.00 0
## 294 Transient-Party 90.00 0
## 295 Transient-Party 90.00 0
## 296 Transient-Party 90.00 0
## 297 Transient-Party 90.00 0
## 298 Transient-Party 65.00 0
## 299 Transient-Party 90.00 0
## 300 Transient-Party 90.00 0
## 301 Transient-Party 0.00 0
## 302 Transient-Party 90.00 0
## 303 Transient-Party 90.00 0
## 304 Transient-Party 90.00 0
## 305 Transient-Party 90.00 0
## 306 Transient-Party 90.00 0
## 307 Transient-Party 90.00 0
## 308 Transient-Party 90.00 0
## 309 Transient-Party 90.00 0
## 310 Transient-Party 65.00 0
## 311 Transient-Party 90.00 0
## 312 Transient-Party 90.00 0
## 313 Transient-Party 90.00 0
## 314 Transient-Party 130.50 0
## 315 Transient-Party 98.20 0
## 316 Transient-Party 90.00 0
## 317 Transient-Party 0.00 0
## 318 Transient-Party 90.00 0
## 319 Transient-Party 90.00 0
## 320 Transient-Party 90.00 0
## 321 Transient-Party 90.00 0
## 322 Transient-Party 98.20 0
## 323 Transient-Party 90.00 0
## 324 Transient-Party 90.00 0
## 325 Transient-Party 90.00 0
## 326 Transient-Party 90.00 0
## 327 Transient 68.00 0
## 328 Transient-Party 85.00 0
## 329 Transient-Party 17.60 0
## 330 Transient-Party 85.00 0
## 331 Transient-Party 85.00 0
## 332 Transient-Party 17.60 0
## 333 Transient-Party 0.00 0
## 334 Transient 76.50 0
## 335 Transient 0.00 0
## 336 Transient 0.00 0
## 337 Transient 0.00 0
## 338 Transient 0.00 0
## 339 Transient 0.00 0
## 340 Transient-Party 0.00 0
## 341 Transient 76.50 0
## 342 Transient 0.00 0
## 343 Transient-Party 0.00 0
## 344 Transient 94.00 0
## 345 Transient 124.25 0
## 346 Transient 76.50 0
## 347 Transient-Party 94.50 0
## 348 Transient-Party 94.50 0
## 349 Transient-Party 86.00 0
## 350 Transient-Party 63.00 0
## 351 Transient-Party 94.50 0
## 352 Transient-Party 94.50 0
## 353 Transient-Party 94.50 0
## 354 Transient-Party 94.50 0
## 355 Transient-Party 63.00 0
## 356 Transient-Party 94.50 0
## 357 Transient-Party 94.50 0
## 358 Transient-Party 94.50 0
## 359 Transient-Party 94.50 0
## 360 Transient-Party 94.50 0
## 361 Transient-Party 94.50 0
## 362 Transient-Party 94.50 0
## 363 Transient-Party 63.00 0
## 364 Transient-Party 94.50 0
## 365 Transient-Party 94.50 0
## 366 Transient-Party 94.50 0
## 367 Transient-Party 36.25 0
## 368 Transient-Party 94.50 0
## 369 Transient-Party 94.50 0
## 370 Transient-Party 86.00 0
## 371 Transient-Party 86.00 0
## 372 Transient-Party 94.50 0
## 373 Transient-Party 86.00 0
## 374 Transient-Party 86.00 0
## 375 Transient-Party 94.50 0
## 376 Transient-Party 94.50 0
## 377 Transient-Party 124.70 0
## 378 Transient-Party 86.00 0
## 379 Transient-Party 94.50 0
## 380 Transient-Party 94.50 0
## 381 Transient-Party 62.00 0
## 382 Transient-Party 0.00 0
## 383 Transient-Party 62.00 0
## 384 Transient-Party 62.00 0
## 385 Transient-Party 62.00 0
## 386 Transient-Party 62.00 0
## 387 Transient-Party 62.00 0
## 388 Transient-Party 62.00 0
## 389 Transient-Party 62.00 0
## 390 Transient-Party 62.00 0
## 391 Transient-Party 62.00 0
## 392 Transient-Party 62.00 0
## 393 Transient-Party 0.00 0
## 394 Transient-Party 62.00 0
## 395 Transient-Party 62.00 0
## 396 Transient-Party 63.00 0
## 397 Transient-Party 62.00 0
## 398 Transient-Party 60.00 0
## 399 Transient-Party 62.00 0
## 400 Transient-Party 62.00 0
## 401 Transient-Party 62.00 0
## 402 Transient-Party 62.00 0
## 403 Transient-Party 62.00 0
## 404 Transient-Party 62.00 0
## 405 Transient-Party 62.00 0
## 406 Transient-Party 62.00 0
## 407 Transient-Party 62.00 0
## 408 Transient-Party 62.00 0
## 409 Transient-Party 62.00 0
## 410 Transient-Party 62.00 0
## 411 Transient-Party 62.00 0
## 412 Transient-Party 62.00 0
## 413 Transient 85.50 0
## 414 Transient 0.00 0
## 415 Transient 76.50 0
## 416 Transient 0.00 0
## 417 Transient 58.90 0
## 418 Transient-Party 62.00 0
## 419 Transient-Party 62.00 0
## 420 Transient-Party 62.00 0
## 421 Transient-Party 62.00 0
## 422 Transient-Party 62.00 0
## 423 Transient-Party 62.00 0
## 424 Transient-Party 62.00 0
## 425 Transient-Party 84.00 0
## 426 Transient-Party 62.00 0
## 427 Transient-Party 62.00 0
## 428 Transient-Party 62.00 0
## 429 Transient-Party 62.00 0
## 430 Transient-Party 62.00 0
## 431 Transient-Party 62.00 0
## 432 Transient-Party 62.00 0
## 433 Transient-Party 62.00 0
## 434 Transient-Party 60.00 0
## 435 Transient-Party 0.00 0
## 436 Transient-Party 62.00 0
## 437 Transient-Party 62.00 0
## 438 Transient 76.50 0
## 439 Transient-Party 84.00 0
## 440 Transient-Party 62.00 0
## 441 Transient-Party 62.00 0
## 442 Transient-Party 60.00 0
## 443 Transient-Party 0.00 0
## 444 Transient-Party 62.00 0
## 445 Transient-Party 62.00 0
## 446 Transient-Party 62.00 0
## 447 Transient-Party 62.00 0
## 448 Transient-Party 62.00 0
## 449 Transient-Party 62.00 0
## 450 Transient-Party 62.00 0
## 451 Transient-Party 62.00 0
## 452 Transient-Party 62.00 0
## 453 Transient-Party 62.00 0
## 454 Transient-Party 84.00 0
## 455 Transient-Party 62.00 0
## 456 Transient-Party 62.00 0
## 457 Transient-Party 62.00 0
## 458 Transient-Party 62.00 0
## 459 Transient-Party 62.00 0
## 460 Transient-Party 60.00 0
## 461 Transient-Party 62.00 0
## 462 Transient-Party 62.00 0
## 463 Transient-Party 84.00 0
## 464 Transient-Party 62.00 0
## 465 Transient-Party 62.00 0
## 466 Transient-Party 85.50 1
## 467 Transient 65.00 0
## 468 Transient 75.00 0
## 469 Transient-Party 76.50 0
## 470 Transient 76.50 0
## 471 Transient 76.50 0
## 472 Transient 69.40 0
## 473 Transient 55.90 0
## 474 Transient 0.00 0
## 475 Transient 0.00 0
## 476 Transient 65.00 0
## 477 Transient 0.00 0
## 478 Transient 0.00 0
## 479 Transient 91.38 0
## 480 Transient 88.40 0
## 481 Transient 88.40 0
## 482 Transient 65.00 0
## 483 Transient 0.00 0
## 484 Transient-Party 76.50 0
## 485 Transient 58.90 0
## 486 Transient-Party 76.50 0
## 487 Transient 106.75 0
## 488 Transient 76.50 0
## 489 Transient 46.66 0
## 490 Transient 65.00 0
## 491 Transient 76.50 0
## 492 Transient 55.08 0
## 493 Transient 76.50 0
## 494 Transient 55.96 0
## 495 Transient 36.00 0
## 496 Transient 68.00 0
## 497 Transient-Party 75.79 0
## 498 Transient-Party 63.46 0
## 499 Transient-Party 63.46 0
## 500 Transient 68.00 0
## 501 Transient 75.00 0
## 502 Transient-Party 89.75 0
## 503 Transient-Party 72.50 0
## 504 Transient-Party 94.50 0
## 505 Transient-Party 94.50 0
## 506 Transient-Party 76.50 0
## 507 Transient-Party 94.50 0
## 508 Transient-Party 94.50 0
## 509 Transient-Party 94.50 0
## 510 Transient-Party 94.50 0
## 511 Transient-Party 94.50 0
## 512 Transient-Party 85.50 0
## 513 Transient-Party 138.50 0
## 514 Transient-Party 94.50 0
## 515 Transient-Party 94.50 0
## 516 Transient-Party 94.50 0
## 517 Transient-Party 94.50 0
## 518 Transient-Party 94.50 0
## 519 Transient-Party 72.50 0
## 520 Transient-Party 94.50 0
## 521 Transient-Party 94.50 0
## 522 Transient-Party 94.50 0
## 523 Transient-Party 94.50 0
## 524 Transient-Party 94.50 0
## 525 Transient-Party 80.75 0
## 526 Transient-Party 72.50 0
## 527 Transient-Party 94.50 0
## 528 Transient-Party 94.50 0
## 529 Transient-Party 94.50 0
## 530 Transient-Party 94.50 0
## 531 Transient-Party 94.50 0
## 532 Transient-Party 36.25 0
## 533 Transient 76.50 0
## 534 Transient 76.50 0
## 535 Transient 0.00 0
## 536 Transient 76.50 0
## 537 Transient 0.00 0
## 538 Transient 75.00 1
## 539 Transient 0.00 0
## 540 Transient-Party 75.00 0
## 541 Transient-Party 12.00 0
## 542 Transient 12.00 0
## 543 Transient 85.50 1
## 544 Transient 0.00 0
## 545 Transient 12.00 0
## 546 Transient-Party 62.00 0
## 547 Transient-Party 62.00 0
## 548 Transient-Party 62.00 0
## 549 Transient-Party 62.00 0
## 550 Transient-Party 62.00 0
## 551 Transient-Party 62.00 0
## 552 Transient-Party 62.00 0
## 553 Transient-Party 62.00 0
## 554 Transient-Party 62.00 0
## 555 Transient-Party 62.00 0
## 556 Transient-Party 62.00 0
## 557 Transient-Party 62.00 0
## 558 Transient-Party 62.00 0
## 559 Transient-Party 62.00 0
## 560 Transient-Party 62.00 0
## 561 Transient-Party 62.00 0
## 562 Transient 62.00 0
## 563 Transient-Party 62.00 0
## 564 Transient-Party 62.00 0
## 565 Transient-Party 62.00 0
## 566 Transient-Party 62.00 0
## 567 Transient-Party 62.00 0
## 568 Transient-Party 60.00 0
## 569 Transient-Party 84.00 0
## 570 Transient-Party 62.00 0
## 571 Transient-Party 62.00 0
## 572 Transient-Party 62.00 0
## 573 Transient-Party 62.00 0
## 574 Transient-Party 0.00 0
## 575 Transient-Party 62.00 0
## 576 Transient 76.50 0
## 577 Transient 76.50 0
## 578 Transient 76.50 0
## 579 Transient-Party 84.00 0
## 580 Transient-Party 0.00 0
## 581 Contract 80.00 1
## 582 Transient 0.00 0
## 583 Contract 80.00 1
## 584 Transient 0.00 0
## 585 Transient 0.00 0
## 586 Transient 90.00 0
## 587 Group 65.00 0
## 588 Transient 80.00 0
## 589 Transient 84.00 0
## 590 Transient-Party 62.00 0
## 591 Transient-Party 84.00 0
## 592 Transient-Party 62.00 0
## 593 Transient-Party 62.00 0
## 594 Transient 75.00 0
## 595 Transient 75.00 0
## 596 Transient 75.00 0
## 597 Transient 75.00 0
## 598 Transient 0.00 0
## 599 Transient-Party 6.00 0
## 600 Transient-Party 6.00 0
## 601 Transient 0.00 0
## 602 Transient-Party 62.00 0
## 603 Transient-Party 62.00 0
## 604 Transient-Party 62.00 0
## 605 Transient-Party 62.00 0
## 606 Transient-Party 62.00 0
## 607 Transient 85.50 1
## 608 Transient-Party 12.00 0
## 609 Transient 75.00 0
## 610 Transient-Party 62.00 0
## 611 Transient-Party 62.00 0
## 612 Transient-Party 0.00 0
## 613 Transient-Party 62.00 0
## 614 Transient-Party 62.00 0
## 615 Transient-Party 62.00 0
## 616 Transient 62.00 0
## 617 Transient-Party 62.00 0
## 618 Transient-Party 62.00 0
## 619 Transient-Party 62.00 0
## 620 Transient-Party 18.00 0
## 621 Transient-Party 105.00 0
## 622 Transient-Party 75.00 0
## 623 Transient-Party 62.00 0
## 624 Transient-Party 62.00 0
## 625 Transient-Party 62.00 0
## 626 Transient-Party 62.00 0
## 627 Transient 76.50 0
## 628 Transient-Party 62.00 0
## 629 Transient-Party 62.00 0
## 630 Transient-Party 62.00 0
## 631 Transient-Party 65.00 0
## 632 Transient-Party 65.00 0
## 633 Transient-Party 60.00 0
## 634 Transient-Party 65.00 0
## 635 Transient-Party 76.50 0
## 636 Transient-Party 65.00 0
## 637 Transient-Party 65.00 0
## 638 Transient-Party 60.00 0
## 639 Transient-Party 65.00 0
## 640 Transient-Party 65.00 0
## 641 Transient-Party 60.00 0
## 642 Transient-Party 65.00 0
## 643 Transient-Party 65.00 0
## 644 Transient-Party 65.00 0
## 645 Transient-Party 65.00 0
## 646 Transient-Party 65.00 0
## 647 Transient-Party 0.00 0
## 648 Transient-Party 61.00 0
## 649 Transient-Party 65.00 0
## 650 Transient-Party 65.00 0
## 651 Contract 90.00 0
## 652 Transient-Party 65.00 0
## 653 Transient-Party 60.00 0
## 654 Transient-Party 90.00 0
## 655 Transient-Party 65.00 0
## 656 Transient-Party 65.00 0
## 657 Transient-Party 66.00 0
## 658 Transient-Party 65.00 0
## 659 Transient-Party 65.00 0
## 660 Transient-Party 76.50 0
## 661 Transient-Party 65.00 0
## 662 Transient-Party 65.00 0
## 663 Transient-Party 60.00 0
## 664 Transient-Party 65.00 0
## 665 Contract 80.00 0
## 666 Transient-Party 60.00 0
## 667 Transient-Party 65.00 0
## 668 Transient-Party 0.00 0
## 669 Transient-Party 67.50 0
## 670 Transient-Party 67.50 0
## 671 Contract 90.00 0
## 672 Transient 75.00 0
## 673 Transient-Party 76.50 1
## 674 Transient-Party 85.50 1
## 675 Transient-Party 84.00 0
## 676 Transient-Party 62.00 0
## 677 Transient-Party 62.00 0
## 678 Transient-Party 0.00 0
## 679 Transient 70.00 0
## 680 Transient 67.00 0
## 681 Transient 70.00 0
## 682 Transient 81.00 0
## 683 Transient 81.00 0
## 684 Contract 80.00 1
## 685 Transient 81.00 0
## 686 Contract 90.00 1
## 687 Contract 81.00 0
## 688 Transient 0.00 0
## 689 Contract 90.00 0
## 690 Transient 75.00 0
## 691 Transient 0.00 0
## 692 Transient 68.00 0
## 693 Contract 90.00 0
## 694 Transient 76.50 0
## 695 Transient-Party 76.08 0
## 696 Transient-Party 63.75 0
## 697 Transient 67.00 0
## 698 Transient 67.00 0
## 699 Transient 67.00 0
## 700 Transient 75.00 0
## 701 Transient-Party 75.00 0
## 702 Transient 98.00 0
## 703 Transient 75.00 0
## 704 Contract 81.00 0
## 705 Transient-Party 62.00 0
## 706 Transient-Party 62.00 0
## 707 Transient-Party 62.00 0
## 708 Transient-Party 75.00 0
## 709 Transient 75.00 0
## 710 Contract 81.00 0
## 711 Transient-Party 62.00 0
## 712 Transient-Party 84.00 0
## 713 Transient 75.00 0
## 714 Transient-Party 62.00 0
## 715 Transient-Party 62.00 0
## 716 Transient-Party 62.00 0
## 717 Contract 80.00 0
## 718 Contract 162.00 1
## 719 Transient-Party 62.00 0
## 720 Contract 153.00 0
## 721 Transient-Party 62.00 0
## 722 Transient-Party 62.00 0
## 723 Transient-Party 62.00 0
## 724 Transient-Party 62.00 0
## 725 Transient-Party 62.00 0
## 726 Transient-Party 84.00 0
## 727 Transient-Party 62.00 0
## 728 Transient-Party 62.00 0
## 729 Transient-Party 0.00 0
## 730 Contract 81.00 0
## 731 Transient-Party 84.00 0
## 732 Contract 81.00 0
## 733 Transient-Party 62.00 0
## 734 Transient-Party 62.00 0
## 735 Transient-Party 62.00 0
## 736 Transient-Party 62.00 0
## 737 Transient-Party 62.00 0
## 738 Transient-Party 0.00 0
## 739 Transient-Party 62.00 0
## 740 Transient-Party 62.00 0
## 741 Transient-Party 62.00 0
## 742 Transient 98.00 0
## 743 Transient 75.00 0
## 744 Transient-Party 62.00 0
## 745 Transient-Party 62.00 0
## 746 Transient-Party 62.00 0
## 747 Transient 60.00 0
## 748 Contract 90.00 0
## 749 Transient 75.00 0
## 750 Transient 76.50 0
## 751 Transient 76.50 0
## 752 Transient 75.00 0
## 753 Transient 76.50 0
## 754 Contract 90.00 0
## 755 Transient-Party 76.50 0
## 756 Transient-Party 76.50 0
## 757 Transient 75.00 0
## 758 Contract 80.00 0
## 759 Transient 153.00 0
## 760 Group 75.00 0
## 761 Transient 98.00 0
## 762 Transient 89.00 0
## 763 Transient 75.00 0
## 764 Transient-Party 76.50 0
## 765 Transient 75.00 0
## 766 Transient 75.00 0
## 767 Contract 90.00 0
## 768 Transient-Party 76.50 0
## 769 Transient 100.00 0
## 770 Transient-Party 94.50 0
## 771 Transient-Party 94.50 0
## 772 Transient-Party 72.50 0
## 773 Transient-Party 94.50 0
## 774 Transient-Party 86.00 0
## 775 Transient-Party 86.00 0
## 776 Transient-Party 94.50 0
## 777 Transient-Party 36.25 0
## 778 Transient-Party 94.50 0
## 779 Transient 89.00 0
## 780 Transient 50.80 0
## 781 Transient 100.00 0
## 782 Transient 76.50 0
## 783 Transient 75.00 0
## 784 Transient-Party 86.00 0
## 785 Transient-Party 94.50 0
## 786 Transient-Party 124.70 0
## 787 Transient-Party 86.00 0
## 788 Transient 153.00 0
## 789 Transient-Party 94.50 0
## 790 Transient-Party 94.50 0
## 791 Transient-Party 94.50 0
## 792 Transient-Party 94.50 0
## 793 Transient-Party 94.50 0
## 794 Transient-Party 94.50 0
## 795 Transient-Party 94.50 0
## 796 Transient-Party 86.00 0
## 797 Transient-Party 94.50 0
## 798 Transient-Party 94.50 0
## 799 Transient-Party 86.00 0
## 800 Transient-Party 94.50 0
## 801 Transient-Party 86.00 0
## 802 Transient-Party 94.50 0
## 803 Transient-Party 94.50 0
## 804 Transient-Party 86.00 0
## 805 Transient 98.00 1
## 806 Transient-Party 94.50 0
## 807 Transient-Party 94.50 0
## 808 Transient-Party 94.50 0
## 809 Transient-Party 94.50 0
## 810 Transient-Party 94.50 0
## 811 Transient-Party 86.00 0
## 812 Transient-Party 94.50 0
## 813 Transient-Party 94.50 0
## 814 Transient-Party 94.50 0
## 815 Transient-Party 94.50 0
## 816 Transient-Party 62.00 0
## 817 Transient-Party 62.00 0
## 818 Transient-Party 62.00 0
## 819 Transient-Party 0.00 0
## 820 Transient-Party 62.00 0
## 821 Contract 81.00 0
## 822 Transient-Party 62.00 0
## 823 Transient-Party 62.00 0
## 824 Transient-Party 84.00 0
## 825 Transient-Party 62.00 0
## 826 Transient-Party 62.00 0
## 827 Transient-Party 62.00 0
## 828 Transient-Party 62.00 0
## 829 Transient-Party 0.00 0
## 830 Transient-Party 62.00 0
## 831 Transient-Party 62.00 0
## 832 Transient-Party 84.00 0
## 833 Contract 90.00 0
## 834 Transient-Party 62.00 0
## 835 Transient-Party 62.00 0
## 836 Transient-Party 62.00 0
## 837 Transient-Party 60.00 0
## 838 Transient-Party 62.00 0
## 839 Transient-Party 62.00 0
## 840 Transient-Party 62.00 0
## 841 Transient-Party 62.00 0
## 842 Transient-Party 62.00 0
## 843 Transient-Party 62.00 0
## 844 Transient-Party 62.00 0
## 845 Transient-Party 62.00 0
## 846 Transient-Party 62.00 0
## 847 Transient-Party 60.00 0
## 848 Transient-Party 62.00 0
## 849 Transient 88.00 0
## 850 Transient 98.00 0
## 851 Contract 81.00 0
## 852 Contract 88.00 0
## 853 Transient 153.00 0
## 854 Transient 76.50 0
## 855 Transient 63.75 0
## 856 Transient 63.75 0
## 857 Contract 80.00 0
## 858 Transient 67.50 0
## 859 Transient 153.00 0
## 860 Transient 75.00 0
## 861 Transient 105.00 0
## 862 Transient 67.50 0
## 863 Contract 0.00 0
## 864 Contract 99.00 1
## 865 Contract 99.00 1
## 866 Transient 153.00 0
## 867 Transient 96.00 0
## 868 Contract 153.00 0
## 869 Transient 98.00 0
## 870 Contract 98.00 0
## 871 Transient 105.00 0
## 872 Transient 76.50 0
## 873 Transient 76.50 0
## 874 Transient 0.00 0
## 875 Transient 76.50 0
## 876 Transient 76.50 0
## 877 Transient 65.00 0
## 878 Transient 89.00 0
## 879 Transient 115.00 0
## 880 Transient 115.00 0
## 881 Transient 115.00 0
## 882 Transient 115.00 0
## 883 Transient-Party 62.00 0
## 884 Transient-Party 62.00 0
## 885 Transient-Party 62.00 0
## 886 Transient-Party 62.00 0
## 887 Transient-Party 75.00 0
## 888 Transient 67.00 1
## 889 Transient 75.00 0
## 890 Transient-Party 62.00 0
## 891 Transient-Party 0.00 0
## 892 Contract 96.00 0
## 893 Contract 105.00 0
## 894 Contract 96.00 0
## 895 Transient 89.00 0
## 896 Transient-Party 62.00 0
## 897 Transient-Party 62.00 0
## 898 Transient-Party 62.00 0
## 899 Transient-Party 62.00 0
## 900 Transient 98.00 0
## 901 Transient-Party 62.00 0
## 902 Transient-Party 62.00 0
## 903 Transient 75.00 0
## 904 Transient-Party 62.00 0
## 905 Transient-Party 62.00 0
## 906 Transient-Party 62.00 0
## 907 Contract 105.00 0
## 908 Transient-Party 62.00 0
## 909 Transient-Party 62.00 0
## 910 Transient-Party 62.00 0
## 911 Transient-Party 62.00 0
## 912 Transient-Party 62.00 0
## 913 Contract 90.00 0
## 914 Transient 75.00 0
## 915 Transient 114.00 0
## 916 Transient-Party 62.00 0
## 917 Transient-Party 62.00 0
## 918 Transient-Party 62.00 0
## 919 Transient 98.00 0
## 920 Transient-Party 62.00 0
## 921 Transient-Party 62.00 0
## 922 Transient-Party 62.00 0
## 923 Transient 110.00 0
## 924 Transient 105.00 0
## 925 Transient-Party 9.00 0
## 926 Contract 162.00 1
## 927 Transient-Party 62.00 0
## 928 Transient-Party 62.00 0
## 929 Transient-Party 0.00 0
## 930 Transient 115.00 1
## 931 Transient 76.50 0
## 932 Transient 76.50 0
## 933 Transient 63.50 0
## 934 Transient 75.00 0
## 935 Contract 105.00 0
## 936 Transient 75.00 0
## 937 Contract 81.00 0
## 938 Transient 96.00 0
## 939 Contract 81.00 0
## 940 Transient 55.96 0
## 941 Transient 124.00 0
## 942 Transient 96.00 0
## 943 Contract 89.00 0
## 944 Transient 115.00 0
## 945 Transient 114.00 0
## 946 Transient 115.00 0
## 947 Contract 90.00 0
## 948 Contract 90.00 0
## 949 Transient 75.00 0
## 950 Contract 80.00 0
## 951 Transient 115.00 0
## 952 Contract 90.00 0
## 953 Contract 80.00 0
## 954 Contract 90.00 0
## 955 Transient 75.00 0
## 956 Transient-Party 62.00 0
## 957 Transient-Party 62.00 0
## 958 Transient 75.00 0
## 959 Transient 75.00 0
## 960 Transient 76.50 0
## 961 Transient 0.00 0
## 962 Transient 0.00 0
## 963 Transient 124.00 0
## 964 Transient 90.00 0
## 965 Contract 95.00 0
## 966 Transient 0.00 0
## 967 Transient 75.00 0
## 968 Transient 111.60 0
## 969 Transient 160.00 0
## 970 Contract 114.00 0
## 971 Transient 99.00 0
## 972 Transient 70.00 0
## 973 Contract 162.00 1
## 974 Transient 76.50 0
## 975 Transient 15.00 0
## 976 Transient-Party 144.00 0
## 977 Transient 90.00 0
## 978 Transient 0.00 0
## 979 Transient 124.00 0
## 980 Transient 89.00 0
## 981 Transient 0.00 0
## 982 Transient 68.00 0
## 983 Transient-Party 144.00 0
## 984 Transient 90.00 0
## 985 Transient 50.30 0
## 986 Transient 107.00 1
## 987 Transient 114.00 0
## 988 Transient 153.00 0
## 989 Transient-Party 6.00 0
## 990 Contract 105.00 0
## 991 Contract 105.00 0
## 992 Transient 76.50 0
## 993 Contract 124.00 0
## 994 Transient-Party 67.90 1
## 995 Contract 153.00 0
## 996 Transient 114.00 0
## 997 Transient-Party 0.00 0
## 998 Transient 75.00 0
## 999 Transient-Party 70.00 0
## 1000 Transient 95.00 0
## 1001 Transient 62.80 0
## 1002 Contract 90.00 0
## 1003 Contract 90.00 0
## 1004 Transient 76.50 0
## 1005 Contract 105.00 1
## 1006 Transient 106.54 0
## 1007 Transient 75.00 0
## 1008 Transient-Party 88.00 0
## 1009 Transient-Party 99.00 0
## 1010 Transient 153.00 0
## 1011 Transient 99.00 0
## 1012 Transient 80.00 0
## 1013 Contract 133.00 1
## 1014 Transient-Party 88.00 0
## 1015 Transient 80.00 0
## 1016 Transient 99.00 0
## 1017 Transient-Party 76.50 0
## 1018 Transient-Party 76.50 0
## 1019 Transient 105.00 0
## 1020 Transient 75.00 0
## 1021 Transient-Party 76.50 0
## 1022 Transient 65.00 0
## 1023 Transient-Party 90.00 0
## 1024 Transient 76.50 0
## 1025 Transient 75.00 0
## 1026 Transient 75.00 0
## 1027 Transient-Party 62.00 0
## 1028 Transient 70.00 0
## 1029 Transient 62.80 0
## 1030 Contract 114.00 1
## 1031 Transient-Party 62.00 0
## 1032 Transient-Party 62.00 0
## 1033 Transient-Party 84.00 0
## 1034 Transient-Party 62.00 0
## 1035 Transient-Party 62.00 0
## 1036 Contract 153.00 0
## 1037 Transient-Party 62.00 0
## 1038 Transient-Party 62.00 0
## 1039 Transient-Party 62.00 0
## 1040 Transient-Party 62.00 0
## 1041 Transient-Party 62.00 0
## 1042 Transient 0.00 0
## 1043 Transient-Party 62.00 0
## 1044 Transient-Party 62.00 0
## 1045 Transient-Party 84.00 0
## 1046 Transient-Party 62.00 0
## 1047 Transient-Party 62.00 0
## 1048 Transient-Party 62.00 0
## 1049 Transient-Party 62.00 0
## 1050 Transient-Party 62.00 0
## 1051 Transient-Party 62.00 0
## 1052 Transient-Party 62.00 0
## 1053 Transient 76.50 0
## 1054 Transient-Party 62.00 0
## 1055 Transient-Party 62.00 0
## 1056 Transient 88.00 0
## 1057 Transient-Party 62.00 0
## 1058 Transient-Party 62.00 0
## 1059 Transient-Party 62.00 0
## 1060 Transient 0.00 0
## 1061 Transient-Party 62.00 0
## 1062 Transient-Party 0.00 0
## 1063 Transient-Party 62.00 0
## 1064 Transient-Party 62.00 0
## 1065 Contract 138.00 0
## 1066 Transient 75.00 0
## 1067 Contract 138.00 0
## 1068 Contract 98.00 0
## 1069 Transient 110.00 0
## 1070 Contract 90.00 0
## 1071 Transient 75.00 0
## 1072 Contract 90.00 0
## 1073 Transient 93.56 0
## 1074 Transient-Party 75.00 0
## 1075 Contract 90.00 0
## 1076 Transient 76.50 0
## 1077 Transient 138.00 0
## 1078 Contract 153.00 0
## 1079 Transient 75.00 0
## 1080 Contract 0.00 0
## 1081 Transient 124.00 0
## 1082 Contract 124.00 0
## 1083 Transient 85.00 0
## 1084 Transient 89.00 0
## 1085 Transient 85.00 0
## 1086 Transient 89.00 0
## 1087 Transient-Party 85.50 1
## 1088 Transient 76.50 0
## 1089 Transient 76.50 0
## 1090 Contract 90.00 0
## 1091 Transient-Party 76.50 1
## 1092 Transient 98.00 0
## 1093 Contract 140.00 0
## 1094 Contract 99.00 1
## 1095 Transient 89.00 0
## 1096 Contract 146.00 0
## 1097 Transient 50.40 0
## 1098 Transient 76.50 0
## 1099 Contract 94.00 0
## 1100 Transient-Party 76.50 0
## 1101 Transient-Party 76.50 0
## 1102 Transient 76.50 0
## 1103 Transient 12.00 0
## 1104 Transient 12.00 0
## 1105 Transient-Party 109.00 0
## 1106 Transient-Party 109.00 0
## 1107 Transient-Party 109.00 0
## 1108 Transient-Party 109.00 0
## 1109 Transient-Party 109.00 0
## 1110 Transient-Party 87.00 0
## 1111 Transient-Party 87.00 0
## 1112 Transient-Party 101.50 0
## 1113 Transient-Party 101.50 0
## 1114 Transient-Party 101.50 0
## 1115 Transient-Party 101.50 0
## 1116 Transient-Party 101.50 0
## 1117 Transient-Party 101.50 0
## 1118 Transient-Party 109.00 0
## 1119 Transient-Party 109.00 0
## 1120 Transient-Party 109.00 0
## 1121 Transient-Party 101.50 0
## 1122 Transient-Party 109.00 0
## 1123 Transient-Party 87.00 0
## 1124 Transient-Party 101.50 0
## 1125 Transient-Party 101.50 0
## 1126 Transient-Party 101.50 0
## 1127 Transient 12.00 0
## 1128 Transient-Party 109.00 0
## 1129 Transient-Party 109.00 0
## 1130 Transient-Party 109.00 0
## 1131 Transient-Party 109.00 0
## 1132 Transient-Party 87.00 0
## 1133 Transient-Party 87.00 0
## 1134 Transient-Party 101.50 0
## 1135 Transient-Party 101.50 0
## 1136 Transient-Party 101.50 0
## 1137 Transient-Party 101.50 0
## 1138 Transient-Party 109.00 0
## 1139 Transient-Party 109.00 0
## 1140 Transient-Party 109.00 0
## 1141 Transient-Party 109.00 0
## 1142 Transient-Party 101.50 0
## 1143 Transient-Party 101.50 0
## 1144 Transient-Party 101.50 0
## 1145 Transient-Party 101.50 0
## 1146 Transient-Party 109.00 0
## 1147 Transient-Party 109.00 0
## 1148 Transient-Party 109.00 0
## 1149 Transient-Party 109.00 0
## 1150 Transient-Party 109.00 0
## 1151 Transient-Party 109.00 0
## 1152 Transient-Party 109.00 0
## 1153 Transient-Party 109.00 0
## 1154 Transient-Party 101.50 0
## 1155 Transient-Party 101.50 0
## 1156 Transient-Party 101.50 0
## 1157 Transient-Party 87.00 0
## 1158 Transient-Party 109.00 0
## 1159 Transient-Party 109.00 0
## 1160 Transient-Party 109.00 0
## 1161 Transient-Party 109.00 0
## 1162 Transient-Party 109.00 0
## 1163 Transient-Party 109.00 0
## 1164 Transient-Party 109.00 0
## 1165 Transient-Party 87.00 0
## 1166 Transient-Party 87.00 0
## 1167 Transient-Party 101.50 0
## 1168 Transient-Party 101.50 0
## 1169 Transient-Party 101.50 0
## 1170 Transient-Party 101.50 0
## 1171 Transient-Party 101.50 0
## 1172 Transient-Party 101.50 0
## 1173 Transient-Party 109.00 0
## 1174 Transient-Party 109.00 0
## 1175 Transient-Party 109.00 0
## 1176 Transient-Party 87.00 0
## 1177 Transient-Party 101.50 0
## 1178 Transient-Party 101.50 0
## 1179 Transient-Party 109.00 0
## 1180 Transient-Party 109.00 0
## 1181 Transient-Party 109.00 0
## 1182 Transient-Party 109.00 0
## 1183 Transient-Party 109.00 0
## 1184 Transient-Party 87.00 0
## 1185 Transient-Party 101.50 0
## 1186 Transient-Party 101.50 0
## 1187 Transient-Party 101.50 0
## 1188 Transient-Party 101.50 0
## 1189 Transient-Party 101.50 0
## 1190 Transient-Party 101.50 0
## 1191 Transient-Party 101.50 0
## 1192 Transient-Party 109.00 0
## 1193 Transient-Party 109.00 0
## 1194 Transient-Party 109.00 0
## 1195 Transient-Party 109.00 0
## 1196 Transient-Party 87.00 0
## 1197 Transient-Party 0.00 0
## 1198 Transient-Party 101.50 0
## 1199 Transient-Party 101.50 0
## 1200 Transient-Party 101.50 0
## 1201 Transient-Party 101.50 0
## 1202 Transient-Party 101.50 0
## 1203 Transient-Party 109.00 0
## 1204 Transient-Party 109.00 0
## 1205 Transient-Party 109.00 0
## 1206 Transient-Party 109.00 0
## 1207 Transient-Party 109.00 0
## 1208 Transient-Party 109.00 0
## 1209 Transient-Party 109.00 0
## 1210 Transient-Party 109.00 0
## 1211 Transient-Party 101.50 0
## 1212 Transient-Party 101.50 0
## 1213 Transient-Party 101.50 0
## 1214 Transient-Party 101.50 0
## 1215 Transient-Party 101.50 0
## 1216 Transient-Party 101.50 0
## 1217 Transient-Party 101.50 0
## 1218 Transient-Party 109.00 0
## 1219 Transient-Party 109.00 0
## 1220 Transient-Party 109.00 0
## 1221 Transient-Party 109.00 0
## 1222 Transient-Party 109.00 0
## 1223 Transient-Party 109.00 0
## 1224 Transient-Party 101.50 0
## 1225 Transient-Party 101.50 0
## 1226 Transient-Party 101.50 0
## 1227 Transient-Party 101.50 0
## 1228 Transient-Party 109.00 0
## 1229 Transient-Party 109.00 0
## 1230 Transient-Party 109.00 0
## 1231 Transient-Party 109.00 0
## 1232 Transient-Party 109.00 0
## 1233 Transient-Party 109.00 0
## 1234 Transient-Party 101.50 0
## 1235 Transient-Party 101.50 0
## 1236 Transient-Party 101.50 0
## 1237 Transient-Party 101.50 0
## 1238 Transient-Party 109.00 0
## 1239 Transient-Party 109.00 0
## 1240 Transient-Party 109.00 0
## 1241 Transient-Party 109.00 0
## 1242 Transient-Party 109.00 0
## 1243 Transient-Party 109.00 0
## 1244 Transient-Party 87.00 0
## 1245 Transient-Party 101.50 0
## 1246 Transient-Party 101.50 0
## 1247 Transient-Party 109.00 0
## 1248 Transient-Party 109.00 0
## 1249 Transient-Party 101.50 0
## 1250 Transient-Party 101.50 0
## 1251 Transient-Party 101.50 0
## 1252 Transient-Party 109.00 0
## 1253 Transient-Party 109.00 0
## 1254 Transient 76.50 0
## 1255 Transient-Party 109.00 0
## 1256 Transient-Party 109.00 0
## 1257 Transient-Party 109.00 0
## 1258 Transient-Party 109.00 0
## 1259 Transient-Party 87.00 0
## 1260 Transient-Party 87.00 0
## 1261 Transient-Party 101.50 0
## 1262 Transient-Party 101.50 0
## 1263 Transient-Party 101.50 0
## 1264 Transient-Party 101.50 0
## 1265 Transient-Party 101.50 0
## 1266 Transient-Party 109.00 0
## 1267 Transient-Party 109.00 0
## 1268 Transient-Party 109.00 0
## 1269 Transient-Party 87.00 0
## 1270 Transient-Party 87.00 0
## 1271 Transient-Party 101.50 0
## 1272 Transient-Party 101.50 0
## 1273 Transient-Party 101.50 0
## 1274 Transient-Party 101.50 0
## 1275 Transient-Party 101.50 0
## 1276 Transient-Party 101.50 0
## 1277 Transient-Party 109.00 0
## 1278 Transient-Party 109.00 0
## 1279 Transient-Party 95.33 0
## 1280 Contract 126.67 0
## 1281 Contract 162.00 1
## 1282 Transient 76.50 0
## 1283 Transient 0.00 0
## 1284 Transient-Party 95.33 0
## 1285 Transient 0.00 0
## 1286 Transient 76.50 0
## 1287 Transient 76.50 0
## 1288 Transient-Party 83.20 0
## 1289 Transient-Party 83.20 0
## 1290 Transient-Party 93.20 0
## 1291 Transient-Party 106.14 0
## 1292 Transient 75.00 0
## 1293 Contract 124.00 0
## 1294 Transient 120.00 0
## 1295 Contract 124.00 0
## 1296 Contract 124.00 0
## 1297 Transient 124.00 0
## 1298 Transient 122.00 0
## 1299 Transient-Party 104.00 0
## 1300 Contract 162.00 0
## 1301 Transient-Party 62.00 0
## 1302 Transient-Party 62.00 0
## 1303 Transient-Party 62.00 0
## 1304 Transient-Party 62.00 0
## 1305 Transient-Party 62.00 0
## 1306 Transient-Party 60.00 0
## 1307 Transient-Party 62.00 0
## 1308 Transient-Party 62.00 0
## 1309 Transient-Party 62.00 0
## 1310 Transient-Party 62.00 0
## 1311 Transient 99.75 0
## 1312 Transient-Party 62.00 0
## 1313 Transient-Party 62.00 0
## 1314 Transient-Party 62.00 0
## 1315 Transient-Party 60.00 0
## 1316 Transient-Party 62.00 0
## 1317 Transient 76.50 0
## 1318 Transient-Party 62.00 0
## 1319 Transient-Party 60.00 0
## 1320 Transient-Party 62.00 0
## 1321 Transient-Party 62.00 0
## 1322 Transient-Party 62.00 0
## 1323 Transient-Party 62.00 0
## 1324 Transient-Party 62.00 0
## 1325 Transient-Party 62.00 0
## 1326 Transient-Party 60.00 0
## 1327 Transient-Party 62.00 0
## 1328 Transient-Party 62.00 0
## 1329 Transient-Party 62.00 0
## 1330 Transient 90.00 0
## 1331 Transient 75.00 0
## 1332 Transient 76.50 0
## 1333 Transient 85.50 0
## 1334 Transient 75.00 0
## 1335 Transient-Party 84.00 0
## 1336 Transient-Party 62.00 0
## 1337 Transient-Party 62.00 0
## 1338 Transient-Party 62.00 0
## 1339 Transient-Party 62.00 0
## 1340 Transient-Party 94.50 0
## 1341 Transient-Party 94.50 0
## 1342 Transient-Party 94.50 0
## 1343 Transient-Party 94.50 0
## 1344 Transient-Party 94.50 0
## 1345 Transient-Party 36.25 0
## 1346 Transient-Party 94.50 0
## 1347 Transient-Party 94.50 0
## 1348 Transient-Party 94.50 0
## 1349 Transient-Party 94.50 0
## 1350 Transient-Party 68.50 0
## 1351 Transient-Party 94.50 0
## 1352 Transient-Party 94.50 0
## 1353 Transient-Party 116.50 0
## 1354 Transient-Party 94.50 0
## 1355 Transient-Party 94.50 0
## 1356 Transient-Party 94.50 0
## 1357 Transient-Party 94.50 0
## 1358 Transient-Party 94.50 0
## 1359 Transient-Party 94.50 0
## 1360 Transient-Party 72.50 0
## 1361 Transient-Party 138.50 0
## 1362 Transient-Party 138.50 0
## 1363 Transient-Party 94.50 0
## 1364 Transient-Party 36.25 0
## 1365 Transient-Party 94.50 0
## 1366 Transient-Party 94.50 0
## 1367 Transient-Party 94.50 0
## 1368 Transient 90.00 0
## 1369 Transient-Party 94.50 0
## 1370 Transient-Party 94.50 0
## 1371 Transient-Party 47.25 0
## 1372 Transient-Party 94.50 0
## 1373 Transient-Party 72.50 0
## 1374 Transient-Party 94.50 0
## 1375 Transient-Party 94.50 0
## 1376 Transient-Party 94.50 0
## 1377 Transient-Party 94.50 0
## 1378 Transient 75.00 0
## 1379 Transient 153.00 0
## 1380 Transient 68.80 0
## 1381 Contract 162.00 1
## 1382 Transient 99.00 0
## 1383 Transient 162.00 0
## 1384 Transient 75.00 0
## 1385 Transient 76.50 0
## 1386 Transient-Party 75.00 0
## 1387 Transient-Party 6.00 0
## 1388 Transient 124.00 0
## 1389 Group 139.00 0
## 1390 Transient 67.00 0
## 1391 Transient 90.00 0
## 1392 Transient 75.00 0
## 1393 Transient 90.00 0
## 1394 Transient 63.75 0
## 1395 Transient 138.00 0
## 1396 Contract 105.00 0
## 1397 Contract 105.00 0
## 1398 Transient 90.00 0
## 1399 Contract 92.25 0
## 1400 Transient 76.50 0
## 1401 Transient 85.63 0
## 1402 Transient 124.00 0
## 1403 Transient 114.00 0
## 1404 Transient 124.00 0
## 1405 Transient 114.00 0
## 1406 Contract 129.00 0
## 1407 Transient 114.00 0
## 1408 Contract 138.00 0
## 1409 Transient-Party 62.00 0
## 1410 Transient-Party 62.00 0
## 1411 Transient-Party 62.00 0
## 1412 Transient-Party 60.00 0
## 1413 Transient-Party 62.00 0
## 1414 Transient-Party 62.00 0
## 1415 Transient-Party 60.00 0
## 1416 Transient-Party 62.00 0
## 1417 Transient-Party 62.00 0
## 1418 Transient-Party 60.00 0
## 1419 Transient-Party 84.00 0
## 1420 Transient-Party 62.00 0
## 1421 Transient-Party 62.00 0
## 1422 Transient-Party 60.00 0
## 1423 Transient-Party 62.00 0
## 1424 Transient-Party 62.00 0
## 1425 Transient-Party 62.00 0
## 1426 Contract 128.00 0
## 1427 Transient 75.00 0
## 1428 Transient-Party 62.00 0
## 1429 Transient 85.50 1
## 1430 Contract 153.00 0
## 1431 Contract 128.00 0
## 1432 Transient-Party 62.00 0
## 1433 Transient-Party 62.00 0
## 1434 Transient-Party 62.00 0
## 1435 Transient-Party 62.00 0
## 1436 Contract 117.33 0
## 1437 Transient 127.33 0
## 1438 Contract 100.00 0
## 1439 Transient 67.00 0
## 1440 Transient 75.00 0
## 1441 Transient 90.00 0
## 1442 Transient 153.00 0
## 1443 Transient 76.50 0
## 1444 Transient 120.00 0
## 1445 Transient 153.00 0
## 1446 Transient 120.00 0
## 1447 Transient 122.00 0
## 1448 Transient 75.00 0
## 1449 Transient-Party 62.00 0
## 1450 Transient 130.00 0
## 1451 Contract 122.00 0
## 1452 Contract 122.00 0
## 1453 Transient 122.00 0
## 1454 Contract 122.00 0
## 1455 Transient 99.00 0
## 1456 Transient 99.00 0
## 1457 Transient 83.47 0
## 1458 Transient 119.00 0
## 1459 Contract 90.00 0
## 1460 Transient 75.00 1
## 1461 Transient 79.20 0
## 1462 Contract 134.17 0
## 1463 Contract 104.00 1
## 1464 Transient 75.00 0
## 1465 Transient 136.00 0
## 1466 Transient 75.00 0
## 1467 Transient 75.00 0
## 1468 Transient 79.20 0
## 1469 Transient 72.00 0
## 1470 Transient-Party 62.00 0
## 1471 Transient-Party 62.00 0
## 1472 Transient-Party 62.00 0
## 1473 Transient-Party 62.00 0
## 1474 Transient-Party 62.00 0
## 1475 Transient-Party 60.00 0
## 1476 Transient-Party 60.00 0
## 1477 Transient-Party 62.00 0
## 1478 Contract 92.31 0
## 1479 Transient 114.00 0
## 1480 Transient 100.00 0
## 1481 Transient 114.00 0
## 1482 Contract 129.00 0
## 1483 Transient 129.00 0
## 1484 Transient 124.00 0
## 1485 Transient 114.00 0
## 1486 Transient 114.00 0
## 1487 Transient 75.00 0
## 1488 Transient 124.00 0
## 1489 Transient 129.00 0
## 1490 Transient 114.00 0
## 1491 Transient 124.00 0
## 1492 Transient 124.00 0
## 1493 Transient 84.00 0
## 1494 Transient 114.00 0
## 1495 Transient-Party 100.00 0
## 1496 Contract 80.00 0
## 1497 Transient 110.00 0
## 1498 Transient 75.00 0
## 1499 Transient 75.00 0
## 1500 Transient 75.00 0
## 1501 Transient 92.50 0
## 1502 Contract 90.00 0
## 1503 Contract 162.00 1
## 1504 Transient 109.80 0
## 1505 Contract 90.50 0
## 1506 Transient 75.00 0
## 1507 Transient 75.00 0
## 1508 Transient 75.00 0
## 1509 Transient 153.00 0
## 1510 Transient 90.00 0
## 1511 Transient 93.00 1
## 1512 Transient 90.00 0
## 1513 Transient 75.00 0
## 1514 Contract 90.00 0
## 1515 Contract 99.33 0
## 1516 Contract 98.62 0
## 1517 Contract 80.00 0
## 1518 Transient 122.00 0
## 1519 Transient 67.00 0
## 1520 Transient-Party 100.00 0
## 1521 Contract 90.00 0
## 1522 Transient 65.00 0
## 1523 Transient 65.00 0
## 1524 Transient 67.00 0
## 1525 Transient 75.00 0
## 1526 Transient 95.00 0
## 1527 Transient 76.50 0
## 1528 Transient 75.00 0
## 1529 Transient 81.00 0
## 1530 Transient 75.00 0
## 1531 Transient 65.00 0
## 1532 Transient 75.00 0
## 1533 Transient 92.50 0
## 1534 Transient 79.00 0
## 1535 Contract 81.00 0
## 1536 Transient 81.00 0
## 1537 Transient 76.50 0
## 1538 Transient 55.08 0
## 1539 Contract 106.00 0
## 1540 Contract 90.00 0
## 1541 Transient 67.00 0
## 1542 Transient 75.00 0
## 1543 Contract 102.80 0
## 1544 Group 89.00 0
## 1545 Transient 65.00 0
## 1546 Transient 106.00 0
## 1547 Transient 65.00 0
## 1548 Contract 97.00 0
## 1549 Contract 97.00 0
## 1550 Transient 106.00 0
## 1551 Transient 75.00 0
## 1552 Transient 0.00 0
## 1553 Transient 67.00 0
## 1554 Contract 97.00 0
## 1555 Contract 100.67 0
## 1556 Contract 80.00 0
## 1557 Transient 75.00 0
## 1558 Contract 99.14 0
## 1559 Contract 106.84 0
## 1560 Contract 85.92 0
## 1561 Transient 124.00 0
## 1562 Transient 76.50 0
## 1563 Contract 106.00 0
## 1564 Contract 106.00 0
## 1565 Contract 106.00 0
## 1566 Transient 0.00 0
## 1567 Transient 105.00 0
## 1568 Contract 153.00 0
## 1569 Contract 114.00 0
## 1570 Transient 75.00 0
## 1571 Transient 124.00 0
## 1572 Transient 63.75 0
## 1573 Transient 63.75 0
## 1574 Transient 124.00 0
## 1575 Transient 0.00 0
## 1576 Transient 124.00 0
## 1577 Transient 67.50 0
## 1578 Contract 90.00 1
## 1579 Transient 75.00 0
## 1580 Contract 99.00 1
## 1581 Transient 153.00 0
## 1582 Contract 106.00 0
## 1583 Contract 106.00 0
## 1584 Contract 106.00 0
## 1585 Transient 67.00 0
## 1586 Transient 125.00 0
## 1587 Contract 80.00 0
## 1588 Contract 90.00 0
## 1589 Transient 75.00 0
## 1590 Contract 119.50 0
## 1591 Transient 106.50 0
## 1592 Transient 75.00 0
## 1593 Transient 98.00 0
## 1594 Transient-Party 88.38 0
## 1595 Transient-Party 88.38 0
## 1596 Transient 96.00 0
## 1597 Transient 75.00 0
## 1598 Transient 71.25 1
## 1599 Transient 174.00 0
## 1600 Transient-Party 75.00 0
## 1601 Transient 115.00 0
## 1602 Transient-Party 75.00 0
## 1603 Transient 0.00 0
## 1604 Contract 106.00 0
## 1605 Transient-Party 75.00 0
## 1606 Contract 106.00 0
## 1607 Contract 123.50 0
## 1608 Contract 106.00 0
## 1609 Contract 106.00 0
## 1610 Transient 76.50 0
## 1611 Transient 76.50 0
## 1612 Contract 153.00 0
## 1613 Contract 100.67 0
## 1614 Transient 124.00 0
## 1615 Transient 90.00 0
## 1616 Transient 124.00 0
## 1617 Transient 75.00 0
## 1618 Contract 90.00 0
## 1619 Contract 153.00 0
## 1620 Contract 80.00 0
## 1621 Transient 90.00 0
## 1622 Contract 115.67 0
## 1623 Transient 124.00 0
## 1624 Contract 100.67 0
## 1625 Transient-Party 80.25 0
## 1626 Transient 79.00 0
## 1627 Transient-Party 61.00 0
## 1628 Contract 89.00 0
## 1629 Transient-Party 80.25 0
## 1630 Transient-Party 76.50 0
## 1631 Transient-Party 76.50 0
## 1632 Transient 153.00 0
## 1633 Transient 76.50 0
## 1634 Transient 85.57 0
## 1635 Contract 94.00 0
## 1636 Transient 96.40 0
## 1637 Transient-Party 72.50 0
## 1638 Transient-Party 94.50 0
## 1639 Transient-Party 138.50 0
## 1640 Transient-Party 35.20 0
## 1641 Transient-Party 86.00 0
## 1642 Transient-Party 94.50 0
## 1643 Transient-Party 94.50 0
## 1644 Transient-Party 138.50 0
## 1645 Transient-Party 94.50 0
## 1646 Transient-Party 47.25 0
## 1647 Transient-Party 94.50 0
## 1648 Transient-Party 94.50 0
## 1649 Transient 75.00 0
## 1650 Transient 76.50 0
## 1651 Transient 75.00 0
## 1652 Contract 97.00 0
## 1653 Transient 81.00 0
## 1654 Transient 174.00 0
## 1655 Transient 130.00 0
## 1656 Transient-Party 76.50 0
## 1657 Transient 79.00 0
## 1658 Transient-Party 76.50 0
## 1659 Contract 75.00 0
## 1660 Transient 98.00 0
## 1661 Transient 75.00 0
## 1662 Contract 98.00 0
## 1663 Transient-Party 86.00 0
## 1664 Transient-Party 94.50 0
## 1665 Transient-Party 94.50 0
## 1666 Transient-Party 72.50 0
## 1667 Transient-Party 94.50 0
## 1668 Transient-Party 86.00 0
## 1669 Transient-Party 63.00 0
## 1670 Transient-Party 94.50 0
## 1671 Transient-Party 94.50 0
## 1672 Transient-Party 94.50 0
## 1673 Transient-Party 35.20 0
## 1674 Transient-Party 86.00 0
## 1675 Transient-Party 94.50 0
## 1676 Transient-Party 94.50 0
## 1677 Transient-Party 94.50 0
## 1678 Transient-Party 36.25 0
## 1679 Transient-Party 94.50 0
## 1680 Transient-Party 94.50 0
## 1681 Transient-Party 86.00 0
## 1682 Transient-Party 86.00 0
## 1683 Transient-Party 138.50 0
## 1684 Transient-Party 106.67 0
## 1685 Transient-Party 94.50 0
## 1686 Transient-Party 94.50 0
## 1687 Transient-Party 63.00 0
## 1688 Transient-Party 138.50 0
## 1689 Transient-Party 94.50 0
## 1690 Transient-Party 124.00 0
## 1691 Transient 12.00 0
## 1692 Contract 90.00 0
## 1693 Transient 76.50 0
## 1694 Transient 55.96 0
## 1695 Contract 81.00 0
## 1696 Contract 90.00 0
## 1697 Contract 153.00 0
## 1698 Transient 98.00 0
## 1699 Contract 80.00 0
## 1700 Transient 99.00 0
## 1701 Transient 75.00 0
## 1702 Transient 75.00 0
## 1703 Transient 98.00 0
## 1704 Transient 0.00 0
## 1705 Transient 0.00 0
## 1706 Transient 90.00 0
## 1707 Contract 90.00 0
## 1708 Contract 99.00 1
## 1709 Contract 80.00 0
## 1710 Contract 80.00 0
## 1711 Contract 90.00 0
## 1712 Contract 90.00 0
## 1713 Transient 67.00 0
## 1714 Transient 76.50 0
## 1715 Transient 76.50 0
## 1716 Transient 153.00 0
## 1717 Transient 90.00 0
## 1718 Transient 75.00 0
## 1719 Transient-Party 62.00 0
## 1720 Transient-Party 62.00 0
## 1721 Transient-Party 62.00 0
## 1722 Transient-Party 62.00 0
## 1723 Transient-Party 62.00 0
## 1724 Contract 153.00 0
## 1725 Transient-Party 62.00 0
## 1726 Transient-Party 62.00 0
## 1727 Transient-Party 62.00 0
## 1728 Transient-Party 62.00 0
## 1729 Transient-Party 62.00 0
## 1730 Transient-Party 62.00 0
## 1731 Transient-Party 62.00 0
## 1732 Transient-Party 60.00 0
## 1733 Transient-Party 62.00 0
## 1734 Transient-Party 62.00 0
## 1735 Transient-Party 62.00 0
## 1736 Transient-Party 84.00 0
## 1737 Transient-Party 84.00 0
## 1738 Transient-Party 62.00 0
## 1739 Transient-Party 62.00 0
## 1740 Transient-Party 62.00 0
## 1741 Transient-Party 62.00 0
## 1742 Transient-Party 62.00 0
## 1743 Transient-Party 62.00 0
## 1744 Transient-Party 62.00 0
## 1745 Transient-Party 60.00 0
## 1746 Transient-Party 62.00 0
## 1747 Transient-Party 62.00 0
## 1748 Transient-Party 62.00 0
## 1749 Transient-Party 0.00 0
## 1750 Contract 90.00 0
## 1751 Contract 90.00 0
## 1752 Contract 90.00 0
## 1753 Transient 76.50 0
## 1754 Contract 90.00 0
## 1755 Contract 90.00 0
## 1756 Contract 90.00 0
## 1757 Contract 90.00 0
## 1758 Transient 75.00 0
## 1759 Transient 75.00 0
## 1760 Transient 67.00 0
## 1761 Transient 79.00 0
## 1762 Contract 90.00 0
## 1763 Transient-Party 67.50 0
## 1764 Transient-Party 62.00 0
## 1765 Transient-Party 62.00 0
## 1766 Transient-Party 62.00 0
## 1767 Transient-Party 0.00 0
## 1768 Transient-Party 62.00 0
## 1769 Transient-Party 60.00 0
## 1770 Transient-Party 62.00 0
## 1771 Transient-Party 62.00 0
## 1772 Transient-Party 62.00 0
## 1773 Transient-Party 62.00 0
## 1774 Transient-Party 62.00 0
## 1775 Transient-Party 62.00 0
## 1776 Transient-Party 62.00 0
## 1777 Transient-Party 62.00 0
## 1778 Transient-Party 62.00 0
## 1779 Transient-Party 62.00 0
## 1780 Transient-Party 62.00 0
## 1781 Transient-Party 62.00 0
## 1782 Transient-Party 62.00 0
## 1783 Transient-Party 62.00 0
## 1784 Transient-Party 62.00 0
## 1785 Transient-Party 62.00 0
## 1786 Transient-Party 62.00 0
## 1787 Transient-Party 60.00 0
## 1788 Transient-Party 84.00 0
## 1789 Transient-Party 60.00 0
## 1790 Transient-Party 62.00 0
## 1791 Transient-Party 62.00 0
## 1792 Transient-Party 62.00 0
## 1793 Transient-Party 62.00 0
## 1794 Transient-Party 62.00 0
## 1795 Transient-Party 0.00 0
## 1796 Transient 153.00 0
## 1797 Transient-Party 62.00 0
## 1798 Transient-Party 62.00 0
## 1799 Transient-Party 62.00 0
## 1800 Transient-Party 60.00 0
## 1801 Transient 62.00 0
## 1802 Transient-Party 60.00 0
## 1803 Transient 100.00 0
## 1804 Contract 106.00 0
## 1805 Transient 75.00 0
## 1806 Contract 156.00 0
## 1807 Transient 106.00 0
## 1808 Transient 106.00 0
## 1809 Contract 156.00 0
## 1810 Transient 121.00 0
## 1811 Transient 90.00 0
## 1812 Transient 97.00 1
## 1813 Contract 106.00 0
## 1814 Contract 156.00 0
## 1815 Contract 12.00 0
## 1816 Transient-Party 60.00 0
## 1817 Transient-Party 62.00 0
## 1818 Transient-Party 62.00 0
## 1819 Transient-Party 60.00 0
## 1820 Transient-Party 62.00 0
## 1821 Contract 97.00 0
## 1822 Transient 0.00 0
## 1823 Contract 156.00 0
## 1824 Transient 0.00 0
## 1825 Transient 65.00 0
## 1826 Transient 0.00 0
## 1827 Transient 151.00 0
## 1828 Transient 106.00 0
## 1829 Transient 65.00 0
## 1830 Transient-Party 62.00 0
## 1831 Transient-Party 62.00 0
## 1832 Transient-Party 62.00 0
## 1833 Contract 90.00 0
## 1834 Transient-Party 62.00 0
## 1835 Transient-Party 62.00 0
## 1836 Transient-Party 62.00 0
## 1837 Transient-Party 60.00 0
## 1838 Transient-Party 0.00 0
## 1839 Transient-Party 62.00 0
## 1840 Transient-Party 60.00 0
## 1841 Transient-Party 84.00 0
## 1842 Transient-Party 62.00 0
## 1843 Transient-Party 62.00 0
## 1844 Transient-Party 62.00 0
## 1845 Transient-Party 62.00 0
## 1846 Transient-Party 62.00 0
## 1847 Transient-Party 60.00 0
## 1848 Transient-Party 84.00 0
## 1849 Transient-Party 62.00 0
## 1850 Transient 148.00 0
## 1851 Transient-Party 62.00 0
## 1852 Transient-Party 62.00 0
## 1853 Transient-Party 62.00 0
## 1854 Transient-Party 62.00 0
## 1855 Transient 65.00 0
## 1856 Transient-Party 62.00 0
## 1857 Transient-Party 62.00 0
## 1858 Transient-Party 84.00 0
## 1859 Transient-Party 60.00 0
## 1860 Transient-Party 62.00 0
## 1861 Transient-Party 62.00 0
## 1862 Transient-Party 62.00 0
## 1863 Transient-Party 62.00 0
## 1864 Transient-Party 62.00 0
## 1865 Transient-Party 0.00 0
## 1866 Contract 90.00 0
## 1867 Transient-Party 62.00 0
## 1868 Transient 99.30 0
## 1869 Transient 93.00 1
## 1870 Contract 90.00 0
## 1871 Transient 58.90 0
## 1872 Contract 90.00 0
## 1873 Transient 75.00 0
## 1874 Transient 58.90 0
## 1875 Transient 58.90 0
## 1876 Transient 110.80 0
## 1877 Transient 153.00 0
## 1878 Contract 122.00 0
## 1879 Transient 160.00 0
## 1880 Contract 90.00 0
## 1881 Contract 80.00 0
## 1882 Contract 90.00 0
## 1883 Transient 67.00 0
## 1884 Transient 79.00 0
## 1885 Transient 90.00 0
## 1886 Transient 90.00 0
## 1887 Contract 105.00 0
## 1888 Transient 85.29 0
## 1889 Transient 85.29 0
## 1890 Transient 82.87 0
## 1891 Transient 62.80 0
## 1892 Contract 80.00 0
## 1893 Transient 0.00 0
## 1894 Transient 75.00 1
## 1895 Contract 90.00 0
## 1896 Transient 0.00 0
## 1897 Transient 96.00 0
## 1898 Contract 90.00 0
## 1899 Contract 81.00 0
## 1900 Contract 123.50 0
## 1901 Transient 79.00 0
## 1902 Contract 153.00 0
## 1903 Transient 76.50 0
## 1904 Contract 106.00 0
## 1905 Transient 85.00 0
## 1906 Transient 79.90 0
## 1907 Contract 105.67 0
## 1908 Transient 75.00 0
## 1909 Contract 97.77 0
## 1910 Contract 156.00 0
## 1911 Transient 67.00 0
## 1912 Contract 90.00 0
## 1913 Contract 106.00 1
## 1914 Contract 90.00 0
## 1915 Transient-Party 90.00 0
## 1916 Transient 90.00 0
## 1917 Contract 90.00 0
## 1918 Transient-Party 153.00 0
## 1919 Transient 106.00 0
## 1920 Transient 90.00 0
## 1921 Contract 90.00 0
## 1922 Transient 96.00 0
## 1923 Transient 75.00 0
## 1924 Transient 75.00 0
## 1925 Contract 153.00 0
## 1926 Contract 90.00 0
## 1927 Transient-Party 94.50 0
## 1928 Transient-Party 94.50 0
## 1929 Transient-Party 94.50 0
## 1930 Contract 105.00 0
## 1931 Transient-Party 94.50 0
## 1932 Transient-Party 94.50 0
## 1933 Transient-Party 72.50 0
## 1934 Transient-Party 94.50 0
## 1935 Transient-Party 94.50 0
## 1936 Transient-Party 138.50 0
## 1937 Transient-Party 47.25 0
## 1938 Transient-Party 94.50 0
## 1939 Transient-Party 94.50 0
## 1940 Transient-Party 72.50 0
## 1941 Transient-Party 94.50 0
## 1942 Transient-Party 94.50 0
## 1943 Transient-Party 72.50 0
## 1944 Transient-Party 36.25 0
## 1945 Transient-Party 94.50 0
## 1946 Transient-Party 94.50 0
## 1947 Transient-Party 94.50 0
## 1948 Transient-Party 94.50 0
## 1949 Contract 90.00 0
## 1950 Transient-Party 94.50 0
## 1951 Contract 96.00 0
## 1952 Transient-Party 94.50 0
## 1953 Transient-Party 94.50 0
## 1954 Transient-Party 94.50 0
## 1955 Transient-Party 94.50 0
## 1956 Transient 121.00 0
## 1957 Transient 89.00 0
## 1958 Contract 156.00 0
## 1959 Transient 80.75 0
## 1960 Transient 97.50 0
## 1961 Transient 87.50 0
## 1962 Transient 99.14 0
## 1963 Contract 98.57 0
## 1964 Transient 79.00 0
## 1965 Transient 0.00 0
## 1966 Transient 79.00 0
## 1967 Transient 96.00 0
## 1968 Transient-Party 65.00 0
## 1969 Transient 79.00 0
## 1970 Contract 90.00 0
## 1971 Transient 79.00 0
## 1972 Transient-Party 65.00 0
## 1973 Transient-Party 65.00 0
## 1974 Transient-Party 65.00 0
## 1975 Transient 90.00 0
## 1976 Transient 90.00 0
## 1977 Transient 90.00 0
## 1978 Transient 90.00 0
## 1979 Transient 90.00 0
## 1980 Transient 90.00 0
## 1981 Transient 90.00 0
## 1982 Transient 90.00 0
## 1983 Transient 90.00 0
## 1984 Transient 90.00 0
## 1985 Transient 90.00 0
## 1986 Transient 90.00 0
## 1987 Transient 90.00 0
## 1988 Transient 90.00 0
## 1989 Transient 90.00 0
## 1990 Transient 90.00 0
## 1991 Transient 90.00 0
## 1992 Transient 90.00 0
## 1993 Transient 90.00 0
## 1994 Transient 90.00 0
## 1995 Transient 90.00 0
## 1996 Transient 90.00 0
## 1997 Transient 90.00 0
## 1998 Transient 90.00 0
## 1999 Transient 90.00 0
## 2000 Transient 90.00 0
## 2001 Transient 90.00 0
## 2002 Transient 90.00 0
## 2003 Transient 90.00 0
## 2004 Transient 90.00 0
## 2005 Transient 90.00 0
## 2006 Transient 90.00 0
## 2007 Transient 90.00 0
## 2008 Transient 90.00 0
## 2009 Transient 90.00 0
## 2010 Transient 90.00 0
## 2011 Transient 90.00 0
## 2012 Transient 90.00 0
## 2013 Transient 90.00 0
## 2014 Transient 90.00 0
## 2015 Transient 114.00 0
## 2016 Contract 95.50 0
## 2017 Contract 99.00 0
## 2018 Transient 94.00 0
## 2019 Transient 89.00 0
## 2020 Contract 110.71 0
## 2021 Transient 85.00 0
## 2022 Transient 65.00 0
## 2023 Transient 85.00 0
## 2024 Transient 85.00 0
## 2025 Transient 126.00 0
## 2026 Transient 106.00 0
## 2027 Transient-Party 105.00 0
## 2028 Transient-Party 90.00 0
## 2029 Transient-Party 80.00 0
## 2030 Transient-Party 80.00 0
## 2031 Transient 65.00 0
## 2032 Transient-Party 60.00 0
## 2033 Transient-Party 80.00 0
## 2034 Transient-Party 80.00 0
## 2035 Transient-Party 90.00 0
## 2036 Transient-Party 60.00 0
## 2037 Transient 60.00 0
## 2038 Transient-Party 60.00 0
## 2039 Transient-Party 60.00 0
## 2040 Transient-Party 80.00 0
## 2041 Transient-Party 80.00 0
## 2042 Transient-Party 80.00 0
## 2043 Transient-Party 60.00 0
## 2044 Transient-Party 60.00 0
## 2045 Transient-Party 60.00 0
## 2046 Transient-Party 80.00 0
## 2047 Contract 155.33 0
## 2048 Transient-Party 90.00 0
## 2049 Contract 90.00 0
## 2050 Transient-Party 60.00 0
## 2051 Transient-Party 80.00 0
## 2052 Transient 95.50 0
## 2053 Transient-Party 0.00 0
## 2054 Transient-Party 80.00 0
## 2055 Transient-Party 90.00 0
## 2056 Transient 105.33 1
## 2057 Transient 96.33 0
## 2058 Transient 0.00 0
## 2059 Transient 105.25 0
## 2060 Transient 75.00 0
## 2061 Contract 91.25 0
## 2062 Contract 155.25 0
## 2063 Contract 101.25 0
## 2064 Group 85.00 0
## 2065 Transient 46.54 0
## 2066 Contract 102.00 0
## 2067 Contract 92.00 0
## 2068 Transient 92.00 0
## 2069 Transient 75.00 0
## 2070 Transient 109.00 0
## 2071 Contract 92.00 0
## 2072 Transient 109.00 0
## 2073 Transient 109.00 0
## 2074 Transient 75.00 0
## 2075 Transient 75.00 0
## 2076 Transient 85.00 0
## 2077 Transient 103.13 0
## 2078 Transient 97.50 0
## 2079 Contract 95.00 0
## 2080 Transient 73.15 0
## 2081 Transient 0.00 0
## 2082 Transient 0.00 0
## 2083 Transient 0.00 0
## 2084 Contract 105.00 0
## 2085 Transient 105.00 0
## 2086 Transient 89.00 0
## 2087 Transient 105.00 0
## 2088 Transient 89.00 0
## 2089 Contract 165.00 0
## 2090 Transient 75.00 0
## 2091 Contract 95.00 0
## 2092 Contract 105.00 0
## 2093 Transient-Party 85.50 0
## 2094 Transient-Party 86.40 0
## 2095 Transient 76.81 0
## 2096 Transient 53.85 0
## 2097 Transient 76.50 0
## 2098 Contract 116.62 0
## 2099 Transient 105.00 0
## 2100 Contract 156.50 0
## 2101 Contract 96.00 0
## 2102 Transient 114.00 0
## 2103 Contract 134.75 0
## 2104 Transient 0.00 0
## 2105 Transient 227.25 0
## 2106 Contract 113.00 0
## 2107 Contract 105.00 0
## 2108 Contract 134.75 0
## 2109 Contract 98.50 0
## 2110 Transient 165.00 0
## 2111 Contract 96.00 0
## 2112 Transient 0.00 0
## 2113 Transient 95.00 0
## 2114 Transient 105.00 0
## 2115 Contract 115.00 0
## 2116 Contract 114.50 0
## 2117 Transient 80.85 0
## 2118 Transient 66.53 0
## 2119 Transient 74.61 0
## 2120 Transient 97.93 0
## 2121 Transient 94.50 0
## 2122 Transient-Party 60.00 0
## 2123 Transient 65.00 0
## 2124 Transient 65.00 0
## 2125 Contract 103.50 0
## 2126 Transient 65.00 0
## 2127 Group 73.92 0
## 2128 Transient 105.00 0
## 2129 Contract 96.00 0
## 2130 Transient 65.00 0
## 2131 Contract 105.50 0
## 2132 Transient 76.81 0
## 2133 Transient-Party 60.00 0
## 2134 Transient 60.00 0
## 2135 Transient-Party 60.00 0
## 2136 Transient 89.25 0
## 2137 Transient-Party 76.50 0
## 2138 Transient-Party 60.00 0
## 2139 Transient-Party 60.00 0
## 2140 Transient-Party 0.00 0
## 2141 Transient 12.00 0
## 2142 Transient-Party 60.00 0
## 2143 Transient-Party 60.00 0
## 2144 Transient-Party 76.50 0
## 2145 Transient-Party 60.00 0
## 2146 Transient-Party 60.00 0
## 2147 Transient 105.00 0
## 2148 Transient 76.81 0
## 2149 Transient-Party 60.00 0
## 2150 Transient-Party 60.00 0
## 2151 Transient 80.85 0
## 2152 Transient 103.05 0
## 2153 Transient 105.00 0
## 2154 Transient 80.85 0
## 2155 Transient 83.55 0
## 2156 Contract 155.00 0
## 2157 Contract 105.00 0
## 2158 Transient 115.00 0
## 2159 Transient 155.00 0
## 2160 Transient 115.00 0
## 2161 Contract 96.00 0
## 2162 Transient 131.75 0
## 2163 Contract 133.50 0
## 2164 Contract 105.00 0
## 2165 Contract 114.50 0
## 2166 Transient 124.50 0
## 2167 Transient 124.50 0
## 2168 Contract 95.00 0
## 2169 Transient-Party 123.50 0
## 2170 Contract 174.00 0
## 2171 Transient 89.25 0
## 2172 Contract 117.67 0
## 2173 Transient 89.25 0
## 2174 Contract 117.67 0
## 2175 Contract 105.00 0
## 2176 Contract 121.33 0
## 2177 Contract 180.33 0
## 2178 Transient 117.67 0
## 2179 Contract 140.00 1
## 2180 Contract 117.67 0
## 2181 Transient 95.00 0
## 2182 Transient 90.25 0
## 2183 Transient 84.00 0
## 2184 Transient 62.83 0
## 2185 Transient 85.00 0
## 2186 Contract 105.00 0
## 2187 Contract 96.60 0
## 2188 Contract 122.33 0
## 2189 Contract 90.51 0
## 2190 Contract 117.67 0
## 2191 Contract 117.67 0
## 2192 Contract 121.33 0
## 2193 Transient 96.00 0
## 2194 Transient-Party 110.00 0
## 2195 Transient 143.00 0
## 2196 Transient 105.00 0
## 2197 Transient-Party 110.00 0
## 2198 Transient-Party 83.00 0
## 2199 Transient-Party 110.00 0
## 2200 Contract 95.00 0
## 2201 Transient 174.00 0
## 2202 Transient-Party 83.00 0
## 2203 Transient-Party 116.00 0
## 2204 Transient-Party 80.50 0
## 2205 Transient 133.00 0
## 2206 Transient-Party 116.00 0
## 2207 Transient-Party 116.00 0
## 2208 Contract 124.00 0
## 2209 Contract 96.00 0
## 2210 Transient-Party 116.00 0
## 2211 Transient-Party 116.00 0
## 2212 Transient-Party 116.00 0
## 2213 Transient-Party 80.50 0
## 2214 Transient 0.00 0
## 2215 Transient-Party 116.00 0
## 2216 Transient-Party 116.00 0
## 2217 Transient-Party 116.00 0
## 2218 Transient-Party 80.50 0
## 2219 Transient-Party 116.00 0
## 2220 Transient-Party 116.00 0
## 2221 Transient-Party 116.00 0
## 2222 Contract 124.00 0
## 2223 Contract 124.00 1
## 2224 Transient-Party 116.00 0
## 2225 Transient-Party 116.00 0
## 2226 Transient-Party 56.00 0
## 2227 Transient-Party 116.00 0
## 2228 Transient-Party 116.00 0
## 2229 Transient-Party 116.00 0
## 2230 Transient-Party 116.00 0
## 2231 Transient-Party 116.00 0
## 2232 Transient-Party 116.00 0
## 2233 Transient 89.25 0
## 2234 Transient-Party 116.00 0
## 2235 Transient-Party 116.00 0
## 2236 Contract 159.00 0
## 2237 Contract 143.00 0
## 2238 Transient-Party 85.17 0
## 2239 Contract 105.00 0
## 2240 Transient 105.00 0
## 2241 Transient-Party 110.00 0
## 2242 Transient-Party 108.00 0
## 2243 Transient-Party 110.00 0
## 2244 Transient 158.00 0
## 2245 Transient-Party 83.00 0
## 2246 Transient-Party 85.17 0
## 2247 Transient 124.00 0
## 2248 Transient-Party 0.00 0
## 2249 Transient 113.00 1
## 2250 Contract 110.50 0
## 2251 Contract 105.00 0
## 2252 Transient 85.50 0
## 2253 Transient 113.00 1
## 2254 Contract 90.25 0
## 2255 Transient 75.60 0
## 2256 Transient-Party 85.17 0
## 2257 Transient 76.81 0
## 2258 Contract 105.00 0
## 2259 Transient 80.75 0
## 2260 Transient 75.60 0
## 2261 Transient 45.00 0
## 2262 Transient 78.54 0
## 2263 Transient 73.15 0
## 2264 Transient 78.54 0
## 2265 Transient 88.83 0
## 2266 Transient 97.33 0
## 2267 Contract 122.50 0
## 2268 Transient 98.25 1
## 2269 Group 85.00 0
## 2270 Contract 124.00 0
## 2271 Contract 143.00 0
## 2272 Transient 143.00 0
## 2273 Transient 143.00 0
## 2274 Group 85.00 0
## 2275 Transient 114.00 0
## 2276 Transient 75.00 0
## 2277 Transient 133.00 0
## 2278 Contract 124.00 0
## 2279 Group 143.00 0
## 2280 Contract 105.00 0
## 2281 Transient 89.25 0
## 2282 Transient 0.00 0
## 2283 Transient 115.00 0
## 2284 Transient 62.00 0
## 2285 Transient 62.00 0
## 2286 Transient 62.00 0
## 2287 Transient 185.00 0
## 2288 Transient 73.15 0
## 2289 Transient 62.00 0
## 2290 Transient 62.00 0
## 2291 Transient 62.00 0
## 2292 Transient 62.00 0
## 2293 Transient 62.00 0
## 2294 Transient 62.00 0
## 2295 Contract 95.00 0
## 2296 Transient 62.00 0
## 2297 Transient 62.00 0
## 2298 Transient 62.00 0
## 2299 Transient 62.00 0
## 2300 Transient 62.00 0
## 2301 Transient 62.00 0
## 2302 Transient 62.00 0
## 2303 Contract 95.00 0
## 2304 Transient 120.00 1
## 2305 Transient 62.00 0
## 2306 Transient 62.00 0
## 2307 Transient 62.00 0
## 2308 Transient 62.00 0
## 2309 Transient 105.00 0
## 2310 Transient 62.00 0
## 2311 Transient 62.00 0
## 2312 Transient 62.00 0
## 2313 Transient 62.00 0
## 2314 Transient 62.00 0
## 2315 Transient 60.00 0
## 2316 Transient 115.00 0
## 2317 Transient 80.85 0
## 2318 Transient 62.00 0
## 2319 Transient 105.00 0
## 2320 Transient 62.00 0
## 2321 Transient 60.00 0
## 2322 Transient 62.00 0
## 2323 Transient 62.00 0
## 2324 Transient 86.40 0
## 2325 Contract 165.00 0
## 2326 Transient 95.00 0
## 2327 Contract 165.00 0
## 2328 Contract 94.50 0
## 2329 Transient 157.25 0
## 2330 Contract 94.50 0
## 2331 Transient 69.49 0
## 2332 Contract 165.00 0
## 2333 Contract 95.00 0
## 2334 Contract 165.00 0
## 2335 Transient-Party 60.00 0
## 2336 Transient-Party 62.00 0
## 2337 Transient-Party 62.00 0
## 2338 Transient-Party 62.00 0
## 2339 Transient-Party 60.00 0
## 2340 Transient-Party 84.00 0
## 2341 Transient-Party 62.00 0
## 2342 Transient-Party 62.00 0
## 2343 Transient-Party 62.00 0
## 2344 Transient 105.00 0
## 2345 Transient-Party 60.00 0
## 2346 Transient-Party 62.00 0
## 2347 Transient-Party 62.00 0
## 2348 Transient-Party 62.00 0
## 2349 Transient-Party 62.00 0
## 2350 Transient-Party 62.00 0
## 2351 Transient-Party 62.00 0
## 2352 Transient-Party 62.00 0
## 2353 Transient 94.50 0
## 2354 Transient-Party 62.00 0
## 2355 Transient-Party 60.00 0
## 2356 Transient-Party 84.00 0
## 2357 Transient-Party 62.00 0
## 2358 Transient 105.00 0
## 2359 Transient-Party 62.00 0
## 2360 Transient-Party 0.00 0
## 2361 Transient-Party 62.00 0
## 2362 Transient-Party 62.00 0
## 2363 Transient-Party 62.00 0
## 2364 Transient-Party 62.00 0
## 2365 Transient-Party 0.00 0
## 2366 Transient-Party 62.00 0
## 2367 Transient-Party 60.00 0
## 2368 Transient-Party 62.00 0
## 2369 Transient-Party 62.00 0
## 2370 Transient-Party 62.00 0
## 2371 Transient-Party 62.00 0
## 2372 Transient-Party 62.00 0
## 2373 Transient-Party 62.00 0
## 2374 Transient-Party 62.00 0
## 2375 Transient-Party 62.00 0
## 2376 Transient-Party 62.00 0
## 2377 Transient-Party 0.00 0
## 2378 Transient-Party 62.00 0
## 2379 Transient-Party 0.00 0
## 2380 Contract 122.00 0
## 2381 Transient 110.08 0
## 2382 Contract 110.17 0
## 2383 Transient 117.60 0
## 2384 Contract 116.85 0
## 2385 Transient 105.65 0
## 2386 Transient 113.14 0
## 2387 Transient-Party 62.00 0
## 2388 Transient-Party 62.00 0
## 2389 Transient-Party 62.00 0
## 2390 Transient-Party 62.00 0
## 2391 Transient 72.25 0
## 2392 Transient-Party 75.00 0
## 2393 Transient-Party 0.00 0
## 2394 Transient-Party 75.00 0
## 2395 Transient-Party 75.00 0
## 2396 Transient-Party 75.00 0
## 2397 Transient-Party 75.00 0
## 2398 Transient-Party 75.00 0
## 2399 Transient 89.25 0
## 2400 Transient 105.00 0
## 2401 Transient-Party 75.00 0
## 2402 Transient-Party 75.00 0
## 2403 Transient-Party 75.00 0
## 2404 Transient-Party 75.00 0
## 2405 Transient-Party 75.00 0
## 2406 Transient-Party 75.00 0
## 2407 Transient-Party 75.00 0
## 2408 Transient-Party 75.00 0
## 2409 Transient-Party 75.00 0
## 2410 Transient-Party 75.00 0
## 2411 Transient-Party 75.00 0
## 2412 Transient-Party 75.00 0
## 2413 Transient-Party 75.00 0
## 2414 Transient-Party 75.00 0
## 2415 Transient-Party 6.00 0
## 2416 Transient-Party 75.00 0
## 2417 Transient-Party 75.00 0
## 2418 Transient-Party 75.00 0
## 2419 Transient-Party 75.00 0
## 2420 Transient-Party 75.00 0
## 2421 Transient-Party 75.00 0
## 2422 Transient-Party 75.00 0
## 2423 Transient-Party 75.00 0
## 2424 Transient-Party 75.00 0
## 2425 Transient-Party 75.00 0
## 2426 Transient-Party 75.00 0
## 2427 Transient-Party 75.00 0
## 2428 Transient-Party 75.00 0
## 2429 Transient-Party 75.00 0
## 2430 Transient-Party 75.00 0
## 2431 Transient-Party 75.00 0
## 2432 Transient-Party 75.00 0
## 2433 Transient-Party 75.00 0
## 2434 Transient-Party 75.00 0
## 2435 Transient-Party 75.00 0
## 2436 Transient-Party 6.00 0
## 2437 Transient-Party 75.00 0
## 2438 Transient-Party 75.00 0
## 2439 Transient-Party 75.00 0
## 2440 Transient-Party 75.00 0
## 2441 Transient-Party 75.00 0
## 2442 Transient-Party 75.00 0
## 2443 Transient-Party 0.00 0
## 2444 Transient-Party 75.00 0
## 2445 Transient-Party 6.00 0
## 2446 Transient-Party 75.00 0
## 2447 Transient-Party 75.00 0
## 2448 Transient-Party 75.00 0
## 2449 Transient-Party 75.00 0
## 2450 Transient-Party 75.00 0
## 2451 Transient-Party 75.00 0
## 2452 Transient-Party 0.00 0
## 2453 Transient-Party 75.00 0
## 2454 Transient-Party 75.00 0
## 2455 Transient-Party 75.00 0
## 2456 Transient-Party 75.00 0
## 2457 Transient-Party 75.00 0
## 2458 Transient-Party 75.00 0
## 2459 Transient-Party 75.00 0
## 2460 Transient-Party 75.00 0
## 2461 Transient-Party 75.00 0
## 2462 Transient-Party 75.00 0
## 2463 Transient-Party 75.00 0
## 2464 Transient-Party 75.00 0
## 2465 Transient-Party 75.00 0
## 2466 Transient-Party 75.00 0
## 2467 Transient-Party 75.00 0
## 2468 Transient-Party 75.00 0
## 2469 Transient-Party 75.00 0
## 2470 Transient 29.00 0
## 2471 Transient 81.09 0
## 2472 Transient 135.75 0
## 2473 Transient 80.00 0
## 2474 Transient 80.00 0
## 2475 Transient 54.75 0
## 2476 Transient 118.80 0
## 2477 Group 91.73 0
## 2478 Transient 72.25 0
## 2479 Transient 133.43 0
## 2480 Transient 95.00 0
## 2481 Contract 133.00 0
## 2482 Transient 119.00 0
## 2483 Transient 160.00 0
## 2484 Transient 133.00 0
## 2485 Contract 133.00 0
## 2486 Transient 133.00 0
## 2487 Transient 79.25 0
## 2488 Contract 124.00 0
## 2489 Contract 133.00 0
## 2490 Transient 98.80 0
## 2491 Contract 103.50 0
## 2492 Contract 104.50 0
## 2493 Contract 133.50 0
## 2494 Group 91.60 0
## 2495 Transient 120.00 0
## 2496 Transient 133.50 0
## 2497 Contract 133.50 0
## 2498 Contract 123.50 0
## 2499 Contract 99.20 0
## 2500 Transient 72.76 0
## 2501 Contract 102.33 0
## 2502 Contract 111.33 0
## 2503 Transient 65.00 0
## 2504 Contract 102.33 0
## 2505 Transient 99.50 0
## 2506 Transient 78.03 0
## 2507 Transient 161.33 0
## 2508 Transient 148.67 0
## 2509 Transient 65.00 0
## 2510 Transient 148.67 0
## 2511 Contract 111.33 0
## 2512 Transient 96.27 0
## 2513 Transient 78.03 0
## 2514 Contract 130.33 0
## 2515 Transient 135.00 0
## 2516 Contract 125.40 0
## 2517 Contract 123.50 0
## 2518 Transient 159.75 0
## 2519 Transient 115.80 0
## 2520 Contract 109.75 0
## 2521 Contract 123.50 0
## 2522 Transient 75.24 0
## 2523 Transient 114.50 0
## 2524 Contract 98.80 0
## 2525 Transient 118.80 0
## 2526 Transient 119.00 0
## 2527 Transient 109.75 0
## 2528 Contract 109.75 0
## 2529 Transient 77.57 0
## 2530 Contract 109.75 0
## 2531 Transient 76.08 0
## 2532 Transient 0.00 0
## 2533 Transient 116.04 0
## 2534 Transient 127.80 0
## 2535 Transient 90.71 0
## 2536 Contract 139.20 0
## 2537 Contract 166.00 0
## 2538 Transient 112.33 0
## 2539 Transient 95.98 0
## 2540 Contract 143.00 0
## 2541 Transient 91.20 0
## 2542 Transient 114.00 0
## 2543 Transient 124.00 0
## 2544 Transient 114.00 0
## 2545 Transient 114.00 0
## 2546 Transient 114.00 0
## 2547 Transient 114.00 0
## 2548 Contract 105.00 0
## 2549 Contract 91.20 0
## 2550 Transient 91.20 0
## 2551 Transient 115.00 0
## 2552 Contract 124.00 0
## 2553 Transient 200.00 0
## 2554 Transient 92.40 0
## 2555 Transient-Party 110.40 0
## 2556 Transient 200.00 0
## 2557 Transient 80.85 0
## 2558 Transient-Party 102.40 0
## 2559 Transient 65.00 0
## 2560 Contract 105.00 0
## 2561 Transient 87.78 0
## 2562 Transient 120.00 1
## 2563 Transient 95.00 0
## 2564 Contract 142.67 0
## 2565 Contract 105.00 0
## 2566 Transient 85.00 0
## 2567 Transient 84.00 0
## 2568 Transient 84.00 0
## 2569 Contract 105.00 0
## 2570 Contract 114.00 0
## 2571 Transient 75.00 0
## 2572 Transient 124.00 0
## 2573 Transient 78.94 0
## 2574 Contract 195.00 0
## 2575 Contract 76.80 0
## 2576 Transient 111.00 0
## 2577 Transient 114.00 0
## 2578 Transient 124.00 0
## 2579 Transient 120.00 0
## 2580 Transient 142.00 0
## 2581 Transient 114.00 0
## 2582 Transient 105.00 0
## 2583 Transient 78.94 0
## 2584 Contract 146.40 0
## 2585 Transient 82.98 0
## 2586 Transient 93.50 0
## 2587 Transient 85.00 0
## 2588 Contract 111.71 0
## 2589 Transient 111.71 0
## 2590 Transient 132.13 0
## 2591 Transient 79.64 0
## 2592 Contract 114.00 0
## 2593 Transient 113.71 0
## 2594 Transient 154.00 0
## 2595 Transient-Party 62.00 0
## 2596 Transient-Party 84.00 0
## 2597 Transient 115.00 0
## 2598 Transient-Party 90.00 0
## 2599 Contract 105.00 0
## 2600 Transient-Party 100.00 0
## 2601 Transient-Party 100.00 0
## 2602 Transient-Party 110.00 0
## 2603 Transient-Party 90.00 0
## 2604 Transient-Party 62.00 0
## 2605 Transient-Party 0.00 0
## 2606 Transient 124.00 0
## 2607 Contract 115.00 0
## 2608 Contract 142.00 0
## 2609 Transient 114.00 0
## 2610 Transient 89.25 0
## 2611 Contract 105.00 0
## 2612 Transient 65.00 0
## 2613 Transient 115.00 0
## 2614 Transient 80.85 0
## 2615 Transient-Party 62.00 0
## 2616 Transient-Party 62.00 0
## 2617 Transient-Party 90.00 0
## 2618 Transient-Party 90.00 0
## 2619 Transient-Party 100.00 0
## 2620 Transient-Party 100.00 0
## 2621 Transient-Party 62.00 0
## 2622 Transient-Party 62.00 0
## 2623 Transient-Party 62.00 0
## 2624 Transient-Party 110.00 0
## 2625 Transient-Party 100.00 0
## 2626 Transient-Party 110.00 0
## 2627 Transient-Party 100.00 0
## 2628 Transient-Party 62.00 0
## 2629 Transient-Party 62.00 0
## 2630 Transient-Party 62.00 0
## 2631 Transient-Party 62.00 0
## 2632 Transient-Party 100.00 0
## 2633 Transient 105.00 1
## 2634 Transient-Party 95.00 0
## 2635 Transient-Party 110.00 0
## 2636 Transient-Party 62.00 0
## 2637 Transient-Party 62.00 0
## 2638 Transient-Party 62.00 0
## 2639 Transient-Party 90.00 0
## 2640 Transient 142.00 0
## 2641 Transient 65.00 0
## 2642 Transient-Party 100.00 0
## 2643 Transient-Party 90.00 0
## 2644 Transient-Party 100.00 0
## 2645 Transient-Party 90.00 0
## 2646 Transient-Party 100.00 0
## 2647 Transient-Party 110.00 0
## 2648 Transient-Party 62.00 0
## 2649 Transient-Party 62.00 0
## 2650 Transient-Party 90.00 0
## 2651 Transient-Party 90.00 0
## 2652 Contract 155.00 0
## 2653 Transient-Party 62.00 0
## 2654 Transient-Party 62.00 0
## 2655 Transient-Party 100.00 0
## 2656 Transient-Party 110.00 0
## 2657 Transient-Party 110.00 0
## 2658 Transient-Party 62.00 0
## 2659 Transient-Party 62.00 0
## 2660 Transient-Party 62.00 0
## 2661 Transient 89.25 0
## 2662 Transient-Party 100.00 0
## 2663 Transient-Party 100.00 0
## 2664 Transient-Party 62.00 0
## 2665 Transient-Party 62.00 0
## 2666 Transient-Party 62.00 0
## 2667 Transient-Party 100.00 0
## 2668 Transient-Party 90.00 0
## 2669 Transient-Party 110.00 0
## 2670 Transient 114.00 0
## 2671 Transient-Party 100.00 0
## 2672 Transient-Party 100.00 0
## 2673 Transient-Party 90.00 0
## 2674 Transient-Party 62.00 0
## 2675 Transient-Party 62.00 0
## 2676 Transient-Party 90.00 0
## 2677 Transient-Party 100.00 0
## 2678 Transient-Party 110.00 0
## 2679 Transient-Party 62.00 0
## 2680 Transient-Party 62.00 0
## 2681 Transient-Party 0.00 0
## 2682 Transient-Party 100.00 0
## 2683 Transient-Party 90.00 0
## 2684 Transient-Party 90.00 0
## 2685 Transient-Party 90.00 0
## 2686 Transient-Party 90.00 0
## 2687 Transient-Party 100.00 0
## 2688 Transient-Party 100.00 0
## 2689 Contract 174.00 0
## 2690 Transient 131.00 0
## 2691 Contract 152.00 0
## 2692 Transient 80.85 0
## 2693 Contract 152.00 0
## 2694 Contract 105.00 0
## 2695 Contract 152.00 0
## 2696 Transient-Party 90.00 0
## 2697 Contract 113.00 0
## 2698 Transient 116.75 0
## 2699 Transient 93.00 0
## 2700 Transient 58.35 0
## 2701 Transient 54.75 0
## 2702 Transient-Party 90.00 0
## 2703 Transient-Party 90.00 0
## 2704 Contract 116.75 0
## 2705 Transient 114.00 0
## 2706 Transient 111.60 0
## 2707 Transient 0.00 0
## 2708 Transient 102.60 0
## 2709 Transient-Party 100.00 0
## 2710 Transient 111.60 0
## 2711 Transient-Party 90.00 0
## 2712 Contract 95.00 0
## 2713 Transient 111.60 0
## 2714 Transient 0.00 0
## 2715 Contract 95.00 0
## 2716 Transient 126.00 0
## 2717 Transient 126.00 0
## 2718 Transient 126.00 0
## 2719 Transient 126.00 0
## 2720 Transient 126.00 0
## 2721 Transient 90.00 0
## 2722 Transient 97.00 0
## 2723 Transient 126.00 0
## 2724 Contract 152.00 0
## 2725 Group 105.00 0
## 2726 Transient 126.00 0
## 2727 Transient 126.00 0
## 2728 Transient 126.00 0
## 2729 Transient 126.00 0
## 2730 Transient 126.00 0
## 2731 Transient 126.00 0
## 2732 Transient 126.00 0
## 2733 Transient 126.00 0
## 2734 Transient 126.00 0
## 2735 Transient 73.92 0
## 2736 Transient 126.00 0
## 2737 Transient 126.00 0
## 2738 Transient 126.00 0
## 2739 Transient 126.00 0
## 2740 Transient 126.00 0
## 2741 Transient 126.00 0
## 2742 Transient 126.00 0
## 2743 Transient 126.00 0
## 2744 Transient 121.56 0
## 2745 Contract 114.40 0
## 2746 Transient 134.83 0
## 2747 Transient 115.00 0
## 2748 Contract 134.83 0
## 2749 Contract 137.29 0
## 2750 Transient 100.88 0
## 2751 Contract 163.63 0
## 2752 Transient 100.88 0
## 2753 Contract 103.50 0
## 2754 Transient 126.00 0
## 2755 Transient 126.00 0
## 2756 Transient 124.00 0
## 2757 Contract 145.80 0
## 2758 Contract 126.25 0
## 2759 Transient 108.08 0
## 2760 Transient 65.55 0
## 2761 Transient 58.65 0
## 2762 Transient 63.75 0
## 2763 Transient 65.55 0
## 2764 Contract 116.25 0
## 2765 Contract 147.75 0
## 2766 Transient 89.25 0
## 2767 Contract 116.75 0
## 2768 Transient-Party 90.00 0
## 2769 Transient-Party 0.00 0
## 2770 Transient-Party 50.00 0
## 2771 Transient-Party 60.00 0
## 2772 Transient-Party 60.00 0
## 2773 Transient-Party 60.00 0
## 2774 Transient 100.00 0
## 2775 Transient 100.00 0
## 2776 Transient-Party 63.00 0
## 2777 Transient-Party 126.00 0
## 2778 Transient-Party 50.00 0
## 2779 Transient-Party 93.50 0
## 2780 Transient 118.50 0
## 2781 Transient 100.00 0
## 2782 Transient-Party 60.00 0
## 2783 Transient-Party 50.00 0
## 2784 Transient-Party 60.00 0
## 2785 Contract 134.10 0
## 2786 Transient-Party 56.67 0
## 2787 Transient-Party 60.00 0
## 2788 Transient-Party 50.00 0
## 2789 Transient-Party 50.00 0
## 2790 Transient-Party 60.00 0
## 2791 Transient-Party 60.00 0
## 2792 Transient-Party 90.00 0
## 2793 Transient-Party 90.00 0
## 2794 Transient-Party 98.00 0
## 2795 Transient-Party 50.00 0
## 2796 Transient-Party 50.00 0
## 2797 Transient-Party 60.00 0
## 2798 Transient-Party 60.00 0
## 2799 Transient-Party 60.00 0
## 2800 Transient 100.00 0
## 2801 Transient 100.00 0
## 2802 Transient-Party 93.50 0
## 2803 Transient-Party 126.00 0
## 2804 Transient-Party 50.00 0
## 2805 Transient-Party 50.00 0
## 2806 Transient-Party 60.00 0
## 2807 Transient-Party 60.00 0
## 2808 Transient-Party 126.00 0
## 2809 Transient-Party 126.00 0
## 2810 Transient 100.00 0
## 2811 Transient 100.00 0
## 2812 Transient 0.00 0
## 2813 Transient-Party 98.00 0
## 2814 Transient-Party 50.00 0
## 2815 Transient-Party 60.00 0
## 2816 Transient-Party 60.00 0
## 2817 Transient 120.67 0
## 2818 Transient 100.00 0
## 2819 Transient 100.00 0
## 2820 Transient-Party 98.00 0
## 2821 Transient-Party 0.00 0
## 2822 Transient-Party 60.00 0
## 2823 Transient 100.00 0
## 2824 Transient-Party 50.00 0
## 2825 Transient-Party 60.00 0
## 2826 Transient-Party 60.00 0
## 2827 Transient-Party 126.00 0
## 2828 Transient-Party 50.00 0
## 2829 Transient-Party 60.00 0
## 2830 Transient-Party 60.00 0
## 2831 Transient-Party 60.00 0
## 2832 Transient 100.00 0
## 2833 Transient 100.00 0
## 2834 Transient-Party 126.00 0
## 2835 Transient-Party 50.00 0
## 2836 Transient-Party 50.00 0
## 2837 Transient-Party 60.00 0
## 2838 Transient 118.50 0
## 2839 Transient 100.00 0
## 2840 Transient-Party 60.00 0
## 2841 Transient 100.00 0
## 2842 Transient 127.00 0
## 2843 Contract 116.75 0
## 2844 Transient 93.50 0
## 2845 Contract 107.75 0
## 2846 Contract 90.09 0
## 2847 Transient-Party 113.79 0
## 2848 Transient-Party 113.79 0
## 2849 Contract 128.50 0
## 2850 Transient-Party 126.00 0
## 2851 Transient-Party 98.00 0
## 2852 Transient-Party 98.00 0
## 2853 Transient-Party 50.00 0
## 2854 Transient-Party 60.00 0
## 2855 Transient-Party 60.00 0
## 2856 Transient-Party 60.00 0
## 2857 Transient-Party 0.00 0
## 2858 Transient-Party 126.00 0
## 2859 Contract 128.50 0
## 2860 Transient 100.00 0
## 2861 Transient 100.00 0
## 2862 Transient-Party 126.00 0
## 2863 Transient-Party 50.00 0
## 2864 Transient-Party 60.00 0
## 2865 Transient 98.00 0
## 2866 Transient-Party 126.00 0
## 2867 Contract 105.00 0
## 2868 Transient-Party 80.00 0
## 2869 Transient-Party 104.00 0
## 2870 Transient-Party 100.00 0
## 2871 Transient-Party 100.00 0
## 2872 Transient-Party 80.00 0
## 2873 Transient-Party 104.00 0
## 2874 Transient-Party 90.00 0
## 2875 Transient 0.00 0
## 2876 Transient-Party 104.00 0
## 2877 Contract 95.00 0
## 2878 Transient-Party 104.00 0
## 2879 Transient 95.00 0
## 2880 Transient 124.00 0
## 2881 Contract 105.00 0
## 2882 Transient 76.81 0
## 2883 Transient-Party 104.00 0
## 2884 Transient-Party 80.00 0
## 2885 Transient-Party 100.00 0
## 2886 Transient-Party 50.00 0
## 2887 Transient-Party 60.00 0
## 2888 Transient-Party 98.00 0
## 2889 Transient-Party 98.00 0
## 2890 Transient 100.00 0
## 2891 Transient-Party 98.00 0
## 2892 Transient-Party 50.00 0
## 2893 Transient-Party 60.00 0
## 2894 Transient-Party 60.00 0
## 2895 Transient-Party 60.00 0
## 2896 Transient-Party 60.00 0
## 2897 Transient 100.00 0
## 2898 Transient 100.00 0
## 2899 Transient-Party 93.50 0
## 2900 Transient-Party 126.00 0
## 2901 Transient-Party 50.00 0
## 2902 Transient-Party 60.00 0
## 2903 Transient-Party 60.00 0
## 2904 Contract 128.50 0
## 2905 Transient 100.00 0
## 2906 Transient 100.00 0
## 2907 Transient-Party 50.00 0
## 2908 Transient-Party 60.00 0
## 2909 Transient-Party 60.00 0
## 2910 Contract 138.00 0
## 2911 Transient 118.50 0
## 2912 Contract 152.00 0
## 2913 Transient-Party 96.90 0
## 2914 Transient-Party 96.90 0
## 2915 Transient 187.00 0
## 2916 Transient 76.50 0
## 2917 Transient-Party 96.90 0
## 2918 Contract 133.50 0
## 2919 Contract 128.50 0
## 2920 Transient 86.00 0
## 2921 Transient 86.00 0
## 2922 Transient 86.00 0
## 2923 Transient 86.00 0
## 2924 Transient 86.00 0
## 2925 Transient 117.00 0
## 2926 Transient 86.00 0
## 2927 Transient 86.00 0
## 2928 Transient 86.00 0
## 2929 Contract 124.00 0
## 2930 Transient 95.48 0
## 2931 Transient 86.00 0
## 2932 Contract 120.60 1
## 2933 Contract 177.00 0
## 2934 Transient 86.00 0
## 2935 Transient-Party 60.00 0
## 2936 Transient-Party 84.00 0
## 2937 Transient-Party 62.00 0
## 2938 Transient-Party 62.00 0
## 2939 Transient 71.40 0
## 2940 Transient-Party 62.00 0
## 2941 Transient-Party 62.00 0
## 2942 Transient-Party 84.00 0
## 2943 Transient-Party 62.00 0
## 2944 Transient-Party 62.00 0
## 2945 Transient-Party 62.00 0
## 2946 Transient-Party 60.00 0
## 2947 Transient-Party 62.00 0
## 2948 Transient-Party 62.00 0
## 2949 Transient-Party 62.00 0
## 2950 Transient-Party 62.00 0
## 2951 Transient-Party 62.00 0
## 2952 Transient-Party 62.00 0
## 2953 Transient-Party 62.00 0
## 2954 Transient-Party 62.00 0
## 2955 Transient-Party 60.00 0
## 2956 Transient-Party 62.00 0
## 2957 Transient 89.55 0
## 2958 Transient-Party 62.00 0
## 2959 Transient-Party 60.00 0
## 2960 Transient-Party 62.00 0
## 2961 Transient-Party 62.00 0
## 2962 Transient-Party 62.00 0
## 2963 Transient-Party 60.00 0
## 2964 Transient-Party 62.00 0
## 2965 Transient-Party 60.00 0
## 2966 Transient-Party 62.00 0
## 2967 Transient 98.94 0
## 2968 Transient 142.60 0
## 2969 Contract 105.75 0
## 2970 Contract 130.17 0
## 2971 Transient 96.17 0
## 2972 Contract 136.14 0
## 2973 Transient-Party 62.00 0
## 2974 Transient 116.75 0
## 2975 Transient 104.43 0
## 2976 Contract 94.50 0
## 2977 Contract 94.50 0
## 2978 Transient 89.25 0
## 2979 Contract 105.00 0
## 2980 Contract 186.33 0
## 2981 Contract 105.00 0
## 2982 Transient 94.60 0
## 2983 Contract 94.50 0
## 2984 Contract 94.50 1
## 2985 Contract 94.50 0
## 2986 Transient 102.00 0
## 2987 Contract 96.00 0
## 2988 Transient 75.60 0
## 2989 Transient 65.00 0
## 2990 Contract 105.00 0
## 2991 Contract 113.00 0
## 2992 Transient 103.15 0
## 2993 Contract 94.50 0
## 2994 Contract 85.50 0
## 2995 Contract 94.95 0
## 2996 Transient 80.75 0
## 2997 Transient 80.75 0
## 2998 Transient 87.40 0
## 2999 Contract 105.00 0
## 3000 Transient 110.43 0
## 3001 Transient 100.43 0
## 3002 Contract 86.40 0
## 3003 Transient 65.00 0
## 3004 Contract 85.50 0
## 3005 Transient-Party 90.00 0
## 3006 Transient-Party 90.00 0
## 3007 Contract 105.00 0
## 3008 Transient 100.87 0
## 3009 Transient-Party 90.00 0
## 3010 Transient-Party 90.00 0
## 3011 Transient-Party 90.00 0
## 3012 Transient-Party 90.00 0
## 3013 Transient-Party 90.00 0
## 3014 Transient-Party 90.00 0
## 3015 Contract 124.00 0
## 3016 Transient-Party 80.00 0
## 3017 Contract 105.00 0
## 3018 Transient-Party 90.00 0
## 3019 Contract 84.00 0
## 3020 Transient-Party 90.00 0
## 3021 Transient-Party 90.00 0
## 3022 Contract 152.00 0
## 3023 Contract 109.00 0
## 3024 Transient-Party 90.00 0
## 3025 Transient-Party 90.00 0
## 3026 Transient 103.84 0
## 3027 Contract 105.00 0
## 3028 Transient 78.54 0
## 3029 Contract 94.50 0
## 3030 Transient 105.00 0
## 3031 Transient 65.00 0
## 3032 Transient 94.50 0
## 3033 Contract 174.00 0
## 3034 Transient 65.00 0
## 3035 Contract 108.80 0
## 3036 Transient 100.87 0
## 3037 Transient 74.61 0
## 3038 Contract 101.83 0
## 3039 Transient 67.49 0
## 3040 Transient 65.00 0
## 3041 Contract 105.00 0
## 3042 Contract 76.80 0
## 3043 Transient 80.75 0
## 3044 Transient 65.00 0
## 3045 Transient 98.25 1
## 3046 Transient 65.00 0
## 3047 Contract 96.00 0
## 3048 Transient 65.00 0
## 3049 Transient 165.00 0
## 3050 Contract 85.50 0
## 3051 Transient 89.25 0
## 3052 Contract 114.00 0
## 3053 Transient 65.00 0
## 3054 Contract 85.50 0
## 3055 Contract 94.50 0
## 3056 Contract 94.50 0
## 3057 Transient 94.50 0
## 3058 Contract 152.00 0
## 3059 Contract 114.00 0
## 3060 Contract 105.00 0
## 3061 Transient 113.60 0
## 3062 Contract 94.50 0
## 3063 Contract 114.00 0
## 3064 Transient 105.00 0
## 3065 Transient 89.25 1
## 3066 Transient 80.85 0
## 3067 Contract 114.00 0
## 3068 Contract 114.00 0
## 3069 Transient 65.00 0
## 3070 Transient 73.92 0
## 3071 Transient 95.00 0
## 3072 Transient 95.00 0
## 3073 Contract 114.00 0
## 3074 Transient 108.72 0
## 3075 Transient 84.00 0
## 3076 Transient 64.60 0
## 3077 Contract 114.00 0
## 3078 Contract 114.00 0
## 3079 Contract 114.00 0
## 3080 Transient 65.00 0
## 3081 Transient 98.25 1
## 3082 Transient 105.00 1
## 3083 Contract 132.00 0
## 3084 Transient 56.25 0
## 3085 Transient 130.22 0
## 3086 Transient 130.22 0
## 3087 Contract 185.20 0
## 3088 Transient 112.60 0
## 3089 Transient 80.75 0
## 3090 Transient 60.83 0
## 3091 Transient 98.40 0
## 3092 Transient 105.00 0
## 3093 Transient 85.50 0
## 3094 Transient-Party 62.00 0
## 3095 Transient-Party 62.00 0
## 3096 Transient 114.00 0
## 3097 Transient-Party 105.00 0
## 3098 Transient-Party 62.00 0
## 3099 Transient-Party 62.00 0
## 3100 Transient-Party 62.00 0
## 3101 Transient-Party 84.00 0
## 3102 Transient-Party 94.50 1
## 3103 Transient-Party 85.50 0
## 3104 Transient-Party 94.50 0
## 3105 Transient-Party 62.00 0
## 3106 Transient-Party 62.00 0
## 3107 Transient 127.80 0
## 3108 Transient-Party 62.00 0
## 3109 Transient-Party 62.00 0
## 3110 Transient-Party 0.00 0
## 3111 Transient-Party 0.00 0
## 3112 Transient-Party 62.00 0
## 3113 Transient-Party 62.00 0
## 3114 Contract 114.00 0
## 3115 Contract 115.00 0
## 3116 Transient 114.00 0
## 3117 Transient 114.00 0
## 3118 Contract 155.00 0
## 3119 Contract 115.00 0
## 3120 Contract 113.60 0
## 3121 Transient-Party 62.00 0
## 3122 Transient-Party 62.00 0
## 3123 Transient-Party 62.00 0
## 3124 Transient-Party 94.50 0
## total_of_special_requests reservation_status reservation_status_date
## 1 0 Check-Out 2015-07-03
## 2 1 Canceled 2015-07-01
## 3 1 Canceled 2015-04-30
## 4 2 Canceled 2015-06-23
## 5 1 Canceled 2015-04-02
## 6 1 Canceled 2015-06-25
## 7 0 Check-Out 2015-07-05
## 8 0 Canceled 2015-06-25
## 9 1 No-Show 2015-07-02
## 10 1 No-Show 2015-07-02
## 11 0 Check-Out 2015-07-05
## 12 0 Check-Out 2015-07-05
## 13 0 Check-Out 2015-07-05
## 14 0 Check-Out 2015-07-05
## 15 0 Canceled 2015-06-29
## 16 0 Check-Out 2015-07-05
## 17 0 Canceled 2015-06-16
## 18 0 Check-Out 2015-07-05
## 19 0 Check-Out 2015-07-05
## 20 0 Canceled 2015-06-29
## 21 0 Canceled 2015-06-16
## 22 1 Canceled 2015-06-30
## 23 0 Check-Out 2015-07-05
## 24 0 Check-Out 2015-07-05
## 25 1 Canceled 2015-04-17
## 26 0 Check-Out 2015-07-10
## 27 0 Canceled 2015-06-01
## 28 0 Canceled 2015-06-23
## 29 1 Canceled 2015-06-15
## 30 0 Check-Out 2015-07-08
## 31 0 Canceled 2015-06-30
## 32 0 Canceled 2015-06-20
## 33 0 Canceled 2015-07-03
## 34 1 Canceled 2015-06-20
## 35 2 Canceled 2015-04-21
## 36 1 Canceled 2015-06-20
## 37 2 Canceled 2015-06-15
## 38 1 Canceled 2015-05-22
## 39 1 Canceled 2015-06-25
## 40 1 No-Show 2015-07-06
## 41 0 Canceled 2015-06-17
## 42 0 Canceled 2015-06-27
## 43 0 Canceled 2015-06-26
## 44 2 Canceled 2015-06-27
## 45 0 Check-Out 2015-07-09
## 46 2 Canceled 2015-06-17
## 47 1 Canceled 2015-06-17
## 48 1 Canceled 2015-06-16
## 49 1 Canceled 2015-06-29
## 50 2 Canceled 2015-06-27
## 51 1 Canceled 2015-07-07
## 52 1 Canceled 2015-07-07
## 53 0 Canceled 2015-07-07
## 54 0 Check-Out 2015-07-17
## 55 0 Canceled 2015-04-08
## 56 0 Canceled 2015-04-11
## 57 0 Canceled 2015-04-08
## 58 0 Check-Out 2015-07-10
## 59 1 Canceled 2015-04-05
## 60 0 Check-Out 2015-07-13
## 61 2 Canceled 2015-06-29
## 62 0 Check-Out 2015-07-13
## 63 1 Canceled 2015-06-25
## 64 0 Canceled 2015-05-14
## 65 0 Canceled 2015-05-07
## 66 0 Canceled 2015-06-15
## 67 1 Canceled 2015-06-27
## 68 1 Check-Out 2015-07-14
## 69 0 Canceled 2015-06-30
## 70 1 Canceled 2015-07-01
## 71 0 Canceled 2015-07-10
## 72 2 Canceled 2015-05-25
## 73 0 Check-Out 2015-07-15
## 74 1 Canceled 2015-06-01
## 75 1 Canceled 2015-06-01
## 76 0 Check-Out 2015-07-12
## 77 0 Check-Out 2015-07-12
## 78 0 Check-Out 2015-07-12
## 79 0 Check-Out 2015-07-12
## 80 1 Canceled 2015-06-27
## 81 0 Check-Out 2015-07-14
## 82 0 Check-Out 2015-07-14
## 83 1 Canceled 2015-06-12
## 84 0 Canceled 2015-05-11
## 85 0 Check-Out 2015-07-14
## 86 0 Canceled 2015-06-23
## 87 0 Check-Out 2015-07-14
## 88 0 Check-Out 2015-07-14
## 89 0 Check-Out 2015-07-14
## 90 0 Check-Out 2015-07-14
## 91 0 Check-Out 2015-07-14
## 92 0 Canceled 2015-06-23
## 93 0 Canceled 2015-06-23
## 94 0 Check-Out 2015-07-14
## 95 0 Canceled 2015-06-23
## 96 0 Check-Out 2015-07-14
## 97 0 Check-Out 2015-07-14
## 98 0 Canceled 2015-06-23
## 99 0 Canceled 2015-06-23
## 100 0 Check-Out 2015-07-14
## 101 0 Canceled 2015-06-23
## 102 0 Check-Out 2015-07-14
## 103 0 Check-Out 2015-07-14
## 104 0 Check-Out 2015-07-14
## 105 0 Check-Out 2015-07-14
## 106 0 Check-Out 2015-07-14
## 107 0 Check-Out 2015-07-14
## 108 0 Check-Out 2015-07-14
## 109 0 Canceled 2015-06-23
## 110 0 Canceled 2015-05-11
## 111 0 Check-Out 2015-07-14
## 112 0 Canceled 2015-06-23
## 113 0 Check-Out 2015-07-14
## 114 0 Check-Out 2015-07-14
## 115 0 Canceled 2015-06-23
## 116 0 Canceled 2015-06-23
## 117 1 Canceled 2015-07-02
## 118 0 Canceled 2015-06-15
## 119 0 Check-Out 2015-07-14
## 120 0 No-Show 2015-07-13
## 121 2 Canceled 2015-06-17
## 122 0 No-Show 2015-07-13
## 123 0 No-Show 2015-07-13
## 124 0 No-Show 2015-07-13
## 125 2 Canceled 2015-06-17
## 126 0 No-Show 2015-07-13
## 127 1 Canceled 2015-06-30
## 128 0 No-Show 2015-07-13
## 129 0 No-Show 2015-07-13
## 130 1 Canceled 2015-06-29
## 131 0 Canceled 2015-03-13
## 132 1 Canceled 2015-06-30
## 133 1 Canceled 2015-07-03
## 134 0 Canceled 2015-07-07
## 135 0 Canceled 2015-07-15
## 136 1 Canceled 2015-06-30
## 137 2 No-Show 2015-07-15
## 138 1 Canceled 2015-05-08
## 139 0 Canceled 2015-06-20
## 140 0 Check-Out 2015-07-22
## 141 1 Canceled 2015-07-02
## 142 1 Canceled 2015-05-27
## 143 0 Canceled 2015-05-07
## 144 1 Canceled 2015-05-07
## 145 1 Canceled 2015-04-29
## 146 0 No-Show 2015-07-16
## 147 0 Canceled 2015-06-17
## 148 0 Canceled 2015-07-16
## 149 0 Canceled 2015-07-13
## 150 0 Check-Out 2015-07-20
## 151 0 Check-Out 2015-07-20
## 152 0 Check-Out 2015-07-20
## 153 0 Check-Out 2015-07-20
## 154 0 Check-Out 2015-07-20
## 155 0 Check-Out 2015-07-20
## 156 0 Check-Out 2015-07-20
## 157 0 Check-Out 2015-07-20
## 158 0 Check-Out 2015-07-20
## 159 0 Check-Out 2015-07-20
## 160 0 Check-Out 2015-07-20
## 161 0 Check-Out 2015-07-20
## 162 0 Check-Out 2015-07-20
## 163 0 Check-Out 2015-07-20
## 164 0 Check-Out 2015-07-20
## 165 0 Check-Out 2015-07-20
## 166 0 Check-Out 2015-07-20
## 167 0 Check-Out 2015-07-20
## 168 0 Check-Out 2015-07-20
## 169 0 Check-Out 2015-07-20
## 170 0 Check-Out 2015-07-20
## 171 0 Canceled 2015-07-16
## 172 0 Check-Out 2015-07-21
## 173 0 Canceled 2015-07-16
## 174 0 Check-Out 2015-07-21
## 175 0 Canceled 2015-07-16
## 176 0 Canceled 2015-07-16
## 177 0 Canceled 2015-07-16
## 178 0 Canceled 2015-07-16
## 179 0 Canceled 2015-07-16
## 180 0 Check-Out 2015-07-21
## 181 0 Check-Out 2015-07-21
## 182 0 Canceled 2015-07-16
## 183 0 Canceled 2015-07-16
## 184 0 Check-Out 2015-07-21
## 185 0 Canceled 2015-07-16
## 186 0 Canceled 2015-07-16
## 187 0 Canceled 2015-07-16
## 188 0 Canceled 2015-07-16
## 189 0 Canceled 2015-07-16
## 190 0 Canceled 2015-07-16
## 191 0 Check-Out 2015-07-21
## 192 0 Canceled 2015-07-16
## 193 0 Canceled 2015-07-16
## 194 0 Canceled 2015-07-16
## 195 0 Check-Out 2015-07-22
## 196 0 Check-Out 2015-07-22
## 197 0 Check-Out 2015-07-22
## 198 0 Canceled 2015-07-18
## 199 0 Canceled 2015-07-18
## 200 0 Canceled 2015-07-18
## 201 1 Canceled 2015-07-18
## 202 0 Canceled 2015-07-18
## 203 0 Canceled 2015-07-18
## 204 0 Check-Out 2015-07-22
## 205 0 Canceled 2015-07-18
## 206 0 Canceled 2015-07-18
## 207 0 Check-Out 2015-07-22
## 208 0 Check-Out 2015-07-22
## 209 0 Canceled 2015-07-18
## 210 0 Canceled 2015-07-18
## 211 0 Check-Out 2015-07-22
## 212 0 Check-Out 2015-07-22
## 213 0 Canceled 2015-07-18
## 214 0 Canceled 2015-07-18
## 215 0 Check-Out 2015-07-22
## 216 0 Canceled 2015-07-18
## 217 0 Canceled 2015-07-18
## 218 0 Check-Out 2015-07-22
## 219 0 Canceled 2015-07-18
## 220 0 Check-Out 2015-07-22
## 221 0 Check-Out 2015-07-22
## 222 0 Canceled 2015-07-18
## 223 0 Check-Out 2015-07-22
## 224 0 Check-Out 2015-07-22
## 225 0 Canceled 2015-07-18
## 226 0 Check-Out 2015-07-23
## 227 1 Canceled 2015-04-16
## 228 1 Canceled 2015-07-12
## 229 1 Canceled 2015-07-12
## 230 0 Canceled 2015-06-29
## 231 1 Canceled 2015-07-11
## 232 1 Canceled 2015-07-09
## 233 1 Canceled 2015-07-09
## 234 0 Check-Out 2015-07-22
## 235 0 Check-Out 2015-07-20
## 236 0 No-Show 2015-07-20
## 237 0 Canceled 2015-05-25
## 238 0 Check-Out 2015-07-24
## 239 0 Check-Out 2015-07-24
## 240 0 Check-Out 2015-07-24
## 241 0 Canceled 2015-07-02
## 242 0 Canceled 2015-07-02
## 243 0 Check-Out 2015-07-24
## 244 0 Canceled 2015-07-17
## 245 0 Canceled 2015-07-02
## 246 0 Canceled 2015-07-02
## 247 0 Check-Out 2015-07-24
## 248 0 Canceled 2015-07-17
## 249 0 Canceled 2015-07-02
## 250 0 Check-Out 2015-07-24
## 251 0 Check-Out 2015-07-24
## 252 0 Check-Out 2015-07-24
## 253 0 Check-Out 2015-07-24
## 254 0 Check-Out 2015-07-24
## 255 0 Check-Out 2015-07-24
## 256 0 Canceled 2015-07-02
## 257 0 Canceled 2015-07-02
## 258 0 Check-Out 2015-07-24
## 259 0 Canceled 2015-07-17
## 260 0 Check-Out 2015-07-24
## 261 0 Canceled 2015-07-02
## 262 0 Canceled 2015-07-02
## 263 0 Canceled 2015-07-02
## 264 0 Check-Out 2015-07-24
## 265 0 Canceled 2015-07-17
## 266 0 Check-Out 2015-07-24
## 267 0 Check-Out 2015-07-24
## 268 0 Check-Out 2015-07-24
## 269 0 Check-Out 2015-07-24
## 270 0 Canceled 2015-07-17
## 271 0 Check-Out 2015-07-24
## 272 0 No-Show 2015-07-22
## 273 0 No-Show 2015-07-22
## 274 1 Canceled 2015-06-12
## 275 1 No-Show 2015-07-22
## 276 0 Canceled 2015-07-18
## 277 1 Canceled 2015-05-18
## 278 2 Canceled 2015-05-18
## 279 0 Canceled 2015-07-02
## 280 0 Check-Out 2015-07-24
## 281 0 Check-Out 2015-07-24
## 282 0 Check-Out 2015-07-24
## 283 0 Canceled 2015-07-02
## 284 1 Check-Out 2015-07-24
## 285 0 Canceled 2015-07-17
## 286 0 Check-Out 2015-07-24
## 287 0 Canceled 2015-07-02
## 288 1 Canceled 2015-04-24
## 289 0 Check-Out 2015-07-24
## 290 0 Check-Out 2015-07-24
## 291 0 Check-Out 2015-07-24
## 292 0 Check-Out 2015-07-24
## 293 0 Check-Out 2015-07-24
## 294 0 Check-Out 2015-07-24
## 295 0 Check-Out 2015-07-24
## 296 0 Check-Out 2015-07-24
## 297 0 Check-Out 2015-07-24
## 298 0 Check-Out 2015-07-24
## 299 0 Check-Out 2015-07-24
## 300 0 Check-Out 2015-07-24
## 301 0 Check-Out 2015-07-24
## 302 0 Check-Out 2015-07-24
## 303 0 Check-Out 2015-07-24
## 304 0 Check-Out 2015-07-24
## 305 0 Check-Out 2015-07-24
## 306 0 Check-Out 2015-07-24
## 307 0 Check-Out 2015-07-24
## 308 0 Check-Out 2015-07-24
## 309 0 Check-Out 2015-07-24
## 310 0 Check-Out 2015-07-24
## 311 0 Check-Out 2015-07-24
## 312 0 Check-Out 2015-07-24
## 313 0 Check-Out 2015-07-24
## 314 0 Check-Out 2015-07-24
## 315 1 Check-Out 2015-07-24
## 316 0 Check-Out 2015-07-24
## 317 0 Check-Out 2015-07-24
## 318 0 Check-Out 2015-07-24
## 319 0 Check-Out 2015-07-24
## 320 0 Check-Out 2015-07-24
## 321 0 Check-Out 2015-07-24
## 322 1 Check-Out 2015-07-24
## 323 0 Check-Out 2015-07-24
## 324 0 Check-Out 2015-07-24
## 325 0 Check-Out 2015-07-24
## 326 0 Check-Out 2015-07-24
## 327 1 Canceled 2015-04-24
## 328 0 Canceled 2015-06-30
## 329 0 Canceled 2015-07-21
## 330 0 Canceled 2015-06-30
## 331 0 Canceled 2015-06-30
## 332 0 Canceled 2015-07-21
## 333 0 Check-Out 2015-07-30
## 334 0 Canceled 2015-05-20
## 335 0 Check-Out 2015-07-25
## 336 1 Check-Out 2015-07-26
## 337 2 Check-Out 2015-07-26
## 338 0 Check-Out 2015-07-26
## 339 1 Check-Out 2015-07-26
## 340 0 Check-Out 2015-07-26
## 341 2 Check-Out 2015-07-26
## 342 1 Check-Out 2015-07-26
## 343 0 Check-Out 2015-07-26
## 344 2 Check-Out 2015-07-26
## 345 1 Canceled 2015-04-24
## 346 2 Canceled 2015-06-29
## 347 0 Canceled 2015-07-22
## 348 0 Canceled 2015-07-22
## 349 0 Check-Out 2015-07-28
## 350 0 Check-Out 2015-07-28
## 351 0 Canceled 2015-07-22
## 352 0 Canceled 2015-07-22
## 353 0 Canceled 2015-07-22
## 354 0 Canceled 2015-07-22
## 355 0 Check-Out 2015-07-28
## 356 0 Check-Out 2015-07-28
## 357 0 Canceled 2015-07-16
## 358 0 Canceled 2015-07-22
## 359 0 Canceled 2015-07-22
## 360 0 Canceled 2015-07-16
## 361 0 Canceled 2015-07-22
## 362 0 Canceled 2015-07-22
## 363 0 Check-Out 2015-07-28
## 364 0 Canceled 2015-07-22
## 365 0 Canceled 2015-07-22
## 366 0 Check-Out 2015-07-28
## 367 0 Check-Out 2015-07-28
## 368 0 Canceled 2015-07-16
## 369 0 Canceled 2015-07-16
## 370 0 Check-Out 2015-07-28
## 371 0 Check-Out 2015-07-28
## 372 0 Canceled 2015-07-22
## 373 0 Check-Out 2015-07-28
## 374 0 Check-Out 2015-07-28
## 375 0 Check-Out 2015-07-28
## 376 0 Canceled 2015-07-16
## 377 0 Check-Out 2015-07-28
## 378 0 Check-Out 2015-07-28
## 379 0 Canceled 2015-07-22
## 380 0 Canceled 2015-07-22
## 381 1 Check-Out 2015-07-29
## 382 0 Check-Out 2015-07-29
## 383 0 Check-Out 2015-07-29
## 384 0 Check-Out 2015-07-29
## 385 0 Check-Out 2015-07-29
## 386 0 Check-Out 2015-07-29
## 387 0 Canceled 2015-07-22
## 388 0 Canceled 2015-07-22
## 389 0 Canceled 2015-07-22
## 390 0 Canceled 2015-07-22
## 391 0 Check-Out 2015-07-29
## 392 0 Check-Out 2015-07-29
## 393 0 Check-Out 2015-07-29
## 394 0 Check-Out 2015-07-29
## 395 0 Check-Out 2015-07-29
## 396 0 Check-Out 2015-07-29
## 397 0 Check-Out 2015-07-29
## 398 0 Check-Out 2015-07-29
## 399 1 Check-Out 2015-07-29
## 400 0 Check-Out 2015-07-29
## 401 0 Canceled 2015-07-22
## 402 0 Canceled 2015-07-22
## 403 0 Check-Out 2015-07-29
## 404 0 Canceled 2015-07-22
## 405 0 Check-Out 2015-07-29
## 406 0 Canceled 2015-07-22
## 407 0 Canceled 2015-07-22
## 408 1 Check-Out 2015-07-29
## 409 0 Check-Out 2015-07-29
## 410 0 Canceled 2015-07-22
## 411 0 Canceled 2015-07-22
## 412 0 Canceled 2015-07-22
## 413 0 Canceled 2015-04-16
## 414 0 Check-Out 2015-07-27
## 415 1 Canceled 2015-05-07
## 416 0 Check-Out 2015-07-31
## 417 0 Canceled 2015-06-29
## 418 0 Canceled 2015-07-02
## 419 0 Check-Out 2015-07-29
## 420 0 Canceled 2015-07-22
## 421 0 Canceled 2015-07-22
## 422 0 Check-Out 2015-07-29
## 423 0 Canceled 2015-07-02
## 424 0 Canceled 2015-07-02
## 425 0 Check-Out 2015-07-29
## 426 0 Canceled 2015-07-22
## 427 0 Canceled 2015-07-22
## 428 0 Canceled 2015-07-02
## 429 0 Canceled 2015-07-02
## 430 0 Canceled 2015-07-22
## 431 0 Check-Out 2015-07-29
## 432 0 Check-Out 2015-07-29
## 433 0 Check-Out 2015-07-29
## 434 0 Check-Out 2015-07-29
## 435 0 Check-Out 2015-07-29
## 436 0 Canceled 2015-07-02
## 437 0 Canceled 2015-07-02
## 438 0 Canceled 2015-07-06
## 439 0 Check-Out 2015-07-29
## 440 0 Check-Out 2015-07-29
## 441 0 Check-Out 2015-07-29
## 442 0 Check-Out 2015-07-29
## 443 0 Check-Out 2015-07-29
## 444 0 Canceled 2015-07-02
## 445 0 Canceled 2015-07-02
## 446 0 Canceled 2015-07-02
## 447 0 Canceled 2015-07-02
## 448 0 Canceled 2015-07-22
## 449 0 Canceled 2015-07-02
## 450 0 Canceled 2015-07-02
## 451 0 Canceled 2015-07-02
## 452 0 Canceled 2015-07-22
## 453 0 Check-Out 2015-07-29
## 454 0 Check-Out 2015-07-29
## 455 0 Check-Out 2015-07-29
## 456 0 Canceled 2015-07-22
## 457 0 Canceled 2015-07-02
## 458 0 Check-Out 2015-07-29
## 459 0 Check-Out 2015-07-29
## 460 0 Check-Out 2015-07-29
## 461 0 Canceled 2015-07-02
## 462 0 Canceled 2015-07-02
## 463 0 Canceled 2015-07-22
## 464 0 Canceled 2015-07-22
## 465 0 Canceled 2015-07-02
## 466 1 Check-Out 2015-07-30
## 467 0 Check-Out 2015-07-30
## 468 0 Check-Out 2015-07-30
## 469 1 Check-Out 2015-07-30
## 470 1 Canceled 2015-06-12
## 471 2 Check-Out 2015-07-30
## 472 0 Check-Out 2015-08-06
## 473 0 Check-Out 2015-08-06
## 474 0 Check-Out 2015-07-28
## 475 0 Check-Out 2015-07-28
## 476 0 Check-Out 2015-07-30
## 477 0 Check-Out 2015-07-30
## 478 0 Check-Out 2015-07-31
## 479 0 Check-Out 2015-07-31
## 480 1 Check-Out 2015-08-04
## 481 1 Check-Out 2015-08-04
## 482 0 Check-Out 2015-07-30
## 483 2 Check-Out 2015-07-30
## 484 1 Check-Out 2015-08-01
## 485 0 Check-Out 2015-08-01
## 486 1 Check-Out 2015-08-01
## 487 2 Canceled 2015-06-03
## 488 1 Check-Out 2015-08-05
## 489 0 Check-Out 2015-08-05
## 490 0 Check-Out 2015-07-30
## 491 1 Check-Out 2015-08-02
## 492 0 Canceled 2015-05-05
## 493 1 Canceled 2015-07-11
## 494 1 Check-Out 2015-08-02
## 495 0 Check-Out 2015-08-04
## 496 0 Check-Out 2015-08-05
## 497 1 Check-Out 2015-08-09
## 498 0 Check-Out 2015-08-09
## 499 0 Check-Out 2015-08-09
## 500 0 No-Show 2015-07-31
## 501 0 Check-Out 2015-08-02
## 502 0 Check-Out 2015-08-04
## 503 0 Check-Out 2015-08-04
## 504 0 Canceled 2015-07-28
## 505 0 Canceled 2015-07-28
## 506 1 Canceled 2015-07-07
## 507 0 Check-Out 2015-08-04
## 508 0 Check-Out 2015-08-04
## 509 0 Canceled 2015-07-28
## 510 0 Canceled 2015-07-28
## 511 0 Canceled 2015-07-28
## 512 1 Canceled 2015-07-07
## 513 0 Check-Out 2015-08-04
## 514 0 Canceled 2015-07-28
## 515 0 Canceled 2015-07-30
## 516 0 Canceled 2015-07-30
## 517 0 Check-Out 2015-08-04
## 518 0 Canceled 2015-07-28
## 519 0 Check-Out 2015-08-04
## 520 0 Canceled 2015-07-28
## 521 0 Canceled 2015-07-30
## 522 0 Check-Out 2015-08-04
## 523 0 Canceled 2015-07-28
## 524 0 Canceled 2015-07-28
## 525 1 Check-Out 2015-08-04
## 526 0 Check-Out 2015-08-04
## 527 0 Canceled 2015-07-28
## 528 0 Canceled 2015-07-28
## 529 0 Canceled 2015-07-30
## 530 0 Check-Out 2015-08-04
## 531 0 Check-Out 2015-08-04
## 532 0 Check-Out 2015-08-04
## 533 3 Check-Out 2015-08-06
## 534 0 Check-Out 2015-08-07
## 535 0 Check-Out 2015-08-03
## 536 1 Check-Out 2015-08-05
## 537 0 Check-Out 2015-08-04
## 538 1 Check-Out 2015-08-04
## 539 0 Check-Out 2015-08-04
## 540 1 Check-Out 2015-08-04
## 541 1 Canceled 2015-08-01
## 542 0 Canceled 2015-06-15
## 543 1 Check-Out 2015-08-06
## 544 2 Check-Out 2015-08-06
## 545 0 Canceled 2015-06-15
## 546 0 Canceled 2015-07-31
## 547 0 Canceled 2015-07-31
## 548 0 Canceled 2015-07-31
## 549 0 Check-Out 2015-08-07
## 550 0 Canceled 2015-07-31
## 551 0 Check-Out 2015-08-07
## 552 0 Canceled 2015-07-31
## 553 0 Check-Out 2015-08-07
## 554 0 Canceled 2015-07-31
## 555 0 Canceled 2015-07-31
## 556 0 Canceled 2015-07-31
## 557 0 Check-Out 2015-08-07
## 558 0 Canceled 2015-07-31
## 559 0 Canceled 2015-07-31
## 560 0 Canceled 2015-07-31
## 561 0 Check-Out 2015-08-07
## 562 0 Check-Out 2015-08-07
## 563 0 Canceled 2015-07-31
## 564 0 Check-Out 2015-08-07
## 565 0 Canceled 2015-07-31
## 566 0 Canceled 2015-07-31
## 567 0 Canceled 2015-07-31
## 568 0 Check-Out 2015-08-07
## 569 0 Check-Out 2015-08-07
## 570 0 Canceled 2015-07-31
## 571 0 Check-Out 2015-08-07
## 572 0 Check-Out 2015-08-07
## 573 0 Canceled 2015-07-31
## 574 0 Check-Out 2015-08-07
## 575 0 Canceled 2015-07-31
## 576 0 Check-Out 2015-08-08
## 577 1 Canceled 2015-05-18
## 578 0 Canceled 2015-05-21
## 579 0 Check-Out 2015-08-07
## 580 0 Check-Out 2015-08-07
## 581 1 Check-Out 2015-08-06
## 582 0 Check-Out 2015-08-06
## 583 1 Check-Out 2015-08-06
## 584 0 Canceled 2015-08-04
## 585 0 Canceled 2015-08-04
## 586 0 Check-Out 2015-08-05
## 587 0 Canceled 2015-08-03
## 588 2 Check-Out 2015-08-10
## 589 0 Check-Out 2015-08-07
## 590 0 Canceled 2015-07-29
## 591 0 Check-Out 2015-08-07
## 592 0 Check-Out 2015-08-07
## 593 0 Canceled 2015-07-29
## 594 0 Check-Out 2015-08-06
## 595 0 Check-Out 2015-08-06
## 596 1 Check-Out 2015-08-06
## 597 1 Check-Out 2015-08-06
## 598 0 Check-Out 2015-08-06
## 599 0 Canceled 2015-08-04
## 600 0 Canceled 2015-08-04
## 601 0 Check-Out 2015-08-06
## 602 0 Check-Out 2015-08-07
## 603 0 Canceled 2015-07-29
## 604 0 Canceled 2015-07-29
## 605 0 Canceled 2015-07-29
## 606 0 Canceled 2015-07-29
## 607 1 Check-Out 2015-08-07
## 608 1 Canceled 2015-08-04
## 609 0 Check-Out 2015-08-07
## 610 0 Check-Out 2015-08-07
## 611 0 Canceled 2015-07-29
## 612 0 Check-Out 2015-08-07
## 613 0 Check-Out 2015-08-07
## 614 0 Canceled 2015-07-29
## 615 0 Canceled 2015-07-29
## 616 0 Check-Out 2015-08-07
## 617 0 Check-Out 2015-08-07
## 618 0 Canceled 2015-07-29
## 619 0 Canceled 2015-07-29
## 620 2 Canceled 2015-08-04
## 621 2 Check-Out 2015-08-07
## 622 1 Check-Out 2015-08-07
## 623 0 Canceled 2015-07-29
## 624 0 Canceled 2015-07-29
## 625 0 Canceled 2015-07-29
## 626 0 Canceled 2015-07-29
## 627 0 Check-Out 2015-08-07
## 628 0 Check-Out 2015-08-07
## 629 0 Check-Out 2015-08-07
## 630 0 Canceled 2015-07-29
## 631 0 Check-Out 2015-08-08
## 632 0 Check-Out 2015-08-08
## 633 0 Check-Out 2015-08-08
## 634 0 Check-Out 2015-08-08
## 635 3 Check-Out 2015-08-08
## 636 0 Check-Out 2015-08-08
## 637 0 Check-Out 2015-08-08
## 638 0 Canceled 2015-08-04
## 639 0 Check-Out 2015-08-08
## 640 0 Check-Out 2015-08-08
## 641 0 Check-Out 2015-08-08
## 642 0 Check-Out 2015-08-08
## 643 0 Check-Out 2015-08-08
## 644 0 Check-Out 2015-08-08
## 645 0 Check-Out 2015-08-08
## 646 0 Check-Out 2015-08-08
## 647 0 Check-Out 2015-08-08
## 648 0 Check-Out 2015-08-08
## 649 0 Check-Out 2015-08-08
## 650 0 Check-Out 2015-08-08
## 651 2 Check-Out 2015-08-08
## 652 0 Check-Out 2015-08-08
## 653 0 Check-Out 2015-08-08
## 654 0 Check-Out 2015-08-08
## 655 0 Check-Out 2015-08-08
## 656 0 Check-Out 2015-08-08
## 657 1 Check-Out 2015-08-08
## 658 0 Check-Out 2015-08-08
## 659 0 Check-Out 2015-08-08
## 660 2 Check-Out 2015-08-08
## 661 0 Check-Out 2015-08-08
## 662 0 Check-Out 2015-08-08
## 663 0 Check-Out 2015-08-08
## 664 0 Check-Out 2015-08-08
## 665 1 Check-Out 2015-08-08
## 666 0 Canceled 2015-08-04
## 667 0 Check-Out 2015-08-08
## 668 0 Check-Out 2015-08-08
## 669 1 Canceled 2015-07-16
## 670 1 Canceled 2015-07-16
## 671 1 Check-Out 2015-08-09
## 672 0 Check-Out 2015-08-10
## 673 1 Check-Out 2015-08-10
## 674 1 Check-Out 2015-08-10
## 675 0 Check-Out 2015-08-07
## 676 0 Check-Out 2015-08-07
## 677 0 Canceled 2015-07-29
## 678 0 Check-Out 2015-08-07
## 679 0 Check-Out 2015-08-11
## 680 0 Check-Out 2015-08-07
## 681 0 Check-Out 2015-08-07
## 682 0 Check-Out 2015-08-07
## 683 0 Check-Out 2015-08-07
## 684 2 Check-Out 2015-08-07
## 685 0 Check-Out 2015-08-07
## 686 1 Check-Out 2015-08-07
## 687 2 Check-Out 2015-08-07
## 688 0 Check-Out 2015-08-07
## 689 2 Check-Out 2015-08-07
## 690 0 Check-Out 2015-08-07
## 691 0 Check-Out 2015-08-08
## 692 1 Check-Out 2015-08-08
## 693 1 Check-Out 2015-08-08
## 694 1 Canceled 2015-07-06
## 695 2 Check-Out 2015-08-09
## 696 1 Check-Out 2015-08-09
## 697 1 Check-Out 2015-08-11
## 698 1 Check-Out 2015-08-11
## 699 0 Check-Out 2015-08-13
## 700 1 Check-Out 2015-08-08
## 701 1 Check-Out 2015-08-08
## 702 0 Canceled 2015-08-07
## 703 0 Check-Out 2015-08-08
## 704 2 Check-Out 2015-08-08
## 705 0 Check-Out 2015-08-09
## 706 0 Check-Out 2015-08-09
## 707 0 Canceled 2015-07-31
## 708 1 Check-Out 2015-08-08
## 709 2 Check-Out 2015-08-08
## 710 2 Check-Out 2015-08-08
## 711 0 Check-Out 2015-08-09
## 712 1 Check-Out 2015-08-09
## 713 1 Check-Out 2015-08-09
## 714 0 Check-Out 2015-08-09
## 715 0 Canceled 2015-07-31
## 716 0 Canceled 2015-07-31
## 717 1 Check-Out 2015-08-09
## 718 1 Check-Out 2015-08-09
## 719 0 Check-Out 2015-08-09
## 720 1 Check-Out 2015-08-09
## 721 0 Check-Out 2015-08-09
## 722 0 Check-Out 2015-08-09
## 723 0 Canceled 2015-07-31
## 724 0 Canceled 2015-07-31
## 725 0 Canceled 2015-07-31
## 726 1 Check-Out 2015-08-09
## 727 0 Check-Out 2015-08-09
## 728 0 Canceled 2015-07-31
## 729 0 Check-Out 2015-08-09
## 730 2 Check-Out 2015-08-09
## 731 1 Check-Out 2015-08-09
## 732 1 Check-Out 2015-08-09
## 733 0 Check-Out 2015-08-09
## 734 0 Canceled 2015-07-31
## 735 0 Check-Out 2015-08-09
## 736 0 Check-Out 2015-08-09
## 737 0 Check-Out 2015-08-09
## 738 0 Check-Out 2015-08-09
## 739 0 Check-Out 2015-08-09
## 740 1 Check-Out 2015-08-09
## 741 0 Check-Out 2015-08-09
## 742 0 Check-Out 2015-08-09
## 743 1 Check-Out 2015-08-09
## 744 0 Check-Out 2015-08-09
## 745 0 Check-Out 2015-08-09
## 746 0 Canceled 2015-07-31
## 747 3 Check-Out 2015-08-11
## 748 2 Check-Out 2015-08-11
## 749 0 Check-Out 2015-08-11
## 750 1 Canceled 2015-06-20
## 751 1 Canceled 2015-04-06
## 752 1 Check-Out 2015-08-12
## 753 0 Check-Out 2015-08-12
## 754 2 Check-Out 2015-08-13
## 755 1 Canceled 2015-07-25
## 756 2 Canceled 2015-07-25
## 757 2 Check-Out 2015-08-09
## 758 0 Check-Out 2015-08-09
## 759 0 Check-Out 2015-08-09
## 760 0 Check-Out 2015-08-09
## 761 1 Check-Out 2015-08-09
## 762 1 Check-Out 2015-08-09
## 763 2 Check-Out 2015-08-09
## 764 2 Check-Out 2015-08-10
## 765 0 Check-Out 2015-08-10
## 766 1 Check-Out 2015-08-10
## 767 2 Check-Out 2015-08-10
## 768 2 Check-Out 2015-08-10
## 769 0 Check-Out 2015-08-10
## 770 0 Canceled 2015-08-01
## 771 0 Check-Out 2015-08-11
## 772 0 Check-Out 2015-08-11
## 773 0 Canceled 2015-08-01
## 774 0 Check-Out 2015-08-11
## 775 0 Canceled 2015-08-01
## 776 0 Check-Out 2015-08-11
## 777 0 Check-Out 2015-08-11
## 778 0 Canceled 2015-08-01
## 779 1 Check-Out 2015-08-09
## 780 0 Canceled 2015-08-08
## 781 0 Check-Out 2015-08-10
## 782 1 Check-Out 2015-08-10
## 783 0 Check-Out 2015-08-10
## 784 0 Canceled 2015-08-01
## 785 0 Check-Out 2015-08-11
## 786 1 Check-Out 2015-08-11
## 787 0 Canceled 2015-08-01
## 788 0 Check-Out 2015-08-11
## 789 0 Check-Out 2015-08-11
## 790 0 Check-Out 2015-08-11
## 791 0 Check-Out 2015-08-11
## 792 0 Canceled 2015-08-01
## 793 0 Canceled 2015-08-01
## 794 0 Canceled 2015-08-01
## 795 0 Canceled 2015-08-01
## 796 0 Canceled 2015-08-01
## 797 0 Check-Out 2015-08-11
## 798 0 Canceled 2015-08-01
## 799 0 Canceled 2015-08-01
## 800 0 Check-Out 2015-08-11
## 801 0 Canceled 2015-08-01
## 802 0 Canceled 2015-08-01
## 803 0 Canceled 2015-08-01
## 804 0 Canceled 2015-08-01
## 805 0 Check-Out 2015-08-11
## 806 0 Canceled 2015-08-01
## 807 0 Canceled 2015-08-01
## 808 0 Check-Out 2015-08-11
## 809 0 Canceled 2015-08-01
## 810 0 Canceled 2015-08-01
## 811 0 Check-Out 2015-08-11
## 812 0 Check-Out 2015-08-11
## 813 0 Check-Out 2015-08-11
## 814 0 Canceled 2015-08-01
## 815 0 Canceled 2015-08-01
## 816 0 Check-Out 2015-08-12
## 817 0 Check-Out 2015-08-12
## 818 0 Canceled 2015-08-06
## 819 0 Check-Out 2015-08-12
## 820 0 Check-Out 2015-08-12
## 821 0 Check-Out 2015-08-12
## 822 0 Check-Out 2015-08-12
## 823 0 Check-Out 2015-08-12
## 824 1 Check-Out 2015-08-12
## 825 0 Canceled 2015-08-06
## 826 0 Check-Out 2015-08-12
## 827 0 Check-Out 2015-08-12
## 828 0 Canceled 2015-08-06
## 829 0 Check-Out 2015-08-12
## 830 0 Check-Out 2015-08-12
## 831 0 Check-Out 2015-08-12
## 832 1 Check-Out 2015-08-12
## 833 2 Check-Out 2015-08-12
## 834 0 Check-Out 2015-08-12
## 835 0 Check-Out 2015-08-12
## 836 0 Check-Out 2015-08-12
## 837 0 Check-Out 2015-08-12
## 838 0 Check-Out 2015-08-12
## 839 0 Check-Out 2015-08-12
## 840 0 Check-Out 2015-08-12
## 841 0 Check-Out 2015-08-12
## 842 0 Check-Out 2015-08-12
## 843 0 Canceled 2015-08-06
## 844 0 Check-Out 2015-08-12
## 845 0 Check-Out 2015-08-12
## 846 0 Check-Out 2015-08-12
## 847 0 Check-Out 2015-08-12
## 848 0 Canceled 2015-08-06
## 849 0 Check-Out 2015-08-13
## 850 0 Check-Out 2015-08-13
## 851 0 Check-Out 2015-08-14
## 852 2 Check-Out 2015-08-15
## 853 1 Check-Out 2015-08-14
## 854 1 Check-Out 2015-08-14
## 855 1 No-Show 2015-08-09
## 856 1 Check-Out 2015-08-15
## 857 1 Check-Out 2015-08-17
## 858 2 Check-Out 2015-08-10
## 859 2 Check-Out 2015-08-10
## 860 0 Check-Out 2015-08-10
## 861 0 Check-Out 2015-08-10
## 862 2 Check-Out 2015-08-10
## 863 0 Check-Out 2015-08-11
## 864 2 Check-Out 2015-08-11
## 865 2 Check-Out 2015-08-11
## 866 1 Check-Out 2015-08-11
## 867 0 Check-Out 2015-08-11
## 868 0 Check-Out 2015-08-11
## 869 0 Check-Out 2015-08-11
## 870 2 Check-Out 2015-08-11
## 871 0 Check-Out 2015-08-11
## 872 1 Canceled 2015-06-15
## 873 1 Check-Out 2015-08-12
## 874 2 Check-Out 2015-08-12
## 875 2 Check-Out 2015-08-12
## 876 2 Check-Out 2015-08-12
## 877 2 Check-Out 2015-08-12
## 878 1 Check-Out 2015-08-13
## 879 1 Check-Out 2015-08-11
## 880 0 Check-Out 2015-08-11
## 881 0 Check-Out 2015-08-11
## 882 0 Check-Out 2015-08-11
## 883 1 Check-Out 2015-08-12
## 884 1 Check-Out 2015-08-12
## 885 0 Canceled 2015-08-04
## 886 0 Canceled 2015-08-04
## 887 0 Check-Out 2015-08-12
## 888 1 Check-Out 2015-08-12
## 889 0 Check-Out 2015-08-12
## 890 0 Check-Out 2015-08-12
## 891 0 Check-Out 2015-08-12
## 892 0 Check-Out 2015-08-11
## 893 0 Check-Out 2015-08-11
## 894 2 Check-Out 2015-08-11
## 895 2 Check-Out 2015-08-12
## 896 0 Check-Out 2015-08-12
## 897 0 Check-Out 2015-08-12
## 898 0 Check-Out 2015-08-12
## 899 1 Check-Out 2015-08-12
## 900 1 Canceled 2015-08-10
## 901 0 Check-Out 2015-08-12
## 902 0 Check-Out 2015-08-12
## 903 1 Check-Out 2015-08-12
## 904 1 Check-Out 2015-08-12
## 905 1 Check-Out 2015-08-12
## 906 0 Canceled 2015-08-04
## 907 1 Check-Out 2015-08-12
## 908 0 Check-Out 2015-08-12
## 909 0 Canceled 2015-08-04
## 910 0 Check-Out 2015-08-12
## 911 1 Check-Out 2015-08-12
## 912 0 Canceled 2015-08-04
## 913 1 Check-Out 2015-08-12
## 914 0 Canceled 2015-08-10
## 915 0 Check-Out 2015-08-12
## 916 0 Check-Out 2015-08-12
## 917 1 Check-Out 2015-08-12
## 918 0 Check-Out 2015-08-12
## 919 1 Check-Out 2015-08-12
## 920 1 Check-Out 2015-08-12
## 921 0 Canceled 2015-08-04
## 922 0 Canceled 2015-08-04
## 923 0 Check-Out 2015-08-12
## 924 0 Canceled 2015-08-09
## 925 0 Check-Out 2015-08-12
## 926 0 Check-Out 2015-08-12
## 927 1 Check-Out 2015-08-12
## 928 1 Check-Out 2015-08-12
## 929 0 Check-Out 2015-08-12
## 930 0 Check-Out 2015-08-13
## 931 0 Canceled 2015-05-05
## 932 1 Check-Out 2015-08-13
## 933 1 Check-Out 2015-08-13
## 934 0 Check-Out 2015-08-13
## 935 0 Check-Out 2015-08-14
## 936 1 Check-Out 2015-08-14
## 937 1 Check-Out 2015-08-14
## 938 0 Check-Out 2015-08-14
## 939 1 Check-Out 2015-08-14
## 940 0 Check-Out 2015-08-14
## 941 0 Check-Out 2015-08-14
## 942 1 Check-Out 2015-08-14
## 943 0 Check-Out 2015-08-14
## 944 0 Check-Out 2015-08-14
## 945 0 Check-Out 2015-08-14
## 946 0 Check-Out 2015-08-14
## 947 2 Check-Out 2015-08-15
## 948 0 Canceled 2015-08-06
## 949 2 Canceled 2015-08-10
## 950 1 Check-Out 2015-08-16
## 951 0 No-Show 2015-08-10
## 952 2 Check-Out 2015-08-16
## 953 1 Check-Out 2015-08-16
## 954 1 Check-Out 2015-08-16
## 955 0 Check-Out 2015-08-12
## 956 0 Check-Out 2015-08-12
## 957 1 Check-Out 2015-08-12
## 958 1 Check-Out 2015-08-17
## 959 0 Check-Out 2015-08-17
## 960 2 Check-Out 2015-08-19
## 961 0 Check-Out 2015-09-08
## 962 0 Check-Out 2015-08-11
## 963 0 Check-Out 2015-08-12
## 964 1 Check-Out 2015-08-12
## 965 2 Check-Out 2015-08-12
## 966 0 Check-Out 2015-08-12
## 967 0 Check-Out 2015-08-12
## 968 0 Check-Out 2015-08-12
## 969 0 Check-Out 2015-08-12
## 970 1 Check-Out 2015-08-12
## 971 0 Check-Out 2015-08-12
## 972 0 Canceled 2015-08-11
## 973 0 Check-Out 2015-08-13
## 974 0 Canceled 2015-07-09
## 975 2 Check-Out 2015-08-13
## 976 0 Check-Out 2015-08-13
## 977 1 Check-Out 2015-08-13
## 978 0 Check-Out 2015-08-13
## 979 0 Check-Out 2015-08-13
## 980 0 Check-Out 2015-08-13
## 981 2 Check-Out 2015-08-13
## 982 0 Check-Out 2015-08-13
## 983 0 Check-Out 2015-08-13
## 984 1 Check-Out 2015-08-13
## 985 0 Canceled 2015-07-09
## 986 0 Check-Out 2015-08-13
## 987 0 Check-Out 2015-08-14
## 988 0 Canceled 2015-08-10
## 989 2 Check-Out 2015-08-14
## 990 3 Check-Out 2015-08-14
## 991 3 Check-Out 2015-08-14
## 992 0 Canceled 2015-08-10
## 993 0 Check-Out 2015-08-14
## 994 2 Check-Out 2015-08-14
## 995 1 Check-Out 2015-08-15
## 996 0 Check-Out 2015-08-15
## 997 1 Check-Out 2015-08-15
## 998 0 Check-Out 2015-08-12
## 999 0 Check-Out 2015-08-12
## 1000 0 Check-Out 2015-08-13
## 1001 0 Check-Out 2015-08-13
## 1002 2 Check-Out 2015-08-16
## 1003 2 Check-Out 2015-08-16
## 1004 0 Canceled 2015-05-29
## 1005 1 Check-Out 2015-08-15
## 1006 0 Check-Out 2015-08-24
## 1007 2 Check-Out 2015-08-30
## 1008 0 Check-Out 2015-08-12
## 1009 1 Check-Out 2015-08-12
## 1010 0 Check-Out 2015-08-12
## 1011 0 Check-Out 2015-08-12
## 1012 0 Check-Out 2015-08-12
## 1013 1 Check-Out 2015-08-12
## 1014 0 Check-Out 2015-08-12
## 1015 0 Check-Out 2015-08-12
## 1016 0 Check-Out 2015-08-12
## 1017 0 Check-Out 2015-08-13
## 1018 1 Check-Out 2015-08-13
## 1019 1 Check-Out 2015-08-13
## 1020 0 Check-Out 2015-08-13
## 1021 0 Check-Out 2015-08-13
## 1022 0 Check-Out 2015-08-13
## 1023 1 Check-Out 2015-08-13
## 1024 0 Check-Out 2015-08-13
## 1025 0 Check-Out 2015-08-13
## 1026 0 Check-Out 2015-08-13
## 1027 0 Check-Out 2015-08-14
## 1028 0 Check-Out 2015-08-13
## 1029 0 Canceled 2015-08-12
## 1030 1 Check-Out 2015-08-13
## 1031 0 Check-Out 2015-08-14
## 1032 0 Check-Out 2015-08-14
## 1033 1 Check-Out 2015-08-14
## 1034 0 Check-Out 2015-08-14
## 1035 0 Check-Out 2015-08-14
## 1036 1 Check-Out 2015-08-14
## 1037 0 Check-Out 2015-08-14
## 1038 0 Check-Out 2015-08-14
## 1039 0 Check-Out 2015-08-14
## 1040 0 Canceled 2015-08-07
## 1041 0 Check-Out 2015-08-14
## 1042 4 Check-Out 2015-08-14
## 1043 0 Check-Out 2015-08-14
## 1044 0 Check-Out 2015-08-14
## 1045 1 Check-Out 2015-08-14
## 1046 0 Check-Out 2015-08-14
## 1047 0 Check-Out 2015-08-14
## 1048 0 Check-Out 2015-08-14
## 1049 0 Check-Out 2015-08-14
## 1050 0 Check-Out 2015-08-14
## 1051 0 Check-Out 2015-08-14
## 1052 0 Check-Out 2015-08-14
## 1053 1 Check-Out 2015-08-14
## 1054 0 Check-Out 2015-08-14
## 1055 0 Check-Out 2015-08-14
## 1056 1 Canceled 2015-08-08
## 1057 0 Check-Out 2015-08-14
## 1058 0 Canceled 2015-08-07
## 1059 0 Canceled 2015-08-07
## 1060 3 Check-Out 2015-08-14
## 1061 0 Check-Out 2015-08-14
## 1062 0 Check-Out 2015-08-14
## 1063 0 Check-Out 2015-08-14
## 1064 0 Canceled 2015-08-07
## 1065 0 Check-Out 2015-08-15
## 1066 0 Check-Out 2015-08-15
## 1067 0 Check-Out 2015-08-15
## 1068 2 Check-Out 2015-08-15
## 1069 0 Canceled 2015-08-11
## 1070 1 Canceled 2015-08-06
## 1071 0 Check-Out 2015-08-17
## 1072 2 Check-Out 2015-08-18
## 1073 2 Check-Out 2015-08-21
## 1074 0 Check-Out 2015-08-24
## 1075 2 Check-Out 2015-08-16
## 1076 1 Check-Out 2015-08-16
## 1077 0 Check-Out 2015-08-14
## 1078 0 Check-Out 2015-08-14
## 1079 0 Check-Out 2015-08-15
## 1080 2 Check-Out 2015-08-13
## 1081 0 Check-Out 2015-08-14
## 1082 2 Check-Out 2015-08-14
## 1083 0 Check-Out 2015-08-15
## 1084 1 No-Show 2015-08-13
## 1085 0 Check-Out 2015-08-15
## 1086 0 Check-Out 2015-08-15
## 1087 1 Check-Out 2015-08-16
## 1088 2 Check-Out 2015-08-16
## 1089 2 Check-Out 2015-08-16
## 1090 2 Check-Out 2015-08-16
## 1091 2 Check-Out 2015-08-16
## 1092 1 Canceled 2015-08-08
## 1093 1 Check-Out 2015-08-16
## 1094 2 Check-Out 2015-08-16
## 1095 1 No-Show 2015-08-13
## 1096 1 Check-Out 2015-08-17
## 1097 0 Check-Out 2015-08-18
## 1098 0 Canceled 2015-08-11
## 1099 2 Check-Out 2015-08-19
## 1100 1 Check-Out 2015-08-20
## 1101 1 Canceled 2015-08-09
## 1102 1 Check-Out 2015-08-22
## 1103 0 Canceled 2015-06-15
## 1104 0 Canceled 2015-06-15
## 1105 0 Check-Out 2015-08-16
## 1106 0 Check-Out 2015-08-16
## 1107 0 Check-Out 2015-08-16
## 1108 0 Check-Out 2015-08-16
## 1109 0 Check-Out 2015-08-16
## 1110 0 Check-Out 2015-08-16
## 1111 0 Check-Out 2015-08-16
## 1112 0 Canceled 2015-07-06
## 1113 0 Canceled 2015-07-06
## 1114 0 Canceled 2015-07-06
## 1115 0 Canceled 2015-07-06
## 1116 0 Canceled 2015-07-06
## 1117 0 Canceled 2015-08-13
## 1118 0 Canceled 2015-08-14
## 1119 0 Canceled 2015-08-14
## 1120 0 Check-Out 2015-08-16
## 1121 0 Canceled 2015-08-10
## 1122 0 Check-Out 2015-08-16
## 1123 0 Check-Out 2015-08-16
## 1124 0 Canceled 2015-07-06
## 1125 0 Canceled 2015-07-06
## 1126 0 Canceled 2015-07-06
## 1127 0 Canceled 2015-06-15
## 1128 0 Check-Out 2015-08-16
## 1129 0 Check-Out 2015-08-16
## 1130 0 Check-Out 2015-08-16
## 1131 0 Check-Out 2015-08-16
## 1132 0 Check-Out 2015-08-16
## 1133 0 Check-Out 2015-08-16
## 1134 0 Canceled 2015-07-06
## 1135 0 Canceled 2015-07-06
## 1136 0 Canceled 2015-07-06
## 1137 0 Canceled 2015-07-06
## 1138 0 Canceled 2015-08-14
## 1139 0 Canceled 2015-08-14
## 1140 0 Canceled 2015-08-14
## 1141 0 Check-Out 2015-08-16
## 1142 0 Canceled 2015-07-06
## 1143 0 Canceled 2015-07-06
## 1144 0 Canceled 2015-07-06
## 1145 0 Canceled 2015-07-06
## 1146 0 Canceled 2015-08-14
## 1147 0 Canceled 2015-08-14
## 1148 0 Canceled 2015-08-14
## 1149 0 Canceled 2015-08-14
## 1150 0 Check-Out 2015-08-16
## 1151 0 Check-Out 2015-08-16
## 1152 0 Check-Out 2015-08-16
## 1153 0 Check-Out 2015-08-16
## 1154 0 Canceled 2015-07-06
## 1155 0 Canceled 2015-07-06
## 1156 0 Canceled 2015-07-06
## 1157 0 Check-Out 2015-08-16
## 1158 0 Canceled 2015-08-14
## 1159 0 Canceled 2015-08-14
## 1160 0 Check-Out 2015-08-16
## 1161 0 Check-Out 2015-08-16
## 1162 0 Check-Out 2015-08-16
## 1163 0 Check-Out 2015-08-16
## 1164 0 Check-Out 2015-08-16
## 1165 0 Check-Out 2015-08-16
## 1166 0 Check-Out 2015-08-16
## 1167 0 Canceled 2015-07-06
## 1168 0 Canceled 2015-07-06
## 1169 0 Canceled 2015-07-06
## 1170 0 Canceled 2015-07-06
## 1171 0 Canceled 2015-07-06
## 1172 0 Canceled 2015-07-06
## 1173 0 Canceled 2015-08-14
## 1174 0 Check-Out 2015-08-16
## 1175 0 Check-Out 2015-08-16
## 1176 0 Check-Out 2015-08-16
## 1177 0 Canceled 2015-07-06
## 1178 0 Canceled 2015-07-06
## 1179 0 Check-Out 2015-08-16
## 1180 0 Check-Out 2015-08-16
## 1181 0 Check-Out 2015-08-16
## 1182 0 Check-Out 2015-08-16
## 1183 0 Check-Out 2015-08-16
## 1184 0 Check-Out 2015-08-16
## 1185 0 Canceled 2015-07-06
## 1186 0 Canceled 2015-07-06
## 1187 0 Canceled 2015-07-06
## 1188 0 Canceled 2015-07-06
## 1189 0 Canceled 2015-07-06
## 1190 0 Canceled 2015-07-06
## 1191 0 Canceled 2015-07-06
## 1192 0 Check-Out 2015-08-16
## 1193 0 Check-Out 2015-08-16
## 1194 0 Check-Out 2015-08-16
## 1195 0 Check-Out 2015-08-16
## 1196 0 Check-Out 2015-08-16
## 1197 0 Check-Out 2015-08-16
## 1198 0 Canceled 2015-07-06
## 1199 0 Canceled 2015-07-06
## 1200 0 Canceled 2015-07-06
## 1201 0 Canceled 2015-07-06
## 1202 0 Canceled 2015-07-06
## 1203 0 Canceled 2015-08-14
## 1204 0 Canceled 2015-08-14
## 1205 0 Canceled 2015-08-14
## 1206 0 Check-Out 2015-08-16
## 1207 0 Check-Out 2015-08-16
## 1208 0 Check-Out 2015-08-16
## 1209 0 Check-Out 2015-08-16
## 1210 0 Check-Out 2015-08-16
## 1211 0 Canceled 2015-07-06
## 1212 0 Canceled 2015-07-06
## 1213 0 Canceled 2015-07-06
## 1214 0 Canceled 2015-07-06
## 1215 0 Canceled 2015-07-06
## 1216 0 Canceled 2015-07-06
## 1217 0 Canceled 2015-07-06
## 1218 0 Canceled 2015-08-14
## 1219 0 Canceled 2015-08-14
## 1220 0 Canceled 2015-08-14
## 1221 0 Canceled 2015-08-14
## 1222 0 Check-Out 2015-08-16
## 1223 0 Check-Out 2015-08-16
## 1224 0 Canceled 2015-07-06
## 1225 0 Canceled 2015-07-06
## 1226 0 Canceled 2015-07-06
## 1227 0 Canceled 2015-07-06
## 1228 0 Canceled 2015-08-14
## 1229 0 Canceled 2015-08-14
## 1230 0 Canceled 2015-08-14
## 1231 0 Canceled 2015-08-14
## 1232 0 Canceled 2015-08-14
## 1233 0 Check-Out 2015-08-16
## 1234 0 Canceled 2015-07-06
## 1235 0 Canceled 2015-07-06
## 1236 0 Canceled 2015-07-06
## 1237 0 Canceled 2015-07-06
## 1238 0 Canceled 2015-08-14
## 1239 0 Canceled 2015-08-14
## 1240 0 Check-Out 2015-08-16
## 1241 0 Check-Out 2015-08-16
## 1242 0 Check-Out 2015-08-16
## 1243 0 Check-Out 2015-08-16
## 1244 0 Check-Out 2015-08-16
## 1245 0 Canceled 2015-07-06
## 1246 0 Canceled 2015-07-06
## 1247 0 Check-Out 2015-08-16
## 1248 0 Check-Out 2015-08-16
## 1249 0 Canceled 2015-07-06
## 1250 0 Canceled 2015-07-06
## 1251 0 Canceled 2015-07-06
## 1252 0 Canceled 2015-08-14
## 1253 0 Canceled 2015-08-14
## 1254 0 Check-Out 2015-08-16
## 1255 0 Check-Out 2015-08-16
## 1256 0 Check-Out 2015-08-16
## 1257 0 Check-Out 2015-08-16
## 1258 0 Check-Out 2015-08-16
## 1259 0 Check-Out 2015-08-16
## 1260 0 Check-Out 2015-08-16
## 1261 0 Canceled 2015-07-06
## 1262 0 Canceled 2015-07-06
## 1263 0 Canceled 2015-07-06
## 1264 0 Canceled 2015-07-06
## 1265 0 Canceled 2015-07-06
## 1266 0 Check-Out 2015-08-16
## 1267 1 Check-Out 2015-08-16
## 1268 0 Check-Out 2015-08-16
## 1269 0 Check-Out 2015-08-16
## 1270 0 Check-Out 2015-08-16
## 1271 0 Canceled 2015-07-06
## 1272 0 Canceled 2015-07-06
## 1273 0 Canceled 2015-07-06
## 1274 0 Canceled 2015-07-06
## 1275 0 Canceled 2015-07-06
## 1276 0 Canceled 2015-07-06
## 1277 0 Canceled 2015-08-14
## 1278 0 Canceled 2015-08-14
## 1279 2 Canceled 2015-08-13
## 1280 2 Canceled 2015-08-13
## 1281 3 Check-Out 2015-08-17
## 1282 1 Check-Out 2015-08-17
## 1283 0 Check-Out 2015-08-17
## 1284 2 Canceled 2015-08-13
## 1285 0 Check-Out 2015-08-17
## 1286 1 Check-Out 2015-08-18
## 1287 1 Check-Out 2015-08-18
## 1288 1 Check-Out 2015-08-19
## 1289 1 Check-Out 2015-08-19
## 1290 0 Check-Out 2015-08-19
## 1291 1 Check-Out 2015-08-21
## 1292 1 Check-Out 2015-08-22
## 1293 1 Check-Out 2015-08-16
## 1294 0 Check-Out 2015-08-16
## 1295 1 Check-Out 2015-08-16
## 1296 1 Check-Out 2015-08-16
## 1297 2 Check-Out 2015-08-16
## 1298 1 Check-Out 2015-08-17
## 1299 0 Check-Out 2015-08-17
## 1300 1 Canceled 2015-08-10
## 1301 0 Check-Out 2015-08-19
## 1302 0 Check-Out 2015-08-19
## 1303 0 Check-Out 2015-08-19
## 1304 0 Check-Out 2015-08-19
## 1305 0 Canceled 2015-08-06
## 1306 0 Check-Out 2015-08-19
## 1307 0 Check-Out 2015-08-19
## 1308 0 Check-Out 2015-08-19
## 1309 0 Canceled 2015-08-06
## 1310 0 Canceled 2015-08-06
## 1311 0 Canceled 2015-08-14
## 1312 0 Check-Out 2015-08-19
## 1313 0 Check-Out 2015-08-19
## 1314 0 Check-Out 2015-08-19
## 1315 0 Check-Out 2015-08-19
## 1316 0 Canceled 2015-08-06
## 1317 1 Check-Out 2015-08-19
## 1318 0 Check-Out 2015-08-19
## 1319 0 Check-Out 2015-08-19
## 1320 0 Check-Out 2015-08-19
## 1321 0 Check-Out 2015-08-19
## 1322 0 Check-Out 2015-08-19
## 1323 0 Check-Out 2015-08-19
## 1324 0 Canceled 2015-08-06
## 1325 0 Canceled 2015-08-06
## 1326 0 Check-Out 2015-08-19
## 1327 0 Check-Out 2015-08-19
## 1328 0 Canceled 2015-08-06
## 1329 0 Canceled 2015-08-06
## 1330 1 Check-Out 2015-08-20
## 1331 0 Check-Out 2015-08-20
## 1332 2 Canceled 2015-06-23
## 1333 1 Canceled 2015-06-23
## 1334 0 Check-Out 2015-08-22
## 1335 1 Check-Out 2015-08-19
## 1336 0 Canceled 2015-08-06
## 1337 0 Canceled 2015-08-06
## 1338 0 Check-Out 2015-08-19
## 1339 0 Canceled 2015-08-06
## 1340 0 Check-Out 2015-08-18
## 1341 0 Check-Out 2015-08-18
## 1342 0 Canceled 2015-08-01
## 1343 0 Canceled 2015-08-01
## 1344 0 Check-Out 2015-08-18
## 1345 0 Canceled 2015-08-13
## 1346 0 Canceled 2015-08-01
## 1347 0 Canceled 2015-08-01
## 1348 0 Check-Out 2015-08-18
## 1349 0 Canceled 2015-08-01
## 1350 0 Canceled 2015-08-13
## 1351 0 Canceled 2015-08-01
## 1352 0 Check-Out 2015-08-18
## 1353 0 Check-Out 2015-08-18
## 1354 0 Check-Out 2015-08-18
## 1355 0 Check-Out 2015-08-18
## 1356 0 Canceled 2015-08-01
## 1357 0 Check-Out 2015-08-18
## 1358 0 Canceled 2015-08-01
## 1359 0 Canceled 2015-08-01
## 1360 0 Check-Out 2015-08-18
## 1361 1 Check-Out 2015-08-18
## 1362 1 Canceled 2015-08-13
## 1363 0 Check-Out 2015-08-18
## 1364 0 Check-Out 2015-08-18
## 1365 0 Canceled 2015-08-01
## 1366 0 Canceled 2015-08-01
## 1367 0 Canceled 2015-08-01
## 1368 0 Check-Out 2015-08-18
## 1369 0 Canceled 2015-08-01
## 1370 0 Canceled 2015-08-01
## 1371 0 Check-Out 2015-08-18
## 1372 0 Check-Out 2015-08-18
## 1373 0 Canceled 2015-08-13
## 1374 0 Check-Out 2015-08-18
## 1375 0 Check-Out 2015-08-18
## 1376 0 Check-Out 2015-08-18
## 1377 0 Canceled 2015-08-01
## 1378 0 Check-Out 2015-08-20
## 1379 1 Check-Out 2015-08-20
## 1380 0 Check-Out 2015-08-21
## 1381 2 Check-Out 2015-08-21
## 1382 1 Canceled 2015-08-12
## 1383 0 Canceled 2015-08-13
## 1384 0 Check-Out 2015-08-17
## 1385 0 Check-Out 2015-08-17
## 1386 1 Check-Out 2015-08-18
## 1387 1 Check-Out 2015-08-18
## 1388 0 Check-Out 2015-08-19
## 1389 0 Check-Out 2015-08-19
## 1390 0 Check-Out 2015-08-19
## 1391 2 Check-Out 2015-08-19
## 1392 0 Check-Out 2015-08-19
## 1393 2 Check-Out 2015-08-19
## 1394 1 Canceled 2015-08-12
## 1395 2 Check-Out 2015-08-19
## 1396 2 Check-Out 2015-08-19
## 1397 2 Check-Out 2015-08-19
## 1398 1 Check-Out 2015-08-19
## 1399 0 Check-Out 2015-08-20
## 1400 0 Canceled 2015-06-15
## 1401 2 Check-Out 2015-08-24
## 1402 0 Check-Out 2015-08-18
## 1403 0 Check-Out 2015-08-18
## 1404 0 Check-Out 2015-08-18
## 1405 0 Check-Out 2015-08-18
## 1406 0 Check-Out 2015-08-18
## 1407 0 Canceled 2015-08-17
## 1408 0 Check-Out 2015-08-18
## 1409 0 Check-Out 2015-08-19
## 1410 0 Check-Out 2015-08-19
## 1411 0 Check-Out 2015-08-19
## 1412 0 Check-Out 2015-08-19
## 1413 0 Check-Out 2015-08-19
## 1414 0 Check-Out 2015-08-19
## 1415 0 Canceled 2015-08-12
## 1416 1 Check-Out 2015-08-19
## 1417 1 Check-Out 2015-08-19
## 1418 0 Check-Out 2015-08-19
## 1419 2 Check-Out 2015-08-19
## 1420 1 Check-Out 2015-08-19
## 1421 0 Check-Out 2015-08-19
## 1422 0 Check-Out 2015-08-19
## 1423 0 Check-Out 2015-08-19
## 1424 0 Check-Out 2015-08-19
## 1425 0 Check-Out 2015-08-19
## 1426 3 Check-Out 2015-08-19
## 1427 0 Check-Out 2015-08-19
## 1428 1 Check-Out 2015-08-19
## 1429 0 Check-Out 2015-08-19
## 1430 0 Check-Out 2015-08-19
## 1431 3 Check-Out 2015-08-19
## 1432 1 Check-Out 2015-08-19
## 1433 0 Check-Out 2015-08-19
## 1434 1 Check-Out 2015-08-19
## 1435 0 Check-Out 2015-08-19
## 1436 0 Check-Out 2015-08-20
## 1437 1 Check-Out 2015-08-20
## 1438 2 Check-Out 2015-08-20
## 1439 0 Check-Out 2015-08-20
## 1440 2 Canceled 2015-08-17
## 1441 1 Check-Out 2015-08-20
## 1442 1 Canceled 2015-08-10
## 1443 1 Check-Out 2015-08-20
## 1444 0 Canceled 2015-08-17
## 1445 2 Canceled 2015-08-17
## 1446 0 Canceled 2015-08-17
## 1447 2 Check-Out 2015-08-21
## 1448 0 Check-Out 2015-08-21
## 1449 1 Check-Out 2015-08-21
## 1450 0 Canceled 2015-08-17
## 1451 3 Check-Out 2015-08-21
## 1452 3 Check-Out 2015-08-21
## 1453 2 Check-Out 2015-08-21
## 1454 3 Check-Out 2015-08-21
## 1455 0 Canceled 2015-08-17
## 1456 1 Canceled 2015-08-13
## 1457 0 Check-Out 2015-08-22
## 1458 0 Canceled 2015-08-17
## 1459 2 Canceled 2015-08-08
## 1460 1 Check-Out 2015-08-23
## 1461 0 Canceled 2015-08-17
## 1462 2 Canceled 2015-08-15
## 1463 2 Check-Out 2015-08-23
## 1464 1 Check-Out 2015-08-23
## 1465 0 Canceled 2015-08-17
## 1466 0 Check-Out 2015-08-24
## 1467 0 Check-Out 2015-08-24
## 1468 0 Canceled 2015-08-17
## 1469 0 Check-Out 2015-08-19
## 1470 1 Check-Out 2015-08-19
## 1471 0 Check-Out 2015-08-19
## 1472 0 Check-Out 2015-08-19
## 1473 0 Check-Out 2015-08-19
## 1474 0 Check-Out 2015-08-19
## 1475 0 Check-Out 2015-08-19
## 1476 0 Canceled 2015-08-12
## 1477 0 Check-Out 2015-08-19
## 1478 2 Check-Out 2015-08-30
## 1479 0 No-Show 2015-08-18
## 1480 0 Check-Out 2015-08-19
## 1481 0 No-Show 2015-08-18
## 1482 0 Check-Out 2015-08-19
## 1483 0 Check-Out 2015-08-19
## 1484 0 Check-Out 2015-08-19
## 1485 0 No-Show 2015-08-18
## 1486 0 No-Show 2015-08-18
## 1487 0 Check-Out 2015-08-19
## 1488 0 Check-Out 2015-08-19
## 1489 0 Check-Out 2015-08-19
## 1490 0 No-Show 2015-08-18
## 1491 0 Check-Out 2015-08-19
## 1492 0 Check-Out 2015-08-19
## 1493 0 Canceled 2015-08-14
## 1494 0 No-Show 2015-08-18
## 1495 1 Check-Out 2015-08-20
## 1496 1 Check-Out 2015-08-20
## 1497 2 Check-Out 2015-08-20
## 1498 0 Canceled 2015-08-13
## 1499 0 Canceled 2015-08-13
## 1500 0 Canceled 2015-08-13
## 1501 2 Check-Out 2015-08-20
## 1502 1 Check-Out 2015-08-20
## 1503 0 Check-Out 2015-08-21
## 1504 0 Check-Out 2015-08-22
## 1505 2 Check-Out 2015-08-22
## 1506 0 Check-Out 2015-08-22
## 1507 1 Check-Out 2015-08-22
## 1508 0 Canceled 2015-08-18
## 1509 1 Check-Out 2015-08-22
## 1510 1 Check-Out 2015-08-23
## 1511 1 Check-Out 2015-08-23
## 1512 2 Check-Out 2015-08-23
## 1513 0 Check-Out 2015-08-24
## 1514 1 Check-Out 2015-08-24
## 1515 0 Check-Out 2015-08-30
## 1516 2 No-Show 2015-08-18
## 1517 2 Canceled 2015-08-13
## 1518 2 Check-Out 2015-08-20
## 1519 0 Canceled 2015-08-13
## 1520 1 Check-Out 2015-08-20
## 1521 2 Canceled 2015-08-13
## 1522 0 Check-Out 2015-08-20
## 1523 0 Check-Out 2015-08-21
## 1524 0 Check-Out 2015-08-21
## 1525 2 Check-Out 2015-08-21
## 1526 2 Check-Out 2015-08-21
## 1527 0 Canceled 2015-08-01
## 1528 2 Check-Out 2015-08-21
## 1529 2 Check-Out 2015-08-21
## 1530 2 Check-Out 2015-08-21
## 1531 0 Check-Out 2015-08-20
## 1532 0 Canceled 2015-08-13
## 1533 2 Check-Out 2015-08-20
## 1534 0 Check-Out 2015-08-22
## 1535 2 Check-Out 2015-08-22
## 1536 1 Check-Out 2015-08-22
## 1537 0 Check-Out 2015-08-22
## 1538 0 Canceled 2015-05-05
## 1539 2 Check-Out 2015-08-23
## 1540 1 Check-Out 2015-08-23
## 1541 0 Check-Out 2015-08-24
## 1542 0 Check-Out 2015-08-24
## 1543 1 Check-Out 2015-08-24
## 1544 0 Check-Out 2015-08-24
## 1545 0 Check-Out 2015-08-20
## 1546 2 Check-Out 2015-08-21
## 1547 0 Check-Out 2015-08-21
## 1548 3 Check-Out 2015-08-21
## 1549 1 Check-Out 2015-08-21
## 1550 1 Check-Out 2015-08-21
## 1551 0 Check-Out 2015-08-21
## 1552 0 Check-Out 2015-08-21
## 1553 1 Check-Out 2015-08-21
## 1554 1 Check-Out 2015-08-21
## 1555 2 Check-Out 2015-08-25
## 1556 2 Check-Out 2015-08-26
## 1557 0 Check-Out 2015-08-26
## 1558 0 Check-Out 2015-08-26
## 1559 2 Check-Out 2015-08-31
## 1560 1 Check-Out 2015-09-01
## 1561 0 Check-Out 2015-08-20
## 1562 1 Check-Out 2015-08-20
## 1563 2 Check-Out 2015-08-20
## 1564 2 Check-Out 2015-08-20
## 1565 2 Check-Out 2015-08-20
## 1566 0 Check-Out 2015-08-20
## 1567 2 Check-Out 2015-08-21
## 1568 1 Check-Out 2015-08-21
## 1569 1 Check-Out 2015-08-21
## 1570 2 Check-Out 2015-08-21
## 1571 0 Check-Out 2015-08-21
## 1572 0 No-Show 2015-08-20
## 1573 1 Check-Out 2015-08-21
## 1574 3 Check-Out 2015-08-21
## 1575 0 Check-Out 2015-08-21
## 1576 0 Check-Out 2015-08-21
## 1577 1 Check-Out 2015-08-21
## 1578 2 Check-Out 2015-08-22
## 1579 1 Canceled 2015-08-17
## 1580 3 Check-Out 2015-08-22
## 1581 0 Check-Out 2015-08-22
## 1582 3 Canceled 2015-08-19
## 1583 3 Canceled 2015-08-19
## 1584 2 Check-Out 2015-08-22
## 1585 0 Check-Out 2015-08-23
## 1586 2 Check-Out 2015-08-23
## 1587 1 Canceled 2015-08-17
## 1588 2 Check-Out 2015-08-23
## 1589 0 Check-Out 2015-08-23
## 1590 1 Canceled 2015-08-14
## 1591 2 Check-Out 2015-08-24
## 1592 1 Check-Out 2015-08-24
## 1593 1 Check-Out 2015-08-26
## 1594 2 Check-Out 2015-08-27
## 1595 4 Check-Out 2015-08-27
## 1596 0 Check-Out 2015-08-27
## 1597 0 Check-Out 2015-08-31
## 1598 3 Check-Out 2015-08-22
## 1599 1 Check-Out 2015-08-22
## 1600 0 Check-Out 2015-08-22
## 1601 0 Check-Out 2015-08-22
## 1602 0 Check-Out 2015-08-22
## 1603 2 Check-Out 2015-08-22
## 1604 2 Check-Out 2015-08-23
## 1605 0 Check-Out 2015-08-23
## 1606 1 Check-Out 2015-08-23
## 1607 3 Check-Out 2015-08-23
## 1608 1 Check-Out 2015-08-23
## 1609 2 Check-Out 2015-08-23
## 1610 1 Check-Out 2015-08-23
## 1611 1 Canceled 2015-06-30
## 1612 2 Canceled 2015-08-17
## 1613 2 Check-Out 2015-08-24
## 1614 0 Canceled 2015-08-21
## 1615 0 Check-Out 2015-08-24
## 1616 0 Canceled 2015-08-21
## 1617 1 Check-Out 2015-08-24
## 1618 0 Check-Out 2015-08-24
## 1619 1 Check-Out 2015-08-24
## 1620 2 Check-Out 2015-08-24
## 1621 0 Canceled 2015-08-21
## 1622 3 Check-Out 2015-08-24
## 1623 0 Canceled 2015-08-21
## 1624 2 Check-Out 2015-08-24
## 1625 0 Check-Out 2015-08-25
## 1626 0 Check-Out 2015-08-25
## 1627 0 Check-Out 2015-08-25
## 1628 2 Check-Out 2015-08-25
## 1629 0 Check-Out 2015-08-25
## 1630 2 Check-Out 2015-08-26
## 1631 2 Check-Out 2015-08-26
## 1632 1 Check-Out 2015-08-27
## 1633 0 Canceled 2015-06-30
## 1634 0 Check-Out 2015-08-28
## 1635 3 Check-Out 2015-09-05
## 1636 0 Check-Out 2015-08-26
## 1637 0 Check-Out 2015-08-25
## 1638 0 Canceled 2015-08-06
## 1639 1 Check-Out 2015-08-25
## 1640 0 Canceled 2015-08-05
## 1641 0 Canceled 2015-08-05
## 1642 0 Check-Out 2015-08-25
## 1643 0 Canceled 2015-08-06
## 1644 1 Check-Out 2015-08-25
## 1645 0 Check-Out 2015-08-25
## 1646 0 Check-Out 2015-08-25
## 1647 0 Canceled 2015-08-06
## 1648 0 Canceled 2015-08-06
## 1649 1 Check-Out 2015-08-23
## 1650 0 Canceled 2015-05-04
## 1651 1 Check-Out 2015-08-23
## 1652 1 Check-Out 2015-08-23
## 1653 0 Check-Out 2015-08-23
## 1654 1 Check-Out 2015-08-23
## 1655 2 Check-Out 2015-08-23
## 1656 1 Canceled 2015-06-01
## 1657 1 Check-Out 2015-08-23
## 1658 2 Canceled 2015-06-01
## 1659 0 Canceled 2015-08-20
## 1660 1 Check-Out 2015-08-24
## 1661 0 Check-Out 2015-08-24
## 1662 2 Canceled 2015-08-21
## 1663 0 Check-Out 2015-08-25
## 1664 0 Canceled 2015-08-06
## 1665 0 Canceled 2015-08-06
## 1666 0 Check-Out 2015-08-25
## 1667 0 Canceled 2015-08-06
## 1668 0 Canceled 2015-08-05
## 1669 0 Check-Out 2015-08-25
## 1670 0 Check-Out 2015-08-25
## 1671 0 Check-Out 2015-08-25
## 1672 0 Canceled 2015-08-06
## 1673 0 Canceled 2015-08-05
## 1674 0 Check-Out 2015-08-25
## 1675 0 Check-Out 2015-08-25
## 1676 0 Canceled 2015-08-06
## 1677 0 Check-Out 2015-08-25
## 1678 0 Check-Out 2015-08-25
## 1679 0 Canceled 2015-08-06
## 1680 0 Check-Out 2015-08-25
## 1681 0 Check-Out 2015-08-25
## 1682 0 Check-Out 2015-08-25
## 1683 1 Check-Out 2015-08-25
## 1684 1 Check-Out 2015-08-25
## 1685 0 Canceled 2015-08-06
## 1686 0 Canceled 2015-08-06
## 1687 0 Check-Out 2015-08-25
## 1688 1 Check-Out 2015-08-25
## 1689 0 Check-Out 2015-08-25
## 1690 1 Check-Out 2015-08-25
## 1691 0 Canceled 2015-08-22
## 1692 2 Canceled 2015-08-17
## 1693 0 Canceled 2015-05-30
## 1694 0 Check-Out 2015-08-29
## 1695 0 Check-Out 2015-08-24
## 1696 3 Check-Out 2015-08-24
## 1697 0 Check-Out 2015-08-24
## 1698 0 Check-Out 2015-08-24
## 1699 0 Check-Out 2015-08-24
## 1700 0 Canceled 2015-08-10
## 1701 1 Check-Out 2015-08-25
## 1702 0 Check-Out 2015-08-25
## 1703 2 Check-Out 2015-08-25
## 1704 1 Check-Out 2015-08-26
## 1705 1 Check-Out 2015-08-26
## 1706 1 Check-Out 2015-08-26
## 1707 3 Check-Out 2015-08-27
## 1708 3 Check-Out 2015-08-27
## 1709 2 Check-Out 2015-08-28
## 1710 0 Canceled 2015-08-22
## 1711 2 Check-Out 2015-08-28
## 1712 2 Check-Out 2015-08-29
## 1713 0 Check-Out 2015-08-29
## 1714 0 Check-Out 2015-08-28
## 1715 1 Check-Out 2015-08-28
## 1716 0 Check-Out 2015-08-25
## 1717 1 Check-Out 2015-08-25
## 1718 1 Check-Out 2015-08-25
## 1719 0 Check-Out 2015-08-26
## 1720 0 Check-Out 2015-08-26
## 1721 0 Canceled 2015-08-19
## 1722 0 Check-Out 2015-08-26
## 1723 0 Check-Out 2015-08-26
## 1724 0 Check-Out 2015-08-26
## 1725 0 Check-Out 2015-08-26
## 1726 0 Check-Out 2015-08-26
## 1727 0 Check-Out 2015-08-26
## 1728 0 Check-Out 2015-08-26
## 1729 0 Check-Out 2015-08-26
## 1730 0 Check-Out 2015-08-26
## 1731 0 Check-Out 2015-08-26
## 1732 0 Check-Out 2015-08-26
## 1733 0 Check-Out 2015-08-26
## 1734 0 Check-Out 2015-08-26
## 1735 0 Check-Out 2015-08-26
## 1736 1 Check-Out 2015-08-26
## 1737 1 Check-Out 2015-08-26
## 1738 0 Check-Out 2015-08-26
## 1739 1 Check-Out 2015-08-26
## 1740 0 Check-Out 2015-08-26
## 1741 0 Check-Out 2015-08-26
## 1742 0 Canceled 2015-08-19
## 1743 0 Check-Out 2015-08-26
## 1744 0 Check-Out 2015-08-26
## 1745 0 Check-Out 2015-08-26
## 1746 0 Check-Out 2015-08-26
## 1747 0 Check-Out 2015-08-26
## 1748 0 Canceled 2015-08-19
## 1749 0 Check-Out 2015-08-26
## 1750 0 Check-Out 2015-08-27
## 1751 1 Check-Out 2015-08-27
## 1752 2 Check-Out 2015-08-27
## 1753 1 Check-Out 2015-08-27
## 1754 2 Check-Out 2015-08-28
## 1755 1 Check-Out 2015-08-28
## 1756 2 Check-Out 2015-08-28
## 1757 2 Check-Out 2015-08-28
## 1758 1 Check-Out 2015-08-29
## 1759 1 Check-Out 2015-08-29
## 1760 0 Check-Out 2015-08-30
## 1761 1 Check-Out 2015-09-01
## 1762 2 Check-Out 2015-08-27
## 1763 0 Check-Out 2015-08-27
## 1764 0 Check-Out 2015-08-29
## 1765 0 Canceled 2015-08-06
## 1766 0 Check-Out 2015-08-29
## 1767 0 Check-Out 2015-08-29
## 1768 0 Check-Out 2015-08-29
## 1769 0 Check-Out 2015-08-29
## 1770 0 Check-Out 2015-08-29
## 1771 0 Canceled 2015-08-06
## 1772 0 Check-Out 2015-08-29
## 1773 0 Canceled 2015-08-06
## 1774 0 Check-Out 2015-08-29
## 1775 0 Check-Out 2015-08-29
## 1776 0 Canceled 2015-08-06
## 1777 0 Canceled 2015-08-06
## 1778 0 Check-Out 2015-08-29
## 1779 0 Canceled 2015-08-06
## 1780 0 Check-Out 2015-08-29
## 1781 0 Check-Out 2015-08-29
## 1782 0 Canceled 2015-08-06
## 1783 0 Canceled 2015-08-06
## 1784 0 Check-Out 2015-08-29
## 1785 0 Check-Out 2015-08-29
## 1786 0 Canceled 2015-08-06
## 1787 0 Check-Out 2015-08-29
## 1788 1 Check-Out 2015-08-29
## 1789 0 Canceled 2015-08-24
## 1790 0 Canceled 2015-08-06
## 1791 0 Check-Out 2015-08-29
## 1792 0 Canceled 2015-08-06
## 1793 0 Check-Out 2015-08-29
## 1794 0 Canceled 2015-08-06
## 1795 0 Check-Out 2015-08-29
## 1796 1 Check-Out 2015-08-29
## 1797 0 Check-Out 2015-08-29
## 1798 0 Check-Out 2015-08-29
## 1799 0 Check-Out 2015-08-29
## 1800 0 Check-Out 2015-08-29
## 1801 0 Check-Out 2015-08-30
## 1802 0 Check-Out 2015-08-29
## 1803 1 Check-Out 2015-09-01
## 1804 2 Check-Out 2015-08-26
## 1805 0 Check-Out 2015-08-26
## 1806 0 Check-Out 2015-08-26
## 1807 0 Check-Out 2015-08-26
## 1808 0 Check-Out 2015-08-26
## 1809 1 Check-Out 2015-08-27
## 1810 2 Check-Out 2015-08-27
## 1811 1 Check-Out 2015-08-27
## 1812 0 Check-Out 2015-08-27
## 1813 2 Check-Out 2015-08-27
## 1814 2 Check-Out 2015-08-27
## 1815 1 Canceled 2015-08-20
## 1816 0 Check-Out 2015-08-29
## 1817 0 Canceled 2015-08-06
## 1818 0 Check-Out 2015-08-29
## 1819 0 Check-Out 2015-08-29
## 1820 0 Canceled 2015-08-06
## 1821 2 Check-Out 2015-08-27
## 1822 2 No-Show 2015-08-26
## 1823 2 Check-Out 2015-08-27
## 1824 0 Check-Out 2015-08-27
## 1825 0 Check-Out 2015-08-27
## 1826 2 Check-Out 2015-08-27
## 1827 0 Check-Out 2015-08-27
## 1828 0 Check-Out 2015-08-27
## 1829 0 Check-Out 2015-08-27
## 1830 0 Check-Out 2015-08-28
## 1831 0 Check-Out 2015-08-28
## 1832 0 Canceled 2015-08-24
## 1833 2 Check-Out 2015-08-28
## 1834 0 Check-Out 2015-08-28
## 1835 0 Check-Out 2015-08-28
## 1836 1 Check-Out 2015-08-28
## 1837 0 Check-Out 2015-08-28
## 1838 0 Check-Out 2015-08-28
## 1839 0 Check-Out 2015-08-28
## 1840 0 Check-Out 2015-08-28
## 1841 1 Check-Out 2015-08-28
## 1842 0 Check-Out 2015-08-28
## 1843 0 Check-Out 2015-08-28
## 1844 0 Canceled 2015-08-24
## 1845 0 Check-Out 2015-08-28
## 1846 0 Check-Out 2015-08-28
## 1847 0 Check-Out 2015-08-28
## 1848 1 Check-Out 2015-08-28
## 1849 0 Check-Out 2015-08-28
## 1850 0 Check-Out 2015-08-28
## 1851 0 Check-Out 2015-08-28
## 1852 0 Check-Out 2015-08-28
## 1853 0 Canceled 2015-08-24
## 1854 0 Canceled 2015-08-24
## 1855 0 No-Show 2015-08-26
## 1856 0 Canceled 2015-08-24
## 1857 0 Check-Out 2015-08-28
## 1858 0 Check-Out 2015-08-28
## 1859 0 Check-Out 2015-08-28
## 1860 0 Canceled 2015-08-24
## 1861 0 Check-Out 2015-08-28
## 1862 0 Check-Out 2015-08-28
## 1863 0 Check-Out 2015-08-28
## 1864 0 Check-Out 2015-08-28
## 1865 0 Check-Out 2015-08-28
## 1866 2 Check-Out 2015-08-28
## 1867 0 Check-Out 2015-08-28
## 1868 0 Check-Out 2015-08-29
## 1869 0 Check-Out 2015-08-29
## 1870 2 Check-Out 2015-08-30
## 1871 1 Canceled 2015-05-01
## 1872 2 Check-Out 2015-08-30
## 1873 1 Check-Out 2015-08-30
## 1874 1 Canceled 2015-05-01
## 1875 1 Canceled 2015-05-01
## 1876 1 Check-Out 2015-08-31
## 1877 2 Check-Out 2015-08-28
## 1878 2 Check-Out 2015-08-28
## 1879 0 Canceled 2015-08-26
## 1880 1 Check-Out 2015-08-28
## 1881 1 Canceled 2015-08-25
## 1882 1 Check-Out 2015-08-29
## 1883 0 Check-Out 2015-08-29
## 1884 2 Check-Out 2015-08-29
## 1885 1 Check-Out 2015-09-01
## 1886 2 Check-Out 2015-09-01
## 1887 2 Check-Out 2015-09-01
## 1888 1 Canceled 2015-08-19
## 1889 1 Canceled 2015-08-19
## 1890 1 Check-Out 2015-09-04
## 1891 0 Canceled 2015-08-27
## 1892 1 Canceled 2015-08-27
## 1893 1 Check-Out 2015-08-29
## 1894 1 Check-Out 2015-08-29
## 1895 2 Canceled 2015-08-27
## 1896 4 Check-Out 2015-08-29
## 1897 2 Check-Out 2015-08-29
## 1898 2 Canceled 2015-08-26
## 1899 2 Check-Out 2015-08-30
## 1900 3 Check-Out 2015-08-30
## 1901 0 Check-Out 2015-08-30
## 1902 2 Canceled 2015-08-27
## 1903 1 Canceled 2015-05-04
## 1904 2 Check-Out 2015-08-31
## 1905 0 Check-Out 2015-09-01
## 1906 2 Canceled 2015-05-28
## 1907 2 Check-Out 2015-09-03
## 1908 1 Check-Out 2015-09-05
## 1909 1 Canceled 2015-08-11
## 1910 0 Check-Out 2015-08-30
## 1911 0 Check-Out 2015-08-30
## 1912 2 Canceled 2015-08-18
## 1913 2 Check-Out 2015-08-30
## 1914 2 Canceled 2015-08-26
## 1915 1 Check-Out 2015-08-30
## 1916 2 Check-Out 2015-08-30
## 1917 1 Check-Out 2015-08-30
## 1918 2 Check-Out 2015-08-30
## 1919 0 Check-Out 2015-08-30
## 1920 2 Check-Out 2015-08-30
## 1921 2 Check-Out 2015-08-31
## 1922 0 Check-Out 2015-08-31
## 1923 1 Check-Out 2015-08-31
## 1924 1 Check-Out 2015-08-31
## 1925 0 Canceled 2015-08-24
## 1926 2 Check-Out 2015-08-31
## 1927 0 Check-Out 2015-09-01
## 1928 0 Canceled 2015-08-20
## 1929 0 Check-Out 2015-09-01
## 1930 1 Check-Out 2015-09-01
## 1931 0 Check-Out 2015-09-01
## 1932 0 Check-Out 2015-09-01
## 1933 0 Check-Out 2015-09-01
## 1934 0 Check-Out 2015-09-01
## 1935 0 Check-Out 2015-09-01
## 1936 1 Check-Out 2015-09-01
## 1937 0 Check-Out 2015-09-01
## 1938 0 Check-Out 2015-09-01
## 1939 0 Check-Out 2015-09-01
## 1940 0 Check-Out 2015-09-01
## 1941 0 Canceled 2015-08-20
## 1942 0 Check-Out 2015-09-01
## 1943 0 Check-Out 2015-09-01
## 1944 0 Check-Out 2015-09-01
## 1945 0 Check-Out 2015-09-01
## 1946 0 Check-Out 2015-09-01
## 1947 0 Check-Out 2015-09-01
## 1948 0 Canceled 2015-08-25
## 1949 1 Check-Out 2015-09-01
## 1950 0 Check-Out 2015-09-01
## 1951 0 Check-Out 2015-09-01
## 1952 0 Check-Out 2015-09-01
## 1953 0 Check-Out 2015-09-01
## 1954 0 Check-Out 2015-09-01
## 1955 0 Check-Out 2015-09-01
## 1956 1 Check-Out 2015-09-01
## 1957 0 Check-Out 2015-09-02
## 1958 1 Canceled 2015-08-21
## 1959 0 Canceled 2015-08-24
## 1960 1 Canceled 2015-08-19
## 1961 1 Canceled 2015-08-19
## 1962 0 Check-Out 2015-09-05
## 1963 2 Canceled 2015-08-24
## 1964 0 Check-Out 2015-09-05
## 1965 0 Check-Out 2015-08-30
## 1966 0 Check-Out 2015-08-31
## 1967 1 Check-Out 2015-08-31
## 1968 2 Check-Out 2015-08-31
## 1969 0 Canceled 2015-08-19
## 1970 2 Canceled 2015-08-18
## 1971 0 Canceled 2015-08-19
## 1972 2 Check-Out 2015-08-31
## 1973 1 Canceled 2015-08-28
## 1974 2 Check-Out 2015-08-31
## 1975 0 Canceled 2015-07-22
## 1976 0 Canceled 2015-07-22
## 1977 0 Canceled 2015-07-22
## 1978 0 Canceled 2015-07-22
## 1979 0 Canceled 2015-07-22
## 1980 0 Canceled 2015-07-22
## 1981 0 Canceled 2015-07-22
## 1982 0 Canceled 2015-07-22
## 1983 0 Canceled 2015-07-22
## 1984 0 Canceled 2015-07-22
## 1985 0 Canceled 2015-07-22
## 1986 0 Canceled 2015-07-22
## 1987 0 Canceled 2015-07-22
## 1988 0 Canceled 2015-07-22
## 1989 0 Canceled 2015-07-22
## 1990 0 Canceled 2015-07-22
## 1991 0 Canceled 2015-07-22
## 1992 0 Canceled 2015-07-22
## 1993 0 Canceled 2015-07-22
## 1994 0 Canceled 2015-07-22
## 1995 0 Canceled 2015-07-22
## 1996 0 Canceled 2015-07-22
## 1997 0 Canceled 2015-07-22
## 1998 0 Canceled 2015-07-22
## 1999 0 Canceled 2015-07-22
## 2000 0 Canceled 2015-07-22
## 2001 0 Canceled 2015-07-22
## 2002 0 Canceled 2015-07-22
## 2003 0 Canceled 2015-07-22
## 2004 0 Canceled 2015-07-22
## 2005 0 Canceled 2015-07-22
## 2006 0 Canceled 2015-07-22
## 2007 0 Canceled 2015-07-22
## 2008 0 Canceled 2015-07-22
## 2009 0 Canceled 2015-07-22
## 2010 0 Canceled 2015-07-22
## 2011 0 Canceled 2015-07-22
## 2012 0 Canceled 2015-07-22
## 2013 0 Canceled 2015-07-22
## 2014 0 Canceled 2015-07-22
## 2015 0 Check-Out 2015-09-03
## 2016 2 Check-Out 2015-09-03
## 2017 2 Check-Out 2015-09-04
## 2018 1 Check-Out 2015-09-04
## 2019 1 Canceled 2015-08-19
## 2020 1 Check-Out 2015-09-06
## 2021 0 Check-Out 2015-09-01
## 2022 0 Check-Out 2015-09-01
## 2023 0 Check-Out 2015-09-01
## 2024 0 Check-Out 2015-09-01
## 2025 0 Check-Out 2015-09-01
## 2026 0 Check-Out 2015-09-01
## 2027 0 Check-Out 2015-09-03
## 2028 0 Canceled 2015-08-24
## 2029 1 Check-Out 2015-09-03
## 2030 1 Check-Out 2015-09-03
## 2031 0 Check-Out 2015-09-03
## 2032 0 Check-Out 2015-09-03
## 2033 1 Check-Out 2015-09-03
## 2034 1 Check-Out 2015-09-03
## 2035 0 Canceled 2015-08-24
## 2036 0 Check-Out 2015-09-03
## 2037 0 Check-Out 2015-09-03
## 2038 0 Check-Out 2015-09-03
## 2039 0 Check-Out 2015-09-03
## 2040 1 Check-Out 2015-09-03
## 2041 0 Canceled 2015-08-24
## 2042 1 Check-Out 2015-09-03
## 2043 0 Check-Out 2015-09-03
## 2044 0 Check-Out 2015-09-03
## 2045 0 Check-Out 2015-09-03
## 2046 1 Check-Out 2015-09-03
## 2047 0 Check-Out 2015-09-03
## 2048 0 Canceled 2015-08-24
## 2049 1 Check-Out 2015-09-03
## 2050 0 Check-Out 2015-09-03
## 2051 1 Check-Out 2015-09-03
## 2052 0 Check-Out 2015-09-03
## 2053 0 Check-Out 2015-09-03
## 2054 1 Check-Out 2015-09-03
## 2055 0 Canceled 2015-08-24
## 2056 1 Check-Out 2015-09-03
## 2057 1 Check-Out 2015-09-03
## 2058 0 Check-Out 2015-09-04
## 2059 2 Check-Out 2015-09-04
## 2060 0 Check-Out 2015-09-04
## 2061 1 Canceled 2015-08-11
## 2062 1 Check-Out 2015-09-04
## 2063 1 Canceled 2015-08-18
## 2064 0 Check-Out 2015-09-04
## 2065 0 Check-Out 2015-09-04
## 2066 0 Check-Out 2015-09-05
## 2067 2 Check-Out 2015-09-05
## 2068 1 Check-Out 2015-09-05
## 2069 0 Check-Out 2015-09-05
## 2070 2 Check-Out 2015-09-05
## 2071 2 Canceled 2015-08-31
## 2072 2 Canceled 2015-08-25
## 2073 2 Check-Out 2015-09-05
## 2074 0 Check-Out 2015-09-06
## 2075 0 Check-Out 2015-09-06
## 2076 0 Check-Out 2015-09-07
## 2077 0 Check-Out 2015-09-08
## 2078 0 Check-Out 2015-09-02
## 2079 1 Check-Out 2015-09-02
## 2080 0 Check-Out 2015-09-03
## 2081 0 Check-Out 2015-09-02
## 2082 1 Check-Out 2015-09-02
## 2083 1 Check-Out 2015-09-02
## 2084 0 Check-Out 2015-09-02
## 2085 1 Check-Out 2015-09-02
## 2086 1 Check-Out 2015-09-05
## 2087 0 Check-Out 2015-09-05
## 2088 1 Check-Out 2015-09-05
## 2089 1 Canceled 2015-08-17
## 2090 0 Check-Out 2015-09-06
## 2091 2 Check-Out 2015-09-07
## 2092 2 Check-Out 2015-09-07
## 2093 1 Check-Out 2015-09-08
## 2094 1 Check-Out 2015-09-08
## 2095 0 Check-Out 2015-09-08
## 2096 0 Check-Out 2015-09-09
## 2097 0 Check-Out 2015-09-10
## 2098 1 No-Show 2015-09-01
## 2099 0 Check-Out 2015-09-04
## 2100 4 Check-Out 2015-09-04
## 2101 0 Check-Out 2015-09-04
## 2102 0 Check-Out 2015-09-04
## 2103 2 Check-Out 2015-09-04
## 2104 0 Check-Out 2015-09-04
## 2105 1 Check-Out 2015-09-04
## 2106 2 Check-Out 2015-09-04
## 2107 2 Check-Out 2015-09-04
## 2108 2 Check-Out 2015-09-04
## 2109 1 Check-Out 2015-09-04
## 2110 0 Check-Out 2015-09-04
## 2111 1 Check-Out 2015-09-03
## 2112 0 Check-Out 2015-09-04
## 2113 1 Check-Out 2015-09-03
## 2114 1 Check-Out 2015-09-03
## 2115 1 Check-Out 2015-09-03
## 2116 2 Check-Out 2015-09-06
## 2117 2 Check-Out 2015-09-06
## 2118 2 Check-Out 2015-09-09
## 2119 2 Check-Out 2015-09-09
## 2120 1 Check-Out 2015-09-10
## 2121 1 Check-Out 2015-09-03
## 2122 1 Check-Out 2015-09-03
## 2123 0 Check-Out 2015-09-03
## 2124 0 Check-Out 2015-09-03
## 2125 2 Canceled 2015-08-25
## 2126 0 Check-Out 2015-09-04
## 2127 1 Check-Out 2015-09-04
## 2128 0 Canceled 2015-08-19
## 2129 2 Check-Out 2015-09-04
## 2130 0 Check-Out 2015-09-04
## 2131 0 Check-Out 2015-09-04
## 2132 2 Check-Out 2015-09-05
## 2133 0 Check-Out 2015-09-05
## 2134 1 Check-Out 2015-09-05
## 2135 1 Check-Out 2015-09-05
## 2136 0 Canceled 2015-07-27
## 2137 0 Canceled 2015-07-16
## 2138 0 Check-Out 2015-09-05
## 2139 0 Check-Out 2015-09-05
## 2140 0 Check-Out 2015-09-05
## 2141 2 Check-Out 2015-09-05
## 2142 1 Check-Out 2015-09-05
## 2143 0 Check-Out 2015-09-05
## 2144 0 Canceled 2015-07-16
## 2145 1 Check-Out 2015-09-05
## 2146 0 Check-Out 2015-09-05
## 2147 0 Check-Out 2015-09-05
## 2148 2 Check-Out 2015-09-05
## 2149 0 Check-Out 2015-09-05
## 2150 0 Check-Out 2015-09-05
## 2151 2 Check-Out 2015-09-06
## 2152 0 Check-Out 2015-09-06
## 2153 0 Check-Out 2015-09-06
## 2154 2 Check-Out 2015-09-06
## 2155 1 Check-Out 2015-09-06
## 2156 1 Check-Out 2015-09-04
## 2157 0 Check-Out 2015-09-04
## 2158 0 Check-Out 2015-09-04
## 2159 0 Check-Out 2015-09-04
## 2160 0 Check-Out 2015-09-04
## 2161 2 Check-Out 2015-09-04
## 2162 1 Check-Out 2015-09-04
## 2163 2 Check-Out 2015-09-05
## 2164 0 Check-Out 2015-09-05
## 2165 0 Check-Out 2015-09-05
## 2166 3 Check-Out 2015-09-05
## 2167 3 Check-Out 2015-09-05
## 2168 2 Check-Out 2015-09-05
## 2169 0 Check-Out 2015-09-05
## 2170 2 Check-Out 2015-09-05
## 2171 0 Check-Out 2015-09-06
## 2172 2 Canceled 2015-09-01
## 2173 0 Check-Out 2015-09-06
## 2174 1 Check-Out 2015-09-06
## 2175 2 Check-Out 2015-09-06
## 2176 0 Check-Out 2015-09-06
## 2177 2 Check-Out 2015-09-06
## 2178 2 Check-Out 2015-09-06
## 2179 3 Check-Out 2015-09-06
## 2180 2 Check-Out 2015-09-06
## 2181 0 Check-Out 2015-09-07
## 2182 0 Check-Out 2015-09-07
## 2183 1 Check-Out 2015-09-07
## 2184 1 Check-Out 2015-09-07
## 2185 0 Check-Out 2015-09-07
## 2186 0 Check-Out 2015-09-08
## 2187 2 Check-Out 2015-09-08
## 2188 2 Check-Out 2015-09-09
## 2189 0 Check-Out 2015-09-10
## 2190 1 Check-Out 2015-09-06
## 2191 2 Check-Out 2015-09-06
## 2192 1 Check-Out 2015-09-06
## 2193 0 Check-Out 2015-09-05
## 2194 0 Check-Out 2015-09-05
## 2195 0 Check-Out 2015-09-05
## 2196 0 Check-Out 2015-09-05
## 2197 0 Check-Out 2015-09-05
## 2198 0 Check-Out 2015-09-05
## 2199 0 Check-Out 2015-09-05
## 2200 2 Check-Out 2015-09-05
## 2201 1 Check-Out 2015-09-05
## 2202 0 Check-Out 2015-09-05
## 2203 0 Check-Out 2015-09-06
## 2204 0 Check-Out 2015-09-06
## 2205 0 No-Show 2015-09-04
## 2206 0 Check-Out 2015-09-06
## 2207 0 Check-Out 2015-09-06
## 2208 2 Check-Out 2015-09-06
## 2209 1 Check-Out 2015-09-06
## 2210 0 Check-Out 2015-09-06
## 2211 0 Canceled 2015-08-20
## 2212 0 Check-Out 2015-09-06
## 2213 0 Check-Out 2015-09-06
## 2214 3 Check-Out 2015-09-06
## 2215 0 Canceled 2015-08-20
## 2216 0 Canceled 2015-08-20
## 2217 0 Check-Out 2015-09-06
## 2218 0 Check-Out 2015-09-06
## 2219 0 Canceled 2015-08-20
## 2220 0 Check-Out 2015-09-06
## 2221 0 Check-Out 2015-09-06
## 2222 2 Check-Out 2015-09-06
## 2223 1 Check-Out 2015-09-06
## 2224 0 Check-Out 2015-09-06
## 2225 0 Canceled 2015-08-20
## 2226 0 Canceled 2015-08-20
## 2227 0 Canceled 2015-08-20
## 2228 0 Check-Out 2015-09-06
## 2229 0 Check-Out 2015-09-06
## 2230 0 Canceled 2015-08-20
## 2231 0 Canceled 2015-07-03
## 2232 0 Check-Out 2015-09-06
## 2233 0 Canceled 2015-05-28
## 2234 0 Check-Out 2015-09-06
## 2235 0 Check-Out 2015-09-06
## 2236 1 Check-Out 2015-09-06
## 2237 1 Check-Out 2015-09-06
## 2238 2 Check-Out 2015-09-07
## 2239 2 Check-Out 2015-09-05
## 2240 0 Check-Out 2015-09-05
## 2241 0 Check-Out 2015-09-05
## 2242 0 Check-Out 2015-09-05
## 2243 0 Check-Out 2015-09-05
## 2244 0 Check-Out 2015-09-05
## 2245 0 Check-Out 2015-09-05
## 2246 2 Check-Out 2015-09-07
## 2247 0 Check-Out 2015-09-07
## 2248 0 Check-Out 2015-09-07
## 2249 3 Check-Out 2015-09-08
## 2250 1 Check-Out 2015-09-08
## 2251 2 Check-Out 2015-09-08
## 2252 0 Check-Out 2015-09-08
## 2253 3 Check-Out 2015-09-08
## 2254 1 Check-Out 2015-09-08
## 2255 0 Check-Out 2015-09-09
## 2256 1 Check-Out 2015-09-07
## 2257 0 Check-Out 2015-09-07
## 2258 2 Check-Out 2015-09-07
## 2259 0 Check-Out 2015-09-09
## 2260 0 Check-Out 2015-09-09
## 2261 0 Check-Out 2015-09-09
## 2262 1 Check-Out 2015-09-09
## 2263 0 Check-Out 2015-09-09
## 2264 1 Check-Out 2015-09-09
## 2265 0 Canceled 2015-07-01
## 2266 1 Canceled 2015-07-01
## 2267 3 Check-Out 2015-09-10
## 2268 2 Check-Out 2015-09-06
## 2269 1 Check-Out 2015-09-06
## 2270 2 Check-Out 2015-09-06
## 2271 1 Check-Out 2015-09-06
## 2272 0 Check-Out 2015-09-06
## 2273 1 Check-Out 2015-09-06
## 2274 1 Check-Out 2015-09-06
## 2275 0 Check-Out 2015-09-06
## 2276 0 Check-Out 2015-09-06
## 2277 1 No-Show 2015-09-05
## 2278 1 Canceled 2015-09-02
## 2279 1 Check-Out 2015-09-06
## 2280 1 Canceled 2015-09-01
## 2281 2 Check-Out 2015-09-06
## 2282 1 Check-Out 2015-09-06
## 2283 2 Check-Out 2015-09-06
## 2284 0 Canceled 2015-07-25
## 2285 0 Canceled 2015-07-25
## 2286 0 Canceled 2015-07-25
## 2287 2 Check-Out 2015-09-07
## 2288 1 Check-Out 2015-09-07
## 2289 0 Canceled 2015-07-25
## 2290 0 Canceled 2015-07-25
## 2291 0 Canceled 2015-07-25
## 2292 0 Canceled 2015-07-25
## 2293 0 Canceled 2015-07-25
## 2294 0 Canceled 2015-07-25
## 2295 2 Check-Out 2015-09-07
## 2296 0 Canceled 2015-07-25
## 2297 0 Canceled 2015-07-25
## 2298 0 Canceled 2015-07-25
## 2299 0 Canceled 2015-07-25
## 2300 0 Canceled 2015-07-25
## 2301 0 Canceled 2015-07-25
## 2302 0 Canceled 2015-07-25
## 2303 2 Check-Out 2015-09-07
## 2304 3 Check-Out 2015-09-07
## 2305 0 Canceled 2015-07-25
## 2306 0 Canceled 2015-07-25
## 2307 0 Canceled 2015-07-25
## 2308 0 Canceled 2015-07-25
## 2309 2 Check-Out 2015-09-07
## 2310 0 Canceled 2015-07-25
## 2311 0 Canceled 2015-07-25
## 2312 0 Canceled 2015-07-25
## 2313 0 Canceled 2015-07-25
## 2314 0 Canceled 2015-07-25
## 2315 0 Canceled 2015-07-25
## 2316 0 Check-Out 2015-09-07
## 2317 1 Check-Out 2015-09-07
## 2318 0 Canceled 2015-07-25
## 2319 2 Check-Out 2015-09-07
## 2320 0 Canceled 2015-07-25
## 2321 0 Canceled 2015-07-25
## 2322 0 Canceled 2015-07-25
## 2323 0 Canceled 2015-07-25
## 2324 1 Check-Out 2015-09-07
## 2325 1 Check-Out 2015-09-08
## 2326 0 Check-Out 2015-09-08
## 2327 3 Check-Out 2015-09-08
## 2328 3 Check-Out 2015-09-08
## 2329 1 Check-Out 2015-09-08
## 2330 3 Check-Out 2015-09-08
## 2331 1 Check-Out 2015-09-08
## 2332 3 Check-Out 2015-09-08
## 2333 1 Check-Out 2015-09-08
## 2334 3 Check-Out 2015-09-08
## 2335 0 Check-Out 2015-09-09
## 2336 0 Canceled 2015-09-01
## 2337 0 Canceled 2015-09-01
## 2338 0 Check-Out 2015-09-09
## 2339 0 Check-Out 2015-09-09
## 2340 1 Check-Out 2015-09-09
## 2341 0 Canceled 2015-09-01
## 2342 0 Canceled 2015-09-01
## 2343 0 Check-Out 2015-09-09
## 2344 3 Check-Out 2015-09-09
## 2345 0 Check-Out 2015-09-09
## 2346 0 Check-Out 2015-09-09
## 2347 0 Canceled 2015-09-01
## 2348 0 Check-Out 2015-09-09
## 2349 0 Check-Out 2015-09-09
## 2350 0 Canceled 2015-09-01
## 2351 0 Canceled 2015-09-01
## 2352 0 Canceled 2015-09-01
## 2353 1 Check-Out 2015-09-09
## 2354 1 Check-Out 2015-09-09
## 2355 1 Check-Out 2015-09-09
## 2356 1 Check-Out 2015-09-09
## 2357 0 Check-Out 2015-09-09
## 2358 3 Check-Out 2015-09-09
## 2359 0 Check-Out 2015-09-09
## 2360 0 Canceled 2015-09-03
## 2361 0 Check-Out 2015-09-09
## 2362 0 Check-Out 2015-09-09
## 2363 0 Canceled 2015-09-01
## 2364 0 Canceled 2015-09-01
## 2365 0 Check-Out 2015-09-09
## 2366 0 Check-Out 2015-09-09
## 2367 0 Check-Out 2015-09-09
## 2368 0 Canceled 2015-09-01
## 2369 0 Canceled 2015-09-01
## 2370 0 Check-Out 2015-09-09
## 2371 0 Canceled 2015-09-01
## 2372 0 Canceled 2015-09-01
## 2373 0 Canceled 2015-09-01
## 2374 0 Check-Out 2015-09-09
## 2375 0 Canceled 2015-09-01
## 2376 0 Canceled 2015-09-01
## 2377 0 Canceled 2015-09-03
## 2378 0 Check-Out 2015-09-09
## 2379 0 Check-Out 2015-09-09
## 2380 2 Check-Out 2015-09-10
## 2381 1 Check-Out 2015-09-11
## 2382 2 Check-Out 2015-09-11
## 2383 1 Check-Out 2015-09-11
## 2384 1 Canceled 2015-08-14
## 2385 2 Check-Out 2015-09-12
## 2386 3 Canceled 2015-08-29
## 2387 0 Check-Out 2015-09-09
## 2388 1 Check-Out 2015-09-09
## 2389 0 Canceled 2015-09-01
## 2390 0 Canceled 2015-09-01
## 2391 0 Check-Out 2015-09-09
## 2392 0 Check-Out 2015-09-08
## 2393 0 Canceled 2015-09-05
## 2394 0 Check-Out 2015-09-08
## 2395 0 Check-Out 2015-09-08
## 2396 0 Check-Out 2015-09-08
## 2397 0 Canceled 2015-09-05
## 2398 0 Canceled 2015-09-05
## 2399 0 Check-Out 2015-09-07
## 2400 0 Check-Out 2015-09-07
## 2401 0 Check-Out 2015-09-08
## 2402 0 Check-Out 2015-09-08
## 2403 0 Check-Out 2015-09-08
## 2404 0 Check-Out 2015-09-08
## 2405 0 Check-Out 2015-09-08
## 2406 0 Canceled 2015-09-05
## 2407 0 Check-Out 2015-09-08
## 2408 0 Check-Out 2015-09-08
## 2409 0 Check-Out 2015-09-08
## 2410 0 Check-Out 2015-09-08
## 2411 0 Check-Out 2015-09-08
## 2412 0 Check-Out 2015-09-08
## 2413 0 Check-Out 2015-09-08
## 2414 0 Canceled 2015-09-05
## 2415 0 Canceled 2015-09-05
## 2416 0 Check-Out 2015-09-08
## 2417 0 Check-Out 2015-09-08
## 2418 0 Check-Out 2015-09-08
## 2419 0 Check-Out 2015-09-08
## 2420 0 Check-Out 2015-09-08
## 2421 0 Check-Out 2015-09-08
## 2422 0 Check-Out 2015-09-08
## 2423 0 Check-Out 2015-09-08
## 2424 0 Check-Out 2015-09-08
## 2425 0 Check-Out 2015-09-08
## 2426 0 Check-Out 2015-09-08
## 2427 0 Check-Out 2015-09-08
## 2428 0 Canceled 2015-09-05
## 2429 0 Check-Out 2015-09-08
## 2430 0 Check-Out 2015-09-08
## 2431 0 Check-Out 2015-09-08
## 2432 0 Check-Out 2015-09-08
## 2433 0 Check-Out 2015-09-08
## 2434 0 Check-Out 2015-09-08
## 2435 0 Canceled 2015-09-05
## 2436 0 Canceled 2015-09-05
## 2437 0 Check-Out 2015-09-08
## 2438 0 Check-Out 2015-09-08
## 2439 0 Check-Out 2015-09-08
## 2440 0 Check-Out 2015-09-08
## 2441 0 Check-Out 2015-09-08
## 2442 0 Check-Out 2015-09-08
## 2443 0 Check-Out 2015-09-08
## 2444 0 Check-Out 2015-09-08
## 2445 0 Canceled 2015-09-06
## 2446 0 Check-Out 2015-09-08
## 2447 0 Check-Out 2015-09-08
## 2448 0 Canceled 2015-09-05
## 2449 0 Check-Out 2015-09-08
## 2450 0 Check-Out 2015-09-08
## 2451 0 Check-Out 2015-09-08
## 2452 0 Check-Out 2015-09-08
## 2453 0 Check-Out 2015-09-08
## 2454 0 Check-Out 2015-09-08
## 2455 0 Check-Out 2015-09-08
## 2456 0 Check-Out 2015-09-08
## 2457 0 Check-Out 2015-09-08
## 2458 0 Check-Out 2015-09-08
## 2459 0 Check-Out 2015-09-08
## 2460 0 Check-Out 2015-09-08
## 2461 0 Check-Out 2015-09-08
## 2462 0 Check-Out 2015-09-08
## 2463 0 Check-Out 2015-09-08
## 2464 0 Check-Out 2015-09-08
## 2465 0 Check-Out 2015-09-08
## 2466 0 Check-Out 2015-09-08
## 2467 0 Check-Out 2015-09-08
## 2468 0 Check-Out 2015-09-08
## 2469 0 Check-Out 2015-09-08
## 2470 1 Check-Out 2015-09-10
## 2471 0 Check-Out 2015-09-10
## 2472 2 Check-Out 2015-09-10
## 2473 1 Check-Out 2015-09-10
## 2474 1 Check-Out 2015-09-10
## 2475 0 Check-Out 2015-09-10
## 2476 0 Check-Out 2015-09-11
## 2477 0 Check-Out 2015-09-11
## 2478 0 Check-Out 2015-09-13
## 2479 0 Check-Out 2015-09-13
## 2480 0 Check-Out 2015-09-15
## 2481 1 Check-Out 2015-09-08
## 2482 1 No-Show 2015-09-07
## 2483 0 Check-Out 2015-09-08
## 2484 0 Check-Out 2015-09-08
## 2485 1 Check-Out 2015-09-08
## 2486 0 Check-Out 2015-09-08
## 2487 1 Canceled 2015-08-24
## 2488 1 Canceled 2015-09-03
## 2489 1 Check-Out 2015-09-08
## 2490 0 Check-Out 2015-09-09
## 2491 2 Canceled 2015-08-17
## 2492 2 Canceled 2015-09-04
## 2493 1 Check-Out 2015-09-09
## 2494 0 Check-Out 2015-09-09
## 2495 0 Check-Out 2015-09-09
## 2496 2 Check-Out 2015-09-09
## 2497 2 Check-Out 2015-09-09
## 2498 2 Canceled 2015-09-04
## 2499 0 Check-Out 2015-09-09
## 2500 2 Check-Out 2015-09-09
## 2501 2 Check-Out 2015-09-10
## 2502 1 Check-Out 2015-09-10
## 2503 0 Check-Out 2015-09-10
## 2504 2 Check-Out 2015-09-10
## 2505 0 Check-Out 2015-09-10
## 2506 1 Check-Out 2015-09-10
## 2507 0 Check-Out 2015-09-10
## 2508 0 Check-Out 2015-09-10
## 2509 0 Check-Out 2015-09-10
## 2510 0 Check-Out 2015-09-10
## 2511 0 Check-Out 2015-09-10
## 2512 1 Check-Out 2015-09-10
## 2513 0 Check-Out 2015-09-10
## 2514 2 Check-Out 2015-09-10
## 2515 0 Check-Out 2015-09-11
## 2516 1 Check-Out 2015-09-11
## 2517 0 Check-Out 2015-09-11
## 2518 1 Check-Out 2015-09-11
## 2519 0 Check-Out 2015-09-11
## 2520 1 Check-Out 2015-09-11
## 2521 2 Canceled 2015-09-04
## 2522 0 Check-Out 2015-09-09
## 2523 2 Check-Out 2015-09-09
## 2524 0 Check-Out 2015-09-09
## 2525 0 Canceled 2015-09-07
## 2526 0 Check-Out 2015-09-11
## 2527 0 Check-Out 2015-09-11
## 2528 1 Check-Out 2015-09-11
## 2529 1 Check-Out 2015-09-11
## 2530 2 Check-Out 2015-09-11
## 2531 1 Check-Out 2015-09-12
## 2532 1 Check-Out 2015-09-12
## 2533 0 Canceled 2015-09-05
## 2534 0 Check-Out 2015-09-12
## 2535 1 Check-Out 2015-09-12
## 2536 2 Check-Out 2015-09-12
## 2537 3 Check-Out 2015-09-13
## 2538 1 Check-Out 2015-09-16
## 2539 0 Check-Out 2015-09-17
## 2540 1 Canceled 2015-08-22
## 2541 0 Check-Out 2015-09-09
## 2542 0 Check-Out 2015-09-09
## 2543 0 Check-Out 2015-09-09
## 2544 0 Check-Out 2015-09-09
## 2545 0 Check-Out 2015-09-09
## 2546 0 Check-Out 2015-09-09
## 2547 0 Check-Out 2015-09-09
## 2548 0 Check-Out 2015-09-09
## 2549 0 Check-Out 2015-09-09
## 2550 0 Check-Out 2015-09-09
## 2551 0 Check-Out 2015-09-09
## 2552 0 Check-Out 2015-09-09
## 2553 0 Check-Out 2015-09-10
## 2554 3 Check-Out 2015-09-10
## 2555 0 Check-Out 2015-09-10
## 2556 0 Canceled 2015-09-08
## 2557 2 Check-Out 2015-09-10
## 2558 1 Check-Out 2015-09-10
## 2559 0 Check-Out 2015-09-10
## 2560 0 Check-Out 2015-09-11
## 2561 1 Check-Out 2015-09-11
## 2562 1 Check-Out 2015-09-11
## 2563 0 Check-Out 2015-09-11
## 2564 1 Check-Out 2015-09-11
## 2565 1 Check-Out 2015-09-11
## 2566 0 Check-Out 2015-09-11
## 2567 1 Check-Out 2015-09-11
## 2568 1 Check-Out 2015-09-11
## 2569 1 Check-Out 2015-09-12
## 2570 2 Check-Out 2015-09-12
## 2571 2 Check-Out 2015-09-12
## 2572 0 Check-Out 2015-09-12
## 2573 2 Canceled 2015-09-02
## 2574 1 Check-Out 2015-09-12
## 2575 0 Check-Out 2015-09-12
## 2576 0 Check-Out 2015-09-09
## 2577 0 Check-Out 2015-09-09
## 2578 0 Check-Out 2015-09-09
## 2579 1 Check-Out 2015-09-09
## 2580 0 Check-Out 2015-09-09
## 2581 0 Check-Out 2015-09-09
## 2582 2 Check-Out 2015-09-12
## 2583 1 Canceled 2015-09-02
## 2584 2 Check-Out 2015-09-13
## 2585 0 Check-Out 2015-09-13
## 2586 2 Canceled 2015-03-29
## 2587 0 Check-Out 2015-09-14
## 2588 2 Check-Out 2015-09-15
## 2589 0 Check-Out 2015-09-15
## 2590 0 Check-Out 2015-09-16
## 2591 0 Check-Out 2015-09-17
## 2592 2 Check-Out 2015-09-11
## 2593 1 Check-Out 2015-09-11
## 2594 0 Check-Out 2015-09-11
## 2595 0 Check-Out 2015-09-11
## 2596 0 Check-Out 2015-09-11
## 2597 1 Check-Out 2015-09-11
## 2598 0 Check-Out 2015-09-11
## 2599 2 Check-Out 2015-09-11
## 2600 0 Check-Out 2015-09-11
## 2601 0 Check-Out 2015-09-11
## 2602 0 Canceled 2015-06-30
## 2603 0 Check-Out 2015-09-11
## 2604 0 Check-Out 2015-09-11
## 2605 0 Check-Out 2015-09-11
## 2606 0 Check-Out 2015-09-10
## 2607 1 Check-Out 2015-09-10
## 2608 0 Check-Out 2015-09-10
## 2609 0 Check-Out 2015-09-10
## 2610 0 Check-Out 2015-09-10
## 2611 2 Check-Out 2015-09-10
## 2612 0 Check-Out 2015-09-10
## 2613 0 Check-Out 2015-09-10
## 2614 2 Check-Out 2015-09-11
## 2615 0 Check-Out 2015-09-11
## 2616 0 Check-Out 2015-09-11
## 2617 0 Check-Out 2015-09-11
## 2618 0 Check-Out 2015-09-11
## 2619 0 Check-Out 2015-09-11
## 2620 0 Check-Out 2015-09-11
## 2621 0 Check-Out 2015-09-11
## 2622 0 Check-Out 2015-09-11
## 2623 0 Canceled 2015-09-03
## 2624 0 Canceled 2015-06-30
## 2625 0 Canceled 2015-09-08
## 2626 0 Canceled 2015-06-30
## 2627 0 Canceled 2015-09-08
## 2628 0 Check-Out 2015-09-11
## 2629 0 Check-Out 2015-09-11
## 2630 0 Check-Out 2015-09-11
## 2631 0 Canceled 2015-09-03
## 2632 0 Check-Out 2015-09-11
## 2633 1 Check-Out 2015-09-11
## 2634 0 Check-Out 2015-09-11
## 2635 0 Canceled 2015-06-30
## 2636 0 Check-Out 2015-09-11
## 2637 0 Check-Out 2015-09-11
## 2638 0 Canceled 2015-09-03
## 2639 0 Check-Out 2015-09-11
## 2640 1 No-Show 2015-09-09
## 2641 0 Check-Out 2015-09-11
## 2642 0 Check-Out 2015-09-11
## 2643 0 Check-Out 2015-09-11
## 2644 0 Canceled 2015-09-08
## 2645 0 Check-Out 2015-09-11
## 2646 0 Check-Out 2015-09-11
## 2647 0 Canceled 2015-06-30
## 2648 0 Check-Out 2015-09-11
## 2649 0 Check-Out 2015-09-11
## 2650 0 Check-Out 2015-09-11
## 2651 0 Check-Out 2015-09-11
## 2652 1 Check-Out 2015-09-11
## 2653 0 Check-Out 2015-09-11
## 2654 0 Check-Out 2015-09-11
## 2655 0 Check-Out 2015-09-11
## 2656 0 Canceled 2015-06-30
## 2657 0 Canceled 2015-06-30
## 2658 0 Check-Out 2015-09-11
## 2659 0 Check-Out 2015-09-11
## 2660 0 Canceled 2015-09-03
## 2661 1 Check-Out 2015-09-11
## 2662 0 Check-Out 2015-09-11
## 2663 0 Check-Out 2015-09-11
## 2664 0 Check-Out 2015-09-11
## 2665 0 Check-Out 2015-09-11
## 2666 0 Check-Out 2015-09-11
## 2667 0 Check-Out 2015-09-11
## 2668 0 Check-Out 2015-09-11
## 2669 0 Canceled 2015-06-30
## 2670 0 Check-Out 2015-09-11
## 2671 0 Check-Out 2015-09-11
## 2672 0 Check-Out 2015-09-11
## 2673 0 Check-Out 2015-09-11
## 2674 0 Check-Out 2015-09-11
## 2675 0 Check-Out 2015-09-11
## 2676 0 Check-Out 2015-09-11
## 2677 0 Check-Out 2015-09-11
## 2678 0 Canceled 2015-06-30
## 2679 0 Check-Out 2015-09-11
## 2680 0 Check-Out 2015-09-11
## 2681 0 Check-Out 2015-09-11
## 2682 0 Canceled 2015-09-08
## 2683 0 Check-Out 2015-09-11
## 2684 0 Check-Out 2015-09-12
## 2685 0 Check-Out 2015-09-12
## 2686 0 Check-Out 2015-09-12
## 2687 0 Check-Out 2015-09-12
## 2688 0 Check-Out 2015-09-12
## 2689 1 Check-Out 2015-09-12
## 2690 2 Check-Out 2015-09-12
## 2691 2 Check-Out 2015-09-12
## 2692 1 Check-Out 2015-09-12
## 2693 2 Check-Out 2015-09-12
## 2694 2 Check-Out 2015-09-12
## 2695 2 Check-Out 2015-09-12
## 2696 0 Check-Out 2015-09-12
## 2697 2 Check-Out 2015-09-12
## 2698 1 Check-Out 2015-09-13
## 2699 0 Canceled 2015-09-07
## 2700 1 Canceled 2015-08-26
## 2701 0 Check-Out 2015-09-13
## 2702 0 Check-Out 2015-09-11
## 2703 0 Check-Out 2015-09-11
## 2704 3 Check-Out 2015-09-13
## 2705 1 Check-Out 2015-09-11
## 2706 0 Canceled 2015-09-09
## 2707 1 Check-Out 2015-09-11
## 2708 0 Canceled 2015-09-09
## 2709 0 Canceled 2015-09-08
## 2710 0 Canceled 2015-09-09
## 2711 0 Check-Out 2015-09-11
## 2712 2 Canceled 2015-09-03
## 2713 0 Canceled 2015-09-09
## 2714 1 Check-Out 2015-09-11
## 2715 2 Canceled 2015-09-01
## 2716 0 Canceled 2015-08-17
## 2717 0 Canceled 2015-08-17
## 2718 0 Canceled 2015-08-17
## 2719 0 Canceled 2015-08-17
## 2720 0 Canceled 2015-08-17
## 2721 0 Check-Out 2015-09-11
## 2722 0 Check-Out 2015-09-12
## 2723 0 Canceled 2015-08-17
## 2724 2 Check-Out 2015-09-12
## 2725 0 Check-Out 2015-09-12
## 2726 0 Canceled 2015-08-17
## 2727 0 Canceled 2015-08-17
## 2728 0 Canceled 2015-08-17
## 2729 0 Canceled 2015-08-17
## 2730 0 Canceled 2015-08-17
## 2731 0 Canceled 2015-08-17
## 2732 0 Canceled 2015-08-17
## 2733 0 Canceled 2015-08-17
## 2734 0 Canceled 2015-08-17
## 2735 0 Check-Out 2015-09-12
## 2736 0 Canceled 2015-08-17
## 2737 0 Canceled 2015-08-17
## 2738 0 Canceled 2015-08-17
## 2739 0 Canceled 2015-08-17
## 2740 0 Canceled 2015-08-17
## 2741 0 Canceled 2015-08-17
## 2742 0 Canceled 2015-08-17
## 2743 0 Canceled 2015-08-17
## 2744 0 Check-Out 2015-09-15
## 2745 2 Check-Out 2015-09-15
## 2746 0 Check-Out 2015-09-16
## 2747 1 Check-Out 2015-09-16
## 2748 1 Check-Out 2015-09-16
## 2749 2 Check-Out 2015-09-17
## 2750 0 Check-Out 2015-09-18
## 2751 2 Check-Out 2015-09-18
## 2752 0 Check-Out 2015-09-18
## 2753 1 No-Show 2015-09-10
## 2754 0 Canceled 2015-08-17
## 2755 0 Canceled 2015-08-17
## 2756 1 No-Show 2015-09-10
## 2757 2 Check-Out 2015-09-13
## 2758 2 Check-Out 2015-09-14
## 2759 1 Check-Out 2015-09-14
## 2760 0 Canceled 2015-09-07
## 2761 1 Canceled 2015-09-07
## 2762 0 Check-Out 2015-09-14
## 2763 1 Check-Out 2015-09-14
## 2764 2 Check-Out 2015-09-14
## 2765 2 Canceled 2015-09-07
## 2766 0 Check-Out 2015-09-14
## 2767 0 Canceled 2015-09-07
## 2768 0 Canceled 2015-09-09
## 2769 0 Check-Out 2015-09-13
## 2770 0 Check-Out 2015-09-13
## 2771 0 Check-Out 2015-09-13
## 2772 0 Check-Out 2015-09-13
## 2773 0 Canceled 2015-07-22
## 2774 0 Canceled 2015-09-10
## 2775 0 Canceled 2015-09-10
## 2776 0 Check-Out 2015-09-13
## 2777 0 Check-Out 2015-09-13
## 2778 0 Check-Out 2015-09-13
## 2779 1 Check-Out 2015-09-13
## 2780 1 No-Show 2015-09-11
## 2781 0 Check-Out 2015-09-13
## 2782 0 Check-Out 2015-09-14
## 2783 0 Check-Out 2015-09-14
## 2784 0 Check-Out 2015-09-14
## 2785 1 Check-Out 2015-09-14
## 2786 0 Check-Out 2015-09-14
## 2787 0 Check-Out 2015-09-14
## 2788 0 Check-Out 2015-09-14
## 2789 0 Check-Out 2015-09-14
## 2790 0 Check-Out 2015-09-14
## 2791 0 Check-Out 2015-09-14
## 2792 0 Canceled 2015-09-09
## 2793 0 Canceled 2015-09-09
## 2794 0 Check-Out 2015-09-13
## 2795 0 Check-Out 2015-09-13
## 2796 0 Check-Out 2015-09-13
## 2797 0 Check-Out 2015-09-13
## 2798 0 Check-Out 2015-09-13
## 2799 0 Canceled 2015-07-22
## 2800 0 Check-Out 2015-09-13
## 2801 0 Check-Out 2015-09-13
## 2802 1 Check-Out 2015-09-13
## 2803 0 Check-Out 2015-09-13
## 2804 0 Check-Out 2015-09-13
## 2805 0 Check-Out 2015-09-13
## 2806 0 Check-Out 2015-09-13
## 2807 0 Check-Out 2015-09-13
## 2808 0 Canceled 2015-08-25
## 2809 0 Check-Out 2015-09-13
## 2810 0 Canceled 2015-09-10
## 2811 0 Canceled 2015-09-10
## 2812 0 Check-Out 2015-09-13
## 2813 0 Check-Out 2015-09-13
## 2814 0 Check-Out 2015-09-13
## 2815 0 Check-Out 2015-09-13
## 2816 0 Check-Out 2015-09-13
## 2817 1 Check-Out 2015-09-13
## 2818 0 Check-Out 2015-09-13
## 2819 0 Check-Out 2015-09-13
## 2820 0 Check-Out 2015-09-13
## 2821 0 Check-Out 2015-09-13
## 2822 0 Canceled 2015-07-22
## 2823 0 Check-Out 2015-09-13
## 2824 0 Check-Out 2015-09-13
## 2825 0 Check-Out 2015-09-13
## 2826 0 Canceled 2015-07-22
## 2827 0 Canceled 2015-08-25
## 2828 0 Check-Out 2015-09-13
## 2829 0 Check-Out 2015-09-13
## 2830 0 Check-Out 2015-09-13
## 2831 0 Canceled 2015-07-22
## 2832 0 Canceled 2015-09-10
## 2833 0 Canceled 2015-09-10
## 2834 0 Check-Out 2015-09-13
## 2835 0 Check-Out 2015-09-13
## 2836 0 Check-Out 2015-09-13
## 2837 0 Check-Out 2015-09-13
## 2838 1 No-Show 2015-09-11
## 2839 0 Check-Out 2015-09-13
## 2840 0 Check-Out 2015-09-14
## 2841 0 Canceled 2015-08-31
## 2842 0 Canceled 2015-09-07
## 2843 1 Canceled 2015-09-07
## 2844 2 Check-Out 2015-09-15
## 2845 1 Check-Out 2015-09-15
## 2846 2 Check-Out 2015-09-17
## 2847 1 Canceled 2015-08-22
## 2848 2 Canceled 2015-08-22
## 2849 2 Check-Out 2015-09-13
## 2850 0 Canceled 2015-08-25
## 2851 0 Check-Out 2015-09-13
## 2852 0 Check-Out 2015-09-13
## 2853 0 Check-Out 2015-09-13
## 2854 0 Check-Out 2015-09-13
## 2855 0 Check-Out 2015-09-13
## 2856 0 Canceled 2015-07-22
## 2857 0 Canceled 2015-09-07
## 2858 0 Canceled 2015-08-25
## 2859 1 Check-Out 2015-09-13
## 2860 0 Check-Out 2015-09-13
## 2861 0 Canceled 2015-09-10
## 2862 0 Check-Out 2015-09-13
## 2863 0 Check-Out 2015-09-13
## 2864 0 Canceled 2015-07-22
## 2865 0 Canceled 2015-09-11
## 2866 0 Check-Out 2015-09-13
## 2867 2 Canceled 2015-09-07
## 2868 0 Check-Out 2015-09-12
## 2869 0 Check-Out 2015-09-12
## 2870 0 Canceled 2015-09-08
## 2871 0 Canceled 2015-06-30
## 2872 0 Check-Out 2015-09-12
## 2873 0 Check-Out 2015-09-12
## 2874 0 Canceled 2015-09-08
## 2875 0 Check-Out 2015-09-12
## 2876 0 Check-Out 2015-09-12
## 2877 2 Check-Out 2015-09-12
## 2878 0 Check-Out 2015-09-12
## 2879 1 Check-Out 2015-09-12
## 2880 1 Check-Out 2015-09-12
## 2881 2 Check-Out 2015-09-12
## 2882 1 Canceled 2015-08-27
## 2883 0 Check-Out 2015-09-12
## 2884 0 Check-Out 2015-09-12
## 2885 0 Canceled 2015-09-08
## 2886 0 Check-Out 2015-09-13
## 2887 0 Canceled 2015-07-22
## 2888 0 Check-Out 2015-09-13
## 2889 0 Check-Out 2015-09-13
## 2890 0 Check-Out 2015-09-13
## 2891 0 Check-Out 2015-09-13
## 2892 0 Check-Out 2015-09-13
## 2893 0 Check-Out 2015-09-13
## 2894 0 Check-Out 2015-09-13
## 2895 0 Canceled 2015-07-22
## 2896 0 Canceled 2015-07-22
## 2897 0 Canceled 2015-09-10
## 2898 0 Canceled 2015-09-10
## 2899 1 Check-Out 2015-09-13
## 2900 0 Canceled 2015-08-25
## 2901 0 Check-Out 2015-09-13
## 2902 0 Check-Out 2015-09-13
## 2903 0 Check-Out 2015-09-13
## 2904 2 Check-Out 2015-09-13
## 2905 0 Check-Out 2015-09-13
## 2906 0 Canceled 2015-09-10
## 2907 0 Check-Out 2015-09-13
## 2908 0 Check-Out 2015-09-13
## 2909 0 Canceled 2015-09-09
## 2910 2 Canceled 2015-09-05
## 2911 1 No-Show 2015-09-11
## 2912 3 Check-Out 2015-09-13
## 2913 2 Check-Out 2015-09-13
## 2914 2 Check-Out 2015-09-13
## 2915 2 Check-Out 2015-09-13
## 2916 0 Check-Out 2015-09-13
## 2917 1 Check-Out 2015-09-13
## 2918 2 Check-Out 2015-09-14
## 2919 2 Check-Out 2015-09-14
## 2920 0 Canceled 2015-08-28
## 2921 0 Canceled 2015-08-28
## 2922 0 Canceled 2015-08-28
## 2923 0 Canceled 2015-08-28
## 2924 0 Canceled 2015-08-28
## 2925 1 Canceled 2015-08-17
## 2926 0 Canceled 2015-08-28
## 2927 0 Canceled 2015-08-28
## 2928 0 Canceled 2015-08-28
## 2929 3 Check-Out 2015-09-15
## 2930 1 Check-Out 2015-09-15
## 2931 0 Canceled 2015-08-28
## 2932 2 Check-Out 2015-09-15
## 2933 2 Check-Out 2015-09-15
## 2934 0 Canceled 2015-08-28
## 2935 0 Check-Out 2015-09-16
## 2936 0 Check-Out 2015-09-16
## 2937 0 Canceled 2015-09-09
## 2938 0 Canceled 2015-09-09
## 2939 0 Check-Out 2015-09-16
## 2940 0 Check-Out 2015-09-16
## 2941 1 Check-Out 2015-09-16
## 2942 1 Check-Out 2015-09-16
## 2943 0 Check-Out 2015-09-16
## 2944 0 Check-Out 2015-09-16
## 2945 0 Check-Out 2015-09-16
## 2946 0 Check-Out 2015-09-16
## 2947 0 Check-Out 2015-09-16
## 2948 0 Check-Out 2015-09-16
## 2949 0 Check-Out 2015-09-16
## 2950 0 Check-Out 2015-09-16
## 2951 0 Check-Out 2015-09-16
## 2952 0 Check-Out 2015-09-16
## 2953 0 Check-Out 2015-09-16
## 2954 0 Canceled 2015-09-09
## 2955 0 Check-Out 2015-09-16
## 2956 0 Check-Out 2015-09-16
## 2957 0 Check-Out 2015-09-16
## 2958 0 Check-Out 2015-09-16
## 2959 0 Check-Out 2015-09-16
## 2960 0 Check-Out 2015-09-16
## 2961 0 Canceled 2015-09-09
## 2962 0 Check-Out 2015-09-16
## 2963 0 Check-Out 2015-09-16
## 2964 0 Canceled 2015-09-09
## 2965 0 Check-Out 2015-09-16
## 2966 0 Check-Out 2015-09-16
## 2967 1 Check-Out 2015-09-17
## 2968 1 Check-Out 2015-09-17
## 2969 1 Check-Out 2015-09-18
## 2970 2 Check-Out 2015-09-18
## 2971 2 Check-Out 2015-09-19
## 2972 2 Canceled 2015-09-03
## 2973 0 Check-Out 2015-09-16
## 2974 2 Check-Out 2015-09-16
## 2975 2 Check-Out 2015-09-19
## 2976 1 Check-Out 2015-09-15
## 2977 1 Canceled 2015-09-07
## 2978 0 Canceled 2015-09-07
## 2979 2 Check-Out 2015-09-16
## 2980 1 Check-Out 2015-09-16
## 2981 2 Check-Out 2015-09-16
## 2982 0 Check-Out 2015-09-17
## 2983 2 Check-Out 2015-09-17
## 2984 2 Check-Out 2015-09-17
## 2985 2 Check-Out 2015-09-17
## 2986 2 Check-Out 2015-09-17
## 2987 2 Check-Out 2015-09-17
## 2988 0 Check-Out 2015-09-18
## 2989 0 Check-Out 2015-09-18
## 2990 1 Check-Out 2015-09-18
## 2991 0 Check-Out 2015-09-18
## 2992 1 Check-Out 2015-09-18
## 2993 2 Canceled 2015-08-05
## 2994 2 Canceled 2015-08-05
## 2995 1 Check-Out 2015-09-19
## 2996 0 Check-Out 2015-09-19
## 2997 0 Check-Out 2015-09-19
## 2998 1 Check-Out 2015-09-14
## 2999 2 Check-Out 2015-09-14
## 3000 0 Check-Out 2015-09-20
## 3001 0 Check-Out 2015-09-20
## 3002 2 Check-Out 2015-09-15
## 3003 0 Check-Out 2015-09-15
## 3004 1 Check-Out 2015-09-16
## 3005 0 Canceled 2015-08-17
## 3006 0 Check-Out 2015-09-17
## 3007 2 Check-Out 2015-09-17
## 3008 1 Check-Out 2015-09-17
## 3009 0 Check-Out 2015-09-17
## 3010 0 Check-Out 2015-09-17
## 3011 0 Check-Out 2015-09-17
## 3012 0 Check-Out 2015-09-17
## 3013 0 Check-Out 2015-09-17
## 3014 0 Check-Out 2015-09-17
## 3015 3 Check-Out 2015-09-17
## 3016 0 Check-Out 2015-09-17
## 3017 1 Check-Out 2015-09-17
## 3018 0 Canceled 2015-07-23
## 3019 0 Check-Out 2015-09-17
## 3020 0 Check-Out 2015-09-17
## 3021 0 Check-Out 2015-09-17
## 3022 1 Check-Out 2015-09-17
## 3023 2 Check-Out 2015-09-17
## 3024 0 Check-Out 2015-09-17
## 3025 0 Check-Out 2015-09-17
## 3026 1 Check-Out 2015-09-18
## 3027 2 Check-Out 2015-09-18
## 3028 1 Check-Out 2015-09-18
## 3029 2 Canceled 2015-08-22
## 3030 2 Check-Out 2015-09-18
## 3031 0 Check-Out 2015-09-18
## 3032 2 Check-Out 2015-09-18
## 3033 4 Check-Out 2015-09-18
## 3034 0 No-Show 2015-09-14
## 3035 1 Check-Out 2015-09-19
## 3036 0 Canceled 2015-08-31
## 3037 1 Check-Out 2015-09-18
## 3038 1 Check-Out 2015-09-21
## 3039 0 Check-Out 2015-09-21
## 3040 0 Check-Out 2015-09-16
## 3041 1 Check-Out 2015-09-16
## 3042 0 Check-Out 2015-09-16
## 3043 0 Check-Out 2015-09-16
## 3044 0 Canceled 2015-08-13
## 3045 1 Check-Out 2015-09-16
## 3046 0 Canceled 2015-08-13
## 3047 1 Check-Out 2015-09-16
## 3048 0 Check-Out 2015-09-16
## 3049 3 Check-Out 2015-09-16
## 3050 2 Canceled 2015-09-04
## 3051 3 Check-Out 2015-09-17
## 3052 1 Check-Out 2015-09-17
## 3053 0 Check-Out 2015-09-17
## 3054 2 Canceled 2015-08-15
## 3055 2 Check-Out 2015-09-17
## 3056 0 Check-Out 2015-09-17
## 3057 1 Check-Out 2015-09-17
## 3058 2 Check-Out 2015-09-17
## 3059 1 Check-Out 2015-09-18
## 3060 2 Check-Out 2015-09-18
## 3061 0 Check-Out 2015-09-18
## 3062 2 Check-Out 2015-09-18
## 3063 1 Check-Out 2015-09-18
## 3064 0 Check-Out 2015-09-18
## 3065 2 Check-Out 2015-09-18
## 3066 2 Check-Out 2015-09-18
## 3067 1 Check-Out 2015-09-18
## 3068 1 Check-Out 2015-09-18
## 3069 0 Check-Out 2015-09-18
## 3070 1 Check-Out 2015-09-18
## 3071 1 Check-Out 2015-09-18
## 3072 1 Check-Out 2015-09-18
## 3073 1 Check-Out 2015-09-18
## 3074 0 Check-Out 2015-09-18
## 3075 0 Check-Out 2015-09-18
## 3076 0 Canceled 2015-09-04
## 3077 1 Check-Out 2015-09-18
## 3078 1 Check-Out 2015-09-18
## 3079 1 Check-Out 2015-09-18
## 3080 0 Check-Out 2015-09-18
## 3081 1 Check-Out 2015-09-18
## 3082 1 Check-Out 2015-09-18
## 3083 2 Check-Out 2015-09-22
## 3084 1 Check-Out 2015-09-23
## 3085 1 Check-Out 2015-09-24
## 3086 1 Check-Out 2015-09-24
## 3087 1 Check-Out 2015-09-20
## 3088 3 Check-Out 2015-09-20
## 3089 1 Check-Out 2015-09-20
## 3090 0 Check-Out 2015-09-21
## 3091 0 Check-Out 2015-09-17
## 3092 1 Check-Out 2015-09-17
## 3093 2 Check-Out 2015-09-18
## 3094 0 Check-Out 2015-09-18
## 3095 0 Check-Out 2015-09-18
## 3096 1 No-Show 2015-09-16
## 3097 0 Check-Out 2015-09-18
## 3098 0 Check-Out 2015-09-18
## 3099 0 Check-Out 2015-09-18
## 3100 0 Check-Out 2015-09-18
## 3101 1 Check-Out 2015-09-18
## 3102 0 Check-Out 2015-09-18
## 3103 0 Check-Out 2015-09-18
## 3104 0 Check-Out 2015-09-18
## 3105 0 Check-Out 2015-09-18
## 3106 0 Check-Out 2015-09-18
## 3107 0 Canceled 2015-09-15
## 3108 0 Check-Out 2015-09-18
## 3109 0 Check-Out 2015-09-18
## 3110 0 Check-Out 2015-09-18
## 3111 0 Check-Out 2015-09-18
## 3112 0 Check-Out 2015-09-18
## 3113 0 Check-Out 2015-09-18
## 3114 1 Check-Out 2015-09-17
## 3115 2 Check-Out 2015-09-17
## 3116 1 No-Show 2015-09-16
## 3117 1 No-Show 2015-09-16
## 3118 2 Canceled 2015-09-04
## 3119 2 Check-Out 2015-09-18
## 3120 0 Check-Out 2015-09-18
## 3121 0 Check-Out 2015-09-18
## 3122 0 Check-Out 2015-09-18
## 3123 0 Canceled 2015-09-16
## 3124 0 Check-Out 2015-09-18
## [ reached 'max' / getOption("max.print") -- omitted 76206 rows ]
hotels %>%
filter(
adults == 0,
children >= 1
) %>%
select(adults, babies, children)
## adults babies children
## 1 0 0 3
## 2 0 0 2
## 3 0 0 2
## 4 0 0 2
## 5 0 0 2
## 6 0 0 3
## 7 0 1 2
## 8 0 0 2
## 9 0 0 2
## 10 0 0 2
## 11 0 0 2
## 12 0 0 2
## 13 0 0 2
## 14 0 0 2
## 15 0 0 2
## 16 0 0 2
## 17 0 0 2
## 18 0 0 2
## 19 0 0 2
## 20 0 0 2
## 21 0 0 1
## 22 0 0 2
## 23 0 0 2
## 24 0 0 2
## 25 0 0 2
## 26 0 0 2
## 27 0 0 2
## 28 0 0 2
## 29 0 0 2
## 30 0 0 2
## 31 0 0 2
## 32 0 0 2
## 33 0 0 2
## 34 0 0 2
## 35 0 0 2
## 36 0 0 1
## 37 0 0 2
## 38 0 0 2
## 39 0 0 2
## 40 0 0 2
## 41 0 0 2
## 42 0 0 2
## 43 0 0 2
## 44 0 0 2
## 45 0 0 2
## 46 0 0 2
## 47 0 0 2
## 48 0 0 2
## 49 0 0 2
## 50 0 0 2
## 51 0 0 2
## 52 0 0 2
## 53 0 0 2
## 54 0 0 3
## 55 0 0 2
## 56 0 0 2
## 57 0 0 3
## 58 0 0 2
## 59 0 0 2
## 60 0 0 2
## 61 0 0 2
## 62 0 0 2
## 63 0 0 2
## 64 0 0 2
## 65 0 0 2
## 66 0 0 2
## 67 0 0 2
## 68 0 0 2
## 69 0 0 2
## 70 0 0 2
## 71 0 0 2
## 72 0 0 2
## 73 0 0 2
## 74 0 0 2
## 75 0 0 2
## 76 0 0 2
## 77 0 0 2
## 78 0 0 2
## 79 0 0 2
## 80 0 0 2
## 81 0 0 2
## 82 0 0 2
## 83 0 0 2
## 84 0 0 2
## 85 0 0 2
## 86 0 0 2
## 87 0 0 2
## 88 0 0 2
## 89 0 0 2
## 90 0 0 2
## 91 0 0 2
## 92 0 0 2
## 93 0 0 2
## 94 0 0 2
## 95 0 0 2
## 96 0 0 2
## 97 0 0 2
## 98 0 0 2
## 99 0 0 2
## 100 0 0 2
## 101 0 0 2
## 102 0 0 2
## 103 0 0 2
## 104 0 0 2
## 105 0 0 2
## 106 0 0 2
## 107 0 0 2
## 108 0 0 2
## 109 0 0 2
## 110 0 0 2
## 111 0 0 2
## 112 0 0 2
## 113 0 0 2
## 114 0 0 2
## 115 0 0 2
## 116 0 0 2
## 117 0 0 2
## 118 0 1 2
## 119 0 0 2
## 120 0 0 2
## 121 0 0 2
## 122 0 0 2
## 123 0 0 3
## 124 0 0 2
## 125 0 0 2
## 126 0 0 2
## 127 0 0 2
## 128 0 0 2
## 129 0 0 2
## 130 0 0 2
## 131 0 0 3
## 132 0 0 2
## 133 0 0 2
## 134 0 0 2
## 135 0 0 2
## 136 0 0 2
## 137 0 0 2
## 138 0 0 2
## 139 0 1 2
## 140 0 0 2
## 141 0 0 2
## 142 0 0 2
## 143 0 0 2
## 144 0 0 2
## 145 0 0 2
## 146 0 0 2
## 147 0 0 2
## 148 0 0 2
## 149 0 0 2
## 150 0 0 2
## 151 0 0 2
## 152 0 0 2
## 153 0 0 2
## 154 0 0 2
## 155 0 0 2
## 156 0 0 2
## 157 0 0 2
## 158 0 0 2
## 159 0 0 2
## 160 0 0 3
## 161 0 0 2
## 162 0 0 2
## 163 0 0 2
## 164 0 0 2
## 165 0 0 2
## 166 0 0 2
## 167 0 0 2
## 168 0 0 2
## 169 0 0 2
## 170 0 0 2
## 171 0 0 2
## 172 0 0 2
## 173 0 0 2
## 174 0 0 2
## 175 0 0 2
## 176 0 0 2
## 177 0 0 2
## 178 0 0 2
## 179 0 0 2
## 180 0 0 2
## 181 0 0 2
## 182 0 0 2
## 183 0 0 2
## 184 0 0 2
## 185 0 0 2
## 186 0 0 2
## 187 0 0 2
## 188 0 0 2
## 189 0 0 3
## 190 0 0 2
## 191 0 0 2
## 192 0 0 2
## 193 0 0 2
## 194 0 0 2
## 195 0 0 2
## 196 0 0 2
## 197 0 0 2
## 198 0 0 2
## 199 0 0 2
## 200 0 0 1
## 201 0 0 2
## 202 0 0 2
## 203 0 0 2
## 204 0 0 2
## 205 0 0 2
## 206 0 0 2
## 207 0 0 2
## 208 0 0 2
## 209 0 0 3
## 210 0 0 1
## 211 0 0 2
## 212 0 0 2
## 213 0 0 2
## 214 0 0 2
## 215 0 0 2
## 216 0 0 3
## 217 0 0 2
## 218 0 0 2
## 219 0 0 2
## 220 0 0 2
## 221 0 0 2
## 222 0 0 2
## 223 0 0 3
hotels %>%
filter(
adults == 0,
children >= 1 | babies >= 1 # | means or
) %>%
select(adults, babies, children)
## adults babies children
## 1 0 0 3
## 2 0 0 2
## 3 0 0 2
## 4 0 0 2
## 5 0 0 2
## 6 0 0 3
## 7 0 1 2
## 8 0 0 2
## 9 0 0 2
## 10 0 0 2
## 11 0 0 2
## 12 0 0 2
## 13 0 0 2
## 14 0 0 2
## 15 0 0 2
## 16 0 0 2
## 17 0 0 2
## 18 0 0 2
## 19 0 0 2
## 20 0 0 2
## 21 0 0 1
## 22 0 0 2
## 23 0 0 2
## 24 0 0 2
## 25 0 0 2
## 26 0 0 2
## 27 0 0 2
## 28 0 0 2
## 29 0 0 2
## 30 0 0 2
## 31 0 0 2
## 32 0 0 2
## 33 0 0 2
## 34 0 0 2
## 35 0 0 2
## 36 0 0 1
## 37 0 0 2
## 38 0 0 2
## 39 0 0 2
## 40 0 0 2
## 41 0 0 2
## 42 0 0 2
## 43 0 0 2
## 44 0 0 2
## 45 0 0 2
## 46 0 0 2
## 47 0 0 2
## 48 0 0 2
## 49 0 0 2
## 50 0 0 2
## 51 0 0 2
## 52 0 0 2
## 53 0 0 2
## 54 0 0 3
## 55 0 0 2
## 56 0 0 2
## 57 0 0 3
## 58 0 0 2
## 59 0 0 2
## 60 0 0 2
## 61 0 0 2
## 62 0 0 2
## 63 0 0 2
## 64 0 0 2
## 65 0 0 2
## 66 0 0 2
## 67 0 0 2
## 68 0 0 2
## 69 0 0 2
## 70 0 0 2
## 71 0 0 2
## 72 0 0 2
## 73 0 0 2
## 74 0 0 2
## 75 0 0 2
## 76 0 0 2
## 77 0 0 2
## 78 0 0 2
## 79 0 0 2
## 80 0 0 2
## 81 0 0 2
## 82 0 0 2
## 83 0 0 2
## 84 0 0 2
## 85 0 0 2
## 86 0 0 2
## 87 0 0 2
## 88 0 0 2
## 89 0 0 2
## 90 0 0 2
## 91 0 0 2
## 92 0 0 2
## 93 0 0 2
## 94 0 0 2
## 95 0 0 2
## 96 0 0 2
## 97 0 0 2
## 98 0 0 2
## 99 0 0 2
## 100 0 0 2
## 101 0 0 2
## 102 0 0 2
## 103 0 0 2
## 104 0 0 2
## 105 0 0 2
## 106 0 0 2
## 107 0 0 2
## 108 0 0 2
## 109 0 0 2
## 110 0 0 2
## 111 0 0 2
## 112 0 0 2
## 113 0 0 2
## 114 0 0 2
## 115 0 0 2
## 116 0 0 2
## 117 0 0 2
## 118 0 1 2
## 119 0 0 2
## 120 0 0 2
## 121 0 0 2
## 122 0 0 2
## 123 0 0 3
## 124 0 0 2
## 125 0 0 2
## 126 0 0 2
## 127 0 0 2
## 128 0 0 2
## 129 0 0 2
## 130 0 0 2
## 131 0 0 3
## 132 0 0 2
## 133 0 0 2
## 134 0 0 2
## 135 0 0 2
## 136 0 0 2
## 137 0 0 2
## 138 0 0 2
## 139 0 1 2
## 140 0 0 2
## 141 0 0 2
## 142 0 0 2
## 143 0 0 2
## 144 0 0 2
## 145 0 0 2
## 146 0 0 2
## 147 0 0 2
## 148 0 0 2
## 149 0 0 2
## 150 0 0 2
## 151 0 0 2
## 152 0 0 2
## 153 0 0 2
## 154 0 0 2
## 155 0 0 2
## 156 0 0 2
## 157 0 0 2
## 158 0 0 2
## 159 0 0 2
## 160 0 0 3
## 161 0 0 2
## 162 0 0 2
## 163 0 0 2
## 164 0 0 2
## 165 0 0 2
## 166 0 0 2
## 167 0 0 2
## 168 0 0 2
## 169 0 0 2
## 170 0 0 2
## 171 0 0 2
## 172 0 0 2
## 173 0 0 2
## 174 0 0 2
## 175 0 0 2
## 176 0 0 2
## 177 0 0 2
## 178 0 0 2
## 179 0 0 2
## 180 0 0 2
## 181 0 0 2
## 182 0 0 2
## 183 0 0 2
## 184 0 0 2
## 185 0 0 2
## 186 0 0 2
## 187 0 0 2
## 188 0 0 2
## 189 0 0 3
## 190 0 0 2
## 191 0 0 2
## 192 0 0 2
## 193 0 0 2
## 194 0 0 2
## 195 0 0 2
## 196 0 0 2
## 197 0 0 2
## 198 0 0 2
## 199 0 0 2
## 200 0 0 1
## 201 0 0 2
## 202 0 0 2
## 203 0 0 2
## 204 0 0 2
## 205 0 0 2
## 206 0 0 2
## 207 0 0 2
## 208 0 0 2
## 209 0 0 3
## 210 0 0 1
## 211 0 0 2
## 212 0 0 2
## 213 0 0 2
## 214 0 0 2
## 215 0 0 2
## 216 0 0 3
## 217 0 0 2
## 218 0 0 2
## 219 0 0 2
## 220 0 0 2
## 221 0 0 2
## 222 0 0 2
## 223 0 0 3
hotels %>%
distinct(hotel, market_segment) %>%
arrange(hotel, market_segment)
## hotel market_segment
## 1 City Hotel Aviation
## 2 City Hotel Complementary
## 3 City Hotel Corporate
## 4 City Hotel Direct
## 5 City Hotel Groups
## 6 City Hotel Offline TA/TO
## 7 City Hotel Online TA
## 8 City Hotel Undefined
## 9 Resort Hotel Complementary
## 10 Resort Hotel Corporate
## 11 Resort Hotel Direct
## 12 Resort Hotel Groups
## 13 Resort Hotel Offline TA/TO
## 14 Resort Hotel Online TA
# alphabetical order by default
hotels %>%
count(market_segment) %>%
arrange(n)
## market_segment n
## 1 Undefined 2
## 2 Aviation 237
## 3 Complementary 743
## 4 Corporate 5295
## 5 Direct 12606
## 6 Groups 19811
## 7 Offline TA/TO 24219
## 8 Online TA 56477
# descending frequency order
hotels %>%
count(market_segment, sort = TRUE) %>%
arrange(desc(n))
## market_segment n
## 1 Online TA 56477
## 2 Offline TA/TO 24219
## 3 Groups 19811
## 4 Direct 12606
## 5 Corporate 5295
## 6 Complementary 743
## 7 Aviation 237
## 8 Undefined 2
hotels %>%
count(hotel, market_segment)
## hotel market_segment n
## 1 City Hotel Aviation 237
## 2 City Hotel Complementary 542
## 3 City Hotel Corporate 2986
## 4 City Hotel Direct 6093
## 5 City Hotel Groups 13975
## 6 City Hotel Offline TA/TO 16747
## 7 City Hotel Online TA 38748
## 8 City Hotel Undefined 2
## 9 Resort Hotel Complementary 201
## 10 Resort Hotel Corporate 2309
## 11 Resort Hotel Direct 6513
## 12 Resort Hotel Groups 5836
## 13 Resort Hotel Offline TA/TO 7472
## 14 Resort Hotel Online TA 17729
# hotel type first
hotels %>%
count(hotel, market_segment)
## hotel market_segment n
## 1 City Hotel Aviation 237
## 2 City Hotel Complementary 542
## 3 City Hotel Corporate 2986
## 4 City Hotel Direct 6093
## 5 City Hotel Groups 13975
## 6 City Hotel Offline TA/TO 16747
## 7 City Hotel Online TA 38748
## 8 City Hotel Undefined 2
## 9 Resort Hotel Complementary 201
## 10 Resort Hotel Corporate 2309
## 11 Resort Hotel Direct 6513
## 12 Resort Hotel Groups 5836
## 13 Resort Hotel Offline TA/TO 7472
## 14 Resort Hotel Online TA 17729
# market segment first
hotels %>%
count(market_segment, hotel)
## market_segment hotel n
## 1 Aviation City Hotel 237
## 2 Complementary City Hotel 542
## 3 Complementary Resort Hotel 201
## 4 Corporate City Hotel 2986
## 5 Corporate Resort Hotel 2309
## 6 Direct City Hotel 6093
## 7 Direct Resort Hotel 6513
## 8 Groups City Hotel 13975
## 9 Groups Resort Hotel 5836
## 10 Offline TA/TO City Hotel 16747
## 11 Offline TA/TO Resort Hotel 7472
## 12 Online TA City Hotel 38748
## 13 Online TA Resort Hotel 17729
## 14 Undefined City Hotel 2
hotels %>%
mutate(little_ones = children + babies) %>%
select(children, babies, little_ones) %>%
arrange(desc(little_ones))
## children babies little_ones
## 1 10 0 10
## 2 0 10 10
## 3 0 9 9
## 4 2 1 3
## 5 2 1 3
## 6 2 1 3
## 7 3 0 3
## 8 2 1 3
## 9 2 1 3
## 10 3 0 3
## 11 3 0 3
## 12 2 1 3
## 13 2 1 3
## 14 2 1 3
## 15 3 0 3
## 16 3 0 3
## 17 3 0 3
## 18 3 0 3
## 19 3 0 3
## 20 3 0 3
## 21 3 0 3
## 22 3 0 3
## 23 2 1 3
## 24 3 0 3
## 25 3 0 3
## 26 3 0 3
## 27 3 0 3
## 28 2 1 3
## 29 2 1 3
## 30 2 1 3
## 31 3 0 3
## 32 3 0 3
## 33 3 0 3
## 34 3 0 3
## 35 2 1 3
## 36 3 0 3
## 37 2 1 3
## 38 2 1 3
## 39 3 0 3
## 40 2 1 3
## 41 3 0 3
## 42 3 0 3
## 43 3 0 3
## 44 3 0 3
## 45 3 0 3
## 46 2 1 3
## 47 3 0 3
## 48 3 0 3
## 49 3 0 3
## 50 3 0 3
## 51 2 1 3
## 52 3 0 3
## 53 3 0 3
## 54 3 0 3
## 55 3 0 3
## 56 2 1 3
## 57 2 1 3
## 58 2 1 3
## 59 2 1 3
## 60 2 1 3
## 61 2 1 3
## 62 3 0 3
## 63 3 0 3
## 64 1 2 3
## 65 1 2 3
## 66 2 1 3
## 67 3 0 3
## 68 2 1 3
## 69 3 0 3
## 70 3 0 3
## 71 3 0 3
## 72 3 0 3
## 73 3 0 3
## 74 3 0 3
## 75 3 0 3
## 76 3 0 3
## 77 2 1 3
## 78 3 0 3
## 79 3 0 3
## 80 2 1 3
## 81 3 0 3
## 82 2 1 3
## 83 3 0 3
## 84 2 1 3
## 85 2 1 3
## 86 3 0 3
## 87 3 0 3
## 88 1 2 3
## 89 3 0 3
## 90 3 0 3
## 91 3 0 3
## 92 3 0 3
## 93 3 0 3
## 94 3 0 3
## 95 3 0 3
## 96 3 0 3
## 97 3 0 3
## 98 3 0 3
## 99 3 0 3
## 100 3 0 3
## 101 3 0 3
## 102 3 0 3
## 103 3 0 3
## 104 3 0 3
## 105 3 0 3
## 106 3 0 3
## 107 3 0 3
## 108 3 0 3
## 109 2 1 3
## 110 3 0 3
## 111 3 0 3
## 112 3 0 3
## 113 3 0 3
## 114 3 0 3
## 115 2 0 2
## 116 2 0 2
## 117 2 0 2
## 118 2 0 2
## 119 2 0 2
## 120 2 0 2
## 121 2 0 2
## 122 2 0 2
## 123 2 0 2
## 124 2 0 2
## 125 2 0 2
## 126 2 0 2
## 127 2 0 2
## 128 2 0 2
## 129 2 0 2
## 130 2 0 2
## 131 2 0 2
## 132 0 2 2
## 133 2 0 2
## 134 1 1 2
## 135 2 0 2
## 136 2 0 2
## 137 2 0 2
## 138 2 0 2
## 139 2 0 2
## 140 2 0 2
## 141 2 0 2
## 142 2 0 2
## 143 2 0 2
## 144 2 0 2
## 145 2 0 2
## 146 2 0 2
## 147 2 0 2
## 148 2 0 2
## 149 2 0 2
## 150 1 1 2
## 151 2 0 2
## 152 2 0 2
## 153 2 0 2
## 154 2 0 2
## 155 2 0 2
## 156 2 0 2
## 157 2 0 2
## 158 2 0 2
## 159 2 0 2
## 160 2 0 2
## 161 2 0 2
## 162 2 0 2
## 163 2 0 2
## 164 2 0 2
## 165 2 0 2
## 166 2 0 2
## 167 2 0 2
## 168 2 0 2
## 169 2 0 2
## 170 2 0 2
## 171 2 0 2
## 172 2 0 2
## 173 2 0 2
## 174 2 0 2
## 175 2 0 2
## 176 2 0 2
## 177 2 0 2
## 178 2 0 2
## 179 2 0 2
## 180 2 0 2
## 181 2 0 2
## 182 2 0 2
## 183 2 0 2
## 184 2 0 2
## 185 2 0 2
## 186 2 0 2
## 187 2 0 2
## 188 2 0 2
## 189 1 1 2
## 190 2 0 2
## 191 2 0 2
## 192 2 0 2
## 193 2 0 2
## 194 1 1 2
## 195 2 0 2
## 196 2 0 2
## 197 2 0 2
## 198 1 1 2
## 199 2 0 2
## 200 2 0 2
## 201 2 0 2
## 202 2 0 2
## 203 2 0 2
## 204 2 0 2
## 205 2 0 2
## 206 2 0 2
## 207 2 0 2
## 208 2 0 2
## 209 2 0 2
## 210 2 0 2
## 211 2 0 2
## 212 2 0 2
## 213 1 1 2
## 214 2 0 2
## 215 2 0 2
## 216 2 0 2
## 217 2 0 2
## 218 2 0 2
## 219 2 0 2
## 220 2 0 2
## 221 2 0 2
## 222 2 0 2
## 223 1 1 2
## 224 2 0 2
## 225 2 0 2
## 226 2 0 2
## 227 2 0 2
## 228 2 0 2
## 229 2 0 2
## 230 2 0 2
## 231 2 0 2
## 232 2 0 2
## 233 2 0 2
## 234 2 0 2
## 235 2 0 2
## 236 2 0 2
## 237 2 0 2
## 238 2 0 2
## 239 2 0 2
## 240 2 0 2
## 241 2 0 2
## 242 2 0 2
## 243 2 0 2
## 244 2 0 2
## 245 2 0 2
## 246 2 0 2
## 247 2 0 2
## 248 2 0 2
## 249 2 0 2
## 250 2 0 2
## 251 2 0 2
## 252 2 0 2
## 253 2 0 2
## 254 2 0 2
## 255 2 0 2
## 256 2 0 2
## 257 2 0 2
## 258 2 0 2
## 259 2 0 2
## 260 2 0 2
## 261 2 0 2
## 262 2 0 2
## 263 2 0 2
## 264 2 0 2
## 265 2 0 2
## 266 2 0 2
## 267 2 0 2
## 268 2 0 2
## 269 2 0 2
## 270 2 0 2
## 271 2 0 2
## 272 2 0 2
## 273 2 0 2
## 274 2 0 2
## 275 2 0 2
## 276 2 0 2
## 277 2 0 2
## 278 2 0 2
## 279 2 0 2
## 280 2 0 2
## 281 2 0 2
## 282 2 0 2
## 283 2 0 2
## 284 2 0 2
## 285 2 0 2
## 286 2 0 2
## 287 2 0 2
## 288 2 0 2
## 289 2 0 2
## 290 2 0 2
## 291 2 0 2
## 292 2 0 2
## 293 2 0 2
## 294 2 0 2
## 295 2 0 2
## 296 2 0 2
## 297 2 0 2
## 298 2 0 2
## 299 2 0 2
## 300 2 0 2
## 301 2 0 2
## 302 2 0 2
## 303 2 0 2
## 304 2 0 2
## 305 2 0 2
## 306 2 0 2
## 307 2 0 2
## 308 2 0 2
## 309 2 0 2
## 310 2 0 2
## 311 2 0 2
## 312 2 0 2
## 313 2 0 2
## 314 2 0 2
## 315 2 0 2
## 316 2 0 2
## 317 2 0 2
## 318 2 0 2
## 319 2 0 2
## 320 2 0 2
## 321 2 0 2
## 322 2 0 2
## 323 2 0 2
## 324 2 0 2
## 325 2 0 2
## 326 2 0 2
## 327 2 0 2
## 328 2 0 2
## 329 2 0 2
## 330 2 0 2
## 331 2 0 2
## 332 2 0 2
## 333 2 0 2
## 334 2 0 2
## 335 2 0 2
## 336 2 0 2
## 337 2 0 2
## 338 2 0 2
## 339 2 0 2
## 340 2 0 2
## 341 2 0 2
## 342 2 0 2
## 343 2 0 2
## 344 2 0 2
## 345 2 0 2
## 346 2 0 2
## 347 2 0 2
## 348 2 0 2
## 349 2 0 2
## 350 2 0 2
## 351 2 0 2
## 352 2 0 2
## 353 2 0 2
## 354 2 0 2
## 355 2 0 2
## 356 2 0 2
## 357 2 0 2
## 358 2 0 2
## 359 2 0 2
## 360 2 0 2
## 361 2 0 2
## 362 2 0 2
## 363 2 0 2
## 364 2 0 2
## 365 2 0 2
## 366 2 0 2
## 367 2 0 2
## 368 2 0 2
## 369 2 0 2
## 370 2 0 2
## 371 2 0 2
## 372 2 0 2
## 373 1 1 2
## 374 2 0 2
## 375 0 2 2
## 376 2 0 2
## 377 2 0 2
## 378 2 0 2
## 379 2 0 2
## 380 2 0 2
## 381 2 0 2
## 382 2 0 2
## 383 2 0 2
## 384 2 0 2
## 385 2 0 2
## 386 2 0 2
## 387 2 0 2
## 388 2 0 2
## 389 2 0 2
## 390 2 0 2
## 391 2 0 2
## 392 2 0 2
## 393 2 0 2
## 394 2 0 2
## 395 2 0 2
## 396 2 0 2
## 397 2 0 2
## 398 2 0 2
## 399 2 0 2
## 400 2 0 2
## 401 2 0 2
## 402 1 1 2
## 403 2 0 2
## 404 2 0 2
## 405 2 0 2
## 406 2 0 2
## 407 2 0 2
## 408 2 0 2
## 409 2 0 2
## 410 2 0 2
## 411 2 0 2
## 412 2 0 2
## 413 2 0 2
## 414 2 0 2
## 415 2 0 2
## 416 2 0 2
## 417 2 0 2
## 418 2 0 2
## 419 2 0 2
## 420 1 1 2
## 421 2 0 2
## 422 2 0 2
## 423 2 0 2
## 424 2 0 2
## 425 2 0 2
## 426 2 0 2
## 427 2 0 2
## 428 1 1 2
## 429 2 0 2
## 430 2 0 2
## 431 2 0 2
## 432 2 0 2
## 433 2 0 2
## 434 2 0 2
## 435 2 0 2
## 436 2 0 2
## 437 2 0 2
## 438 2 0 2
## 439 2 0 2
## 440 2 0 2
## 441 2 0 2
## 442 2 0 2
## 443 2 0 2
## 444 2 0 2
## 445 2 0 2
## 446 2 0 2
## 447 2 0 2
## 448 2 0 2
## 449 2 0 2
## 450 2 0 2
## 451 2 0 2
## 452 2 0 2
## 453 2 0 2
## 454 2 0 2
## 455 2 0 2
## 456 2 0 2
## 457 2 0 2
## 458 2 0 2
## 459 2 0 2
## 460 2 0 2
## 461 2 0 2
## 462 2 0 2
## 463 2 0 2
## 464 2 0 2
## 465 2 0 2
## 466 2 0 2
## 467 2 0 2
## 468 2 0 2
## 469 2 0 2
## 470 2 0 2
## 471 2 0 2
## 472 2 0 2
## 473 2 0 2
## 474 2 0 2
## 475 2 0 2
## 476 2 0 2
## 477 2 0 2
## 478 2 0 2
## 479 2 0 2
## 480 0 2 2
## 481 2 0 2
## 482 2 0 2
## 483 2 0 2
## 484 2 0 2
## 485 2 0 2
## 486 2 0 2
## 487 2 0 2
## 488 2 0 2
## 489 1 1 2
## 490 2 0 2
## 491 2 0 2
## 492 2 0 2
## 493 2 0 2
## 494 1 1 2
## 495 2 0 2
## 496 2 0 2
## 497 2 0 2
## 498 2 0 2
## 499 2 0 2
## 500 2 0 2
## 501 2 0 2
## 502 2 0 2
## 503 2 0 2
## 504 2 0 2
## 505 2 0 2
## 506 2 0 2
## 507 2 0 2
## 508 2 0 2
## 509 1 1 2
## 510 2 0 2
## 511 2 0 2
## 512 2 0 2
## 513 2 0 2
## 514 2 0 2
## 515 2 0 2
## 516 2 0 2
## 517 2 0 2
## 518 2 0 2
## 519 2 0 2
## 520 2 0 2
## 521 2 0 2
## 522 2 0 2
## 523 2 0 2
## 524 2 0 2
## 525 2 0 2
## 526 2 0 2
## 527 2 0 2
## 528 2 0 2
## 529 2 0 2
## 530 2 0 2
## 531 2 0 2
## 532 2 0 2
## 533 2 0 2
## 534 2 0 2
## 535 2 0 2
## 536 2 0 2
## 537 2 0 2
## 538 2 0 2
## 539 2 0 2
## 540 1 1 2
## 541 2 0 2
## 542 2 0 2
## 543 2 0 2
## 544 2 0 2
## 545 2 0 2
## 546 2 0 2
## 547 2 0 2
## 548 2 0 2
## 549 2 0 2
## 550 2 0 2
## 551 2 0 2
## 552 2 0 2
## 553 2 0 2
## 554 2 0 2
## 555 2 0 2
## 556 2 0 2
## 557 2 0 2
## 558 2 0 2
## 559 2 0 2
## 560 2 0 2
## 561 1 1 2
## 562 2 0 2
## 563 2 0 2
## 564 2 0 2
## 565 2 0 2
## 566 2 0 2
## 567 2 0 2
## 568 2 0 2
## 569 2 0 2
## 570 2 0 2
## 571 2 0 2
## 572 2 0 2
## 573 2 0 2
## 574 2 0 2
## 575 2 0 2
## 576 2 0 2
## 577 2 0 2
## 578 2 0 2
## 579 2 0 2
## 580 2 0 2
## 581 2 0 2
## 582 2 0 2
## 583 2 0 2
## 584 2 0 2
## 585 2 0 2
## 586 2 0 2
## 587 2 0 2
## 588 2 0 2
## 589 2 0 2
## 590 2 0 2
## 591 2 0 2
## 592 2 0 2
## 593 2 0 2
## 594 2 0 2
## 595 2 0 2
## 596 2 0 2
## 597 2 0 2
## 598 2 0 2
## 599 2 0 2
## 600 2 0 2
## 601 2 0 2
## 602 2 0 2
## 603 2 0 2
## 604 2 0 2
## 605 2 0 2
## 606 2 0 2
## 607 2 0 2
## 608 2 0 2
## 609 2 0 2
## 610 2 0 2
## 611 2 0 2
## 612 2 0 2
## 613 2 0 2
## 614 2 0 2
## 615 2 0 2
## 616 2 0 2
## 617 2 0 2
## 618 2 0 2
## 619 2 0 2
## 620 2 0 2
## 621 2 0 2
## 622 2 0 2
## 623 2 0 2
## 624 2 0 2
## 625 2 0 2
## 626 2 0 2
## 627 2 0 2
## 628 2 0 2
## 629 2 0 2
## 630 2 0 2
## 631 2 0 2
## 632 2 0 2
## 633 2 0 2
## 634 2 0 2
## 635 2 0 2
## 636 2 0 2
## 637 2 0 2
## 638 2 0 2
## 639 2 0 2
## 640 2 0 2
## 641 2 0 2
## 642 2 0 2
## 643 2 0 2
## 644 2 0 2
## 645 2 0 2
## 646 2 0 2
## 647 2 0 2
## 648 2 0 2
## 649 2 0 2
## 650 2 0 2
## 651 2 0 2
## 652 2 0 2
## 653 2 0 2
## 654 2 0 2
## 655 2 0 2
## 656 2 0 2
## 657 2 0 2
## 658 2 0 2
## 659 2 0 2
## 660 2 0 2
## 661 2 0 2
## 662 2 0 2
## 663 2 0 2
## 664 2 0 2
## 665 2 0 2
## 666 2 0 2
## 667 2 0 2
## 668 2 0 2
## 669 2 0 2
## 670 2 0 2
## 671 2 0 2
## 672 2 0 2
## 673 2 0 2
## 674 2 0 2
## 675 2 0 2
## 676 2 0 2
## 677 2 0 2
## 678 2 0 2
## 679 2 0 2
## 680 2 0 2
## 681 2 0 2
## 682 2 0 2
## 683 2 0 2
## 684 2 0 2
## 685 2 0 2
## 686 2 0 2
## 687 2 0 2
## 688 2 0 2
## 689 2 0 2
## 690 2 0 2
## 691 2 0 2
## 692 2 0 2
## 693 2 0 2
## 694 2 0 2
## 695 2 0 2
## 696 2 0 2
## 697 2 0 2
## 698 2 0 2
## 699 2 0 2
## 700 2 0 2
## 701 2 0 2
## 702 2 0 2
## 703 2 0 2
## 704 2 0 2
## 705 2 0 2
## 706 2 0 2
## 707 2 0 2
## 708 2 0 2
## 709 2 0 2
## 710 2 0 2
## 711 2 0 2
## 712 2 0 2
## 713 2 0 2
## 714 2 0 2
## 715 2 0 2
## 716 2 0 2
## 717 2 0 2
## 718 2 0 2
## 719 2 0 2
## 720 2 0 2
## 721 2 0 2
## 722 2 0 2
## 723 2 0 2
## 724 2 0 2
## 725 2 0 2
## 726 2 0 2
## 727 2 0 2
## 728 2 0 2
## 729 2 0 2
## 730 2 0 2
## 731 2 0 2
## 732 2 0 2
## 733 2 0 2
## 734 2 0 2
## 735 2 0 2
## 736 2 0 2
## 737 2 0 2
## 738 2 0 2
## 739 2 0 2
## 740 2 0 2
## 741 2 0 2
## 742 2 0 2
## 743 2 0 2
## 744 2 0 2
## 745 2 0 2
## 746 2 0 2
## 747 2 0 2
## 748 2 0 2
## 749 2 0 2
## 750 2 0 2
## 751 2 0 2
## 752 2 0 2
## 753 2 0 2
## 754 2 0 2
## 755 2 0 2
## 756 2 0 2
## 757 2 0 2
## 758 2 0 2
## 759 2 0 2
## 760 2 0 2
## 761 2 0 2
## 762 2 0 2
## 763 2 0 2
## 764 2 0 2
## 765 2 0 2
## 766 2 0 2
## 767 1 1 2
## 768 2 0 2
## 769 2 0 2
## 770 2 0 2
## 771 2 0 2
## 772 2 0 2
## 773 2 0 2
## 774 2 0 2
## 775 2 0 2
## 776 2 0 2
## 777 1 1 2
## 778 1 1 2
## 779 2 0 2
## 780 2 0 2
## 781 2 0 2
## 782 2 0 2
## 783 2 0 2
## 784 2 0 2
## 785 2 0 2
## 786 2 0 2
## 787 2 0 2
## 788 2 0 2
## 789 2 0 2
## 790 2 0 2
## 791 2 0 2
## 792 2 0 2
## 793 2 0 2
## 794 2 0 2
## 795 2 0 2
## 796 2 0 2
## 797 2 0 2
## 798 2 0 2
## 799 2 0 2
## 800 2 0 2
## 801 2 0 2
## 802 2 0 2
## 803 2 0 2
## 804 2 0 2
## 805 2 0 2
## 806 2 0 2
## 807 2 0 2
## 808 2 0 2
## 809 2 0 2
## 810 2 0 2
## 811 2 0 2
## 812 2 0 2
## 813 2 0 2
## 814 2 0 2
## 815 2 0 2
## 816 2 0 2
## 817 2 0 2
## 818 2 0 2
## 819 2 0 2
## 820 2 0 2
## 821 2 0 2
## 822 2 0 2
## 823 2 0 2
## 824 2 0 2
## 825 2 0 2
## 826 2 0 2
## 827 2 0 2
## 828 2 0 2
## 829 2 0 2
## 830 2 0 2
## 831 2 0 2
## 832 2 0 2
## 833 2 0 2
## 834 2 0 2
## 835 2 0 2
## 836 2 0 2
## 837 2 0 2
## 838 2 0 2
## 839 2 0 2
## 840 2 0 2
## 841 2 0 2
## 842 2 0 2
## 843 2 0 2
## 844 2 0 2
## 845 2 0 2
## 846 2 0 2
## 847 2 0 2
## 848 2 0 2
## 849 2 0 2
## 850 2 0 2
## 851 2 0 2
## 852 2 0 2
## 853 2 0 2
## 854 2 0 2
## 855 2 0 2
## 856 2 0 2
## 857 2 0 2
## 858 2 0 2
## 859 2 0 2
## 860 2 0 2
## 861 2 0 2
## 862 2 0 2
## 863 2 0 2
## 864 2 0 2
## 865 2 0 2
## 866 2 0 2
## 867 2 0 2
## 868 2 0 2
## 869 2 0 2
## 870 2 0 2
## 871 2 0 2
## 872 2 0 2
## 873 2 0 2
## 874 2 0 2
## 875 2 0 2
## 876 2 0 2
## 877 2 0 2
## 878 2 0 2
## 879 2 0 2
## 880 2 0 2
## 881 2 0 2
## 882 2 0 2
## 883 2 0 2
## 884 2 0 2
## 885 2 0 2
## 886 2 0 2
## 887 2 0 2
## 888 2 0 2
## 889 2 0 2
## 890 2 0 2
## 891 2 0 2
## 892 2 0 2
## 893 2 0 2
## 894 2 0 2
## 895 2 0 2
## 896 2 0 2
## 897 2 0 2
## 898 2 0 2
## 899 2 0 2
## 900 2 0 2
## 901 2 0 2
## 902 2 0 2
## 903 2 0 2
## 904 2 0 2
## 905 2 0 2
## 906 2 0 2
## 907 2 0 2
## 908 2 0 2
## 909 2 0 2
## 910 2 0 2
## 911 2 0 2
## 912 2 0 2
## 913 2 0 2
## 914 2 0 2
## 915 2 0 2
## 916 2 0 2
## 917 2 0 2
## 918 2 0 2
## 919 2 0 2
## 920 2 0 2
## 921 2 0 2
## 922 2 0 2
## 923 2 0 2
## 924 2 0 2
## 925 2 0 2
## 926 2 0 2
## 927 2 0 2
## 928 2 0 2
## 929 2 0 2
## 930 2 0 2
## 931 2 0 2
## 932 2 0 2
## 933 2 0 2
## 934 2 0 2
## 935 2 0 2
## 936 2 0 2
## 937 2 0 2
## 938 2 0 2
## 939 2 0 2
## 940 2 0 2
## 941 2 0 2
## 942 2 0 2
## 943 2 0 2
## 944 2 0 2
## 945 2 0 2
## 946 2 0 2
## 947 2 0 2
## 948 2 0 2
## 949 2 0 2
## 950 2 0 2
## 951 2 0 2
## 952 2 0 2
## 953 2 0 2
## 954 2 0 2
## 955 2 0 2
## 956 2 0 2
## 957 2 0 2
## 958 2 0 2
## 959 2 0 2
## 960 2 0 2
## 961 2 0 2
## 962 2 0 2
## 963 2 0 2
## 964 2 0 2
## 965 2 0 2
## 966 2 0 2
## 967 2 0 2
## 968 2 0 2
## 969 0 2 2
## 970 2 0 2
## 971 2 0 2
## 972 2 0 2
## 973 2 0 2
## 974 2 0 2
## 975 2 0 2
## 976 2 0 2
## 977 2 0 2
## 978 2 0 2
## 979 2 0 2
## 980 2 0 2
## 981 2 0 2
## 982 2 0 2
## 983 2 0 2
## 984 2 0 2
## 985 2 0 2
## 986 2 0 2
## 987 2 0 2
## 988 2 0 2
## 989 2 0 2
## 990 2 0 2
## 991 2 0 2
## 992 2 0 2
## 993 2 0 2
## 994 2 0 2
## 995 2 0 2
## 996 2 0 2
## 997 2 0 2
## 998 2 0 2
## 999 1 1 2
## 1000 2 0 2
## 1001 2 0 2
## 1002 2 0 2
## 1003 2 0 2
## 1004 1 1 2
## 1005 2 0 2
## 1006 2 0 2
## 1007 2 0 2
## 1008 2 0 2
## 1009 2 0 2
## 1010 1 1 2
## 1011 2 0 2
## 1012 2 0 2
## 1013 1 1 2
## 1014 2 0 2
## 1015 2 0 2
## 1016 2 0 2
## 1017 2 0 2
## 1018 2 0 2
## 1019 2 0 2
## 1020 2 0 2
## 1021 2 0 2
## 1022 2 0 2
## 1023 2 0 2
## 1024 2 0 2
## 1025 2 0 2
## 1026 2 0 2
## 1027 2 0 2
## 1028 2 0 2
## 1029 2 0 2
## 1030 2 0 2
## 1031 2 0 2
## 1032 2 0 2
## 1033 2 0 2
## 1034 0 2 2
## 1035 2 0 2
## 1036 2 0 2
## 1037 2 0 2
## 1038 2 0 2
## 1039 2 0 2
## 1040 2 0 2
## 1041 2 0 2
## 1042 1 1 2
## 1043 2 0 2
## 1044 2 0 2
## 1045 2 0 2
## 1046 2 0 2
## 1047 2 0 2
## 1048 2 0 2
## 1049 2 0 2
## 1050 2 0 2
## 1051 2 0 2
## 1052 2 0 2
## 1053 2 0 2
## 1054 2 0 2
## 1055 2 0 2
## 1056 2 0 2
## 1057 2 0 2
## 1058 2 0 2
## 1059 2 0 2
## 1060 2 0 2
## 1061 2 0 2
## 1062 2 0 2
## 1063 2 0 2
## 1064 2 0 2
## 1065 2 0 2
## 1066 2 0 2
## 1067 2 0 2
## 1068 2 0 2
## 1069 2 0 2
## 1070 2 0 2
## 1071 2 0 2
## 1072 2 0 2
## 1073 2 0 2
## 1074 2 0 2
## 1075 2 0 2
## 1076 1 1 2
## 1077 2 0 2
## 1078 2 0 2
## 1079 2 0 2
## 1080 2 0 2
## 1081 1 1 2
## 1082 2 0 2
## 1083 1 1 2
## 1084 2 0 2
## 1085 2 0 2
## 1086 1 1 2
## 1087 2 0 2
## 1088 2 0 2
## 1089 2 0 2
## 1090 2 0 2
## 1091 2 0 2
## 1092 2 0 2
## 1093 2 0 2
## 1094 2 0 2
## 1095 2 0 2
## 1096 2 0 2
## 1097 2 0 2
## 1098 2 0 2
## 1099 2 0 2
## 1100 2 0 2
## 1101 2 0 2
## 1102 2 0 2
## 1103 2 0 2
## 1104 2 0 2
## 1105 2 0 2
## 1106 2 0 2
## 1107 1 1 2
## 1108 2 0 2
## 1109 2 0 2
## 1110 2 0 2
## 1111 2 0 2
## 1112 1 1 2
## 1113 2 0 2
## 1114 2 0 2
## 1115 2 0 2
## 1116 2 0 2
## 1117 2 0 2
## 1118 2 0 2
## 1119 2 0 2
## 1120 2 0 2
## 1121 2 0 2
## 1122 2 0 2
## 1123 2 0 2
## 1124 2 0 2
## 1125 2 0 2
## 1126 2 0 2
## 1127 2 0 2
## 1128 2 0 2
## 1129 2 0 2
## 1130 2 0 2
## 1131 2 0 2
## 1132 2 0 2
## 1133 2 0 2
## 1134 2 0 2
## 1135 2 0 2
## 1136 2 0 2
## 1137 2 0 2
## 1138 2 0 2
## 1139 2 0 2
## 1140 2 0 2
## 1141 2 0 2
## 1142 2 0 2
## 1143 2 0 2
## 1144 2 0 2
## 1145 2 0 2
## 1146 2 0 2
## 1147 2 0 2
## 1148 2 0 2
## 1149 2 0 2
## 1150 2 0 2
## 1151 2 0 2
## 1152 2 0 2
## 1153 2 0 2
## 1154 2 0 2
## 1155 1 1 2
## 1156 2 0 2
## 1157 2 0 2
## 1158 2 0 2
## 1159 2 0 2
## 1160 2 0 2
## 1161 2 0 2
## 1162 2 0 2
## 1163 2 0 2
## 1164 2 0 2
## 1165 2 0 2
## 1166 2 0 2
## 1167 2 0 2
## 1168 1 1 2
## 1169 2 0 2
## 1170 2 0 2
## 1171 2 0 2
## 1172 2 0 2
## 1173 2 0 2
## 1174 1 1 2
## 1175 2 0 2
## 1176 2 0 2
## 1177 2 0 2
## 1178 2 0 2
## 1179 2 0 2
## 1180 2 0 2
## 1181 2 0 2
## 1182 2 0 2
## 1183 1 1 2
## 1184 2 0 2
## 1185 2 0 2
## 1186 2 0 2
## 1187 2 0 2
## 1188 2 0 2
## 1189 2 0 2
## 1190 2 0 2
## 1191 2 0 2
## 1192 2 0 2
## 1193 2 0 2
## 1194 2 0 2
## 1195 2 0 2
## 1196 2 0 2
## 1197 2 0 2
## 1198 2 0 2
## 1199 2 0 2
## 1200 2 0 2
## 1201 2 0 2
## 1202 1 1 2
## 1203 2 0 2
## 1204 2 0 2
## 1205 2 0 2
## 1206 2 0 2
## 1207 2 0 2
## 1208 2 0 2
## 1209 2 0 2
## 1210 2 0 2
## 1211 2 0 2
## 1212 2 0 2
## 1213 1 1 2
## 1214 2 0 2
## 1215 2 0 2
## 1216 2 0 2
## 1217 2 0 2
## 1218 2 0 2
## 1219 2 0 2
## 1220 2 0 2
## 1221 2 0 2
## 1222 2 0 2
## 1223 1 1 2
## 1224 2 0 2
## 1225 2 0 2
## 1226 2 0 2
## 1227 2 0 2
## 1228 2 0 2
## 1229 2 0 2
## 1230 2 0 2
## 1231 2 0 2
## 1232 2 0 2
## 1233 2 0 2
## 1234 2 0 2
## 1235 2 0 2
## 1236 2 0 2
## 1237 2 0 2
## 1238 2 0 2
## 1239 2 0 2
## 1240 1 1 2
## 1241 1 1 2
## 1242 2 0 2
## 1243 2 0 2
## 1244 2 0 2
## 1245 1 1 2
## 1246 2 0 2
## 1247 2 0 2
## 1248 2 0 2
## 1249 2 0 2
## 1250 2 0 2
## 1251 2 0 2
## 1252 1 1 2
## 1253 2 0 2
## 1254 2 0 2
## 1255 2 0 2
## 1256 2 0 2
## 1257 2 0 2
## 1258 2 0 2
## 1259 2 0 2
## 1260 2 0 2
## 1261 2 0 2
## 1262 1 1 2
## 1263 2 0 2
## 1264 2 0 2
## 1265 1 1 2
## 1266 2 0 2
## 1267 2 0 2
## 1268 2 0 2
## 1269 2 0 2
## 1270 2 0 2
## 1271 2 0 2
## 1272 2 0 2
## 1273 2 0 2
## 1274 2 0 2
## 1275 2 0 2
## 1276 2 0 2
## 1277 2 0 2
## 1278 2 0 2
## 1279 2 0 2
## 1280 2 0 2
## 1281 2 0 2
## 1282 2 0 2
## 1283 2 0 2
## 1284 2 0 2
## 1285 2 0 2
## 1286 2 0 2
## 1287 2 0 2
## 1288 2 0 2
## 1289 2 0 2
## 1290 2 0 2
## 1291 2 0 2
## 1292 2 0 2
## 1293 2 0 2
## 1294 2 0 2
## 1295 2 0 2
## 1296 1 1 2
## 1297 2 0 2
## 1298 2 0 2
## 1299 2 0 2
## 1300 1 1 2
## 1301 2 0 2
## 1302 2 0 2
## 1303 2 0 2
## 1304 2 0 2
## 1305 2 0 2
## 1306 2 0 2
## 1307 2 0 2
## 1308 2 0 2
## 1309 2 0 2
## 1310 2 0 2
## 1311 2 0 2
## 1312 2 0 2
## 1313 2 0 2
## 1314 2 0 2
## 1315 1 1 2
## 1316 2 0 2
## 1317 2 0 2
## 1318 1 1 2
## 1319 2 0 2
## 1320 2 0 2
## 1321 1 1 2
## 1322 2 0 2
## 1323 2 0 2
## 1324 2 0 2
## 1325 2 0 2
## 1326 2 0 2
## 1327 2 0 2
## 1328 2 0 2
## 1329 2 0 2
## 1330 2 0 2
## 1331 2 0 2
## 1332 2 0 2
## 1333 2 0 2
## 1334 2 0 2
## 1335 2 0 2
## 1336 2 0 2
## 1337 2 0 2
## 1338 2 0 2
## 1339 2 0 2
## 1340 2 0 2
## 1341 2 0 2
## 1342 2 0 2
## 1343 2 0 2
## 1344 2 0 2
## 1345 2 0 2
## 1346 2 0 2
## 1347 1 1 2
## 1348 2 0 2
## 1349 2 0 2
## 1350 2 0 2
## 1351 2 0 2
## 1352 2 0 2
## 1353 2 0 2
## 1354 2 0 2
## 1355 2 0 2
## 1356 2 0 2
## 1357 1 1 2
## 1358 2 0 2
## 1359 2 0 2
## 1360 2 0 2
## 1361 2 0 2
## 1362 2 0 2
## 1363 2 0 2
## 1364 2 0 2
## 1365 2 0 2
## 1366 1 1 2
## 1367 2 0 2
## 1368 2 0 2
## 1369 2 0 2
## 1370 2 0 2
## 1371 2 0 2
## 1372 2 0 2
## 1373 2 0 2
## 1374 2 0 2
## 1375 1 1 2
## 1376 2 0 2
## 1377 2 0 2
## 1378 2 0 2
## 1379 1 1 2
## 1380 2 0 2
## 1381 2 0 2
## 1382 2 0 2
## 1383 2 0 2
## 1384 2 0 2
## 1385 2 0 2
## 1386 2 0 2
## 1387 2 0 2
## 1388 2 0 2
## 1389 2 0 2
## 1390 2 0 2
## 1391 2 0 2
## 1392 2 0 2
## 1393 1 1 2
## 1394 2 0 2
## 1395 2 0 2
## 1396 2 0 2
## 1397 2 0 2
## 1398 2 0 2
## 1399 2 0 2
## 1400 2 0 2
## 1401 2 0 2
## 1402 2 0 2
## 1403 2 0 2
## 1404 2 0 2
## 1405 2 0 2
## 1406 2 0 2
## 1407 2 0 2
## 1408 2 0 2
## 1409 2 0 2
## 1410 2 0 2
## 1411 2 0 2
## 1412 2 0 2
## 1413 2 0 2
## 1414 2 0 2
## 1415 2 0 2
## 1416 2 0 2
## 1417 2 0 2
## 1418 2 0 2
## 1419 2 0 2
## 1420 2 0 2
## 1421 2 0 2
## 1422 2 0 2
## 1423 2 0 2
## 1424 2 0 2
## 1425 2 0 2
## 1426 2 0 2
## 1427 2 0 2
## 1428 2 0 2
## 1429 2 0 2
## 1430 2 0 2
## 1431 1 1 2
## 1432 2 0 2
## 1433 1 1 2
## 1434 2 0 2
## 1435 2 0 2
## 1436 2 0 2
## 1437 2 0 2
## 1438 2 0 2
## 1439 2 0 2
## 1440 2 0 2
## 1441 2 0 2
## 1442 2 0 2
## 1443 2 0 2
## 1444 0 2 2
## 1445 2 0 2
## 1446 2 0 2
## 1447 2 0 2
## 1448 2 0 2
## 1449 2 0 2
## 1450 1 1 2
## 1451 2 0 2
## 1452 1 1 2
## 1453 2 0 2
## 1454 2 0 2
## 1455 2 0 2
## 1456 2 0 2
## 1457 2 0 2
## 1458 1 1 2
## 1459 2 0 2
## 1460 2 0 2
## 1461 2 0 2
## 1462 2 0 2
## 1463 2 0 2
## 1464 2 0 2
## 1465 2 0 2
## 1466 2 0 2
## 1467 2 0 2
## 1468 2 0 2
## 1469 2 0 2
## 1470 2 0 2
## 1471 2 0 2
## 1472 2 0 2
## 1473 2 0 2
## 1474 2 0 2
## 1475 2 0 2
## 1476 2 0 2
## 1477 2 0 2
## 1478 2 0 2
## 1479 2 0 2
## 1480 2 0 2
## 1481 2 0 2
## 1482 2 0 2
## 1483 2 0 2
## 1484 2 0 2
## 1485 2 0 2
## 1486 1 1 2
## 1487 1 1 2
## 1488 2 0 2
## 1489 2 0 2
## 1490 2 0 2
## 1491 2 0 2
## 1492 2 0 2
## 1493 2 0 2
## 1494 2 0 2
## 1495 1 1 2
## 1496 1 1 2
## 1497 2 0 2
## 1498 2 0 2
## 1499 2 0 2
## 1500 2 0 2
## 1501 1 1 2
## 1502 2 0 2
## 1503 2 0 2
## 1504 2 0 2
## 1505 2 0 2
## 1506 2 0 2
## 1507 1 1 2
## 1508 2 0 2
## 1509 0 2 2
## 1510 2 0 2
## 1511 2 0 2
## 1512 2 0 2
## 1513 2 0 2
## 1514 2 0 2
## 1515 2 0 2
## 1516 1 1 2
## 1517 2 0 2
## 1518 2 0 2
## 1519 2 0 2
## 1520 2 0 2
## 1521 1 1 2
## 1522 2 0 2
## 1523 2 0 2
## 1524 2 0 2
## 1525 2 0 2
## 1526 2 0 2
## 1527 2 0 2
## 1528 2 0 2
## 1529 2 0 2
## 1530 2 0 2
## 1531 2 0 2
## 1532 2 0 2
## 1533 2 0 2
## 1534 2 0 2
## 1535 2 0 2
## 1536 2 0 2
## 1537 2 0 2
## 1538 2 0 2
## 1539 2 0 2
## 1540 2 0 2
## 1541 2 0 2
## 1542 2 0 2
## 1543 1 1 2
## 1544 2 0 2
## 1545 2 0 2
## 1546 2 0 2
## 1547 2 0 2
## 1548 2 0 2
## 1549 2 0 2
## 1550 2 0 2
## 1551 2 0 2
## 1552 2 0 2
## 1553 2 0 2
## 1554 2 0 2
## 1555 2 0 2
## 1556 2 0 2
## 1557 2 0 2
## 1558 1 1 2
## 1559 2 0 2
## 1560 2 0 2
## 1561 2 0 2
## 1562 2 0 2
## 1563 2 0 2
## 1564 2 0 2
## 1565 2 0 2
## 1566 1 1 2
## 1567 2 0 2
## 1568 2 0 2
## 1569 2 0 2
## 1570 2 0 2
## 1571 2 0 2
## 1572 2 0 2
## 1573 2 0 2
## 1574 2 0 2
## 1575 2 0 2
## 1576 2 0 2
## 1577 2 0 2
## 1578 2 0 2
## 1579 2 0 2
## 1580 2 0 2
## 1581 2 0 2
## 1582 2 0 2
## 1583 2 0 2
## 1584 2 0 2
## 1585 2 0 2
## 1586 2 0 2
## 1587 2 0 2
## 1588 1 1 2
## 1589 1 1 2
## 1590 1 1 2
## 1591 2 0 2
## 1592 2 0 2
## 1593 2 0 2
## 1594 2 0 2
## 1595 2 0 2
## 1596 2 0 2
## 1597 2 0 2
## 1598 2 0 2
## 1599 2 0 2
## 1600 2 0 2
## 1601 1 1 2
## 1602 2 0 2
## 1603 2 0 2
## 1604 2 0 2
## 1605 2 0 2
## 1606 2 0 2
## 1607 2 0 2
## 1608 2 0 2
## 1609 2 0 2
## 1610 2 0 2
## 1611 2 0 2
## 1612 2 0 2
## 1613 0 2 2
## 1614 2 0 2
## 1615 2 0 2
## 1616 2 0 2
## 1617 2 0 2
## 1618 2 0 2
## 1619 1 1 2
## 1620 2 0 2
## 1621 2 0 2
## 1622 2 0 2
## 1623 2 0 2
## 1624 1 1 2
## 1625 2 0 2
## 1626 2 0 2
## 1627 1 1 2
## 1628 2 0 2
## 1629 2 0 2
## 1630 2 0 2
## 1631 2 0 2
## 1632 2 0 2
## 1633 2 0 2
## 1634 2 0 2
## 1635 2 0 2
## 1636 2 0 2
## 1637 2 0 2
## 1638 2 0 2
## 1639 1 1 2
## 1640 2 0 2
## 1641 2 0 2
## 1642 2 0 2
## 1643 2 0 2
## 1644 2 0 2
## 1645 2 0 2
## 1646 2 0 2
## 1647 2 0 2
## 1648 2 0 2
## 1649 2 0 2
## 1650 2 0 2
## 1651 1 1 2
## 1652 2 0 2
## 1653 2 0 2
## 1654 2 0 2
## 1655 2 0 2
## 1656 2 0 2
## 1657 2 0 2
## 1658 2 0 2
## 1659 2 0 2
## 1660 1 1 2
## 1661 2 0 2
## 1662 2 0 2
## 1663 1 1 2
## 1664 2 0 2
## 1665 2 0 2
## 1666 2 0 2
## 1667 2 0 2
## 1668 2 0 2
## 1669 2 0 2
## 1670 2 0 2
## 1671 2 0 2
## 1672 2 0 2
## 1673 2 0 2
## 1674 2 0 2
## 1675 2 0 2
## 1676 2 0 2
## 1677 2 0 2
## 1678 2 0 2
## 1679 2 0 2
## 1680 2 0 2
## 1681 2 0 2
## 1682 2 0 2
## 1683 2 0 2
## 1684 2 0 2
## 1685 2 0 2
## 1686 2 0 2
## 1687 1 1 2
## 1688 2 0 2
## 1689 2 0 2
## 1690 2 0 2
## 1691 2 0 2
## 1692 2 0 2
## 1693 2 0 2
## 1694 2 0 2
## 1695 2 0 2
## 1696 1 1 2
## 1697 2 0 2
## 1698 2 0 2
## 1699 1 1 2
## 1700 2 0 2
## 1701 2 0 2
## 1702 2 0 2
## 1703 2 0 2
## 1704 2 0 2
## 1705 2 0 2
## 1706 2 0 2
## 1707 2 0 2
## 1708 2 0 2
## 1709 2 0 2
## 1710 2 0 2
## 1711 2 0 2
## 1712 2 0 2
## 1713 2 0 2
## 1714 2 0 2
## 1715 2 0 2
## 1716 2 0 2
## 1717 1 1 2
## 1718 2 0 2
## 1719 2 0 2
## 1720 2 0 2
## 1721 2 0 2
## 1722 2 0 2
## 1723 2 0 2
## 1724 2 0 2
## 1725 2 0 2
## 1726 2 0 2
## 1727 2 0 2
## 1728 2 0 2
## 1729 2 0 2
## 1730 2 0 2
## 1731 2 0 2
## 1732 1 1 2
## 1733 2 0 2
## 1734 1 1 2
## 1735 2 0 2
## 1736 2 0 2
## 1737 2 0 2
## 1738 2 0 2
## 1739 2 0 2
## 1740 2 0 2
## 1741 2 0 2
## 1742 2 0 2
## 1743 2 0 2
## 1744 2 0 2
## 1745 2 0 2
## 1746 2 0 2
## 1747 2 0 2
## 1748 2 0 2
## 1749 2 0 2
## 1750 2 0 2
## 1751 2 0 2
## 1752 2 0 2
## 1753 2 0 2
## 1754 1 1 2
## 1755 2 0 2
## 1756 2 0 2
## 1757 2 0 2
## 1758 2 0 2
## 1759 2 0 2
## 1760 2 0 2
## 1761 2 0 2
## 1762 2 0 2
## 1763 2 0 2
## 1764 2 0 2
## 1765 2 0 2
## 1766 1 1 2
## 1767 2 0 2
## 1768 2 0 2
## 1769 2 0 2
## 1770 2 0 2
## 1771 2 0 2
## 1772 2 0 2
## 1773 2 0 2
## 1774 2 0 2
## 1775 2 0 2
## 1776 2 0 2
## 1777 1 1 2
## 1778 2 0 2
## 1779 2 0 2
## 1780 2 0 2
## 1781 2 0 2
## 1782 2 0 2
## 1783 2 0 2
## 1784 2 0 2
## 1785 2 0 2
## 1786 2 0 2
## 1787 2 0 2
## 1788 2 0 2
## 1789 2 0 2
## 1790 2 0 2
## 1791 2 0 2
## 1792 2 0 2
## 1793 2 0 2
## 1794 2 0 2
## 1795 2 0 2
## 1796 0 2 2
## 1797 2 0 2
## 1798 2 0 2
## 1799 2 0 2
## 1800 2 0 2
## 1801 2 0 2
## 1802 2 0 2
## 1803 2 0 2
## 1804 2 0 2
## 1805 2 0 2
## 1806 2 0 2
## 1807 2 0 2
## 1808 2 0 2
## 1809 2 0 2
## 1810 2 0 2
## 1811 2 0 2
## 1812 2 0 2
## 1813 2 0 2
## 1814 2 0 2
## 1815 2 0 2
## 1816 2 0 2
## 1817 1 1 2
## 1818 2 0 2
## 1819 2 0 2
## 1820 2 0 2
## 1821 2 0 2
## 1822 2 0 2
## 1823 2 0 2
## 1824 2 0 2
## 1825 2 0 2
## 1826 2 0 2
## 1827 2 0 2
## 1828 2 0 2
## 1829 2 0 2
## 1830 2 0 2
## 1831 2 0 2
## 1832 2 0 2
## 1833 1 1 2
## 1834 2 0 2
## 1835 2 0 2
## 1836 2 0 2
## 1837 2 0 2
## 1838 2 0 2
## 1839 2 0 2
## 1840 2 0 2
## 1841 2 0 2
## 1842 2 0 2
## 1843 2 0 2
## 1844 2 0 2
## 1845 2 0 2
## 1846 2 0 2
## 1847 2 0 2
## 1848 2 0 2
## 1849 2 0 2
## 1850 2 0 2
## 1851 2 0 2
## 1852 2 0 2
## 1853 2 0 2
## 1854 2 0 2
## 1855 2 0 2
## 1856 2 0 2
## 1857 2 0 2
## 1858 2 0 2
## 1859 2 0 2
## 1860 2 0 2
## 1861 2 0 2
## 1862 2 0 2
## 1863 2 0 2
## 1864 2 0 2
## 1865 2 0 2
## 1866 2 0 2
## 1867 2 0 2
## 1868 2 0 2
## 1869 2 0 2
## 1870 2 0 2
## 1871 2 0 2
## 1872 2 0 2
## 1873 2 0 2
## 1874 2 0 2
## 1875 2 0 2
## 1876 2 0 2
## 1877 2 0 2
## 1878 2 0 2
## 1879 2 0 2
## 1880 2 0 2
## 1881 2 0 2
## 1882 2 0 2
## 1883 2 0 2
## 1884 2 0 2
## 1885 2 0 2
## 1886 2 0 2
## 1887 2 0 2
## 1888 2 0 2
## 1889 2 0 2
## 1890 2 0 2
## 1891 2 0 2
## 1892 2 0 2
## 1893 2 0 2
## 1894 2 0 2
## 1895 2 0 2
## 1896 2 0 2
## 1897 2 0 2
## 1898 2 0 2
## 1899 1 1 2
## 1900 2 0 2
## 1901 2 0 2
## 1902 2 0 2
## 1903 2 0 2
## 1904 2 0 2
## 1905 2 0 2
## 1906 2 0 2
## 1907 2 0 2
## 1908 2 0 2
## 1909 2 0 2
## 1910 2 0 2
## 1911 2 0 2
## 1912 2 0 2
## 1913 2 0 2
## 1914 2 0 2
## 1915 2 0 2
## 1916 2 0 2
## 1917 2 0 2
## 1918 2 0 2
## 1919 2 0 2
## 1920 2 0 2
## 1921 2 0 2
## 1922 2 0 2
## 1923 2 0 2
## 1924 2 0 2
## 1925 2 0 2
## 1926 2 0 2
## 1927 2 0 2
## 1928 2 0 2
## 1929 2 0 2
## 1930 2 0 2
## 1931 2 0 2
## 1932 2 0 2
## 1933 2 0 2
## 1934 2 0 2
## 1935 2 0 2
## 1936 2 0 2
## 1937 2 0 2
## 1938 2 0 2
## 1939 2 0 2
## 1940 2 0 2
## 1941 2 0 2
## 1942 2 0 2
## 1943 2 0 2
## 1944 2 0 2
## 1945 2 0 2
## 1946 2 0 2
## 1947 2 0 2
## 1948 2 0 2
## 1949 2 0 2
## 1950 2 0 2
## 1951 2 0 2
## 1952 2 0 2
## 1953 2 0 2
## 1954 2 0 2
## 1955 2 0 2
## 1956 2 0 2
## 1957 2 0 2
## 1958 2 0 2
## 1959 2 0 2
## 1960 2 0 2
## 1961 2 0 2
## 1962 2 0 2
## 1963 2 0 2
## 1964 2 0 2
## 1965 2 0 2
## 1966 2 0 2
## 1967 2 0 2
## 1968 2 0 2
## 1969 2 0 2
## 1970 2 0 2
## 1971 2 0 2
## 1972 2 0 2
## 1973 2 0 2
## 1974 2 0 2
## 1975 2 0 2
## 1976 2 0 2
## 1977 2 0 2
## 1978 2 0 2
## 1979 2 0 2
## 1980 2 0 2
## 1981 2 0 2
## 1982 2 0 2
## 1983 2 0 2
## 1984 2 0 2
## 1985 2 0 2
## 1986 2 0 2
## 1987 2 0 2
## 1988 2 0 2
## 1989 2 0 2
## 1990 2 0 2
## 1991 2 0 2
## 1992 2 0 2
## 1993 2 0 2
## 1994 2 0 2
## 1995 2 0 2
## 1996 2 0 2
## 1997 2 0 2
## 1998 2 0 2
## 1999 2 0 2
## 2000 2 0 2
## 2001 2 0 2
## 2002 2 0 2
## 2003 2 0 2
## 2004 2 0 2
## 2005 2 0 2
## 2006 2 0 2
## 2007 2 0 2
## 2008 2 0 2
## 2009 2 0 2
## 2010 2 0 2
## 2011 2 0 2
## 2012 2 0 2
## 2013 2 0 2
## 2014 2 0 2
## 2015 2 0 2
## 2016 2 0 2
## 2017 2 0 2
## 2018 2 0 2
## 2019 2 0 2
## 2020 2 0 2
## 2021 1 1 2
## 2022 2 0 2
## 2023 2 0 2
## 2024 2 0 2
## 2025 2 0 2
## 2026 2 0 2
## 2027 2 0 2
## 2028 2 0 2
## 2029 2 0 2
## 2030 2 0 2
## 2031 2 0 2
## 2032 2 0 2
## 2033 2 0 2
## 2034 2 0 2
## 2035 2 0 2
## 2036 2 0 2
## 2037 2 0 2
## 2038 2 0 2
## 2039 2 0 2
## 2040 2 0 2
## 2041 2 0 2
## 2042 2 0 2
## 2043 2 0 2
## 2044 2 0 2
## 2045 2 0 2
## 2046 2 0 2
## 2047 2 0 2
## 2048 2 0 2
## 2049 2 0 2
## 2050 2 0 2
## 2051 2 0 2
## 2052 2 0 2
## 2053 2 0 2
## 2054 2 0 2
## 2055 2 0 2
## 2056 2 0 2
## 2057 2 0 2
## 2058 2 0 2
## 2059 2 0 2
## 2060 2 0 2
## 2061 2 0 2
## 2062 2 0 2
## 2063 2 0 2
## 2064 2 0 2
## 2065 2 0 2
## 2066 2 0 2
## 2067 2 0 2
## 2068 2 0 2
## 2069 2 0 2
## 2070 2 0 2
## 2071 2 0 2
## 2072 2 0 2
## 2073 2 0 2
## 2074 2 0 2
## 2075 2 0 2
## 2076 2 0 2
## 2077 2 0 2
## 2078 2 0 2
## 2079 2 0 2
## 2080 2 0 2
## 2081 2 0 2
## 2082 2 0 2
## 2083 2 0 2
## 2084 2 0 2
## 2085 2 0 2
## 2086 2 0 2
## 2087 2 0 2
## 2088 2 0 2
## 2089 2 0 2
## 2090 2 0 2
## 2091 2 0 2
## 2092 2 0 2
## 2093 2 0 2
## 2094 2 0 2
## 2095 2 0 2
## 2096 2 0 2
## 2097 2 0 2
## 2098 2 0 2
## 2099 2 0 2
## 2100 2 0 2
## 2101 2 0 2
## 2102 2 0 2
## 2103 2 0 2
## 2104 2 0 2
## 2105 2 0 2
## 2106 2 0 2
## 2107 2 0 2
## 2108 2 0 2
## 2109 2 0 2
## 2110 2 0 2
## 2111 2 0 2
## 2112 2 0 2
## 2113 2 0 2
## 2114 2 0 2
## 2115 2 0 2
## 2116 2 0 2
## 2117 2 0 2
## 2118 2 0 2
## 2119 2 0 2
## 2120 2 0 2
## 2121 2 0 2
## 2122 2 0 2
## 2123 2 0 2
## 2124 2 0 2
## 2125 2 0 2
## 2126 2 0 2
## 2127 2 0 2
## 2128 2 0 2
## 2129 2 0 2
## 2130 2 0 2
## 2131 2 0 2
## 2132 2 0 2
## 2133 2 0 2
## 2134 2 0 2
## 2135 2 0 2
## 2136 2 0 2
## 2137 2 0 2
## 2138 2 0 2
## 2139 2 0 2
## 2140 2 0 2
## 2141 2 0 2
## 2142 2 0 2
## 2143 2 0 2
## 2144 2 0 2
## 2145 2 0 2
## 2146 2 0 2
## 2147 2 0 2
## 2148 2 0 2
## 2149 2 0 2
## 2150 2 0 2
## 2151 2 0 2
## 2152 2 0 2
## 2153 2 0 2
## 2154 2 0 2
## 2155 2 0 2
## 2156 2 0 2
## 2157 2 0 2
## 2158 2 0 2
## 2159 2 0 2
## 2160 2 0 2
## 2161 1 1 2
## 2162 2 0 2
## 2163 2 0 2
## 2164 2 0 2
## 2165 2 0 2
## 2166 2 0 2
## 2167 2 0 2
## 2168 2 0 2
## 2169 2 0 2
## 2170 2 0 2
## 2171 2 0 2
## 2172 2 0 2
## 2173 2 0 2
## 2174 2 0 2
## 2175 2 0 2
## 2176 2 0 2
## 2177 2 0 2
## 2178 2 0 2
## 2179 2 0 2
## 2180 2 0 2
## 2181 2 0 2
## 2182 2 0 2
## 2183 2 0 2
## 2184 2 0 2
## 2185 2 0 2
## 2186 2 0 2
## 2187 2 0 2
## 2188 2 0 2
## 2189 2 0 2
## 2190 2 0 2
## 2191 2 0 2
## 2192 2 0 2
## 2193 2 0 2
## 2194 2 0 2
## 2195 2 0 2
## 2196 2 0 2
## 2197 2 0 2
## 2198 2 0 2
## 2199 2 0 2
## 2200 2 0 2
## 2201 2 0 2
## 2202 2 0 2
## 2203 2 0 2
## 2204 2 0 2
## 2205 2 0 2
## 2206 2 0 2
## 2207 2 0 2
## 2208 1 1 2
## 2209 2 0 2
## 2210 2 0 2
## 2211 2 0 2
## 2212 2 0 2
## 2213 2 0 2
## 2214 2 0 2
## 2215 2 0 2
## 2216 2 0 2
## 2217 2 0 2
## 2218 2 0 2
## 2219 2 0 2
## 2220 2 0 2
## 2221 2 0 2
## 2222 2 0 2
## 2223 2 0 2
## 2224 2 0 2
## 2225 2 0 2
## 2226 2 0 2
## 2227 2 0 2
## 2228 2 0 2
## 2229 2 0 2
## 2230 2 0 2
## 2231 2 0 2
## 2232 2 0 2
## 2233 2 0 2
## 2234 2 0 2
## 2235 2 0 2
## 2236 2 0 2
## 2237 2 0 2
## 2238 2 0 2
## 2239 2 0 2
## 2240 2 0 2
## 2241 2 0 2
## 2242 2 0 2
## 2243 2 0 2
## 2244 2 0 2
## 2245 2 0 2
## 2246 2 0 2
## 2247 2 0 2
## 2248 2 0 2
## 2249 2 0 2
## 2250 2 0 2
## 2251 2 0 2
## 2252 2 0 2
## 2253 2 0 2
## 2254 2 0 2
## 2255 2 0 2
## 2256 2 0 2
## 2257 2 0 2
## 2258 2 0 2
## 2259 2 0 2
## 2260 2 0 2
## 2261 2 0 2
## 2262 2 0 2
## 2263 2 0 2
## 2264 2 0 2
## 2265 2 0 2
## 2266 2 0 2
## 2267 2 0 2
## 2268 2 0 2
## 2269 2 0 2
## 2270 2 0 2
## 2271 2 0 2
## 2272 2 0 2
## 2273 2 0 2
## 2274 2 0 2
## 2275 2 0 2
## 2276 2 0 2
## 2277 2 0 2
## 2278 2 0 2
## 2279 2 0 2
## 2280 2 0 2
## 2281 2 0 2
## 2282 2 0 2
## 2283 2 0 2
## 2284 2 0 2
## 2285 2 0 2
## 2286 2 0 2
## 2287 2 0 2
## 2288 2 0 2
## 2289 2 0 2
## 2290 2 0 2
## 2291 2 0 2
## 2292 2 0 2
## 2293 2 0 2
## 2294 2 0 2
## 2295 2 0 2
## 2296 2 0 2
## 2297 2 0 2
## 2298 2 0 2
## 2299 2 0 2
## 2300 2 0 2
## 2301 2 0 2
## 2302 2 0 2
## 2303 2 0 2
## 2304 2 0 2
## 2305 2 0 2
## 2306 2 0 2
## 2307 2 0 2
## 2308 2 0 2
## 2309 2 0 2
## 2310 2 0 2
## 2311 2 0 2
## 2312 2 0 2
## 2313 2 0 2
## 2314 2 0 2
## 2315 2 0 2
## 2316 2 0 2
## 2317 2 0 2
## 2318 2 0 2
## 2319 2 0 2
## 2320 2 0 2
## 2321 2 0 2
## 2322 2 0 2
## 2323 2 0 2
## 2324 2 0 2
## 2325 2 0 2
## 2326 2 0 2
## 2327 2 0 2
## 2328 2 0 2
## 2329 2 0 2
## 2330 2 0 2
## 2331 2 0 2
## 2332 2 0 2
## 2333 2 0 2
## 2334 2 0 2
## 2335 2 0 2
## 2336 2 0 2
## 2337 2 0 2
## 2338 2 0 2
## 2339 2 0 2
## 2340 2 0 2
## 2341 2 0 2
## 2342 2 0 2
## 2343 2 0 2
## 2344 2 0 2
## 2345 2 0 2
## 2346 2 0 2
## 2347 2 0 2
## 2348 2 0 2
## 2349 2 0 2
## 2350 2 0 2
## 2351 2 0 2
## 2352 2 0 2
## 2353 2 0 2
## 2354 2 0 2
## 2355 2 0 2
## 2356 2 0 2
## 2357 2 0 2
## 2358 2 0 2
## 2359 2 0 2
## 2360 2 0 2
## 2361 2 0 2
## 2362 2 0 2
## 2363 2 0 2
## 2364 2 0 2
## 2365 2 0 2
## 2366 2 0 2
## 2367 2 0 2
## 2368 2 0 2
## 2369 2 0 2
## 2370 2 0 2
## 2371 2 0 2
## 2372 2 0 2
## 2373 2 0 2
## 2374 2 0 2
## 2375 2 0 2
## 2376 2 0 2
## 2377 2 0 2
## 2378 2 0 2
## 2379 2 0 2
## 2380 2 0 2
## 2381 2 0 2
## 2382 2 0 2
## 2383 2 0 2
## 2384 2 0 2
## 2385 2 0 2
## 2386 2 0 2
## 2387 2 0 2
## 2388 2 0 2
## 2389 2 0 2
## 2390 2 0 2
## 2391 2 0 2
## 2392 2 0 2
## 2393 2 0 2
## 2394 2 0 2
## 2395 2 0 2
## 2396 2 0 2
## 2397 2 0 2
## 2398 2 0 2
## 2399 2 0 2
## 2400 2 0 2
## 2401 2 0 2
## 2402 2 0 2
## 2403 2 0 2
## 2404 2 0 2
## 2405 2 0 2
## 2406 2 0 2
## 2407 2 0 2
## 2408 2 0 2
## 2409 2 0 2
## 2410 2 0 2
## 2411 2 0 2
## 2412 2 0 2
## 2413 2 0 2
## 2414 2 0 2
## 2415 2 0 2
## 2416 2 0 2
## 2417 2 0 2
## 2418 2 0 2
## 2419 2 0 2
## 2420 2 0 2
## 2421 2 0 2
## 2422 2 0 2
## 2423 2 0 2
## 2424 2 0 2
## 2425 2 0 2
## 2426 2 0 2
## 2427 2 0 2
## 2428 1 1 2
## 2429 2 0 2
## 2430 2 0 2
## 2431 2 0 2
## 2432 2 0 2
## 2433 2 0 2
## 2434 2 0 2
## 2435 2 0 2
## 2436 2 0 2
## 2437 2 0 2
## 2438 2 0 2
## 2439 2 0 2
## 2440 2 0 2
## 2441 2 0 2
## 2442 2 0 2
## 2443 2 0 2
## 2444 2 0 2
## 2445 2 0 2
## 2446 2 0 2
## 2447 2 0 2
## 2448 2 0 2
## 2449 2 0 2
## 2450 2 0 2
## 2451 2 0 2
## 2452 2 0 2
## 2453 2 0 2
## 2454 2 0 2
## 2455 2 0 2
## 2456 2 0 2
## 2457 2 0 2
## 2458 2 0 2
## 2459 2 0 2
## 2460 2 0 2
## 2461 2 0 2
## 2462 2 0 2
## 2463 2 0 2
## 2464 2 0 2
## 2465 2 0 2
## 2466 2 0 2
## 2467 2 0 2
## 2468 2 0 2
## 2469 2 0 2
## 2470 2 0 2
## 2471 2 0 2
## 2472 2 0 2
## 2473 2 0 2
## 2474 2 0 2
## 2475 2 0 2
## 2476 2 0 2
## 2477 2 0 2
## 2478 2 0 2
## 2479 2 0 2
## 2480 2 0 2
## 2481 2 0 2
## 2482 2 0 2
## 2483 2 0 2
## 2484 2 0 2
## 2485 2 0 2
## 2486 2 0 2
## 2487 2 0 2
## 2488 2 0 2
## 2489 2 0 2
## 2490 2 0 2
## 2491 2 0 2
## 2492 2 0 2
## 2493 2 0 2
## 2494 2 0 2
## 2495 2 0 2
## 2496 2 0 2
## 2497 2 0 2
## 2498 2 0 2
## 2499 2 0 2
## 2500 2 0 2
## 2501 2 0 2
## 2502 2 0 2
## 2503 2 0 2
## 2504 2 0 2
## 2505 2 0 2
## 2506 2 0 2
## 2507 2 0 2
## 2508 2 0 2
## 2509 2 0 2
## 2510 2 0 2
## 2511 2 0 2
## 2512 2 0 2
## 2513 2 0 2
## 2514 2 0 2
## 2515 2 0 2
## 2516 2 0 2
## 2517 2 0 2
## 2518 2 0 2
## 2519 2 0 2
## 2520 2 0 2
## 2521 2 0 2
## 2522 2 0 2
## 2523 2 0 2
## 2524 2 0 2
## 2525 2 0 2
## 2526 2 0 2
## 2527 2 0 2
## 2528 2 0 2
## 2529 2 0 2
## 2530 2 0 2
## 2531 2 0 2
## 2532 2 0 2
## 2533 2 0 2
## 2534 2 0 2
## 2535 2 0 2
## 2536 2 0 2
## 2537 2 0 2
## 2538 2 0 2
## 2539 2 0 2
## 2540 2 0 2
## 2541 2 0 2
## 2542 2 0 2
## 2543 2 0 2
## 2544 2 0 2
## 2545 2 0 2
## 2546 2 0 2
## 2547 2 0 2
## 2548 2 0 2
## 2549 2 0 2
## 2550 2 0 2
## 2551 2 0 2
## 2552 2 0 2
## 2553 2 0 2
## 2554 2 0 2
## 2555 2 0 2
## 2556 2 0 2
## 2557 2 0 2
## 2558 2 0 2
## 2559 2 0 2
## 2560 2 0 2
## 2561 2 0 2
## 2562 2 0 2
## 2563 2 0 2
## 2564 2 0 2
## 2565 2 0 2
## 2566 2 0 2
## 2567 2 0 2
## 2568 2 0 2
## 2569 2 0 2
## 2570 2 0 2
## 2571 2 0 2
## 2572 2 0 2
## 2573 2 0 2
## 2574 2 0 2
## 2575 2 0 2
## 2576 2 0 2
## 2577 2 0 2
## 2578 2 0 2
## 2579 2 0 2
## 2580 2 0 2
## 2581 2 0 2
## 2582 2 0 2
## 2583 2 0 2
## 2584 2 0 2
## 2585 2 0 2
## 2586 2 0 2
## 2587 2 0 2
## 2588 2 0 2
## 2589 2 0 2
## 2590 2 0 2
## 2591 2 0 2
## 2592 2 0 2
## 2593 2 0 2
## 2594 2 0 2
## 2595 2 0 2
## 2596 2 0 2
## 2597 2 0 2
## 2598 2 0 2
## 2599 2 0 2
## 2600 2 0 2
## 2601 2 0 2
## 2602 2 0 2
## 2603 2 0 2
## 2604 2 0 2
## 2605 2 0 2
## 2606 2 0 2
## 2607 2 0 2
## 2608 2 0 2
## 2609 2 0 2
## 2610 2 0 2
## 2611 2 0 2
## 2612 2 0 2
## 2613 2 0 2
## 2614 2 0 2
## 2615 2 0 2
## 2616 2 0 2
## 2617 2 0 2
## 2618 2 0 2
## 2619 2 0 2
## 2620 2 0 2
## 2621 2 0 2
## 2622 2 0 2
## 2623 2 0 2
## 2624 2 0 2
## 2625 2 0 2
## 2626 2 0 2
## 2627 2 0 2
## 2628 2 0 2
## 2629 2 0 2
## 2630 2 0 2
## 2631 2 0 2
## 2632 2 0 2
## 2633 2 0 2
## 2634 2 0 2
## 2635 2 0 2
## 2636 2 0 2
## 2637 2 0 2
## 2638 2 0 2
## 2639 2 0 2
## 2640 2 0 2
## 2641 2 0 2
## 2642 2 0 2
## 2643 2 0 2
## 2644 2 0 2
## 2645 2 0 2
## 2646 2 0 2
## 2647 2 0 2
## 2648 1 1 2
## 2649 2 0 2
## 2650 2 0 2
## 2651 2 0 2
## 2652 2 0 2
## 2653 2 0 2
## 2654 2 0 2
## 2655 2 0 2
## 2656 2 0 2
## 2657 2 0 2
## 2658 2 0 2
## 2659 2 0 2
## 2660 2 0 2
## 2661 2 0 2
## 2662 2 0 2
## 2663 2 0 2
## 2664 2 0 2
## 2665 2 0 2
## 2666 2 0 2
## 2667 2 0 2
## 2668 2 0 2
## 2669 2 0 2
## 2670 2 0 2
## 2671 2 0 2
## 2672 2 0 2
## 2673 2 0 2
## 2674 2 0 2
## 2675 2 0 2
## 2676 2 0 2
## 2677 2 0 2
## 2678 2 0 2
## 2679 2 0 2
## 2680 2 0 2
## 2681 2 0 2
## 2682 2 0 2
## 2683 2 0 2
## 2684 2 0 2
## 2685 2 0 2
## 2686 2 0 2
## 2687 2 0 2
## 2688 2 0 2
## 2689 2 0 2
## 2690 2 0 2
## 2691 2 0 2
## 2692 2 0 2
## 2693 2 0 2
## 2694 2 0 2
## 2695 2 0 2
## 2696 1 1 2
## 2697 2 0 2
## 2698 2 0 2
## 2699 2 0 2
## 2700 2 0 2
## 2701 2 0 2
## 2702 2 0 2
## 2703 2 0 2
## 2704 2 0 2
## 2705 2 0 2
## 2706 2 0 2
## 2707 2 0 2
## 2708 2 0 2
## 2709 2 0 2
## 2710 2 0 2
## 2711 2 0 2
## 2712 2 0 2
## 2713 2 0 2
## 2714 2 0 2
## 2715 2 0 2
## 2716 2 0 2
## 2717 2 0 2
## 2718 2 0 2
## 2719 2 0 2
## 2720 2 0 2
## 2721 2 0 2
## 2722 2 0 2
## 2723 2 0 2
## 2724 2 0 2
## 2725 2 0 2
## 2726 2 0 2
## 2727 2 0 2
## 2728 2 0 2
## 2729 2 0 2
## 2730 2 0 2
## 2731 2 0 2
## 2732 2 0 2
## 2733 2 0 2
## 2734 2 0 2
## 2735 2 0 2
## 2736 2 0 2
## 2737 2 0 2
## 2738 2 0 2
## 2739 2 0 2
## 2740 2 0 2
## 2741 2 0 2
## 2742 2 0 2
## 2743 2 0 2
## 2744 2 0 2
## 2745 2 0 2
## 2746 2 0 2
## 2747 2 0 2
## 2748 2 0 2
## 2749 2 0 2
## 2750 2 0 2
## 2751 2 0 2
## 2752 2 0 2
## 2753 2 0 2
## 2754 2 0 2
## 2755 2 0 2
## 2756 2 0 2
## 2757 1 1 2
## 2758 2 0 2
## 2759 2 0 2
## 2760 2 0 2
## 2761 2 0 2
## 2762 2 0 2
## 2763 2 0 2
## 2764 2 0 2
## 2765 2 0 2
## 2766 2 0 2
## 2767 2 0 2
## 2768 2 0 2
## 2769 2 0 2
## 2770 2 0 2
## 2771 2 0 2
## 2772 2 0 2
## 2773 2 0 2
## 2774 1 1 2
## 2775 2 0 2
## 2776 2 0 2
## 2777 2 0 2
## 2778 2 0 2
## 2779 2 0 2
## 2780 2 0 2
## 2781 2 0 2
## 2782 2 0 2
## 2783 2 0 2
## 2784 2 0 2
## 2785 2 0 2
## 2786 2 0 2
## 2787 2 0 2
## 2788 2 0 2
## 2789 2 0 2
## 2790 2 0 2
## 2791 2 0 2
## 2792 2 0 2
## 2793 2 0 2
## 2794 2 0 2
## 2795 2 0 2
## 2796 2 0 2
## 2797 1 1 2
## 2798 2 0 2
## 2799 2 0 2
## 2800 2 0 2
## 2801 2 0 2
## 2802 2 0 2
## 2803 2 0 2
## 2804 2 0 2
## 2805 1 1 2
## 2806 2 0 2
## 2807 2 0 2
## 2808 2 0 2
## 2809 2 0 2
## 2810 2 0 2
## 2811 2 0 2
## 2812 1 1 2
## 2813 2 0 2
## 2814 2 0 2
## 2815 2 0 2
## 2816 2 0 2
## 2817 2 0 2
## 2818 2 0 2
## 2819 2 0 2
## 2820 2 0 2
## 2821 2 0 2
## 2822 2 0 2
## 2823 2 0 2
## 2824 2 0 2
## 2825 2 0 2
## 2826 2 0 2
## 2827 2 0 2
## 2828 2 0 2
## 2829 2 0 2
## 2830 2 0 2
## 2831 2 0 2
## 2832 2 0 2
## 2833 2 0 2
## 2834 2 0 2
## 2835 2 0 2
## 2836 2 0 2
## 2837 2 0 2
## 2838 2 0 2
## 2839 2 0 2
## 2840 2 0 2
## 2841 2 0 2
## 2842 1 1 2
## 2843 2 0 2
## 2844 2 0 2
## 2845 2 0 2
## 2846 2 0 2
## 2847 2 0 2
## 2848 1 1 2
## 2849 2 0 2
## 2850 2 0 2
## 2851 2 0 2
## 2852 2 0 2
## 2853 2 0 2
## 2854 2 0 2
## 2855 2 0 2
## 2856 2 0 2
## 2857 2 0 2
## 2858 2 0 2
## 2859 2 0 2
## 2860 2 0 2
## 2861 2 0 2
## 2862 2 0 2
## 2863 2 0 2
## 2864 2 0 2
## 2865 2 0 2
## 2866 2 0 2
## 2867 2 0 2
## 2868 2 0 2
## 2869 1 1 2
## 2870 2 0 2
## 2871 2 0 2
## 2872 2 0 2
## 2873 2 0 2
## 2874 2 0 2
## 2875 2 0 2
## 2876 2 0 2
## 2877 2 0 2
## 2878 2 0 2
## 2879 1 1 2
## 2880 2 0 2
## 2881 2 0 2
## 2882 2 0 2
## 2883 2 0 2
## 2884 2 0 2
## 2885 2 0 2
## 2886 2 0 2
## 2887 2 0 2
## 2888 2 0 2
## 2889 2 0 2
## 2890 2 0 2
## 2891 2 0 2
## 2892 2 0 2
## 2893 2 0 2
## 2894 2 0 2
## 2895 2 0 2
## 2896 2 0 2
## 2897 2 0 2
## 2898 2 0 2
## 2899 2 0 2
## 2900 2 0 2
## 2901 2 0 2
## 2902 2 0 2
## 2903 2 0 2
## 2904 2 0 2
## 2905 2 0 2
## 2906 2 0 2
## 2907 2 0 2
## 2908 2 0 2
## 2909 2 0 2
## 2910 2 0 2
## 2911 2 0 2
## 2912 1 1 2
## 2913 2 0 2
## 2914 2 0 2
## 2915 2 0 2
## 2916 2 0 2
## 2917 2 0 2
## 2918 2 0 2
## 2919 2 0 2
## 2920 2 0 2
## 2921 2 0 2
## 2922 2 0 2
## 2923 2 0 2
## 2924 2 0 2
## 2925 2 0 2
## 2926 2 0 2
## 2927 2 0 2
## 2928 2 0 2
## 2929 2 0 2
## 2930 2 0 2
## 2931 2 0 2
## 2932 2 0 2
## 2933 2 0 2
## 2934 2 0 2
## 2935 2 0 2
## 2936 2 0 2
## 2937 2 0 2
## 2938 2 0 2
## 2939 2 0 2
## 2940 2 0 2
## 2941 2 0 2
## 2942 2 0 2
## 2943 2 0 2
## 2944 2 0 2
## 2945 2 0 2
## 2946 2 0 2
## 2947 2 0 2
## 2948 2 0 2
## 2949 2 0 2
## 2950 2 0 2
## 2951 2 0 2
## 2952 2 0 2
## 2953 2 0 2
## 2954 2 0 2
## 2955 2 0 2
## 2956 2 0 2
## 2957 2 0 2
## 2958 2 0 2
## 2959 2 0 2
## 2960 2 0 2
## 2961 2 0 2
## 2962 2 0 2
## 2963 2 0 2
## 2964 2 0 2
## 2965 2 0 2
## 2966 2 0 2
## 2967 2 0 2
## 2968 2 0 2
## 2969 2 0 2
## 2970 2 0 2
## 2971 2 0 2
## 2972 2 0 2
## 2973 2 0 2
## 2974 2 0 2
## 2975 2 0 2
## 2976 2 0 2
## 2977 2 0 2
## 2978 2 0 2
## 2979 2 0 2
## 2980 2 0 2
## 2981 2 0 2
## 2982 2 0 2
## 2983 2 0 2
## 2984 2 0 2
## 2985 2 0 2
## 2986 2 0 2
## 2987 2 0 2
## 2988 2 0 2
## 2989 2 0 2
## 2990 1 1 2
## 2991 2 0 2
## 2992 2 0 2
## 2993 2 0 2
## 2994 2 0 2
## 2995 2 0 2
## 2996 2 0 2
## 2997 2 0 2
## 2998 2 0 2
## 2999 2 0 2
## 3000 2 0 2
## 3001 2 0 2
## 3002 2 0 2
## 3003 2 0 2
## 3004 2 0 2
## 3005 2 0 2
## 3006 2 0 2
## 3007 2 0 2
## 3008 2 0 2
## 3009 2 0 2
## 3010 2 0 2
## 3011 2 0 2
## 3012 2 0 2
## 3013 2 0 2
## 3014 2 0 2
## 3015 2 0 2
## 3016 2 0 2
## 3017 2 0 2
## 3018 2 0 2
## 3019 2 0 2
## 3020 2 0 2
## 3021 1 1 2
## 3022 2 0 2
## 3023 2 0 2
## 3024 2 0 2
## 3025 2 0 2
## 3026 2 0 2
## 3027 2 0 2
## 3028 2 0 2
## 3029 2 0 2
## 3030 1 1 2
## 3031 2 0 2
## 3032 2 0 2
## 3033 2 0 2
## 3034 2 0 2
## 3035 2 0 2
## 3036 2 0 2
## 3037 2 0 2
## 3038 2 0 2
## 3039 1 1 2
## 3040 2 0 2
## 3041 2 0 2
## 3042 2 0 2
## 3043 2 0 2
## 3044 2 0 2
## 3045 2 0 2
## 3046 2 0 2
## 3047 2 0 2
## 3048 2 0 2
## 3049 2 0 2
## 3050 2 0 2
## 3051 2 0 2
## 3052 2 0 2
## 3053 2 0 2
## 3054 2 0 2
## 3055 2 0 2
## 3056 2 0 2
## 3057 2 0 2
## 3058 2 0 2
## 3059 2 0 2
## 3060 2 0 2
## 3061 2 0 2
## 3062 2 0 2
## 3063 2 0 2
## 3064 2 0 2
## 3065 2 0 2
## 3066 2 0 2
## 3067 2 0 2
## 3068 2 0 2
## 3069 2 0 2
## 3070 2 0 2
## 3071 2 0 2
## 3072 2 0 2
## 3073 2 0 2
## 3074 2 0 2
## 3075 2 0 2
## 3076 2 0 2
## 3077 2 0 2
## 3078 2 0 2
## 3079 2 0 2
## 3080 2 0 2
## 3081 2 0 2
## 3082 2 0 2
## 3083 2 0 2
## 3084 2 0 2
## 3085 2 0 2
## 3086 2 0 2
## 3087 2 0 2
## 3088 2 0 2
## 3089 2 0 2
## 3090 2 0 2
## 3091 2 0 2
## 3092 2 0 2
## 3093 2 0 2
## 3094 2 0 2
## 3095 2 0 2
## 3096 2 0 2
## 3097 2 0 2
## 3098 2 0 2
## 3099 2 0 2
## 3100 2 0 2
## 3101 2 0 2
## 3102 2 0 2
## 3103 2 0 2
## 3104 0 2 2
## 3105 2 0 2
## 3106 2 0 2
## 3107 2 0 2
## 3108 2 0 2
## 3109 2 0 2
## 3110 1 1 2
## 3111 2 0 2
## 3112 1 1 2
## 3113 2 0 2
## 3114 2 0 2
## 3115 2 0 2
## 3116 2 0 2
## 3117 2 0 2
## 3118 2 0 2
## 3119 2 0 2
## 3120 2 0 2
## 3121 2 0 2
## 3122 2 0 2
## 3123 2 0 2
## 3124 2 0 2
## 3125 2 0 2
## 3126 2 0 2
## 3127 2 0 2
## 3128 2 0 2
## 3129 2 0 2
## 3130 2 0 2
## 3131 2 0 2
## 3132 2 0 2
## 3133 2 0 2
## 3134 1 1 2
## 3135 2 0 2
## 3136 2 0 2
## 3137 2 0 2
## 3138 2 0 2
## 3139 2 0 2
## 3140 2 0 2
## 3141 2 0 2
## 3142 2 0 2
## 3143 2 0 2
## 3144 2 0 2
## 3145 2 0 2
## 3146 2 0 2
## 3147 2 0 2
## 3148 2 0 2
## 3149 2 0 2
## 3150 2 0 2
## 3151 2 0 2
## 3152 2 0 2
## 3153 2 0 2
## 3154 2 0 2
## 3155 2 0 2
## 3156 2 0 2
## 3157 2 0 2
## 3158 2 0 2
## 3159 2 0 2
## 3160 2 0 2
## 3161 2 0 2
## 3162 2 0 2
## 3163 2 0 2
## 3164 2 0 2
## 3165 2 0 2
## 3166 2 0 2
## 3167 2 0 2
## 3168 2 0 2
## 3169 2 0 2
## 3170 2 0 2
## 3171 2 0 2
## 3172 2 0 2
## 3173 2 0 2
## 3174 2 0 2
## 3175 2 0 2
## 3176 2 0 2
## 3177 2 0 2
## 3178 2 0 2
## 3179 2 0 2
## 3180 2 0 2
## 3181 2 0 2
## 3182 2 0 2
## 3183 2 0 2
## 3184 2 0 2
## 3185 2 0 2
## 3186 2 0 2
## 3187 2 0 2
## 3188 2 0 2
## 3189 1 1 2
## 3190 2 0 2
## 3191 2 0 2
## 3192 2 0 2
## 3193 2 0 2
## 3194 2 0 2
## 3195 1 1 2
## 3196 2 0 2
## 3197 2 0 2
## 3198 2 0 2
## 3199 2 0 2
## 3200 2 0 2
## 3201 2 0 2
## 3202 2 0 2
## 3203 2 0 2
## 3204 2 0 2
## 3205 2 0 2
## 3206 2 0 2
## 3207 2 0 2
## 3208 2 0 2
## 3209 2 0 2
## 3210 2 0 2
## 3211 2 0 2
## 3212 2 0 2
## 3213 2 0 2
## 3214 2 0 2
## 3215 2 0 2
## 3216 2 0 2
## 3217 2 0 2
## 3218 2 0 2
## 3219 2 0 2
## 3220 2 0 2
## 3221 2 0 2
## 3222 2 0 2
## 3223 2 0 2
## 3224 2 0 2
## 3225 2 0 2
## 3226 2 0 2
## 3227 2 0 2
## 3228 2 0 2
## 3229 2 0 2
## 3230 2 0 2
## 3231 2 0 2
## 3232 2 0 2
## 3233 2 0 2
## 3234 2 0 2
## 3235 2 0 2
## 3236 2 0 2
## 3237 2 0 2
## 3238 2 0 2
## 3239 2 0 2
## 3240 1 1 2
## 3241 2 0 2
## 3242 2 0 2
## 3243 2 0 2
## 3244 2 0 2
## 3245 2 0 2
## 3246 2 0 2
## 3247 2 0 2
## 3248 2 0 2
## 3249 1 1 2
## 3250 2 0 2
## 3251 2 0 2
## 3252 2 0 2
## 3253 2 0 2
## 3254 1 1 2
## 3255 2 0 2
## 3256 1 1 2
## 3257 2 0 2
## 3258 2 0 2
## 3259 2 0 2
## 3260 2 0 2
## 3261 2 0 2
## 3262 1 1 2
## 3263 2 0 2
## 3264 2 0 2
## 3265 2 0 2
## 3266 2 0 2
## 3267 2 0 2
## 3268 1 1 2
## 3269 2 0 2
## 3270 2 0 2
## 3271 2 0 2
## 3272 2 0 2
## 3273 2 0 2
## 3274 2 0 2
## 3275 2 0 2
## 3276 2 0 2
## 3277 2 0 2
## 3278 2 0 2
## 3279 2 0 2
## 3280 2 0 2
## 3281 0 2 2
## 3282 2 0 2
## 3283 2 0 2
## 3284 2 0 2
## 3285 2 0 2
## 3286 2 0 2
## 3287 2 0 2
## 3288 2 0 2
## 3289 2 0 2
## 3290 2 0 2
## 3291 2 0 2
## 3292 2 0 2
## 3293 2 0 2
## 3294 2 0 2
## 3295 2 0 2
## 3296 2 0 2
## 3297 2 0 2
## 3298 2 0 2
## 3299 2 0 2
## 3300 2 0 2
## 3301 2 0 2
## 3302 2 0 2
## 3303 2 0 2
## 3304 2 0 2
## 3305 2 0 2
## 3306 2 0 2
## 3307 2 0 2
## 3308 2 0 2
## 3309 2 0 2
## 3310 2 0 2
## 3311 2 0 2
## 3312 2 0 2
## 3313 2 0 2
## 3314 2 0 2
## 3315 2 0 2
## 3316 2 0 2
## 3317 2 0 2
## 3318 2 0 2
## 3319 2 0 2
## 3320 2 0 2
## 3321 2 0 2
## 3322 2 0 2
## 3323 2 0 2
## 3324 2 0 2
## 3325 2 0 2
## 3326 2 0 2
## 3327 2 0 2
## 3328 2 0 2
## 3329 2 0 2
## 3330 2 0 2
## 3331 1 1 2
## 3332 2 0 2
## 3333 2 0 2
## 3334 2 0 2
## 3335 2 0 2
## 3336 2 0 2
## 3337 2 0 2
## 3338 2 0 2
## 3339 2 0 2
## 3340 2 0 2
## 3341 2 0 2
## 3342 2 0 2
## 3343 2 0 2
## 3344 2 0 2
## 3345 2 0 2
## 3346 2 0 2
## 3347 2 0 2
## 3348 2 0 2
## 3349 2 0 2
## 3350 2 0 2
## 3351 2 0 2
## 3352 2 0 2
## 3353 2 0 2
## 3354 2 0 2
## 3355 1 1 2
## 3356 2 0 2
## 3357 2 0 2
## 3358 2 0 2
## 3359 2 0 2
## 3360 2 0 2
## 3361 2 0 2
## 3362 2 0 2
## 3363 2 0 2
## 3364 2 0 2
## 3365 2 0 2
## 3366 2 0 2
## 3367 2 0 2
## 3368 2 0 2
## 3369 2 0 2
## 3370 2 0 2
## 3371 2 0 2
## 3372 2 0 2
## 3373 2 0 2
## 3374 2 0 2
## 3375 2 0 2
## 3376 2 0 2
## 3377 2 0 2
## 3378 2 0 2
## 3379 2 0 2
## 3380 2 0 2
## 3381 2 0 2
## 3382 2 0 2
## 3383 2 0 2
## 3384 2 0 2
## 3385 2 0 2
## 3386 2 0 2
## 3387 2 0 2
## 3388 2 0 2
## 3389 2 0 2
## 3390 2 0 2
## 3391 2 0 2
## 3392 2 0 2
## 3393 2 0 2
## 3394 2 0 2
## 3395 2 0 2
## 3396 2 0 2
## 3397 2 0 2
## 3398 2 0 2
## 3399 2 0 2
## 3400 2 0 2
## 3401 2 0 2
## 3402 2 0 2
## 3403 2 0 2
## 3404 2 0 2
## 3405 2 0 2
## 3406 2 0 2
## 3407 2 0 2
## 3408 2 0 2
## 3409 2 0 2
## 3410 2 0 2
## 3411 2 0 2
## 3412 2 0 2
## 3413 2 0 2
## 3414 2 0 2
## 3415 2 0 2
## 3416 2 0 2
## 3417 2 0 2
## 3418 2 0 2
## 3419 2 0 2
## 3420 2 0 2
## 3421 2 0 2
## 3422 2 0 2
## 3423 2 0 2
## 3424 2 0 2
## 3425 2 0 2
## 3426 2 0 2
## 3427 1 1 2
## 3428 2 0 2
## 3429 2 0 2
## 3430 2 0 2
## 3431 2 0 2
## 3432 2 0 2
## 3433 2 0 2
## 3434 2 0 2
## 3435 2 0 2
## 3436 2 0 2
## 3437 2 0 2
## 3438 2 0 2
## 3439 0 2 2
## 3440 2 0 2
## 3441 1 1 2
## 3442 2 0 2
## 3443 2 0 2
## 3444 2 0 2
## 3445 2 0 2
## 3446 2 0 2
## 3447 2 0 2
## 3448 2 0 2
## 3449 2 0 2
## 3450 2 0 2
## 3451 2 0 2
## 3452 2 0 2
## 3453 2 0 2
## 3454 2 0 2
## 3455 2 0 2
## 3456 2 0 2
## 3457 2 0 2
## 3458 2 0 2
## 3459 2 0 2
## 3460 2 0 2
## 3461 2 0 2
## 3462 2 0 2
## 3463 2 0 2
## 3464 2 0 2
## 3465 2 0 2
## 3466 2 0 2
## 3467 2 0 2
## 3468 2 0 2
## 3469 1 1 2
## 3470 2 0 2
## 3471 1 1 2
## 3472 2 0 2
## 3473 2 0 2
## 3474 2 0 2
## 3475 2 0 2
## 3476 2 0 2
## 3477 2 0 2
## 3478 2 0 2
## 3479 2 0 2
## 3480 2 0 2
## 3481 2 0 2
## 3482 2 0 2
## 3483 2 0 2
## 3484 2 0 2
## 3485 2 0 2
## 3486 2 0 2
## 3487 2 0 2
## 3488 2 0 2
## 3489 2 0 2
## 3490 2 0 2
## 3491 2 0 2
## 3492 2 0 2
## 3493 2 0 2
## 3494 2 0 2
## 3495 2 0 2
## 3496 2 0 2
## 3497 2 0 2
## 3498 2 0 2
## 3499 2 0 2
## 3500 2 0 2
## 3501 2 0 2
## 3502 2 0 2
## 3503 2 0 2
## 3504 2 0 2
## 3505 2 0 2
## 3506 2 0 2
## 3507 2 0 2
## 3508 2 0 2
## 3509 2 0 2
## 3510 2 0 2
## 3511 2 0 2
## 3512 2 0 2
## 3513 2 0 2
## 3514 2 0 2
## 3515 2 0 2
## 3516 2 0 2
## 3517 2 0 2
## 3518 1 1 2
## 3519 2 0 2
## 3520 2 0 2
## 3521 2 0 2
## 3522 2 0 2
## 3523 2 0 2
## 3524 2 0 2
## 3525 2 0 2
## 3526 2 0 2
## 3527 2 0 2
## 3528 2 0 2
## 3529 2 0 2
## 3530 2 0 2
## 3531 2 0 2
## 3532 2 0 2
## 3533 2 0 2
## 3534 2 0 2
## 3535 2 0 2
## 3536 2 0 2
## 3537 2 0 2
## 3538 2 0 2
## 3539 2 0 2
## 3540 2 0 2
## 3541 2 0 2
## 3542 2 0 2
## 3543 2 0 2
## 3544 2 0 2
## 3545 2 0 2
## 3546 2 0 2
## 3547 2 0 2
## 3548 2 0 2
## 3549 2 0 2
## 3550 2 0 2
## 3551 2 0 2
## 3552 2 0 2
## 3553 2 0 2
## 3554 2 0 2
## 3555 2 0 2
## 3556 2 0 2
## 3557 2 0 2
## 3558 2 0 2
## 3559 2 0 2
## 3560 2 0 2
## 3561 2 0 2
## 3562 2 0 2
## 3563 2 0 2
## 3564 2 0 2
## 3565 2 0 2
## 3566 2 0 2
## 3567 2 0 2
## 3568 2 0 2
## 3569 2 0 2
## 3570 2 0 2
## 3571 2 0 2
## 3572 2 0 2
## 3573 2 0 2
## 3574 2 0 2
## 3575 2 0 2
## 3576 2 0 2
## 3577 2 0 2
## 3578 2 0 2
## 3579 2 0 2
## 3580 2 0 2
## 3581 2 0 2
## 3582 2 0 2
## 3583 1 1 2
## 3584 1 1 2
## 3585 2 0 2
## 3586 2 0 2
## 3587 2 0 2
## 3588 2 0 2
## 3589 2 0 2
## 3590 2 0 2
## 3591 2 0 2
## 3592 2 0 2
## 3593 2 0 2
## 3594 2 0 2
## 3595 2 0 2
## 3596 2 0 2
## 3597 2 0 2
## 3598 2 0 2
## 3599 2 0 2
## 3600 2 0 2
## 3601 2 0 2
## 3602 2 0 2
## 3603 2 0 2
## 3604 2 0 2
## 3605 2 0 2
## 3606 2 0 2
## 3607 2 0 2
## 3608 2 0 2
## 3609 2 0 2
## 3610 2 0 2
## 3611 2 0 2
## 3612 2 0 2
## 3613 2 0 2
## 3614 2 0 2
## 3615 2 0 2
## 3616 2 0 2
## 3617 2 0 2
## 3618 2 0 2
## 3619 2 0 2
## 3620 2 0 2
## 3621 2 0 2
## 3622 2 0 2
## 3623 2 0 2
## 3624 2 0 2
## 3625 2 0 2
## 3626 2 0 2
## 3627 2 0 2
## 3628 2 0 2
## 3629 2 0 2
## 3630 2 0 2
## 3631 2 0 2
## 3632 2 0 2
## 3633 2 0 2
## 3634 2 0 2
## 3635 2 0 2
## 3636 2 0 2
## 3637 2 0 2
## 3638 2 0 2
## 3639 2 0 2
## 3640 2 0 2
## 3641 2 0 2
## 3642 2 0 2
## 3643 2 0 2
## 3644 2 0 2
## 3645 2 0 2
## 3646 2 0 2
## 3647 2 0 2
## 3648 2 0 2
## 3649 2 0 2
## 3650 2 0 2
## 3651 2 0 2
## 3652 2 0 2
## 3653 2 0 2
## 3654 2 0 2
## 3655 2 0 2
## 3656 2 0 2
## 3657 2 0 2
## 3658 2 0 2
## 3659 2 0 2
## 3660 2 0 2
## 3661 2 0 2
## 3662 2 0 2
## 3663 2 0 2
## 3664 2 0 2
## 3665 2 0 2
## 3666 2 0 2
## 3667 2 0 2
## 3668 2 0 2
## 3669 2 0 2
## 3670 2 0 2
## 3671 2 0 2
## 3672 2 0 2
## 3673 2 0 2
## 3674 2 0 2
## 3675 2 0 2
## 3676 2 0 2
## 3677 2 0 2
## 3678 2 0 2
## 3679 2 0 2
## 3680 2 0 2
## 3681 2 0 2
## 3682 2 0 2
## 3683 2 0 2
## 3684 2 0 2
## 3685 2 0 2
## 3686 2 0 2
## 3687 2 0 2
## 3688 2 0 2
## 3689 2 0 2
## 3690 2 0 2
## 3691 2 0 2
## 3692 2 0 2
## 3693 2 0 2
## 3694 2 0 2
## 3695 2 0 2
## 3696 2 0 2
## 3697 2 0 2
## 3698 2 0 2
## 3699 2 0 2
## 3700 1 1 2
## 3701 2 0 2
## 3702 2 0 2
## 3703 2 0 2
## 3704 2 0 2
## 3705 2 0 2
## 3706 2 0 2
## 3707 2 0 2
## 3708 2 0 2
## 3709 2 0 2
## 3710 2 0 2
## 3711 2 0 2
## 3712 2 0 2
## 3713 2 0 2
## 3714 2 0 2
## 3715 2 0 2
## 3716 2 0 2
## 3717 2 0 2
## 3718 2 0 2
## 3719 2 0 2
## 3720 2 0 2
## 3721 2 0 2
## 3722 2 0 2
## 3723 2 0 2
## 3724 2 0 2
## 3725 2 0 2
## 3726 2 0 2
## 3727 2 0 2
## 3728 2 0 2
## 3729 2 0 2
## 3730 2 0 2
## 3731 2 0 2
## 3732 2 0 2
## 3733 2 0 2
## 3734 2 0 2
## 3735 2 0 2
## 3736 2 0 2
## 3737 2 0 2
## 3738 2 0 2
## 3739 2 0 2
## 3740 2 0 2
## 3741 2 0 2
## 3742 2 0 2
## 3743 2 0 2
## 3744 2 0 2
## 3745 2 0 2
## 3746 1 1 2
## 3747 2 0 2
## 3748 2 0 2
## 3749 2 0 2
## 3750 2 0 2
## 3751 2 0 2
## 3752 2 0 2
## 3753 2 0 2
## 3754 2 0 2
## 3755 2 0 2
## 3756 2 0 2
## 3757 2 0 2
## 3758 2 0 2
## 3759 2 0 2
## 3760 2 0 2
## 3761 2 0 2
## 3762 2 0 2
## 3763 2 0 2
## 3764 2 0 2
## 3765 2 0 2
## 3766 2 0 2
## 3767 2 0 2
## 3768 2 0 2
## 3769 2 0 2
## 3770 2 0 2
## 3771 2 0 2
## 3772 2 0 2
## 3773 2 0 2
## 3774 2 0 2
## 3775 2 0 2
## 3776 2 0 2
## 3777 2 0 2
## 3778 2 0 2
## 3779 2 0 2
## 3780 2 0 2
## 3781 2 0 2
## 3782 2 0 2
## 3783 2 0 2
## 3784 2 0 2
## 3785 2 0 2
## 3786 2 0 2
## 3787 2 0 2
## 3788 2 0 2
## 3789 2 0 2
## 3790 2 0 2
## 3791 2 0 2
## 3792 1 1 2
## 3793 2 0 2
## 3794 2 0 2
## 3795 2 0 2
## 3796 2 0 2
## 3797 2 0 2
## 3798 2 0 2
## 3799 1 1 2
## 3800 2 0 2
## 3801 2 0 2
## 3802 1 1 2
## 3803 2 0 2
## 3804 2 0 2
## 3805 2 0 2
## 3806 2 0 2
## 3807 2 0 2
## 3808 2 0 2
## 3809 2 0 2
## 3810 2 0 2
## 3811 2 0 2
## 3812 2 0 2
## 3813 2 0 2
## 3814 2 0 2
## 3815 2 0 2
## 3816 2 0 2
## 3817 2 0 2
## 3818 2 0 2
## 3819 2 0 2
## 3820 2 0 2
## 3821 2 0 2
## 3822 2 0 2
## 3823 2 0 2
## 3824 2 0 2
## 3825 2 0 2
## 3826 2 0 2
## 3827 2 0 2
## 3828 2 0 2
## 3829 2 0 2
## 3830 2 0 2
## 3831 2 0 2
## 3832 2 0 2
## 3833 2 0 2
## 3834 2 0 2
## 3835 2 0 2
## 3836 1 1 2
## 3837 2 0 2
## 3838 2 0 2
## 3839 2 0 2
## 3840 2 0 2
## 3841 2 0 2
## 3842 2 0 2
## 3843 2 0 2
## 3844 2 0 2
## 3845 2 0 2
## 3846 2 0 2
## 3847 2 0 2
## 3848 2 0 2
## 3849 2 0 2
## 3850 2 0 2
## 3851 2 0 2
## 3852 2 0 2
## 3853 2 0 2
## 3854 2 0 2
## 3855 2 0 2
## 3856 2 0 2
## 3857 2 0 2
## 3858 2 0 2
## 3859 2 0 2
## 3860 2 0 2
## 3861 2 0 2
## 3862 2 0 2
## 3863 2 0 2
## 3864 2 0 2
## 3865 2 0 2
## 3866 2 0 2
## 3867 2 0 2
## 3868 2 0 2
## 3869 2 0 2
## 3870 2 0 2
## 3871 2 0 2
## 3872 2 0 2
## 3873 2 0 2
## 3874 1 1 2
## 3875 2 0 2
## 3876 2 0 2
## 3877 2 0 2
## 3878 2 0 2
## 3879 2 0 2
## 3880 2 0 2
## 3881 2 0 2
## 3882 2 0 2
## 3883 2 0 2
## 3884 2 0 2
## 3885 2 0 2
## 3886 2 0 2
## 3887 1 0 1
## 3888 1 0 1
## 3889 1 0 1
## 3890 0 1 1
## 3891 0 1 1
## 3892 1 0 1
## 3893 1 0 1
## 3894 0 1 1
## 3895 1 0 1
## 3896 1 0 1
## 3897 1 0 1
## 3898 0 1 1
## 3899 1 0 1
## 3900 1 0 1
## 3901 1 0 1
## 3902 0 1 1
## 3903 1 0 1
## 3904 1 0 1
## 3905 0 1 1
## 3906 1 0 1
## 3907 0 1 1
## 3908 1 0 1
## 3909 0 1 1
## 3910 0 1 1
## 3911 0 1 1
## 3912 1 0 1
## 3913 1 0 1
## 3914 1 0 1
## 3915 1 0 1
## 3916 1 0 1
## 3917 1 0 1
## 3918 1 0 1
## 3919 1 0 1
## 3920 1 0 1
## 3921 0 1 1
## 3922 1 0 1
## 3923 1 0 1
## 3924 0 1 1
## 3925 0 1 1
## 3926 1 0 1
## 3927 0 1 1
## 3928 1 0 1
## 3929 1 0 1
## 3930 1 0 1
## 3931 1 0 1
## 3932 1 0 1
## 3933 1 0 1
## 3934 1 0 1
## 3935 1 0 1
## 3936 1 0 1
## 3937 1 0 1
## 3938 1 0 1
## 3939 1 0 1
## 3940 1 0 1
## 3941 1 0 1
## 3942 1 0 1
## 3943 1 0 1
## 3944 1 0 1
## 3945 1 0 1
## 3946 1 0 1
## 3947 0 1 1
## 3948 0 1 1
## 3949 0 1 1
## 3950 1 0 1
## 3951 1 0 1
## 3952 0 1 1
## 3953 1 0 1
## 3954 1 0 1
## 3955 1 0 1
## 3956 0 1 1
## 3957 1 0 1
## 3958 1 0 1
## 3959 1 0 1
## 3960 0 1 1
## 3961 1 0 1
## 3962 0 1 1
## 3963 1 0 1
## 3964 0 1 1
## 3965 1 0 1
## 3966 1 0 1
## 3967 1 0 1
## 3968 1 0 1
## 3969 1 0 1
## 3970 1 0 1
## 3971 0 1 1
## 3972 1 0 1
## 3973 1 0 1
## 3974 1 0 1
## 3975 1 0 1
## 3976 0 1 1
## 3977 1 0 1
## 3978 1 0 1
## 3979 1 0 1
## 3980 1 0 1
## 3981 1 0 1
## 3982 1 0 1
## 3983 1 0 1
## 3984 0 1 1
## 3985 1 0 1
## 3986 0 1 1
## 3987 1 0 1
## 3988 0 1 1
## 3989 0 1 1
## 3990 0 1 1
## 3991 0 1 1
## 3992 1 0 1
## 3993 1 0 1
## 3994 1 0 1
## 3995 1 0 1
## 3996 0 1 1
## 3997 1 0 1
## 3998 0 1 1
## 3999 1 0 1
## 4000 0 1 1
## 4001 1 0 1
## 4002 1 0 1
## 4003 1 0 1
## 4004 1 0 1
## 4005 1 0 1
## 4006 0 1 1
## 4007 0 1 1
## 4008 0 1 1
## 4009 0 1 1
## 4010 0 1 1
## 4011 1 0 1
## 4012 0 1 1
## 4013 0 1 1
## 4014 1 0 1
## 4015 1 0 1
## 4016 0 1 1
## 4017 1 0 1
## 4018 1 0 1
## 4019 1 0 1
## 4020 0 1 1
## 4021 0 1 1
## 4022 1 0 1
## 4023 1 0 1
## 4024 1 0 1
## 4025 0 1 1
## 4026 1 0 1
## 4027 1 0 1
## 4028 1 0 1
## 4029 1 0 1
## 4030 1 0 1
## 4031 1 0 1
## 4032 1 0 1
## 4033 1 0 1
## 4034 1 0 1
## 4035 1 0 1
## 4036 1 0 1
## 4037 1 0 1
## 4038 1 0 1
## 4039 1 0 1
## 4040 1 0 1
## 4041 1 0 1
## 4042 0 1 1
## 4043 1 0 1
## 4044 1 0 1
## 4045 1 0 1
## 4046 0 1 1
## 4047 0 1 1
## 4048 1 0 1
## 4049 1 0 1
## 4050 0 1 1
## 4051 1 0 1
## 4052 0 1 1
## 4053 1 0 1
## 4054 0 1 1
## 4055 1 0 1
## 4056 1 0 1
## 4057 1 0 1
## 4058 1 0 1
## 4059 1 0 1
## 4060 0 1 1
## 4061 0 1 1
## 4062 1 0 1
## 4063 0 1 1
## 4064 1 0 1
## 4065 0 1 1
## 4066 0 1 1
## 4067 1 0 1
## 4068 0 1 1
## 4069 1 0 1
## 4070 0 1 1
## 4071 0 1 1
## 4072 1 0 1
## 4073 1 0 1
## 4074 0 1 1
## 4075 1 0 1
## 4076 0 1 1
## 4077 1 0 1
## 4078 1 0 1
## 4079 1 0 1
## 4080 1 0 1
## 4081 1 0 1
## 4082 1 0 1
## 4083 1 0 1
## 4084 1 0 1
## 4085 1 0 1
## 4086 1 0 1
## 4087 0 1 1
## 4088 1 0 1
## 4089 1 0 1
## 4090 1 0 1
## 4091 1 0 1
## 4092 1 0 1
## 4093 1 0 1
## 4094 1 0 1
## 4095 1 0 1
## 4096 1 0 1
## 4097 1 0 1
## 4098 1 0 1
## 4099 1 0 1
## 4100 1 0 1
## 4101 1 0 1
## 4102 1 0 1
## 4103 1 0 1
## 4104 1 0 1
## 4105 1 0 1
## 4106 1 0 1
## 4107 1 0 1
## 4108 1 0 1
## 4109 1 0 1
## 4110 1 0 1
## 4111 1 0 1
## 4112 0 1 1
## 4113 1 0 1
## 4114 1 0 1
## 4115 1 0 1
## 4116 0 1 1
## 4117 1 0 1
## 4118 1 0 1
## 4119 1 0 1
## 4120 1 0 1
## 4121 1 0 1
## 4122 1 0 1
## 4123 0 1 1
## 4124 1 0 1
## 4125 1 0 1
## 4126 1 0 1
## 4127 0 1 1
## 4128 1 0 1
## 4129 0 1 1
## 4130 1 0 1
## 4131 0 1 1
## 4132 1 0 1
## 4133 1 0 1
## 4134 0 1 1
## 4135 1 0 1
## 4136 0 1 1
## 4137 1 0 1
## 4138 1 0 1
## 4139 1 0 1
## 4140 0 1 1
## 4141 0 1 1
## 4142 1 0 1
## 4143 1 0 1
## 4144 0 1 1
## 4145 1 0 1
## 4146 1 0 1
## 4147 1 0 1
## 4148 1 0 1
## 4149 1 0 1
## 4150 1 0 1
## 4151 0 1 1
## 4152 0 1 1
## 4153 1 0 1
## 4154 1 0 1
## 4155 1 0 1
## 4156 1 0 1
## 4157 1 0 1
## 4158 0 1 1
## 4159 1 0 1
## 4160 1 0 1
## 4161 1 0 1
## 4162 1 0 1
## 4163 1 0 1
## 4164 1 0 1
## 4165 1 0 1
## 4166 1 0 1
## 4167 1 0 1
## 4168 1 0 1
## 4169 1 0 1
## 4170 1 0 1
## 4171 0 1 1
## 4172 0 1 1
## 4173 1 0 1
## 4174 1 0 1
## 4175 1 0 1
## 4176 1 0 1
## 4177 1 0 1
## 4178 1 0 1
## 4179 1 0 1
## 4180 1 0 1
## 4181 1 0 1
## 4182 1 0 1
## 4183 0 1 1
## 4184 1 0 1
## 4185 1 0 1
## 4186 1 0 1
## 4187 0 1 1
## 4188 0 1 1
## 4189 0 1 1
## 4190 1 0 1
## 4191 1 0 1
## 4192 0 1 1
## 4193 1 0 1
## 4194 1 0 1
## 4195 1 0 1
## 4196 0 1 1
## 4197 1 0 1
## 4198 1 0 1
## 4199 1 0 1
## 4200 1 0 1
## 4201 1 0 1
## 4202 0 1 1
## 4203 0 1 1
## 4204 1 0 1
## 4205 1 0 1
## 4206 0 1 1
## 4207 1 0 1
## 4208 1 0 1
## 4209 1 0 1
## 4210 1 0 1
## 4211 0 1 1
## 4212 1 0 1
## 4213 0 1 1
## 4214 1 0 1
## 4215 1 0 1
## 4216 1 0 1
## 4217 1 0 1
## 4218 0 1 1
## 4219 1 0 1
## 4220 1 0 1
## 4221 1 0 1
## 4222 0 1 1
## 4223 1 0 1
## 4224 0 1 1
## 4225 1 0 1
## 4226 1 0 1
## 4227 1 0 1
## 4228 0 1 1
## 4229 1 0 1
## 4230 0 1 1
## 4231 1 0 1
## 4232 1 0 1
## 4233 1 0 1
## 4234 0 1 1
## 4235 1 0 1
## 4236 1 0 1
## 4237 0 1 1
## 4238 1 0 1
## 4239 1 0 1
## 4240 0 1 1
## 4241 1 0 1
## 4242 1 0 1
## 4243 1 0 1
## 4244 1 0 1
## 4245 1 0 1
## 4246 1 0 1
## 4247 0 1 1
## 4248 1 0 1
## 4249 1 0 1
## 4250 1 0 1
## 4251 1 0 1
## 4252 1 0 1
## 4253 1 0 1
## 4254 1 0 1
## 4255 1 0 1
## 4256 1 0 1
## 4257 1 0 1
## 4258 1 0 1
## 4259 1 0 1
## 4260 1 0 1
## 4261 1 0 1
## 4262 0 1 1
## 4263 1 0 1
## 4264 1 0 1
## 4265 1 0 1
## 4266 1 0 1
## 4267 1 0 1
## 4268 1 0 1
## 4269 1 0 1
## 4270 0 1 1
## 4271 1 0 1
## 4272 1 0 1
## 4273 1 0 1
## 4274 1 0 1
## 4275 1 0 1
## 4276 1 0 1
## 4277 1 0 1
## 4278 1 0 1
## 4279 1 0 1
## 4280 1 0 1
## 4281 1 0 1
## 4282 1 0 1
## 4283 1 0 1
## 4284 0 1 1
## 4285 1 0 1
## 4286 1 0 1
## 4287 1 0 1
## 4288 1 0 1
## 4289 0 1 1
## 4290 0 1 1
## 4291 1 0 1
## 4292 1 0 1
## 4293 1 0 1
## 4294 1 0 1
## 4295 1 0 1
## 4296 1 0 1
## 4297 1 0 1
## 4298 1 0 1
## 4299 1 0 1
## 4300 1 0 1
## 4301 0 1 1
## 4302 0 1 1
## 4303 0 1 1
## 4304 1 0 1
## 4305 1 0 1
## 4306 1 0 1
## 4307 1 0 1
## 4308 1 0 1
## 4309 1 0 1
## 4310 1 0 1
## 4311 1 0 1
## 4312 1 0 1
## 4313 0 1 1
## 4314 1 0 1
## 4315 1 0 1
## 4316 1 0 1
## 4317 1 0 1
## 4318 1 0 1
## 4319 1 0 1
## 4320 1 0 1
## 4321 0 1 1
## 4322 0 1 1
## 4323 0 1 1
## 4324 1 0 1
## 4325 1 0 1
## 4326 0 1 1
## 4327 1 0 1
## 4328 0 1 1
## 4329 0 1 1
## 4330 1 0 1
## 4331 1 0 1
## 4332 0 1 1
## 4333 1 0 1
## 4334 0 1 1
## 4335 1 0 1
## 4336 1 0 1
## 4337 1 0 1
## 4338 1 0 1
## 4339 1 0 1
## 4340 0 1 1
## 4341 0 1 1
## 4342 1 0 1
## 4343 1 0 1
## 4344 1 0 1
## 4345 1 0 1
## 4346 1 0 1
## 4347 0 1 1
## 4348 1 0 1
## 4349 1 0 1
## 4350 1 0 1
## 4351 1 0 1
## 4352 1 0 1
## 4353 1 0 1
## 4354 1 0 1
## 4355 1 0 1
## 4356 1 0 1
## 4357 1 0 1
## 4358 1 0 1
## 4359 1 0 1
## 4360 1 0 1
## 4361 1 0 1
## 4362 1 0 1
## 4363 1 0 1
## 4364 0 1 1
## 4365 1 0 1
## 4366 1 0 1
## 4367 1 0 1
## 4368 1 0 1
## 4369 1 0 1
## 4370 0 1 1
## 4371 1 0 1
## 4372 1 0 1
## 4373 1 0 1
## 4374 1 0 1
## 4375 1 0 1
## 4376 1 0 1
## 4377 1 0 1
## 4378 1 0 1
## 4379 1 0 1
## 4380 1 0 1
## 4381 1 0 1
## 4382 1 0 1
## 4383 0 1 1
## 4384 1 0 1
## 4385 1 0 1
## 4386 1 0 1
## 4387 1 0 1
## 4388 1 0 1
## 4389 1 0 1
## 4390 1 0 1
## 4391 1 0 1
## 4392 1 0 1
## 4393 1 0 1
## 4394 1 0 1
## 4395 1 0 1
## 4396 1 0 1
## 4397 1 0 1
## 4398 1 0 1
## 4399 1 0 1
## 4400 1 0 1
## 4401 1 0 1
## 4402 1 0 1
## 4403 1 0 1
## 4404 1 0 1
## 4405 1 0 1
## 4406 1 0 1
## 4407 1 0 1
## 4408 1 0 1
## 4409 1 0 1
## 4410 1 0 1
## 4411 1 0 1
## 4412 1 0 1
## 4413 1 0 1
## 4414 1 0 1
## 4415 1 0 1
## 4416 1 0 1
## 4417 1 0 1
## 4418 1 0 1
## 4419 1 0 1
## 4420 1 0 1
## 4421 1 0 1
## 4422 1 0 1
## 4423 1 0 1
## 4424 1 0 1
## 4425 1 0 1
## 4426 1 0 1
## 4427 1 0 1
## 4428 1 0 1
## 4429 1 0 1
## 4430 1 0 1
## 4431 1 0 1
## 4432 1 0 1
## 4433 1 0 1
## 4434 1 0 1
## 4435 1 0 1
## 4436 1 0 1
## 4437 1 0 1
## 4438 1 0 1
## 4439 1 0 1
## 4440 1 0 1
## 4441 1 0 1
## 4442 0 1 1
## 4443 1 0 1
## 4444 1 0 1
## 4445 1 0 1
## 4446 0 1 1
## 4447 1 0 1
## 4448 1 0 1
## 4449 1 0 1
## 4450 1 0 1
## 4451 0 1 1
## 4452 1 0 1
## 4453 1 0 1
## 4454 1 0 1
## 4455 1 0 1
## 4456 0 1 1
## 4457 1 0 1
## 4458 1 0 1
## 4459 0 1 1
## 4460 1 0 1
## 4461 1 0 1
## 4462 1 0 1
## 4463 1 0 1
## 4464 1 0 1
## 4465 1 0 1
## 4466 1 0 1
## 4467 1 0 1
## 4468 1 0 1
## 4469 1 0 1
## 4470 1 0 1
## 4471 1 0 1
## 4472 1 0 1
## 4473 1 0 1
## 4474 1 0 1
## 4475 1 0 1
## 4476 1 0 1
## 4477 1 0 1
## 4478 1 0 1
## 4479 1 0 1
## 4480 1 0 1
## 4481 1 0 1
## 4482 1 0 1
## 4483 1 0 1
## 4484 1 0 1
## 4485 0 1 1
## 4486 1 0 1
## 4487 1 0 1
## 4488 1 0 1
## 4489 1 0 1
## 4490 1 0 1
## 4491 1 0 1
## 4492 1 0 1
## 4493 1 0 1
## 4494 1 0 1
## 4495 1 0 1
## 4496 0 1 1
## 4497 1 0 1
## 4498 1 0 1
## 4499 1 0 1
## 4500 1 0 1
## 4501 1 0 1
## 4502 1 0 1
## 4503 1 0 1
## 4504 1 0 1
## 4505 1 0 1
## 4506 1 0 1
## 4507 1 0 1
## 4508 1 0 1
## 4509 1 0 1
## 4510 1 0 1
## 4511 1 0 1
## 4512 1 0 1
## 4513 1 0 1
## 4514 1 0 1
## 4515 1 0 1
## 4516 1 0 1
## 4517 1 0 1
## 4518 1 0 1
## 4519 1 0 1
## 4520 1 0 1
## 4521 1 0 1
## 4522 1 0 1
## 4523 1 0 1
## 4524 1 0 1
## 4525 1 0 1
## 4526 1 0 1
## 4527 1 0 1
## 4528 1 0 1
## 4529 1 0 1
## 4530 1 0 1
## 4531 1 0 1
## 4532 1 0 1
## 4533 1 0 1
## 4534 1 0 1
## 4535 1 0 1
## 4536 1 0 1
## 4537 1 0 1
## 4538 1 0 1
## 4539 1 0 1
## 4540 1 0 1
## 4541 1 0 1
## 4542 1 0 1
## 4543 1 0 1
## 4544 1 0 1
## 4545 1 0 1
## 4546 1 0 1
## 4547 1 0 1
## 4548 1 0 1
## 4549 1 0 1
## 4550 1 0 1
## 4551 1 0 1
## 4552 1 0 1
## 4553 1 0 1
## 4554 1 0 1
## 4555 1 0 1
## 4556 1 0 1
## 4557 1 0 1
## 4558 1 0 1
## 4559 1 0 1
## 4560 0 1 1
## 4561 1 0 1
## 4562 1 0 1
## 4563 1 0 1
## 4564 1 0 1
## 4565 1 0 1
## 4566 1 0 1
## 4567 1 0 1
## 4568 1 0 1
## 4569 1 0 1
## 4570 1 0 1
## 4571 1 0 1
## 4572 1 0 1
## 4573 1 0 1
## 4574 1 0 1
## 4575 1 0 1
## 4576 1 0 1
## 4577 1 0 1
## 4578 1 0 1
## 4579 1 0 1
## 4580 1 0 1
## 4581 1 0 1
## 4582 1 0 1
## 4583 1 0 1
## 4584 1 0 1
## 4585 1 0 1
## 4586 1 0 1
## 4587 1 0 1
## 4588 1 0 1
## 4589 1 0 1
## 4590 1 0 1
## 4591 1 0 1
## 4592 1 0 1
## 4593 1 0 1
## 4594 1 0 1
## 4595 1 0 1
## 4596 1 0 1
## 4597 1 0 1
## 4598 1 0 1
## 4599 1 0 1
## 4600 1 0 1
## 4601 1 0 1
## 4602 1 0 1
## 4603 1 0 1
## 4604 1 0 1
## 4605 1 0 1
## 4606 1 0 1
## 4607 1 0 1
## 4608 1 0 1
## 4609 1 0 1
## 4610 1 0 1
## 4611 1 0 1
## 4612 1 0 1
## 4613 1 0 1
## 4614 1 0 1
## 4615 1 0 1
## 4616 1 0 1
## 4617 1 0 1
## 4618 1 0 1
## 4619 1 0 1
## 4620 1 0 1
## 4621 1 0 1
## 4622 1 0 1
## 4623 0 1 1
## 4624 1 0 1
## 4625 1 0 1
## 4626 1 0 1
## 4627 1 0 1
## 4628 1 0 1
## 4629 1 0 1
## 4630 1 0 1
## 4631 1 0 1
## 4632 1 0 1
## 4633 0 1 1
## 4634 1 0 1
## 4635 1 0 1
## 4636 1 0 1
## 4637 1 0 1
## 4638 1 0 1
## 4639 1 0 1
## 4640 1 0 1
## 4641 1 0 1
## 4642 1 0 1
## 4643 1 0 1
## 4644 1 0 1
## 4645 1 0 1
## 4646 1 0 1
## 4647 1 0 1
## 4648 1 0 1
## 4649 0 1 1
## 4650 1 0 1
## 4651 1 0 1
## 4652 1 0 1
## 4653 1 0 1
## 4654 1 0 1
## 4655 1 0 1
## 4656 1 0 1
## 4657 1 0 1
## 4658 1 0 1
## 4659 1 0 1
## 4660 1 0 1
## 4661 1 0 1
## 4662 1 0 1
## 4663 1 0 1
## 4664 1 0 1
## 4665 1 0 1
## 4666 1 0 1
## 4667 1 0 1
## 4668 1 0 1
## 4669 1 0 1
## 4670 1 0 1
## 4671 1 0 1
## 4672 1 0 1
## 4673 1 0 1
## 4674 1 0 1
## 4675 1 0 1
## 4676 1 0 1
## 4677 1 0 1
## 4678 1 0 1
## 4679 1 0 1
## 4680 1 0 1
## 4681 1 0 1
## 4682 1 0 1
## 4683 1 0 1
## 4684 1 0 1
## 4685 1 0 1
## 4686 0 1 1
## 4687 1 0 1
## 4688 1 0 1
## 4689 1 0 1
## 4690 1 0 1
## 4691 1 0 1
## 4692 1 0 1
## 4693 0 1 1
## 4694 1 0 1
## 4695 1 0 1
## 4696 1 0 1
## 4697 1 0 1
## 4698 1 0 1
## 4699 1 0 1
## 4700 1 0 1
## 4701 1 0 1
## 4702 1 0 1
## 4703 1 0 1
## 4704 1 0 1
## 4705 1 0 1
## 4706 1 0 1
## 4707 1 0 1
## 4708 1 0 1
## 4709 1 0 1
## 4710 1 0 1
## 4711 1 0 1
## 4712 1 0 1
## 4713 1 0 1
## 4714 1 0 1
## 4715 1 0 1
## 4716 1 0 1
## 4717 0 1 1
## 4718 1 0 1
## 4719 1 0 1
## 4720 1 0 1
## 4721 1 0 1
## 4722 1 0 1
## 4723 1 0 1
## 4724 0 1 1
## 4725 1 0 1
## 4726 1 0 1
## 4727 1 0 1
## 4728 1 0 1
## 4729 1 0 1
## 4730 1 0 1
## 4731 1 0 1
## 4732 1 0 1
## 4733 0 1 1
## 4734 0 1 1
## 4735 1 0 1
## 4736 1 0 1
## 4737 0 1 1
## 4738 1 0 1
## 4739 1 0 1
## 4740 0 1 1
## 4741 0 1 1
## 4742 1 0 1
## 4743 1 0 1
## 4744 1 0 1
## 4745 1 0 1
## 4746 1 0 1
## 4747 1 0 1
## 4748 1 0 1
## 4749 0 1 1
## 4750 1 0 1
## 4751 0 1 1
## 4752 1 0 1
## 4753 0 1 1
## 4754 1 0 1
## 4755 1 0 1
## 4756 1 0 1
## 4757 1 0 1
## 4758 0 1 1
## 4759 1 0 1
## 4760 1 0 1
## 4761 1 0 1
## 4762 1 0 1
## 4763 1 0 1
## 4764 1 0 1
## 4765 1 0 1
## 4766 0 1 1
## 4767 1 0 1
## 4768 0 1 1
## 4769 1 0 1
## 4770 1 0 1
## 4771 1 0 1
## 4772 1 0 1
## 4773 0 1 1
## 4774 0 1 1
## 4775 1 0 1
## 4776 1 0 1
## 4777 1 0 1
## 4778 1 0 1
## 4779 1 0 1
## 4780 1 0 1
## 4781 1 0 1
## 4782 1 0 1
## 4783 1 0 1
## 4784 1 0 1
## 4785 0 1 1
## 4786 0 1 1
## 4787 1 0 1
## 4788 1 0 1
## 4789 0 1 1
## 4790 0 1 1
## 4791 1 0 1
## 4792 0 1 1
## 4793 0 1 1
## 4794 1 0 1
## 4795 1 0 1
## 4796 1 0 1
## 4797 0 1 1
## 4798 1 0 1
## 4799 0 1 1
## 4800 1 0 1
## 4801 1 0 1
## 4802 1 0 1
## 4803 1 0 1
## 4804 0 1 1
## 4805 1 0 1
## 4806 0 1 1
## 4807 1 0 1
## 4808 1 0 1
## 4809 1 0 1
## 4810 1 0 1
## 4811 1 0 1
## 4812 0 1 1
## 4813 0 1 1
## 4814 1 0 1
## 4815 1 0 1
## 4816 1 0 1
## 4817 1 0 1
## 4818 1 0 1
## 4819 0 1 1
## 4820 1 0 1
## 4821 1 0 1
## 4822 1 0 1
## 4823 1 0 1
## 4824 1 0 1
## 4825 0 1 1
## 4826 1 0 1
## 4827 1 0 1
## 4828 1 0 1
## 4829 1 0 1
## 4830 1 0 1
## 4831 0 1 1
## 4832 0 1 1
## 4833 0 1 1
## 4834 1 0 1
## 4835 0 1 1
## 4836 1 0 1
## 4837 1 0 1
## 4838 1 0 1
## 4839 1 0 1
## 4840 1 0 1
## 4841 0 1 1
## 4842 1 0 1
## 4843 1 0 1
## 4844 0 1 1
## 4845 0 1 1
## 4846 1 0 1
## 4847 1 0 1
## 4848 0 1 1
## 4849 1 0 1
## 4850 1 0 1
## 4851 0 1 1
## 4852 1 0 1
## 4853 1 0 1
## 4854 1 0 1
## 4855 1 0 1
## 4856 1 0 1
## 4857 0 1 1
## 4858 1 0 1
## 4859 1 0 1
## 4860 1 0 1
## 4861 1 0 1
## 4862 1 0 1
## 4863 1 0 1
## 4864 1 0 1
## 4865 1 0 1
## 4866 1 0 1
## 4867 0 1 1
## 4868 1 0 1
## 4869 1 0 1
## 4870 1 0 1
## 4871 0 1 1
## 4872 1 0 1
## 4873 0 1 1
## 4874 1 0 1
## 4875 0 1 1
## 4876 1 0 1
## 4877 0 1 1
## 4878 1 0 1
## 4879 1 0 1
## 4880 1 0 1
## 4881 1 0 1
## 4882 0 1 1
## 4883 0 1 1
## 4884 1 0 1
## 4885 0 1 1
## 4886 0 1 1
## 4887 1 0 1
## 4888 1 0 1
## 4889 1 0 1
## 4890 1 0 1
## 4891 1 0 1
## 4892 1 0 1
## 4893 0 1 1
## 4894 1 0 1
## 4895 0 1 1
## 4896 0 1 1
## 4897 1 0 1
## 4898 1 0 1
## 4899 1 0 1
## 4900 1 0 1
## 4901 1 0 1
## 4902 0 1 1
## 4903 0 1 1
## 4904 1 0 1
## 4905 1 0 1
## 4906 0 1 1
## 4907 1 0 1
## 4908 1 0 1
## 4909 1 0 1
## 4910 1 0 1
## 4911 1 0 1
## 4912 1 0 1
## 4913 1 0 1
## 4914 1 0 1
## 4915 0 1 1
## 4916 1 0 1
## 4917 1 0 1
## 4918 0 1 1
## 4919 0 1 1
## 4920 0 1 1
## 4921 1 0 1
## 4922 1 0 1
## 4923 1 0 1
## 4924 1 0 1
## 4925 1 0 1
## 4926 1 0 1
## 4927 1 0 1
## 4928 1 0 1
## 4929 1 0 1
## 4930 0 1 1
## 4931 0 1 1
## 4932 1 0 1
## 4933 1 0 1
## 4934 1 0 1
## 4935 1 0 1
## 4936 1 0 1
## 4937 1 0 1
## 4938 0 1 1
## 4939 1 0 1
## 4940 1 0 1
## 4941 1 0 1
## 4942 0 1 1
## 4943 0 1 1
## 4944 0 1 1
## 4945 1 0 1
## 4946 1 0 1
## 4947 1 0 1
## 4948 0 1 1
## 4949 1 0 1
## 4950 1 0 1
## 4951 1 0 1
## 4952 1 0 1
## 4953 1 0 1
## 4954 1 0 1
## 4955 1 0 1
## 4956 1 0 1
## 4957 1 0 1
## 4958 0 1 1
## 4959 0 1 1
## 4960 1 0 1
## 4961 1 0 1
## 4962 1 0 1
## 4963 1 0 1
## 4964 1 0 1
## 4965 0 1 1
## 4966 1 0 1
## 4967 1 0 1
## 4968 1 0 1
## 4969 1 0 1
## 4970 0 1 1
## 4971 0 1 1
## 4972 1 0 1
## 4973 1 0 1
## 4974 1 0 1
## 4975 1 0 1
## 4976 0 1 1
## 4977 1 0 1
## 4978 0 1 1
## 4979 1 0 1
## 4980 1 0 1
## 4981 1 0 1
## 4982 0 1 1
## 4983 1 0 1
## 4984 1 0 1
## 4985 1 0 1
## 4986 1 0 1
## 4987 1 0 1
## 4988 1 0 1
## 4989 1 0 1
## 4990 1 0 1
## 4991 0 1 1
## 4992 1 0 1
## 4993 1 0 1
## 4994 1 0 1
## 4995 0 1 1
## 4996 0 1 1
## 4997 1 0 1
## 4998 0 1 1
## 4999 1 0 1
## 5000 1 0 1
## 5001 0 1 1
## 5002 0 1 1
## 5003 0 1 1
## 5004 1 0 1
## 5005 1 0 1
## 5006 0 1 1
## 5007 1 0 1
## 5008 0 1 1
## 5009 0 1 1
## 5010 0 1 1
## 5011 0 1 1
## 5012 0 1 1
## 5013 0 1 1
## 5014 0 1 1
## 5015 1 0 1
## 5016 1 0 1
## 5017 0 1 1
## 5018 1 0 1
## 5019 1 0 1
## 5020 1 0 1
## 5021 1 0 1
## 5022 1 0 1
## 5023 1 0 1
## 5024 1 0 1
## 5025 1 0 1
## 5026 1 0 1
## 5027 1 0 1
## 5028 1 0 1
## 5029 1 0 1
## 5030 1 0 1
## 5031 1 0 1
## 5032 1 0 1
## 5033 1 0 1
## 5034 1 0 1
## 5035 1 0 1
## 5036 1 0 1
## 5037 1 0 1
## 5038 0 1 1
## 5039 1 0 1
## 5040 1 0 1
## 5041 1 0 1
## 5042 1 0 1
## 5043 1 0 1
## 5044 1 0 1
## 5045 1 0 1
## 5046 1 0 1
## 5047 1 0 1
## 5048 0 1 1
## 5049 0 1 1
## 5050 1 0 1
## 5051 1 0 1
## 5052 0 1 1
## 5053 1 0 1
## 5054 1 0 1
## 5055 1 0 1
## 5056 0 1 1
## 5057 0 1 1
## 5058 1 0 1
## 5059 1 0 1
## 5060 1 0 1
## 5061 1 0 1
## 5062 1 0 1
## 5063 1 0 1
## 5064 1 0 1
## 5065 1 0 1
## 5066 1 0 1
## 5067 1 0 1
## 5068 1 0 1
## 5069 1 0 1
## 5070 0 1 1
## 5071 1 0 1
## 5072 1 0 1
## 5073 1 0 1
## 5074 1 0 1
## 5075 0 1 1
## 5076 1 0 1
## 5077 1 0 1
## 5078 1 0 1
## 5079 0 1 1
## 5080 1 0 1
## 5081 1 0 1
## 5082 1 0 1
## 5083 1 0 1
## 5084 0 1 1
## 5085 0 1 1
## 5086 0 1 1
## 5087 1 0 1
## 5088 0 1 1
## 5089 1 0 1
## 5090 0 1 1
## 5091 1 0 1
## 5092 0 1 1
## 5093 0 1 1
## 5094 0 1 1
## 5095 1 0 1
## 5096 0 1 1
## 5097 1 0 1
## 5098 1 0 1
## 5099 1 0 1
## 5100 1 0 1
## 5101 0 1 1
## 5102 1 0 1
## 5103 1 0 1
## 5104 0 1 1
## 5105 0 1 1
## 5106 0 1 1
## 5107 1 0 1
## 5108 0 1 1
## 5109 1 0 1
## 5110 1 0 1
## 5111 0 1 1
## 5112 1 0 1
## 5113 1 0 1
## 5114 1 0 1
## 5115 1 0 1
## 5116 1 0 1
## 5117 1 0 1
## 5118 1 0 1
## 5119 1 0 1
## 5120 1 0 1
## 5121 0 1 1
## 5122 0 1 1
## 5123 1 0 1
## 5124 1 0 1
## 5125 1 0 1
## 5126 1 0 1
## 5127 1 0 1
## 5128 1 0 1
## 5129 1 0 1
## 5130 0 1 1
## 5131 1 0 1
## 5132 1 0 1
## 5133 1 0 1
## 5134 1 0 1
## 5135 0 1 1
## 5136 0 1 1
## 5137 1 0 1
## 5138 1 0 1
## 5139 1 0 1
## 5140 1 0 1
## 5141 0 1 1
## 5142 1 0 1
## 5143 0 1 1
## 5144 1 0 1
## 5145 1 0 1
## 5146 1 0 1
## 5147 1 0 1
## 5148 1 0 1
## 5149 1 0 1
## 5150 1 0 1
## 5151 1 0 1
## 5152 1 0 1
## 5153 1 0 1
## 5154 0 1 1
## 5155 1 0 1
## 5156 1 0 1
## 5157 1 0 1
## 5158 1 0 1
## 5159 1 0 1
## 5160 1 0 1
## 5161 1 0 1
## 5162 1 0 1
## 5163 1 0 1
## 5164 1 0 1
## 5165 1 0 1
## 5166 1 0 1
## 5167 1 0 1
## 5168 0 1 1
## 5169 1 0 1
## 5170 1 0 1
## 5171 1 0 1
## 5172 1 0 1
## 5173 1 0 1
## 5174 1 0 1
## 5175 1 0 1
## 5176 1 0 1
## 5177 1 0 1
## 5178 1 0 1
## 5179 1 0 1
## 5180 1 0 1
## 5181 1 0 1
## 5182 1 0 1
## 5183 0 1 1
## 5184 0 1 1
## 5185 1 0 1
## 5186 1 0 1
## 5187 1 0 1
## 5188 1 0 1
## 5189 1 0 1
## 5190 0 1 1
## 5191 1 0 1
## 5192 1 0 1
## 5193 1 0 1
## 5194 1 0 1
## 5195 1 0 1
## 5196 1 0 1
## 5197 0 1 1
## 5198 1 0 1
## 5199 1 0 1
## 5200 1 0 1
## 5201 1 0 1
## 5202 0 1 1
## 5203 1 0 1
## 5204 1 0 1
## 5205 0 1 1
## 5206 1 0 1
## 5207 1 0 1
## 5208 1 0 1
## 5209 1 0 1
## 5210 1 0 1
## 5211 0 1 1
## 5212 1 0 1
## 5213 0 1 1
## 5214 1 0 1
## 5215 1 0 1
## 5216 1 0 1
## 5217 1 0 1
## 5218 0 1 1
## 5219 1 0 1
## 5220 1 0 1
## 5221 1 0 1
## 5222 1 0 1
## 5223 1 0 1
## 5224 1 0 1
## 5225 0 1 1
## 5226 1 0 1
## 5227 1 0 1
## 5228 1 0 1
## 5229 1 0 1
## 5230 1 0 1
## 5231 1 0 1
## 5232 1 0 1
## 5233 1 0 1
## 5234 1 0 1
## 5235 1 0 1
## 5236 1 0 1
## 5237 1 0 1
## 5238 1 0 1
## 5239 0 1 1
## 5240 0 1 1
## 5241 1 0 1
## 5242 1 0 1
## 5243 1 0 1
## 5244 1 0 1
## 5245 1 0 1
## 5246 1 0 1
## 5247 1 0 1
## 5248 1 0 1
## 5249 1 0 1
## 5250 1 0 1
## 5251 1 0 1
## 5252 1 0 1
## 5253 0 1 1
## 5254 0 1 1
## 5255 0 1 1
## 5256 1 0 1
## 5257 1 0 1
## 5258 1 0 1
## 5259 0 1 1
## 5260 0 1 1
## 5261 0 1 1
## 5262 1 0 1
## 5263 1 0 1
## 5264 0 1 1
## 5265 1 0 1
## 5266 1 0 1
## 5267 1 0 1
## 5268 0 1 1
## 5269 1 0 1
## 5270 0 1 1
## 5271 1 0 1
## 5272 1 0 1
## 5273 0 1 1
## 5274 1 0 1
## 5275 1 0 1
## 5276 1 0 1
## 5277 1 0 1
## 5278 1 0 1
## 5279 1 0 1
## 5280 0 1 1
## 5281 1 0 1
## 5282 0 1 1
## 5283 1 0 1
## 5284 1 0 1
## 5285 1 0 1
## 5286 1 0 1
## 5287 0 1 1
## 5288 1 0 1
## 5289 0 1 1
## 5290 1 0 1
## 5291 0 1 1
## 5292 1 0 1
## 5293 1 0 1
## 5294 0 1 1
## 5295 1 0 1
## 5296 1 0 1
## 5297 1 0 1
## 5298 1 0 1
## 5299 1 0 1
## 5300 0 1 1
## 5301 1 0 1
## 5302 0 1 1
## 5303 1 0 1
## 5304 1 0 1
## 5305 1 0 1
## 5306 1 0 1
## 5307 1 0 1
## 5308 0 1 1
## 5309 0 1 1
## 5310 1 0 1
## 5311 1 0 1
## 5312 0 1 1
## 5313 1 0 1
## 5314 1 0 1
## 5315 1 0 1
## 5316 1 0 1
## 5317 1 0 1
## 5318 1 0 1
## 5319 1 0 1
## 5320 1 0 1
## 5321 1 0 1
## 5322 1 0 1
## 5323 1 0 1
## 5324 0 1 1
## 5325 1 0 1
## 5326 1 0 1
## 5327 0 1 1
## 5328 1 0 1
## 5329 1 0 1
## 5330 1 0 1
## 5331 1 0 1
## 5332 1 0 1
## 5333 1 0 1
## 5334 0 1 1
## 5335 1 0 1
## 5336 1 0 1
## 5337 0 1 1
## 5338 1 0 1
## 5339 1 0 1
## 5340 1 0 1
## 5341 1 0 1
## 5342 1 0 1
## 5343 1 0 1
## 5344 1 0 1
## 5345 1 0 1
## 5346 1 0 1
## 5347 1 0 1
## 5348 1 0 1
## 5349 1 0 1
## 5350 1 0 1
## 5351 1 0 1
## 5352 1 0 1
## 5353 1 0 1
## 5354 0 1 1
## 5355 1 0 1
## 5356 1 0 1
## 5357 1 0 1
## 5358 1 0 1
## 5359 0 1 1
## 5360 1 0 1
## 5361 0 1 1
## 5362 1 0 1
## 5363 1 0 1
## 5364 1 0 1
## 5365 0 1 1
## 5366 1 0 1
## 5367 1 0 1
## 5368 0 1 1
## 5369 1 0 1
## 5370 1 0 1
## 5371 1 0 1
## 5372 0 1 1
## 5373 1 0 1
## 5374 1 0 1
## 5375 1 0 1
## 5376 1 0 1
## 5377 1 0 1
## 5378 1 0 1
## 5379 1 0 1
## 5380 1 0 1
## 5381 0 1 1
## 5382 0 1 1
## 5383 1 0 1
## 5384 0 1 1
## 5385 1 0 1
## 5386 1 0 1
## 5387 1 0 1
## 5388 0 1 1
## 5389 1 0 1
## 5390 1 0 1
## 5391 1 0 1
## 5392 1 0 1
## 5393 1 0 1
## 5394 1 0 1
## 5395 0 1 1
## 5396 0 1 1
## 5397 1 0 1
## 5398 0 1 1
## 5399 1 0 1
## 5400 1 0 1
## 5401 0 1 1
## 5402 0 1 1
## 5403 1 0 1
## 5404 1 0 1
## 5405 1 0 1
## 5406 1 0 1
## 5407 1 0 1
## 5408 1 0 1
## 5409 0 1 1
## 5410 1 0 1
## 5411 1 0 1
## 5412 0 1 1
## 5413 0 1 1
## 5414 0 1 1
## 5415 1 0 1
## 5416 1 0 1
## 5417 1 0 1
## 5418 0 1 1
## 5419 1 0 1
## 5420 1 0 1
## 5421 0 1 1
## 5422 0 1 1
## 5423 0 1 1
## 5424 1 0 1
## 5425 1 0 1
## 5426 1 0 1
## 5427 1 0 1
## 5428 1 0 1
## 5429 0 1 1
## 5430 0 1 1
## 5431 0 1 1
## 5432 1 0 1
## 5433 1 0 1
## 5434 1 0 1
## 5435 1 0 1
## 5436 1 0 1
## 5437 0 1 1
## 5438 0 1 1
## 5439 0 1 1
## 5440 1 0 1
## 5441 1 0 1
## 5442 1 0 1
## 5443 1 0 1
## 5444 1 0 1
## 5445 1 0 1
## 5446 1 0 1
## 5447 1 0 1
## 5448 0 1 1
## 5449 0 1 1
## 5450 1 0 1
## 5451 1 0 1
## 5452 1 0 1
## 5453 1 0 1
## 5454 1 0 1
## 5455 1 0 1
## 5456 1 0 1
## 5457 1 0 1
## 5458 1 0 1
## 5459 1 0 1
## 5460 1 0 1
## 5461 1 0 1
## 5462 1 0 1
## 5463 1 0 1
## 5464 1 0 1
## 5465 1 0 1
## 5466 1 0 1
## 5467 0 1 1
## 5468 0 1 1
## 5469 1 0 1
## 5470 1 0 1
## 5471 1 0 1
## 5472 1 0 1
## 5473 1 0 1
## 5474 1 0 1
## 5475 1 0 1
## 5476 1 0 1
## 5477 1 0 1
## 5478 0 1 1
## 5479 0 1 1
## 5480 1 0 1
## 5481 1 0 1
## 5482 0 1 1
## 5483 1 0 1
## 5484 0 1 1
## 5485 1 0 1
## 5486 1 0 1
## 5487 1 0 1
## 5488 1 0 1
## 5489 1 0 1
## 5490 1 0 1
## 5491 1 0 1
## 5492 1 0 1
## 5493 1 0 1
## 5494 1 0 1
## 5495 1 0 1
## 5496 1 0 1
## 5497 0 1 1
## 5498 1 0 1
## 5499 1 0 1
## 5500 1 0 1
## 5501 1 0 1
## 5502 0 1 1
## 5503 1 0 1
## 5504 1 0 1
## 5505 1 0 1
## 5506 1 0 1
## 5507 0 1 1
## 5508 0 1 1
## 5509 1 0 1
## 5510 1 0 1
## 5511 1 0 1
## 5512 1 0 1
## 5513 0 1 1
## 5514 1 0 1
## 5515 0 1 1
## 5516 1 0 1
## 5517 0 1 1
## 5518 1 0 1
## 5519 1 0 1
## 5520 0 1 1
## 5521 1 0 1
## 5522 1 0 1
## 5523 1 0 1
## 5524 1 0 1
## 5525 0 1 1
## 5526 0 1 1
## 5527 0 1 1
## 5528 1 0 1
## 5529 1 0 1
## 5530 1 0 1
## 5531 1 0 1
## 5532 1 0 1
## 5533 1 0 1
## 5534 1 0 1
## 5535 1 0 1
## 5536 1 0 1
## 5537 1 0 1
## 5538 1 0 1
## 5539 0 1 1
## 5540 1 0 1
## 5541 1 0 1
## 5542 1 0 1
## 5543 1 0 1
## 5544 1 0 1
## 5545 1 0 1
## 5546 1 0 1
## 5547 0 1 1
## 5548 1 0 1
## 5549 1 0 1
## 5550 1 0 1
## 5551 1 0 1
## 5552 1 0 1
## 5553 1 0 1
## 5554 1 0 1
## 5555 1 0 1
## 5556 1 0 1
## 5557 1 0 1
## 5558 1 0 1
## 5559 1 0 1
## 5560 1 0 1
## 5561 0 1 1
## 5562 1 0 1
## 5563 1 0 1
## 5564 1 0 1
## 5565 1 0 1
## 5566 1 0 1
## 5567 1 0 1
## 5568 0 1 1
## 5569 1 0 1
## 5570 1 0 1
## 5571 1 0 1
## 5572 1 0 1
## 5573 0 1 1
## 5574 1 0 1
## 5575 0 1 1
## 5576 1 0 1
## 5577 1 0 1
## 5578 1 0 1
## 5579 1 0 1
## 5580 0 1 1
## 5581 0 1 1
## 5582 1 0 1
## 5583 1 0 1
## 5584 1 0 1
## 5585 1 0 1
## 5586 0 1 1
## 5587 1 0 1
## 5588 1 0 1
## 5589 1 0 1
## 5590 0 1 1
## 5591 1 0 1
## 5592 1 0 1
## 5593 1 0 1
## 5594 1 0 1
## 5595 0 1 1
## 5596 1 0 1
## 5597 1 0 1
## 5598 1 0 1
## 5599 1 0 1
## 5600 1 0 1
## 5601 1 0 1
## 5602 0 1 1
## 5603 1 0 1
## 5604 1 0 1
## 5605 1 0 1
## 5606 1 0 1
## 5607 1 0 1
## 5608 1 0 1
## 5609 1 0 1
## 5610 1 0 1
## 5611 1 0 1
## 5612 1 0 1
## 5613 1 0 1
## 5614 1 0 1
## 5615 1 0 1
## 5616 1 0 1
## 5617 1 0 1
## 5618 0 1 1
## 5619 1 0 1
## 5620 1 0 1
## 5621 1 0 1
## 5622 1 0 1
## 5623 0 1 1
## 5624 1 0 1
## 5625 1 0 1
## 5626 1 0 1
## 5627 1 0 1
## 5628 1 0 1
## 5629 0 1 1
## 5630 1 0 1
## 5631 1 0 1
## 5632 1 0 1
## 5633 1 0 1
## 5634 1 0 1
## 5635 1 0 1
## 5636 1 0 1
## 5637 1 0 1
## 5638 0 1 1
## 5639 1 0 1
## 5640 1 0 1
## 5641 1 0 1
## 5642 1 0 1
## 5643 1 0 1
## 5644 1 0 1
## 5645 1 0 1
## 5646 1 0 1
## 5647 1 0 1
## 5648 1 0 1
## 5649 1 0 1
## 5650 0 1 1
## 5651 1 0 1
## 5652 1 0 1
## 5653 0 1 1
## 5654 1 0 1
## 5655 0 1 1
## 5656 0 1 1
## 5657 1 0 1
## 5658 1 0 1
## 5659 0 1 1
## 5660 1 0 1
## 5661 1 0 1
## 5662 0 1 1
## 5663 1 0 1
## 5664 1 0 1
## 5665 0 1 1
## 5666 1 0 1
## 5667 1 0 1
## 5668 1 0 1
## 5669 1 0 1
## 5670 1 0 1
## 5671 1 0 1
## 5672 1 0 1
## 5673 1 0 1
## 5674 1 0 1
## 5675 1 0 1
## 5676 1 0 1
## 5677 1 0 1
## 5678 0 1 1
## 5679 1 0 1
## 5680 1 0 1
## 5681 1 0 1
## 5682 1 0 1
## 5683 0 1 1
## 5684 1 0 1
## 5685 1 0 1
## 5686 1 0 1
## 5687 1 0 1
## 5688 1 0 1
## 5689 1 0 1
## 5690 1 0 1
## 5691 0 1 1
## 5692 1 0 1
## 5693 1 0 1
## 5694 1 0 1
## 5695 1 0 1
## 5696 1 0 1
## 5697 1 0 1
## 5698 0 1 1
## 5699 1 0 1
## 5700 1 0 1
## 5701 1 0 1
## 5702 1 0 1
## 5703 1 0 1
## 5704 0 1 1
## 5705 0 1 1
## 5706 0 1 1
## 5707 0 1 1
## 5708 0 1 1
## 5709 1 0 1
## 5710 1 0 1
## 5711 1 0 1
## 5712 0 1 1
## 5713 1 0 1
## 5714 1 0 1
## 5715 1 0 1
## 5716 0 1 1
## 5717 0 1 1
## 5718 1 0 1
## 5719 1 0 1
## 5720 1 0 1
## 5721 1 0 1
## 5722 0 1 1
## 5723 0 1 1
## 5724 1 0 1
## 5725 1 0 1
## 5726 1 0 1
## 5727 1 0 1
## 5728 1 0 1
## 5729 0 1 1
## 5730 1 0 1
## 5731 0 1 1
## 5732 1 0 1
## 5733 0 1 1
## 5734 0 1 1
## 5735 1 0 1
## 5736 1 0 1
## 5737 0 1 1
## 5738 1 0 1
## 5739 1 0 1
## 5740 0 1 1
## 5741 0 1 1
## 5742 1 0 1
## 5743 1 0 1
## 5744 1 0 1
## 5745 0 1 1
## 5746 0 1 1
## 5747 0 1 1
## 5748 1 0 1
## 5749 1 0 1
## 5750 0 1 1
## 5751 1 0 1
## 5752 1 0 1
## 5753 1 0 1
## 5754 1 0 1
## 5755 1 0 1
## 5756 1 0 1
## 5757 1 0 1
## 5758 1 0 1
## 5759 0 1 1
## 5760 0 1 1
## 5761 1 0 1
## 5762 1 0 1
## 5763 0 1 1
## 5764 0 1 1
## 5765 1 0 1
## 5766 1 0 1
## 5767 1 0 1
## 5768 1 0 1
## 5769 0 1 1
## 5770 1 0 1
## 5771 1 0 1
## 5772 0 1 1
## 5773 0 1 1
## 5774 1 0 1
## 5775 1 0 1
## 5776 1 0 1
## 5777 1 0 1
## 5778 0 1 1
## 5779 0 1 1
## 5780 0 1 1
## 5781 0 1 1
## 5782 1 0 1
## 5783 1 0 1
## 5784 1 0 1
## 5785 1 0 1
## 5786 1 0 1
## 5787 1 0 1
## 5788 0 1 1
## 5789 1 0 1
## 5790 0 1 1
## 5791 1 0 1
## 5792 0 1 1
## 5793 1 0 1
## 5794 1 0 1
## 5795 1 0 1
## 5796 1 0 1
## 5797 1 0 1
## 5798 1 0 1
## 5799 1 0 1
## 5800 1 0 1
## 5801 1 0 1
## 5802 0 1 1
## 5803 1 0 1
## 5804 1 0 1
## 5805 1 0 1
## 5806 1 0 1
## 5807 1 0 1
## 5808 0 1 1
## 5809 1 0 1
## 5810 1 0 1
## 5811 1 0 1
## 5812 0 1 1
## 5813 1 0 1
## 5814 1 0 1
## 5815 1 0 1
## 5816 1 0 1
## 5817 1 0 1
## 5818 0 1 1
## 5819 1 0 1
## 5820 1 0 1
## 5821 1 0 1
## 5822 1 0 1
## 5823 1 0 1
## 5824 1 0 1
## 5825 1 0 1
## 5826 0 1 1
## 5827 1 0 1
## 5828 1 0 1
## 5829 1 0 1
## 5830 1 0 1
## 5831 1 0 1
## 5832 1 0 1
## 5833 1 0 1
## 5834 0 1 1
## 5835 1 0 1
## 5836 1 0 1
## 5837 1 0 1
## 5838 1 0 1
## 5839 1 0 1
## 5840 1 0 1
## 5841 1 0 1
## 5842 0 1 1
## 5843 1 0 1
## 5844 1 0 1
## 5845 1 0 1
## 5846 1 0 1
## 5847 0 1 1
## 5848 1 0 1
## 5849 1 0 1
## 5850 1 0 1
## 5851 1 0 1
## 5852 1 0 1
## 5853 1 0 1
## 5854 1 0 1
## 5855 0 1 1
## 5856 1 0 1
## 5857 0 1 1
## 5858 1 0 1
## 5859 1 0 1
## 5860 1 0 1
## 5861 1 0 1
## 5862 1 0 1
## 5863 1 0 1
## 5864 1 0 1
## 5865 1 0 1
## 5866 1 0 1
## 5867 1 0 1
## 5868 1 0 1
## 5869 1 0 1
## 5870 1 0 1
## 5871 1 0 1
## 5872 1 0 1
## 5873 1 0 1
## 5874 1 0 1
## 5875 1 0 1
## 5876 1 0 1
## 5877 1 0 1
## 5878 1 0 1
## 5879 1 0 1
## 5880 1 0 1
## 5881 1 0 1
## 5882 1 0 1
## 5883 1 0 1
## 5884 1 0 1
## 5885 1 0 1
## 5886 1 0 1
## 5887 1 0 1
## 5888 1 0 1
## 5889 1 0 1
## 5890 1 0 1
## 5891 1 0 1
## 5892 1 0 1
## 5893 1 0 1
## 5894 1 0 1
## 5895 1 0 1
## 5896 1 0 1
## 5897 1 0 1
## 5898 1 0 1
## 5899 1 0 1
## 5900 1 0 1
## 5901 1 0 1
## 5902 1 0 1
## 5903 1 0 1
## 5904 1 0 1
## 5905 1 0 1
## 5906 1 0 1
## 5907 1 0 1
## 5908 1 0 1
## 5909 0 1 1
## 5910 1 0 1
## 5911 1 0 1
## 5912 1 0 1
## 5913 1 0 1
## 5914 1 0 1
## 5915 1 0 1
## 5916 0 1 1
## 5917 1 0 1
## 5918 1 0 1
## 5919 0 1 1
## 5920 0 1 1
## 5921 1 0 1
## 5922 1 0 1
## 5923 1 0 1
## 5924 1 0 1
## 5925 1 0 1
## 5926 1 0 1
## 5927 1 0 1
## 5928 1 0 1
## 5929 0 1 1
## 5930 1 0 1
## 5931 0 1 1
## 5932 0 1 1
## 5933 1 0 1
## 5934 1 0 1
## 5935 0 1 1
## 5936 1 0 1
## 5937 1 0 1
## 5938 1 0 1
## 5939 1 0 1
## 5940 1 0 1
## 5941 0 1 1
## 5942 1 0 1
## 5943 1 0 1
## 5944 1 0 1
## 5945 1 0 1
## 5946 1 0 1
## 5947 1 0 1
## 5948 1 0 1
## 5949 1 0 1
## 5950 1 0 1
## 5951 1 0 1
## 5952 1 0 1
## 5953 1 0 1
## 5954 0 1 1
## 5955 1 0 1
## 5956 0 1 1
## 5957 1 0 1
## 5958 1 0 1
## 5959 1 0 1
## 5960 1 0 1
## 5961 1 0 1
## 5962 1 0 1
## 5963 1 0 1
## 5964 1 0 1
## 5965 1 0 1
## 5966 1 0 1
## 5967 1 0 1
## 5968 1 0 1
## 5969 1 0 1
## 5970 1 0 1
## 5971 1 0 1
## 5972 1 0 1
## 5973 1 0 1
## 5974 1 0 1
## 5975 1 0 1
## 5976 1 0 1
## 5977 1 0 1
## 5978 1 0 1
## 5979 1 0 1
## 5980 1 0 1
## 5981 1 0 1
## 5982 1 0 1
## 5983 1 0 1
## 5984 0 1 1
## 5985 1 0 1
## 5986 1 0 1
## 5987 1 0 1
## 5988 1 0 1
## 5989 1 0 1
## 5990 1 0 1
## 5991 1 0 1
## 5992 1 0 1
## 5993 1 0 1
## 5994 1 0 1
## 5995 1 0 1
## 5996 1 0 1
## 5997 1 0 1
## 5998 1 0 1
## 5999 1 0 1
## 6000 1 0 1
## 6001 1 0 1
## 6002 1 0 1
## 6003 1 0 1
## 6004 1 0 1
## 6005 1 0 1
## 6006 0 1 1
## 6007 1 0 1
## 6008 1 0 1
## 6009 0 1 1
## 6010 1 0 1
## 6011 0 1 1
## 6012 1 0 1
## 6013 1 0 1
## 6014 1 0 1
## 6015 1 0 1
## 6016 1 0 1
## 6017 0 1 1
## 6018 1 0 1
## 6019 0 1 1
## 6020 1 0 1
## 6021 1 0 1
## 6022 0 1 1
## 6023 0 1 1
## 6024 1 0 1
## 6025 1 0 1
## 6026 1 0 1
## 6027 1 0 1
## 6028 1 0 1
## 6029 0 1 1
## 6030 1 0 1
## 6031 1 0 1
## 6032 1 0 1
## 6033 1 0 1
## 6034 1 0 1
## 6035 1 0 1
## 6036 1 0 1
## 6037 1 0 1
## 6038 1 0 1
## 6039 1 0 1
## 6040 1 0 1
## 6041 1 0 1
## 6042 0 1 1
## 6043 1 0 1
## 6044 1 0 1
## 6045 1 0 1
## 6046 1 0 1
## 6047 1 0 1
## 6048 1 0 1
## 6049 1 0 1
## 6050 1 0 1
## 6051 1 0 1
## 6052 1 0 1
## 6053 0 1 1
## 6054 0 1 1
## 6055 1 0 1
## 6056 1 0 1
## 6057 1 0 1
## 6058 1 0 1
## 6059 0 1 1
## 6060 1 0 1
## 6061 1 0 1
## 6062 1 0 1
## 6063 1 0 1
## 6064 1 0 1
## 6065 1 0 1
## 6066 1 0 1
## 6067 1 0 1
## 6068 1 0 1
## 6069 1 0 1
## 6070 0 1 1
## 6071 1 0 1
## 6072 1 0 1
## 6073 1 0 1
## 6074 1 0 1
## 6075 1 0 1
## 6076 1 0 1
## 6077 1 0 1
## 6078 1 0 1
## 6079 0 1 1
## 6080 1 0 1
## 6081 1 0 1
## 6082 1 0 1
## 6083 1 0 1
## 6084 1 0 1
## 6085 1 0 1
## 6086 0 1 1
## 6087 0 1 1
## 6088 0 1 1
## 6089 0 1 1
## 6090 1 0 1
## 6091 0 1 1
## 6092 1 0 1
## 6093 1 0 1
## 6094 1 0 1
## 6095 1 0 1
## 6096 1 0 1
## 6097 1 0 1
## 6098 1 0 1
## 6099 1 0 1
## 6100 1 0 1
## 6101 1 0 1
## 6102 1 0 1
## 6103 0 1 1
## 6104 1 0 1
## 6105 1 0 1
## 6106 1 0 1
## 6107 1 0 1
## 6108 1 0 1
## 6109 0 1 1
## 6110 1 0 1
## 6111 1 0 1
## 6112 0 1 1
## 6113 1 0 1
## 6114 1 0 1
## 6115 1 0 1
## 6116 1 0 1
## 6117 0 1 1
## 6118 1 0 1
## 6119 0 1 1
## 6120 0 1 1
## 6121 0 1 1
## 6122 1 0 1
## 6123 1 0 1
## 6124 1 0 1
## 6125 1 0 1
## 6126 1 0 1
## 6127 1 0 1
## 6128 1 0 1
## 6129 1 0 1
## 6130 1 0 1
## 6131 1 0 1
## 6132 1 0 1
## 6133 1 0 1
## 6134 1 0 1
## 6135 1 0 1
## 6136 1 0 1
## 6137 1 0 1
## 6138 1 0 1
## 6139 0 1 1
## 6140 0 1 1
## 6141 0 1 1
## 6142 1 0 1
## 6143 1 0 1
## 6144 1 0 1
## 6145 0 1 1
## 6146 1 0 1
## 6147 0 1 1
## 6148 1 0 1
## 6149 0 1 1
## 6150 0 1 1
## 6151 0 1 1
## 6152 0 1 1
## 6153 1 0 1
## 6154 0 1 1
## 6155 0 1 1
## 6156 1 0 1
## 6157 0 1 1
## 6158 1 0 1
## 6159 1 0 1
## 6160 0 1 1
## 6161 0 1 1
## 6162 1 0 1
## 6163 1 0 1
## 6164 1 0 1
## 6165 1 0 1
## 6166 1 0 1
## 6167 1 0 1
## 6168 1 0 1
## 6169 0 1 1
## 6170 1 0 1
## 6171 0 1 1
## 6172 1 0 1
## 6173 1 0 1
## 6174 1 0 1
## 6175 0 1 1
## 6176 1 0 1
## 6177 0 1 1
## 6178 1 0 1
## 6179 1 0 1
## 6180 1 0 1
## 6181 1 0 1
## 6182 1 0 1
## 6183 0 1 1
## 6184 1 0 1
## 6185 1 0 1
## 6186 1 0 1
## 6187 1 0 1
## 6188 1 0 1
## 6189 1 0 1
## 6190 1 0 1
## 6191 1 0 1
## 6192 1 0 1
## 6193 1 0 1
## 6194 1 0 1
## 6195 1 0 1
## 6196 1 0 1
## 6197 1 0 1
## 6198 1 0 1
## 6199 1 0 1
## 6200 1 0 1
## 6201 1 0 1
## 6202 1 0 1
## 6203 1 0 1
## 6204 1 0 1
## 6205 1 0 1
## 6206 1 0 1
## 6207 1 0 1
## 6208 1 0 1
## 6209 1 0 1
## 6210 0 1 1
## 6211 1 0 1
## 6212 1 0 1
## 6213 1 0 1
## 6214 1 0 1
## 6215 1 0 1
## 6216 1 0 1
## 6217 1 0 1
## 6218 1 0 1
## 6219 1 0 1
## 6220 1 0 1
## 6221 1 0 1
## 6222 1 0 1
## 6223 1 0 1
## 6224 1 0 1
## 6225 1 0 1
## 6226 1 0 1
## 6227 1 0 1
## 6228 1 0 1
## 6229 1 0 1
## 6230 1 0 1
## 6231 1 0 1
## 6232 1 0 1
## 6233 1 0 1
## 6234 1 0 1
## 6235 1 0 1
## 6236 1 0 1
## 6237 1 0 1
## 6238 1 0 1
## 6239 1 0 1
## 6240 1 0 1
## 6241 1 0 1
## 6242 1 0 1
## 6243 1 0 1
## 6244 1 0 1
## 6245 1 0 1
## 6246 1 0 1
## 6247 1 0 1
## 6248 1 0 1
## 6249 1 0 1
## 6250 1 0 1
## 6251 1 0 1
## 6252 0 1 1
## 6253 1 0 1
## 6254 1 0 1
## 6255 1 0 1
## 6256 1 0 1
## 6257 1 0 1
## 6258 1 0 1
## 6259 1 0 1
## 6260 1 0 1
## 6261 1 0 1
## 6262 1 0 1
## 6263 1 0 1
## 6264 1 0 1
## 6265 1 0 1
## 6266 1 0 1
## 6267 1 0 1
## 6268 1 0 1
## 6269 1 0 1
## 6270 1 0 1
## 6271 0 1 1
## 6272 1 0 1
## 6273 1 0 1
## 6274 1 0 1
## 6275 1 0 1
## 6276 1 0 1
## 6277 1 0 1
## 6278 1 0 1
## 6279 1 0 1
## 6280 1 0 1
## 6281 1 0 1
## 6282 1 0 1
## 6283 0 1 1
## 6284 1 0 1
## 6285 1 0 1
## 6286 0 1 1
## 6287 0 1 1
## 6288 1 0 1
## 6289 1 0 1
## 6290 1 0 1
## 6291 1 0 1
## 6292 1 0 1
## 6293 1 0 1
## 6294 0 1 1
## 6295 1 0 1
## 6296 1 0 1
## 6297 1 0 1
## 6298 1 0 1
## 6299 0 1 1
## 6300 1 0 1
## 6301 1 0 1
## 6302 1 0 1
## 6303 1 0 1
## 6304 1 0 1
## 6305 1 0 1
## 6306 1 0 1
## 6307 1 0 1
## 6308 1 0 1
## 6309 1 0 1
## 6310 1 0 1
## 6311 1 0 1
## 6312 1 0 1
## 6313 1 0 1
## 6314 1 0 1
## 6315 1 0 1
## 6316 1 0 1
## 6317 1 0 1
## 6318 1 0 1
## 6319 1 0 1
## 6320 1 0 1
## 6321 1 0 1
## 6322 1 0 1
## 6323 1 0 1
## 6324 1 0 1
## 6325 1 0 1
## 6326 1 0 1
## 6327 1 0 1
## 6328 1 0 1
## 6329 1 0 1
## 6330 1 0 1
## 6331 1 0 1
## 6332 1 0 1
## 6333 1 0 1
## 6334 1 0 1
## 6335 1 0 1
## 6336 1 0 1
## 6337 1 0 1
## 6338 1 0 1
## 6339 1 0 1
## 6340 1 0 1
## 6341 1 0 1
## 6342 1 0 1
## 6343 1 0 1
## 6344 0 1 1
## 6345 1 0 1
## 6346 1 0 1
## 6347 1 0 1
## 6348 1 0 1
## 6349 1 0 1
## 6350 1 0 1
## 6351 1 0 1
## 6352 1 0 1
## 6353 1 0 1
## 6354 1 0 1
## 6355 1 0 1
## 6356 1 0 1
## 6357 1 0 1
## 6358 0 1 1
## 6359 1 0 1
## 6360 1 0 1
## 6361 1 0 1
## 6362 1 0 1
## 6363 1 0 1
## 6364 1 0 1
## 6365 1 0 1
## 6366 1 0 1
## 6367 1 0 1
## 6368 1 0 1
## 6369 0 1 1
## 6370 1 0 1
## 6371 1 0 1
## 6372 1 0 1
## 6373 1 0 1
## 6374 1 0 1
## 6375 1 0 1
## 6376 1 0 1
## 6377 1 0 1
## 6378 1 0 1
## 6379 1 0 1
## 6380 1 0 1
## 6381 0 1 1
## 6382 1 0 1
## 6383 1 0 1
## 6384 1 0 1
## 6385 1 0 1
## 6386 1 0 1
## 6387 1 0 1
## 6388 1 0 1
## 6389 1 0 1
## 6390 1 0 1
## 6391 1 0 1
## 6392 1 0 1
## 6393 1 0 1
## 6394 1 0 1
## 6395 1 0 1
## 6396 1 0 1
## 6397 1 0 1
## 6398 1 0 1
## 6399 1 0 1
## 6400 1 0 1
## 6401 1 0 1
## 6402 1 0 1
## 6403 1 0 1
## 6404 1 0 1
## 6405 1 0 1
## 6406 1 0 1
## 6407 1 0 1
## 6408 1 0 1
## 6409 1 0 1
## 6410 1 0 1
## 6411 0 1 1
## 6412 1 0 1
## 6413 1 0 1
## 6414 1 0 1
## 6415 1 0 1
## 6416 1 0 1
## 6417 1 0 1
## 6418 1 0 1
## 6419 1 0 1
## 6420 1 0 1
## 6421 1 0 1
## 6422 1 0 1
## 6423 1 0 1
## 6424 1 0 1
## 6425 1 0 1
## 6426 1 0 1
## 6427 1 0 1
## 6428 0 1 1
## 6429 1 0 1
## 6430 1 0 1
## 6431 1 0 1
## 6432 1 0 1
## 6433 1 0 1
## 6434 1 0 1
## 6435 1 0 1
## 6436 1 0 1
## 6437 1 0 1
## 6438 1 0 1
## 6439 1 0 1
## 6440 1 0 1
## 6441 1 0 1
## 6442 1 0 1
## 6443 1 0 1
## 6444 1 0 1
## 6445 1 0 1
## 6446 1 0 1
## 6447 1 0 1
## 6448 1 0 1
## 6449 1 0 1
## 6450 1 0 1
## 6451 1 0 1
## 6452 1 0 1
## 6453 1 0 1
## 6454 1 0 1
## 6455 1 0 1
## 6456 1 0 1
## 6457 1 0 1
## 6458 1 0 1
## 6459 1 0 1
## 6460 1 0 1
## 6461 1 0 1
## 6462 1 0 1
## 6463 1 0 1
## 6464 1 0 1
## 6465 1 0 1
## 6466 1 0 1
## 6467 1 0 1
## 6468 1 0 1
## 6469 1 0 1
## 6470 1 0 1
## 6471 1 0 1
## 6472 1 0 1
## 6473 1 0 1
## 6474 1 0 1
## 6475 1 0 1
## 6476 1 0 1
## 6477 1 0 1
## 6478 1 0 1
## 6479 1 0 1
## 6480 1 0 1
## 6481 1 0 1
## 6482 1 0 1
## 6483 1 0 1
## 6484 1 0 1
## 6485 1 0 1
## 6486 1 0 1
## 6487 1 0 1
## 6488 1 0 1
## 6489 1 0 1
## 6490 1 0 1
## 6491 1 0 1
## 6492 1 0 1
## 6493 1 0 1
## 6494 1 0 1
## 6495 1 0 1
## 6496 1 0 1
## 6497 1 0 1
## 6498 1 0 1
## 6499 1 0 1
## 6500 1 0 1
## 6501 1 0 1
## 6502 1 0 1
## 6503 1 0 1
## 6504 1 0 1
## 6505 1 0 1
## 6506 1 0 1
## 6507 1 0 1
## 6508 1 0 1
## 6509 1 0 1
## 6510 1 0 1
## 6511 1 0 1
## 6512 1 0 1
## 6513 1 0 1
## 6514 1 0 1
## 6515 1 0 1
## 6516 1 0 1
## 6517 1 0 1
## 6518 1 0 1
## 6519 1 0 1
## 6520 1 0 1
## 6521 1 0 1
## 6522 1 0 1
## 6523 1 0 1
## 6524 1 0 1
## 6525 1 0 1
## 6526 1 0 1
## 6527 1 0 1
## 6528 1 0 1
## 6529 1 0 1
## 6530 1 0 1
## 6531 1 0 1
## 6532 0 1 1
## 6533 1 0 1
## 6534 1 0 1
## 6535 1 0 1
## 6536 1 0 1
## 6537 1 0 1
## 6538 1 0 1
## 6539 1 0 1
## 6540 0 1 1
## 6541 1 0 1
## 6542 1 0 1
## 6543 1 0 1
## 6544 1 0 1
## 6545 1 0 1
## 6546 1 0 1
## 6547 1 0 1
## 6548 1 0 1
## 6549 1 0 1
## 6550 1 0 1
## 6551 1 0 1
## 6552 0 1 1
## 6553 1 0 1
## 6554 1 0 1
## 6555 1 0 1
## 6556 1 0 1
## 6557 1 0 1
## 6558 1 0 1
## 6559 1 0 1
## 6560 1 0 1
## 6561 1 0 1
## 6562 1 0 1
## 6563 1 0 1
## 6564 1 0 1
## 6565 1 0 1
## 6566 1 0 1
## 6567 1 0 1
## 6568 1 0 1
## 6569 1 0 1
## 6570 1 0 1
## 6571 1 0 1
## 6572 1 0 1
## 6573 1 0 1
## 6574 1 0 1
## 6575 1 0 1
## 6576 1 0 1
## 6577 1 0 1
## 6578 1 0 1
## 6579 1 0 1
## 6580 1 0 1
## 6581 1 0 1
## 6582 1 0 1
## 6583 1 0 1
## 6584 0 1 1
## 6585 1 0 1
## 6586 1 0 1
## 6587 1 0 1
## 6588 1 0 1
## 6589 1 0 1
## 6590 1 0 1
## 6591 1 0 1
## 6592 1 0 1
## 6593 1 0 1
## 6594 1 0 1
## 6595 1 0 1
## 6596 1 0 1
## 6597 1 0 1
## 6598 1 0 1
## 6599 1 0 1
## 6600 1 0 1
## 6601 1 0 1
## 6602 1 0 1
## 6603 1 0 1
## 6604 1 0 1
## 6605 1 0 1
## 6606 1 0 1
## 6607 1 0 1
## 6608 1 0 1
## 6609 1 0 1
## 6610 1 0 1
## 6611 1 0 1
## 6612 1 0 1
## 6613 1 0 1
## 6614 1 0 1
## 6615 1 0 1
## 6616 1 0 1
## 6617 1 0 1
## 6618 1 0 1
## 6619 1 0 1
## 6620 1 0 1
## 6621 1 0 1
## 6622 1 0 1
## 6623 1 0 1
## 6624 1 0 1
## 6625 1 0 1
## 6626 1 0 1
## 6627 1 0 1
## 6628 0 1 1
## 6629 1 0 1
## 6630 1 0 1
## 6631 1 0 1
## 6632 1 0 1
## 6633 1 0 1
## 6634 1 0 1
## 6635 1 0 1
## 6636 1 0 1
## 6637 1 0 1
## 6638 1 0 1
## 6639 1 0 1
## 6640 1 0 1
## 6641 1 0 1
## 6642 1 0 1
## 6643 1 0 1
## 6644 1 0 1
## 6645 1 0 1
## 6646 1 0 1
## 6647 1 0 1
## 6648 1 0 1
## 6649 1 0 1
## 6650 1 0 1
## 6651 1 0 1
## 6652 1 0 1
## 6653 1 0 1
## 6654 1 0 1
## 6655 1 0 1
## 6656 1 0 1
## 6657 1 0 1
## 6658 1 0 1
## 6659 1 0 1
## 6660 1 0 1
## 6661 1 0 1
## 6662 1 0 1
## 6663 0 1 1
## 6664 0 1 1
## 6665 1 0 1
## 6666 1 0 1
## 6667 0 1 1
## 6668 1 0 1
## 6669 1 0 1
## 6670 1 0 1
## 6671 1 0 1
## 6672 1 0 1
## 6673 1 0 1
## 6674 1 0 1
## 6675 1 0 1
## 6676 1 0 1
## 6677 1 0 1
## 6678 1 0 1
## 6679 0 1 1
## 6680 1 0 1
## 6681 1 0 1
## 6682 1 0 1
## 6683 1 0 1
## 6684 0 1 1
## 6685 1 0 1
## 6686 1 0 1
## 6687 1 0 1
## 6688 1 0 1
## 6689 1 0 1
## 6690 1 0 1
## 6691 1 0 1
## 6692 1 0 1
## 6693 1 0 1
## 6694 1 0 1
## 6695 1 0 1
## 6696 1 0 1
## 6697 1 0 1
## 6698 1 0 1
## 6699 1 0 1
## 6700 1 0 1
## 6701 1 0 1
## 6702 1 0 1
## 6703 1 0 1
## 6704 1 0 1
## 6705 1 0 1
## 6706 1 0 1
## 6707 1 0 1
## 6708 1 0 1
## 6709 1 0 1
## 6710 1 0 1
## 6711 1 0 1
## 6712 1 0 1
## 6713 1 0 1
## 6714 1 0 1
## 6715 1 0 1
## 6716 1 0 1
## 6717 1 0 1
## 6718 1 0 1
## 6719 1 0 1
## 6720 1 0 1
## 6721 1 0 1
## 6722 1 0 1
## 6723 0 1 1
## 6724 1 0 1
## 6725 1 0 1
## 6726 1 0 1
## 6727 1 0 1
## 6728 1 0 1
## 6729 1 0 1
## 6730 0 1 1
## 6731 1 0 1
## 6732 1 0 1
## 6733 0 1 1
## 6734 1 0 1
## 6735 1 0 1
## 6736 1 0 1
## 6737 1 0 1
## 6738 1 0 1
## 6739 1 0 1
## 6740 1 0 1
## 6741 1 0 1
## 6742 1 0 1
## 6743 1 0 1
## 6744 1 0 1
## 6745 1 0 1
## 6746 1 0 1
## 6747 1 0 1
## 6748 1 0 1
## 6749 1 0 1
## 6750 1 0 1
## 6751 1 0 1
## 6752 1 0 1
## 6753 1 0 1
## 6754 1 0 1
## 6755 1 0 1
## 6756 1 0 1
## 6757 1 0 1
## 6758 1 0 1
## 6759 1 0 1
## 6760 1 0 1
## 6761 1 0 1
## 6762 1 0 1
## 6763 1 0 1
## 6764 1 0 1
## 6765 1 0 1
## 6766 1 0 1
## 6767 1 0 1
## 6768 1 0 1
## 6769 1 0 1
## 6770 1 0 1
## 6771 1 0 1
## 6772 1 0 1
## 6773 1 0 1
## 6774 1 0 1
## 6775 1 0 1
## 6776 1 0 1
## 6777 1 0 1
## 6778 1 0 1
## 6779 1 0 1
## 6780 1 0 1
## 6781 1 0 1
## 6782 1 0 1
## 6783 1 0 1
## 6784 1 0 1
## 6785 1 0 1
## 6786 1 0 1
## 6787 1 0 1
## 6788 1 0 1
## 6789 1 0 1
## 6790 1 0 1
## 6791 1 0 1
## 6792 1 0 1
## 6793 1 0 1
## 6794 1 0 1
## 6795 1 0 1
## 6796 1 0 1
## 6797 0 1 1
## 6798 1 0 1
## 6799 1 0 1
## 6800 1 0 1
## 6801 1 0 1
## 6802 1 0 1
## 6803 1 0 1
## 6804 1 0 1
## 6805 1 0 1
## 6806 1 0 1
## 6807 1 0 1
## 6808 1 0 1
## 6809 1 0 1
## 6810 1 0 1
## 6811 1 0 1
## 6812 1 0 1
## 6813 1 0 1
## 6814 1 0 1
## 6815 1 0 1
## 6816 1 0 1
## 6817 1 0 1
## 6818 1 0 1
## 6819 1 0 1
## 6820 1 0 1
## 6821 1 0 1
## 6822 1 0 1
## 6823 1 0 1
## 6824 1 0 1
## 6825 1 0 1
## 6826 1 0 1
## 6827 1 0 1
## 6828 1 0 1
## 6829 1 0 1
## 6830 1 0 1
## 6831 1 0 1
## 6832 1 0 1
## 6833 1 0 1
## 6834 1 0 1
## 6835 1 0 1
## 6836 1 0 1
## 6837 1 0 1
## 6838 1 0 1
## 6839 1 0 1
## 6840 1 0 1
## 6841 1 0 1
## 6842 1 0 1
## 6843 1 0 1
## 6844 1 0 1
## 6845 1 0 1
## 6846 1 0 1
## 6847 1 0 1
## 6848 1 0 1
## 6849 1 0 1
## 6850 1 0 1
## 6851 1 0 1
## 6852 1 0 1
## 6853 1 0 1
## 6854 1 0 1
## 6855 1 0 1
## 6856 1 0 1
## 6857 1 0 1
## 6858 1 0 1
## 6859 1 0 1
## 6860 1 0 1
## 6861 1 0 1
## 6862 1 0 1
## 6863 1 0 1
## 6864 1 0 1
## 6865 1 0 1
## 6866 0 1 1
## 6867 1 0 1
## 6868 1 0 1
## 6869 1 0 1
## 6870 1 0 1
## 6871 1 0 1
## 6872 1 0 1
## 6873 1 0 1
## 6874 1 0 1
## 6875 1 0 1
## 6876 1 0 1
## 6877 1 0 1
## 6878 1 0 1
## 6879 1 0 1
## 6880 1 0 1
## 6881 1 0 1
## 6882 1 0 1
## 6883 1 0 1
## 6884 1 0 1
## 6885 1 0 1
## 6886 1 0 1
## 6887 1 0 1
## 6888 1 0 1
## 6889 1 0 1
## 6890 1 0 1
## 6891 1 0 1
## 6892 1 0 1
## 6893 1 0 1
## 6894 1 0 1
## 6895 1 0 1
## 6896 1 0 1
## 6897 1 0 1
## 6898 1 0 1
## 6899 1 0 1
## 6900 1 0 1
## 6901 1 0 1
## 6902 1 0 1
## 6903 1 0 1
## 6904 1 0 1
## 6905 1 0 1
## 6906 1 0 1
## 6907 0 1 1
## 6908 1 0 1
## 6909 1 0 1
## 6910 1 0 1
## 6911 1 0 1
## 6912 1 0 1
## 6913 1 0 1
## 6914 1 0 1
## 6915 1 0 1
## 6916 1 0 1
## 6917 1 0 1
## 6918 1 0 1
## 6919 1 0 1
## 6920 1 0 1
## 6921 1 0 1
## 6922 1 0 1
## 6923 1 0 1
## 6924 1 0 1
## 6925 1 0 1
## 6926 1 0 1
## 6927 1 0 1
## 6928 1 0 1
## 6929 1 0 1
## 6930 1 0 1
## 6931 1 0 1
## 6932 1 0 1
## 6933 1 0 1
## 6934 1 0 1
## 6935 1 0 1
## 6936 1 0 1
## 6937 1 0 1
## 6938 1 0 1
## 6939 1 0 1
## 6940 1 0 1
## 6941 1 0 1
## 6942 1 0 1
## 6943 1 0 1
## 6944 1 0 1
## 6945 1 0 1
## 6946 1 0 1
## 6947 0 1 1
## 6948 1 0 1
## 6949 1 0 1
## 6950 1 0 1
## 6951 1 0 1
## 6952 1 0 1
## 6953 1 0 1
## 6954 1 0 1
## 6955 1 0 1
## 6956 1 0 1
## 6957 1 0 1
## 6958 1 0 1
## 6959 0 1 1
## 6960 1 0 1
## 6961 1 0 1
## 6962 1 0 1
## 6963 1 0 1
## 6964 1 0 1
## 6965 1 0 1
## 6966 1 0 1
## 6967 1 0 1
## 6968 1 0 1
## 6969 1 0 1
## 6970 1 0 1
## 6971 1 0 1
## 6972 1 0 1
## 6973 1 0 1
## 6974 1 0 1
## 6975 1 0 1
## 6976 1 0 1
## 6977 1 0 1
## 6978 1 0 1
## 6979 1 0 1
## 6980 1 0 1
## 6981 1 0 1
## 6982 0 1 1
## 6983 1 0 1
## 6984 1 0 1
## 6985 1 0 1
## 6986 1 0 1
## 6987 1 0 1
## 6988 1 0 1
## 6989 1 0 1
## 6990 1 0 1
## 6991 1 0 1
## 6992 1 0 1
## 6993 1 0 1
## 6994 1 0 1
## 6995 1 0 1
## 6996 1 0 1
## 6997 1 0 1
## 6998 1 0 1
## 6999 1 0 1
## 7000 1 0 1
## 7001 1 0 1
## 7002 1 0 1
## 7003 1 0 1
## 7004 0 1 1
## 7005 1 0 1
## 7006 1 0 1
## 7007 1 0 1
## 7008 1 0 1
## 7009 1 0 1
## 7010 1 0 1
## 7011 1 0 1
## 7012 1 0 1
## 7013 1 0 1
## 7014 1 0 1
## 7015 1 0 1
## 7016 1 0 1
## 7017 1 0 1
## 7018 1 0 1
## 7019 1 0 1
## 7020 1 0 1
## 7021 0 1 1
## 7022 1 0 1
## 7023 1 0 1
## 7024 1 0 1
## 7025 1 0 1
## 7026 1 0 1
## 7027 1 0 1
## 7028 1 0 1
## 7029 1 0 1
## 7030 1 0 1
## 7031 1 0 1
## 7032 1 0 1
## 7033 1 0 1
## 7034 0 1 1
## 7035 1 0 1
## 7036 1 0 1
## 7037 1 0 1
## 7038 1 0 1
## 7039 1 0 1
## 7040 1 0 1
## 7041 1 0 1
## 7042 1 0 1
## 7043 1 0 1
## 7044 1 0 1
## 7045 1 0 1
## 7046 1 0 1
## 7047 1 0 1
## 7048 1 0 1
## 7049 1 0 1
## 7050 1 0 1
## 7051 1 0 1
## 7052 0 1 1
## 7053 1 0 1
## 7054 1 0 1
## 7055 1 0 1
## 7056 1 0 1
## 7057 1 0 1
## 7058 1 0 1
## 7059 1 0 1
## 7060 1 0 1
## 7061 1 0 1
## 7062 1 0 1
## 7063 1 0 1
## 7064 1 0 1
## 7065 1 0 1
## 7066 1 0 1
## 7067 1 0 1
## 7068 1 0 1
## 7069 1 0 1
## 7070 1 0 1
## 7071 1 0 1
## 7072 1 0 1
## 7073 1 0 1
## 7074 1 0 1
## 7075 1 0 1
## 7076 1 0 1
## 7077 1 0 1
## 7078 1 0 1
## 7079 1 0 1
## 7080 1 0 1
## 7081 1 0 1
## 7082 1 0 1
## 7083 1 0 1
## 7084 1 0 1
## 7085 1 0 1
## 7086 1 0 1
## 7087 1 0 1
## 7088 1 0 1
## 7089 1 0 1
## 7090 1 0 1
## 7091 1 0 1
## 7092 1 0 1
## 7093 1 0 1
## 7094 1 0 1
## 7095 1 0 1
## 7096 1 0 1
## 7097 1 0 1
## 7098 1 0 1
## 7099 1 0 1
## 7100 1 0 1
## 7101 1 0 1
## 7102 1 0 1
## 7103 1 0 1
## 7104 1 0 1
## 7105 1 0 1
## 7106 1 0 1
## 7107 1 0 1
## 7108 1 0 1
## 7109 1 0 1
## 7110 1 0 1
## 7111 1 0 1
## 7112 1 0 1
## 7113 1 0 1
## 7114 1 0 1
## 7115 1 0 1
## 7116 1 0 1
## 7117 1 0 1
## 7118 1 0 1
## 7119 1 0 1
## 7120 1 0 1
## 7121 1 0 1
## 7122 1 0 1
## 7123 1 0 1
## 7124 1 0 1
## 7125 1 0 1
## 7126 1 0 1
## 7127 1 0 1
## 7128 1 0 1
## 7129 1 0 1
## 7130 1 0 1
## 7131 1 0 1
## 7132 1 0 1
## 7133 1 0 1
## 7134 1 0 1
## 7135 1 0 1
## 7136 1 0 1
## 7137 1 0 1
## 7138 1 0 1
## 7139 1 0 1
## 7140 0 1 1
## 7141 0 1 1
## 7142 1 0 1
## 7143 1 0 1
## 7144 1 0 1
## 7145 1 0 1
## 7146 1 0 1
## 7147 1 0 1
## 7148 1 0 1
## 7149 1 0 1
## 7150 1 0 1
## 7151 1 0 1
## 7152 1 0 1
## 7153 1 0 1
## 7154 1 0 1
## 7155 1 0 1
## 7156 1 0 1
## 7157 1 0 1
## 7158 1 0 1
## 7159 1 0 1
## 7160 1 0 1
## 7161 1 0 1
## 7162 1 0 1
## 7163 1 0 1
## 7164 1 0 1
## 7165 1 0 1
## 7166 1 0 1
## 7167 1 0 1
## 7168 1 0 1
## 7169 1 0 1
## 7170 1 0 1
## 7171 1 0 1
## 7172 1 0 1
## 7173 1 0 1
## 7174 1 0 1
## 7175 1 0 1
## 7176 1 0 1
## 7177 1 0 1
## 7178 1 0 1
## 7179 1 0 1
## 7180 1 0 1
## 7181 1 0 1
## 7182 1 0 1
## 7183 1 0 1
## 7184 1 0 1
## 7185 1 0 1
## 7186 1 0 1
## 7187 1 0 1
## 7188 1 0 1
## 7189 1 0 1
## 7190 1 0 1
## 7191 1 0 1
## 7192 1 0 1
## 7193 1 0 1
## 7194 1 0 1
## 7195 1 0 1
## 7196 1 0 1
## 7197 1 0 1
## 7198 1 0 1
## 7199 1 0 1
## 7200 1 0 1
## 7201 1 0 1
## 7202 1 0 1
## 7203 1 0 1
## 7204 1 0 1
## 7205 1 0 1
## 7206 1 0 1
## 7207 1 0 1
## 7208 1 0 1
## 7209 1 0 1
## 7210 1 0 1
## 7211 1 0 1
## 7212 1 0 1
## 7213 1 0 1
## 7214 1 0 1
## 7215 1 0 1
## 7216 1 0 1
## 7217 1 0 1
## 7218 1 0 1
## 7219 1 0 1
## 7220 1 0 1
## 7221 1 0 1
## 7222 1 0 1
## 7223 1 0 1
## 7224 1 0 1
## 7225 1 0 1
## 7226 1 0 1
## 7227 1 0 1
## 7228 1 0 1
## 7229 1 0 1
## 7230 1 0 1
## 7231 0 1 1
## 7232 1 0 1
## 7233 1 0 1
## 7234 0 1 1
## 7235 1 0 1
## 7236 1 0 1
## 7237 1 0 1
## 7238 1 0 1
## 7239 1 0 1
## 7240 0 1 1
## 7241 1 0 1
## 7242 1 0 1
## 7243 0 1 1
## 7244 0 1 1
## 7245 0 1 1
## 7246 1 0 1
## 7247 1 0 1
## 7248 0 1 1
## 7249 0 1 1
## 7250 0 1 1
## 7251 1 0 1
## 7252 1 0 1
## 7253 0 1 1
## 7254 1 0 1
## 7255 0 1 1
## 7256 0 1 1
## 7257 1 0 1
## 7258 1 0 1
## 7259 1 0 1
## 7260 1 0 1
## 7261 1 0 1
## 7262 1 0 1
## 7263 1 0 1
## 7264 1 0 1
## 7265 1 0 1
## 7266 0 1 1
## 7267 1 0 1
## 7268 1 0 1
## 7269 1 0 1
## 7270 1 0 1
## 7271 1 0 1
## 7272 1 0 1
## 7273 1 0 1
## 7274 1 0 1
## 7275 1 0 1
## 7276 1 0 1
## 7277 0 1 1
## 7278 0 1 1
## 7279 1 0 1
## 7280 1 0 1
## 7281 1 0 1
## 7282 1 0 1
## 7283 0 1 1
## 7284 0 1 1
## 7285 1 0 1
## 7286 1 0 1
## 7287 1 0 1
## 7288 1 0 1
## 7289 0 1 1
## 7290 1 0 1
## 7291 0 1 1
## 7292 1 0 1
## 7293 1 0 1
## 7294 0 1 1
## 7295 1 0 1
## 7296 0 1 1
## 7297 1 0 1
## 7298 1 0 1
## 7299 1 0 1
## 7300 1 0 1
## 7301 1 0 1
## 7302 1 0 1
## 7303 1 0 1
## 7304 0 1 1
## 7305 1 0 1
## 7306 0 1 1
## 7307 1 0 1
## 7308 1 0 1
## 7309 1 0 1
## 7310 1 0 1
## 7311 1 0 1
## 7312 0 1 1
## 7313 0 1 1
## 7314 0 1 1
## 7315 0 1 1
## 7316 1 0 1
## 7317 1 0 1
## 7318 1 0 1
## 7319 1 0 1
## 7320 0 1 1
## 7321 1 0 1
## 7322 1 0 1
## 7323 0 1 1
## 7324 1 0 1
## 7325 1 0 1
## 7326 1 0 1
## 7327 1 0 1
## 7328 0 1 1
## 7329 0 1 1
## 7330 1 0 1
## 7331 0 1 1
## 7332 1 0 1
## 7333 1 0 1
## 7334 1 0 1
## 7335 0 1 1
## 7336 1 0 1
## 7337 1 0 1
## 7338 1 0 1
## 7339 0 1 1
## 7340 1 0 1
## 7341 1 0 1
## 7342 1 0 1
## 7343 1 0 1
## 7344 1 0 1
## 7345 1 0 1
## 7346 0 1 1
## 7347 1 0 1
## 7348 1 0 1
## 7349 1 0 1
## 7350 1 0 1
## 7351 1 0 1
## 7352 0 1 1
## 7353 1 0 1
## 7354 0 1 1
## 7355 1 0 1
## 7356 1 0 1
## 7357 1 0 1
## 7358 0 1 1
## 7359 1 0 1
## 7360 1 0 1
## 7361 0 1 1
## 7362 1 0 1
## 7363 0 1 1
## 7364 1 0 1
## 7365 1 0 1
## 7366 1 0 1
## 7367 1 0 1
## 7368 1 0 1
## 7369 1 0 1
## 7370 1 0 1
## 7371 1 0 1
## 7372 1 0 1
## 7373 1 0 1
## 7374 1 0 1
## 7375 1 0 1
## 7376 1 0 1
## 7377 1 0 1
## 7378 1 0 1
## 7379 1 0 1
## 7380 1 0 1
## 7381 1 0 1
## 7382 1 0 1
## 7383 1 0 1
## 7384 1 0 1
## 7385 1 0 1
## 7386 1 0 1
## 7387 1 0 1
## 7388 1 0 1
## 7389 1 0 1
## 7390 1 0 1
## 7391 1 0 1
## 7392 1 0 1
## 7393 1 0 1
## 7394 1 0 1
## 7395 1 0 1
## 7396 1 0 1
## 7397 1 0 1
## 7398 0 1 1
## 7399 1 0 1
## 7400 1 0 1
## 7401 1 0 1
## 7402 1 0 1
## 7403 1 0 1
## 7404 0 1 1
## 7405 1 0 1
## 7406 1 0 1
## 7407 1 0 1
## 7408 1 0 1
## 7409 1 0 1
## 7410 1 0 1
## 7411 1 0 1
## 7412 1 0 1
## 7413 1 0 1
## 7414 1 0 1
## 7415 1 0 1
## 7416 0 1 1
## 7417 1 0 1
## 7418 0 1 1
## 7419 1 0 1
## 7420 1 0 1
## 7421 1 0 1
## 7422 1 0 1
## 7423 1 0 1
## 7424 1 0 1
## 7425 1 0 1
## 7426 1 0 1
## 7427 0 1 1
## 7428 1 0 1
## 7429 1 0 1
## 7430 1 0 1
## 7431 1 0 1
## 7432 1 0 1
## 7433 1 0 1
## 7434 1 0 1
## 7435 1 0 1
## 7436 1 0 1
## 7437 0 1 1
## 7438 1 0 1
## 7439 1 0 1
## 7440 1 0 1
## 7441 1 0 1
## 7442 0 1 1
## 7443 1 0 1
## 7444 1 0 1
## 7445 1 0 1
## 7446 1 0 1
## 7447 1 0 1
## 7448 1 0 1
## 7449 1 0 1
## 7450 0 1 1
## 7451 1 0 1
## 7452 1 0 1
## 7453 1 0 1
## 7454 1 0 1
## 7455 0 1 1
## 7456 0 1 1
## 7457 1 0 1
## 7458 1 0 1
## 7459 1 0 1
## 7460 1 0 1
## 7461 1 0 1
## 7462 1 0 1
## 7463 1 0 1
## 7464 0 1 1
## 7465 1 0 1
## 7466 1 0 1
## 7467 1 0 1
## 7468 1 0 1
## 7469 1 0 1
## 7470 1 0 1
## 7471 1 0 1
## 7472 1 0 1
## 7473 1 0 1
## 7474 1 0 1
## 7475 1 0 1
## 7476 1 0 1
## 7477 1 0 1
## 7478 1 0 1
## 7479 1 0 1
## 7480 1 0 1
## 7481 1 0 1
## 7482 0 1 1
## 7483 1 0 1
## 7484 1 0 1
## 7485 1 0 1
## 7486 1 0 1
## 7487 1 0 1
## 7488 1 0 1
## 7489 1 0 1
## 7490 0 1 1
## 7491 1 0 1
## 7492 1 0 1
## 7493 1 0 1
## 7494 1 0 1
## 7495 1 0 1
## 7496 1 0 1
## 7497 1 0 1
## 7498 1 0 1
## 7499 1 0 1
## 7500 1 0 1
## 7501 1 0 1
## 7502 1 0 1
## 7503 1 0 1
## 7504 1 0 1
## 7505 1 0 1
## 7506 1 0 1
## 7507 1 0 1
## 7508 1 0 1
## 7509 1 0 1
## 7510 1 0 1
## 7511 1 0 1
## 7512 1 0 1
## 7513 1 0 1
## 7514 1 0 1
## 7515 1 0 1
## 7516 1 0 1
## 7517 0 1 1
## 7518 0 1 1
## 7519 1 0 1
## 7520 1 0 1
## 7521 1 0 1
## 7522 1 0 1
## 7523 1 0 1
## 7524 1 0 1
## 7525 1 0 1
## 7526 1 0 1
## 7527 1 0 1
## 7528 1 0 1
## 7529 1 0 1
## 7530 1 0 1
## 7531 0 1 1
## 7532 1 0 1
## 7533 1 0 1
## 7534 1 0 1
## 7535 1 0 1
## 7536 1 0 1
## 7537 1 0 1
## 7538 0 1 1
## 7539 1 0 1
## 7540 1 0 1
## 7541 1 0 1
## 7542 1 0 1
## 7543 1 0 1
## 7544 1 0 1
## 7545 1 0 1
## 7546 1 0 1
## 7547 1 0 1
## 7548 1 0 1
## 7549 1 0 1
## 7550 1 0 1
## 7551 0 1 1
## 7552 1 0 1
## 7553 1 0 1
## 7554 1 0 1
## 7555 1 0 1
## 7556 1 0 1
## 7557 1 0 1
## 7558 1 0 1
## 7559 1 0 1
## 7560 1 0 1
## 7561 1 0 1
## 7562 1 0 1
## 7563 1 0 1
## 7564 1 0 1
## 7565 1 0 1
## 7566 1 0 1
## 7567 1 0 1
## 7568 1 0 1
## 7569 1 0 1
## 7570 1 0 1
## 7571 1 0 1
## 7572 1 0 1
## 7573 1 0 1
## 7574 1 0 1
## 7575 1 0 1
## 7576 1 0 1
## 7577 1 0 1
## 7578 1 0 1
## 7579 1 0 1
## 7580 1 0 1
## 7581 1 0 1
## 7582 1 0 1
## 7583 1 0 1
## 7584 1 0 1
## 7585 1 0 1
## 7586 1 0 1
## 7587 1 0 1
## 7588 1 0 1
## 7589 1 0 1
## 7590 1 0 1
## 7591 1 0 1
## 7592 1 0 1
## 7593 1 0 1
## 7594 1 0 1
## 7595 1 0 1
## 7596 1 0 1
## 7597 1 0 1
## 7598 1 0 1
## 7599 1 0 1
## 7600 1 0 1
## 7601 1 0 1
## 7602 1 0 1
## 7603 1 0 1
## 7604 1 0 1
## 7605 1 0 1
## 7606 0 1 1
## 7607 1 0 1
## 7608 1 0 1
## 7609 1 0 1
## 7610 1 0 1
## 7611 1 0 1
## 7612 1 0 1
## 7613 1 0 1
## 7614 0 1 1
## 7615 1 0 1
## 7616 1 0 1
## 7617 1 0 1
## 7618 1 0 1
## 7619 0 1 1
## 7620 1 0 1
## 7621 1 0 1
## 7622 1 0 1
## 7623 1 0 1
## 7624 1 0 1
## 7625 1 0 1
## 7626 1 0 1
## 7627 1 0 1
## 7628 1 0 1
## 7629 1 0 1
## 7630 1 0 1
## 7631 1 0 1
## 7632 1 0 1
## 7633 1 0 1
## 7634 1 0 1
## 7635 1 0 1
## 7636 1 0 1
## 7637 1 0 1
## 7638 1 0 1
## 7639 1 0 1
## 7640 1 0 1
## 7641 1 0 1
## 7642 1 0 1
## 7643 1 0 1
## 7644 1 0 1
## 7645 1 0 1
## 7646 1 0 1
## 7647 1 0 1
## 7648 1 0 1
## 7649 1 0 1
## 7650 1 0 1
## 7651 0 1 1
## 7652 1 0 1
## 7653 1 0 1
## 7654 1 0 1
## 7655 1 0 1
## 7656 1 0 1
## 7657 1 0 1
## 7658 1 0 1
## 7659 1 0 1
## 7660 0 1 1
## 7661 1 0 1
## 7662 0 1 1
## 7663 1 0 1
## 7664 1 0 1
## 7665 1 0 1
## 7666 0 1 1
## 7667 1 0 1
## 7668 1 0 1
## 7669 1 0 1
## 7670 1 0 1
## 7671 1 0 1
## 7672 0 1 1
## 7673 1 0 1
## 7674 1 0 1
## 7675 1 0 1
## 7676 1 0 1
## 7677 0 1 1
## 7678 1 0 1
## 7679 0 1 1
## 7680 0 1 1
## 7681 1 0 1
## 7682 1 0 1
## 7683 1 0 1
## 7684 1 0 1
## 7685 1 0 1
## 7686 1 0 1
## 7687 1 0 1
## 7688 1 0 1
## 7689 1 0 1
## 7690 0 1 1
## 7691 1 0 1
## 7692 0 1 1
## 7693 1 0 1
## 7694 0 1 1
## 7695 1 0 1
## 7696 1 0 1
## 7697 1 0 1
## 7698 1 0 1
## 7699 1 0 1
## 7700 1 0 1
## 7701 1 0 1
## 7702 1 0 1
## 7703 1 0 1
## 7704 0 1 1
## 7705 1 0 1
## 7706 1 0 1
## 7707 1 0 1
## 7708 1 0 1
## 7709 1 0 1
## 7710 1 0 1
## 7711 1 0 1
## 7712 1 0 1
## 7713 1 0 1
## 7714 1 0 1
## 7715 0 1 1
## 7716 1 0 1
## 7717 1 0 1
## 7718 1 0 1
## 7719 1 0 1
## 7720 1 0 1
## 7721 0 1 1
## 7722 1 0 1
## 7723 1 0 1
## 7724 1 0 1
## 7725 1 0 1
## 7726 1 0 1
## 7727 1 0 1
## 7728 1 0 1
## 7729 1 0 1
## 7730 1 0 1
## 7731 1 0 1
## 7732 1 0 1
## 7733 1 0 1
## 7734 1 0 1
## 7735 1 0 1
## 7736 1 0 1
## 7737 1 0 1
## 7738 1 0 1
## 7739 1 0 1
## 7740 1 0 1
## 7741 1 0 1
## 7742 1 0 1
## 7743 1 0 1
## 7744 1 0 1
## 7745 1 0 1
## 7746 1 0 1
## 7747 1 0 1
## 7748 1 0 1
## 7749 1 0 1
## 7750 1 0 1
## 7751 1 0 1
## 7752 1 0 1
## 7753 1 0 1
## 7754 1 0 1
## 7755 1 0 1
## 7756 1 0 1
## 7757 1 0 1
## 7758 1 0 1
## 7759 1 0 1
## 7760 1 0 1
## 7761 1 0 1
## 7762 1 0 1
## 7763 1 0 1
## 7764 1 0 1
## 7765 1 0 1
## 7766 1 0 1
## 7767 1 0 1
## 7768 1 0 1
## 7769 1 0 1
## 7770 1 0 1
## 7771 1 0 1
## 7772 1 0 1
## 7773 1 0 1
## 7774 1 0 1
## 7775 1 0 1
## 7776 1 0 1
## 7777 1 0 1
## 7778 1 0 1
## 7779 1 0 1
## 7780 1 0 1
## 7781 1 0 1
## 7782 1 0 1
## 7783 1 0 1
## 7784 1 0 1
## 7785 1 0 1
## 7786 1 0 1
## 7787 0 1 1
## 7788 0 1 1
## 7789 1 0 1
## 7790 1 0 1
## 7791 1 0 1
## 7792 1 0 1
## 7793 1 0 1
## 7794 1 0 1
## 7795 1 0 1
## 7796 1 0 1
## 7797 1 0 1
## 7798 1 0 1
## 7799 1 0 1
## 7800 1 0 1
## 7801 1 0 1
## 7802 1 0 1
## 7803 1 0 1
## 7804 1 0 1
## 7805 1 0 1
## 7806 1 0 1
## 7807 1 0 1
## 7808 1 0 1
## 7809 1 0 1
## 7810 1 0 1
## 7811 1 0 1
## 7812 1 0 1
## 7813 1 0 1
## 7814 1 0 1
## 7815 1 0 1
## 7816 1 0 1
## 7817 1 0 1
## 7818 1 0 1
## 7819 1 0 1
## 7820 1 0 1
## 7821 1 0 1
## 7822 1 0 1
## 7823 1 0 1
## 7824 1 0 1
## 7825 1 0 1
## 7826 1 0 1
## 7827 1 0 1
## 7828 1 0 1
## 7829 1 0 1
## 7830 1 0 1
## 7831 1 0 1
## 7832 1 0 1
## 7833 1 0 1
## 7834 1 0 1
## 7835 1 0 1
## 7836 0 1 1
## 7837 1 0 1
## 7838 1 0 1
## 7839 1 0 1
## 7840 1 0 1
## 7841 1 0 1
## 7842 1 0 1
## 7843 1 0 1
## 7844 1 0 1
## 7845 1 0 1
## 7846 1 0 1
## 7847 1 0 1
## 7848 1 0 1
## 7849 1 0 1
## 7850 0 1 1
## 7851 1 0 1
## 7852 1 0 1
## 7853 1 0 1
## 7854 1 0 1
## 7855 1 0 1
## 7856 1 0 1
## 7857 1 0 1
## 7858 1 0 1
## 7859 1 0 1
## 7860 1 0 1
## 7861 0 1 1
## 7862 1 0 1
## 7863 1 0 1
## 7864 1 0 1
## 7865 1 0 1
## 7866 1 0 1
## 7867 1 0 1
## 7868 1 0 1
## 7869 1 0 1
## 7870 1 0 1
## 7871 1 0 1
## 7872 1 0 1
## 7873 1 0 1
## 7874 1 0 1
## 7875 1 0 1
## 7876 1 0 1
## 7877 1 0 1
## 7878 1 0 1
## 7879 1 0 1
## 7880 1 0 1
## 7881 1 0 1
## 7882 1 0 1
## 7883 1 0 1
## 7884 1 0 1
## 7885 1 0 1
## 7886 1 0 1
## 7887 1 0 1
## 7888 1 0 1
## 7889 1 0 1
## 7890 1 0 1
## 7891 1 0 1
## 7892 1 0 1
## 7893 1 0 1
## 7894 1 0 1
## 7895 1 0 1
## 7896 1 0 1
## 7897 0 1 1
## 7898 1 0 1
## 7899 1 0 1
## 7900 1 0 1
## 7901 1 0 1
## 7902 1 0 1
## 7903 1 0 1
## 7904 1 0 1
## 7905 1 0 1
## 7906 1 0 1
## 7907 1 0 1
## 7908 0 1 1
## 7909 1 0 1
## 7910 1 0 1
## 7911 1 0 1
## 7912 0 1 1
## 7913 0 1 1
## 7914 1 0 1
## 7915 1 0 1
## 7916 1 0 1
## 7917 1 0 1
## 7918 1 0 1
## 7919 1 0 1
## 7920 1 0 1
## 7921 1 0 1
## 7922 1 0 1
## 7923 1 0 1
## 7924 1 0 1
## 7925 1 0 1
## 7926 1 0 1
## 7927 1 0 1
## 7928 1 0 1
## 7929 1 0 1
## 7930 1 0 1
## 7931 0 1 1
## 7932 1 0 1
## 7933 1 0 1
## 7934 1 0 1
## 7935 1 0 1
## 7936 1 0 1
## 7937 1 0 1
## 7938 1 0 1
## 7939 1 0 1
## 7940 1 0 1
## 7941 1 0 1
## 7942 1 0 1
## 7943 1 0 1
## 7944 1 0 1
## 7945 1 0 1
## 7946 1 0 1
## 7947 1 0 1
## 7948 1 0 1
## 7949 1 0 1
## 7950 1 0 1
## 7951 0 1 1
## 7952 1 0 1
## 7953 1 0 1
## 7954 1 0 1
## 7955 1 0 1
## 7956 1 0 1
## 7957 1 0 1
## 7958 1 0 1
## 7959 1 0 1
## 7960 1 0 1
## 7961 1 0 1
## 7962 1 0 1
## 7963 1 0 1
## 7964 1 0 1
## 7965 1 0 1
## 7966 1 0 1
## 7967 1 0 1
## 7968 1 0 1
## 7969 1 0 1
## 7970 1 0 1
## 7971 1 0 1
## 7972 1 0 1
## 7973 1 0 1
## 7974 1 0 1
## 7975 1 0 1
## 7976 0 1 1
## 7977 1 0 1
## 7978 1 0 1
## 7979 1 0 1
## 7980 1 0 1
## 7981 1 0 1
## 7982 1 0 1
## 7983 1 0 1
## 7984 1 0 1
## 7985 1 0 1
## 7986 1 0 1
## 7987 1 0 1
## 7988 1 0 1
## 7989 1 0 1
## 7990 1 0 1
## 7991 1 0 1
## 7992 1 0 1
## 7993 1 0 1
## 7994 1 0 1
## 7995 1 0 1
## 7996 1 0 1
## 7997 1 0 1
## 7998 1 0 1
## 7999 1 0 1
## 8000 1 0 1
## 8001 1 0 1
## 8002 1 0 1
## 8003 1 0 1
## 8004 1 0 1
## 8005 1 0 1
## 8006 1 0 1
## 8007 1 0 1
## 8008 1 0 1
## 8009 1 0 1
## 8010 1 0 1
## 8011 1 0 1
## 8012 1 0 1
## 8013 1 0 1
## 8014 1 0 1
## 8015 1 0 1
## 8016 0 1 1
## 8017 1 0 1
## 8018 1 0 1
## 8019 1 0 1
## 8020 1 0 1
## 8021 1 0 1
## 8022 1 0 1
## 8023 1 0 1
## 8024 1 0 1
## 8025 1 0 1
## 8026 1 0 1
## 8027 1 0 1
## 8028 1 0 1
## 8029 1 0 1
## 8030 1 0 1
## 8031 1 0 1
## 8032 1 0 1
## 8033 1 0 1
## 8034 1 0 1
## 8035 1 0 1
## 8036 1 0 1
## 8037 1 0 1
## 8038 1 0 1
## 8039 1 0 1
## 8040 1 0 1
## 8041 1 0 1
## 8042 1 0 1
## 8043 1 0 1
## 8044 1 0 1
## 8045 1 0 1
## 8046 0 1 1
## 8047 1 0 1
## 8048 1 0 1
## 8049 1 0 1
## 8050 1 0 1
## 8051 1 0 1
## 8052 1 0 1
## 8053 1 0 1
## 8054 1 0 1
## 8055 1 0 1
## 8056 1 0 1
## 8057 1 0 1
## 8058 1 0 1
## 8059 1 0 1
## 8060 1 0 1
## 8061 1 0 1
## 8062 1 0 1
## 8063 1 0 1
## 8064 1 0 1
## 8065 1 0 1
## 8066 1 0 1
## 8067 1 0 1
## 8068 1 0 1
## 8069 0 1 1
## 8070 1 0 1
## 8071 1 0 1
## 8072 0 1 1
## 8073 1 0 1
## 8074 1 0 1
## 8075 1 0 1
## 8076 1 0 1
## 8077 1 0 1
## 8078 1 0 1
## 8079 1 0 1
## 8080 0 1 1
## 8081 1 0 1
## 8082 0 1 1
## 8083 1 0 1
## 8084 1 0 1
## 8085 1 0 1
## 8086 1 0 1
## 8087 1 0 1
## 8088 1 0 1
## 8089 1 0 1
## 8090 1 0 1
## 8091 1 0 1
## 8092 1 0 1
## 8093 1 0 1
## 8094 1 0 1
## 8095 1 0 1
## 8096 1 0 1
## 8097 1 0 1
## 8098 1 0 1
## 8099 1 0 1
## 8100 1 0 1
## 8101 1 0 1
## 8102 1 0 1
## 8103 1 0 1
## 8104 1 0 1
## 8105 1 0 1
## 8106 1 0 1
## 8107 0 1 1
## 8108 1 0 1
## 8109 1 0 1
## 8110 1 0 1
## 8111 0 1 1
## 8112 1 0 1
## 8113 0 1 1
## 8114 1 0 1
## 8115 1 0 1
## 8116 1 0 1
## 8117 1 0 1
## 8118 1 0 1
## 8119 0 1 1
## 8120 1 0 1
## 8121 1 0 1
## 8122 1 0 1
## 8123 1 0 1
## 8124 1 0 1
## 8125 1 0 1
## 8126 0 1 1
## 8127 1 0 1
## 8128 1 0 1
## 8129 1 0 1
## 8130 1 0 1
## 8131 1 0 1
## 8132 1 0 1
## 8133 1 0 1
## 8134 1 0 1
## 8135 1 0 1
## 8136 1 0 1
## 8137 1 0 1
## 8138 1 0 1
## 8139 1 0 1
## 8140 1 0 1
## 8141 1 0 1
## 8142 1 0 1
## 8143 1 0 1
## 8144 1 0 1
## 8145 1 0 1
## 8146 1 0 1
## 8147 1 0 1
## 8148 1 0 1
## 8149 1 0 1
## 8150 1 0 1
## 8151 1 0 1
## 8152 1 0 1
## 8153 0 1 1
## 8154 1 0 1
## 8155 1 0 1
## 8156 1 0 1
## 8157 1 0 1
## 8158 1 0 1
## 8159 1 0 1
## 8160 1 0 1
## 8161 1 0 1
## 8162 1 0 1
## 8163 1 0 1
## 8164 1 0 1
## 8165 1 0 1
## 8166 1 0 1
## 8167 0 1 1
## 8168 1 0 1
## 8169 1 0 1
## 8170 0 1 1
## 8171 1 0 1
## 8172 1 0 1
## 8173 0 1 1
## 8174 1 0 1
## 8175 1 0 1
## 8176 1 0 1
## 8177 1 0 1
## 8178 1 0 1
## 8179 1 0 1
## 8180 1 0 1
## 8181 1 0 1
## 8182 1 0 1
## 8183 0 1 1
## 8184 0 1 1
## 8185 0 1 1
## 8186 1 0 1
## 8187 1 0 1
## 8188 1 0 1
## 8189 1 0 1
## 8190 1 0 1
## 8191 1 0 1
## 8192 1 0 1
## 8193 1 0 1
## 8194 1 0 1
## 8195 1 0 1
## 8196 1 0 1
## 8197 1 0 1
## 8198 0 1 1
## 8199 1 0 1
## 8200 1 0 1
## 8201 1 0 1
## 8202 0 1 1
## 8203 1 0 1
## 8204 1 0 1
## 8205 1 0 1
## 8206 1 0 1
## 8207 1 0 1
## 8208 0 1 1
## 8209 1 0 1
## 8210 1 0 1
## 8211 0 1 1
## 8212 0 1 1
## 8213 1 0 1
## 8214 1 0 1
## 8215 1 0 1
## 8216 1 0 1
## 8217 0 1 1
## 8218 0 1 1
## 8219 1 0 1
## 8220 0 1 1
## 8221 1 0 1
## 8222 1 0 1
## 8223 0 1 1
## 8224 1 0 1
## 8225 1 0 1
## 8226 1 0 1
## 8227 1 0 1
## 8228 1 0 1
## 8229 1 0 1
## 8230 0 1 1
## 8231 1 0 1
## 8232 1 0 1
## 8233 1 0 1
## 8234 1 0 1
## 8235 1 0 1
## 8236 0 1 1
## 8237 1 0 1
## 8238 0 1 1
## 8239 1 0 1
## 8240 1 0 1
## 8241 1 0 1
## 8242 1 0 1
## 8243 0 1 1
## 8244 1 0 1
## 8245 1 0 1
## 8246 1 0 1
## 8247 1 0 1
## 8248 1 0 1
## 8249 1 0 1
## 8250 1 0 1
## 8251 1 0 1
## 8252 1 0 1
## 8253 1 0 1
## 8254 1 0 1
## 8255 0 1 1
## 8256 1 0 1
## 8257 1 0 1
## 8258 1 0 1
## 8259 1 0 1
## 8260 1 0 1
## 8261 1 0 1
## 8262 1 0 1
## 8263 1 0 1
## 8264 1 0 1
## 8265 1 0 1
## 8266 1 0 1
## 8267 1 0 1
## 8268 0 1 1
## 8269 1 0 1
## 8270 1 0 1
## 8271 1 0 1
## 8272 0 1 1
## 8273 1 0 1
## 8274 1 0 1
## 8275 1 0 1
## 8276 1 0 1
## 8277 1 0 1
## 8278 1 0 1
## 8279 1 0 1
## 8280 0 1 1
## 8281 1 0 1
## 8282 1 0 1
## 8283 1 0 1
## 8284 1 0 1
## 8285 1 0 1
## 8286 1 0 1
## 8287 1 0 1
## 8288 1 0 1
## 8289 1 0 1
## 8290 1 0 1
## 8291 0 1 1
## 8292 1 0 1
## 8293 1 0 1
## 8294 1 0 1
## 8295 0 1 1
## 8296 1 0 1
## 8297 1 0 1
## 8298 1 0 1
## 8299 1 0 1
## 8300 1 0 1
## 8301 1 0 1
## 8302 1 0 1
## 8303 1 0 1
## 8304 0 1 1
## 8305 1 0 1
## 8306 1 0 1
## 8307 1 0 1
## 8308 1 0 1
## 8309 0 1 1
## 8310 1 0 1
## 8311 1 0 1
## 8312 1 0 1
## 8313 1 0 1
## 8314 1 0 1
## 8315 1 0 1
## 8316 1 0 1
## 8317 1 0 1
## 8318 1 0 1
## 8319 1 0 1
## 8320 1 0 1
## 8321 1 0 1
## 8322 1 0 1
## 8323 1 0 1
## 8324 1 0 1
## 8325 1 0 1
## 8326 1 0 1
## 8327 1 0 1
## 8328 1 0 1
## 8329 1 0 1
## 8330 1 0 1
## 8331 1 0 1
## 8332 1 0 1
## 8333 1 0 1
## 8334 1 0 1
## 8335 1 0 1
## 8336 0 1 1
## 8337 1 0 1
## 8338 1 0 1
## 8339 1 0 1
## 8340 1 0 1
## 8341 1 0 1
## 8342 1 0 1
## 8343 1 0 1
## 8344 1 0 1
## 8345 0 1 1
## 8346 0 1 1
## 8347 1 0 1
## 8348 1 0 1
## 8349 0 1 1
## 8350 0 1 1
## 8351 1 0 1
## 8352 1 0 1
## 8353 1 0 1
## 8354 1 0 1
## 8355 0 1 1
## 8356 0 1 1
## 8357 1 0 1
## 8358 1 0 1
## 8359 0 1 1
## 8360 1 0 1
## 8361 1 0 1
## 8362 1 0 1
## 8363 1 0 1
## 8364 0 1 1
## 8365 1 0 1
## 8366 1 0 1
## 8367 0 1 1
## 8368 1 0 1
## 8369 0 1 1
## 8370 1 0 1
## 8371 1 0 1
## 8372 1 0 1
## 8373 1 0 1
## 8374 1 0 1
## 8375 1 0 1
## 8376 0 1 1
## 8377 1 0 1
## 8378 1 0 1
## 8379 1 0 1
## 8380 1 0 1
## 8381 1 0 1
## 8382 1 0 1
## 8383 1 0 1
## 8384 1 0 1
## 8385 0 1 1
## 8386 1 0 1
## 8387 1 0 1
## 8388 1 0 1
## 8389 1 0 1
## 8390 1 0 1
## 8391 1 0 1
## 8392 1 0 1
## 8393 1 0 1
## 8394 1 0 1
## 8395 1 0 1
## 8396 1 0 1
## 8397 1 0 1
## 8398 1 0 1
## 8399 0 1 1
## 8400 1 0 1
## 8401 1 0 1
## 8402 1 0 1
## 8403 1 0 1
## 8404 1 0 1
## 8405 1 0 1
## 8406 1 0 1
## 8407 1 0 1
## 8408 1 0 1
## 8409 1 0 1
## 8410 1 0 1
## 8411 1 0 1
## 8412 1 0 1
## 8413 1 0 1
## 8414 1 0 1
## 8415 1 0 1
## 8416 1 0 1
## 8417 1 0 1
## 8418 1 0 1
## 8419 0 1 1
## 8420 1 0 1
## 8421 1 0 1
## 8422 1 0 1
## 8423 1 0 1
## 8424 1 0 1
## 8425 1 0 1
## 8426 1 0 1
## 8427 1 0 1
## 8428 1 0 1
## 8429 1 0 1
## 8430 1 0 1
## 8431 1 0 1
## 8432 1 0 1
## 8433 1 0 1
## 8434 1 0 1
## 8435 0 1 1
## 8436 1 0 1
## 8437 1 0 1
## 8438 0 1 1
## 8439 1 0 1
## 8440 1 0 1
## 8441 1 0 1
## 8442 1 0 1
## 8443 1 0 1
## 8444 1 0 1
## 8445 1 0 1
## 8446 1 0 1
## 8447 1 0 1
## 8448 1 0 1
## 8449 1 0 1
## 8450 1 0 1
## 8451 1 0 1
## 8452 1 0 1
## 8453 1 0 1
## 8454 1 0 1
## 8455 1 0 1
## 8456 1 0 1
## 8457 1 0 1
## 8458 0 1 1
## 8459 1 0 1
## 8460 1 0 1
## 8461 1 0 1
## 8462 1 0 1
## 8463 1 0 1
## 8464 1 0 1
## 8465 1 0 1
## 8466 1 0 1
## 8467 1 0 1
## 8468 1 0 1
## 8469 1 0 1
## 8470 1 0 1
## 8471 1 0 1
## 8472 0 1 1
## 8473 1 0 1
## 8474 1 0 1
## 8475 0 1 1
## 8476 1 0 1
## 8477 1 0 1
## 8478 1 0 1
## 8479 1 0 1
## 8480 1 0 1
## 8481 1 0 1
## 8482 1 0 1
## 8483 1 0 1
## 8484 1 0 1
## 8485 1 0 1
## 8486 1 0 1
## 8487 0 1 1
## 8488 1 0 1
## 8489 1 0 1
## 8490 1 0 1
## 8491 1 0 1
## 8492 1 0 1
## 8493 1 0 1
## 8494 1 0 1
## 8495 1 0 1
## 8496 1 0 1
## 8497 1 0 1
## 8498 1 0 1
## 8499 1 0 1
## 8500 1 0 1
## 8501 1 0 1
## 8502 1 0 1
## 8503 1 0 1
## 8504 0 1 1
## 8505 0 1 1
## 8506 0 1 1
## 8507 1 0 1
## 8508 0 1 1
## 8509 1 0 1
## 8510 1 0 1
## 8511 1 0 1
## 8512 1 0 1
## 8513 1 0 1
## 8514 1 0 1
## 8515 1 0 1
## 8516 1 0 1
## 8517 1 0 1
## 8518 1 0 1
## 8519 0 1 1
## 8520 1 0 1
## 8521 1 0 1
## 8522 1 0 1
## 8523 0 1 1
## 8524 1 0 1
## 8525 1 0 1
## 8526 1 0 1
## 8527 1 0 1
## 8528 1 0 1
## 8529 1 0 1
## 8530 1 0 1
## 8531 0 1 1
## 8532 1 0 1
## 8533 1 0 1
## 8534 1 0 1
## 8535 1 0 1
## 8536 1 0 1
## 8537 1 0 1
## 8538 1 0 1
## 8539 1 0 1
## 8540 1 0 1
## 8541 1 0 1
## 8542 1 0 1
## 8543 1 0 1
## 8544 1 0 1
## 8545 1 0 1
## 8546 1 0 1
## 8547 1 0 1
## 8548 1 0 1
## 8549 1 0 1
## 8550 1 0 1
## 8551 1 0 1
## 8552 1 0 1
## 8553 1 0 1
## 8554 1 0 1
## 8555 1 0 1
## 8556 1 0 1
## 8557 1 0 1
## 8558 1 0 1
## 8559 1 0 1
## 8560 1 0 1
## 8561 1 0 1
## 8562 0 1 1
## 8563 1 0 1
## 8564 1 0 1
## 8565 0 1 1
## 8566 1 0 1
## 8567 0 1 1
## 8568 1 0 1
## 8569 0 1 1
## 8570 1 0 1
## 8571 1 0 1
## 8572 1 0 1
## 8573 0 1 1
## 8574 1 0 1
## 8575 1 0 1
## 8576 0 1 1
## 8577 1 0 1
## 8578 1 0 1
## 8579 1 0 1
## 8580 1 0 1
## 8581 1 0 1
## 8582 0 1 1
## 8583 1 0 1
## 8584 1 0 1
## 8585 1 0 1
## 8586 1 0 1
## 8587 1 0 1
## 8588 0 1 1
## 8589 1 0 1
## 8590 1 0 1
## 8591 1 0 1
## 8592 1 0 1
## 8593 1 0 1
## 8594 1 0 1
## 8595 1 0 1
## 8596 1 0 1
## 8597 1 0 1
## 8598 1 0 1
## 8599 0 1 1
## 8600 1 0 1
## 8601 0 1 1
## 8602 1 0 1
## 8603 1 0 1
## 8604 0 1 1
## 8605 1 0 1
## 8606 1 0 1
## 8607 1 0 1
## 8608 1 0 1
## 8609 1 0 1
## 8610 1 0 1
## 8611 1 0 1
## 8612 1 0 1
## 8613 1 0 1
## 8614 1 0 1
## 8615 1 0 1
## 8616 1 0 1
## 8617 1 0 1
## 8618 0 1 1
## 8619 1 0 1
## 8620 1 0 1
## 8621 0 1 1
## 8622 1 0 1
## 8623 1 0 1
## 8624 1 0 1
## 8625 1 0 1
## 8626 1 0 1
## 8627 1 0 1
## 8628 1 0 1
## 8629 1 0 1
## 8630 1 0 1
## 8631 1 0 1
## 8632 1 0 1
## 8633 1 0 1
## 8634 1 0 1
## 8635 1 0 1
## 8636 1 0 1
## 8637 1 0 1
## 8638 1 0 1
## 8639 1 0 1
## 8640 1 0 1
## 8641 1 0 1
## 8642 1 0 1
## 8643 1 0 1
## 8644 1 0 1
## 8645 1 0 1
## 8646 1 0 1
## 8647 1 0 1
## 8648 1 0 1
## 8649 1 0 1
## 8650 1 0 1
## 8651 1 0 1
## 8652 1 0 1
## 8653 1 0 1
## 8654 1 0 1
## 8655 1 0 1
## 8656 1 0 1
## 8657 1 0 1
## 8658 1 0 1
## 8659 1 0 1
## 8660 1 0 1
## 8661 1 0 1
## 8662 1 0 1
## 8663 1 0 1
## 8664 1 0 1
## 8665 1 0 1
## 8666 1 0 1
## 8667 1 0 1
## 8668 1 0 1
## 8669 1 0 1
## 8670 0 1 1
## 8671 1 0 1
## 8672 0 1 1
## 8673 0 1 1
## 8674 1 0 1
## 8675 0 1 1
## 8676 1 0 1
## 8677 1 0 1
## 8678 0 1 1
## 8679 1 0 1
## 8680 1 0 1
## 8681 1 0 1
## 8682 1 0 1
## 8683 1 0 1
## 8684 0 1 1
## 8685 0 1 1
## 8686 1 0 1
## 8687 1 0 1
## 8688 0 1 1
## 8689 1 0 1
## 8690 1 0 1
## 8691 1 0 1
## 8692 1 0 1
## 8693 1 0 1
## 8694 1 0 1
## 8695 1 0 1
## 8696 1 0 1
## 8697 1 0 1
## 8698 1 0 1
## 8699 0 1 1
## 8700 0 1 1
## 8701 1 0 1
## 8702 1 0 1
## 8703 1 0 1
## 8704 1 0 1
## 8705 1 0 1
## 8706 1 0 1
## 8707 1 0 1
## 8708 1 0 1
## 8709 1 0 1
## 8710 1 0 1
## 8711 1 0 1
## 8712 0 1 1
## 8713 0 1 1
## 8714 0 1 1
## 8715 1 0 1
## 8716 1 0 1
## 8717 1 0 1
## 8718 1 0 1
## 8719 1 0 1
## 8720 1 0 1
## 8721 1 0 1
## 8722 1 0 1
## 8723 1 0 1
## 8724 1 0 1
## 8725 1 0 1
## 8726 1 0 1
## 8727 1 0 1
## 8728 0 1 1
## 8729 1 0 1
## 8730 1 0 1
## 8731 1 0 1
## 8732 1 0 1
## 8733 1 0 1
## 8734 1 0 1
## 8735 1 0 1
## 8736 1 0 1
## 8737 1 0 1
## 8738 1 0 1
## 8739 1 0 1
## 8740 1 0 1
## 8741 1 0 1
## 8742 1 0 1
## 8743 1 0 1
## 8744 1 0 1
## 8745 1 0 1
## 8746 1 0 1
## 8747 1 0 1
## 8748 1 0 1
## 8749 1 0 1
## 8750 1 0 1
## 8751 1 0 1
## 8752 1 0 1
## 8753 1 0 1
## 8754 1 0 1
## 8755 1 0 1
## 8756 1 0 1
## 8757 1 0 1
## 8758 1 0 1
## 8759 0 1 1
## 8760 1 0 1
## 8761 1 0 1
## 8762 1 0 1
## 8763 1 0 1
## 8764 1 0 1
## 8765 1 0 1
## 8766 1 0 1
## 8767 1 0 1
## 8768 1 0 1
## 8769 1 0 1
## 8770 1 0 1
## 8771 0 1 1
## 8772 1 0 1
## 8773 1 0 1
## 8774 1 0 1
## 8775 1 0 1
## 8776 1 0 1
## 8777 1 0 1
## 8778 1 0 1
## 8779 1 0 1
## 8780 1 0 1
## 8781 1 0 1
## 8782 1 0 1
## 8783 1 0 1
## 8784 0 1 1
## 8785 1 0 1
## 8786 1 0 1
## 8787 1 0 1
## 8788 1 0 1
## 8789 1 0 1
## 8790 1 0 1
## 8791 1 0 1
## 8792 1 0 1
## 8793 1 0 1
## 8794 1 0 1
## 8795 1 0 1
## 8796 1 0 1
## 8797 1 0 1
## 8798 1 0 1
## 8799 1 0 1
## 8800 1 0 1
## 8801 1 0 1
## 8802 1 0 1
## 8803 1 0 1
## 8804 0 1 1
## 8805 1 0 1
## 8806 0 1 1
## 8807 1 0 1
## 8808 1 0 1
## 8809 1 0 1
## 8810 1 0 1
## 8811 1 0 1
## 8812 1 0 1
## 8813 1 0 1
## 8814 1 0 1
## 8815 1 0 1
## 8816 1 0 1
## 8817 1 0 1
## 8818 1 0 1
## 8819 1 0 1
## 8820 0 1 1
## 8821 1 0 1
## 8822 1 0 1
## 8823 1 0 1
## 8824 1 0 1
## 8825 1 0 1
## 8826 1 0 1
## 8827 1 0 1
## 8828 1 0 1
## 8829 1 0 1
## 8830 1 0 1
## 8831 1 0 1
## 8832 1 0 1
## 8833 1 0 1
## 8834 1 0 1
## 8835 0 1 1
## 8836 1 0 1
## 8837 1 0 1
## 8838 1 0 1
## 8839 1 0 1
## 8840 1 0 1
## 8841 1 0 1
## 8842 0 1 1
## 8843 1 0 1
## 8844 1 0 1
## 8845 1 0 1
## 8846 0 1 1
## 8847 1 0 1
## 8848 0 1 1
## 8849 0 1 1
## 8850 0 1 1
## 8851 1 0 1
## 8852 1 0 1
## 8853 1 0 1
## 8854 1 0 1
## 8855 1 0 1
## 8856 1 0 1
## 8857 1 0 1
## 8858 1 0 1
## 8859 1 0 1
## 8860 1 0 1
## 8861 1 0 1
## 8862 1 0 1
## 8863 1 0 1
## 8864 1 0 1
## 8865 1 0 1
## 8866 1 0 1
## 8867 1 0 1
## 8868 1 0 1
## 8869 1 0 1
## 8870 1 0 1
## 8871 1 0 1
## 8872 1 0 1
## 8873 1 0 1
## 8874 1 0 1
## 8875 0 1 1
## 8876 1 0 1
## 8877 1 0 1
## 8878 1 0 1
## 8879 1 0 1
## 8880 1 0 1
## 8881 1 0 1
## 8882 1 0 1
## 8883 1 0 1
## 8884 1 0 1
## 8885 1 0 1
## 8886 0 1 1
## 8887 1 0 1
## 8888 0 1 1
## 8889 1 0 1
## 8890 0 1 1
## 8891 1 0 1
## 8892 0 1 1
## 8893 1 0 1
## 8894 1 0 1
## 8895 1 0 1
## 8896 1 0 1
## 8897 1 0 1
## 8898 1 0 1
## 8899 1 0 1
## 8900 1 0 1
## 8901 1 0 1
## 8902 1 0 1
## 8903 1 0 1
## 8904 1 0 1
## 8905 1 0 1
## 8906 1 0 1
## 8907 1 0 1
## 8908 1 0 1
## 8909 0 1 1
## 8910 1 0 1
## 8911 1 0 1
## 8912 1 0 1
## 8913 1 0 1
## 8914 1 0 1
## 8915 1 0 1
## 8916 1 0 1
## 8917 1 0 1
## 8918 1 0 1
## 8919 1 0 1
## 8920 1 0 1
## 8921 1 0 1
## 8922 1 0 1
## 8923 1 0 1
## 8924 1 0 1
## 8925 1 0 1
## 8926 1 0 1
## 8927 1 0 1
## 8928 1 0 1
## 8929 1 0 1
## 8930 1 0 1
## 8931 1 0 1
## 8932 1 0 1
## 8933 1 0 1
## 8934 1 0 1
## 8935 1 0 1
## 8936 0 1 1
## 8937 1 0 1
## 8938 1 0 1
## 8939 0 1 1
## 8940 1 0 1
## 8941 1 0 1
## 8942 1 0 1
## 8943 1 0 1
## 8944 1 0 1
## 8945 1 0 1
## 8946 1 0 1
## 8947 1 0 1
## 8948 1 0 1
## 8949 1 0 1
## 8950 1 0 1
## 8951 1 0 1
## 8952 1 0 1
## 8953 1 0 1
## 8954 1 0 1
## 8955 1 0 1
## 8956 1 0 1
## 8957 1 0 1
## 8958 1 0 1
## 8959 1 0 1
## 8960 1 0 1
## 8961 1 0 1
## 8962 1 0 1
## 8963 1 0 1
## 8964 1 0 1
## 8965 1 0 1
## 8966 1 0 1
## 8967 0 1 1
## 8968 0 1 1
## 8969 1 0 1
## 8970 1 0 1
## 8971 0 1 1
## 8972 1 0 1
## 8973 1 0 1
## 8974 1 0 1
## 8975 1 0 1
## 8976 1 0 1
## 8977 1 0 1
## 8978 1 0 1
## 8979 1 0 1
## 8980 1 0 1
## 8981 1 0 1
## 8982 1 0 1
## 8983 1 0 1
## 8984 1 0 1
## 8985 1 0 1
## 8986 1 0 1
## 8987 1 0 1
## 8988 1 0 1
## 8989 1 0 1
## 8990 1 0 1
## 8991 1 0 1
## 8992 1 0 1
## 8993 1 0 1
## 8994 1 0 1
## 8995 1 0 1
## 8996 1 0 1
## 8997 1 0 1
## 8998 1 0 1
## 8999 1 0 1
## 9000 1 0 1
## 9001 1 0 1
## 9002 1 0 1
## 9003 1 0 1
## 9004 1 0 1
## 9005 1 0 1
## 9006 1 0 1
## 9007 1 0 1
## 9008 1 0 1
## 9009 1 0 1
## 9010 1 0 1
## 9011 1 0 1
## 9012 1 0 1
## 9013 1 0 1
## 9014 1 0 1
## 9015 1 0 1
## 9016 1 0 1
## 9017 1 0 1
## 9018 1 0 1
## 9019 1 0 1
## 9020 1 0 1
## 9021 1 0 1
## 9022 1 0 1
## 9023 1 0 1
## 9024 1 0 1
## 9025 1 0 1
## 9026 1 0 1
## 9027 1 0 1
## 9028 1 0 1
## 9029 1 0 1
## 9030 1 0 1
## 9031 1 0 1
## 9032 1 0 1
## 9033 0 1 1
## 9034 1 0 1
## 9035 0 1 1
## 9036 1 0 1
## 9037 1 0 1
## 9038 1 0 1
## 9039 1 0 1
## 9040 1 0 1
## 9041 1 0 1
## 9042 1 0 1
## 9043 1 0 1
## 9044 1 0 1
## 9045 1 0 1
## 9046 1 0 1
## 9047 1 0 1
## 9048 1 0 1
## 9049 1 0 1
## 9050 1 0 1
## 9051 1 0 1
## 9052 1 0 1
## 9053 1 0 1
## 9054 1 0 1
## 9055 1 0 1
## 9056 1 0 1
## 9057 1 0 1
## 9058 1 0 1
## 9059 1 0 1
## 9060 1 0 1
## 9061 1 0 1
## 9062 1 0 1
## 9063 0 1 1
## 9064 1 0 1
## 9065 1 0 1
## 9066 1 0 1
## 9067 1 0 1
## 9068 1 0 1
## 9069 1 0 1
## 9070 1 0 1
## 9071 1 0 1
## 9072 1 0 1
## 9073 1 0 1
## 9074 1 0 1
## 9075 1 0 1
## 9076 1 0 1
## 9077 1 0 1
## 9078 1 0 1
## 9079 1 0 1
## 9080 1 0 1
## 9081 1 0 1
## 9082 1 0 1
## 9083 1 0 1
## 9084 1 0 1
## 9085 1 0 1
## 9086 1 0 1
## 9087 1 0 1
## 9088 1 0 1
## 9089 1 0 1
## 9090 1 0 1
## 9091 1 0 1
## 9092 1 0 1
## 9093 1 0 1
## 9094 1 0 1
## 9095 1 0 1
## 9096 1 0 1
## 9097 1 0 1
## 9098 1 0 1
## 9099 1 0 1
## 9100 1 0 1
## 9101 1 0 1
## 9102 0 1 1
## 9103 1 0 1
## 9104 1 0 1
## 9105 0 1 1
## 9106 1 0 1
## 9107 1 0 1
## 9108 1 0 1
## 9109 1 0 1
## 9110 1 0 1
## 9111 1 0 1
## 9112 1 0 1
## 9113 1 0 1
## 9114 1 0 1
## 9115 1 0 1
## 9116 1 0 1
## 9117 1 0 1
## 9118 1 0 1
## 9119 1 0 1
## 9120 1 0 1
## 9121 1 0 1
## 9122 1 0 1
## 9123 1 0 1
## 9124 1 0 1
## 9125 1 0 1
## 9126 1 0 1
## 9127 1 0 1
## 9128 1 0 1
## 9129 1 0 1
## 9130 1 0 1
## 9131 1 0 1
## 9132 1 0 1
## 9133 1 0 1
## 9134 1 0 1
## 9135 1 0 1
## 9136 1 0 1
## 9137 1 0 1
## 9138 1 0 1
## 9139 0 1 1
## 9140 1 0 1
## 9141 1 0 1
## 9142 1 0 1
## 9143 1 0 1
## 9144 1 0 1
## 9145 1 0 1
## 9146 1 0 1
## 9147 0 1 1
## 9148 1 0 1
## 9149 1 0 1
## 9150 1 0 1
## 9151 1 0 1
## 9152 1 0 1
## 9153 1 0 1
## 9154 1 0 1
## 9155 1 0 1
## 9156 1 0 1
## 9157 1 0 1
## 9158 1 0 1
## 9159 1 0 1
## 9160 1 0 1
## 9161 1 0 1
## 9162 1 0 1
## 9163 1 0 1
## 9164 1 0 1
## 9165 1 0 1
## 9166 1 0 1
## 9167 1 0 1
## 9168 1 0 1
## 9169 1 0 1
## 9170 1 0 1
## 9171 1 0 1
## 9172 1 0 1
## 9173 1 0 1
## 9174 1 0 1
## 9175 1 0 1
## 9176 1 0 1
## 9177 1 0 1
## 9178 1 0 1
## 9179 1 0 1
## 9180 1 0 1
## 9181 1 0 1
## 9182 1 0 1
## 9183 1 0 1
## 9184 1 0 1
## 9185 0 1 1
## 9186 1 0 1
## 9187 1 0 1
## 9188 1 0 1
## 9189 1 0 1
## 9190 1 0 1
## 9191 1 0 1
## 9192 1 0 1
## 9193 1 0 1
## 9194 1 0 1
## 9195 1 0 1
## 9196 1 0 1
## 9197 1 0 1
## 9198 1 0 1
## 9199 1 0 1
## 9200 1 0 1
## 9201 1 0 1
## 9202 1 0 1
## 9203 1 0 1
## 9204 1 0 1
## 9205 1 0 1
## 9206 1 0 1
## 9207 1 0 1
## 9208 1 0 1
## 9209 1 0 1
## 9210 0 1 1
## 9211 1 0 1
## 9212 1 0 1
## 9213 1 0 1
## 9214 0 1 1
## 9215 1 0 1
## 9216 1 0 1
## 9217 1 0 1
## 9218 1 0 1
## 9219 1 0 1
## 9220 1 0 1
## 9221 1 0 1
## 9222 1 0 1
## 9223 0 1 1
## 9224 1 0 1
## 9225 1 0 1
## 9226 1 0 1
## 9227 1 0 1
## 9228 1 0 1
## 9229 1 0 1
## 9230 1 0 1
## 9231 1 0 1
## 9232 1 0 1
## 9233 1 0 1
## 9234 1 0 1
## 9235 1 0 1
## 9236 1 0 1
## 9237 1 0 1
## 9238 1 0 1
## 9239 1 0 1
## 9240 1 0 1
## 9241 1 0 1
## 9242 1 0 1
## 9243 1 0 1
## 9244 1 0 1
## 9245 1 0 1
## 9246 1 0 1
## 9247 1 0 1
## 9248 1 0 1
## 9249 1 0 1
## 9250 1 0 1
## 9251 1 0 1
## 9252 1 0 1
## 9253 1 0 1
## 9254 1 0 1
## 9255 1 0 1
## 9256 1 0 1
## 9257 1 0 1
## 9258 1 0 1
## 9259 1 0 1
## 9260 0 1 1
## 9261 1 0 1
## 9262 0 1 1
## 9263 1 0 1
## 9264 1 0 1
## 9265 1 0 1
## 9266 1 0 1
## 9267 1 0 1
## 9268 1 0 1
## 9269 1 0 1
## 9270 1 0 1
## 9271 1 0 1
## 9272 1 0 1
## 9273 1 0 1
## 9274 1 0 1
## 9275 1 0 1
## 9276 1 0 1
## 9277 0 1 1
## 9278 1 0 1
## 9279 1 0 1
## 9280 1 0 1
## 9281 1 0 1
## 9282 1 0 1
## 9283 1 0 1
## 9284 1 0 1
## 9285 1 0 1
## 9286 1 0 1
## 9287 1 0 1
## 9288 1 0 1
## 9289 1 0 1
## 9290 1 0 1
## 9291 1 0 1
## 9292 1 0 1
## 9293 1 0 1
## 9294 1 0 1
## 9295 1 0 1
## 9296 1 0 1
## 9297 1 0 1
## 9298 1 0 1
## 9299 1 0 1
## 9300 1 0 1
## 9301 0 1 1
## 9302 1 0 1
## 9303 1 0 1
## 9304 1 0 1
## 9305 1 0 1
## 9306 1 0 1
## 9307 1 0 1
## 9308 1 0 1
## 9309 1 0 1
## 9310 1 0 1
## 9311 1 0 1
## 9312 1 0 1
## 9313 1 0 1
## 9314 1 0 1
## 9315 1 0 1
## 9316 1 0 1
## 9317 1 0 1
## 9318 1 0 1
## 9319 1 0 1
## 9320 1 0 1
## 9321 1 0 1
## 9322 1 0 1
## 9323 0 1 1
## 9324 1 0 1
## 9325 1 0 1
## 9326 1 0 1
## 9327 1 0 1
## 9328 1 0 1
## 9329 1 0 1
## 9330 1 0 1
## 9331 1 0 1
## 9332 1 0 1
## 9333 0 0 0
## 9334 0 0 0
## 9335 0 0 0
## 9336 0 0 0
## 9337 0 0 0
## 9338 0 0 0
## 9339 0 0 0
## 9340 0 0 0
## 9341 0 0 0
## 9342 0 0 0
## 9343 0 0 0
## 9344 0 0 0
## 9345 0 0 0
## 9346 0 0 0
## 9347 0 0 0
## 9348 0 0 0
## 9349 0 0 0
## 9350 0 0 0
## 9351 0 0 0
## 9352 0 0 0
## 9353 0 0 0
## 9354 0 0 0
## 9355 0 0 0
## 9356 0 0 0
## 9357 0 0 0
## 9358 0 0 0
## 9359 0 0 0
## 9360 0 0 0
## 9361 0 0 0
## 9362 0 0 0
## 9363 0 0 0
## 9364 0 0 0
## 9365 0 0 0
## 9366 0 0 0
## 9367 0 0 0
## 9368 0 0 0
## 9369 0 0 0
## 9370 0 0 0
## 9371 0 0 0
## 9372 0 0 0
## 9373 0 0 0
## 9374 0 0 0
## 9375 0 0 0
## 9376 0 0 0
## 9377 0 0 0
## 9378 0 0 0
## 9379 0 0 0
## 9380 0 0 0
## 9381 0 0 0
## 9382 0 0 0
## 9383 0 0 0
## 9384 0 0 0
## 9385 0 0 0
## 9386 0 0 0
## 9387 0 0 0
## 9388 0 0 0
## 9389 0 0 0
## 9390 0 0 0
## 9391 0 0 0
## 9392 0 0 0
## 9393 0 0 0
## 9394 0 0 0
## 9395 0 0 0
## 9396 0 0 0
## 9397 0 0 0
## 9398 0 0 0
## 9399 0 0 0
## 9400 0 0 0
## 9401 0 0 0
## 9402 0 0 0
## 9403 0 0 0
## 9404 0 0 0
## 9405 0 0 0
## 9406 0 0 0
## 9407 0 0 0
## 9408 0 0 0
## 9409 0 0 0
## 9410 0 0 0
## 9411 0 0 0
## 9412 0 0 0
## 9413 0 0 0
## 9414 0 0 0
## 9415 0 0 0
## 9416 0 0 0
## 9417 0 0 0
## 9418 0 0 0
## 9419 0 0 0
## 9420 0 0 0
## 9421 0 0 0
## 9422 0 0 0
## 9423 0 0 0
## 9424 0 0 0
## 9425 0 0 0
## 9426 0 0 0
## 9427 0 0 0
## 9428 0 0 0
## 9429 0 0 0
## 9430 0 0 0
## 9431 0 0 0
## 9432 0 0 0
## 9433 0 0 0
## 9434 0 0 0
## 9435 0 0 0
## 9436 0 0 0
## 9437 0 0 0
## 9438 0 0 0
## 9439 0 0 0
## 9440 0 0 0
## 9441 0 0 0
## 9442 0 0 0
## 9443 0 0 0
## 9444 0 0 0
## 9445 0 0 0
## 9446 0 0 0
## 9447 0 0 0
## 9448 0 0 0
## 9449 0 0 0
## 9450 0 0 0
## 9451 0 0 0
## 9452 0 0 0
## 9453 0 0 0
## 9454 0 0 0
## 9455 0 0 0
## 9456 0 0 0
## 9457 0 0 0
## 9458 0 0 0
## 9459 0 0 0
## 9460 0 0 0
## 9461 0 0 0
## 9462 0 0 0
## 9463 0 0 0
## 9464 0 0 0
## 9465 0 0 0
## 9466 0 0 0
## 9467 0 0 0
## 9468 0 0 0
## 9469 0 0 0
## 9470 0 0 0
## 9471 0 0 0
## 9472 0 0 0
## 9473 0 0 0
## 9474 0 0 0
## 9475 0 0 0
## 9476 0 0 0
## 9477 0 0 0
## 9478 0 0 0
## 9479 0 0 0
## 9480 0 0 0
## 9481 0 0 0
## 9482 0 0 0
## 9483 0 0 0
## 9484 0 0 0
## 9485 0 0 0
## 9486 0 0 0
## 9487 0 0 0
## 9488 0 0 0
## 9489 0 0 0
## 9490 0 0 0
## 9491 0 0 0
## 9492 0 0 0
## 9493 0 0 0
## 9494 0 0 0
## 9495 0 0 0
## 9496 0 0 0
## 9497 0 0 0
## 9498 0 0 0
## 9499 0 0 0
## 9500 0 0 0
## 9501 0 0 0
## 9502 0 0 0
## 9503 0 0 0
## 9504 0 0 0
## 9505 0 0 0
## 9506 0 0 0
## 9507 0 0 0
## 9508 0 0 0
## 9509 0 0 0
## 9510 0 0 0
## 9511 0 0 0
## 9512 0 0 0
## 9513 0 0 0
## 9514 0 0 0
## 9515 0 0 0
## 9516 0 0 0
## 9517 0 0 0
## 9518 0 0 0
## 9519 0 0 0
## 9520 0 0 0
## 9521 0 0 0
## 9522 0 0 0
## 9523 0 0 0
## 9524 0 0 0
## 9525 0 0 0
## 9526 0 0 0
## 9527 0 0 0
## 9528 0 0 0
## 9529 0 0 0
## 9530 0 0 0
## 9531 0 0 0
## 9532 0 0 0
## 9533 0 0 0
## 9534 0 0 0
## 9535 0 0 0
## 9536 0 0 0
## 9537 0 0 0
## 9538 0 0 0
## 9539 0 0 0
## 9540 0 0 0
## 9541 0 0 0
## 9542 0 0 0
## 9543 0 0 0
## 9544 0 0 0
## 9545 0 0 0
## 9546 0 0 0
## 9547 0 0 0
## 9548 0 0 0
## 9549 0 0 0
## 9550 0 0 0
## 9551 0 0 0
## 9552 0 0 0
## 9553 0 0 0
## 9554 0 0 0
## 9555 0 0 0
## 9556 0 0 0
## 9557 0 0 0
## 9558 0 0 0
## 9559 0 0 0
## 9560 0 0 0
## 9561 0 0 0
## 9562 0 0 0
## 9563 0 0 0
## 9564 0 0 0
## 9565 0 0 0
## 9566 0 0 0
## 9567 0 0 0
## 9568 0 0 0
## 9569 0 0 0
## 9570 0 0 0
## 9571 0 0 0
## 9572 0 0 0
## 9573 0 0 0
## 9574 0 0 0
## 9575 0 0 0
## 9576 0 0 0
## 9577 0 0 0
## 9578 0 0 0
## 9579 0 0 0
## 9580 0 0 0
## 9581 0 0 0
## 9582 0 0 0
## 9583 0 0 0
## 9584 0 0 0
## 9585 0 0 0
## 9586 0 0 0
## 9587 0 0 0
## 9588 0 0 0
## 9589 0 0 0
## 9590 0 0 0
## 9591 0 0 0
## 9592 0 0 0
## 9593 0 0 0
## 9594 0 0 0
## 9595 0 0 0
## 9596 0 0 0
## 9597 0 0 0
## 9598 0 0 0
## 9599 0 0 0
## 9600 0 0 0
## 9601 0 0 0
## 9602 0 0 0
## 9603 0 0 0
## 9604 0 0 0
## 9605 0 0 0
## 9606 0 0 0
## 9607 0 0 0
## 9608 0 0 0
## 9609 0 0 0
## 9610 0 0 0
## 9611 0 0 0
## 9612 0 0 0
## 9613 0 0 0
## 9614 0 0 0
## 9615 0 0 0
## 9616 0 0 0
## 9617 0 0 0
## 9618 0 0 0
## 9619 0 0 0
## 9620 0 0 0
## 9621 0 0 0
## 9622 0 0 0
## 9623 0 0 0
## 9624 0 0 0
## 9625 0 0 0
## 9626 0 0 0
## 9627 0 0 0
## 9628 0 0 0
## 9629 0 0 0
## 9630 0 0 0
## 9631 0 0 0
## 9632 0 0 0
## 9633 0 0 0
## 9634 0 0 0
## 9635 0 0 0
## 9636 0 0 0
## 9637 0 0 0
## 9638 0 0 0
## 9639 0 0 0
## 9640 0 0 0
## 9641 0 0 0
## 9642 0 0 0
## 9643 0 0 0
## 9644 0 0 0
## 9645 0 0 0
## 9646 0 0 0
## 9647 0 0 0
## 9648 0 0 0
## 9649 0 0 0
## 9650 0 0 0
## 9651 0 0 0
## 9652 0 0 0
## 9653 0 0 0
## 9654 0 0 0
## 9655 0 0 0
## 9656 0 0 0
## 9657 0 0 0
## 9658 0 0 0
## 9659 0 0 0
## 9660 0 0 0
## 9661 0 0 0
## 9662 0 0 0
## 9663 0 0 0
## 9664 0 0 0
## 9665 0 0 0
## 9666 0 0 0
## 9667 0 0 0
## 9668 0 0 0
## 9669 0 0 0
## 9670 0 0 0
## 9671 0 0 0
## 9672 0 0 0
## 9673 0 0 0
## 9674 0 0 0
## 9675 0 0 0
## 9676 0 0 0
## 9677 0 0 0
## 9678 0 0 0
## 9679 0 0 0
## 9680 0 0 0
## 9681 0 0 0
## 9682 0 0 0
## 9683 0 0 0
## 9684 0 0 0
## 9685 0 0 0
## 9686 0 0 0
## 9687 0 0 0
## 9688 0 0 0
## 9689 0 0 0
## 9690 0 0 0
## 9691 0 0 0
## 9692 0 0 0
## 9693 0 0 0
## 9694 0 0 0
## 9695 0 0 0
## 9696 0 0 0
## 9697 0 0 0
## 9698 0 0 0
## 9699 0 0 0
## 9700 0 0 0
## 9701 0 0 0
## 9702 0 0 0
## 9703 0 0 0
## 9704 0 0 0
## 9705 0 0 0
## 9706 0 0 0
## 9707 0 0 0
## 9708 0 0 0
## 9709 0 0 0
## 9710 0 0 0
## 9711 0 0 0
## 9712 0 0 0
## 9713 0 0 0
## 9714 0 0 0
## 9715 0 0 0
## 9716 0 0 0
## 9717 0 0 0
## 9718 0 0 0
## 9719 0 0 0
## 9720 0 0 0
## 9721 0 0 0
## 9722 0 0 0
## 9723 0 0 0
## 9724 0 0 0
## 9725 0 0 0
## 9726 0 0 0
## 9727 0 0 0
## 9728 0 0 0
## 9729 0 0 0
## 9730 0 0 0
## 9731 0 0 0
## 9732 0 0 0
## 9733 0 0 0
## 9734 0 0 0
## 9735 0 0 0
## 9736 0 0 0
## 9737 0 0 0
## 9738 0 0 0
## 9739 0 0 0
## 9740 0 0 0
## 9741 0 0 0
## 9742 0 0 0
## 9743 0 0 0
## 9744 0 0 0
## 9745 0 0 0
## 9746 0 0 0
## 9747 0 0 0
## 9748 0 0 0
## 9749 0 0 0
## 9750 0 0 0
## 9751 0 0 0
## 9752 0 0 0
## 9753 0 0 0
## 9754 0 0 0
## 9755 0 0 0
## 9756 0 0 0
## 9757 0 0 0
## 9758 0 0 0
## 9759 0 0 0
## 9760 0 0 0
## 9761 0 0 0
## 9762 0 0 0
## 9763 0 0 0
## 9764 0 0 0
## 9765 0 0 0
## 9766 0 0 0
## 9767 0 0 0
## 9768 0 0 0
## 9769 0 0 0
## 9770 0 0 0
## 9771 0 0 0
## 9772 0 0 0
## 9773 0 0 0
## 9774 0 0 0
## 9775 0 0 0
## 9776 0 0 0
## 9777 0 0 0
## 9778 0 0 0
## 9779 0 0 0
## 9780 0 0 0
## 9781 0 0 0
## 9782 0 0 0
## 9783 0 0 0
## 9784 0 0 0
## 9785 0 0 0
## 9786 0 0 0
## 9787 0 0 0
## 9788 0 0 0
## 9789 0 0 0
## 9790 0 0 0
## 9791 0 0 0
## 9792 0 0 0
## 9793 0 0 0
## 9794 0 0 0
## 9795 0 0 0
## 9796 0 0 0
## 9797 0 0 0
## 9798 0 0 0
## 9799 0 0 0
## 9800 0 0 0
## 9801 0 0 0
## 9802 0 0 0
## 9803 0 0 0
## 9804 0 0 0
## 9805 0 0 0
## 9806 0 0 0
## 9807 0 0 0
## 9808 0 0 0
## 9809 0 0 0
## 9810 0 0 0
## 9811 0 0 0
## 9812 0 0 0
## 9813 0 0 0
## 9814 0 0 0
## 9815 0 0 0
## 9816 0 0 0
## 9817 0 0 0
## 9818 0 0 0
## 9819 0 0 0
## 9820 0 0 0
## 9821 0 0 0
## 9822 0 0 0
## 9823 0 0 0
## 9824 0 0 0
## 9825 0 0 0
## 9826 0 0 0
## 9827 0 0 0
## 9828 0 0 0
## 9829 0 0 0
## 9830 0 0 0
## 9831 0 0 0
## 9832 0 0 0
## 9833 0 0 0
## 9834 0 0 0
## 9835 0 0 0
## 9836 0 0 0
## 9837 0 0 0
## 9838 0 0 0
## 9839 0 0 0
## 9840 0 0 0
## 9841 0 0 0
## 9842 0 0 0
## 9843 0 0 0
## 9844 0 0 0
## 9845 0 0 0
## 9846 0 0 0
## 9847 0 0 0
## 9848 0 0 0
## 9849 0 0 0
## 9850 0 0 0
## 9851 0 0 0
## 9852 0 0 0
## 9853 0 0 0
## 9854 0 0 0
## 9855 0 0 0
## 9856 0 0 0
## 9857 0 0 0
## 9858 0 0 0
## 9859 0 0 0
## 9860 0 0 0
## 9861 0 0 0
## 9862 0 0 0
## 9863 0 0 0
## 9864 0 0 0
## 9865 0 0 0
## 9866 0 0 0
## 9867 0 0 0
## 9868 0 0 0
## 9869 0 0 0
## 9870 0 0 0
## 9871 0 0 0
## 9872 0 0 0
## 9873 0 0 0
## 9874 0 0 0
## 9875 0 0 0
## 9876 0 0 0
## 9877 0 0 0
## 9878 0 0 0
## 9879 0 0 0
## 9880 0 0 0
## 9881 0 0 0
## 9882 0 0 0
## 9883 0 0 0
## 9884 0 0 0
## 9885 0 0 0
## 9886 0 0 0
## 9887 0 0 0
## 9888 0 0 0
## 9889 0 0 0
## 9890 0 0 0
## 9891 0 0 0
## 9892 0 0 0
## 9893 0 0 0
## 9894 0 0 0
## 9895 0 0 0
## 9896 0 0 0
## 9897 0 0 0
## 9898 0 0 0
## 9899 0 0 0
## 9900 0 0 0
## 9901 0 0 0
## 9902 0 0 0
## 9903 0 0 0
## 9904 0 0 0
## 9905 0 0 0
## 9906 0 0 0
## 9907 0 0 0
## 9908 0 0 0
## 9909 0 0 0
## 9910 0 0 0
## 9911 0 0 0
## 9912 0 0 0
## 9913 0 0 0
## 9914 0 0 0
## 9915 0 0 0
## 9916 0 0 0
## 9917 0 0 0
## 9918 0 0 0
## 9919 0 0 0
## 9920 0 0 0
## 9921 0 0 0
## 9922 0 0 0
## 9923 0 0 0
## 9924 0 0 0
## 9925 0 0 0
## 9926 0 0 0
## 9927 0 0 0
## 9928 0 0 0
## 9929 0 0 0
## 9930 0 0 0
## 9931 0 0 0
## 9932 0 0 0
## 9933 0 0 0
## 9934 0 0 0
## 9935 0 0 0
## 9936 0 0 0
## 9937 0 0 0
## 9938 0 0 0
## 9939 0 0 0
## 9940 0 0 0
## 9941 0 0 0
## 9942 0 0 0
## 9943 0 0 0
## 9944 0 0 0
## 9945 0 0 0
## 9946 0 0 0
## 9947 0 0 0
## 9948 0 0 0
## 9949 0 0 0
## 9950 0 0 0
## 9951 0 0 0
## 9952 0 0 0
## 9953 0 0 0
## 9954 0 0 0
## 9955 0 0 0
## 9956 0 0 0
## 9957 0 0 0
## 9958 0 0 0
## 9959 0 0 0
## 9960 0 0 0
## 9961 0 0 0
## 9962 0 0 0
## 9963 0 0 0
## 9964 0 0 0
## 9965 0 0 0
## 9966 0 0 0
## 9967 0 0 0
## 9968 0 0 0
## 9969 0 0 0
## 9970 0 0 0
## 9971 0 0 0
## 9972 0 0 0
## 9973 0 0 0
## 9974 0 0 0
## 9975 0 0 0
## 9976 0 0 0
## 9977 0 0 0
## 9978 0 0 0
## 9979 0 0 0
## 9980 0 0 0
## 9981 0 0 0
## 9982 0 0 0
## 9983 0 0 0
## 9984 0 0 0
## 9985 0 0 0
## 9986 0 0 0
## 9987 0 0 0
## 9988 0 0 0
## 9989 0 0 0
## 9990 0 0 0
## 9991 0 0 0
## 9992 0 0 0
## 9993 0 0 0
## 9994 0 0 0
## 9995 0 0 0
## 9996 0 0 0
## 9997 0 0 0
## 9998 0 0 0
## 9999 0 0 0
## 10000 0 0 0
## 10001 0 0 0
## 10002 0 0 0
## 10003 0 0 0
## 10004 0 0 0
## 10005 0 0 0
## 10006 0 0 0
## 10007 0 0 0
## 10008 0 0 0
## 10009 0 0 0
## 10010 0 0 0
## 10011 0 0 0
## 10012 0 0 0
## 10013 0 0 0
## 10014 0 0 0
## 10015 0 0 0
## 10016 0 0 0
## 10017 0 0 0
## 10018 0 0 0
## 10019 0 0 0
## 10020 0 0 0
## 10021 0 0 0
## 10022 0 0 0
## 10023 0 0 0
## 10024 0 0 0
## 10025 0 0 0
## 10026 0 0 0
## 10027 0 0 0
## 10028 0 0 0
## 10029 0 0 0
## 10030 0 0 0
## 10031 0 0 0
## 10032 0 0 0
## 10033 0 0 0
## 10034 0 0 0
## 10035 0 0 0
## 10036 0 0 0
## 10037 0 0 0
## 10038 0 0 0
## 10039 0 0 0
## 10040 0 0 0
## 10041 0 0 0
## 10042 0 0 0
## 10043 0 0 0
## 10044 0 0 0
## 10045 0 0 0
## 10046 0 0 0
## 10047 0 0 0
## 10048 0 0 0
## 10049 0 0 0
## 10050 0 0 0
## 10051 0 0 0
## 10052 0 0 0
## 10053 0 0 0
## 10054 0 0 0
## 10055 0 0 0
## 10056 0 0 0
## 10057 0 0 0
## 10058 0 0 0
## 10059 0 0 0
## 10060 0 0 0
## 10061 0 0 0
## 10062 0 0 0
## 10063 0 0 0
## 10064 0 0 0
## 10065 0 0 0
## 10066 0 0 0
## 10067 0 0 0
## 10068 0 0 0
## 10069 0 0 0
## 10070 0 0 0
## 10071 0 0 0
## 10072 0 0 0
## 10073 0 0 0
## 10074 0 0 0
## 10075 0 0 0
## 10076 0 0 0
## 10077 0 0 0
## 10078 0 0 0
## 10079 0 0 0
## 10080 0 0 0
## 10081 0 0 0
## 10082 0 0 0
## 10083 0 0 0
## 10084 0 0 0
## 10085 0 0 0
## 10086 0 0 0
## 10087 0 0 0
## 10088 0 0 0
## 10089 0 0 0
## 10090 0 0 0
## 10091 0 0 0
## 10092 0 0 0
## 10093 0 0 0
## 10094 0 0 0
## 10095 0 0 0
## 10096 0 0 0
## 10097 0 0 0
## 10098 0 0 0
## 10099 0 0 0
## 10100 0 0 0
## 10101 0 0 0
## 10102 0 0 0
## 10103 0 0 0
## 10104 0 0 0
## 10105 0 0 0
## 10106 0 0 0
## 10107 0 0 0
## 10108 0 0 0
## 10109 0 0 0
## 10110 0 0 0
## 10111 0 0 0
## 10112 0 0 0
## 10113 0 0 0
## 10114 0 0 0
## 10115 0 0 0
## 10116 0 0 0
## 10117 0 0 0
## 10118 0 0 0
## 10119 0 0 0
## 10120 0 0 0
## 10121 0 0 0
## 10122 0 0 0
## 10123 0 0 0
## 10124 0 0 0
## 10125 0 0 0
## 10126 0 0 0
## 10127 0 0 0
## 10128 0 0 0
## 10129 0 0 0
## 10130 0 0 0
## 10131 0 0 0
## 10132 0 0 0
## 10133 0 0 0
## 10134 0 0 0
## 10135 0 0 0
## 10136 0 0 0
## 10137 0 0 0
## 10138 0 0 0
## 10139 0 0 0
## 10140 0 0 0
## 10141 0 0 0
## 10142 0 0 0
## 10143 0 0 0
## 10144 0 0 0
## 10145 0 0 0
## 10146 0 0 0
## 10147 0 0 0
## 10148 0 0 0
## 10149 0 0 0
## 10150 0 0 0
## 10151 0 0 0
## 10152 0 0 0
## 10153 0 0 0
## 10154 0 0 0
## 10155 0 0 0
## 10156 0 0 0
## 10157 0 0 0
## 10158 0 0 0
## 10159 0 0 0
## 10160 0 0 0
## 10161 0 0 0
## 10162 0 0 0
## 10163 0 0 0
## 10164 0 0 0
## 10165 0 0 0
## 10166 0 0 0
## 10167 0 0 0
## 10168 0 0 0
## 10169 0 0 0
## 10170 0 0 0
## 10171 0 0 0
## 10172 0 0 0
## 10173 0 0 0
## 10174 0 0 0
## 10175 0 0 0
## 10176 0 0 0
## 10177 0 0 0
## 10178 0 0 0
## 10179 0 0 0
## 10180 0 0 0
## 10181 0 0 0
## 10182 0 0 0
## 10183 0 0 0
## 10184 0 0 0
## 10185 0 0 0
## 10186 0 0 0
## 10187 0 0 0
## 10188 0 0 0
## 10189 0 0 0
## 10190 0 0 0
## 10191 0 0 0
## 10192 0 0 0
## 10193 0 0 0
## 10194 0 0 0
## 10195 0 0 0
## 10196 0 0 0
## 10197 0 0 0
## 10198 0 0 0
## 10199 0 0 0
## 10200 0 0 0
## 10201 0 0 0
## 10202 0 0 0
## 10203 0 0 0
## 10204 0 0 0
## 10205 0 0 0
## 10206 0 0 0
## 10207 0 0 0
## 10208 0 0 0
## 10209 0 0 0
## 10210 0 0 0
## 10211 0 0 0
## 10212 0 0 0
## 10213 0 0 0
## 10214 0 0 0
## 10215 0 0 0
## 10216 0 0 0
## 10217 0 0 0
## 10218 0 0 0
## 10219 0 0 0
## 10220 0 0 0
## 10221 0 0 0
## 10222 0 0 0
## 10223 0 0 0
## 10224 0 0 0
## 10225 0 0 0
## 10226 0 0 0
## 10227 0 0 0
## 10228 0 0 0
## 10229 0 0 0
## 10230 0 0 0
## 10231 0 0 0
## 10232 0 0 0
## 10233 0 0 0
## 10234 0 0 0
## 10235 0 0 0
## 10236 0 0 0
## 10237 0 0 0
## 10238 0 0 0
## 10239 0 0 0
## 10240 0 0 0
## 10241 0 0 0
## 10242 0 0 0
## 10243 0 0 0
## 10244 0 0 0
## 10245 0 0 0
## 10246 0 0 0
## 10247 0 0 0
## 10248 0 0 0
## 10249 0 0 0
## 10250 0 0 0
## 10251 0 0 0
## 10252 0 0 0
## 10253 0 0 0
## 10254 0 0 0
## 10255 0 0 0
## 10256 0 0 0
## 10257 0 0 0
## 10258 0 0 0
## 10259 0 0 0
## 10260 0 0 0
## 10261 0 0 0
## 10262 0 0 0
## 10263 0 0 0
## 10264 0 0 0
## 10265 0 0 0
## 10266 0 0 0
## 10267 0 0 0
## 10268 0 0 0
## 10269 0 0 0
## 10270 0 0 0
## 10271 0 0 0
## 10272 0 0 0
## 10273 0 0 0
## 10274 0 0 0
## 10275 0 0 0
## 10276 0 0 0
## 10277 0 0 0
## 10278 0 0 0
## 10279 0 0 0
## 10280 0 0 0
## 10281 0 0 0
## 10282 0 0 0
## 10283 0 0 0
## 10284 0 0 0
## 10285 0 0 0
## 10286 0 0 0
## 10287 0 0 0
## 10288 0 0 0
## 10289 0 0 0
## 10290 0 0 0
## 10291 0 0 0
## 10292 0 0 0
## 10293 0 0 0
## 10294 0 0 0
## 10295 0 0 0
## 10296 0 0 0
## 10297 0 0 0
## 10298 0 0 0
## 10299 0 0 0
## 10300 0 0 0
## 10301 0 0 0
## 10302 0 0 0
## 10303 0 0 0
## 10304 0 0 0
## 10305 0 0 0
## 10306 0 0 0
## 10307 0 0 0
## 10308 0 0 0
## 10309 0 0 0
## 10310 0 0 0
## 10311 0 0 0
## 10312 0 0 0
## 10313 0 0 0
## 10314 0 0 0
## 10315 0 0 0
## 10316 0 0 0
## 10317 0 0 0
## 10318 0 0 0
## 10319 0 0 0
## 10320 0 0 0
## 10321 0 0 0
## 10322 0 0 0
## 10323 0 0 0
## 10324 0 0 0
## 10325 0 0 0
## 10326 0 0 0
## 10327 0 0 0
## 10328 0 0 0
## 10329 0 0 0
## 10330 0 0 0
## 10331 0 0 0
## 10332 0 0 0
## 10333 0 0 0
## 10334 0 0 0
## 10335 0 0 0
## 10336 0 0 0
## 10337 0 0 0
## 10338 0 0 0
## 10339 0 0 0
## 10340 0 0 0
## 10341 0 0 0
## 10342 0 0 0
## 10343 0 0 0
## 10344 0 0 0
## 10345 0 0 0
## 10346 0 0 0
## 10347 0 0 0
## 10348 0 0 0
## 10349 0 0 0
## 10350 0 0 0
## 10351 0 0 0
## 10352 0 0 0
## 10353 0 0 0
## 10354 0 0 0
## 10355 0 0 0
## 10356 0 0 0
## 10357 0 0 0
## 10358 0 0 0
## 10359 0 0 0
## 10360 0 0 0
## 10361 0 0 0
## 10362 0 0 0
## 10363 0 0 0
## 10364 0 0 0
## 10365 0 0 0
## 10366 0 0 0
## 10367 0 0 0
## 10368 0 0 0
## 10369 0 0 0
## 10370 0 0 0
## 10371 0 0 0
## 10372 0 0 0
## 10373 0 0 0
## 10374 0 0 0
## 10375 0 0 0
## 10376 0 0 0
## 10377 0 0 0
## 10378 0 0 0
## 10379 0 0 0
## 10380 0 0 0
## 10381 0 0 0
## 10382 0 0 0
## 10383 0 0 0
## 10384 0 0 0
## 10385 0 0 0
## 10386 0 0 0
## 10387 0 0 0
## 10388 0 0 0
## 10389 0 0 0
## 10390 0 0 0
## 10391 0 0 0
## 10392 0 0 0
## 10393 0 0 0
## 10394 0 0 0
## 10395 0 0 0
## 10396 0 0 0
## 10397 0 0 0
## 10398 0 0 0
## 10399 0 0 0
## 10400 0 0 0
## 10401 0 0 0
## 10402 0 0 0
## 10403 0 0 0
## 10404 0 0 0
## 10405 0 0 0
## 10406 0 0 0
## 10407 0 0 0
## 10408 0 0 0
## 10409 0 0 0
## 10410 0 0 0
## 10411 0 0 0
## 10412 0 0 0
## 10413 0 0 0
## 10414 0 0 0
## 10415 0 0 0
## 10416 0 0 0
## 10417 0 0 0
## 10418 0 0 0
## 10419 0 0 0
## 10420 0 0 0
## 10421 0 0 0
## 10422 0 0 0
## 10423 0 0 0
## 10424 0 0 0
## 10425 0 0 0
## 10426 0 0 0
## 10427 0 0 0
## 10428 0 0 0
## 10429 0 0 0
## 10430 0 0 0
## 10431 0 0 0
## 10432 0 0 0
## 10433 0 0 0
## 10434 0 0 0
## 10435 0 0 0
## 10436 0 0 0
## 10437 0 0 0
## 10438 0 0 0
## 10439 0 0 0
## 10440 0 0 0
## 10441 0 0 0
## 10442 0 0 0
## 10443 0 0 0
## 10444 0 0 0
## 10445 0 0 0
## 10446 0 0 0
## 10447 0 0 0
## 10448 0 0 0
## 10449 0 0 0
## 10450 0 0 0
## 10451 0 0 0
## 10452 0 0 0
## 10453 0 0 0
## 10454 0 0 0
## 10455 0 0 0
## 10456 0 0 0
## 10457 0 0 0
## 10458 0 0 0
## 10459 0 0 0
## 10460 0 0 0
## 10461 0 0 0
## 10462 0 0 0
## 10463 0 0 0
## 10464 0 0 0
## 10465 0 0 0
## 10466 0 0 0
## 10467 0 0 0
## 10468 0 0 0
## 10469 0 0 0
## 10470 0 0 0
## 10471 0 0 0
## 10472 0 0 0
## 10473 0 0 0
## 10474 0 0 0
## 10475 0 0 0
## 10476 0 0 0
## 10477 0 0 0
## 10478 0 0 0
## 10479 0 0 0
## 10480 0 0 0
## 10481 0 0 0
## 10482 0 0 0
## 10483 0 0 0
## 10484 0 0 0
## 10485 0 0 0
## 10486 0 0 0
## 10487 0 0 0
## 10488 0 0 0
## 10489 0 0 0
## 10490 0 0 0
## 10491 0 0 0
## 10492 0 0 0
## 10493 0 0 0
## 10494 0 0 0
## 10495 0 0 0
## 10496 0 0 0
## 10497 0 0 0
## 10498 0 0 0
## 10499 0 0 0
## 10500 0 0 0
## 10501 0 0 0
## 10502 0 0 0
## 10503 0 0 0
## 10504 0 0 0
## 10505 0 0 0
## 10506 0 0 0
## 10507 0 0 0
## 10508 0 0 0
## 10509 0 0 0
## 10510 0 0 0
## 10511 0 0 0
## 10512 0 0 0
## 10513 0 0 0
## 10514 0 0 0
## 10515 0 0 0
## 10516 0 0 0
## 10517 0 0 0
## 10518 0 0 0
## 10519 0 0 0
## 10520 0 0 0
## 10521 0 0 0
## 10522 0 0 0
## 10523 0 0 0
## 10524 0 0 0
## 10525 0 0 0
## 10526 0 0 0
## 10527 0 0 0
## 10528 0 0 0
## 10529 0 0 0
## 10530 0 0 0
## 10531 0 0 0
## 10532 0 0 0
## 10533 0 0 0
## 10534 0 0 0
## 10535 0 0 0
## 10536 0 0 0
## 10537 0 0 0
## 10538 0 0 0
## 10539 0 0 0
## 10540 0 0 0
## 10541 0 0 0
## 10542 0 0 0
## 10543 0 0 0
## 10544 0 0 0
## 10545 0 0 0
## 10546 0 0 0
## 10547 0 0 0
## 10548 0 0 0
## 10549 0 0 0
## 10550 0 0 0
## 10551 0 0 0
## 10552 0 0 0
## 10553 0 0 0
## 10554 0 0 0
## 10555 0 0 0
## 10556 0 0 0
## 10557 0 0 0
## 10558 0 0 0
## 10559 0 0 0
## 10560 0 0 0
## 10561 0 0 0
## 10562 0 0 0
## 10563 0 0 0
## 10564 0 0 0
## 10565 0 0 0
## 10566 0 0 0
## 10567 0 0 0
## 10568 0 0 0
## 10569 0 0 0
## 10570 0 0 0
## 10571 0 0 0
## 10572 0 0 0
## 10573 0 0 0
## 10574 0 0 0
## 10575 0 0 0
## 10576 0 0 0
## 10577 0 0 0
## 10578 0 0 0
## 10579 0 0 0
## 10580 0 0 0
## 10581 0 0 0
## 10582 0 0 0
## 10583 0 0 0
## 10584 0 0 0
## 10585 0 0 0
## 10586 0 0 0
## 10587 0 0 0
## 10588 0 0 0
## 10589 0 0 0
## 10590 0 0 0
## 10591 0 0 0
## 10592 0 0 0
## 10593 0 0 0
## 10594 0 0 0
## 10595 0 0 0
## 10596 0 0 0
## 10597 0 0 0
## 10598 0 0 0
## 10599 0 0 0
## 10600 0 0 0
## 10601 0 0 0
## 10602 0 0 0
## 10603 0 0 0
## 10604 0 0 0
## 10605 0 0 0
## 10606 0 0 0
## 10607 0 0 0
## 10608 0 0 0
## 10609 0 0 0
## 10610 0 0 0
## 10611 0 0 0
## 10612 0 0 0
## 10613 0 0 0
## 10614 0 0 0
## 10615 0 0 0
## 10616 0 0 0
## 10617 0 0 0
## 10618 0 0 0
## 10619 0 0 0
## 10620 0 0 0
## 10621 0 0 0
## 10622 0 0 0
## 10623 0 0 0
## 10624 0 0 0
## 10625 0 0 0
## 10626 0 0 0
## 10627 0 0 0
## 10628 0 0 0
## 10629 0 0 0
## 10630 0 0 0
## 10631 0 0 0
## 10632 0 0 0
## 10633 0 0 0
## 10634 0 0 0
## 10635 0 0 0
## 10636 0 0 0
## 10637 0 0 0
## 10638 0 0 0
## 10639 0 0 0
## 10640 0 0 0
## 10641 0 0 0
## 10642 0 0 0
## 10643 0 0 0
## 10644 0 0 0
## 10645 0 0 0
## 10646 0 0 0
## 10647 0 0 0
## 10648 0 0 0
## 10649 0 0 0
## 10650 0 0 0
## 10651 0 0 0
## 10652 0 0 0
## 10653 0 0 0
## 10654 0 0 0
## 10655 0 0 0
## 10656 0 0 0
## 10657 0 0 0
## 10658 0 0 0
## 10659 0 0 0
## 10660 0 0 0
## 10661 0 0 0
## 10662 0 0 0
## 10663 0 0 0
## 10664 0 0 0
## 10665 0 0 0
## 10666 0 0 0
## 10667 0 0 0
## 10668 0 0 0
## 10669 0 0 0
## 10670 0 0 0
## 10671 0 0 0
## 10672 0 0 0
## 10673 0 0 0
## 10674 0 0 0
## 10675 0 0 0
## 10676 0 0 0
## 10677 0 0 0
## 10678 0 0 0
## 10679 0 0 0
## 10680 0 0 0
## 10681 0 0 0
## 10682 0 0 0
## 10683 0 0 0
## 10684 0 0 0
## 10685 0 0 0
## 10686 0 0 0
## 10687 0 0 0
## 10688 0 0 0
## 10689 0 0 0
## 10690 0 0 0
## 10691 0 0 0
## 10692 0 0 0
## 10693 0 0 0
## 10694 0 0 0
## 10695 0 0 0
## 10696 0 0 0
## 10697 0 0 0
## 10698 0 0 0
## 10699 0 0 0
## 10700 0 0 0
## 10701 0 0 0
## 10702 0 0 0
## 10703 0 0 0
## 10704 0 0 0
## 10705 0 0 0
## 10706 0 0 0
## 10707 0 0 0
## 10708 0 0 0
## 10709 0 0 0
## 10710 0 0 0
## 10711 0 0 0
## 10712 0 0 0
## 10713 0 0 0
## 10714 0 0 0
## 10715 0 0 0
## 10716 0 0 0
## 10717 0 0 0
## 10718 0 0 0
## 10719 0 0 0
## 10720 0 0 0
## 10721 0 0 0
## 10722 0 0 0
## 10723 0 0 0
## 10724 0 0 0
## 10725 0 0 0
## 10726 0 0 0
## 10727 0 0 0
## 10728 0 0 0
## 10729 0 0 0
## 10730 0 0 0
## 10731 0 0 0
## 10732 0 0 0
## 10733 0 0 0
## 10734 0 0 0
## 10735 0 0 0
## 10736 0 0 0
## 10737 0 0 0
## 10738 0 0 0
## 10739 0 0 0
## 10740 0 0 0
## 10741 0 0 0
## 10742 0 0 0
## 10743 0 0 0
## 10744 0 0 0
## 10745 0 0 0
## 10746 0 0 0
## 10747 0 0 0
## 10748 0 0 0
## 10749 0 0 0
## 10750 0 0 0
## 10751 0 0 0
## 10752 0 0 0
## 10753 0 0 0
## 10754 0 0 0
## 10755 0 0 0
## 10756 0 0 0
## 10757 0 0 0
## 10758 0 0 0
## 10759 0 0 0
## 10760 0 0 0
## 10761 0 0 0
## 10762 0 0 0
## 10763 0 0 0
## 10764 0 0 0
## 10765 0 0 0
## 10766 0 0 0
## 10767 0 0 0
## 10768 0 0 0
## 10769 0 0 0
## 10770 0 0 0
## 10771 0 0 0
## 10772 0 0 0
## 10773 0 0 0
## 10774 0 0 0
## 10775 0 0 0
## 10776 0 0 0
## 10777 0 0 0
## 10778 0 0 0
## 10779 0 0 0
## 10780 0 0 0
## 10781 0 0 0
## 10782 0 0 0
## 10783 0 0 0
## 10784 0 0 0
## 10785 0 0 0
## 10786 0 0 0
## 10787 0 0 0
## 10788 0 0 0
## 10789 0 0 0
## 10790 0 0 0
## 10791 0 0 0
## 10792 0 0 0
## 10793 0 0 0
## 10794 0 0 0
## 10795 0 0 0
## 10796 0 0 0
## 10797 0 0 0
## 10798 0 0 0
## 10799 0 0 0
## 10800 0 0 0
## 10801 0 0 0
## 10802 0 0 0
## 10803 0 0 0
## 10804 0 0 0
## 10805 0 0 0
## 10806 0 0 0
## 10807 0 0 0
## 10808 0 0 0
## 10809 0 0 0
## 10810 0 0 0
## 10811 0 0 0
## 10812 0 0 0
## 10813 0 0 0
## 10814 0 0 0
## 10815 0 0 0
## 10816 0 0 0
## 10817 0 0 0
## 10818 0 0 0
## 10819 0 0 0
## 10820 0 0 0
## 10821 0 0 0
## 10822 0 0 0
## 10823 0 0 0
## 10824 0 0 0
## 10825 0 0 0
## 10826 0 0 0
## 10827 0 0 0
## 10828 0 0 0
## 10829 0 0 0
## 10830 0 0 0
## 10831 0 0 0
## 10832 0 0 0
## 10833 0 0 0
## 10834 0 0 0
## 10835 0 0 0
## 10836 0 0 0
## 10837 0 0 0
## 10838 0 0 0
## 10839 0 0 0
## 10840 0 0 0
## 10841 0 0 0
## 10842 0 0 0
## 10843 0 0 0
## 10844 0 0 0
## 10845 0 0 0
## 10846 0 0 0
## 10847 0 0 0
## 10848 0 0 0
## 10849 0 0 0
## 10850 0 0 0
## 10851 0 0 0
## 10852 0 0 0
## 10853 0 0 0
## 10854 0 0 0
## 10855 0 0 0
## 10856 0 0 0
## 10857 0 0 0
## 10858 0 0 0
## 10859 0 0 0
## 10860 0 0 0
## 10861 0 0 0
## 10862 0 0 0
## 10863 0 0 0
## 10864 0 0 0
## 10865 0 0 0
## 10866 0 0 0
## 10867 0 0 0
## 10868 0 0 0
## 10869 0 0 0
## 10870 0 0 0
## 10871 0 0 0
## 10872 0 0 0
## 10873 0 0 0
## 10874 0 0 0
## 10875 0 0 0
## 10876 0 0 0
## 10877 0 0 0
## 10878 0 0 0
## 10879 0 0 0
## 10880 0 0 0
## 10881 0 0 0
## 10882 0 0 0
## 10883 0 0 0
## 10884 0 0 0
## 10885 0 0 0
## 10886 0 0 0
## 10887 0 0 0
## 10888 0 0 0
## 10889 0 0 0
## 10890 0 0 0
## 10891 0 0 0
## 10892 0 0 0
## 10893 0 0 0
## 10894 0 0 0
## 10895 0 0 0
## 10896 0 0 0
## 10897 0 0 0
## 10898 0 0 0
## 10899 0 0 0
## 10900 0 0 0
## 10901 0 0 0
## 10902 0 0 0
## 10903 0 0 0
## 10904 0 0 0
## 10905 0 0 0
## 10906 0 0 0
## 10907 0 0 0
## 10908 0 0 0
## 10909 0 0 0
## 10910 0 0 0
## 10911 0 0 0
## 10912 0 0 0
## 10913 0 0 0
## 10914 0 0 0
## 10915 0 0 0
## 10916 0 0 0
## 10917 0 0 0
## 10918 0 0 0
## 10919 0 0 0
## 10920 0 0 0
## 10921 0 0 0
## 10922 0 0 0
## 10923 0 0 0
## 10924 0 0 0
## 10925 0 0 0
## 10926 0 0 0
## 10927 0 0 0
## 10928 0 0 0
## 10929 0 0 0
## 10930 0 0 0
## 10931 0 0 0
## 10932 0 0 0
## 10933 0 0 0
## 10934 0 0 0
## 10935 0 0 0
## 10936 0 0 0
## 10937 0 0 0
## 10938 0 0 0
## 10939 0 0 0
## 10940 0 0 0
## 10941 0 0 0
## 10942 0 0 0
## 10943 0 0 0
## 10944 0 0 0
## 10945 0 0 0
## 10946 0 0 0
## 10947 0 0 0
## 10948 0 0 0
## 10949 0 0 0
## 10950 0 0 0
## 10951 0 0 0
## 10952 0 0 0
## 10953 0 0 0
## 10954 0 0 0
## 10955 0 0 0
## 10956 0 0 0
## 10957 0 0 0
## 10958 0 0 0
## 10959 0 0 0
## 10960 0 0 0
## 10961 0 0 0
## 10962 0 0 0
## 10963 0 0 0
## 10964 0 0 0
## 10965 0 0 0
## 10966 0 0 0
## 10967 0 0 0
## 10968 0 0 0
## 10969 0 0 0
## 10970 0 0 0
## 10971 0 0 0
## 10972 0 0 0
## 10973 0 0 0
## 10974 0 0 0
## 10975 0 0 0
## 10976 0 0 0
## 10977 0 0 0
## 10978 0 0 0
## 10979 0 0 0
## 10980 0 0 0
## 10981 0 0 0
## 10982 0 0 0
## 10983 0 0 0
## 10984 0 0 0
## 10985 0 0 0
## 10986 0 0 0
## 10987 0 0 0
## 10988 0 0 0
## 10989 0 0 0
## 10990 0 0 0
## 10991 0 0 0
## 10992 0 0 0
## 10993 0 0 0
## 10994 0 0 0
## 10995 0 0 0
## 10996 0 0 0
## 10997 0 0 0
## 10998 0 0 0
## 10999 0 0 0
## 11000 0 0 0
## 11001 0 0 0
## 11002 0 0 0
## 11003 0 0 0
## 11004 0 0 0
## 11005 0 0 0
## 11006 0 0 0
## 11007 0 0 0
## 11008 0 0 0
## 11009 0 0 0
## 11010 0 0 0
## 11011 0 0 0
## 11012 0 0 0
## 11013 0 0 0
## 11014 0 0 0
## 11015 0 0 0
## 11016 0 0 0
## 11017 0 0 0
## 11018 0 0 0
## 11019 0 0 0
## 11020 0 0 0
## 11021 0 0 0
## 11022 0 0 0
## 11023 0 0 0
## 11024 0 0 0
## 11025 0 0 0
## 11026 0 0 0
## 11027 0 0 0
## 11028 0 0 0
## 11029 0 0 0
## 11030 0 0 0
## 11031 0 0 0
## 11032 0 0 0
## 11033 0 0 0
## 11034 0 0 0
## 11035 0 0 0
## 11036 0 0 0
## 11037 0 0 0
## 11038 0 0 0
## 11039 0 0 0
## 11040 0 0 0
## 11041 0 0 0
## 11042 0 0 0
## 11043 0 0 0
## 11044 0 0 0
## 11045 0 0 0
## 11046 0 0 0
## 11047 0 0 0
## 11048 0 0 0
## 11049 0 0 0
## 11050 0 0 0
## 11051 0 0 0
## 11052 0 0 0
## 11053 0 0 0
## 11054 0 0 0
## 11055 0 0 0
## 11056 0 0 0
## 11057 0 0 0
## 11058 0 0 0
## 11059 0 0 0
## 11060 0 0 0
## 11061 0 0 0
## 11062 0 0 0
## 11063 0 0 0
## 11064 0 0 0
## 11065 0 0 0
## 11066 0 0 0
## 11067 0 0 0
## 11068 0 0 0
## 11069 0 0 0
## 11070 0 0 0
## 11071 0 0 0
## 11072 0 0 0
## 11073 0 0 0
## 11074 0 0 0
## 11075 0 0 0
## 11076 0 0 0
## 11077 0 0 0
## 11078 0 0 0
## 11079 0 0 0
## 11080 0 0 0
## 11081 0 0 0
## 11082 0 0 0
## 11083 0 0 0
## 11084 0 0 0
## 11085 0 0 0
## 11086 0 0 0
## 11087 0 0 0
## 11088 0 0 0
## 11089 0 0 0
## 11090 0 0 0
## 11091 0 0 0
## 11092 0 0 0
## 11093 0 0 0
## 11094 0 0 0
## 11095 0 0 0
## 11096 0 0 0
## 11097 0 0 0
## 11098 0 0 0
## 11099 0 0 0
## 11100 0 0 0
## 11101 0 0 0
## 11102 0 0 0
## 11103 0 0 0
## 11104 0 0 0
## 11105 0 0 0
## 11106 0 0 0
## 11107 0 0 0
## 11108 0 0 0
## 11109 0 0 0
## 11110 0 0 0
## 11111 0 0 0
## 11112 0 0 0
## 11113 0 0 0
## 11114 0 0 0
## 11115 0 0 0
## 11116 0 0 0
## 11117 0 0 0
## 11118 0 0 0
## 11119 0 0 0
## 11120 0 0 0
## 11121 0 0 0
## 11122 0 0 0
## 11123 0 0 0
## 11124 0 0 0
## 11125 0 0 0
## 11126 0 0 0
## 11127 0 0 0
## 11128 0 0 0
## 11129 0 0 0
## 11130 0 0 0
## 11131 0 0 0
## 11132 0 0 0
## 11133 0 0 0
## 11134 0 0 0
## 11135 0 0 0
## 11136 0 0 0
## 11137 0 0 0
## 11138 0 0 0
## 11139 0 0 0
## 11140 0 0 0
## 11141 0 0 0
## 11142 0 0 0
## 11143 0 0 0
## 11144 0 0 0
## 11145 0 0 0
## 11146 0 0 0
## 11147 0 0 0
## 11148 0 0 0
## 11149 0 0 0
## 11150 0 0 0
## 11151 0 0 0
## 11152 0 0 0
## 11153 0 0 0
## 11154 0 0 0
## 11155 0 0 0
## 11156 0 0 0
## 11157 0 0 0
## 11158 0 0 0
## 11159 0 0 0
## 11160 0 0 0
## 11161 0 0 0
## 11162 0 0 0
## 11163 0 0 0
## 11164 0 0 0
## 11165 0 0 0
## 11166 0 0 0
## 11167 0 0 0
## 11168 0 0 0
## 11169 0 0 0
## 11170 0 0 0
## 11171 0 0 0
## 11172 0 0 0
## 11173 0 0 0
## 11174 0 0 0
## 11175 0 0 0
## 11176 0 0 0
## 11177 0 0 0
## 11178 0 0 0
## 11179 0 0 0
## 11180 0 0 0
## 11181 0 0 0
## 11182 0 0 0
## 11183 0 0 0
## 11184 0 0 0
## 11185 0 0 0
## 11186 0 0 0
## 11187 0 0 0
## 11188 0 0 0
## 11189 0 0 0
## 11190 0 0 0
## 11191 0 0 0
## 11192 0 0 0
## 11193 0 0 0
## 11194 0 0 0
## 11195 0 0 0
## 11196 0 0 0
## 11197 0 0 0
## 11198 0 0 0
## 11199 0 0 0
## 11200 0 0 0
## 11201 0 0 0
## 11202 0 0 0
## 11203 0 0 0
## 11204 0 0 0
## 11205 0 0 0
## 11206 0 0 0
## 11207 0 0 0
## 11208 0 0 0
## 11209 0 0 0
## 11210 0 0 0
## 11211 0 0 0
## 11212 0 0 0
## 11213 0 0 0
## 11214 0 0 0
## 11215 0 0 0
## 11216 0 0 0
## 11217 0 0 0
## 11218 0 0 0
## 11219 0 0 0
## 11220 0 0 0
## 11221 0 0 0
## 11222 0 0 0
## 11223 0 0 0
## 11224 0 0 0
## 11225 0 0 0
## 11226 0 0 0
## 11227 0 0 0
## 11228 0 0 0
## 11229 0 0 0
## 11230 0 0 0
## 11231 0 0 0
## 11232 0 0 0
## 11233 0 0 0
## 11234 0 0 0
## 11235 0 0 0
## 11236 0 0 0
## 11237 0 0 0
## 11238 0 0 0
## 11239 0 0 0
## 11240 0 0 0
## 11241 0 0 0
## 11242 0 0 0
## 11243 0 0 0
## 11244 0 0 0
## 11245 0 0 0
## 11246 0 0 0
## 11247 0 0 0
## 11248 0 0 0
## 11249 0 0 0
## 11250 0 0 0
## 11251 0 0 0
## 11252 0 0 0
## 11253 0 0 0
## 11254 0 0 0
## 11255 0 0 0
## 11256 0 0 0
## 11257 0 0 0
## 11258 0 0 0
## 11259 0 0 0
## 11260 0 0 0
## 11261 0 0 0
## 11262 0 0 0
## 11263 0 0 0
## 11264 0 0 0
## 11265 0 0 0
## 11266 0 0 0
## 11267 0 0 0
## 11268 0 0 0
## 11269 0 0 0
## 11270 0 0 0
## 11271 0 0 0
## 11272 0 0 0
## 11273 0 0 0
## 11274 0 0 0
## 11275 0 0 0
## 11276 0 0 0
## 11277 0 0 0
## 11278 0 0 0
## 11279 0 0 0
## 11280 0 0 0
## 11281 0 0 0
## 11282 0 0 0
## 11283 0 0 0
## 11284 0 0 0
## 11285 0 0 0
## 11286 0 0 0
## 11287 0 0 0
## 11288 0 0 0
## 11289 0 0 0
## 11290 0 0 0
## 11291 0 0 0
## 11292 0 0 0
## 11293 0 0 0
## 11294 0 0 0
## 11295 0 0 0
## 11296 0 0 0
## 11297 0 0 0
## 11298 0 0 0
## 11299 0 0 0
## 11300 0 0 0
## 11301 0 0 0
## 11302 0 0 0
## 11303 0 0 0
## 11304 0 0 0
## 11305 0 0 0
## 11306 0 0 0
## 11307 0 0 0
## 11308 0 0 0
## 11309 0 0 0
## 11310 0 0 0
## 11311 0 0 0
## 11312 0 0 0
## 11313 0 0 0
## 11314 0 0 0
## 11315 0 0 0
## 11316 0 0 0
## 11317 0 0 0
## 11318 0 0 0
## 11319 0 0 0
## 11320 0 0 0
## 11321 0 0 0
## 11322 0 0 0
## 11323 0 0 0
## 11324 0 0 0
## 11325 0 0 0
## 11326 0 0 0
## 11327 0 0 0
## 11328 0 0 0
## 11329 0 0 0
## 11330 0 0 0
## 11331 0 0 0
## 11332 0 0 0
## 11333 0 0 0
## 11334 0 0 0
## 11335 0 0 0
## 11336 0 0 0
## 11337 0 0 0
## 11338 0 0 0
## 11339 0 0 0
## 11340 0 0 0
## 11341 0 0 0
## 11342 0 0 0
## 11343 0 0 0
## 11344 0 0 0
## 11345 0 0 0
## 11346 0 0 0
## 11347 0 0 0
## 11348 0 0 0
## 11349 0 0 0
## 11350 0 0 0
## 11351 0 0 0
## 11352 0 0 0
## 11353 0 0 0
## 11354 0 0 0
## 11355 0 0 0
## 11356 0 0 0
## 11357 0 0 0
## 11358 0 0 0
## 11359 0 0 0
## 11360 0 0 0
## 11361 0 0 0
## 11362 0 0 0
## 11363 0 0 0
## 11364 0 0 0
## 11365 0 0 0
## 11366 0 0 0
## 11367 0 0 0
## 11368 0 0 0
## 11369 0 0 0
## 11370 0 0 0
## 11371 0 0 0
## 11372 0 0 0
## 11373 0 0 0
## 11374 0 0 0
## 11375 0 0 0
## 11376 0 0 0
## 11377 0 0 0
## 11378 0 0 0
## 11379 0 0 0
## 11380 0 0 0
## 11381 0 0 0
## 11382 0 0 0
## 11383 0 0 0
## 11384 0 0 0
## 11385 0 0 0
## 11386 0 0 0
## 11387 0 0 0
## 11388 0 0 0
## 11389 0 0 0
## 11390 0 0 0
## 11391 0 0 0
## 11392 0 0 0
## 11393 0 0 0
## 11394 0 0 0
## 11395 0 0 0
## 11396 0 0 0
## 11397 0 0 0
## 11398 0 0 0
## 11399 0 0 0
## 11400 0 0 0
## 11401 0 0 0
## 11402 0 0 0
## 11403 0 0 0
## 11404 0 0 0
## 11405 0 0 0
## 11406 0 0 0
## 11407 0 0 0
## 11408 0 0 0
## 11409 0 0 0
## 11410 0 0 0
## 11411 0 0 0
## 11412 0 0 0
## 11413 0 0 0
## 11414 0 0 0
## 11415 0 0 0
## 11416 0 0 0
## 11417 0 0 0
## 11418 0 0 0
## 11419 0 0 0
## 11420 0 0 0
## 11421 0 0 0
## 11422 0 0 0
## 11423 0 0 0
## 11424 0 0 0
## 11425 0 0 0
## 11426 0 0 0
## 11427 0 0 0
## 11428 0 0 0
## 11429 0 0 0
## 11430 0 0 0
## 11431 0 0 0
## 11432 0 0 0
## 11433 0 0 0
## 11434 0 0 0
## 11435 0 0 0
## 11436 0 0 0
## 11437 0 0 0
## 11438 0 0 0
## 11439 0 0 0
## 11440 0 0 0
## 11441 0 0 0
## 11442 0 0 0
## 11443 0 0 0
## 11444 0 0 0
## 11445 0 0 0
## 11446 0 0 0
## 11447 0 0 0
## 11448 0 0 0
## 11449 0 0 0
## 11450 0 0 0
## 11451 0 0 0
## 11452 0 0 0
## 11453 0 0 0
## 11454 0 0 0
## 11455 0 0 0
## 11456 0 0 0
## 11457 0 0 0
## 11458 0 0 0
## 11459 0 0 0
## 11460 0 0 0
## 11461 0 0 0
## 11462 0 0 0
## 11463 0 0 0
## 11464 0 0 0
## 11465 0 0 0
## 11466 0 0 0
## 11467 0 0 0
## 11468 0 0 0
## 11469 0 0 0
## 11470 0 0 0
## 11471 0 0 0
## 11472 0 0 0
## 11473 0 0 0
## 11474 0 0 0
## 11475 0 0 0
## 11476 0 0 0
## 11477 0 0 0
## 11478 0 0 0
## 11479 0 0 0
## 11480 0 0 0
## 11481 0 0 0
## 11482 0 0 0
## 11483 0 0 0
## 11484 0 0 0
## 11485 0 0 0
## 11486 0 0 0
## 11487 0 0 0
## 11488 0 0 0
## 11489 0 0 0
## 11490 0 0 0
## 11491 0 0 0
## 11492 0 0 0
## 11493 0 0 0
## 11494 0 0 0
## 11495 0 0 0
## 11496 0 0 0
## 11497 0 0 0
## 11498 0 0 0
## 11499 0 0 0
## 11500 0 0 0
## 11501 0 0 0
## 11502 0 0 0
## 11503 0 0 0
## 11504 0 0 0
## 11505 0 0 0
## 11506 0 0 0
## 11507 0 0 0
## 11508 0 0 0
## 11509 0 0 0
## 11510 0 0 0
## 11511 0 0 0
## 11512 0 0 0
## 11513 0 0 0
## 11514 0 0 0
## 11515 0 0 0
## 11516 0 0 0
## 11517 0 0 0
## 11518 0 0 0
## 11519 0 0 0
## 11520 0 0 0
## 11521 0 0 0
## 11522 0 0 0
## 11523 0 0 0
## 11524 0 0 0
## 11525 0 0 0
## 11526 0 0 0
## 11527 0 0 0
## 11528 0 0 0
## 11529 0 0 0
## 11530 0 0 0
## 11531 0 0 0
## 11532 0 0 0
## 11533 0 0 0
## 11534 0 0 0
## 11535 0 0 0
## 11536 0 0 0
## 11537 0 0 0
## 11538 0 0 0
## 11539 0 0 0
## 11540 0 0 0
## 11541 0 0 0
## 11542 0 0 0
## 11543 0 0 0
## 11544 0 0 0
## 11545 0 0 0
## 11546 0 0 0
## 11547 0 0 0
## 11548 0 0 0
## 11549 0 0 0
## 11550 0 0 0
## 11551 0 0 0
## 11552 0 0 0
## 11553 0 0 0
## 11554 0 0 0
## 11555 0 0 0
## 11556 0 0 0
## 11557 0 0 0
## 11558 0 0 0
## 11559 0 0 0
## 11560 0 0 0
## 11561 0 0 0
## 11562 0 0 0
## 11563 0 0 0
## 11564 0 0 0
## 11565 0 0 0
## 11566 0 0 0
## 11567 0 0 0
## 11568 0 0 0
## 11569 0 0 0
## 11570 0 0 0
## 11571 0 0 0
## 11572 0 0 0
## 11573 0 0 0
## 11574 0 0 0
## 11575 0 0 0
## 11576 0 0 0
## 11577 0 0 0
## 11578 0 0 0
## 11579 0 0 0
## 11580 0 0 0
## 11581 0 0 0
## 11582 0 0 0
## 11583 0 0 0
## 11584 0 0 0
## 11585 0 0 0
## 11586 0 0 0
## 11587 0 0 0
## 11588 0 0 0
## 11589 0 0 0
## 11590 0 0 0
## 11591 0 0 0
## 11592 0 0 0
## 11593 0 0 0
## 11594 0 0 0
## 11595 0 0 0
## 11596 0 0 0
## 11597 0 0 0
## 11598 0 0 0
## 11599 0 0 0
## 11600 0 0 0
## 11601 0 0 0
## 11602 0 0 0
## 11603 0 0 0
## 11604 0 0 0
## 11605 0 0 0
## 11606 0 0 0
## 11607 0 0 0
## 11608 0 0 0
## 11609 0 0 0
## 11610 0 0 0
## 11611 0 0 0
## 11612 0 0 0
## 11613 0 0 0
## 11614 0 0 0
## 11615 0 0 0
## 11616 0 0 0
## 11617 0 0 0
## 11618 0 0 0
## 11619 0 0 0
## 11620 0 0 0
## 11621 0 0 0
## 11622 0 0 0
## 11623 0 0 0
## 11624 0 0 0
## 11625 0 0 0
## 11626 0 0 0
## 11627 0 0 0
## 11628 0 0 0
## 11629 0 0 0
## 11630 0 0 0
## 11631 0 0 0
## 11632 0 0 0
## 11633 0 0 0
## 11634 0 0 0
## 11635 0 0 0
## 11636 0 0 0
## 11637 0 0 0
## 11638 0 0 0
## 11639 0 0 0
## 11640 0 0 0
## 11641 0 0 0
## 11642 0 0 0
## 11643 0 0 0
## 11644 0 0 0
## 11645 0 0 0
## 11646 0 0 0
## 11647 0 0 0
## 11648 0 0 0
## 11649 0 0 0
## 11650 0 0 0
## 11651 0 0 0
## 11652 0 0 0
## 11653 0 0 0
## 11654 0 0 0
## 11655 0 0 0
## 11656 0 0 0
## 11657 0 0 0
## 11658 0 0 0
## 11659 0 0 0
## 11660 0 0 0
## 11661 0 0 0
## 11662 0 0 0
## 11663 0 0 0
## 11664 0 0 0
## 11665 0 0 0
## 11666 0 0 0
## 11667 0 0 0
## 11668 0 0 0
## 11669 0 0 0
## 11670 0 0 0
## 11671 0 0 0
## 11672 0 0 0
## 11673 0 0 0
## 11674 0 0 0
## 11675 0 0 0
## 11676 0 0 0
## 11677 0 0 0
## 11678 0 0 0
## 11679 0 0 0
## 11680 0 0 0
## 11681 0 0 0
## 11682 0 0 0
## 11683 0 0 0
## 11684 0 0 0
## 11685 0 0 0
## 11686 0 0 0
## 11687 0 0 0
## 11688 0 0 0
## 11689 0 0 0
## 11690 0 0 0
## 11691 0 0 0
## 11692 0 0 0
## 11693 0 0 0
## 11694 0 0 0
## 11695 0 0 0
## 11696 0 0 0
## 11697 0 0 0
## 11698 0 0 0
## 11699 0 0 0
## 11700 0 0 0
## 11701 0 0 0
## 11702 0 0 0
## 11703 0 0 0
## 11704 0 0 0
## 11705 0 0 0
## 11706 0 0 0
## 11707 0 0 0
## 11708 0 0 0
## 11709 0 0 0
## 11710 0 0 0
## 11711 0 0 0
## 11712 0 0 0
## 11713 0 0 0
## 11714 0 0 0
## 11715 0 0 0
## 11716 0 0 0
## 11717 0 0 0
## 11718 0 0 0
## 11719 0 0 0
## 11720 0 0 0
## 11721 0 0 0
## 11722 0 0 0
## 11723 0 0 0
## 11724 0 0 0
## 11725 0 0 0
## 11726 0 0 0
## 11727 0 0 0
## 11728 0 0 0
## 11729 0 0 0
## 11730 0 0 0
## 11731 0 0 0
## 11732 0 0 0
## 11733 0 0 0
## 11734 0 0 0
## 11735 0 0 0
## 11736 0 0 0
## 11737 0 0 0
## 11738 0 0 0
## 11739 0 0 0
## 11740 0 0 0
## 11741 0 0 0
## 11742 0 0 0
## 11743 0 0 0
## 11744 0 0 0
## 11745 0 0 0
## 11746 0 0 0
## 11747 0 0 0
## 11748 0 0 0
## 11749 0 0 0
## 11750 0 0 0
## 11751 0 0 0
## 11752 0 0 0
## 11753 0 0 0
## 11754 0 0 0
## 11755 0 0 0
## 11756 0 0 0
## 11757 0 0 0
## 11758 0 0 0
## 11759 0 0 0
## 11760 0 0 0
## 11761 0 0 0
## 11762 0 0 0
## 11763 0 0 0
## 11764 0 0 0
## 11765 0 0 0
## 11766 0 0 0
## 11767 0 0 0
## 11768 0 0 0
## 11769 0 0 0
## 11770 0 0 0
## 11771 0 0 0
## 11772 0 0 0
## 11773 0 0 0
## 11774 0 0 0
## 11775 0 0 0
## 11776 0 0 0
## 11777 0 0 0
## 11778 0 0 0
## 11779 0 0 0
## 11780 0 0 0
## 11781 0 0 0
## 11782 0 0 0
## 11783 0 0 0
## 11784 0 0 0
## 11785 0 0 0
## 11786 0 0 0
## 11787 0 0 0
## 11788 0 0 0
## 11789 0 0 0
## 11790 0 0 0
## 11791 0 0 0
## 11792 0 0 0
## 11793 0 0 0
## 11794 0 0 0
## 11795 0 0 0
## 11796 0 0 0
## 11797 0 0 0
## 11798 0 0 0
## 11799 0 0 0
## 11800 0 0 0
## 11801 0 0 0
## 11802 0 0 0
## 11803 0 0 0
## 11804 0 0 0
## 11805 0 0 0
## 11806 0 0 0
## 11807 0 0 0
## 11808 0 0 0
## 11809 0 0 0
## 11810 0 0 0
## 11811 0 0 0
## 11812 0 0 0
## 11813 0 0 0
## 11814 0 0 0
## 11815 0 0 0
## 11816 0 0 0
## 11817 0 0 0
## 11818 0 0 0
## 11819 0 0 0
## 11820 0 0 0
## 11821 0 0 0
## 11822 0 0 0
## 11823 0 0 0
## 11824 0 0 0
## 11825 0 0 0
## 11826 0 0 0
## 11827 0 0 0
## 11828 0 0 0
## 11829 0 0 0
## 11830 0 0 0
## 11831 0 0 0
## 11832 0 0 0
## 11833 0 0 0
## 11834 0 0 0
## 11835 0 0 0
## 11836 0 0 0
## 11837 0 0 0
## 11838 0 0 0
## 11839 0 0 0
## 11840 0 0 0
## 11841 0 0 0
## 11842 0 0 0
## 11843 0 0 0
## 11844 0 0 0
## 11845 0 0 0
## 11846 0 0 0
## 11847 0 0 0
## 11848 0 0 0
## 11849 0 0 0
## 11850 0 0 0
## 11851 0 0 0
## 11852 0 0 0
## 11853 0 0 0
## 11854 0 0 0
## 11855 0 0 0
## 11856 0 0 0
## 11857 0 0 0
## 11858 0 0 0
## 11859 0 0 0
## 11860 0 0 0
## 11861 0 0 0
## 11862 0 0 0
## 11863 0 0 0
## 11864 0 0 0
## 11865 0 0 0
## 11866 0 0 0
## 11867 0 0 0
## 11868 0 0 0
## 11869 0 0 0
## 11870 0 0 0
## 11871 0 0 0
## 11872 0 0 0
## 11873 0 0 0
## 11874 0 0 0
## 11875 0 0 0
## 11876 0 0 0
## 11877 0 0 0
## 11878 0 0 0
## 11879 0 0 0
## 11880 0 0 0
## 11881 0 0 0
## 11882 0 0 0
## 11883 0 0 0
## 11884 0 0 0
## 11885 0 0 0
## 11886 0 0 0
## 11887 0 0 0
## 11888 0 0 0
## 11889 0 0 0
## 11890 0 0 0
## 11891 0 0 0
## 11892 0 0 0
## 11893 0 0 0
## 11894 0 0 0
## 11895 0 0 0
## 11896 0 0 0
## 11897 0 0 0
## 11898 0 0 0
## 11899 0 0 0
## 11900 0 0 0
## 11901 0 0 0
## 11902 0 0 0
## 11903 0 0 0
## 11904 0 0 0
## 11905 0 0 0
## 11906 0 0 0
## 11907 0 0 0
## 11908 0 0 0
## 11909 0 0 0
## 11910 0 0 0
## 11911 0 0 0
## 11912 0 0 0
## 11913 0 0 0
## 11914 0 0 0
## 11915 0 0 0
## 11916 0 0 0
## 11917 0 0 0
## 11918 0 0 0
## 11919 0 0 0
## 11920 0 0 0
## 11921 0 0 0
## 11922 0 0 0
## 11923 0 0 0
## 11924 0 0 0
## 11925 0 0 0
## 11926 0 0 0
## 11927 0 0 0
## 11928 0 0 0
## 11929 0 0 0
## 11930 0 0 0
## 11931 0 0 0
## 11932 0 0 0
## 11933 0 0 0
## 11934 0 0 0
## 11935 0 0 0
## 11936 0 0 0
## 11937 0 0 0
## 11938 0 0 0
## 11939 0 0 0
## 11940 0 0 0
## 11941 0 0 0
## 11942 0 0 0
## 11943 0 0 0
## 11944 0 0 0
## 11945 0 0 0
## 11946 0 0 0
## 11947 0 0 0
## 11948 0 0 0
## 11949 0 0 0
## 11950 0 0 0
## 11951 0 0 0
## 11952 0 0 0
## 11953 0 0 0
## 11954 0 0 0
## 11955 0 0 0
## 11956 0 0 0
## 11957 0 0 0
## 11958 0 0 0
## 11959 0 0 0
## 11960 0 0 0
## 11961 0 0 0
## 11962 0 0 0
## 11963 0 0 0
## 11964 0 0 0
## 11965 0 0 0
## 11966 0 0 0
## 11967 0 0 0
## 11968 0 0 0
## 11969 0 0 0
## 11970 0 0 0
## 11971 0 0 0
## 11972 0 0 0
## 11973 0 0 0
## 11974 0 0 0
## 11975 0 0 0
## 11976 0 0 0
## 11977 0 0 0
## 11978 0 0 0
## 11979 0 0 0
## 11980 0 0 0
## 11981 0 0 0
## 11982 0 0 0
## 11983 0 0 0
## 11984 0 0 0
## 11985 0 0 0
## 11986 0 0 0
## 11987 0 0 0
## 11988 0 0 0
## 11989 0 0 0
## 11990 0 0 0
## 11991 0 0 0
## 11992 0 0 0
## 11993 0 0 0
## 11994 0 0 0
## 11995 0 0 0
## 11996 0 0 0
## 11997 0 0 0
## 11998 0 0 0
## 11999 0 0 0
## 12000 0 0 0
## 12001 0 0 0
## 12002 0 0 0
## 12003 0 0 0
## 12004 0 0 0
## 12005 0 0 0
## 12006 0 0 0
## 12007 0 0 0
## 12008 0 0 0
## 12009 0 0 0
## 12010 0 0 0
## 12011 0 0 0
## 12012 0 0 0
## 12013 0 0 0
## 12014 0 0 0
## 12015 0 0 0
## 12016 0 0 0
## 12017 0 0 0
## 12018 0 0 0
## 12019 0 0 0
## 12020 0 0 0
## 12021 0 0 0
## 12022 0 0 0
## 12023 0 0 0
## 12024 0 0 0
## 12025 0 0 0
## 12026 0 0 0
## 12027 0 0 0
## 12028 0 0 0
## 12029 0 0 0
## 12030 0 0 0
## 12031 0 0 0
## 12032 0 0 0
## 12033 0 0 0
## 12034 0 0 0
## 12035 0 0 0
## 12036 0 0 0
## 12037 0 0 0
## 12038 0 0 0
## 12039 0 0 0
## 12040 0 0 0
## 12041 0 0 0
## 12042 0 0 0
## 12043 0 0 0
## 12044 0 0 0
## 12045 0 0 0
## 12046 0 0 0
## 12047 0 0 0
## 12048 0 0 0
## 12049 0 0 0
## 12050 0 0 0
## 12051 0 0 0
## 12052 0 0 0
## 12053 0 0 0
## 12054 0 0 0
## 12055 0 0 0
## 12056 0 0 0
## 12057 0 0 0
## 12058 0 0 0
## 12059 0 0 0
## 12060 0 0 0
## 12061 0 0 0
## 12062 0 0 0
## 12063 0 0 0
## 12064 0 0 0
## 12065 0 0 0
## 12066 0 0 0
## 12067 0 0 0
## 12068 0 0 0
## 12069 0 0 0
## 12070 0 0 0
## 12071 0 0 0
## 12072 0 0 0
## 12073 0 0 0
## 12074 0 0 0
## 12075 0 0 0
## 12076 0 0 0
## 12077 0 0 0
## 12078 0 0 0
## 12079 0 0 0
## 12080 0 0 0
## 12081 0 0 0
## 12082 0 0 0
## 12083 0 0 0
## 12084 0 0 0
## 12085 0 0 0
## 12086 0 0 0
## 12087 0 0 0
## 12088 0 0 0
## 12089 0 0 0
## 12090 0 0 0
## 12091 0 0 0
## 12092 0 0 0
## 12093 0 0 0
## 12094 0 0 0
## 12095 0 0 0
## 12096 0 0 0
## 12097 0 0 0
## 12098 0 0 0
## 12099 0 0 0
## 12100 0 0 0
## 12101 0 0 0
## 12102 0 0 0
## 12103 0 0 0
## 12104 0 0 0
## 12105 0 0 0
## 12106 0 0 0
## 12107 0 0 0
## 12108 0 0 0
## 12109 0 0 0
## 12110 0 0 0
## 12111 0 0 0
## 12112 0 0 0
## 12113 0 0 0
## 12114 0 0 0
## 12115 0 0 0
## 12116 0 0 0
## 12117 0 0 0
## 12118 0 0 0
## 12119 0 0 0
## 12120 0 0 0
## 12121 0 0 0
## 12122 0 0 0
## 12123 0 0 0
## 12124 0 0 0
## 12125 0 0 0
## 12126 0 0 0
## 12127 0 0 0
## 12128 0 0 0
## 12129 0 0 0
## 12130 0 0 0
## 12131 0 0 0
## 12132 0 0 0
## 12133 0 0 0
## 12134 0 0 0
## 12135 0 0 0
## 12136 0 0 0
## 12137 0 0 0
## 12138 0 0 0
## 12139 0 0 0
## 12140 0 0 0
## 12141 0 0 0
## 12142 0 0 0
## 12143 0 0 0
## 12144 0 0 0
## 12145 0 0 0
## 12146 0 0 0
## 12147 0 0 0
## 12148 0 0 0
## 12149 0 0 0
## 12150 0 0 0
## 12151 0 0 0
## 12152 0 0 0
## 12153 0 0 0
## 12154 0 0 0
## 12155 0 0 0
## 12156 0 0 0
## 12157 0 0 0
## 12158 0 0 0
## 12159 0 0 0
## 12160 0 0 0
## 12161 0 0 0
## 12162 0 0 0
## 12163 0 0 0
## 12164 0 0 0
## 12165 0 0 0
## 12166 0 0 0
## 12167 0 0 0
## 12168 0 0 0
## 12169 0 0 0
## 12170 0 0 0
## 12171 0 0 0
## 12172 0 0 0
## 12173 0 0 0
## 12174 0 0 0
## 12175 0 0 0
## 12176 0 0 0
## 12177 0 0 0
## 12178 0 0 0
## 12179 0 0 0
## 12180 0 0 0
## 12181 0 0 0
## 12182 0 0 0
## 12183 0 0 0
## 12184 0 0 0
## 12185 0 0 0
## 12186 0 0 0
## 12187 0 0 0
## 12188 0 0 0
## 12189 0 0 0
## 12190 0 0 0
## 12191 0 0 0
## 12192 0 0 0
## 12193 0 0 0
## 12194 0 0 0
## 12195 0 0 0
## 12196 0 0 0
## 12197 0 0 0
## 12198 0 0 0
## 12199 0 0 0
## 12200 0 0 0
## 12201 0 0 0
## 12202 0 0 0
## 12203 0 0 0
## 12204 0 0 0
## 12205 0 0 0
## 12206 0 0 0
## 12207 0 0 0
## 12208 0 0 0
## 12209 0 0 0
## 12210 0 0 0
## 12211 0 0 0
## 12212 0 0 0
## 12213 0 0 0
## 12214 0 0 0
## 12215 0 0 0
## 12216 0 0 0
## 12217 0 0 0
## 12218 0 0 0
## 12219 0 0 0
## 12220 0 0 0
## 12221 0 0 0
## 12222 0 0 0
## 12223 0 0 0
## 12224 0 0 0
## 12225 0 0 0
## 12226 0 0 0
## 12227 0 0 0
## 12228 0 0 0
## 12229 0 0 0
## 12230 0 0 0
## 12231 0 0 0
## 12232 0 0 0
## 12233 0 0 0
## 12234 0 0 0
## 12235 0 0 0
## 12236 0 0 0
## 12237 0 0 0
## 12238 0 0 0
## 12239 0 0 0
## 12240 0 0 0
## 12241 0 0 0
## 12242 0 0 0
## 12243 0 0 0
## 12244 0 0 0
## 12245 0 0 0
## 12246 0 0 0
## 12247 0 0 0
## 12248 0 0 0
## 12249 0 0 0
## 12250 0 0 0
## 12251 0 0 0
## 12252 0 0 0
## 12253 0 0 0
## 12254 0 0 0
## 12255 0 0 0
## 12256 0 0 0
## 12257 0 0 0
## 12258 0 0 0
## 12259 0 0 0
## 12260 0 0 0
## 12261 0 0 0
## 12262 0 0 0
## 12263 0 0 0
## 12264 0 0 0
## 12265 0 0 0
## 12266 0 0 0
## 12267 0 0 0
## 12268 0 0 0
## 12269 0 0 0
## 12270 0 0 0
## 12271 0 0 0
## 12272 0 0 0
## 12273 0 0 0
## 12274 0 0 0
## 12275 0 0 0
## 12276 0 0 0
## 12277 0 0 0
## 12278 0 0 0
## 12279 0 0 0
## 12280 0 0 0
## 12281 0 0 0
## 12282 0 0 0
## 12283 0 0 0
## 12284 0 0 0
## 12285 0 0 0
## 12286 0 0 0
## 12287 0 0 0
## 12288 0 0 0
## 12289 0 0 0
## 12290 0 0 0
## 12291 0 0 0
## 12292 0 0 0
## 12293 0 0 0
## 12294 0 0 0
## 12295 0 0 0
## 12296 0 0 0
## 12297 0 0 0
## 12298 0 0 0
## 12299 0 0 0
## 12300 0 0 0
## 12301 0 0 0
## 12302 0 0 0
## 12303 0 0 0
## 12304 0 0 0
## 12305 0 0 0
## 12306 0 0 0
## 12307 0 0 0
## 12308 0 0 0
## 12309 0 0 0
## 12310 0 0 0
## 12311 0 0 0
## 12312 0 0 0
## 12313 0 0 0
## 12314 0 0 0
## 12315 0 0 0
## 12316 0 0 0
## 12317 0 0 0
## 12318 0 0 0
## 12319 0 0 0
## 12320 0 0 0
## 12321 0 0 0
## 12322 0 0 0
## 12323 0 0 0
## 12324 0 0 0
## 12325 0 0 0
## 12326 0 0 0
## 12327 0 0 0
## 12328 0 0 0
## 12329 0 0 0
## 12330 0 0 0
## 12331 0 0 0
## 12332 0 0 0
## 12333 0 0 0
## 12334 0 0 0
## 12335 0 0 0
## 12336 0 0 0
## 12337 0 0 0
## 12338 0 0 0
## 12339 0 0 0
## 12340 0 0 0
## 12341 0 0 0
## 12342 0 0 0
## 12343 0 0 0
## 12344 0 0 0
## 12345 0 0 0
## 12346 0 0 0
## 12347 0 0 0
## 12348 0 0 0
## 12349 0 0 0
## 12350 0 0 0
## 12351 0 0 0
## 12352 0 0 0
## 12353 0 0 0
## 12354 0 0 0
## 12355 0 0 0
## 12356 0 0 0
## 12357 0 0 0
## 12358 0 0 0
## 12359 0 0 0
## 12360 0 0 0
## 12361 0 0 0
## 12362 0 0 0
## 12363 0 0 0
## 12364 0 0 0
## 12365 0 0 0
## 12366 0 0 0
## 12367 0 0 0
## 12368 0 0 0
## 12369 0 0 0
## 12370 0 0 0
## 12371 0 0 0
## 12372 0 0 0
## 12373 0 0 0
## 12374 0 0 0
## 12375 0 0 0
## 12376 0 0 0
## 12377 0 0 0
## 12378 0 0 0
## 12379 0 0 0
## 12380 0 0 0
## 12381 0 0 0
## 12382 0 0 0
## 12383 0 0 0
## 12384 0 0 0
## 12385 0 0 0
## 12386 0 0 0
## 12387 0 0 0
## 12388 0 0 0
## 12389 0 0 0
## 12390 0 0 0
## 12391 0 0 0
## 12392 0 0 0
## 12393 0 0 0
## 12394 0 0 0
## 12395 0 0 0
## 12396 0 0 0
## 12397 0 0 0
## 12398 0 0 0
## 12399 0 0 0
## 12400 0 0 0
## 12401 0 0 0
## 12402 0 0 0
## 12403 0 0 0
## 12404 0 0 0
## 12405 0 0 0
## 12406 0 0 0
## 12407 0 0 0
## 12408 0 0 0
## 12409 0 0 0
## 12410 0 0 0
## 12411 0 0 0
## 12412 0 0 0
## 12413 0 0 0
## 12414 0 0 0
## 12415 0 0 0
## 12416 0 0 0
## 12417 0 0 0
## 12418 0 0 0
## 12419 0 0 0
## 12420 0 0 0
## 12421 0 0 0
## 12422 0 0 0
## 12423 0 0 0
## 12424 0 0 0
## 12425 0 0 0
## 12426 0 0 0
## 12427 0 0 0
## 12428 0 0 0
## 12429 0 0 0
## 12430 0 0 0
## 12431 0 0 0
## 12432 0 0 0
## 12433 0 0 0
## 12434 0 0 0
## 12435 0 0 0
## 12436 0 0 0
## 12437 0 0 0
## 12438 0 0 0
## 12439 0 0 0
## 12440 0 0 0
## 12441 0 0 0
## 12442 0 0 0
## 12443 0 0 0
## 12444 0 0 0
## 12445 0 0 0
## 12446 0 0 0
## 12447 0 0 0
## 12448 0 0 0
## 12449 0 0 0
## 12450 0 0 0
## 12451 0 0 0
## 12452 0 0 0
## 12453 0 0 0
## 12454 0 0 0
## 12455 0 0 0
## 12456 0 0 0
## 12457 0 0 0
## 12458 0 0 0
## 12459 0 0 0
## 12460 0 0 0
## 12461 0 0 0
## 12462 0 0 0
## 12463 0 0 0
## 12464 0 0 0
## 12465 0 0 0
## 12466 0 0 0
## 12467 0 0 0
## 12468 0 0 0
## 12469 0 0 0
## 12470 0 0 0
## 12471 0 0 0
## 12472 0 0 0
## 12473 0 0 0
## 12474 0 0 0
## 12475 0 0 0
## 12476 0 0 0
## 12477 0 0 0
## 12478 0 0 0
## 12479 0 0 0
## 12480 0 0 0
## 12481 0 0 0
## 12482 0 0 0
## 12483 0 0 0
## 12484 0 0 0
## 12485 0 0 0
## 12486 0 0 0
## 12487 0 0 0
## 12488 0 0 0
## 12489 0 0 0
## 12490 0 0 0
## 12491 0 0 0
## 12492 0 0 0
## 12493 0 0 0
## 12494 0 0 0
## 12495 0 0 0
## 12496 0 0 0
## 12497 0 0 0
## 12498 0 0 0
## 12499 0 0 0
## 12500 0 0 0
## 12501 0 0 0
## 12502 0 0 0
## 12503 0 0 0
## 12504 0 0 0
## 12505 0 0 0
## 12506 0 0 0
## 12507 0 0 0
## 12508 0 0 0
## 12509 0 0 0
## 12510 0 0 0
## 12511 0 0 0
## 12512 0 0 0
## 12513 0 0 0
## 12514 0 0 0
## 12515 0 0 0
## 12516 0 0 0
## 12517 0 0 0
## 12518 0 0 0
## 12519 0 0 0
## 12520 0 0 0
## 12521 0 0 0
## 12522 0 0 0
## 12523 0 0 0
## 12524 0 0 0
## 12525 0 0 0
## 12526 0 0 0
## 12527 0 0 0
## 12528 0 0 0
## 12529 0 0 0
## 12530 0 0 0
## 12531 0 0 0
## 12532 0 0 0
## 12533 0 0 0
## 12534 0 0 0
## 12535 0 0 0
## 12536 0 0 0
## 12537 0 0 0
## 12538 0 0 0
## 12539 0 0 0
## 12540 0 0 0
## 12541 0 0 0
## 12542 0 0 0
## 12543 0 0 0
## 12544 0 0 0
## 12545 0 0 0
## 12546 0 0 0
## 12547 0 0 0
## 12548 0 0 0
## 12549 0 0 0
## 12550 0 0 0
## 12551 0 0 0
## 12552 0 0 0
## 12553 0 0 0
## 12554 0 0 0
## 12555 0 0 0
## 12556 0 0 0
## 12557 0 0 0
## 12558 0 0 0
## 12559 0 0 0
## 12560 0 0 0
## 12561 0 0 0
## 12562 0 0 0
## 12563 0 0 0
## 12564 0 0 0
## 12565 0 0 0
## 12566 0 0 0
## 12567 0 0 0
## 12568 0 0 0
## 12569 0 0 0
## 12570 0 0 0
## 12571 0 0 0
## 12572 0 0 0
## 12573 0 0 0
## 12574 0 0 0
## 12575 0 0 0
## 12576 0 0 0
## 12577 0 0 0
## 12578 0 0 0
## 12579 0 0 0
## 12580 0 0 0
## 12581 0 0 0
## 12582 0 0 0
## 12583 0 0 0
## 12584 0 0 0
## 12585 0 0 0
## 12586 0 0 0
## 12587 0 0 0
## 12588 0 0 0
## 12589 0 0 0
## 12590 0 0 0
## 12591 0 0 0
## 12592 0 0 0
## 12593 0 0 0
## 12594 0 0 0
## 12595 0 0 0
## 12596 0 0 0
## 12597 0 0 0
## 12598 0 0 0
## 12599 0 0 0
## 12600 0 0 0
## 12601 0 0 0
## 12602 0 0 0
## 12603 0 0 0
## 12604 0 0 0
## 12605 0 0 0
## 12606 0 0 0
## 12607 0 0 0
## 12608 0 0 0
## 12609 0 0 0
## 12610 0 0 0
## 12611 0 0 0
## 12612 0 0 0
## 12613 0 0 0
## 12614 0 0 0
## 12615 0 0 0
## 12616 0 0 0
## 12617 0 0 0
## 12618 0 0 0
## 12619 0 0 0
## 12620 0 0 0
## 12621 0 0 0
## 12622 0 0 0
## 12623 0 0 0
## 12624 0 0 0
## 12625 0 0 0
## 12626 0 0 0
## 12627 0 0 0
## 12628 0 0 0
## 12629 0 0 0
## 12630 0 0 0
## 12631 0 0 0
## 12632 0 0 0
## 12633 0 0 0
## 12634 0 0 0
## 12635 0 0 0
## 12636 0 0 0
## 12637 0 0 0
## 12638 0 0 0
## 12639 0 0 0
## 12640 0 0 0
## 12641 0 0 0
## 12642 0 0 0
## 12643 0 0 0
## 12644 0 0 0
## 12645 0 0 0
## 12646 0 0 0
## 12647 0 0 0
## 12648 0 0 0
## 12649 0 0 0
## 12650 0 0 0
## 12651 0 0 0
## 12652 0 0 0
## 12653 0 0 0
## 12654 0 0 0
## 12655 0 0 0
## 12656 0 0 0
## 12657 0 0 0
## 12658 0 0 0
## 12659 0 0 0
## 12660 0 0 0
## 12661 0 0 0
## 12662 0 0 0
## 12663 0 0 0
## 12664 0 0 0
## 12665 0 0 0
## 12666 0 0 0
## 12667 0 0 0
## 12668 0 0 0
## 12669 0 0 0
## 12670 0 0 0
## 12671 0 0 0
## 12672 0 0 0
## 12673 0 0 0
## 12674 0 0 0
## 12675 0 0 0
## 12676 0 0 0
## 12677 0 0 0
## 12678 0 0 0
## 12679 0 0 0
## 12680 0 0 0
## 12681 0 0 0
## 12682 0 0 0
## 12683 0 0 0
## 12684 0 0 0
## 12685 0 0 0
## 12686 0 0 0
## 12687 0 0 0
## 12688 0 0 0
## 12689 0 0 0
## 12690 0 0 0
## 12691 0 0 0
## 12692 0 0 0
## 12693 0 0 0
## 12694 0 0 0
## 12695 0 0 0
## 12696 0 0 0
## 12697 0 0 0
## 12698 0 0 0
## 12699 0 0 0
## 12700 0 0 0
## 12701 0 0 0
## 12702 0 0 0
## 12703 0 0 0
## 12704 0 0 0
## 12705 0 0 0
## 12706 0 0 0
## 12707 0 0 0
## 12708 0 0 0
## 12709 0 0 0
## 12710 0 0 0
## 12711 0 0 0
## 12712 0 0 0
## 12713 0 0 0
## 12714 0 0 0
## 12715 0 0 0
## 12716 0 0 0
## 12717 0 0 0
## 12718 0 0 0
## 12719 0 0 0
## 12720 0 0 0
## 12721 0 0 0
## 12722 0 0 0
## 12723 0 0 0
## 12724 0 0 0
## 12725 0 0 0
## 12726 0 0 0
## 12727 0 0 0
## 12728 0 0 0
## 12729 0 0 0
## 12730 0 0 0
## 12731 0 0 0
## 12732 0 0 0
## 12733 0 0 0
## 12734 0 0 0
## 12735 0 0 0
## 12736 0 0 0
## 12737 0 0 0
## 12738 0 0 0
## 12739 0 0 0
## 12740 0 0 0
## 12741 0 0 0
## 12742 0 0 0
## 12743 0 0 0
## 12744 0 0 0
## 12745 0 0 0
## 12746 0 0 0
## 12747 0 0 0
## 12748 0 0 0
## 12749 0 0 0
## 12750 0 0 0
## 12751 0 0 0
## 12752 0 0 0
## 12753 0 0 0
## 12754 0 0 0
## 12755 0 0 0
## 12756 0 0 0
## 12757 0 0 0
## 12758 0 0 0
## 12759 0 0 0
## 12760 0 0 0
## 12761 0 0 0
## 12762 0 0 0
## 12763 0 0 0
## 12764 0 0 0
## 12765 0 0 0
## 12766 0 0 0
## 12767 0 0 0
## 12768 0 0 0
## 12769 0 0 0
## 12770 0 0 0
## 12771 0 0 0
## 12772 0 0 0
## 12773 0 0 0
## 12774 0 0 0
## 12775 0 0 0
## 12776 0 0 0
## 12777 0 0 0
## 12778 0 0 0
## 12779 0 0 0
## 12780 0 0 0
## 12781 0 0 0
## 12782 0 0 0
## 12783 0 0 0
## 12784 0 0 0
## 12785 0 0 0
## 12786 0 0 0
## 12787 0 0 0
## 12788 0 0 0
## 12789 0 0 0
## 12790 0 0 0
## 12791 0 0 0
## 12792 0 0 0
## 12793 0 0 0
## 12794 0 0 0
## 12795 0 0 0
## 12796 0 0 0
## 12797 0 0 0
## 12798 0 0 0
## 12799 0 0 0
## 12800 0 0 0
## 12801 0 0 0
## 12802 0 0 0
## 12803 0 0 0
## 12804 0 0 0
## 12805 0 0 0
## 12806 0 0 0
## 12807 0 0 0
## 12808 0 0 0
## 12809 0 0 0
## 12810 0 0 0
## 12811 0 0 0
## 12812 0 0 0
## 12813 0 0 0
## 12814 0 0 0
## 12815 0 0 0
## 12816 0 0 0
## 12817 0 0 0
## 12818 0 0 0
## 12819 0 0 0
## 12820 0 0 0
## 12821 0 0 0
## 12822 0 0 0
## 12823 0 0 0
## 12824 0 0 0
## 12825 0 0 0
## 12826 0 0 0
## 12827 0 0 0
## 12828 0 0 0
## 12829 0 0 0
## 12830 0 0 0
## 12831 0 0 0
## 12832 0 0 0
## 12833 0 0 0
## 12834 0 0 0
## 12835 0 0 0
## 12836 0 0 0
## 12837 0 0 0
## 12838 0 0 0
## 12839 0 0 0
## 12840 0 0 0
## 12841 0 0 0
## 12842 0 0 0
## 12843 0 0 0
## 12844 0 0 0
## 12845 0 0 0
## 12846 0 0 0
## 12847 0 0 0
## 12848 0 0 0
## 12849 0 0 0
## 12850 0 0 0
## 12851 0 0 0
## 12852 0 0 0
## 12853 0 0 0
## 12854 0 0 0
## 12855 0 0 0
## 12856 0 0 0
## 12857 0 0 0
## 12858 0 0 0
## 12859 0 0 0
## 12860 0 0 0
## 12861 0 0 0
## 12862 0 0 0
## 12863 0 0 0
## 12864 0 0 0
## 12865 0 0 0
## 12866 0 0 0
## 12867 0 0 0
## 12868 0 0 0
## 12869 0 0 0
## 12870 0 0 0
## 12871 0 0 0
## 12872 0 0 0
## 12873 0 0 0
## 12874 0 0 0
## 12875 0 0 0
## 12876 0 0 0
## 12877 0 0 0
## 12878 0 0 0
## 12879 0 0 0
## 12880 0 0 0
## 12881 0 0 0
## 12882 0 0 0
## 12883 0 0 0
## 12884 0 0 0
## 12885 0 0 0
## 12886 0 0 0
## 12887 0 0 0
## 12888 0 0 0
## 12889 0 0 0
## 12890 0 0 0
## 12891 0 0 0
## 12892 0 0 0
## 12893 0 0 0
## 12894 0 0 0
## 12895 0 0 0
## 12896 0 0 0
## 12897 0 0 0
## 12898 0 0 0
## 12899 0 0 0
## 12900 0 0 0
## 12901 0 0 0
## 12902 0 0 0
## 12903 0 0 0
## 12904 0 0 0
## 12905 0 0 0
## 12906 0 0 0
## 12907 0 0 0
## 12908 0 0 0
## 12909 0 0 0
## 12910 0 0 0
## 12911 0 0 0
## 12912 0 0 0
## 12913 0 0 0
## 12914 0 0 0
## 12915 0 0 0
## 12916 0 0 0
## 12917 0 0 0
## 12918 0 0 0
## 12919 0 0 0
## 12920 0 0 0
## 12921 0 0 0
## 12922 0 0 0
## 12923 0 0 0
## 12924 0 0 0
## 12925 0 0 0
## 12926 0 0 0
## 12927 0 0 0
## 12928 0 0 0
## 12929 0 0 0
## 12930 0 0 0
## 12931 0 0 0
## 12932 0 0 0
## 12933 0 0 0
## 12934 0 0 0
## 12935 0 0 0
## 12936 0 0 0
## 12937 0 0 0
## 12938 0 0 0
## 12939 0 0 0
## 12940 0 0 0
## 12941 0 0 0
## 12942 0 0 0
## 12943 0 0 0
## 12944 0 0 0
## 12945 0 0 0
## 12946 0 0 0
## 12947 0 0 0
## 12948 0 0 0
## 12949 0 0 0
## 12950 0 0 0
## 12951 0 0 0
## 12952 0 0 0
## 12953 0 0 0
## 12954 0 0 0
## 12955 0 0 0
## 12956 0 0 0
## 12957 0 0 0
## 12958 0 0 0
## 12959 0 0 0
## 12960 0 0 0
## 12961 0 0 0
## 12962 0 0 0
## 12963 0 0 0
## 12964 0 0 0
## 12965 0 0 0
## 12966 0 0 0
## 12967 0 0 0
## 12968 0 0 0
## 12969 0 0 0
## 12970 0 0 0
## 12971 0 0 0
## 12972 0 0 0
## 12973 0 0 0
## 12974 0 0 0
## 12975 0 0 0
## 12976 0 0 0
## 12977 0 0 0
## 12978 0 0 0
## 12979 0 0 0
## 12980 0 0 0
## 12981 0 0 0
## 12982 0 0 0
## 12983 0 0 0
## 12984 0 0 0
## 12985 0 0 0
## 12986 0 0 0
## 12987 0 0 0
## 12988 0 0 0
## 12989 0 0 0
## 12990 0 0 0
## 12991 0 0 0
## 12992 0 0 0
## 12993 0 0 0
## 12994 0 0 0
## 12995 0 0 0
## 12996 0 0 0
## 12997 0 0 0
## 12998 0 0 0
## 12999 0 0 0
## 13000 0 0 0
## 13001 0 0 0
## 13002 0 0 0
## 13003 0 0 0
## 13004 0 0 0
## 13005 0 0 0
## 13006 0 0 0
## 13007 0 0 0
## 13008 0 0 0
## 13009 0 0 0
## 13010 0 0 0
## 13011 0 0 0
## 13012 0 0 0
## 13013 0 0 0
## 13014 0 0 0
## 13015 0 0 0
## 13016 0 0 0
## 13017 0 0 0
## 13018 0 0 0
## 13019 0 0 0
## 13020 0 0 0
## 13021 0 0 0
## 13022 0 0 0
## 13023 0 0 0
## 13024 0 0 0
## 13025 0 0 0
## 13026 0 0 0
## 13027 0 0 0
## 13028 0 0 0
## 13029 0 0 0
## 13030 0 0 0
## 13031 0 0 0
## 13032 0 0 0
## 13033 0 0 0
## 13034 0 0 0
## 13035 0 0 0
## 13036 0 0 0
## 13037 0 0 0
## 13038 0 0 0
## 13039 0 0 0
## 13040 0 0 0
## 13041 0 0 0
## 13042 0 0 0
## 13043 0 0 0
## 13044 0 0 0
## 13045 0 0 0
## 13046 0 0 0
## 13047 0 0 0
## 13048 0 0 0
## 13049 0 0 0
## 13050 0 0 0
## 13051 0 0 0
## 13052 0 0 0
## 13053 0 0 0
## 13054 0 0 0
## 13055 0 0 0
## 13056 0 0 0
## 13057 0 0 0
## 13058 0 0 0
## 13059 0 0 0
## 13060 0 0 0
## 13061 0 0 0
## 13062 0 0 0
## 13063 0 0 0
## 13064 0 0 0
## 13065 0 0 0
## 13066 0 0 0
## 13067 0 0 0
## 13068 0 0 0
## 13069 0 0 0
## 13070 0 0 0
## 13071 0 0 0
## 13072 0 0 0
## 13073 0 0 0
## 13074 0 0 0
## 13075 0 0 0
## 13076 0 0 0
## 13077 0 0 0
## 13078 0 0 0
## 13079 0 0 0
## 13080 0 0 0
## 13081 0 0 0
## 13082 0 0 0
## 13083 0 0 0
## 13084 0 0 0
## 13085 0 0 0
## 13086 0 0 0
## 13087 0 0 0
## 13088 0 0 0
## 13089 0 0 0
## 13090 0 0 0
## 13091 0 0 0
## 13092 0 0 0
## 13093 0 0 0
## 13094 0 0 0
## 13095 0 0 0
## 13096 0 0 0
## 13097 0 0 0
## 13098 0 0 0
## 13099 0 0 0
## 13100 0 0 0
## 13101 0 0 0
## 13102 0 0 0
## 13103 0 0 0
## 13104 0 0 0
## 13105 0 0 0
## 13106 0 0 0
## 13107 0 0 0
## 13108 0 0 0
## 13109 0 0 0
## 13110 0 0 0
## 13111 0 0 0
## 13112 0 0 0
## 13113 0 0 0
## 13114 0 0 0
## 13115 0 0 0
## 13116 0 0 0
## 13117 0 0 0
## 13118 0 0 0
## 13119 0 0 0
## 13120 0 0 0
## 13121 0 0 0
## 13122 0 0 0
## 13123 0 0 0
## 13124 0 0 0
## 13125 0 0 0
## 13126 0 0 0
## 13127 0 0 0
## 13128 0 0 0
## 13129 0 0 0
## 13130 0 0 0
## 13131 0 0 0
## 13132 0 0 0
## 13133 0 0 0
## 13134 0 0 0
## 13135 0 0 0
## 13136 0 0 0
## 13137 0 0 0
## 13138 0 0 0
## 13139 0 0 0
## 13140 0 0 0
## 13141 0 0 0
## 13142 0 0 0
## 13143 0 0 0
## 13144 0 0 0
## 13145 0 0 0
## 13146 0 0 0
## 13147 0 0 0
## 13148 0 0 0
## 13149 0 0 0
## 13150 0 0 0
## 13151 0 0 0
## 13152 0 0 0
## 13153 0 0 0
## 13154 0 0 0
## 13155 0 0 0
## 13156 0 0 0
## 13157 0 0 0
## 13158 0 0 0
## 13159 0 0 0
## 13160 0 0 0
## 13161 0 0 0
## 13162 0 0 0
## 13163 0 0 0
## 13164 0 0 0
## 13165 0 0 0
## 13166 0 0 0
## 13167 0 0 0
## 13168 0 0 0
## 13169 0 0 0
## 13170 0 0 0
## 13171 0 0 0
## 13172 0 0 0
## 13173 0 0 0
## 13174 0 0 0
## 13175 0 0 0
## 13176 0 0 0
## 13177 0 0 0
## 13178 0 0 0
## 13179 0 0 0
## 13180 0 0 0
## 13181 0 0 0
## 13182 0 0 0
## 13183 0 0 0
## 13184 0 0 0
## 13185 0 0 0
## 13186 0 0 0
## 13187 0 0 0
## 13188 0 0 0
## 13189 0 0 0
## 13190 0 0 0
## 13191 0 0 0
## 13192 0 0 0
## 13193 0 0 0
## 13194 0 0 0
## 13195 0 0 0
## 13196 0 0 0
## 13197 0 0 0
## 13198 0 0 0
## 13199 0 0 0
## 13200 0 0 0
## 13201 0 0 0
## 13202 0 0 0
## 13203 0 0 0
## 13204 0 0 0
## 13205 0 0 0
## 13206 0 0 0
## 13207 0 0 0
## 13208 0 0 0
## 13209 0 0 0
## 13210 0 0 0
## 13211 0 0 0
## 13212 0 0 0
## 13213 0 0 0
## 13214 0 0 0
## 13215 0 0 0
## 13216 0 0 0
## 13217 0 0 0
## 13218 0 0 0
## 13219 0 0 0
## 13220 0 0 0
## 13221 0 0 0
## 13222 0 0 0
## 13223 0 0 0
## 13224 0 0 0
## 13225 0 0 0
## 13226 0 0 0
## 13227 0 0 0
## 13228 0 0 0
## 13229 0 0 0
## 13230 0 0 0
## 13231 0 0 0
## 13232 0 0 0
## 13233 0 0 0
## 13234 0 0 0
## 13235 0 0 0
## 13236 0 0 0
## 13237 0 0 0
## 13238 0 0 0
## 13239 0 0 0
## 13240 0 0 0
## 13241 0 0 0
## 13242 0 0 0
## 13243 0 0 0
## 13244 0 0 0
## 13245 0 0 0
## 13246 0 0 0
## 13247 0 0 0
## 13248 0 0 0
## 13249 0 0 0
## 13250 0 0 0
## 13251 0 0 0
## 13252 0 0 0
## 13253 0 0 0
## 13254 0 0 0
## 13255 0 0 0
## 13256 0 0 0
## 13257 0 0 0
## 13258 0 0 0
## 13259 0 0 0
## 13260 0 0 0
## 13261 0 0 0
## 13262 0 0 0
## 13263 0 0 0
## 13264 0 0 0
## 13265 0 0 0
## 13266 0 0 0
## 13267 0 0 0
## 13268 0 0 0
## 13269 0 0 0
## 13270 0 0 0
## 13271 0 0 0
## 13272 0 0 0
## 13273 0 0 0
## 13274 0 0 0
## 13275 0 0 0
## 13276 0 0 0
## 13277 0 0 0
## 13278 0 0 0
## 13279 0 0 0
## 13280 0 0 0
## 13281 0 0 0
## 13282 0 0 0
## 13283 0 0 0
## 13284 0 0 0
## 13285 0 0 0
## 13286 0 0 0
## 13287 0 0 0
## 13288 0 0 0
## 13289 0 0 0
## 13290 0 0 0
## 13291 0 0 0
## 13292 0 0 0
## 13293 0 0 0
## 13294 0 0 0
## 13295 0 0 0
## 13296 0 0 0
## 13297 0 0 0
## 13298 0 0 0
## 13299 0 0 0
## 13300 0 0 0
## 13301 0 0 0
## 13302 0 0 0
## 13303 0 0 0
## 13304 0 0 0
## 13305 0 0 0
## 13306 0 0 0
## 13307 0 0 0
## 13308 0 0 0
## 13309 0 0 0
## 13310 0 0 0
## 13311 0 0 0
## 13312 0 0 0
## 13313 0 0 0
## 13314 0 0 0
## 13315 0 0 0
## 13316 0 0 0
## 13317 0 0 0
## 13318 0 0 0
## 13319 0 0 0
## 13320 0 0 0
## 13321 0 0 0
## 13322 0 0 0
## 13323 0 0 0
## 13324 0 0 0
## 13325 0 0 0
## 13326 0 0 0
## 13327 0 0 0
## 13328 0 0 0
## 13329 0 0 0
## 13330 0 0 0
## 13331 0 0 0
## 13332 0 0 0
## 13333 0 0 0
## 13334 0 0 0
## 13335 0 0 0
## 13336 0 0 0
## 13337 0 0 0
## 13338 0 0 0
## 13339 0 0 0
## 13340 0 0 0
## 13341 0 0 0
## 13342 0 0 0
## 13343 0 0 0
## 13344 0 0 0
## 13345 0 0 0
## 13346 0 0 0
## 13347 0 0 0
## 13348 0 0 0
## 13349 0 0 0
## 13350 0 0 0
## 13351 0 0 0
## 13352 0 0 0
## 13353 0 0 0
## 13354 0 0 0
## 13355 0 0 0
## 13356 0 0 0
## 13357 0 0 0
## 13358 0 0 0
## 13359 0 0 0
## 13360 0 0 0
## 13361 0 0 0
## 13362 0 0 0
## 13363 0 0 0
## 13364 0 0 0
## 13365 0 0 0
## 13366 0 0 0
## 13367 0 0 0
## 13368 0 0 0
## 13369 0 0 0
## 13370 0 0 0
## 13371 0 0 0
## 13372 0 0 0
## 13373 0 0 0
## 13374 0 0 0
## 13375 0 0 0
## 13376 0 0 0
## 13377 0 0 0
## 13378 0 0 0
## 13379 0 0 0
## 13380 0 0 0
## 13381 0 0 0
## 13382 0 0 0
## 13383 0 0 0
## 13384 0 0 0
## 13385 0 0 0
## 13386 0 0 0
## 13387 0 0 0
## 13388 0 0 0
## 13389 0 0 0
## 13390 0 0 0
## 13391 0 0 0
## 13392 0 0 0
## 13393 0 0 0
## 13394 0 0 0
## 13395 0 0 0
## 13396 0 0 0
## 13397 0 0 0
## 13398 0 0 0
## 13399 0 0 0
## 13400 0 0 0
## 13401 0 0 0
## 13402 0 0 0
## 13403 0 0 0
## 13404 0 0 0
## 13405 0 0 0
## 13406 0 0 0
## 13407 0 0 0
## 13408 0 0 0
## 13409 0 0 0
## 13410 0 0 0
## 13411 0 0 0
## 13412 0 0 0
## 13413 0 0 0
## 13414 0 0 0
## 13415 0 0 0
## 13416 0 0 0
## 13417 0 0 0
## 13418 0 0 0
## 13419 0 0 0
## 13420 0 0 0
## 13421 0 0 0
## 13422 0 0 0
## 13423 0 0 0
## 13424 0 0 0
## 13425 0 0 0
## 13426 0 0 0
## 13427 0 0 0
## 13428 0 0 0
## 13429 0 0 0
## 13430 0 0 0
## 13431 0 0 0
## 13432 0 0 0
## 13433 0 0 0
## 13434 0 0 0
## 13435 0 0 0
## 13436 0 0 0
## 13437 0 0 0
## 13438 0 0 0
## 13439 0 0 0
## 13440 0 0 0
## 13441 0 0 0
## 13442 0 0 0
## 13443 0 0 0
## 13444 0 0 0
## 13445 0 0 0
## 13446 0 0 0
## 13447 0 0 0
## 13448 0 0 0
## 13449 0 0 0
## 13450 0 0 0
## 13451 0 0 0
## 13452 0 0 0
## 13453 0 0 0
## 13454 0 0 0
## 13455 0 0 0
## 13456 0 0 0
## 13457 0 0 0
## 13458 0 0 0
## 13459 0 0 0
## 13460 0 0 0
## 13461 0 0 0
## 13462 0 0 0
## 13463 0 0 0
## 13464 0 0 0
## 13465 0 0 0
## 13466 0 0 0
## 13467 0 0 0
## 13468 0 0 0
## 13469 0 0 0
## 13470 0 0 0
## 13471 0 0 0
## 13472 0 0 0
## 13473 0 0 0
## 13474 0 0 0
## 13475 0 0 0
## 13476 0 0 0
## 13477 0 0 0
## 13478 0 0 0
## 13479 0 0 0
## 13480 0 0 0
## 13481 0 0 0
## 13482 0 0 0
## 13483 0 0 0
## 13484 0 0 0
## 13485 0 0 0
## 13486 0 0 0
## 13487 0 0 0
## 13488 0 0 0
## 13489 0 0 0
## 13490 0 0 0
## 13491 0 0 0
## 13492 0 0 0
## 13493 0 0 0
## 13494 0 0 0
## 13495 0 0 0
## 13496 0 0 0
## 13497 0 0 0
## 13498 0 0 0
## 13499 0 0 0
## 13500 0 0 0
## 13501 0 0 0
## 13502 0 0 0
## 13503 0 0 0
## 13504 0 0 0
## 13505 0 0 0
## 13506 0 0 0
## 13507 0 0 0
## 13508 0 0 0
## 13509 0 0 0
## 13510 0 0 0
## 13511 0 0 0
## 13512 0 0 0
## 13513 0 0 0
## 13514 0 0 0
## 13515 0 0 0
## 13516 0 0 0
## 13517 0 0 0
## 13518 0 0 0
## 13519 0 0 0
## 13520 0 0 0
## 13521 0 0 0
## 13522 0 0 0
## 13523 0 0 0
## 13524 0 0 0
## 13525 0 0 0
## 13526 0 0 0
## 13527 0 0 0
## 13528 0 0 0
## 13529 0 0 0
## 13530 0 0 0
## 13531 0 0 0
## 13532 0 0 0
## 13533 0 0 0
## 13534 0 0 0
## 13535 0 0 0
## 13536 0 0 0
## 13537 0 0 0
## 13538 0 0 0
## 13539 0 0 0
## 13540 0 0 0
## 13541 0 0 0
## 13542 0 0 0
## 13543 0 0 0
## 13544 0 0 0
## 13545 0 0 0
## 13546 0 0 0
## 13547 0 0 0
## 13548 0 0 0
## 13549 0 0 0
## 13550 0 0 0
## 13551 0 0 0
## 13552 0 0 0
## 13553 0 0 0
## 13554 0 0 0
## 13555 0 0 0
## 13556 0 0 0
## 13557 0 0 0
## 13558 0 0 0
## 13559 0 0 0
## 13560 0 0 0
## 13561 0 0 0
## 13562 0 0 0
## 13563 0 0 0
## 13564 0 0 0
## 13565 0 0 0
## 13566 0 0 0
## 13567 0 0 0
## 13568 0 0 0
## 13569 0 0 0
## 13570 0 0 0
## 13571 0 0 0
## 13572 0 0 0
## 13573 0 0 0
## 13574 0 0 0
## 13575 0 0 0
## 13576 0 0 0
## 13577 0 0 0
## 13578 0 0 0
## 13579 0 0 0
## 13580 0 0 0
## 13581 0 0 0
## 13582 0 0 0
## 13583 0 0 0
## 13584 0 0 0
## 13585 0 0 0
## 13586 0 0 0
## 13587 0 0 0
## 13588 0 0 0
## 13589 0 0 0
## 13590 0 0 0
## 13591 0 0 0
## 13592 0 0 0
## 13593 0 0 0
## 13594 0 0 0
## 13595 0 0 0
## 13596 0 0 0
## 13597 0 0 0
## 13598 0 0 0
## 13599 0 0 0
## 13600 0 0 0
## 13601 0 0 0
## 13602 0 0 0
## 13603 0 0 0
## 13604 0 0 0
## 13605 0 0 0
## 13606 0 0 0
## 13607 0 0 0
## 13608 0 0 0
## 13609 0 0 0
## 13610 0 0 0
## 13611 0 0 0
## 13612 0 0 0
## 13613 0 0 0
## 13614 0 0 0
## 13615 0 0 0
## 13616 0 0 0
## 13617 0 0 0
## 13618 0 0 0
## 13619 0 0 0
## 13620 0 0 0
## 13621 0 0 0
## 13622 0 0 0
## 13623 0 0 0
## 13624 0 0 0
## 13625 0 0 0
## 13626 0 0 0
## 13627 0 0 0
## 13628 0 0 0
## 13629 0 0 0
## 13630 0 0 0
## 13631 0 0 0
## 13632 0 0 0
## 13633 0 0 0
## 13634 0 0 0
## 13635 0 0 0
## 13636 0 0 0
## 13637 0 0 0
## 13638 0 0 0
## 13639 0 0 0
## 13640 0 0 0
## 13641 0 0 0
## 13642 0 0 0
## 13643 0 0 0
## 13644 0 0 0
## 13645 0 0 0
## 13646 0 0 0
## 13647 0 0 0
## 13648 0 0 0
## 13649 0 0 0
## 13650 0 0 0
## 13651 0 0 0
## 13652 0 0 0
## 13653 0 0 0
## 13654 0 0 0
## 13655 0 0 0
## 13656 0 0 0
## 13657 0 0 0
## 13658 0 0 0
## 13659 0 0 0
## 13660 0 0 0
## 13661 0 0 0
## 13662 0 0 0
## 13663 0 0 0
## 13664 0 0 0
## 13665 0 0 0
## 13666 0 0 0
## 13667 0 0 0
## 13668 0 0 0
## 13669 0 0 0
## 13670 0 0 0
## 13671 0 0 0
## 13672 0 0 0
## 13673 0 0 0
## 13674 0 0 0
## 13675 0 0 0
## 13676 0 0 0
## 13677 0 0 0
## 13678 0 0 0
## 13679 0 0 0
## 13680 0 0 0
## 13681 0 0 0
## 13682 0 0 0
## 13683 0 0 0
## 13684 0 0 0
## 13685 0 0 0
## 13686 0 0 0
## 13687 0 0 0
## 13688 0 0 0
## 13689 0 0 0
## 13690 0 0 0
## 13691 0 0 0
## 13692 0 0 0
## 13693 0 0 0
## 13694 0 0 0
## 13695 0 0 0
## 13696 0 0 0
## 13697 0 0 0
## 13698 0 0 0
## 13699 0 0 0
## 13700 0 0 0
## 13701 0 0 0
## 13702 0 0 0
## 13703 0 0 0
## 13704 0 0 0
## 13705 0 0 0
## 13706 0 0 0
## 13707 0 0 0
## 13708 0 0 0
## 13709 0 0 0
## 13710 0 0 0
## 13711 0 0 0
## 13712 0 0 0
## 13713 0 0 0
## 13714 0 0 0
## 13715 0 0 0
## 13716 0 0 0
## 13717 0 0 0
## 13718 0 0 0
## 13719 0 0 0
## 13720 0 0 0
## 13721 0 0 0
## 13722 0 0 0
## 13723 0 0 0
## 13724 0 0 0
## 13725 0 0 0
## 13726 0 0 0
## 13727 0 0 0
## 13728 0 0 0
## 13729 0 0 0
## 13730 0 0 0
## 13731 0 0 0
## 13732 0 0 0
## 13733 0 0 0
## 13734 0 0 0
## 13735 0 0 0
## 13736 0 0 0
## 13737 0 0 0
## 13738 0 0 0
## 13739 0 0 0
## 13740 0 0 0
## 13741 0 0 0
## 13742 0 0 0
## 13743 0 0 0
## 13744 0 0 0
## 13745 0 0 0
## 13746 0 0 0
## 13747 0 0 0
## 13748 0 0 0
## 13749 0 0 0
## 13750 0 0 0
## 13751 0 0 0
## 13752 0 0 0
## 13753 0 0 0
## 13754 0 0 0
## 13755 0 0 0
## 13756 0 0 0
## 13757 0 0 0
## 13758 0 0 0
## 13759 0 0 0
## 13760 0 0 0
## 13761 0 0 0
## 13762 0 0 0
## 13763 0 0 0
## 13764 0 0 0
## 13765 0 0 0
## 13766 0 0 0
## 13767 0 0 0
## 13768 0 0 0
## 13769 0 0 0
## 13770 0 0 0
## 13771 0 0 0
## 13772 0 0 0
## 13773 0 0 0
## 13774 0 0 0
## 13775 0 0 0
## 13776 0 0 0
## 13777 0 0 0
## 13778 0 0 0
## 13779 0 0 0
## 13780 0 0 0
## 13781 0 0 0
## 13782 0 0 0
## 13783 0 0 0
## 13784 0 0 0
## 13785 0 0 0
## 13786 0 0 0
## 13787 0 0 0
## 13788 0 0 0
## 13789 0 0 0
## 13790 0 0 0
## 13791 0 0 0
## 13792 0 0 0
## 13793 0 0 0
## 13794 0 0 0
## 13795 0 0 0
## 13796 0 0 0
## 13797 0 0 0
## 13798 0 0 0
## 13799 0 0 0
## 13800 0 0 0
## 13801 0 0 0
## 13802 0 0 0
## 13803 0 0 0
## 13804 0 0 0
## 13805 0 0 0
## 13806 0 0 0
## 13807 0 0 0
## 13808 0 0 0
## 13809 0 0 0
## 13810 0 0 0
## 13811 0 0 0
## 13812 0 0 0
## 13813 0 0 0
## 13814 0 0 0
## 13815 0 0 0
## 13816 0 0 0
## 13817 0 0 0
## 13818 0 0 0
## 13819 0 0 0
## 13820 0 0 0
## 13821 0 0 0
## 13822 0 0 0
## 13823 0 0 0
## 13824 0 0 0
## 13825 0 0 0
## 13826 0 0 0
## 13827 0 0 0
## 13828 0 0 0
## 13829 0 0 0
## 13830 0 0 0
## 13831 0 0 0
## 13832 0 0 0
## 13833 0 0 0
## 13834 0 0 0
## 13835 0 0 0
## 13836 0 0 0
## 13837 0 0 0
## 13838 0 0 0
## 13839 0 0 0
## 13840 0 0 0
## 13841 0 0 0
## 13842 0 0 0
## 13843 0 0 0
## 13844 0 0 0
## 13845 0 0 0
## 13846 0 0 0
## 13847 0 0 0
## 13848 0 0 0
## 13849 0 0 0
## 13850 0 0 0
## 13851 0 0 0
## 13852 0 0 0
## 13853 0 0 0
## 13854 0 0 0
## 13855 0 0 0
## 13856 0 0 0
## 13857 0 0 0
## 13858 0 0 0
## 13859 0 0 0
## 13860 0 0 0
## 13861 0 0 0
## 13862 0 0 0
## 13863 0 0 0
## 13864 0 0 0
## 13865 0 0 0
## 13866 0 0 0
## 13867 0 0 0
## 13868 0 0 0
## 13869 0 0 0
## 13870 0 0 0
## 13871 0 0 0
## 13872 0 0 0
## 13873 0 0 0
## 13874 0 0 0
## 13875 0 0 0
## 13876 0 0 0
## 13877 0 0 0
## 13878 0 0 0
## 13879 0 0 0
## 13880 0 0 0
## 13881 0 0 0
## 13882 0 0 0
## 13883 0 0 0
## 13884 0 0 0
## 13885 0 0 0
## 13886 0 0 0
## 13887 0 0 0
## 13888 0 0 0
## 13889 0 0 0
## 13890 0 0 0
## 13891 0 0 0
## 13892 0 0 0
## 13893 0 0 0
## 13894 0 0 0
## 13895 0 0 0
## 13896 0 0 0
## 13897 0 0 0
## 13898 0 0 0
## 13899 0 0 0
## 13900 0 0 0
## 13901 0 0 0
## 13902 0 0 0
## 13903 0 0 0
## 13904 0 0 0
## 13905 0 0 0
## 13906 0 0 0
## 13907 0 0 0
## 13908 0 0 0
## 13909 0 0 0
## 13910 0 0 0
## 13911 0 0 0
## 13912 0 0 0
## 13913 0 0 0
## 13914 0 0 0
## 13915 0 0 0
## 13916 0 0 0
## 13917 0 0 0
## 13918 0 0 0
## 13919 0 0 0
## 13920 0 0 0
## 13921 0 0 0
## 13922 0 0 0
## 13923 0 0 0
## 13924 0 0 0
## 13925 0 0 0
## 13926 0 0 0
## 13927 0 0 0
## 13928 0 0 0
## 13929 0 0 0
## 13930 0 0 0
## 13931 0 0 0
## 13932 0 0 0
## 13933 0 0 0
## 13934 0 0 0
## 13935 0 0 0
## 13936 0 0 0
## 13937 0 0 0
## 13938 0 0 0
## 13939 0 0 0
## 13940 0 0 0
## 13941 0 0 0
## 13942 0 0 0
## 13943 0 0 0
## 13944 0 0 0
## 13945 0 0 0
## 13946 0 0 0
## 13947 0 0 0
## 13948 0 0 0
## 13949 0 0 0
## 13950 0 0 0
## 13951 0 0 0
## 13952 0 0 0
## 13953 0 0 0
## 13954 0 0 0
## 13955 0 0 0
## 13956 0 0 0
## 13957 0 0 0
## 13958 0 0 0
## 13959 0 0 0
## 13960 0 0 0
## 13961 0 0 0
## 13962 0 0 0
## 13963 0 0 0
## 13964 0 0 0
## 13965 0 0 0
## 13966 0 0 0
## 13967 0 0 0
## 13968 0 0 0
## 13969 0 0 0
## 13970 0 0 0
## 13971 0 0 0
## 13972 0 0 0
## 13973 0 0 0
## 13974 0 0 0
## 13975 0 0 0
## 13976 0 0 0
## 13977 0 0 0
## 13978 0 0 0
## 13979 0 0 0
## 13980 0 0 0
## 13981 0 0 0
## 13982 0 0 0
## 13983 0 0 0
## 13984 0 0 0
## 13985 0 0 0
## 13986 0 0 0
## 13987 0 0 0
## 13988 0 0 0
## 13989 0 0 0
## 13990 0 0 0
## 13991 0 0 0
## 13992 0 0 0
## 13993 0 0 0
## 13994 0 0 0
## 13995 0 0 0
## 13996 0 0 0
## 13997 0 0 0
## 13998 0 0 0
## 13999 0 0 0
## 14000 0 0 0
## 14001 0 0 0
## 14002 0 0 0
## 14003 0 0 0
## 14004 0 0 0
## 14005 0 0 0
## 14006 0 0 0
## 14007 0 0 0
## 14008 0 0 0
## 14009 0 0 0
## 14010 0 0 0
## 14011 0 0 0
## 14012 0 0 0
## 14013 0 0 0
## 14014 0 0 0
## 14015 0 0 0
## 14016 0 0 0
## 14017 0 0 0
## 14018 0 0 0
## 14019 0 0 0
## 14020 0 0 0
## 14021 0 0 0
## 14022 0 0 0
## 14023 0 0 0
## 14024 0 0 0
## 14025 0 0 0
## 14026 0 0 0
## 14027 0 0 0
## 14028 0 0 0
## 14029 0 0 0
## 14030 0 0 0
## 14031 0 0 0
## 14032 0 0 0
## 14033 0 0 0
## 14034 0 0 0
## 14035 0 0 0
## 14036 0 0 0
## 14037 0 0 0
## 14038 0 0 0
## 14039 0 0 0
## 14040 0 0 0
## 14041 0 0 0
## 14042 0 0 0
## 14043 0 0 0
## 14044 0 0 0
## 14045 0 0 0
## 14046 0 0 0
## 14047 0 0 0
## 14048 0 0 0
## 14049 0 0 0
## 14050 0 0 0
## 14051 0 0 0
## 14052 0 0 0
## 14053 0 0 0
## 14054 0 0 0
## 14055 0 0 0
## 14056 0 0 0
## 14057 0 0 0
## 14058 0 0 0
## 14059 0 0 0
## 14060 0 0 0
## 14061 0 0 0
## 14062 0 0 0
## 14063 0 0 0
## 14064 0 0 0
## 14065 0 0 0
## 14066 0 0 0
## 14067 0 0 0
## 14068 0 0 0
## 14069 0 0 0
## 14070 0 0 0
## 14071 0 0 0
## 14072 0 0 0
## 14073 0 0 0
## 14074 0 0 0
## 14075 0 0 0
## 14076 0 0 0
## 14077 0 0 0
## 14078 0 0 0
## 14079 0 0 0
## 14080 0 0 0
## 14081 0 0 0
## 14082 0 0 0
## 14083 0 0 0
## 14084 0 0 0
## 14085 0 0 0
## 14086 0 0 0
## 14087 0 0 0
## 14088 0 0 0
## 14089 0 0 0
## 14090 0 0 0
## 14091 0 0 0
## 14092 0 0 0
## 14093 0 0 0
## 14094 0 0 0
## 14095 0 0 0
## 14096 0 0 0
## 14097 0 0 0
## 14098 0 0 0
## 14099 0 0 0
## 14100 0 0 0
## 14101 0 0 0
## 14102 0 0 0
## 14103 0 0 0
## 14104 0 0 0
## 14105 0 0 0
## 14106 0 0 0
## 14107 0 0 0
## 14108 0 0 0
## 14109 0 0 0
## 14110 0 0 0
## 14111 0 0 0
## 14112 0 0 0
## 14113 0 0 0
## 14114 0 0 0
## 14115 0 0 0
## 14116 0 0 0
## 14117 0 0 0
## 14118 0 0 0
## 14119 0 0 0
## 14120 0 0 0
## 14121 0 0 0
## 14122 0 0 0
## 14123 0 0 0
## 14124 0 0 0
## 14125 0 0 0
## 14126 0 0 0
## 14127 0 0 0
## 14128 0 0 0
## 14129 0 0 0
## 14130 0 0 0
## 14131 0 0 0
## 14132 0 0 0
## 14133 0 0 0
## 14134 0 0 0
## 14135 0 0 0
## 14136 0 0 0
## 14137 0 0 0
## 14138 0 0 0
## 14139 0 0 0
## 14140 0 0 0
## 14141 0 0 0
## 14142 0 0 0
## 14143 0 0 0
## 14144 0 0 0
## 14145 0 0 0
## 14146 0 0 0
## 14147 0 0 0
## 14148 0 0 0
## 14149 0 0 0
## 14150 0 0 0
## 14151 0 0 0
## 14152 0 0 0
## 14153 0 0 0
## 14154 0 0 0
## 14155 0 0 0
## 14156 0 0 0
## 14157 0 0 0
## 14158 0 0 0
## 14159 0 0 0
## 14160 0 0 0
## 14161 0 0 0
## 14162 0 0 0
## 14163 0 0 0
## 14164 0 0 0
## 14165 0 0 0
## 14166 0 0 0
## 14167 0 0 0
## 14168 0 0 0
## 14169 0 0 0
## 14170 0 0 0
## 14171 0 0 0
## 14172 0 0 0
## 14173 0 0 0
## 14174 0 0 0
## 14175 0 0 0
## 14176 0 0 0
## 14177 0 0 0
## 14178 0 0 0
## 14179 0 0 0
## 14180 0 0 0
## 14181 0 0 0
## 14182 0 0 0
## 14183 0 0 0
## 14184 0 0 0
## 14185 0 0 0
## 14186 0 0 0
## 14187 0 0 0
## 14188 0 0 0
## 14189 0 0 0
## 14190 0 0 0
## 14191 0 0 0
## 14192 0 0 0
## 14193 0 0 0
## 14194 0 0 0
## 14195 0 0 0
## 14196 0 0 0
## 14197 0 0 0
## 14198 0 0 0
## 14199 0 0 0
## 14200 0 0 0
## 14201 0 0 0
## 14202 0 0 0
## 14203 0 0 0
## 14204 0 0 0
## 14205 0 0 0
## 14206 0 0 0
## 14207 0 0 0
## 14208 0 0 0
## 14209 0 0 0
## 14210 0 0 0
## 14211 0 0 0
## 14212 0 0 0
## 14213 0 0 0
## 14214 0 0 0
## 14215 0 0 0
## 14216 0 0 0
## 14217 0 0 0
## 14218 0 0 0
## 14219 0 0 0
## 14220 0 0 0
## 14221 0 0 0
## 14222 0 0 0
## 14223 0 0 0
## 14224 0 0 0
## 14225 0 0 0
## 14226 0 0 0
## 14227 0 0 0
## 14228 0 0 0
## 14229 0 0 0
## 14230 0 0 0
## 14231 0 0 0
## 14232 0 0 0
## 14233 0 0 0
## 14234 0 0 0
## 14235 0 0 0
## 14236 0 0 0
## 14237 0 0 0
## 14238 0 0 0
## 14239 0 0 0
## 14240 0 0 0
## 14241 0 0 0
## 14242 0 0 0
## 14243 0 0 0
## 14244 0 0 0
## 14245 0 0 0
## 14246 0 0 0
## 14247 0 0 0
## 14248 0 0 0
## 14249 0 0 0
## 14250 0 0 0
## 14251 0 0 0
## 14252 0 0 0
## 14253 0 0 0
## 14254 0 0 0
## 14255 0 0 0
## 14256 0 0 0
## 14257 0 0 0
## 14258 0 0 0
## 14259 0 0 0
## 14260 0 0 0
## 14261 0 0 0
## 14262 0 0 0
## 14263 0 0 0
## 14264 0 0 0
## 14265 0 0 0
## 14266 0 0 0
## 14267 0 0 0
## 14268 0 0 0
## 14269 0 0 0
## 14270 0 0 0
## 14271 0 0 0
## 14272 0 0 0
## 14273 0 0 0
## 14274 0 0 0
## 14275 0 0 0
## 14276 0 0 0
## 14277 0 0 0
## 14278 0 0 0
## 14279 0 0 0
## 14280 0 0 0
## 14281 0 0 0
## 14282 0 0 0
## 14283 0 0 0
## 14284 0 0 0
## 14285 0 0 0
## 14286 0 0 0
## 14287 0 0 0
## 14288 0 0 0
## 14289 0 0 0
## 14290 0 0 0
## 14291 0 0 0
## 14292 0 0 0
## 14293 0 0 0
## 14294 0 0 0
## 14295 0 0 0
## 14296 0 0 0
## 14297 0 0 0
## 14298 0 0 0
## 14299 0 0 0
## 14300 0 0 0
## 14301 0 0 0
## 14302 0 0 0
## 14303 0 0 0
## 14304 0 0 0
## 14305 0 0 0
## 14306 0 0 0
## 14307 0 0 0
## 14308 0 0 0
## 14309 0 0 0
## 14310 0 0 0
## 14311 0 0 0
## 14312 0 0 0
## 14313 0 0 0
## 14314 0 0 0
## 14315 0 0 0
## 14316 0 0 0
## 14317 0 0 0
## 14318 0 0 0
## 14319 0 0 0
## 14320 0 0 0
## 14321 0 0 0
## 14322 0 0 0
## 14323 0 0 0
## 14324 0 0 0
## 14325 0 0 0
## 14326 0 0 0
## 14327 0 0 0
## 14328 0 0 0
## 14329 0 0 0
## 14330 0 0 0
## 14331 0 0 0
## 14332 0 0 0
## 14333 0 0 0
## 14334 0 0 0
## 14335 0 0 0
## 14336 0 0 0
## 14337 0 0 0
## 14338 0 0 0
## 14339 0 0 0
## 14340 0 0 0
## 14341 0 0 0
## 14342 0 0 0
## 14343 0 0 0
## 14344 0 0 0
## 14345 0 0 0
## 14346 0 0 0
## 14347 0 0 0
## 14348 0 0 0
## 14349 0 0 0
## 14350 0 0 0
## 14351 0 0 0
## 14352 0 0 0
## 14353 0 0 0
## 14354 0 0 0
## 14355 0 0 0
## 14356 0 0 0
## 14357 0 0 0
## 14358 0 0 0
## 14359 0 0 0
## 14360 0 0 0
## 14361 0 0 0
## 14362 0 0 0
## 14363 0 0 0
## 14364 0 0 0
## 14365 0 0 0
## 14366 0 0 0
## 14367 0 0 0
## 14368 0 0 0
## 14369 0 0 0
## 14370 0 0 0
## 14371 0 0 0
## 14372 0 0 0
## 14373 0 0 0
## 14374 0 0 0
## 14375 0 0 0
## 14376 0 0 0
## 14377 0 0 0
## 14378 0 0 0
## 14379 0 0 0
## 14380 0 0 0
## 14381 0 0 0
## 14382 0 0 0
## 14383 0 0 0
## 14384 0 0 0
## 14385 0 0 0
## 14386 0 0 0
## 14387 0 0 0
## 14388 0 0 0
## 14389 0 0 0
## 14390 0 0 0
## 14391 0 0 0
## 14392 0 0 0
## 14393 0 0 0
## 14394 0 0 0
## 14395 0 0 0
## 14396 0 0 0
## 14397 0 0 0
## 14398 0 0 0
## 14399 0 0 0
## 14400 0 0 0
## 14401 0 0 0
## 14402 0 0 0
## 14403 0 0 0
## 14404 0 0 0
## 14405 0 0 0
## 14406 0 0 0
## 14407 0 0 0
## 14408 0 0 0
## 14409 0 0 0
## 14410 0 0 0
## 14411 0 0 0
## 14412 0 0 0
## 14413 0 0 0
## 14414 0 0 0
## 14415 0 0 0
## 14416 0 0 0
## 14417 0 0 0
## 14418 0 0 0
## 14419 0 0 0
## 14420 0 0 0
## 14421 0 0 0
## 14422 0 0 0
## 14423 0 0 0
## 14424 0 0 0
## 14425 0 0 0
## 14426 0 0 0
## 14427 0 0 0
## 14428 0 0 0
## 14429 0 0 0
## 14430 0 0 0
## 14431 0 0 0
## 14432 0 0 0
## 14433 0 0 0
## 14434 0 0 0
## 14435 0 0 0
## 14436 0 0 0
## 14437 0 0 0
## 14438 0 0 0
## 14439 0 0 0
## 14440 0 0 0
## 14441 0 0 0
## 14442 0 0 0
## 14443 0 0 0
## 14444 0 0 0
## 14445 0 0 0
## 14446 0 0 0
## 14447 0 0 0
## 14448 0 0 0
## 14449 0 0 0
## 14450 0 0 0
## 14451 0 0 0
## 14452 0 0 0
## 14453 0 0 0
## 14454 0 0 0
## 14455 0 0 0
## 14456 0 0 0
## 14457 0 0 0
## 14458 0 0 0
## 14459 0 0 0
## 14460 0 0 0
## 14461 0 0 0
## 14462 0 0 0
## 14463 0 0 0
## 14464 0 0 0
## 14465 0 0 0
## 14466 0 0 0
## 14467 0 0 0
## 14468 0 0 0
## 14469 0 0 0
## 14470 0 0 0
## 14471 0 0 0
## 14472 0 0 0
## 14473 0 0 0
## 14474 0 0 0
## 14475 0 0 0
## 14476 0 0 0
## 14477 0 0 0
## 14478 0 0 0
## 14479 0 0 0
## 14480 0 0 0
## 14481 0 0 0
## 14482 0 0 0
## 14483 0 0 0
## 14484 0 0 0
## 14485 0 0 0
## 14486 0 0 0
## 14487 0 0 0
## 14488 0 0 0
## 14489 0 0 0
## 14490 0 0 0
## 14491 0 0 0
## 14492 0 0 0
## 14493 0 0 0
## 14494 0 0 0
## 14495 0 0 0
## 14496 0 0 0
## 14497 0 0 0
## 14498 0 0 0
## 14499 0 0 0
## 14500 0 0 0
## 14501 0 0 0
## 14502 0 0 0
## 14503 0 0 0
## 14504 0 0 0
## 14505 0 0 0
## 14506 0 0 0
## 14507 0 0 0
## 14508 0 0 0
## 14509 0 0 0
## 14510 0 0 0
## 14511 0 0 0
## 14512 0 0 0
## 14513 0 0 0
## 14514 0 0 0
## 14515 0 0 0
## 14516 0 0 0
## 14517 0 0 0
## 14518 0 0 0
## 14519 0 0 0
## 14520 0 0 0
## 14521 0 0 0
## 14522 0 0 0
## 14523 0 0 0
## 14524 0 0 0
## 14525 0 0 0
## 14526 0 0 0
## 14527 0 0 0
## 14528 0 0 0
## 14529 0 0 0
## 14530 0 0 0
## 14531 0 0 0
## 14532 0 0 0
## 14533 0 0 0
## 14534 0 0 0
## 14535 0 0 0
## 14536 0 0 0
## 14537 0 0 0
## 14538 0 0 0
## 14539 0 0 0
## 14540 0 0 0
## 14541 0 0 0
## 14542 0 0 0
## 14543 0 0 0
## 14544 0 0 0
## 14545 0 0 0
## 14546 0 0 0
## 14547 0 0 0
## 14548 0 0 0
## 14549 0 0 0
## 14550 0 0 0
## 14551 0 0 0
## 14552 0 0 0
## 14553 0 0 0
## 14554 0 0 0
## 14555 0 0 0
## 14556 0 0 0
## 14557 0 0 0
## 14558 0 0 0
## 14559 0 0 0
## 14560 0 0 0
## 14561 0 0 0
## 14562 0 0 0
## 14563 0 0 0
## 14564 0 0 0
## 14565 0 0 0
## 14566 0 0 0
## 14567 0 0 0
## 14568 0 0 0
## 14569 0 0 0
## 14570 0 0 0
## 14571 0 0 0
## 14572 0 0 0
## 14573 0 0 0
## 14574 0 0 0
## 14575 0 0 0
## 14576 0 0 0
## 14577 0 0 0
## 14578 0 0 0
## 14579 0 0 0
## 14580 0 0 0
## 14581 0 0 0
## 14582 0 0 0
## 14583 0 0 0
## 14584 0 0 0
## 14585 0 0 0
## 14586 0 0 0
## 14587 0 0 0
## 14588 0 0 0
## 14589 0 0 0
## 14590 0 0 0
## 14591 0 0 0
## 14592 0 0 0
## 14593 0 0 0
## 14594 0 0 0
## 14595 0 0 0
## 14596 0 0 0
## 14597 0 0 0
## 14598 0 0 0
## 14599 0 0 0
## 14600 0 0 0
## 14601 0 0 0
## 14602 0 0 0
## 14603 0 0 0
## 14604 0 0 0
## 14605 0 0 0
## 14606 0 0 0
## 14607 0 0 0
## 14608 0 0 0
## 14609 0 0 0
## 14610 0 0 0
## 14611 0 0 0
## 14612 0 0 0
## 14613 0 0 0
## 14614 0 0 0
## 14615 0 0 0
## 14616 0 0 0
## 14617 0 0 0
## 14618 0 0 0
## 14619 0 0 0
## 14620 0 0 0
## 14621 0 0 0
## 14622 0 0 0
## 14623 0 0 0
## 14624 0 0 0
## 14625 0 0 0
## 14626 0 0 0
## 14627 0 0 0
## 14628 0 0 0
## 14629 0 0 0
## 14630 0 0 0
## 14631 0 0 0
## 14632 0 0 0
## 14633 0 0 0
## 14634 0 0 0
## 14635 0 0 0
## 14636 0 0 0
## 14637 0 0 0
## 14638 0 0 0
## 14639 0 0 0
## 14640 0 0 0
## 14641 0 0 0
## 14642 0 0 0
## 14643 0 0 0
## 14644 0 0 0
## 14645 0 0 0
## 14646 0 0 0
## 14647 0 0 0
## 14648 0 0 0
## 14649 0 0 0
## 14650 0 0 0
## 14651 0 0 0
## 14652 0 0 0
## 14653 0 0 0
## 14654 0 0 0
## 14655 0 0 0
## 14656 0 0 0
## 14657 0 0 0
## 14658 0 0 0
## 14659 0 0 0
## 14660 0 0 0
## 14661 0 0 0
## 14662 0 0 0
## 14663 0 0 0
## 14664 0 0 0
## 14665 0 0 0
## 14666 0 0 0
## 14667 0 0 0
## 14668 0 0 0
## 14669 0 0 0
## 14670 0 0 0
## 14671 0 0 0
## 14672 0 0 0
## 14673 0 0 0
## 14674 0 0 0
## 14675 0 0 0
## 14676 0 0 0
## 14677 0 0 0
## 14678 0 0 0
## 14679 0 0 0
## 14680 0 0 0
## 14681 0 0 0
## 14682 0 0 0
## 14683 0 0 0
## 14684 0 0 0
## 14685 0 0 0
## 14686 0 0 0
## 14687 0 0 0
## 14688 0 0 0
## 14689 0 0 0
## 14690 0 0 0
## 14691 0 0 0
## 14692 0 0 0
## 14693 0 0 0
## 14694 0 0 0
## 14695 0 0 0
## 14696 0 0 0
## 14697 0 0 0
## 14698 0 0 0
## 14699 0 0 0
## 14700 0 0 0
## 14701 0 0 0
## 14702 0 0 0
## 14703 0 0 0
## 14704 0 0 0
## 14705 0 0 0
## 14706 0 0 0
## 14707 0 0 0
## 14708 0 0 0
## 14709 0 0 0
## 14710 0 0 0
## 14711 0 0 0
## 14712 0 0 0
## 14713 0 0 0
## 14714 0 0 0
## 14715 0 0 0
## 14716 0 0 0
## 14717 0 0 0
## 14718 0 0 0
## 14719 0 0 0
## 14720 0 0 0
## 14721 0 0 0
## 14722 0 0 0
## 14723 0 0 0
## 14724 0 0 0
## 14725 0 0 0
## 14726 0 0 0
## 14727 0 0 0
## 14728 0 0 0
## 14729 0 0 0
## 14730 0 0 0
## 14731 0 0 0
## 14732 0 0 0
## 14733 0 0 0
## 14734 0 0 0
## 14735 0 0 0
## 14736 0 0 0
## 14737 0 0 0
## 14738 0 0 0
## 14739 0 0 0
## 14740 0 0 0
## 14741 0 0 0
## 14742 0 0 0
## 14743 0 0 0
## 14744 0 0 0
## 14745 0 0 0
## 14746 0 0 0
## 14747 0 0 0
## 14748 0 0 0
## 14749 0 0 0
## 14750 0 0 0
## 14751 0 0 0
## 14752 0 0 0
## 14753 0 0 0
## 14754 0 0 0
## 14755 0 0 0
## 14756 0 0 0
## 14757 0 0 0
## 14758 0 0 0
## 14759 0 0 0
## 14760 0 0 0
## 14761 0 0 0
## 14762 0 0 0
## 14763 0 0 0
## 14764 0 0 0
## 14765 0 0 0
## 14766 0 0 0
## 14767 0 0 0
## 14768 0 0 0
## 14769 0 0 0
## 14770 0 0 0
## 14771 0 0 0
## 14772 0 0 0
## 14773 0 0 0
## 14774 0 0 0
## 14775 0 0 0
## 14776 0 0 0
## 14777 0 0 0
## 14778 0 0 0
## 14779 0 0 0
## 14780 0 0 0
## 14781 0 0 0
## 14782 0 0 0
## 14783 0 0 0
## 14784 0 0 0
## 14785 0 0 0
## 14786 0 0 0
## 14787 0 0 0
## 14788 0 0 0
## 14789 0 0 0
## 14790 0 0 0
## 14791 0 0 0
## 14792 0 0 0
## 14793 0 0 0
## 14794 0 0 0
## 14795 0 0 0
## 14796 0 0 0
## 14797 0 0 0
## 14798 0 0 0
## 14799 0 0 0
## 14800 0 0 0
## 14801 0 0 0
## 14802 0 0 0
## 14803 0 0 0
## 14804 0 0 0
## 14805 0 0 0
## 14806 0 0 0
## 14807 0 0 0
## 14808 0 0 0
## 14809 0 0 0
## 14810 0 0 0
## 14811 0 0 0
## 14812 0 0 0
## 14813 0 0 0
## 14814 0 0 0
## 14815 0 0 0
## 14816 0 0 0
## 14817 0 0 0
## 14818 0 0 0
## 14819 0 0 0
## 14820 0 0 0
## 14821 0 0 0
## 14822 0 0 0
## 14823 0 0 0
## 14824 0 0 0
## 14825 0 0 0
## 14826 0 0 0
## 14827 0 0 0
## 14828 0 0 0
## 14829 0 0 0
## 14830 0 0 0
## 14831 0 0 0
## 14832 0 0 0
## 14833 0 0 0
## 14834 0 0 0
## 14835 0 0 0
## 14836 0 0 0
## 14837 0 0 0
## 14838 0 0 0
## 14839 0 0 0
## 14840 0 0 0
## 14841 0 0 0
## 14842 0 0 0
## 14843 0 0 0
## 14844 0 0 0
## 14845 0 0 0
## 14846 0 0 0
## 14847 0 0 0
## 14848 0 0 0
## 14849 0 0 0
## 14850 0 0 0
## 14851 0 0 0
## 14852 0 0 0
## 14853 0 0 0
## 14854 0 0 0
## 14855 0 0 0
## 14856 0 0 0
## 14857 0 0 0
## 14858 0 0 0
## 14859 0 0 0
## 14860 0 0 0
## 14861 0 0 0
## 14862 0 0 0
## 14863 0 0 0
## 14864 0 0 0
## 14865 0 0 0
## 14866 0 0 0
## 14867 0 0 0
## 14868 0 0 0
## 14869 0 0 0
## 14870 0 0 0
## 14871 0 0 0
## 14872 0 0 0
## 14873 0 0 0
## 14874 0 0 0
## 14875 0 0 0
## 14876 0 0 0
## 14877 0 0 0
## 14878 0 0 0
## 14879 0 0 0
## 14880 0 0 0
## 14881 0 0 0
## 14882 0 0 0
## 14883 0 0 0
## 14884 0 0 0
## 14885 0 0 0
## 14886 0 0 0
## 14887 0 0 0
## 14888 0 0 0
## 14889 0 0 0
## 14890 0 0 0
## 14891 0 0 0
## 14892 0 0 0
## 14893 0 0 0
## 14894 0 0 0
## 14895 0 0 0
## 14896 0 0 0
## 14897 0 0 0
## 14898 0 0 0
## 14899 0 0 0
## 14900 0 0 0
## 14901 0 0 0
## 14902 0 0 0
## 14903 0 0 0
## 14904 0 0 0
## 14905 0 0 0
## 14906 0 0 0
## 14907 0 0 0
## 14908 0 0 0
## 14909 0 0 0
## 14910 0 0 0
## 14911 0 0 0
## 14912 0 0 0
## 14913 0 0 0
## 14914 0 0 0
## 14915 0 0 0
## 14916 0 0 0
## 14917 0 0 0
## 14918 0 0 0
## 14919 0 0 0
## 14920 0 0 0
## 14921 0 0 0
## 14922 0 0 0
## 14923 0 0 0
## 14924 0 0 0
## 14925 0 0 0
## 14926 0 0 0
## 14927 0 0 0
## 14928 0 0 0
## 14929 0 0 0
## 14930 0 0 0
## 14931 0 0 0
## 14932 0 0 0
## 14933 0 0 0
## 14934 0 0 0
## 14935 0 0 0
## 14936 0 0 0
## 14937 0 0 0
## 14938 0 0 0
## 14939 0 0 0
## 14940 0 0 0
## 14941 0 0 0
## 14942 0 0 0
## 14943 0 0 0
## 14944 0 0 0
## 14945 0 0 0
## 14946 0 0 0
## 14947 0 0 0
## 14948 0 0 0
## 14949 0 0 0
## 14950 0 0 0
## 14951 0 0 0
## 14952 0 0 0
## 14953 0 0 0
## 14954 0 0 0
## 14955 0 0 0
## 14956 0 0 0
## 14957 0 0 0
## 14958 0 0 0
## 14959 0 0 0
## 14960 0 0 0
## 14961 0 0 0
## 14962 0 0 0
## 14963 0 0 0
## 14964 0 0 0
## 14965 0 0 0
## 14966 0 0 0
## 14967 0 0 0
## 14968 0 0 0
## 14969 0 0 0
## 14970 0 0 0
## 14971 0 0 0
## 14972 0 0 0
## 14973 0 0 0
## 14974 0 0 0
## 14975 0 0 0
## 14976 0 0 0
## 14977 0 0 0
## 14978 0 0 0
## 14979 0 0 0
## 14980 0 0 0
## 14981 0 0 0
## 14982 0 0 0
## 14983 0 0 0
## 14984 0 0 0
## 14985 0 0 0
## 14986 0 0 0
## 14987 0 0 0
## 14988 0 0 0
## 14989 0 0 0
## 14990 0 0 0
## 14991 0 0 0
## 14992 0 0 0
## 14993 0 0 0
## 14994 0 0 0
## 14995 0 0 0
## 14996 0 0 0
## 14997 0 0 0
## 14998 0 0 0
## 14999 0 0 0
## 15000 0 0 0
## 15001 0 0 0
## 15002 0 0 0
## 15003 0 0 0
## 15004 0 0 0
## 15005 0 0 0
## 15006 0 0 0
## 15007 0 0 0
## 15008 0 0 0
## 15009 0 0 0
## 15010 0 0 0
## 15011 0 0 0
## 15012 0 0 0
## 15013 0 0 0
## 15014 0 0 0
## 15015 0 0 0
## 15016 0 0 0
## 15017 0 0 0
## 15018 0 0 0
## 15019 0 0 0
## 15020 0 0 0
## 15021 0 0 0
## 15022 0 0 0
## 15023 0 0 0
## 15024 0 0 0
## 15025 0 0 0
## 15026 0 0 0
## 15027 0 0 0
## 15028 0 0 0
## 15029 0 0 0
## 15030 0 0 0
## 15031 0 0 0
## 15032 0 0 0
## 15033 0 0 0
## 15034 0 0 0
## 15035 0 0 0
## 15036 0 0 0
## 15037 0 0 0
## 15038 0 0 0
## 15039 0 0 0
## 15040 0 0 0
## 15041 0 0 0
## 15042 0 0 0
## 15043 0 0 0
## 15044 0 0 0
## 15045 0 0 0
## 15046 0 0 0
## 15047 0 0 0
## 15048 0 0 0
## 15049 0 0 0
## 15050 0 0 0
## 15051 0 0 0
## 15052 0 0 0
## 15053 0 0 0
## 15054 0 0 0
## 15055 0 0 0
## 15056 0 0 0
## 15057 0 0 0
## 15058 0 0 0
## 15059 0 0 0
## 15060 0 0 0
## 15061 0 0 0
## 15062 0 0 0
## 15063 0 0 0
## 15064 0 0 0
## 15065 0 0 0
## 15066 0 0 0
## 15067 0 0 0
## 15068 0 0 0
## 15069 0 0 0
## 15070 0 0 0
## 15071 0 0 0
## 15072 0 0 0
## 15073 0 0 0
## 15074 0 0 0
## 15075 0 0 0
## 15076 0 0 0
## 15077 0 0 0
## 15078 0 0 0
## 15079 0 0 0
## 15080 0 0 0
## 15081 0 0 0
## 15082 0 0 0
## 15083 0 0 0
## 15084 0 0 0
## 15085 0 0 0
## 15086 0 0 0
## 15087 0 0 0
## 15088 0 0 0
## 15089 0 0 0
## 15090 0 0 0
## 15091 0 0 0
## 15092 0 0 0
## 15093 0 0 0
## 15094 0 0 0
## 15095 0 0 0
## 15096 0 0 0
## 15097 0 0 0
## 15098 0 0 0
## 15099 0 0 0
## 15100 0 0 0
## 15101 0 0 0
## 15102 0 0 0
## 15103 0 0 0
## 15104 0 0 0
## 15105 0 0 0
## 15106 0 0 0
## 15107 0 0 0
## 15108 0 0 0
## 15109 0 0 0
## 15110 0 0 0
## 15111 0 0 0
## 15112 0 0 0
## 15113 0 0 0
## 15114 0 0 0
## 15115 0 0 0
## 15116 0 0 0
## 15117 0 0 0
## 15118 0 0 0
## 15119 0 0 0
## 15120 0 0 0
## 15121 0 0 0
## 15122 0 0 0
## 15123 0 0 0
## 15124 0 0 0
## 15125 0 0 0
## 15126 0 0 0
## 15127 0 0 0
## 15128 0 0 0
## 15129 0 0 0
## 15130 0 0 0
## 15131 0 0 0
## 15132 0 0 0
## 15133 0 0 0
## 15134 0 0 0
## 15135 0 0 0
## 15136 0 0 0
## 15137 0 0 0
## 15138 0 0 0
## 15139 0 0 0
## 15140 0 0 0
## 15141 0 0 0
## 15142 0 0 0
## 15143 0 0 0
## 15144 0 0 0
## 15145 0 0 0
## 15146 0 0 0
## 15147 0 0 0
## 15148 0 0 0
## 15149 0 0 0
## 15150 0 0 0
## 15151 0 0 0
## 15152 0 0 0
## 15153 0 0 0
## 15154 0 0 0
## 15155 0 0 0
## 15156 0 0 0
## 15157 0 0 0
## 15158 0 0 0
## 15159 0 0 0
## 15160 0 0 0
## 15161 0 0 0
## 15162 0 0 0
## 15163 0 0 0
## 15164 0 0 0
## 15165 0 0 0
## 15166 0 0 0
## 15167 0 0 0
## 15168 0 0 0
## 15169 0 0 0
## 15170 0 0 0
## 15171 0 0 0
## 15172 0 0 0
## 15173 0 0 0
## 15174 0 0 0
## 15175 0 0 0
## 15176 0 0 0
## 15177 0 0 0
## 15178 0 0 0
## 15179 0 0 0
## 15180 0 0 0
## 15181 0 0 0
## 15182 0 0 0
## 15183 0 0 0
## 15184 0 0 0
## 15185 0 0 0
## 15186 0 0 0
## 15187 0 0 0
## 15188 0 0 0
## 15189 0 0 0
## 15190 0 0 0
## 15191 0 0 0
## 15192 0 0 0
## 15193 0 0 0
## 15194 0 0 0
## 15195 0 0 0
## 15196 0 0 0
## 15197 0 0 0
## 15198 0 0 0
## 15199 0 0 0
## 15200 0 0 0
## 15201 0 0 0
## 15202 0 0 0
## 15203 0 0 0
## 15204 0 0 0
## 15205 0 0 0
## 15206 0 0 0
## 15207 0 0 0
## 15208 0 0 0
## 15209 0 0 0
## 15210 0 0 0
## 15211 0 0 0
## 15212 0 0 0
## 15213 0 0 0
## 15214 0 0 0
## 15215 0 0 0
## 15216 0 0 0
## 15217 0 0 0
## 15218 0 0 0
## 15219 0 0 0
## 15220 0 0 0
## 15221 0 0 0
## 15222 0 0 0
## 15223 0 0 0
## 15224 0 0 0
## 15225 0 0 0
## 15226 0 0 0
## 15227 0 0 0
## 15228 0 0 0
## 15229 0 0 0
## 15230 0 0 0
## 15231 0 0 0
## 15232 0 0 0
## 15233 0 0 0
## 15234 0 0 0
## 15235 0 0 0
## 15236 0 0 0
## 15237 0 0 0
## 15238 0 0 0
## 15239 0 0 0
## 15240 0 0 0
## 15241 0 0 0
## 15242 0 0 0
## 15243 0 0 0
## 15244 0 0 0
## 15245 0 0 0
## 15246 0 0 0
## 15247 0 0 0
## 15248 0 0 0
## 15249 0 0 0
## 15250 0 0 0
## 15251 0 0 0
## 15252 0 0 0
## 15253 0 0 0
## 15254 0 0 0
## 15255 0 0 0
## 15256 0 0 0
## 15257 0 0 0
## 15258 0 0 0
## 15259 0 0 0
## 15260 0 0 0
## 15261 0 0 0
## 15262 0 0 0
## 15263 0 0 0
## 15264 0 0 0
## 15265 0 0 0
## 15266 0 0 0
## 15267 0 0 0
## 15268 0 0 0
## 15269 0 0 0
## 15270 0 0 0
## 15271 0 0 0
## 15272 0 0 0
## 15273 0 0 0
## 15274 0 0 0
## 15275 0 0 0
## 15276 0 0 0
## 15277 0 0 0
## 15278 0 0 0
## 15279 0 0 0
## 15280 0 0 0
## 15281 0 0 0
## 15282 0 0 0
## 15283 0 0 0
## 15284 0 0 0
## 15285 0 0 0
## 15286 0 0 0
## 15287 0 0 0
## 15288 0 0 0
## 15289 0 0 0
## 15290 0 0 0
## 15291 0 0 0
## 15292 0 0 0
## 15293 0 0 0
## 15294 0 0 0
## 15295 0 0 0
## 15296 0 0 0
## 15297 0 0 0
## 15298 0 0 0
## 15299 0 0 0
## 15300 0 0 0
## 15301 0 0 0
## 15302 0 0 0
## 15303 0 0 0
## 15304 0 0 0
## 15305 0 0 0
## 15306 0 0 0
## 15307 0 0 0
## 15308 0 0 0
## 15309 0 0 0
## 15310 0 0 0
## 15311 0 0 0
## 15312 0 0 0
## 15313 0 0 0
## 15314 0 0 0
## 15315 0 0 0
## 15316 0 0 0
## 15317 0 0 0
## 15318 0 0 0
## 15319 0 0 0
## 15320 0 0 0
## 15321 0 0 0
## 15322 0 0 0
## 15323 0 0 0
## 15324 0 0 0
## 15325 0 0 0
## 15326 0 0 0
## 15327 0 0 0
## 15328 0 0 0
## 15329 0 0 0
## 15330 0 0 0
## 15331 0 0 0
## 15332 0 0 0
## 15333 0 0 0
## 15334 0 0 0
## 15335 0 0 0
## 15336 0 0 0
## 15337 0 0 0
## 15338 0 0 0
## 15339 0 0 0
## 15340 0 0 0
## 15341 0 0 0
## 15342 0 0 0
## 15343 0 0 0
## 15344 0 0 0
## 15345 0 0 0
## 15346 0 0 0
## 15347 0 0 0
## 15348 0 0 0
## 15349 0 0 0
## 15350 0 0 0
## 15351 0 0 0
## 15352 0 0 0
## 15353 0 0 0
## 15354 0 0 0
## 15355 0 0 0
## 15356 0 0 0
## 15357 0 0 0
## 15358 0 0 0
## 15359 0 0 0
## 15360 0 0 0
## 15361 0 0 0
## 15362 0 0 0
## 15363 0 0 0
## 15364 0 0 0
## 15365 0 0 0
## 15366 0 0 0
## 15367 0 0 0
## 15368 0 0 0
## 15369 0 0 0
## 15370 0 0 0
## 15371 0 0 0
## 15372 0 0 0
## 15373 0 0 0
## 15374 0 0 0
## 15375 0 0 0
## 15376 0 0 0
## 15377 0 0 0
## 15378 0 0 0
## 15379 0 0 0
## 15380 0 0 0
## 15381 0 0 0
## 15382 0 0 0
## 15383 0 0 0
## 15384 0 0 0
## 15385 0 0 0
## 15386 0 0 0
## 15387 0 0 0
## 15388 0 0 0
## 15389 0 0 0
## 15390 0 0 0
## 15391 0 0 0
## 15392 0 0 0
## 15393 0 0 0
## 15394 0 0 0
## 15395 0 0 0
## 15396 0 0 0
## 15397 0 0 0
## 15398 0 0 0
## 15399 0 0 0
## 15400 0 0 0
## 15401 0 0 0
## 15402 0 0 0
## 15403 0 0 0
## 15404 0 0 0
## 15405 0 0 0
## 15406 0 0 0
## 15407 0 0 0
## 15408 0 0 0
## 15409 0 0 0
## 15410 0 0 0
## 15411 0 0 0
## 15412 0 0 0
## 15413 0 0 0
## 15414 0 0 0
## 15415 0 0 0
## 15416 0 0 0
## 15417 0 0 0
## 15418 0 0 0
## 15419 0 0 0
## 15420 0 0 0
## 15421 0 0 0
## 15422 0 0 0
## 15423 0 0 0
## 15424 0 0 0
## 15425 0 0 0
## 15426 0 0 0
## 15427 0 0 0
## 15428 0 0 0
## 15429 0 0 0
## 15430 0 0 0
## 15431 0 0 0
## 15432 0 0 0
## 15433 0 0 0
## 15434 0 0 0
## 15435 0 0 0
## 15436 0 0 0
## 15437 0 0 0
## 15438 0 0 0
## 15439 0 0 0
## 15440 0 0 0
## 15441 0 0 0
## 15442 0 0 0
## 15443 0 0 0
## 15444 0 0 0
## 15445 0 0 0
## 15446 0 0 0
## 15447 0 0 0
## 15448 0 0 0
## 15449 0 0 0
## 15450 0 0 0
## 15451 0 0 0
## 15452 0 0 0
## 15453 0 0 0
## 15454 0 0 0
## 15455 0 0 0
## 15456 0 0 0
## 15457 0 0 0
## 15458 0 0 0
## 15459 0 0 0
## 15460 0 0 0
## 15461 0 0 0
## 15462 0 0 0
## 15463 0 0 0
## 15464 0 0 0
## 15465 0 0 0
## 15466 0 0 0
## 15467 0 0 0
## 15468 0 0 0
## 15469 0 0 0
## 15470 0 0 0
## 15471 0 0 0
## 15472 0 0 0
## 15473 0 0 0
## 15474 0 0 0
## 15475 0 0 0
## 15476 0 0 0
## 15477 0 0 0
## 15478 0 0 0
## 15479 0 0 0
## 15480 0 0 0
## 15481 0 0 0
## 15482 0 0 0
## 15483 0 0 0
## 15484 0 0 0
## 15485 0 0 0
## 15486 0 0 0
## 15487 0 0 0
## 15488 0 0 0
## 15489 0 0 0
## 15490 0 0 0
## 15491 0 0 0
## 15492 0 0 0
## 15493 0 0 0
## 15494 0 0 0
## 15495 0 0 0
## 15496 0 0 0
## 15497 0 0 0
## 15498 0 0 0
## 15499 0 0 0
## 15500 0 0 0
## 15501 0 0 0
## 15502 0 0 0
## 15503 0 0 0
## 15504 0 0 0
## 15505 0 0 0
## 15506 0 0 0
## 15507 0 0 0
## 15508 0 0 0
## 15509 0 0 0
## 15510 0 0 0
## 15511 0 0 0
## 15512 0 0 0
## 15513 0 0 0
## 15514 0 0 0
## 15515 0 0 0
## 15516 0 0 0
## 15517 0 0 0
## 15518 0 0 0
## 15519 0 0 0
## 15520 0 0 0
## 15521 0 0 0
## 15522 0 0 0
## 15523 0 0 0
## 15524 0 0 0
## 15525 0 0 0
## 15526 0 0 0
## 15527 0 0 0
## 15528 0 0 0
## 15529 0 0 0
## 15530 0 0 0
## 15531 0 0 0
## 15532 0 0 0
## 15533 0 0 0
## 15534 0 0 0
## 15535 0 0 0
## 15536 0 0 0
## 15537 0 0 0
## 15538 0 0 0
## 15539 0 0 0
## 15540 0 0 0
## 15541 0 0 0
## 15542 0 0 0
## 15543 0 0 0
## 15544 0 0 0
## 15545 0 0 0
## 15546 0 0 0
## 15547 0 0 0
## 15548 0 0 0
## 15549 0 0 0
## 15550 0 0 0
## 15551 0 0 0
## 15552 0 0 0
## 15553 0 0 0
## 15554 0 0 0
## 15555 0 0 0
## 15556 0 0 0
## 15557 0 0 0
## 15558 0 0 0
## 15559 0 0 0
## 15560 0 0 0
## 15561 0 0 0
## 15562 0 0 0
## 15563 0 0 0
## 15564 0 0 0
## 15565 0 0 0
## 15566 0 0 0
## 15567 0 0 0
## 15568 0 0 0
## 15569 0 0 0
## 15570 0 0 0
## 15571 0 0 0
## 15572 0 0 0
## 15573 0 0 0
## 15574 0 0 0
## 15575 0 0 0
## 15576 0 0 0
## 15577 0 0 0
## 15578 0 0 0
## 15579 0 0 0
## 15580 0 0 0
## 15581 0 0 0
## 15582 0 0 0
## 15583 0 0 0
## 15584 0 0 0
## 15585 0 0 0
## 15586 0 0 0
## 15587 0 0 0
## 15588 0 0 0
## 15589 0 0 0
## 15590 0 0 0
## 15591 0 0 0
## 15592 0 0 0
## 15593 0 0 0
## 15594 0 0 0
## 15595 0 0 0
## 15596 0 0 0
## 15597 0 0 0
## 15598 0 0 0
## 15599 0 0 0
## 15600 0 0 0
## 15601 0 0 0
## 15602 0 0 0
## 15603 0 0 0
## 15604 0 0 0
## 15605 0 0 0
## 15606 0 0 0
## 15607 0 0 0
## 15608 0 0 0
## 15609 0 0 0
## 15610 0 0 0
## 15611 0 0 0
## 15612 0 0 0
## 15613 0 0 0
## 15614 0 0 0
## 15615 0 0 0
## 15616 0 0 0
## 15617 0 0 0
## 15618 0 0 0
## 15619 0 0 0
## 15620 0 0 0
## 15621 0 0 0
## 15622 0 0 0
## 15623 0 0 0
## 15624 0 0 0
## 15625 0 0 0
## 15626 0 0 0
## 15627 0 0 0
## 15628 0 0 0
## 15629 0 0 0
## 15630 0 0 0
## 15631 0 0 0
## 15632 0 0 0
## 15633 0 0 0
## 15634 0 0 0
## 15635 0 0 0
## 15636 0 0 0
## 15637 0 0 0
## 15638 0 0 0
## 15639 0 0 0
## 15640 0 0 0
## 15641 0 0 0
## 15642 0 0 0
## 15643 0 0 0
## 15644 0 0 0
## 15645 0 0 0
## 15646 0 0 0
## 15647 0 0 0
## 15648 0 0 0
## 15649 0 0 0
## 15650 0 0 0
## 15651 0 0 0
## 15652 0 0 0
## 15653 0 0 0
## 15654 0 0 0
## 15655 0 0 0
## 15656 0 0 0
## 15657 0 0 0
## 15658 0 0 0
## 15659 0 0 0
## 15660 0 0 0
## 15661 0 0 0
## 15662 0 0 0
## 15663 0 0 0
## 15664 0 0 0
## 15665 0 0 0
## 15666 0 0 0
## 15667 0 0 0
## 15668 0 0 0
## 15669 0 0 0
## 15670 0 0 0
## 15671 0 0 0
## 15672 0 0 0
## 15673 0 0 0
## 15674 0 0 0
## 15675 0 0 0
## 15676 0 0 0
## 15677 0 0 0
## 15678 0 0 0
## 15679 0 0 0
## 15680 0 0 0
## 15681 0 0 0
## 15682 0 0 0
## 15683 0 0 0
## 15684 0 0 0
## 15685 0 0 0
## 15686 0 0 0
## 15687 0 0 0
## 15688 0 0 0
## 15689 0 0 0
## 15690 0 0 0
## 15691 0 0 0
## 15692 0 0 0
## 15693 0 0 0
## 15694 0 0 0
## 15695 0 0 0
## 15696 0 0 0
## 15697 0 0 0
## 15698 0 0 0
## 15699 0 0 0
## 15700 0 0 0
## 15701 0 0 0
## 15702 0 0 0
## 15703 0 0 0
## 15704 0 0 0
## 15705 0 0 0
## 15706 0 0 0
## 15707 0 0 0
## 15708 0 0 0
## 15709 0 0 0
## 15710 0 0 0
## 15711 0 0 0
## 15712 0 0 0
## 15713 0 0 0
## 15714 0 0 0
## 15715 0 0 0
## 15716 0 0 0
## 15717 0 0 0
## 15718 0 0 0
## 15719 0 0 0
## 15720 0 0 0
## 15721 0 0 0
## 15722 0 0 0
## 15723 0 0 0
## 15724 0 0 0
## 15725 0 0 0
## 15726 0 0 0
## 15727 0 0 0
## 15728 0 0 0
## 15729 0 0 0
## 15730 0 0 0
## 15731 0 0 0
## 15732 0 0 0
## 15733 0 0 0
## 15734 0 0 0
## 15735 0 0 0
## 15736 0 0 0
## 15737 0 0 0
## 15738 0 0 0
## 15739 0 0 0
## 15740 0 0 0
## 15741 0 0 0
## 15742 0 0 0
## 15743 0 0 0
## 15744 0 0 0
## 15745 0 0 0
## 15746 0 0 0
## 15747 0 0 0
## 15748 0 0 0
## 15749 0 0 0
## 15750 0 0 0
## 15751 0 0 0
## 15752 0 0 0
## 15753 0 0 0
## 15754 0 0 0
## 15755 0 0 0
## 15756 0 0 0
## 15757 0 0 0
## 15758 0 0 0
## 15759 0 0 0
## 15760 0 0 0
## 15761 0 0 0
## 15762 0 0 0
## 15763 0 0 0
## 15764 0 0 0
## 15765 0 0 0
## 15766 0 0 0
## 15767 0 0 0
## 15768 0 0 0
## 15769 0 0 0
## 15770 0 0 0
## 15771 0 0 0
## 15772 0 0 0
## 15773 0 0 0
## 15774 0 0 0
## 15775 0 0 0
## 15776 0 0 0
## 15777 0 0 0
## 15778 0 0 0
## 15779 0 0 0
## 15780 0 0 0
## 15781 0 0 0
## 15782 0 0 0
## 15783 0 0 0
## 15784 0 0 0
## 15785 0 0 0
## 15786 0 0 0
## 15787 0 0 0
## 15788 0 0 0
## 15789 0 0 0
## 15790 0 0 0
## 15791 0 0 0
## 15792 0 0 0
## 15793 0 0 0
## 15794 0 0 0
## 15795 0 0 0
## 15796 0 0 0
## 15797 0 0 0
## 15798 0 0 0
## 15799 0 0 0
## 15800 0 0 0
## 15801 0 0 0
## 15802 0 0 0
## 15803 0 0 0
## 15804 0 0 0
## 15805 0 0 0
## 15806 0 0 0
## 15807 0 0 0
## 15808 0 0 0
## 15809 0 0 0
## 15810 0 0 0
## 15811 0 0 0
## 15812 0 0 0
## 15813 0 0 0
## 15814 0 0 0
## 15815 0 0 0
## 15816 0 0 0
## 15817 0 0 0
## 15818 0 0 0
## 15819 0 0 0
## 15820 0 0 0
## 15821 0 0 0
## 15822 0 0 0
## 15823 0 0 0
## 15824 0 0 0
## 15825 0 0 0
## 15826 0 0 0
## 15827 0 0 0
## 15828 0 0 0
## 15829 0 0 0
## 15830 0 0 0
## 15831 0 0 0
## 15832 0 0 0
## 15833 0 0 0
## 15834 0 0 0
## 15835 0 0 0
## 15836 0 0 0
## 15837 0 0 0
## 15838 0 0 0
## 15839 0 0 0
## 15840 0 0 0
## 15841 0 0 0
## 15842 0 0 0
## 15843 0 0 0
## 15844 0 0 0
## 15845 0 0 0
## 15846 0 0 0
## 15847 0 0 0
## 15848 0 0 0
## 15849 0 0 0
## 15850 0 0 0
## 15851 0 0 0
## 15852 0 0 0
## 15853 0 0 0
## 15854 0 0 0
## 15855 0 0 0
## 15856 0 0 0
## 15857 0 0 0
## 15858 0 0 0
## 15859 0 0 0
## 15860 0 0 0
## 15861 0 0 0
## 15862 0 0 0
## 15863 0 0 0
## 15864 0 0 0
## 15865 0 0 0
## 15866 0 0 0
## 15867 0 0 0
## 15868 0 0 0
## 15869 0 0 0
## 15870 0 0 0
## 15871 0 0 0
## 15872 0 0 0
## 15873 0 0 0
## 15874 0 0 0
## 15875 0 0 0
## 15876 0 0 0
## 15877 0 0 0
## 15878 0 0 0
## 15879 0 0 0
## 15880 0 0 0
## 15881 0 0 0
## 15882 0 0 0
## 15883 0 0 0
## 15884 0 0 0
## 15885 0 0 0
## 15886 0 0 0
## 15887 0 0 0
## 15888 0 0 0
## 15889 0 0 0
## 15890 0 0 0
## 15891 0 0 0
## 15892 0 0 0
## 15893 0 0 0
## 15894 0 0 0
## 15895 0 0 0
## 15896 0 0 0
## 15897 0 0 0
## 15898 0 0 0
## 15899 0 0 0
## 15900 0 0 0
## 15901 0 0 0
## 15902 0 0 0
## 15903 0 0 0
## 15904 0 0 0
## 15905 0 0 0
## 15906 0 0 0
## 15907 0 0 0
## 15908 0 0 0
## 15909 0 0 0
## 15910 0 0 0
## 15911 0 0 0
## 15912 0 0 0
## 15913 0 0 0
## 15914 0 0 0
## 15915 0 0 0
## 15916 0 0 0
## 15917 0 0 0
## 15918 0 0 0
## 15919 0 0 0
## 15920 0 0 0
## 15921 0 0 0
## 15922 0 0 0
## 15923 0 0 0
## 15924 0 0 0
## 15925 0 0 0
## 15926 0 0 0
## 15927 0 0 0
## 15928 0 0 0
## 15929 0 0 0
## 15930 0 0 0
## 15931 0 0 0
## 15932 0 0 0
## 15933 0 0 0
## 15934 0 0 0
## 15935 0 0 0
## 15936 0 0 0
## 15937 0 0 0
## 15938 0 0 0
## 15939 0 0 0
## 15940 0 0 0
## 15941 0 0 0
## 15942 0 0 0
## 15943 0 0 0
## 15944 0 0 0
## 15945 0 0 0
## 15946 0 0 0
## 15947 0 0 0
## 15948 0 0 0
## 15949 0 0 0
## 15950 0 0 0
## 15951 0 0 0
## 15952 0 0 0
## 15953 0 0 0
## 15954 0 0 0
## 15955 0 0 0
## 15956 0 0 0
## 15957 0 0 0
## 15958 0 0 0
## 15959 0 0 0
## 15960 0 0 0
## 15961 0 0 0
## 15962 0 0 0
## 15963 0 0 0
## 15964 0 0 0
## 15965 0 0 0
## 15966 0 0 0
## 15967 0 0 0
## 15968 0 0 0
## 15969 0 0 0
## 15970 0 0 0
## 15971 0 0 0
## 15972 0 0 0
## 15973 0 0 0
## 15974 0 0 0
## 15975 0 0 0
## 15976 0 0 0
## 15977 0 0 0
## 15978 0 0 0
## 15979 0 0 0
## 15980 0 0 0
## 15981 0 0 0
## 15982 0 0 0
## 15983 0 0 0
## 15984 0 0 0
## 15985 0 0 0
## 15986 0 0 0
## 15987 0 0 0
## 15988 0 0 0
## 15989 0 0 0
## 15990 0 0 0
## 15991 0 0 0
## 15992 0 0 0
## 15993 0 0 0
## 15994 0 0 0
## 15995 0 0 0
## 15996 0 0 0
## 15997 0 0 0
## 15998 0 0 0
## 15999 0 0 0
## 16000 0 0 0
## 16001 0 0 0
## 16002 0 0 0
## 16003 0 0 0
## 16004 0 0 0
## 16005 0 0 0
## 16006 0 0 0
## 16007 0 0 0
## 16008 0 0 0
## 16009 0 0 0
## 16010 0 0 0
## 16011 0 0 0
## 16012 0 0 0
## 16013 0 0 0
## 16014 0 0 0
## 16015 0 0 0
## 16016 0 0 0
## 16017 0 0 0
## 16018 0 0 0
## 16019 0 0 0
## 16020 0 0 0
## 16021 0 0 0
## 16022 0 0 0
## 16023 0 0 0
## 16024 0 0 0
## 16025 0 0 0
## 16026 0 0 0
## 16027 0 0 0
## 16028 0 0 0
## 16029 0 0 0
## 16030 0 0 0
## 16031 0 0 0
## 16032 0 0 0
## 16033 0 0 0
## 16034 0 0 0
## 16035 0 0 0
## 16036 0 0 0
## 16037 0 0 0
## 16038 0 0 0
## 16039 0 0 0
## 16040 0 0 0
## 16041 0 0 0
## 16042 0 0 0
## 16043 0 0 0
## 16044 0 0 0
## 16045 0 0 0
## 16046 0 0 0
## 16047 0 0 0
## 16048 0 0 0
## 16049 0 0 0
## 16050 0 0 0
## 16051 0 0 0
## 16052 0 0 0
## 16053 0 0 0
## 16054 0 0 0
## 16055 0 0 0
## 16056 0 0 0
## 16057 0 0 0
## 16058 0 0 0
## 16059 0 0 0
## 16060 0 0 0
## 16061 0 0 0
## 16062 0 0 0
## 16063 0 0 0
## 16064 0 0 0
## 16065 0 0 0
## 16066 0 0 0
## 16067 0 0 0
## 16068 0 0 0
## 16069 0 0 0
## 16070 0 0 0
## 16071 0 0 0
## 16072 0 0 0
## 16073 0 0 0
## 16074 0 0 0
## 16075 0 0 0
## 16076 0 0 0
## 16077 0 0 0
## 16078 0 0 0
## 16079 0 0 0
## 16080 0 0 0
## 16081 0 0 0
## 16082 0 0 0
## 16083 0 0 0
## 16084 0 0 0
## 16085 0 0 0
## 16086 0 0 0
## 16087 0 0 0
## 16088 0 0 0
## 16089 0 0 0
## 16090 0 0 0
## 16091 0 0 0
## 16092 0 0 0
## 16093 0 0 0
## 16094 0 0 0
## 16095 0 0 0
## 16096 0 0 0
## 16097 0 0 0
## 16098 0 0 0
## 16099 0 0 0
## 16100 0 0 0
## 16101 0 0 0
## 16102 0 0 0
## 16103 0 0 0
## 16104 0 0 0
## 16105 0 0 0
## 16106 0 0 0
## 16107 0 0 0
## 16108 0 0 0
## 16109 0 0 0
## 16110 0 0 0
## 16111 0 0 0
## 16112 0 0 0
## 16113 0 0 0
## 16114 0 0 0
## 16115 0 0 0
## 16116 0 0 0
## 16117 0 0 0
## 16118 0 0 0
## 16119 0 0 0
## 16120 0 0 0
## 16121 0 0 0
## 16122 0 0 0
## 16123 0 0 0
## 16124 0 0 0
## 16125 0 0 0
## 16126 0 0 0
## 16127 0 0 0
## 16128 0 0 0
## 16129 0 0 0
## 16130 0 0 0
## 16131 0 0 0
## 16132 0 0 0
## 16133 0 0 0
## 16134 0 0 0
## 16135 0 0 0
## 16136 0 0 0
## 16137 0 0 0
## 16138 0 0 0
## 16139 0 0 0
## 16140 0 0 0
## 16141 0 0 0
## 16142 0 0 0
## 16143 0 0 0
## 16144 0 0 0
## 16145 0 0 0
## 16146 0 0 0
## 16147 0 0 0
## 16148 0 0 0
## 16149 0 0 0
## 16150 0 0 0
## 16151 0 0 0
## 16152 0 0 0
## 16153 0 0 0
## 16154 0 0 0
## 16155 0 0 0
## 16156 0 0 0
## 16157 0 0 0
## 16158 0 0 0
## 16159 0 0 0
## 16160 0 0 0
## 16161 0 0 0
## 16162 0 0 0
## 16163 0 0 0
## 16164 0 0 0
## 16165 0 0 0
## 16166 0 0 0
## 16167 0 0 0
## 16168 0 0 0
## 16169 0 0 0
## 16170 0 0 0
## 16171 0 0 0
## 16172 0 0 0
## 16173 0 0 0
## 16174 0 0 0
## 16175 0 0 0
## 16176 0 0 0
## 16177 0 0 0
## 16178 0 0 0
## 16179 0 0 0
## 16180 0 0 0
## 16181 0 0 0
## 16182 0 0 0
## 16183 0 0 0
## 16184 0 0 0
## 16185 0 0 0
## 16186 0 0 0
## 16187 0 0 0
## 16188 0 0 0
## 16189 0 0 0
## 16190 0 0 0
## 16191 0 0 0
## 16192 0 0 0
## 16193 0 0 0
## 16194 0 0 0
## 16195 0 0 0
## 16196 0 0 0
## 16197 0 0 0
## 16198 0 0 0
## 16199 0 0 0
## 16200 0 0 0
## 16201 0 0 0
## 16202 0 0 0
## 16203 0 0 0
## 16204 0 0 0
## 16205 0 0 0
## 16206 0 0 0
## 16207 0 0 0
## 16208 0 0 0
## 16209 0 0 0
## 16210 0 0 0
## 16211 0 0 0
## 16212 0 0 0
## 16213 0 0 0
## 16214 0 0 0
## 16215 0 0 0
## 16216 0 0 0
## 16217 0 0 0
## 16218 0 0 0
## 16219 0 0 0
## 16220 0 0 0
## 16221 0 0 0
## 16222 0 0 0
## 16223 0 0 0
## 16224 0 0 0
## 16225 0 0 0
## 16226 0 0 0
## 16227 0 0 0
## 16228 0 0 0
## 16229 0 0 0
## 16230 0 0 0
## 16231 0 0 0
## 16232 0 0 0
## 16233 0 0 0
## 16234 0 0 0
## 16235 0 0 0
## 16236 0 0 0
## 16237 0 0 0
## 16238 0 0 0
## 16239 0 0 0
## 16240 0 0 0
## 16241 0 0 0
## 16242 0 0 0
## 16243 0 0 0
## 16244 0 0 0
## 16245 0 0 0
## 16246 0 0 0
## 16247 0 0 0
## 16248 0 0 0
## 16249 0 0 0
## 16250 0 0 0
## 16251 0 0 0
## 16252 0 0 0
## 16253 0 0 0
## 16254 0 0 0
## 16255 0 0 0
## 16256 0 0 0
## 16257 0 0 0
## 16258 0 0 0
## 16259 0 0 0
## 16260 0 0 0
## 16261 0 0 0
## 16262 0 0 0
## 16263 0 0 0
## 16264 0 0 0
## 16265 0 0 0
## 16266 0 0 0
## 16267 0 0 0
## 16268 0 0 0
## 16269 0 0 0
## 16270 0 0 0
## 16271 0 0 0
## 16272 0 0 0
## 16273 0 0 0
## 16274 0 0 0
## 16275 0 0 0
## 16276 0 0 0
## 16277 0 0 0
## 16278 0 0 0
## 16279 0 0 0
## 16280 0 0 0
## 16281 0 0 0
## 16282 0 0 0
## 16283 0 0 0
## 16284 0 0 0
## 16285 0 0 0
## 16286 0 0 0
## 16287 0 0 0
## 16288 0 0 0
## 16289 0 0 0
## 16290 0 0 0
## 16291 0 0 0
## 16292 0 0 0
## 16293 0 0 0
## 16294 0 0 0
## 16295 0 0 0
## 16296 0 0 0
## 16297 0 0 0
## 16298 0 0 0
## 16299 0 0 0
## 16300 0 0 0
## 16301 0 0 0
## 16302 0 0 0
## 16303 0 0 0
## 16304 0 0 0
## 16305 0 0 0
## 16306 0 0 0
## 16307 0 0 0
## 16308 0 0 0
## 16309 0 0 0
## 16310 0 0 0
## 16311 0 0 0
## 16312 0 0 0
## 16313 0 0 0
## 16314 0 0 0
## 16315 0 0 0
## 16316 0 0 0
## 16317 0 0 0
## 16318 0 0 0
## 16319 0 0 0
## 16320 0 0 0
## 16321 0 0 0
## 16322 0 0 0
## 16323 0 0 0
## 16324 0 0 0
## 16325 0 0 0
## 16326 0 0 0
## 16327 0 0 0
## 16328 0 0 0
## 16329 0 0 0
## 16330 0 0 0
## 16331 0 0 0
## 16332 0 0 0
## 16333 0 0 0
## 16334 0 0 0
## 16335 0 0 0
## 16336 0 0 0
## 16337 0 0 0
## 16338 0 0 0
## 16339 0 0 0
## 16340 0 0 0
## 16341 0 0 0
## 16342 0 0 0
## 16343 0 0 0
## 16344 0 0 0
## 16345 0 0 0
## 16346 0 0 0
## 16347 0 0 0
## 16348 0 0 0
## 16349 0 0 0
## 16350 0 0 0
## 16351 0 0 0
## 16352 0 0 0
## 16353 0 0 0
## 16354 0 0 0
## 16355 0 0 0
## 16356 0 0 0
## 16357 0 0 0
## 16358 0 0 0
## 16359 0 0 0
## 16360 0 0 0
## 16361 0 0 0
## 16362 0 0 0
## 16363 0 0 0
## 16364 0 0 0
## 16365 0 0 0
## 16366 0 0 0
## 16367 0 0 0
## 16368 0 0 0
## 16369 0 0 0
## 16370 0 0 0
## 16371 0 0 0
## 16372 0 0 0
## 16373 0 0 0
## 16374 0 0 0
## 16375 0 0 0
## 16376 0 0 0
## 16377 0 0 0
## 16378 0 0 0
## 16379 0 0 0
## 16380 0 0 0
## 16381 0 0 0
## 16382 0 0 0
## 16383 0 0 0
## 16384 0 0 0
## 16385 0 0 0
## 16386 0 0 0
## 16387 0 0 0
## 16388 0 0 0
## 16389 0 0 0
## 16390 0 0 0
## 16391 0 0 0
## 16392 0 0 0
## 16393 0 0 0
## 16394 0 0 0
## 16395 0 0 0
## 16396 0 0 0
## 16397 0 0 0
## 16398 0 0 0
## 16399 0 0 0
## 16400 0 0 0
## 16401 0 0 0
## 16402 0 0 0
## 16403 0 0 0
## 16404 0 0 0
## 16405 0 0 0
## 16406 0 0 0
## 16407 0 0 0
## 16408 0 0 0
## 16409 0 0 0
## 16410 0 0 0
## 16411 0 0 0
## 16412 0 0 0
## 16413 0 0 0
## 16414 0 0 0
## 16415 0 0 0
## 16416 0 0 0
## 16417 0 0 0
## 16418 0 0 0
## 16419 0 0 0
## 16420 0 0 0
## 16421 0 0 0
## 16422 0 0 0
## 16423 0 0 0
## 16424 0 0 0
## 16425 0 0 0
## 16426 0 0 0
## 16427 0 0 0
## 16428 0 0 0
## 16429 0 0 0
## 16430 0 0 0
## 16431 0 0 0
## 16432 0 0 0
## 16433 0 0 0
## 16434 0 0 0
## 16435 0 0 0
## 16436 0 0 0
## 16437 0 0 0
## 16438 0 0 0
## 16439 0 0 0
## 16440 0 0 0
## 16441 0 0 0
## 16442 0 0 0
## 16443 0 0 0
## 16444 0 0 0
## 16445 0 0 0
## 16446 0 0 0
## 16447 0 0 0
## 16448 0 0 0
## 16449 0 0 0
## 16450 0 0 0
## 16451 0 0 0
## 16452 0 0 0
## 16453 0 0 0
## 16454 0 0 0
## 16455 0 0 0
## 16456 0 0 0
## 16457 0 0 0
## 16458 0 0 0
## 16459 0 0 0
## 16460 0 0 0
## 16461 0 0 0
## 16462 0 0 0
## 16463 0 0 0
## 16464 0 0 0
## 16465 0 0 0
## 16466 0 0 0
## 16467 0 0 0
## 16468 0 0 0
## 16469 0 0 0
## 16470 0 0 0
## 16471 0 0 0
## 16472 0 0 0
## 16473 0 0 0
## 16474 0 0 0
## 16475 0 0 0
## 16476 0 0 0
## 16477 0 0 0
## 16478 0 0 0
## 16479 0 0 0
## 16480 0 0 0
## 16481 0 0 0
## 16482 0 0 0
## 16483 0 0 0
## 16484 0 0 0
## 16485 0 0 0
## 16486 0 0 0
## 16487 0 0 0
## 16488 0 0 0
## 16489 0 0 0
## 16490 0 0 0
## 16491 0 0 0
## 16492 0 0 0
## 16493 0 0 0
## 16494 0 0 0
## 16495 0 0 0
## 16496 0 0 0
## 16497 0 0 0
## 16498 0 0 0
## 16499 0 0 0
## 16500 0 0 0
## 16501 0 0 0
## 16502 0 0 0
## 16503 0 0 0
## 16504 0 0 0
## 16505 0 0 0
## 16506 0 0 0
## 16507 0 0 0
## 16508 0 0 0
## 16509 0 0 0
## 16510 0 0 0
## 16511 0 0 0
## 16512 0 0 0
## 16513 0 0 0
## 16514 0 0 0
## 16515 0 0 0
## 16516 0 0 0
## 16517 0 0 0
## 16518 0 0 0
## 16519 0 0 0
## 16520 0 0 0
## 16521 0 0 0
## 16522 0 0 0
## 16523 0 0 0
## 16524 0 0 0
## 16525 0 0 0
## 16526 0 0 0
## 16527 0 0 0
## 16528 0 0 0
## 16529 0 0 0
## 16530 0 0 0
## 16531 0 0 0
## 16532 0 0 0
## 16533 0 0 0
## 16534 0 0 0
## 16535 0 0 0
## 16536 0 0 0
## 16537 0 0 0
## 16538 0 0 0
## 16539 0 0 0
## 16540 0 0 0
## 16541 0 0 0
## 16542 0 0 0
## 16543 0 0 0
## 16544 0 0 0
## 16545 0 0 0
## 16546 0 0 0
## 16547 0 0 0
## 16548 0 0 0
## 16549 0 0 0
## 16550 0 0 0
## 16551 0 0 0
## 16552 0 0 0
## 16553 0 0 0
## 16554 0 0 0
## 16555 0 0 0
## 16556 0 0 0
## 16557 0 0 0
## 16558 0 0 0
## 16559 0 0 0
## 16560 0 0 0
## 16561 0 0 0
## 16562 0 0 0
## 16563 0 0 0
## 16564 0 0 0
## 16565 0 0 0
## 16566 0 0 0
## 16567 0 0 0
## 16568 0 0 0
## 16569 0 0 0
## 16570 0 0 0
## 16571 0 0 0
## 16572 0 0 0
## 16573 0 0 0
## 16574 0 0 0
## 16575 0 0 0
## 16576 0 0 0
## 16577 0 0 0
## 16578 0 0 0
## 16579 0 0 0
## 16580 0 0 0
## 16581 0 0 0
## 16582 0 0 0
## 16583 0 0 0
## 16584 0 0 0
## 16585 0 0 0
## 16586 0 0 0
## 16587 0 0 0
## 16588 0 0 0
## 16589 0 0 0
## 16590 0 0 0
## 16591 0 0 0
## 16592 0 0 0
## 16593 0 0 0
## 16594 0 0 0
## 16595 0 0 0
## 16596 0 0 0
## 16597 0 0 0
## 16598 0 0 0
## 16599 0 0 0
## 16600 0 0 0
## 16601 0 0 0
## 16602 0 0 0
## 16603 0 0 0
## 16604 0 0 0
## 16605 0 0 0
## 16606 0 0 0
## 16607 0 0 0
## 16608 0 0 0
## 16609 0 0 0
## 16610 0 0 0
## 16611 0 0 0
## 16612 0 0 0
## 16613 0 0 0
## 16614 0 0 0
## 16615 0 0 0
## 16616 0 0 0
## 16617 0 0 0
## 16618 0 0 0
## 16619 0 0 0
## 16620 0 0 0
## 16621 0 0 0
## 16622 0 0 0
## 16623 0 0 0
## 16624 0 0 0
## 16625 0 0 0
## 16626 0 0 0
## 16627 0 0 0
## 16628 0 0 0
## 16629 0 0 0
## 16630 0 0 0
## 16631 0 0 0
## 16632 0 0 0
## 16633 0 0 0
## 16634 0 0 0
## 16635 0 0 0
## 16636 0 0 0
## 16637 0 0 0
## 16638 0 0 0
## 16639 0 0 0
## 16640 0 0 0
## 16641 0 0 0
## 16642 0 0 0
## 16643 0 0 0
## 16644 0 0 0
## 16645 0 0 0
## 16646 0 0 0
## 16647 0 0 0
## 16648 0 0 0
## 16649 0 0 0
## 16650 0 0 0
## 16651 0 0 0
## 16652 0 0 0
## 16653 0 0 0
## 16654 0 0 0
## 16655 0 0 0
## 16656 0 0 0
## 16657 0 0 0
## 16658 0 0 0
## 16659 0 0 0
## 16660 0 0 0
## 16661 0 0 0
## 16662 0 0 0
## 16663 0 0 0
## 16664 0 0 0
## 16665 0 0 0
## 16666 0 0 0
## 16667 0 0 0
## 16668 0 0 0
## 16669 0 0 0
## 16670 0 0 0
## 16671 0 0 0
## 16672 0 0 0
## 16673 0 0 0
## 16674 0 0 0
## 16675 0 0 0
## 16676 0 0 0
## 16677 0 0 0
## 16678 0 0 0
## 16679 0 0 0
## 16680 0 0 0
## 16681 0 0 0
## 16682 0 0 0
## 16683 0 0 0
## 16684 0 0 0
## 16685 0 0 0
## 16686 0 0 0
## 16687 0 0 0
## 16688 0 0 0
## 16689 0 0 0
## 16690 0 0 0
## 16691 0 0 0
## 16692 0 0 0
## 16693 0 0 0
## 16694 0 0 0
## 16695 0 0 0
## 16696 0 0 0
## 16697 0 0 0
## 16698 0 0 0
## 16699 0 0 0
## 16700 0 0 0
## 16701 0 0 0
## 16702 0 0 0
## 16703 0 0 0
## 16704 0 0 0
## 16705 0 0 0
## 16706 0 0 0
## 16707 0 0 0
## 16708 0 0 0
## 16709 0 0 0
## 16710 0 0 0
## 16711 0 0 0
## 16712 0 0 0
## 16713 0 0 0
## 16714 0 0 0
## 16715 0 0 0
## 16716 0 0 0
## 16717 0 0 0
## 16718 0 0 0
## 16719 0 0 0
## 16720 0 0 0
## 16721 0 0 0
## 16722 0 0 0
## 16723 0 0 0
## 16724 0 0 0
## 16725 0 0 0
## 16726 0 0 0
## 16727 0 0 0
## 16728 0 0 0
## 16729 0 0 0
## 16730 0 0 0
## 16731 0 0 0
## 16732 0 0 0
## 16733 0 0 0
## 16734 0 0 0
## 16735 0 0 0
## 16736 0 0 0
## 16737 0 0 0
## 16738 0 0 0
## 16739 0 0 0
## 16740 0 0 0
## 16741 0 0 0
## 16742 0 0 0
## 16743 0 0 0
## 16744 0 0 0
## 16745 0 0 0
## 16746 0 0 0
## 16747 0 0 0
## 16748 0 0 0
## 16749 0 0 0
## 16750 0 0 0
## 16751 0 0 0
## 16752 0 0 0
## 16753 0 0 0
## 16754 0 0 0
## 16755 0 0 0
## 16756 0 0 0
## 16757 0 0 0
## 16758 0 0 0
## 16759 0 0 0
## 16760 0 0 0
## 16761 0 0 0
## 16762 0 0 0
## 16763 0 0 0
## 16764 0 0 0
## 16765 0 0 0
## 16766 0 0 0
## 16767 0 0 0
## 16768 0 0 0
## 16769 0 0 0
## 16770 0 0 0
## 16771 0 0 0
## 16772 0 0 0
## 16773 0 0 0
## 16774 0 0 0
## 16775 0 0 0
## 16776 0 0 0
## 16777 0 0 0
## 16778 0 0 0
## 16779 0 0 0
## 16780 0 0 0
## 16781 0 0 0
## 16782 0 0 0
## 16783 0 0 0
## 16784 0 0 0
## 16785 0 0 0
## 16786 0 0 0
## 16787 0 0 0
## 16788 0 0 0
## 16789 0 0 0
## 16790 0 0 0
## 16791 0 0 0
## 16792 0 0 0
## 16793 0 0 0
## 16794 0 0 0
## 16795 0 0 0
## 16796 0 0 0
## 16797 0 0 0
## 16798 0 0 0
## 16799 0 0 0
## 16800 0 0 0
## 16801 0 0 0
## 16802 0 0 0
## 16803 0 0 0
## 16804 0 0 0
## 16805 0 0 0
## 16806 0 0 0
## 16807 0 0 0
## 16808 0 0 0
## 16809 0 0 0
## 16810 0 0 0
## 16811 0 0 0
## 16812 0 0 0
## 16813 0 0 0
## 16814 0 0 0
## 16815 0 0 0
## 16816 0 0 0
## 16817 0 0 0
## 16818 0 0 0
## 16819 0 0 0
## 16820 0 0 0
## 16821 0 0 0
## 16822 0 0 0
## 16823 0 0 0
## 16824 0 0 0
## 16825 0 0 0
## 16826 0 0 0
## 16827 0 0 0
## 16828 0 0 0
## 16829 0 0 0
## 16830 0 0 0
## 16831 0 0 0
## 16832 0 0 0
## 16833 0 0 0
## 16834 0 0 0
## 16835 0 0 0
## 16836 0 0 0
## 16837 0 0 0
## 16838 0 0 0
## 16839 0 0 0
## 16840 0 0 0
## 16841 0 0 0
## 16842 0 0 0
## 16843 0 0 0
## 16844 0 0 0
## 16845 0 0 0
## 16846 0 0 0
## 16847 0 0 0
## 16848 0 0 0
## 16849 0 0 0
## 16850 0 0 0
## 16851 0 0 0
## 16852 0 0 0
## 16853 0 0 0
## 16854 0 0 0
## 16855 0 0 0
## 16856 0 0 0
## 16857 0 0 0
## 16858 0 0 0
## 16859 0 0 0
## 16860 0 0 0
## 16861 0 0 0
## 16862 0 0 0
## 16863 0 0 0
## 16864 0 0 0
## 16865 0 0 0
## 16866 0 0 0
## 16867 0 0 0
## 16868 0 0 0
## 16869 0 0 0
## 16870 0 0 0
## 16871 0 0 0
## 16872 0 0 0
## 16873 0 0 0
## 16874 0 0 0
## 16875 0 0 0
## 16876 0 0 0
## 16877 0 0 0
## 16878 0 0 0
## 16879 0 0 0
## 16880 0 0 0
## 16881 0 0 0
## 16882 0 0 0
## 16883 0 0 0
## 16884 0 0 0
## 16885 0 0 0
## 16886 0 0 0
## 16887 0 0 0
## 16888 0 0 0
## 16889 0 0 0
## 16890 0 0 0
## 16891 0 0 0
## 16892 0 0 0
## 16893 0 0 0
## 16894 0 0 0
## 16895 0 0 0
## 16896 0 0 0
## 16897 0 0 0
## 16898 0 0 0
## 16899 0 0 0
## 16900 0 0 0
## 16901 0 0 0
## 16902 0 0 0
## 16903 0 0 0
## 16904 0 0 0
## 16905 0 0 0
## 16906 0 0 0
## 16907 0 0 0
## 16908 0 0 0
## 16909 0 0 0
## 16910 0 0 0
## 16911 0 0 0
## 16912 0 0 0
## 16913 0 0 0
## 16914 0 0 0
## 16915 0 0 0
## 16916 0 0 0
## 16917 0 0 0
## 16918 0 0 0
## 16919 0 0 0
## 16920 0 0 0
## 16921 0 0 0
## 16922 0 0 0
## 16923 0 0 0
## 16924 0 0 0
## 16925 0 0 0
## 16926 0 0 0
## 16927 0 0 0
## 16928 0 0 0
## 16929 0 0 0
## 16930 0 0 0
## 16931 0 0 0
## 16932 0 0 0
## 16933 0 0 0
## 16934 0 0 0
## 16935 0 0 0
## 16936 0 0 0
## 16937 0 0 0
## 16938 0 0 0
## 16939 0 0 0
## 16940 0 0 0
## 16941 0 0 0
## 16942 0 0 0
## 16943 0 0 0
## 16944 0 0 0
## 16945 0 0 0
## 16946 0 0 0
## 16947 0 0 0
## 16948 0 0 0
## 16949 0 0 0
## 16950 0 0 0
## 16951 0 0 0
## 16952 0 0 0
## 16953 0 0 0
## 16954 0 0 0
## 16955 0 0 0
## 16956 0 0 0
## 16957 0 0 0
## 16958 0 0 0
## 16959 0 0 0
## 16960 0 0 0
## 16961 0 0 0
## 16962 0 0 0
## 16963 0 0 0
## 16964 0 0 0
## 16965 0 0 0
## 16966 0 0 0
## 16967 0 0 0
## 16968 0 0 0
## 16969 0 0 0
## 16970 0 0 0
## 16971 0 0 0
## 16972 0 0 0
## 16973 0 0 0
## 16974 0 0 0
## 16975 0 0 0
## 16976 0 0 0
## 16977 0 0 0
## 16978 0 0 0
## 16979 0 0 0
## 16980 0 0 0
## 16981 0 0 0
## 16982 0 0 0
## 16983 0 0 0
## 16984 0 0 0
## 16985 0 0 0
## 16986 0 0 0
## 16987 0 0 0
## 16988 0 0 0
## 16989 0 0 0
## 16990 0 0 0
## 16991 0 0 0
## 16992 0 0 0
## 16993 0 0 0
## 16994 0 0 0
## 16995 0 0 0
## 16996 0 0 0
## 16997 0 0 0
## 16998 0 0 0
## 16999 0 0 0
## 17000 0 0 0
## 17001 0 0 0
## 17002 0 0 0
## 17003 0 0 0
## 17004 0 0 0
## 17005 0 0 0
## 17006 0 0 0
## 17007 0 0 0
## 17008 0 0 0
## 17009 0 0 0
## 17010 0 0 0
## 17011 0 0 0
## 17012 0 0 0
## 17013 0 0 0
## 17014 0 0 0
## 17015 0 0 0
## 17016 0 0 0
## 17017 0 0 0
## 17018 0 0 0
## 17019 0 0 0
## 17020 0 0 0
## 17021 0 0 0
## 17022 0 0 0
## 17023 0 0 0
## 17024 0 0 0
## 17025 0 0 0
## 17026 0 0 0
## 17027 0 0 0
## 17028 0 0 0
## 17029 0 0 0
## 17030 0 0 0
## 17031 0 0 0
## 17032 0 0 0
## 17033 0 0 0
## 17034 0 0 0
## 17035 0 0 0
## 17036 0 0 0
## 17037 0 0 0
## 17038 0 0 0
## 17039 0 0 0
## 17040 0 0 0
## 17041 0 0 0
## 17042 0 0 0
## 17043 0 0 0
## 17044 0 0 0
## 17045 0 0 0
## 17046 0 0 0
## 17047 0 0 0
## 17048 0 0 0
## 17049 0 0 0
## 17050 0 0 0
## 17051 0 0 0
## 17052 0 0 0
## 17053 0 0 0
## 17054 0 0 0
## 17055 0 0 0
## 17056 0 0 0
## 17057 0 0 0
## 17058 0 0 0
## 17059 0 0 0
## 17060 0 0 0
## 17061 0 0 0
## 17062 0 0 0
## 17063 0 0 0
## 17064 0 0 0
## 17065 0 0 0
## 17066 0 0 0
## 17067 0 0 0
## 17068 0 0 0
## 17069 0 0 0
## 17070 0 0 0
## 17071 0 0 0
## 17072 0 0 0
## 17073 0 0 0
## 17074 0 0 0
## 17075 0 0 0
## 17076 0 0 0
## 17077 0 0 0
## 17078 0 0 0
## 17079 0 0 0
## 17080 0 0 0
## 17081 0 0 0
## 17082 0 0 0
## 17083 0 0 0
## 17084 0 0 0
## 17085 0 0 0
## 17086 0 0 0
## 17087 0 0 0
## 17088 0 0 0
## 17089 0 0 0
## 17090 0 0 0
## 17091 0 0 0
## 17092 0 0 0
## 17093 0 0 0
## 17094 0 0 0
## 17095 0 0 0
## 17096 0 0 0
## 17097 0 0 0
## 17098 0 0 0
## 17099 0 0 0
## 17100 0 0 0
## 17101 0 0 0
## 17102 0 0 0
## 17103 0 0 0
## 17104 0 0 0
## 17105 0 0 0
## 17106 0 0 0
## 17107 0 0 0
## 17108 0 0 0
## 17109 0 0 0
## 17110 0 0 0
## 17111 0 0 0
## 17112 0 0 0
## 17113 0 0 0
## 17114 0 0 0
## 17115 0 0 0
## 17116 0 0 0
## 17117 0 0 0
## 17118 0 0 0
## 17119 0 0 0
## 17120 0 0 0
## 17121 0 0 0
## 17122 0 0 0
## 17123 0 0 0
## 17124 0 0 0
## 17125 0 0 0
## 17126 0 0 0
## 17127 0 0 0
## 17128 0 0 0
## 17129 0 0 0
## 17130 0 0 0
## 17131 0 0 0
## 17132 0 0 0
## 17133 0 0 0
## 17134 0 0 0
## 17135 0 0 0
## 17136 0 0 0
## 17137 0 0 0
## 17138 0 0 0
## 17139 0 0 0
## 17140 0 0 0
## 17141 0 0 0
## 17142 0 0 0
## 17143 0 0 0
## 17144 0 0 0
## 17145 0 0 0
## 17146 0 0 0
## 17147 0 0 0
## 17148 0 0 0
## 17149 0 0 0
## 17150 0 0 0
## 17151 0 0 0
## 17152 0 0 0
## 17153 0 0 0
## 17154 0 0 0
## 17155 0 0 0
## 17156 0 0 0
## 17157 0 0 0
## 17158 0 0 0
## 17159 0 0 0
## 17160 0 0 0
## 17161 0 0 0
## 17162 0 0 0
## 17163 0 0 0
## 17164 0 0 0
## 17165 0 0 0
## 17166 0 0 0
## 17167 0 0 0
## 17168 0 0 0
## 17169 0 0 0
## 17170 0 0 0
## 17171 0 0 0
## 17172 0 0 0
## 17173 0 0 0
## 17174 0 0 0
## 17175 0 0 0
## 17176 0 0 0
## 17177 0 0 0
## 17178 0 0 0
## 17179 0 0 0
## 17180 0 0 0
## 17181 0 0 0
## 17182 0 0 0
## 17183 0 0 0
## 17184 0 0 0
## 17185 0 0 0
## 17186 0 0 0
## 17187 0 0 0
## 17188 0 0 0
## 17189 0 0 0
## 17190 0 0 0
## 17191 0 0 0
## 17192 0 0 0
## 17193 0 0 0
## 17194 0 0 0
## 17195 0 0 0
## 17196 0 0 0
## 17197 0 0 0
## 17198 0 0 0
## 17199 0 0 0
## 17200 0 0 0
## 17201 0 0 0
## 17202 0 0 0
## 17203 0 0 0
## 17204 0 0 0
## 17205 0 0 0
## 17206 0 0 0
## 17207 0 0 0
## 17208 0 0 0
## 17209 0 0 0
## 17210 0 0 0
## 17211 0 0 0
## 17212 0 0 0
## 17213 0 0 0
## 17214 0 0 0
## 17215 0 0 0
## 17216 0 0 0
## 17217 0 0 0
## 17218 0 0 0
## 17219 0 0 0
## 17220 0 0 0
## 17221 0 0 0
## 17222 0 0 0
## 17223 0 0 0
## 17224 0 0 0
## 17225 0 0 0
## 17226 0 0 0
## 17227 0 0 0
## 17228 0 0 0
## 17229 0 0 0
## 17230 0 0 0
## 17231 0 0 0
## 17232 0 0 0
## 17233 0 0 0
## 17234 0 0 0
## 17235 0 0 0
## 17236 0 0 0
## 17237 0 0 0
## 17238 0 0 0
## 17239 0 0 0
## 17240 0 0 0
## 17241 0 0 0
## 17242 0 0 0
## 17243 0 0 0
## 17244 0 0 0
## 17245 0 0 0
## 17246 0 0 0
## 17247 0 0 0
## 17248 0 0 0
## 17249 0 0 0
## 17250 0 0 0
## 17251 0 0 0
## 17252 0 0 0
## 17253 0 0 0
## 17254 0 0 0
## 17255 0 0 0
## 17256 0 0 0
## 17257 0 0 0
## 17258 0 0 0
## 17259 0 0 0
## 17260 0 0 0
## 17261 0 0 0
## 17262 0 0 0
## 17263 0 0 0
## 17264 0 0 0
## 17265 0 0 0
## 17266 0 0 0
## 17267 0 0 0
## 17268 0 0 0
## 17269 0 0 0
## 17270 0 0 0
## 17271 0 0 0
## 17272 0 0 0
## 17273 0 0 0
## 17274 0 0 0
## 17275 0 0 0
## 17276 0 0 0
## 17277 0 0 0
## 17278 0 0 0
## 17279 0 0 0
## 17280 0 0 0
## 17281 0 0 0
## 17282 0 0 0
## 17283 0 0 0
## 17284 0 0 0
## 17285 0 0 0
## 17286 0 0 0
## 17287 0 0 0
## 17288 0 0 0
## 17289 0 0 0
## 17290 0 0 0
## 17291 0 0 0
## 17292 0 0 0
## 17293 0 0 0
## 17294 0 0 0
## 17295 0 0 0
## 17296 0 0 0
## 17297 0 0 0
## 17298 0 0 0
## 17299 0 0 0
## 17300 0 0 0
## 17301 0 0 0
## 17302 0 0 0
## 17303 0 0 0
## 17304 0 0 0
## 17305 0 0 0
## 17306 0 0 0
## 17307 0 0 0
## 17308 0 0 0
## 17309 0 0 0
## 17310 0 0 0
## 17311 0 0 0
## 17312 0 0 0
## 17313 0 0 0
## 17314 0 0 0
## 17315 0 0 0
## 17316 0 0 0
## 17317 0 0 0
## 17318 0 0 0
## 17319 0 0 0
## 17320 0 0 0
## 17321 0 0 0
## 17322 0 0 0
## 17323 0 0 0
## 17324 0 0 0
## 17325 0 0 0
## 17326 0 0 0
## 17327 0 0 0
## 17328 0 0 0
## 17329 0 0 0
## 17330 0 0 0
## 17331 0 0 0
## 17332 0 0 0
## 17333 0 0 0
## 17334 0 0 0
## 17335 0 0 0
## 17336 0 0 0
## 17337 0 0 0
## 17338 0 0 0
## 17339 0 0 0
## 17340 0 0 0
## 17341 0 0 0
## 17342 0 0 0
## 17343 0 0 0
## 17344 0 0 0
## 17345 0 0 0
## 17346 0 0 0
## 17347 0 0 0
## 17348 0 0 0
## 17349 0 0 0
## 17350 0 0 0
## 17351 0 0 0
## 17352 0 0 0
## 17353 0 0 0
## 17354 0 0 0
## 17355 0 0 0
## 17356 0 0 0
## 17357 0 0 0
## 17358 0 0 0
## 17359 0 0 0
## 17360 0 0 0
## 17361 0 0 0
## 17362 0 0 0
## 17363 0 0 0
## 17364 0 0 0
## 17365 0 0 0
## 17366 0 0 0
## 17367 0 0 0
## 17368 0 0 0
## 17369 0 0 0
## 17370 0 0 0
## 17371 0 0 0
## 17372 0 0 0
## 17373 0 0 0
## 17374 0 0 0
## 17375 0 0 0
## 17376 0 0 0
## 17377 0 0 0
## 17378 0 0 0
## 17379 0 0 0
## 17380 0 0 0
## 17381 0 0 0
## 17382 0 0 0
## 17383 0 0 0
## 17384 0 0 0
## 17385 0 0 0
## 17386 0 0 0
## 17387 0 0 0
## 17388 0 0 0
## 17389 0 0 0
## 17390 0 0 0
## 17391 0 0 0
## 17392 0 0 0
## 17393 0 0 0
## 17394 0 0 0
## 17395 0 0 0
## 17396 0 0 0
## 17397 0 0 0
## 17398 0 0 0
## 17399 0 0 0
## 17400 0 0 0
## 17401 0 0 0
## 17402 0 0 0
## 17403 0 0 0
## 17404 0 0 0
## 17405 0 0 0
## 17406 0 0 0
## 17407 0 0 0
## 17408 0 0 0
## 17409 0 0 0
## 17410 0 0 0
## 17411 0 0 0
## 17412 0 0 0
## 17413 0 0 0
## 17414 0 0 0
## 17415 0 0 0
## 17416 0 0 0
## 17417 0 0 0
## 17418 0 0 0
## 17419 0 0 0
## 17420 0 0 0
## 17421 0 0 0
## 17422 0 0 0
## 17423 0 0 0
## 17424 0 0 0
## 17425 0 0 0
## 17426 0 0 0
## 17427 0 0 0
## 17428 0 0 0
## 17429 0 0 0
## 17430 0 0 0
## 17431 0 0 0
## 17432 0 0 0
## 17433 0 0 0
## 17434 0 0 0
## 17435 0 0 0
## 17436 0 0 0
## 17437 0 0 0
## 17438 0 0 0
## 17439 0 0 0
## 17440 0 0 0
## 17441 0 0 0
## 17442 0 0 0
## 17443 0 0 0
## 17444 0 0 0
## 17445 0 0 0
## 17446 0 0 0
## 17447 0 0 0
## 17448 0 0 0
## 17449 0 0 0
## 17450 0 0 0
## 17451 0 0 0
## 17452 0 0 0
## 17453 0 0 0
## 17454 0 0 0
## 17455 0 0 0
## 17456 0 0 0
## 17457 0 0 0
## 17458 0 0 0
## 17459 0 0 0
## 17460 0 0 0
## 17461 0 0 0
## 17462 0 0 0
## 17463 0 0 0
## 17464 0 0 0
## 17465 0 0 0
## 17466 0 0 0
## 17467 0 0 0
## 17468 0 0 0
## 17469 0 0 0
## 17470 0 0 0
## 17471 0 0 0
## 17472 0 0 0
## 17473 0 0 0
## 17474 0 0 0
## 17475 0 0 0
## 17476 0 0 0
## 17477 0 0 0
## 17478 0 0 0
## 17479 0 0 0
## 17480 0 0 0
## 17481 0 0 0
## 17482 0 0 0
## 17483 0 0 0
## 17484 0 0 0
## 17485 0 0 0
## 17486 0 0 0
## 17487 0 0 0
## 17488 0 0 0
## 17489 0 0 0
## 17490 0 0 0
## 17491 0 0 0
## 17492 0 0 0
## 17493 0 0 0
## 17494 0 0 0
## 17495 0 0 0
## 17496 0 0 0
## 17497 0 0 0
## 17498 0 0 0
## 17499 0 0 0
## 17500 0 0 0
## 17501 0 0 0
## 17502 0 0 0
## 17503 0 0 0
## 17504 0 0 0
## 17505 0 0 0
## 17506 0 0 0
## 17507 0 0 0
## 17508 0 0 0
## 17509 0 0 0
## 17510 0 0 0
## 17511 0 0 0
## 17512 0 0 0
## 17513 0 0 0
## 17514 0 0 0
## 17515 0 0 0
## 17516 0 0 0
## 17517 0 0 0
## 17518 0 0 0
## 17519 0 0 0
## 17520 0 0 0
## 17521 0 0 0
## 17522 0 0 0
## 17523 0 0 0
## 17524 0 0 0
## 17525 0 0 0
## 17526 0 0 0
## 17527 0 0 0
## 17528 0 0 0
## 17529 0 0 0
## 17530 0 0 0
## 17531 0 0 0
## 17532 0 0 0
## 17533 0 0 0
## 17534 0 0 0
## 17535 0 0 0
## 17536 0 0 0
## 17537 0 0 0
## 17538 0 0 0
## 17539 0 0 0
## 17540 0 0 0
## 17541 0 0 0
## 17542 0 0 0
## 17543 0 0 0
## 17544 0 0 0
## 17545 0 0 0
## 17546 0 0 0
## 17547 0 0 0
## 17548 0 0 0
## 17549 0 0 0
## 17550 0 0 0
## 17551 0 0 0
## 17552 0 0 0
## 17553 0 0 0
## 17554 0 0 0
## 17555 0 0 0
## 17556 0 0 0
## 17557 0 0 0
## 17558 0 0 0
## 17559 0 0 0
## 17560 0 0 0
## 17561 0 0 0
## 17562 0 0 0
## 17563 0 0 0
## 17564 0 0 0
## 17565 0 0 0
## 17566 0 0 0
## 17567 0 0 0
## 17568 0 0 0
## 17569 0 0 0
## 17570 0 0 0
## 17571 0 0 0
## 17572 0 0 0
## 17573 0 0 0
## 17574 0 0 0
## 17575 0 0 0
## 17576 0 0 0
## 17577 0 0 0
## 17578 0 0 0
## 17579 0 0 0
## 17580 0 0 0
## 17581 0 0 0
## 17582 0 0 0
## 17583 0 0 0
## 17584 0 0 0
## 17585 0 0 0
## 17586 0 0 0
## 17587 0 0 0
## 17588 0 0 0
## 17589 0 0 0
## 17590 0 0 0
## 17591 0 0 0
## 17592 0 0 0
## 17593 0 0 0
## 17594 0 0 0
## 17595 0 0 0
## 17596 0 0 0
## 17597 0 0 0
## 17598 0 0 0
## 17599 0 0 0
## 17600 0 0 0
## 17601 0 0 0
## 17602 0 0 0
## 17603 0 0 0
## 17604 0 0 0
## 17605 0 0 0
## 17606 0 0 0
## 17607 0 0 0
## 17608 0 0 0
## 17609 0 0 0
## 17610 0 0 0
## 17611 0 0 0
## 17612 0 0 0
## 17613 0 0 0
## 17614 0 0 0
## 17615 0 0 0
## 17616 0 0 0
## 17617 0 0 0
## 17618 0 0 0
## 17619 0 0 0
## 17620 0 0 0
## 17621 0 0 0
## 17622 0 0 0
## 17623 0 0 0
## 17624 0 0 0
## 17625 0 0 0
## 17626 0 0 0
## 17627 0 0 0
## 17628 0 0 0
## 17629 0 0 0
## 17630 0 0 0
## 17631 0 0 0
## 17632 0 0 0
## 17633 0 0 0
## 17634 0 0 0
## 17635 0 0 0
## 17636 0 0 0
## 17637 0 0 0
## 17638 0 0 0
## 17639 0 0 0
## 17640 0 0 0
## 17641 0 0 0
## 17642 0 0 0
## 17643 0 0 0
## 17644 0 0 0
## 17645 0 0 0
## 17646 0 0 0
## 17647 0 0 0
## 17648 0 0 0
## 17649 0 0 0
## 17650 0 0 0
## 17651 0 0 0
## 17652 0 0 0
## 17653 0 0 0
## 17654 0 0 0
## 17655 0 0 0
## 17656 0 0 0
## 17657 0 0 0
## 17658 0 0 0
## 17659 0 0 0
## 17660 0 0 0
## 17661 0 0 0
## 17662 0 0 0
## 17663 0 0 0
## 17664 0 0 0
## 17665 0 0 0
## 17666 0 0 0
## 17667 0 0 0
## 17668 0 0 0
## 17669 0 0 0
## 17670 0 0 0
## 17671 0 0 0
## 17672 0 0 0
## 17673 0 0 0
## 17674 0 0 0
## 17675 0 0 0
## 17676 0 0 0
## 17677 0 0 0
## 17678 0 0 0
## 17679 0 0 0
## 17680 0 0 0
## 17681 0 0 0
## 17682 0 0 0
## 17683 0 0 0
## 17684 0 0 0
## 17685 0 0 0
## 17686 0 0 0
## 17687 0 0 0
## 17688 0 0 0
## 17689 0 0 0
## 17690 0 0 0
## 17691 0 0 0
## 17692 0 0 0
## 17693 0 0 0
## 17694 0 0 0
## 17695 0 0 0
## 17696 0 0 0
## 17697 0 0 0
## 17698 0 0 0
## 17699 0 0 0
## 17700 0 0 0
## 17701 0 0 0
## 17702 0 0 0
## 17703 0 0 0
## 17704 0 0 0
## 17705 0 0 0
## 17706 0 0 0
## 17707 0 0 0
## 17708 0 0 0
## 17709 0 0 0
## 17710 0 0 0
## 17711 0 0 0
## 17712 0 0 0
## 17713 0 0 0
## 17714 0 0 0
## 17715 0 0 0
## 17716 0 0 0
## 17717 0 0 0
## 17718 0 0 0
## 17719 0 0 0
## 17720 0 0 0
## 17721 0 0 0
## 17722 0 0 0
## 17723 0 0 0
## 17724 0 0 0
## 17725 0 0 0
## 17726 0 0 0
## 17727 0 0 0
## 17728 0 0 0
## 17729 0 0 0
## 17730 0 0 0
## 17731 0 0 0
## 17732 0 0 0
## 17733 0 0 0
## 17734 0 0 0
## 17735 0 0 0
## 17736 0 0 0
## 17737 0 0 0
## 17738 0 0 0
## 17739 0 0 0
## 17740 0 0 0
## 17741 0 0 0
## 17742 0 0 0
## 17743 0 0 0
## 17744 0 0 0
## 17745 0 0 0
## 17746 0 0 0
## 17747 0 0 0
## 17748 0 0 0
## 17749 0 0 0
## 17750 0 0 0
## 17751 0 0 0
## 17752 0 0 0
## 17753 0 0 0
## 17754 0 0 0
## 17755 0 0 0
## 17756 0 0 0
## 17757 0 0 0
## 17758 0 0 0
## 17759 0 0 0
## 17760 0 0 0
## 17761 0 0 0
## 17762 0 0 0
## 17763 0 0 0
## 17764 0 0 0
## 17765 0 0 0
## 17766 0 0 0
## 17767 0 0 0
## 17768 0 0 0
## 17769 0 0 0
## 17770 0 0 0
## 17771 0 0 0
## 17772 0 0 0
## 17773 0 0 0
## 17774 0 0 0
## 17775 0 0 0
## 17776 0 0 0
## 17777 0 0 0
## 17778 0 0 0
## 17779 0 0 0
## 17780 0 0 0
## 17781 0 0 0
## 17782 0 0 0
## 17783 0 0 0
## 17784 0 0 0
## 17785 0 0 0
## 17786 0 0 0
## 17787 0 0 0
## 17788 0 0 0
## 17789 0 0 0
## 17790 0 0 0
## 17791 0 0 0
## 17792 0 0 0
## 17793 0 0 0
## 17794 0 0 0
## 17795 0 0 0
## 17796 0 0 0
## 17797 0 0 0
## 17798 0 0 0
## 17799 0 0 0
## 17800 0 0 0
## 17801 0 0 0
## 17802 0 0 0
## 17803 0 0 0
## 17804 0 0 0
## 17805 0 0 0
## 17806 0 0 0
## 17807 0 0 0
## 17808 0 0 0
## 17809 0 0 0
## 17810 0 0 0
## 17811 0 0 0
## 17812 0 0 0
## 17813 0 0 0
## 17814 0 0 0
## 17815 0 0 0
## 17816 0 0 0
## 17817 0 0 0
## 17818 0 0 0
## 17819 0 0 0
## 17820 0 0 0
## 17821 0 0 0
## 17822 0 0 0
## 17823 0 0 0
## 17824 0 0 0
## 17825 0 0 0
## 17826 0 0 0
## 17827 0 0 0
## 17828 0 0 0
## 17829 0 0 0
## 17830 0 0 0
## 17831 0 0 0
## 17832 0 0 0
## 17833 0 0 0
## 17834 0 0 0
## 17835 0 0 0
## 17836 0 0 0
## 17837 0 0 0
## 17838 0 0 0
## 17839 0 0 0
## 17840 0 0 0
## 17841 0 0 0
## 17842 0 0 0
## 17843 0 0 0
## 17844 0 0 0
## 17845 0 0 0
## 17846 0 0 0
## 17847 0 0 0
## 17848 0 0 0
## 17849 0 0 0
## 17850 0 0 0
## 17851 0 0 0
## 17852 0 0 0
## 17853 0 0 0
## 17854 0 0 0
## 17855 0 0 0
## 17856 0 0 0
## 17857 0 0 0
## 17858 0 0 0
## 17859 0 0 0
## 17860 0 0 0
## 17861 0 0 0
## 17862 0 0 0
## 17863 0 0 0
## 17864 0 0 0
## 17865 0 0 0
## 17866 0 0 0
## 17867 0 0 0
## 17868 0 0 0
## 17869 0 0 0
## 17870 0 0 0
## 17871 0 0 0
## 17872 0 0 0
## 17873 0 0 0
## 17874 0 0 0
## 17875 0 0 0
## 17876 0 0 0
## 17877 0 0 0
## 17878 0 0 0
## 17879 0 0 0
## 17880 0 0 0
## 17881 0 0 0
## 17882 0 0 0
## 17883 0 0 0
## 17884 0 0 0
## 17885 0 0 0
## 17886 0 0 0
## 17887 0 0 0
## 17888 0 0 0
## 17889 0 0 0
## 17890 0 0 0
## 17891 0 0 0
## 17892 0 0 0
## 17893 0 0 0
## 17894 0 0 0
## 17895 0 0 0
## 17896 0 0 0
## 17897 0 0 0
## 17898 0 0 0
## 17899 0 0 0
## 17900 0 0 0
## 17901 0 0 0
## 17902 0 0 0
## 17903 0 0 0
## 17904 0 0 0
## 17905 0 0 0
## 17906 0 0 0
## 17907 0 0 0
## 17908 0 0 0
## 17909 0 0 0
## 17910 0 0 0
## 17911 0 0 0
## 17912 0 0 0
## 17913 0 0 0
## 17914 0 0 0
## 17915 0 0 0
## 17916 0 0 0
## 17917 0 0 0
## 17918 0 0 0
## 17919 0 0 0
## 17920 0 0 0
## 17921 0 0 0
## 17922 0 0 0
## 17923 0 0 0
## 17924 0 0 0
## 17925 0 0 0
## 17926 0 0 0
## 17927 0 0 0
## 17928 0 0 0
## 17929 0 0 0
## 17930 0 0 0
## 17931 0 0 0
## 17932 0 0 0
## 17933 0 0 0
## 17934 0 0 0
## 17935 0 0 0
## 17936 0 0 0
## 17937 0 0 0
## 17938 0 0 0
## 17939 0 0 0
## 17940 0 0 0
## 17941 0 0 0
## 17942 0 0 0
## 17943 0 0 0
## 17944 0 0 0
## 17945 0 0 0
## 17946 0 0 0
## 17947 0 0 0
## 17948 0 0 0
## 17949 0 0 0
## 17950 0 0 0
## 17951 0 0 0
## 17952 0 0 0
## 17953 0 0 0
## 17954 0 0 0
## 17955 0 0 0
## 17956 0 0 0
## 17957 0 0 0
## 17958 0 0 0
## 17959 0 0 0
## 17960 0 0 0
## 17961 0 0 0
## 17962 0 0 0
## 17963 0 0 0
## 17964 0 0 0
## 17965 0 0 0
## 17966 0 0 0
## 17967 0 0 0
## 17968 0 0 0
## 17969 0 0 0
## 17970 0 0 0
## 17971 0 0 0
## 17972 0 0 0
## 17973 0 0 0
## 17974 0 0 0
## 17975 0 0 0
## 17976 0 0 0
## 17977 0 0 0
## 17978 0 0 0
## 17979 0 0 0
## 17980 0 0 0
## 17981 0 0 0
## 17982 0 0 0
## 17983 0 0 0
## 17984 0 0 0
## 17985 0 0 0
## 17986 0 0 0
## 17987 0 0 0
## 17988 0 0 0
## 17989 0 0 0
## 17990 0 0 0
## 17991 0 0 0
## 17992 0 0 0
## 17993 0 0 0
## 17994 0 0 0
## 17995 0 0 0
## 17996 0 0 0
## 17997 0 0 0
## 17998 0 0 0
## 17999 0 0 0
## 18000 0 0 0
## 18001 0 0 0
## 18002 0 0 0
## 18003 0 0 0
## 18004 0 0 0
## 18005 0 0 0
## 18006 0 0 0
## 18007 0 0 0
## 18008 0 0 0
## 18009 0 0 0
## 18010 0 0 0
## 18011 0 0 0
## 18012 0 0 0
## 18013 0 0 0
## 18014 0 0 0
## 18015 0 0 0
## 18016 0 0 0
## 18017 0 0 0
## 18018 0 0 0
## 18019 0 0 0
## 18020 0 0 0
## 18021 0 0 0
## 18022 0 0 0
## 18023 0 0 0
## 18024 0 0 0
## 18025 0 0 0
## 18026 0 0 0
## 18027 0 0 0
## 18028 0 0 0
## 18029 0 0 0
## 18030 0 0 0
## 18031 0 0 0
## 18032 0 0 0
## 18033 0 0 0
## 18034 0 0 0
## 18035 0 0 0
## 18036 0 0 0
## 18037 0 0 0
## 18038 0 0 0
## 18039 0 0 0
## 18040 0 0 0
## 18041 0 0 0
## 18042 0 0 0
## 18043 0 0 0
## 18044 0 0 0
## 18045 0 0 0
## 18046 0 0 0
## 18047 0 0 0
## 18048 0 0 0
## 18049 0 0 0
## 18050 0 0 0
## 18051 0 0 0
## 18052 0 0 0
## 18053 0 0 0
## 18054 0 0 0
## 18055 0 0 0
## 18056 0 0 0
## 18057 0 0 0
## 18058 0 0 0
## 18059 0 0 0
## 18060 0 0 0
## 18061 0 0 0
## 18062 0 0 0
## 18063 0 0 0
## 18064 0 0 0
## 18065 0 0 0
## 18066 0 0 0
## 18067 0 0 0
## 18068 0 0 0
## 18069 0 0 0
## 18070 0 0 0
## 18071 0 0 0
## 18072 0 0 0
## 18073 0 0 0
## 18074 0 0 0
## 18075 0 0 0
## 18076 0 0 0
## 18077 0 0 0
## 18078 0 0 0
## 18079 0 0 0
## 18080 0 0 0
## 18081 0 0 0
## 18082 0 0 0
## 18083 0 0 0
## 18084 0 0 0
## 18085 0 0 0
## 18086 0 0 0
## 18087 0 0 0
## 18088 0 0 0
## 18089 0 0 0
## 18090 0 0 0
## 18091 0 0 0
## 18092 0 0 0
## 18093 0 0 0
## 18094 0 0 0
## 18095 0 0 0
## 18096 0 0 0
## 18097 0 0 0
## 18098 0 0 0
## 18099 0 0 0
## 18100 0 0 0
## 18101 0 0 0
## 18102 0 0 0
## 18103 0 0 0
## 18104 0 0 0
## 18105 0 0 0
## 18106 0 0 0
## 18107 0 0 0
## 18108 0 0 0
## 18109 0 0 0
## 18110 0 0 0
## 18111 0 0 0
## 18112 0 0 0
## 18113 0 0 0
## 18114 0 0 0
## 18115 0 0 0
## 18116 0 0 0
## 18117 0 0 0
## 18118 0 0 0
## 18119 0 0 0
## 18120 0 0 0
## 18121 0 0 0
## 18122 0 0 0
## 18123 0 0 0
## 18124 0 0 0
## 18125 0 0 0
## 18126 0 0 0
## 18127 0 0 0
## 18128 0 0 0
## 18129 0 0 0
## 18130 0 0 0
## 18131 0 0 0
## 18132 0 0 0
## 18133 0 0 0
## 18134 0 0 0
## 18135 0 0 0
## 18136 0 0 0
## 18137 0 0 0
## 18138 0 0 0
## 18139 0 0 0
## 18140 0 0 0
## 18141 0 0 0
## 18142 0 0 0
## 18143 0 0 0
## 18144 0 0 0
## 18145 0 0 0
## 18146 0 0 0
## 18147 0 0 0
## 18148 0 0 0
## 18149 0 0 0
## 18150 0 0 0
## 18151 0 0 0
## 18152 0 0 0
## 18153 0 0 0
## 18154 0 0 0
## 18155 0 0 0
## 18156 0 0 0
## 18157 0 0 0
## 18158 0 0 0
## 18159 0 0 0
## 18160 0 0 0
## 18161 0 0 0
## 18162 0 0 0
## 18163 0 0 0
## 18164 0 0 0
## 18165 0 0 0
## 18166 0 0 0
## 18167 0 0 0
## 18168 0 0 0
## 18169 0 0 0
## 18170 0 0 0
## 18171 0 0 0
## 18172 0 0 0
## 18173 0 0 0
## 18174 0 0 0
## 18175 0 0 0
## 18176 0 0 0
## 18177 0 0 0
## 18178 0 0 0
## 18179 0 0 0
## 18180 0 0 0
## 18181 0 0 0
## 18182 0 0 0
## 18183 0 0 0
## 18184 0 0 0
## 18185 0 0 0
## 18186 0 0 0
## 18187 0 0 0
## 18188 0 0 0
## 18189 0 0 0
## 18190 0 0 0
## 18191 0 0 0
## 18192 0 0 0
## 18193 0 0 0
## 18194 0 0 0
## 18195 0 0 0
## 18196 0 0 0
## 18197 0 0 0
## 18198 0 0 0
## 18199 0 0 0
## 18200 0 0 0
## 18201 0 0 0
## 18202 0 0 0
## 18203 0 0 0
## 18204 0 0 0
## 18205 0 0 0
## 18206 0 0 0
## 18207 0 0 0
## 18208 0 0 0
## 18209 0 0 0
## 18210 0 0 0
## 18211 0 0 0
## 18212 0 0 0
## 18213 0 0 0
## 18214 0 0 0
## 18215 0 0 0
## 18216 0 0 0
## 18217 0 0 0
## 18218 0 0 0
## 18219 0 0 0
## 18220 0 0 0
## 18221 0 0 0
## 18222 0 0 0
## 18223 0 0 0
## 18224 0 0 0
## 18225 0 0 0
## 18226 0 0 0
## 18227 0 0 0
## 18228 0 0 0
## 18229 0 0 0
## 18230 0 0 0
## 18231 0 0 0
## 18232 0 0 0
## 18233 0 0 0
## 18234 0 0 0
## 18235 0 0 0
## 18236 0 0 0
## 18237 0 0 0
## 18238 0 0 0
## 18239 0 0 0
## 18240 0 0 0
## 18241 0 0 0
## 18242 0 0 0
## 18243 0 0 0
## 18244 0 0 0
## 18245 0 0 0
## 18246 0 0 0
## 18247 0 0 0
## 18248 0 0 0
## 18249 0 0 0
## 18250 0 0 0
## 18251 0 0 0
## 18252 0 0 0
## 18253 0 0 0
## 18254 0 0 0
## 18255 0 0 0
## 18256 0 0 0
## 18257 0 0 0
## 18258 0 0 0
## 18259 0 0 0
## 18260 0 0 0
## 18261 0 0 0
## 18262 0 0 0
## 18263 0 0 0
## 18264 0 0 0
## 18265 0 0 0
## 18266 0 0 0
## 18267 0 0 0
## 18268 0 0 0
## 18269 0 0 0
## 18270 0 0 0
## 18271 0 0 0
## 18272 0 0 0
## 18273 0 0 0
## 18274 0 0 0
## 18275 0 0 0
## 18276 0 0 0
## 18277 0 0 0
## 18278 0 0 0
## 18279 0 0 0
## 18280 0 0 0
## 18281 0 0 0
## 18282 0 0 0
## 18283 0 0 0
## 18284 0 0 0
## 18285 0 0 0
## 18286 0 0 0
## 18287 0 0 0
## 18288 0 0 0
## 18289 0 0 0
## 18290 0 0 0
## 18291 0 0 0
## 18292 0 0 0
## 18293 0 0 0
## 18294 0 0 0
## 18295 0 0 0
## 18296 0 0 0
## 18297 0 0 0
## 18298 0 0 0
## 18299 0 0 0
## 18300 0 0 0
## 18301 0 0 0
## 18302 0 0 0
## 18303 0 0 0
## 18304 0 0 0
## 18305 0 0 0
## 18306 0 0 0
## 18307 0 0 0
## 18308 0 0 0
## 18309 0 0 0
## 18310 0 0 0
## 18311 0 0 0
## 18312 0 0 0
## 18313 0 0 0
## 18314 0 0 0
## 18315 0 0 0
## 18316 0 0 0
## 18317 0 0 0
## 18318 0 0 0
## 18319 0 0 0
## 18320 0 0 0
## 18321 0 0 0
## 18322 0 0 0
## 18323 0 0 0
## 18324 0 0 0
## 18325 0 0 0
## 18326 0 0 0
## 18327 0 0 0
## 18328 0 0 0
## 18329 0 0 0
## 18330 0 0 0
## 18331 0 0 0
## 18332 0 0 0
## 18333 0 0 0
## 18334 0 0 0
## 18335 0 0 0
## 18336 0 0 0
## 18337 0 0 0
## 18338 0 0 0
## 18339 0 0 0
## 18340 0 0 0
## 18341 0 0 0
## 18342 0 0 0
## 18343 0 0 0
## 18344 0 0 0
## 18345 0 0 0
## 18346 0 0 0
## 18347 0 0 0
## 18348 0 0 0
## 18349 0 0 0
## 18350 0 0 0
## 18351 0 0 0
## 18352 0 0 0
## 18353 0 0 0
## 18354 0 0 0
## 18355 0 0 0
## 18356 0 0 0
## 18357 0 0 0
## 18358 0 0 0
## 18359 0 0 0
## 18360 0 0 0
## 18361 0 0 0
## 18362 0 0 0
## 18363 0 0 0
## 18364 0 0 0
## 18365 0 0 0
## 18366 0 0 0
## 18367 0 0 0
## 18368 0 0 0
## 18369 0 0 0
## 18370 0 0 0
## 18371 0 0 0
## 18372 0 0 0
## 18373 0 0 0
## 18374 0 0 0
## 18375 0 0 0
## 18376 0 0 0
## 18377 0 0 0
## 18378 0 0 0
## 18379 0 0 0
## 18380 0 0 0
## 18381 0 0 0
## 18382 0 0 0
## 18383 0 0 0
## 18384 0 0 0
## 18385 0 0 0
## 18386 0 0 0
## 18387 0 0 0
## 18388 0 0 0
## 18389 0 0 0
## 18390 0 0 0
## 18391 0 0 0
## 18392 0 0 0
## 18393 0 0 0
## 18394 0 0 0
## 18395 0 0 0
## 18396 0 0 0
## 18397 0 0 0
## 18398 0 0 0
## 18399 0 0 0
## 18400 0 0 0
## 18401 0 0 0
## 18402 0 0 0
## 18403 0 0 0
## 18404 0 0 0
## 18405 0 0 0
## 18406 0 0 0
## 18407 0 0 0
## 18408 0 0 0
## 18409 0 0 0
## 18410 0 0 0
## 18411 0 0 0
## 18412 0 0 0
## 18413 0 0 0
## 18414 0 0 0
## 18415 0 0 0
## 18416 0 0 0
## 18417 0 0 0
## 18418 0 0 0
## 18419 0 0 0
## 18420 0 0 0
## 18421 0 0 0
## 18422 0 0 0
## 18423 0 0 0
## 18424 0 0 0
## 18425 0 0 0
## 18426 0 0 0
## 18427 0 0 0
## 18428 0 0 0
## 18429 0 0 0
## 18430 0 0 0
## 18431 0 0 0
## 18432 0 0 0
## 18433 0 0 0
## 18434 0 0 0
## 18435 0 0 0
## 18436 0 0 0
## 18437 0 0 0
## 18438 0 0 0
## 18439 0 0 0
## 18440 0 0 0
## 18441 0 0 0
## 18442 0 0 0
## 18443 0 0 0
## 18444 0 0 0
## 18445 0 0 0
## 18446 0 0 0
## 18447 0 0 0
## 18448 0 0 0
## 18449 0 0 0
## 18450 0 0 0
## 18451 0 0 0
## 18452 0 0 0
## 18453 0 0 0
## 18454 0 0 0
## 18455 0 0 0
## 18456 0 0 0
## 18457 0 0 0
## 18458 0 0 0
## 18459 0 0 0
## 18460 0 0 0
## 18461 0 0 0
## 18462 0 0 0
## 18463 0 0 0
## 18464 0 0 0
## 18465 0 0 0
## 18466 0 0 0
## 18467 0 0 0
## 18468 0 0 0
## 18469 0 0 0
## 18470 0 0 0
## 18471 0 0 0
## 18472 0 0 0
## 18473 0 0 0
## 18474 0 0 0
## 18475 0 0 0
## 18476 0 0 0
## 18477 0 0 0
## 18478 0 0 0
## 18479 0 0 0
## 18480 0 0 0
## 18481 0 0 0
## 18482 0 0 0
## 18483 0 0 0
## 18484 0 0 0
## 18485 0 0 0
## 18486 0 0 0
## 18487 0 0 0
## 18488 0 0 0
## 18489 0 0 0
## 18490 0 0 0
## 18491 0 0 0
## 18492 0 0 0
## 18493 0 0 0
## 18494 0 0 0
## 18495 0 0 0
## 18496 0 0 0
## 18497 0 0 0
## 18498 0 0 0
## 18499 0 0 0
## 18500 0 0 0
## 18501 0 0 0
## 18502 0 0 0
## 18503 0 0 0
## 18504 0 0 0
## 18505 0 0 0
## 18506 0 0 0
## 18507 0 0 0
## 18508 0 0 0
## 18509 0 0 0
## 18510 0 0 0
## 18511 0 0 0
## 18512 0 0 0
## 18513 0 0 0
## 18514 0 0 0
## 18515 0 0 0
## 18516 0 0 0
## 18517 0 0 0
## 18518 0 0 0
## 18519 0 0 0
## 18520 0 0 0
## 18521 0 0 0
## 18522 0 0 0
## 18523 0 0 0
## 18524 0 0 0
## 18525 0 0 0
## 18526 0 0 0
## 18527 0 0 0
## 18528 0 0 0
## 18529 0 0 0
## 18530 0 0 0
## 18531 0 0 0
## 18532 0 0 0
## 18533 0 0 0
## 18534 0 0 0
## 18535 0 0 0
## 18536 0 0 0
## 18537 0 0 0
## 18538 0 0 0
## 18539 0 0 0
## 18540 0 0 0
## 18541 0 0 0
## 18542 0 0 0
## 18543 0 0 0
## 18544 0 0 0
## 18545 0 0 0
## 18546 0 0 0
## 18547 0 0 0
## 18548 0 0 0
## 18549 0 0 0
## 18550 0 0 0
## 18551 0 0 0
## 18552 0 0 0
## 18553 0 0 0
## 18554 0 0 0
## 18555 0 0 0
## 18556 0 0 0
## 18557 0 0 0
## 18558 0 0 0
## 18559 0 0 0
## 18560 0 0 0
## 18561 0 0 0
## 18562 0 0 0
## 18563 0 0 0
## 18564 0 0 0
## 18565 0 0 0
## 18566 0 0 0
## 18567 0 0 0
## 18568 0 0 0
## 18569 0 0 0
## 18570 0 0 0
## 18571 0 0 0
## 18572 0 0 0
## 18573 0 0 0
## 18574 0 0 0
## 18575 0 0 0
## 18576 0 0 0
## 18577 0 0 0
## 18578 0 0 0
## 18579 0 0 0
## 18580 0 0 0
## 18581 0 0 0
## 18582 0 0 0
## 18583 0 0 0
## 18584 0 0 0
## 18585 0 0 0
## 18586 0 0 0
## 18587 0 0 0
## 18588 0 0 0
## 18589 0 0 0
## 18590 0 0 0
## 18591 0 0 0
## 18592 0 0 0
## 18593 0 0 0
## 18594 0 0 0
## 18595 0 0 0
## 18596 0 0 0
## 18597 0 0 0
## 18598 0 0 0
## 18599 0 0 0
## 18600 0 0 0
## 18601 0 0 0
## 18602 0 0 0
## 18603 0 0 0
## 18604 0 0 0
## 18605 0 0 0
## 18606 0 0 0
## 18607 0 0 0
## 18608 0 0 0
## 18609 0 0 0
## 18610 0 0 0
## 18611 0 0 0
## 18612 0 0 0
## 18613 0 0 0
## 18614 0 0 0
## 18615 0 0 0
## 18616 0 0 0
## 18617 0 0 0
## 18618 0 0 0
## 18619 0 0 0
## 18620 0 0 0
## 18621 0 0 0
## 18622 0 0 0
## 18623 0 0 0
## 18624 0 0 0
## 18625 0 0 0
## 18626 0 0 0
## 18627 0 0 0
## 18628 0 0 0
## 18629 0 0 0
## 18630 0 0 0
## 18631 0 0 0
## 18632 0 0 0
## 18633 0 0 0
## 18634 0 0 0
## 18635 0 0 0
## 18636 0 0 0
## 18637 0 0 0
## 18638 0 0 0
## 18639 0 0 0
## 18640 0 0 0
## 18641 0 0 0
## 18642 0 0 0
## 18643 0 0 0
## 18644 0 0 0
## 18645 0 0 0
## 18646 0 0 0
## 18647 0 0 0
## 18648 0 0 0
## 18649 0 0 0
## 18650 0 0 0
## 18651 0 0 0
## 18652 0 0 0
## 18653 0 0 0
## 18654 0 0 0
## 18655 0 0 0
## 18656 0 0 0
## 18657 0 0 0
## 18658 0 0 0
## 18659 0 0 0
## 18660 0 0 0
## 18661 0 0 0
## 18662 0 0 0
## 18663 0 0 0
## 18664 0 0 0
## 18665 0 0 0
## 18666 0 0 0
## 18667 0 0 0
## 18668 0 0 0
## 18669 0 0 0
## 18670 0 0 0
## 18671 0 0 0
## 18672 0 0 0
## 18673 0 0 0
## 18674 0 0 0
## 18675 0 0 0
## 18676 0 0 0
## 18677 0 0 0
## 18678 0 0 0
## 18679 0 0 0
## 18680 0 0 0
## 18681 0 0 0
## 18682 0 0 0
## 18683 0 0 0
## 18684 0 0 0
## 18685 0 0 0
## 18686 0 0 0
## 18687 0 0 0
## 18688 0 0 0
## 18689 0 0 0
## 18690 0 0 0
## 18691 0 0 0
## 18692 0 0 0
## 18693 0 0 0
## 18694 0 0 0
## 18695 0 0 0
## 18696 0 0 0
## 18697 0 0 0
## 18698 0 0 0
## 18699 0 0 0
## 18700 0 0 0
## 18701 0 0 0
## 18702 0 0 0
## 18703 0 0 0
## 18704 0 0 0
## 18705 0 0 0
## 18706 0 0 0
## 18707 0 0 0
## 18708 0 0 0
## 18709 0 0 0
## 18710 0 0 0
## 18711 0 0 0
## 18712 0 0 0
## 18713 0 0 0
## 18714 0 0 0
## 18715 0 0 0
## 18716 0 0 0
## 18717 0 0 0
## 18718 0 0 0
## 18719 0 0 0
## 18720 0 0 0
## 18721 0 0 0
## 18722 0 0 0
## 18723 0 0 0
## 18724 0 0 0
## 18725 0 0 0
## 18726 0 0 0
## 18727 0 0 0
## 18728 0 0 0
## 18729 0 0 0
## 18730 0 0 0
## 18731 0 0 0
## 18732 0 0 0
## 18733 0 0 0
## 18734 0 0 0
## 18735 0 0 0
## 18736 0 0 0
## 18737 0 0 0
## 18738 0 0 0
## 18739 0 0 0
## 18740 0 0 0
## 18741 0 0 0
## 18742 0 0 0
## 18743 0 0 0
## 18744 0 0 0
## 18745 0 0 0
## 18746 0 0 0
## 18747 0 0 0
## 18748 0 0 0
## 18749 0 0 0
## 18750 0 0 0
## 18751 0 0 0
## 18752 0 0 0
## 18753 0 0 0
## 18754 0 0 0
## 18755 0 0 0
## 18756 0 0 0
## 18757 0 0 0
## 18758 0 0 0
## 18759 0 0 0
## 18760 0 0 0
## 18761 0 0 0
## 18762 0 0 0
## 18763 0 0 0
## 18764 0 0 0
## 18765 0 0 0
## 18766 0 0 0
## 18767 0 0 0
## 18768 0 0 0
## 18769 0 0 0
## 18770 0 0 0
## 18771 0 0 0
## 18772 0 0 0
## 18773 0 0 0
## 18774 0 0 0
## 18775 0 0 0
## 18776 0 0 0
## 18777 0 0 0
## 18778 0 0 0
## 18779 0 0 0
## 18780 0 0 0
## 18781 0 0 0
## 18782 0 0 0
## 18783 0 0 0
## 18784 0 0 0
## 18785 0 0 0
## 18786 0 0 0
## 18787 0 0 0
## 18788 0 0 0
## 18789 0 0 0
## 18790 0 0 0
## 18791 0 0 0
## 18792 0 0 0
## 18793 0 0 0
## 18794 0 0 0
## 18795 0 0 0
## 18796 0 0 0
## 18797 0 0 0
## 18798 0 0 0
## 18799 0 0 0
## 18800 0 0 0
## 18801 0 0 0
## 18802 0 0 0
## 18803 0 0 0
## 18804 0 0 0
## 18805 0 0 0
## 18806 0 0 0
## 18807 0 0 0
## 18808 0 0 0
## 18809 0 0 0
## 18810 0 0 0
## 18811 0 0 0
## 18812 0 0 0
## 18813 0 0 0
## 18814 0 0 0
## 18815 0 0 0
## 18816 0 0 0
## 18817 0 0 0
## 18818 0 0 0
## 18819 0 0 0
## 18820 0 0 0
## 18821 0 0 0
## 18822 0 0 0
## 18823 0 0 0
## 18824 0 0 0
## 18825 0 0 0
## 18826 0 0 0
## 18827 0 0 0
## 18828 0 0 0
## 18829 0 0 0
## 18830 0 0 0
## 18831 0 0 0
## 18832 0 0 0
## 18833 0 0 0
## 18834 0 0 0
## 18835 0 0 0
## 18836 0 0 0
## 18837 0 0 0
## 18838 0 0 0
## 18839 0 0 0
## 18840 0 0 0
## 18841 0 0 0
## 18842 0 0 0
## 18843 0 0 0
## 18844 0 0 0
## 18845 0 0 0
## 18846 0 0 0
## 18847 0 0 0
## 18848 0 0 0
## 18849 0 0 0
## 18850 0 0 0
## 18851 0 0 0
## 18852 0 0 0
## 18853 0 0 0
## 18854 0 0 0
## 18855 0 0 0
## 18856 0 0 0
## 18857 0 0 0
## 18858 0 0 0
## 18859 0 0 0
## 18860 0 0 0
## 18861 0 0 0
## 18862 0 0 0
## 18863 0 0 0
## 18864 0 0 0
## 18865 0 0 0
## 18866 0 0 0
## 18867 0 0 0
## 18868 0 0 0
## 18869 0 0 0
## 18870 0 0 0
## 18871 0 0 0
## 18872 0 0 0
## 18873 0 0 0
## 18874 0 0 0
## 18875 0 0 0
## 18876 0 0 0
## 18877 0 0 0
## 18878 0 0 0
## 18879 0 0 0
## 18880 0 0 0
## 18881 0 0 0
## 18882 0 0 0
## 18883 0 0 0
## 18884 0 0 0
## 18885 0 0 0
## 18886 0 0 0
## 18887 0 0 0
## 18888 0 0 0
## 18889 0 0 0
## 18890 0 0 0
## 18891 0 0 0
## 18892 0 0 0
## 18893 0 0 0
## 18894 0 0 0
## 18895 0 0 0
## 18896 0 0 0
## 18897 0 0 0
## 18898 0 0 0
## 18899 0 0 0
## 18900 0 0 0
## 18901 0 0 0
## 18902 0 0 0
## 18903 0 0 0
## 18904 0 0 0
## 18905 0 0 0
## 18906 0 0 0
## 18907 0 0 0
## 18908 0 0 0
## 18909 0 0 0
## 18910 0 0 0
## 18911 0 0 0
## 18912 0 0 0
## 18913 0 0 0
## 18914 0 0 0
## 18915 0 0 0
## 18916 0 0 0
## 18917 0 0 0
## 18918 0 0 0
## 18919 0 0 0
## 18920 0 0 0
## 18921 0 0 0
## 18922 0 0 0
## 18923 0 0 0
## 18924 0 0 0
## 18925 0 0 0
## 18926 0 0 0
## 18927 0 0 0
## 18928 0 0 0
## 18929 0 0 0
## 18930 0 0 0
## 18931 0 0 0
## 18932 0 0 0
## 18933 0 0 0
## 18934 0 0 0
## 18935 0 0 0
## 18936 0 0 0
## 18937 0 0 0
## 18938 0 0 0
## 18939 0 0 0
## 18940 0 0 0
## 18941 0 0 0
## 18942 0 0 0
## 18943 0 0 0
## 18944 0 0 0
## 18945 0 0 0
## 18946 0 0 0
## 18947 0 0 0
## 18948 0 0 0
## 18949 0 0 0
## 18950 0 0 0
## 18951 0 0 0
## 18952 0 0 0
## 18953 0 0 0
## 18954 0 0 0
## 18955 0 0 0
## 18956 0 0 0
## 18957 0 0 0
## 18958 0 0 0
## 18959 0 0 0
## 18960 0 0 0
## 18961 0 0 0
## 18962 0 0 0
## 18963 0 0 0
## 18964 0 0 0
## 18965 0 0 0
## 18966 0 0 0
## 18967 0 0 0
## 18968 0 0 0
## 18969 0 0 0
## 18970 0 0 0
## 18971 0 0 0
## 18972 0 0 0
## 18973 0 0 0
## 18974 0 0 0
## 18975 0 0 0
## 18976 0 0 0
## 18977 0 0 0
## 18978 0 0 0
## 18979 0 0 0
## 18980 0 0 0
## 18981 0 0 0
## 18982 0 0 0
## 18983 0 0 0
## 18984 0 0 0
## 18985 0 0 0
## 18986 0 0 0
## 18987 0 0 0
## 18988 0 0 0
## 18989 0 0 0
## 18990 0 0 0
## 18991 0 0 0
## 18992 0 0 0
## 18993 0 0 0
## 18994 0 0 0
## 18995 0 0 0
## 18996 0 0 0
## 18997 0 0 0
## 18998 0 0 0
## 18999 0 0 0
## 19000 0 0 0
## 19001 0 0 0
## 19002 0 0 0
## 19003 0 0 0
## 19004 0 0 0
## 19005 0 0 0
## 19006 0 0 0
## 19007 0 0 0
## 19008 0 0 0
## 19009 0 0 0
## 19010 0 0 0
## 19011 0 0 0
## 19012 0 0 0
## 19013 0 0 0
## 19014 0 0 0
## 19015 0 0 0
## 19016 0 0 0
## 19017 0 0 0
## 19018 0 0 0
## 19019 0 0 0
## 19020 0 0 0
## 19021 0 0 0
## 19022 0 0 0
## 19023 0 0 0
## 19024 0 0 0
## 19025 0 0 0
## 19026 0 0 0
## 19027 0 0 0
## 19028 0 0 0
## 19029 0 0 0
## 19030 0 0 0
## 19031 0 0 0
## 19032 0 0 0
## 19033 0 0 0
## 19034 0 0 0
## 19035 0 0 0
## 19036 0 0 0
## 19037 0 0 0
## 19038 0 0 0
## 19039 0 0 0
## 19040 0 0 0
## 19041 0 0 0
## 19042 0 0 0
## 19043 0 0 0
## 19044 0 0 0
## 19045 0 0 0
## 19046 0 0 0
## 19047 0 0 0
## 19048 0 0 0
## 19049 0 0 0
## 19050 0 0 0
## 19051 0 0 0
## 19052 0 0 0
## 19053 0 0 0
## 19054 0 0 0
## 19055 0 0 0
## 19056 0 0 0
## 19057 0 0 0
## 19058 0 0 0
## 19059 0 0 0
## 19060 0 0 0
## 19061 0 0 0
## 19062 0 0 0
## 19063 0 0 0
## 19064 0 0 0
## 19065 0 0 0
## 19066 0 0 0
## 19067 0 0 0
## 19068 0 0 0
## 19069 0 0 0
## 19070 0 0 0
## 19071 0 0 0
## 19072 0 0 0
## 19073 0 0 0
## 19074 0 0 0
## 19075 0 0 0
## 19076 0 0 0
## 19077 0 0 0
## 19078 0 0 0
## 19079 0 0 0
## 19080 0 0 0
## 19081 0 0 0
## 19082 0 0 0
## 19083 0 0 0
## 19084 0 0 0
## 19085 0 0 0
## 19086 0 0 0
## 19087 0 0 0
## 19088 0 0 0
## 19089 0 0 0
## 19090 0 0 0
## 19091 0 0 0
## 19092 0 0 0
## 19093 0 0 0
## 19094 0 0 0
## 19095 0 0 0
## 19096 0 0 0
## 19097 0 0 0
## 19098 0 0 0
## 19099 0 0 0
## 19100 0 0 0
## 19101 0 0 0
## 19102 0 0 0
## 19103 0 0 0
## 19104 0 0 0
## 19105 0 0 0
## 19106 0 0 0
## 19107 0 0 0
## 19108 0 0 0
## 19109 0 0 0
## 19110 0 0 0
## 19111 0 0 0
## 19112 0 0 0
## 19113 0 0 0
## 19114 0 0 0
## 19115 0 0 0
## 19116 0 0 0
## 19117 0 0 0
## 19118 0 0 0
## 19119 0 0 0
## 19120 0 0 0
## 19121 0 0 0
## 19122 0 0 0
## 19123 0 0 0
## 19124 0 0 0
## 19125 0 0 0
## 19126 0 0 0
## 19127 0 0 0
## 19128 0 0 0
## 19129 0 0 0
## 19130 0 0 0
## 19131 0 0 0
## 19132 0 0 0
## 19133 0 0 0
## 19134 0 0 0
## 19135 0 0 0
## 19136 0 0 0
## 19137 0 0 0
## 19138 0 0 0
## 19139 0 0 0
## 19140 0 0 0
## 19141 0 0 0
## 19142 0 0 0
## 19143 0 0 0
## 19144 0 0 0
## 19145 0 0 0
## 19146 0 0 0
## 19147 0 0 0
## 19148 0 0 0
## 19149 0 0 0
## 19150 0 0 0
## 19151 0 0 0
## 19152 0 0 0
## 19153 0 0 0
## 19154 0 0 0
## 19155 0 0 0
## 19156 0 0 0
## 19157 0 0 0
## 19158 0 0 0
## 19159 0 0 0
## 19160 0 0 0
## 19161 0 0 0
## 19162 0 0 0
## 19163 0 0 0
## 19164 0 0 0
## 19165 0 0 0
## 19166 0 0 0
## 19167 0 0 0
## 19168 0 0 0
## 19169 0 0 0
## 19170 0 0 0
## 19171 0 0 0
## 19172 0 0 0
## 19173 0 0 0
## 19174 0 0 0
## 19175 0 0 0
## 19176 0 0 0
## 19177 0 0 0
## 19178 0 0 0
## 19179 0 0 0
## 19180 0 0 0
## 19181 0 0 0
## 19182 0 0 0
## 19183 0 0 0
## 19184 0 0 0
## 19185 0 0 0
## 19186 0 0 0
## 19187 0 0 0
## 19188 0 0 0
## 19189 0 0 0
## 19190 0 0 0
## 19191 0 0 0
## 19192 0 0 0
## 19193 0 0 0
## 19194 0 0 0
## 19195 0 0 0
## 19196 0 0 0
## 19197 0 0 0
## 19198 0 0 0
## 19199 0 0 0
## 19200 0 0 0
## 19201 0 0 0
## 19202 0 0 0
## 19203 0 0 0
## 19204 0 0 0
## 19205 0 0 0
## 19206 0 0 0
## 19207 0 0 0
## 19208 0 0 0
## 19209 0 0 0
## 19210 0 0 0
## 19211 0 0 0
## 19212 0 0 0
## 19213 0 0 0
## 19214 0 0 0
## 19215 0 0 0
## 19216 0 0 0
## 19217 0 0 0
## 19218 0 0 0
## 19219 0 0 0
## 19220 0 0 0
## 19221 0 0 0
## 19222 0 0 0
## 19223 0 0 0
## 19224 0 0 0
## 19225 0 0 0
## 19226 0 0 0
## 19227 0 0 0
## 19228 0 0 0
## 19229 0 0 0
## 19230 0 0 0
## 19231 0 0 0
## 19232 0 0 0
## 19233 0 0 0
## 19234 0 0 0
## 19235 0 0 0
## 19236 0 0 0
## 19237 0 0 0
## 19238 0 0 0
## 19239 0 0 0
## 19240 0 0 0
## 19241 0 0 0
## 19242 0 0 0
## 19243 0 0 0
## 19244 0 0 0
## 19245 0 0 0
## 19246 0 0 0
## 19247 0 0 0
## 19248 0 0 0
## 19249 0 0 0
## 19250 0 0 0
## 19251 0 0 0
## 19252 0 0 0
## 19253 0 0 0
## 19254 0 0 0
## 19255 0 0 0
## 19256 0 0 0
## 19257 0 0 0
## 19258 0 0 0
## 19259 0 0 0
## 19260 0 0 0
## 19261 0 0 0
## 19262 0 0 0
## 19263 0 0 0
## 19264 0 0 0
## 19265 0 0 0
## 19266 0 0 0
## 19267 0 0 0
## 19268 0 0 0
## 19269 0 0 0
## 19270 0 0 0
## 19271 0 0 0
## 19272 0 0 0
## 19273 0 0 0
## 19274 0 0 0
## 19275 0 0 0
## 19276 0 0 0
## 19277 0 0 0
## 19278 0 0 0
## 19279 0 0 0
## 19280 0 0 0
## 19281 0 0 0
## 19282 0 0 0
## 19283 0 0 0
## 19284 0 0 0
## 19285 0 0 0
## 19286 0 0 0
## 19287 0 0 0
## 19288 0 0 0
## 19289 0 0 0
## 19290 0 0 0
## 19291 0 0 0
## 19292 0 0 0
## 19293 0 0 0
## 19294 0 0 0
## 19295 0 0 0
## 19296 0 0 0
## 19297 0 0 0
## 19298 0 0 0
## 19299 0 0 0
## 19300 0 0 0
## 19301 0 0 0
## 19302 0 0 0
## 19303 0 0 0
## 19304 0 0 0
## 19305 0 0 0
## 19306 0 0 0
## 19307 0 0 0
## 19308 0 0 0
## 19309 0 0 0
## 19310 0 0 0
## 19311 0 0 0
## 19312 0 0 0
## 19313 0 0 0
## 19314 0 0 0
## 19315 0 0 0
## 19316 0 0 0
## 19317 0 0 0
## 19318 0 0 0
## 19319 0 0 0
## 19320 0 0 0
## 19321 0 0 0
## 19322 0 0 0
## 19323 0 0 0
## 19324 0 0 0
## 19325 0 0 0
## 19326 0 0 0
## 19327 0 0 0
## 19328 0 0 0
## 19329 0 0 0
## 19330 0 0 0
## 19331 0 0 0
## 19332 0 0 0
## 19333 0 0 0
## 19334 0 0 0
## 19335 0 0 0
## 19336 0 0 0
## 19337 0 0 0
## 19338 0 0 0
## 19339 0 0 0
## 19340 0 0 0
## 19341 0 0 0
## 19342 0 0 0
## 19343 0 0 0
## 19344 0 0 0
## 19345 0 0 0
## 19346 0 0 0
## 19347 0 0 0
## 19348 0 0 0
## 19349 0 0 0
## 19350 0 0 0
## 19351 0 0 0
## 19352 0 0 0
## 19353 0 0 0
## 19354 0 0 0
## 19355 0 0 0
## 19356 0 0 0
## 19357 0 0 0
## 19358 0 0 0
## 19359 0 0 0
## 19360 0 0 0
## 19361 0 0 0
## 19362 0 0 0
## 19363 0 0 0
## 19364 0 0 0
## 19365 0 0 0
## 19366 0 0 0
## 19367 0 0 0
## 19368 0 0 0
## 19369 0 0 0
## 19370 0 0 0
## 19371 0 0 0
## 19372 0 0 0
## 19373 0 0 0
## 19374 0 0 0
## 19375 0 0 0
## 19376 0 0 0
## 19377 0 0 0
## 19378 0 0 0
## 19379 0 0 0
## 19380 0 0 0
## 19381 0 0 0
## 19382 0 0 0
## 19383 0 0 0
## 19384 0 0 0
## 19385 0 0 0
## 19386 0 0 0
## 19387 0 0 0
## 19388 0 0 0
## 19389 0 0 0
## 19390 0 0 0
## 19391 0 0 0
## 19392 0 0 0
## 19393 0 0 0
## 19394 0 0 0
## 19395 0 0 0
## 19396 0 0 0
## 19397 0 0 0
## 19398 0 0 0
## 19399 0 0 0
## 19400 0 0 0
## 19401 0 0 0
## 19402 0 0 0
## 19403 0 0 0
## 19404 0 0 0
## 19405 0 0 0
## 19406 0 0 0
## 19407 0 0 0
## 19408 0 0 0
## 19409 0 0 0
## 19410 0 0 0
## 19411 0 0 0
## 19412 0 0 0
## 19413 0 0 0
## 19414 0 0 0
## 19415 0 0 0
## 19416 0 0 0
## 19417 0 0 0
## 19418 0 0 0
## 19419 0 0 0
## 19420 0 0 0
## 19421 0 0 0
## 19422 0 0 0
## 19423 0 0 0
## 19424 0 0 0
## 19425 0 0 0
## 19426 0 0 0
## 19427 0 0 0
## 19428 0 0 0
## 19429 0 0 0
## 19430 0 0 0
## 19431 0 0 0
## 19432 0 0 0
## 19433 0 0 0
## 19434 0 0 0
## 19435 0 0 0
## 19436 0 0 0
## 19437 0 0 0
## 19438 0 0 0
## 19439 0 0 0
## 19440 0 0 0
## 19441 0 0 0
## 19442 0 0 0
## 19443 0 0 0
## 19444 0 0 0
## 19445 0 0 0
## 19446 0 0 0
## 19447 0 0 0
## 19448 0 0 0
## 19449 0 0 0
## 19450 0 0 0
## 19451 0 0 0
## 19452 0 0 0
## 19453 0 0 0
## 19454 0 0 0
## 19455 0 0 0
## 19456 0 0 0
## 19457 0 0 0
## 19458 0 0 0
## 19459 0 0 0
## 19460 0 0 0
## 19461 0 0 0
## 19462 0 0 0
## 19463 0 0 0
## 19464 0 0 0
## 19465 0 0 0
## 19466 0 0 0
## 19467 0 0 0
## 19468 0 0 0
## 19469 0 0 0
## 19470 0 0 0
## 19471 0 0 0
## 19472 0 0 0
## 19473 0 0 0
## 19474 0 0 0
## 19475 0 0 0
## 19476 0 0 0
## 19477 0 0 0
## 19478 0 0 0
## 19479 0 0 0
## 19480 0 0 0
## 19481 0 0 0
## 19482 0 0 0
## 19483 0 0 0
## 19484 0 0 0
## 19485 0 0 0
## 19486 0 0 0
## 19487 0 0 0
## 19488 0 0 0
## 19489 0 0 0
## 19490 0 0 0
## 19491 0 0 0
## 19492 0 0 0
## 19493 0 0 0
## 19494 0 0 0
## 19495 0 0 0
## 19496 0 0 0
## 19497 0 0 0
## 19498 0 0 0
## 19499 0 0 0
## 19500 0 0 0
## 19501 0 0 0
## 19502 0 0 0
## 19503 0 0 0
## 19504 0 0 0
## 19505 0 0 0
## 19506 0 0 0
## 19507 0 0 0
## 19508 0 0 0
## 19509 0 0 0
## 19510 0 0 0
## 19511 0 0 0
## 19512 0 0 0
## 19513 0 0 0
## 19514 0 0 0
## 19515 0 0 0
## 19516 0 0 0
## 19517 0 0 0
## 19518 0 0 0
## 19519 0 0 0
## 19520 0 0 0
## 19521 0 0 0
## 19522 0 0 0
## 19523 0 0 0
## 19524 0 0 0
## 19525 0 0 0
## 19526 0 0 0
## 19527 0 0 0
## 19528 0 0 0
## 19529 0 0 0
## 19530 0 0 0
## 19531 0 0 0
## 19532 0 0 0
## 19533 0 0 0
## 19534 0 0 0
## 19535 0 0 0
## 19536 0 0 0
## 19537 0 0 0
## 19538 0 0 0
## 19539 0 0 0
## 19540 0 0 0
## 19541 0 0 0
## 19542 0 0 0
## 19543 0 0 0
## 19544 0 0 0
## 19545 0 0 0
## 19546 0 0 0
## 19547 0 0 0
## 19548 0 0 0
## 19549 0 0 0
## 19550 0 0 0
## 19551 0 0 0
## 19552 0 0 0
## 19553 0 0 0
## 19554 0 0 0
## 19555 0 0 0
## 19556 0 0 0
## 19557 0 0 0
## 19558 0 0 0
## 19559 0 0 0
## 19560 0 0 0
## 19561 0 0 0
## 19562 0 0 0
## 19563 0 0 0
## 19564 0 0 0
## 19565 0 0 0
## 19566 0 0 0
## 19567 0 0 0
## 19568 0 0 0
## 19569 0 0 0
## 19570 0 0 0
## 19571 0 0 0
## 19572 0 0 0
## 19573 0 0 0
## 19574 0 0 0
## 19575 0 0 0
## 19576 0 0 0
## 19577 0 0 0
## 19578 0 0 0
## 19579 0 0 0
## 19580 0 0 0
## 19581 0 0 0
## 19582 0 0 0
## 19583 0 0 0
## 19584 0 0 0
## 19585 0 0 0
## 19586 0 0 0
## 19587 0 0 0
## 19588 0 0 0
## 19589 0 0 0
## 19590 0 0 0
## 19591 0 0 0
## 19592 0 0 0
## 19593 0 0 0
## 19594 0 0 0
## 19595 0 0 0
## 19596 0 0 0
## 19597 0 0 0
## 19598 0 0 0
## 19599 0 0 0
## 19600 0 0 0
## 19601 0 0 0
## 19602 0 0 0
## 19603 0 0 0
## 19604 0 0 0
## 19605 0 0 0
## 19606 0 0 0
## 19607 0 0 0
## 19608 0 0 0
## 19609 0 0 0
## 19610 0 0 0
## 19611 0 0 0
## 19612 0 0 0
## 19613 0 0 0
## 19614 0 0 0
## 19615 0 0 0
## 19616 0 0 0
## 19617 0 0 0
## 19618 0 0 0
## 19619 0 0 0
## 19620 0 0 0
## 19621 0 0 0
## 19622 0 0 0
## 19623 0 0 0
## 19624 0 0 0
## 19625 0 0 0
## 19626 0 0 0
## 19627 0 0 0
## 19628 0 0 0
## 19629 0 0 0
## 19630 0 0 0
## 19631 0 0 0
## 19632 0 0 0
## 19633 0 0 0
## 19634 0 0 0
## 19635 0 0 0
## 19636 0 0 0
## 19637 0 0 0
## 19638 0 0 0
## 19639 0 0 0
## 19640 0 0 0
## 19641 0 0 0
## 19642 0 0 0
## 19643 0 0 0
## 19644 0 0 0
## 19645 0 0 0
## 19646 0 0 0
## 19647 0 0 0
## 19648 0 0 0
## 19649 0 0 0
## 19650 0 0 0
## 19651 0 0 0
## 19652 0 0 0
## 19653 0 0 0
## 19654 0 0 0
## 19655 0 0 0
## 19656 0 0 0
## 19657 0 0 0
## 19658 0 0 0
## 19659 0 0 0
## 19660 0 0 0
## 19661 0 0 0
## 19662 0 0 0
## 19663 0 0 0
## 19664 0 0 0
## 19665 0 0 0
## 19666 0 0 0
## 19667 0 0 0
## 19668 0 0 0
## 19669 0 0 0
## 19670 0 0 0
## 19671 0 0 0
## 19672 0 0 0
## 19673 0 0 0
## 19674 0 0 0
## 19675 0 0 0
## 19676 0 0 0
## 19677 0 0 0
## 19678 0 0 0
## 19679 0 0 0
## 19680 0 0 0
## 19681 0 0 0
## 19682 0 0 0
## 19683 0 0 0
## 19684 0 0 0
## 19685 0 0 0
## 19686 0 0 0
## 19687 0 0 0
## 19688 0 0 0
## 19689 0 0 0
## 19690 0 0 0
## 19691 0 0 0
## 19692 0 0 0
## 19693 0 0 0
## 19694 0 0 0
## 19695 0 0 0
## 19696 0 0 0
## 19697 0 0 0
## 19698 0 0 0
## 19699 0 0 0
## 19700 0 0 0
## 19701 0 0 0
## 19702 0 0 0
## 19703 0 0 0
## 19704 0 0 0
## 19705 0 0 0
## 19706 0 0 0
## 19707 0 0 0
## 19708 0 0 0
## 19709 0 0 0
## 19710 0 0 0
## 19711 0 0 0
## 19712 0 0 0
## 19713 0 0 0
## 19714 0 0 0
## 19715 0 0 0
## 19716 0 0 0
## 19717 0 0 0
## 19718 0 0 0
## 19719 0 0 0
## 19720 0 0 0
## 19721 0 0 0
## 19722 0 0 0
## 19723 0 0 0
## 19724 0 0 0
## 19725 0 0 0
## 19726 0 0 0
## 19727 0 0 0
## 19728 0 0 0
## 19729 0 0 0
## 19730 0 0 0
## 19731 0 0 0
## 19732 0 0 0
## 19733 0 0 0
## 19734 0 0 0
## 19735 0 0 0
## 19736 0 0 0
## 19737 0 0 0
## 19738 0 0 0
## 19739 0 0 0
## 19740 0 0 0
## 19741 0 0 0
## 19742 0 0 0
## 19743 0 0 0
## 19744 0 0 0
## 19745 0 0 0
## 19746 0 0 0
## 19747 0 0 0
## 19748 0 0 0
## 19749 0 0 0
## 19750 0 0 0
## 19751 0 0 0
## 19752 0 0 0
## 19753 0 0 0
## 19754 0 0 0
## 19755 0 0 0
## 19756 0 0 0
## 19757 0 0 0
## 19758 0 0 0
## 19759 0 0 0
## 19760 0 0 0
## 19761 0 0 0
## 19762 0 0 0
## 19763 0 0 0
## 19764 0 0 0
## 19765 0 0 0
## 19766 0 0 0
## 19767 0 0 0
## 19768 0 0 0
## 19769 0 0 0
## 19770 0 0 0
## 19771 0 0 0
## 19772 0 0 0
## 19773 0 0 0
## 19774 0 0 0
## 19775 0 0 0
## 19776 0 0 0
## 19777 0 0 0
## 19778 0 0 0
## 19779 0 0 0
## 19780 0 0 0
## 19781 0 0 0
## 19782 0 0 0
## 19783 0 0 0
## 19784 0 0 0
## 19785 0 0 0
## 19786 0 0 0
## 19787 0 0 0
## 19788 0 0 0
## 19789 0 0 0
## 19790 0 0 0
## 19791 0 0 0
## 19792 0 0 0
## 19793 0 0 0
## 19794 0 0 0
## 19795 0 0 0
## 19796 0 0 0
## 19797 0 0 0
## 19798 0 0 0
## 19799 0 0 0
## 19800 0 0 0
## 19801 0 0 0
## 19802 0 0 0
## 19803 0 0 0
## 19804 0 0 0
## 19805 0 0 0
## 19806 0 0 0
## 19807 0 0 0
## 19808 0 0 0
## 19809 0 0 0
## 19810 0 0 0
## 19811 0 0 0
## 19812 0 0 0
## 19813 0 0 0
## 19814 0 0 0
## 19815 0 0 0
## 19816 0 0 0
## 19817 0 0 0
## 19818 0 0 0
## 19819 0 0 0
## 19820 0 0 0
## 19821 0 0 0
## 19822 0 0 0
## 19823 0 0 0
## 19824 0 0 0
## 19825 0 0 0
## 19826 0 0 0
## 19827 0 0 0
## 19828 0 0 0
## 19829 0 0 0
## 19830 0 0 0
## 19831 0 0 0
## 19832 0 0 0
## 19833 0 0 0
## 19834 0 0 0
## 19835 0 0 0
## 19836 0 0 0
## 19837 0 0 0
## 19838 0 0 0
## 19839 0 0 0
## 19840 0 0 0
## 19841 0 0 0
## 19842 0 0 0
## 19843 0 0 0
## 19844 0 0 0
## 19845 0 0 0
## 19846 0 0 0
## 19847 0 0 0
## 19848 0 0 0
## 19849 0 0 0
## 19850 0 0 0
## 19851 0 0 0
## 19852 0 0 0
## 19853 0 0 0
## 19854 0 0 0
## 19855 0 0 0
## 19856 0 0 0
## 19857 0 0 0
## 19858 0 0 0
## 19859 0 0 0
## 19860 0 0 0
## 19861 0 0 0
## 19862 0 0 0
## 19863 0 0 0
## 19864 0 0 0
## 19865 0 0 0
## 19866 0 0 0
## 19867 0 0 0
## 19868 0 0 0
## 19869 0 0 0
## 19870 0 0 0
## 19871 0 0 0
## 19872 0 0 0
## 19873 0 0 0
## 19874 0 0 0
## 19875 0 0 0
## 19876 0 0 0
## 19877 0 0 0
## 19878 0 0 0
## 19879 0 0 0
## 19880 0 0 0
## 19881 0 0 0
## 19882 0 0 0
## 19883 0 0 0
## 19884 0 0 0
## 19885 0 0 0
## 19886 0 0 0
## 19887 0 0 0
## 19888 0 0 0
## 19889 0 0 0
## 19890 0 0 0
## 19891 0 0 0
## 19892 0 0 0
## 19893 0 0 0
## 19894 0 0 0
## 19895 0 0 0
## 19896 0 0 0
## 19897 0 0 0
## 19898 0 0 0
## 19899 0 0 0
## 19900 0 0 0
## 19901 0 0 0
## 19902 0 0 0
## 19903 0 0 0
## 19904 0 0 0
## 19905 0 0 0
## 19906 0 0 0
## 19907 0 0 0
## 19908 0 0 0
## 19909 0 0 0
## 19910 0 0 0
## 19911 0 0 0
## 19912 0 0 0
## 19913 0 0 0
## 19914 0 0 0
## 19915 0 0 0
## 19916 0 0 0
## 19917 0 0 0
## 19918 0 0 0
## 19919 0 0 0
## 19920 0 0 0
## 19921 0 0 0
## 19922 0 0 0
## 19923 0 0 0
## 19924 0 0 0
## 19925 0 0 0
## 19926 0 0 0
## 19927 0 0 0
## 19928 0 0 0
## 19929 0 0 0
## 19930 0 0 0
## 19931 0 0 0
## 19932 0 0 0
## 19933 0 0 0
## 19934 0 0 0
## 19935 0 0 0
## 19936 0 0 0
## 19937 0 0 0
## 19938 0 0 0
## 19939 0 0 0
## 19940 0 0 0
## 19941 0 0 0
## 19942 0 0 0
## 19943 0 0 0
## 19944 0 0 0
## 19945 0 0 0
## 19946 0 0 0
## 19947 0 0 0
## 19948 0 0 0
## 19949 0 0 0
## 19950 0 0 0
## 19951 0 0 0
## 19952 0 0 0
## 19953 0 0 0
## 19954 0 0 0
## 19955 0 0 0
## 19956 0 0 0
## 19957 0 0 0
## 19958 0 0 0
## 19959 0 0 0
## 19960 0 0 0
## 19961 0 0 0
## 19962 0 0 0
## 19963 0 0 0
## 19964 0 0 0
## 19965 0 0 0
## 19966 0 0 0
## 19967 0 0 0
## 19968 0 0 0
## 19969 0 0 0
## 19970 0 0 0
## 19971 0 0 0
## 19972 0 0 0
## 19973 0 0 0
## 19974 0 0 0
## 19975 0 0 0
## 19976 0 0 0
## 19977 0 0 0
## 19978 0 0 0
## 19979 0 0 0
## 19980 0 0 0
## 19981 0 0 0
## 19982 0 0 0
## 19983 0 0 0
## 19984 0 0 0
## 19985 0 0 0
## 19986 0 0 0
## 19987 0 0 0
## 19988 0 0 0
## 19989 0 0 0
## 19990 0 0 0
## 19991 0 0 0
## 19992 0 0 0
## 19993 0 0 0
## 19994 0 0 0
## 19995 0 0 0
## 19996 0 0 0
## 19997 0 0 0
## 19998 0 0 0
## 19999 0 0 0
## 20000 0 0 0
## 20001 0 0 0
## 20002 0 0 0
## 20003 0 0 0
## 20004 0 0 0
## 20005 0 0 0
## 20006 0 0 0
## 20007 0 0 0
## 20008 0 0 0
## 20009 0 0 0
## 20010 0 0 0
## 20011 0 0 0
## 20012 0 0 0
## 20013 0 0 0
## 20014 0 0 0
## 20015 0 0 0
## 20016 0 0 0
## 20017 0 0 0
## 20018 0 0 0
## 20019 0 0 0
## 20020 0 0 0
## 20021 0 0 0
## 20022 0 0 0
## 20023 0 0 0
## 20024 0 0 0
## 20025 0 0 0
## 20026 0 0 0
## 20027 0 0 0
## 20028 0 0 0
## 20029 0 0 0
## 20030 0 0 0
## 20031 0 0 0
## 20032 0 0 0
## 20033 0 0 0
## 20034 0 0 0
## 20035 0 0 0
## 20036 0 0 0
## 20037 0 0 0
## 20038 0 0 0
## 20039 0 0 0
## 20040 0 0 0
## 20041 0 0 0
## 20042 0 0 0
## 20043 0 0 0
## 20044 0 0 0
## 20045 0 0 0
## 20046 0 0 0
## 20047 0 0 0
## 20048 0 0 0
## 20049 0 0 0
## 20050 0 0 0
## 20051 0 0 0
## 20052 0 0 0
## 20053 0 0 0
## 20054 0 0 0
## 20055 0 0 0
## 20056 0 0 0
## 20057 0 0 0
## 20058 0 0 0
## 20059 0 0 0
## 20060 0 0 0
## 20061 0 0 0
## 20062 0 0 0
## 20063 0 0 0
## 20064 0 0 0
## 20065 0 0 0
## 20066 0 0 0
## 20067 0 0 0
## 20068 0 0 0
## 20069 0 0 0
## 20070 0 0 0
## 20071 0 0 0
## 20072 0 0 0
## 20073 0 0 0
## 20074 0 0 0
## 20075 0 0 0
## 20076 0 0 0
## 20077 0 0 0
## 20078 0 0 0
## 20079 0 0 0
## 20080 0 0 0
## 20081 0 0 0
## 20082 0 0 0
## 20083 0 0 0
## 20084 0 0 0
## 20085 0 0 0
## 20086 0 0 0
## 20087 0 0 0
## 20088 0 0 0
## 20089 0 0 0
## 20090 0 0 0
## 20091 0 0 0
## 20092 0 0 0
## 20093 0 0 0
## 20094 0 0 0
## 20095 0 0 0
## 20096 0 0 0
## 20097 0 0 0
## 20098 0 0 0
## 20099 0 0 0
## 20100 0 0 0
## 20101 0 0 0
## 20102 0 0 0
## 20103 0 0 0
## 20104 0 0 0
## 20105 0 0 0
## 20106 0 0 0
## 20107 0 0 0
## 20108 0 0 0
## 20109 0 0 0
## 20110 0 0 0
## 20111 0 0 0
## 20112 0 0 0
## 20113 0 0 0
## 20114 0 0 0
## 20115 0 0 0
## 20116 0 0 0
## 20117 0 0 0
## 20118 0 0 0
## 20119 0 0 0
## 20120 0 0 0
## 20121 0 0 0
## 20122 0 0 0
## 20123 0 0 0
## 20124 0 0 0
## 20125 0 0 0
## 20126 0 0 0
## 20127 0 0 0
## 20128 0 0 0
## 20129 0 0 0
## 20130 0 0 0
## 20131 0 0 0
## 20132 0 0 0
## 20133 0 0 0
## 20134 0 0 0
## 20135 0 0 0
## 20136 0 0 0
## 20137 0 0 0
## 20138 0 0 0
## 20139 0 0 0
## 20140 0 0 0
## 20141 0 0 0
## 20142 0 0 0
## 20143 0 0 0
## 20144 0 0 0
## 20145 0 0 0
## 20146 0 0 0
## 20147 0 0 0
## 20148 0 0 0
## 20149 0 0 0
## 20150 0 0 0
## 20151 0 0 0
## 20152 0 0 0
## 20153 0 0 0
## 20154 0 0 0
## 20155 0 0 0
## 20156 0 0 0
## 20157 0 0 0
## 20158 0 0 0
## 20159 0 0 0
## 20160 0 0 0
## 20161 0 0 0
## 20162 0 0 0
## 20163 0 0 0
## 20164 0 0 0
## 20165 0 0 0
## 20166 0 0 0
## 20167 0 0 0
## 20168 0 0 0
## 20169 0 0 0
## 20170 0 0 0
## 20171 0 0 0
## 20172 0 0 0
## 20173 0 0 0
## 20174 0 0 0
## 20175 0 0 0
## 20176 0 0 0
## 20177 0 0 0
## 20178 0 0 0
## 20179 0 0 0
## 20180 0 0 0
## 20181 0 0 0
## 20182 0 0 0
## 20183 0 0 0
## 20184 0 0 0
## 20185 0 0 0
## 20186 0 0 0
## 20187 0 0 0
## 20188 0 0 0
## 20189 0 0 0
## 20190 0 0 0
## 20191 0 0 0
## 20192 0 0 0
## 20193 0 0 0
## 20194 0 0 0
## 20195 0 0 0
## 20196 0 0 0
## 20197 0 0 0
## 20198 0 0 0
## 20199 0 0 0
## 20200 0 0 0
## 20201 0 0 0
## 20202 0 0 0
## 20203 0 0 0
## 20204 0 0 0
## 20205 0 0 0
## 20206 0 0 0
## 20207 0 0 0
## 20208 0 0 0
## 20209 0 0 0
## 20210 0 0 0
## 20211 0 0 0
## 20212 0 0 0
## 20213 0 0 0
## 20214 0 0 0
## 20215 0 0 0
## 20216 0 0 0
## 20217 0 0 0
## 20218 0 0 0
## 20219 0 0 0
## 20220 0 0 0
## 20221 0 0 0
## 20222 0 0 0
## 20223 0 0 0
## 20224 0 0 0
## 20225 0 0 0
## 20226 0 0 0
## 20227 0 0 0
## 20228 0 0 0
## 20229 0 0 0
## 20230 0 0 0
## 20231 0 0 0
## 20232 0 0 0
## 20233 0 0 0
## 20234 0 0 0
## 20235 0 0 0
## 20236 0 0 0
## 20237 0 0 0
## 20238 0 0 0
## 20239 0 0 0
## 20240 0 0 0
## 20241 0 0 0
## 20242 0 0 0
## 20243 0 0 0
## 20244 0 0 0
## 20245 0 0 0
## 20246 0 0 0
## 20247 0 0 0
## 20248 0 0 0
## 20249 0 0 0
## 20250 0 0 0
## 20251 0 0 0
## 20252 0 0 0
## 20253 0 0 0
## 20254 0 0 0
## 20255 0 0 0
## 20256 0 0 0
## 20257 0 0 0
## 20258 0 0 0
## 20259 0 0 0
## 20260 0 0 0
## 20261 0 0 0
## 20262 0 0 0
## 20263 0 0 0
## 20264 0 0 0
## 20265 0 0 0
## 20266 0 0 0
## 20267 0 0 0
## 20268 0 0 0
## 20269 0 0 0
## 20270 0 0 0
## 20271 0 0 0
## 20272 0 0 0
## 20273 0 0 0
## 20274 0 0 0
## 20275 0 0 0
## 20276 0 0 0
## 20277 0 0 0
## 20278 0 0 0
## 20279 0 0 0
## 20280 0 0 0
## 20281 0 0 0
## 20282 0 0 0
## 20283 0 0 0
## 20284 0 0 0
## 20285 0 0 0
## 20286 0 0 0
## 20287 0 0 0
## 20288 0 0 0
## 20289 0 0 0
## 20290 0 0 0
## 20291 0 0 0
## 20292 0 0 0
## 20293 0 0 0
## 20294 0 0 0
## 20295 0 0 0
## 20296 0 0 0
## 20297 0 0 0
## 20298 0 0 0
## 20299 0 0 0
## 20300 0 0 0
## 20301 0 0 0
## 20302 0 0 0
## 20303 0 0 0
## 20304 0 0 0
## 20305 0 0 0
## 20306 0 0 0
## 20307 0 0 0
## 20308 0 0 0
## 20309 0 0 0
## 20310 0 0 0
## 20311 0 0 0
## 20312 0 0 0
## 20313 0 0 0
## 20314 0 0 0
## 20315 0 0 0
## 20316 0 0 0
## 20317 0 0 0
## 20318 0 0 0
## 20319 0 0 0
## 20320 0 0 0
## 20321 0 0 0
## 20322 0 0 0
## 20323 0 0 0
## 20324 0 0 0
## 20325 0 0 0
## 20326 0 0 0
## 20327 0 0 0
## 20328 0 0 0
## 20329 0 0 0
## 20330 0 0 0
## 20331 0 0 0
## 20332 0 0 0
## 20333 0 0 0
## 20334 0 0 0
## 20335 0 0 0
## 20336 0 0 0
## 20337 0 0 0
## 20338 0 0 0
## 20339 0 0 0
## 20340 0 0 0
## 20341 0 0 0
## 20342 0 0 0
## 20343 0 0 0
## 20344 0 0 0
## 20345 0 0 0
## 20346 0 0 0
## 20347 0 0 0
## 20348 0 0 0
## 20349 0 0 0
## 20350 0 0 0
## 20351 0 0 0
## 20352 0 0 0
## 20353 0 0 0
## 20354 0 0 0
## 20355 0 0 0
## 20356 0 0 0
## 20357 0 0 0
## 20358 0 0 0
## 20359 0 0 0
## 20360 0 0 0
## 20361 0 0 0
## 20362 0 0 0
## 20363 0 0 0
## 20364 0 0 0
## 20365 0 0 0
## 20366 0 0 0
## 20367 0 0 0
## 20368 0 0 0
## 20369 0 0 0
## 20370 0 0 0
## 20371 0 0 0
## 20372 0 0 0
## 20373 0 0 0
## 20374 0 0 0
## 20375 0 0 0
## 20376 0 0 0
## 20377 0 0 0
## 20378 0 0 0
## 20379 0 0 0
## 20380 0 0 0
## 20381 0 0 0
## 20382 0 0 0
## 20383 0 0 0
## 20384 0 0 0
## 20385 0 0 0
## 20386 0 0 0
## 20387 0 0 0
## 20388 0 0 0
## 20389 0 0 0
## 20390 0 0 0
## 20391 0 0 0
## 20392 0 0 0
## 20393 0 0 0
## 20394 0 0 0
## 20395 0 0 0
## 20396 0 0 0
## 20397 0 0 0
## 20398 0 0 0
## 20399 0 0 0
## 20400 0 0 0
## 20401 0 0 0
## 20402 0 0 0
## 20403 0 0 0
## 20404 0 0 0
## 20405 0 0 0
## 20406 0 0 0
## 20407 0 0 0
## 20408 0 0 0
## 20409 0 0 0
## 20410 0 0 0
## 20411 0 0 0
## 20412 0 0 0
## 20413 0 0 0
## 20414 0 0 0
## 20415 0 0 0
## 20416 0 0 0
## 20417 0 0 0
## 20418 0 0 0
## 20419 0 0 0
## 20420 0 0 0
## 20421 0 0 0
## 20422 0 0 0
## 20423 0 0 0
## 20424 0 0 0
## 20425 0 0 0
## 20426 0 0 0
## 20427 0 0 0
## 20428 0 0 0
## 20429 0 0 0
## 20430 0 0 0
## 20431 0 0 0
## 20432 0 0 0
## 20433 0 0 0
## 20434 0 0 0
## 20435 0 0 0
## 20436 0 0 0
## 20437 0 0 0
## 20438 0 0 0
## 20439 0 0 0
## 20440 0 0 0
## 20441 0 0 0
## 20442 0 0 0
## 20443 0 0 0
## 20444 0 0 0
## 20445 0 0 0
## 20446 0 0 0
## 20447 0 0 0
## 20448 0 0 0
## 20449 0 0 0
## 20450 0 0 0
## 20451 0 0 0
## 20452 0 0 0
## 20453 0 0 0
## 20454 0 0 0
## 20455 0 0 0
## 20456 0 0 0
## 20457 0 0 0
## 20458 0 0 0
## 20459 0 0 0
## 20460 0 0 0
## 20461 0 0 0
## 20462 0 0 0
## 20463 0 0 0
## 20464 0 0 0
## 20465 0 0 0
## 20466 0 0 0
## 20467 0 0 0
## 20468 0 0 0
## 20469 0 0 0
## 20470 0 0 0
## 20471 0 0 0
## 20472 0 0 0
## 20473 0 0 0
## 20474 0 0 0
## 20475 0 0 0
## 20476 0 0 0
## 20477 0 0 0
## 20478 0 0 0
## 20479 0 0 0
## 20480 0 0 0
## 20481 0 0 0
## 20482 0 0 0
## 20483 0 0 0
## 20484 0 0 0
## 20485 0 0 0
## 20486 0 0 0
## 20487 0 0 0
## 20488 0 0 0
## 20489 0 0 0
## 20490 0 0 0
## 20491 0 0 0
## 20492 0 0 0
## 20493 0 0 0
## 20494 0 0 0
## 20495 0 0 0
## 20496 0 0 0
## 20497 0 0 0
## 20498 0 0 0
## 20499 0 0 0
## 20500 0 0 0
## 20501 0 0 0
## 20502 0 0 0
## 20503 0 0 0
## 20504 0 0 0
## 20505 0 0 0
## 20506 0 0 0
## 20507 0 0 0
## 20508 0 0 0
## 20509 0 0 0
## 20510 0 0 0
## 20511 0 0 0
## 20512 0 0 0
## 20513 0 0 0
## 20514 0 0 0
## 20515 0 0 0
## 20516 0 0 0
## 20517 0 0 0
## 20518 0 0 0
## 20519 0 0 0
## 20520 0 0 0
## 20521 0 0 0
## 20522 0 0 0
## 20523 0 0 0
## 20524 0 0 0
## 20525 0 0 0
## 20526 0 0 0
## 20527 0 0 0
## 20528 0 0 0
## 20529 0 0 0
## 20530 0 0 0
## 20531 0 0 0
## 20532 0 0 0
## 20533 0 0 0
## 20534 0 0 0
## 20535 0 0 0
## 20536 0 0 0
## 20537 0 0 0
## 20538 0 0 0
## 20539 0 0 0
## 20540 0 0 0
## 20541 0 0 0
## 20542 0 0 0
## 20543 0 0 0
## 20544 0 0 0
## 20545 0 0 0
## 20546 0 0 0
## 20547 0 0 0
## 20548 0 0 0
## 20549 0 0 0
## 20550 0 0 0
## 20551 0 0 0
## 20552 0 0 0
## 20553 0 0 0
## 20554 0 0 0
## 20555 0 0 0
## 20556 0 0 0
## 20557 0 0 0
## 20558 0 0 0
## 20559 0 0 0
## 20560 0 0 0
## 20561 0 0 0
## 20562 0 0 0
## 20563 0 0 0
## 20564 0 0 0
## 20565 0 0 0
## 20566 0 0 0
## 20567 0 0 0
## 20568 0 0 0
## 20569 0 0 0
## 20570 0 0 0
## 20571 0 0 0
## 20572 0 0 0
## 20573 0 0 0
## 20574 0 0 0
## 20575 0 0 0
## 20576 0 0 0
## 20577 0 0 0
## 20578 0 0 0
## 20579 0 0 0
## 20580 0 0 0
## 20581 0 0 0
## 20582 0 0 0
## 20583 0 0 0
## 20584 0 0 0
## 20585 0 0 0
## 20586 0 0 0
## 20587 0 0 0
## 20588 0 0 0
## 20589 0 0 0
## 20590 0 0 0
## 20591 0 0 0
## 20592 0 0 0
## 20593 0 0 0
## 20594 0 0 0
## 20595 0 0 0
## 20596 0 0 0
## 20597 0 0 0
## 20598 0 0 0
## 20599 0 0 0
## 20600 0 0 0
## 20601 0 0 0
## 20602 0 0 0
## 20603 0 0 0
## 20604 0 0 0
## 20605 0 0 0
## 20606 0 0 0
## 20607 0 0 0
## 20608 0 0 0
## 20609 0 0 0
## 20610 0 0 0
## 20611 0 0 0
## 20612 0 0 0
## 20613 0 0 0
## 20614 0 0 0
## 20615 0 0 0
## 20616 0 0 0
## 20617 0 0 0
## 20618 0 0 0
## 20619 0 0 0
## 20620 0 0 0
## 20621 0 0 0
## 20622 0 0 0
## 20623 0 0 0
## 20624 0 0 0
## 20625 0 0 0
## 20626 0 0 0
## 20627 0 0 0
## 20628 0 0 0
## 20629 0 0 0
## 20630 0 0 0
## 20631 0 0 0
## 20632 0 0 0
## 20633 0 0 0
## 20634 0 0 0
## 20635 0 0 0
## 20636 0 0 0
## 20637 0 0 0
## 20638 0 0 0
## 20639 0 0 0
## 20640 0 0 0
## 20641 0 0 0
## 20642 0 0 0
## 20643 0 0 0
## 20644 0 0 0
## 20645 0 0 0
## 20646 0 0 0
## 20647 0 0 0
## 20648 0 0 0
## 20649 0 0 0
## 20650 0 0 0
## 20651 0 0 0
## 20652 0 0 0
## 20653 0 0 0
## 20654 0 0 0
## 20655 0 0 0
## 20656 0 0 0
## 20657 0 0 0
## 20658 0 0 0
## 20659 0 0 0
## 20660 0 0 0
## 20661 0 0 0
## 20662 0 0 0
## 20663 0 0 0
## 20664 0 0 0
## 20665 0 0 0
## 20666 0 0 0
## 20667 0 0 0
## 20668 0 0 0
## 20669 0 0 0
## 20670 0 0 0
## 20671 0 0 0
## 20672 0 0 0
## 20673 0 0 0
## 20674 0 0 0
## 20675 0 0 0
## 20676 0 0 0
## 20677 0 0 0
## 20678 0 0 0
## 20679 0 0 0
## 20680 0 0 0
## 20681 0 0 0
## 20682 0 0 0
## 20683 0 0 0
## 20684 0 0 0
## 20685 0 0 0
## 20686 0 0 0
## 20687 0 0 0
## 20688 0 0 0
## 20689 0 0 0
## 20690 0 0 0
## 20691 0 0 0
## 20692 0 0 0
## 20693 0 0 0
## 20694 0 0 0
## 20695 0 0 0
## 20696 0 0 0
## 20697 0 0 0
## 20698 0 0 0
## 20699 0 0 0
## 20700 0 0 0
## 20701 0 0 0
## 20702 0 0 0
## 20703 0 0 0
## 20704 0 0 0
## 20705 0 0 0
## 20706 0 0 0
## 20707 0 0 0
## 20708 0 0 0
## 20709 0 0 0
## 20710 0 0 0
## 20711 0 0 0
## 20712 0 0 0
## 20713 0 0 0
## 20714 0 0 0
## 20715 0 0 0
## 20716 0 0 0
## 20717 0 0 0
## 20718 0 0 0
## 20719 0 0 0
## 20720 0 0 0
## 20721 0 0 0
## 20722 0 0 0
## 20723 0 0 0
## 20724 0 0 0
## 20725 0 0 0
## 20726 0 0 0
## 20727 0 0 0
## 20728 0 0 0
## 20729 0 0 0
## 20730 0 0 0
## 20731 0 0 0
## 20732 0 0 0
## 20733 0 0 0
## 20734 0 0 0
## 20735 0 0 0
## 20736 0 0 0
## 20737 0 0 0
## 20738 0 0 0
## 20739 0 0 0
## 20740 0 0 0
## 20741 0 0 0
## 20742 0 0 0
## 20743 0 0 0
## 20744 0 0 0
## 20745 0 0 0
## 20746 0 0 0
## 20747 0 0 0
## 20748 0 0 0
## 20749 0 0 0
## 20750 0 0 0
## 20751 0 0 0
## 20752 0 0 0
## 20753 0 0 0
## 20754 0 0 0
## 20755 0 0 0
## 20756 0 0 0
## 20757 0 0 0
## 20758 0 0 0
## 20759 0 0 0
## 20760 0 0 0
## 20761 0 0 0
## 20762 0 0 0
## 20763 0 0 0
## 20764 0 0 0
## 20765 0 0 0
## 20766 0 0 0
## 20767 0 0 0
## 20768 0 0 0
## 20769 0 0 0
## 20770 0 0 0
## 20771 0 0 0
## 20772 0 0 0
## 20773 0 0 0
## 20774 0 0 0
## 20775 0 0 0
## 20776 0 0 0
## 20777 0 0 0
## 20778 0 0 0
## 20779 0 0 0
## 20780 0 0 0
## 20781 0 0 0
## 20782 0 0 0
## 20783 0 0 0
## 20784 0 0 0
## 20785 0 0 0
## 20786 0 0 0
## 20787 0 0 0
## 20788 0 0 0
## 20789 0 0 0
## 20790 0 0 0
## 20791 0 0 0
## 20792 0 0 0
## 20793 0 0 0
## 20794 0 0 0
## 20795 0 0 0
## 20796 0 0 0
## 20797 0 0 0
## 20798 0 0 0
## 20799 0 0 0
## 20800 0 0 0
## 20801 0 0 0
## 20802 0 0 0
## 20803 0 0 0
## 20804 0 0 0
## 20805 0 0 0
## 20806 0 0 0
## 20807 0 0 0
## 20808 0 0 0
## 20809 0 0 0
## 20810 0 0 0
## 20811 0 0 0
## 20812 0 0 0
## 20813 0 0 0
## 20814 0 0 0
## 20815 0 0 0
## 20816 0 0 0
## 20817 0 0 0
## 20818 0 0 0
## 20819 0 0 0
## 20820 0 0 0
## 20821 0 0 0
## 20822 0 0 0
## 20823 0 0 0
## 20824 0 0 0
## 20825 0 0 0
## 20826 0 0 0
## 20827 0 0 0
## 20828 0 0 0
## 20829 0 0 0
## 20830 0 0 0
## 20831 0 0 0
## 20832 0 0 0
## 20833 0 0 0
## 20834 0 0 0
## 20835 0 0 0
## 20836 0 0 0
## 20837 0 0 0
## 20838 0 0 0
## 20839 0 0 0
## 20840 0 0 0
## 20841 0 0 0
## 20842 0 0 0
## 20843 0 0 0
## 20844 0 0 0
## 20845 0 0 0
## 20846 0 0 0
## 20847 0 0 0
## 20848 0 0 0
## 20849 0 0 0
## 20850 0 0 0
## 20851 0 0 0
## 20852 0 0 0
## 20853 0 0 0
## 20854 0 0 0
## 20855 0 0 0
## 20856 0 0 0
## 20857 0 0 0
## 20858 0 0 0
## 20859 0 0 0
## 20860 0 0 0
## 20861 0 0 0
## 20862 0 0 0
## 20863 0 0 0
## 20864 0 0 0
## 20865 0 0 0
## 20866 0 0 0
## 20867 0 0 0
## 20868 0 0 0
## 20869 0 0 0
## 20870 0 0 0
## 20871 0 0 0
## 20872 0 0 0
## 20873 0 0 0
## 20874 0 0 0
## 20875 0 0 0
## 20876 0 0 0
## 20877 0 0 0
## 20878 0 0 0
## 20879 0 0 0
## 20880 0 0 0
## 20881 0 0 0
## 20882 0 0 0
## 20883 0 0 0
## 20884 0 0 0
## 20885 0 0 0
## 20886 0 0 0
## 20887 0 0 0
## 20888 0 0 0
## 20889 0 0 0
## 20890 0 0 0
## 20891 0 0 0
## 20892 0 0 0
## 20893 0 0 0
## 20894 0 0 0
## 20895 0 0 0
## 20896 0 0 0
## 20897 0 0 0
## 20898 0 0 0
## 20899 0 0 0
## 20900 0 0 0
## 20901 0 0 0
## 20902 0 0 0
## 20903 0 0 0
## 20904 0 0 0
## 20905 0 0 0
## 20906 0 0 0
## 20907 0 0 0
## 20908 0 0 0
## 20909 0 0 0
## 20910 0 0 0
## 20911 0 0 0
## 20912 0 0 0
## 20913 0 0 0
## 20914 0 0 0
## 20915 0 0 0
## 20916 0 0 0
## 20917 0 0 0
## 20918 0 0 0
## 20919 0 0 0
## 20920 0 0 0
## 20921 0 0 0
## 20922 0 0 0
## 20923 0 0 0
## 20924 0 0 0
## 20925 0 0 0
## 20926 0 0 0
## 20927 0 0 0
## 20928 0 0 0
## 20929 0 0 0
## 20930 0 0 0
## 20931 0 0 0
## 20932 0 0 0
## 20933 0 0 0
## 20934 0 0 0
## 20935 0 0 0
## 20936 0 0 0
## 20937 0 0 0
## 20938 0 0 0
## 20939 0 0 0
## 20940 0 0 0
## 20941 0 0 0
## 20942 0 0 0
## 20943 0 0 0
## 20944 0 0 0
## 20945 0 0 0
## 20946 0 0 0
## 20947 0 0 0
## 20948 0 0 0
## 20949 0 0 0
## 20950 0 0 0
## 20951 0 0 0
## 20952 0 0 0
## 20953 0 0 0
## 20954 0 0 0
## 20955 0 0 0
## 20956 0 0 0
## 20957 0 0 0
## 20958 0 0 0
## 20959 0 0 0
## 20960 0 0 0
## 20961 0 0 0
## 20962 0 0 0
## 20963 0 0 0
## 20964 0 0 0
## 20965 0 0 0
## 20966 0 0 0
## 20967 0 0 0
## 20968 0 0 0
## 20969 0 0 0
## 20970 0 0 0
## 20971 0 0 0
## 20972 0 0 0
## 20973 0 0 0
## 20974 0 0 0
## 20975 0 0 0
## 20976 0 0 0
## 20977 0 0 0
## 20978 0 0 0
## 20979 0 0 0
## 20980 0 0 0
## 20981 0 0 0
## 20982 0 0 0
## 20983 0 0 0
## 20984 0 0 0
## 20985 0 0 0
## 20986 0 0 0
## 20987 0 0 0
## 20988 0 0 0
## 20989 0 0 0
## 20990 0 0 0
## 20991 0 0 0
## 20992 0 0 0
## 20993 0 0 0
## 20994 0 0 0
## 20995 0 0 0
## 20996 0 0 0
## 20997 0 0 0
## 20998 0 0 0
## 20999 0 0 0
## 21000 0 0 0
## 21001 0 0 0
## 21002 0 0 0
## 21003 0 0 0
## 21004 0 0 0
## 21005 0 0 0
## 21006 0 0 0
## 21007 0 0 0
## 21008 0 0 0
## 21009 0 0 0
## 21010 0 0 0
## 21011 0 0 0
## 21012 0 0 0
## 21013 0 0 0
## 21014 0 0 0
## 21015 0 0 0
## 21016 0 0 0
## 21017 0 0 0
## 21018 0 0 0
## 21019 0 0 0
## 21020 0 0 0
## 21021 0 0 0
## 21022 0 0 0
## 21023 0 0 0
## 21024 0 0 0
## 21025 0 0 0
## 21026 0 0 0
## 21027 0 0 0
## 21028 0 0 0
## 21029 0 0 0
## 21030 0 0 0
## 21031 0 0 0
## 21032 0 0 0
## 21033 0 0 0
## 21034 0 0 0
## 21035 0 0 0
## 21036 0 0 0
## 21037 0 0 0
## 21038 0 0 0
## 21039 0 0 0
## 21040 0 0 0
## 21041 0 0 0
## 21042 0 0 0
## 21043 0 0 0
## 21044 0 0 0
## 21045 0 0 0
## 21046 0 0 0
## 21047 0 0 0
## 21048 0 0 0
## 21049 0 0 0
## 21050 0 0 0
## 21051 0 0 0
## 21052 0 0 0
## 21053 0 0 0
## 21054 0 0 0
## 21055 0 0 0
## 21056 0 0 0
## 21057 0 0 0
## 21058 0 0 0
## 21059 0 0 0
## 21060 0 0 0
## 21061 0 0 0
## 21062 0 0 0
## 21063 0 0 0
## 21064 0 0 0
## 21065 0 0 0
## 21066 0 0 0
## 21067 0 0 0
## 21068 0 0 0
## 21069 0 0 0
## 21070 0 0 0
## 21071 0 0 0
## 21072 0 0 0
## 21073 0 0 0
## 21074 0 0 0
## 21075 0 0 0
## 21076 0 0 0
## 21077 0 0 0
## 21078 0 0 0
## 21079 0 0 0
## 21080 0 0 0
## 21081 0 0 0
## 21082 0 0 0
## 21083 0 0 0
## 21084 0 0 0
## 21085 0 0 0
## 21086 0 0 0
## 21087 0 0 0
## 21088 0 0 0
## 21089 0 0 0
## 21090 0 0 0
## 21091 0 0 0
## 21092 0 0 0
## 21093 0 0 0
## 21094 0 0 0
## 21095 0 0 0
## 21096 0 0 0
## 21097 0 0 0
## 21098 0 0 0
## 21099 0 0 0
## 21100 0 0 0
## 21101 0 0 0
## 21102 0 0 0
## 21103 0 0 0
## 21104 0 0 0
## 21105 0 0 0
## 21106 0 0 0
## 21107 0 0 0
## 21108 0 0 0
## 21109 0 0 0
## 21110 0 0 0
## 21111 0 0 0
## 21112 0 0 0
## 21113 0 0 0
## 21114 0 0 0
## 21115 0 0 0
## 21116 0 0 0
## 21117 0 0 0
## 21118 0 0 0
## 21119 0 0 0
## 21120 0 0 0
## 21121 0 0 0
## 21122 0 0 0
## 21123 0 0 0
## 21124 0 0 0
## 21125 0 0 0
## 21126 0 0 0
## 21127 0 0 0
## 21128 0 0 0
## 21129 0 0 0
## 21130 0 0 0
## 21131 0 0 0
## 21132 0 0 0
## 21133 0 0 0
## 21134 0 0 0
## 21135 0 0 0
## 21136 0 0 0
## 21137 0 0 0
## 21138 0 0 0
## 21139 0 0 0
## 21140 0 0 0
## 21141 0 0 0
## 21142 0 0 0
## 21143 0 0 0
## 21144 0 0 0
## 21145 0 0 0
## 21146 0 0 0
## 21147 0 0 0
## 21148 0 0 0
## 21149 0 0 0
## 21150 0 0 0
## 21151 0 0 0
## 21152 0 0 0
## 21153 0 0 0
## 21154 0 0 0
## 21155 0 0 0
## 21156 0 0 0
## 21157 0 0 0
## 21158 0 0 0
## 21159 0 0 0
## 21160 0 0 0
## 21161 0 0 0
## 21162 0 0 0
## 21163 0 0 0
## 21164 0 0 0
## 21165 0 0 0
## 21166 0 0 0
## 21167 0 0 0
## 21168 0 0 0
## 21169 0 0 0
## 21170 0 0 0
## 21171 0 0 0
## 21172 0 0 0
## 21173 0 0 0
## 21174 0 0 0
## 21175 0 0 0
## 21176 0 0 0
## 21177 0 0 0
## 21178 0 0 0
## 21179 0 0 0
## 21180 0 0 0
## 21181 0 0 0
## 21182 0 0 0
## 21183 0 0 0
## 21184 0 0 0
## 21185 0 0 0
## 21186 0 0 0
## 21187 0 0 0
## 21188 0 0 0
## 21189 0 0 0
## 21190 0 0 0
## 21191 0 0 0
## 21192 0 0 0
## 21193 0 0 0
## 21194 0 0 0
## 21195 0 0 0
## 21196 0 0 0
## 21197 0 0 0
## 21198 0 0 0
## 21199 0 0 0
## 21200 0 0 0
## 21201 0 0 0
## 21202 0 0 0
## 21203 0 0 0
## 21204 0 0 0
## 21205 0 0 0
## 21206 0 0 0
## 21207 0 0 0
## 21208 0 0 0
## 21209 0 0 0
## 21210 0 0 0
## 21211 0 0 0
## 21212 0 0 0
## 21213 0 0 0
## 21214 0 0 0
## 21215 0 0 0
## 21216 0 0 0
## 21217 0 0 0
## 21218 0 0 0
## 21219 0 0 0
## 21220 0 0 0
## 21221 0 0 0
## 21222 0 0 0
## 21223 0 0 0
## 21224 0 0 0
## 21225 0 0 0
## 21226 0 0 0
## 21227 0 0 0
## 21228 0 0 0
## 21229 0 0 0
## 21230 0 0 0
## 21231 0 0 0
## 21232 0 0 0
## 21233 0 0 0
## 21234 0 0 0
## 21235 0 0 0
## 21236 0 0 0
## 21237 0 0 0
## 21238 0 0 0
## 21239 0 0 0
## 21240 0 0 0
## 21241 0 0 0
## 21242 0 0 0
## 21243 0 0 0
## 21244 0 0 0
## 21245 0 0 0
## 21246 0 0 0
## 21247 0 0 0
## 21248 0 0 0
## 21249 0 0 0
## 21250 0 0 0
## 21251 0 0 0
## 21252 0 0 0
## 21253 0 0 0
## 21254 0 0 0
## 21255 0 0 0
## 21256 0 0 0
## 21257 0 0 0
## 21258 0 0 0
## 21259 0 0 0
## 21260 0 0 0
## 21261 0 0 0
## 21262 0 0 0
## 21263 0 0 0
## 21264 0 0 0
## 21265 0 0 0
## 21266 0 0 0
## 21267 0 0 0
## 21268 0 0 0
## 21269 0 0 0
## 21270 0 0 0
## 21271 0 0 0
## 21272 0 0 0
## 21273 0 0 0
## 21274 0 0 0
## 21275 0 0 0
## 21276 0 0 0
## 21277 0 0 0
## 21278 0 0 0
## 21279 0 0 0
## 21280 0 0 0
## 21281 0 0 0
## 21282 0 0 0
## 21283 0 0 0
## 21284 0 0 0
## 21285 0 0 0
## 21286 0 0 0
## 21287 0 0 0
## 21288 0 0 0
## 21289 0 0 0
## 21290 0 0 0
## 21291 0 0 0
## 21292 0 0 0
## 21293 0 0 0
## 21294 0 0 0
## 21295 0 0 0
## 21296 0 0 0
## 21297 0 0 0
## 21298 0 0 0
## 21299 0 0 0
## 21300 0 0 0
## 21301 0 0 0
## 21302 0 0 0
## 21303 0 0 0
## 21304 0 0 0
## 21305 0 0 0
## 21306 0 0 0
## 21307 0 0 0
## 21308 0 0 0
## 21309 0 0 0
## 21310 0 0 0
## 21311 0 0 0
## 21312 0 0 0
## 21313 0 0 0
## 21314 0 0 0
## 21315 0 0 0
## 21316 0 0 0
## 21317 0 0 0
## 21318 0 0 0
## 21319 0 0 0
## 21320 0 0 0
## 21321 0 0 0
## 21322 0 0 0
## 21323 0 0 0
## 21324 0 0 0
## 21325 0 0 0
## 21326 0 0 0
## 21327 0 0 0
## 21328 0 0 0
## 21329 0 0 0
## 21330 0 0 0
## 21331 0 0 0
## 21332 0 0 0
## 21333 0 0 0
## 21334 0 0 0
## 21335 0 0 0
## 21336 0 0 0
## 21337 0 0 0
## 21338 0 0 0
## 21339 0 0 0
## 21340 0 0 0
## 21341 0 0 0
## 21342 0 0 0
## 21343 0 0 0
## 21344 0 0 0
## 21345 0 0 0
## 21346 0 0 0
## 21347 0 0 0
## 21348 0 0 0
## 21349 0 0 0
## 21350 0 0 0
## 21351 0 0 0
## 21352 0 0 0
## 21353 0 0 0
## 21354 0 0 0
## 21355 0 0 0
## 21356 0 0 0
## 21357 0 0 0
## 21358 0 0 0
## 21359 0 0 0
## 21360 0 0 0
## 21361 0 0 0
## 21362 0 0 0
## 21363 0 0 0
## 21364 0 0 0
## 21365 0 0 0
## 21366 0 0 0
## 21367 0 0 0
## 21368 0 0 0
## 21369 0 0 0
## 21370 0 0 0
## 21371 0 0 0
## 21372 0 0 0
## 21373 0 0 0
## 21374 0 0 0
## 21375 0 0 0
## 21376 0 0 0
## 21377 0 0 0
## 21378 0 0 0
## 21379 0 0 0
## 21380 0 0 0
## 21381 0 0 0
## 21382 0 0 0
## 21383 0 0 0
## 21384 0 0 0
## 21385 0 0 0
## 21386 0 0 0
## 21387 0 0 0
## 21388 0 0 0
## 21389 0 0 0
## 21390 0 0 0
## 21391 0 0 0
## 21392 0 0 0
## 21393 0 0 0
## 21394 0 0 0
## 21395 0 0 0
## 21396 0 0 0
## 21397 0 0 0
## 21398 0 0 0
## 21399 0 0 0
## 21400 0 0 0
## 21401 0 0 0
## 21402 0 0 0
## 21403 0 0 0
## 21404 0 0 0
## 21405 0 0 0
## 21406 0 0 0
## 21407 0 0 0
## 21408 0 0 0
## 21409 0 0 0
## 21410 0 0 0
## 21411 0 0 0
## 21412 0 0 0
## 21413 0 0 0
## 21414 0 0 0
## 21415 0 0 0
## 21416 0 0 0
## 21417 0 0 0
## 21418 0 0 0
## 21419 0 0 0
## 21420 0 0 0
## 21421 0 0 0
## 21422 0 0 0
## 21423 0 0 0
## 21424 0 0 0
## 21425 0 0 0
## 21426 0 0 0
## 21427 0 0 0
## 21428 0 0 0
## 21429 0 0 0
## 21430 0 0 0
## 21431 0 0 0
## 21432 0 0 0
## 21433 0 0 0
## 21434 0 0 0
## 21435 0 0 0
## 21436 0 0 0
## 21437 0 0 0
## 21438 0 0 0
## 21439 0 0 0
## 21440 0 0 0
## 21441 0 0 0
## 21442 0 0 0
## 21443 0 0 0
## 21444 0 0 0
## 21445 0 0 0
## 21446 0 0 0
## 21447 0 0 0
## 21448 0 0 0
## 21449 0 0 0
## 21450 0 0 0
## 21451 0 0 0
## 21452 0 0 0
## 21453 0 0 0
## 21454 0 0 0
## 21455 0 0 0
## 21456 0 0 0
## 21457 0 0 0
## 21458 0 0 0
## 21459 0 0 0
## 21460 0 0 0
## 21461 0 0 0
## 21462 0 0 0
## 21463 0 0 0
## 21464 0 0 0
## 21465 0 0 0
## 21466 0 0 0
## 21467 0 0 0
## 21468 0 0 0
## 21469 0 0 0
## 21470 0 0 0
## 21471 0 0 0
## 21472 0 0 0
## 21473 0 0 0
## 21474 0 0 0
## 21475 0 0 0
## 21476 0 0 0
## 21477 0 0 0
## 21478 0 0 0
## 21479 0 0 0
## 21480 0 0 0
## 21481 0 0 0
## 21482 0 0 0
## 21483 0 0 0
## 21484 0 0 0
## 21485 0 0 0
## 21486 0 0 0
## 21487 0 0 0
## 21488 0 0 0
## 21489 0 0 0
## 21490 0 0 0
## 21491 0 0 0
## 21492 0 0 0
## 21493 0 0 0
## 21494 0 0 0
## 21495 0 0 0
## 21496 0 0 0
## 21497 0 0 0
## 21498 0 0 0
## 21499 0 0 0
## 21500 0 0 0
## 21501 0 0 0
## 21502 0 0 0
## 21503 0 0 0
## 21504 0 0 0
## 21505 0 0 0
## 21506 0 0 0
## 21507 0 0 0
## 21508 0 0 0
## 21509 0 0 0
## 21510 0 0 0
## 21511 0 0 0
## 21512 0 0 0
## 21513 0 0 0
## 21514 0 0 0
## 21515 0 0 0
## 21516 0 0 0
## 21517 0 0 0
## 21518 0 0 0
## 21519 0 0 0
## 21520 0 0 0
## 21521 0 0 0
## 21522 0 0 0
## 21523 0 0 0
## 21524 0 0 0
## 21525 0 0 0
## 21526 0 0 0
## 21527 0 0 0
## 21528 0 0 0
## 21529 0 0 0
## 21530 0 0 0
## 21531 0 0 0
## 21532 0 0 0
## 21533 0 0 0
## 21534 0 0 0
## 21535 0 0 0
## 21536 0 0 0
## 21537 0 0 0
## 21538 0 0 0
## 21539 0 0 0
## 21540 0 0 0
## 21541 0 0 0
## 21542 0 0 0
## 21543 0 0 0
## 21544 0 0 0
## 21545 0 0 0
## 21546 0 0 0
## 21547 0 0 0
## 21548 0 0 0
## 21549 0 0 0
## 21550 0 0 0
## 21551 0 0 0
## 21552 0 0 0
## 21553 0 0 0
## 21554 0 0 0
## 21555 0 0 0
## 21556 0 0 0
## 21557 0 0 0
## 21558 0 0 0
## 21559 0 0 0
## 21560 0 0 0
## 21561 0 0 0
## 21562 0 0 0
## 21563 0 0 0
## 21564 0 0 0
## 21565 0 0 0
## 21566 0 0 0
## 21567 0 0 0
## 21568 0 0 0
## 21569 0 0 0
## 21570 0 0 0
## 21571 0 0 0
## 21572 0 0 0
## 21573 0 0 0
## 21574 0 0 0
## 21575 0 0 0
## 21576 0 0 0
## 21577 0 0 0
## 21578 0 0 0
## 21579 0 0 0
## 21580 0 0 0
## 21581 0 0 0
## 21582 0 0 0
## 21583 0 0 0
## 21584 0 0 0
## 21585 0 0 0
## 21586 0 0 0
## 21587 0 0 0
## 21588 0 0 0
## 21589 0 0 0
## 21590 0 0 0
## 21591 0 0 0
## 21592 0 0 0
## 21593 0 0 0
## 21594 0 0 0
## 21595 0 0 0
## 21596 0 0 0
## 21597 0 0 0
## 21598 0 0 0
## 21599 0 0 0
## 21600 0 0 0
## 21601 0 0 0
## 21602 0 0 0
## 21603 0 0 0
## 21604 0 0 0
## 21605 0 0 0
## 21606 0 0 0
## 21607 0 0 0
## 21608 0 0 0
## 21609 0 0 0
## 21610 0 0 0
## 21611 0 0 0
## 21612 0 0 0
## 21613 0 0 0
## 21614 0 0 0
## 21615 0 0 0
## 21616 0 0 0
## 21617 0 0 0
## 21618 0 0 0
## 21619 0 0 0
## 21620 0 0 0
## 21621 0 0 0
## 21622 0 0 0
## 21623 0 0 0
## 21624 0 0 0
## 21625 0 0 0
## 21626 0 0 0
## 21627 0 0 0
## 21628 0 0 0
## 21629 0 0 0
## 21630 0 0 0
## 21631 0 0 0
## 21632 0 0 0
## 21633 0 0 0
## 21634 0 0 0
## 21635 0 0 0
## 21636 0 0 0
## 21637 0 0 0
## 21638 0 0 0
## 21639 0 0 0
## 21640 0 0 0
## 21641 0 0 0
## 21642 0 0 0
## 21643 0 0 0
## 21644 0 0 0
## 21645 0 0 0
## 21646 0 0 0
## 21647 0 0 0
## 21648 0 0 0
## 21649 0 0 0
## 21650 0 0 0
## 21651 0 0 0
## 21652 0 0 0
## 21653 0 0 0
## 21654 0 0 0
## 21655 0 0 0
## 21656 0 0 0
## 21657 0 0 0
## 21658 0 0 0
## 21659 0 0 0
## 21660 0 0 0
## 21661 0 0 0
## 21662 0 0 0
## 21663 0 0 0
## 21664 0 0 0
## 21665 0 0 0
## 21666 0 0 0
## 21667 0 0 0
## 21668 0 0 0
## 21669 0 0 0
## 21670 0 0 0
## 21671 0 0 0
## 21672 0 0 0
## 21673 0 0 0
## 21674 0 0 0
## 21675 0 0 0
## 21676 0 0 0
## 21677 0 0 0
## 21678 0 0 0
## 21679 0 0 0
## 21680 0 0 0
## 21681 0 0 0
## 21682 0 0 0
## 21683 0 0 0
## 21684 0 0 0
## 21685 0 0 0
## 21686 0 0 0
## 21687 0 0 0
## 21688 0 0 0
## 21689 0 0 0
## 21690 0 0 0
## 21691 0 0 0
## 21692 0 0 0
## 21693 0 0 0
## 21694 0 0 0
## 21695 0 0 0
## 21696 0 0 0
## 21697 0 0 0
## 21698 0 0 0
## 21699 0 0 0
## 21700 0 0 0
## 21701 0 0 0
## 21702 0 0 0
## 21703 0 0 0
## 21704 0 0 0
## 21705 0 0 0
## 21706 0 0 0
## 21707 0 0 0
## 21708 0 0 0
## 21709 0 0 0
## 21710 0 0 0
## 21711 0 0 0
## 21712 0 0 0
## 21713 0 0 0
## 21714 0 0 0
## 21715 0 0 0
## 21716 0 0 0
## 21717 0 0 0
## 21718 0 0 0
## 21719 0 0 0
## 21720 0 0 0
## 21721 0 0 0
## 21722 0 0 0
## 21723 0 0 0
## 21724 0 0 0
## 21725 0 0 0
## 21726 0 0 0
## 21727 0 0 0
## 21728 0 0 0
## 21729 0 0 0
## 21730 0 0 0
## 21731 0 0 0
## 21732 0 0 0
## 21733 0 0 0
## 21734 0 0 0
## 21735 0 0 0
## 21736 0 0 0
## 21737 0 0 0
## 21738 0 0 0
## 21739 0 0 0
## 21740 0 0 0
## 21741 0 0 0
## 21742 0 0 0
## 21743 0 0 0
## 21744 0 0 0
## 21745 0 0 0
## 21746 0 0 0
## 21747 0 0 0
## 21748 0 0 0
## 21749 0 0 0
## 21750 0 0 0
## 21751 0 0 0
## 21752 0 0 0
## 21753 0 0 0
## 21754 0 0 0
## 21755 0 0 0
## 21756 0 0 0
## 21757 0 0 0
## 21758 0 0 0
## 21759 0 0 0
## 21760 0 0 0
## 21761 0 0 0
## 21762 0 0 0
## 21763 0 0 0
## 21764 0 0 0
## 21765 0 0 0
## 21766 0 0 0
## 21767 0 0 0
## 21768 0 0 0
## 21769 0 0 0
## 21770 0 0 0
## 21771 0 0 0
## 21772 0 0 0
## 21773 0 0 0
## 21774 0 0 0
## 21775 0 0 0
## 21776 0 0 0
## 21777 0 0 0
## 21778 0 0 0
## 21779 0 0 0
## 21780 0 0 0
## 21781 0 0 0
## 21782 0 0 0
## 21783 0 0 0
## 21784 0 0 0
## 21785 0 0 0
## 21786 0 0 0
## 21787 0 0 0
## 21788 0 0 0
## 21789 0 0 0
## 21790 0 0 0
## 21791 0 0 0
## 21792 0 0 0
## 21793 0 0 0
## 21794 0 0 0
## 21795 0 0 0
## 21796 0 0 0
## 21797 0 0 0
## 21798 0 0 0
## 21799 0 0 0
## 21800 0 0 0
## 21801 0 0 0
## 21802 0 0 0
## 21803 0 0 0
## 21804 0 0 0
## 21805 0 0 0
## 21806 0 0 0
## 21807 0 0 0
## 21808 0 0 0
## 21809 0 0 0
## 21810 0 0 0
## 21811 0 0 0
## 21812 0 0 0
## 21813 0 0 0
## 21814 0 0 0
## 21815 0 0 0
## 21816 0 0 0
## 21817 0 0 0
## 21818 0 0 0
## 21819 0 0 0
## 21820 0 0 0
## 21821 0 0 0
## 21822 0 0 0
## 21823 0 0 0
## 21824 0 0 0
## 21825 0 0 0
## 21826 0 0 0
## 21827 0 0 0
## 21828 0 0 0
## 21829 0 0 0
## 21830 0 0 0
## 21831 0 0 0
## 21832 0 0 0
## 21833 0 0 0
## 21834 0 0 0
## 21835 0 0 0
## 21836 0 0 0
## 21837 0 0 0
## 21838 0 0 0
## 21839 0 0 0
## 21840 0 0 0
## 21841 0 0 0
## 21842 0 0 0
## 21843 0 0 0
## 21844 0 0 0
## 21845 0 0 0
## 21846 0 0 0
## 21847 0 0 0
## 21848 0 0 0
## 21849 0 0 0
## 21850 0 0 0
## 21851 0 0 0
## 21852 0 0 0
## 21853 0 0 0
## 21854 0 0 0
## 21855 0 0 0
## 21856 0 0 0
## 21857 0 0 0
## 21858 0 0 0
## 21859 0 0 0
## 21860 0 0 0
## 21861 0 0 0
## 21862 0 0 0
## 21863 0 0 0
## 21864 0 0 0
## 21865 0 0 0
## 21866 0 0 0
## 21867 0 0 0
## 21868 0 0 0
## 21869 0 0 0
## 21870 0 0 0
## 21871 0 0 0
## 21872 0 0 0
## 21873 0 0 0
## 21874 0 0 0
## 21875 0 0 0
## 21876 0 0 0
## 21877 0 0 0
## 21878 0 0 0
## 21879 0 0 0
## 21880 0 0 0
## 21881 0 0 0
## 21882 0 0 0
## 21883 0 0 0
## 21884 0 0 0
## 21885 0 0 0
## 21886 0 0 0
## 21887 0 0 0
## 21888 0 0 0
## 21889 0 0 0
## 21890 0 0 0
## 21891 0 0 0
## 21892 0 0 0
## 21893 0 0 0
## 21894 0 0 0
## 21895 0 0 0
## 21896 0 0 0
## 21897 0 0 0
## 21898 0 0 0
## 21899 0 0 0
## 21900 0 0 0
## 21901 0 0 0
## 21902 0 0 0
## 21903 0 0 0
## 21904 0 0 0
## 21905 0 0 0
## 21906 0 0 0
## 21907 0 0 0
## 21908 0 0 0
## 21909 0 0 0
## 21910 0 0 0
## 21911 0 0 0
## 21912 0 0 0
## 21913 0 0 0
## 21914 0 0 0
## 21915 0 0 0
## 21916 0 0 0
## 21917 0 0 0
## 21918 0 0 0
## 21919 0 0 0
## 21920 0 0 0
## 21921 0 0 0
## 21922 0 0 0
## 21923 0 0 0
## 21924 0 0 0
## 21925 0 0 0
## 21926 0 0 0
## 21927 0 0 0
## 21928 0 0 0
## 21929 0 0 0
## 21930 0 0 0
## 21931 0 0 0
## 21932 0 0 0
## 21933 0 0 0
## 21934 0 0 0
## 21935 0 0 0
## 21936 0 0 0
## 21937 0 0 0
## 21938 0 0 0
## 21939 0 0 0
## 21940 0 0 0
## 21941 0 0 0
## 21942 0 0 0
## 21943 0 0 0
## 21944 0 0 0
## 21945 0 0 0
## 21946 0 0 0
## 21947 0 0 0
## 21948 0 0 0
## 21949 0 0 0
## 21950 0 0 0
## 21951 0 0 0
## 21952 0 0 0
## 21953 0 0 0
## 21954 0 0 0
## 21955 0 0 0
## 21956 0 0 0
## 21957 0 0 0
## 21958 0 0 0
## 21959 0 0 0
## 21960 0 0 0
## 21961 0 0 0
## 21962 0 0 0
## 21963 0 0 0
## 21964 0 0 0
## 21965 0 0 0
## 21966 0 0 0
## 21967 0 0 0
## 21968 0 0 0
## 21969 0 0 0
## 21970 0 0 0
## 21971 0 0 0
## 21972 0 0 0
## 21973 0 0 0
## 21974 0 0 0
## 21975 0 0 0
## 21976 0 0 0
## 21977 0 0 0
## 21978 0 0 0
## 21979 0 0 0
## 21980 0 0 0
## 21981 0 0 0
## 21982 0 0 0
## 21983 0 0 0
## 21984 0 0 0
## 21985 0 0 0
## 21986 0 0 0
## 21987 0 0 0
## 21988 0 0 0
## 21989 0 0 0
## 21990 0 0 0
## 21991 0 0 0
## 21992 0 0 0
## 21993 0 0 0
## 21994 0 0 0
## 21995 0 0 0
## 21996 0 0 0
## 21997 0 0 0
## 21998 0 0 0
## 21999 0 0 0
## 22000 0 0 0
## 22001 0 0 0
## 22002 0 0 0
## 22003 0 0 0
## 22004 0 0 0
## 22005 0 0 0
## 22006 0 0 0
## 22007 0 0 0
## 22008 0 0 0
## 22009 0 0 0
## 22010 0 0 0
## 22011 0 0 0
## 22012 0 0 0
## 22013 0 0 0
## 22014 0 0 0
## 22015 0 0 0
## 22016 0 0 0
## 22017 0 0 0
## 22018 0 0 0
## 22019 0 0 0
## 22020 0 0 0
## 22021 0 0 0
## 22022 0 0 0
## 22023 0 0 0
## 22024 0 0 0
## 22025 0 0 0
## 22026 0 0 0
## 22027 0 0 0
## 22028 0 0 0
## 22029 0 0 0
## 22030 0 0 0
## 22031 0 0 0
## 22032 0 0 0
## 22033 0 0 0
## 22034 0 0 0
## 22035 0 0 0
## 22036 0 0 0
## 22037 0 0 0
## 22038 0 0 0
## 22039 0 0 0
## 22040 0 0 0
## 22041 0 0 0
## 22042 0 0 0
## 22043 0 0 0
## 22044 0 0 0
## 22045 0 0 0
## 22046 0 0 0
## 22047 0 0 0
## 22048 0 0 0
## 22049 0 0 0
## 22050 0 0 0
## 22051 0 0 0
## 22052 0 0 0
## 22053 0 0 0
## 22054 0 0 0
## 22055 0 0 0
## 22056 0 0 0
## 22057 0 0 0
## 22058 0 0 0
## 22059 0 0 0
## 22060 0 0 0
## 22061 0 0 0
## 22062 0 0 0
## 22063 0 0 0
## 22064 0 0 0
## 22065 0 0 0
## 22066 0 0 0
## 22067 0 0 0
## 22068 0 0 0
## 22069 0 0 0
## 22070 0 0 0
## 22071 0 0 0
## 22072 0 0 0
## 22073 0 0 0
## 22074 0 0 0
## 22075 0 0 0
## 22076 0 0 0
## 22077 0 0 0
## 22078 0 0 0
## 22079 0 0 0
## 22080 0 0 0
## 22081 0 0 0
## 22082 0 0 0
## 22083 0 0 0
## 22084 0 0 0
## 22085 0 0 0
## 22086 0 0 0
## 22087 0 0 0
## 22088 0 0 0
## 22089 0 0 0
## 22090 0 0 0
## 22091 0 0 0
## 22092 0 0 0
## 22093 0 0 0
## 22094 0 0 0
## 22095 0 0 0
## 22096 0 0 0
## 22097 0 0 0
## 22098 0 0 0
## 22099 0 0 0
## 22100 0 0 0
## 22101 0 0 0
## 22102 0 0 0
## 22103 0 0 0
## 22104 0 0 0
## 22105 0 0 0
## 22106 0 0 0
## 22107 0 0 0
## 22108 0 0 0
## 22109 0 0 0
## 22110 0 0 0
## 22111 0 0 0
## 22112 0 0 0
## 22113 0 0 0
## 22114 0 0 0
## 22115 0 0 0
## 22116 0 0 0
## 22117 0 0 0
## 22118 0 0 0
## 22119 0 0 0
## 22120 0 0 0
## 22121 0 0 0
## 22122 0 0 0
## 22123 0 0 0
## 22124 0 0 0
## 22125 0 0 0
## 22126 0 0 0
## 22127 0 0 0
## 22128 0 0 0
## 22129 0 0 0
## 22130 0 0 0
## 22131 0 0 0
## 22132 0 0 0
## 22133 0 0 0
## 22134 0 0 0
## 22135 0 0 0
## 22136 0 0 0
## 22137 0 0 0
## 22138 0 0 0
## 22139 0 0 0
## 22140 0 0 0
## 22141 0 0 0
## 22142 0 0 0
## 22143 0 0 0
## 22144 0 0 0
## 22145 0 0 0
## 22146 0 0 0
## 22147 0 0 0
## 22148 0 0 0
## 22149 0 0 0
## 22150 0 0 0
## 22151 0 0 0
## 22152 0 0 0
## 22153 0 0 0
## 22154 0 0 0
## 22155 0 0 0
## 22156 0 0 0
## 22157 0 0 0
## 22158 0 0 0
## 22159 0 0 0
## 22160 0 0 0
## 22161 0 0 0
## 22162 0 0 0
## 22163 0 0 0
## 22164 0 0 0
## 22165 0 0 0
## 22166 0 0 0
## 22167 0 0 0
## 22168 0 0 0
## 22169 0 0 0
## 22170 0 0 0
## 22171 0 0 0
## 22172 0 0 0
## 22173 0 0 0
## 22174 0 0 0
## 22175 0 0 0
## 22176 0 0 0
## 22177 0 0 0
## 22178 0 0 0
## 22179 0 0 0
## 22180 0 0 0
## 22181 0 0 0
## 22182 0 0 0
## 22183 0 0 0
## 22184 0 0 0
## 22185 0 0 0
## 22186 0 0 0
## 22187 0 0 0
## 22188 0 0 0
## 22189 0 0 0
## 22190 0 0 0
## 22191 0 0 0
## 22192 0 0 0
## 22193 0 0 0
## 22194 0 0 0
## 22195 0 0 0
## 22196 0 0 0
## 22197 0 0 0
## 22198 0 0 0
## 22199 0 0 0
## 22200 0 0 0
## 22201 0 0 0
## 22202 0 0 0
## 22203 0 0 0
## 22204 0 0 0
## 22205 0 0 0
## 22206 0 0 0
## 22207 0 0 0
## 22208 0 0 0
## 22209 0 0 0
## 22210 0 0 0
## 22211 0 0 0
## 22212 0 0 0
## 22213 0 0 0
## 22214 0 0 0
## 22215 0 0 0
## 22216 0 0 0
## 22217 0 0 0
## 22218 0 0 0
## 22219 0 0 0
## 22220 0 0 0
## 22221 0 0 0
## 22222 0 0 0
## 22223 0 0 0
## 22224 0 0 0
## 22225 0 0 0
## 22226 0 0 0
## 22227 0 0 0
## 22228 0 0 0
## 22229 0 0 0
## 22230 0 0 0
## 22231 0 0 0
## 22232 0 0 0
## 22233 0 0 0
## 22234 0 0 0
## 22235 0 0 0
## 22236 0 0 0
## 22237 0 0 0
## 22238 0 0 0
## 22239 0 0 0
## 22240 0 0 0
## 22241 0 0 0
## 22242 0 0 0
## 22243 0 0 0
## 22244 0 0 0
## 22245 0 0 0
## 22246 0 0 0
## 22247 0 0 0
## 22248 0 0 0
## 22249 0 0 0
## 22250 0 0 0
## 22251 0 0 0
## 22252 0 0 0
## 22253 0 0 0
## 22254 0 0 0
## 22255 0 0 0
## 22256 0 0 0
## 22257 0 0 0
## 22258 0 0 0
## 22259 0 0 0
## 22260 0 0 0
## 22261 0 0 0
## 22262 0 0 0
## 22263 0 0 0
## 22264 0 0 0
## 22265 0 0 0
## 22266 0 0 0
## 22267 0 0 0
## 22268 0 0 0
## 22269 0 0 0
## 22270 0 0 0
## 22271 0 0 0
## 22272 0 0 0
## 22273 0 0 0
## 22274 0 0 0
## 22275 0 0 0
## 22276 0 0 0
## 22277 0 0 0
## 22278 0 0 0
## 22279 0 0 0
## 22280 0 0 0
## 22281 0 0 0
## 22282 0 0 0
## 22283 0 0 0
## 22284 0 0 0
## 22285 0 0 0
## 22286 0 0 0
## 22287 0 0 0
## 22288 0 0 0
## 22289 0 0 0
## 22290 0 0 0
## 22291 0 0 0
## 22292 0 0 0
## 22293 0 0 0
## 22294 0 0 0
## 22295 0 0 0
## 22296 0 0 0
## 22297 0 0 0
## 22298 0 0 0
## 22299 0 0 0
## 22300 0 0 0
## 22301 0 0 0
## 22302 0 0 0
## 22303 0 0 0
## 22304 0 0 0
## 22305 0 0 0
## 22306 0 0 0
## 22307 0 0 0
## 22308 0 0 0
## 22309 0 0 0
## 22310 0 0 0
## 22311 0 0 0
## 22312 0 0 0
## 22313 0 0 0
## 22314 0 0 0
## 22315 0 0 0
## 22316 0 0 0
## 22317 0 0 0
## 22318 0 0 0
## 22319 0 0 0
## 22320 0 0 0
## 22321 0 0 0
## 22322 0 0 0
## 22323 0 0 0
## 22324 0 0 0
## 22325 0 0 0
## 22326 0 0 0
## 22327 0 0 0
## 22328 0 0 0
## 22329 0 0 0
## 22330 0 0 0
## 22331 0 0 0
## 22332 0 0 0
## 22333 0 0 0
## 22334 0 0 0
## 22335 0 0 0
## 22336 0 0 0
## 22337 0 0 0
## 22338 0 0 0
## 22339 0 0 0
## 22340 0 0 0
## 22341 0 0 0
## 22342 0 0 0
## 22343 0 0 0
## 22344 0 0 0
## 22345 0 0 0
## 22346 0 0 0
## 22347 0 0 0
## 22348 0 0 0
## 22349 0 0 0
## 22350 0 0 0
## 22351 0 0 0
## 22352 0 0 0
## 22353 0 0 0
## 22354 0 0 0
## 22355 0 0 0
## 22356 0 0 0
## 22357 0 0 0
## 22358 0 0 0
## 22359 0 0 0
## 22360 0 0 0
## 22361 0 0 0
## 22362 0 0 0
## 22363 0 0 0
## 22364 0 0 0
## 22365 0 0 0
## 22366 0 0 0
## 22367 0 0 0
## 22368 0 0 0
## 22369 0 0 0
## 22370 0 0 0
## 22371 0 0 0
## 22372 0 0 0
## 22373 0 0 0
## 22374 0 0 0
## 22375 0 0 0
## 22376 0 0 0
## 22377 0 0 0
## 22378 0 0 0
## 22379 0 0 0
## 22380 0 0 0
## 22381 0 0 0
## 22382 0 0 0
## 22383 0 0 0
## 22384 0 0 0
## 22385 0 0 0
## 22386 0 0 0
## 22387 0 0 0
## 22388 0 0 0
## 22389 0 0 0
## 22390 0 0 0
## 22391 0 0 0
## 22392 0 0 0
## 22393 0 0 0
## 22394 0 0 0
## 22395 0 0 0
## 22396 0 0 0
## 22397 0 0 0
## 22398 0 0 0
## 22399 0 0 0
## 22400 0 0 0
## 22401 0 0 0
## 22402 0 0 0
## 22403 0 0 0
## 22404 0 0 0
## 22405 0 0 0
## 22406 0 0 0
## 22407 0 0 0
## 22408 0 0 0
## 22409 0 0 0
## 22410 0 0 0
## 22411 0 0 0
## 22412 0 0 0
## 22413 0 0 0
## 22414 0 0 0
## 22415 0 0 0
## 22416 0 0 0
## 22417 0 0 0
## 22418 0 0 0
## 22419 0 0 0
## 22420 0 0 0
## 22421 0 0 0
## 22422 0 0 0
## 22423 0 0 0
## 22424 0 0 0
## 22425 0 0 0
## 22426 0 0 0
## 22427 0 0 0
## 22428 0 0 0
## 22429 0 0 0
## 22430 0 0 0
## 22431 0 0 0
## 22432 0 0 0
## 22433 0 0 0
## 22434 0 0 0
## 22435 0 0 0
## 22436 0 0 0
## 22437 0 0 0
## 22438 0 0 0
## 22439 0 0 0
## 22440 0 0 0
## 22441 0 0 0
## 22442 0 0 0
## 22443 0 0 0
## 22444 0 0 0
## 22445 0 0 0
## 22446 0 0 0
## 22447 0 0 0
## 22448 0 0 0
## 22449 0 0 0
## 22450 0 0 0
## 22451 0 0 0
## 22452 0 0 0
## 22453 0 0 0
## 22454 0 0 0
## 22455 0 0 0
## 22456 0 0 0
## 22457 0 0 0
## 22458 0 0 0
## 22459 0 0 0
## 22460 0 0 0
## 22461 0 0 0
## 22462 0 0 0
## 22463 0 0 0
## 22464 0 0 0
## 22465 0 0 0
## 22466 0 0 0
## 22467 0 0 0
## 22468 0 0 0
## 22469 0 0 0
## 22470 0 0 0
## 22471 0 0 0
## 22472 0 0 0
## 22473 0 0 0
## 22474 0 0 0
## 22475 0 0 0
## 22476 0 0 0
## 22477 0 0 0
## 22478 0 0 0
## 22479 0 0 0
## 22480 0 0 0
## 22481 0 0 0
## 22482 0 0 0
## 22483 0 0 0
## 22484 0 0 0
## 22485 0 0 0
## 22486 0 0 0
## 22487 0 0 0
## 22488 0 0 0
## 22489 0 0 0
## 22490 0 0 0
## 22491 0 0 0
## 22492 0 0 0
## 22493 0 0 0
## 22494 0 0 0
## 22495 0 0 0
## 22496 0 0 0
## 22497 0 0 0
## 22498 0 0 0
## 22499 0 0 0
## 22500 0 0 0
## 22501 0 0 0
## 22502 0 0 0
## 22503 0 0 0
## 22504 0 0 0
## 22505 0 0 0
## 22506 0 0 0
## 22507 0 0 0
## 22508 0 0 0
## 22509 0 0 0
## 22510 0 0 0
## 22511 0 0 0
## 22512 0 0 0
## 22513 0 0 0
## 22514 0 0 0
## 22515 0 0 0
## 22516 0 0 0
## 22517 0 0 0
## 22518 0 0 0
## 22519 0 0 0
## 22520 0 0 0
## 22521 0 0 0
## 22522 0 0 0
## 22523 0 0 0
## 22524 0 0 0
## 22525 0 0 0
## 22526 0 0 0
## 22527 0 0 0
## 22528 0 0 0
## 22529 0 0 0
## 22530 0 0 0
## 22531 0 0 0
## 22532 0 0 0
## 22533 0 0 0
## 22534 0 0 0
## 22535 0 0 0
## 22536 0 0 0
## 22537 0 0 0
## 22538 0 0 0
## 22539 0 0 0
## 22540 0 0 0
## 22541 0 0 0
## 22542 0 0 0
## 22543 0 0 0
## 22544 0 0 0
## 22545 0 0 0
## 22546 0 0 0
## 22547 0 0 0
## 22548 0 0 0
## 22549 0 0 0
## 22550 0 0 0
## 22551 0 0 0
## 22552 0 0 0
## 22553 0 0 0
## 22554 0 0 0
## 22555 0 0 0
## 22556 0 0 0
## 22557 0 0 0
## 22558 0 0 0
## 22559 0 0 0
## 22560 0 0 0
## 22561 0 0 0
## 22562 0 0 0
## 22563 0 0 0
## 22564 0 0 0
## 22565 0 0 0
## 22566 0 0 0
## 22567 0 0 0
## 22568 0 0 0
## 22569 0 0 0
## 22570 0 0 0
## 22571 0 0 0
## 22572 0 0 0
## 22573 0 0 0
## 22574 0 0 0
## 22575 0 0 0
## 22576 0 0 0
## 22577 0 0 0
## 22578 0 0 0
## 22579 0 0 0
## 22580 0 0 0
## 22581 0 0 0
## 22582 0 0 0
## 22583 0 0 0
## 22584 0 0 0
## 22585 0 0 0
## 22586 0 0 0
## 22587 0 0 0
## 22588 0 0 0
## 22589 0 0 0
## 22590 0 0 0
## 22591 0 0 0
## 22592 0 0 0
## 22593 0 0 0
## 22594 0 0 0
## 22595 0 0 0
## 22596 0 0 0
## 22597 0 0 0
## 22598 0 0 0
## 22599 0 0 0
## 22600 0 0 0
## 22601 0 0 0
## 22602 0 0 0
## 22603 0 0 0
## 22604 0 0 0
## 22605 0 0 0
## 22606 0 0 0
## 22607 0 0 0
## 22608 0 0 0
## 22609 0 0 0
## 22610 0 0 0
## 22611 0 0 0
## 22612 0 0 0
## 22613 0 0 0
## 22614 0 0 0
## 22615 0 0 0
## 22616 0 0 0
## 22617 0 0 0
## 22618 0 0 0
## 22619 0 0 0
## 22620 0 0 0
## 22621 0 0 0
## 22622 0 0 0
## 22623 0 0 0
## 22624 0 0 0
## 22625 0 0 0
## 22626 0 0 0
## 22627 0 0 0
## 22628 0 0 0
## 22629 0 0 0
## 22630 0 0 0
## 22631 0 0 0
## 22632 0 0 0
## 22633 0 0 0
## 22634 0 0 0
## 22635 0 0 0
## 22636 0 0 0
## 22637 0 0 0
## 22638 0 0 0
## 22639 0 0 0
## 22640 0 0 0
## 22641 0 0 0
## 22642 0 0 0
## 22643 0 0 0
## 22644 0 0 0
## 22645 0 0 0
## 22646 0 0 0
## 22647 0 0 0
## 22648 0 0 0
## 22649 0 0 0
## 22650 0 0 0
## 22651 0 0 0
## 22652 0 0 0
## 22653 0 0 0
## 22654 0 0 0
## 22655 0 0 0
## 22656 0 0 0
## 22657 0 0 0
## 22658 0 0 0
## 22659 0 0 0
## 22660 0 0 0
## 22661 0 0 0
## 22662 0 0 0
## 22663 0 0 0
## 22664 0 0 0
## 22665 0 0 0
## 22666 0 0 0
## 22667 0 0 0
## 22668 0 0 0
## 22669 0 0 0
## 22670 0 0 0
## 22671 0 0 0
## 22672 0 0 0
## 22673 0 0 0
## 22674 0 0 0
## 22675 0 0 0
## 22676 0 0 0
## 22677 0 0 0
## 22678 0 0 0
## 22679 0 0 0
## 22680 0 0 0
## 22681 0 0 0
## 22682 0 0 0
## 22683 0 0 0
## 22684 0 0 0
## 22685 0 0 0
## 22686 0 0 0
## 22687 0 0 0
## 22688 0 0 0
## 22689 0 0 0
## 22690 0 0 0
## 22691 0 0 0
## 22692 0 0 0
## 22693 0 0 0
## 22694 0 0 0
## 22695 0 0 0
## 22696 0 0 0
## 22697 0 0 0
## 22698 0 0 0
## 22699 0 0 0
## 22700 0 0 0
## 22701 0 0 0
## 22702 0 0 0
## 22703 0 0 0
## 22704 0 0 0
## 22705 0 0 0
## 22706 0 0 0
## 22707 0 0 0
## 22708 0 0 0
## 22709 0 0 0
## 22710 0 0 0
## 22711 0 0 0
## 22712 0 0 0
## 22713 0 0 0
## 22714 0 0 0
## 22715 0 0 0
## 22716 0 0 0
## 22717 0 0 0
## 22718 0 0 0
## 22719 0 0 0
## 22720 0 0 0
## 22721 0 0 0
## 22722 0 0 0
## 22723 0 0 0
## 22724 0 0 0
## 22725 0 0 0
## 22726 0 0 0
## 22727 0 0 0
## 22728 0 0 0
## 22729 0 0 0
## 22730 0 0 0
## 22731 0 0 0
## 22732 0 0 0
## 22733 0 0 0
## 22734 0 0 0
## 22735 0 0 0
## 22736 0 0 0
## 22737 0 0 0
## 22738 0 0 0
## 22739 0 0 0
## 22740 0 0 0
## 22741 0 0 0
## 22742 0 0 0
## 22743 0 0 0
## 22744 0 0 0
## 22745 0 0 0
## 22746 0 0 0
## 22747 0 0 0
## 22748 0 0 0
## 22749 0 0 0
## 22750 0 0 0
## 22751 0 0 0
## 22752 0 0 0
## 22753 0 0 0
## 22754 0 0 0
## 22755 0 0 0
## 22756 0 0 0
## 22757 0 0 0
## 22758 0 0 0
## 22759 0 0 0
## 22760 0 0 0
## 22761 0 0 0
## 22762 0 0 0
## 22763 0 0 0
## 22764 0 0 0
## 22765 0 0 0
## 22766 0 0 0
## 22767 0 0 0
## 22768 0 0 0
## 22769 0 0 0
## 22770 0 0 0
## 22771 0 0 0
## 22772 0 0 0
## 22773 0 0 0
## 22774 0 0 0
## 22775 0 0 0
## 22776 0 0 0
## 22777 0 0 0
## 22778 0 0 0
## 22779 0 0 0
## 22780 0 0 0
## 22781 0 0 0
## 22782 0 0 0
## 22783 0 0 0
## 22784 0 0 0
## 22785 0 0 0
## 22786 0 0 0
## 22787 0 0 0
## 22788 0 0 0
## 22789 0 0 0
## 22790 0 0 0
## 22791 0 0 0
## 22792 0 0 0
## 22793 0 0 0
## 22794 0 0 0
## 22795 0 0 0
## 22796 0 0 0
## 22797 0 0 0
## 22798 0 0 0
## 22799 0 0 0
## 22800 0 0 0
## 22801 0 0 0
## 22802 0 0 0
## 22803 0 0 0
## 22804 0 0 0
## 22805 0 0 0
## 22806 0 0 0
## 22807 0 0 0
## 22808 0 0 0
## 22809 0 0 0
## 22810 0 0 0
## 22811 0 0 0
## 22812 0 0 0
## 22813 0 0 0
## 22814 0 0 0
## 22815 0 0 0
## 22816 0 0 0
## 22817 0 0 0
## 22818 0 0 0
## 22819 0 0 0
## 22820 0 0 0
## 22821 0 0 0
## 22822 0 0 0
## 22823 0 0 0
## 22824 0 0 0
## 22825 0 0 0
## 22826 0 0 0
## 22827 0 0 0
## 22828 0 0 0
## 22829 0 0 0
## 22830 0 0 0
## 22831 0 0 0
## 22832 0 0 0
## 22833 0 0 0
## 22834 0 0 0
## 22835 0 0 0
## 22836 0 0 0
## 22837 0 0 0
## 22838 0 0 0
## 22839 0 0 0
## 22840 0 0 0
## 22841 0 0 0
## 22842 0 0 0
## 22843 0 0 0
## 22844 0 0 0
## 22845 0 0 0
## 22846 0 0 0
## 22847 0 0 0
## 22848 0 0 0
## 22849 0 0 0
## 22850 0 0 0
## 22851 0 0 0
## 22852 0 0 0
## 22853 0 0 0
## 22854 0 0 0
## 22855 0 0 0
## 22856 0 0 0
## 22857 0 0 0
## 22858 0 0 0
## 22859 0 0 0
## 22860 0 0 0
## 22861 0 0 0
## 22862 0 0 0
## 22863 0 0 0
## 22864 0 0 0
## 22865 0 0 0
## 22866 0 0 0
## 22867 0 0 0
## 22868 0 0 0
## 22869 0 0 0
## 22870 0 0 0
## 22871 0 0 0
## 22872 0 0 0
## 22873 0 0 0
## 22874 0 0 0
## 22875 0 0 0
## 22876 0 0 0
## 22877 0 0 0
## 22878 0 0 0
## 22879 0 0 0
## 22880 0 0 0
## 22881 0 0 0
## 22882 0 0 0
## 22883 0 0 0
## 22884 0 0 0
## 22885 0 0 0
## 22886 0 0 0
## 22887 0 0 0
## 22888 0 0 0
## 22889 0 0 0
## 22890 0 0 0
## 22891 0 0 0
## 22892 0 0 0
## 22893 0 0 0
## 22894 0 0 0
## 22895 0 0 0
## 22896 0 0 0
## 22897 0 0 0
## 22898 0 0 0
## 22899 0 0 0
## 22900 0 0 0
## 22901 0 0 0
## 22902 0 0 0
## 22903 0 0 0
## 22904 0 0 0
## 22905 0 0 0
## 22906 0 0 0
## 22907 0 0 0
## 22908 0 0 0
## 22909 0 0 0
## 22910 0 0 0
## 22911 0 0 0
## 22912 0 0 0
## 22913 0 0 0
## 22914 0 0 0
## 22915 0 0 0
## 22916 0 0 0
## 22917 0 0 0
## 22918 0 0 0
## 22919 0 0 0
## 22920 0 0 0
## 22921 0 0 0
## 22922 0 0 0
## 22923 0 0 0
## 22924 0 0 0
## 22925 0 0 0
## 22926 0 0 0
## 22927 0 0 0
## 22928 0 0 0
## 22929 0 0 0
## 22930 0 0 0
## 22931 0 0 0
## 22932 0 0 0
## 22933 0 0 0
## 22934 0 0 0
## 22935 0 0 0
## 22936 0 0 0
## 22937 0 0 0
## 22938 0 0 0
## 22939 0 0 0
## 22940 0 0 0
## 22941 0 0 0
## 22942 0 0 0
## 22943 0 0 0
## 22944 0 0 0
## 22945 0 0 0
## 22946 0 0 0
## 22947 0 0 0
## 22948 0 0 0
## 22949 0 0 0
## 22950 0 0 0
## 22951 0 0 0
## 22952 0 0 0
## 22953 0 0 0
## 22954 0 0 0
## 22955 0 0 0
## 22956 0 0 0
## 22957 0 0 0
## 22958 0 0 0
## 22959 0 0 0
## 22960 0 0 0
## 22961 0 0 0
## 22962 0 0 0
## 22963 0 0 0
## 22964 0 0 0
## 22965 0 0 0
## 22966 0 0 0
## 22967 0 0 0
## 22968 0 0 0
## 22969 0 0 0
## 22970 0 0 0
## 22971 0 0 0
## 22972 0 0 0
## 22973 0 0 0
## 22974 0 0 0
## 22975 0 0 0
## 22976 0 0 0
## 22977 0 0 0
## 22978 0 0 0
## 22979 0 0 0
## 22980 0 0 0
## 22981 0 0 0
## 22982 0 0 0
## 22983 0 0 0
## 22984 0 0 0
## 22985 0 0 0
## 22986 0 0 0
## 22987 0 0 0
## 22988 0 0 0
## 22989 0 0 0
## 22990 0 0 0
## 22991 0 0 0
## 22992 0 0 0
## 22993 0 0 0
## 22994 0 0 0
## 22995 0 0 0
## 22996 0 0 0
## 22997 0 0 0
## 22998 0 0 0
## 22999 0 0 0
## 23000 0 0 0
## 23001 0 0 0
## 23002 0 0 0
## 23003 0 0 0
## 23004 0 0 0
## 23005 0 0 0
## 23006 0 0 0
## 23007 0 0 0
## 23008 0 0 0
## 23009 0 0 0
## 23010 0 0 0
## 23011 0 0 0
## 23012 0 0 0
## 23013 0 0 0
## 23014 0 0 0
## 23015 0 0 0
## 23016 0 0 0
## 23017 0 0 0
## 23018 0 0 0
## 23019 0 0 0
## 23020 0 0 0
## 23021 0 0 0
## 23022 0 0 0
## 23023 0 0 0
## 23024 0 0 0
## 23025 0 0 0
## 23026 0 0 0
## 23027 0 0 0
## 23028 0 0 0
## 23029 0 0 0
## 23030 0 0 0
## 23031 0 0 0
## 23032 0 0 0
## 23033 0 0 0
## 23034 0 0 0
## 23035 0 0 0
## 23036 0 0 0
## 23037 0 0 0
## 23038 0 0 0
## 23039 0 0 0
## 23040 0 0 0
## 23041 0 0 0
## 23042 0 0 0
## 23043 0 0 0
## 23044 0 0 0
## 23045 0 0 0
## 23046 0 0 0
## 23047 0 0 0
## 23048 0 0 0
## 23049 0 0 0
## 23050 0 0 0
## 23051 0 0 0
## 23052 0 0 0
## 23053 0 0 0
## 23054 0 0 0
## 23055 0 0 0
## 23056 0 0 0
## 23057 0 0 0
## 23058 0 0 0
## 23059 0 0 0
## 23060 0 0 0
## 23061 0 0 0
## 23062 0 0 0
## 23063 0 0 0
## 23064 0 0 0
## 23065 0 0 0
## 23066 0 0 0
## 23067 0 0 0
## 23068 0 0 0
## 23069 0 0 0
## 23070 0 0 0
## 23071 0 0 0
## 23072 0 0 0
## 23073 0 0 0
## 23074 0 0 0
## 23075 0 0 0
## 23076 0 0 0
## 23077 0 0 0
## 23078 0 0 0
## 23079 0 0 0
## 23080 0 0 0
## 23081 0 0 0
## 23082 0 0 0
## 23083 0 0 0
## 23084 0 0 0
## 23085 0 0 0
## 23086 0 0 0
## 23087 0 0 0
## 23088 0 0 0
## 23089 0 0 0
## 23090 0 0 0
## 23091 0 0 0
## 23092 0 0 0
## 23093 0 0 0
## 23094 0 0 0
## 23095 0 0 0
## 23096 0 0 0
## 23097 0 0 0
## 23098 0 0 0
## 23099 0 0 0
## 23100 0 0 0
## 23101 0 0 0
## 23102 0 0 0
## 23103 0 0 0
## 23104 0 0 0
## 23105 0 0 0
## 23106 0 0 0
## 23107 0 0 0
## 23108 0 0 0
## 23109 0 0 0
## 23110 0 0 0
## 23111 0 0 0
## 23112 0 0 0
## 23113 0 0 0
## 23114 0 0 0
## 23115 0 0 0
## 23116 0 0 0
## 23117 0 0 0
## 23118 0 0 0
## 23119 0 0 0
## 23120 0 0 0
## 23121 0 0 0
## 23122 0 0 0
## 23123 0 0 0
## 23124 0 0 0
## 23125 0 0 0
## 23126 0 0 0
## 23127 0 0 0
## 23128 0 0 0
## 23129 0 0 0
## 23130 0 0 0
## 23131 0 0 0
## 23132 0 0 0
## 23133 0 0 0
## 23134 0 0 0
## 23135 0 0 0
## 23136 0 0 0
## 23137 0 0 0
## 23138 0 0 0
## 23139 0 0 0
## 23140 0 0 0
## 23141 0 0 0
## 23142 0 0 0
## 23143 0 0 0
## 23144 0 0 0
## 23145 0 0 0
## 23146 0 0 0
## 23147 0 0 0
## 23148 0 0 0
## 23149 0 0 0
## 23150 0 0 0
## 23151 0 0 0
## 23152 0 0 0
## 23153 0 0 0
## 23154 0 0 0
## 23155 0 0 0
## 23156 0 0 0
## 23157 0 0 0
## 23158 0 0 0
## 23159 0 0 0
## 23160 0 0 0
## 23161 0 0 0
## 23162 0 0 0
## 23163 0 0 0
## 23164 0 0 0
## 23165 0 0 0
## 23166 0 0 0
## 23167 0 0 0
## 23168 0 0 0
## 23169 0 0 0
## 23170 0 0 0
## 23171 0 0 0
## 23172 0 0 0
## 23173 0 0 0
## 23174 0 0 0
## 23175 0 0 0
## 23176 0 0 0
## 23177 0 0 0
## 23178 0 0 0
## 23179 0 0 0
## 23180 0 0 0
## 23181 0 0 0
## 23182 0 0 0
## 23183 0 0 0
## 23184 0 0 0
## 23185 0 0 0
## 23186 0 0 0
## 23187 0 0 0
## 23188 0 0 0
## 23189 0 0 0
## 23190 0 0 0
## 23191 0 0 0
## 23192 0 0 0
## 23193 0 0 0
## 23194 0 0 0
## 23195 0 0 0
## 23196 0 0 0
## 23197 0 0 0
## 23198 0 0 0
## 23199 0 0 0
## 23200 0 0 0
## 23201 0 0 0
## 23202 0 0 0
## 23203 0 0 0
## 23204 0 0 0
## 23205 0 0 0
## 23206 0 0 0
## 23207 0 0 0
## 23208 0 0 0
## 23209 0 0 0
## 23210 0 0 0
## 23211 0 0 0
## 23212 0 0 0
## 23213 0 0 0
## 23214 0 0 0
## 23215 0 0 0
## 23216 0 0 0
## 23217 0 0 0
## 23218 0 0 0
## 23219 0 0 0
## 23220 0 0 0
## 23221 0 0 0
## 23222 0 0 0
## 23223 0 0 0
## 23224 0 0 0
## 23225 0 0 0
## 23226 0 0 0
## 23227 0 0 0
## 23228 0 0 0
## 23229 0 0 0
## 23230 0 0 0
## 23231 0 0 0
## 23232 0 0 0
## 23233 0 0 0
## 23234 0 0 0
## 23235 0 0 0
## 23236 0 0 0
## 23237 0 0 0
## 23238 0 0 0
## 23239 0 0 0
## 23240 0 0 0
## 23241 0 0 0
## 23242 0 0 0
## 23243 0 0 0
## 23244 0 0 0
## 23245 0 0 0
## 23246 0 0 0
## 23247 0 0 0
## 23248 0 0 0
## 23249 0 0 0
## 23250 0 0 0
## 23251 0 0 0
## 23252 0 0 0
## 23253 0 0 0
## 23254 0 0 0
## 23255 0 0 0
## 23256 0 0 0
## 23257 0 0 0
## 23258 0 0 0
## 23259 0 0 0
## 23260 0 0 0
## 23261 0 0 0
## 23262 0 0 0
## 23263 0 0 0
## 23264 0 0 0
## 23265 0 0 0
## 23266 0 0 0
## 23267 0 0 0
## 23268 0 0 0
## 23269 0 0 0
## 23270 0 0 0
## 23271 0 0 0
## 23272 0 0 0
## 23273 0 0 0
## 23274 0 0 0
## 23275 0 0 0
## 23276 0 0 0
## 23277 0 0 0
## 23278 0 0 0
## 23279 0 0 0
## 23280 0 0 0
## 23281 0 0 0
## 23282 0 0 0
## 23283 0 0 0
## 23284 0 0 0
## 23285 0 0 0
## 23286 0 0 0
## 23287 0 0 0
## 23288 0 0 0
## 23289 0 0 0
## 23290 0 0 0
## 23291 0 0 0
## 23292 0 0 0
## 23293 0 0 0
## 23294 0 0 0
## 23295 0 0 0
## 23296 0 0 0
## 23297 0 0 0
## 23298 0 0 0
## 23299 0 0 0
## 23300 0 0 0
## 23301 0 0 0
## 23302 0 0 0
## 23303 0 0 0
## 23304 0 0 0
## 23305 0 0 0
## 23306 0 0 0
## 23307 0 0 0
## 23308 0 0 0
## 23309 0 0 0
## 23310 0 0 0
## 23311 0 0 0
## 23312 0 0 0
## 23313 0 0 0
## 23314 0 0 0
## 23315 0 0 0
## 23316 0 0 0
## 23317 0 0 0
## 23318 0 0 0
## 23319 0 0 0
## 23320 0 0 0
## 23321 0 0 0
## 23322 0 0 0
## 23323 0 0 0
## 23324 0 0 0
## 23325 0 0 0
## 23326 0 0 0
## 23327 0 0 0
## 23328 0 0 0
## 23329 0 0 0
## 23330 0 0 0
## 23331 0 0 0
## 23332 0 0 0
## 23333 0 0 0
## 23334 0 0 0
## 23335 0 0 0
## 23336 0 0 0
## 23337 0 0 0
## 23338 0 0 0
## 23339 0 0 0
## 23340 0 0 0
## 23341 0 0 0
## 23342 0 0 0
## 23343 0 0 0
## 23344 0 0 0
## 23345 0 0 0
## 23346 0 0 0
## 23347 0 0 0
## 23348 0 0 0
## 23349 0 0 0
## 23350 0 0 0
## 23351 0 0 0
## 23352 0 0 0
## 23353 0 0 0
## 23354 0 0 0
## 23355 0 0 0
## 23356 0 0 0
## 23357 0 0 0
## 23358 0 0 0
## 23359 0 0 0
## 23360 0 0 0
## 23361 0 0 0
## 23362 0 0 0
## 23363 0 0 0
## 23364 0 0 0
## 23365 0 0 0
## 23366 0 0 0
## 23367 0 0 0
## 23368 0 0 0
## 23369 0 0 0
## 23370 0 0 0
## 23371 0 0 0
## 23372 0 0 0
## 23373 0 0 0
## 23374 0 0 0
## 23375 0 0 0
## 23376 0 0 0
## 23377 0 0 0
## 23378 0 0 0
## 23379 0 0 0
## 23380 0 0 0
## 23381 0 0 0
## 23382 0 0 0
## 23383 0 0 0
## 23384 0 0 0
## 23385 0 0 0
## 23386 0 0 0
## 23387 0 0 0
## 23388 0 0 0
## 23389 0 0 0
## 23390 0 0 0
## 23391 0 0 0
## 23392 0 0 0
## 23393 0 0 0
## 23394 0 0 0
## 23395 0 0 0
## 23396 0 0 0
## 23397 0 0 0
## 23398 0 0 0
## 23399 0 0 0
## 23400 0 0 0
## 23401 0 0 0
## 23402 0 0 0
## 23403 0 0 0
## 23404 0 0 0
## 23405 0 0 0
## 23406 0 0 0
## 23407 0 0 0
## 23408 0 0 0
## 23409 0 0 0
## 23410 0 0 0
## 23411 0 0 0
## 23412 0 0 0
## 23413 0 0 0
## 23414 0 0 0
## 23415 0 0 0
## 23416 0 0 0
## 23417 0 0 0
## 23418 0 0 0
## 23419 0 0 0
## 23420 0 0 0
## 23421 0 0 0
## 23422 0 0 0
## 23423 0 0 0
## 23424 0 0 0
## 23425 0 0 0
## 23426 0 0 0
## 23427 0 0 0
## 23428 0 0 0
## 23429 0 0 0
## 23430 0 0 0
## 23431 0 0 0
## 23432 0 0 0
## 23433 0 0 0
## 23434 0 0 0
## 23435 0 0 0
## 23436 0 0 0
## 23437 0 0 0
## 23438 0 0 0
## 23439 0 0 0
## 23440 0 0 0
## 23441 0 0 0
## 23442 0 0 0
## 23443 0 0 0
## 23444 0 0 0
## 23445 0 0 0
## 23446 0 0 0
## 23447 0 0 0
## 23448 0 0 0
## 23449 0 0 0
## 23450 0 0 0
## 23451 0 0 0
## 23452 0 0 0
## 23453 0 0 0
## 23454 0 0 0
## 23455 0 0 0
## 23456 0 0 0
## 23457 0 0 0
## 23458 0 0 0
## 23459 0 0 0
## 23460 0 0 0
## 23461 0 0 0
## 23462 0 0 0
## 23463 0 0 0
## 23464 0 0 0
## 23465 0 0 0
## 23466 0 0 0
## 23467 0 0 0
## 23468 0 0 0
## 23469 0 0 0
## 23470 0 0 0
## 23471 0 0 0
## 23472 0 0 0
## 23473 0 0 0
## 23474 0 0 0
## 23475 0 0 0
## 23476 0 0 0
## 23477 0 0 0
## 23478 0 0 0
## 23479 0 0 0
## 23480 0 0 0
## 23481 0 0 0
## 23482 0 0 0
## 23483 0 0 0
## 23484 0 0 0
## 23485 0 0 0
## 23486 0 0 0
## 23487 0 0 0
## 23488 0 0 0
## 23489 0 0 0
## 23490 0 0 0
## 23491 0 0 0
## 23492 0 0 0
## 23493 0 0 0
## 23494 0 0 0
## 23495 0 0 0
## 23496 0 0 0
## 23497 0 0 0
## 23498 0 0 0
## 23499 0 0 0
## 23500 0 0 0
## 23501 0 0 0
## 23502 0 0 0
## 23503 0 0 0
## 23504 0 0 0
## 23505 0 0 0
## 23506 0 0 0
## 23507 0 0 0
## 23508 0 0 0
## 23509 0 0 0
## 23510 0 0 0
## 23511 0 0 0
## 23512 0 0 0
## 23513 0 0 0
## 23514 0 0 0
## 23515 0 0 0
## 23516 0 0 0
## 23517 0 0 0
## 23518 0 0 0
## 23519 0 0 0
## 23520 0 0 0
## 23521 0 0 0
## 23522 0 0 0
## 23523 0 0 0
## 23524 0 0 0
## 23525 0 0 0
## 23526 0 0 0
## 23527 0 0 0
## 23528 0 0 0
## 23529 0 0 0
## 23530 0 0 0
## 23531 0 0 0
## 23532 0 0 0
## 23533 0 0 0
## 23534 0 0 0
## 23535 0 0 0
## 23536 0 0 0
## 23537 0 0 0
## 23538 0 0 0
## 23539 0 0 0
## 23540 0 0 0
## 23541 0 0 0
## 23542 0 0 0
## 23543 0 0 0
## 23544 0 0 0
## 23545 0 0 0
## 23546 0 0 0
## 23547 0 0 0
## 23548 0 0 0
## 23549 0 0 0
## 23550 0 0 0
## 23551 0 0 0
## 23552 0 0 0
## 23553 0 0 0
## 23554 0 0 0
## 23555 0 0 0
## 23556 0 0 0
## 23557 0 0 0
## 23558 0 0 0
## 23559 0 0 0
## 23560 0 0 0
## 23561 0 0 0
## 23562 0 0 0
## 23563 0 0 0
## 23564 0 0 0
## 23565 0 0 0
## 23566 0 0 0
## 23567 0 0 0
## 23568 0 0 0
## 23569 0 0 0
## 23570 0 0 0
## 23571 0 0 0
## 23572 0 0 0
## 23573 0 0 0
## 23574 0 0 0
## 23575 0 0 0
## 23576 0 0 0
## 23577 0 0 0
## 23578 0 0 0
## 23579 0 0 0
## 23580 0 0 0
## 23581 0 0 0
## 23582 0 0 0
## 23583 0 0 0
## 23584 0 0 0
## 23585 0 0 0
## 23586 0 0 0
## 23587 0 0 0
## 23588 0 0 0
## 23589 0 0 0
## 23590 0 0 0
## 23591 0 0 0
## 23592 0 0 0
## 23593 0 0 0
## 23594 0 0 0
## 23595 0 0 0
## 23596 0 0 0
## 23597 0 0 0
## 23598 0 0 0
## 23599 0 0 0
## 23600 0 0 0
## 23601 0 0 0
## 23602 0 0 0
## 23603 0 0 0
## 23604 0 0 0
## 23605 0 0 0
## 23606 0 0 0
## 23607 0 0 0
## 23608 0 0 0
## 23609 0 0 0
## 23610 0 0 0
## 23611 0 0 0
## 23612 0 0 0
## 23613 0 0 0
## 23614 0 0 0
## 23615 0 0 0
## 23616 0 0 0
## 23617 0 0 0
## 23618 0 0 0
## 23619 0 0 0
## 23620 0 0 0
## 23621 0 0 0
## 23622 0 0 0
## 23623 0 0 0
## 23624 0 0 0
## 23625 0 0 0
## 23626 0 0 0
## 23627 0 0 0
## 23628 0 0 0
## 23629 0 0 0
## 23630 0 0 0
## 23631 0 0 0
## 23632 0 0 0
## 23633 0 0 0
## 23634 0 0 0
## 23635 0 0 0
## 23636 0 0 0
## 23637 0 0 0
## 23638 0 0 0
## 23639 0 0 0
## 23640 0 0 0
## 23641 0 0 0
## 23642 0 0 0
## 23643 0 0 0
## 23644 0 0 0
## 23645 0 0 0
## 23646 0 0 0
## 23647 0 0 0
## 23648 0 0 0
## 23649 0 0 0
## 23650 0 0 0
## 23651 0 0 0
## 23652 0 0 0
## 23653 0 0 0
## 23654 0 0 0
## 23655 0 0 0
## 23656 0 0 0
## 23657 0 0 0
## 23658 0 0 0
## 23659 0 0 0
## 23660 0 0 0
## 23661 0 0 0
## 23662 0 0 0
## 23663 0 0 0
## 23664 0 0 0
## 23665 0 0 0
## 23666 0 0 0
## 23667 0 0 0
## 23668 0 0 0
## 23669 0 0 0
## 23670 0 0 0
## 23671 0 0 0
## 23672 0 0 0
## 23673 0 0 0
## 23674 0 0 0
## 23675 0 0 0
## 23676 0 0 0
## 23677 0 0 0
## 23678 0 0 0
## 23679 0 0 0
## 23680 0 0 0
## 23681 0 0 0
## 23682 0 0 0
## 23683 0 0 0
## 23684 0 0 0
## 23685 0 0 0
## 23686 0 0 0
## 23687 0 0 0
## 23688 0 0 0
## 23689 0 0 0
## 23690 0 0 0
## 23691 0 0 0
## 23692 0 0 0
## 23693 0 0 0
## 23694 0 0 0
## 23695 0 0 0
## 23696 0 0 0
## 23697 0 0 0
## 23698 0 0 0
## 23699 0 0 0
## 23700 0 0 0
## 23701 0 0 0
## 23702 0 0 0
## 23703 0 0 0
## 23704 0 0 0
## 23705 0 0 0
## 23706 0 0 0
## 23707 0 0 0
## 23708 0 0 0
## 23709 0 0 0
## 23710 0 0 0
## 23711 0 0 0
## 23712 0 0 0
## 23713 0 0 0
## 23714 0 0 0
## 23715 0 0 0
## 23716 0 0 0
## 23717 0 0 0
## 23718 0 0 0
## 23719 0 0 0
## 23720 0 0 0
## 23721 0 0 0
## 23722 0 0 0
## 23723 0 0 0
## 23724 0 0 0
## 23725 0 0 0
## 23726 0 0 0
## 23727 0 0 0
## 23728 0 0 0
## 23729 0 0 0
## 23730 0 0 0
## 23731 0 0 0
## 23732 0 0 0
## 23733 0 0 0
## 23734 0 0 0
## 23735 0 0 0
## 23736 0 0 0
## 23737 0 0 0
## 23738 0 0 0
## 23739 0 0 0
## 23740 0 0 0
## 23741 0 0 0
## 23742 0 0 0
## 23743 0 0 0
## 23744 0 0 0
## 23745 0 0 0
## 23746 0 0 0
## 23747 0 0 0
## 23748 0 0 0
## 23749 0 0 0
## 23750 0 0 0
## 23751 0 0 0
## 23752 0 0 0
## 23753 0 0 0
## 23754 0 0 0
## 23755 0 0 0
## 23756 0 0 0
## 23757 0 0 0
## 23758 0 0 0
## 23759 0 0 0
## 23760 0 0 0
## 23761 0 0 0
## 23762 0 0 0
## 23763 0 0 0
## 23764 0 0 0
## 23765 0 0 0
## 23766 0 0 0
## 23767 0 0 0
## 23768 0 0 0
## 23769 0 0 0
## 23770 0 0 0
## 23771 0 0 0
## 23772 0 0 0
## 23773 0 0 0
## 23774 0 0 0
## 23775 0 0 0
## 23776 0 0 0
## 23777 0 0 0
## 23778 0 0 0
## 23779 0 0 0
## 23780 0 0 0
## 23781 0 0 0
## 23782 0 0 0
## 23783 0 0 0
## 23784 0 0 0
## 23785 0 0 0
## 23786 0 0 0
## 23787 0 0 0
## 23788 0 0 0
## 23789 0 0 0
## 23790 0 0 0
## 23791 0 0 0
## 23792 0 0 0
## 23793 0 0 0
## 23794 0 0 0
## 23795 0 0 0
## 23796 0 0 0
## 23797 0 0 0
## 23798 0 0 0
## 23799 0 0 0
## 23800 0 0 0
## 23801 0 0 0
## 23802 0 0 0
## 23803 0 0 0
## 23804 0 0 0
## 23805 0 0 0
## 23806 0 0 0
## 23807 0 0 0
## 23808 0 0 0
## 23809 0 0 0
## 23810 0 0 0
## 23811 0 0 0
## 23812 0 0 0
## 23813 0 0 0
## 23814 0 0 0
## 23815 0 0 0
## 23816 0 0 0
## 23817 0 0 0
## 23818 0 0 0
## 23819 0 0 0
## 23820 0 0 0
## 23821 0 0 0
## 23822 0 0 0
## 23823 0 0 0
## 23824 0 0 0
## 23825 0 0 0
## 23826 0 0 0
## 23827 0 0 0
## 23828 0 0 0
## 23829 0 0 0
## 23830 0 0 0
## 23831 0 0 0
## 23832 0 0 0
## 23833 0 0 0
## 23834 0 0 0
## 23835 0 0 0
## 23836 0 0 0
## 23837 0 0 0
## 23838 0 0 0
## 23839 0 0 0
## 23840 0 0 0
## 23841 0 0 0
## 23842 0 0 0
## 23843 0 0 0
## 23844 0 0 0
## 23845 0 0 0
## 23846 0 0 0
## 23847 0 0 0
## 23848 0 0 0
## 23849 0 0 0
## 23850 0 0 0
## 23851 0 0 0
## 23852 0 0 0
## 23853 0 0 0
## 23854 0 0 0
## 23855 0 0 0
## 23856 0 0 0
## 23857 0 0 0
## 23858 0 0 0
## 23859 0 0 0
## 23860 0 0 0
## 23861 0 0 0
## 23862 0 0 0
## 23863 0 0 0
## 23864 0 0 0
## 23865 0 0 0
## 23866 0 0 0
## 23867 0 0 0
## 23868 0 0 0
## 23869 0 0 0
## 23870 0 0 0
## 23871 0 0 0
## 23872 0 0 0
## 23873 0 0 0
## 23874 0 0 0
## 23875 0 0 0
## 23876 0 0 0
## 23877 0 0 0
## 23878 0 0 0
## 23879 0 0 0
## 23880 0 0 0
## 23881 0 0 0
## 23882 0 0 0
## 23883 0 0 0
## 23884 0 0 0
## 23885 0 0 0
## 23886 0 0 0
## 23887 0 0 0
## 23888 0 0 0
## 23889 0 0 0
## 23890 0 0 0
## 23891 0 0 0
## 23892 0 0 0
## 23893 0 0 0
## 23894 0 0 0
## 23895 0 0 0
## 23896 0 0 0
## 23897 0 0 0
## 23898 0 0 0
## 23899 0 0 0
## 23900 0 0 0
## 23901 0 0 0
## 23902 0 0 0
## 23903 0 0 0
## 23904 0 0 0
## 23905 0 0 0
## 23906 0 0 0
## 23907 0 0 0
## 23908 0 0 0
## 23909 0 0 0
## 23910 0 0 0
## 23911 0 0 0
## 23912 0 0 0
## 23913 0 0 0
## 23914 0 0 0
## 23915 0 0 0
## 23916 0 0 0
## 23917 0 0 0
## 23918 0 0 0
## 23919 0 0 0
## 23920 0 0 0
## 23921 0 0 0
## 23922 0 0 0
## 23923 0 0 0
## 23924 0 0 0
## 23925 0 0 0
## 23926 0 0 0
## 23927 0 0 0
## 23928 0 0 0
## 23929 0 0 0
## 23930 0 0 0
## 23931 0 0 0
## 23932 0 0 0
## 23933 0 0 0
## 23934 0 0 0
## 23935 0 0 0
## 23936 0 0 0
## 23937 0 0 0
## 23938 0 0 0
## 23939 0 0 0
## 23940 0 0 0
## 23941 0 0 0
## 23942 0 0 0
## 23943 0 0 0
## 23944 0 0 0
## 23945 0 0 0
## 23946 0 0 0
## 23947 0 0 0
## 23948 0 0 0
## 23949 0 0 0
## 23950 0 0 0
## 23951 0 0 0
## 23952 0 0 0
## 23953 0 0 0
## 23954 0 0 0
## 23955 0 0 0
## 23956 0 0 0
## 23957 0 0 0
## 23958 0 0 0
## 23959 0 0 0
## 23960 0 0 0
## 23961 0 0 0
## 23962 0 0 0
## 23963 0 0 0
## 23964 0 0 0
## 23965 0 0 0
## 23966 0 0 0
## 23967 0 0 0
## 23968 0 0 0
## 23969 0 0 0
## 23970 0 0 0
## 23971 0 0 0
## 23972 0 0 0
## 23973 0 0 0
## 23974 0 0 0
## 23975 0 0 0
## 23976 0 0 0
## 23977 0 0 0
## 23978 0 0 0
## 23979 0 0 0
## 23980 0 0 0
## 23981 0 0 0
## 23982 0 0 0
## 23983 0 0 0
## 23984 0 0 0
## 23985 0 0 0
## 23986 0 0 0
## 23987 0 0 0
## 23988 0 0 0
## 23989 0 0 0
## 23990 0 0 0
## 23991 0 0 0
## 23992 0 0 0
## 23993 0 0 0
## 23994 0 0 0
## 23995 0 0 0
## 23996 0 0 0
## 23997 0 0 0
## 23998 0 0 0
## 23999 0 0 0
## 24000 0 0 0
## 24001 0 0 0
## 24002 0 0 0
## 24003 0 0 0
## 24004 0 0 0
## 24005 0 0 0
## 24006 0 0 0
## 24007 0 0 0
## 24008 0 0 0
## 24009 0 0 0
## 24010 0 0 0
## 24011 0 0 0
## 24012 0 0 0
## 24013 0 0 0
## 24014 0 0 0
## 24015 0 0 0
## 24016 0 0 0
## 24017 0 0 0
## 24018 0 0 0
## 24019 0 0 0
## 24020 0 0 0
## 24021 0 0 0
## 24022 0 0 0
## 24023 0 0 0
## 24024 0 0 0
## 24025 0 0 0
## 24026 0 0 0
## 24027 0 0 0
## 24028 0 0 0
## 24029 0 0 0
## 24030 0 0 0
## 24031 0 0 0
## 24032 0 0 0
## 24033 0 0 0
## 24034 0 0 0
## 24035 0 0 0
## 24036 0 0 0
## 24037 0 0 0
## 24038 0 0 0
## 24039 0 0 0
## 24040 0 0 0
## 24041 0 0 0
## 24042 0 0 0
## 24043 0 0 0
## 24044 0 0 0
## 24045 0 0 0
## 24046 0 0 0
## 24047 0 0 0
## 24048 0 0 0
## 24049 0 0 0
## 24050 0 0 0
## 24051 0 0 0
## 24052 0 0 0
## 24053 0 0 0
## 24054 0 0 0
## 24055 0 0 0
## 24056 0 0 0
## 24057 0 0 0
## 24058 0 0 0
## 24059 0 0 0
## 24060 0 0 0
## 24061 0 0 0
## 24062 0 0 0
## 24063 0 0 0
## 24064 0 0 0
## 24065 0 0 0
## 24066 0 0 0
## 24067 0 0 0
## 24068 0 0 0
## 24069 0 0 0
## 24070 0 0 0
## 24071 0 0 0
## 24072 0 0 0
## 24073 0 0 0
## 24074 0 0 0
## 24075 0 0 0
## 24076 0 0 0
## 24077 0 0 0
## 24078 0 0 0
## 24079 0 0 0
## 24080 0 0 0
## 24081 0 0 0
## 24082 0 0 0
## 24083 0 0 0
## 24084 0 0 0
## 24085 0 0 0
## 24086 0 0 0
## 24087 0 0 0
## 24088 0 0 0
## 24089 0 0 0
## 24090 0 0 0
## 24091 0 0 0
## 24092 0 0 0
## 24093 0 0 0
## 24094 0 0 0
## 24095 0 0 0
## 24096 0 0 0
## 24097 0 0 0
## 24098 0 0 0
## 24099 0 0 0
## 24100 0 0 0
## 24101 0 0 0
## 24102 0 0 0
## 24103 0 0 0
## 24104 0 0 0
## 24105 0 0 0
## 24106 0 0 0
## 24107 0 0 0
## 24108 0 0 0
## 24109 0 0 0
## 24110 0 0 0
## 24111 0 0 0
## 24112 0 0 0
## 24113 0 0 0
## 24114 0 0 0
## 24115 0 0 0
## 24116 0 0 0
## 24117 0 0 0
## 24118 0 0 0
## 24119 0 0 0
## 24120 0 0 0
## 24121 0 0 0
## 24122 0 0 0
## 24123 0 0 0
## 24124 0 0 0
## 24125 0 0 0
## 24126 0 0 0
## 24127 0 0 0
## 24128 0 0 0
## 24129 0 0 0
## 24130 0 0 0
## 24131 0 0 0
## 24132 0 0 0
## 24133 0 0 0
## 24134 0 0 0
## 24135 0 0 0
## 24136 0 0 0
## 24137 0 0 0
## 24138 0 0 0
## 24139 0 0 0
## 24140 0 0 0
## 24141 0 0 0
## 24142 0 0 0
## 24143 0 0 0
## 24144 0 0 0
## 24145 0 0 0
## 24146 0 0 0
## 24147 0 0 0
## 24148 0 0 0
## 24149 0 0 0
## 24150 0 0 0
## 24151 0 0 0
## 24152 0 0 0
## 24153 0 0 0
## 24154 0 0 0
## 24155 0 0 0
## 24156 0 0 0
## 24157 0 0 0
## 24158 0 0 0
## 24159 0 0 0
## 24160 0 0 0
## 24161 0 0 0
## 24162 0 0 0
## 24163 0 0 0
## 24164 0 0 0
## 24165 0 0 0
## 24166 0 0 0
## 24167 0 0 0
## 24168 0 0 0
## 24169 0 0 0
## 24170 0 0 0
## 24171 0 0 0
## 24172 0 0 0
## 24173 0 0 0
## 24174 0 0 0
## 24175 0 0 0
## 24176 0 0 0
## 24177 0 0 0
## 24178 0 0 0
## 24179 0 0 0
## 24180 0 0 0
## 24181 0 0 0
## 24182 0 0 0
## 24183 0 0 0
## 24184 0 0 0
## 24185 0 0 0
## 24186 0 0 0
## 24187 0 0 0
## 24188 0 0 0
## 24189 0 0 0
## 24190 0 0 0
## 24191 0 0 0
## 24192 0 0 0
## 24193 0 0 0
## 24194 0 0 0
## 24195 0 0 0
## 24196 0 0 0
## 24197 0 0 0
## 24198 0 0 0
## 24199 0 0 0
## 24200 0 0 0
## 24201 0 0 0
## 24202 0 0 0
## 24203 0 0 0
## 24204 0 0 0
## 24205 0 0 0
## 24206 0 0 0
## 24207 0 0 0
## 24208 0 0 0
## 24209 0 0 0
## 24210 0 0 0
## 24211 0 0 0
## 24212 0 0 0
## 24213 0 0 0
## 24214 0 0 0
## 24215 0 0 0
## 24216 0 0 0
## 24217 0 0 0
## 24218 0 0 0
## 24219 0 0 0
## 24220 0 0 0
## 24221 0 0 0
## 24222 0 0 0
## 24223 0 0 0
## 24224 0 0 0
## 24225 0 0 0
## 24226 0 0 0
## 24227 0 0 0
## 24228 0 0 0
## 24229 0 0 0
## 24230 0 0 0
## 24231 0 0 0
## 24232 0 0 0
## 24233 0 0 0
## 24234 0 0 0
## 24235 0 0 0
## 24236 0 0 0
## 24237 0 0 0
## 24238 0 0 0
## 24239 0 0 0
## 24240 0 0 0
## 24241 0 0 0
## 24242 0 0 0
## 24243 0 0 0
## 24244 0 0 0
## 24245 0 0 0
## 24246 0 0 0
## 24247 0 0 0
## 24248 0 0 0
## 24249 0 0 0
## 24250 0 0 0
## 24251 0 0 0
## 24252 0 0 0
## 24253 0 0 0
## 24254 0 0 0
## 24255 0 0 0
## 24256 0 0 0
## 24257 0 0 0
## 24258 0 0 0
## 24259 0 0 0
## 24260 0 0 0
## 24261 0 0 0
## 24262 0 0 0
## 24263 0 0 0
## 24264 0 0 0
## 24265 0 0 0
## 24266 0 0 0
## 24267 0 0 0
## 24268 0 0 0
## 24269 0 0 0
## 24270 0 0 0
## 24271 0 0 0
## 24272 0 0 0
## 24273 0 0 0
## 24274 0 0 0
## 24275 0 0 0
## 24276 0 0 0
## 24277 0 0 0
## 24278 0 0 0
## 24279 0 0 0
## 24280 0 0 0
## 24281 0 0 0
## 24282 0 0 0
## 24283 0 0 0
## 24284 0 0 0
## 24285 0 0 0
## 24286 0 0 0
## 24287 0 0 0
## 24288 0 0 0
## 24289 0 0 0
## 24290 0 0 0
## 24291 0 0 0
## 24292 0 0 0
## 24293 0 0 0
## 24294 0 0 0
## 24295 0 0 0
## 24296 0 0 0
## 24297 0 0 0
## 24298 0 0 0
## 24299 0 0 0
## 24300 0 0 0
## 24301 0 0 0
## 24302 0 0 0
## 24303 0 0 0
## 24304 0 0 0
## 24305 0 0 0
## 24306 0 0 0
## 24307 0 0 0
## 24308 0 0 0
## 24309 0 0 0
## 24310 0 0 0
## 24311 0 0 0
## 24312 0 0 0
## 24313 0 0 0
## 24314 0 0 0
## 24315 0 0 0
## 24316 0 0 0
## 24317 0 0 0
## 24318 0 0 0
## 24319 0 0 0
## 24320 0 0 0
## 24321 0 0 0
## 24322 0 0 0
## 24323 0 0 0
## 24324 0 0 0
## 24325 0 0 0
## 24326 0 0 0
## 24327 0 0 0
## 24328 0 0 0
## 24329 0 0 0
## 24330 0 0 0
## 24331 0 0 0
## 24332 0 0 0
## 24333 0 0 0
## 24334 0 0 0
## 24335 0 0 0
## 24336 0 0 0
## 24337 0 0 0
## 24338 0 0 0
## 24339 0 0 0
## 24340 0 0 0
## 24341 0 0 0
## 24342 0 0 0
## 24343 0 0 0
## 24344 0 0 0
## 24345 0 0 0
## 24346 0 0 0
## 24347 0 0 0
## 24348 0 0 0
## 24349 0 0 0
## 24350 0 0 0
## 24351 0 0 0
## 24352 0 0 0
## 24353 0 0 0
## 24354 0 0 0
## 24355 0 0 0
## 24356 0 0 0
## 24357 0 0 0
## 24358 0 0 0
## 24359 0 0 0
## 24360 0 0 0
## 24361 0 0 0
## 24362 0 0 0
## 24363 0 0 0
## 24364 0 0 0
## 24365 0 0 0
## 24366 0 0 0
## 24367 0 0 0
## 24368 0 0 0
## 24369 0 0 0
## 24370 0 0 0
## 24371 0 0 0
## 24372 0 0 0
## 24373 0 0 0
## 24374 0 0 0
## 24375 0 0 0
## 24376 0 0 0
## 24377 0 0 0
## 24378 0 0 0
## 24379 0 0 0
## 24380 0 0 0
## 24381 0 0 0
## 24382 0 0 0
## 24383 0 0 0
## 24384 0 0 0
## 24385 0 0 0
## 24386 0 0 0
## 24387 0 0 0
## 24388 0 0 0
## 24389 0 0 0
## 24390 0 0 0
## 24391 0 0 0
## 24392 0 0 0
## 24393 0 0 0
## 24394 0 0 0
## 24395 0 0 0
## 24396 0 0 0
## 24397 0 0 0
## 24398 0 0 0
## 24399 0 0 0
## 24400 0 0 0
## 24401 0 0 0
## 24402 0 0 0
## 24403 0 0 0
## 24404 0 0 0
## 24405 0 0 0
## 24406 0 0 0
## 24407 0 0 0
## 24408 0 0 0
## 24409 0 0 0
## 24410 0 0 0
## 24411 0 0 0
## 24412 0 0 0
## 24413 0 0 0
## 24414 0 0 0
## 24415 0 0 0
## 24416 0 0 0
## 24417 0 0 0
## 24418 0 0 0
## 24419 0 0 0
## 24420 0 0 0
## 24421 0 0 0
## 24422 0 0 0
## 24423 0 0 0
## 24424 0 0 0
## 24425 0 0 0
## 24426 0 0 0
## 24427 0 0 0
## 24428 0 0 0
## 24429 0 0 0
## 24430 0 0 0
## 24431 0 0 0
## 24432 0 0 0
## 24433 0 0 0
## 24434 0 0 0
## 24435 0 0 0
## 24436 0 0 0
## 24437 0 0 0
## 24438 0 0 0
## 24439 0 0 0
## 24440 0 0 0
## 24441 0 0 0
## 24442 0 0 0
## 24443 0 0 0
## 24444 0 0 0
## 24445 0 0 0
## 24446 0 0 0
## 24447 0 0 0
## 24448 0 0 0
## 24449 0 0 0
## 24450 0 0 0
## 24451 0 0 0
## 24452 0 0 0
## 24453 0 0 0
## 24454 0 0 0
## 24455 0 0 0
## 24456 0 0 0
## 24457 0 0 0
## 24458 0 0 0
## 24459 0 0 0
## 24460 0 0 0
## 24461 0 0 0
## 24462 0 0 0
## 24463 0 0 0
## 24464 0 0 0
## 24465 0 0 0
## 24466 0 0 0
## 24467 0 0 0
## 24468 0 0 0
## 24469 0 0 0
## 24470 0 0 0
## 24471 0 0 0
## 24472 0 0 0
## 24473 0 0 0
## 24474 0 0 0
## 24475 0 0 0
## 24476 0 0 0
## 24477 0 0 0
## 24478 0 0 0
## 24479 0 0 0
## 24480 0 0 0
## 24481 0 0 0
## 24482 0 0 0
## 24483 0 0 0
## 24484 0 0 0
## 24485 0 0 0
## 24486 0 0 0
## 24487 0 0 0
## 24488 0 0 0
## 24489 0 0 0
## 24490 0 0 0
## 24491 0 0 0
## 24492 0 0 0
## 24493 0 0 0
## 24494 0 0 0
## 24495 0 0 0
## 24496 0 0 0
## 24497 0 0 0
## 24498 0 0 0
## 24499 0 0 0
## 24500 0 0 0
## 24501 0 0 0
## 24502 0 0 0
## 24503 0 0 0
## 24504 0 0 0
## 24505 0 0 0
## 24506 0 0 0
## 24507 0 0 0
## 24508 0 0 0
## 24509 0 0 0
## 24510 0 0 0
## 24511 0 0 0
## 24512 0 0 0
## 24513 0 0 0
## 24514 0 0 0
## 24515 0 0 0
## 24516 0 0 0
## 24517 0 0 0
## 24518 0 0 0
## 24519 0 0 0
## 24520 0 0 0
## 24521 0 0 0
## 24522 0 0 0
## 24523 0 0 0
## 24524 0 0 0
## 24525 0 0 0
## 24526 0 0 0
## 24527 0 0 0
## 24528 0 0 0
## 24529 0 0 0
## 24530 0 0 0
## 24531 0 0 0
## 24532 0 0 0
## 24533 0 0 0
## 24534 0 0 0
## 24535 0 0 0
## 24536 0 0 0
## 24537 0 0 0
## 24538 0 0 0
## 24539 0 0 0
## 24540 0 0 0
## 24541 0 0 0
## 24542 0 0 0
## 24543 0 0 0
## 24544 0 0 0
## 24545 0 0 0
## 24546 0 0 0
## 24547 0 0 0
## 24548 0 0 0
## 24549 0 0 0
## 24550 0 0 0
## 24551 0 0 0
## 24552 0 0 0
## 24553 0 0 0
## 24554 0 0 0
## 24555 0 0 0
## 24556 0 0 0
## 24557 0 0 0
## 24558 0 0 0
## 24559 0 0 0
## 24560 0 0 0
## 24561 0 0 0
## 24562 0 0 0
## 24563 0 0 0
## 24564 0 0 0
## 24565 0 0 0
## 24566 0 0 0
## 24567 0 0 0
## 24568 0 0 0
## 24569 0 0 0
## 24570 0 0 0
## 24571 0 0 0
## 24572 0 0 0
## 24573 0 0 0
## 24574 0 0 0
## 24575 0 0 0
## 24576 0 0 0
## 24577 0 0 0
## 24578 0 0 0
## 24579 0 0 0
## 24580 0 0 0
## 24581 0 0 0
## 24582 0 0 0
## 24583 0 0 0
## 24584 0 0 0
## 24585 0 0 0
## 24586 0 0 0
## 24587 0 0 0
## 24588 0 0 0
## 24589 0 0 0
## 24590 0 0 0
## 24591 0 0 0
## 24592 0 0 0
## 24593 0 0 0
## 24594 0 0 0
## 24595 0 0 0
## 24596 0 0 0
## 24597 0 0 0
## 24598 0 0 0
## 24599 0 0 0
## 24600 0 0 0
## 24601 0 0 0
## 24602 0 0 0
## 24603 0 0 0
## 24604 0 0 0
## 24605 0 0 0
## 24606 0 0 0
## 24607 0 0 0
## 24608 0 0 0
## 24609 0 0 0
## 24610 0 0 0
## 24611 0 0 0
## 24612 0 0 0
## 24613 0 0 0
## 24614 0 0 0
## 24615 0 0 0
## 24616 0 0 0
## 24617 0 0 0
## 24618 0 0 0
## 24619 0 0 0
## 24620 0 0 0
## 24621 0 0 0
## 24622 0 0 0
## 24623 0 0 0
## 24624 0 0 0
## 24625 0 0 0
## 24626 0 0 0
## 24627 0 0 0
## 24628 0 0 0
## 24629 0 0 0
## 24630 0 0 0
## 24631 0 0 0
## 24632 0 0 0
## 24633 0 0 0
## 24634 0 0 0
## 24635 0 0 0
## 24636 0 0 0
## 24637 0 0 0
## 24638 0 0 0
## 24639 0 0 0
## 24640 0 0 0
## 24641 0 0 0
## 24642 0 0 0
## 24643 0 0 0
## 24644 0 0 0
## 24645 0 0 0
## 24646 0 0 0
## 24647 0 0 0
## 24648 0 0 0
## 24649 0 0 0
## 24650 0 0 0
## 24651 0 0 0
## 24652 0 0 0
## 24653 0 0 0
## 24654 0 0 0
## 24655 0 0 0
## 24656 0 0 0
## 24657 0 0 0
## 24658 0 0 0
## 24659 0 0 0
## 24660 0 0 0
## 24661 0 0 0
## 24662 0 0 0
## 24663 0 0 0
## 24664 0 0 0
## 24665 0 0 0
## 24666 0 0 0
## 24667 0 0 0
## 24668 0 0 0
## 24669 0 0 0
## 24670 0 0 0
## 24671 0 0 0
## 24672 0 0 0
## 24673 0 0 0
## 24674 0 0 0
## 24675 0 0 0
## 24676 0 0 0
## 24677 0 0 0
## 24678 0 0 0
## 24679 0 0 0
## 24680 0 0 0
## 24681 0 0 0
## 24682 0 0 0
## 24683 0 0 0
## 24684 0 0 0
## 24685 0 0 0
## 24686 0 0 0
## 24687 0 0 0
## 24688 0 0 0
## 24689 0 0 0
## 24690 0 0 0
## 24691 0 0 0
## 24692 0 0 0
## 24693 0 0 0
## 24694 0 0 0
## 24695 0 0 0
## 24696 0 0 0
## 24697 0 0 0
## 24698 0 0 0
## 24699 0 0 0
## 24700 0 0 0
## 24701 0 0 0
## 24702 0 0 0
## 24703 0 0 0
## 24704 0 0 0
## 24705 0 0 0
## 24706 0 0 0
## 24707 0 0 0
## 24708 0 0 0
## 24709 0 0 0
## 24710 0 0 0
## 24711 0 0 0
## 24712 0 0 0
## 24713 0 0 0
## 24714 0 0 0
## 24715 0 0 0
## 24716 0 0 0
## 24717 0 0 0
## 24718 0 0 0
## 24719 0 0 0
## 24720 0 0 0
## 24721 0 0 0
## 24722 0 0 0
## 24723 0 0 0
## 24724 0 0 0
## 24725 0 0 0
## 24726 0 0 0
## 24727 0 0 0
## 24728 0 0 0
## 24729 0 0 0
## 24730 0 0 0
## 24731 0 0 0
## 24732 0 0 0
## 24733 0 0 0
## 24734 0 0 0
## 24735 0 0 0
## 24736 0 0 0
## 24737 0 0 0
## 24738 0 0 0
## 24739 0 0 0
## 24740 0 0 0
## 24741 0 0 0
## 24742 0 0 0
## 24743 0 0 0
## 24744 0 0 0
## 24745 0 0 0
## 24746 0 0 0
## 24747 0 0 0
## 24748 0 0 0
## 24749 0 0 0
## 24750 0 0 0
## 24751 0 0 0
## 24752 0 0 0
## 24753 0 0 0
## 24754 0 0 0
## 24755 0 0 0
## 24756 0 0 0
## 24757 0 0 0
## 24758 0 0 0
## 24759 0 0 0
## 24760 0 0 0
## 24761 0 0 0
## 24762 0 0 0
## 24763 0 0 0
## 24764 0 0 0
## 24765 0 0 0
## 24766 0 0 0
## 24767 0 0 0
## 24768 0 0 0
## 24769 0 0 0
## 24770 0 0 0
## 24771 0 0 0
## 24772 0 0 0
## 24773 0 0 0
## 24774 0 0 0
## 24775 0 0 0
## 24776 0 0 0
## 24777 0 0 0
## 24778 0 0 0
## 24779 0 0 0
## 24780 0 0 0
## 24781 0 0 0
## 24782 0 0 0
## 24783 0 0 0
## 24784 0 0 0
## 24785 0 0 0
## 24786 0 0 0
## 24787 0 0 0
## 24788 0 0 0
## 24789 0 0 0
## 24790 0 0 0
## 24791 0 0 0
## 24792 0 0 0
## 24793 0 0 0
## 24794 0 0 0
## 24795 0 0 0
## 24796 0 0 0
## 24797 0 0 0
## 24798 0 0 0
## 24799 0 0 0
## 24800 0 0 0
## 24801 0 0 0
## 24802 0 0 0
## 24803 0 0 0
## 24804 0 0 0
## 24805 0 0 0
## 24806 0 0 0
## 24807 0 0 0
## 24808 0 0 0
## 24809 0 0 0
## 24810 0 0 0
## 24811 0 0 0
## 24812 0 0 0
## 24813 0 0 0
## 24814 0 0 0
## 24815 0 0 0
## 24816 0 0 0
## 24817 0 0 0
## 24818 0 0 0
## 24819 0 0 0
## 24820 0 0 0
## 24821 0 0 0
## 24822 0 0 0
## 24823 0 0 0
## 24824 0 0 0
## 24825 0 0 0
## 24826 0 0 0
## 24827 0 0 0
## 24828 0 0 0
## 24829 0 0 0
## 24830 0 0 0
## 24831 0 0 0
## 24832 0 0 0
## 24833 0 0 0
## 24834 0 0 0
## 24835 0 0 0
## 24836 0 0 0
## 24837 0 0 0
## 24838 0 0 0
## 24839 0 0 0
## 24840 0 0 0
## 24841 0 0 0
## 24842 0 0 0
## 24843 0 0 0
## 24844 0 0 0
## 24845 0 0 0
## 24846 0 0 0
## 24847 0 0 0
## 24848 0 0 0
## 24849 0 0 0
## 24850 0 0 0
## 24851 0 0 0
## 24852 0 0 0
## 24853 0 0 0
## 24854 0 0 0
## 24855 0 0 0
## 24856 0 0 0
## 24857 0 0 0
## 24858 0 0 0
## 24859 0 0 0
## 24860 0 0 0
## 24861 0 0 0
## 24862 0 0 0
## 24863 0 0 0
## 24864 0 0 0
## 24865 0 0 0
## 24866 0 0 0
## 24867 0 0 0
## 24868 0 0 0
## 24869 0 0 0
## 24870 0 0 0
## 24871 0 0 0
## 24872 0 0 0
## 24873 0 0 0
## 24874 0 0 0
## 24875 0 0 0
## 24876 0 0 0
## 24877 0 0 0
## 24878 0 0 0
## 24879 0 0 0
## 24880 0 0 0
## 24881 0 0 0
## 24882 0 0 0
## 24883 0 0 0
## 24884 0 0 0
## 24885 0 0 0
## 24886 0 0 0
## 24887 0 0 0
## 24888 0 0 0
## 24889 0 0 0
## 24890 0 0 0
## 24891 0 0 0
## 24892 0 0 0
## 24893 0 0 0
## 24894 0 0 0
## 24895 0 0 0
## 24896 0 0 0
## 24897 0 0 0
## 24898 0 0 0
## 24899 0 0 0
## 24900 0 0 0
## 24901 0 0 0
## 24902 0 0 0
## 24903 0 0 0
## 24904 0 0 0
## 24905 0 0 0
## 24906 0 0 0
## 24907 0 0 0
## 24908 0 0 0
## 24909 0 0 0
## 24910 0 0 0
## 24911 0 0 0
## 24912 0 0 0
## 24913 0 0 0
## 24914 0 0 0
## 24915 0 0 0
## 24916 0 0 0
## 24917 0 0 0
## 24918 0 0 0
## 24919 0 0 0
## 24920 0 0 0
## 24921 0 0 0
## 24922 0 0 0
## 24923 0 0 0
## 24924 0 0 0
## 24925 0 0 0
## 24926 0 0 0
## 24927 0 0 0
## 24928 0 0 0
## 24929 0 0 0
## 24930 0 0 0
## 24931 0 0 0
## 24932 0 0 0
## 24933 0 0 0
## 24934 0 0 0
## 24935 0 0 0
## 24936 0 0 0
## 24937 0 0 0
## 24938 0 0 0
## 24939 0 0 0
## 24940 0 0 0
## 24941 0 0 0
## 24942 0 0 0
## 24943 0 0 0
## 24944 0 0 0
## 24945 0 0 0
## 24946 0 0 0
## 24947 0 0 0
## 24948 0 0 0
## 24949 0 0 0
## 24950 0 0 0
## 24951 0 0 0
## 24952 0 0 0
## 24953 0 0 0
## 24954 0 0 0
## 24955 0 0 0
## 24956 0 0 0
## 24957 0 0 0
## 24958 0 0 0
## 24959 0 0 0
## 24960 0 0 0
## 24961 0 0 0
## 24962 0 0 0
## 24963 0 0 0
## 24964 0 0 0
## 24965 0 0 0
## 24966 0 0 0
## 24967 0 0 0
## 24968 0 0 0
## 24969 0 0 0
## 24970 0 0 0
## 24971 0 0 0
## 24972 0 0 0
## 24973 0 0 0
## 24974 0 0 0
## 24975 0 0 0
## 24976 0 0 0
## 24977 0 0 0
## 24978 0 0 0
## 24979 0 0 0
## 24980 0 0 0
## 24981 0 0 0
## 24982 0 0 0
## 24983 0 0 0
## 24984 0 0 0
## 24985 0 0 0
## 24986 0 0 0
## 24987 0 0 0
## 24988 0 0 0
## 24989 0 0 0
## 24990 0 0 0
## 24991 0 0 0
## 24992 0 0 0
## 24993 0 0 0
## 24994 0 0 0
## 24995 0 0 0
## 24996 0 0 0
## 24997 0 0 0
## 24998 0 0 0
## 24999 0 0 0
## 25000 0 0 0
## 25001 0 0 0
## 25002 0 0 0
## 25003 0 0 0
## 25004 0 0 0
## 25005 0 0 0
## 25006 0 0 0
## 25007 0 0 0
## 25008 0 0 0
## 25009 0 0 0
## 25010 0 0 0
## 25011 0 0 0
## 25012 0 0 0
## 25013 0 0 0
## 25014 0 0 0
## 25015 0 0 0
## 25016 0 0 0
## 25017 0 0 0
## 25018 0 0 0
## 25019 0 0 0
## 25020 0 0 0
## 25021 0 0 0
## 25022 0 0 0
## 25023 0 0 0
## 25024 0 0 0
## 25025 0 0 0
## 25026 0 0 0
## 25027 0 0 0
## 25028 0 0 0
## 25029 0 0 0
## 25030 0 0 0
## 25031 0 0 0
## 25032 0 0 0
## 25033 0 0 0
## 25034 0 0 0
## 25035 0 0 0
## 25036 0 0 0
## 25037 0 0 0
## 25038 0 0 0
## 25039 0 0 0
## 25040 0 0 0
## 25041 0 0 0
## 25042 0 0 0
## 25043 0 0 0
## 25044 0 0 0
## 25045 0 0 0
## 25046 0 0 0
## 25047 0 0 0
## 25048 0 0 0
## 25049 0 0 0
## 25050 0 0 0
## 25051 0 0 0
## 25052 0 0 0
## 25053 0 0 0
## 25054 0 0 0
## 25055 0 0 0
## 25056 0 0 0
## 25057 0 0 0
## 25058 0 0 0
## 25059 0 0 0
## 25060 0 0 0
## 25061 0 0 0
## 25062 0 0 0
## 25063 0 0 0
## 25064 0 0 0
## 25065 0 0 0
## 25066 0 0 0
## 25067 0 0 0
## 25068 0 0 0
## 25069 0 0 0
## 25070 0 0 0
## 25071 0 0 0
## 25072 0 0 0
## 25073 0 0 0
## 25074 0 0 0
## 25075 0 0 0
## 25076 0 0 0
## 25077 0 0 0
## 25078 0 0 0
## 25079 0 0 0
## 25080 0 0 0
## 25081 0 0 0
## 25082 0 0 0
## 25083 0 0 0
## 25084 0 0 0
## 25085 0 0 0
## 25086 0 0 0
## 25087 0 0 0
## 25088 0 0 0
## 25089 0 0 0
## 25090 0 0 0
## 25091 0 0 0
## 25092 0 0 0
## 25093 0 0 0
## 25094 0 0 0
## 25095 0 0 0
## 25096 0 0 0
## 25097 0 0 0
## 25098 0 0 0
## 25099 0 0 0
## 25100 0 0 0
## 25101 0 0 0
## 25102 0 0 0
## 25103 0 0 0
## 25104 0 0 0
## 25105 0 0 0
## 25106 0 0 0
## 25107 0 0 0
## 25108 0 0 0
## 25109 0 0 0
## 25110 0 0 0
## 25111 0 0 0
## 25112 0 0 0
## 25113 0 0 0
## 25114 0 0 0
## 25115 0 0 0
## 25116 0 0 0
## 25117 0 0 0
## 25118 0 0 0
## 25119 0 0 0
## 25120 0 0 0
## 25121 0 0 0
## 25122 0 0 0
## 25123 0 0 0
## 25124 0 0 0
## 25125 0 0 0
## 25126 0 0 0
## 25127 0 0 0
## 25128 0 0 0
## 25129 0 0 0
## 25130 0 0 0
## 25131 0 0 0
## 25132 0 0 0
## 25133 0 0 0
## 25134 0 0 0
## 25135 0 0 0
## 25136 0 0 0
## 25137 0 0 0
## 25138 0 0 0
## 25139 0 0 0
## 25140 0 0 0
## 25141 0 0 0
## 25142 0 0 0
## 25143 0 0 0
## 25144 0 0 0
## 25145 0 0 0
## 25146 0 0 0
## 25147 0 0 0
## 25148 0 0 0
## 25149 0 0 0
## 25150 0 0 0
## 25151 0 0 0
## 25152 0 0 0
## 25153 0 0 0
## 25154 0 0 0
## 25155 0 0 0
## 25156 0 0 0
## 25157 0 0 0
## 25158 0 0 0
## 25159 0 0 0
## 25160 0 0 0
## 25161 0 0 0
## 25162 0 0 0
## 25163 0 0 0
## 25164 0 0 0
## 25165 0 0 0
## 25166 0 0 0
## 25167 0 0 0
## 25168 0 0 0
## 25169 0 0 0
## 25170 0 0 0
## 25171 0 0 0
## 25172 0 0 0
## 25173 0 0 0
## 25174 0 0 0
## 25175 0 0 0
## 25176 0 0 0
## 25177 0 0 0
## 25178 0 0 0
## 25179 0 0 0
## 25180 0 0 0
## 25181 0 0 0
## 25182 0 0 0
## 25183 0 0 0
## 25184 0 0 0
## 25185 0 0 0
## 25186 0 0 0
## 25187 0 0 0
## 25188 0 0 0
## 25189 0 0 0
## 25190 0 0 0
## 25191 0 0 0
## 25192 0 0 0
## 25193 0 0 0
## 25194 0 0 0
## 25195 0 0 0
## 25196 0 0 0
## 25197 0 0 0
## 25198 0 0 0
## 25199 0 0 0
## 25200 0 0 0
## 25201 0 0 0
## 25202 0 0 0
## 25203 0 0 0
## 25204 0 0 0
## 25205 0 0 0
## 25206 0 0 0
## 25207 0 0 0
## 25208 0 0 0
## 25209 0 0 0
## 25210 0 0 0
## 25211 0 0 0
## 25212 0 0 0
## 25213 0 0 0
## 25214 0 0 0
## 25215 0 0 0
## 25216 0 0 0
## 25217 0 0 0
## 25218 0 0 0
## 25219 0 0 0
## 25220 0 0 0
## 25221 0 0 0
## 25222 0 0 0
## 25223 0 0 0
## 25224 0 0 0
## 25225 0 0 0
## 25226 0 0 0
## 25227 0 0 0
## 25228 0 0 0
## 25229 0 0 0
## 25230 0 0 0
## 25231 0 0 0
## 25232 0 0 0
## 25233 0 0 0
## 25234 0 0 0
## 25235 0 0 0
## 25236 0 0 0
## 25237 0 0 0
## 25238 0 0 0
## 25239 0 0 0
## 25240 0 0 0
## 25241 0 0 0
## 25242 0 0 0
## 25243 0 0 0
## 25244 0 0 0
## 25245 0 0 0
## 25246 0 0 0
## 25247 0 0 0
## 25248 0 0 0
## 25249 0 0 0
## 25250 0 0 0
## 25251 0 0 0
## 25252 0 0 0
## 25253 0 0 0
## 25254 0 0 0
## 25255 0 0 0
## 25256 0 0 0
## 25257 0 0 0
## 25258 0 0 0
## 25259 0 0 0
## 25260 0 0 0
## 25261 0 0 0
## 25262 0 0 0
## 25263 0 0 0
## 25264 0 0 0
## 25265 0 0 0
## 25266 0 0 0
## 25267 0 0 0
## 25268 0 0 0
## 25269 0 0 0
## 25270 0 0 0
## 25271 0 0 0
## 25272 0 0 0
## 25273 0 0 0
## 25274 0 0 0
## 25275 0 0 0
## 25276 0 0 0
## 25277 0 0 0
## 25278 0 0 0
## 25279 0 0 0
## 25280 0 0 0
## 25281 0 0 0
## 25282 0 0 0
## 25283 0 0 0
## 25284 0 0 0
## 25285 0 0 0
## 25286 0 0 0
## 25287 0 0 0
## 25288 0 0 0
## 25289 0 0 0
## 25290 0 0 0
## 25291 0 0 0
## 25292 0 0 0
## 25293 0 0 0
## 25294 0 0 0
## 25295 0 0 0
## 25296 0 0 0
## 25297 0 0 0
## 25298 0 0 0
## 25299 0 0 0
## 25300 0 0 0
## 25301 0 0 0
## 25302 0 0 0
## 25303 0 0 0
## 25304 0 0 0
## 25305 0 0 0
## 25306 0 0 0
## 25307 0 0 0
## 25308 0 0 0
## 25309 0 0 0
## 25310 0 0 0
## 25311 0 0 0
## 25312 0 0 0
## 25313 0 0 0
## 25314 0 0 0
## 25315 0 0 0
## 25316 0 0 0
## 25317 0 0 0
## 25318 0 0 0
## 25319 0 0 0
## 25320 0 0 0
## 25321 0 0 0
## 25322 0 0 0
## 25323 0 0 0
## 25324 0 0 0
## 25325 0 0 0
## 25326 0 0 0
## 25327 0 0 0
## 25328 0 0 0
## 25329 0 0 0
## 25330 0 0 0
## 25331 0 0 0
## 25332 0 0 0
## 25333 0 0 0
## 25334 0 0 0
## 25335 0 0 0
## 25336 0 0 0
## 25337 0 0 0
## 25338 0 0 0
## 25339 0 0 0
## 25340 0 0 0
## 25341 0 0 0
## 25342 0 0 0
## 25343 0 0 0
## 25344 0 0 0
## 25345 0 0 0
## 25346 0 0 0
## 25347 0 0 0
## 25348 0 0 0
## 25349 0 0 0
## 25350 0 0 0
## 25351 0 0 0
## 25352 0 0 0
## 25353 0 0 0
## 25354 0 0 0
## 25355 0 0 0
## 25356 0 0 0
## 25357 0 0 0
## 25358 0 0 0
## 25359 0 0 0
## 25360 0 0 0
## 25361 0 0 0
## 25362 0 0 0
## 25363 0 0 0
## 25364 0 0 0
## 25365 0 0 0
## 25366 0 0 0
## 25367 0 0 0
## 25368 0 0 0
## 25369 0 0 0
## 25370 0 0 0
## 25371 0 0 0
## 25372 0 0 0
## 25373 0 0 0
## 25374 0 0 0
## 25375 0 0 0
## 25376 0 0 0
## 25377 0 0 0
## 25378 0 0 0
## 25379 0 0 0
## 25380 0 0 0
## 25381 0 0 0
## 25382 0 0 0
## 25383 0 0 0
## 25384 0 0 0
## 25385 0 0 0
## 25386 0 0 0
## 25387 0 0 0
## 25388 0 0 0
## 25389 0 0 0
## 25390 0 0 0
## 25391 0 0 0
## 25392 0 0 0
## 25393 0 0 0
## 25394 0 0 0
## 25395 0 0 0
## 25396 0 0 0
## 25397 0 0 0
## 25398 0 0 0
## 25399 0 0 0
## 25400 0 0 0
## 25401 0 0 0
## 25402 0 0 0
## 25403 0 0 0
## 25404 0 0 0
## 25405 0 0 0
## 25406 0 0 0
## 25407 0 0 0
## 25408 0 0 0
## 25409 0 0 0
## 25410 0 0 0
## 25411 0 0 0
## 25412 0 0 0
## 25413 0 0 0
## 25414 0 0 0
## 25415 0 0 0
## 25416 0 0 0
## 25417 0 0 0
## 25418 0 0 0
## 25419 0 0 0
## 25420 0 0 0
## 25421 0 0 0
## 25422 0 0 0
## 25423 0 0 0
## 25424 0 0 0
## 25425 0 0 0
## 25426 0 0 0
## 25427 0 0 0
## 25428 0 0 0
## 25429 0 0 0
## 25430 0 0 0
## 25431 0 0 0
## 25432 0 0 0
## 25433 0 0 0
## 25434 0 0 0
## 25435 0 0 0
## 25436 0 0 0
## 25437 0 0 0
## 25438 0 0 0
## 25439 0 0 0
## 25440 0 0 0
## 25441 0 0 0
## 25442 0 0 0
## 25443 0 0 0
## 25444 0 0 0
## 25445 0 0 0
## 25446 0 0 0
## 25447 0 0 0
## 25448 0 0 0
## 25449 0 0 0
## 25450 0 0 0
## 25451 0 0 0
## 25452 0 0 0
## 25453 0 0 0
## 25454 0 0 0
## 25455 0 0 0
## 25456 0 0 0
## 25457 0 0 0
## 25458 0 0 0
## 25459 0 0 0
## 25460 0 0 0
## 25461 0 0 0
## 25462 0 0 0
## 25463 0 0 0
## 25464 0 0 0
## 25465 0 0 0
## 25466 0 0 0
## 25467 0 0 0
## 25468 0 0 0
## 25469 0 0 0
## 25470 0 0 0
## 25471 0 0 0
## 25472 0 0 0
## 25473 0 0 0
## 25474 0 0 0
## 25475 0 0 0
## 25476 0 0 0
## 25477 0 0 0
## 25478 0 0 0
## 25479 0 0 0
## 25480 0 0 0
## 25481 0 0 0
## 25482 0 0 0
## 25483 0 0 0
## 25484 0 0 0
## 25485 0 0 0
## 25486 0 0 0
## 25487 0 0 0
## 25488 0 0 0
## 25489 0 0 0
## 25490 0 0 0
## 25491 0 0 0
## 25492 0 0 0
## 25493 0 0 0
## 25494 0 0 0
## 25495 0 0 0
## 25496 0 0 0
## 25497 0 0 0
## 25498 0 0 0
## 25499 0 0 0
## 25500 0 0 0
## 25501 0 0 0
## 25502 0 0 0
## 25503 0 0 0
## 25504 0 0 0
## 25505 0 0 0
## 25506 0 0 0
## 25507 0 0 0
## 25508 0 0 0
## 25509 0 0 0
## 25510 0 0 0
## 25511 0 0 0
## 25512 0 0 0
## 25513 0 0 0
## 25514 0 0 0
## 25515 0 0 0
## 25516 0 0 0
## 25517 0 0 0
## 25518 0 0 0
## 25519 0 0 0
## 25520 0 0 0
## 25521 0 0 0
## 25522 0 0 0
## 25523 0 0 0
## 25524 0 0 0
## 25525 0 0 0
## 25526 0 0 0
## 25527 0 0 0
## 25528 0 0 0
## 25529 0 0 0
## 25530 0 0 0
## 25531 0 0 0
## 25532 0 0 0
## 25533 0 0 0
## 25534 0 0 0
## 25535 0 0 0
## 25536 0 0 0
## 25537 0 0 0
## 25538 0 0 0
## 25539 0 0 0
## 25540 0 0 0
## 25541 0 0 0
## 25542 0 0 0
## 25543 0 0 0
## 25544 0 0 0
## 25545 0 0 0
## 25546 0 0 0
## 25547 0 0 0
## 25548 0 0 0
## 25549 0 0 0
## 25550 0 0 0
## 25551 0 0 0
## 25552 0 0 0
## 25553 0 0 0
## 25554 0 0 0
## 25555 0 0 0
## 25556 0 0 0
## 25557 0 0 0
## 25558 0 0 0
## 25559 0 0 0
## 25560 0 0 0
## 25561 0 0 0
## 25562 0 0 0
## 25563 0 0 0
## 25564 0 0 0
## 25565 0 0 0
## 25566 0 0 0
## 25567 0 0 0
## 25568 0 0 0
## 25569 0 0 0
## 25570 0 0 0
## 25571 0 0 0
## 25572 0 0 0
## 25573 0 0 0
## 25574 0 0 0
## 25575 0 0 0
## 25576 0 0 0
## 25577 0 0 0
## 25578 0 0 0
## 25579 0 0 0
## 25580 0 0 0
## 25581 0 0 0
## 25582 0 0 0
## 25583 0 0 0
## 25584 0 0 0
## 25585 0 0 0
## 25586 0 0 0
## 25587 0 0 0
## 25588 0 0 0
## 25589 0 0 0
## 25590 0 0 0
## 25591 0 0 0
## 25592 0 0 0
## 25593 0 0 0
## 25594 0 0 0
## 25595 0 0 0
## 25596 0 0 0
## 25597 0 0 0
## 25598 0 0 0
## 25599 0 0 0
## 25600 0 0 0
## 25601 0 0 0
## 25602 0 0 0
## 25603 0 0 0
## 25604 0 0 0
## 25605 0 0 0
## 25606 0 0 0
## 25607 0 0 0
## 25608 0 0 0
## 25609 0 0 0
## 25610 0 0 0
## 25611 0 0 0
## 25612 0 0 0
## 25613 0 0 0
## 25614 0 0 0
## 25615 0 0 0
## 25616 0 0 0
## 25617 0 0 0
## 25618 0 0 0
## 25619 0 0 0
## 25620 0 0 0
## 25621 0 0 0
## 25622 0 0 0
## 25623 0 0 0
## 25624 0 0 0
## 25625 0 0 0
## 25626 0 0 0
## 25627 0 0 0
## 25628 0 0 0
## 25629 0 0 0
## 25630 0 0 0
## 25631 0 0 0
## 25632 0 0 0
## 25633 0 0 0
## 25634 0 0 0
## 25635 0 0 0
## 25636 0 0 0
## 25637 0 0 0
## 25638 0 0 0
## 25639 0 0 0
## 25640 0 0 0
## 25641 0 0 0
## 25642 0 0 0
## 25643 0 0 0
## 25644 0 0 0
## 25645 0 0 0
## 25646 0 0 0
## 25647 0 0 0
## 25648 0 0 0
## 25649 0 0 0
## 25650 0 0 0
## 25651 0 0 0
## 25652 0 0 0
## 25653 0 0 0
## 25654 0 0 0
## 25655 0 0 0
## 25656 0 0 0
## 25657 0 0 0
## 25658 0 0 0
## 25659 0 0 0
## 25660 0 0 0
## 25661 0 0 0
## 25662 0 0 0
## 25663 0 0 0
## 25664 0 0 0
## 25665 0 0 0
## 25666 0 0 0
## 25667 0 0 0
## 25668 0 0 0
## 25669 0 0 0
## 25670 0 0 0
## 25671 0 0 0
## 25672 0 0 0
## 25673 0 0 0
## 25674 0 0 0
## 25675 0 0 0
## 25676 0 0 0
## 25677 0 0 0
## 25678 0 0 0
## 25679 0 0 0
## 25680 0 0 0
## 25681 0 0 0
## 25682 0 0 0
## 25683 0 0 0
## 25684 0 0 0
## 25685 0 0 0
## 25686 0 0 0
## 25687 0 0 0
## 25688 0 0 0
## 25689 0 0 0
## 25690 0 0 0
## 25691 0 0 0
## 25692 0 0 0
## 25693 0 0 0
## 25694 0 0 0
## 25695 0 0 0
## 25696 0 0 0
## 25697 0 0 0
## 25698 0 0 0
## 25699 0 0 0
## 25700 0 0 0
## 25701 0 0 0
## 25702 0 0 0
## 25703 0 0 0
## 25704 0 0 0
## 25705 0 0 0
## 25706 0 0 0
## 25707 0 0 0
## 25708 0 0 0
## 25709 0 0 0
## 25710 0 0 0
## 25711 0 0 0
## 25712 0 0 0
## 25713 0 0 0
## 25714 0 0 0
## 25715 0 0 0
## 25716 0 0 0
## 25717 0 0 0
## 25718 0 0 0
## 25719 0 0 0
## 25720 0 0 0
## 25721 0 0 0
## 25722 0 0 0
## 25723 0 0 0
## 25724 0 0 0
## 25725 0 0 0
## 25726 0 0 0
## 25727 0 0 0
## 25728 0 0 0
## 25729 0 0 0
## 25730 0 0 0
## 25731 0 0 0
## 25732 0 0 0
## 25733 0 0 0
## 25734 0 0 0
## 25735 0 0 0
## 25736 0 0 0
## 25737 0 0 0
## 25738 0 0 0
## 25739 0 0 0
## 25740 0 0 0
## 25741 0 0 0
## 25742 0 0 0
## 25743 0 0 0
## 25744 0 0 0
## 25745 0 0 0
## 25746 0 0 0
## 25747 0 0 0
## 25748 0 0 0
## 25749 0 0 0
## 25750 0 0 0
## 25751 0 0 0
## 25752 0 0 0
## 25753 0 0 0
## 25754 0 0 0
## 25755 0 0 0
## 25756 0 0 0
## 25757 0 0 0
## 25758 0 0 0
## 25759 0 0 0
## 25760 0 0 0
## 25761 0 0 0
## 25762 0 0 0
## 25763 0 0 0
## 25764 0 0 0
## 25765 0 0 0
## 25766 0 0 0
## 25767 0 0 0
## 25768 0 0 0
## 25769 0 0 0
## 25770 0 0 0
## 25771 0 0 0
## 25772 0 0 0
## 25773 0 0 0
## 25774 0 0 0
## 25775 0 0 0
## 25776 0 0 0
## 25777 0 0 0
## 25778 0 0 0
## 25779 0 0 0
## 25780 0 0 0
## 25781 0 0 0
## 25782 0 0 0
## 25783 0 0 0
## 25784 0 0 0
## 25785 0 0 0
## 25786 0 0 0
## 25787 0 0 0
## 25788 0 0 0
## 25789 0 0 0
## 25790 0 0 0
## 25791 0 0 0
## 25792 0 0 0
## 25793 0 0 0
## 25794 0 0 0
## 25795 0 0 0
## 25796 0 0 0
## 25797 0 0 0
## 25798 0 0 0
## 25799 0 0 0
## 25800 0 0 0
## 25801 0 0 0
## 25802 0 0 0
## 25803 0 0 0
## 25804 0 0 0
## 25805 0 0 0
## 25806 0 0 0
## 25807 0 0 0
## 25808 0 0 0
## 25809 0 0 0
## 25810 0 0 0
## 25811 0 0 0
## 25812 0 0 0
## 25813 0 0 0
## 25814 0 0 0
## 25815 0 0 0
## 25816 0 0 0
## 25817 0 0 0
## 25818 0 0 0
## 25819 0 0 0
## 25820 0 0 0
## 25821 0 0 0
## 25822 0 0 0
## 25823 0 0 0
## 25824 0 0 0
## 25825 0 0 0
## 25826 0 0 0
## 25827 0 0 0
## 25828 0 0 0
## 25829 0 0 0
## 25830 0 0 0
## 25831 0 0 0
## 25832 0 0 0
## 25833 0 0 0
## 25834 0 0 0
## 25835 0 0 0
## 25836 0 0 0
## 25837 0 0 0
## 25838 0 0 0
## 25839 0 0 0
## 25840 0 0 0
## 25841 0 0 0
## 25842 0 0 0
## 25843 0 0 0
## 25844 0 0 0
## 25845 0 0 0
## 25846 0 0 0
## 25847 0 0 0
## 25848 0 0 0
## 25849 0 0 0
## 25850 0 0 0
## 25851 0 0 0
## 25852 0 0 0
## 25853 0 0 0
## 25854 0 0 0
## 25855 0 0 0
## 25856 0 0 0
## 25857 0 0 0
## 25858 0 0 0
## 25859 0 0 0
## 25860 0 0 0
## 25861 0 0 0
## 25862 0 0 0
## 25863 0 0 0
## 25864 0 0 0
## 25865 0 0 0
## 25866 0 0 0
## 25867 0 0 0
## 25868 0 0 0
## 25869 0 0 0
## 25870 0 0 0
## 25871 0 0 0
## 25872 0 0 0
## 25873 0 0 0
## 25874 0 0 0
## 25875 0 0 0
## 25876 0 0 0
## 25877 0 0 0
## 25878 0 0 0
## 25879 0 0 0
## 25880 0 0 0
## 25881 0 0 0
## 25882 0 0 0
## 25883 0 0 0
## 25884 0 0 0
## 25885 0 0 0
## 25886 0 0 0
## 25887 0 0 0
## 25888 0 0 0
## 25889 0 0 0
## 25890 0 0 0
## 25891 0 0 0
## 25892 0 0 0
## 25893 0 0 0
## 25894 0 0 0
## 25895 0 0 0
## 25896 0 0 0
## 25897 0 0 0
## 25898 0 0 0
## 25899 0 0 0
## 25900 0 0 0
## 25901 0 0 0
## 25902 0 0 0
## 25903 0 0 0
## 25904 0 0 0
## 25905 0 0 0
## 25906 0 0 0
## 25907 0 0 0
## 25908 0 0 0
## 25909 0 0 0
## 25910 0 0 0
## 25911 0 0 0
## 25912 0 0 0
## 25913 0 0 0
## 25914 0 0 0
## 25915 0 0 0
## 25916 0 0 0
## 25917 0 0 0
## 25918 0 0 0
## 25919 0 0 0
## 25920 0 0 0
## 25921 0 0 0
## 25922 0 0 0
## 25923 0 0 0
## 25924 0 0 0
## 25925 0 0 0
## 25926 0 0 0
## 25927 0 0 0
## 25928 0 0 0
## 25929 0 0 0
## 25930 0 0 0
## 25931 0 0 0
## 25932 0 0 0
## 25933 0 0 0
## 25934 0 0 0
## 25935 0 0 0
## 25936 0 0 0
## 25937 0 0 0
## 25938 0 0 0
## 25939 0 0 0
## 25940 0 0 0
## 25941 0 0 0
## 25942 0 0 0
## 25943 0 0 0
## 25944 0 0 0
## 25945 0 0 0
## 25946 0 0 0
## 25947 0 0 0
## 25948 0 0 0
## 25949 0 0 0
## 25950 0 0 0
## 25951 0 0 0
## 25952 0 0 0
## 25953 0 0 0
## 25954 0 0 0
## 25955 0 0 0
## 25956 0 0 0
## 25957 0 0 0
## 25958 0 0 0
## 25959 0 0 0
## 25960 0 0 0
## 25961 0 0 0
## 25962 0 0 0
## 25963 0 0 0
## 25964 0 0 0
## 25965 0 0 0
## 25966 0 0 0
## 25967 0 0 0
## 25968 0 0 0
## 25969 0 0 0
## 25970 0 0 0
## 25971 0 0 0
## 25972 0 0 0
## 25973 0 0 0
## 25974 0 0 0
## 25975 0 0 0
## 25976 0 0 0
## 25977 0 0 0
## 25978 0 0 0
## 25979 0 0 0
## 25980 0 0 0
## 25981 0 0 0
## 25982 0 0 0
## 25983 0 0 0
## 25984 0 0 0
## 25985 0 0 0
## 25986 0 0 0
## 25987 0 0 0
## 25988 0 0 0
## 25989 0 0 0
## 25990 0 0 0
## 25991 0 0 0
## 25992 0 0 0
## 25993 0 0 0
## 25994 0 0 0
## 25995 0 0 0
## 25996 0 0 0
## 25997 0 0 0
## 25998 0 0 0
## 25999 0 0 0
## 26000 0 0 0
## 26001 0 0 0
## 26002 0 0 0
## 26003 0 0 0
## 26004 0 0 0
## 26005 0 0 0
## 26006 0 0 0
## 26007 0 0 0
## 26008 0 0 0
## 26009 0 0 0
## 26010 0 0 0
## 26011 0 0 0
## 26012 0 0 0
## 26013 0 0 0
## 26014 0 0 0
## 26015 0 0 0
## 26016 0 0 0
## 26017 0 0 0
## 26018 0 0 0
## 26019 0 0 0
## 26020 0 0 0
## 26021 0 0 0
## 26022 0 0 0
## 26023 0 0 0
## 26024 0 0 0
## 26025 0 0 0
## 26026 0 0 0
## 26027 0 0 0
## 26028 0 0 0
## 26029 0 0 0
## 26030 0 0 0
## 26031 0 0 0
## 26032 0 0 0
## 26033 0 0 0
## 26034 0 0 0
## 26035 0 0 0
## 26036 0 0 0
## 26037 0 0 0
## 26038 0 0 0
## 26039 0 0 0
## 26040 0 0 0
## 26041 0 0 0
## 26042 0 0 0
## 26043 0 0 0
## 26044 0 0 0
## 26045 0 0 0
## 26046 0 0 0
## 26047 0 0 0
## 26048 0 0 0
## 26049 0 0 0
## 26050 0 0 0
## 26051 0 0 0
## 26052 0 0 0
## 26053 0 0 0
## 26054 0 0 0
## 26055 0 0 0
## 26056 0 0 0
## 26057 0 0 0
## 26058 0 0 0
## 26059 0 0 0
## 26060 0 0 0
## 26061 0 0 0
## 26062 0 0 0
## 26063 0 0 0
## 26064 0 0 0
## 26065 0 0 0
## 26066 0 0 0
## 26067 0 0 0
## 26068 0 0 0
## 26069 0 0 0
## 26070 0 0 0
## 26071 0 0 0
## 26072 0 0 0
## 26073 0 0 0
## 26074 0 0 0
## 26075 0 0 0
## 26076 0 0 0
## 26077 0 0 0
## 26078 0 0 0
## 26079 0 0 0
## 26080 0 0 0
## 26081 0 0 0
## 26082 0 0 0
## 26083 0 0 0
## 26084 0 0 0
## 26085 0 0 0
## 26086 0 0 0
## 26087 0 0 0
## 26088 0 0 0
## 26089 0 0 0
## 26090 0 0 0
## 26091 0 0 0
## 26092 0 0 0
## 26093 0 0 0
## 26094 0 0 0
## 26095 0 0 0
## 26096 0 0 0
## 26097 0 0 0
## 26098 0 0 0
## 26099 0 0 0
## 26100 0 0 0
## 26101 0 0 0
## 26102 0 0 0
## 26103 0 0 0
## 26104 0 0 0
## 26105 0 0 0
## 26106 0 0 0
## 26107 0 0 0
## 26108 0 0 0
## 26109 0 0 0
## 26110 0 0 0
## 26111 0 0 0
## 26112 0 0 0
## 26113 0 0 0
## 26114 0 0 0
## 26115 0 0 0
## 26116 0 0 0
## 26117 0 0 0
## 26118 0 0 0
## 26119 0 0 0
## 26120 0 0 0
## 26121 0 0 0
## 26122 0 0 0
## 26123 0 0 0
## 26124 0 0 0
## 26125 0 0 0
## 26126 0 0 0
## 26127 0 0 0
## 26128 0 0 0
## 26129 0 0 0
## 26130 0 0 0
## 26131 0 0 0
## 26132 0 0 0
## 26133 0 0 0
## 26134 0 0 0
## 26135 0 0 0
## 26136 0 0 0
## 26137 0 0 0
## 26138 0 0 0
## 26139 0 0 0
## 26140 0 0 0
## 26141 0 0 0
## 26142 0 0 0
## 26143 0 0 0
## 26144 0 0 0
## 26145 0 0 0
## 26146 0 0 0
## 26147 0 0 0
## 26148 0 0 0
## 26149 0 0 0
## 26150 0 0 0
## 26151 0 0 0
## 26152 0 0 0
## 26153 0 0 0
## 26154 0 0 0
## 26155 0 0 0
## 26156 0 0 0
## 26157 0 0 0
## 26158 0 0 0
## 26159 0 0 0
## 26160 0 0 0
## 26161 0 0 0
## 26162 0 0 0
## 26163 0 0 0
## 26164 0 0 0
## 26165 0 0 0
## 26166 0 0 0
## 26167 0 0 0
## 26168 0 0 0
## 26169 0 0 0
## 26170 0 0 0
## 26171 0 0 0
## 26172 0 0 0
## 26173 0 0 0
## 26174 0 0 0
## 26175 0 0 0
## 26176 0 0 0
## 26177 0 0 0
## 26178 0 0 0
## 26179 0 0 0
## 26180 0 0 0
## 26181 0 0 0
## 26182 0 0 0
## 26183 0 0 0
## 26184 0 0 0
## 26185 0 0 0
## 26186 0 0 0
## 26187 0 0 0
## 26188 0 0 0
## 26189 0 0 0
## 26190 0 0 0
## 26191 0 0 0
## 26192 0 0 0
## 26193 0 0 0
## 26194 0 0 0
## 26195 0 0 0
## 26196 0 0 0
## 26197 0 0 0
## 26198 0 0 0
## 26199 0 0 0
## 26200 0 0 0
## 26201 0 0 0
## 26202 0 0 0
## 26203 0 0 0
## 26204 0 0 0
## 26205 0 0 0
## 26206 0 0 0
## 26207 0 0 0
## 26208 0 0 0
## 26209 0 0 0
## 26210 0 0 0
## 26211 0 0 0
## 26212 0 0 0
## 26213 0 0 0
## 26214 0 0 0
## 26215 0 0 0
## 26216 0 0 0
## 26217 0 0 0
## 26218 0 0 0
## 26219 0 0 0
## 26220 0 0 0
## 26221 0 0 0
## 26222 0 0 0
## 26223 0 0 0
## 26224 0 0 0
## 26225 0 0 0
## 26226 0 0 0
## 26227 0 0 0
## 26228 0 0 0
## 26229 0 0 0
## 26230 0 0 0
## 26231 0 0 0
## 26232 0 0 0
## 26233 0 0 0
## 26234 0 0 0
## 26235 0 0 0
## 26236 0 0 0
## 26237 0 0 0
## 26238 0 0 0
## 26239 0 0 0
## 26240 0 0 0
## 26241 0 0 0
## 26242 0 0 0
## 26243 0 0 0
## 26244 0 0 0
## 26245 0 0 0
## 26246 0 0 0
## 26247 0 0 0
## 26248 0 0 0
## 26249 0 0 0
## 26250 0 0 0
## 26251 0 0 0
## 26252 0 0 0
## 26253 0 0 0
## 26254 0 0 0
## 26255 0 0 0
## 26256 0 0 0
## 26257 0 0 0
## 26258 0 0 0
## 26259 0 0 0
## 26260 0 0 0
## 26261 0 0 0
## 26262 0 0 0
## 26263 0 0 0
## 26264 0 0 0
## 26265 0 0 0
## 26266 0 0 0
## 26267 0 0 0
## 26268 0 0 0
## 26269 0 0 0
## 26270 0 0 0
## 26271 0 0 0
## 26272 0 0 0
## 26273 0 0 0
## 26274 0 0 0
## 26275 0 0 0
## 26276 0 0 0
## 26277 0 0 0
## 26278 0 0 0
## 26279 0 0 0
## 26280 0 0 0
## 26281 0 0 0
## 26282 0 0 0
## 26283 0 0 0
## 26284 0 0 0
## 26285 0 0 0
## 26286 0 0 0
## 26287 0 0 0
## 26288 0 0 0
## 26289 0 0 0
## 26290 0 0 0
## 26291 0 0 0
## 26292 0 0 0
## 26293 0 0 0
## 26294 0 0 0
## 26295 0 0 0
## 26296 0 0 0
## 26297 0 0 0
## 26298 0 0 0
## 26299 0 0 0
## 26300 0 0 0
## 26301 0 0 0
## 26302 0 0 0
## 26303 0 0 0
## 26304 0 0 0
## 26305 0 0 0
## 26306 0 0 0
## 26307 0 0 0
## 26308 0 0 0
## 26309 0 0 0
## 26310 0 0 0
## 26311 0 0 0
## 26312 0 0 0
## 26313 0 0 0
## 26314 0 0 0
## 26315 0 0 0
## 26316 0 0 0
## 26317 0 0 0
## 26318 0 0 0
## 26319 0 0 0
## 26320 0 0 0
## 26321 0 0 0
## 26322 0 0 0
## 26323 0 0 0
## 26324 0 0 0
## 26325 0 0 0
## 26326 0 0 0
## 26327 0 0 0
## 26328 0 0 0
## 26329 0 0 0
## 26330 0 0 0
## 26331 0 0 0
## 26332 0 0 0
## 26333 0 0 0
## 26334 0 0 0
## 26335 0 0 0
## 26336 0 0 0
## 26337 0 0 0
## 26338 0 0 0
## 26339 0 0 0
## 26340 0 0 0
## 26341 0 0 0
## 26342 0 0 0
## 26343 0 0 0
## 26344 0 0 0
## 26345 0 0 0
## 26346 0 0 0
## 26347 0 0 0
## 26348 0 0 0
## 26349 0 0 0
## 26350 0 0 0
## 26351 0 0 0
## 26352 0 0 0
## 26353 0 0 0
## 26354 0 0 0
## 26355 0 0 0
## 26356 0 0 0
## 26357 0 0 0
## 26358 0 0 0
## 26359 0 0 0
## 26360 0 0 0
## 26361 0 0 0
## 26362 0 0 0
## 26363 0 0 0
## 26364 0 0 0
## 26365 0 0 0
## 26366 0 0 0
## 26367 0 0 0
## 26368 0 0 0
## 26369 0 0 0
## 26370 0 0 0
## 26371 0 0 0
## 26372 0 0 0
## 26373 0 0 0
## 26374 0 0 0
## 26375 0 0 0
## 26376 0 0 0
## 26377 0 0 0
## 26378 0 0 0
## 26379 0 0 0
## 26380 0 0 0
## 26381 0 0 0
## 26382 0 0 0
## 26383 0 0 0
## 26384 0 0 0
## 26385 0 0 0
## 26386 0 0 0
## 26387 0 0 0
## 26388 0 0 0
## 26389 0 0 0
## 26390 0 0 0
## 26391 0 0 0
## 26392 0 0 0
## 26393 0 0 0
## 26394 0 0 0
## 26395 0 0 0
## 26396 0 0 0
## 26397 0 0 0
## 26398 0 0 0
## 26399 0 0 0
## 26400 0 0 0
## 26401 0 0 0
## 26402 0 0 0
## 26403 0 0 0
## 26404 0 0 0
## 26405 0 0 0
## 26406 0 0 0
## 26407 0 0 0
## 26408 0 0 0
## 26409 0 0 0
## 26410 0 0 0
## 26411 0 0 0
## 26412 0 0 0
## 26413 0 0 0
## 26414 0 0 0
## 26415 0 0 0
## 26416 0 0 0
## 26417 0 0 0
## 26418 0 0 0
## 26419 0 0 0
## 26420 0 0 0
## 26421 0 0 0
## 26422 0 0 0
## 26423 0 0 0
## 26424 0 0 0
## 26425 0 0 0
## 26426 0 0 0
## 26427 0 0 0
## 26428 0 0 0
## 26429 0 0 0
## 26430 0 0 0
## 26431 0 0 0
## 26432 0 0 0
## 26433 0 0 0
## 26434 0 0 0
## 26435 0 0 0
## 26436 0 0 0
## 26437 0 0 0
## 26438 0 0 0
## 26439 0 0 0
## 26440 0 0 0
## 26441 0 0 0
## 26442 0 0 0
## 26443 0 0 0
## 26444 0 0 0
## 26445 0 0 0
## 26446 0 0 0
## 26447 0 0 0
## 26448 0 0 0
## 26449 0 0 0
## 26450 0 0 0
## 26451 0 0 0
## 26452 0 0 0
## 26453 0 0 0
## 26454 0 0 0
## 26455 0 0 0
## 26456 0 0 0
## 26457 0 0 0
## 26458 0 0 0
## 26459 0 0 0
## 26460 0 0 0
## 26461 0 0 0
## 26462 0 0 0
## 26463 0 0 0
## 26464 0 0 0
## 26465 0 0 0
## 26466 0 0 0
## 26467 0 0 0
## 26468 0 0 0
## 26469 0 0 0
## 26470 0 0 0
## 26471 0 0 0
## 26472 0 0 0
## 26473 0 0 0
## 26474 0 0 0
## 26475 0 0 0
## 26476 0 0 0
## 26477 0 0 0
## 26478 0 0 0
## 26479 0 0 0
## 26480 0 0 0
## 26481 0 0 0
## 26482 0 0 0
## 26483 0 0 0
## 26484 0 0 0
## 26485 0 0 0
## 26486 0 0 0
## 26487 0 0 0
## 26488 0 0 0
## 26489 0 0 0
## 26490 0 0 0
## 26491 0 0 0
## 26492 0 0 0
## 26493 0 0 0
## 26494 0 0 0
## 26495 0 0 0
## 26496 0 0 0
## 26497 0 0 0
## 26498 0 0 0
## 26499 0 0 0
## 26500 0 0 0
## 26501 0 0 0
## 26502 0 0 0
## 26503 0 0 0
## 26504 0 0 0
## 26505 0 0 0
## 26506 0 0 0
## 26507 0 0 0
## 26508 0 0 0
## 26509 0 0 0
## 26510 0 0 0
## 26511 0 0 0
## 26512 0 0 0
## 26513 0 0 0
## 26514 0 0 0
## 26515 0 0 0
## 26516 0 0 0
## 26517 0 0 0
## 26518 0 0 0
## 26519 0 0 0
## 26520 0 0 0
## 26521 0 0 0
## 26522 0 0 0
## 26523 0 0 0
## 26524 0 0 0
## 26525 0 0 0
## 26526 0 0 0
## 26527 0 0 0
## 26528 0 0 0
## 26529 0 0 0
## 26530 0 0 0
## 26531 0 0 0
## 26532 0 0 0
## 26533 0 0 0
## 26534 0 0 0
## 26535 0 0 0
## 26536 0 0 0
## 26537 0 0 0
## 26538 0 0 0
## 26539 0 0 0
## 26540 0 0 0
## 26541 0 0 0
## 26542 0 0 0
## 26543 0 0 0
## 26544 0 0 0
## 26545 0 0 0
## 26546 0 0 0
## 26547 0 0 0
## 26548 0 0 0
## 26549 0 0 0
## 26550 0 0 0
## 26551 0 0 0
## 26552 0 0 0
## 26553 0 0 0
## 26554 0 0 0
## 26555 0 0 0
## 26556 0 0 0
## 26557 0 0 0
## 26558 0 0 0
## 26559 0 0 0
## 26560 0 0 0
## 26561 0 0 0
## 26562 0 0 0
## 26563 0 0 0
## 26564 0 0 0
## 26565 0 0 0
## 26566 0 0 0
## 26567 0 0 0
## 26568 0 0 0
## 26569 0 0 0
## 26570 0 0 0
## 26571 0 0 0
## 26572 0 0 0
## 26573 0 0 0
## 26574 0 0 0
## 26575 0 0 0
## 26576 0 0 0
## 26577 0 0 0
## 26578 0 0 0
## 26579 0 0 0
## 26580 0 0 0
## 26581 0 0 0
## 26582 0 0 0
## 26583 0 0 0
## 26584 0 0 0
## 26585 0 0 0
## 26586 0 0 0
## 26587 0 0 0
## 26588 0 0 0
## 26589 0 0 0
## 26590 0 0 0
## 26591 0 0 0
## 26592 0 0 0
## 26593 0 0 0
## 26594 0 0 0
## 26595 0 0 0
## 26596 0 0 0
## 26597 0 0 0
## 26598 0 0 0
## 26599 0 0 0
## 26600 0 0 0
## 26601 0 0 0
## 26602 0 0 0
## 26603 0 0 0
## 26604 0 0 0
## 26605 0 0 0
## 26606 0 0 0
## 26607 0 0 0
## 26608 0 0 0
## 26609 0 0 0
## 26610 0 0 0
## 26611 0 0 0
## 26612 0 0 0
## 26613 0 0 0
## 26614 0 0 0
## 26615 0 0 0
## 26616 0 0 0
## 26617 0 0 0
## 26618 0 0 0
## 26619 0 0 0
## 26620 0 0 0
## 26621 0 0 0
## 26622 0 0 0
## 26623 0 0 0
## 26624 0 0 0
## 26625 0 0 0
## 26626 0 0 0
## 26627 0 0 0
## 26628 0 0 0
## 26629 0 0 0
## 26630 0 0 0
## 26631 0 0 0
## 26632 0 0 0
## 26633 0 0 0
## 26634 0 0 0
## 26635 0 0 0
## 26636 0 0 0
## 26637 0 0 0
## 26638 0 0 0
## 26639 0 0 0
## 26640 0 0 0
## 26641 0 0 0
## 26642 0 0 0
## 26643 0 0 0
## 26644 0 0 0
## 26645 0 0 0
## 26646 0 0 0
## 26647 0 0 0
## 26648 0 0 0
## 26649 0 0 0
## 26650 0 0 0
## 26651 0 0 0
## 26652 0 0 0
## 26653 0 0 0
## 26654 0 0 0
## 26655 0 0 0
## 26656 0 0 0
## 26657 0 0 0
## 26658 0 0 0
## 26659 0 0 0
## 26660 0 0 0
## 26661 0 0 0
## 26662 0 0 0
## 26663 0 0 0
## 26664 0 0 0
## 26665 0 0 0
## 26666 0 0 0
## 26667 0 0 0
## 26668 0 0 0
## 26669 0 0 0
## 26670 0 0 0
## 26671 0 0 0
## 26672 0 0 0
## 26673 0 0 0
## 26674 0 0 0
## 26675 0 0 0
## 26676 0 0 0
## 26677 0 0 0
## 26678 0 0 0
## 26679 0 0 0
## 26680 0 0 0
## 26681 0 0 0
## 26682 0 0 0
## 26683 0 0 0
## 26684 0 0 0
## 26685 0 0 0
## 26686 0 0 0
## 26687 0 0 0
## 26688 0 0 0
## 26689 0 0 0
## 26690 0 0 0
## 26691 0 0 0
## 26692 0 0 0
## 26693 0 0 0
## 26694 0 0 0
## 26695 0 0 0
## 26696 0 0 0
## 26697 0 0 0
## 26698 0 0 0
## 26699 0 0 0
## 26700 0 0 0
## 26701 0 0 0
## 26702 0 0 0
## 26703 0 0 0
## 26704 0 0 0
## 26705 0 0 0
## 26706 0 0 0
## 26707 0 0 0
## 26708 0 0 0
## 26709 0 0 0
## 26710 0 0 0
## 26711 0 0 0
## 26712 0 0 0
## 26713 0 0 0
## 26714 0 0 0
## 26715 0 0 0
## 26716 0 0 0
## 26717 0 0 0
## 26718 0 0 0
## 26719 0 0 0
## 26720 0 0 0
## 26721 0 0 0
## 26722 0 0 0
## 26723 0 0 0
## 26724 0 0 0
## 26725 0 0 0
## 26726 0 0 0
## 26727 0 0 0
## 26728 0 0 0
## 26729 0 0 0
## 26730 0 0 0
## 26731 0 0 0
## 26732 0 0 0
## 26733 0 0 0
## 26734 0 0 0
## 26735 0 0 0
## 26736 0 0 0
## 26737 0 0 0
## 26738 0 0 0
## 26739 0 0 0
## 26740 0 0 0
## 26741 0 0 0
## 26742 0 0 0
## 26743 0 0 0
## 26744 0 0 0
## 26745 0 0 0
## 26746 0 0 0
## 26747 0 0 0
## 26748 0 0 0
## 26749 0 0 0
## 26750 0 0 0
## 26751 0 0 0
## 26752 0 0 0
## 26753 0 0 0
## 26754 0 0 0
## 26755 0 0 0
## 26756 0 0 0
## 26757 0 0 0
## 26758 0 0 0
## 26759 0 0 0
## 26760 0 0 0
## 26761 0 0 0
## 26762 0 0 0
## 26763 0 0 0
## 26764 0 0 0
## 26765 0 0 0
## 26766 0 0 0
## 26767 0 0 0
## 26768 0 0 0
## 26769 0 0 0
## 26770 0 0 0
## 26771 0 0 0
## 26772 0 0 0
## 26773 0 0 0
## 26774 0 0 0
## 26775 0 0 0
## 26776 0 0 0
## 26777 0 0 0
## 26778 0 0 0
## 26779 0 0 0
## 26780 0 0 0
## 26781 0 0 0
## 26782 0 0 0
## 26783 0 0 0
## 26784 0 0 0
## 26785 0 0 0
## 26786 0 0 0
## 26787 0 0 0
## 26788 0 0 0
## 26789 0 0 0
## 26790 0 0 0
## 26791 0 0 0
## 26792 0 0 0
## 26793 0 0 0
## 26794 0 0 0
## 26795 0 0 0
## 26796 0 0 0
## 26797 0 0 0
## 26798 0 0 0
## 26799 0 0 0
## 26800 0 0 0
## 26801 0 0 0
## 26802 0 0 0
## 26803 0 0 0
## 26804 0 0 0
## 26805 0 0 0
## 26806 0 0 0
## 26807 0 0 0
## 26808 0 0 0
## 26809 0 0 0
## 26810 0 0 0
## 26811 0 0 0
## 26812 0 0 0
## 26813 0 0 0
## 26814 0 0 0
## 26815 0 0 0
## 26816 0 0 0
## 26817 0 0 0
## 26818 0 0 0
## 26819 0 0 0
## 26820 0 0 0
## 26821 0 0 0
## 26822 0 0 0
## 26823 0 0 0
## 26824 0 0 0
## 26825 0 0 0
## 26826 0 0 0
## 26827 0 0 0
## 26828 0 0 0
## 26829 0 0 0
## 26830 0 0 0
## 26831 0 0 0
## 26832 0 0 0
## 26833 0 0 0
## 26834 0 0 0
## 26835 0 0 0
## 26836 0 0 0
## 26837 0 0 0
## 26838 0 0 0
## 26839 0 0 0
## 26840 0 0 0
## 26841 0 0 0
## 26842 0 0 0
## 26843 0 0 0
## 26844 0 0 0
## 26845 0 0 0
## 26846 0 0 0
## 26847 0 0 0
## 26848 0 0 0
## 26849 0 0 0
## 26850 0 0 0
## 26851 0 0 0
## 26852 0 0 0
## 26853 0 0 0
## 26854 0 0 0
## 26855 0 0 0
## 26856 0 0 0
## 26857 0 0 0
## 26858 0 0 0
## 26859 0 0 0
## 26860 0 0 0
## 26861 0 0 0
## 26862 0 0 0
## 26863 0 0 0
## 26864 0 0 0
## 26865 0 0 0
## 26866 0 0 0
## 26867 0 0 0
## 26868 0 0 0
## 26869 0 0 0
## 26870 0 0 0
## 26871 0 0 0
## 26872 0 0 0
## 26873 0 0 0
## 26874 0 0 0
## 26875 0 0 0
## 26876 0 0 0
## 26877 0 0 0
## 26878 0 0 0
## 26879 0 0 0
## 26880 0 0 0
## 26881 0 0 0
## 26882 0 0 0
## 26883 0 0 0
## 26884 0 0 0
## 26885 0 0 0
## 26886 0 0 0
## 26887 0 0 0
## 26888 0 0 0
## 26889 0 0 0
## 26890 0 0 0
## 26891 0 0 0
## 26892 0 0 0
## 26893 0 0 0
## 26894 0 0 0
## 26895 0 0 0
## 26896 0 0 0
## 26897 0 0 0
## 26898 0 0 0
## 26899 0 0 0
## 26900 0 0 0
## 26901 0 0 0
## 26902 0 0 0
## 26903 0 0 0
## 26904 0 0 0
## 26905 0 0 0
## 26906 0 0 0
## 26907 0 0 0
## 26908 0 0 0
## 26909 0 0 0
## 26910 0 0 0
## 26911 0 0 0
## 26912 0 0 0
## 26913 0 0 0
## 26914 0 0 0
## 26915 0 0 0
## 26916 0 0 0
## 26917 0 0 0
## 26918 0 0 0
## 26919 0 0 0
## 26920 0 0 0
## 26921 0 0 0
## 26922 0 0 0
## 26923 0 0 0
## 26924 0 0 0
## 26925 0 0 0
## 26926 0 0 0
## 26927 0 0 0
## 26928 0 0 0
## 26929 0 0 0
## 26930 0 0 0
## 26931 0 0 0
## 26932 0 0 0
## 26933 0 0 0
## 26934 0 0 0
## 26935 0 0 0
## 26936 0 0 0
## 26937 0 0 0
## 26938 0 0 0
## 26939 0 0 0
## 26940 0 0 0
## 26941 0 0 0
## 26942 0 0 0
## 26943 0 0 0
## 26944 0 0 0
## 26945 0 0 0
## 26946 0 0 0
## 26947 0 0 0
## 26948 0 0 0
## 26949 0 0 0
## 26950 0 0 0
## 26951 0 0 0
## 26952 0 0 0
## 26953 0 0 0
## 26954 0 0 0
## 26955 0 0 0
## 26956 0 0 0
## 26957 0 0 0
## 26958 0 0 0
## 26959 0 0 0
## 26960 0 0 0
## 26961 0 0 0
## 26962 0 0 0
## 26963 0 0 0
## 26964 0 0 0
## 26965 0 0 0
## 26966 0 0 0
## 26967 0 0 0
## 26968 0 0 0
## 26969 0 0 0
## 26970 0 0 0
## 26971 0 0 0
## 26972 0 0 0
## 26973 0 0 0
## 26974 0 0 0
## 26975 0 0 0
## 26976 0 0 0
## 26977 0 0 0
## 26978 0 0 0
## 26979 0 0 0
## 26980 0 0 0
## 26981 0 0 0
## 26982 0 0 0
## 26983 0 0 0
## 26984 0 0 0
## 26985 0 0 0
## 26986 0 0 0
## 26987 0 0 0
## 26988 0 0 0
## 26989 0 0 0
## 26990 0 0 0
## 26991 0 0 0
## 26992 0 0 0
## 26993 0 0 0
## 26994 0 0 0
## 26995 0 0 0
## 26996 0 0 0
## 26997 0 0 0
## 26998 0 0 0
## 26999 0 0 0
## 27000 0 0 0
## 27001 0 0 0
## 27002 0 0 0
## 27003 0 0 0
## 27004 0 0 0
## 27005 0 0 0
## 27006 0 0 0
## 27007 0 0 0
## 27008 0 0 0
## 27009 0 0 0
## 27010 0 0 0
## 27011 0 0 0
## 27012 0 0 0
## 27013 0 0 0
## 27014 0 0 0
## 27015 0 0 0
## 27016 0 0 0
## 27017 0 0 0
## 27018 0 0 0
## 27019 0 0 0
## 27020 0 0 0
## 27021 0 0 0
## 27022 0 0 0
## 27023 0 0 0
## 27024 0 0 0
## 27025 0 0 0
## 27026 0 0 0
## 27027 0 0 0
## 27028 0 0 0
## 27029 0 0 0
## 27030 0 0 0
## 27031 0 0 0
## 27032 0 0 0
## 27033 0 0 0
## 27034 0 0 0
## 27035 0 0 0
## 27036 0 0 0
## 27037 0 0 0
## 27038 0 0 0
## 27039 0 0 0
## 27040 0 0 0
## 27041 0 0 0
## 27042 0 0 0
## 27043 0 0 0
## 27044 0 0 0
## 27045 0 0 0
## 27046 0 0 0
## 27047 0 0 0
## 27048 0 0 0
## 27049 0 0 0
## 27050 0 0 0
## 27051 0 0 0
## 27052 0 0 0
## 27053 0 0 0
## 27054 0 0 0
## 27055 0 0 0
## 27056 0 0 0
## 27057 0 0 0
## 27058 0 0 0
## 27059 0 0 0
## 27060 0 0 0
## 27061 0 0 0
## 27062 0 0 0
## 27063 0 0 0
## 27064 0 0 0
## 27065 0 0 0
## 27066 0 0 0
## 27067 0 0 0
## 27068 0 0 0
## 27069 0 0 0
## 27070 0 0 0
## 27071 0 0 0
## 27072 0 0 0
## 27073 0 0 0
## 27074 0 0 0
## 27075 0 0 0
## 27076 0 0 0
## 27077 0 0 0
## 27078 0 0 0
## 27079 0 0 0
## 27080 0 0 0
## 27081 0 0 0
## 27082 0 0 0
## 27083 0 0 0
## 27084 0 0 0
## 27085 0 0 0
## 27086 0 0 0
## 27087 0 0 0
## 27088 0 0 0
## 27089 0 0 0
## 27090 0 0 0
## 27091 0 0 0
## 27092 0 0 0
## 27093 0 0 0
## 27094 0 0 0
## 27095 0 0 0
## 27096 0 0 0
## 27097 0 0 0
## 27098 0 0 0
## 27099 0 0 0
## 27100 0 0 0
## 27101 0 0 0
## 27102 0 0 0
## 27103 0 0 0
## 27104 0 0 0
## 27105 0 0 0
## 27106 0 0 0
## 27107 0 0 0
## 27108 0 0 0
## 27109 0 0 0
## 27110 0 0 0
## 27111 0 0 0
## 27112 0 0 0
## 27113 0 0 0
## 27114 0 0 0
## 27115 0 0 0
## 27116 0 0 0
## 27117 0 0 0
## 27118 0 0 0
## 27119 0 0 0
## 27120 0 0 0
## 27121 0 0 0
## 27122 0 0 0
## 27123 0 0 0
## 27124 0 0 0
## 27125 0 0 0
## 27126 0 0 0
## 27127 0 0 0
## 27128 0 0 0
## 27129 0 0 0
## 27130 0 0 0
## 27131 0 0 0
## 27132 0 0 0
## 27133 0 0 0
## 27134 0 0 0
## 27135 0 0 0
## 27136 0 0 0
## 27137 0 0 0
## 27138 0 0 0
## 27139 0 0 0
## 27140 0 0 0
## 27141 0 0 0
## 27142 0 0 0
## 27143 0 0 0
## 27144 0 0 0
## 27145 0 0 0
## 27146 0 0 0
## 27147 0 0 0
## 27148 0 0 0
## 27149 0 0 0
## 27150 0 0 0
## 27151 0 0 0
## 27152 0 0 0
## 27153 0 0 0
## 27154 0 0 0
## 27155 0 0 0
## 27156 0 0 0
## 27157 0 0 0
## 27158 0 0 0
## 27159 0 0 0
## 27160 0 0 0
## 27161 0 0 0
## 27162 0 0 0
## 27163 0 0 0
## 27164 0 0 0
## 27165 0 0 0
## 27166 0 0 0
## 27167 0 0 0
## 27168 0 0 0
## 27169 0 0 0
## 27170 0 0 0
## 27171 0 0 0
## 27172 0 0 0
## 27173 0 0 0
## 27174 0 0 0
## 27175 0 0 0
## 27176 0 0 0
## 27177 0 0 0
## 27178 0 0 0
## 27179 0 0 0
## 27180 0 0 0
## 27181 0 0 0
## 27182 0 0 0
## 27183 0 0 0
## 27184 0 0 0
## 27185 0 0 0
## 27186 0 0 0
## 27187 0 0 0
## 27188 0 0 0
## 27189 0 0 0
## 27190 0 0 0
## 27191 0 0 0
## 27192 0 0 0
## 27193 0 0 0
## 27194 0 0 0
## 27195 0 0 0
## 27196 0 0 0
## 27197 0 0 0
## 27198 0 0 0
## 27199 0 0 0
## 27200 0 0 0
## 27201 0 0 0
## 27202 0 0 0
## 27203 0 0 0
## 27204 0 0 0
## 27205 0 0 0
## 27206 0 0 0
## 27207 0 0 0
## 27208 0 0 0
## 27209 0 0 0
## 27210 0 0 0
## 27211 0 0 0
## 27212 0 0 0
## 27213 0 0 0
## 27214 0 0 0
## 27215 0 0 0
## 27216 0 0 0
## 27217 0 0 0
## 27218 0 0 0
## 27219 0 0 0
## 27220 0 0 0
## 27221 0 0 0
## 27222 0 0 0
## 27223 0 0 0
## 27224 0 0 0
## 27225 0 0 0
## 27226 0 0 0
## 27227 0 0 0
## 27228 0 0 0
## 27229 0 0 0
## 27230 0 0 0
## 27231 0 0 0
## 27232 0 0 0
## 27233 0 0 0
## 27234 0 0 0
## 27235 0 0 0
## 27236 0 0 0
## 27237 0 0 0
## 27238 0 0 0
## 27239 0 0 0
## 27240 0 0 0
## 27241 0 0 0
## 27242 0 0 0
## 27243 0 0 0
## 27244 0 0 0
## 27245 0 0 0
## 27246 0 0 0
## 27247 0 0 0
## 27248 0 0 0
## 27249 0 0 0
## 27250 0 0 0
## 27251 0 0 0
## 27252 0 0 0
## 27253 0 0 0
## 27254 0 0 0
## 27255 0 0 0
## 27256 0 0 0
## 27257 0 0 0
## 27258 0 0 0
## 27259 0 0 0
## 27260 0 0 0
## 27261 0 0 0
## 27262 0 0 0
## 27263 0 0 0
## 27264 0 0 0
## 27265 0 0 0
## 27266 0 0 0
## 27267 0 0 0
## 27268 0 0 0
## 27269 0 0 0
## 27270 0 0 0
## 27271 0 0 0
## 27272 0 0 0
## 27273 0 0 0
## 27274 0 0 0
## 27275 0 0 0
## 27276 0 0 0
## 27277 0 0 0
## 27278 0 0 0
## 27279 0 0 0
## 27280 0 0 0
## 27281 0 0 0
## 27282 0 0 0
## 27283 0 0 0
## 27284 0 0 0
## 27285 0 0 0
## 27286 0 0 0
## 27287 0 0 0
## 27288 0 0 0
## 27289 0 0 0
## 27290 0 0 0
## 27291 0 0 0
## 27292 0 0 0
## 27293 0 0 0
## 27294 0 0 0
## 27295 0 0 0
## 27296 0 0 0
## 27297 0 0 0
## 27298 0 0 0
## 27299 0 0 0
## 27300 0 0 0
## 27301 0 0 0
## 27302 0 0 0
## 27303 0 0 0
## 27304 0 0 0
## 27305 0 0 0
## 27306 0 0 0
## 27307 0 0 0
## 27308 0 0 0
## 27309 0 0 0
## 27310 0 0 0
## 27311 0 0 0
## 27312 0 0 0
## 27313 0 0 0
## 27314 0 0 0
## 27315 0 0 0
## 27316 0 0 0
## 27317 0 0 0
## 27318 0 0 0
## 27319 0 0 0
## 27320 0 0 0
## 27321 0 0 0
## 27322 0 0 0
## 27323 0 0 0
## 27324 0 0 0
## 27325 0 0 0
## 27326 0 0 0
## 27327 0 0 0
## 27328 0 0 0
## 27329 0 0 0
## 27330 0 0 0
## 27331 0 0 0
## 27332 0 0 0
## 27333 0 0 0
## 27334 0 0 0
## 27335 0 0 0
## 27336 0 0 0
## 27337 0 0 0
## 27338 0 0 0
## 27339 0 0 0
## 27340 0 0 0
## 27341 0 0 0
## 27342 0 0 0
## 27343 0 0 0
## 27344 0 0 0
## 27345 0 0 0
## 27346 0 0 0
## 27347 0 0 0
## 27348 0 0 0
## 27349 0 0 0
## 27350 0 0 0
## 27351 0 0 0
## 27352 0 0 0
## 27353 0 0 0
## 27354 0 0 0
## 27355 0 0 0
## 27356 0 0 0
## 27357 0 0 0
## 27358 0 0 0
## 27359 0 0 0
## 27360 0 0 0
## 27361 0 0 0
## 27362 0 0 0
## 27363 0 0 0
## 27364 0 0 0
## 27365 0 0 0
## 27366 0 0 0
## 27367 0 0 0
## 27368 0 0 0
## 27369 0 0 0
## 27370 0 0 0
## 27371 0 0 0
## 27372 0 0 0
## 27373 0 0 0
## 27374 0 0 0
## 27375 0 0 0
## 27376 0 0 0
## 27377 0 0 0
## 27378 0 0 0
## 27379 0 0 0
## 27380 0 0 0
## 27381 0 0 0
## 27382 0 0 0
## 27383 0 0 0
## 27384 0 0 0
## 27385 0 0 0
## 27386 0 0 0
## 27387 0 0 0
## 27388 0 0 0
## 27389 0 0 0
## 27390 0 0 0
## 27391 0 0 0
## 27392 0 0 0
## 27393 0 0 0
## 27394 0 0 0
## 27395 0 0 0
## 27396 0 0 0
## 27397 0 0 0
## 27398 0 0 0
## 27399 0 0 0
## 27400 0 0 0
## 27401 0 0 0
## 27402 0 0 0
## 27403 0 0 0
## 27404 0 0 0
## 27405 0 0 0
## 27406 0 0 0
## 27407 0 0 0
## 27408 0 0 0
## 27409 0 0 0
## 27410 0 0 0
## 27411 0 0 0
## 27412 0 0 0
## 27413 0 0 0
## 27414 0 0 0
## 27415 0 0 0
## 27416 0 0 0
## 27417 0 0 0
## 27418 0 0 0
## 27419 0 0 0
## 27420 0 0 0
## 27421 0 0 0
## 27422 0 0 0
## 27423 0 0 0
## 27424 0 0 0
## 27425 0 0 0
## 27426 0 0 0
## 27427 0 0 0
## 27428 0 0 0
## 27429 0 0 0
## 27430 0 0 0
## 27431 0 0 0
## 27432 0 0 0
## 27433 0 0 0
## 27434 0 0 0
## 27435 0 0 0
## 27436 0 0 0
## 27437 0 0 0
## 27438 0 0 0
## 27439 0 0 0
## 27440 0 0 0
## 27441 0 0 0
## 27442 0 0 0
## 27443 0 0 0
## 27444 0 0 0
## 27445 0 0 0
## 27446 0 0 0
## 27447 0 0 0
## 27448 0 0 0
## 27449 0 0 0
## 27450 0 0 0
## 27451 0 0 0
## 27452 0 0 0
## 27453 0 0 0
## 27454 0 0 0
## 27455 0 0 0
## 27456 0 0 0
## 27457 0 0 0
## 27458 0 0 0
## 27459 0 0 0
## 27460 0 0 0
## 27461 0 0 0
## 27462 0 0 0
## 27463 0 0 0
## 27464 0 0 0
## 27465 0 0 0
## 27466 0 0 0
## 27467 0 0 0
## 27468 0 0 0
## 27469 0 0 0
## 27470 0 0 0
## 27471 0 0 0
## 27472 0 0 0
## 27473 0 0 0
## 27474 0 0 0
## 27475 0 0 0
## 27476 0 0 0
## 27477 0 0 0
## 27478 0 0 0
## 27479 0 0 0
## 27480 0 0 0
## 27481 0 0 0
## 27482 0 0 0
## 27483 0 0 0
## 27484 0 0 0
## 27485 0 0 0
## 27486 0 0 0
## 27487 0 0 0
## 27488 0 0 0
## 27489 0 0 0
## 27490 0 0 0
## 27491 0 0 0
## 27492 0 0 0
## 27493 0 0 0
## 27494 0 0 0
## 27495 0 0 0
## 27496 0 0 0
## 27497 0 0 0
## 27498 0 0 0
## 27499 0 0 0
## 27500 0 0 0
## 27501 0 0 0
## 27502 0 0 0
## 27503 0 0 0
## 27504 0 0 0
## 27505 0 0 0
## 27506 0 0 0
## 27507 0 0 0
## 27508 0 0 0
## 27509 0 0 0
## 27510 0 0 0
## 27511 0 0 0
## 27512 0 0 0
## 27513 0 0 0
## 27514 0 0 0
## 27515 0 0 0
## 27516 0 0 0
## 27517 0 0 0
## 27518 0 0 0
## 27519 0 0 0
## 27520 0 0 0
## 27521 0 0 0
## 27522 0 0 0
## 27523 0 0 0
## 27524 0 0 0
## 27525 0 0 0
## 27526 0 0 0
## 27527 0 0 0
## 27528 0 0 0
## 27529 0 0 0
## 27530 0 0 0
## 27531 0 0 0
## 27532 0 0 0
## 27533 0 0 0
## 27534 0 0 0
## 27535 0 0 0
## 27536 0 0 0
## 27537 0 0 0
## 27538 0 0 0
## 27539 0 0 0
## 27540 0 0 0
## 27541 0 0 0
## 27542 0 0 0
## 27543 0 0 0
## 27544 0 0 0
## 27545 0 0 0
## 27546 0 0 0
## 27547 0 0 0
## 27548 0 0 0
## 27549 0 0 0
## 27550 0 0 0
## 27551 0 0 0
## 27552 0 0 0
## 27553 0 0 0
## 27554 0 0 0
## 27555 0 0 0
## 27556 0 0 0
## 27557 0 0 0
## 27558 0 0 0
## 27559 0 0 0
## 27560 0 0 0
## 27561 0 0 0
## 27562 0 0 0
## 27563 0 0 0
## 27564 0 0 0
## 27565 0 0 0
## 27566 0 0 0
## 27567 0 0 0
## 27568 0 0 0
## 27569 0 0 0
## 27570 0 0 0
## 27571 0 0 0
## 27572 0 0 0
## 27573 0 0 0
## 27574 0 0 0
## 27575 0 0 0
## 27576 0 0 0
## 27577 0 0 0
## 27578 0 0 0
## 27579 0 0 0
## 27580 0 0 0
## 27581 0 0 0
## 27582 0 0 0
## 27583 0 0 0
## 27584 0 0 0
## 27585 0 0 0
## 27586 0 0 0
## 27587 0 0 0
## 27588 0 0 0
## 27589 0 0 0
## 27590 0 0 0
## 27591 0 0 0
## 27592 0 0 0
## 27593 0 0 0
## 27594 0 0 0
## 27595 0 0 0
## 27596 0 0 0
## 27597 0 0 0
## 27598 0 0 0
## 27599 0 0 0
## 27600 0 0 0
## 27601 0 0 0
## 27602 0 0 0
## 27603 0 0 0
## 27604 0 0 0
## 27605 0 0 0
## 27606 0 0 0
## 27607 0 0 0
## 27608 0 0 0
## 27609 0 0 0
## 27610 0 0 0
## 27611 0 0 0
## 27612 0 0 0
## 27613 0 0 0
## 27614 0 0 0
## 27615 0 0 0
## 27616 0 0 0
## 27617 0 0 0
## 27618 0 0 0
## 27619 0 0 0
## 27620 0 0 0
## 27621 0 0 0
## 27622 0 0 0
## 27623 0 0 0
## 27624 0 0 0
## 27625 0 0 0
## 27626 0 0 0
## 27627 0 0 0
## 27628 0 0 0
## 27629 0 0 0
## 27630 0 0 0
## 27631 0 0 0
## 27632 0 0 0
## 27633 0 0 0
## 27634 0 0 0
## 27635 0 0 0
## 27636 0 0 0
## 27637 0 0 0
## 27638 0 0 0
## 27639 0 0 0
## 27640 0 0 0
## 27641 0 0 0
## 27642 0 0 0
## 27643 0 0 0
## 27644 0 0 0
## 27645 0 0 0
## 27646 0 0 0
## 27647 0 0 0
## 27648 0 0 0
## 27649 0 0 0
## 27650 0 0 0
## 27651 0 0 0
## 27652 0 0 0
## 27653 0 0 0
## 27654 0 0 0
## 27655 0 0 0
## 27656 0 0 0
## 27657 0 0 0
## 27658 0 0 0
## 27659 0 0 0
## 27660 0 0 0
## 27661 0 0 0
## 27662 0 0 0
## 27663 0 0 0
## 27664 0 0 0
## 27665 0 0 0
## 27666 0 0 0
## 27667 0 0 0
## 27668 0 0 0
## 27669 0 0 0
## 27670 0 0 0
## 27671 0 0 0
## 27672 0 0 0
## 27673 0 0 0
## 27674 0 0 0
## 27675 0 0 0
## 27676 0 0 0
## 27677 0 0 0
## 27678 0 0 0
## 27679 0 0 0
## 27680 0 0 0
## 27681 0 0 0
## 27682 0 0 0
## 27683 0 0 0
## 27684 0 0 0
## 27685 0 0 0
## 27686 0 0 0
## 27687 0 0 0
## 27688 0 0 0
## 27689 0 0 0
## 27690 0 0 0
## 27691 0 0 0
## 27692 0 0 0
## 27693 0 0 0
## 27694 0 0 0
## 27695 0 0 0
## 27696 0 0 0
## 27697 0 0 0
## 27698 0 0 0
## 27699 0 0 0
## 27700 0 0 0
## 27701 0 0 0
## 27702 0 0 0
## 27703 0 0 0
## 27704 0 0 0
## 27705 0 0 0
## 27706 0 0 0
## 27707 0 0 0
## 27708 0 0 0
## 27709 0 0 0
## 27710 0 0 0
## 27711 0 0 0
## 27712 0 0 0
## 27713 0 0 0
## 27714 0 0 0
## 27715 0 0 0
## 27716 0 0 0
## 27717 0 0 0
## 27718 0 0 0
## 27719 0 0 0
## 27720 0 0 0
## 27721 0 0 0
## 27722 0 0 0
## 27723 0 0 0
## 27724 0 0 0
## 27725 0 0 0
## 27726 0 0 0
## 27727 0 0 0
## 27728 0 0 0
## 27729 0 0 0
## 27730 0 0 0
## 27731 0 0 0
## 27732 0 0 0
## 27733 0 0 0
## 27734 0 0 0
## 27735 0 0 0
## 27736 0 0 0
## 27737 0 0 0
## 27738 0 0 0
## 27739 0 0 0
## 27740 0 0 0
## 27741 0 0 0
## 27742 0 0 0
## 27743 0 0 0
## 27744 0 0 0
## 27745 0 0 0
## 27746 0 0 0
## 27747 0 0 0
## 27748 0 0 0
## 27749 0 0 0
## 27750 0 0 0
## 27751 0 0 0
## 27752 0 0 0
## 27753 0 0 0
## 27754 0 0 0
## 27755 0 0 0
## 27756 0 0 0
## 27757 0 0 0
## 27758 0 0 0
## 27759 0 0 0
## 27760 0 0 0
## 27761 0 0 0
## 27762 0 0 0
## 27763 0 0 0
## 27764 0 0 0
## 27765 0 0 0
## 27766 0 0 0
## 27767 0 0 0
## 27768 0 0 0
## 27769 0 0 0
## 27770 0 0 0
## 27771 0 0 0
## 27772 0 0 0
## 27773 0 0 0
## 27774 0 0 0
## 27775 0 0 0
## 27776 0 0 0
## 27777 0 0 0
## 27778 0 0 0
## 27779 0 0 0
## 27780 0 0 0
## 27781 0 0 0
## 27782 0 0 0
## 27783 0 0 0
## 27784 0 0 0
## 27785 0 0 0
## 27786 0 0 0
## 27787 0 0 0
## 27788 0 0 0
## 27789 0 0 0
## 27790 0 0 0
## 27791 0 0 0
## 27792 0 0 0
## 27793 0 0 0
## 27794 0 0 0
## 27795 0 0 0
## 27796 0 0 0
## 27797 0 0 0
## 27798 0 0 0
## 27799 0 0 0
## 27800 0 0 0
## 27801 0 0 0
## 27802 0 0 0
## 27803 0 0 0
## 27804 0 0 0
## 27805 0 0 0
## 27806 0 0 0
## 27807 0 0 0
## 27808 0 0 0
## 27809 0 0 0
## 27810 0 0 0
## 27811 0 0 0
## 27812 0 0 0
## 27813 0 0 0
## 27814 0 0 0
## 27815 0 0 0
## 27816 0 0 0
## 27817 0 0 0
## 27818 0 0 0
## 27819 0 0 0
## 27820 0 0 0
## 27821 0 0 0
## 27822 0 0 0
## 27823 0 0 0
## 27824 0 0 0
## 27825 0 0 0
## 27826 0 0 0
## 27827 0 0 0
## 27828 0 0 0
## 27829 0 0 0
## 27830 0 0 0
## 27831 0 0 0
## 27832 0 0 0
## 27833 0 0 0
## 27834 0 0 0
## 27835 0 0 0
## 27836 0 0 0
## 27837 0 0 0
## 27838 0 0 0
## 27839 0 0 0
## 27840 0 0 0
## 27841 0 0 0
## 27842 0 0 0
## 27843 0 0 0
## 27844 0 0 0
## 27845 0 0 0
## 27846 0 0 0
## 27847 0 0 0
## 27848 0 0 0
## 27849 0 0 0
## 27850 0 0 0
## 27851 0 0 0
## 27852 0 0 0
## 27853 0 0 0
## 27854 0 0 0
## 27855 0 0 0
## 27856 0 0 0
## 27857 0 0 0
## 27858 0 0 0
## 27859 0 0 0
## 27860 0 0 0
## 27861 0 0 0
## 27862 0 0 0
## 27863 0 0 0
## 27864 0 0 0
## 27865 0 0 0
## 27866 0 0 0
## 27867 0 0 0
## 27868 0 0 0
## 27869 0 0 0
## 27870 0 0 0
## 27871 0 0 0
## 27872 0 0 0
## 27873 0 0 0
## 27874 0 0 0
## 27875 0 0 0
## 27876 0 0 0
## 27877 0 0 0
## 27878 0 0 0
## 27879 0 0 0
## 27880 0 0 0
## 27881 0 0 0
## 27882 0 0 0
## 27883 0 0 0
## 27884 0 0 0
## 27885 0 0 0
## 27886 0 0 0
## 27887 0 0 0
## 27888 0 0 0
## 27889 0 0 0
## 27890 0 0 0
## 27891 0 0 0
## 27892 0 0 0
## 27893 0 0 0
## 27894 0 0 0
## 27895 0 0 0
## 27896 0 0 0
## 27897 0 0 0
## 27898 0 0 0
## 27899 0 0 0
## 27900 0 0 0
## 27901 0 0 0
## 27902 0 0 0
## 27903 0 0 0
## 27904 0 0 0
## 27905 0 0 0
## 27906 0 0 0
## 27907 0 0 0
## 27908 0 0 0
## 27909 0 0 0
## 27910 0 0 0
## 27911 0 0 0
## 27912 0 0 0
## 27913 0 0 0
## 27914 0 0 0
## 27915 0 0 0
## 27916 0 0 0
## 27917 0 0 0
## 27918 0 0 0
## 27919 0 0 0
## 27920 0 0 0
## 27921 0 0 0
## 27922 0 0 0
## 27923 0 0 0
## 27924 0 0 0
## 27925 0 0 0
## 27926 0 0 0
## 27927 0 0 0
## 27928 0 0 0
## 27929 0 0 0
## 27930 0 0 0
## 27931 0 0 0
## 27932 0 0 0
## 27933 0 0 0
## 27934 0 0 0
## 27935 0 0 0
## 27936 0 0 0
## 27937 0 0 0
## 27938 0 0 0
## 27939 0 0 0
## 27940 0 0 0
## 27941 0 0 0
## 27942 0 0 0
## 27943 0 0 0
## 27944 0 0 0
## 27945 0 0 0
## 27946 0 0 0
## 27947 0 0 0
## 27948 0 0 0
## 27949 0 0 0
## 27950 0 0 0
## 27951 0 0 0
## 27952 0 0 0
## 27953 0 0 0
## 27954 0 0 0
## 27955 0 0 0
## 27956 0 0 0
## 27957 0 0 0
## 27958 0 0 0
## 27959 0 0 0
## 27960 0 0 0
## 27961 0 0 0
## 27962 0 0 0
## 27963 0 0 0
## 27964 0 0 0
## 27965 0 0 0
## 27966 0 0 0
## 27967 0 0 0
## 27968 0 0 0
## 27969 0 0 0
## 27970 0 0 0
## 27971 0 0 0
## 27972 0 0 0
## 27973 0 0 0
## 27974 0 0 0
## 27975 0 0 0
## 27976 0 0 0
## 27977 0 0 0
## 27978 0 0 0
## 27979 0 0 0
## 27980 0 0 0
## 27981 0 0 0
## 27982 0 0 0
## 27983 0 0 0
## 27984 0 0 0
## 27985 0 0 0
## 27986 0 0 0
## 27987 0 0 0
## 27988 0 0 0
## 27989 0 0 0
## 27990 0 0 0
## 27991 0 0 0
## 27992 0 0 0
## 27993 0 0 0
## 27994 0 0 0
## 27995 0 0 0
## 27996 0 0 0
## 27997 0 0 0
## 27998 0 0 0
## 27999 0 0 0
## 28000 0 0 0
## 28001 0 0 0
## 28002 0 0 0
## 28003 0 0 0
## 28004 0 0 0
## 28005 0 0 0
## 28006 0 0 0
## 28007 0 0 0
## 28008 0 0 0
## 28009 0 0 0
## 28010 0 0 0
## 28011 0 0 0
## 28012 0 0 0
## 28013 0 0 0
## 28014 0 0 0
## 28015 0 0 0
## 28016 0 0 0
## 28017 0 0 0
## 28018 0 0 0
## 28019 0 0 0
## 28020 0 0 0
## 28021 0 0 0
## 28022 0 0 0
## 28023 0 0 0
## 28024 0 0 0
## 28025 0 0 0
## 28026 0 0 0
## 28027 0 0 0
## 28028 0 0 0
## 28029 0 0 0
## 28030 0 0 0
## 28031 0 0 0
## 28032 0 0 0
## 28033 0 0 0
## 28034 0 0 0
## 28035 0 0 0
## 28036 0 0 0
## 28037 0 0 0
## 28038 0 0 0
## 28039 0 0 0
## 28040 0 0 0
## 28041 0 0 0
## 28042 0 0 0
## 28043 0 0 0
## 28044 0 0 0
## 28045 0 0 0
## 28046 0 0 0
## 28047 0 0 0
## 28048 0 0 0
## 28049 0 0 0
## 28050 0 0 0
## 28051 0 0 0
## 28052 0 0 0
## 28053 0 0 0
## 28054 0 0 0
## 28055 0 0 0
## 28056 0 0 0
## 28057 0 0 0
## 28058 0 0 0
## 28059 0 0 0
## 28060 0 0 0
## 28061 0 0 0
## 28062 0 0 0
## 28063 0 0 0
## 28064 0 0 0
## 28065 0 0 0
## 28066 0 0 0
## 28067 0 0 0
## 28068 0 0 0
## 28069 0 0 0
## 28070 0 0 0
## 28071 0 0 0
## 28072 0 0 0
## 28073 0 0 0
## 28074 0 0 0
## 28075 0 0 0
## 28076 0 0 0
## 28077 0 0 0
## 28078 0 0 0
## 28079 0 0 0
## 28080 0 0 0
## 28081 0 0 0
## 28082 0 0 0
## 28083 0 0 0
## 28084 0 0 0
## 28085 0 0 0
## 28086 0 0 0
## 28087 0 0 0
## 28088 0 0 0
## 28089 0 0 0
## 28090 0 0 0
## 28091 0 0 0
## 28092 0 0 0
## 28093 0 0 0
## 28094 0 0 0
## 28095 0 0 0
## 28096 0 0 0
## 28097 0 0 0
## 28098 0 0 0
## 28099 0 0 0
## 28100 0 0 0
## 28101 0 0 0
## 28102 0 0 0
## 28103 0 0 0
## 28104 0 0 0
## 28105 0 0 0
## 28106 0 0 0
## 28107 0 0 0
## 28108 0 0 0
## 28109 0 0 0
## 28110 0 0 0
## 28111 0 0 0
## 28112 0 0 0
## 28113 0 0 0
## 28114 0 0 0
## 28115 0 0 0
## 28116 0 0 0
## 28117 0 0 0
## 28118 0 0 0
## 28119 0 0 0
## 28120 0 0 0
## 28121 0 0 0
## 28122 0 0 0
## 28123 0 0 0
## 28124 0 0 0
## 28125 0 0 0
## 28126 0 0 0
## 28127 0 0 0
## 28128 0 0 0
## 28129 0 0 0
## 28130 0 0 0
## 28131 0 0 0
## 28132 0 0 0
## 28133 0 0 0
## 28134 0 0 0
## 28135 0 0 0
## 28136 0 0 0
## 28137 0 0 0
## 28138 0 0 0
## 28139 0 0 0
## 28140 0 0 0
## 28141 0 0 0
## 28142 0 0 0
## 28143 0 0 0
## 28144 0 0 0
## 28145 0 0 0
## 28146 0 0 0
## 28147 0 0 0
## 28148 0 0 0
## 28149 0 0 0
## 28150 0 0 0
## 28151 0 0 0
## 28152 0 0 0
## 28153 0 0 0
## 28154 0 0 0
## 28155 0 0 0
## 28156 0 0 0
## 28157 0 0 0
## 28158 0 0 0
## 28159 0 0 0
## 28160 0 0 0
## 28161 0 0 0
## 28162 0 0 0
## 28163 0 0 0
## 28164 0 0 0
## 28165 0 0 0
## 28166 0 0 0
## 28167 0 0 0
## 28168 0 0 0
## 28169 0 0 0
## 28170 0 0 0
## 28171 0 0 0
## 28172 0 0 0
## 28173 0 0 0
## 28174 0 0 0
## 28175 0 0 0
## 28176 0 0 0
## 28177 0 0 0
## 28178 0 0 0
## 28179 0 0 0
## 28180 0 0 0
## 28181 0 0 0
## 28182 0 0 0
## 28183 0 0 0
## 28184 0 0 0
## 28185 0 0 0
## 28186 0 0 0
## 28187 0 0 0
## 28188 0 0 0
## 28189 0 0 0
## 28190 0 0 0
## 28191 0 0 0
## 28192 0 0 0
## 28193 0 0 0
## 28194 0 0 0
## 28195 0 0 0
## 28196 0 0 0
## 28197 0 0 0
## 28198 0 0 0
## 28199 0 0 0
## 28200 0 0 0
## 28201 0 0 0
## 28202 0 0 0
## 28203 0 0 0
## 28204 0 0 0
## 28205 0 0 0
## 28206 0 0 0
## 28207 0 0 0
## 28208 0 0 0
## 28209 0 0 0
## 28210 0 0 0
## 28211 0 0 0
## 28212 0 0 0
## 28213 0 0 0
## 28214 0 0 0
## 28215 0 0 0
## 28216 0 0 0
## 28217 0 0 0
## 28218 0 0 0
## 28219 0 0 0
## 28220 0 0 0
## 28221 0 0 0
## 28222 0 0 0
## 28223 0 0 0
## 28224 0 0 0
## 28225 0 0 0
## 28226 0 0 0
## 28227 0 0 0
## 28228 0 0 0
## 28229 0 0 0
## 28230 0 0 0
## 28231 0 0 0
## 28232 0 0 0
## 28233 0 0 0
## 28234 0 0 0
## 28235 0 0 0
## 28236 0 0 0
## 28237 0 0 0
## 28238 0 0 0
## 28239 0 0 0
## 28240 0 0 0
## 28241 0 0 0
## 28242 0 0 0
## 28243 0 0 0
## 28244 0 0 0
## 28245 0 0 0
## 28246 0 0 0
## 28247 0 0 0
## 28248 0 0 0
## 28249 0 0 0
## 28250 0 0 0
## 28251 0 0 0
## 28252 0 0 0
## 28253 0 0 0
## 28254 0 0 0
## 28255 0 0 0
## 28256 0 0 0
## 28257 0 0 0
## 28258 0 0 0
## 28259 0 0 0
## 28260 0 0 0
## 28261 0 0 0
## 28262 0 0 0
## 28263 0 0 0
## 28264 0 0 0
## 28265 0 0 0
## 28266 0 0 0
## 28267 0 0 0
## 28268 0 0 0
## 28269 0 0 0
## 28270 0 0 0
## 28271 0 0 0
## 28272 0 0 0
## 28273 0 0 0
## 28274 0 0 0
## 28275 0 0 0
## 28276 0 0 0
## 28277 0 0 0
## 28278 0 0 0
## 28279 0 0 0
## 28280 0 0 0
## 28281 0 0 0
## 28282 0 0 0
## 28283 0 0 0
## 28284 0 0 0
## 28285 0 0 0
## 28286 0 0 0
## 28287 0 0 0
## 28288 0 0 0
## 28289 0 0 0
## 28290 0 0 0
## 28291 0 0 0
## 28292 0 0 0
## 28293 0 0 0
## 28294 0 0 0
## 28295 0 0 0
## 28296 0 0 0
## 28297 0 0 0
## 28298 0 0 0
## 28299 0 0 0
## 28300 0 0 0
## 28301 0 0 0
## 28302 0 0 0
## 28303 0 0 0
## 28304 0 0 0
## 28305 0 0 0
## 28306 0 0 0
## 28307 0 0 0
## 28308 0 0 0
## 28309 0 0 0
## 28310 0 0 0
## 28311 0 0 0
## 28312 0 0 0
## 28313 0 0 0
## 28314 0 0 0
## 28315 0 0 0
## 28316 0 0 0
## 28317 0 0 0
## 28318 0 0 0
## 28319 0 0 0
## 28320 0 0 0
## 28321 0 0 0
## 28322 0 0 0
## 28323 0 0 0
## 28324 0 0 0
## 28325 0 0 0
## 28326 0 0 0
## 28327 0 0 0
## 28328 0 0 0
## 28329 0 0 0
## 28330 0 0 0
## 28331 0 0 0
## 28332 0 0 0
## 28333 0 0 0
## 28334 0 0 0
## 28335 0 0 0
## 28336 0 0 0
## 28337 0 0 0
## 28338 0 0 0
## 28339 0 0 0
## 28340 0 0 0
## 28341 0 0 0
## 28342 0 0 0
## 28343 0 0 0
## 28344 0 0 0
## 28345 0 0 0
## 28346 0 0 0
## 28347 0 0 0
## 28348 0 0 0
## 28349 0 0 0
## 28350 0 0 0
## 28351 0 0 0
## 28352 0 0 0
## 28353 0 0 0
## 28354 0 0 0
## 28355 0 0 0
## 28356 0 0 0
## 28357 0 0 0
## 28358 0 0 0
## 28359 0 0 0
## 28360 0 0 0
## 28361 0 0 0
## 28362 0 0 0
## 28363 0 0 0
## 28364 0 0 0
## 28365 0 0 0
## 28366 0 0 0
## 28367 0 0 0
## 28368 0 0 0
## 28369 0 0 0
## 28370 0 0 0
## 28371 0 0 0
## 28372 0 0 0
## 28373 0 0 0
## 28374 0 0 0
## 28375 0 0 0
## 28376 0 0 0
## 28377 0 0 0
## 28378 0 0 0
## 28379 0 0 0
## 28380 0 0 0
## 28381 0 0 0
## 28382 0 0 0
## 28383 0 0 0
## 28384 0 0 0
## 28385 0 0 0
## 28386 0 0 0
## 28387 0 0 0
## 28388 0 0 0
## 28389 0 0 0
## 28390 0 0 0
## 28391 0 0 0
## 28392 0 0 0
## 28393 0 0 0
## 28394 0 0 0
## 28395 0 0 0
## 28396 0 0 0
## 28397 0 0 0
## 28398 0 0 0
## 28399 0 0 0
## 28400 0 0 0
## 28401 0 0 0
## 28402 0 0 0
## 28403 0 0 0
## 28404 0 0 0
## 28405 0 0 0
## 28406 0 0 0
## 28407 0 0 0
## 28408 0 0 0
## 28409 0 0 0
## 28410 0 0 0
## 28411 0 0 0
## 28412 0 0 0
## 28413 0 0 0
## 28414 0 0 0
## 28415 0 0 0
## 28416 0 0 0
## 28417 0 0 0
## 28418 0 0 0
## 28419 0 0 0
## 28420 0 0 0
## 28421 0 0 0
## 28422 0 0 0
## 28423 0 0 0
## 28424 0 0 0
## 28425 0 0 0
## 28426 0 0 0
## 28427 0 0 0
## 28428 0 0 0
## 28429 0 0 0
## 28430 0 0 0
## 28431 0 0 0
## 28432 0 0 0
## 28433 0 0 0
## 28434 0 0 0
## 28435 0 0 0
## 28436 0 0 0
## 28437 0 0 0
## 28438 0 0 0
## 28439 0 0 0
## 28440 0 0 0
## 28441 0 0 0
## 28442 0 0 0
## 28443 0 0 0
## 28444 0 0 0
## 28445 0 0 0
## 28446 0 0 0
## 28447 0 0 0
## 28448 0 0 0
## 28449 0 0 0
## 28450 0 0 0
## 28451 0 0 0
## 28452 0 0 0
## 28453 0 0 0
## 28454 0 0 0
## 28455 0 0 0
## 28456 0 0 0
## 28457 0 0 0
## 28458 0 0 0
## 28459 0 0 0
## 28460 0 0 0
## 28461 0 0 0
## 28462 0 0 0
## 28463 0 0 0
## 28464 0 0 0
## 28465 0 0 0
## 28466 0 0 0
## 28467 0 0 0
## 28468 0 0 0
## 28469 0 0 0
## 28470 0 0 0
## 28471 0 0 0
## 28472 0 0 0
## 28473 0 0 0
## 28474 0 0 0
## 28475 0 0 0
## 28476 0 0 0
## 28477 0 0 0
## 28478 0 0 0
## 28479 0 0 0
## 28480 0 0 0
## 28481 0 0 0
## 28482 0 0 0
## 28483 0 0 0
## 28484 0 0 0
## 28485 0 0 0
## 28486 0 0 0
## 28487 0 0 0
## 28488 0 0 0
## 28489 0 0 0
## 28490 0 0 0
## 28491 0 0 0
## 28492 0 0 0
## 28493 0 0 0
## 28494 0 0 0
## 28495 0 0 0
## 28496 0 0 0
## 28497 0 0 0
## 28498 0 0 0
## 28499 0 0 0
## 28500 0 0 0
## 28501 0 0 0
## 28502 0 0 0
## 28503 0 0 0
## 28504 0 0 0
## 28505 0 0 0
## 28506 0 0 0
## 28507 0 0 0
## 28508 0 0 0
## 28509 0 0 0
## 28510 0 0 0
## 28511 0 0 0
## 28512 0 0 0
## 28513 0 0 0
## 28514 0 0 0
## 28515 0 0 0
## 28516 0 0 0
## 28517 0 0 0
## 28518 0 0 0
## 28519 0 0 0
## 28520 0 0 0
## 28521 0 0 0
## 28522 0 0 0
## 28523 0 0 0
## 28524 0 0 0
## 28525 0 0 0
## 28526 0 0 0
## 28527 0 0 0
## 28528 0 0 0
## 28529 0 0 0
## 28530 0 0 0
## 28531 0 0 0
## 28532 0 0 0
## 28533 0 0 0
## 28534 0 0 0
## 28535 0 0 0
## 28536 0 0 0
## 28537 0 0 0
## 28538 0 0 0
## 28539 0 0 0
## 28540 0 0 0
## 28541 0 0 0
## 28542 0 0 0
## 28543 0 0 0
## 28544 0 0 0
## 28545 0 0 0
## 28546 0 0 0
## 28547 0 0 0
## 28548 0 0 0
## 28549 0 0 0
## 28550 0 0 0
## 28551 0 0 0
## 28552 0 0 0
## 28553 0 0 0
## 28554 0 0 0
## 28555 0 0 0
## 28556 0 0 0
## 28557 0 0 0
## 28558 0 0 0
## 28559 0 0 0
## 28560 0 0 0
## 28561 0 0 0
## 28562 0 0 0
## 28563 0 0 0
## 28564 0 0 0
## 28565 0 0 0
## 28566 0 0 0
## 28567 0 0 0
## 28568 0 0 0
## 28569 0 0 0
## 28570 0 0 0
## 28571 0 0 0
## 28572 0 0 0
## 28573 0 0 0
## 28574 0 0 0
## 28575 0 0 0
## 28576 0 0 0
## 28577 0 0 0
## 28578 0 0 0
## 28579 0 0 0
## 28580 0 0 0
## 28581 0 0 0
## 28582 0 0 0
## 28583 0 0 0
## 28584 0 0 0
## 28585 0 0 0
## 28586 0 0 0
## 28587 0 0 0
## 28588 0 0 0
## 28589 0 0 0
## 28590 0 0 0
## 28591 0 0 0
## 28592 0 0 0
## 28593 0 0 0
## 28594 0 0 0
## 28595 0 0 0
## 28596 0 0 0
## 28597 0 0 0
## 28598 0 0 0
## 28599 0 0 0
## 28600 0 0 0
## 28601 0 0 0
## 28602 0 0 0
## 28603 0 0 0
## 28604 0 0 0
## 28605 0 0 0
## 28606 0 0 0
## 28607 0 0 0
## 28608 0 0 0
## 28609 0 0 0
## 28610 0 0 0
## 28611 0 0 0
## 28612 0 0 0
## 28613 0 0 0
## 28614 0 0 0
## 28615 0 0 0
## 28616 0 0 0
## 28617 0 0 0
## 28618 0 0 0
## 28619 0 0 0
## 28620 0 0 0
## 28621 0 0 0
## 28622 0 0 0
## 28623 0 0 0
## 28624 0 0 0
## 28625 0 0 0
## 28626 0 0 0
## 28627 0 0 0
## 28628 0 0 0
## 28629 0 0 0
## 28630 0 0 0
## 28631 0 0 0
## 28632 0 0 0
## 28633 0 0 0
## 28634 0 0 0
## 28635 0 0 0
## 28636 0 0 0
## 28637 0 0 0
## 28638 0 0 0
## 28639 0 0 0
## 28640 0 0 0
## 28641 0 0 0
## 28642 0 0 0
## 28643 0 0 0
## 28644 0 0 0
## 28645 0 0 0
## 28646 0 0 0
## 28647 0 0 0
## 28648 0 0 0
## 28649 0 0 0
## 28650 0 0 0
## 28651 0 0 0
## 28652 0 0 0
## 28653 0 0 0
## 28654 0 0 0
## 28655 0 0 0
## 28656 0 0 0
## 28657 0 0 0
## 28658 0 0 0
## 28659 0 0 0
## 28660 0 0 0
## 28661 0 0 0
## 28662 0 0 0
## 28663 0 0 0
## 28664 0 0 0
## 28665 0 0 0
## 28666 0 0 0
## 28667 0 0 0
## 28668 0 0 0
## 28669 0 0 0
## 28670 0 0 0
## 28671 0 0 0
## 28672 0 0 0
## 28673 0 0 0
## 28674 0 0 0
## 28675 0 0 0
## 28676 0 0 0
## 28677 0 0 0
## 28678 0 0 0
## 28679 0 0 0
## 28680 0 0 0
## 28681 0 0 0
## 28682 0 0 0
## 28683 0 0 0
## 28684 0 0 0
## 28685 0 0 0
## 28686 0 0 0
## 28687 0 0 0
## 28688 0 0 0
## 28689 0 0 0
## 28690 0 0 0
## 28691 0 0 0
## 28692 0 0 0
## 28693 0 0 0
## 28694 0 0 0
## 28695 0 0 0
## 28696 0 0 0
## 28697 0 0 0
## 28698 0 0 0
## 28699 0 0 0
## 28700 0 0 0
## 28701 0 0 0
## 28702 0 0 0
## 28703 0 0 0
## 28704 0 0 0
## 28705 0 0 0
## 28706 0 0 0
## 28707 0 0 0
## 28708 0 0 0
## 28709 0 0 0
## 28710 0 0 0
## 28711 0 0 0
## 28712 0 0 0
## 28713 0 0 0
## 28714 0 0 0
## 28715 0 0 0
## 28716 0 0 0
## 28717 0 0 0
## 28718 0 0 0
## 28719 0 0 0
## 28720 0 0 0
## 28721 0 0 0
## 28722 0 0 0
## 28723 0 0 0
## 28724 0 0 0
## 28725 0 0 0
## 28726 0 0 0
## 28727 0 0 0
## 28728 0 0 0
## 28729 0 0 0
## 28730 0 0 0
## 28731 0 0 0
## 28732 0 0 0
## 28733 0 0 0
## 28734 0 0 0
## 28735 0 0 0
## 28736 0 0 0
## 28737 0 0 0
## 28738 0 0 0
## 28739 0 0 0
## 28740 0 0 0
## 28741 0 0 0
## 28742 0 0 0
## 28743 0 0 0
## 28744 0 0 0
## 28745 0 0 0
## 28746 0 0 0
## 28747 0 0 0
## 28748 0 0 0
## 28749 0 0 0
## 28750 0 0 0
## 28751 0 0 0
## 28752 0 0 0
## 28753 0 0 0
## 28754 0 0 0
## 28755 0 0 0
## 28756 0 0 0
## 28757 0 0 0
## 28758 0 0 0
## 28759 0 0 0
## 28760 0 0 0
## 28761 0 0 0
## 28762 0 0 0
## 28763 0 0 0
## 28764 0 0 0
## 28765 0 0 0
## 28766 0 0 0
## 28767 0 0 0
## 28768 0 0 0
## 28769 0 0 0
## 28770 0 0 0
## 28771 0 0 0
## 28772 0 0 0
## 28773 0 0 0
## 28774 0 0 0
## 28775 0 0 0
## 28776 0 0 0
## 28777 0 0 0
## 28778 0 0 0
## 28779 0 0 0
## 28780 0 0 0
## 28781 0 0 0
## 28782 0 0 0
## 28783 0 0 0
## 28784 0 0 0
## 28785 0 0 0
## 28786 0 0 0
## 28787 0 0 0
## 28788 0 0 0
## 28789 0 0 0
## 28790 0 0 0
## 28791 0 0 0
## 28792 0 0 0
## 28793 0 0 0
## 28794 0 0 0
## 28795 0 0 0
## 28796 0 0 0
## 28797 0 0 0
## 28798 0 0 0
## 28799 0 0 0
## 28800 0 0 0
## 28801 0 0 0
## 28802 0 0 0
## 28803 0 0 0
## 28804 0 0 0
## 28805 0 0 0
## 28806 0 0 0
## 28807 0 0 0
## 28808 0 0 0
## 28809 0 0 0
## 28810 0 0 0
## 28811 0 0 0
## 28812 0 0 0
## 28813 0 0 0
## 28814 0 0 0
## 28815 0 0 0
## 28816 0 0 0
## 28817 0 0 0
## 28818 0 0 0
## 28819 0 0 0
## 28820 0 0 0
## 28821 0 0 0
## 28822 0 0 0
## 28823 0 0 0
## 28824 0 0 0
## 28825 0 0 0
## 28826 0 0 0
## 28827 0 0 0
## 28828 0 0 0
## 28829 0 0 0
## 28830 0 0 0
## 28831 0 0 0
## 28832 0 0 0
## 28833 0 0 0
## 28834 0 0 0
## 28835 0 0 0
## 28836 0 0 0
## 28837 0 0 0
## 28838 0 0 0
## 28839 0 0 0
## 28840 0 0 0
## 28841 0 0 0
## 28842 0 0 0
## 28843 0 0 0
## 28844 0 0 0
## 28845 0 0 0
## 28846 0 0 0
## 28847 0 0 0
## 28848 0 0 0
## 28849 0 0 0
## 28850 0 0 0
## 28851 0 0 0
## 28852 0 0 0
## 28853 0 0 0
## 28854 0 0 0
## 28855 0 0 0
## 28856 0 0 0
## 28857 0 0 0
## 28858 0 0 0
## 28859 0 0 0
## 28860 0 0 0
## 28861 0 0 0
## 28862 0 0 0
## 28863 0 0 0
## 28864 0 0 0
## 28865 0 0 0
## 28866 0 0 0
## 28867 0 0 0
## 28868 0 0 0
## 28869 0 0 0
## 28870 0 0 0
## 28871 0 0 0
## 28872 0 0 0
## 28873 0 0 0
## 28874 0 0 0
## 28875 0 0 0
## 28876 0 0 0
## 28877 0 0 0
## 28878 0 0 0
## 28879 0 0 0
## 28880 0 0 0
## 28881 0 0 0
## 28882 0 0 0
## 28883 0 0 0
## 28884 0 0 0
## 28885 0 0 0
## 28886 0 0 0
## 28887 0 0 0
## 28888 0 0 0
## 28889 0 0 0
## 28890 0 0 0
## 28891 0 0 0
## 28892 0 0 0
## 28893 0 0 0
## 28894 0 0 0
## 28895 0 0 0
## 28896 0 0 0
## 28897 0 0 0
## 28898 0 0 0
## 28899 0 0 0
## 28900 0 0 0
## 28901 0 0 0
## 28902 0 0 0
## 28903 0 0 0
## 28904 0 0 0
## 28905 0 0 0
## 28906 0 0 0
## 28907 0 0 0
## 28908 0 0 0
## 28909 0 0 0
## 28910 0 0 0
## 28911 0 0 0
## 28912 0 0 0
## 28913 0 0 0
## 28914 0 0 0
## 28915 0 0 0
## 28916 0 0 0
## 28917 0 0 0
## 28918 0 0 0
## 28919 0 0 0
## 28920 0 0 0
## 28921 0 0 0
## 28922 0 0 0
## 28923 0 0 0
## 28924 0 0 0
## 28925 0 0 0
## 28926 0 0 0
## 28927 0 0 0
## 28928 0 0 0
## 28929 0 0 0
## 28930 0 0 0
## 28931 0 0 0
## 28932 0 0 0
## 28933 0 0 0
## 28934 0 0 0
## 28935 0 0 0
## 28936 0 0 0
## 28937 0 0 0
## 28938 0 0 0
## 28939 0 0 0
## 28940 0 0 0
## 28941 0 0 0
## 28942 0 0 0
## 28943 0 0 0
## 28944 0 0 0
## 28945 0 0 0
## 28946 0 0 0
## 28947 0 0 0
## 28948 0 0 0
## 28949 0 0 0
## 28950 0 0 0
## 28951 0 0 0
## 28952 0 0 0
## 28953 0 0 0
## 28954 0 0 0
## 28955 0 0 0
## 28956 0 0 0
## 28957 0 0 0
## 28958 0 0 0
## 28959 0 0 0
## 28960 0 0 0
## 28961 0 0 0
## 28962 0 0 0
## 28963 0 0 0
## 28964 0 0 0
## 28965 0 0 0
## 28966 0 0 0
## 28967 0 0 0
## 28968 0 0 0
## 28969 0 0 0
## 28970 0 0 0
## 28971 0 0 0
## 28972 0 0 0
## 28973 0 0 0
## 28974 0 0 0
## 28975 0 0 0
## 28976 0 0 0
## 28977 0 0 0
## 28978 0 0 0
## 28979 0 0 0
## 28980 0 0 0
## 28981 0 0 0
## 28982 0 0 0
## 28983 0 0 0
## 28984 0 0 0
## 28985 0 0 0
## 28986 0 0 0
## 28987 0 0 0
## 28988 0 0 0
## 28989 0 0 0
## 28990 0 0 0
## 28991 0 0 0
## 28992 0 0 0
## 28993 0 0 0
## 28994 0 0 0
## 28995 0 0 0
## 28996 0 0 0
## 28997 0 0 0
## 28998 0 0 0
## 28999 0 0 0
## 29000 0 0 0
## 29001 0 0 0
## 29002 0 0 0
## 29003 0 0 0
## 29004 0 0 0
## 29005 0 0 0
## 29006 0 0 0
## 29007 0 0 0
## 29008 0 0 0
## 29009 0 0 0
## 29010 0 0 0
## 29011 0 0 0
## 29012 0 0 0
## 29013 0 0 0
## 29014 0 0 0
## 29015 0 0 0
## 29016 0 0 0
## 29017 0 0 0
## 29018 0 0 0
## 29019 0 0 0
## 29020 0 0 0
## 29021 0 0 0
## 29022 0 0 0
## 29023 0 0 0
## 29024 0 0 0
## 29025 0 0 0
## 29026 0 0 0
## 29027 0 0 0
## 29028 0 0 0
## 29029 0 0 0
## 29030 0 0 0
## 29031 0 0 0
## 29032 0 0 0
## 29033 0 0 0
## 29034 0 0 0
## 29035 0 0 0
## 29036 0 0 0
## 29037 0 0 0
## 29038 0 0 0
## 29039 0 0 0
## 29040 0 0 0
## 29041 0 0 0
## 29042 0 0 0
## 29043 0 0 0
## 29044 0 0 0
## 29045 0 0 0
## 29046 0 0 0
## 29047 0 0 0
## 29048 0 0 0
## 29049 0 0 0
## 29050 0 0 0
## 29051 0 0 0
## 29052 0 0 0
## 29053 0 0 0
## 29054 0 0 0
## 29055 0 0 0
## 29056 0 0 0
## 29057 0 0 0
## 29058 0 0 0
## 29059 0 0 0
## 29060 0 0 0
## 29061 0 0 0
## 29062 0 0 0
## 29063 0 0 0
## 29064 0 0 0
## 29065 0 0 0
## 29066 0 0 0
## 29067 0 0 0
## 29068 0 0 0
## 29069 0 0 0
## 29070 0 0 0
## 29071 0 0 0
## 29072 0 0 0
## 29073 0 0 0
## 29074 0 0 0
## 29075 0 0 0
## 29076 0 0 0
## 29077 0 0 0
## 29078 0 0 0
## 29079 0 0 0
## 29080 0 0 0
## 29081 0 0 0
## 29082 0 0 0
## 29083 0 0 0
## 29084 0 0 0
## 29085 0 0 0
## 29086 0 0 0
## 29087 0 0 0
## 29088 0 0 0
## 29089 0 0 0
## 29090 0 0 0
## 29091 0 0 0
## 29092 0 0 0
## 29093 0 0 0
## 29094 0 0 0
## 29095 0 0 0
## 29096 0 0 0
## 29097 0 0 0
## 29098 0 0 0
## 29099 0 0 0
## 29100 0 0 0
## 29101 0 0 0
## 29102 0 0 0
## 29103 0 0 0
## 29104 0 0 0
## 29105 0 0 0
## 29106 0 0 0
## 29107 0 0 0
## 29108 0 0 0
## 29109 0 0 0
## 29110 0 0 0
## 29111 0 0 0
## 29112 0 0 0
## 29113 0 0 0
## 29114 0 0 0
## 29115 0 0 0
## 29116 0 0 0
## 29117 0 0 0
## 29118 0 0 0
## 29119 0 0 0
## 29120 0 0 0
## 29121 0 0 0
## 29122 0 0 0
## 29123 0 0 0
## 29124 0 0 0
## 29125 0 0 0
## 29126 0 0 0
## 29127 0 0 0
## 29128 0 0 0
## 29129 0 0 0
## 29130 0 0 0
## 29131 0 0 0
## 29132 0 0 0
## 29133 0 0 0
## 29134 0 0 0
## 29135 0 0 0
## 29136 0 0 0
## 29137 0 0 0
## 29138 0 0 0
## 29139 0 0 0
## 29140 0 0 0
## 29141 0 0 0
## 29142 0 0 0
## 29143 0 0 0
## 29144 0 0 0
## 29145 0 0 0
## 29146 0 0 0
## 29147 0 0 0
## 29148 0 0 0
## 29149 0 0 0
## 29150 0 0 0
## 29151 0 0 0
## 29152 0 0 0
## 29153 0 0 0
## 29154 0 0 0
## 29155 0 0 0
## 29156 0 0 0
## 29157 0 0 0
## 29158 0 0 0
## 29159 0 0 0
## 29160 0 0 0
## 29161 0 0 0
## 29162 0 0 0
## 29163 0 0 0
## 29164 0 0 0
## 29165 0 0 0
## 29166 0 0 0
## 29167 0 0 0
## 29168 0 0 0
## 29169 0 0 0
## 29170 0 0 0
## 29171 0 0 0
## 29172 0 0 0
## 29173 0 0 0
## 29174 0 0 0
## 29175 0 0 0
## 29176 0 0 0
## 29177 0 0 0
## 29178 0 0 0
## 29179 0 0 0
## 29180 0 0 0
## 29181 0 0 0
## 29182 0 0 0
## 29183 0 0 0
## 29184 0 0 0
## 29185 0 0 0
## 29186 0 0 0
## 29187 0 0 0
## 29188 0 0 0
## 29189 0 0 0
## 29190 0 0 0
## 29191 0 0 0
## 29192 0 0 0
## 29193 0 0 0
## 29194 0 0 0
## 29195 0 0 0
## 29196 0 0 0
## 29197 0 0 0
## 29198 0 0 0
## 29199 0 0 0
## 29200 0 0 0
## 29201 0 0 0
## 29202 0 0 0
## 29203 0 0 0
## 29204 0 0 0
## 29205 0 0 0
## 29206 0 0 0
## 29207 0 0 0
## 29208 0 0 0
## 29209 0 0 0
## 29210 0 0 0
## 29211 0 0 0
## 29212 0 0 0
## 29213 0 0 0
## 29214 0 0 0
## 29215 0 0 0
## 29216 0 0 0
## 29217 0 0 0
## 29218 0 0 0
## 29219 0 0 0
## 29220 0 0 0
## 29221 0 0 0
## 29222 0 0 0
## 29223 0 0 0
## 29224 0 0 0
## 29225 0 0 0
## 29226 0 0 0
## 29227 0 0 0
## 29228 0 0 0
## 29229 0 0 0
## 29230 0 0 0
## 29231 0 0 0
## 29232 0 0 0
## 29233 0 0 0
## 29234 0 0 0
## 29235 0 0 0
## 29236 0 0 0
## 29237 0 0 0
## 29238 0 0 0
## 29239 0 0 0
## 29240 0 0 0
## 29241 0 0 0
## 29242 0 0 0
## 29243 0 0 0
## 29244 0 0 0
## 29245 0 0 0
## 29246 0 0 0
## 29247 0 0 0
## 29248 0 0 0
## 29249 0 0 0
## 29250 0 0 0
## 29251 0 0 0
## 29252 0 0 0
## 29253 0 0 0
## 29254 0 0 0
## 29255 0 0 0
## 29256 0 0 0
## 29257 0 0 0
## 29258 0 0 0
## 29259 0 0 0
## 29260 0 0 0
## 29261 0 0 0
## 29262 0 0 0
## 29263 0 0 0
## 29264 0 0 0
## 29265 0 0 0
## 29266 0 0 0
## 29267 0 0 0
## 29268 0 0 0
## 29269 0 0 0
## 29270 0 0 0
## 29271 0 0 0
## 29272 0 0 0
## 29273 0 0 0
## 29274 0 0 0
## 29275 0 0 0
## 29276 0 0 0
## 29277 0 0 0
## 29278 0 0 0
## 29279 0 0 0
## 29280 0 0 0
## 29281 0 0 0
## 29282 0 0 0
## 29283 0 0 0
## 29284 0 0 0
## 29285 0 0 0
## 29286 0 0 0
## 29287 0 0 0
## 29288 0 0 0
## 29289 0 0 0
## 29290 0 0 0
## 29291 0 0 0
## 29292 0 0 0
## 29293 0 0 0
## 29294 0 0 0
## 29295 0 0 0
## 29296 0 0 0
## 29297 0 0 0
## 29298 0 0 0
## 29299 0 0 0
## 29300 0 0 0
## 29301 0 0 0
## 29302 0 0 0
## 29303 0 0 0
## 29304 0 0 0
## 29305 0 0 0
## 29306 0 0 0
## 29307 0 0 0
## 29308 0 0 0
## 29309 0 0 0
## 29310 0 0 0
## 29311 0 0 0
## 29312 0 0 0
## 29313 0 0 0
## 29314 0 0 0
## 29315 0 0 0
## 29316 0 0 0
## 29317 0 0 0
## 29318 0 0 0
## 29319 0 0 0
## 29320 0 0 0
## 29321 0 0 0
## 29322 0 0 0
## 29323 0 0 0
## 29324 0 0 0
## 29325 0 0 0
## 29326 0 0 0
## 29327 0 0 0
## 29328 0 0 0
## 29329 0 0 0
## 29330 0 0 0
## 29331 0 0 0
## 29332 0 0 0
## 29333 0 0 0
## 29334 0 0 0
## 29335 0 0 0
## 29336 0 0 0
## 29337 0 0 0
## 29338 0 0 0
## 29339 0 0 0
## 29340 0 0 0
## 29341 0 0 0
## 29342 0 0 0
## 29343 0 0 0
## 29344 0 0 0
## 29345 0 0 0
## 29346 0 0 0
## 29347 0 0 0
## 29348 0 0 0
## 29349 0 0 0
## 29350 0 0 0
## 29351 0 0 0
## 29352 0 0 0
## 29353 0 0 0
## 29354 0 0 0
## 29355 0 0 0
## 29356 0 0 0
## 29357 0 0 0
## 29358 0 0 0
## 29359 0 0 0
## 29360 0 0 0
## 29361 0 0 0
## 29362 0 0 0
## 29363 0 0 0
## 29364 0 0 0
## 29365 0 0 0
## 29366 0 0 0
## 29367 0 0 0
## 29368 0 0 0
## 29369 0 0 0
## 29370 0 0 0
## 29371 0 0 0
## 29372 0 0 0
## 29373 0 0 0
## 29374 0 0 0
## 29375 0 0 0
## 29376 0 0 0
## 29377 0 0 0
## 29378 0 0 0
## 29379 0 0 0
## 29380 0 0 0
## 29381 0 0 0
## 29382 0 0 0
## 29383 0 0 0
## 29384 0 0 0
## 29385 0 0 0
## 29386 0 0 0
## 29387 0 0 0
## 29388 0 0 0
## 29389 0 0 0
## 29390 0 0 0
## 29391 0 0 0
## 29392 0 0 0
## 29393 0 0 0
## 29394 0 0 0
## 29395 0 0 0
## 29396 0 0 0
## 29397 0 0 0
## 29398 0 0 0
## 29399 0 0 0
## 29400 0 0 0
## 29401 0 0 0
## 29402 0 0 0
## 29403 0 0 0
## 29404 0 0 0
## 29405 0 0 0
## 29406 0 0 0
## 29407 0 0 0
## 29408 0 0 0
## 29409 0 0 0
## 29410 0 0 0
## 29411 0 0 0
## 29412 0 0 0
## 29413 0 0 0
## 29414 0 0 0
## 29415 0 0 0
## 29416 0 0 0
## 29417 0 0 0
## 29418 0 0 0
## 29419 0 0 0
## 29420 0 0 0
## 29421 0 0 0
## 29422 0 0 0
## 29423 0 0 0
## 29424 0 0 0
## 29425 0 0 0
## 29426 0 0 0
## 29427 0 0 0
## 29428 0 0 0
## 29429 0 0 0
## 29430 0 0 0
## 29431 0 0 0
## 29432 0 0 0
## 29433 0 0 0
## 29434 0 0 0
## 29435 0 0 0
## 29436 0 0 0
## 29437 0 0 0
## 29438 0 0 0
## 29439 0 0 0
## 29440 0 0 0
## 29441 0 0 0
## 29442 0 0 0
## 29443 0 0 0
## 29444 0 0 0
## 29445 0 0 0
## 29446 0 0 0
## 29447 0 0 0
## 29448 0 0 0
## 29449 0 0 0
## 29450 0 0 0
## 29451 0 0 0
## 29452 0 0 0
## 29453 0 0 0
## 29454 0 0 0
## 29455 0 0 0
## 29456 0 0 0
## 29457 0 0 0
## 29458 0 0 0
## 29459 0 0 0
## 29460 0 0 0
## 29461 0 0 0
## 29462 0 0 0
## 29463 0 0 0
## 29464 0 0 0
## 29465 0 0 0
## 29466 0 0 0
## 29467 0 0 0
## 29468 0 0 0
## 29469 0 0 0
## 29470 0 0 0
## 29471 0 0 0
## 29472 0 0 0
## 29473 0 0 0
## 29474 0 0 0
## 29475 0 0 0
## 29476 0 0 0
## 29477 0 0 0
## 29478 0 0 0
## 29479 0 0 0
## 29480 0 0 0
## 29481 0 0 0
## 29482 0 0 0
## 29483 0 0 0
## 29484 0 0 0
## 29485 0 0 0
## 29486 0 0 0
## 29487 0 0 0
## 29488 0 0 0
## 29489 0 0 0
## 29490 0 0 0
## 29491 0 0 0
## 29492 0 0 0
## 29493 0 0 0
## 29494 0 0 0
## 29495 0 0 0
## 29496 0 0 0
## 29497 0 0 0
## 29498 0 0 0
## 29499 0 0 0
## 29500 0 0 0
## 29501 0 0 0
## 29502 0 0 0
## 29503 0 0 0
## 29504 0 0 0
## 29505 0 0 0
## 29506 0 0 0
## 29507 0 0 0
## 29508 0 0 0
## 29509 0 0 0
## 29510 0 0 0
## 29511 0 0 0
## 29512 0 0 0
## 29513 0 0 0
## 29514 0 0 0
## 29515 0 0 0
## 29516 0 0 0
## 29517 0 0 0
## 29518 0 0 0
## 29519 0 0 0
## 29520 0 0 0
## 29521 0 0 0
## 29522 0 0 0
## 29523 0 0 0
## 29524 0 0 0
## 29525 0 0 0
## 29526 0 0 0
## 29527 0 0 0
## 29528 0 0 0
## 29529 0 0 0
## 29530 0 0 0
## 29531 0 0 0
## 29532 0 0 0
## 29533 0 0 0
## 29534 0 0 0
## 29535 0 0 0
## 29536 0 0 0
## 29537 0 0 0
## 29538 0 0 0
## 29539 0 0 0
## 29540 0 0 0
## 29541 0 0 0
## 29542 0 0 0
## 29543 0 0 0
## 29544 0 0 0
## 29545 0 0 0
## 29546 0 0 0
## 29547 0 0 0
## 29548 0 0 0
## 29549 0 0 0
## 29550 0 0 0
## 29551 0 0 0
## 29552 0 0 0
## 29553 0 0 0
## 29554 0 0 0
## 29555 0 0 0
## 29556 0 0 0
## 29557 0 0 0
## 29558 0 0 0
## 29559 0 0 0
## 29560 0 0 0
## 29561 0 0 0
## 29562 0 0 0
## 29563 0 0 0
## 29564 0 0 0
## 29565 0 0 0
## 29566 0 0 0
## 29567 0 0 0
## 29568 0 0 0
## 29569 0 0 0
## 29570 0 0 0
## 29571 0 0 0
## 29572 0 0 0
## 29573 0 0 0
## 29574 0 0 0
## 29575 0 0 0
## 29576 0 0 0
## 29577 0 0 0
## 29578 0 0 0
## 29579 0 0 0
## 29580 0 0 0
## 29581 0 0 0
## 29582 0 0 0
## 29583 0 0 0
## 29584 0 0 0
## 29585 0 0 0
## 29586 0 0 0
## 29587 0 0 0
## 29588 0 0 0
## 29589 0 0 0
## 29590 0 0 0
## 29591 0 0 0
## 29592 0 0 0
## 29593 0 0 0
## 29594 0 0 0
## 29595 0 0 0
## 29596 0 0 0
## 29597 0 0 0
## 29598 0 0 0
## 29599 0 0 0
## 29600 0 0 0
## 29601 0 0 0
## 29602 0 0 0
## 29603 0 0 0
## 29604 0 0 0
## 29605 0 0 0
## 29606 0 0 0
## 29607 0 0 0
## 29608 0 0 0
## 29609 0 0 0
## 29610 0 0 0
## 29611 0 0 0
## 29612 0 0 0
## 29613 0 0 0
## 29614 0 0 0
## 29615 0 0 0
## 29616 0 0 0
## 29617 0 0 0
## 29618 0 0 0
## 29619 0 0 0
## 29620 0 0 0
## 29621 0 0 0
## 29622 0 0 0
## 29623 0 0 0
## 29624 0 0 0
## 29625 0 0 0
## 29626 0 0 0
## 29627 0 0 0
## 29628 0 0 0
## 29629 0 0 0
## 29630 0 0 0
## 29631 0 0 0
## 29632 0 0 0
## 29633 0 0 0
## 29634 0 0 0
## 29635 0 0 0
## 29636 0 0 0
## 29637 0 0 0
## 29638 0 0 0
## 29639 0 0 0
## 29640 0 0 0
## 29641 0 0 0
## 29642 0 0 0
## 29643 0 0 0
## 29644 0 0 0
## 29645 0 0 0
## 29646 0 0 0
## 29647 0 0 0
## 29648 0 0 0
## 29649 0 0 0
## 29650 0 0 0
## 29651 0 0 0
## 29652 0 0 0
## 29653 0 0 0
## 29654 0 0 0
## 29655 0 0 0
## 29656 0 0 0
## 29657 0 0 0
## 29658 0 0 0
## 29659 0 0 0
## 29660 0 0 0
## 29661 0 0 0
## 29662 0 0 0
## 29663 0 0 0
## 29664 0 0 0
## 29665 0 0 0
## 29666 0 0 0
## 29667 0 0 0
## 29668 0 0 0
## 29669 0 0 0
## 29670 0 0 0
## 29671 0 0 0
## 29672 0 0 0
## 29673 0 0 0
## 29674 0 0 0
## 29675 0 0 0
## 29676 0 0 0
## 29677 0 0 0
## 29678 0 0 0
## 29679 0 0 0
## 29680 0 0 0
## 29681 0 0 0
## 29682 0 0 0
## 29683 0 0 0
## 29684 0 0 0
## 29685 0 0 0
## 29686 0 0 0
## 29687 0 0 0
## 29688 0 0 0
## 29689 0 0 0
## 29690 0 0 0
## 29691 0 0 0
## 29692 0 0 0
## 29693 0 0 0
## 29694 0 0 0
## 29695 0 0 0
## 29696 0 0 0
## 29697 0 0 0
## 29698 0 0 0
## 29699 0 0 0
## 29700 0 0 0
## 29701 0 0 0
## 29702 0 0 0
## 29703 0 0 0
## 29704 0 0 0
## 29705 0 0 0
## 29706 0 0 0
## 29707 0 0 0
## 29708 0 0 0
## 29709 0 0 0
## 29710 0 0 0
## 29711 0 0 0
## 29712 0 0 0
## 29713 0 0 0
## 29714 0 0 0
## 29715 0 0 0
## 29716 0 0 0
## 29717 0 0 0
## 29718 0 0 0
## 29719 0 0 0
## 29720 0 0 0
## 29721 0 0 0
## 29722 0 0 0
## 29723 0 0 0
## 29724 0 0 0
## 29725 0 0 0
## 29726 0 0 0
## 29727 0 0 0
## 29728 0 0 0
## 29729 0 0 0
## 29730 0 0 0
## 29731 0 0 0
## 29732 0 0 0
## 29733 0 0 0
## 29734 0 0 0
## 29735 0 0 0
## 29736 0 0 0
## 29737 0 0 0
## 29738 0 0 0
## 29739 0 0 0
## 29740 0 0 0
## 29741 0 0 0
## 29742 0 0 0
## 29743 0 0 0
## 29744 0 0 0
## 29745 0 0 0
## 29746 0 0 0
## 29747 0 0 0
## 29748 0 0 0
## 29749 0 0 0
## 29750 0 0 0
## 29751 0 0 0
## 29752 0 0 0
## 29753 0 0 0
## 29754 0 0 0
## 29755 0 0 0
## 29756 0 0 0
## 29757 0 0 0
## 29758 0 0 0
## 29759 0 0 0
## 29760 0 0 0
## 29761 0 0 0
## 29762 0 0 0
## 29763 0 0 0
## 29764 0 0 0
## 29765 0 0 0
## 29766 0 0 0
## 29767 0 0 0
## 29768 0 0 0
## 29769 0 0 0
## 29770 0 0 0
## 29771 0 0 0
## 29772 0 0 0
## 29773 0 0 0
## 29774 0 0 0
## 29775 0 0 0
## 29776 0 0 0
## 29777 0 0 0
## 29778 0 0 0
## 29779 0 0 0
## 29780 0 0 0
## 29781 0 0 0
## 29782 0 0 0
## 29783 0 0 0
## 29784 0 0 0
## 29785 0 0 0
## 29786 0 0 0
## 29787 0 0 0
## 29788 0 0 0
## 29789 0 0 0
## 29790 0 0 0
## 29791 0 0 0
## 29792 0 0 0
## 29793 0 0 0
## 29794 0 0 0
## 29795 0 0 0
## 29796 0 0 0
## 29797 0 0 0
## 29798 0 0 0
## 29799 0 0 0
## 29800 0 0 0
## 29801 0 0 0
## 29802 0 0 0
## 29803 0 0 0
## 29804 0 0 0
## 29805 0 0 0
## 29806 0 0 0
## 29807 0 0 0
## 29808 0 0 0
## 29809 0 0 0
## 29810 0 0 0
## 29811 0 0 0
## 29812 0 0 0
## 29813 0 0 0
## 29814 0 0 0
## 29815 0 0 0
## 29816 0 0 0
## 29817 0 0 0
## 29818 0 0 0
## 29819 0 0 0
## 29820 0 0 0
## 29821 0 0 0
## 29822 0 0 0
## 29823 0 0 0
## 29824 0 0 0
## 29825 0 0 0
## 29826 0 0 0
## 29827 0 0 0
## 29828 0 0 0
## 29829 0 0 0
## 29830 0 0 0
## 29831 0 0 0
## 29832 0 0 0
## 29833 0 0 0
## 29834 0 0 0
## 29835 0 0 0
## 29836 0 0 0
## 29837 0 0 0
## 29838 0 0 0
## 29839 0 0 0
## 29840 0 0 0
## 29841 0 0 0
## 29842 0 0 0
## 29843 0 0 0
## 29844 0 0 0
## 29845 0 0 0
## 29846 0 0 0
## 29847 0 0 0
## 29848 0 0 0
## 29849 0 0 0
## 29850 0 0 0
## 29851 0 0 0
## 29852 0 0 0
## 29853 0 0 0
## 29854 0 0 0
## 29855 0 0 0
## 29856 0 0 0
## 29857 0 0 0
## 29858 0 0 0
## 29859 0 0 0
## 29860 0 0 0
## 29861 0 0 0
## 29862 0 0 0
## 29863 0 0 0
## 29864 0 0 0
## 29865 0 0 0
## 29866 0 0 0
## 29867 0 0 0
## 29868 0 0 0
## 29869 0 0 0
## 29870 0 0 0
## 29871 0 0 0
## 29872 0 0 0
## 29873 0 0 0
## 29874 0 0 0
## 29875 0 0 0
## 29876 0 0 0
## 29877 0 0 0
## 29878 0 0 0
## 29879 0 0 0
## 29880 0 0 0
## 29881 0 0 0
## 29882 0 0 0
## 29883 0 0 0
## 29884 0 0 0
## 29885 0 0 0
## 29886 0 0 0
## 29887 0 0 0
## 29888 0 0 0
## 29889 0 0 0
## 29890 0 0 0
## 29891 0 0 0
## 29892 0 0 0
## 29893 0 0 0
## 29894 0 0 0
## 29895 0 0 0
## 29896 0 0 0
## 29897 0 0 0
## 29898 0 0 0
## 29899 0 0 0
## 29900 0 0 0
## 29901 0 0 0
## 29902 0 0 0
## 29903 0 0 0
## 29904 0 0 0
## 29905 0 0 0
## 29906 0 0 0
## 29907 0 0 0
## 29908 0 0 0
## 29909 0 0 0
## 29910 0 0 0
## 29911 0 0 0
## 29912 0 0 0
## 29913 0 0 0
## 29914 0 0 0
## 29915 0 0 0
## 29916 0 0 0
## 29917 0 0 0
## 29918 0 0 0
## 29919 0 0 0
## 29920 0 0 0
## 29921 0 0 0
## 29922 0 0 0
## 29923 0 0 0
## 29924 0 0 0
## 29925 0 0 0
## 29926 0 0 0
## 29927 0 0 0
## 29928 0 0 0
## 29929 0 0 0
## 29930 0 0 0
## 29931 0 0 0
## 29932 0 0 0
## 29933 0 0 0
## 29934 0 0 0
## 29935 0 0 0
## 29936 0 0 0
## 29937 0 0 0
## 29938 0 0 0
## 29939 0 0 0
## 29940 0 0 0
## 29941 0 0 0
## 29942 0 0 0
## 29943 0 0 0
## 29944 0 0 0
## 29945 0 0 0
## 29946 0 0 0
## 29947 0 0 0
## 29948 0 0 0
## 29949 0 0 0
## 29950 0 0 0
## 29951 0 0 0
## 29952 0 0 0
## 29953 0 0 0
## 29954 0 0 0
## 29955 0 0 0
## 29956 0 0 0
## 29957 0 0 0
## 29958 0 0 0
## 29959 0 0 0
## 29960 0 0 0
## 29961 0 0 0
## 29962 0 0 0
## 29963 0 0 0
## 29964 0 0 0
## 29965 0 0 0
## 29966 0 0 0
## 29967 0 0 0
## 29968 0 0 0
## 29969 0 0 0
## 29970 0 0 0
## 29971 0 0 0
## 29972 0 0 0
## 29973 0 0 0
## 29974 0 0 0
## 29975 0 0 0
## 29976 0 0 0
## 29977 0 0 0
## 29978 0 0 0
## 29979 0 0 0
## 29980 0 0 0
## 29981 0 0 0
## 29982 0 0 0
## 29983 0 0 0
## 29984 0 0 0
## 29985 0 0 0
## 29986 0 0 0
## 29987 0 0 0
## 29988 0 0 0
## 29989 0 0 0
## 29990 0 0 0
## 29991 0 0 0
## 29992 0 0 0
## 29993 0 0 0
## 29994 0 0 0
## 29995 0 0 0
## 29996 0 0 0
## 29997 0 0 0
## 29998 0 0 0
## 29999 0 0 0
## 30000 0 0 0
## 30001 0 0 0
## 30002 0 0 0
## 30003 0 0 0
## 30004 0 0 0
## 30005 0 0 0
## 30006 0 0 0
## 30007 0 0 0
## 30008 0 0 0
## 30009 0 0 0
## 30010 0 0 0
## 30011 0 0 0
## 30012 0 0 0
## 30013 0 0 0
## 30014 0 0 0
## 30015 0 0 0
## 30016 0 0 0
## 30017 0 0 0
## 30018 0 0 0
## 30019 0 0 0
## 30020 0 0 0
## 30021 0 0 0
## 30022 0 0 0
## 30023 0 0 0
## 30024 0 0 0
## 30025 0 0 0
## 30026 0 0 0
## 30027 0 0 0
## 30028 0 0 0
## 30029 0 0 0
## 30030 0 0 0
## 30031 0 0 0
## 30032 0 0 0
## 30033 0 0 0
## 30034 0 0 0
## 30035 0 0 0
## 30036 0 0 0
## 30037 0 0 0
## 30038 0 0 0
## 30039 0 0 0
## 30040 0 0 0
## 30041 0 0 0
## 30042 0 0 0
## 30043 0 0 0
## 30044 0 0 0
## 30045 0 0 0
## 30046 0 0 0
## 30047 0 0 0
## 30048 0 0 0
## 30049 0 0 0
## 30050 0 0 0
## 30051 0 0 0
## 30052 0 0 0
## 30053 0 0 0
## 30054 0 0 0
## 30055 0 0 0
## 30056 0 0 0
## 30057 0 0 0
## 30058 0 0 0
## 30059 0 0 0
## 30060 0 0 0
## 30061 0 0 0
## 30062 0 0 0
## 30063 0 0 0
## 30064 0 0 0
## 30065 0 0 0
## 30066 0 0 0
## 30067 0 0 0
## 30068 0 0 0
## 30069 0 0 0
## 30070 0 0 0
## 30071 0 0 0
## 30072 0 0 0
## 30073 0 0 0
## 30074 0 0 0
## 30075 0 0 0
## 30076 0 0 0
## 30077 0 0 0
## 30078 0 0 0
## 30079 0 0 0
## 30080 0 0 0
## 30081 0 0 0
## 30082 0 0 0
## 30083 0 0 0
## 30084 0 0 0
## 30085 0 0 0
## 30086 0 0 0
## 30087 0 0 0
## 30088 0 0 0
## 30089 0 0 0
## 30090 0 0 0
## 30091 0 0 0
## 30092 0 0 0
## 30093 0 0 0
## 30094 0 0 0
## 30095 0 0 0
## 30096 0 0 0
## 30097 0 0 0
## 30098 0 0 0
## 30099 0 0 0
## 30100 0 0 0
## 30101 0 0 0
## 30102 0 0 0
## 30103 0 0 0
## 30104 0 0 0
## 30105 0 0 0
## 30106 0 0 0
## 30107 0 0 0
## 30108 0 0 0
## 30109 0 0 0
## 30110 0 0 0
## 30111 0 0 0
## 30112 0 0 0
## 30113 0 0 0
## 30114 0 0 0
## 30115 0 0 0
## 30116 0 0 0
## 30117 0 0 0
## 30118 0 0 0
## 30119 0 0 0
## 30120 0 0 0
## 30121 0 0 0
## 30122 0 0 0
## 30123 0 0 0
## 30124 0 0 0
## 30125 0 0 0
## 30126 0 0 0
## 30127 0 0 0
## 30128 0 0 0
## 30129 0 0 0
## 30130 0 0 0
## 30131 0 0 0
## 30132 0 0 0
## 30133 0 0 0
## 30134 0 0 0
## 30135 0 0 0
## 30136 0 0 0
## 30137 0 0 0
## 30138 0 0 0
## 30139 0 0 0
## 30140 0 0 0
## 30141 0 0 0
## 30142 0 0 0
## 30143 0 0 0
## 30144 0 0 0
## 30145 0 0 0
## 30146 0 0 0
## 30147 0 0 0
## 30148 0 0 0
## 30149 0 0 0
## 30150 0 0 0
## 30151 0 0 0
## 30152 0 0 0
## 30153 0 0 0
## 30154 0 0 0
## 30155 0 0 0
## 30156 0 0 0
## 30157 0 0 0
## 30158 0 0 0
## 30159 0 0 0
## 30160 0 0 0
## 30161 0 0 0
## 30162 0 0 0
## 30163 0 0 0
## 30164 0 0 0
## 30165 0 0 0
## 30166 0 0 0
## 30167 0 0 0
## 30168 0 0 0
## 30169 0 0 0
## 30170 0 0 0
## 30171 0 0 0
## 30172 0 0 0
## 30173 0 0 0
## 30174 0 0 0
## 30175 0 0 0
## 30176 0 0 0
## 30177 0 0 0
## 30178 0 0 0
## 30179 0 0 0
## 30180 0 0 0
## 30181 0 0 0
## 30182 0 0 0
## 30183 0 0 0
## 30184 0 0 0
## 30185 0 0 0
## 30186 0 0 0
## 30187 0 0 0
## 30188 0 0 0
## 30189 0 0 0
## 30190 0 0 0
## 30191 0 0 0
## 30192 0 0 0
## 30193 0 0 0
## 30194 0 0 0
## 30195 0 0 0
## 30196 0 0 0
## 30197 0 0 0
## 30198 0 0 0
## 30199 0 0 0
## 30200 0 0 0
## 30201 0 0 0
## 30202 0 0 0
## 30203 0 0 0
## 30204 0 0 0
## 30205 0 0 0
## 30206 0 0 0
## 30207 0 0 0
## 30208 0 0 0
## 30209 0 0 0
## 30210 0 0 0
## 30211 0 0 0
## 30212 0 0 0
## 30213 0 0 0
## 30214 0 0 0
## 30215 0 0 0
## 30216 0 0 0
## 30217 0 0 0
## 30218 0 0 0
## 30219 0 0 0
## 30220 0 0 0
## 30221 0 0 0
## 30222 0 0 0
## 30223 0 0 0
## 30224 0 0 0
## 30225 0 0 0
## 30226 0 0 0
## 30227 0 0 0
## 30228 0 0 0
## 30229 0 0 0
## 30230 0 0 0
## 30231 0 0 0
## 30232 0 0 0
## 30233 0 0 0
## 30234 0 0 0
## 30235 0 0 0
## 30236 0 0 0
## 30237 0 0 0
## 30238 0 0 0
## 30239 0 0 0
## 30240 0 0 0
## 30241 0 0 0
## 30242 0 0 0
## 30243 0 0 0
## 30244 0 0 0
## 30245 0 0 0
## 30246 0 0 0
## 30247 0 0 0
## 30248 0 0 0
## 30249 0 0 0
## 30250 0 0 0
## 30251 0 0 0
## 30252 0 0 0
## 30253 0 0 0
## 30254 0 0 0
## 30255 0 0 0
## 30256 0 0 0
## 30257 0 0 0
## 30258 0 0 0
## 30259 0 0 0
## 30260 0 0 0
## 30261 0 0 0
## 30262 0 0 0
## 30263 0 0 0
## 30264 0 0 0
## 30265 0 0 0
## 30266 0 0 0
## 30267 0 0 0
## 30268 0 0 0
## 30269 0 0 0
## 30270 0 0 0
## 30271 0 0 0
## 30272 0 0 0
## 30273 0 0 0
## 30274 0 0 0
## 30275 0 0 0
## 30276 0 0 0
## 30277 0 0 0
## 30278 0 0 0
## 30279 0 0 0
## 30280 0 0 0
## 30281 0 0 0
## 30282 0 0 0
## 30283 0 0 0
## 30284 0 0 0
## 30285 0 0 0
## 30286 0 0 0
## 30287 0 0 0
## 30288 0 0 0
## 30289 0 0 0
## 30290 0 0 0
## 30291 0 0 0
## 30292 0 0 0
## 30293 0 0 0
## 30294 0 0 0
## 30295 0 0 0
## 30296 0 0 0
## 30297 0 0 0
## 30298 0 0 0
## 30299 0 0 0
## 30300 0 0 0
## 30301 0 0 0
## 30302 0 0 0
## 30303 0 0 0
## 30304 0 0 0
## 30305 0 0 0
## 30306 0 0 0
## 30307 0 0 0
## 30308 0 0 0
## 30309 0 0 0
## 30310 0 0 0
## 30311 0 0 0
## 30312 0 0 0
## 30313 0 0 0
## 30314 0 0 0
## 30315 0 0 0
## 30316 0 0 0
## 30317 0 0 0
## 30318 0 0 0
## 30319 0 0 0
## 30320 0 0 0
## 30321 0 0 0
## 30322 0 0 0
## 30323 0 0 0
## 30324 0 0 0
## 30325 0 0 0
## 30326 0 0 0
## 30327 0 0 0
## 30328 0 0 0
## 30329 0 0 0
## 30330 0 0 0
## 30331 0 0 0
## 30332 0 0 0
## 30333 0 0 0
## 30334 0 0 0
## 30335 0 0 0
## 30336 0 0 0
## 30337 0 0 0
## 30338 0 0 0
## 30339 0 0 0
## 30340 0 0 0
## 30341 0 0 0
## 30342 0 0 0
## 30343 0 0 0
## 30344 0 0 0
## 30345 0 0 0
## 30346 0 0 0
## 30347 0 0 0
## 30348 0 0 0
## 30349 0 0 0
## 30350 0 0 0
## 30351 0 0 0
## 30352 0 0 0
## 30353 0 0 0
## 30354 0 0 0
## 30355 0 0 0
## 30356 0 0 0
## 30357 0 0 0
## 30358 0 0 0
## 30359 0 0 0
## 30360 0 0 0
## 30361 0 0 0
## 30362 0 0 0
## 30363 0 0 0
## 30364 0 0 0
## 30365 0 0 0
## 30366 0 0 0
## 30367 0 0 0
## 30368 0 0 0
## 30369 0 0 0
## 30370 0 0 0
## 30371 0 0 0
## 30372 0 0 0
## 30373 0 0 0
## 30374 0 0 0
## 30375 0 0 0
## 30376 0 0 0
## 30377 0 0 0
## 30378 0 0 0
## 30379 0 0 0
## 30380 0 0 0
## 30381 0 0 0
## 30382 0 0 0
## 30383 0 0 0
## 30384 0 0 0
## 30385 0 0 0
## 30386 0 0 0
## 30387 0 0 0
## 30388 0 0 0
## 30389 0 0 0
## 30390 0 0 0
## 30391 0 0 0
## 30392 0 0 0
## 30393 0 0 0
## 30394 0 0 0
## 30395 0 0 0
## 30396 0 0 0
## 30397 0 0 0
## 30398 0 0 0
## 30399 0 0 0
## 30400 0 0 0
## 30401 0 0 0
## 30402 0 0 0
## 30403 0 0 0
## 30404 0 0 0
## 30405 0 0 0
## 30406 0 0 0
## 30407 0 0 0
## 30408 0 0 0
## 30409 0 0 0
## 30410 0 0 0
## 30411 0 0 0
## 30412 0 0 0
## 30413 0 0 0
## 30414 0 0 0
## 30415 0 0 0
## 30416 0 0 0
## 30417 0 0 0
## 30418 0 0 0
## 30419 0 0 0
## 30420 0 0 0
## 30421 0 0 0
## 30422 0 0 0
## 30423 0 0 0
## 30424 0 0 0
## 30425 0 0 0
## 30426 0 0 0
## 30427 0 0 0
## 30428 0 0 0
## 30429 0 0 0
## 30430 0 0 0
## 30431 0 0 0
## 30432 0 0 0
## 30433 0 0 0
## 30434 0 0 0
## 30435 0 0 0
## 30436 0 0 0
## 30437 0 0 0
## 30438 0 0 0
## 30439 0 0 0
## 30440 0 0 0
## 30441 0 0 0
## 30442 0 0 0
## 30443 0 0 0
## 30444 0 0 0
## 30445 0 0 0
## 30446 0 0 0
## 30447 0 0 0
## 30448 0 0 0
## 30449 0 0 0
## 30450 0 0 0
## 30451 0 0 0
## 30452 0 0 0
## 30453 0 0 0
## 30454 0 0 0
## 30455 0 0 0
## 30456 0 0 0
## 30457 0 0 0
## 30458 0 0 0
## 30459 0 0 0
## 30460 0 0 0
## 30461 0 0 0
## 30462 0 0 0
## 30463 0 0 0
## 30464 0 0 0
## 30465 0 0 0
## 30466 0 0 0
## 30467 0 0 0
## 30468 0 0 0
## 30469 0 0 0
## 30470 0 0 0
## 30471 0 0 0
## 30472 0 0 0
## 30473 0 0 0
## 30474 0 0 0
## 30475 0 0 0
## 30476 0 0 0
## 30477 0 0 0
## 30478 0 0 0
## 30479 0 0 0
## 30480 0 0 0
## 30481 0 0 0
## 30482 0 0 0
## 30483 0 0 0
## 30484 0 0 0
## 30485 0 0 0
## 30486 0 0 0
## 30487 0 0 0
## 30488 0 0 0
## 30489 0 0 0
## 30490 0 0 0
## 30491 0 0 0
## 30492 0 0 0
## 30493 0 0 0
## 30494 0 0 0
## 30495 0 0 0
## 30496 0 0 0
## 30497 0 0 0
## 30498 0 0 0
## 30499 0 0 0
## 30500 0 0 0
## 30501 0 0 0
## 30502 0 0 0
## 30503 0 0 0
## 30504 0 0 0
## 30505 0 0 0
## 30506 0 0 0
## 30507 0 0 0
## 30508 0 0 0
## 30509 0 0 0
## 30510 0 0 0
## 30511 0 0 0
## 30512 0 0 0
## 30513 0 0 0
## 30514 0 0 0
## 30515 0 0 0
## 30516 0 0 0
## 30517 0 0 0
## 30518 0 0 0
## 30519 0 0 0
## 30520 0 0 0
## 30521 0 0 0
## 30522 0 0 0
## 30523 0 0 0
## 30524 0 0 0
## 30525 0 0 0
## 30526 0 0 0
## 30527 0 0 0
## 30528 0 0 0
## 30529 0 0 0
## 30530 0 0 0
## 30531 0 0 0
## 30532 0 0 0
## 30533 0 0 0
## 30534 0 0 0
## 30535 0 0 0
## 30536 0 0 0
## 30537 0 0 0
## 30538 0 0 0
## 30539 0 0 0
## 30540 0 0 0
## 30541 0 0 0
## 30542 0 0 0
## 30543 0 0 0
## 30544 0 0 0
## 30545 0 0 0
## 30546 0 0 0
## 30547 0 0 0
## 30548 0 0 0
## 30549 0 0 0
## 30550 0 0 0
## 30551 0 0 0
## 30552 0 0 0
## 30553 0 0 0
## 30554 0 0 0
## 30555 0 0 0
## 30556 0 0 0
## 30557 0 0 0
## 30558 0 0 0
## 30559 0 0 0
## 30560 0 0 0
## 30561 0 0 0
## 30562 0 0 0
## 30563 0 0 0
## 30564 0 0 0
## 30565 0 0 0
## 30566 0 0 0
## 30567 0 0 0
## 30568 0 0 0
## 30569 0 0 0
## 30570 0 0 0
## 30571 0 0 0
## 30572 0 0 0
## 30573 0 0 0
## 30574 0 0 0
## 30575 0 0 0
## 30576 0 0 0
## 30577 0 0 0
## 30578 0 0 0
## 30579 0 0 0
## 30580 0 0 0
## 30581 0 0 0
## 30582 0 0 0
## 30583 0 0 0
## 30584 0 0 0
## 30585 0 0 0
## 30586 0 0 0
## 30587 0 0 0
## 30588 0 0 0
## 30589 0 0 0
## 30590 0 0 0
## 30591 0 0 0
## 30592 0 0 0
## 30593 0 0 0
## 30594 0 0 0
## 30595 0 0 0
## 30596 0 0 0
## 30597 0 0 0
## 30598 0 0 0
## 30599 0 0 0
## 30600 0 0 0
## 30601 0 0 0
## 30602 0 0 0
## 30603 0 0 0
## 30604 0 0 0
## 30605 0 0 0
## 30606 0 0 0
## 30607 0 0 0
## 30608 0 0 0
## 30609 0 0 0
## 30610 0 0 0
## 30611 0 0 0
## 30612 0 0 0
## 30613 0 0 0
## 30614 0 0 0
## 30615 0 0 0
## 30616 0 0 0
## 30617 0 0 0
## 30618 0 0 0
## 30619 0 0 0
## 30620 0 0 0
## 30621 0 0 0
## 30622 0 0 0
## 30623 0 0 0
## 30624 0 0 0
## 30625 0 0 0
## 30626 0 0 0
## 30627 0 0 0
## 30628 0 0 0
## 30629 0 0 0
## 30630 0 0 0
## 30631 0 0 0
## 30632 0 0 0
## 30633 0 0 0
## 30634 0 0 0
## 30635 0 0 0
## 30636 0 0 0
## 30637 0 0 0
## 30638 0 0 0
## 30639 0 0 0
## 30640 0 0 0
## 30641 0 0 0
## 30642 0 0 0
## 30643 0 0 0
## 30644 0 0 0
## 30645 0 0 0
## 30646 0 0 0
## 30647 0 0 0
## 30648 0 0 0
## 30649 0 0 0
## 30650 0 0 0
## 30651 0 0 0
## 30652 0 0 0
## 30653 0 0 0
## 30654 0 0 0
## 30655 0 0 0
## 30656 0 0 0
## 30657 0 0 0
## 30658 0 0 0
## 30659 0 0 0
## 30660 0 0 0
## 30661 0 0 0
## 30662 0 0 0
## 30663 0 0 0
## 30664 0 0 0
## 30665 0 0 0
## 30666 0 0 0
## 30667 0 0 0
## 30668 0 0 0
## 30669 0 0 0
## 30670 0 0 0
## 30671 0 0 0
## 30672 0 0 0
## 30673 0 0 0
## 30674 0 0 0
## 30675 0 0 0
## 30676 0 0 0
## 30677 0 0 0
## 30678 0 0 0
## 30679 0 0 0
## 30680 0 0 0
## 30681 0 0 0
## 30682 0 0 0
## 30683 0 0 0
## 30684 0 0 0
## 30685 0 0 0
## 30686 0 0 0
## 30687 0 0 0
## 30688 0 0 0
## 30689 0 0 0
## 30690 0 0 0
## 30691 0 0 0
## 30692 0 0 0
## 30693 0 0 0
## 30694 0 0 0
## 30695 0 0 0
## 30696 0 0 0
## 30697 0 0 0
## 30698 0 0 0
## 30699 0 0 0
## 30700 0 0 0
## 30701 0 0 0
## 30702 0 0 0
## 30703 0 0 0
## 30704 0 0 0
## 30705 0 0 0
## 30706 0 0 0
## 30707 0 0 0
## 30708 0 0 0
## 30709 0 0 0
## 30710 0 0 0
## 30711 0 0 0
## 30712 0 0 0
## 30713 0 0 0
## 30714 0 0 0
## 30715 0 0 0
## 30716 0 0 0
## 30717 0 0 0
## 30718 0 0 0
## 30719 0 0 0
## 30720 0 0 0
## 30721 0 0 0
## 30722 0 0 0
## 30723 0 0 0
## 30724 0 0 0
## 30725 0 0 0
## 30726 0 0 0
## 30727 0 0 0
## 30728 0 0 0
## 30729 0 0 0
## 30730 0 0 0
## 30731 0 0 0
## 30732 0 0 0
## 30733 0 0 0
## 30734 0 0 0
## 30735 0 0 0
## 30736 0 0 0
## 30737 0 0 0
## 30738 0 0 0
## 30739 0 0 0
## 30740 0 0 0
## 30741 0 0 0
## 30742 0 0 0
## 30743 0 0 0
## 30744 0 0 0
## 30745 0 0 0
## 30746 0 0 0
## 30747 0 0 0
## 30748 0 0 0
## 30749 0 0 0
## 30750 0 0 0
## 30751 0 0 0
## 30752 0 0 0
## 30753 0 0 0
## 30754 0 0 0
## 30755 0 0 0
## 30756 0 0 0
## 30757 0 0 0
## 30758 0 0 0
## 30759 0 0 0
## 30760 0 0 0
## 30761 0 0 0
## 30762 0 0 0
## 30763 0 0 0
## 30764 0 0 0
## 30765 0 0 0
## 30766 0 0 0
## 30767 0 0 0
## 30768 0 0 0
## 30769 0 0 0
## 30770 0 0 0
## 30771 0 0 0
## 30772 0 0 0
## 30773 0 0 0
## 30774 0 0 0
## 30775 0 0 0
## 30776 0 0 0
## 30777 0 0 0
## 30778 0 0 0
## 30779 0 0 0
## 30780 0 0 0
## 30781 0 0 0
## 30782 0 0 0
## 30783 0 0 0
## 30784 0 0 0
## 30785 0 0 0
## 30786 0 0 0
## 30787 0 0 0
## 30788 0 0 0
## 30789 0 0 0
## 30790 0 0 0
## 30791 0 0 0
## 30792 0 0 0
## 30793 0 0 0
## 30794 0 0 0
## 30795 0 0 0
## 30796 0 0 0
## 30797 0 0 0
## 30798 0 0 0
## 30799 0 0 0
## 30800 0 0 0
## 30801 0 0 0
## 30802 0 0 0
## 30803 0 0 0
## 30804 0 0 0
## 30805 0 0 0
## 30806 0 0 0
## 30807 0 0 0
## 30808 0 0 0
## 30809 0 0 0
## 30810 0 0 0
## 30811 0 0 0
## 30812 0 0 0
## 30813 0 0 0
## 30814 0 0 0
## 30815 0 0 0
## 30816 0 0 0
## 30817 0 0 0
## 30818 0 0 0
## 30819 0 0 0
## 30820 0 0 0
## 30821 0 0 0
## 30822 0 0 0
## 30823 0 0 0
## 30824 0 0 0
## 30825 0 0 0
## 30826 0 0 0
## 30827 0 0 0
## 30828 0 0 0
## 30829 0 0 0
## 30830 0 0 0
## 30831 0 0 0
## 30832 0 0 0
## 30833 0 0 0
## 30834 0 0 0
## 30835 0 0 0
## 30836 0 0 0
## 30837 0 0 0
## 30838 0 0 0
## 30839 0 0 0
## 30840 0 0 0
## 30841 0 0 0
## 30842 0 0 0
## 30843 0 0 0
## 30844 0 0 0
## 30845 0 0 0
## 30846 0 0 0
## 30847 0 0 0
## 30848 0 0 0
## 30849 0 0 0
## 30850 0 0 0
## 30851 0 0 0
## 30852 0 0 0
## 30853 0 0 0
## 30854 0 0 0
## 30855 0 0 0
## 30856 0 0 0
## 30857 0 0 0
## 30858 0 0 0
## 30859 0 0 0
## 30860 0 0 0
## 30861 0 0 0
## 30862 0 0 0
## 30863 0 0 0
## 30864 0 0 0
## 30865 0 0 0
## 30866 0 0 0
## 30867 0 0 0
## 30868 0 0 0
## 30869 0 0 0
## 30870 0 0 0
## 30871 0 0 0
## 30872 0 0 0
## 30873 0 0 0
## 30874 0 0 0
## 30875 0 0 0
## 30876 0 0 0
## 30877 0 0 0
## 30878 0 0 0
## 30879 0 0 0
## 30880 0 0 0
## 30881 0 0 0
## 30882 0 0 0
## 30883 0 0 0
## 30884 0 0 0
## 30885 0 0 0
## 30886 0 0 0
## 30887 0 0 0
## 30888 0 0 0
## 30889 0 0 0
## 30890 0 0 0
## 30891 0 0 0
## 30892 0 0 0
## 30893 0 0 0
## 30894 0 0 0
## 30895 0 0 0
## 30896 0 0 0
## 30897 0 0 0
## 30898 0 0 0
## 30899 0 0 0
## 30900 0 0 0
## 30901 0 0 0
## 30902 0 0 0
## 30903 0 0 0
## 30904 0 0 0
## 30905 0 0 0
## 30906 0 0 0
## 30907 0 0 0
## 30908 0 0 0
## 30909 0 0 0
## 30910 0 0 0
## 30911 0 0 0
## 30912 0 0 0
## 30913 0 0 0
## 30914 0 0 0
## 30915 0 0 0
## 30916 0 0 0
## 30917 0 0 0
## 30918 0 0 0
## 30919 0 0 0
## 30920 0 0 0
## 30921 0 0 0
## 30922 0 0 0
## 30923 0 0 0
## 30924 0 0 0
## 30925 0 0 0
## 30926 0 0 0
## 30927 0 0 0
## 30928 0 0 0
## 30929 0 0 0
## 30930 0 0 0
## 30931 0 0 0
## 30932 0 0 0
## 30933 0 0 0
## 30934 0 0 0
## 30935 0 0 0
## 30936 0 0 0
## 30937 0 0 0
## 30938 0 0 0
## 30939 0 0 0
## 30940 0 0 0
## 30941 0 0 0
## 30942 0 0 0
## 30943 0 0 0
## 30944 0 0 0
## 30945 0 0 0
## 30946 0 0 0
## 30947 0 0 0
## 30948 0 0 0
## 30949 0 0 0
## 30950 0 0 0
## 30951 0 0 0
## 30952 0 0 0
## 30953 0 0 0
## 30954 0 0 0
## 30955 0 0 0
## 30956 0 0 0
## 30957 0 0 0
## 30958 0 0 0
## 30959 0 0 0
## 30960 0 0 0
## 30961 0 0 0
## 30962 0 0 0
## 30963 0 0 0
## 30964 0 0 0
## 30965 0 0 0
## 30966 0 0 0
## 30967 0 0 0
## 30968 0 0 0
## 30969 0 0 0
## 30970 0 0 0
## 30971 0 0 0
## 30972 0 0 0
## 30973 0 0 0
## 30974 0 0 0
## 30975 0 0 0
## 30976 0 0 0
## 30977 0 0 0
## 30978 0 0 0
## 30979 0 0 0
## 30980 0 0 0
## 30981 0 0 0
## 30982 0 0 0
## 30983 0 0 0
## 30984 0 0 0
## 30985 0 0 0
## 30986 0 0 0
## 30987 0 0 0
## 30988 0 0 0
## 30989 0 0 0
## 30990 0 0 0
## 30991 0 0 0
## 30992 0 0 0
## 30993 0 0 0
## 30994 0 0 0
## 30995 0 0 0
## 30996 0 0 0
## 30997 0 0 0
## 30998 0 0 0
## 30999 0 0 0
## 31000 0 0 0
## 31001 0 0 0
## 31002 0 0 0
## 31003 0 0 0
## 31004 0 0 0
## 31005 0 0 0
## 31006 0 0 0
## 31007 0 0 0
## 31008 0 0 0
## 31009 0 0 0
## 31010 0 0 0
## 31011 0 0 0
## 31012 0 0 0
## 31013 0 0 0
## 31014 0 0 0
## 31015 0 0 0
## 31016 0 0 0
## 31017 0 0 0
## 31018 0 0 0
## 31019 0 0 0
## 31020 0 0 0
## 31021 0 0 0
## 31022 0 0 0
## 31023 0 0 0
## 31024 0 0 0
## 31025 0 0 0
## 31026 0 0 0
## 31027 0 0 0
## 31028 0 0 0
## 31029 0 0 0
## 31030 0 0 0
## 31031 0 0 0
## 31032 0 0 0
## 31033 0 0 0
## 31034 0 0 0
## 31035 0 0 0
## 31036 0 0 0
## 31037 0 0 0
## 31038 0 0 0
## 31039 0 0 0
## 31040 0 0 0
## 31041 0 0 0
## 31042 0 0 0
## 31043 0 0 0
## 31044 0 0 0
## 31045 0 0 0
## 31046 0 0 0
## 31047 0 0 0
## 31048 0 0 0
## 31049 0 0 0
## 31050 0 0 0
## 31051 0 0 0
## 31052 0 0 0
## 31053 0 0 0
## 31054 0 0 0
## 31055 0 0 0
## 31056 0 0 0
## 31057 0 0 0
## 31058 0 0 0
## 31059 0 0 0
## 31060 0 0 0
## 31061 0 0 0
## 31062 0 0 0
## 31063 0 0 0
## 31064 0 0 0
## 31065 0 0 0
## 31066 0 0 0
## 31067 0 0 0
## 31068 0 0 0
## 31069 0 0 0
## 31070 0 0 0
## 31071 0 0 0
## 31072 0 0 0
## 31073 0 0 0
## 31074 0 0 0
## 31075 0 0 0
## 31076 0 0 0
## 31077 0 0 0
## 31078 0 0 0
## 31079 0 0 0
## 31080 0 0 0
## 31081 0 0 0
## 31082 0 0 0
## 31083 0 0 0
## 31084 0 0 0
## 31085 0 0 0
## 31086 0 0 0
## 31087 0 0 0
## 31088 0 0 0
## 31089 0 0 0
## 31090 0 0 0
## 31091 0 0 0
## 31092 0 0 0
## 31093 0 0 0
## 31094 0 0 0
## 31095 0 0 0
## 31096 0 0 0
## 31097 0 0 0
## 31098 0 0 0
## 31099 0 0 0
## 31100 0 0 0
## 31101 0 0 0
## 31102 0 0 0
## 31103 0 0 0
## 31104 0 0 0
## 31105 0 0 0
## 31106 0 0 0
## 31107 0 0 0
## 31108 0 0 0
## 31109 0 0 0
## 31110 0 0 0
## 31111 0 0 0
## 31112 0 0 0
## 31113 0 0 0
## 31114 0 0 0
## 31115 0 0 0
## 31116 0 0 0
## 31117 0 0 0
## 31118 0 0 0
## 31119 0 0 0
## 31120 0 0 0
## 31121 0 0 0
## 31122 0 0 0
## 31123 0 0 0
## 31124 0 0 0
## 31125 0 0 0
## 31126 0 0 0
## 31127 0 0 0
## 31128 0 0 0
## 31129 0 0 0
## 31130 0 0 0
## 31131 0 0 0
## 31132 0 0 0
## 31133 0 0 0
## 31134 0 0 0
## 31135 0 0 0
## 31136 0 0 0
## 31137 0 0 0
## 31138 0 0 0
## 31139 0 0 0
## 31140 0 0 0
## 31141 0 0 0
## 31142 0 0 0
## 31143 0 0 0
## 31144 0 0 0
## 31145 0 0 0
## 31146 0 0 0
## 31147 0 0 0
## 31148 0 0 0
## 31149 0 0 0
## 31150 0 0 0
## 31151 0 0 0
## 31152 0 0 0
## 31153 0 0 0
## 31154 0 0 0
## 31155 0 0 0
## 31156 0 0 0
## 31157 0 0 0
## 31158 0 0 0
## 31159 0 0 0
## 31160 0 0 0
## 31161 0 0 0
## 31162 0 0 0
## 31163 0 0 0
## 31164 0 0 0
## 31165 0 0 0
## 31166 0 0 0
## 31167 0 0 0
## 31168 0 0 0
## 31169 0 0 0
## 31170 0 0 0
## 31171 0 0 0
## 31172 0 0 0
## 31173 0 0 0
## 31174 0 0 0
## 31175 0 0 0
## 31176 0 0 0
## 31177 0 0 0
## 31178 0 0 0
## 31179 0 0 0
## 31180 0 0 0
## 31181 0 0 0
## 31182 0 0 0
## 31183 0 0 0
## 31184 0 0 0
## 31185 0 0 0
## 31186 0 0 0
## 31187 0 0 0
## 31188 0 0 0
## 31189 0 0 0
## 31190 0 0 0
## 31191 0 0 0
## 31192 0 0 0
## 31193 0 0 0
## 31194 0 0 0
## 31195 0 0 0
## 31196 0 0 0
## 31197 0 0 0
## 31198 0 0 0
## 31199 0 0 0
## 31200 0 0 0
## 31201 0 0 0
## 31202 0 0 0
## 31203 0 0 0
## 31204 0 0 0
## 31205 0 0 0
## 31206 0 0 0
## 31207 0 0 0
## 31208 0 0 0
## 31209 0 0 0
## 31210 0 0 0
## 31211 0 0 0
## 31212 0 0 0
## 31213 0 0 0
## 31214 0 0 0
## 31215 0 0 0
## 31216 0 0 0
## 31217 0 0 0
## 31218 0 0 0
## 31219 0 0 0
## 31220 0 0 0
## 31221 0 0 0
## 31222 0 0 0
## 31223 0 0 0
## 31224 0 0 0
## 31225 0 0 0
## 31226 0 0 0
## 31227 0 0 0
## 31228 0 0 0
## 31229 0 0 0
## 31230 0 0 0
## 31231 0 0 0
## 31232 0 0 0
## 31233 0 0 0
## 31234 0 0 0
## 31235 0 0 0
## 31236 0 0 0
## 31237 0 0 0
## 31238 0 0 0
## 31239 0 0 0
## 31240 0 0 0
## 31241 0 0 0
## 31242 0 0 0
## 31243 0 0 0
## 31244 0 0 0
## 31245 0 0 0
## 31246 0 0 0
## 31247 0 0 0
## 31248 0 0 0
## 31249 0 0 0
## 31250 0 0 0
## 31251 0 0 0
## 31252 0 0 0
## 31253 0 0 0
## 31254 0 0 0
## 31255 0 0 0
## 31256 0 0 0
## 31257 0 0 0
## 31258 0 0 0
## 31259 0 0 0
## 31260 0 0 0
## 31261 0 0 0
## 31262 0 0 0
## 31263 0 0 0
## 31264 0 0 0
## 31265 0 0 0
## 31266 0 0 0
## 31267 0 0 0
## 31268 0 0 0
## 31269 0 0 0
## 31270 0 0 0
## 31271 0 0 0
## 31272 0 0 0
## 31273 0 0 0
## 31274 0 0 0
## 31275 0 0 0
## 31276 0 0 0
## 31277 0 0 0
## 31278 0 0 0
## 31279 0 0 0
## 31280 0 0 0
## 31281 0 0 0
## 31282 0 0 0
## 31283 0 0 0
## 31284 0 0 0
## 31285 0 0 0
## 31286 0 0 0
## 31287 0 0 0
## 31288 0 0 0
## 31289 0 0 0
## 31290 0 0 0
## 31291 0 0 0
## 31292 0 0 0
## 31293 0 0 0
## 31294 0 0 0
## 31295 0 0 0
## 31296 0 0 0
## 31297 0 0 0
## 31298 0 0 0
## 31299 0 0 0
## 31300 0 0 0
## 31301 0 0 0
## 31302 0 0 0
## 31303 0 0 0
## 31304 0 0 0
## 31305 0 0 0
## 31306 0 0 0
## 31307 0 0 0
## 31308 0 0 0
## 31309 0 0 0
## 31310 0 0 0
## 31311 0 0 0
## 31312 0 0 0
## 31313 0 0 0
## 31314 0 0 0
## 31315 0 0 0
## 31316 0 0 0
## 31317 0 0 0
## 31318 0 0 0
## 31319 0 0 0
## 31320 0 0 0
## 31321 0 0 0
## 31322 0 0 0
## 31323 0 0 0
## 31324 0 0 0
## 31325 0 0 0
## 31326 0 0 0
## 31327 0 0 0
## 31328 0 0 0
## 31329 0 0 0
## 31330 0 0 0
## 31331 0 0 0
## 31332 0 0 0
## 31333 0 0 0
## 31334 0 0 0
## 31335 0 0 0
## 31336 0 0 0
## 31337 0 0 0
## 31338 0 0 0
## 31339 0 0 0
## 31340 0 0 0
## 31341 0 0 0
## 31342 0 0 0
## 31343 0 0 0
## 31344 0 0 0
## 31345 0 0 0
## 31346 0 0 0
## 31347 0 0 0
## 31348 0 0 0
## 31349 0 0 0
## 31350 0 0 0
## 31351 0 0 0
## 31352 0 0 0
## 31353 0 0 0
## 31354 0 0 0
## 31355 0 0 0
## 31356 0 0 0
## 31357 0 0 0
## 31358 0 0 0
## 31359 0 0 0
## 31360 0 0 0
## 31361 0 0 0
## 31362 0 0 0
## 31363 0 0 0
## 31364 0 0 0
## 31365 0 0 0
## 31366 0 0 0
## 31367 0 0 0
## 31368 0 0 0
## 31369 0 0 0
## 31370 0 0 0
## 31371 0 0 0
## 31372 0 0 0
## 31373 0 0 0
## 31374 0 0 0
## 31375 0 0 0
## 31376 0 0 0
## 31377 0 0 0
## 31378 0 0 0
## 31379 0 0 0
## 31380 0 0 0
## 31381 0 0 0
## 31382 0 0 0
## 31383 0 0 0
## 31384 0 0 0
## 31385 0 0 0
## 31386 0 0 0
## 31387 0 0 0
## 31388 0 0 0
## 31389 0 0 0
## 31390 0 0 0
## 31391 0 0 0
## 31392 0 0 0
## 31393 0 0 0
## 31394 0 0 0
## 31395 0 0 0
## 31396 0 0 0
## 31397 0 0 0
## 31398 0 0 0
## 31399 0 0 0
## 31400 0 0 0
## 31401 0 0 0
## 31402 0 0 0
## 31403 0 0 0
## 31404 0 0 0
## 31405 0 0 0
## 31406 0 0 0
## 31407 0 0 0
## 31408 0 0 0
## 31409 0 0 0
## 31410 0 0 0
## 31411 0 0 0
## 31412 0 0 0
## 31413 0 0 0
## 31414 0 0 0
## 31415 0 0 0
## 31416 0 0 0
## 31417 0 0 0
## 31418 0 0 0
## 31419 0 0 0
## 31420 0 0 0
## 31421 0 0 0
## 31422 0 0 0
## 31423 0 0 0
## 31424 0 0 0
## 31425 0 0 0
## 31426 0 0 0
## 31427 0 0 0
## 31428 0 0 0
## 31429 0 0 0
## 31430 0 0 0
## 31431 0 0 0
## 31432 0 0 0
## 31433 0 0 0
## 31434 0 0 0
## 31435 0 0 0
## 31436 0 0 0
## 31437 0 0 0
## 31438 0 0 0
## 31439 0 0 0
## 31440 0 0 0
## 31441 0 0 0
## 31442 0 0 0
## 31443 0 0 0
## 31444 0 0 0
## 31445 0 0 0
## 31446 0 0 0
## 31447 0 0 0
## 31448 0 0 0
## 31449 0 0 0
## 31450 0 0 0
## 31451 0 0 0
## 31452 0 0 0
## 31453 0 0 0
## 31454 0 0 0
## 31455 0 0 0
## 31456 0 0 0
## 31457 0 0 0
## 31458 0 0 0
## 31459 0 0 0
## 31460 0 0 0
## 31461 0 0 0
## 31462 0 0 0
## 31463 0 0 0
## 31464 0 0 0
## 31465 0 0 0
## 31466 0 0 0
## 31467 0 0 0
## 31468 0 0 0
## 31469 0 0 0
## 31470 0 0 0
## 31471 0 0 0
## 31472 0 0 0
## 31473 0 0 0
## 31474 0 0 0
## 31475 0 0 0
## 31476 0 0 0
## 31477 0 0 0
## 31478 0 0 0
## 31479 0 0 0
## 31480 0 0 0
## 31481 0 0 0
## 31482 0 0 0
## 31483 0 0 0
## 31484 0 0 0
## 31485 0 0 0
## 31486 0 0 0
## 31487 0 0 0
## 31488 0 0 0
## 31489 0 0 0
## 31490 0 0 0
## 31491 0 0 0
## 31492 0 0 0
## 31493 0 0 0
## 31494 0 0 0
## 31495 0 0 0
## 31496 0 0 0
## 31497 0 0 0
## 31498 0 0 0
## 31499 0 0 0
## 31500 0 0 0
## 31501 0 0 0
## 31502 0 0 0
## 31503 0 0 0
## 31504 0 0 0
## 31505 0 0 0
## 31506 0 0 0
## 31507 0 0 0
## 31508 0 0 0
## 31509 0 0 0
## 31510 0 0 0
## 31511 0 0 0
## 31512 0 0 0
## 31513 0 0 0
## 31514 0 0 0
## 31515 0 0 0
## 31516 0 0 0
## 31517 0 0 0
## 31518 0 0 0
## 31519 0 0 0
## 31520 0 0 0
## 31521 0 0 0
## 31522 0 0 0
## 31523 0 0 0
## 31524 0 0 0
## 31525 0 0 0
## 31526 0 0 0
## 31527 0 0 0
## 31528 0 0 0
## 31529 0 0 0
## 31530 0 0 0
## 31531 0 0 0
## 31532 0 0 0
## 31533 0 0 0
## 31534 0 0 0
## 31535 0 0 0
## 31536 0 0 0
## 31537 0 0 0
## 31538 0 0 0
## 31539 0 0 0
## 31540 0 0 0
## 31541 0 0 0
## 31542 0 0 0
## 31543 0 0 0
## 31544 0 0 0
## 31545 0 0 0
## 31546 0 0 0
## 31547 0 0 0
## 31548 0 0 0
## 31549 0 0 0
## 31550 0 0 0
## 31551 0 0 0
## 31552 0 0 0
## 31553 0 0 0
## 31554 0 0 0
## 31555 0 0 0
## 31556 0 0 0
## 31557 0 0 0
## 31558 0 0 0
## 31559 0 0 0
## 31560 0 0 0
## 31561 0 0 0
## 31562 0 0 0
## 31563 0 0 0
## 31564 0 0 0
## 31565 0 0 0
## 31566 0 0 0
## 31567 0 0 0
## 31568 0 0 0
## 31569 0 0 0
## 31570 0 0 0
## 31571 0 0 0
## 31572 0 0 0
## 31573 0 0 0
## 31574 0 0 0
## 31575 0 0 0
## 31576 0 0 0
## 31577 0 0 0
## 31578 0 0 0
## 31579 0 0 0
## 31580 0 0 0
## 31581 0 0 0
## 31582 0 0 0
## 31583 0 0 0
## 31584 0 0 0
## 31585 0 0 0
## 31586 0 0 0
## 31587 0 0 0
## 31588 0 0 0
## 31589 0 0 0
## 31590 0 0 0
## 31591 0 0 0
## 31592 0 0 0
## 31593 0 0 0
## 31594 0 0 0
## 31595 0 0 0
## 31596 0 0 0
## 31597 0 0 0
## 31598 0 0 0
## 31599 0 0 0
## 31600 0 0 0
## 31601 0 0 0
## 31602 0 0 0
## 31603 0 0 0
## 31604 0 0 0
## 31605 0 0 0
## 31606 0 0 0
## 31607 0 0 0
## 31608 0 0 0
## 31609 0 0 0
## 31610 0 0 0
## 31611 0 0 0
## 31612 0 0 0
## 31613 0 0 0
## 31614 0 0 0
## 31615 0 0 0
## 31616 0 0 0
## 31617 0 0 0
## 31618 0 0 0
## 31619 0 0 0
## 31620 0 0 0
## 31621 0 0 0
## 31622 0 0 0
## 31623 0 0 0
## 31624 0 0 0
## 31625 0 0 0
## 31626 0 0 0
## 31627 0 0 0
## 31628 0 0 0
## 31629 0 0 0
## 31630 0 0 0
## 31631 0 0 0
## 31632 0 0 0
## 31633 0 0 0
## 31634 0 0 0
## 31635 0 0 0
## 31636 0 0 0
## 31637 0 0 0
## 31638 0 0 0
## 31639 0 0 0
## 31640 0 0 0
## 31641 0 0 0
## 31642 0 0 0
## 31643 0 0 0
## 31644 0 0 0
## 31645 0 0 0
## 31646 0 0 0
## 31647 0 0 0
## 31648 0 0 0
## 31649 0 0 0
## 31650 0 0 0
## 31651 0 0 0
## 31652 0 0 0
## 31653 0 0 0
## 31654 0 0 0
## 31655 0 0 0
## 31656 0 0 0
## 31657 0 0 0
## 31658 0 0 0
## 31659 0 0 0
## 31660 0 0 0
## 31661 0 0 0
## 31662 0 0 0
## 31663 0 0 0
## 31664 0 0 0
## 31665 0 0 0
## 31666 0 0 0
## 31667 0 0 0
## 31668 0 0 0
## 31669 0 0 0
## 31670 0 0 0
## 31671 0 0 0
## 31672 0 0 0
## 31673 0 0 0
## 31674 0 0 0
## 31675 0 0 0
## 31676 0 0 0
## 31677 0 0 0
## 31678 0 0 0
## 31679 0 0 0
## 31680 0 0 0
## 31681 0 0 0
## 31682 0 0 0
## 31683 0 0 0
## 31684 0 0 0
## 31685 0 0 0
## 31686 0 0 0
## 31687 0 0 0
## 31688 0 0 0
## 31689 0 0 0
## 31690 0 0 0
## 31691 0 0 0
## 31692 0 0 0
## 31693 0 0 0
## 31694 0 0 0
## 31695 0 0 0
## 31696 0 0 0
## 31697 0 0 0
## 31698 0 0 0
## 31699 0 0 0
## 31700 0 0 0
## 31701 0 0 0
## 31702 0 0 0
## 31703 0 0 0
## 31704 0 0 0
## 31705 0 0 0
## 31706 0 0 0
## 31707 0 0 0
## 31708 0 0 0
## 31709 0 0 0
## 31710 0 0 0
## 31711 0 0 0
## 31712 0 0 0
## 31713 0 0 0
## 31714 0 0 0
## 31715 0 0 0
## 31716 0 0 0
## 31717 0 0 0
## 31718 0 0 0
## 31719 0 0 0
## 31720 0 0 0
## 31721 0 0 0
## 31722 0 0 0
## 31723 0 0 0
## 31724 0 0 0
## 31725 0 0 0
## 31726 0 0 0
## 31727 0 0 0
## 31728 0 0 0
## 31729 0 0 0
## 31730 0 0 0
## 31731 0 0 0
## 31732 0 0 0
## 31733 0 0 0
## 31734 0 0 0
## 31735 0 0 0
## 31736 0 0 0
## 31737 0 0 0
## 31738 0 0 0
## 31739 0 0 0
## 31740 0 0 0
## 31741 0 0 0
## 31742 0 0 0
## 31743 0 0 0
## 31744 0 0 0
## 31745 0 0 0
## 31746 0 0 0
## 31747 0 0 0
## 31748 0 0 0
## 31749 0 0 0
## 31750 0 0 0
## 31751 0 0 0
## 31752 0 0 0
## 31753 0 0 0
## 31754 0 0 0
## 31755 0 0 0
## 31756 0 0 0
## 31757 0 0 0
## 31758 0 0 0
## 31759 0 0 0
## 31760 0 0 0
## 31761 0 0 0
## 31762 0 0 0
## 31763 0 0 0
## 31764 0 0 0
## 31765 0 0 0
## 31766 0 0 0
## 31767 0 0 0
## 31768 0 0 0
## 31769 0 0 0
## 31770 0 0 0
## 31771 0 0 0
## 31772 0 0 0
## 31773 0 0 0
## 31774 0 0 0
## 31775 0 0 0
## 31776 0 0 0
## 31777 0 0 0
## 31778 0 0 0
## 31779 0 0 0
## 31780 0 0 0
## 31781 0 0 0
## 31782 0 0 0
## 31783 0 0 0
## 31784 0 0 0
## 31785 0 0 0
## 31786 0 0 0
## 31787 0 0 0
## 31788 0 0 0
## 31789 0 0 0
## 31790 0 0 0
## 31791 0 0 0
## 31792 0 0 0
## 31793 0 0 0
## 31794 0 0 0
## 31795 0 0 0
## 31796 0 0 0
## 31797 0 0 0
## 31798 0 0 0
## 31799 0 0 0
## 31800 0 0 0
## 31801 0 0 0
## 31802 0 0 0
## 31803 0 0 0
## 31804 0 0 0
## 31805 0 0 0
## 31806 0 0 0
## 31807 0 0 0
## 31808 0 0 0
## 31809 0 0 0
## 31810 0 0 0
## 31811 0 0 0
## 31812 0 0 0
## 31813 0 0 0
## 31814 0 0 0
## 31815 0 0 0
## 31816 0 0 0
## 31817 0 0 0
## 31818 0 0 0
## 31819 0 0 0
## 31820 0 0 0
## 31821 0 0 0
## 31822 0 0 0
## 31823 0 0 0
## 31824 0 0 0
## 31825 0 0 0
## 31826 0 0 0
## 31827 0 0 0
## 31828 0 0 0
## 31829 0 0 0
## 31830 0 0 0
## 31831 0 0 0
## 31832 0 0 0
## 31833 0 0 0
## 31834 0 0 0
## 31835 0 0 0
## 31836 0 0 0
## 31837 0 0 0
## 31838 0 0 0
## 31839 0 0 0
## 31840 0 0 0
## 31841 0 0 0
## 31842 0 0 0
## 31843 0 0 0
## 31844 0 0 0
## 31845 0 0 0
## 31846 0 0 0
## 31847 0 0 0
## 31848 0 0 0
## 31849 0 0 0
## 31850 0 0 0
## 31851 0 0 0
## 31852 0 0 0
## 31853 0 0 0
## 31854 0 0 0
## 31855 0 0 0
## 31856 0 0 0
## 31857 0 0 0
## 31858 0 0 0
## 31859 0 0 0
## 31860 0 0 0
## 31861 0 0 0
## 31862 0 0 0
## 31863 0 0 0
## 31864 0 0 0
## 31865 0 0 0
## 31866 0 0 0
## 31867 0 0 0
## 31868 0 0 0
## 31869 0 0 0
## 31870 0 0 0
## 31871 0 0 0
## 31872 0 0 0
## 31873 0 0 0
## 31874 0 0 0
## 31875 0 0 0
## 31876 0 0 0
## 31877 0 0 0
## 31878 0 0 0
## 31879 0 0 0
## 31880 0 0 0
## 31881 0 0 0
## 31882 0 0 0
## 31883 0 0 0
## 31884 0 0 0
## 31885 0 0 0
## 31886 0 0 0
## 31887 0 0 0
## 31888 0 0 0
## 31889 0 0 0
## 31890 0 0 0
## 31891 0 0 0
## 31892 0 0 0
## 31893 0 0 0
## 31894 0 0 0
## 31895 0 0 0
## 31896 0 0 0
## 31897 0 0 0
## 31898 0 0 0
## 31899 0 0 0
## 31900 0 0 0
## 31901 0 0 0
## 31902 0 0 0
## 31903 0 0 0
## 31904 0 0 0
## 31905 0 0 0
## 31906 0 0 0
## 31907 0 0 0
## 31908 0 0 0
## 31909 0 0 0
## 31910 0 0 0
## 31911 0 0 0
## 31912 0 0 0
## 31913 0 0 0
## 31914 0 0 0
## 31915 0 0 0
## 31916 0 0 0
## 31917 0 0 0
## 31918 0 0 0
## 31919 0 0 0
## 31920 0 0 0
## 31921 0 0 0
## 31922 0 0 0
## 31923 0 0 0
## 31924 0 0 0
## 31925 0 0 0
## 31926 0 0 0
## 31927 0 0 0
## 31928 0 0 0
## 31929 0 0 0
## 31930 0 0 0
## 31931 0 0 0
## 31932 0 0 0
## 31933 0 0 0
## 31934 0 0 0
## 31935 0 0 0
## 31936 0 0 0
## 31937 0 0 0
## 31938 0 0 0
## 31939 0 0 0
## 31940 0 0 0
## 31941 0 0 0
## 31942 0 0 0
## 31943 0 0 0
## 31944 0 0 0
## 31945 0 0 0
## 31946 0 0 0
## 31947 0 0 0
## 31948 0 0 0
## 31949 0 0 0
## 31950 0 0 0
## 31951 0 0 0
## 31952 0 0 0
## 31953 0 0 0
## 31954 0 0 0
## 31955 0 0 0
## 31956 0 0 0
## 31957 0 0 0
## 31958 0 0 0
## 31959 0 0 0
## 31960 0 0 0
## 31961 0 0 0
## 31962 0 0 0
## 31963 0 0 0
## 31964 0 0 0
## 31965 0 0 0
## 31966 0 0 0
## 31967 0 0 0
## 31968 0 0 0
## 31969 0 0 0
## 31970 0 0 0
## 31971 0 0 0
## 31972 0 0 0
## 31973 0 0 0
## 31974 0 0 0
## 31975 0 0 0
## 31976 0 0 0
## 31977 0 0 0
## 31978 0 0 0
## 31979 0 0 0
## 31980 0 0 0
## 31981 0 0 0
## 31982 0 0 0
## 31983 0 0 0
## 31984 0 0 0
## 31985 0 0 0
## 31986 0 0 0
## 31987 0 0 0
## 31988 0 0 0
## 31989 0 0 0
## 31990 0 0 0
## 31991 0 0 0
## 31992 0 0 0
## 31993 0 0 0
## 31994 0 0 0
## 31995 0 0 0
## 31996 0 0 0
## 31997 0 0 0
## 31998 0 0 0
## 31999 0 0 0
## 32000 0 0 0
## 32001 0 0 0
## 32002 0 0 0
## 32003 0 0 0
## 32004 0 0 0
## 32005 0 0 0
## 32006 0 0 0
## 32007 0 0 0
## 32008 0 0 0
## 32009 0 0 0
## 32010 0 0 0
## 32011 0 0 0
## 32012 0 0 0
## 32013 0 0 0
## 32014 0 0 0
## 32015 0 0 0
## 32016 0 0 0
## 32017 0 0 0
## 32018 0 0 0
## 32019 0 0 0
## 32020 0 0 0
## 32021 0 0 0
## 32022 0 0 0
## 32023 0 0 0
## 32024 0 0 0
## 32025 0 0 0
## 32026 0 0 0
## 32027 0 0 0
## 32028 0 0 0
## 32029 0 0 0
## 32030 0 0 0
## 32031 0 0 0
## 32032 0 0 0
## 32033 0 0 0
## 32034 0 0 0
## 32035 0 0 0
## 32036 0 0 0
## 32037 0 0 0
## 32038 0 0 0
## 32039 0 0 0
## 32040 0 0 0
## 32041 0 0 0
## 32042 0 0 0
## 32043 0 0 0
## 32044 0 0 0
## 32045 0 0 0
## 32046 0 0 0
## 32047 0 0 0
## 32048 0 0 0
## 32049 0 0 0
## 32050 0 0 0
## 32051 0 0 0
## 32052 0 0 0
## 32053 0 0 0
## 32054 0 0 0
## 32055 0 0 0
## 32056 0 0 0
## 32057 0 0 0
## 32058 0 0 0
## 32059 0 0 0
## 32060 0 0 0
## 32061 0 0 0
## 32062 0 0 0
## 32063 0 0 0
## 32064 0 0 0
## 32065 0 0 0
## 32066 0 0 0
## 32067 0 0 0
## 32068 0 0 0
## 32069 0 0 0
## 32070 0 0 0
## 32071 0 0 0
## 32072 0 0 0
## 32073 0 0 0
## 32074 0 0 0
## 32075 0 0 0
## 32076 0 0 0
## 32077 0 0 0
## 32078 0 0 0
## 32079 0 0 0
## 32080 0 0 0
## 32081 0 0 0
## 32082 0 0 0
## 32083 0 0 0
## 32084 0 0 0
## 32085 0 0 0
## 32086 0 0 0
## 32087 0 0 0
## 32088 0 0 0
## 32089 0 0 0
## 32090 0 0 0
## 32091 0 0 0
## 32092 0 0 0
## 32093 0 0 0
## 32094 0 0 0
## 32095 0 0 0
## 32096 0 0 0
## 32097 0 0 0
## 32098 0 0 0
## 32099 0 0 0
## 32100 0 0 0
## 32101 0 0 0
## 32102 0 0 0
## 32103 0 0 0
## 32104 0 0 0
## 32105 0 0 0
## 32106 0 0 0
## 32107 0 0 0
## 32108 0 0 0
## 32109 0 0 0
## 32110 0 0 0
## 32111 0 0 0
## 32112 0 0 0
## 32113 0 0 0
## 32114 0 0 0
## 32115 0 0 0
## 32116 0 0 0
## 32117 0 0 0
## 32118 0 0 0
## 32119 0 0 0
## 32120 0 0 0
## 32121 0 0 0
## 32122 0 0 0
## 32123 0 0 0
## 32124 0 0 0
## 32125 0 0 0
## 32126 0 0 0
## 32127 0 0 0
## 32128 0 0 0
## 32129 0 0 0
## 32130 0 0 0
## 32131 0 0 0
## 32132 0 0 0
## 32133 0 0 0
## 32134 0 0 0
## 32135 0 0 0
## 32136 0 0 0
## 32137 0 0 0
## 32138 0 0 0
## 32139 0 0 0
## 32140 0 0 0
## 32141 0 0 0
## 32142 0 0 0
## 32143 0 0 0
## 32144 0 0 0
## 32145 0 0 0
## 32146 0 0 0
## 32147 0 0 0
## 32148 0 0 0
## 32149 0 0 0
## 32150 0 0 0
## 32151 0 0 0
## 32152 0 0 0
## 32153 0 0 0
## 32154 0 0 0
## 32155 0 0 0
## 32156 0 0 0
## 32157 0 0 0
## 32158 0 0 0
## 32159 0 0 0
## 32160 0 0 0
## 32161 0 0 0
## 32162 0 0 0
## 32163 0 0 0
## 32164 0 0 0
## 32165 0 0 0
## 32166 0 0 0
## 32167 0 0 0
## 32168 0 0 0
## 32169 0 0 0
## 32170 0 0 0
## 32171 0 0 0
## 32172 0 0 0
## 32173 0 0 0
## 32174 0 0 0
## 32175 0 0 0
## 32176 0 0 0
## 32177 0 0 0
## 32178 0 0 0
## 32179 0 0 0
## 32180 0 0 0
## 32181 0 0 0
## 32182 0 0 0
## 32183 0 0 0
## 32184 0 0 0
## 32185 0 0 0
## 32186 0 0 0
## 32187 0 0 0
## 32188 0 0 0
## 32189 0 0 0
## 32190 0 0 0
## 32191 0 0 0
## 32192 0 0 0
## 32193 0 0 0
## 32194 0 0 0
## 32195 0 0 0
## 32196 0 0 0
## 32197 0 0 0
## 32198 0 0 0
## 32199 0 0 0
## 32200 0 0 0
## 32201 0 0 0
## 32202 0 0 0
## 32203 0 0 0
## 32204 0 0 0
## 32205 0 0 0
## 32206 0 0 0
## 32207 0 0 0
## 32208 0 0 0
## 32209 0 0 0
## 32210 0 0 0
## 32211 0 0 0
## 32212 0 0 0
## 32213 0 0 0
## 32214 0 0 0
## 32215 0 0 0
## 32216 0 0 0
## 32217 0 0 0
## 32218 0 0 0
## 32219 0 0 0
## 32220 0 0 0
## 32221 0 0 0
## 32222 0 0 0
## 32223 0 0 0
## 32224 0 0 0
## 32225 0 0 0
## 32226 0 0 0
## 32227 0 0 0
## 32228 0 0 0
## 32229 0 0 0
## 32230 0 0 0
## 32231 0 0 0
## 32232 0 0 0
## 32233 0 0 0
## 32234 0 0 0
## 32235 0 0 0
## 32236 0 0 0
## 32237 0 0 0
## 32238 0 0 0
## 32239 0 0 0
## 32240 0 0 0
## 32241 0 0 0
## 32242 0 0 0
## 32243 0 0 0
## 32244 0 0 0
## 32245 0 0 0
## 32246 0 0 0
## 32247 0 0 0
## 32248 0 0 0
## 32249 0 0 0
## 32250 0 0 0
## 32251 0 0 0
## 32252 0 0 0
## 32253 0 0 0
## 32254 0 0 0
## 32255 0 0 0
## 32256 0 0 0
## 32257 0 0 0
## 32258 0 0 0
## 32259 0 0 0
## 32260 0 0 0
## 32261 0 0 0
## 32262 0 0 0
## 32263 0 0 0
## 32264 0 0 0
## 32265 0 0 0
## 32266 0 0 0
## 32267 0 0 0
## 32268 0 0 0
## 32269 0 0 0
## 32270 0 0 0
## 32271 0 0 0
## 32272 0 0 0
## 32273 0 0 0
## 32274 0 0 0
## 32275 0 0 0
## 32276 0 0 0
## 32277 0 0 0
## 32278 0 0 0
## 32279 0 0 0
## 32280 0 0 0
## 32281 0 0 0
## 32282 0 0 0
## 32283 0 0 0
## 32284 0 0 0
## 32285 0 0 0
## 32286 0 0 0
## 32287 0 0 0
## 32288 0 0 0
## 32289 0 0 0
## 32290 0 0 0
## 32291 0 0 0
## 32292 0 0 0
## 32293 0 0 0
## 32294 0 0 0
## 32295 0 0 0
## 32296 0 0 0
## 32297 0 0 0
## 32298 0 0 0
## 32299 0 0 0
## 32300 0 0 0
## 32301 0 0 0
## 32302 0 0 0
## 32303 0 0 0
## 32304 0 0 0
## 32305 0 0 0
## 32306 0 0 0
## 32307 0 0 0
## 32308 0 0 0
## 32309 0 0 0
## 32310 0 0 0
## 32311 0 0 0
## 32312 0 0 0
## 32313 0 0 0
## 32314 0 0 0
## 32315 0 0 0
## 32316 0 0 0
## 32317 0 0 0
## 32318 0 0 0
## 32319 0 0 0
## 32320 0 0 0
## 32321 0 0 0
## 32322 0 0 0
## 32323 0 0 0
## 32324 0 0 0
## 32325 0 0 0
## 32326 0 0 0
## 32327 0 0 0
## 32328 0 0 0
## 32329 0 0 0
## 32330 0 0 0
## 32331 0 0 0
## 32332 0 0 0
## 32333 0 0 0
## 32334 0 0 0
## 32335 0 0 0
## 32336 0 0 0
## 32337 0 0 0
## 32338 0 0 0
## 32339 0 0 0
## 32340 0 0 0
## 32341 0 0 0
## 32342 0 0 0
## 32343 0 0 0
## 32344 0 0 0
## 32345 0 0 0
## 32346 0 0 0
## 32347 0 0 0
## 32348 0 0 0
## 32349 0 0 0
## 32350 0 0 0
## 32351 0 0 0
## 32352 0 0 0
## 32353 0 0 0
## 32354 0 0 0
## 32355 0 0 0
## 32356 0 0 0
## 32357 0 0 0
## 32358 0 0 0
## 32359 0 0 0
## 32360 0 0 0
## 32361 0 0 0
## 32362 0 0 0
## 32363 0 0 0
## 32364 0 0 0
## 32365 0 0 0
## 32366 0 0 0
## 32367 0 0 0
## 32368 0 0 0
## 32369 0 0 0
## 32370 0 0 0
## 32371 0 0 0
## 32372 0 0 0
## 32373 0 0 0
## 32374 0 0 0
## 32375 0 0 0
## 32376 0 0 0
## 32377 0 0 0
## 32378 0 0 0
## 32379 0 0 0
## 32380 0 0 0
## 32381 0 0 0
## 32382 0 0 0
## 32383 0 0 0
## 32384 0 0 0
## 32385 0 0 0
## 32386 0 0 0
## 32387 0 0 0
## 32388 0 0 0
## 32389 0 0 0
## 32390 0 0 0
## 32391 0 0 0
## 32392 0 0 0
## 32393 0 0 0
## 32394 0 0 0
## 32395 0 0 0
## 32396 0 0 0
## 32397 0 0 0
## 32398 0 0 0
## 32399 0 0 0
## 32400 0 0 0
## 32401 0 0 0
## 32402 0 0 0
## 32403 0 0 0
## 32404 0 0 0
## 32405 0 0 0
## 32406 0 0 0
## 32407 0 0 0
## 32408 0 0 0
## 32409 0 0 0
## 32410 0 0 0
## 32411 0 0 0
## 32412 0 0 0
## 32413 0 0 0
## 32414 0 0 0
## 32415 0 0 0
## 32416 0 0 0
## 32417 0 0 0
## 32418 0 0 0
## 32419 0 0 0
## 32420 0 0 0
## 32421 0 0 0
## 32422 0 0 0
## 32423 0 0 0
## 32424 0 0 0
## 32425 0 0 0
## 32426 0 0 0
## 32427 0 0 0
## 32428 0 0 0
## 32429 0 0 0
## 32430 0 0 0
## 32431 0 0 0
## 32432 0 0 0
## 32433 0 0 0
## 32434 0 0 0
## 32435 0 0 0
## 32436 0 0 0
## 32437 0 0 0
## 32438 0 0 0
## 32439 0 0 0
## 32440 0 0 0
## 32441 0 0 0
## 32442 0 0 0
## 32443 0 0 0
## 32444 0 0 0
## 32445 0 0 0
## 32446 0 0 0
## 32447 0 0 0
## 32448 0 0 0
## 32449 0 0 0
## 32450 0 0 0
## 32451 0 0 0
## 32452 0 0 0
## 32453 0 0 0
## 32454 0 0 0
## 32455 0 0 0
## 32456 0 0 0
## 32457 0 0 0
## 32458 0 0 0
## 32459 0 0 0
## 32460 0 0 0
## 32461 0 0 0
## 32462 0 0 0
## 32463 0 0 0
## 32464 0 0 0
## 32465 0 0 0
## 32466 0 0 0
## 32467 0 0 0
## 32468 0 0 0
## 32469 0 0 0
## 32470 0 0 0
## 32471 0 0 0
## 32472 0 0 0
## 32473 0 0 0
## 32474 0 0 0
## 32475 0 0 0
## 32476 0 0 0
## 32477 0 0 0
## 32478 0 0 0
## 32479 0 0 0
## 32480 0 0 0
## 32481 0 0 0
## 32482 0 0 0
## 32483 0 0 0
## 32484 0 0 0
## 32485 0 0 0
## 32486 0 0 0
## 32487 0 0 0
## 32488 0 0 0
## 32489 0 0 0
## 32490 0 0 0
## 32491 0 0 0
## 32492 0 0 0
## 32493 0 0 0
## 32494 0 0 0
## 32495 0 0 0
## 32496 0 0 0
## 32497 0 0 0
## 32498 0 0 0
## 32499 0 0 0
## 32500 0 0 0
## 32501 0 0 0
## 32502 0 0 0
## 32503 0 0 0
## 32504 0 0 0
## 32505 0 0 0
## 32506 0 0 0
## 32507 0 0 0
## 32508 0 0 0
## 32509 0 0 0
## 32510 0 0 0
## 32511 0 0 0
## 32512 0 0 0
## 32513 0 0 0
## 32514 0 0 0
## 32515 0 0 0
## 32516 0 0 0
## 32517 0 0 0
## 32518 0 0 0
## 32519 0 0 0
## 32520 0 0 0
## 32521 0 0 0
## 32522 0 0 0
## 32523 0 0 0
## 32524 0 0 0
## 32525 0 0 0
## 32526 0 0 0
## 32527 0 0 0
## 32528 0 0 0
## 32529 0 0 0
## 32530 0 0 0
## 32531 0 0 0
## 32532 0 0 0
## 32533 0 0 0
## 32534 0 0 0
## 32535 0 0 0
## 32536 0 0 0
## 32537 0 0 0
## 32538 0 0 0
## 32539 0 0 0
## 32540 0 0 0
## 32541 0 0 0
## 32542 0 0 0
## 32543 0 0 0
## 32544 0 0 0
## 32545 0 0 0
## 32546 0 0 0
## 32547 0 0 0
## 32548 0 0 0
## 32549 0 0 0
## 32550 0 0 0
## 32551 0 0 0
## 32552 0 0 0
## 32553 0 0 0
## 32554 0 0 0
## 32555 0 0 0
## 32556 0 0 0
## 32557 0 0 0
## 32558 0 0 0
## 32559 0 0 0
## 32560 0 0 0
## 32561 0 0 0
## 32562 0 0 0
## 32563 0 0 0
## 32564 0 0 0
## 32565 0 0 0
## 32566 0 0 0
## 32567 0 0 0
## 32568 0 0 0
## 32569 0 0 0
## 32570 0 0 0
## 32571 0 0 0
## 32572 0 0 0
## 32573 0 0 0
## 32574 0 0 0
## 32575 0 0 0
## 32576 0 0 0
## 32577 0 0 0
## 32578 0 0 0
## 32579 0 0 0
## 32580 0 0 0
## 32581 0 0 0
## 32582 0 0 0
## 32583 0 0 0
## 32584 0 0 0
## 32585 0 0 0
## 32586 0 0 0
## 32587 0 0 0
## 32588 0 0 0
## 32589 0 0 0
## 32590 0 0 0
## 32591 0 0 0
## 32592 0 0 0
## 32593 0 0 0
## 32594 0 0 0
## 32595 0 0 0
## 32596 0 0 0
## 32597 0 0 0
## 32598 0 0 0
## 32599 0 0 0
## 32600 0 0 0
## 32601 0 0 0
## 32602 0 0 0
## 32603 0 0 0
## 32604 0 0 0
## 32605 0 0 0
## 32606 0 0 0
## 32607 0 0 0
## 32608 0 0 0
## 32609 0 0 0
## 32610 0 0 0
## 32611 0 0 0
## 32612 0 0 0
## 32613 0 0 0
## 32614 0 0 0
## 32615 0 0 0
## 32616 0 0 0
## 32617 0 0 0
## 32618 0 0 0
## 32619 0 0 0
## 32620 0 0 0
## 32621 0 0 0
## 32622 0 0 0
## 32623 0 0 0
## 32624 0 0 0
## 32625 0 0 0
## 32626 0 0 0
## 32627 0 0 0
## 32628 0 0 0
## 32629 0 0 0
## 32630 0 0 0
## 32631 0 0 0
## 32632 0 0 0
## 32633 0 0 0
## 32634 0 0 0
## 32635 0 0 0
## 32636 0 0 0
## 32637 0 0 0
## 32638 0 0 0
## 32639 0 0 0
## 32640 0 0 0
## 32641 0 0 0
## 32642 0 0 0
## 32643 0 0 0
## 32644 0 0 0
## 32645 0 0 0
## 32646 0 0 0
## 32647 0 0 0
## 32648 0 0 0
## 32649 0 0 0
## 32650 0 0 0
## 32651 0 0 0
## 32652 0 0 0
## 32653 0 0 0
## 32654 0 0 0
## 32655 0 0 0
## 32656 0 0 0
## 32657 0 0 0
## 32658 0 0 0
## 32659 0 0 0
## 32660 0 0 0
## 32661 0 0 0
## 32662 0 0 0
## 32663 0 0 0
## 32664 0 0 0
## 32665 0 0 0
## 32666 0 0 0
## 32667 0 0 0
## 32668 0 0 0
## 32669 0 0 0
## 32670 0 0 0
## 32671 0 0 0
## 32672 0 0 0
## 32673 0 0 0
## 32674 0 0 0
## 32675 0 0 0
## 32676 0 0 0
## 32677 0 0 0
## 32678 0 0 0
## 32679 0 0 0
## 32680 0 0 0
## 32681 0 0 0
## 32682 0 0 0
## 32683 0 0 0
## 32684 0 0 0
## 32685 0 0 0
## 32686 0 0 0
## 32687 0 0 0
## 32688 0 0 0
## 32689 0 0 0
## 32690 0 0 0
## 32691 0 0 0
## 32692 0 0 0
## 32693 0 0 0
## 32694 0 0 0
## 32695 0 0 0
## 32696 0 0 0
## 32697 0 0 0
## 32698 0 0 0
## 32699 0 0 0
## 32700 0 0 0
## 32701 0 0 0
## 32702 0 0 0
## 32703 0 0 0
## 32704 0 0 0
## 32705 0 0 0
## 32706 0 0 0
## 32707 0 0 0
## 32708 0 0 0
## 32709 0 0 0
## 32710 0 0 0
## 32711 0 0 0
## 32712 0 0 0
## 32713 0 0 0
## 32714 0 0 0
## 32715 0 0 0
## 32716 0 0 0
## 32717 0 0 0
## 32718 0 0 0
## 32719 0 0 0
## 32720 0 0 0
## 32721 0 0 0
## 32722 0 0 0
## 32723 0 0 0
## 32724 0 0 0
## 32725 0 0 0
## 32726 0 0 0
## 32727 0 0 0
## 32728 0 0 0
## 32729 0 0 0
## 32730 0 0 0
## 32731 0 0 0
## 32732 0 0 0
## 32733 0 0 0
## 32734 0 0 0
## 32735 0 0 0
## 32736 0 0 0
## 32737 0 0 0
## 32738 0 0 0
## 32739 0 0 0
## 32740 0 0 0
## 32741 0 0 0
## 32742 0 0 0
## 32743 0 0 0
## 32744 0 0 0
## 32745 0 0 0
## 32746 0 0 0
## 32747 0 0 0
## 32748 0 0 0
## 32749 0 0 0
## 32750 0 0 0
## 32751 0 0 0
## 32752 0 0 0
## 32753 0 0 0
## 32754 0 0 0
## 32755 0 0 0
## 32756 0 0 0
## 32757 0 0 0
## 32758 0 0 0
## 32759 0 0 0
## 32760 0 0 0
## 32761 0 0 0
## 32762 0 0 0
## 32763 0 0 0
## 32764 0 0 0
## 32765 0 0 0
## 32766 0 0 0
## 32767 0 0 0
## 32768 0 0 0
## 32769 0 0 0
## 32770 0 0 0
## 32771 0 0 0
## 32772 0 0 0
## 32773 0 0 0
## 32774 0 0 0
## 32775 0 0 0
## 32776 0 0 0
## 32777 0 0 0
## 32778 0 0 0
## 32779 0 0 0
## 32780 0 0 0
## 32781 0 0 0
## 32782 0 0 0
## 32783 0 0 0
## 32784 0 0 0
## 32785 0 0 0
## 32786 0 0 0
## 32787 0 0 0
## 32788 0 0 0
## 32789 0 0 0
## 32790 0 0 0
## 32791 0 0 0
## 32792 0 0 0
## 32793 0 0 0
## 32794 0 0 0
## 32795 0 0 0
## 32796 0 0 0
## 32797 0 0 0
## 32798 0 0 0
## 32799 0 0 0
## 32800 0 0 0
## 32801 0 0 0
## 32802 0 0 0
## 32803 0 0 0
## 32804 0 0 0
## 32805 0 0 0
## 32806 0 0 0
## 32807 0 0 0
## 32808 0 0 0
## 32809 0 0 0
## 32810 0 0 0
## 32811 0 0 0
## 32812 0 0 0
## 32813 0 0 0
## 32814 0 0 0
## 32815 0 0 0
## 32816 0 0 0
## 32817 0 0 0
## 32818 0 0 0
## 32819 0 0 0
## 32820 0 0 0
## 32821 0 0 0
## 32822 0 0 0
## 32823 0 0 0
## 32824 0 0 0
## 32825 0 0 0
## 32826 0 0 0
## 32827 0 0 0
## 32828 0 0 0
## 32829 0 0 0
## 32830 0 0 0
## 32831 0 0 0
## 32832 0 0 0
## 32833 0 0 0
## 32834 0 0 0
## 32835 0 0 0
## 32836 0 0 0
## 32837 0 0 0
## 32838 0 0 0
## 32839 0 0 0
## 32840 0 0 0
## 32841 0 0 0
## 32842 0 0 0
## 32843 0 0 0
## 32844 0 0 0
## 32845 0 0 0
## 32846 0 0 0
## 32847 0 0 0
## 32848 0 0 0
## 32849 0 0 0
## 32850 0 0 0
## 32851 0 0 0
## 32852 0 0 0
## 32853 0 0 0
## 32854 0 0 0
## 32855 0 0 0
## 32856 0 0 0
## 32857 0 0 0
## 32858 0 0 0
## 32859 0 0 0
## 32860 0 0 0
## 32861 0 0 0
## 32862 0 0 0
## 32863 0 0 0
## 32864 0 0 0
## 32865 0 0 0
## 32866 0 0 0
## 32867 0 0 0
## 32868 0 0 0
## 32869 0 0 0
## 32870 0 0 0
## 32871 0 0 0
## 32872 0 0 0
## 32873 0 0 0
## 32874 0 0 0
## 32875 0 0 0
## 32876 0 0 0
## 32877 0 0 0
## 32878 0 0 0
## 32879 0 0 0
## 32880 0 0 0
## 32881 0 0 0
## 32882 0 0 0
## 32883 0 0 0
## 32884 0 0 0
## 32885 0 0 0
## 32886 0 0 0
## 32887 0 0 0
## 32888 0 0 0
## 32889 0 0 0
## 32890 0 0 0
## 32891 0 0 0
## 32892 0 0 0
## 32893 0 0 0
## 32894 0 0 0
## 32895 0 0 0
## 32896 0 0 0
## 32897 0 0 0
## 32898 0 0 0
## 32899 0 0 0
## 32900 0 0 0
## 32901 0 0 0
## 32902 0 0 0
## 32903 0 0 0
## 32904 0 0 0
## 32905 0 0 0
## 32906 0 0 0
## 32907 0 0 0
## 32908 0 0 0
## 32909 0 0 0
## 32910 0 0 0
## 32911 0 0 0
## 32912 0 0 0
## 32913 0 0 0
## 32914 0 0 0
## 32915 0 0 0
## 32916 0 0 0
## 32917 0 0 0
## 32918 0 0 0
## 32919 0 0 0
## 32920 0 0 0
## 32921 0 0 0
## 32922 0 0 0
## 32923 0 0 0
## 32924 0 0 0
## 32925 0 0 0
## 32926 0 0 0
## 32927 0 0 0
## 32928 0 0 0
## 32929 0 0 0
## 32930 0 0 0
## 32931 0 0 0
## 32932 0 0 0
## 32933 0 0 0
## 32934 0 0 0
## 32935 0 0 0
## 32936 0 0 0
## 32937 0 0 0
## 32938 0 0 0
## 32939 0 0 0
## 32940 0 0 0
## 32941 0 0 0
## 32942 0 0 0
## 32943 0 0 0
## 32944 0 0 0
## 32945 0 0 0
## 32946 0 0 0
## 32947 0 0 0
## 32948 0 0 0
## 32949 0 0 0
## 32950 0 0 0
## 32951 0 0 0
## 32952 0 0 0
## 32953 0 0 0
## 32954 0 0 0
## 32955 0 0 0
## 32956 0 0 0
## 32957 0 0 0
## 32958 0 0 0
## 32959 0 0 0
## 32960 0 0 0
## 32961 0 0 0
## 32962 0 0 0
## 32963 0 0 0
## 32964 0 0 0
## 32965 0 0 0
## 32966 0 0 0
## 32967 0 0 0
## 32968 0 0 0
## 32969 0 0 0
## 32970 0 0 0
## 32971 0 0 0
## 32972 0 0 0
## 32973 0 0 0
## 32974 0 0 0
## 32975 0 0 0
## 32976 0 0 0
## 32977 0 0 0
## 32978 0 0 0
## 32979 0 0 0
## 32980 0 0 0
## 32981 0 0 0
## 32982 0 0 0
## 32983 0 0 0
## 32984 0 0 0
## 32985 0 0 0
## 32986 0 0 0
## 32987 0 0 0
## 32988 0 0 0
## 32989 0 0 0
## 32990 0 0 0
## 32991 0 0 0
## 32992 0 0 0
## 32993 0 0 0
## 32994 0 0 0
## 32995 0 0 0
## 32996 0 0 0
## 32997 0 0 0
## 32998 0 0 0
## 32999 0 0 0
## 33000 0 0 0
## 33001 0 0 0
## 33002 0 0 0
## 33003 0 0 0
## 33004 0 0 0
## 33005 0 0 0
## 33006 0 0 0
## 33007 0 0 0
## 33008 0 0 0
## 33009 0 0 0
## 33010 0 0 0
## 33011 0 0 0
## 33012 0 0 0
## 33013 0 0 0
## 33014 0 0 0
## 33015 0 0 0
## 33016 0 0 0
## 33017 0 0 0
## 33018 0 0 0
## 33019 0 0 0
## 33020 0 0 0
## 33021 0 0 0
## 33022 0 0 0
## 33023 0 0 0
## 33024 0 0 0
## 33025 0 0 0
## 33026 0 0 0
## 33027 0 0 0
## 33028 0 0 0
## 33029 0 0 0
## 33030 0 0 0
## 33031 0 0 0
## 33032 0 0 0
## 33033 0 0 0
## 33034 0 0 0
## 33035 0 0 0
## 33036 0 0 0
## 33037 0 0 0
## 33038 0 0 0
## 33039 0 0 0
## 33040 0 0 0
## 33041 0 0 0
## 33042 0 0 0
## 33043 0 0 0
## 33044 0 0 0
## 33045 0 0 0
## 33046 0 0 0
## 33047 0 0 0
## 33048 0 0 0
## 33049 0 0 0
## 33050 0 0 0
## 33051 0 0 0
## 33052 0 0 0
## 33053 0 0 0
## 33054 0 0 0
## 33055 0 0 0
## 33056 0 0 0
## 33057 0 0 0
## 33058 0 0 0
## 33059 0 0 0
## 33060 0 0 0
## 33061 0 0 0
## 33062 0 0 0
## 33063 0 0 0
## 33064 0 0 0
## 33065 0 0 0
## 33066 0 0 0
## 33067 0 0 0
## 33068 0 0 0
## 33069 0 0 0
## 33070 0 0 0
## 33071 0 0 0
## 33072 0 0 0
## 33073 0 0 0
## 33074 0 0 0
## 33075 0 0 0
## 33076 0 0 0
## 33077 0 0 0
## 33078 0 0 0
## 33079 0 0 0
## 33080 0 0 0
## 33081 0 0 0
## 33082 0 0 0
## 33083 0 0 0
## 33084 0 0 0
## 33085 0 0 0
## 33086 0 0 0
## 33087 0 0 0
## 33088 0 0 0
## 33089 0 0 0
## 33090 0 0 0
## 33091 0 0 0
## 33092 0 0 0
## 33093 0 0 0
## 33094 0 0 0
## 33095 0 0 0
## 33096 0 0 0
## 33097 0 0 0
## 33098 0 0 0
## 33099 0 0 0
## 33100 0 0 0
## 33101 0 0 0
## 33102 0 0 0
## 33103 0 0 0
## 33104 0 0 0
## 33105 0 0 0
## 33106 0 0 0
## 33107 0 0 0
## 33108 0 0 0
## 33109 0 0 0
## 33110 0 0 0
## 33111 0 0 0
## 33112 0 0 0
## 33113 0 0 0
## 33114 0 0 0
## 33115 0 0 0
## 33116 0 0 0
## 33117 0 0 0
## 33118 0 0 0
## 33119 0 0 0
## 33120 0 0 0
## 33121 0 0 0
## 33122 0 0 0
## 33123 0 0 0
## 33124 0 0 0
## 33125 0 0 0
## 33126 0 0 0
## 33127 0 0 0
## 33128 0 0 0
## 33129 0 0 0
## 33130 0 0 0
## 33131 0 0 0
## 33132 0 0 0
## 33133 0 0 0
## 33134 0 0 0
## 33135 0 0 0
## 33136 0 0 0
## 33137 0 0 0
## 33138 0 0 0
## 33139 0 0 0
## 33140 0 0 0
## 33141 0 0 0
## 33142 0 0 0
## 33143 0 0 0
## 33144 0 0 0
## 33145 0 0 0
## 33146 0 0 0
## 33147 0 0 0
## 33148 0 0 0
## 33149 0 0 0
## 33150 0 0 0
## 33151 0 0 0
## 33152 0 0 0
## 33153 0 0 0
## 33154 0 0 0
## 33155 0 0 0
## 33156 0 0 0
## 33157 0 0 0
## 33158 0 0 0
## 33159 0 0 0
## 33160 0 0 0
## 33161 0 0 0
## 33162 0 0 0
## 33163 0 0 0
## 33164 0 0 0
## 33165 0 0 0
## 33166 0 0 0
## 33167 0 0 0
## 33168 0 0 0
## 33169 0 0 0
## 33170 0 0 0
## 33171 0 0 0
## 33172 0 0 0
## 33173 0 0 0
## 33174 0 0 0
## 33175 0 0 0
## 33176 0 0 0
## 33177 0 0 0
## 33178 0 0 0
## 33179 0 0 0
## 33180 0 0 0
## 33181 0 0 0
## 33182 0 0 0
## 33183 0 0 0
## 33184 0 0 0
## 33185 0 0 0
## 33186 0 0 0
## 33187 0 0 0
## 33188 0 0 0
## 33189 0 0 0
## 33190 0 0 0
## 33191 0 0 0
## 33192 0 0 0
## 33193 0 0 0
## 33194 0 0 0
## 33195 0 0 0
## 33196 0 0 0
## 33197 0 0 0
## 33198 0 0 0
## 33199 0 0 0
## 33200 0 0 0
## 33201 0 0 0
## 33202 0 0 0
## 33203 0 0 0
## 33204 0 0 0
## 33205 0 0 0
## 33206 0 0 0
## 33207 0 0 0
## 33208 0 0 0
## 33209 0 0 0
## 33210 0 0 0
## 33211 0 0 0
## 33212 0 0 0
## 33213 0 0 0
## 33214 0 0 0
## 33215 0 0 0
## 33216 0 0 0
## 33217 0 0 0
## 33218 0 0 0
## 33219 0 0 0
## 33220 0 0 0
## 33221 0 0 0
## 33222 0 0 0
## 33223 0 0 0
## 33224 0 0 0
## 33225 0 0 0
## 33226 0 0 0
## 33227 0 0 0
## 33228 0 0 0
## 33229 0 0 0
## 33230 0 0 0
## 33231 0 0 0
## 33232 0 0 0
## 33233 0 0 0
## 33234 0 0 0
## 33235 0 0 0
## 33236 0 0 0
## 33237 0 0 0
## 33238 0 0 0
## 33239 0 0 0
## 33240 0 0 0
## 33241 0 0 0
## 33242 0 0 0
## 33243 0 0 0
## 33244 0 0 0
## 33245 0 0 0
## 33246 0 0 0
## 33247 0 0 0
## 33248 0 0 0
## 33249 0 0 0
## 33250 0 0 0
## 33251 0 0 0
## 33252 0 0 0
## 33253 0 0 0
## 33254 0 0 0
## 33255 0 0 0
## 33256 0 0 0
## 33257 0 0 0
## 33258 0 0 0
## 33259 0 0 0
## 33260 0 0 0
## 33261 0 0 0
## 33262 0 0 0
## 33263 0 0 0
## 33264 0 0 0
## 33265 0 0 0
## 33266 0 0 0
## 33267 0 0 0
## 33268 0 0 0
## 33269 0 0 0
## 33270 0 0 0
## 33271 0 0 0
## 33272 0 0 0
## 33273 0 0 0
## 33274 0 0 0
## 33275 0 0 0
## 33276 0 0 0
## 33277 0 0 0
## 33278 0 0 0
## 33279 0 0 0
## 33280 0 0 0
## 33281 0 0 0
## 33282 0 0 0
## 33283 0 0 0
## 33284 0 0 0
## 33285 0 0 0
## 33286 0 0 0
## 33287 0 0 0
## 33288 0 0 0
## 33289 0 0 0
## 33290 0 0 0
## 33291 0 0 0
## 33292 0 0 0
## 33293 0 0 0
## 33294 0 0 0
## 33295 0 0 0
## 33296 0 0 0
## 33297 0 0 0
## 33298 0 0 0
## 33299 0 0 0
## 33300 0 0 0
## 33301 0 0 0
## 33302 0 0 0
## 33303 0 0 0
## 33304 0 0 0
## 33305 0 0 0
## 33306 0 0 0
## 33307 0 0 0
## 33308 0 0 0
## 33309 0 0 0
## 33310 0 0 0
## 33311 0 0 0
## 33312 0 0 0
## 33313 0 0 0
## 33314 0 0 0
## 33315 0 0 0
## 33316 0 0 0
## 33317 0 0 0
## 33318 0 0 0
## 33319 0 0 0
## 33320 0 0 0
## 33321 0 0 0
## 33322 0 0 0
## 33323 0 0 0
## 33324 0 0 0
## 33325 0 0 0
## 33326 0 0 0
## 33327 0 0 0
## 33328 0 0 0
## 33329 0 0 0
## 33330 0 0 0
## 33331 0 0 0
## 33332 0 0 0
## 33333 0 0 0
## [ reached 'max' / getOption("max.print") -- omitted 86057 rows ]
# Resort Hotel
hotels %>%
mutate(little_ones = children + babies) %>%
filter(
little_ones >= 1,
hotel == "Resort Hotel"
) %>%
select(hotel, little_ones)
## hotel little_ones
## 1 Resort Hotel 1
## 2 Resort Hotel 2
## 3 Resort Hotel 2
## 4 Resort Hotel 2
## 5 Resort Hotel 1
## 6 Resort Hotel 1
## 7 Resort Hotel 2
## 8 Resort Hotel 2
## 9 Resort Hotel 1
## 10 Resort Hotel 1
## 11 Resort Hotel 1
## 12 Resort Hotel 2
## 13 Resort Hotel 1
## 14 Resort Hotel 2
## 15 Resort Hotel 2
## 16 Resort Hotel 2
## 17 Resort Hotel 2
## 18 Resort Hotel 2
## 19 Resort Hotel 1
## 20 Resort Hotel 1
## 21 Resort Hotel 2
## 22 Resort Hotel 1
## 23 Resort Hotel 2
## 24 Resort Hotel 1
## 25 Resort Hotel 2
## 26 Resort Hotel 2
## 27 Resort Hotel 2
## 28 Resort Hotel 2
## 29 Resort Hotel 1
## 30 Resort Hotel 1
## 31 Resort Hotel 2
## 32 Resort Hotel 2
## 33 Resort Hotel 1
## 34 Resort Hotel 2
## 35 Resort Hotel 1
## 36 Resort Hotel 1
## 37 Resort Hotel 1
## 38 Resort Hotel 1
## 39 Resort Hotel 1
## 40 Resort Hotel 2
## 41 Resort Hotel 2
## 42 Resort Hotel 1
## 43 Resort Hotel 1
## 44 Resort Hotel 1
## 45 Resort Hotel 1
## 46 Resort Hotel 10
## 47 Resort Hotel 2
## 48 Resort Hotel 1
## 49 Resort Hotel 2
## 50 Resort Hotel 2
## 51 Resort Hotel 1
## 52 Resort Hotel 1
## 53 Resort Hotel 1
## 54 Resort Hotel 2
## 55 Resort Hotel 2
## 56 Resort Hotel 2
## 57 Resort Hotel 2
## 58 Resort Hotel 2
## 59 Resort Hotel 2
## 60 Resort Hotel 1
## 61 Resort Hotel 1
## 62 Resort Hotel 1
## 63 Resort Hotel 2
## 64 Resort Hotel 2
## 65 Resort Hotel 1
## 66 Resort Hotel 1
## 67 Resort Hotel 1
## 68 Resort Hotel 1
## 69 Resort Hotel 2
## 70 Resort Hotel 1
## 71 Resort Hotel 2
## 72 Resort Hotel 2
## 73 Resort Hotel 2
## 74 Resort Hotel 2
## 75 Resort Hotel 1
## 76 Resort Hotel 2
## 77 Resort Hotel 1
## 78 Resort Hotel 2
## 79 Resort Hotel 2
## 80 Resort Hotel 1
## 81 Resort Hotel 2
## 82 Resort Hotel 1
## 83 Resort Hotel 2
## 84 Resort Hotel 2
## 85 Resort Hotel 1
## 86 Resort Hotel 2
## 87 Resort Hotel 1
## 88 Resort Hotel 1
## 89 Resort Hotel 1
## 90 Resort Hotel 1
## 91 Resort Hotel 2
## 92 Resort Hotel 1
## 93 Resort Hotel 1
## 94 Resort Hotel 2
## 95 Resort Hotel 2
## 96 Resort Hotel 2
## 97 Resort Hotel 2
## 98 Resort Hotel 2
## 99 Resort Hotel 1
## 100 Resort Hotel 1
## 101 Resort Hotel 2
## 102 Resort Hotel 2
## 103 Resort Hotel 1
## 104 Resort Hotel 1
## 105 Resort Hotel 1
## 106 Resort Hotel 2
## 107 Resort Hotel 2
## 108 Resort Hotel 2
## 109 Resort Hotel 1
## 110 Resort Hotel 1
## 111 Resort Hotel 1
## 112 Resort Hotel 1
## 113 Resort Hotel 2
## 114 Resort Hotel 2
## 115 Resort Hotel 1
## 116 Resort Hotel 2
## 117 Resort Hotel 1
## 118 Resort Hotel 2
## 119 Resort Hotel 2
## 120 Resort Hotel 2
## 121 Resort Hotel 2
## 122 Resort Hotel 2
## 123 Resort Hotel 2
## 124 Resort Hotel 2
## 125 Resort Hotel 1
## 126 Resort Hotel 2
## 127 Resort Hotel 1
## 128 Resort Hotel 2
## 129 Resort Hotel 1
## 130 Resort Hotel 2
## 131 Resort Hotel 2
## 132 Resort Hotel 1
## 133 Resort Hotel 1
## 134 Resort Hotel 1
## 135 Resort Hotel 2
## 136 Resort Hotel 1
## 137 Resort Hotel 2
## 138 Resort Hotel 1
## 139 Resort Hotel 2
## 140 Resort Hotel 2
## 141 Resort Hotel 2
## 142 Resort Hotel 2
## 143 Resort Hotel 2
## 144 Resort Hotel 2
## 145 Resort Hotel 2
## 146 Resort Hotel 1
## 147 Resort Hotel 1
## 148 Resort Hotel 2
## 149 Resort Hotel 2
## 150 Resort Hotel 1
## 151 Resort Hotel 1
## 152 Resort Hotel 2
## 153 Resort Hotel 1
## 154 Resort Hotel 1
## 155 Resort Hotel 1
## 156 Resort Hotel 1
## 157 Resort Hotel 2
## 158 Resort Hotel 1
## 159 Resort Hotel 2
## 160 Resort Hotel 1
## 161 Resort Hotel 1
## 162 Resort Hotel 2
## 163 Resort Hotel 2
## 164 Resort Hotel 1
## 165 Resort Hotel 2
## 166 Resort Hotel 2
## 167 Resort Hotel 1
## 168 Resort Hotel 1
## 169 Resort Hotel 1
## 170 Resort Hotel 1
## 171 Resort Hotel 1
## 172 Resort Hotel 2
## 173 Resort Hotel 2
## 174 Resort Hotel 1
## 175 Resort Hotel 1
## 176 Resort Hotel 1
## 177 Resort Hotel 2
## 178 Resort Hotel 1
## 179 Resort Hotel 2
## 180 Resort Hotel 2
## 181 Resort Hotel 1
## 182 Resort Hotel 2
## 183 Resort Hotel 1
## 184 Resort Hotel 1
## 185 Resort Hotel 1
## 186 Resort Hotel 1
## 187 Resort Hotel 1
## 188 Resort Hotel 1
## 189 Resort Hotel 1
## 190 Resort Hotel 1
## 191 Resort Hotel 2
## 192 Resort Hotel 1
## 193 Resort Hotel 2
## 194 Resort Hotel 1
## 195 Resort Hotel 1
## 196 Resort Hotel 1
## 197 Resort Hotel 2
## 198 Resort Hotel 2
## 199 Resort Hotel 1
## 200 Resort Hotel 1
## 201 Resort Hotel 2
## 202 Resort Hotel 1
## 203 Resort Hotel 2
## 204 Resort Hotel 2
## 205 Resort Hotel 2
## 206 Resort Hotel 1
## 207 Resort Hotel 1
## 208 Resort Hotel 1
## 209 Resort Hotel 1
## 210 Resort Hotel 1
## 211 Resort Hotel 1
## 212 Resort Hotel 2
## 213 Resort Hotel 2
## 214 Resort Hotel 1
## 215 Resort Hotel 1
## 216 Resort Hotel 1
## 217 Resort Hotel 2
## 218 Resort Hotel 2
## 219 Resort Hotel 1
## 220 Resort Hotel 2
## 221 Resort Hotel 1
## 222 Resort Hotel 1
## 223 Resort Hotel 2
## 224 Resort Hotel 2
## 225 Resort Hotel 1
## 226 Resort Hotel 2
## 227 Resort Hotel 2
## 228 Resort Hotel 2
## 229 Resort Hotel 2
## 230 Resort Hotel 1
## 231 Resort Hotel 1
## 232 Resort Hotel 1
## 233 Resort Hotel 2
## 234 Resort Hotel 2
## 235 Resort Hotel 2
## 236 Resort Hotel 1
## 237 Resort Hotel 2
## 238 Resort Hotel 2
## 239 Resort Hotel 2
## 240 Resort Hotel 1
## 241 Resort Hotel 1
## 242 Resort Hotel 2
## 243 Resort Hotel 1
## 244 Resort Hotel 1
## 245 Resort Hotel 1
## 246 Resort Hotel 2
## 247 Resort Hotel 1
## 248 Resort Hotel 2
## 249 Resort Hotel 2
## 250 Resort Hotel 1
## 251 Resort Hotel 2
## 252 Resort Hotel 2
## 253 Resort Hotel 2
## 254 Resort Hotel 1
## 255 Resort Hotel 2
## 256 Resort Hotel 2
## 257 Resort Hotel 2
## 258 Resort Hotel 1
## 259 Resort Hotel 1
## 260 Resort Hotel 1
## 261 Resort Hotel 1
## 262 Resort Hotel 1
## 263 Resort Hotel 1
## 264 Resort Hotel 2
## 265 Resort Hotel 2
## 266 Resort Hotel 2
## 267 Resort Hotel 2
## 268 Resort Hotel 1
## 269 Resort Hotel 1
## 270 Resort Hotel 2
## 271 Resort Hotel 2
## 272 Resort Hotel 1
## 273 Resort Hotel 1
## 274 Resort Hotel 2
## 275 Resort Hotel 1
## 276 Resort Hotel 1
## 277 Resort Hotel 1
## 278 Resort Hotel 1
## 279 Resort Hotel 1
## 280 Resort Hotel 1
## 281 Resort Hotel 1
## 282 Resort Hotel 1
## 283 Resort Hotel 1
## 284 Resort Hotel 2
## 285 Resort Hotel 2
## 286 Resort Hotel 1
## 287 Resort Hotel 2
## 288 Resort Hotel 2
## 289 Resort Hotel 2
## 290 Resort Hotel 1
## 291 Resort Hotel 2
## 292 Resort Hotel 1
## 293 Resort Hotel 2
## 294 Resort Hotel 2
## 295 Resort Hotel 1
## 296 Resort Hotel 1
## 297 Resort Hotel 2
## 298 Resort Hotel 1
## 299 Resort Hotel 2
## 300 Resort Hotel 2
## 301 Resort Hotel 1
## 302 Resort Hotel 1
## 303 Resort Hotel 1
## 304 Resort Hotel 1
## 305 Resort Hotel 1
## 306 Resort Hotel 1
## 307 Resort Hotel 1
## 308 Resort Hotel 1
## 309 Resort Hotel 1
## 310 Resort Hotel 2
## 311 Resort Hotel 1
## 312 Resort Hotel 1
## 313 Resort Hotel 1
## 314 Resort Hotel 1
## 315 Resort Hotel 1
## 316 Resort Hotel 1
## 317 Resort Hotel 1
## 318 Resort Hotel 1
## 319 Resort Hotel 1
## 320 Resort Hotel 1
## 321 Resort Hotel 2
## 322 Resort Hotel 1
## 323 Resort Hotel 1
## 324 Resort Hotel 1
## 325 Resort Hotel 1
## 326 Resort Hotel 1
## 327 Resort Hotel 2
## 328 Resort Hotel 1
## 329 Resort Hotel 1
## 330 Resort Hotel 2
## 331 Resort Hotel 1
## 332 Resort Hotel 2
## 333 Resort Hotel 1
## 334 Resort Hotel 1
## 335 Resort Hotel 2
## 336 Resort Hotel 1
## 337 Resort Hotel 1
## 338 Resort Hotel 2
## 339 Resort Hotel 1
## 340 Resort Hotel 1
## 341 Resort Hotel 2
## 342 Resort Hotel 1
## 343 Resort Hotel 1
## 344 Resort Hotel 1
## 345 Resort Hotel 3
## 346 Resort Hotel 2
## 347 Resort Hotel 2
## 348 Resort Hotel 2
## 349 Resort Hotel 1
## 350 Resort Hotel 1
## 351 Resort Hotel 2
## 352 Resort Hotel 2
## 353 Resort Hotel 1
## 354 Resort Hotel 2
## 355 Resort Hotel 2
## 356 Resort Hotel 1
## 357 Resort Hotel 2
## 358 Resort Hotel 1
## 359 Resort Hotel 1
## 360 Resort Hotel 1
## 361 Resort Hotel 1
## 362 Resort Hotel 1
## 363 Resort Hotel 1
## 364 Resort Hotel 1
## 365 Resort Hotel 2
## 366 Resort Hotel 2
## 367 Resort Hotel 1
## 368 Resort Hotel 2
## 369 Resort Hotel 1
## 370 Resort Hotel 1
## 371 Resort Hotel 2
## 372 Resort Hotel 1
## 373 Resort Hotel 1
## 374 Resort Hotel 2
## 375 Resort Hotel 1
## 376 Resort Hotel 2
## 377 Resort Hotel 1
## 378 Resort Hotel 1
## 379 Resort Hotel 2
## 380 Resort Hotel 1
## 381 Resort Hotel 2
## 382 Resort Hotel 1
## 383 Resort Hotel 2
## 384 Resort Hotel 1
## 385 Resort Hotel 1
## 386 Resort Hotel 1
## 387 Resort Hotel 1
## 388 Resort Hotel 1
## 389 Resort Hotel 2
## 390 Resort Hotel 2
## 391 Resort Hotel 1
## 392 Resort Hotel 1
## 393 Resort Hotel 2
## 394 Resort Hotel 2
## 395 Resort Hotel 1
## 396 Resort Hotel 2
## 397 Resort Hotel 2
## 398 Resort Hotel 2
## 399 Resort Hotel 2
## 400 Resort Hotel 2
## 401 Resort Hotel 2
## 402 Resort Hotel 1
## 403 Resort Hotel 2
## 404 Resort Hotel 2
## 405 Resort Hotel 1
## 406 Resort Hotel 1
## 407 Resort Hotel 2
## 408 Resort Hotel 1
## 409 Resort Hotel 1
## 410 Resort Hotel 1
## 411 Resort Hotel 1
## 412 Resort Hotel 1
## 413 Resort Hotel 2
## 414 Resort Hotel 2
## 415 Resort Hotel 2
## 416 Resort Hotel 2
## 417 Resort Hotel 1
## 418 Resort Hotel 2
## 419 Resort Hotel 2
## 420 Resort Hotel 2
## 421 Resort Hotel 2
## 422 Resort Hotel 2
## 423 Resort Hotel 1
## 424 Resort Hotel 1
## 425 Resort Hotel 2
## 426 Resort Hotel 1
## 427 Resort Hotel 1
## 428 Resort Hotel 2
## 429 Resort Hotel 1
## 430 Resort Hotel 2
## 431 Resort Hotel 1
## 432 Resort Hotel 2
## 433 Resort Hotel 1
## 434 Resort Hotel 2
## 435 Resort Hotel 1
## 436 Resort Hotel 2
## 437 Resort Hotel 1
## 438 Resort Hotel 2
## 439 Resort Hotel 1
## 440 Resort Hotel 1
## 441 Resort Hotel 2
## 442 Resort Hotel 2
## 443 Resort Hotel 3
## 444 Resort Hotel 2
## 445 Resort Hotel 2
## 446 Resort Hotel 2
## 447 Resort Hotel 1
## 448 Resort Hotel 2
## 449 Resort Hotel 1
## 450 Resort Hotel 2
## 451 Resort Hotel 2
## 452 Resort Hotel 2
## 453 Resort Hotel 1
## 454 Resort Hotel 2
## 455 Resort Hotel 1
## 456 Resort Hotel 2
## 457 Resort Hotel 1
## 458 Resort Hotel 1
## 459 Resort Hotel 2
## 460 Resort Hotel 2
## 461 Resort Hotel 2
## 462 Resort Hotel 2
## 463 Resort Hotel 2
## 464 Resort Hotel 1
## 465 Resort Hotel 2
## 466 Resort Hotel 2
## 467 Resort Hotel 1
## 468 Resort Hotel 2
## 469 Resort Hotel 1
## 470 Resort Hotel 2
## 471 Resort Hotel 2
## 472 Resort Hotel 2
## 473 Resort Hotel 1
## 474 Resort Hotel 2
## 475 Resort Hotel 1
## 476 Resort Hotel 1
## 477 Resort Hotel 1
## 478 Resort Hotel 1
## 479 Resort Hotel 2
## 480 Resort Hotel 1
## 481 Resort Hotel 1
## 482 Resort Hotel 2
## 483 Resort Hotel 2
## 484 Resort Hotel 1
## 485 Resort Hotel 1
## 486 Resort Hotel 2
## 487 Resort Hotel 1
## 488 Resort Hotel 1
## 489 Resort Hotel 1
## 490 Resort Hotel 2
## 491 Resort Hotel 2
## 492 Resort Hotel 2
## 493 Resort Hotel 1
## 494 Resort Hotel 1
## 495 Resort Hotel 1
## 496 Resort Hotel 2
## 497 Resort Hotel 1
## 498 Resort Hotel 2
## 499 Resort Hotel 2
## 500 Resort Hotel 2
## 501 Resort Hotel 1
## 502 Resort Hotel 2
## 503 Resort Hotel 2
## 504 Resort Hotel 2
## 505 Resort Hotel 1
## 506 Resort Hotel 2
## 507 Resort Hotel 1
## 508 Resort Hotel 1
## 509 Resort Hotel 1
## 510 Resort Hotel 2
## 511 Resort Hotel 1
## 512 Resort Hotel 1
## 513 Resort Hotel 2
## 514 Resort Hotel 1
## 515 Resort Hotel 1
## 516 Resort Hotel 2
## 517 Resort Hotel 2
## 518 Resort Hotel 1
## 519 Resort Hotel 1
## 520 Resort Hotel 1
## 521 Resort Hotel 1
## 522 Resort Hotel 1
## 523 Resort Hotel 2
## 524 Resort Hotel 1
## 525 Resort Hotel 2
## 526 Resort Hotel 2
## 527 Resort Hotel 1
## 528 Resort Hotel 1
## 529 Resort Hotel 2
## 530 Resort Hotel 2
## 531 Resort Hotel 1
## 532 Resort Hotel 2
## 533 Resort Hotel 2
## 534 Resort Hotel 1
## 535 Resort Hotel 2
## 536 Resort Hotel 1
## 537 Resort Hotel 1
## 538 Resort Hotel 1
## 539 Resort Hotel 1
## 540 Resort Hotel 1
## 541 Resort Hotel 2
## 542 Resort Hotel 2
## 543 Resort Hotel 1
## 544 Resort Hotel 3
## 545 Resort Hotel 2
## 546 Resort Hotel 1
## 547 Resort Hotel 2
## 548 Resort Hotel 1
## 549 Resort Hotel 2
## 550 Resort Hotel 2
## 551 Resort Hotel 2
## 552 Resort Hotel 1
## 553 Resort Hotel 2
## 554 Resort Hotel 1
## 555 Resort Hotel 2
## 556 Resort Hotel 1
## 557 Resort Hotel 2
## 558 Resort Hotel 1
## 559 Resort Hotel 3
## 560 Resort Hotel 2
## 561 Resort Hotel 1
## 562 Resort Hotel 1
## 563 Resort Hotel 2
## 564 Resort Hotel 2
## 565 Resort Hotel 1
## 566 Resort Hotel 1
## 567 Resort Hotel 2
## 568 Resort Hotel 1
## 569 Resort Hotel 1
## 570 Resort Hotel 2
## 571 Resort Hotel 1
## 572 Resort Hotel 1
## 573 Resort Hotel 1
## 574 Resort Hotel 1
## 575 Resort Hotel 1
## 576 Resort Hotel 2
## 577 Resort Hotel 1
## 578 Resort Hotel 1
## 579 Resort Hotel 2
## 580 Resort Hotel 1
## 581 Resort Hotel 1
## 582 Resort Hotel 2
## 583 Resort Hotel 1
## 584 Resort Hotel 2
## 585 Resort Hotel 2
## 586 Resort Hotel 2
## 587 Resort Hotel 2
## 588 Resort Hotel 2
## 589 Resort Hotel 2
## 590 Resort Hotel 2
## 591 Resort Hotel 1
## 592 Resort Hotel 1
## 593 Resort Hotel 1
## 594 Resort Hotel 2
## 595 Resort Hotel 1
## 596 Resort Hotel 2
## 597 Resort Hotel 1
## 598 Resort Hotel 1
## 599 Resort Hotel 2
## 600 Resort Hotel 1
## 601 Resort Hotel 2
## 602 Resort Hotel 2
## 603 Resort Hotel 3
## 604 Resort Hotel 2
## 605 Resort Hotel 2
## 606 Resort Hotel 2
## 607 Resort Hotel 2
## 608 Resort Hotel 1
## 609 Resort Hotel 2
## 610 Resort Hotel 2
## 611 Resort Hotel 2
## 612 Resort Hotel 2
## 613 Resort Hotel 1
## 614 Resort Hotel 2
## 615 Resort Hotel 2
## 616 Resort Hotel 2
## 617 Resort Hotel 1
## 618 Resort Hotel 2
## 619 Resort Hotel 2
## 620 Resort Hotel 2
## 621 Resort Hotel 2
## 622 Resort Hotel 2
## 623 Resort Hotel 2
## 624 Resort Hotel 1
## 625 Resort Hotel 1
## 626 Resort Hotel 1
## 627 Resort Hotel 2
## 628 Resort Hotel 1
## 629 Resort Hotel 1
## 630 Resort Hotel 2
## 631 Resort Hotel 2
## 632 Resort Hotel 2
## 633 Resort Hotel 1
## 634 Resort Hotel 1
## 635 Resort Hotel 1
## 636 Resort Hotel 1
## 637 Resort Hotel 1
## 638 Resort Hotel 1
## 639 Resort Hotel 2
## 640 Resort Hotel 2
## 641 Resort Hotel 1
## 642 Resort Hotel 1
## 643 Resort Hotel 1
## 644 Resort Hotel 2
## 645 Resort Hotel 2
## 646 Resort Hotel 2
## 647 Resort Hotel 1
## 648 Resort Hotel 1
## 649 Resort Hotel 2
## 650 Resort Hotel 1
## 651 Resort Hotel 2
## 652 Resort Hotel 2
## 653 Resort Hotel 2
## 654 Resort Hotel 1
## 655 Resort Hotel 2
## 656 Resort Hotel 1
## 657 Resort Hotel 2
## 658 Resort Hotel 1
## 659 Resort Hotel 1
## 660 Resort Hotel 1
## 661 Resort Hotel 1
## 662 Resort Hotel 2
## 663 Resort Hotel 1
## 664 Resort Hotel 1
## 665 Resort Hotel 2
## 666 Resort Hotel 1
## 667 Resort Hotel 2
## 668 Resort Hotel 2
## 669 Resort Hotel 1
## 670 Resort Hotel 1
## 671 Resort Hotel 1
## 672 Resort Hotel 2
## 673 Resort Hotel 3
## 674 Resort Hotel 1
## 675 Resort Hotel 2
## 676 Resort Hotel 2
## 677 Resort Hotel 1
## 678 Resort Hotel 1
## 679 Resort Hotel 2
## 680 Resort Hotel 2
## 681 Resort Hotel 1
## 682 Resort Hotel 2
## 683 Resort Hotel 1
## 684 Resort Hotel 1
## 685 Resort Hotel 1
## 686 Resort Hotel 1
## 687 Resort Hotel 1
## 688 Resort Hotel 1
## 689 Resort Hotel 1
## 690 Resort Hotel 2
## 691 Resort Hotel 2
## 692 Resort Hotel 1
## 693 Resort Hotel 2
## 694 Resort Hotel 1
## 695 Resort Hotel 2
## 696 Resort Hotel 1
## 697 Resort Hotel 2
## 698 Resort Hotel 1
## 699 Resort Hotel 2
## 700 Resort Hotel 2
## 701 Resort Hotel 1
## 702 Resort Hotel 1
## 703 Resort Hotel 2
## 704 Resort Hotel 1
## 705 Resort Hotel 2
## 706 Resort Hotel 1
## 707 Resort Hotel 1
## 708 Resort Hotel 2
## 709 Resort Hotel 2
## 710 Resort Hotel 1
## 711 Resort Hotel 1
## 712 Resort Hotel 1
## 713 Resort Hotel 1
## 714 Resort Hotel 2
## 715 Resort Hotel 2
## 716 Resort Hotel 2
## 717 Resort Hotel 2
## 718 Resort Hotel 2
## 719 Resort Hotel 2
## 720 Resort Hotel 1
## 721 Resort Hotel 1
## 722 Resort Hotel 2
## 723 Resort Hotel 1
## 724 Resort Hotel 1
## 725 Resort Hotel 1
## 726 Resort Hotel 2
## 727 Resort Hotel 1
## 728 Resort Hotel 1
## 729 Resort Hotel 1
## 730 Resort Hotel 1
## 731 Resort Hotel 1
## 732 Resort Hotel 1
## 733 Resort Hotel 1
## 734 Resort Hotel 1
## 735 Resort Hotel 1
## 736 Resort Hotel 1
## 737 Resort Hotel 1
## 738 Resort Hotel 2
## 739 Resort Hotel 1
## 740 Resort Hotel 2
## 741 Resort Hotel 1
## 742 Resort Hotel 1
## 743 Resort Hotel 2
## 744 Resort Hotel 1
## 745 Resort Hotel 3
## 746 Resort Hotel 1
## 747 Resort Hotel 1
## 748 Resort Hotel 1
## 749 Resort Hotel 1
## 750 Resort Hotel 1
## 751 Resort Hotel 1
## 752 Resort Hotel 2
## 753 Resort Hotel 1
## 754 Resort Hotel 1
## 755 Resort Hotel 1
## 756 Resort Hotel 1
## 757 Resort Hotel 1
## 758 Resort Hotel 2
## 759 Resort Hotel 1
## 760 Resort Hotel 2
## 761 Resort Hotel 2
## 762 Resort Hotel 2
## 763 Resort Hotel 2
## 764 Resort Hotel 1
## 765 Resort Hotel 2
## 766 Resort Hotel 2
## 767 Resort Hotel 1
## 768 Resort Hotel 2
## 769 Resort Hotel 1
## 770 Resort Hotel 1
## 771 Resort Hotel 1
## 772 Resort Hotel 2
## 773 Resort Hotel 1
## 774 Resort Hotel 2
## 775 Resort Hotel 1
## 776 Resort Hotel 1
## 777 Resort Hotel 1
## 778 Resort Hotel 1
## 779 Resort Hotel 2
## 780 Resort Hotel 2
## 781 Resort Hotel 2
## 782 Resort Hotel 2
## 783 Resort Hotel 2
## 784 Resort Hotel 2
## 785 Resort Hotel 1
## 786 Resort Hotel 2
## 787 Resort Hotel 1
## 788 Resort Hotel 2
## 789 Resort Hotel 1
## 790 Resort Hotel 1
## 791 Resort Hotel 1
## 792 Resort Hotel 2
## 793 Resort Hotel 2
## 794 Resort Hotel 2
## 795 Resort Hotel 2
## 796 Resort Hotel 2
## 797 Resort Hotel 2
## 798 Resort Hotel 1
## 799 Resort Hotel 2
## 800 Resort Hotel 1
## 801 Resort Hotel 1
## 802 Resort Hotel 2
## 803 Resort Hotel 1
## 804 Resort Hotel 1
## 805 Resort Hotel 2
## 806 Resort Hotel 2
## 807 Resort Hotel 1
## 808 Resort Hotel 1
## 809 Resort Hotel 1
## 810 Resort Hotel 1
## 811 Resort Hotel 1
## 812 Resort Hotel 1
## 813 Resort Hotel 1
## 814 Resort Hotel 1
## 815 Resort Hotel 1
## 816 Resort Hotel 1
## 817 Resort Hotel 1
## 818 Resort Hotel 1
## 819 Resort Hotel 2
## 820 Resort Hotel 1
## 821 Resort Hotel 2
## 822 Resort Hotel 1
## 823 Resort Hotel 1
## 824 Resort Hotel 2
## 825 Resort Hotel 2
## 826 Resort Hotel 2
## 827 Resort Hotel 1
## 828 Resort Hotel 2
## 829 Resort Hotel 2
## 830 Resort Hotel 2
## 831 Resort Hotel 1
## 832 Resort Hotel 1
## 833 Resort Hotel 1
## 834 Resort Hotel 1
## 835 Resort Hotel 2
## 836 Resort Hotel 1
## 837 Resort Hotel 2
## 838 Resort Hotel 2
## 839 Resort Hotel 2
## 840 Resort Hotel 2
## 841 Resort Hotel 2
## 842 Resort Hotel 2
## 843 Resort Hotel 2
## 844 Resort Hotel 1
## 845 Resort Hotel 1
## 846 Resort Hotel 2
## 847 Resort Hotel 2
## 848 Resort Hotel 2
## 849 Resort Hotel 1
## 850 Resort Hotel 2
## 851 Resort Hotel 2
## 852 Resort Hotel 2
## 853 Resort Hotel 2
## 854 Resort Hotel 2
## 855 Resort Hotel 1
## 856 Resort Hotel 1
## 857 Resort Hotel 1
## 858 Resort Hotel 2
## 859 Resort Hotel 2
## 860 Resort Hotel 1
## 861 Resort Hotel 2
## 862 Resort Hotel 2
## 863 Resort Hotel 1
## 864 Resort Hotel 2
## 865 Resort Hotel 1
## 866 Resort Hotel 1
## 867 Resort Hotel 2
## 868 Resort Hotel 2
## 869 Resort Hotel 2
## 870 Resort Hotel 2
## 871 Resort Hotel 2
## 872 Resort Hotel 2
## 873 Resort Hotel 2
## 874 Resort Hotel 1
## 875 Resort Hotel 2
## 876 Resort Hotel 2
## 877 Resort Hotel 1
## 878 Resort Hotel 1
## 879 Resort Hotel 2
## 880 Resort Hotel 1
## 881 Resort Hotel 1
## 882 Resort Hotel 2
## 883 Resort Hotel 2
## 884 Resort Hotel 1
## 885 Resort Hotel 1
## 886 Resort Hotel 1
## 887 Resort Hotel 1
## 888 Resort Hotel 2
## 889 Resort Hotel 1
## 890 Resort Hotel 2
## 891 Resort Hotel 1
## 892 Resort Hotel 2
## 893 Resort Hotel 1
## 894 Resort Hotel 2
## 895 Resort Hotel 2
## 896 Resort Hotel 2
## 897 Resort Hotel 2
## 898 Resort Hotel 1
## 899 Resort Hotel 2
## 900 Resort Hotel 2
## 901 Resort Hotel 1
## 902 Resort Hotel 2
## 903 Resort Hotel 2
## 904 Resort Hotel 1
## 905 Resort Hotel 1
## 906 Resort Hotel 2
## 907 Resort Hotel 1
## 908 Resort Hotel 1
## 909 Resort Hotel 1
## 910 Resort Hotel 1
## 911 Resort Hotel 2
## 912 Resort Hotel 1
## 913 Resort Hotel 1
## 914 Resort Hotel 1
## 915 Resort Hotel 2
## 916 Resort Hotel 1
## 917 Resort Hotel 2
## 918 Resort Hotel 1
## 919 Resort Hotel 2
## 920 Resort Hotel 2
## 921 Resort Hotel 1
## 922 Resort Hotel 2
## 923 Resort Hotel 2
## 924 Resort Hotel 1
## 925 Resort Hotel 1
## 926 Resort Hotel 1
## 927 Resort Hotel 2
## 928 Resort Hotel 2
## 929 Resort Hotel 1
## 930 Resort Hotel 2
## 931 Resort Hotel 1
## 932 Resort Hotel 1
## 933 Resort Hotel 1
## 934 Resort Hotel 2
## 935 Resort Hotel 1
## 936 Resort Hotel 1
## 937 Resort Hotel 1
## 938 Resort Hotel 2
## 939 Resort Hotel 2
## 940 Resort Hotel 2
## 941 Resort Hotel 1
## 942 Resort Hotel 2
## 943 Resort Hotel 2
## 944 Resort Hotel 2
## 945 Resort Hotel 2
## 946 Resort Hotel 1
## 947 Resort Hotel 1
## 948 Resort Hotel 1
## 949 Resort Hotel 1
## 950 Resort Hotel 1
## 951 Resort Hotel 1
## 952 Resort Hotel 1
## 953 Resort Hotel 1
## 954 Resort Hotel 2
## 955 Resort Hotel 2
## 956 Resort Hotel 1
## 957 Resort Hotel 1
## 958 Resort Hotel 2
## 959 Resort Hotel 1
## 960 Resort Hotel 1
## 961 Resort Hotel 2
## 962 Resort Hotel 1
## 963 Resort Hotel 2
## 964 Resort Hotel 2
## 965 Resort Hotel 1
## 966 Resort Hotel 2
## 967 Resort Hotel 1
## 968 Resort Hotel 2
## 969 Resort Hotel 1
## 970 Resort Hotel 2
## 971 Resort Hotel 2
## 972 Resort Hotel 1
## 973 Resort Hotel 1
## 974 Resort Hotel 2
## 975 Resort Hotel 1
## 976 Resort Hotel 1
## 977 Resort Hotel 1
## 978 Resort Hotel 2
## 979 Resort Hotel 1
## 980 Resort Hotel 1
## 981 Resort Hotel 1
## 982 Resort Hotel 2
## 983 Resort Hotel 2
## 984 Resort Hotel 2
## 985 Resort Hotel 2
## 986 Resort Hotel 2
## 987 Resort Hotel 2
## 988 Resort Hotel 1
## 989 Resort Hotel 1
## 990 Resort Hotel 1
## 991 Resort Hotel 1
## 992 Resort Hotel 2
## 993 Resort Hotel 2
## 994 Resort Hotel 2
## 995 Resort Hotel 2
## 996 Resort Hotel 1
## 997 Resort Hotel 2
## 998 Resort Hotel 2
## 999 Resort Hotel 2
## 1000 Resort Hotel 2
## 1001 Resort Hotel 2
## 1002 Resort Hotel 2
## 1003 Resort Hotel 2
## 1004 Resort Hotel 2
## 1005 Resort Hotel 2
## 1006 Resort Hotel 2
## 1007 Resort Hotel 2
## 1008 Resort Hotel 2
## 1009 Resort Hotel 1
## 1010 Resort Hotel 2
## 1011 Resort Hotel 2
## 1012 Resort Hotel 2
## 1013 Resort Hotel 2
## 1014 Resort Hotel 2
## 1015 Resort Hotel 2
## 1016 Resort Hotel 2
## 1017 Resort Hotel 1
## 1018 Resort Hotel 2
## 1019 Resort Hotel 2
## 1020 Resort Hotel 2
## 1021 Resort Hotel 1
## 1022 Resort Hotel 2
## 1023 Resort Hotel 2
## 1024 Resort Hotel 1
## 1025 Resort Hotel 2
## 1026 Resort Hotel 1
## 1027 Resort Hotel 1
## 1028 Resort Hotel 2
## 1029 Resort Hotel 1
## 1030 Resort Hotel 2
## 1031 Resort Hotel 1
## 1032 Resort Hotel 1
## 1033 Resort Hotel 2
## 1034 Resort Hotel 1
## 1035 Resort Hotel 2
## 1036 Resort Hotel 2
## 1037 Resort Hotel 2
## 1038 Resort Hotel 2
## 1039 Resort Hotel 1
## 1040 Resort Hotel 2
## 1041 Resort Hotel 2
## 1042 Resort Hotel 2
## 1043 Resort Hotel 2
## 1044 Resort Hotel 1
## 1045 Resort Hotel 2
## 1046 Resort Hotel 2
## 1047 Resort Hotel 1
## 1048 Resort Hotel 1
## 1049 Resort Hotel 2
## 1050 Resort Hotel 1
## 1051 Resort Hotel 1
## 1052 Resort Hotel 2
## 1053 Resort Hotel 2
## 1054 Resort Hotel 1
## 1055 Resort Hotel 1
## 1056 Resort Hotel 2
## 1057 Resort Hotel 1
## 1058 Resort Hotel 1
## 1059 Resort Hotel 2
## 1060 Resort Hotel 2
## 1061 Resort Hotel 2
## 1062 Resort Hotel 2
## 1063 Resort Hotel 1
## 1064 Resort Hotel 1
## 1065 Resort Hotel 1
## 1066 Resort Hotel 1
## 1067 Resort Hotel 1
## 1068 Resort Hotel 1
## 1069 Resort Hotel 1
## 1070 Resort Hotel 2
## 1071 Resort Hotel 1
## 1072 Resort Hotel 1
## 1073 Resort Hotel 1
## 1074 Resort Hotel 1
## 1075 Resort Hotel 2
## 1076 Resort Hotel 1
## 1077 Resort Hotel 1
## 1078 Resort Hotel 1
## 1079 Resort Hotel 2
## 1080 Resort Hotel 2
## 1081 Resort Hotel 2
## 1082 Resort Hotel 2
## 1083 Resort Hotel 2
## 1084 Resort Hotel 1
## 1085 Resort Hotel 1
## 1086 Resort Hotel 1
## 1087 Resort Hotel 2
## 1088 Resort Hotel 2
## 1089 Resort Hotel 1
## 1090 Resort Hotel 2
## 1091 Resort Hotel 1
## 1092 Resort Hotel 2
## 1093 Resort Hotel 2
## 1094 Resort Hotel 2
## 1095 Resort Hotel 2
## 1096 Resort Hotel 2
## 1097 Resort Hotel 2
## 1098 Resort Hotel 2
## 1099 Resort Hotel 2
## 1100 Resort Hotel 2
## 1101 Resort Hotel 1
## 1102 Resort Hotel 2
## 1103 Resort Hotel 2
## 1104 Resort Hotel 2
## 1105 Resort Hotel 2
## 1106 Resort Hotel 2
## 1107 Resort Hotel 1
## 1108 Resort Hotel 2
## 1109 Resort Hotel 2
## 1110 Resort Hotel 2
## 1111 Resort Hotel 1
## 1112 Resort Hotel 2
## 1113 Resort Hotel 2
## 1114 Resort Hotel 2
## 1115 Resort Hotel 2
## 1116 Resort Hotel 2
## 1117 Resort Hotel 2
## 1118 Resort Hotel 2
## 1119 Resort Hotel 1
## 1120 Resort Hotel 2
## 1121 Resort Hotel 2
## 1122 Resort Hotel 1
## 1123 Resort Hotel 2
## 1124 Resort Hotel 2
## 1125 Resort Hotel 2
## 1126 Resort Hotel 1
## 1127 Resort Hotel 2
## 1128 Resort Hotel 2
## 1129 Resort Hotel 2
## 1130 Resort Hotel 2
## 1131 Resort Hotel 2
## 1132 Resort Hotel 2
## 1133 Resort Hotel 2
## 1134 Resort Hotel 2
## 1135 Resort Hotel 1
## 1136 Resort Hotel 2
## 1137 Resort Hotel 2
## 1138 Resort Hotel 2
## 1139 Resort Hotel 2
## 1140 Resort Hotel 2
## 1141 Resort Hotel 2
## 1142 Resort Hotel 2
## 1143 Resort Hotel 2
## 1144 Resort Hotel 2
## 1145 Resort Hotel 2
## 1146 Resort Hotel 2
## 1147 Resort Hotel 2
## 1148 Resort Hotel 2
## 1149 Resort Hotel 2
## 1150 Resort Hotel 2
## 1151 Resort Hotel 1
## 1152 Resort Hotel 1
## 1153 Resort Hotel 2
## 1154 Resort Hotel 2
## 1155 Resort Hotel 1
## 1156 Resort Hotel 1
## 1157 Resort Hotel 1
## 1158 Resort Hotel 1
## 1159 Resort Hotel 2
## 1160 Resort Hotel 1
## 1161 Resort Hotel 2
## 1162 Resort Hotel 1
## 1163 Resort Hotel 2
## 1164 Resort Hotel 2
## 1165 Resort Hotel 1
## 1166 Resort Hotel 1
## 1167 Resort Hotel 2
## 1168 Resort Hotel 1
## 1169 Resort Hotel 1
## 1170 Resort Hotel 1
## 1171 Resort Hotel 1
## 1172 Resort Hotel 1
## 1173 Resort Hotel 2
## 1174 Resort Hotel 2
## 1175 Resort Hotel 2
## 1176 Resort Hotel 1
## 1177 Resort Hotel 2
## 1178 Resort Hotel 2
## 1179 Resort Hotel 2
## 1180 Resort Hotel 2
## 1181 Resort Hotel 2
## 1182 Resort Hotel 1
## 1183 Resort Hotel 1
## 1184 Resort Hotel 2
## 1185 Resort Hotel 1
## 1186 Resort Hotel 1
## 1187 Resort Hotel 1
## 1188 Resort Hotel 1
## 1189 Resort Hotel 1
## 1190 Resort Hotel 2
## 1191 Resort Hotel 2
## 1192 Resort Hotel 2
## 1193 Resort Hotel 2
## 1194 Resort Hotel 2
## 1195 Resort Hotel 1
## 1196 Resort Hotel 2
## 1197 Resort Hotel 2
## 1198 Resort Hotel 2
## 1199 Resort Hotel 1
## 1200 Resort Hotel 2
## 1201 Resort Hotel 2
## 1202 Resort Hotel 2
## 1203 Resort Hotel 2
## 1204 Resort Hotel 2
## 1205 Resort Hotel 1
## 1206 Resort Hotel 1
## 1207 Resort Hotel 2
## 1208 Resort Hotel 2
## 1209 Resort Hotel 2
## 1210 Resort Hotel 2
## 1211 Resort Hotel 1
## 1212 Resort Hotel 2
## 1213 Resort Hotel 2
## 1214 Resort Hotel 2
## 1215 Resort Hotel 2
## 1216 Resort Hotel 2
## 1217 Resort Hotel 1
## 1218 Resort Hotel 1
## 1219 Resort Hotel 2
## 1220 Resort Hotel 1
## 1221 Resort Hotel 2
## 1222 Resort Hotel 2
## 1223 Resort Hotel 1
## 1224 Resort Hotel 1
## 1225 Resort Hotel 2
## 1226 Resort Hotel 2
## 1227 Resort Hotel 2
## 1228 Resort Hotel 2
## 1229 Resort Hotel 2
## 1230 Resort Hotel 1
## 1231 Resort Hotel 1
## 1232 Resort Hotel 1
## 1233 Resort Hotel 1
## 1234 Resort Hotel 2
## 1235 Resort Hotel 2
## 1236 Resort Hotel 2
## 1237 Resort Hotel 2
## 1238 Resort Hotel 1
## 1239 Resort Hotel 1
## 1240 Resort Hotel 1
## 1241 Resort Hotel 1
## 1242 Resort Hotel 2
## 1243 Resort Hotel 2
## 1244 Resort Hotel 2
## 1245 Resort Hotel 2
## 1246 Resort Hotel 2
## 1247 Resort Hotel 2
## 1248 Resort Hotel 2
## 1249 Resort Hotel 2
## 1250 Resort Hotel 1
## 1251 Resort Hotel 2
## 1252 Resort Hotel 1
## 1253 Resort Hotel 2
## 1254 Resort Hotel 1
## 1255 Resort Hotel 1
## 1256 Resort Hotel 2
## 1257 Resort Hotel 2
## 1258 Resort Hotel 1
## 1259 Resort Hotel 1
## 1260 Resort Hotel 2
## 1261 Resort Hotel 2
## 1262 Resort Hotel 2
## 1263 Resort Hotel 2
## 1264 Resort Hotel 1
## 1265 Resort Hotel 1
## 1266 Resort Hotel 2
## 1267 Resort Hotel 2
## 1268 Resort Hotel 1
## 1269 Resort Hotel 2
## 1270 Resort Hotel 2
## 1271 Resort Hotel 2
## 1272 Resort Hotel 2
## 1273 Resort Hotel 2
## 1274 Resort Hotel 2
## 1275 Resort Hotel 1
## 1276 Resort Hotel 2
## 1277 Resort Hotel 1
## 1278 Resort Hotel 1
## 1279 Resort Hotel 2
## 1280 Resort Hotel 1
## 1281 Resort Hotel 1
## 1282 Resort Hotel 1
## 1283 Resort Hotel 1
## 1284 Resort Hotel 2
## 1285 Resort Hotel 1
## 1286 Resort Hotel 1
## 1287 Resort Hotel 1
## 1288 Resort Hotel 2
## 1289 Resort Hotel 2
## 1290 Resort Hotel 2
## 1291 Resort Hotel 2
## 1292 Resort Hotel 2
## 1293 Resort Hotel 2
## 1294 Resort Hotel 2
## 1295 Resort Hotel 2
## 1296 Resort Hotel 2
## 1297 Resort Hotel 1
## 1298 Resort Hotel 2
## 1299 Resort Hotel 1
## 1300 Resort Hotel 1
## 1301 Resort Hotel 1
## 1302 Resort Hotel 2
## 1303 Resort Hotel 1
## 1304 Resort Hotel 1
## 1305 Resort Hotel 2
## 1306 Resort Hotel 1
## 1307 Resort Hotel 2
## 1308 Resort Hotel 2
## 1309 Resort Hotel 2
## 1310 Resort Hotel 2
## 1311 Resort Hotel 2
## 1312 Resort Hotel 2
## 1313 Resort Hotel 2
## 1314 Resort Hotel 2
## 1315 Resort Hotel 2
## 1316 Resort Hotel 2
## 1317 Resort Hotel 1
## 1318 Resort Hotel 2
## 1319 Resort Hotel 2
## 1320 Resort Hotel 2
## 1321 Resort Hotel 1
## 1322 Resort Hotel 1
## 1323 Resort Hotel 2
## 1324 Resort Hotel 2
## 1325 Resort Hotel 2
## 1326 Resort Hotel 1
## 1327 Resort Hotel 1
## 1328 Resort Hotel 1
## 1329 Resort Hotel 2
## 1330 Resort Hotel 1
## 1331 Resort Hotel 1
## 1332 Resort Hotel 2
## 1333 Resort Hotel 1
## 1334 Resort Hotel 2
## 1335 Resort Hotel 1
## 1336 Resort Hotel 2
## 1337 Resort Hotel 1
## 1338 Resort Hotel 2
## 1339 Resort Hotel 1
## 1340 Resort Hotel 2
## 1341 Resort Hotel 2
## 1342 Resort Hotel 1
## 1343 Resort Hotel 2
## 1344 Resort Hotel 2
## 1345 Resort Hotel 2
## 1346 Resort Hotel 2
## 1347 Resort Hotel 1
## 1348 Resort Hotel 2
## 1349 Resort Hotel 2
## 1350 Resort Hotel 1
## 1351 Resort Hotel 2
## 1352 Resort Hotel 2
## 1353 Resort Hotel 1
## 1354 Resort Hotel 2
## 1355 Resort Hotel 2
## 1356 Resort Hotel 2
## 1357 Resort Hotel 1
## 1358 Resort Hotel 2
## 1359 Resort Hotel 1
## 1360 Resort Hotel 1
## 1361 Resort Hotel 2
## 1362 Resort Hotel 1
## 1363 Resort Hotel 1
## 1364 Resort Hotel 2
## 1365 Resort Hotel 2
## 1366 Resort Hotel 1
## 1367 Resort Hotel 2
## 1368 Resort Hotel 2
## 1369 Resort Hotel 2
## 1370 Resort Hotel 2
## 1371 Resort Hotel 2
## 1372 Resort Hotel 1
## 1373 Resort Hotel 1
## 1374 Resort Hotel 1
## 1375 Resort Hotel 1
## 1376 Resort Hotel 2
## 1377 Resort Hotel 2
## 1378 Resort Hotel 2
## 1379 Resort Hotel 2
## 1380 Resort Hotel 1
## 1381 Resort Hotel 2
## 1382 Resort Hotel 2
## 1383 Resort Hotel 1
## 1384 Resort Hotel 1
## 1385 Resort Hotel 1
## 1386 Resort Hotel 1
## 1387 Resort Hotel 2
## 1388 Resort Hotel 2
## 1389 Resort Hotel 1
## 1390 Resort Hotel 2
## 1391 Resort Hotel 2
## 1392 Resort Hotel 2
## 1393 Resort Hotel 1
## 1394 Resort Hotel 1
## 1395 Resort Hotel 2
## 1396 Resort Hotel 2
## 1397 Resort Hotel 1
## 1398 Resort Hotel 1
## 1399 Resort Hotel 1
## 1400 Resort Hotel 1
## 1401 Resort Hotel 2
## 1402 Resort Hotel 2
## 1403 Resort Hotel 1
## 1404 Resort Hotel 1
## 1405 Resort Hotel 2
## 1406 Resort Hotel 1
## 1407 Resort Hotel 2
## 1408 Resort Hotel 1
## 1409 Resort Hotel 2
## 1410 Resort Hotel 2
## 1411 Resort Hotel 2
## 1412 Resort Hotel 2
## 1413 Resort Hotel 2
## 1414 Resort Hotel 2
## 1415 Resort Hotel 1
## 1416 Resort Hotel 1
## 1417 Resort Hotel 1
## 1418 Resort Hotel 2
## 1419 Resort Hotel 1
## 1420 Resort Hotel 2
## 1421 Resort Hotel 2
## 1422 Resort Hotel 2
## 1423 Resort Hotel 2
## 1424 Resort Hotel 2
## 1425 Resort Hotel 2
## 1426 Resort Hotel 1
## 1427 Resort Hotel 1
## 1428 Resort Hotel 1
## 1429 Resort Hotel 1
## 1430 Resort Hotel 1
## 1431 Resort Hotel 2
## 1432 Resort Hotel 2
## 1433 Resort Hotel 1
## 1434 Resort Hotel 2
## 1435 Resort Hotel 1
## 1436 Resort Hotel 2
## 1437 Resort Hotel 2
## 1438 Resort Hotel 2
## 1439 Resort Hotel 2
## 1440 Resort Hotel 2
## 1441 Resort Hotel 2
## 1442 Resort Hotel 1
## 1443 Resort Hotel 2
## 1444 Resort Hotel 1
## 1445 Resort Hotel 2
## 1446 Resort Hotel 1
## 1447 Resort Hotel 2
## 1448 Resort Hotel 1
## 1449 Resort Hotel 1
## 1450 Resort Hotel 1
## 1451 Resort Hotel 1
## 1452 Resort Hotel 1
## 1453 Resort Hotel 2
## 1454 Resort Hotel 2
## 1455 Resort Hotel 2
## 1456 Resort Hotel 2
## 1457 Resort Hotel 2
## 1458 Resort Hotel 2
## 1459 Resort Hotel 2
## 1460 Resort Hotel 1
## 1461 Resort Hotel 2
## 1462 Resort Hotel 1
## 1463 Resort Hotel 2
## 1464 Resort Hotel 1
## 1465 Resort Hotel 1
## 1466 Resort Hotel 2
## 1467 Resort Hotel 1
## 1468 Resort Hotel 2
## 1469 Resort Hotel 1
## 1470 Resort Hotel 2
## 1471 Resort Hotel 1
## 1472 Resort Hotel 2
## 1473 Resort Hotel 1
## 1474 Resort Hotel 2
## 1475 Resort Hotel 2
## 1476 Resort Hotel 2
## 1477 Resort Hotel 2
## 1478 Resort Hotel 2
## 1479 Resort Hotel 1
## 1480 Resort Hotel 1
## 1481 Resort Hotel 1
## 1482 Resort Hotel 1
## 1483 Resort Hotel 1
## 1484 Resort Hotel 2
## 1485 Resort Hotel 2
## 1486 Resort Hotel 1
## 1487 Resort Hotel 2
## 1488 Resort Hotel 1
## 1489 Resort Hotel 2
## 1490 Resort Hotel 2
## 1491 Resort Hotel 2
## 1492 Resort Hotel 2
## 1493 Resort Hotel 2
## 1494 Resort Hotel 1
## 1495 Resort Hotel 1
## 1496 Resort Hotel 2
## 1497 Resort Hotel 1
## 1498 Resort Hotel 2
## 1499 Resort Hotel 1
## 1500 Resort Hotel 2
## 1501 Resort Hotel 1
## 1502 Resort Hotel 1
## 1503 Resort Hotel 1
## 1504 Resort Hotel 2
## 1505 Resort Hotel 1
## 1506 Resort Hotel 1
## 1507 Resort Hotel 1
## 1508 Resort Hotel 2
## 1509 Resort Hotel 2
## 1510 Resort Hotel 1
## 1511 Resort Hotel 2
## 1512 Resort Hotel 1
## 1513 Resort Hotel 1
## 1514 Resort Hotel 2
## 1515 Resort Hotel 2
## 1516 Resort Hotel 2
## 1517 Resort Hotel 1
## 1518 Resort Hotel 1
## 1519 Resort Hotel 1
## 1520 Resort Hotel 1
## 1521 Resort Hotel 2
## 1522 Resort Hotel 1
## 1523 Resort Hotel 2
## 1524 Resort Hotel 2
## 1525 Resort Hotel 1
## 1526 Resort Hotel 1
## 1527 Resort Hotel 1
## 1528 Resort Hotel 2
## 1529 Resort Hotel 2
## 1530 Resort Hotel 2
## 1531 Resort Hotel 1
## 1532 Resort Hotel 2
## 1533 Resort Hotel 2
## 1534 Resort Hotel 1
## 1535 Resort Hotel 1
## 1536 Resort Hotel 2
## 1537 Resort Hotel 1
## 1538 Resort Hotel 1
## 1539 Resort Hotel 1
## 1540 Resort Hotel 1
## 1541 Resort Hotel 1
## 1542 Resort Hotel 1
## 1543 Resort Hotel 1
## 1544 Resort Hotel 1
## 1545 Resort Hotel 2
## 1546 Resort Hotel 1
## 1547 Resort Hotel 1
## 1548 Resort Hotel 2
## 1549 Resort Hotel 2
## 1550 Resort Hotel 2
## 1551 Resort Hotel 2
## 1552 Resort Hotel 2
## 1553 Resort Hotel 1
## 1554 Resort Hotel 2
## 1555 Resort Hotel 1
## 1556 Resort Hotel 1
## 1557 Resort Hotel 1
## 1558 Resort Hotel 2
## 1559 Resort Hotel 2
## 1560 Resort Hotel 2
## 1561 Resort Hotel 2
## 1562 Resort Hotel 2
## 1563 Resort Hotel 2
## 1564 Resort Hotel 1
## 1565 Resort Hotel 1
## 1566 Resort Hotel 1
## 1567 Resort Hotel 1
## 1568 Resort Hotel 2
## 1569 Resort Hotel 1
## 1570 Resort Hotel 2
## 1571 Resort Hotel 2
## 1572 Resort Hotel 1
## 1573 Resort Hotel 1
## 1574 Resort Hotel 2
## 1575 Resort Hotel 1
## 1576 Resort Hotel 1
## 1577 Resort Hotel 2
## 1578 Resort Hotel 2
## 1579 Resort Hotel 2
## 1580 Resort Hotel 2
## 1581 Resort Hotel 1
## 1582 Resort Hotel 1
## 1583 Resort Hotel 1
## 1584 Resort Hotel 2
## 1585 Resort Hotel 1
## 1586 Resort Hotel 2
## 1587 Resort Hotel 1
## 1588 Resort Hotel 2
## 1589 Resort Hotel 1
## 1590 Resort Hotel 1
## 1591 Resort Hotel 1
## 1592 Resort Hotel 1
## 1593 Resort Hotel 2
## 1594 Resort Hotel 2
## 1595 Resort Hotel 2
## 1596 Resort Hotel 2
## 1597 Resort Hotel 2
## 1598 Resort Hotel 1
## 1599 Resort Hotel 2
## 1600 Resort Hotel 1
## 1601 Resort Hotel 1
## 1602 Resort Hotel 2
## 1603 Resort Hotel 2
## 1604 Resort Hotel 2
## 1605 Resort Hotel 2
## 1606 Resort Hotel 2
## 1607 Resort Hotel 1
## 1608 Resort Hotel 2
## 1609 Resort Hotel 2
## 1610 Resort Hotel 2
## 1611 Resort Hotel 2
## 1612 Resort Hotel 2
## 1613 Resort Hotel 1
## 1614 Resort Hotel 2
## 1615 Resort Hotel 2
## 1616 Resort Hotel 2
## 1617 Resort Hotel 2
## 1618 Resort Hotel 1
## 1619 Resort Hotel 1
## 1620 Resort Hotel 2
## 1621 Resort Hotel 2
## 1622 Resort Hotel 1
## 1623 Resort Hotel 1
## 1624 Resort Hotel 2
## 1625 Resort Hotel 2
## 1626 Resort Hotel 1
## 1627 Resort Hotel 2
## 1628 Resort Hotel 2
## 1629 Resort Hotel 2
## 1630 Resort Hotel 1
## 1631 Resort Hotel 2
## 1632 Resort Hotel 1
## 1633 Resort Hotel 2
## 1634 Resort Hotel 2
## 1635 Resort Hotel 2
## 1636 Resort Hotel 2
## 1637 Resort Hotel 1
## 1638 Resort Hotel 2
## 1639 Resort Hotel 1
## 1640 Resort Hotel 2
## 1641 Resort Hotel 1
## 1642 Resort Hotel 1
## 1643 Resort Hotel 1
## 1644 Resort Hotel 1
## 1645 Resort Hotel 1
## 1646 Resort Hotel 2
## 1647 Resort Hotel 1
## 1648 Resort Hotel 1
## 1649 Resort Hotel 1
## 1650 Resort Hotel 1
## 1651 Resort Hotel 1
## 1652 Resort Hotel 1
## 1653 Resort Hotel 1
## 1654 Resort Hotel 1
## 1655 Resort Hotel 2
## 1656 Resort Hotel 1
## 1657 Resort Hotel 1
## 1658 Resort Hotel 1
## 1659 Resort Hotel 1
## 1660 Resort Hotel 2
## 1661 Resort Hotel 2
## 1662 Resort Hotel 2
## 1663 Resort Hotel 2
## 1664 Resort Hotel 1
## 1665 Resort Hotel 1
## 1666 Resort Hotel 1
## 1667 Resort Hotel 1
## 1668 Resort Hotel 1
## 1669 Resort Hotel 1
## 1670 Resort Hotel 2
## 1671 Resort Hotel 1
## 1672 Resort Hotel 1
## 1673 Resort Hotel 2
## 1674 Resort Hotel 2
## 1675 Resort Hotel 1
## 1676 Resort Hotel 2
## 1677 Resort Hotel 1
## 1678 Resort Hotel 2
## 1679 Resort Hotel 1
## 1680 Resort Hotel 1
## 1681 Resort Hotel 1
## 1682 Resort Hotel 1
## 1683 Resort Hotel 1
## 1684 Resort Hotel 1
## 1685 Resort Hotel 2
## 1686 Resort Hotel 2
## 1687 Resort Hotel 1
## 1688 Resort Hotel 1
## 1689 Resort Hotel 1
## 1690 Resort Hotel 2
## 1691 Resort Hotel 1
## 1692 Resort Hotel 2
## 1693 Resort Hotel 2
## 1694 Resort Hotel 2
## 1695 Resort Hotel 1
## 1696 Resort Hotel 2
## 1697 Resort Hotel 1
## 1698 Resort Hotel 2
## 1699 Resort Hotel 1
## 1700 Resort Hotel 1
## 1701 Resort Hotel 1
## 1702 Resort Hotel 2
## 1703 Resort Hotel 1
## 1704 Resort Hotel 1
## 1705 Resort Hotel 1
## 1706 Resort Hotel 1
## 1707 Resort Hotel 2
## 1708 Resort Hotel 1
## 1709 Resort Hotel 1
## 1710 Resort Hotel 1
## 1711 Resort Hotel 1
## 1712 Resort Hotel 1
## 1713 Resort Hotel 1
## 1714 Resort Hotel 1
## 1715 Resort Hotel 1
## 1716 Resort Hotel 1
## 1717 Resort Hotel 2
## 1718 Resort Hotel 2
## 1719 Resort Hotel 2
## 1720 Resort Hotel 1
## 1721 Resort Hotel 1
## 1722 Resort Hotel 1
## 1723 Resort Hotel 2
## 1724 Resort Hotel 2
## 1725 Resort Hotel 1
## 1726 Resort Hotel 1
## 1727 Resort Hotel 1
## 1728 Resort Hotel 1
## 1729 Resort Hotel 1
## 1730 Resort Hotel 1
## 1731 Resort Hotel 2
## 1732 Resort Hotel 2
## 1733 Resort Hotel 1
## 1734 Resort Hotel 1
## 1735 Resort Hotel 2
## 1736 Resort Hotel 1
## 1737 Resort Hotel 1
## 1738 Resort Hotel 2
## 1739 Resort Hotel 1
## 1740 Resort Hotel 1
## 1741 Resort Hotel 1
## 1742 Resort Hotel 1
## 1743 Resort Hotel 1
## 1744 Resort Hotel 2
## 1745 Resort Hotel 2
## 1746 Resort Hotel 2
## 1747 Resort Hotel 1
## 1748 Resort Hotel 1
## 1749 Resort Hotel 1
## 1750 Resort Hotel 2
## 1751 Resort Hotel 1
## 1752 Resort Hotel 1
## 1753 Resort Hotel 1
## 1754 Resort Hotel 1
## 1755 Resort Hotel 1
## 1756 Resort Hotel 2
## 1757 Resort Hotel 1
## 1758 Resort Hotel 2
## 1759 Resort Hotel 1
## 1760 Resort Hotel 2
## 1761 Resort Hotel 2
## 1762 Resort Hotel 1
## 1763 Resort Hotel 1
## 1764 Resort Hotel 2
## 1765 Resort Hotel 1
## 1766 Resort Hotel 1
## 1767 Resort Hotel 1
## 1768 Resort Hotel 1
## 1769 Resort Hotel 1
## 1770 Resort Hotel 1
## 1771 Resort Hotel 1
## 1772 Resort Hotel 2
## 1773 Resort Hotel 2
## 1774 Resort Hotel 1
## 1775 Resort Hotel 1
## 1776 Resort Hotel 1
## 1777 Resort Hotel 1
## 1778 Resort Hotel 1
## 1779 Resort Hotel 1
## 1780 Resort Hotel 1
## 1781 Resort Hotel 1
## 1782 Resort Hotel 2
## 1783 Resort Hotel 1
## 1784 Resort Hotel 1
## 1785 Resort Hotel 1
## 1786 Resort Hotel 2
## 1787 Resort Hotel 1
## 1788 Resort Hotel 1
## 1789 Resort Hotel 1
## 1790 Resort Hotel 1
## 1791 Resort Hotel 1
## 1792 Resort Hotel 1
## 1793 Resort Hotel 2
## 1794 Resort Hotel 2
## 1795 Resort Hotel 1
## 1796 Resort Hotel 2
## 1797 Resort Hotel 1
## 1798 Resort Hotel 2
## 1799 Resort Hotel 1
## 1800 Resort Hotel 1
## 1801 Resort Hotel 1
## 1802 Resort Hotel 1
## 1803 Resort Hotel 1
## 1804 Resort Hotel 1
## 1805 Resort Hotel 1
## 1806 Resort Hotel 1
## 1807 Resort Hotel 1
## 1808 Resort Hotel 1
## 1809 Resort Hotel 1
## 1810 Resort Hotel 1
## 1811 Resort Hotel 2
## 1812 Resort Hotel 2
## 1813 Resort Hotel 1
## 1814 Resort Hotel 1
## 1815 Resort Hotel 1
## 1816 Resort Hotel 2
## 1817 Resort Hotel 1
## 1818 Resort Hotel 1
## 1819 Resort Hotel 2
## 1820 Resort Hotel 2
## 1821 Resort Hotel 1
## 1822 Resort Hotel 1
## 1823 Resort Hotel 2
## 1824 Resort Hotel 2
## 1825 Resort Hotel 2
## 1826 Resort Hotel 1
## 1827 Resort Hotel 2
## 1828 Resort Hotel 1
## 1829 Resort Hotel 1
## 1830 Resort Hotel 3
## 1831 Resort Hotel 2
## 1832 Resort Hotel 1
## 1833 Resort Hotel 1
## 1834 Resort Hotel 2
## 1835 Resort Hotel 1
## 1836 Resort Hotel 2
## 1837 Resort Hotel 2
## 1838 Resort Hotel 1
## 1839 Resort Hotel 1
## 1840 Resort Hotel 1
## 1841 Resort Hotel 1
## 1842 Resort Hotel 2
## 1843 Resort Hotel 2
## 1844 Resort Hotel 2
## 1845 Resort Hotel 1
## 1846 Resort Hotel 1
## 1847 Resort Hotel 1
## 1848 Resort Hotel 2
## 1849 Resort Hotel 1
## 1850 Resort Hotel 1
## 1851 Resort Hotel 2
## 1852 Resort Hotel 1
## 1853 Resort Hotel 1
## 1854 Resort Hotel 1
## 1855 Resort Hotel 1
## 1856 Resort Hotel 3
## 1857 Resort Hotel 1
## 1858 Resort Hotel 1
## 1859 Resort Hotel 1
## 1860 Resort Hotel 1
## 1861 Resort Hotel 1
## 1862 Resort Hotel 1
## 1863 Resort Hotel 1
## 1864 Resort Hotel 1
## 1865 Resort Hotel 1
## 1866 Resort Hotel 1
## 1867 Resort Hotel 2
## 1868 Resort Hotel 2
## 1869 Resort Hotel 1
## 1870 Resort Hotel 1
## 1871 Resort Hotel 2
## 1872 Resort Hotel 2
## 1873 Resort Hotel 1
## 1874 Resort Hotel 2
## 1875 Resort Hotel 1
## 1876 Resort Hotel 2
## 1877 Resort Hotel 1
## 1878 Resort Hotel 1
## 1879 Resort Hotel 1
## 1880 Resort Hotel 1
## 1881 Resort Hotel 1
## 1882 Resort Hotel 1
## 1883 Resort Hotel 2
## 1884 Resort Hotel 2
## 1885 Resort Hotel 2
## 1886 Resort Hotel 1
## 1887 Resort Hotel 2
## 1888 Resort Hotel 2
## 1889 Resort Hotel 2
## 1890 Resort Hotel 2
## 1891 Resort Hotel 1
## 1892 Resort Hotel 2
## 1893 Resort Hotel 1
## 1894 Resort Hotel 1
## 1895 Resort Hotel 1
## 1896 Resort Hotel 1
## 1897 Resort Hotel 1
## 1898 Resort Hotel 1
## 1899 Resort Hotel 2
## 1900 Resort Hotel 3
## 1901 Resort Hotel 1
## 1902 Resort Hotel 1
## 1903 Resort Hotel 1
## 1904 Resort Hotel 2
## 1905 Resort Hotel 2
## 1906 Resort Hotel 1
## 1907 Resort Hotel 1
## 1908 Resort Hotel 2
## 1909 Resort Hotel 1
## 1910 Resort Hotel 3
## 1911 Resort Hotel 2
## 1912 Resort Hotel 1
## 1913 Resort Hotel 1
## 1914 Resort Hotel 1
## 1915 Resort Hotel 1
## 1916 Resort Hotel 2
## 1917 Resort Hotel 1
## 1918 Resort Hotel 1
## 1919 Resort Hotel 1
## 1920 Resort Hotel 1
## 1921 Resort Hotel 2
## 1922 Resort Hotel 2
## 1923 Resort Hotel 1
## 1924 Resort Hotel 1
## 1925 Resort Hotel 1
## 1926 Resort Hotel 2
## 1927 Resort Hotel 1
## 1928 Resort Hotel 1
## 1929 Resort Hotel 1
## 1930 Resort Hotel 1
## 1931 Resort Hotel 2
## 1932 Resort Hotel 2
## 1933 Resort Hotel 1
## 1934 Resort Hotel 1
## 1935 Resort Hotel 1
## 1936 Resort Hotel 2
## 1937 Resort Hotel 2
## 1938 Resort Hotel 1
## 1939 Resort Hotel 3
## 1940 Resort Hotel 3
## 1941 Resort Hotel 2
## 1942 Resort Hotel 2
## 1943 Resort Hotel 1
## 1944 Resort Hotel 1
## 1945 Resort Hotel 1
## 1946 Resort Hotel 1
## 1947 Resort Hotel 2
## 1948 Resort Hotel 2
## 1949 Resort Hotel 2
## 1950 Resort Hotel 2
## 1951 Resort Hotel 2
## 1952 Resort Hotel 1
## 1953 Resort Hotel 1
## 1954 Resort Hotel 2
## 1955 Resort Hotel 1
## 1956 Resort Hotel 2
## 1957 Resort Hotel 1
## 1958 Resort Hotel 1
## 1959 Resort Hotel 2
## 1960 Resort Hotel 1
## 1961 Resort Hotel 2
## 1962 Resort Hotel 1
## 1963 Resort Hotel 2
## 1964 Resort Hotel 1
## 1965 Resort Hotel 1
## 1966 Resort Hotel 1
## 1967 Resort Hotel 1
## 1968 Resort Hotel 1
## 1969 Resort Hotel 2
## 1970 Resort Hotel 2
## 1971 Resort Hotel 1
## 1972 Resort Hotel 1
## 1973 Resort Hotel 1
## 1974 Resort Hotel 1
## 1975 Resort Hotel 2
## 1976 Resort Hotel 1
## 1977 Resort Hotel 2
## 1978 Resort Hotel 1
## 1979 Resort Hotel 2
## 1980 Resort Hotel 2
## 1981 Resort Hotel 1
## 1982 Resort Hotel 1
## 1983 Resort Hotel 1
## 1984 Resort Hotel 1
## 1985 Resort Hotel 1
## 1986 Resort Hotel 1
## 1987 Resort Hotel 1
## 1988 Resort Hotel 1
## 1989 Resort Hotel 2
## 1990 Resort Hotel 2
## 1991 Resort Hotel 1
## 1992 Resort Hotel 1
## 1993 Resort Hotel 1
## 1994 Resort Hotel 2
## 1995 Resort Hotel 2
## 1996 Resort Hotel 1
## 1997 Resort Hotel 1
## 1998 Resort Hotel 1
## 1999 Resort Hotel 2
## 2000 Resort Hotel 1
## 2001 Resort Hotel 1
## 2002 Resort Hotel 1
## 2003 Resort Hotel 2
## 2004 Resort Hotel 1
## 2005 Resort Hotel 1
## 2006 Resort Hotel 2
## 2007 Resort Hotel 1
## 2008 Resort Hotel 2
## 2009 Resort Hotel 1
## 2010 Resort Hotel 1
## 2011 Resort Hotel 1
## 2012 Resort Hotel 1
## 2013 Resort Hotel 3
## 2014 Resort Hotel 2
## 2015 Resort Hotel 2
## 2016 Resort Hotel 1
## 2017 Resort Hotel 1
## 2018 Resort Hotel 1
## 2019 Resort Hotel 1
## 2020 Resort Hotel 1
## 2021 Resort Hotel 1
## 2022 Resort Hotel 2
## 2023 Resort Hotel 2
## 2024 Resort Hotel 2
## 2025 Resort Hotel 1
## 2026 Resort Hotel 2
## 2027 Resort Hotel 1
## 2028 Resort Hotel 1
## 2029 Resort Hotel 1
## 2030 Resort Hotel 1
## 2031 Resort Hotel 2
## 2032 Resort Hotel 1
## 2033 Resort Hotel 1
## 2034 Resort Hotel 1
## 2035 Resort Hotel 1
## 2036 Resort Hotel 1
## 2037 Resort Hotel 1
## 2038 Resort Hotel 1
## 2039 Resort Hotel 1
## 2040 Resort Hotel 2
## 2041 Resort Hotel 1
## 2042 Resort Hotel 2
## 2043 Resort Hotel 2
## 2044 Resort Hotel 2
## 2045 Resort Hotel 1
## 2046 Resort Hotel 1
## 2047 Resort Hotel 1
## 2048 Resort Hotel 2
## 2049 Resort Hotel 2
## 2050 Resort Hotel 1
## 2051 Resort Hotel 1
## 2052 Resort Hotel 1
## 2053 Resort Hotel 1
## 2054 Resort Hotel 2
## 2055 Resort Hotel 1
## 2056 Resort Hotel 1
## 2057 Resort Hotel 2
## 2058 Resort Hotel 1
## 2059 Resort Hotel 2
## 2060 Resort Hotel 1
## 2061 Resort Hotel 1
## 2062 Resort Hotel 1
## 2063 Resort Hotel 2
## 2064 Resort Hotel 1
## 2065 Resort Hotel 2
## 2066 Resort Hotel 1
## 2067 Resort Hotel 2
## 2068 Resort Hotel 2
## 2069 Resort Hotel 1
## 2070 Resort Hotel 1
## 2071 Resort Hotel 1
## 2072 Resort Hotel 1
## 2073 Resort Hotel 1
## 2074 Resort Hotel 1
## 2075 Resort Hotel 1
## 2076 Resort Hotel 1
## 2077 Resort Hotel 1
## 2078 Resort Hotel 2
## 2079 Resort Hotel 2
## 2080 Resort Hotel 1
## 2081 Resort Hotel 3
## 2082 Resort Hotel 1
## 2083 Resort Hotel 2
## 2084 Resort Hotel 1
## 2085 Resort Hotel 1
## 2086 Resort Hotel 2
## 2087 Resort Hotel 1
## 2088 Resort Hotel 1
## 2089 Resort Hotel 1
## 2090 Resort Hotel 1
## 2091 Resort Hotel 1
## 2092 Resort Hotel 1
## 2093 Resort Hotel 2
## 2094 Resort Hotel 1
## 2095 Resort Hotel 1
## 2096 Resort Hotel 2
## 2097 Resort Hotel 1
## 2098 Resort Hotel 1
## 2099 Resort Hotel 2
## 2100 Resort Hotel 2
## 2101 Resort Hotel 1
## 2102 Resort Hotel 1
## 2103 Resort Hotel 1
## 2104 Resort Hotel 1
## 2105 Resort Hotel 2
## 2106 Resort Hotel 1
## 2107 Resort Hotel 1
## 2108 Resort Hotel 1
## 2109 Resort Hotel 2
## 2110 Resort Hotel 1
## 2111 Resort Hotel 2
## 2112 Resort Hotel 2
## 2113 Resort Hotel 1
## 2114 Resort Hotel 2
## 2115 Resort Hotel 2
## 2116 Resort Hotel 1
## 2117 Resort Hotel 1
## 2118 Resort Hotel 2
## 2119 Resort Hotel 2
## 2120 Resort Hotel 1
## 2121 Resort Hotel 1
## 2122 Resort Hotel 2
## 2123 Resort Hotel 2
## 2124 Resort Hotel 1
## 2125 Resort Hotel 1
## 2126 Resort Hotel 2
## 2127 Resort Hotel 1
## 2128 Resort Hotel 1
## 2129 Resort Hotel 2
## 2130 Resort Hotel 2
## 2131 Resort Hotel 2
## 2132 Resort Hotel 1
## 2133 Resort Hotel 1
## 2134 Resort Hotel 1
## 2135 Resort Hotel 1
## 2136 Resort Hotel 2
## 2137 Resort Hotel 1
## 2138 Resort Hotel 1
## 2139 Resort Hotel 1
## 2140 Resort Hotel 1
## 2141 Resort Hotel 1
## 2142 Resort Hotel 1
## 2143 Resort Hotel 1
## 2144 Resort Hotel 1
## 2145 Resort Hotel 2
## 2146 Resort Hotel 1
## 2147 Resort Hotel 2
## 2148 Resort Hotel 1
## 2149 Resort Hotel 1
## 2150 Resort Hotel 2
## 2151 Resort Hotel 1
## 2152 Resort Hotel 2
## 2153 Resort Hotel 1
## 2154 Resort Hotel 1
## 2155 Resort Hotel 1
## 2156 Resort Hotel 1
## 2157 Resort Hotel 2
## 2158 Resort Hotel 2
## 2159 Resort Hotel 2
## 2160 Resort Hotel 1
## 2161 Resort Hotel 2
## 2162 Resort Hotel 1
## 2163 Resort Hotel 1
## 2164 Resort Hotel 2
## 2165 Resort Hotel 2
## 2166 Resort Hotel 1
## 2167 Resort Hotel 1
## 2168 Resort Hotel 2
## 2169 Resort Hotel 2
## 2170 Resort Hotel 1
## 2171 Resort Hotel 1
## 2172 Resort Hotel 2
## 2173 Resort Hotel 1
## 2174 Resort Hotel 1
## 2175 Resort Hotel 1
## 2176 Resort Hotel 1
## 2177 Resort Hotel 1
## 2178 Resort Hotel 2
## 2179 Resort Hotel 2
## 2180 Resort Hotel 1
## 2181 Resort Hotel 2
## 2182 Resort Hotel 1
## 2183 Resort Hotel 1
## 2184 Resort Hotel 2
## 2185 Resort Hotel 1
## 2186 Resort Hotel 2
## 2187 Resort Hotel 1
## 2188 Resort Hotel 1
## 2189 Resort Hotel 1
## 2190 Resort Hotel 1
## 2191 Resort Hotel 1
## 2192 Resort Hotel 1
## 2193 Resort Hotel 2
## 2194 Resort Hotel 1
## 2195 Resort Hotel 2
## 2196 Resort Hotel 1
## 2197 Resort Hotel 1
## 2198 Resort Hotel 3
## 2199 Resort Hotel 1
## 2200 Resort Hotel 2
## 2201 Resort Hotel 1
## 2202 Resort Hotel 2
## 2203 Resort Hotel 2
## 2204 Resort Hotel 1
## 2205 Resort Hotel 1
## 2206 Resort Hotel 2
## 2207 Resort Hotel 2
## 2208 Resort Hotel 2
## 2209 Resort Hotel 1
## 2210 Resort Hotel 2
## 2211 Resort Hotel 2
## 2212 Resort Hotel 2
## 2213 Resort Hotel 2
## 2214 Resort Hotel 2
## 2215 Resort Hotel 1
## 2216 Resort Hotel 1
## 2217 Resort Hotel 1
## 2218 Resort Hotel 1
## 2219 Resort Hotel 2
## 2220 Resort Hotel 1
## 2221 Resort Hotel 1
## 2222 Resort Hotel 1
## 2223 Resort Hotel 2
## 2224 Resort Hotel 1
## 2225 Resort Hotel 2
## 2226 Resort Hotel 1
## 2227 Resort Hotel 2
## 2228 Resort Hotel 1
## 2229 Resort Hotel 1
## 2230 Resort Hotel 1
## 2231 Resort Hotel 1
## 2232 Resort Hotel 1
## 2233 Resort Hotel 1
## 2234 Resort Hotel 2
## 2235 Resort Hotel 1
## 2236 Resort Hotel 2
## 2237 Resort Hotel 2
## 2238 Resort Hotel 1
## 2239 Resort Hotel 1
## 2240 Resort Hotel 2
## 2241 Resort Hotel 1
## 2242 Resort Hotel 2
## 2243 Resort Hotel 1
## 2244 Resort Hotel 3
## 2245 Resort Hotel 1
## 2246 Resort Hotel 1
## 2247 Resort Hotel 1
## 2248 Resort Hotel 1
## 2249 Resort Hotel 1
## 2250 Resort Hotel 2
## 2251 Resort Hotel 2
## 2252 Resort Hotel 2
## 2253 Resort Hotel 1
## 2254 Resort Hotel 1
## 2255 Resort Hotel 1
## 2256 Resort Hotel 1
## 2257 Resort Hotel 1
## 2258 Resort Hotel 1
## 2259 Resort Hotel 1
## 2260 Resort Hotel 2
## 2261 Resort Hotel 2
## 2262 Resort Hotel 2
## 2263 Resort Hotel 2
## 2264 Resort Hotel 1
## 2265 Resort Hotel 1
## 2266 Resort Hotel 2
## 2267 Resort Hotel 2
## 2268 Resort Hotel 2
## 2269 Resort Hotel 1
## 2270 Resort Hotel 2
## 2271 Resort Hotel 2
## 2272 Resort Hotel 2
## 2273 Resort Hotel 1
## 2274 Resort Hotel 2
## 2275 Resort Hotel 2
## 2276 Resort Hotel 1
## 2277 Resort Hotel 2
## 2278 Resort Hotel 2
## 2279 Resort Hotel 1
## 2280 Resort Hotel 1
## 2281 Resort Hotel 1
## 2282 Resort Hotel 1
## 2283 Resort Hotel 2
## 2284 Resort Hotel 1
## 2285 Resort Hotel 1
## 2286 Resort Hotel 1
## 2287 Resort Hotel 2
## 2288 Resort Hotel 2
## 2289 Resort Hotel 2
## 2290 Resort Hotel 2
## 2291 Resort Hotel 2
## 2292 Resort Hotel 1
## 2293 Resort Hotel 1
## 2294 Resort Hotel 1
## 2295 Resort Hotel 2
## 2296 Resort Hotel 2
## 2297 Resort Hotel 2
## 2298 Resort Hotel 2
## 2299 Resort Hotel 2
## 2300 Resort Hotel 2
## 2301 Resort Hotel 3
## 2302 Resort Hotel 1
## 2303 Resort Hotel 1
## 2304 Resort Hotel 1
## 2305 Resort Hotel 1
## 2306 Resort Hotel 2
## 2307 Resort Hotel 1
## 2308 Resort Hotel 2
## 2309 Resort Hotel 1
## 2310 Resort Hotel 2
## 2311 Resort Hotel 2
## 2312 Resort Hotel 1
## 2313 Resort Hotel 1
## 2314 Resort Hotel 1
## 2315 Resort Hotel 1
## 2316 Resort Hotel 1
## 2317 Resort Hotel 1
## 2318 Resort Hotel 2
## 2319 Resort Hotel 2
## 2320 Resort Hotel 2
## 2321 Resort Hotel 2
## 2322 Resort Hotel 1
## 2323 Resort Hotel 2
## 2324 Resort Hotel 2
## 2325 Resort Hotel 2
## 2326 Resort Hotel 1
## 2327 Resort Hotel 1
## 2328 Resort Hotel 2
## 2329 Resort Hotel 1
## 2330 Resort Hotel 2
## 2331 Resort Hotel 2
## 2332 Resort Hotel 1
## 2333 Resort Hotel 2
## 2334 Resort Hotel 1
## 2335 Resort Hotel 1
## 2336 Resort Hotel 2
## 2337 Resort Hotel 1
## 2338 Resort Hotel 1
## 2339 Resort Hotel 1
## 2340 Resort Hotel 1
## 2341 Resort Hotel 1
## 2342 Resort Hotel 2
## 2343 Resort Hotel 2
## 2344 Resort Hotel 1
## 2345 Resort Hotel 2
## 2346 Resort Hotel 2
## 2347 Resort Hotel 1
## 2348 Resort Hotel 2
## 2349 Resort Hotel 1
## 2350 Resort Hotel 2
## 2351 Resort Hotel 2
## 2352 Resort Hotel 1
## 2353 Resort Hotel 1
## 2354 Resort Hotel 1
## 2355 Resort Hotel 1
## 2356 Resort Hotel 2
## 2357 Resort Hotel 1
## 2358 Resort Hotel 1
## 2359 Resort Hotel 1
## 2360 Resort Hotel 1
## 2361 Resort Hotel 2
## 2362 Resort Hotel 1
## 2363 Resort Hotel 1
## 2364 Resort Hotel 2
## 2365 Resort Hotel 1
## 2366 Resort Hotel 1
## 2367 Resort Hotel 1
## 2368 Resort Hotel 1
## 2369 Resort Hotel 1
## 2370 Resort Hotel 1
## 2371 Resort Hotel 2
## 2372 Resort Hotel 1
## 2373 Resort Hotel 1
## 2374 Resort Hotel 1
## 2375 Resort Hotel 2
## 2376 Resort Hotel 2
## 2377 Resort Hotel 1
## 2378 Resort Hotel 1
## 2379 Resort Hotel 1
## 2380 Resort Hotel 2
## 2381 Resort Hotel 1
## 2382 Resort Hotel 2
## 2383 Resort Hotel 2
## 2384 Resort Hotel 2
## 2385 Resort Hotel 2
## 2386 Resort Hotel 2
## 2387 Resort Hotel 2
## 2388 Resort Hotel 1
## 2389 Resort Hotel 1
## 2390 Resort Hotel 2
## 2391 Resort Hotel 2
## 2392 Resort Hotel 2
## 2393 Resort Hotel 1
## 2394 Resort Hotel 2
## 2395 Resort Hotel 1
## 2396 Resort Hotel 1
## 2397 Resort Hotel 2
## 2398 Resort Hotel 2
## 2399 Resort Hotel 2
## 2400 Resort Hotel 1
## 2401 Resort Hotel 1
## 2402 Resort Hotel 2
## 2403 Resort Hotel 2
## 2404 Resort Hotel 1
## 2405 Resort Hotel 2
## 2406 Resort Hotel 1
## 2407 Resort Hotel 2
## 2408 Resort Hotel 3
## 2409 Resort Hotel 1
## 2410 Resort Hotel 1
## 2411 Resort Hotel 1
## 2412 Resort Hotel 2
## 2413 Resort Hotel 1
## 2414 Resort Hotel 1
## 2415 Resort Hotel 1
## 2416 Resort Hotel 1
## 2417 Resort Hotel 2
## 2418 Resort Hotel 2
## 2419 Resort Hotel 2
## 2420 Resort Hotel 2
## 2421 Resort Hotel 1
## 2422 Resort Hotel 1
## 2423 Resort Hotel 2
## 2424 Resort Hotel 3
## 2425 Resort Hotel 1
## 2426 Resort Hotel 1
## 2427 Resort Hotel 2
## 2428 Resort Hotel 2
## 2429 Resort Hotel 1
## 2430 Resort Hotel 1
## 2431 Resort Hotel 1
## 2432 Resort Hotel 1
## 2433 Resort Hotel 2
## 2434 Resort Hotel 2
## 2435 Resort Hotel 2
## 2436 Resort Hotel 2
## 2437 Resort Hotel 1
## 2438 Resort Hotel 1
## 2439 Resort Hotel 2
## 2440 Resort Hotel 2
## 2441 Resort Hotel 1
## 2442 Resort Hotel 1
## 2443 Resort Hotel 1
## 2444 Resort Hotel 2
## 2445 Resort Hotel 1
## 2446 Resort Hotel 2
## 2447 Resort Hotel 2
## 2448 Resort Hotel 1
## 2449 Resort Hotel 2
## 2450 Resort Hotel 2
## 2451 Resort Hotel 1
## 2452 Resort Hotel 2
## 2453 Resort Hotel 2
## 2454 Resort Hotel 2
## 2455 Resort Hotel 2
## 2456 Resort Hotel 1
## 2457 Resort Hotel 1
## 2458 Resort Hotel 1
## 2459 Resort Hotel 1
## 2460 Resort Hotel 2
## 2461 Resort Hotel 1
## 2462 Resort Hotel 2
## 2463 Resort Hotel 1
## 2464 Resort Hotel 2
## 2465 Resort Hotel 1
## 2466 Resort Hotel 3
## 2467 Resort Hotel 2
## 2468 Resort Hotel 1
## 2469 Resort Hotel 2
## 2470 Resort Hotel 1
## 2471 Resort Hotel 1
## 2472 Resort Hotel 1
## 2473 Resort Hotel 1
## 2474 Resort Hotel 2
## 2475 Resort Hotel 1
## 2476 Resort Hotel 1
## 2477 Resort Hotel 1
## 2478 Resort Hotel 1
## 2479 Resort Hotel 1
## 2480 Resort Hotel 2
## 2481 Resort Hotel 1
## 2482 Resort Hotel 1
## 2483 Resort Hotel 2
## 2484 Resort Hotel 1
## 2485 Resort Hotel 1
## 2486 Resort Hotel 1
## 2487 Resort Hotel 1
## 2488 Resort Hotel 1
## 2489 Resort Hotel 2
## 2490 Resort Hotel 1
## 2491 Resort Hotel 2
## 2492 Resort Hotel 2
## 2493 Resort Hotel 1
## 2494 Resort Hotel 2
## 2495 Resort Hotel 2
## 2496 Resort Hotel 2
## 2497 Resort Hotel 1
## 2498 Resort Hotel 1
## 2499 Resort Hotel 2
## 2500 Resort Hotel 2
## 2501 Resort Hotel 2
## 2502 Resort Hotel 1
## 2503 Resort Hotel 2
## 2504 Resort Hotel 2
## 2505 Resort Hotel 1
## 2506 Resort Hotel 1
## 2507 Resort Hotel 1
## 2508 Resort Hotel 1
## 2509 Resort Hotel 2
## 2510 Resort Hotel 2
## 2511 Resort Hotel 1
## 2512 Resort Hotel 2
## 2513 Resort Hotel 1
## 2514 Resort Hotel 2
## 2515 Resort Hotel 1
## 2516 Resort Hotel 1
## 2517 Resort Hotel 1
## 2518 Resort Hotel 1
## 2519 Resort Hotel 1
## 2520 Resort Hotel 1
## 2521 Resort Hotel 1
## 2522 Resort Hotel 1
## 2523 Resort Hotel 1
## 2524 Resort Hotel 1
## 2525 Resort Hotel 2
## 2526 Resort Hotel 1
## 2527 Resort Hotel 1
## 2528 Resort Hotel 2
## 2529 Resort Hotel 1
## 2530 Resort Hotel 1
## 2531 Resort Hotel 2
## 2532 Resort Hotel 2
## 2533 Resort Hotel 1
## 2534 Resort Hotel 1
## 2535 Resort Hotel 1
## 2536 Resort Hotel 1
## 2537 Resort Hotel 1
## 2538 Resort Hotel 1
## 2539 Resort Hotel 2
## 2540 Resort Hotel 2
## 2541 Resort Hotel 2
## 2542 Resort Hotel 1
## 2543 Resort Hotel 2
## 2544 Resort Hotel 1
## 2545 Resort Hotel 1
## 2546 Resort Hotel 1
## 2547 Resort Hotel 1
## 2548 Resort Hotel 2
## 2549 Resort Hotel 2
## 2550 Resort Hotel 1
## 2551 Resort Hotel 1
## 2552 Resort Hotel 1
## 2553 Resort Hotel 1
## 2554 Resort Hotel 1
## 2555 Resort Hotel 2
## 2556 Resort Hotel 1
## 2557 Resort Hotel 2
## 2558 Resort Hotel 2
## 2559 Resort Hotel 2
## 2560 Resort Hotel 1
## 2561 Resort Hotel 2
## 2562 Resort Hotel 1
## 2563 Resort Hotel 1
## 2564 Resort Hotel 1
## 2565 Resort Hotel 1
## 2566 Resort Hotel 1
## 2567 Resort Hotel 2
## 2568 Resort Hotel 1
## 2569 Resort Hotel 2
## 2570 Resort Hotel 2
## 2571 Resort Hotel 1
## 2572 Resort Hotel 1
## 2573 Resort Hotel 2
## 2574 Resort Hotel 2
## 2575 Resort Hotel 1
## 2576 Resort Hotel 1
## 2577 Resort Hotel 2
## 2578 Resort Hotel 1
## 2579 Resort Hotel 2
## 2580 Resort Hotel 2
## 2581 Resort Hotel 2
## 2582 Resort Hotel 1
## 2583 Resort Hotel 1
## 2584 Resort Hotel 1
## 2585 Resort Hotel 2
## 2586 Resort Hotel 1
## 2587 Resort Hotel 1
## 2588 Resort Hotel 1
## 2589 Resort Hotel 1
## 2590 Resort Hotel 1
## 2591 Resort Hotel 1
## 2592 Resort Hotel 1
## 2593 Resort Hotel 1
## 2594 Resort Hotel 2
## 2595 Resort Hotel 3
## 2596 Resort Hotel 2
## 2597 Resort Hotel 1
## 2598 Resort Hotel 2
## 2599 Resort Hotel 1
## 2600 Resort Hotel 1
## 2601 Resort Hotel 1
## 2602 Resort Hotel 2
## 2603 Resort Hotel 2
## 2604 Resort Hotel 1
## 2605 Resort Hotel 2
## 2606 Resort Hotel 1
## 2607 Resort Hotel 1
## 2608 Resort Hotel 2
## 2609 Resort Hotel 1
## 2610 Resort Hotel 1
## 2611 Resort Hotel 2
## 2612 Resort Hotel 1
## 2613 Resort Hotel 2
## 2614 Resort Hotel 1
## 2615 Resort Hotel 1
## 2616 Resort Hotel 1
## 2617 Resort Hotel 1
## 2618 Resort Hotel 1
## 2619 Resort Hotel 1
## 2620 Resort Hotel 1
## 2621 Resort Hotel 2
## 2622 Resort Hotel 2
## 2623 Resort Hotel 2
## 2624 Resort Hotel 1
## 2625 Resort Hotel 1
## 2626 Resort Hotel 2
## 2627 Resort Hotel 2
## 2628 Resort Hotel 1
## 2629 Resort Hotel 1
## 2630 Resort Hotel 2
## 2631 Resort Hotel 1
## 2632 Resort Hotel 1
## 2633 Resort Hotel 1
## 2634 Resort Hotel 1
## 2635 Resort Hotel 2
## 2636 Resort Hotel 1
## 2637 Resort Hotel 1
## 2638 Resort Hotel 2
## 2639 Resort Hotel 1
## 2640 Resort Hotel 2
## 2641 Resort Hotel 1
## 2642 Resort Hotel 2
## 2643 Resort Hotel 2
## 2644 Resort Hotel 2
## 2645 Resort Hotel 1
## 2646 Resort Hotel 1
## 2647 Resort Hotel 1
## 2648 Resort Hotel 2
## 2649 Resort Hotel 1
## 2650 Resort Hotel 2
## 2651 Resort Hotel 1
## 2652 Resort Hotel 2
## 2653 Resort Hotel 1
## 2654 Resort Hotel 1
## 2655 Resort Hotel 2
## 2656 Resort Hotel 2
## 2657 Resort Hotel 2
## 2658 Resort Hotel 1
## 2659 Resort Hotel 2
## 2660 Resort Hotel 1
## 2661 Resort Hotel 1
## 2662 Resort Hotel 1
## 2663 Resort Hotel 2
## 2664 Resort Hotel 1
## 2665 Resort Hotel 2
## 2666 Resort Hotel 1
## 2667 Resort Hotel 1
## 2668 Resort Hotel 1
## 2669 Resort Hotel 1
## 2670 Resort Hotel 1
## 2671 Resort Hotel 1
## 2672 Resort Hotel 1
## 2673 Resort Hotel 1
## 2674 Resort Hotel 1
## 2675 Resort Hotel 1
## 2676 Resort Hotel 1
## 2677 Resort Hotel 1
## 2678 Resort Hotel 1
## 2679 Resort Hotel 2
## 2680 Resort Hotel 2
## 2681 Resort Hotel 1
## 2682 Resort Hotel 1
## 2683 Resort Hotel 1
## 2684 Resort Hotel 1
## 2685 Resort Hotel 1
## 2686 Resort Hotel 1
## 2687 Resort Hotel 2
## 2688 Resort Hotel 2
## 2689 Resort Hotel 2
## 2690 Resort Hotel 1
## 2691 Resort Hotel 2
## 2692 Resort Hotel 2
## 2693 Resort Hotel 1
## 2694 Resort Hotel 1
## 2695 Resort Hotel 2
## 2696 Resort Hotel 2
## 2697 Resort Hotel 1
## 2698 Resort Hotel 1
## 2699 Resort Hotel 1
## 2700 Resort Hotel 1
## 2701 Resort Hotel 1
## 2702 Resort Hotel 1
## 2703 Resort Hotel 1
## 2704 Resort Hotel 2
## 2705 Resort Hotel 2
## 2706 Resort Hotel 1
## 2707 Resort Hotel 1
## 2708 Resort Hotel 1
## 2709 Resort Hotel 2
## 2710 Resort Hotel 1
## 2711 Resort Hotel 1
## 2712 Resort Hotel 1
## 2713 Resort Hotel 2
## 2714 Resort Hotel 1
## 2715 Resort Hotel 1
## 2716 Resort Hotel 2
## 2717 Resort Hotel 1
## 2718 Resort Hotel 1
## 2719 Resort Hotel 1
## 2720 Resort Hotel 2
## 2721 Resort Hotel 2
## 2722 Resort Hotel 2
## 2723 Resort Hotel 2
## 2724 Resort Hotel 2
## 2725 Resort Hotel 2
## 2726 Resort Hotel 2
## 2727 Resort Hotel 1
## 2728 Resort Hotel 3
## 2729 Resort Hotel 1
## 2730 Resort Hotel 1
## 2731 Resort Hotel 1
## 2732 Resort Hotel 2
## 2733 Resort Hotel 2
## 2734 Resort Hotel 2
## 2735 Resort Hotel 2
## 2736 Resort Hotel 1
## 2737 Resort Hotel 2
## 2738 Resort Hotel 1
## 2739 Resort Hotel 1
## 2740 Resort Hotel 2
## 2741 Resort Hotel 1
## 2742 Resort Hotel 2
## 2743 Resort Hotel 1
## 2744 Resort Hotel 1
## 2745 Resort Hotel 2
## 2746 Resort Hotel 1
## 2747 Resort Hotel 1
## 2748 Resort Hotel 1
## 2749 Resort Hotel 1
## 2750 Resort Hotel 1
## 2751 Resort Hotel 1
## 2752 Resort Hotel 1
## 2753 Resort Hotel 1
## 2754 Resort Hotel 1
## 2755 Resort Hotel 1
## 2756 Resort Hotel 1
## 2757 Resort Hotel 1
## 2758 Resort Hotel 1
## 2759 Resort Hotel 2
## 2760 Resort Hotel 2
## 2761 Resort Hotel 2
## 2762 Resort Hotel 2
## 2763 Resort Hotel 1
## 2764 Resort Hotel 2
## 2765 Resort Hotel 2
## 2766 Resort Hotel 1
## 2767 Resort Hotel 1
## 2768 Resort Hotel 1
## 2769 Resort Hotel 2
## 2770 Resort Hotel 1
## 2771 Resort Hotel 1
## 2772 Resort Hotel 2
## 2773 Resort Hotel 2
## 2774 Resort Hotel 1
## 2775 Resort Hotel 2
## 2776 Resort Hotel 1
## 2777 Resort Hotel 1
## 2778 Resort Hotel 1
## 2779 Resort Hotel 2
## 2780 Resort Hotel 1
## 2781 Resort Hotel 1
## 2782 Resort Hotel 1
## 2783 Resort Hotel 1
## 2784 Resort Hotel 1
## 2785 Resort Hotel 1
## 2786 Resort Hotel 1
## 2787 Resort Hotel 1
## 2788 Resort Hotel 2
## 2789 Resort Hotel 2
## 2790 Resort Hotel 2
## 2791 Resort Hotel 1
## 2792 Resort Hotel 1
## 2793 Resort Hotel 1
## 2794 Resort Hotel 2
## 2795 Resort Hotel 1
## 2796 Resort Hotel 1
## 2797 Resort Hotel 1
## 2798 Resort Hotel 1
## 2799 Resort Hotel 2
## 2800 Resort Hotel 1
## 2801 Resort Hotel 1
## 2802 Resort Hotel 1
## 2803 Resort Hotel 1
## 2804 Resort Hotel 1
## 2805 Resort Hotel 1
## 2806 Resort Hotel 1
## 2807 Resort Hotel 1
## 2808 Resort Hotel 1
## 2809 Resort Hotel 1
## 2810 Resort Hotel 2
## 2811 Resort Hotel 1
## 2812 Resort Hotel 1
## 2813 Resort Hotel 1
## 2814 Resort Hotel 2
## 2815 Resort Hotel 1
## 2816 Resort Hotel 1
## 2817 Resort Hotel 1
## 2818 Resort Hotel 2
## 2819 Resort Hotel 2
## 2820 Resort Hotel 1
## 2821 Resort Hotel 2
## 2822 Resort Hotel 2
## 2823 Resort Hotel 1
## 2824 Resort Hotel 1
## 2825 Resort Hotel 1
## 2826 Resort Hotel 1
## 2827 Resort Hotel 1
## 2828 Resort Hotel 2
## 2829 Resort Hotel 1
## 2830 Resort Hotel 1
## 2831 Resort Hotel 1
## 2832 Resort Hotel 2
## 2833 Resort Hotel 1
## 2834 Resort Hotel 1
## 2835 Resort Hotel 1
## 2836 Resort Hotel 2
## 2837 Resort Hotel 2
## 2838 Resort Hotel 1
## 2839 Resort Hotel 1
## 2840 Resort Hotel 1
## 2841 Resort Hotel 1
## 2842 Resort Hotel 1
## 2843 Resort Hotel 1
## 2844 Resort Hotel 2
## 2845 Resort Hotel 2
## 2846 Resort Hotel 1
## 2847 Resort Hotel 1
## 2848 Resort Hotel 2
## 2849 Resort Hotel 2
## 2850 Resort Hotel 1
## 2851 Resort Hotel 2
## 2852 Resort Hotel 2
## 2853 Resort Hotel 2
## 2854 Resort Hotel 2
## 2855 Resort Hotel 2
## 2856 Resort Hotel 1
## 2857 Resort Hotel 1
## 2858 Resort Hotel 2
## 2859 Resort Hotel 1
## 2860 Resort Hotel 2
## 2861 Resort Hotel 2
## 2862 Resort Hotel 1
## 2863 Resort Hotel 2
## 2864 Resort Hotel 2
## 2865 Resort Hotel 1
## 2866 Resort Hotel 2
## 2867 Resort Hotel 2
## 2868 Resort Hotel 1
## 2869 Resort Hotel 1
## 2870 Resort Hotel 1
## 2871 Resort Hotel 2
## 2872 Resort Hotel 2
## 2873 Resort Hotel 1
## 2874 Resort Hotel 1
## 2875 Resort Hotel 1
## 2876 Resort Hotel 1
## 2877 Resort Hotel 2
## 2878 Resort Hotel 1
## 2879 Resort Hotel 2
## 2880 Resort Hotel 2
## 2881 Resort Hotel 2
## 2882 Resort Hotel 2
## 2883 Resort Hotel 1
## 2884 Resort Hotel 2
## 2885 Resort Hotel 2
## 2886 Resort Hotel 1
## 2887 Resort Hotel 1
## 2888 Resort Hotel 1
## 2889 Resort Hotel 1
## 2890 Resort Hotel 1
## 2891 Resort Hotel 1
## 2892 Resort Hotel 2
## 2893 Resort Hotel 2
## 2894 Resort Hotel 1
## 2895 Resort Hotel 1
## 2896 Resort Hotel 1
## 2897 Resort Hotel 1
## 2898 Resort Hotel 2
## 2899 Resort Hotel 2
## 2900 Resort Hotel 1
## 2901 Resort Hotel 1
## 2902 Resort Hotel 1
## 2903 Resort Hotel 2
## 2904 Resort Hotel 1
## 2905 Resort Hotel 1
## 2906 Resort Hotel 2
## 2907 Resort Hotel 1
## 2908 Resort Hotel 2
## 2909 Resort Hotel 1
## 2910 Resort Hotel 1
## 2911 Resort Hotel 1
## 2912 Resort Hotel 2
## 2913 Resort Hotel 1
## 2914 Resort Hotel 1
## 2915 Resort Hotel 2
## 2916 Resort Hotel 1
## 2917 Resort Hotel 1
## 2918 Resort Hotel 2
## 2919 Resort Hotel 1
## 2920 Resort Hotel 2
## 2921 Resort Hotel 2
## 2922 Resort Hotel 1
## 2923 Resort Hotel 1
## 2924 Resort Hotel 1
## 2925 Resort Hotel 1
## 2926 Resort Hotel 1
## 2927 Resort Hotel 2
## 2928 Resort Hotel 1
## 2929 Resort Hotel 2
## 2930 Resort Hotel 2
## 2931 Resort Hotel 2
## 2932 Resort Hotel 1
## 2933 Resort Hotel 1
## 2934 Resort Hotel 1
## 2935 Resort Hotel 2
## 2936 Resort Hotel 1
## 2937 Resort Hotel 1
## 2938 Resort Hotel 2
## 2939 Resort Hotel 1
## 2940 Resort Hotel 1
## 2941 Resort Hotel 1
## 2942 Resort Hotel 1
## 2943 Resort Hotel 1
## 2944 Resort Hotel 2
## 2945 Resort Hotel 2
## 2946 Resort Hotel 2
## 2947 Resort Hotel 1
## 2948 Resort Hotel 2
## 2949 Resort Hotel 1
## 2950 Resort Hotel 1
## 2951 Resort Hotel 1
## 2952 Resort Hotel 2
## 2953 Resort Hotel 1
## 2954 Resort Hotel 1
## 2955 Resort Hotel 2
## 2956 Resort Hotel 1
## 2957 Resort Hotel 1
## 2958 Resort Hotel 2
## 2959 Resort Hotel 1
## 2960 Resort Hotel 1
## 2961 Resort Hotel 2
## 2962 Resort Hotel 1
## 2963 Resort Hotel 2
## 2964 Resort Hotel 1
## 2965 Resort Hotel 1
## 2966 Resort Hotel 1
## 2967 Resort Hotel 1
## 2968 Resort Hotel 1
## 2969 Resort Hotel 1
## 2970 Resort Hotel 2
## 2971 Resort Hotel 2
## 2972 Resort Hotel 1
## 2973 Resort Hotel 2
## 2974 Resort Hotel 1
## 2975 Resort Hotel 1
## 2976 Resort Hotel 1
## 2977 Resort Hotel 1
## 2978 Resort Hotel 2
## 2979 Resort Hotel 1
## 2980 Resort Hotel 1
## 2981 Resort Hotel 1
## 2982 Resort Hotel 2
## 2983 Resort Hotel 1
## 2984 Resort Hotel 1
## 2985 Resort Hotel 1
## 2986 Resort Hotel 1
## 2987 Resort Hotel 1
## 2988 Resort Hotel 2
## 2989 Resort Hotel 1
## 2990 Resort Hotel 1
## 2991 Resort Hotel 1
## 2992 Resort Hotel 1
## 2993 Resort Hotel 2
## 2994 Resort Hotel 2
## 2995 Resort Hotel 1
## 2996 Resort Hotel 1
## 2997 Resort Hotel 1
## 2998 Resort Hotel 1
## 2999 Resort Hotel 2
## 3000 Resort Hotel 1
## 3001 Resort Hotel 1
## 3002 Resort Hotel 1
## 3003 Resort Hotel 1
## 3004 Resort Hotel 1
## 3005 Resort Hotel 1
## 3006 Resort Hotel 1
## 3007 Resort Hotel 3
## 3008 Resort Hotel 2
## 3009 Resort Hotel 1
## 3010 Resort Hotel 2
## 3011 Resort Hotel 1
## 3012 Resort Hotel 1
## 3013 Resort Hotel 1
## 3014 Resort Hotel 1
## 3015 Resort Hotel 1
## 3016 Resort Hotel 1
## 3017 Resort Hotel 1
## 3018 Resort Hotel 2
## 3019 Resort Hotel 2
## 3020 Resort Hotel 1
## 3021 Resort Hotel 2
## 3022 Resort Hotel 1
## 3023 Resort Hotel 1
## 3024 Resort Hotel 2
## 3025 Resort Hotel 1
## 3026 Resort Hotel 2
## 3027 Resort Hotel 1
## 3028 Resort Hotel 2
## 3029 Resort Hotel 2
## 3030 Resort Hotel 1
## 3031 Resort Hotel 1
## 3032 Resort Hotel 2
## 3033 Resort Hotel 1
## 3034 Resort Hotel 1
## 3035 Resort Hotel 2
## 3036 Resort Hotel 2
## 3037 Resort Hotel 2
## 3038 Resort Hotel 2
## 3039 Resort Hotel 1
## 3040 Resort Hotel 1
## 3041 Resort Hotel 1
## 3042 Resort Hotel 1
## 3043 Resort Hotel 2
## 3044 Resort Hotel 1
## 3045 Resort Hotel 1
## 3046 Resort Hotel 2
## 3047 Resort Hotel 1
## 3048 Resort Hotel 1
## 3049 Resort Hotel 1
## 3050 Resort Hotel 1
## 3051 Resort Hotel 1
## 3052 Resort Hotel 1
## 3053 Resort Hotel 1
## 3054 Resort Hotel 1
## 3055 Resort Hotel 1
## 3056 Resort Hotel 1
## 3057 Resort Hotel 1
## 3058 Resort Hotel 1
## 3059 Resort Hotel 1
## 3060 Resort Hotel 1
## 3061 Resort Hotel 2
## 3062 Resort Hotel 1
## 3063 Resort Hotel 2
## 3064 Resort Hotel 1
## 3065 Resort Hotel 2
## 3066 Resort Hotel 2
## 3067 Resort Hotel 1
## 3068 Resort Hotel 1
## 3069 Resort Hotel 1
## 3070 Resort Hotel 2
## 3071 Resort Hotel 3
## 3072 Resort Hotel 2
## 3073 Resort Hotel 2
## 3074 Resort Hotel 2
## 3075 Resort Hotel 1
## 3076 Resort Hotel 1
## 3077 Resort Hotel 2
## 3078 Resort Hotel 1
## 3079 Resort Hotel 1
## 3080 Resort Hotel 1
## 3081 Resort Hotel 1
## 3082 Resort Hotel 2
## 3083 Resort Hotel 2
## 3084 Resort Hotel 2
## 3085 Resort Hotel 1
## 3086 Resort Hotel 1
## 3087 Resort Hotel 2
## 3088 Resort Hotel 1
## 3089 Resort Hotel 1
## 3090 Resort Hotel 2
## 3091 Resort Hotel 1
## 3092 Resort Hotel 1
## 3093 Resort Hotel 2
## 3094 Resort Hotel 1
## 3095 Resort Hotel 1
## 3096 Resort Hotel 2
## 3097 Resort Hotel 2
## 3098 Resort Hotel 2
## 3099 Resort Hotel 1
## 3100 Resort Hotel 2
## 3101 Resort Hotel 1
## 3102 Resort Hotel 1
## 3103 Resort Hotel 2
## 3104 Resort Hotel 1
## 3105 Resort Hotel 1
## 3106 Resort Hotel 2
## 3107 Resort Hotel 1
## 3108 Resort Hotel 2
## 3109 Resort Hotel 1
## 3110 Resort Hotel 1
## 3111 Resort Hotel 1
## 3112 Resort Hotel 1
## 3113 Resort Hotel 1
## 3114 Resort Hotel 2
## 3115 Resort Hotel 2
## 3116 Resort Hotel 2
## 3117 Resort Hotel 1
## 3118 Resort Hotel 1
## 3119 Resort Hotel 1
## 3120 Resort Hotel 1
## 3121 Resort Hotel 1
## 3122 Resort Hotel 1
## 3123 Resort Hotel 1
## 3124 Resort Hotel 1
## 3125 Resort Hotel 1
## 3126 Resort Hotel 1
## 3127 Resort Hotel 1
## 3128 Resort Hotel 1
## 3129 Resort Hotel 2
## 3130 Resort Hotel 1
## 3131 Resort Hotel 2
## 3132 Resort Hotel 1
## 3133 Resort Hotel 1
## 3134 Resort Hotel 1
## 3135 Resort Hotel 1
## 3136 Resort Hotel 2
## 3137 Resort Hotel 2
## 3138 Resort Hotel 1
## 3139 Resort Hotel 1
## 3140 Resort Hotel 2
## 3141 Resort Hotel 1
## 3142 Resort Hotel 1
## 3143 Resort Hotel 1
## 3144 Resort Hotel 1
## 3145 Resort Hotel 1
## 3146 Resort Hotel 1
## 3147 Resort Hotel 2
## 3148 Resort Hotel 2
## 3149 Resort Hotel 1
## 3150 Resort Hotel 1
## 3151 Resort Hotel 1
## 3152 Resort Hotel 2
## 3153 Resort Hotel 1
## 3154 Resort Hotel 1
## 3155 Resort Hotel 1
## 3156 Resort Hotel 1
## 3157 Resort Hotel 1
## 3158 Resort Hotel 1
## 3159 Resort Hotel 2
## 3160 Resort Hotel 2
## 3161 Resort Hotel 2
## 3162 Resort Hotel 1
## 3163 Resort Hotel 2
## 3164 Resort Hotel 2
## 3165 Resort Hotel 2
## 3166 Resort Hotel 1
## 3167 Resort Hotel 1
## 3168 Resort Hotel 1
## 3169 Resort Hotel 2
## 3170 Resort Hotel 2
## 3171 Resort Hotel 1
## 3172 Resort Hotel 2
## 3173 Resort Hotel 2
## 3174 Resort Hotel 2
## 3175 Resort Hotel 2
## 3176 Resort Hotel 2
## 3177 Resort Hotel 2
## 3178 Resort Hotel 2
## 3179 Resort Hotel 1
## 3180 Resort Hotel 1
## 3181 Resort Hotel 1
## 3182 Resort Hotel 1
## 3183 Resort Hotel 2
## 3184 Resort Hotel 2
## 3185 Resort Hotel 1
## 3186 Resort Hotel 1
## 3187 Resort Hotel 1
## 3188 Resort Hotel 2
## 3189 Resort Hotel 2
## 3190 Resort Hotel 1
## 3191 Resort Hotel 1
## 3192 Resort Hotel 2
## 3193 Resort Hotel 1
## 3194 Resort Hotel 1
## 3195 Resort Hotel 1
## 3196 Resort Hotel 2
## 3197 Resort Hotel 2
## 3198 Resort Hotel 2
## 3199 Resort Hotel 2
## 3200 Resort Hotel 1
## 3201 Resort Hotel 2
## 3202 Resort Hotel 2
## 3203 Resort Hotel 1
## 3204 Resort Hotel 2
## 3205 Resort Hotel 1
## 3206 Resort Hotel 2
## 3207 Resort Hotel 1
## 3208 Resort Hotel 2
## 3209 Resort Hotel 1
## 3210 Resort Hotel 1
## 3211 Resort Hotel 2
## 3212 Resort Hotel 2
## 3213 Resort Hotel 2
## 3214 Resort Hotel 1
## 3215 Resort Hotel 1
## 3216 Resort Hotel 2
## 3217 Resort Hotel 2
## 3218 Resort Hotel 1
## 3219 Resort Hotel 2
## 3220 Resort Hotel 1
## 3221 Resort Hotel 2
## 3222 Resort Hotel 1
## 3223 Resort Hotel 2
## 3224 Resort Hotel 1
## 3225 Resort Hotel 2
## 3226 Resort Hotel 2
## 3227 Resort Hotel 1
## 3228 Resort Hotel 1
## 3229 Resort Hotel 1
## 3230 Resort Hotel 2
## 3231 Resort Hotel 1
## 3232 Resort Hotel 1
## 3233 Resort Hotel 1
## 3234 Resort Hotel 1
## 3235 Resort Hotel 1
## 3236 Resort Hotel 1
## 3237 Resort Hotel 2
## 3238 Resort Hotel 1
## 3239 Resort Hotel 1
## 3240 Resort Hotel 2
## 3241 Resort Hotel 1
## 3242 Resort Hotel 1
## 3243 Resort Hotel 2
## 3244 Resort Hotel 2
## 3245 Resort Hotel 1
## 3246 Resort Hotel 2
## 3247 Resort Hotel 1
## 3248 Resort Hotel 1
## 3249 Resort Hotel 2
## 3250 Resort Hotel 2
## 3251 Resort Hotel 1
## 3252 Resort Hotel 2
## 3253 Resort Hotel 2
## 3254 Resort Hotel 1
## 3255 Resort Hotel 1
## 3256 Resort Hotel 2
## 3257 Resort Hotel 2
## 3258 Resort Hotel 2
## 3259 Resort Hotel 1
## 3260 Resort Hotel 2
## 3261 Resort Hotel 2
## 3262 Resort Hotel 1
## 3263 Resort Hotel 2
## 3264 Resort Hotel 2
## 3265 Resort Hotel 1
## 3266 Resort Hotel 1
## 3267 Resort Hotel 2
## 3268 Resort Hotel 1
## 3269 Resort Hotel 2
## 3270 Resort Hotel 1
## 3271 Resort Hotel 2
## 3272 Resort Hotel 2
## 3273 Resort Hotel 2
## 3274 Resort Hotel 1
## 3275 Resort Hotel 2
## 3276 Resort Hotel 2
## 3277 Resort Hotel 2
## 3278 Resort Hotel 1
## 3279 Resort Hotel 3
## 3280 Resort Hotel 2
## 3281 Resort Hotel 1
## 3282 Resort Hotel 1
## 3283 Resort Hotel 2
## 3284 Resort Hotel 1
## 3285 Resort Hotel 1
## 3286 Resort Hotel 1
## 3287 Resort Hotel 1
## 3288 Resort Hotel 2
## 3289 Resort Hotel 2
## 3290 Resort Hotel 1
## 3291 Resort Hotel 1
## 3292 Resort Hotel 1
## 3293 Resort Hotel 2
## 3294 Resort Hotel 1
## 3295 Resort Hotel 1
## 3296 Resort Hotel 1
## 3297 Resort Hotel 1
## 3298 Resort Hotel 1
## 3299 Resort Hotel 1
## 3300 Resort Hotel 2
## 3301 Resort Hotel 1
## 3302 Resort Hotel 1
## 3303 Resort Hotel 1
## 3304 Resort Hotel 1
## 3305 Resort Hotel 1
## 3306 Resort Hotel 1
## 3307 Resort Hotel 1
## 3308 Resort Hotel 1
## 3309 Resort Hotel 1
## 3310 Resort Hotel 2
## 3311 Resort Hotel 1
## 3312 Resort Hotel 2
## 3313 Resort Hotel 2
## 3314 Resort Hotel 1
## 3315 Resort Hotel 1
## 3316 Resort Hotel 2
## 3317 Resort Hotel 1
## 3318 Resort Hotel 1
## 3319 Resort Hotel 1
## 3320 Resort Hotel 1
## 3321 Resort Hotel 1
## 3322 Resort Hotel 1
## 3323 Resort Hotel 2
## 3324 Resort Hotel 2
## 3325 Resort Hotel 1
## 3326 Resort Hotel 1
## 3327 Resort Hotel 2
## 3328 Resort Hotel 2
## 3329 Resort Hotel 1
## 3330 Resort Hotel 1
## 3331 Resort Hotel 1
## 3332 Resort Hotel 1
## 3333 Resort Hotel 2
## 3334 Resort Hotel 1
## 3335 Resort Hotel 1
## 3336 Resort Hotel 1
## 3337 Resort Hotel 1
## 3338 Resort Hotel 1
## 3339 Resort Hotel 1
## 3340 Resort Hotel 1
## 3341 Resort Hotel 2
## 3342 Resort Hotel 1
## 3343 Resort Hotel 1
## 3344 Resort Hotel 1
## 3345 Resort Hotel 1
## 3346 Resort Hotel 1
## 3347 Resort Hotel 2
## 3348 Resort Hotel 1
## 3349 Resort Hotel 1
## 3350 Resort Hotel 1
## 3351 Resort Hotel 1
## 3352 Resort Hotel 1
## 3353 Resort Hotel 1
## 3354 Resort Hotel 1
## 3355 Resort Hotel 2
## 3356 Resort Hotel 2
## 3357 Resort Hotel 1
## 3358 Resort Hotel 1
## 3359 Resort Hotel 1
## 3360 Resort Hotel 1
## 3361 Resort Hotel 1
## 3362 Resort Hotel 1
## 3363 Resort Hotel 1
## 3364 Resort Hotel 2
## 3365 Resort Hotel 2
## 3366 Resort Hotel 1
## 3367 Resort Hotel 1
## 3368 Resort Hotel 1
## 3369 Resort Hotel 1
## 3370 Resort Hotel 2
## 3371 Resort Hotel 1
## 3372 Resort Hotel 1
## 3373 Resort Hotel 2
## 3374 Resort Hotel 1
## 3375 Resort Hotel 1
## 3376 Resort Hotel 1
## 3377 Resort Hotel 1
## 3378 Resort Hotel 1
## 3379 Resort Hotel 1
## 3380 Resort Hotel 1
## 3381 Resort Hotel 1
## 3382 Resort Hotel 2
## 3383 Resort Hotel 1
## 3384 Resort Hotel 2
## 3385 Resort Hotel 1
## 3386 Resort Hotel 1
## 3387 Resort Hotel 1
## 3388 Resort Hotel 1
## 3389 Resort Hotel 1
## 3390 Resort Hotel 1
## 3391 Resort Hotel 1
## 3392 Resort Hotel 2
## 3393 Resort Hotel 2
## 3394 Resort Hotel 1
## 3395 Resort Hotel 3
## 3396 Resort Hotel 1
## 3397 Resort Hotel 2
## 3398 Resort Hotel 1
## 3399 Resort Hotel 2
## 3400 Resort Hotel 2
## 3401 Resort Hotel 2
## 3402 Resort Hotel 2
## 3403 Resort Hotel 2
## 3404 Resort Hotel 2
## 3405 Resort Hotel 1
## 3406 Resort Hotel 2
## 3407 Resort Hotel 2
## 3408 Resort Hotel 1
## 3409 Resort Hotel 2
## 3410 Resort Hotel 1
## 3411 Resort Hotel 1
## 3412 Resort Hotel 1
## 3413 Resort Hotel 1
## 3414 Resort Hotel 2
## 3415 Resort Hotel 1
## 3416 Resort Hotel 1
## 3417 Resort Hotel 1
## 3418 Resort Hotel 1
## 3419 Resort Hotel 1
## 3420 Resort Hotel 2
## 3421 Resort Hotel 1
## 3422 Resort Hotel 1
## 3423 Resort Hotel 1
## 3424 Resort Hotel 1
## 3425 Resort Hotel 2
## 3426 Resort Hotel 1
## 3427 Resort Hotel 1
## 3428 Resort Hotel 1
## 3429 Resort Hotel 2
## 3430 Resort Hotel 1
## 3431 Resort Hotel 2
## 3432 Resort Hotel 1
## 3433 Resort Hotel 1
## 3434 Resort Hotel 1
## 3435 Resort Hotel 2
## 3436 Resort Hotel 2
## 3437 Resort Hotel 1
## 3438 Resort Hotel 1
## 3439 Resort Hotel 1
## 3440 Resort Hotel 2
## 3441 Resort Hotel 2
## 3442 Resort Hotel 1
## 3443 Resort Hotel 1
## 3444 Resort Hotel 1
## 3445 Resort Hotel 2
## 3446 Resort Hotel 2
## 3447 Resort Hotel 2
## 3448 Resort Hotel 2
## 3449 Resort Hotel 1
## 3450 Resort Hotel 1
## 3451 Resort Hotel 1
## 3452 Resort Hotel 2
## 3453 Resort Hotel 2
## 3454 Resort Hotel 2
## 3455 Resort Hotel 1
## 3456 Resort Hotel 1
## 3457 Resort Hotel 1
## 3458 Resort Hotel 1
## 3459 Resort Hotel 1
## 3460 Resort Hotel 1
## 3461 Resort Hotel 2
## 3462 Resort Hotel 2
## 3463 Resort Hotel 2
## 3464 Resort Hotel 1
## 3465 Resort Hotel 2
## 3466 Resort Hotel 1
## 3467 Resort Hotel 2
## 3468 Resort Hotel 2
## 3469 Resort Hotel 2
## 3470 Resort Hotel 2
## 3471 Resort Hotel 1
## 3472 Resort Hotel 2
## 3473 Resort Hotel 1
## 3474 Resort Hotel 1
## 3475 Resort Hotel 2
## 3476 Resort Hotel 3
## 3477 Resort Hotel 1
## 3478 Resort Hotel 1
## 3479 Resort Hotel 1
## 3480 Resort Hotel 1
## 3481 Resort Hotel 1
## 3482 Resort Hotel 2
## 3483 Resort Hotel 2
## 3484 Resort Hotel 1
## 3485 Resort Hotel 1
## 3486 Resort Hotel 2
## 3487 Resort Hotel 2
## 3488 Resort Hotel 2
## 3489 Resort Hotel 1
## 3490 Resort Hotel 1
## 3491 Resort Hotel 1
## 3492 Resort Hotel 2
## 3493 Resort Hotel 2
## 3494 Resort Hotel 1
## 3495 Resort Hotel 1
## 3496 Resort Hotel 1
## 3497 Resort Hotel 1
## 3498 Resort Hotel 1
## 3499 Resort Hotel 1
## 3500 Resort Hotel 2
## 3501 Resort Hotel 2
## 3502 Resort Hotel 1
## 3503 Resort Hotel 1
## 3504 Resort Hotel 1
## 3505 Resort Hotel 1
## 3506 Resort Hotel 1
## 3507 Resort Hotel 1
## 3508 Resort Hotel 2
## 3509 Resort Hotel 1
## 3510 Resort Hotel 2
## 3511 Resort Hotel 2
## 3512 Resort Hotel 1
## 3513 Resort Hotel 2
## 3514 Resort Hotel 2
## 3515 Resort Hotel 2
## 3516 Resort Hotel 1
## 3517 Resort Hotel 2
## 3518 Resort Hotel 1
## 3519 Resort Hotel 2
## 3520 Resort Hotel 1
## 3521 Resort Hotel 2
## 3522 Resort Hotel 2
## 3523 Resort Hotel 2
## 3524 Resort Hotel 1
## 3525 Resort Hotel 2
## 3526 Resort Hotel 2
## 3527 Resort Hotel 2
## 3528 Resort Hotel 2
## 3529 Resort Hotel 2
## 3530 Resort Hotel 2
## 3531 Resort Hotel 1
## 3532 Resort Hotel 1
## 3533 Resort Hotel 1
## 3534 Resort Hotel 1
## 3535 Resort Hotel 2
## 3536 Resort Hotel 2
## 3537 Resort Hotel 1
## 3538 Resort Hotel 2
## 3539 Resort Hotel 1
## 3540 Resort Hotel 2
## 3541 Resort Hotel 2
## 3542 Resort Hotel 1
## 3543 Resort Hotel 1
## 3544 Resort Hotel 2
## 3545 Resort Hotel 1
## 3546 Resort Hotel 2
## 3547 Resort Hotel 1
## 3548 Resort Hotel 1
## 3549 Resort Hotel 1
## 3550 Resort Hotel 1
## 3551 Resort Hotel 2
## 3552 Resort Hotel 2
## 3553 Resort Hotel 1
## 3554 Resort Hotel 1
## 3555 Resort Hotel 2
## 3556 Resort Hotel 2
## 3557 Resort Hotel 2
## 3558 Resort Hotel 1
## 3559 Resort Hotel 1
## 3560 Resort Hotel 2
## 3561 Resort Hotel 2
## 3562 Resort Hotel 1
## 3563 Resort Hotel 2
## 3564 Resort Hotel 1
## 3565 Resort Hotel 2
## 3566 Resort Hotel 2
## 3567 Resort Hotel 2
## 3568 Resort Hotel 2
## 3569 Resort Hotel 1
## 3570 Resort Hotel 2
## 3571 Resort Hotel 1
## 3572 Resort Hotel 2
## 3573 Resort Hotel 2
## 3574 Resort Hotel 1
## 3575 Resort Hotel 1
## 3576 Resort Hotel 2
## 3577 Resort Hotel 2
## 3578 Resort Hotel 2
## 3579 Resort Hotel 1
## 3580 Resort Hotel 2
## 3581 Resort Hotel 1
## 3582 Resort Hotel 1
## 3583 Resort Hotel 1
## 3584 Resort Hotel 1
## 3585 Resort Hotel 1
## 3586 Resort Hotel 1
## 3587 Resort Hotel 2
## 3588 Resort Hotel 1
## 3589 Resort Hotel 2
## 3590 Resort Hotel 2
## 3591 Resort Hotel 1
## 3592 Resort Hotel 1
## 3593 Resort Hotel 2
## 3594 Resort Hotel 1
## 3595 Resort Hotel 1
## 3596 Resort Hotel 2
## 3597 Resort Hotel 1
## 3598 Resort Hotel 1
## 3599 Resort Hotel 1
## 3600 Resort Hotel 1
## 3601 Resort Hotel 1
## 3602 Resort Hotel 1
## 3603 Resort Hotel 1
## 3604 Resort Hotel 2
## 3605 Resort Hotel 1
## 3606 Resort Hotel 1
## 3607 Resort Hotel 1
## 3608 Resort Hotel 2
## 3609 Resort Hotel 1
## 3610 Resort Hotel 1
## 3611 Resort Hotel 1
## 3612 Resort Hotel 2
## 3613 Resort Hotel 2
## 3614 Resort Hotel 1
## 3615 Resort Hotel 1
## 3616 Resort Hotel 1
## 3617 Resort Hotel 2
## 3618 Resort Hotel 1
## 3619 Resort Hotel 2
## 3620 Resort Hotel 1
## 3621 Resort Hotel 1
## 3622 Resort Hotel 2
## 3623 Resort Hotel 1
## 3624 Resort Hotel 2
## 3625 Resort Hotel 1
## 3626 Resort Hotel 1
## 3627 Resort Hotel 1
## 3628 Resort Hotel 1
## 3629 Resort Hotel 2
## 3630 Resort Hotel 1
## 3631 Resort Hotel 1
## 3632 Resort Hotel 1
## 3633 Resort Hotel 2
## 3634 Resort Hotel 1
## 3635 Resort Hotel 1
## 3636 Resort Hotel 2
## 3637 Resort Hotel 1
## 3638 Resort Hotel 2
## 3639 Resort Hotel 1
## 3640 Resort Hotel 1
## 3641 Resort Hotel 2
## 3642 Resort Hotel 1
## 3643 Resort Hotel 2
## 3644 Resort Hotel 1
## 3645 Resort Hotel 2
## 3646 Resort Hotel 2
## 3647 Resort Hotel 1
## 3648 Resort Hotel 2
## 3649 Resort Hotel 2
## 3650 Resort Hotel 1
## 3651 Resort Hotel 1
## 3652 Resort Hotel 2
## 3653 Resort Hotel 2
## 3654 Resort Hotel 1
## 3655 Resort Hotel 2
## 3656 Resort Hotel 2
## 3657 Resort Hotel 1
## 3658 Resort Hotel 1
## 3659 Resort Hotel 1
## 3660 Resort Hotel 2
## 3661 Resort Hotel 2
## 3662 Resort Hotel 1
## 3663 Resort Hotel 2
## 3664 Resort Hotel 1
## 3665 Resort Hotel 1
## 3666 Resort Hotel 2
## 3667 Resort Hotel 1
## 3668 Resort Hotel 2
## 3669 Resort Hotel 1
## 3670 Resort Hotel 1
## 3671 Resort Hotel 1
## 3672 Resort Hotel 2
## 3673 Resort Hotel 1
## 3674 Resort Hotel 1
## 3675 Resort Hotel 1
## 3676 Resort Hotel 1
## 3677 Resort Hotel 2
## 3678 Resort Hotel 2
## 3679 Resort Hotel 1
## 3680 Resort Hotel 1
## 3681 Resort Hotel 1
## 3682 Resort Hotel 1
## 3683 Resort Hotel 1
## 3684 Resort Hotel 1
## 3685 Resort Hotel 1
## 3686 Resort Hotel 1
## 3687 Resort Hotel 2
## 3688 Resort Hotel 2
## 3689 Resort Hotel 1
## 3690 Resort Hotel 1
## 3691 Resort Hotel 1
## 3692 Resort Hotel 1
## 3693 Resort Hotel 2
## 3694 Resort Hotel 2
## 3695 Resort Hotel 1
## 3696 Resort Hotel 2
## 3697 Resort Hotel 2
## 3698 Resort Hotel 2
## 3699 Resort Hotel 1
## 3700 Resort Hotel 2
## 3701 Resort Hotel 1
## 3702 Resort Hotel 2
## 3703 Resort Hotel 2
## 3704 Resort Hotel 1
## 3705 Resort Hotel 2
## 3706 Resort Hotel 2
## 3707 Resort Hotel 1
## 3708 Resort Hotel 2
## 3709 Resort Hotel 2
## 3710 Resort Hotel 1
## 3711 Resort Hotel 1
## 3712 Resort Hotel 2
## 3713 Resort Hotel 1
## 3714 Resort Hotel 1
## 3715 Resort Hotel 1
## 3716 Resort Hotel 2
## 3717 Resort Hotel 2
## 3718 Resort Hotel 2
## 3719 Resort Hotel 1
## 3720 Resort Hotel 1
## 3721 Resort Hotel 2
## 3722 Resort Hotel 2
## 3723 Resort Hotel 2
## 3724 Resort Hotel 2
## 3725 Resort Hotel 1
## 3726 Resort Hotel 2
## 3727 Resort Hotel 1
## 3728 Resort Hotel 2
## 3729 Resort Hotel 2
## 3730 Resort Hotel 1
## 3731 Resort Hotel 2
## 3732 Resort Hotel 2
## 3733 Resort Hotel 2
## 3734 Resort Hotel 2
## 3735 Resort Hotel 2
## 3736 Resort Hotel 2
## 3737 Resort Hotel 1
## 3738 Resort Hotel 1
## 3739 Resort Hotel 1
## 3740 Resort Hotel 1
## 3741 Resort Hotel 2
## 3742 Resort Hotel 2
## 3743 Resort Hotel 1
## 3744 Resort Hotel 1
## 3745 Resort Hotel 2
## 3746 Resort Hotel 2
## 3747 Resort Hotel 1
## 3748 Resort Hotel 1
## 3749 Resort Hotel 1
## 3750 Resort Hotel 2
## 3751 Resort Hotel 2
## 3752 Resort Hotel 1
## 3753 Resort Hotel 1
## 3754 Resort Hotel 1
## 3755 Resort Hotel 3
## 3756 Resort Hotel 2
## 3757 Resort Hotel 1
## 3758 Resort Hotel 2
## 3759 Resort Hotel 2
## 3760 Resort Hotel 2
## 3761 Resort Hotel 1
## 3762 Resort Hotel 2
## 3763 Resort Hotel 1
## 3764 Resort Hotel 1
## 3765 Resort Hotel 1
## 3766 Resort Hotel 2
## 3767 Resort Hotel 1
## 3768 Resort Hotel 2
## 3769 Resort Hotel 2
## 3770 Resort Hotel 2
## 3771 Resort Hotel 2
## 3772 Resort Hotel 1
## 3773 Resort Hotel 2
## 3774 Resort Hotel 1
## 3775 Resort Hotel 2
## 3776 Resort Hotel 2
## 3777 Resort Hotel 2
## 3778 Resort Hotel 1
## 3779 Resort Hotel 1
## 3780 Resort Hotel 1
## 3781 Resort Hotel 2
## 3782 Resort Hotel 2
## 3783 Resort Hotel 1
## 3784 Resort Hotel 1
## 3785 Resort Hotel 1
## 3786 Resort Hotel 1
## 3787 Resort Hotel 2
## 3788 Resort Hotel 2
## 3789 Resort Hotel 1
## 3790 Resort Hotel 2
## 3791 Resort Hotel 2
## 3792 Resort Hotel 1
## 3793 Resort Hotel 1
## 3794 Resort Hotel 1
## 3795 Resort Hotel 1
## 3796 Resort Hotel 1
## 3797 Resort Hotel 1
## 3798 Resort Hotel 1
## 3799 Resort Hotel 2
## 3800 Resort Hotel 2
## 3801 Resort Hotel 1
## 3802 Resort Hotel 2
## 3803 Resort Hotel 1
## 3804 Resort Hotel 1
## 3805 Resort Hotel 1
## 3806 Resort Hotel 2
## 3807 Resort Hotel 2
## 3808 Resort Hotel 1
## 3809 Resort Hotel 1
## 3810 Resort Hotel 2
## 3811 Resort Hotel 1
## 3812 Resort Hotel 1
## 3813 Resort Hotel 1
## 3814 Resort Hotel 2
## 3815 Resort Hotel 1
## 3816 Resort Hotel 1
## 3817 Resort Hotel 1
## 3818 Resort Hotel 2
## 3819 Resort Hotel 1
## 3820 Resort Hotel 1
## 3821 Resort Hotel 2
## 3822 Resort Hotel 2
## 3823 Resort Hotel 2
## 3824 Resort Hotel 1
## 3825 Resort Hotel 1
## 3826 Resort Hotel 1
## 3827 Resort Hotel 2
## 3828 Resort Hotel 1
## 3829 Resort Hotel 2
## 3830 Resort Hotel 1
## 3831 Resort Hotel 2
## 3832 Resort Hotel 2
## 3833 Resort Hotel 1
## 3834 Resort Hotel 1
## 3835 Resort Hotel 1
## 3836 Resort Hotel 1
## 3837 Resort Hotel 1
## 3838 Resort Hotel 1
## 3839 Resort Hotel 2
## 3840 Resort Hotel 1
## 3841 Resort Hotel 1
## 3842 Resort Hotel 1
## 3843 Resort Hotel 1
## 3844 Resort Hotel 1
## 3845 Resort Hotel 1
## 3846 Resort Hotel 1
## 3847 Resort Hotel 2
## 3848 Resort Hotel 2
## 3849 Resort Hotel 2
## 3850 Resort Hotel 2
## 3851 Resort Hotel 2
## 3852 Resort Hotel 2
## 3853 Resort Hotel 1
## 3854 Resort Hotel 2
## 3855 Resort Hotel 2
## 3856 Resort Hotel 2
## 3857 Resort Hotel 1
## 3858 Resort Hotel 1
## 3859 Resort Hotel 1
## 3860 Resort Hotel 1
## 3861 Resort Hotel 1
## 3862 Resort Hotel 1
## 3863 Resort Hotel 1
## 3864 Resort Hotel 2
## 3865 Resort Hotel 2
## 3866 Resort Hotel 1
## 3867 Resort Hotel 1
## 3868 Resort Hotel 2
## 3869 Resort Hotel 1
## 3870 Resort Hotel 2
## 3871 Resort Hotel 1
## 3872 Resort Hotel 2
## 3873 Resort Hotel 1
## 3874 Resort Hotel 1
## 3875 Resort Hotel 2
## 3876 Resort Hotel 1
## 3877 Resort Hotel 1
## 3878 Resort Hotel 1
## 3879 Resort Hotel 2
## 3880 Resort Hotel 1
## 3881 Resort Hotel 1
## 3882 Resort Hotel 1
## 3883 Resort Hotel 1
## 3884 Resort Hotel 2
## 3885 Resort Hotel 1
## 3886 Resort Hotel 2
## 3887 Resort Hotel 2
## 3888 Resort Hotel 1
## 3889 Resort Hotel 1
## 3890 Resort Hotel 2
## 3891 Resort Hotel 2
## 3892 Resort Hotel 2
## 3893 Resort Hotel 2
## 3894 Resort Hotel 1
## 3895 Resort Hotel 2
## 3896 Resort Hotel 1
## 3897 Resort Hotel 1
## 3898 Resort Hotel 1
## 3899 Resort Hotel 1
## 3900 Resort Hotel 2
## 3901 Resort Hotel 1
## 3902 Resort Hotel 1
## 3903 Resort Hotel 2
## 3904 Resort Hotel 1
## 3905 Resort Hotel 2
## 3906 Resort Hotel 2
## 3907 Resort Hotel 1
## 3908 Resort Hotel 1
## 3909 Resort Hotel 1
## 3910 Resort Hotel 2
## 3911 Resort Hotel 2
## 3912 Resort Hotel 2
## 3913 Resort Hotel 1
## 3914 Resort Hotel 2
## 3915 Resort Hotel 1
## 3916 Resort Hotel 1
## 3917 Resort Hotel 1
## 3918 Resort Hotel 2
## 3919 Resort Hotel 1
## 3920 Resort Hotel 1
## 3921 Resort Hotel 1
## 3922 Resort Hotel 1
## 3923 Resort Hotel 1
## 3924 Resort Hotel 2
## 3925 Resort Hotel 1
## 3926 Resort Hotel 1
## 3927 Resort Hotel 1
## 3928 Resort Hotel 1
## 3929 Resort Hotel 1
# City Hotel
hotels %>%
mutate(little_ones = children + babies) %>%
filter(
little_ones >= 1,
hotel == "City Hotel"
) %>%
select(hotel, little_ones)
## hotel little_ones
## 1 City Hotel 1
## 2 City Hotel 1
## 3 City Hotel 2
## 4 City Hotel 1
## 5 City Hotel 1
## 6 City Hotel 1
## 7 City Hotel 1
## 8 City Hotel 1
## 9 City Hotel 1
## 10 City Hotel 1
## 11 City Hotel 1
## 12 City Hotel 1
## 13 City Hotel 1
## 14 City Hotel 1
## 15 City Hotel 1
## 16 City Hotel 2
## 17 City Hotel 2
## 18 City Hotel 1
## 19 City Hotel 1
## 20 City Hotel 1
## 21 City Hotel 1
## 22 City Hotel 2
## 23 City Hotel 1
## 24 City Hotel 1
## 25 City Hotel 2
## 26 City Hotel 1
## 27 City Hotel 1
## 28 City Hotel 1
## 29 City Hotel 2
## 30 City Hotel 2
## 31 City Hotel 2
## 32 City Hotel 2
## 33 City Hotel 3
## 34 City Hotel 1
## 35 City Hotel 3
## 36 City Hotel 2
## 37 City Hotel 2
## 38 City Hotel 2
## 39 City Hotel 1
## 40 City Hotel 1
## 41 City Hotel 2
## 42 City Hotel 2
## 43 City Hotel 2
## 44 City Hotel 2
## 45 City Hotel 2
## 46 City Hotel 2
## 47 City Hotel 1
## 48 City Hotel 2
## 49 City Hotel 2
## 50 City Hotel 2
## 51 City Hotel 2
## 52 City Hotel 1
## 53 City Hotel 1
## 54 City Hotel 1
## 55 City Hotel 2
## 56 City Hotel 2
## 57 City Hotel 2
## 58 City Hotel 2
## 59 City Hotel 1
## 60 City Hotel 1
## 61 City Hotel 2
## 62 City Hotel 2
## 63 City Hotel 2
## 64 City Hotel 1
## 65 City Hotel 1
## 66 City Hotel 1
## 67 City Hotel 2
## 68 City Hotel 2
## 69 City Hotel 1
## 70 City Hotel 1
## 71 City Hotel 2
## 72 City Hotel 2
## 73 City Hotel 1
## 74 City Hotel 2
## 75 City Hotel 1
## 76 City Hotel 1
## 77 City Hotel 1
## 78 City Hotel 2
## 79 City Hotel 1
## 80 City Hotel 2
## 81 City Hotel 2
## 82 City Hotel 2
## 83 City Hotel 2
## 84 City Hotel 2
## 85 City Hotel 2
## 86 City Hotel 2
## 87 City Hotel 1
## 88 City Hotel 2
## 89 City Hotel 1
## 90 City Hotel 2
## 91 City Hotel 1
## 92 City Hotel 2
## 93 City Hotel 2
## 94 City Hotel 2
## 95 City Hotel 1
## 96 City Hotel 2
## 97 City Hotel 1
## 98 City Hotel 2
## 99 City Hotel 1
## 100 City Hotel 1
## 101 City Hotel 2
## 102 City Hotel 1
## 103 City Hotel 2
## 104 City Hotel 1
## 105 City Hotel 1
## 106 City Hotel 1
## 107 City Hotel 2
## 108 City Hotel 2
## 109 City Hotel 1
## 110 City Hotel 3
## 111 City Hotel 1
## 112 City Hotel 2
## 113 City Hotel 1
## 114 City Hotel 1
## 115 City Hotel 2
## 116 City Hotel 2
## 117 City Hotel 2
## 118 City Hotel 1
## 119 City Hotel 2
## 120 City Hotel 1
## 121 City Hotel 1
## 122 City Hotel 2
## 123 City Hotel 1
## 124 City Hotel 2
## 125 City Hotel 2
## 126 City Hotel 2
## 127 City Hotel 2
## 128 City Hotel 2
## 129 City Hotel 1
## 130 City Hotel 2
## 131 City Hotel 1
## 132 City Hotel 1
## 133 City Hotel 1
## 134 City Hotel 2
## 135 City Hotel 1
## 136 City Hotel 2
## 137 City Hotel 1
## 138 City Hotel 1
## 139 City Hotel 2
## 140 City Hotel 1
## 141 City Hotel 1
## 142 City Hotel 1
## 143 City Hotel 2
## 144 City Hotel 2
## 145 City Hotel 2
## 146 City Hotel 1
## 147 City Hotel 1
## 148 City Hotel 2
## 149 City Hotel 2
## 150 City Hotel 2
## 151 City Hotel 1
## 152 City Hotel 2
## 153 City Hotel 1
## 154 City Hotel 2
## 155 City Hotel 1
## 156 City Hotel 1
## 157 City Hotel 1
## 158 City Hotel 1
## 159 City Hotel 2
## 160 City Hotel 1
## 161 City Hotel 2
## 162 City Hotel 2
## 163 City Hotel 1
## 164 City Hotel 2
## 165 City Hotel 2
## 166 City Hotel 2
## 167 City Hotel 2
## 168 City Hotel 1
## 169 City Hotel 2
## 170 City Hotel 1
## 171 City Hotel 2
## 172 City Hotel 1
## 173 City Hotel 1
## 174 City Hotel 1
## 175 City Hotel 2
## 176 City Hotel 1
## 177 City Hotel 2
## 178 City Hotel 1
## 179 City Hotel 1
## 180 City Hotel 2
## 181 City Hotel 1
## 182 City Hotel 2
## 183 City Hotel 2
## 184 City Hotel 2
## 185 City Hotel 2
## 186 City Hotel 1
## 187 City Hotel 1
## 188 City Hotel 1
## 189 City Hotel 1
## 190 City Hotel 2
## 191 City Hotel 1
## 192 City Hotel 1
## 193 City Hotel 2
## 194 City Hotel 1
## 195 City Hotel 3
## 196 City Hotel 2
## 197 City Hotel 3
## 198 City Hotel 1
## 199 City Hotel 1
## 200 City Hotel 1
## 201 City Hotel 2
## 202 City Hotel 2
## 203 City Hotel 2
## 204 City Hotel 1
## 205 City Hotel 1
## 206 City Hotel 2
## 207 City Hotel 2
## 208 City Hotel 1
## 209 City Hotel 2
## 210 City Hotel 2
## 211 City Hotel 2
## 212 City Hotel 2
## 213 City Hotel 2
## 214 City Hotel 1
## 215 City Hotel 2
## 216 City Hotel 1
## 217 City Hotel 2
## 218 City Hotel 2
## 219 City Hotel 2
## 220 City Hotel 2
## 221 City Hotel 2
## 222 City Hotel 1
## 223 City Hotel 1
## 224 City Hotel 1
## 225 City Hotel 1
## 226 City Hotel 1
## 227 City Hotel 10
## 228 City Hotel 2
## 229 City Hotel 2
## 230 City Hotel 2
## 231 City Hotel 2
## 232 City Hotel 2
## 233 City Hotel 2
## 234 City Hotel 2
## 235 City Hotel 2
## 236 City Hotel 2
## 237 City Hotel 2
## 238 City Hotel 1
## 239 City Hotel 2
## 240 City Hotel 1
## 241 City Hotel 2
## 242 City Hotel 2
## 243 City Hotel 2
## 244 City Hotel 2
## 245 City Hotel 2
## 246 City Hotel 2
## 247 City Hotel 1
## 248 City Hotel 2
## 249 City Hotel 1
## 250 City Hotel 1
## 251 City Hotel 1
## 252 City Hotel 1
## 253 City Hotel 2
## 254 City Hotel 1
## 255 City Hotel 1
## 256 City Hotel 2
## 257 City Hotel 2
## 258 City Hotel 2
## 259 City Hotel 1
## 260 City Hotel 2
## 261 City Hotel 1
## 262 City Hotel 2
## 263 City Hotel 2
## 264 City Hotel 2
## 265 City Hotel 2
## 266 City Hotel 2
## 267 City Hotel 1
## 268 City Hotel 1
## 269 City Hotel 2
## 270 City Hotel 2
## 271 City Hotel 2
## 272 City Hotel 2
## 273 City Hotel 1
## 274 City Hotel 1
## 275 City Hotel 2
## 276 City Hotel 2
## 277 City Hotel 2
## 278 City Hotel 2
## 279 City Hotel 1
## 280 City Hotel 1
## 281 City Hotel 2
## 282 City Hotel 1
## 283 City Hotel 1
## 284 City Hotel 1
## 285 City Hotel 2
## 286 City Hotel 1
## 287 City Hotel 2
## 288 City Hotel 2
## 289 City Hotel 2
## 290 City Hotel 2
## 291 City Hotel 1
## 292 City Hotel 1
## 293 City Hotel 1
## 294 City Hotel 2
## 295 City Hotel 2
## 296 City Hotel 2
## 297 City Hotel 1
## 298 City Hotel 1
## 299 City Hotel 1
## 300 City Hotel 1
## 301 City Hotel 2
## 302 City Hotel 1
## 303 City Hotel 2
## 304 City Hotel 2
## 305 City Hotel 2
## 306 City Hotel 2
## 307 City Hotel 2
## 308 City Hotel 2
## 309 City Hotel 2
## 310 City Hotel 1
## 311 City Hotel 1
## 312 City Hotel 2
## 313 City Hotel 1
## 314 City Hotel 1
## 315 City Hotel 2
## 316 City Hotel 1
## 317 City Hotel 1
## 318 City Hotel 2
## 319 City Hotel 1
## 320 City Hotel 1
## 321 City Hotel 1
## 322 City Hotel 1
## 323 City Hotel 2
## 324 City Hotel 1
## 325 City Hotel 1
## 326 City Hotel 1
## 327 City Hotel 3
## 328 City Hotel 2
## 329 City Hotel 1
## 330 City Hotel 2
## 331 City Hotel 2
## 332 City Hotel 1
## 333 City Hotel 2
## 334 City Hotel 1
## 335 City Hotel 1
## 336 City Hotel 1
## 337 City Hotel 1
## 338 City Hotel 1
## 339 City Hotel 1
## 340 City Hotel 1
## 341 City Hotel 1
## 342 City Hotel 2
## 343 City Hotel 2
## 344 City Hotel 2
## 345 City Hotel 1
## 346 City Hotel 1
## 347 City Hotel 1
## 348 City Hotel 1
## 349 City Hotel 2
## 350 City Hotel 2
## 351 City Hotel 2
## 352 City Hotel 2
## 353 City Hotel 1
## 354 City Hotel 1
## 355 City Hotel 2
## 356 City Hotel 1
## 357 City Hotel 2
## 358 City Hotel 2
## 359 City Hotel 2
## 360 City Hotel 1
## 361 City Hotel 1
## 362 City Hotel 2
## 363 City Hotel 2
## 364 City Hotel 2
## 365 City Hotel 2
## 366 City Hotel 1
## 367 City Hotel 2
## 368 City Hotel 1
## 369 City Hotel 2
## 370 City Hotel 1
## 371 City Hotel 1
## 372 City Hotel 1
## 373 City Hotel 1
## 374 City Hotel 2
## 375 City Hotel 1
## 376 City Hotel 2
## 377 City Hotel 2
## 378 City Hotel 2
## 379 City Hotel 2
## 380 City Hotel 2
## 381 City Hotel 2
## 382 City Hotel 1
## 383 City Hotel 2
## 384 City Hotel 1
## 385 City Hotel 2
## 386 City Hotel 1
## 387 City Hotel 2
## 388 City Hotel 2
## 389 City Hotel 1
## 390 City Hotel 2
## 391 City Hotel 1
## 392 City Hotel 1
## 393 City Hotel 1
## 394 City Hotel 1
## 395 City Hotel 2
## 396 City Hotel 1
## 397 City Hotel 2
## 398 City Hotel 2
## 399 City Hotel 2
## 400 City Hotel 2
## 401 City Hotel 2
## 402 City Hotel 1
## 403 City Hotel 2
## 404 City Hotel 2
## 405 City Hotel 1
## 406 City Hotel 1
## 407 City Hotel 1
## 408 City Hotel 2
## 409 City Hotel 1
## 410 City Hotel 2
## 411 City Hotel 2
## 412 City Hotel 1
## 413 City Hotel 1
## 414 City Hotel 2
## 415 City Hotel 1
## 416 City Hotel 1
## 417 City Hotel 2
## 418 City Hotel 2
## 419 City Hotel 2
## 420 City Hotel 2
## 421 City Hotel 2
## 422 City Hotel 1
## 423 City Hotel 2
## 424 City Hotel 1
## 425 City Hotel 2
## 426 City Hotel 1
## 427 City Hotel 1
## 428 City Hotel 1
## 429 City Hotel 1
## 430 City Hotel 1
## 431 City Hotel 1
## 432 City Hotel 1
## 433 City Hotel 1
## 434 City Hotel 2
## 435 City Hotel 2
## 436 City Hotel 1
## 437 City Hotel 1
## 438 City Hotel 2
## 439 City Hotel 1
## 440 City Hotel 2
## 441 City Hotel 2
## 442 City Hotel 2
## 443 City Hotel 1
## 444 City Hotel 2
## 445 City Hotel 1
## 446 City Hotel 2
## 447 City Hotel 2
## 448 City Hotel 1
## 449 City Hotel 1
## 450 City Hotel 2
## 451 City Hotel 2
## 452 City Hotel 2
## 453 City Hotel 2
## 454 City Hotel 1
## 455 City Hotel 1
## 456 City Hotel 2
## 457 City Hotel 1
## 458 City Hotel 2
## 459 City Hotel 2
## 460 City Hotel 2
## 461 City Hotel 1
## 462 City Hotel 1
## 463 City Hotel 2
## 464 City Hotel 2
## 465 City Hotel 1
## 466 City Hotel 1
## 467 City Hotel 2
## 468 City Hotel 1
## 469 City Hotel 1
## 470 City Hotel 2
## 471 City Hotel 1
## 472 City Hotel 1
## 473 City Hotel 2
## 474 City Hotel 1
## 475 City Hotel 1
## 476 City Hotel 2
## 477 City Hotel 2
## 478 City Hotel 1
## 479 City Hotel 1
## 480 City Hotel 1
## 481 City Hotel 1
## 482 City Hotel 2
## 483 City Hotel 1
## 484 City Hotel 2
## 485 City Hotel 2
## 486 City Hotel 2
## 487 City Hotel 1
## 488 City Hotel 1
## 489 City Hotel 1
## 490 City Hotel 2
## 491 City Hotel 1
## 492 City Hotel 2
## 493 City Hotel 2
## 494 City Hotel 2
## 495 City Hotel 1
## 496 City Hotel 1
## 497 City Hotel 1
## 498 City Hotel 1
## 499 City Hotel 1
## 500 City Hotel 2
## 501 City Hotel 2
## 502 City Hotel 1
## 503 City Hotel 2
## 504 City Hotel 1
## 505 City Hotel 1
## 506 City Hotel 1
## 507 City Hotel 1
## 508 City Hotel 1
## 509 City Hotel 1
## 510 City Hotel 1
## 511 City Hotel 2
## 512 City Hotel 2
## 513 City Hotel 2
## 514 City Hotel 2
## 515 City Hotel 1
## 516 City Hotel 2
## 517 City Hotel 2
## 518 City Hotel 2
## 519 City Hotel 1
## 520 City Hotel 2
## 521 City Hotel 3
## 522 City Hotel 2
## 523 City Hotel 1
## 524 City Hotel 2
## 525 City Hotel 2
## 526 City Hotel 2
## 527 City Hotel 2
## 528 City Hotel 2
## 529 City Hotel 2
## 530 City Hotel 1
## 531 City Hotel 2
## 532 City Hotel 2
## 533 City Hotel 1
## 534 City Hotel 1
## 535 City Hotel 2
## 536 City Hotel 1
## 537 City Hotel 2
## 538 City Hotel 1
## 539 City Hotel 2
## 540 City Hotel 2
## 541 City Hotel 1
## 542 City Hotel 1
## 543 City Hotel 1
## 544 City Hotel 2
## 545 City Hotel 2
## 546 City Hotel 2
## 547 City Hotel 1
## 548 City Hotel 1
## 549 City Hotel 1
## 550 City Hotel 1
## 551 City Hotel 2
## 552 City Hotel 1
## 553 City Hotel 1
## 554 City Hotel 2
## 555 City Hotel 2
## 556 City Hotel 1
## 557 City Hotel 1
## 558 City Hotel 1
## 559 City Hotel 2
## 560 City Hotel 2
## 561 City Hotel 2
## 562 City Hotel 1
## 563 City Hotel 1
## 564 City Hotel 2
## 565 City Hotel 1
## 566 City Hotel 1
## 567 City Hotel 2
## 568 City Hotel 1
## 569 City Hotel 2
## 570 City Hotel 1
## 571 City Hotel 2
## 572 City Hotel 2
## 573 City Hotel 2
## 574 City Hotel 2
## 575 City Hotel 2
## 576 City Hotel 2
## 577 City Hotel 2
## 578 City Hotel 2
## 579 City Hotel 2
## 580 City Hotel 1
## 581 City Hotel 1
## 582 City Hotel 1
## 583 City Hotel 2
## 584 City Hotel 2
## 585 City Hotel 1
## 586 City Hotel 1
## 587 City Hotel 1
## 588 City Hotel 1
## 589 City Hotel 1
## 590 City Hotel 2
## 591 City Hotel 1
## 592 City Hotel 2
## 593 City Hotel 1
## 594 City Hotel 1
## 595 City Hotel 1
## 596 City Hotel 2
## 597 City Hotel 2
## 598 City Hotel 1
## 599 City Hotel 1
## 600 City Hotel 1
## 601 City Hotel 1
## 602 City Hotel 2
## 603 City Hotel 2
## 604 City Hotel 1
## 605 City Hotel 1
## 606 City Hotel 1
## 607 City Hotel 1
## 608 City Hotel 1
## 609 City Hotel 2
## 610 City Hotel 1
## 611 City Hotel 1
## 612 City Hotel 1
## 613 City Hotel 2
## 614 City Hotel 1
## 615 City Hotel 1
## 616 City Hotel 1
## 617 City Hotel 2
## 618 City Hotel 2
## 619 City Hotel 2
## 620 City Hotel 1
## 621 City Hotel 1
## 622 City Hotel 1
## 623 City Hotel 1
## 624 City Hotel 2
## 625 City Hotel 1
## 626 City Hotel 2
## 627 City Hotel 2
## 628 City Hotel 1
## 629 City Hotel 2
## 630 City Hotel 1
## 631 City Hotel 1
## 632 City Hotel 2
## 633 City Hotel 1
## 634 City Hotel 1
## 635 City Hotel 2
## 636 City Hotel 2
## 637 City Hotel 1
## 638 City Hotel 1
## 639 City Hotel 2
## 640 City Hotel 2
## 641 City Hotel 2
## 642 City Hotel 2
## 643 City Hotel 2
## 644 City Hotel 1
## 645 City Hotel 1
## 646 City Hotel 1
## 647 City Hotel 2
## 648 City Hotel 1
## 649 City Hotel 2
## 650 City Hotel 1
## 651 City Hotel 1
## 652 City Hotel 2
## 653 City Hotel 2
## 654 City Hotel 2
## 655 City Hotel 2
## 656 City Hotel 2
## 657 City Hotel 2
## 658 City Hotel 2
## 659 City Hotel 2
## 660 City Hotel 1
## 661 City Hotel 1
## 662 City Hotel 2
## 663 City Hotel 1
## 664 City Hotel 1
## 665 City Hotel 1
## 666 City Hotel 2
## 667 City Hotel 2
## 668 City Hotel 1
## 669 City Hotel 1
## 670 City Hotel 1
## 671 City Hotel 2
## 672 City Hotel 2
## 673 City Hotel 1
## 674 City Hotel 1
## 675 City Hotel 1
## 676 City Hotel 1
## 677 City Hotel 1
## 678 City Hotel 1
## 679 City Hotel 1
## 680 City Hotel 1
## 681 City Hotel 1
## 682 City Hotel 2
## 683 City Hotel 1
## 684 City Hotel 2
## 685 City Hotel 1
## 686 City Hotel 1
## 687 City Hotel 1
## 688 City Hotel 1
## 689 City Hotel 2
## 690 City Hotel 1
## 691 City Hotel 2
## 692 City Hotel 1
## 693 City Hotel 1
## 694 City Hotel 1
## 695 City Hotel 1
## 696 City Hotel 2
## 697 City Hotel 1
## 698 City Hotel 1
## 699 City Hotel 1
## 700 City Hotel 2
## 701 City Hotel 2
## 702 City Hotel 2
## 703 City Hotel 2
## 704 City Hotel 2
## 705 City Hotel 3
## 706 City Hotel 2
## 707 City Hotel 1
## 708 City Hotel 1
## 709 City Hotel 1
## 710 City Hotel 1
## 711 City Hotel 2
## 712 City Hotel 1
## 713 City Hotel 1
## 714 City Hotel 1
## 715 City Hotel 1
## 716 City Hotel 1
## 717 City Hotel 1
## 718 City Hotel 1
## 719 City Hotel 2
## 720 City Hotel 1
## 721 City Hotel 1
## 722 City Hotel 1
## 723 City Hotel 3
## 724 City Hotel 1
## 725 City Hotel 1
## 726 City Hotel 1
## 727 City Hotel 1
## 728 City Hotel 2
## 729 City Hotel 1
## 730 City Hotel 1
## 731 City Hotel 1
## 732 City Hotel 2
## 733 City Hotel 1
## 734 City Hotel 1
## 735 City Hotel 2
## 736 City Hotel 1
## 737 City Hotel 2
## 738 City Hotel 1
## 739 City Hotel 3
## 740 City Hotel 2
## 741 City Hotel 3
## 742 City Hotel 1
## 743 City Hotel 2
## 744 City Hotel 1
## 745 City Hotel 2
## 746 City Hotel 2
## 747 City Hotel 1
## 748 City Hotel 1
## 749 City Hotel 1
## 750 City Hotel 1
## 751 City Hotel 2
## 752 City Hotel 1
## 753 City Hotel 1
## 754 City Hotel 1
## 755 City Hotel 2
## 756 City Hotel 1
## 757 City Hotel 1
## 758 City Hotel 1
## 759 City Hotel 2
## 760 City Hotel 1
## 761 City Hotel 1
## 762 City Hotel 3
## 763 City Hotel 3
## 764 City Hotel 2
## 765 City Hotel 1
## 766 City Hotel 2
## 767 City Hotel 1
## 768 City Hotel 1
## 769 City Hotel 2
## 770 City Hotel 1
## 771 City Hotel 1
## 772 City Hotel 1
## 773 City Hotel 1
## 774 City Hotel 1
## 775 City Hotel 1
## 776 City Hotel 1
## 777 City Hotel 1
## 778 City Hotel 1
## 779 City Hotel 1
## 780 City Hotel 1
## 781 City Hotel 2
## 782 City Hotel 2
## 783 City Hotel 1
## 784 City Hotel 1
## 785 City Hotel 1
## 786 City Hotel 1
## 787 City Hotel 2
## 788 City Hotel 2
## 789 City Hotel 1
## 790 City Hotel 2
## 791 City Hotel 2
## 792 City Hotel 1
## 793 City Hotel 1
## 794 City Hotel 1
## 795 City Hotel 1
## 796 City Hotel 1
## 797 City Hotel 2
## 798 City Hotel 1
## 799 City Hotel 1
## 800 City Hotel 1
## 801 City Hotel 2
## 802 City Hotel 1
## 803 City Hotel 2
## 804 City Hotel 2
## 805 City Hotel 2
## 806 City Hotel 2
## 807 City Hotel 1
## 808 City Hotel 1
## 809 City Hotel 1
## 810 City Hotel 2
## 811 City Hotel 2
## 812 City Hotel 2
## 813 City Hotel 1
## 814 City Hotel 1
## 815 City Hotel 2
## 816 City Hotel 2
## 817 City Hotel 1
## 818 City Hotel 2
## 819 City Hotel 2
## 820 City Hotel 2
## 821 City Hotel 1
## 822 City Hotel 1
## 823 City Hotel 1
## 824 City Hotel 1
## 825 City Hotel 2
## 826 City Hotel 2
## 827 City Hotel 2
## 828 City Hotel 1
## 829 City Hotel 2
## 830 City Hotel 1
## 831 City Hotel 1
## 832 City Hotel 1
## 833 City Hotel 1
## 834 City Hotel 2
## 835 City Hotel 1
## 836 City Hotel 1
## 837 City Hotel 2
## 838 City Hotel 2
## 839 City Hotel 2
## 840 City Hotel 1
## 841 City Hotel 1
## 842 City Hotel 1
## 843 City Hotel 1
## 844 City Hotel 1
## 845 City Hotel 2
## 846 City Hotel 1
## 847 City Hotel 2
## 848 City Hotel 2
## 849 City Hotel 1
## 850 City Hotel 2
## 851 City Hotel 1
## 852 City Hotel 1
## 853 City Hotel 1
## 854 City Hotel 1
## 855 City Hotel 1
## 856 City Hotel 1
## 857 City Hotel 1
## 858 City Hotel 1
## 859 City Hotel 2
## 860 City Hotel 2
## 861 City Hotel 1
## 862 City Hotel 1
## 863 City Hotel 1
## 864 City Hotel 1
## 865 City Hotel 2
## 866 City Hotel 2
## 867 City Hotel 1
## 868 City Hotel 1
## 869 City Hotel 1
## 870 City Hotel 1
## 871 City Hotel 1
## 872 City Hotel 2
## 873 City Hotel 2
## 874 City Hotel 2
## 875 City Hotel 1
## 876 City Hotel 2
## 877 City Hotel 2
## 878 City Hotel 2
## 879 City Hotel 1
## 880 City Hotel 1
## 881 City Hotel 1
## 882 City Hotel 1
## 883 City Hotel 1
## 884 City Hotel 2
## 885 City Hotel 2
## 886 City Hotel 1
## 887 City Hotel 1
## 888 City Hotel 1
## 889 City Hotel 2
## 890 City Hotel 2
## 891 City Hotel 2
## 892 City Hotel 2
## 893 City Hotel 1
## 894 City Hotel 1
## 895 City Hotel 2
## 896 City Hotel 1
## 897 City Hotel 1
## 898 City Hotel 2
## 899 City Hotel 1
## 900 City Hotel 1
## 901 City Hotel 1
## 902 City Hotel 1
## 903 City Hotel 1
## 904 City Hotel 1
## 905 City Hotel 2
## 906 City Hotel 2
## 907 City Hotel 2
## 908 City Hotel 1
## 909 City Hotel 1
## 910 City Hotel 2
## 911 City Hotel 2
## 912 City Hotel 2
## 913 City Hotel 1
## 914 City Hotel 1
## 915 City Hotel 1
## 916 City Hotel 1
## 917 City Hotel 1
## 918 City Hotel 1
## 919 City Hotel 1
## 920 City Hotel 1
## 921 City Hotel 1
## 922 City Hotel 1
## 923 City Hotel 2
## 924 City Hotel 2
## 925 City Hotel 1
## 926 City Hotel 1
## 927 City Hotel 1
## 928 City Hotel 1
## 929 City Hotel 2
## 930 City Hotel 1
## 931 City Hotel 1
## 932 City Hotel 1
## 933 City Hotel 1
## 934 City Hotel 2
## 935 City Hotel 1
## 936 City Hotel 1
## 937 City Hotel 2
## 938 City Hotel 2
## 939 City Hotel 2
## 940 City Hotel 1
## 941 City Hotel 2
## 942 City Hotel 2
## 943 City Hotel 2
## 944 City Hotel 1
## 945 City Hotel 2
## 946 City Hotel 2
## 947 City Hotel 2
## 948 City Hotel 2
## 949 City Hotel 1
## 950 City Hotel 2
## 951 City Hotel 1
## 952 City Hotel 2
## 953 City Hotel 1
## 954 City Hotel 1
## 955 City Hotel 1
## 956 City Hotel 2
## 957 City Hotel 1
## 958 City Hotel 2
## 959 City Hotel 2
## 960 City Hotel 2
## 961 City Hotel 2
## 962 City Hotel 1
## 963 City Hotel 1
## 964 City Hotel 1
## 965 City Hotel 2
## 966 City Hotel 1
## 967 City Hotel 2
## 968 City Hotel 2
## 969 City Hotel 2
## 970 City Hotel 1
## 971 City Hotel 1
## 972 City Hotel 2
## 973 City Hotel 1
## 974 City Hotel 2
## 975 City Hotel 2
## 976 City Hotel 2
## 977 City Hotel 2
## 978 City Hotel 2
## 979 City Hotel 2
## 980 City Hotel 2
## 981 City Hotel 2
## 982 City Hotel 2
## 983 City Hotel 2
## 984 City Hotel 2
## 985 City Hotel 1
## 986 City Hotel 2
## 987 City Hotel 2
## 988 City Hotel 2
## 989 City Hotel 2
## 990 City Hotel 2
## 991 City Hotel 2
## 992 City Hotel 2
## 993 City Hotel 2
## 994 City Hotel 1
## 995 City Hotel 2
## 996 City Hotel 1
## 997 City Hotel 1
## 998 City Hotel 1
## 999 City Hotel 2
## 1000 City Hotel 2
## 1001 City Hotel 2
## 1002 City Hotel 2
## 1003 City Hotel 2
## 1004 City Hotel 2
## 1005 City Hotel 2
## 1006 City Hotel 2
## 1007 City Hotel 1
## 1008 City Hotel 1
## 1009 City Hotel 1
## 1010 City Hotel 1
## 1011 City Hotel 1
## 1012 City Hotel 1
## 1013 City Hotel 1
## 1014 City Hotel 1
## 1015 City Hotel 1
## 1016 City Hotel 2
## 1017 City Hotel 2
## 1018 City Hotel 1
## 1019 City Hotel 2
## 1020 City Hotel 1
## 1021 City Hotel 1
## 1022 City Hotel 2
## 1023 City Hotel 2
## 1024 City Hotel 1
## 1025 City Hotel 2
## 1026 City Hotel 1
## 1027 City Hotel 1
## 1028 City Hotel 1
## 1029 City Hotel 2
## 1030 City Hotel 1
## 1031 City Hotel 1
## 1032 City Hotel 1
## 1033 City Hotel 1
## 1034 City Hotel 1
## 1035 City Hotel 1
## 1036 City Hotel 1
## 1037 City Hotel 1
## 1038 City Hotel 2
## 1039 City Hotel 2
## 1040 City Hotel 1
## 1041 City Hotel 2
## 1042 City Hotel 2
## 1043 City Hotel 2
## 1044 City Hotel 2
## 1045 City Hotel 2
## 1046 City Hotel 1
## 1047 City Hotel 2
## 1048 City Hotel 1
## 1049 City Hotel 1
## 1050 City Hotel 1
## 1051 City Hotel 1
## 1052 City Hotel 1
## 1053 City Hotel 1
## 1054 City Hotel 1
## 1055 City Hotel 2
## 1056 City Hotel 2
## 1057 City Hotel 1
## 1058 City Hotel 1
## 1059 City Hotel 1
## 1060 City Hotel 2
## 1061 City Hotel 2
## 1062 City Hotel 2
## 1063 City Hotel 2
## 1064 City Hotel 1
## 1065 City Hotel 1
## 1066 City Hotel 1
## 1067 City Hotel 1
## 1068 City Hotel 1
## 1069 City Hotel 1
## 1070 City Hotel 2
## 1071 City Hotel 1
## 1072 City Hotel 1
## 1073 City Hotel 1
## 1074 City Hotel 1
## 1075 City Hotel 2
## 1076 City Hotel 1
## 1077 City Hotel 1
## 1078 City Hotel 1
## 1079 City Hotel 1
## 1080 City Hotel 2
## 1081 City Hotel 2
## 1082 City Hotel 2
## 1083 City Hotel 1
## 1084 City Hotel 1
## 1085 City Hotel 2
## 1086 City Hotel 2
## 1087 City Hotel 2
## 1088 City Hotel 2
## 1089 City Hotel 2
## 1090 City Hotel 2
## 1091 City Hotel 2
## 1092 City Hotel 2
## 1093 City Hotel 2
## 1094 City Hotel 2
## 1095 City Hotel 2
## 1096 City Hotel 2
## 1097 City Hotel 1
## 1098 City Hotel 2
## 1099 City Hotel 1
## 1100 City Hotel 1
## 1101 City Hotel 2
## 1102 City Hotel 1
## 1103 City Hotel 1
## 1104 City Hotel 1
## 1105 City Hotel 2
## 1106 City Hotel 2
## 1107 City Hotel 2
## 1108 City Hotel 2
## 1109 City Hotel 1
## 1110 City Hotel 1
## 1111 City Hotel 1
## 1112 City Hotel 1
## 1113 City Hotel 1
## 1114 City Hotel 1
## 1115 City Hotel 1
## 1116 City Hotel 1
## 1117 City Hotel 1
## 1118 City Hotel 1
## 1119 City Hotel 1
## 1120 City Hotel 1
## 1121 City Hotel 2
## 1122 City Hotel 1
## 1123 City Hotel 1
## 1124 City Hotel 1
## 1125 City Hotel 1
## 1126 City Hotel 1
## 1127 City Hotel 2
## 1128 City Hotel 2
## 1129 City Hotel 1
## 1130 City Hotel 2
## 1131 City Hotel 1
## 1132 City Hotel 2
## 1133 City Hotel 1
## 1134 City Hotel 1
## 1135 City Hotel 2
## 1136 City Hotel 1
## 1137 City Hotel 2
## 1138 City Hotel 2
## 1139 City Hotel 1
## 1140 City Hotel 2
## 1141 City Hotel 2
## 1142 City Hotel 2
## 1143 City Hotel 2
## 1144 City Hotel 2
## 1145 City Hotel 1
## 1146 City Hotel 1
## 1147 City Hotel 1
## 1148 City Hotel 1
## 1149 City Hotel 2
## 1150 City Hotel 1
## 1151 City Hotel 1
## 1152 City Hotel 2
## 1153 City Hotel 1
## 1154 City Hotel 1
## 1155 City Hotel 2
## 1156 City Hotel 2
## 1157 City Hotel 2
## 1158 City Hotel 1
## 1159 City Hotel 1
## 1160 City Hotel 1
## 1161 City Hotel 2
## 1162 City Hotel 2
## 1163 City Hotel 2
## 1164 City Hotel 2
## 1165 City Hotel 1
## 1166 City Hotel 1
## 1167 City Hotel 2
## 1168 City Hotel 1
## 1169 City Hotel 1
## 1170 City Hotel 1
## 1171 City Hotel 1
## 1172 City Hotel 1
## 1173 City Hotel 1
## 1174 City Hotel 1
## 1175 City Hotel 1
## 1176 City Hotel 1
## 1177 City Hotel 1
## 1178 City Hotel 2
## 1179 City Hotel 1
## 1180 City Hotel 1
## 1181 City Hotel 1
## 1182 City Hotel 1
## 1183 City Hotel 2
## 1184 City Hotel 2
## 1185 City Hotel 1
## 1186 City Hotel 1
## 1187 City Hotel 1
## 1188 City Hotel 1
## 1189 City Hotel 2
## 1190 City Hotel 1
## 1191 City Hotel 1
## 1192 City Hotel 1
## 1193 City Hotel 1
## 1194 City Hotel 1
## 1195 City Hotel 1
## 1196 City Hotel 2
## 1197 City Hotel 2
## 1198 City Hotel 1
## 1199 City Hotel 2
## 1200 City Hotel 1
## 1201 City Hotel 1
## 1202 City Hotel 1
## 1203 City Hotel 1
## 1204 City Hotel 2
## 1205 City Hotel 1
## 1206 City Hotel 1
## 1207 City Hotel 2
## 1208 City Hotel 2
## 1209 City Hotel 2
## 1210 City Hotel 2
## 1211 City Hotel 1
## 1212 City Hotel 2
## 1213 City Hotel 1
## 1214 City Hotel 1
## 1215 City Hotel 1
## 1216 City Hotel 1
## 1217 City Hotel 2
## 1218 City Hotel 2
## 1219 City Hotel 2
## 1220 City Hotel 1
## 1221 City Hotel 1
## 1222 City Hotel 2
## 1223 City Hotel 1
## 1224 City Hotel 1
## 1225 City Hotel 1
## 1226 City Hotel 1
## 1227 City Hotel 1
## 1228 City Hotel 2
## 1229 City Hotel 1
## 1230 City Hotel 2
## 1231 City Hotel 1
## 1232 City Hotel 2
## 1233 City Hotel 2
## 1234 City Hotel 1
## 1235 City Hotel 2
## 1236 City Hotel 1
## 1237 City Hotel 1
## 1238 City Hotel 1
## 1239 City Hotel 2
## 1240 City Hotel 2
## 1241 City Hotel 1
## 1242 City Hotel 1
## 1243 City Hotel 2
## 1244 City Hotel 1
## 1245 City Hotel 1
## 1246 City Hotel 2
## 1247 City Hotel 2
## 1248 City Hotel 1
## 1249 City Hotel 2
## 1250 City Hotel 2
## 1251 City Hotel 3
## 1252 City Hotel 1
## 1253 City Hotel 1
## 1254 City Hotel 2
## 1255 City Hotel 2
## 1256 City Hotel 2
## 1257 City Hotel 1
## 1258 City Hotel 1
## 1259 City Hotel 1
## 1260 City Hotel 1
## 1261 City Hotel 1
## 1262 City Hotel 2
## 1263 City Hotel 1
## 1264 City Hotel 1
## 1265 City Hotel 1
## 1266 City Hotel 1
## 1267 City Hotel 1
## 1268 City Hotel 1
## 1269 City Hotel 2
## 1270 City Hotel 1
## 1271 City Hotel 2
## 1272 City Hotel 1
## 1273 City Hotel 1
## 1274 City Hotel 1
## 1275 City Hotel 2
## 1276 City Hotel 1
## 1277 City Hotel 1
## 1278 City Hotel 1
## 1279 City Hotel 2
## 1280 City Hotel 2
## 1281 City Hotel 2
## 1282 City Hotel 1
## 1283 City Hotel 2
## 1284 City Hotel 1
## 1285 City Hotel 1
## 1286 City Hotel 1
## 1287 City Hotel 2
## 1288 City Hotel 1
## 1289 City Hotel 2
## 1290 City Hotel 2
## 1291 City Hotel 2
## 1292 City Hotel 1
## 1293 City Hotel 1
## 1294 City Hotel 1
## 1295 City Hotel 1
## 1296 City Hotel 1
## 1297 City Hotel 1
## 1298 City Hotel 2
## 1299 City Hotel 1
## 1300 City Hotel 2
## 1301 City Hotel 2
## 1302 City Hotel 2
## 1303 City Hotel 3
## 1304 City Hotel 2
## 1305 City Hotel 1
## 1306 City Hotel 1
## 1307 City Hotel 2
## 1308 City Hotel 2
## 1309 City Hotel 1
## 1310 City Hotel 1
## 1311 City Hotel 2
## 1312 City Hotel 2
## 1313 City Hotel 2
## 1314 City Hotel 1
## 1315 City Hotel 1
## 1316 City Hotel 2
## 1317 City Hotel 2
## 1318 City Hotel 2
## 1319 City Hotel 1
## 1320 City Hotel 1
## 1321 City Hotel 1
## 1322 City Hotel 1
## 1323 City Hotel 2
## 1324 City Hotel 1
## 1325 City Hotel 1
## 1326 City Hotel 1
## 1327 City Hotel 1
## 1328 City Hotel 1
## 1329 City Hotel 1
## 1330 City Hotel 1
## 1331 City Hotel 2
## 1332 City Hotel 2
## 1333 City Hotel 1
## 1334 City Hotel 2
## 1335 City Hotel 2
## 1336 City Hotel 2
## 1337 City Hotel 1
## 1338 City Hotel 1
## 1339 City Hotel 1
## 1340 City Hotel 2
## 1341 City Hotel 1
## 1342 City Hotel 1
## 1343 City Hotel 1
## 1344 City Hotel 1
## 1345 City Hotel 1
## 1346 City Hotel 1
## 1347 City Hotel 1
## 1348 City Hotel 2
## 1349 City Hotel 2
## 1350 City Hotel 1
## 1351 City Hotel 1
## 1352 City Hotel 1
## 1353 City Hotel 1
## 1354 City Hotel 1
## 1355 City Hotel 2
## 1356 City Hotel 3
## 1357 City Hotel 1
## 1358 City Hotel 2
## 1359 City Hotel 1
## 1360 City Hotel 1
## 1361 City Hotel 1
## 1362 City Hotel 1
## 1363 City Hotel 2
## 1364 City Hotel 1
## 1365 City Hotel 1
## 1366 City Hotel 1
## 1367 City Hotel 1
## 1368 City Hotel 2
## 1369 City Hotel 2
## 1370 City Hotel 3
## 1371 City Hotel 1
## 1372 City Hotel 2
## 1373 City Hotel 2
## 1374 City Hotel 2
## 1375 City Hotel 1
## 1376 City Hotel 1
## 1377 City Hotel 2
## 1378 City Hotel 1
## 1379 City Hotel 1
## 1380 City Hotel 1
## 1381 City Hotel 2
## 1382 City Hotel 1
## 1383 City Hotel 1
## 1384 City Hotel 1
## 1385 City Hotel 1
## 1386 City Hotel 2
## 1387 City Hotel 1
## 1388 City Hotel 2
## 1389 City Hotel 2
## 1390 City Hotel 1
## 1391 City Hotel 1
## 1392 City Hotel 1
## 1393 City Hotel 1
## 1394 City Hotel 2
## 1395 City Hotel 1
## 1396 City Hotel 1
## 1397 City Hotel 1
## 1398 City Hotel 1
## 1399 City Hotel 1
## 1400 City Hotel 1
## 1401 City Hotel 2
## 1402 City Hotel 1
## 1403 City Hotel 1
## 1404 City Hotel 2
## 1405 City Hotel 2
## 1406 City Hotel 1
## 1407 City Hotel 2
## 1408 City Hotel 1
## 1409 City Hotel 1
## 1410 City Hotel 2
## 1411 City Hotel 1
## 1412 City Hotel 2
## 1413 City Hotel 2
## 1414 City Hotel 1
## 1415 City Hotel 1
## 1416 City Hotel 1
## 1417 City Hotel 2
## 1418 City Hotel 1
## 1419 City Hotel 2
## 1420 City Hotel 2
## 1421 City Hotel 2
## 1422 City Hotel 1
## 1423 City Hotel 2
## 1424 City Hotel 2
## 1425 City Hotel 2
## 1426 City Hotel 1
## 1427 City Hotel 2
## 1428 City Hotel 1
## 1429 City Hotel 2
## 1430 City Hotel 2
## 1431 City Hotel 2
## 1432 City Hotel 1
## 1433 City Hotel 1
## 1434 City Hotel 1
## 1435 City Hotel 1
## 1436 City Hotel 1
## 1437 City Hotel 1
## 1438 City Hotel 2
## 1439 City Hotel 1
## 1440 City Hotel 2
## 1441 City Hotel 1
## 1442 City Hotel 1
## 1443 City Hotel 1
## 1444 City Hotel 1
## 1445 City Hotel 1
## 1446 City Hotel 2
## 1447 City Hotel 1
## 1448 City Hotel 2
## 1449 City Hotel 1
## 1450 City Hotel 1
## 1451 City Hotel 1
## 1452 City Hotel 1
## 1453 City Hotel 2
## 1454 City Hotel 2
## 1455 City Hotel 1
## 1456 City Hotel 1
## 1457 City Hotel 1
## 1458 City Hotel 1
## 1459 City Hotel 2
## 1460 City Hotel 2
## 1461 City Hotel 1
## 1462 City Hotel 1
## 1463 City Hotel 1
## 1464 City Hotel 1
## 1465 City Hotel 1
## 1466 City Hotel 2
## 1467 City Hotel 1
## 1468 City Hotel 1
## 1469 City Hotel 2
## 1470 City Hotel 2
## 1471 City Hotel 1
## 1472 City Hotel 2
## 1473 City Hotel 2
## 1474 City Hotel 3
## 1475 City Hotel 2
## 1476 City Hotel 2
## 1477 City Hotel 2
## 1478 City Hotel 1
## 1479 City Hotel 2
## 1480 City Hotel 2
## 1481 City Hotel 2
## 1482 City Hotel 2
## 1483 City Hotel 2
## 1484 City Hotel 2
## 1485 City Hotel 2
## 1486 City Hotel 1
## 1487 City Hotel 2
## 1488 City Hotel 2
## 1489 City Hotel 1
## 1490 City Hotel 2
## 1491 City Hotel 1
## 1492 City Hotel 1
## 1493 City Hotel 1
## 1494 City Hotel 1
## 1495 City Hotel 2
## 1496 City Hotel 2
## 1497 City Hotel 2
## 1498 City Hotel 2
## 1499 City Hotel 2
## 1500 City Hotel 2
## 1501 City Hotel 2
## 1502 City Hotel 2
## 1503 City Hotel 2
## 1504 City Hotel 2
## 1505 City Hotel 2
## 1506 City Hotel 2
## 1507 City Hotel 1
## 1508 City Hotel 1
## 1509 City Hotel 1
## 1510 City Hotel 2
## 1511 City Hotel 1
## 1512 City Hotel 2
## 1513 City Hotel 2
## 1514 City Hotel 2
## 1515 City Hotel 2
## 1516 City Hotel 1
## 1517 City Hotel 1
## 1518 City Hotel 2
## 1519 City Hotel 2
## 1520 City Hotel 1
## 1521 City Hotel 1
## 1522 City Hotel 1
## 1523 City Hotel 2
## 1524 City Hotel 1
## 1525 City Hotel 2
## 1526 City Hotel 1
## 1527 City Hotel 2
## 1528 City Hotel 2
## 1529 City Hotel 1
## 1530 City Hotel 1
## 1531 City Hotel 1
## 1532 City Hotel 1
## 1533 City Hotel 1
## 1534 City Hotel 1
## 1535 City Hotel 1
## 1536 City Hotel 1
## 1537 City Hotel 2
## 1538 City Hotel 1
## 1539 City Hotel 1
## 1540 City Hotel 1
## 1541 City Hotel 1
## 1542 City Hotel 2
## 1543 City Hotel 1
## 1544 City Hotel 1
## 1545 City Hotel 2
## 1546 City Hotel 2
## 1547 City Hotel 2
## 1548 City Hotel 1
## 1549 City Hotel 1
## 1550 City Hotel 1
## 1551 City Hotel 2
## 1552 City Hotel 2
## 1553 City Hotel 1
## 1554 City Hotel 1
## 1555 City Hotel 1
## 1556 City Hotel 1
## 1557 City Hotel 2
## 1558 City Hotel 1
## 1559 City Hotel 2
## 1560 City Hotel 2
## 1561 City Hotel 2
## 1562 City Hotel 1
## 1563 City Hotel 1
## 1564 City Hotel 1
## 1565 City Hotel 1
## 1566 City Hotel 1
## 1567 City Hotel 2
## 1568 City Hotel 3
## 1569 City Hotel 1
## 1570 City Hotel 1
## 1571 City Hotel 1
## 1572 City Hotel 1
## 1573 City Hotel 2
## 1574 City Hotel 1
## 1575 City Hotel 2
## 1576 City Hotel 1
## 1577 City Hotel 1
## 1578 City Hotel 1
## 1579 City Hotel 2
## 1580 City Hotel 2
## 1581 City Hotel 2
## 1582 City Hotel 1
## 1583 City Hotel 1
## 1584 City Hotel 1
## 1585 City Hotel 2
## 1586 City Hotel 2
## 1587 City Hotel 1
## 1588 City Hotel 1
## 1589 City Hotel 1
## 1590 City Hotel 1
## 1591 City Hotel 1
## 1592 City Hotel 1
## 1593 City Hotel 1
## 1594 City Hotel 2
## 1595 City Hotel 2
## 1596 City Hotel 2
## 1597 City Hotel 2
## 1598 City Hotel 2
## 1599 City Hotel 2
## 1600 City Hotel 2
## 1601 City Hotel 2
## 1602 City Hotel 1
## 1603 City Hotel 1
## 1604 City Hotel 1
## 1605 City Hotel 1
## 1606 City Hotel 1
## 1607 City Hotel 1
## 1608 City Hotel 1
## 1609 City Hotel 1
## 1610 City Hotel 1
## 1611 City Hotel 2
## 1612 City Hotel 1
## 1613 City Hotel 1
## 1614 City Hotel 2
## 1615 City Hotel 2
## 1616 City Hotel 2
## 1617 City Hotel 1
## 1618 City Hotel 1
## 1619 City Hotel 2
## 1620 City Hotel 2
## 1621 City Hotel 2
## 1622 City Hotel 1
## 1623 City Hotel 2
## 1624 City Hotel 1
## 1625 City Hotel 2
## 1626 City Hotel 1
## 1627 City Hotel 1
## 1628 City Hotel 2
## 1629 City Hotel 2
## 1630 City Hotel 1
## 1631 City Hotel 1
## 1632 City Hotel 2
## 1633 City Hotel 2
## 1634 City Hotel 1
## 1635 City Hotel 1
## 1636 City Hotel 1
## 1637 City Hotel 1
## 1638 City Hotel 1
## 1639 City Hotel 1
## 1640 City Hotel 2
## 1641 City Hotel 1
## 1642 City Hotel 2
## 1643 City Hotel 1
## 1644 City Hotel 1
## 1645 City Hotel 2
## 1646 City Hotel 1
## 1647 City Hotel 1
## 1648 City Hotel 1
## 1649 City Hotel 2
## 1650 City Hotel 2
## 1651 City Hotel 1
## 1652 City Hotel 1
## 1653 City Hotel 1
## 1654 City Hotel 2
## 1655 City Hotel 2
## 1656 City Hotel 2
## 1657 City Hotel 1
## 1658 City Hotel 2
## 1659 City Hotel 2
## 1660 City Hotel 1
## 1661 City Hotel 2
## 1662 City Hotel 1
## 1663 City Hotel 1
## 1664 City Hotel 2
## 1665 City Hotel 1
## 1666 City Hotel 1
## 1667 City Hotel 2
## 1668 City Hotel 2
## 1669 City Hotel 2
## 1670 City Hotel 2
## 1671 City Hotel 2
## 1672 City Hotel 2
## 1673 City Hotel 2
## 1674 City Hotel 2
## 1675 City Hotel 1
## 1676 City Hotel 2
## 1677 City Hotel 2
## 1678 City Hotel 2
## 1679 City Hotel 3
## 1680 City Hotel 2
## 1681 City Hotel 2
## 1682 City Hotel 2
## 1683 City Hotel 1
## 1684 City Hotel 2
## 1685 City Hotel 2
## 1686 City Hotel 1
## 1687 City Hotel 2
## 1688 City Hotel 1
## 1689 City Hotel 2
## 1690 City Hotel 2
## 1691 City Hotel 2
## 1692 City Hotel 2
## 1693 City Hotel 2
## 1694 City Hotel 1
## 1695 City Hotel 1
## 1696 City Hotel 2
## 1697 City Hotel 1
## 1698 City Hotel 2
## 1699 City Hotel 1
## 1700 City Hotel 2
## 1701 City Hotel 2
## 1702 City Hotel 2
## 1703 City Hotel 1
## 1704 City Hotel 2
## 1705 City Hotel 1
## 1706 City Hotel 1
## 1707 City Hotel 1
## 1708 City Hotel 2
## 1709 City Hotel 1
## 1710 City Hotel 1
## 1711 City Hotel 1
## 1712 City Hotel 1
## 1713 City Hotel 2
## 1714 City Hotel 1
## 1715 City Hotel 2
## 1716 City Hotel 1
## 1717 City Hotel 2
## 1718 City Hotel 1
## 1719 City Hotel 2
## 1720 City Hotel 1
## 1721 City Hotel 1
## 1722 City Hotel 1
## 1723 City Hotel 2
## 1724 City Hotel 1
## 1725 City Hotel 2
## 1726 City Hotel 2
## 1727 City Hotel 1
## 1728 City Hotel 1
## 1729 City Hotel 1
## 1730 City Hotel 1
## 1731 City Hotel 2
## 1732 City Hotel 1
## 1733 City Hotel 1
## 1734 City Hotel 1
## 1735 City Hotel 1
## 1736 City Hotel 1
## 1737 City Hotel 1
## 1738 City Hotel 1
## 1739 City Hotel 2
## 1740 City Hotel 2
## 1741 City Hotel 2
## 1742 City Hotel 1
## 1743 City Hotel 1
## 1744 City Hotel 1
## 1745 City Hotel 1
## 1746 City Hotel 1
## 1747 City Hotel 1
## 1748 City Hotel 2
## 1749 City Hotel 1
## 1750 City Hotel 1
## 1751 City Hotel 2
## 1752 City Hotel 2
## 1753 City Hotel 2
## 1754 City Hotel 1
## 1755 City Hotel 1
## 1756 City Hotel 1
## 1757 City Hotel 1
## 1758 City Hotel 1
## 1759 City Hotel 2
## 1760 City Hotel 2
## 1761 City Hotel 1
## 1762 City Hotel 1
## 1763 City Hotel 2
## 1764 City Hotel 2
## 1765 City Hotel 2
## 1766 City Hotel 2
## 1767 City Hotel 3
## 1768 City Hotel 2
## 1769 City Hotel 2
## 1770 City Hotel 1
## 1771 City Hotel 2
## 1772 City Hotel 1
## 1773 City Hotel 2
## 1774 City Hotel 2
## 1775 City Hotel 1
## 1776 City Hotel 1
## 1777 City Hotel 1
## 1778 City Hotel 1
## 1779 City Hotel 1
## 1780 City Hotel 1
## 1781 City Hotel 2
## 1782 City Hotel 1
## 1783 City Hotel 1
## 1784 City Hotel 2
## 1785 City Hotel 2
## 1786 City Hotel 2
## 1787 City Hotel 1
## 1788 City Hotel 2
## 1789 City Hotel 2
## 1790 City Hotel 2
## 1791 City Hotel 2
## 1792 City Hotel 2
## 1793 City Hotel 2
## 1794 City Hotel 2
## 1795 City Hotel 1
## 1796 City Hotel 2
## 1797 City Hotel 1
## 1798 City Hotel 1
## 1799 City Hotel 1
## 1800 City Hotel 1
## 1801 City Hotel 2
## 1802 City Hotel 1
## 1803 City Hotel 2
## 1804 City Hotel 1
## 1805 City Hotel 1
## 1806 City Hotel 2
## 1807 City Hotel 2
## 1808 City Hotel 2
## 1809 City Hotel 2
## 1810 City Hotel 1
## 1811 City Hotel 2
## 1812 City Hotel 1
## 1813 City Hotel 2
## 1814 City Hotel 1
## 1815 City Hotel 1
## 1816 City Hotel 2
## 1817 City Hotel 1
## 1818 City Hotel 1
## 1819 City Hotel 1
## 1820 City Hotel 2
## 1821 City Hotel 2
## 1822 City Hotel 1
## 1823 City Hotel 1
## 1824 City Hotel 2
## 1825 City Hotel 1
## 1826 City Hotel 1
## 1827 City Hotel 2
## 1828 City Hotel 2
## 1829 City Hotel 2
## 1830 City Hotel 1
## 1831 City Hotel 2
## 1832 City Hotel 2
## 1833 City Hotel 2
## 1834 City Hotel 1
## 1835 City Hotel 1
## 1836 City Hotel 2
## 1837 City Hotel 1
## 1838 City Hotel 2
## 1839 City Hotel 1
## 1840 City Hotel 1
## 1841 City Hotel 2
## 1842 City Hotel 1
## 1843 City Hotel 1
## 1844 City Hotel 1
## 1845 City Hotel 1
## 1846 City Hotel 1
## 1847 City Hotel 2
## 1848 City Hotel 2
## 1849 City Hotel 1
## 1850 City Hotel 1
## 1851 City Hotel 1
## 1852 City Hotel 1
## 1853 City Hotel 1
## 1854 City Hotel 1
## 1855 City Hotel 1
## 1856 City Hotel 1
## 1857 City Hotel 1
## 1858 City Hotel 1
## 1859 City Hotel 1
## 1860 City Hotel 1
## 1861 City Hotel 2
## 1862 City Hotel 2
## 1863 City Hotel 2
## 1864 City Hotel 1
## 1865 City Hotel 2
## 1866 City Hotel 2
## 1867 City Hotel 1
## 1868 City Hotel 1
## 1869 City Hotel 1
## 1870 City Hotel 1
## 1871 City Hotel 1
## 1872 City Hotel 1
## 1873 City Hotel 3
## 1874 City Hotel 1
## 1875 City Hotel 1
## 1876 City Hotel 2
## 1877 City Hotel 1
## 1878 City Hotel 2
## 1879 City Hotel 1
## 1880 City Hotel 1
## 1881 City Hotel 1
## 1882 City Hotel 1
## 1883 City Hotel 2
## 1884 City Hotel 1
## 1885 City Hotel 1
## 1886 City Hotel 1
## 1887 City Hotel 1
## 1888 City Hotel 1
## 1889 City Hotel 1
## 1890 City Hotel 2
## 1891 City Hotel 1
## 1892 City Hotel 1
## 1893 City Hotel 1
## 1894 City Hotel 1
## 1895 City Hotel 1
## 1896 City Hotel 1
## 1897 City Hotel 1
## 1898 City Hotel 1
## 1899 City Hotel 1
## 1900 City Hotel 1
## 1901 City Hotel 1
## 1902 City Hotel 1
## 1903 City Hotel 2
## 1904 City Hotel 1
## 1905 City Hotel 1
## 1906 City Hotel 2
## 1907 City Hotel 2
## 1908 City Hotel 1
## 1909 City Hotel 2
## 1910 City Hotel 2
## 1911 City Hotel 1
## 1912 City Hotel 2
## 1913 City Hotel 2
## 1914 City Hotel 1
## 1915 City Hotel 2
## 1916 City Hotel 1
## 1917 City Hotel 1
## 1918 City Hotel 1
## 1919 City Hotel 1
## 1920 City Hotel 2
## 1921 City Hotel 1
## 1922 City Hotel 2
## 1923 City Hotel 1
## 1924 City Hotel 2
## 1925 City Hotel 1
## 1926 City Hotel 2
## 1927 City Hotel 1
## 1928 City Hotel 1
## 1929 City Hotel 1
## 1930 City Hotel 1
## 1931 City Hotel 1
## 1932 City Hotel 2
## 1933 City Hotel 1
## 1934 City Hotel 1
## 1935 City Hotel 1
## 1936 City Hotel 1
## 1937 City Hotel 1
## 1938 City Hotel 1
## 1939 City Hotel 1
## 1940 City Hotel 2
## 1941 City Hotel 2
## 1942 City Hotel 1
## 1943 City Hotel 1
## 1944 City Hotel 1
## 1945 City Hotel 1
## 1946 City Hotel 1
## 1947 City Hotel 1
## 1948 City Hotel 1
## 1949 City Hotel 2
## 1950 City Hotel 1
## 1951 City Hotel 1
## 1952 City Hotel 2
## 1953 City Hotel 2
## 1954 City Hotel 1
## 1955 City Hotel 1
## 1956 City Hotel 1
## 1957 City Hotel 1
## 1958 City Hotel 2
## 1959 City Hotel 2
## 1960 City Hotel 1
## 1961 City Hotel 1
## 1962 City Hotel 1
## 1963 City Hotel 1
## 1964 City Hotel 1
## 1965 City Hotel 2
## 1966 City Hotel 1
## 1967 City Hotel 2
## 1968 City Hotel 2
## 1969 City Hotel 2
## 1970 City Hotel 2
## 1971 City Hotel 1
## 1972 City Hotel 1
## 1973 City Hotel 1
## 1974 City Hotel 2
## 1975 City Hotel 1
## 1976 City Hotel 1
## 1977 City Hotel 1
## 1978 City Hotel 2
## 1979 City Hotel 3
## 1980 City Hotel 1
## 1981 City Hotel 1
## 1982 City Hotel 1
## 1983 City Hotel 1
## 1984 City Hotel 1
## 1985 City Hotel 1
## 1986 City Hotel 1
## 1987 City Hotel 1
## 1988 City Hotel 2
## 1989 City Hotel 1
## 1990 City Hotel 1
## 1991 City Hotel 1
## 1992 City Hotel 1
## 1993 City Hotel 1
## 1994 City Hotel 1
## 1995 City Hotel 1
## 1996 City Hotel 1
## 1997 City Hotel 2
## 1998 City Hotel 1
## 1999 City Hotel 1
## 2000 City Hotel 2
## 2001 City Hotel 2
## 2002 City Hotel 2
## 2003 City Hotel 1
## 2004 City Hotel 1
## 2005 City Hotel 2
## 2006 City Hotel 1
## 2007 City Hotel 1
## 2008 City Hotel 1
## 2009 City Hotel 2
## 2010 City Hotel 2
## 2011 City Hotel 1
## 2012 City Hotel 1
## 2013 City Hotel 1
## 2014 City Hotel 2
## 2015 City Hotel 1
## 2016 City Hotel 1
## 2017 City Hotel 1
## 2018 City Hotel 1
## 2019 City Hotel 2
## 2020 City Hotel 1
## 2021 City Hotel 2
## 2022 City Hotel 1
## 2023 City Hotel 1
## 2024 City Hotel 1
## 2025 City Hotel 2
## 2026 City Hotel 1
## 2027 City Hotel 1
## 2028 City Hotel 1
## 2029 City Hotel 1
## 2030 City Hotel 2
## 2031 City Hotel 1
## 2032 City Hotel 1
## 2033 City Hotel 1
## 2034 City Hotel 1
## 2035 City Hotel 1
## 2036 City Hotel 1
## 2037 City Hotel 2
## 2038 City Hotel 2
## 2039 City Hotel 2
## 2040 City Hotel 1
## 2041 City Hotel 1
## 2042 City Hotel 2
## 2043 City Hotel 2
## 2044 City Hotel 2
## 2045 City Hotel 2
## 2046 City Hotel 1
## 2047 City Hotel 1
## 2048 City Hotel 1
## 2049 City Hotel 2
## 2050 City Hotel 1
## 2051 City Hotel 1
## 2052 City Hotel 1
## 2053 City Hotel 1
## 2054 City Hotel 1
## 2055 City Hotel 1
## 2056 City Hotel 1
## 2057 City Hotel 1
## 2058 City Hotel 1
## 2059 City Hotel 1
## 2060 City Hotel 1
## 2061 City Hotel 2
## 2062 City Hotel 2
## 2063 City Hotel 2
## 2064 City Hotel 1
## 2065 City Hotel 1
## 2066 City Hotel 2
## 2067 City Hotel 2
## 2068 City Hotel 2
## 2069 City Hotel 2
## 2070 City Hotel 2
## 2071 City Hotel 2
## 2072 City Hotel 1
## 2073 City Hotel 1
## 2074 City Hotel 1
## 2075 City Hotel 1
## 2076 City Hotel 2
## 2077 City Hotel 2
## 2078 City Hotel 2
## 2079 City Hotel 1
## 2080 City Hotel 1
## 2081 City Hotel 2
## 2082 City Hotel 2
## 2083 City Hotel 2
## 2084 City Hotel 2
## 2085 City Hotel 1
## 2086 City Hotel 1
## 2087 City Hotel 2
## 2088 City Hotel 1
## 2089 City Hotel 1
## 2090 City Hotel 1
## 2091 City Hotel 1
## 2092 City Hotel 1
## 2093 City Hotel 1
## 2094 City Hotel 2
## 2095 City Hotel 1
## 2096 City Hotel 1
## 2097 City Hotel 2
## 2098 City Hotel 1
## 2099 City Hotel 2
## 2100 City Hotel 2
## 2101 City Hotel 2
## 2102 City Hotel 2
## 2103 City Hotel 2
## 2104 City Hotel 1
## 2105 City Hotel 2
## 2106 City Hotel 1
## 2107 City Hotel 1
## 2108 City Hotel 1
## 2109 City Hotel 1
## 2110 City Hotel 1
## 2111 City Hotel 2
## 2112 City Hotel 1
## 2113 City Hotel 2
## 2114 City Hotel 1
## 2115 City Hotel 1
## 2116 City Hotel 1
## 2117 City Hotel 2
## 2118 City Hotel 2
## 2119 City Hotel 1
## 2120 City Hotel 1
## 2121 City Hotel 1
## 2122 City Hotel 1
## 2123 City Hotel 1
## 2124 City Hotel 2
## 2125 City Hotel 1
## 2126 City Hotel 1
## 2127 City Hotel 1
## 2128 City Hotel 2
## 2129 City Hotel 2
## 2130 City Hotel 1
## 2131 City Hotel 1
## 2132 City Hotel 2
## 2133 City Hotel 1
## 2134 City Hotel 2
## 2135 City Hotel 1
## 2136 City Hotel 2
## 2137 City Hotel 1
## 2138 City Hotel 2
## 2139 City Hotel 2
## 2140 City Hotel 1
## 2141 City Hotel 2
## 2142 City Hotel 3
## 2143 City Hotel 9
## 2144 City Hotel 1
## 2145 City Hotel 2
## 2146 City Hotel 2
## 2147 City Hotel 2
## 2148 City Hotel 1
## 2149 City Hotel 1
## 2150 City Hotel 2
## 2151 City Hotel 1
## 2152 City Hotel 2
## 2153 City Hotel 1
## 2154 City Hotel 2
## 2155 City Hotel 1
## 2156 City Hotel 2
## 2157 City Hotel 1
## 2158 City Hotel 2
## 2159 City Hotel 2
## 2160 City Hotel 2
## 2161 City Hotel 2
## 2162 City Hotel 1
## 2163 City Hotel 2
## 2164 City Hotel 2
## 2165 City Hotel 2
## 2166 City Hotel 2
## 2167 City Hotel 1
## 2168 City Hotel 2
## 2169 City Hotel 2
## 2170 City Hotel 1
## 2171 City Hotel 1
## 2172 City Hotel 2
## 2173 City Hotel 1
## 2174 City Hotel 1
## 2175 City Hotel 2
## 2176 City Hotel 2
## 2177 City Hotel 1
## 2178 City Hotel 1
## 2179 City Hotel 1
## 2180 City Hotel 2
## 2181 City Hotel 2
## 2182 City Hotel 2
## 2183 City Hotel 2
## 2184 City Hotel 1
## 2185 City Hotel 1
## 2186 City Hotel 1
## 2187 City Hotel 2
## 2188 City Hotel 1
## 2189 City Hotel 1
## 2190 City Hotel 2
## 2191 City Hotel 1
## 2192 City Hotel 1
## 2193 City Hotel 1
## 2194 City Hotel 1
## 2195 City Hotel 2
## 2196 City Hotel 1
## 2197 City Hotel 1
## 2198 City Hotel 2
## 2199 City Hotel 1
## 2200 City Hotel 2
## 2201 City Hotel 2
## 2202 City Hotel 1
## 2203 City Hotel 2
## 2204 City Hotel 2
## 2205 City Hotel 1
## 2206 City Hotel 2
## 2207 City Hotel 1
## 2208 City Hotel 1
## 2209 City Hotel 1
## 2210 City Hotel 1
## 2211 City Hotel 2
## 2212 City Hotel 3
## 2213 City Hotel 1
## 2214 City Hotel 1
## 2215 City Hotel 1
## 2216 City Hotel 1
## 2217 City Hotel 1
## 2218 City Hotel 1
## 2219 City Hotel 1
## 2220 City Hotel 2
## 2221 City Hotel 2
## 2222 City Hotel 2
## 2223 City Hotel 2
## 2224 City Hotel 2
## 2225 City Hotel 2
## 2226 City Hotel 1
## 2227 City Hotel 1
## 2228 City Hotel 1
## 2229 City Hotel 1
## 2230 City Hotel 1
## 2231 City Hotel 1
## 2232 City Hotel 1
## 2233 City Hotel 1
## 2234 City Hotel 2
## 2235 City Hotel 1
## 2236 City Hotel 1
## 2237 City Hotel 1
## 2238 City Hotel 3
## 2239 City Hotel 3
## 2240 City Hotel 1
## 2241 City Hotel 1
## 2242 City Hotel 1
## 2243 City Hotel 1
## 2244 City Hotel 1
## 2245 City Hotel 1
## 2246 City Hotel 1
## 2247 City Hotel 2
## 2248 City Hotel 1
## 2249 City Hotel 1
## 2250 City Hotel 3
## 2251 City Hotel 1
## 2252 City Hotel 1
## 2253 City Hotel 1
## 2254 City Hotel 2
## 2255 City Hotel 1
## 2256 City Hotel 1
## 2257 City Hotel 2
## 2258 City Hotel 2
## 2259 City Hotel 1
## 2260 City Hotel 2
## 2261 City Hotel 2
## 2262 City Hotel 1
## 2263 City Hotel 2
## 2264 City Hotel 1
## 2265 City Hotel 1
## 2266 City Hotel 1
## 2267 City Hotel 2
## 2268 City Hotel 1
## 2269 City Hotel 1
## 2270 City Hotel 1
## 2271 City Hotel 1
## 2272 City Hotel 1
## 2273 City Hotel 1
## 2274 City Hotel 1
## 2275 City Hotel 1
## 2276 City Hotel 1
## 2277 City Hotel 3
## 2278 City Hotel 2
## 2279 City Hotel 2
## 2280 City Hotel 1
## 2281 City Hotel 2
## 2282 City Hotel 1
## 2283 City Hotel 2
## 2284 City Hotel 1
## 2285 City Hotel 1
## 2286 City Hotel 1
## 2287 City Hotel 2
## 2288 City Hotel 1
## 2289 City Hotel 1
## 2290 City Hotel 1
## 2291 City Hotel 1
## 2292 City Hotel 3
## 2293 City Hotel 1
## 2294 City Hotel 2
## 2295 City Hotel 2
## 2296 City Hotel 1
## 2297 City Hotel 1
## 2298 City Hotel 1
## 2299 City Hotel 1
## 2300 City Hotel 2
## 2301 City Hotel 1
## 2302 City Hotel 2
## 2303 City Hotel 2
## 2304 City Hotel 1
## 2305 City Hotel 1
## 2306 City Hotel 1
## 2307 City Hotel 3
## 2308 City Hotel 1
## 2309 City Hotel 1
## 2310 City Hotel 1
## 2311 City Hotel 1
## 2312 City Hotel 1
## 2313 City Hotel 1
## 2314 City Hotel 1
## 2315 City Hotel 1
## 2316 City Hotel 1
## 2317 City Hotel 1
## 2318 City Hotel 1
## 2319 City Hotel 1
## 2320 City Hotel 1
## 2321 City Hotel 2
## 2322 City Hotel 2
## 2323 City Hotel 2
## 2324 City Hotel 2
## 2325 City Hotel 1
## 2326 City Hotel 1
## 2327 City Hotel 1
## 2328 City Hotel 1
## 2329 City Hotel 2
## 2330 City Hotel 1
## 2331 City Hotel 2
## 2332 City Hotel 1
## 2333 City Hotel 1
## 2334 City Hotel 2
## 2335 City Hotel 1
## 2336 City Hotel 1
## 2337 City Hotel 1
## 2338 City Hotel 1
## 2339 City Hotel 2
## 2340 City Hotel 2
## 2341 City Hotel 1
## 2342 City Hotel 1
## 2343 City Hotel 1
## 2344 City Hotel 2
## 2345 City Hotel 1
## 2346 City Hotel 2
## 2347 City Hotel 2
## 2348 City Hotel 2
## 2349 City Hotel 2
## 2350 City Hotel 1
## 2351 City Hotel 1
## 2352 City Hotel 1
## 2353 City Hotel 1
## 2354 City Hotel 1
## 2355 City Hotel 2
## 2356 City Hotel 1
## 2357 City Hotel 1
## 2358 City Hotel 1
## 2359 City Hotel 1
## 2360 City Hotel 2
## 2361 City Hotel 2
## 2362 City Hotel 1
## 2363 City Hotel 1
## 2364 City Hotel 2
## 2365 City Hotel 1
## 2366 City Hotel 2
## 2367 City Hotel 1
## 2368 City Hotel 1
## 2369 City Hotel 1
## 2370 City Hotel 1
## 2371 City Hotel 1
## 2372 City Hotel 1
## 2373 City Hotel 2
## 2374 City Hotel 1
## 2375 City Hotel 1
## 2376 City Hotel 1
## 2377 City Hotel 1
## 2378 City Hotel 1
## 2379 City Hotel 2
## 2380 City Hotel 2
## 2381 City Hotel 1
## 2382 City Hotel 2
## 2383 City Hotel 1
## 2384 City Hotel 1
## 2385 City Hotel 1
## 2386 City Hotel 3
## 2387 City Hotel 2
## 2388 City Hotel 2
## 2389 City Hotel 2
## 2390 City Hotel 1
## 2391 City Hotel 1
## 2392 City Hotel 1
## 2393 City Hotel 2
## 2394 City Hotel 1
## 2395 City Hotel 1
## 2396 City Hotel 1
## 2397 City Hotel 2
## 2398 City Hotel 1
## 2399 City Hotel 2
## 2400 City Hotel 1
## 2401 City Hotel 1
## 2402 City Hotel 2
## 2403 City Hotel 3
## 2404 City Hotel 1
## 2405 City Hotel 2
## 2406 City Hotel 1
## 2407 City Hotel 2
## 2408 City Hotel 2
## 2409 City Hotel 1
## 2410 City Hotel 1
## 2411 City Hotel 2
## 2412 City Hotel 2
## 2413 City Hotel 1
## 2414 City Hotel 2
## 2415 City Hotel 2
## 2416 City Hotel 1
## 2417 City Hotel 1
## 2418 City Hotel 1
## 2419 City Hotel 1
## 2420 City Hotel 1
## 2421 City Hotel 1
## 2422 City Hotel 1
## 2423 City Hotel 1
## 2424 City Hotel 2
## 2425 City Hotel 2
## 2426 City Hotel 1
## 2427 City Hotel 2
## 2428 City Hotel 1
## 2429 City Hotel 1
## 2430 City Hotel 1
## 2431 City Hotel 1
## 2432 City Hotel 1
## 2433 City Hotel 1
## 2434 City Hotel 1
## 2435 City Hotel 1
## 2436 City Hotel 1
## 2437 City Hotel 1
## 2438 City Hotel 2
## 2439 City Hotel 1
## 2440 City Hotel 1
## 2441 City Hotel 1
## 2442 City Hotel 1
## 2443 City Hotel 1
## 2444 City Hotel 2
## 2445 City Hotel 1
## 2446 City Hotel 2
## 2447 City Hotel 1
## 2448 City Hotel 1
## 2449 City Hotel 1
## 2450 City Hotel 1
## 2451 City Hotel 1
## 2452 City Hotel 1
## 2453 City Hotel 1
## 2454 City Hotel 1
## 2455 City Hotel 2
## 2456 City Hotel 1
## 2457 City Hotel 2
## 2458 City Hotel 1
## 2459 City Hotel 1
## 2460 City Hotel 1
## 2461 City Hotel 1
## 2462 City Hotel 1
## 2463 City Hotel 1
## 2464 City Hotel 1
## 2465 City Hotel 1
## 2466 City Hotel 1
## 2467 City Hotel 1
## 2468 City Hotel 1
## 2469 City Hotel 1
## 2470 City Hotel 1
## 2471 City Hotel 2
## 2472 City Hotel 2
## 2473 City Hotel 1
## 2474 City Hotel 1
## 2475 City Hotel 2
## 2476 City Hotel 1
## 2477 City Hotel 1
## 2478 City Hotel 1
## 2479 City Hotel 1
## 2480 City Hotel 1
## 2481 City Hotel 2
## 2482 City Hotel 1
## 2483 City Hotel 1
## 2484 City Hotel 2
## 2485 City Hotel 2
## 2486 City Hotel 1
## 2487 City Hotel 1
## 2488 City Hotel 1
## 2489 City Hotel 2
## 2490 City Hotel 1
## 2491 City Hotel 2
## 2492 City Hotel 2
## 2493 City Hotel 1
## 2494 City Hotel 1
## 2495 City Hotel 1
## 2496 City Hotel 2
## 2497 City Hotel 1
## 2498 City Hotel 1
## 2499 City Hotel 1
## 2500 City Hotel 1
## 2501 City Hotel 2
## 2502 City Hotel 2
## 2503 City Hotel 2
## 2504 City Hotel 1
## 2505 City Hotel 1
## 2506 City Hotel 2
## 2507 City Hotel 1
## 2508 City Hotel 1
## 2509 City Hotel 1
## 2510 City Hotel 1
## 2511 City Hotel 2
## 2512 City Hotel 1
## 2513 City Hotel 2
## 2514 City Hotel 1
## 2515 City Hotel 1
## 2516 City Hotel 1
## 2517 City Hotel 2
## 2518 City Hotel 1
## 2519 City Hotel 2
## 2520 City Hotel 1
## 2521 City Hotel 1
## 2522 City Hotel 1
## 2523 City Hotel 1
## 2524 City Hotel 1
## 2525 City Hotel 1
## 2526 City Hotel 1
## 2527 City Hotel 1
## 2528 City Hotel 1
## 2529 City Hotel 1
## 2530 City Hotel 3
## 2531 City Hotel 2
## 2532 City Hotel 1
## 2533 City Hotel 1
## 2534 City Hotel 2
## 2535 City Hotel 1
## 2536 City Hotel 2
## 2537 City Hotel 1
## 2538 City Hotel 1
## 2539 City Hotel 2
## 2540 City Hotel 1
## 2541 City Hotel 1
## 2542 City Hotel 1
## 2543 City Hotel 1
## 2544 City Hotel 1
## 2545 City Hotel 2
## 2546 City Hotel 1
## 2547 City Hotel 1
## 2548 City Hotel 1
## 2549 City Hotel 2
## 2550 City Hotel 2
## 2551 City Hotel 2
## 2552 City Hotel 1
## 2553 City Hotel 1
## 2554 City Hotel 1
## 2555 City Hotel 2
## 2556 City Hotel 2
## 2557 City Hotel 2
## 2558 City Hotel 2
## 2559 City Hotel 2
## 2560 City Hotel 2
## 2561 City Hotel 1
## 2562 City Hotel 2
## 2563 City Hotel 2
## 2564 City Hotel 1
## 2565 City Hotel 1
## 2566 City Hotel 1
## 2567 City Hotel 1
## 2568 City Hotel 2
## 2569 City Hotel 1
## 2570 City Hotel 1
## 2571 City Hotel 1
## 2572 City Hotel 1
## 2573 City Hotel 2
## 2574 City Hotel 2
## 2575 City Hotel 1
## 2576 City Hotel 1
## 2577 City Hotel 1
## 2578 City Hotel 1
## 2579 City Hotel 2
## 2580 City Hotel 2
## 2581 City Hotel 3
## 2582 City Hotel 1
## 2583 City Hotel 2
## 2584 City Hotel 2
## 2585 City Hotel 2
## 2586 City Hotel 1
## 2587 City Hotel 1
## 2588 City Hotel 1
## 2589 City Hotel 2
## 2590 City Hotel 2
## 2591 City Hotel 1
## 2592 City Hotel 1
## 2593 City Hotel 2
## 2594 City Hotel 2
## 2595 City Hotel 1
## 2596 City Hotel 1
## 2597 City Hotel 1
## 2598 City Hotel 2
## 2599 City Hotel 1
## 2600 City Hotel 2
## 2601 City Hotel 1
## 2602 City Hotel 2
## 2603 City Hotel 1
## 2604 City Hotel 1
## 2605 City Hotel 1
## 2606 City Hotel 2
## 2607 City Hotel 1
## 2608 City Hotel 2
## 2609 City Hotel 1
## 2610 City Hotel 1
## 2611 City Hotel 1
## 2612 City Hotel 1
## 2613 City Hotel 2
## 2614 City Hotel 1
## 2615 City Hotel 1
## 2616 City Hotel 1
## 2617 City Hotel 1
## 2618 City Hotel 2
## 2619 City Hotel 1
## 2620 City Hotel 2
## 2621 City Hotel 1
## 2622 City Hotel 1
## 2623 City Hotel 1
## 2624 City Hotel 1
## 2625 City Hotel 1
## 2626 City Hotel 2
## 2627 City Hotel 1
## 2628 City Hotel 1
## 2629 City Hotel 2
## 2630 City Hotel 2
## 2631 City Hotel 1
## 2632 City Hotel 1
## 2633 City Hotel 1
## 2634 City Hotel 1
## 2635 City Hotel 2
## 2636 City Hotel 2
## 2637 City Hotel 1
## 2638 City Hotel 1
## 2639 City Hotel 2
## 2640 City Hotel 2
## 2641 City Hotel 1
## 2642 City Hotel 1
## 2643 City Hotel 1
## 2644 City Hotel 1
## 2645 City Hotel 1
## 2646 City Hotel 1
## 2647 City Hotel 1
## 2648 City Hotel 2
## 2649 City Hotel 1
## 2650 City Hotel 1
## 2651 City Hotel 2
## 2652 City Hotel 1
## 2653 City Hotel 1
## 2654 City Hotel 1
## 2655 City Hotel 1
## 2656 City Hotel 2
## 2657 City Hotel 1
## 2658 City Hotel 1
## 2659 City Hotel 1
## 2660 City Hotel 1
## 2661 City Hotel 2
## 2662 City Hotel 1
## 2663 City Hotel 2
## 2664 City Hotel 2
## 2665 City Hotel 1
## 2666 City Hotel 1
## 2667 City Hotel 1
## 2668 City Hotel 2
## 2669 City Hotel 1
## 2670 City Hotel 2
## 2671 City Hotel 2
## 2672 City Hotel 2
## 2673 City Hotel 1
## 2674 City Hotel 1
## 2675 City Hotel 1
## 2676 City Hotel 1
## 2677 City Hotel 1
## 2678 City Hotel 1
## 2679 City Hotel 1
## 2680 City Hotel 1
## 2681 City Hotel 2
## 2682 City Hotel 1
## 2683 City Hotel 1
## 2684 City Hotel 2
## 2685 City Hotel 2
## 2686 City Hotel 1
## 2687 City Hotel 1
## 2688 City Hotel 2
## 2689 City Hotel 2
## 2690 City Hotel 2
## 2691 City Hotel 1
## 2692 City Hotel 2
## 2693 City Hotel 2
## 2694 City Hotel 2
## 2695 City Hotel 1
## 2696 City Hotel 1
## 2697 City Hotel 1
## 2698 City Hotel 1
## 2699 City Hotel 1
## 2700 City Hotel 2
## 2701 City Hotel 1
## 2702 City Hotel 2
## 2703 City Hotel 1
## 2704 City Hotel 1
## 2705 City Hotel 2
## 2706 City Hotel 1
## 2707 City Hotel 2
## 2708 City Hotel 1
## 2709 City Hotel 1
## 2710 City Hotel 1
## 2711 City Hotel 1
## 2712 City Hotel 2
## 2713 City Hotel 1
## 2714 City Hotel 1
## 2715 City Hotel 2
## 2716 City Hotel 1
## 2717 City Hotel 2
## 2718 City Hotel 1
## 2719 City Hotel 2
## 2720 City Hotel 1
## 2721 City Hotel 2
## 2722 City Hotel 1
## 2723 City Hotel 1
## 2724 City Hotel 2
## 2725 City Hotel 1
## 2726 City Hotel 1
## 2727 City Hotel 1
## 2728 City Hotel 2
## 2729 City Hotel 2
## 2730 City Hotel 2
## 2731 City Hotel 1
## 2732 City Hotel 1
## 2733 City Hotel 2
## 2734 City Hotel 1
## 2735 City Hotel 1
## 2736 City Hotel 1
## 2737 City Hotel 1
## 2738 City Hotel 2
## 2739 City Hotel 1
## 2740 City Hotel 2
## 2741 City Hotel 1
## 2742 City Hotel 2
## 2743 City Hotel 1
## 2744 City Hotel 1
## 2745 City Hotel 1
## 2746 City Hotel 1
## 2747 City Hotel 1
## 2748 City Hotel 1
## 2749 City Hotel 1
## 2750 City Hotel 1
## 2751 City Hotel 2
## 2752 City Hotel 2
## 2753 City Hotel 2
## 2754 City Hotel 2
## 2755 City Hotel 2
## 2756 City Hotel 2
## 2757 City Hotel 1
## 2758 City Hotel 2
## 2759 City Hotel 2
## 2760 City Hotel 2
## 2761 City Hotel 2
## 2762 City Hotel 1
## 2763 City Hotel 1
## 2764 City Hotel 2
## 2765 City Hotel 1
## 2766 City Hotel 2
## 2767 City Hotel 1
## 2768 City Hotel 2
## 2769 City Hotel 2
## 2770 City Hotel 1
## 2771 City Hotel 2
## 2772 City Hotel 1
## 2773 City Hotel 1
## 2774 City Hotel 1
## 2775 City Hotel 2
## 2776 City Hotel 2
## 2777 City Hotel 1
## 2778 City Hotel 2
## 2779 City Hotel 2
## 2780 City Hotel 2
## 2781 City Hotel 1
## 2782 City Hotel 1
## 2783 City Hotel 1
## 2784 City Hotel 1
## 2785 City Hotel 1
## 2786 City Hotel 2
## 2787 City Hotel 2
## 2788 City Hotel 1
## 2789 City Hotel 1
## 2790 City Hotel 1
## 2791 City Hotel 1
## 2792 City Hotel 1
## 2793 City Hotel 1
## 2794 City Hotel 2
## 2795 City Hotel 2
## 2796 City Hotel 1
## 2797 City Hotel 2
## 2798 City Hotel 3
## 2799 City Hotel 2
## 2800 City Hotel 2
## 2801 City Hotel 1
## 2802 City Hotel 1
## 2803 City Hotel 1
## 2804 City Hotel 1
## 2805 City Hotel 1
## 2806 City Hotel 1
## 2807 City Hotel 2
## 2808 City Hotel 2
## 2809 City Hotel 1
## 2810 City Hotel 1
## 2811 City Hotel 1
## 2812 City Hotel 2
## 2813 City Hotel 2
## 2814 City Hotel 2
## 2815 City Hotel 1
## 2816 City Hotel 1
## 2817 City Hotel 2
## 2818 City Hotel 1
## 2819 City Hotel 2
## 2820 City Hotel 1
## 2821 City Hotel 1
## 2822 City Hotel 1
## 2823 City Hotel 1
## 2824 City Hotel 1
## 2825 City Hotel 2
## 2826 City Hotel 1
## 2827 City Hotel 1
## 2828 City Hotel 2
## 2829 City Hotel 1
## 2830 City Hotel 1
## 2831 City Hotel 1
## 2832 City Hotel 1
## 2833 City Hotel 1
## 2834 City Hotel 2
## 2835 City Hotel 1
## 2836 City Hotel 1
## 2837 City Hotel 2
## 2838 City Hotel 2
## 2839 City Hotel 1
## 2840 City Hotel 2
## 2841 City Hotel 1
## 2842 City Hotel 1
## 2843 City Hotel 1
## 2844 City Hotel 2
## 2845 City Hotel 1
## 2846 City Hotel 1
## 2847 City Hotel 2
## 2848 City Hotel 1
## 2849 City Hotel 1
## 2850 City Hotel 1
## 2851 City Hotel 1
## 2852 City Hotel 2
## 2853 City Hotel 2
## 2854 City Hotel 2
## 2855 City Hotel 1
## 2856 City Hotel 2
## 2857 City Hotel 1
## 2858 City Hotel 1
## 2859 City Hotel 1
## 2860 City Hotel 1
## 2861 City Hotel 1
## 2862 City Hotel 1
## 2863 City Hotel 1
## 2864 City Hotel 1
## 2865 City Hotel 2
## 2866 City Hotel 2
## 2867 City Hotel 1
## 2868 City Hotel 1
## 2869 City Hotel 2
## 2870 City Hotel 2
## 2871 City Hotel 1
## 2872 City Hotel 1
## 2873 City Hotel 2
## 2874 City Hotel 1
## 2875 City Hotel 2
## 2876 City Hotel 1
## 2877 City Hotel 1
## 2878 City Hotel 1
## 2879 City Hotel 1
## 2880 City Hotel 1
## 2881 City Hotel 2
## 2882 City Hotel 1
## 2883 City Hotel 1
## 2884 City Hotel 1
## 2885 City Hotel 1
## 2886 City Hotel 1
## 2887 City Hotel 1
## 2888 City Hotel 1
## 2889 City Hotel 1
## 2890 City Hotel 2
## 2891 City Hotel 2
## 2892 City Hotel 2
## 2893 City Hotel 1
## 2894 City Hotel 1
## 2895 City Hotel 1
## 2896 City Hotel 1
## 2897 City Hotel 2
## 2898 City Hotel 1
## 2899 City Hotel 3
## 2900 City Hotel 1
## 2901 City Hotel 2
## 2902 City Hotel 1
## 2903 City Hotel 1
## 2904 City Hotel 1
## 2905 City Hotel 1
## 2906 City Hotel 1
## 2907 City Hotel 3
## 2908 City Hotel 1
## 2909 City Hotel 2
## 2910 City Hotel 2
## 2911 City Hotel 1
## 2912 City Hotel 2
## 2913 City Hotel 2
## 2914 City Hotel 2
## 2915 City Hotel 1
## 2916 City Hotel 1
## 2917 City Hotel 1
## 2918 City Hotel 1
## 2919 City Hotel 2
## 2920 City Hotel 1
## 2921 City Hotel 1
## 2922 City Hotel 2
## 2923 City Hotel 1
## 2924 City Hotel 1
## 2925 City Hotel 2
## 2926 City Hotel 2
## 2927 City Hotel 1
## 2928 City Hotel 1
## 2929 City Hotel 2
## 2930 City Hotel 2
## 2931 City Hotel 1
## 2932 City Hotel 1
## 2933 City Hotel 1
## 2934 City Hotel 1
## 2935 City Hotel 2
## 2936 City Hotel 1
## 2937 City Hotel 2
## 2938 City Hotel 1
## 2939 City Hotel 1
## 2940 City Hotel 1
## 2941 City Hotel 2
## 2942 City Hotel 1
## 2943 City Hotel 2
## 2944 City Hotel 1
## 2945 City Hotel 1
## 2946 City Hotel 2
## 2947 City Hotel 1
## 2948 City Hotel 1
## 2949 City Hotel 1
## 2950 City Hotel 2
## 2951 City Hotel 1
## 2952 City Hotel 2
## 2953 City Hotel 1
## 2954 City Hotel 1
## 2955 City Hotel 1
## 2956 City Hotel 1
## 2957 City Hotel 1
## 2958 City Hotel 1
## 2959 City Hotel 2
## 2960 City Hotel 2
## 2961 City Hotel 1
## 2962 City Hotel 2
## 2963 City Hotel 2
## 2964 City Hotel 1
## 2965 City Hotel 1
## 2966 City Hotel 1
## 2967 City Hotel 2
## 2968 City Hotel 1
## 2969 City Hotel 1
## 2970 City Hotel 1
## 2971 City Hotel 1
## 2972 City Hotel 1
## 2973 City Hotel 1
## 2974 City Hotel 1
## 2975 City Hotel 1
## 2976 City Hotel 2
## 2977 City Hotel 1
## 2978 City Hotel 2
## 2979 City Hotel 1
## 2980 City Hotel 3
## 2981 City Hotel 2
## 2982 City Hotel 2
## 2983 City Hotel 1
## 2984 City Hotel 1
## 2985 City Hotel 1
## 2986 City Hotel 1
## 2987 City Hotel 2
## 2988 City Hotel 2
## 2989 City Hotel 2
## 2990 City Hotel 1
## 2991 City Hotel 1
## 2992 City Hotel 1
## 2993 City Hotel 1
## 2994 City Hotel 2
## 2995 City Hotel 2
## 2996 City Hotel 1
## 2997 City Hotel 2
## 2998 City Hotel 2
## 2999 City Hotel 1
## 3000 City Hotel 1
## 3001 City Hotel 1
## 3002 City Hotel 1
## 3003 City Hotel 2
## 3004 City Hotel 1
## 3005 City Hotel 1
## 3006 City Hotel 1
## 3007 City Hotel 1
## 3008 City Hotel 1
## 3009 City Hotel 2
## 3010 City Hotel 1
## 3011 City Hotel 1
## 3012 City Hotel 1
## 3013 City Hotel 1
## 3014 City Hotel 1
## 3015 City Hotel 1
## 3016 City Hotel 1
## 3017 City Hotel 1
## 3018 City Hotel 2
## 3019 City Hotel 1
## 3020 City Hotel 1
## 3021 City Hotel 2
## 3022 City Hotel 1
## 3023 City Hotel 1
## 3024 City Hotel 1
## 3025 City Hotel 1
## 3026 City Hotel 1
## 3027 City Hotel 1
## 3028 City Hotel 1
## 3029 City Hotel 1
## 3030 City Hotel 1
## 3031 City Hotel 1
## 3032 City Hotel 1
## 3033 City Hotel 2
## 3034 City Hotel 1
## 3035 City Hotel 2
## 3036 City Hotel 1
## 3037 City Hotel 2
## 3038 City Hotel 1
## 3039 City Hotel 2
## 3040 City Hotel 1
## 3041 City Hotel 2
## 3042 City Hotel 2
## 3043 City Hotel 1
## 3044 City Hotel 1
## 3045 City Hotel 1
## 3046 City Hotel 2
## 3047 City Hotel 2
## 3048 City Hotel 1
## 3049 City Hotel 2
## 3050 City Hotel 1
## 3051 City Hotel 2
## 3052 City Hotel 1
## 3053 City Hotel 1
## 3054 City Hotel 1
## 3055 City Hotel 1
## 3056 City Hotel 2
## 3057 City Hotel 2
## 3058 City Hotel 2
## 3059 City Hotel 2
## 3060 City Hotel 1
## 3061 City Hotel 2
## 3062 City Hotel 2
## 3063 City Hotel 1
## 3064 City Hotel 1
## 3065 City Hotel 1
## 3066 City Hotel 2
## 3067 City Hotel 3
## 3068 City Hotel 2
## 3069 City Hotel 2
## 3070 City Hotel 2
## 3071 City Hotel 1
## 3072 City Hotel 1
## 3073 City Hotel 1
## 3074 City Hotel 1
## 3075 City Hotel 2
## 3076 City Hotel 2
## 3077 City Hotel 2
## 3078 City Hotel 1
## 3079 City Hotel 1
## 3080 City Hotel 2
## 3081 City Hotel 1
## 3082 City Hotel 1
## 3083 City Hotel 1
## 3084 City Hotel 1
## 3085 City Hotel 1
## 3086 City Hotel 2
## 3087 City Hotel 1
## 3088 City Hotel 2
## 3089 City Hotel 1
## 3090 City Hotel 1
## 3091 City Hotel 2
## 3092 City Hotel 3
## 3093 City Hotel 2
## 3094 City Hotel 1
## 3095 City Hotel 2
## 3096 City Hotel 1
## 3097 City Hotel 2
## 3098 City Hotel 1
## 3099 City Hotel 2
## 3100 City Hotel 1
## 3101 City Hotel 1
## 3102 City Hotel 1
## 3103 City Hotel 1
## 3104 City Hotel 1
## 3105 City Hotel 2
## 3106 City Hotel 1
## 3107 City Hotel 1
## 3108 City Hotel 2
## 3109 City Hotel 1
## 3110 City Hotel 2
## 3111 City Hotel 1
## 3112 City Hotel 1
## 3113 City Hotel 1
## 3114 City Hotel 1
## 3115 City Hotel 1
## 3116 City Hotel 2
## 3117 City Hotel 2
## 3118 City Hotel 1
## 3119 City Hotel 2
## 3120 City Hotel 1
## 3121 City Hotel 1
## 3122 City Hotel 1
## 3123 City Hotel 1
## 3124 City Hotel 1
## 3125 City Hotel 1
## 3126 City Hotel 1
## 3127 City Hotel 1
## 3128 City Hotel 2
## 3129 City Hotel 2
## 3130 City Hotel 1
## 3131 City Hotel 1
## 3132 City Hotel 1
## 3133 City Hotel 2
## 3134 City Hotel 2
## 3135 City Hotel 2
## 3136 City Hotel 1
## 3137 City Hotel 1
## 3138 City Hotel 2
## 3139 City Hotel 2
## 3140 City Hotel 1
## 3141 City Hotel 1
## 3142 City Hotel 1
## 3143 City Hotel 2
## 3144 City Hotel 2
## 3145 City Hotel 2
## 3146 City Hotel 1
## 3147 City Hotel 1
## 3148 City Hotel 1
## 3149 City Hotel 2
## 3150 City Hotel 1
## 3151 City Hotel 1
## 3152 City Hotel 1
## 3153 City Hotel 1
## 3154 City Hotel 1
## 3155 City Hotel 1
## 3156 City Hotel 1
## 3157 City Hotel 2
## 3158 City Hotel 2
## 3159 City Hotel 2
## 3160 City Hotel 1
## 3161 City Hotel 1
## 3162 City Hotel 1
## 3163 City Hotel 1
## 3164 City Hotel 2
## 3165 City Hotel 1
## 3166 City Hotel 2
## 3167 City Hotel 1
## 3168 City Hotel 2
## 3169 City Hotel 1
## 3170 City Hotel 1
## 3171 City Hotel 1
## 3172 City Hotel 2
## 3173 City Hotel 1
## 3174 City Hotel 2
## 3175 City Hotel 2
## 3176 City Hotel 1
## 3177 City Hotel 1
## 3178 City Hotel 1
## 3179 City Hotel 1
## 3180 City Hotel 1
## 3181 City Hotel 1
## 3182 City Hotel 2
## 3183 City Hotel 2
## 3184 City Hotel 2
## 3185 City Hotel 1
## 3186 City Hotel 1
## 3187 City Hotel 2
## 3188 City Hotel 1
## 3189 City Hotel 1
## 3190 City Hotel 1
## 3191 City Hotel 2
## 3192 City Hotel 1
## 3193 City Hotel 1
## 3194 City Hotel 1
## 3195 City Hotel 1
## 3196 City Hotel 1
## 3197 City Hotel 1
## 3198 City Hotel 1
## 3199 City Hotel 2
## 3200 City Hotel 2
## 3201 City Hotel 1
## 3202 City Hotel 1
## 3203 City Hotel 1
## 3204 City Hotel 1
## 3205 City Hotel 1
## 3206 City Hotel 1
## 3207 City Hotel 1
## 3208 City Hotel 1
## 3209 City Hotel 1
## 3210 City Hotel 1
## 3211 City Hotel 2
## 3212 City Hotel 1
## 3213 City Hotel 2
## 3214 City Hotel 1
## 3215 City Hotel 1
## 3216 City Hotel 2
## 3217 City Hotel 1
## 3218 City Hotel 1
## 3219 City Hotel 1
## 3220 City Hotel 1
## 3221 City Hotel 2
## 3222 City Hotel 2
## 3223 City Hotel 1
## 3224 City Hotel 1
## 3225 City Hotel 1
## 3226 City Hotel 1
## 3227 City Hotel 1
## 3228 City Hotel 1
## 3229 City Hotel 1
## 3230 City Hotel 1
## 3231 City Hotel 1
## 3232 City Hotel 2
## 3233 City Hotel 1
## 3234 City Hotel 2
## 3235 City Hotel 1
## 3236 City Hotel 1
## 3237 City Hotel 1
## 3238 City Hotel 2
## 3239 City Hotel 2
## 3240 City Hotel 2
## 3241 City Hotel 1
## 3242 City Hotel 1
## 3243 City Hotel 1
## 3244 City Hotel 2
## 3245 City Hotel 2
## 3246 City Hotel 2
## 3247 City Hotel 1
## 3248 City Hotel 1
## 3249 City Hotel 2
## 3250 City Hotel 1
## 3251 City Hotel 2
## 3252 City Hotel 2
## 3253 City Hotel 3
## 3254 City Hotel 1
## 3255 City Hotel 2
## 3256 City Hotel 2
## 3257 City Hotel 2
## 3258 City Hotel 1
## 3259 City Hotel 1
## 3260 City Hotel 1
## 3261 City Hotel 1
## 3262 City Hotel 2
## 3263 City Hotel 1
## 3264 City Hotel 1
## 3265 City Hotel 1
## 3266 City Hotel 2
## 3267 City Hotel 1
## 3268 City Hotel 1
## 3269 City Hotel 2
## 3270 City Hotel 1
## 3271 City Hotel 1
## 3272 City Hotel 2
## 3273 City Hotel 1
## 3274 City Hotel 1
## 3275 City Hotel 2
## 3276 City Hotel 2
## 3277 City Hotel 1
## 3278 City Hotel 1
## 3279 City Hotel 1
## 3280 City Hotel 1
## 3281 City Hotel 1
## 3282 City Hotel 1
## 3283 City Hotel 2
## 3284 City Hotel 3
## 3285 City Hotel 2
## 3286 City Hotel 1
## 3287 City Hotel 1
## 3288 City Hotel 1
## 3289 City Hotel 1
## 3290 City Hotel 1
## 3291 City Hotel 2
## 3292 City Hotel 1
## 3293 City Hotel 1
## 3294 City Hotel 2
## 3295 City Hotel 1
## 3296 City Hotel 2
## 3297 City Hotel 1
## 3298 City Hotel 1
## 3299 City Hotel 1
## 3300 City Hotel 1
## 3301 City Hotel 1
## 3302 City Hotel 3
## 3303 City Hotel 1
## 3304 City Hotel 2
## 3305 City Hotel 1
## 3306 City Hotel 1
## 3307 City Hotel 1
## 3308 City Hotel 1
## 3309 City Hotel 1
## 3310 City Hotel 2
## 3311 City Hotel 1
## 3312 City Hotel 1
## 3313 City Hotel 2
## 3314 City Hotel 1
## 3315 City Hotel 1
## 3316 City Hotel 1
## 3317 City Hotel 2
## 3318 City Hotel 2
## 3319 City Hotel 1
## 3320 City Hotel 2
## 3321 City Hotel 2
## 3322 City Hotel 2
## 3323 City Hotel 1
## 3324 City Hotel 1
## 3325 City Hotel 2
## 3326 City Hotel 1
## 3327 City Hotel 2
## 3328 City Hotel 2
## 3329 City Hotel 2
## 3330 City Hotel 1
## 3331 City Hotel 2
## 3332 City Hotel 1
## 3333 City Hotel 1
## 3334 City Hotel 2
## 3335 City Hotel 1
## 3336 City Hotel 1
## 3337 City Hotel 2
## 3338 City Hotel 1
## 3339 City Hotel 1
## 3340 City Hotel 1
## 3341 City Hotel 1
## 3342 City Hotel 1
## 3343 City Hotel 1
## 3344 City Hotel 1
## 3345 City Hotel 1
## 3346 City Hotel 1
## 3347 City Hotel 1
## 3348 City Hotel 2
## 3349 City Hotel 2
## 3350 City Hotel 2
## 3351 City Hotel 1
## 3352 City Hotel 1
## 3353 City Hotel 2
## 3354 City Hotel 1
## 3355 City Hotel 2
## 3356 City Hotel 1
## 3357 City Hotel 3
## 3358 City Hotel 2
## 3359 City Hotel 2
## 3360 City Hotel 1
## 3361 City Hotel 1
## 3362 City Hotel 1
## 3363 City Hotel 2
## 3364 City Hotel 2
## 3365 City Hotel 1
## 3366 City Hotel 1
## 3367 City Hotel 1
## 3368 City Hotel 2
## 3369 City Hotel 1
## 3370 City Hotel 1
## 3371 City Hotel 3
## 3372 City Hotel 1
## 3373 City Hotel 1
## 3374 City Hotel 1
## 3375 City Hotel 2
## 3376 City Hotel 1
## 3377 City Hotel 2
## 3378 City Hotel 1
## 3379 City Hotel 1
## 3380 City Hotel 2
## 3381 City Hotel 1
## 3382 City Hotel 2
## 3383 City Hotel 1
## 3384 City Hotel 1
## 3385 City Hotel 1
## 3386 City Hotel 1
## 3387 City Hotel 1
## 3388 City Hotel 1
## 3389 City Hotel 2
## 3390 City Hotel 1
## 3391 City Hotel 1
## 3392 City Hotel 1
## 3393 City Hotel 1
## 3394 City Hotel 1
## 3395 City Hotel 1
## 3396 City Hotel 2
## 3397 City Hotel 1
## 3398 City Hotel 1
## 3399 City Hotel 2
## 3400 City Hotel 1
## 3401 City Hotel 2
## 3402 City Hotel 2
## 3403 City Hotel 2
## 3404 City Hotel 2
## 3405 City Hotel 1
## 3406 City Hotel 2
## 3407 City Hotel 1
## 3408 City Hotel 2
## 3409 City Hotel 2
## 3410 City Hotel 1
## 3411 City Hotel 2
## 3412 City Hotel 2
## 3413 City Hotel 1
## 3414 City Hotel 2
## 3415 City Hotel 1
## 3416 City Hotel 1
## 3417 City Hotel 2
## 3418 City Hotel 1
## 3419 City Hotel 2
## 3420 City Hotel 2
## 3421 City Hotel 1
## 3422 City Hotel 2
## 3423 City Hotel 2
## 3424 City Hotel 2
## 3425 City Hotel 2
## 3426 City Hotel 2
## 3427 City Hotel 1
## 3428 City Hotel 2
## 3429 City Hotel 1
## 3430 City Hotel 1
## 3431 City Hotel 1
## 3432 City Hotel 2
## 3433 City Hotel 2
## 3434 City Hotel 2
## 3435 City Hotel 2
## 3436 City Hotel 1
## 3437 City Hotel 2
## 3438 City Hotel 2
## 3439 City Hotel 1
## 3440 City Hotel 2
## 3441 City Hotel 1
## 3442 City Hotel 3
## 3443 City Hotel 2
## 3444 City Hotel 1
## 3445 City Hotel 1
## 3446 City Hotel 1
## 3447 City Hotel 1
## 3448 City Hotel 1
## 3449 City Hotel 2
## 3450 City Hotel 2
## 3451 City Hotel 2
## 3452 City Hotel 1
## 3453 City Hotel 2
## 3454 City Hotel 1
## 3455 City Hotel 1
## 3456 City Hotel 2
## 3457 City Hotel 1
## 3458 City Hotel 2
## 3459 City Hotel 1
## 3460 City Hotel 1
## 3461 City Hotel 1
## 3462 City Hotel 1
## 3463 City Hotel 1
## 3464 City Hotel 2
## 3465 City Hotel 2
## 3466 City Hotel 2
## 3467 City Hotel 2
## 3468 City Hotel 1
## 3469 City Hotel 2
## 3470 City Hotel 1
## 3471 City Hotel 1
## 3472 City Hotel 1
## 3473 City Hotel 2
## 3474 City Hotel 1
## 3475 City Hotel 1
## 3476 City Hotel 1
## 3477 City Hotel 1
## 3478 City Hotel 2
## 3479 City Hotel 1
## 3480 City Hotel 1
## 3481 City Hotel 1
## 3482 City Hotel 1
## 3483 City Hotel 1
## 3484 City Hotel 2
## 3485 City Hotel 1
## 3486 City Hotel 1
## 3487 City Hotel 2
## 3488 City Hotel 2
## 3489 City Hotel 2
## 3490 City Hotel 1
## 3491 City Hotel 1
## 3492 City Hotel 1
## 3493 City Hotel 1
## 3494 City Hotel 2
## 3495 City Hotel 2
## 3496 City Hotel 1
## 3497 City Hotel 2
## 3498 City Hotel 1
## 3499 City Hotel 3
## 3500 City Hotel 2
## 3501 City Hotel 2
## 3502 City Hotel 1
## 3503 City Hotel 2
## 3504 City Hotel 2
## 3505 City Hotel 1
## 3506 City Hotel 2
## 3507 City Hotel 1
## 3508 City Hotel 2
## 3509 City Hotel 2
## 3510 City Hotel 1
## 3511 City Hotel 1
## 3512 City Hotel 2
## 3513 City Hotel 2
## 3514 City Hotel 1
## 3515 City Hotel 2
## 3516 City Hotel 1
## 3517 City Hotel 1
## 3518 City Hotel 1
## 3519 City Hotel 2
## 3520 City Hotel 2
## 3521 City Hotel 1
## 3522 City Hotel 1
## 3523 City Hotel 1
## 3524 City Hotel 1
## 3525 City Hotel 2
## 3526 City Hotel 1
## 3527 City Hotel 1
## 3528 City Hotel 1
## 3529 City Hotel 1
## 3530 City Hotel 1
## 3531 City Hotel 2
## 3532 City Hotel 1
## 3533 City Hotel 1
## 3534 City Hotel 2
## 3535 City Hotel 1
## 3536 City Hotel 1
## 3537 City Hotel 1
## 3538 City Hotel 1
## 3539 City Hotel 2
## 3540 City Hotel 2
## 3541 City Hotel 1
## 3542 City Hotel 1
## 3543 City Hotel 1
## 3544 City Hotel 2
## 3545 City Hotel 1
## 3546 City Hotel 2
## 3547 City Hotel 1
## 3548 City Hotel 2
## 3549 City Hotel 1
## 3550 City Hotel 1
## 3551 City Hotel 1
## 3552 City Hotel 1
## 3553 City Hotel 1
## 3554 City Hotel 1
## 3555 City Hotel 1
## 3556 City Hotel 1
## 3557 City Hotel 2
## 3558 City Hotel 2
## 3559 City Hotel 2
## 3560 City Hotel 2
## 3561 City Hotel 1
## 3562 City Hotel 1
## 3563 City Hotel 2
## 3564 City Hotel 2
## 3565 City Hotel 1
## 3566 City Hotel 2
## 3567 City Hotel 1
## 3568 City Hotel 1
## 3569 City Hotel 1
## 3570 City Hotel 1
## 3571 City Hotel 1
## 3572 City Hotel 2
## 3573 City Hotel 1
## 3574 City Hotel 1
## 3575 City Hotel 1
## 3576 City Hotel 1
## 3577 City Hotel 1
## 3578 City Hotel 1
## 3579 City Hotel 2
## 3580 City Hotel 1
## 3581 City Hotel 1
## 3582 City Hotel 2
## 3583 City Hotel 1
## 3584 City Hotel 1
## 3585 City Hotel 1
## 3586 City Hotel 1
## 3587 City Hotel 1
## 3588 City Hotel 1
## 3589 City Hotel 1
## 3590 City Hotel 1
## 3591 City Hotel 2
## 3592 City Hotel 2
## 3593 City Hotel 1
## 3594 City Hotel 1
## 3595 City Hotel 1
## 3596 City Hotel 1
## 3597 City Hotel 1
## 3598 City Hotel 2
## 3599 City Hotel 1
## 3600 City Hotel 1
## 3601 City Hotel 2
## 3602 City Hotel 1
## 3603 City Hotel 2
## 3604 City Hotel 1
## 3605 City Hotel 1
## 3606 City Hotel 1
## 3607 City Hotel 1
## 3608 City Hotel 1
## 3609 City Hotel 1
## 3610 City Hotel 1
## 3611 City Hotel 2
## 3612 City Hotel 1
## 3613 City Hotel 1
## 3614 City Hotel 1
## 3615 City Hotel 2
## 3616 City Hotel 2
## 3617 City Hotel 1
## 3618 City Hotel 2
## 3619 City Hotel 1
## 3620 City Hotel 1
## 3621 City Hotel 2
## 3622 City Hotel 2
## 3623 City Hotel 1
## 3624 City Hotel 1
## 3625 City Hotel 1
## 3626 City Hotel 1
## 3627 City Hotel 1
## 3628 City Hotel 2
## 3629 City Hotel 2
## 3630 City Hotel 2
## 3631 City Hotel 2
## 3632 City Hotel 2
## 3633 City Hotel 1
## 3634 City Hotel 1
## 3635 City Hotel 1
## 3636 City Hotel 2
## 3637 City Hotel 2
## 3638 City Hotel 1
## 3639 City Hotel 2
## 3640 City Hotel 1
## 3641 City Hotel 2
## 3642 City Hotel 2
## 3643 City Hotel 2
## 3644 City Hotel 1
## 3645 City Hotel 1
## 3646 City Hotel 1
## 3647 City Hotel 1
## 3648 City Hotel 2
## 3649 City Hotel 2
## 3650 City Hotel 1
## 3651 City Hotel 1
## 3652 City Hotel 1
## 3653 City Hotel 2
## 3654 City Hotel 2
## 3655 City Hotel 2
## 3656 City Hotel 2
## 3657 City Hotel 1
## 3658 City Hotel 2
## 3659 City Hotel 1
## 3660 City Hotel 1
## 3661 City Hotel 1
## 3662 City Hotel 1
## 3663 City Hotel 1
## 3664 City Hotel 1
## 3665 City Hotel 2
## 3666 City Hotel 2
## 3667 City Hotel 2
## 3668 City Hotel 1
## 3669 City Hotel 1
## 3670 City Hotel 2
## 3671 City Hotel 1
## 3672 City Hotel 1
## 3673 City Hotel 2
## 3674 City Hotel 1
## 3675 City Hotel 2
## 3676 City Hotel 1
## 3677 City Hotel 1
## 3678 City Hotel 1
## 3679 City Hotel 1
## 3680 City Hotel 3
## 3681 City Hotel 1
## 3682 City Hotel 1
## 3683 City Hotel 1
## 3684 City Hotel 1
## 3685 City Hotel 2
## 3686 City Hotel 1
## 3687 City Hotel 1
## 3688 City Hotel 2
## 3689 City Hotel 1
## 3690 City Hotel 1
## 3691 City Hotel 1
## 3692 City Hotel 1
## 3693 City Hotel 1
## 3694 City Hotel 1
## 3695 City Hotel 2
## 3696 City Hotel 1
## 3697 City Hotel 1
## 3698 City Hotel 1
## 3699 City Hotel 2
## 3700 City Hotel 1
## 3701 City Hotel 1
## 3702 City Hotel 1
## 3703 City Hotel 2
## 3704 City Hotel 1
## 3705 City Hotel 2
## 3706 City Hotel 2
## 3707 City Hotel 1
## 3708 City Hotel 1
## 3709 City Hotel 2
## 3710 City Hotel 1
## 3711 City Hotel 2
## 3712 City Hotel 1
## 3713 City Hotel 1
## 3714 City Hotel 2
## 3715 City Hotel 1
## 3716 City Hotel 1
## 3717 City Hotel 2
## 3718 City Hotel 2
## 3719 City Hotel 2
## 3720 City Hotel 1
## 3721 City Hotel 2
## 3722 City Hotel 2
## 3723 City Hotel 2
## 3724 City Hotel 2
## 3725 City Hotel 1
## 3726 City Hotel 1
## 3727 City Hotel 1
## 3728 City Hotel 1
## 3729 City Hotel 2
## 3730 City Hotel 1
## 3731 City Hotel 1
## 3732 City Hotel 1
## 3733 City Hotel 2
## 3734 City Hotel 1
## 3735 City Hotel 2
## 3736 City Hotel 1
## 3737 City Hotel 1
## 3738 City Hotel 1
## 3739 City Hotel 2
## 3740 City Hotel 2
## 3741 City Hotel 1
## 3742 City Hotel 2
## 3743 City Hotel 2
## 3744 City Hotel 1
## 3745 City Hotel 1
## 3746 City Hotel 1
## 3747 City Hotel 1
## 3748 City Hotel 1
## 3749 City Hotel 2
## 3750 City Hotel 2
## 3751 City Hotel 2
## 3752 City Hotel 1
## 3753 City Hotel 1
## 3754 City Hotel 1
## 3755 City Hotel 2
## 3756 City Hotel 2
## 3757 City Hotel 1
## 3758 City Hotel 1
## 3759 City Hotel 1
## 3760 City Hotel 1
## 3761 City Hotel 1
## 3762 City Hotel 1
## 3763 City Hotel 1
## 3764 City Hotel 1
## 3765 City Hotel 1
## 3766 City Hotel 1
## 3767 City Hotel 1
## 3768 City Hotel 2
## 3769 City Hotel 1
## 3770 City Hotel 1
## 3771 City Hotel 2
## 3772 City Hotel 1
## 3773 City Hotel 1
## 3774 City Hotel 1
## 3775 City Hotel 2
## 3776 City Hotel 1
## 3777 City Hotel 1
## 3778 City Hotel 2
## 3779 City Hotel 1
## 3780 City Hotel 2
## 3781 City Hotel 2
## 3782 City Hotel 1
## 3783 City Hotel 1
## 3784 City Hotel 1
## 3785 City Hotel 1
## 3786 City Hotel 1
## 3787 City Hotel 1
## 3788 City Hotel 1
## 3789 City Hotel 2
## 3790 City Hotel 2
## 3791 City Hotel 1
## 3792 City Hotel 1
## 3793 City Hotel 2
## 3794 City Hotel 1
## 3795 City Hotel 1
## 3796 City Hotel 2
## 3797 City Hotel 1
## 3798 City Hotel 1
## 3799 City Hotel 2
## 3800 City Hotel 2
## 3801 City Hotel 1
## 3802 City Hotel 1
## 3803 City Hotel 1
## 3804 City Hotel 1
## 3805 City Hotel 1
## 3806 City Hotel 2
## 3807 City Hotel 2
## 3808 City Hotel 1
## 3809 City Hotel 2
## 3810 City Hotel 2
## 3811 City Hotel 2
## 3812 City Hotel 1
## 3813 City Hotel 2
## 3814 City Hotel 1
## 3815 City Hotel 1
## 3816 City Hotel 2
## 3817 City Hotel 2
## 3818 City Hotel 2
## 3819 City Hotel 1
## 3820 City Hotel 1
## 3821 City Hotel 1
## 3822 City Hotel 1
## 3823 City Hotel 1
## 3824 City Hotel 2
## 3825 City Hotel 2
## 3826 City Hotel 1
## 3827 City Hotel 2
## 3828 City Hotel 1
## 3829 City Hotel 2
## 3830 City Hotel 2
## 3831 City Hotel 1
## 3832 City Hotel 1
## 3833 City Hotel 1
## 3834 City Hotel 2
## 3835 City Hotel 1
## 3836 City Hotel 1
## 3837 City Hotel 1
## 3838 City Hotel 1
## 3839 City Hotel 1
## 3840 City Hotel 2
## 3841 City Hotel 1
## 3842 City Hotel 1
## 3843 City Hotel 1
## 3844 City Hotel 1
## 3845 City Hotel 1
## 3846 City Hotel 1
## 3847 City Hotel 2
## 3848 City Hotel 1
## 3849 City Hotel 2
## 3850 City Hotel 1
## 3851 City Hotel 2
## 3852 City Hotel 1
## 3853 City Hotel 2
## 3854 City Hotel 2
## 3855 City Hotel 1
## 3856 City Hotel 1
## 3857 City Hotel 1
## 3858 City Hotel 2
## 3859 City Hotel 1
## 3860 City Hotel 1
## 3861 City Hotel 1
## 3862 City Hotel 1
## 3863 City Hotel 1
## 3864 City Hotel 2
## 3865 City Hotel 1
## 3866 City Hotel 2
## 3867 City Hotel 1
## 3868 City Hotel 1
## 3869 City Hotel 2
## 3870 City Hotel 1
## 3871 City Hotel 1
## 3872 City Hotel 1
## 3873 City Hotel 1
## 3874 City Hotel 1
## 3875 City Hotel 1
## 3876 City Hotel 1
## 3877 City Hotel 1
## 3878 City Hotel 1
## 3879 City Hotel 1
## 3880 City Hotel 2
## 3881 City Hotel 1
## 3882 City Hotel 1
## 3883 City Hotel 1
## 3884 City Hotel 1
## 3885 City Hotel 1
## 3886 City Hotel 2
## 3887 City Hotel 2
## 3888 City Hotel 1
## 3889 City Hotel 1
## 3890 City Hotel 1
## 3891 City Hotel 1
## 3892 City Hotel 1
## 3893 City Hotel 1
## 3894 City Hotel 1
## 3895 City Hotel 1
## 3896 City Hotel 1
## 3897 City Hotel 2
## 3898 City Hotel 2
## 3899 City Hotel 2
## 3900 City Hotel 1
## 3901 City Hotel 2
## 3902 City Hotel 1
## 3903 City Hotel 1
## 3904 City Hotel 1
## 3905 City Hotel 1
## 3906 City Hotel 2
## 3907 City Hotel 1
## 3908 City Hotel 2
## 3909 City Hotel 1
## 3910 City Hotel 2
## 3911 City Hotel 1
## 3912 City Hotel 2
## 3913 City Hotel 2
## 3914 City Hotel 1
## 3915 City Hotel 1
## 3916 City Hotel 1
## 3917 City Hotel 1
## 3918 City Hotel 1
## 3919 City Hotel 1
## 3920 City Hotel 2
## 3921 City Hotel 2
## 3922 City Hotel 2
## 3923 City Hotel 2
## 3924 City Hotel 1
## 3925 City Hotel 1
## 3926 City Hotel 2
## 3927 City Hotel 2
## 3928 City Hotel 2
## 3929 City Hotel 1
## 3930 City Hotel 2
## 3931 City Hotel 2
## 3932 City Hotel 1
## 3933 City Hotel 1
## 3934 City Hotel 1
## 3935 City Hotel 1
## 3936 City Hotel 1
## 3937 City Hotel 1
## 3938 City Hotel 2
## 3939 City Hotel 1
## 3940 City Hotel 2
## 3941 City Hotel 1
## 3942 City Hotel 1
## 3943 City Hotel 1
## 3944 City Hotel 2
## 3945 City Hotel 2
## 3946 City Hotel 2
## 3947 City Hotel 1
## 3948 City Hotel 2
## 3949 City Hotel 2
## 3950 City Hotel 1
## 3951 City Hotel 1
## 3952 City Hotel 2
## 3953 City Hotel 1
## 3954 City Hotel 2
## 3955 City Hotel 2
## 3956 City Hotel 1
## 3957 City Hotel 1
## 3958 City Hotel 1
## 3959 City Hotel 2
## 3960 City Hotel 1
## 3961 City Hotel 1
## 3962 City Hotel 1
## 3963 City Hotel 2
## 3964 City Hotel 1
## 3965 City Hotel 3
## 3966 City Hotel 1
## 3967 City Hotel 1
## 3968 City Hotel 2
## 3969 City Hotel 2
## 3970 City Hotel 1
## 3971 City Hotel 1
## 3972 City Hotel 2
## 3973 City Hotel 2
## 3974 City Hotel 1
## 3975 City Hotel 1
## 3976 City Hotel 1
## 3977 City Hotel 2
## 3978 City Hotel 1
## 3979 City Hotel 1
## 3980 City Hotel 1
## 3981 City Hotel 1
## 3982 City Hotel 2
## 3983 City Hotel 1
## 3984 City Hotel 1
## 3985 City Hotel 1
## 3986 City Hotel 2
## 3987 City Hotel 2
## 3988 City Hotel 1
## 3989 City Hotel 1
## 3990 City Hotel 3
## 3991 City Hotel 1
## 3992 City Hotel 1
## 3993 City Hotel 2
## 3994 City Hotel 1
## 3995 City Hotel 1
## 3996 City Hotel 2
## 3997 City Hotel 2
## 3998 City Hotel 1
## 3999 City Hotel 1
## 4000 City Hotel 2
## 4001 City Hotel 1
## 4002 City Hotel 2
## 4003 City Hotel 1
## 4004 City Hotel 1
## 4005 City Hotel 2
## 4006 City Hotel 1
## 4007 City Hotel 1
## 4008 City Hotel 2
## 4009 City Hotel 1
## 4010 City Hotel 1
## 4011 City Hotel 1
## 4012 City Hotel 1
## 4013 City Hotel 1
## 4014 City Hotel 1
## 4015 City Hotel 1
## 4016 City Hotel 2
## 4017 City Hotel 1
## 4018 City Hotel 2
## 4019 City Hotel 2
## 4020 City Hotel 2
## 4021 City Hotel 2
## 4022 City Hotel 2
## 4023 City Hotel 2
## 4024 City Hotel 1
## 4025 City Hotel 2
## 4026 City Hotel 1
## 4027 City Hotel 2
## 4028 City Hotel 1
## 4029 City Hotel 1
## 4030 City Hotel 2
## 4031 City Hotel 1
## 4032 City Hotel 1
## 4033 City Hotel 1
## 4034 City Hotel 1
## 4035 City Hotel 1
## 4036 City Hotel 2
## 4037 City Hotel 1
## 4038 City Hotel 1
## 4039 City Hotel 2
## 4040 City Hotel 1
## 4041 City Hotel 1
## 4042 City Hotel 1
## 4043 City Hotel 1
## 4044 City Hotel 2
## 4045 City Hotel 1
## 4046 City Hotel 2
## 4047 City Hotel 2
## 4048 City Hotel 1
## 4049 City Hotel 1
## 4050 City Hotel 1
## 4051 City Hotel 1
## 4052 City Hotel 2
## 4053 City Hotel 1
## 4054 City Hotel 2
## 4055 City Hotel 1
## 4056 City Hotel 3
## 4057 City Hotel 2
## 4058 City Hotel 2
## 4059 City Hotel 2
## 4060 City Hotel 1
## 4061 City Hotel 1
## 4062 City Hotel 1
## 4063 City Hotel 1
## 4064 City Hotel 1
## 4065 City Hotel 1
## 4066 City Hotel 1
## 4067 City Hotel 2
## 4068 City Hotel 2
## 4069 City Hotel 2
## 4070 City Hotel 1
## 4071 City Hotel 1
## 4072 City Hotel 2
## 4073 City Hotel 1
## 4074 City Hotel 1
## 4075 City Hotel 1
## 4076 City Hotel 1
## 4077 City Hotel 1
## 4078 City Hotel 1
## 4079 City Hotel 1
## 4080 City Hotel 2
## 4081 City Hotel 1
## 4082 City Hotel 2
## 4083 City Hotel 2
## 4084 City Hotel 2
## 4085 City Hotel 1
## 4086 City Hotel 1
## 4087 City Hotel 1
## 4088 City Hotel 2
## 4089 City Hotel 1
## 4090 City Hotel 2
## 4091 City Hotel 2
## 4092 City Hotel 1
## 4093 City Hotel 2
## 4094 City Hotel 1
## 4095 City Hotel 1
## 4096 City Hotel 2
## 4097 City Hotel 2
## 4098 City Hotel 1
## 4099 City Hotel 1
## 4100 City Hotel 1
## 4101 City Hotel 2
## 4102 City Hotel 1
## 4103 City Hotel 1
## 4104 City Hotel 2
## 4105 City Hotel 2
## 4106 City Hotel 1
## 4107 City Hotel 1
## 4108 City Hotel 1
## 4109 City Hotel 2
## 4110 City Hotel 1
## 4111 City Hotel 1
## 4112 City Hotel 1
## 4113 City Hotel 1
## 4114 City Hotel 1
## 4115 City Hotel 1
## 4116 City Hotel 1
## 4117 City Hotel 2
## 4118 City Hotel 1
## 4119 City Hotel 2
## 4120 City Hotel 1
## 4121 City Hotel 1
## 4122 City Hotel 2
## 4123 City Hotel 2
## 4124 City Hotel 1
## 4125 City Hotel 1
## 4126 City Hotel 1
## 4127 City Hotel 2
## 4128 City Hotel 2
## 4129 City Hotel 1
## 4130 City Hotel 1
## 4131 City Hotel 2
## 4132 City Hotel 2
## 4133 City Hotel 1
## 4134 City Hotel 2
## 4135 City Hotel 2
## 4136 City Hotel 1
## 4137 City Hotel 1
## 4138 City Hotel 1
## 4139 City Hotel 2
## 4140 City Hotel 2
## 4141 City Hotel 1
## 4142 City Hotel 1
## 4143 City Hotel 1
## 4144 City Hotel 1
## 4145 City Hotel 1
## 4146 City Hotel 1
## 4147 City Hotel 1
## 4148 City Hotel 1
## 4149 City Hotel 2
## 4150 City Hotel 1
## 4151 City Hotel 1
## 4152 City Hotel 1
## 4153 City Hotel 1
## 4154 City Hotel 1
## 4155 City Hotel 1
## 4156 City Hotel 1
## 4157 City Hotel 1
## 4158 City Hotel 1
## 4159 City Hotel 1
## 4160 City Hotel 1
## 4161 City Hotel 2
## 4162 City Hotel 1
## 4163 City Hotel 2
## 4164 City Hotel 1
## 4165 City Hotel 1
## 4166 City Hotel 1
## 4167 City Hotel 2
## 4168 City Hotel 2
## 4169 City Hotel 1
## 4170 City Hotel 1
## 4171 City Hotel 1
## 4172 City Hotel 1
## 4173 City Hotel 1
## 4174 City Hotel 2
## 4175 City Hotel 1
## 4176 City Hotel 1
## 4177 City Hotel 2
## 4178 City Hotel 2
## 4179 City Hotel 1
## 4180 City Hotel 2
## 4181 City Hotel 1
## 4182 City Hotel 1
## 4183 City Hotel 1
## 4184 City Hotel 1
## 4185 City Hotel 1
## 4186 City Hotel 1
## 4187 City Hotel 1
## 4188 City Hotel 1
## 4189 City Hotel 2
## 4190 City Hotel 1
## 4191 City Hotel 1
## 4192 City Hotel 2
## 4193 City Hotel 1
## 4194 City Hotel 2
## 4195 City Hotel 1
## 4196 City Hotel 1
## 4197 City Hotel 2
## 4198 City Hotel 2
## 4199 City Hotel 2
## 4200 City Hotel 1
## 4201 City Hotel 1
## 4202 City Hotel 1
## 4203 City Hotel 2
## 4204 City Hotel 2
## 4205 City Hotel 1
## 4206 City Hotel 2
## 4207 City Hotel 3
## 4208 City Hotel 1
## 4209 City Hotel 1
## 4210 City Hotel 1
## 4211 City Hotel 1
## 4212 City Hotel 1
## 4213 City Hotel 1
## 4214 City Hotel 1
## 4215 City Hotel 1
## 4216 City Hotel 2
## 4217 City Hotel 1
## 4218 City Hotel 1
## 4219 City Hotel 1
## 4220 City Hotel 1
## 4221 City Hotel 1
## 4222 City Hotel 1
## 4223 City Hotel 1
## 4224 City Hotel 1
## 4225 City Hotel 2
## 4226 City Hotel 2
## 4227 City Hotel 1
## 4228 City Hotel 1
## 4229 City Hotel 2
## 4230 City Hotel 1
## 4231 City Hotel 1
## 4232 City Hotel 1
## 4233 City Hotel 2
## 4234 City Hotel 1
## 4235 City Hotel 1
## 4236 City Hotel 2
## 4237 City Hotel 2
## 4238 City Hotel 1
## 4239 City Hotel 1
## 4240 City Hotel 1
## 4241 City Hotel 2
## 4242 City Hotel 1
## 4243 City Hotel 1
## 4244 City Hotel 1
## 4245 City Hotel 1
## 4246 City Hotel 2
## 4247 City Hotel 1
## 4248 City Hotel 1
## 4249 City Hotel 1
## 4250 City Hotel 1
## 4251 City Hotel 1
## 4252 City Hotel 1
## 4253 City Hotel 2
## 4254 City Hotel 2
## 4255 City Hotel 1
## 4256 City Hotel 1
## 4257 City Hotel 1
## 4258 City Hotel 1
## 4259 City Hotel 1
## 4260 City Hotel 1
## 4261 City Hotel 2
## 4262 City Hotel 1
## 4263 City Hotel 1
## 4264 City Hotel 3
## 4265 City Hotel 1
## 4266 City Hotel 1
## 4267 City Hotel 2
## 4268 City Hotel 1
## 4269 City Hotel 1
## 4270 City Hotel 1
## 4271 City Hotel 2
## 4272 City Hotel 1
## 4273 City Hotel 1
## 4274 City Hotel 1
## 4275 City Hotel 1
## 4276 City Hotel 1
## 4277 City Hotel 1
## 4278 City Hotel 1
## 4279 City Hotel 1
## 4280 City Hotel 3
## 4281 City Hotel 2
## 4282 City Hotel 1
## 4283 City Hotel 1
## 4284 City Hotel 2
## 4285 City Hotel 2
## 4286 City Hotel 2
## 4287 City Hotel 1
## 4288 City Hotel 1
## 4289 City Hotel 2
## 4290 City Hotel 1
## 4291 City Hotel 1
## 4292 City Hotel 2
## 4293 City Hotel 1
## 4294 City Hotel 1
## 4295 City Hotel 1
## 4296 City Hotel 2
## 4297 City Hotel 2
## 4298 City Hotel 1
## 4299 City Hotel 1
## 4300 City Hotel 1
## 4301 City Hotel 2
## 4302 City Hotel 1
## 4303 City Hotel 1
## 4304 City Hotel 1
## 4305 City Hotel 2
## 4306 City Hotel 1
## 4307 City Hotel 1
## 4308 City Hotel 1
## 4309 City Hotel 2
## 4310 City Hotel 1
## 4311 City Hotel 2
## 4312 City Hotel 1
## 4313 City Hotel 2
## 4314 City Hotel 1
## 4315 City Hotel 1
## 4316 City Hotel 1
## 4317 City Hotel 1
## 4318 City Hotel 2
## 4319 City Hotel 2
## 4320 City Hotel 2
## 4321 City Hotel 1
## 4322 City Hotel 1
## 4323 City Hotel 1
## 4324 City Hotel 1
## 4325 City Hotel 2
## 4326 City Hotel 1
## 4327 City Hotel 1
## 4328 City Hotel 1
## 4329 City Hotel 2
## 4330 City Hotel 1
## 4331 City Hotel 1
## 4332 City Hotel 1
## 4333 City Hotel 1
## 4334 City Hotel 1
## 4335 City Hotel 1
## 4336 City Hotel 2
## 4337 City Hotel 1
## 4338 City Hotel 2
## 4339 City Hotel 1
## 4340 City Hotel 1
## 4341 City Hotel 1
## 4342 City Hotel 1
## 4343 City Hotel 1
## 4344 City Hotel 1
## 4345 City Hotel 1
## 4346 City Hotel 1
## 4347 City Hotel 1
## 4348 City Hotel 1
## 4349 City Hotel 1
## 4350 City Hotel 2
## 4351 City Hotel 2
## 4352 City Hotel 1
## 4353 City Hotel 1
## 4354 City Hotel 2
## 4355 City Hotel 1
## 4356 City Hotel 1
## 4357 City Hotel 2
## 4358 City Hotel 2
## 4359 City Hotel 1
## 4360 City Hotel 1
## 4361 City Hotel 3
## 4362 City Hotel 2
## 4363 City Hotel 1
## 4364 City Hotel 1
## 4365 City Hotel 2
## 4366 City Hotel 1
## 4367 City Hotel 1
## 4368 City Hotel 1
## 4369 City Hotel 1
## 4370 City Hotel 2
## 4371 City Hotel 1
## 4372 City Hotel 1
## 4373 City Hotel 1
## 4374 City Hotel 1
## 4375 City Hotel 1
## 4376 City Hotel 1
## 4377 City Hotel 1
## 4378 City Hotel 1
## 4379 City Hotel 1
## 4380 City Hotel 2
## 4381 City Hotel 1
## 4382 City Hotel 2
## 4383 City Hotel 1
## 4384 City Hotel 2
## 4385 City Hotel 1
## 4386 City Hotel 1
## 4387 City Hotel 2
## 4388 City Hotel 1
## 4389 City Hotel 2
## 4390 City Hotel 1
## 4391 City Hotel 1
## 4392 City Hotel 2
## 4393 City Hotel 1
## 4394 City Hotel 1
## 4395 City Hotel 1
## 4396 City Hotel 1
## 4397 City Hotel 2
## 4398 City Hotel 1
## 4399 City Hotel 2
## 4400 City Hotel 2
## 4401 City Hotel 2
## 4402 City Hotel 1
## 4403 City Hotel 2
## 4404 City Hotel 1
## 4405 City Hotel 2
## 4406 City Hotel 1
## 4407 City Hotel 2
## 4408 City Hotel 1
## 4409 City Hotel 2
## 4410 City Hotel 2
## 4411 City Hotel 1
## 4412 City Hotel 1
## 4413 City Hotel 2
## 4414 City Hotel 3
## 4415 City Hotel 1
## 4416 City Hotel 2
## 4417 City Hotel 2
## 4418 City Hotel 2
## 4419 City Hotel 2
## 4420 City Hotel 1
## 4421 City Hotel 2
## 4422 City Hotel 1
## 4423 City Hotel 2
## 4424 City Hotel 2
## 4425 City Hotel 1
## 4426 City Hotel 1
## 4427 City Hotel 1
## 4428 City Hotel 3
## 4429 City Hotel 2
## 4430 City Hotel 1
## 4431 City Hotel 2
## 4432 City Hotel 1
## 4433 City Hotel 2
## 4434 City Hotel 2
## 4435 City Hotel 1
## 4436 City Hotel 2
## 4437 City Hotel 3
## 4438 City Hotel 2
## 4439 City Hotel 2
## 4440 City Hotel 1
## 4441 City Hotel 2
## 4442 City Hotel 2
## 4443 City Hotel 1
## 4444 City Hotel 2
## 4445 City Hotel 1
## 4446 City Hotel 2
## 4447 City Hotel 1
## 4448 City Hotel 1
## 4449 City Hotel 1
## 4450 City Hotel 2
## 4451 City Hotel 1
## 4452 City Hotel 1
## 4453 City Hotel 2
## 4454 City Hotel 1
## 4455 City Hotel 1
## 4456 City Hotel 1
## 4457 City Hotel 1
## 4458 City Hotel 1
## 4459 City Hotel 1
## 4460 City Hotel 1
## 4461 City Hotel 1
## 4462 City Hotel 2
## 4463 City Hotel 1
## 4464 City Hotel 2
## 4465 City Hotel 1
## 4466 City Hotel 2
## 4467 City Hotel 1
## 4468 City Hotel 1
## 4469 City Hotel 1
## 4470 City Hotel 1
## 4471 City Hotel 1
## 4472 City Hotel 2
## 4473 City Hotel 1
## 4474 City Hotel 1
## 4475 City Hotel 1
## 4476 City Hotel 1
## 4477 City Hotel 1
## 4478 City Hotel 1
## 4479 City Hotel 2
## 4480 City Hotel 1
## 4481 City Hotel 1
## 4482 City Hotel 2
## 4483 City Hotel 1
## 4484 City Hotel 1
## 4485 City Hotel 1
## 4486 City Hotel 1
## 4487 City Hotel 1
## 4488 City Hotel 2
## 4489 City Hotel 1
## 4490 City Hotel 1
## 4491 City Hotel 1
## 4492 City Hotel 2
## 4493 City Hotel 2
## 4494 City Hotel 2
## 4495 City Hotel 2
## 4496 City Hotel 2
## 4497 City Hotel 2
## 4498 City Hotel 2
## 4499 City Hotel 2
## 4500 City Hotel 1
## 4501 City Hotel 1
## 4502 City Hotel 1
## 4503 City Hotel 2
## 4504 City Hotel 1
## 4505 City Hotel 1
## 4506 City Hotel 2
## 4507 City Hotel 2
## 4508 City Hotel 1
## 4509 City Hotel 1
## 4510 City Hotel 2
## 4511 City Hotel 1
## 4512 City Hotel 1
## 4513 City Hotel 1
## 4514 City Hotel 1
## 4515 City Hotel 1
## 4516 City Hotel 2
## 4517 City Hotel 1
## 4518 City Hotel 2
## 4519 City Hotel 1
## 4520 City Hotel 1
## 4521 City Hotel 2
## 4522 City Hotel 2
## 4523 City Hotel 1
## 4524 City Hotel 2
## 4525 City Hotel 2
## 4526 City Hotel 1
## 4527 City Hotel 2
## 4528 City Hotel 1
## 4529 City Hotel 2
## 4530 City Hotel 1
## 4531 City Hotel 2
## 4532 City Hotel 1
## 4533 City Hotel 2
## 4534 City Hotel 1
## 4535 City Hotel 2
## 4536 City Hotel 2
## 4537 City Hotel 1
## 4538 City Hotel 1
## 4539 City Hotel 1
## 4540 City Hotel 2
## 4541 City Hotel 1
## 4542 City Hotel 2
## 4543 City Hotel 2
## 4544 City Hotel 1
## 4545 City Hotel 1
## 4546 City Hotel 1
## 4547 City Hotel 2
## 4548 City Hotel 2
## 4549 City Hotel 1
## 4550 City Hotel 1
## 4551 City Hotel 2
## 4552 City Hotel 2
## 4553 City Hotel 1
## 4554 City Hotel 2
## 4555 City Hotel 2
## 4556 City Hotel 1
## 4557 City Hotel 1
## 4558 City Hotel 2
## 4559 City Hotel 1
## 4560 City Hotel 1
## 4561 City Hotel 1
## 4562 City Hotel 1
## 4563 City Hotel 1
## 4564 City Hotel 1
## 4565 City Hotel 2
## 4566 City Hotel 2
## 4567 City Hotel 1
## 4568 City Hotel 1
## 4569 City Hotel 1
## 4570 City Hotel 1
## 4571 City Hotel 1
## 4572 City Hotel 1
## 4573 City Hotel 1
## 4574 City Hotel 2
## 4575 City Hotel 1
## 4576 City Hotel 2
## 4577 City Hotel 2
## 4578 City Hotel 2
## 4579 City Hotel 1
## 4580 City Hotel 1
## 4581 City Hotel 2
## 4582 City Hotel 1
## 4583 City Hotel 1
## 4584 City Hotel 2
## 4585 City Hotel 1
## 4586 City Hotel 2
## 4587 City Hotel 1
## 4588 City Hotel 2
## 4589 City Hotel 2
## 4590 City Hotel 1
## 4591 City Hotel 1
## 4592 City Hotel 2
## 4593 City Hotel 1
## 4594 City Hotel 2
## 4595 City Hotel 2
## 4596 City Hotel 1
## 4597 City Hotel 1
## 4598 City Hotel 1
## 4599 City Hotel 2
## 4600 City Hotel 2
## 4601 City Hotel 1
## 4602 City Hotel 1
## 4603 City Hotel 1
## 4604 City Hotel 1
## 4605 City Hotel 1
## 4606 City Hotel 1
## 4607 City Hotel 2
## 4608 City Hotel 1
## 4609 City Hotel 1
## 4610 City Hotel 2
## 4611 City Hotel 2
## 4612 City Hotel 1
## 4613 City Hotel 1
## 4614 City Hotel 1
## 4615 City Hotel 1
## 4616 City Hotel 1
## 4617 City Hotel 1
## 4618 City Hotel 1
## 4619 City Hotel 1
## 4620 City Hotel 2
## 4621 City Hotel 1
## 4622 City Hotel 2
## 4623 City Hotel 1
## 4624 City Hotel 1
## 4625 City Hotel 1
## 4626 City Hotel 1
## 4627 City Hotel 1
## 4628 City Hotel 2
## 4629 City Hotel 1
## 4630 City Hotel 1
## 4631 City Hotel 1
## 4632 City Hotel 1
## 4633 City Hotel 1
## 4634 City Hotel 1
## 4635 City Hotel 1
## 4636 City Hotel 2
## 4637 City Hotel 1
## 4638 City Hotel 1
## 4639 City Hotel 2
## 4640 City Hotel 2
## 4641 City Hotel 1
## 4642 City Hotel 2
## 4643 City Hotel 1
## 4644 City Hotel 1
## 4645 City Hotel 1
## 4646 City Hotel 2
## 4647 City Hotel 2
## 4648 City Hotel 2
## 4649 City Hotel 1
## 4650 City Hotel 1
## 4651 City Hotel 1
## 4652 City Hotel 2
## 4653 City Hotel 1
## 4654 City Hotel 2
## 4655 City Hotel 3
## 4656 City Hotel 2
## 4657 City Hotel 1
## 4658 City Hotel 1
## 4659 City Hotel 1
## 4660 City Hotel 2
## 4661 City Hotel 1
## 4662 City Hotel 2
## 4663 City Hotel 1
## 4664 City Hotel 1
## 4665 City Hotel 1
## 4666 City Hotel 2
## 4667 City Hotel 1
## 4668 City Hotel 2
## 4669 City Hotel 2
## 4670 City Hotel 1
## 4671 City Hotel 1
## 4672 City Hotel 2
## 4673 City Hotel 2
## 4674 City Hotel 1
## 4675 City Hotel 1
## 4676 City Hotel 2
## 4677 City Hotel 1
## 4678 City Hotel 1
## 4679 City Hotel 2
## 4680 City Hotel 2
## 4681 City Hotel 1
## 4682 City Hotel 1
## 4683 City Hotel 1
## 4684 City Hotel 2
## 4685 City Hotel 1
## 4686 City Hotel 1
## 4687 City Hotel 2
## 4688 City Hotel 2
## 4689 City Hotel 2
## 4690 City Hotel 1
## 4691 City Hotel 1
## 4692 City Hotel 1
## 4693 City Hotel 2
## 4694 City Hotel 2
## 4695 City Hotel 1
## 4696 City Hotel 1
## 4697 City Hotel 1
## 4698 City Hotel 2
## 4699 City Hotel 1
## 4700 City Hotel 1
## 4701 City Hotel 1
## 4702 City Hotel 1
## 4703 City Hotel 1
## 4704 City Hotel 1
## 4705 City Hotel 1
## 4706 City Hotel 1
## 4707 City Hotel 2
## 4708 City Hotel 1
## 4709 City Hotel 2
## 4710 City Hotel 1
## 4711 City Hotel 1
## 4712 City Hotel 1
## 4713 City Hotel 2
## 4714 City Hotel 2
## 4715 City Hotel 2
## 4716 City Hotel 1
## 4717 City Hotel 1
## 4718 City Hotel 2
## 4719 City Hotel 2
## 4720 City Hotel 1
## 4721 City Hotel 1
## 4722 City Hotel 1
## 4723 City Hotel 1
## 4724 City Hotel 1
## 4725 City Hotel 1
## 4726 City Hotel 1
## 4727 City Hotel 2
## 4728 City Hotel 2
## 4729 City Hotel 1
## 4730 City Hotel 1
## 4731 City Hotel 1
## 4732 City Hotel 2
## 4733 City Hotel 2
## 4734 City Hotel 2
## 4735 City Hotel 1
## 4736 City Hotel 1
## 4737 City Hotel 2
## 4738 City Hotel 1
## 4739 City Hotel 1
## 4740 City Hotel 1
## 4741 City Hotel 1
## 4742 City Hotel 2
## 4743 City Hotel 2
## 4744 City Hotel 2
## 4745 City Hotel 1
## 4746 City Hotel 1
## 4747 City Hotel 1
## 4748 City Hotel 1
## 4749 City Hotel 1
## 4750 City Hotel 1
## 4751 City Hotel 2
## 4752 City Hotel 1
## 4753 City Hotel 2
## 4754 City Hotel 2
## 4755 City Hotel 2
## 4756 City Hotel 1
## 4757 City Hotel 1
## 4758 City Hotel 2
## 4759 City Hotel 1
## 4760 City Hotel 1
## 4761 City Hotel 1
## 4762 City Hotel 2
## 4763 City Hotel 1
## 4764 City Hotel 1
## 4765 City Hotel 1
## 4766 City Hotel 2
## 4767 City Hotel 1
## 4768 City Hotel 2
## 4769 City Hotel 1
## 4770 City Hotel 1
## 4771 City Hotel 1
## 4772 City Hotel 2
## 4773 City Hotel 1
## 4774 City Hotel 1
## 4775 City Hotel 1
## 4776 City Hotel 1
## 4777 City Hotel 2
## 4778 City Hotel 1
## 4779 City Hotel 1
## 4780 City Hotel 1
## 4781 City Hotel 1
## 4782 City Hotel 1
## 4783 City Hotel 2
## 4784 City Hotel 2
## 4785 City Hotel 2
## 4786 City Hotel 2
## 4787 City Hotel 2
## 4788 City Hotel 1
## 4789 City Hotel 1
## 4790 City Hotel 1
## 4791 City Hotel 2
## 4792 City Hotel 1
## 4793 City Hotel 2
## 4794 City Hotel 1
## 4795 City Hotel 2
## 4796 City Hotel 1
## 4797 City Hotel 1
## 4798 City Hotel 2
## 4799 City Hotel 1
## 4800 City Hotel 1
## 4801 City Hotel 2
## 4802 City Hotel 1
## 4803 City Hotel 1
## 4804 City Hotel 2
## 4805 City Hotel 2
## 4806 City Hotel 1
## 4807 City Hotel 1
## 4808 City Hotel 2
## 4809 City Hotel 1
## 4810 City Hotel 1
## 4811 City Hotel 3
## 4812 City Hotel 1
## 4813 City Hotel 1
## 4814 City Hotel 2
## 4815 City Hotel 2
## 4816 City Hotel 2
## 4817 City Hotel 2
## 4818 City Hotel 1
## 4819 City Hotel 2
## 4820 City Hotel 2
## 4821 City Hotel 2
## 4822 City Hotel 1
## 4823 City Hotel 1
## 4824 City Hotel 3
## 4825 City Hotel 1
## 4826 City Hotel 1
## 4827 City Hotel 1
## 4828 City Hotel 1
## 4829 City Hotel 1
## 4830 City Hotel 2
## 4831 City Hotel 1
## 4832 City Hotel 2
## 4833 City Hotel 1
## 4834 City Hotel 1
## 4835 City Hotel 1
## 4836 City Hotel 1
## 4837 City Hotel 2
## 4838 City Hotel 1
## 4839 City Hotel 1
## 4840 City Hotel 1
## 4841 City Hotel 1
## 4842 City Hotel 1
## 4843 City Hotel 1
## 4844 City Hotel 2
## 4845 City Hotel 1
## 4846 City Hotel 1
## 4847 City Hotel 2
## 4848 City Hotel 2
## 4849 City Hotel 1
## 4850 City Hotel 2
## 4851 City Hotel 2
## 4852 City Hotel 1
## 4853 City Hotel 3
## 4854 City Hotel 2
## 4855 City Hotel 3
## 4856 City Hotel 2
## 4857 City Hotel 2
## 4858 City Hotel 1
## 4859 City Hotel 1
## 4860 City Hotel 2
## 4861 City Hotel 2
## 4862 City Hotel 1
## 4863 City Hotel 1
## 4864 City Hotel 1
## 4865 City Hotel 2
## 4866 City Hotel 2
## 4867 City Hotel 1
## 4868 City Hotel 1
## 4869 City Hotel 1
## 4870 City Hotel 1
## 4871 City Hotel 1
## 4872 City Hotel 1
## 4873 City Hotel 2
## 4874 City Hotel 1
## 4875 City Hotel 1
## 4876 City Hotel 2
## 4877 City Hotel 2
## 4878 City Hotel 1
## 4879 City Hotel 1
## 4880 City Hotel 3
## 4881 City Hotel 1
## 4882 City Hotel 1
## 4883 City Hotel 1
## 4884 City Hotel 1
## 4885 City Hotel 1
## 4886 City Hotel 1
## 4887 City Hotel 1
## 4888 City Hotel 2
## 4889 City Hotel 1
## 4890 City Hotel 2
## 4891 City Hotel 3
## 4892 City Hotel 1
## 4893 City Hotel 1
## 4894 City Hotel 1
## 4895 City Hotel 2
## 4896 City Hotel 2
## 4897 City Hotel 1
## 4898 City Hotel 3
## 4899 City Hotel 1
## 4900 City Hotel 1
## 4901 City Hotel 1
## 4902 City Hotel 2
## 4903 City Hotel 1
## 4904 City Hotel 1
## 4905 City Hotel 1
## 4906 City Hotel 2
## 4907 City Hotel 1
## 4908 City Hotel 1
## 4909 City Hotel 2
## 4910 City Hotel 2
## 4911 City Hotel 2
## 4912 City Hotel 1
## 4913 City Hotel 1
## 4914 City Hotel 1
## 4915 City Hotel 2
## 4916 City Hotel 1
## 4917 City Hotel 2
## 4918 City Hotel 1
## 4919 City Hotel 2
## 4920 City Hotel 1
## 4921 City Hotel 2
## 4922 City Hotel 1
## 4923 City Hotel 1
## 4924 City Hotel 2
## 4925 City Hotel 1
## 4926 City Hotel 1
## 4927 City Hotel 1
## 4928 City Hotel 2
## 4929 City Hotel 1
## 4930 City Hotel 3
## 4931 City Hotel 1
## 4932 City Hotel 2
## 4933 City Hotel 1
## 4934 City Hotel 1
## 4935 City Hotel 2
## 4936 City Hotel 1
## 4937 City Hotel 2
## 4938 City Hotel 1
## 4939 City Hotel 1
## 4940 City Hotel 1
## 4941 City Hotel 1
## 4942 City Hotel 1
## 4943 City Hotel 2
## 4944 City Hotel 2
## 4945 City Hotel 1
## 4946 City Hotel 2
## 4947 City Hotel 2
## 4948 City Hotel 2
## 4949 City Hotel 1
## 4950 City Hotel 2
## 4951 City Hotel 1
## 4952 City Hotel 1
## 4953 City Hotel 2
## 4954 City Hotel 1
## 4955 City Hotel 1
## 4956 City Hotel 2
## 4957 City Hotel 2
## 4958 City Hotel 1
## 4959 City Hotel 1
## 4960 City Hotel 2
## 4961 City Hotel 1
## 4962 City Hotel 1
## 4963 City Hotel 2
## 4964 City Hotel 2
## 4965 City Hotel 2
## 4966 City Hotel 1
## 4967 City Hotel 1
## 4968 City Hotel 1
## 4969 City Hotel 1
## 4970 City Hotel 1
## 4971 City Hotel 2
## 4972 City Hotel 1
## 4973 City Hotel 2
## 4974 City Hotel 1
## 4975 City Hotel 1
## 4976 City Hotel 1
## 4977 City Hotel 1
## 4978 City Hotel 1
## 4979 City Hotel 2
## 4980 City Hotel 1
## 4981 City Hotel 1
## 4982 City Hotel 2
## 4983 City Hotel 1
## 4984 City Hotel 1
## 4985 City Hotel 1
## 4986 City Hotel 1
## 4987 City Hotel 1
## 4988 City Hotel 1
## 4989 City Hotel 3
## 4990 City Hotel 2
## 4991 City Hotel 2
## 4992 City Hotel 1
## 4993 City Hotel 2
## 4994 City Hotel 1
## 4995 City Hotel 1
## 4996 City Hotel 2
## 4997 City Hotel 1
## 4998 City Hotel 1
## 4999 City Hotel 1
## 5000 City Hotel 1
## 5001 City Hotel 1
## 5002 City Hotel 1
## 5003 City Hotel 1
## 5004 City Hotel 1
## 5005 City Hotel 1
## 5006 City Hotel 1
## 5007 City Hotel 1
## 5008 City Hotel 1
## 5009 City Hotel 1
## 5010 City Hotel 1
## 5011 City Hotel 1
## 5012 City Hotel 1
## 5013 City Hotel 2
## 5014 City Hotel 1
## 5015 City Hotel 1
## 5016 City Hotel 1
## 5017 City Hotel 2
## 5018 City Hotel 2
## 5019 City Hotel 1
## 5020 City Hotel 1
## 5021 City Hotel 2
## 5022 City Hotel 2
## 5023 City Hotel 1
## 5024 City Hotel 1
## 5025 City Hotel 1
## 5026 City Hotel 1
## 5027 City Hotel 1
## 5028 City Hotel 1
## 5029 City Hotel 2
## 5030 City Hotel 1
## 5031 City Hotel 1
## 5032 City Hotel 1
## 5033 City Hotel 3
## 5034 City Hotel 2
## 5035 City Hotel 1
## 5036 City Hotel 1
## 5037 City Hotel 1
## 5038 City Hotel 1
## 5039 City Hotel 2
## 5040 City Hotel 1
## 5041 City Hotel 1
## 5042 City Hotel 1
## 5043 City Hotel 1
## 5044 City Hotel 1
## 5045 City Hotel 1
## 5046 City Hotel 2
## 5047 City Hotel 1
## 5048 City Hotel 2
## 5049 City Hotel 1
## 5050 City Hotel 1
## 5051 City Hotel 1
## 5052 City Hotel 2
## 5053 City Hotel 2
## 5054 City Hotel 2
## 5055 City Hotel 1
## 5056 City Hotel 1
## 5057 City Hotel 1
## 5058 City Hotel 1
## 5059 City Hotel 1
## 5060 City Hotel 2
## 5061 City Hotel 1
## 5062 City Hotel 2
## 5063 City Hotel 2
## 5064 City Hotel 2
## 5065 City Hotel 1
## 5066 City Hotel 1
## 5067 City Hotel 1
## 5068 City Hotel 1
## 5069 City Hotel 2
## 5070 City Hotel 1
## 5071 City Hotel 1
## 5072 City Hotel 1
## 5073 City Hotel 2
## 5074 City Hotel 2
## 5075 City Hotel 2
## 5076 City Hotel 2
## 5077 City Hotel 1
## 5078 City Hotel 2
## 5079 City Hotel 1
## 5080 City Hotel 2
## 5081 City Hotel 1
## 5082 City Hotel 2
## 5083 City Hotel 1
## 5084 City Hotel 1
## 5085 City Hotel 1
## 5086 City Hotel 2
## 5087 City Hotel 2
## 5088 City Hotel 1
## 5089 City Hotel 1
## 5090 City Hotel 2
## 5091 City Hotel 1
## 5092 City Hotel 1
## 5093 City Hotel 2
## 5094 City Hotel 2
## 5095 City Hotel 2
## 5096 City Hotel 2
## 5097 City Hotel 2
## 5098 City Hotel 2
## 5099 City Hotel 2
## 5100 City Hotel 1
## 5101 City Hotel 1
## 5102 City Hotel 2
## 5103 City Hotel 1
## 5104 City Hotel 1
## 5105 City Hotel 1
## 5106 City Hotel 1
## 5107 City Hotel 1
## 5108 City Hotel 3
## 5109 City Hotel 1
## 5110 City Hotel 2
## 5111 City Hotel 1
## 5112 City Hotel 2
## 5113 City Hotel 2
## 5114 City Hotel 1
## 5115 City Hotel 1
## 5116 City Hotel 1
## 5117 City Hotel 2
## 5118 City Hotel 2
## 5119 City Hotel 1
## 5120 City Hotel 1
## 5121 City Hotel 1
## 5122 City Hotel 1
## 5123 City Hotel 2
## 5124 City Hotel 2
## 5125 City Hotel 1
## 5126 City Hotel 1
## 5127 City Hotel 1
## 5128 City Hotel 1
## 5129 City Hotel 1
## 5130 City Hotel 2
## 5131 City Hotel 2
## 5132 City Hotel 1
## 5133 City Hotel 1
## 5134 City Hotel 1
## 5135 City Hotel 1
## 5136 City Hotel 2
## 5137 City Hotel 3
## 5138 City Hotel 2
## 5139 City Hotel 2
## 5140 City Hotel 2
## 5141 City Hotel 1
## 5142 City Hotel 1
## 5143 City Hotel 2
## 5144 City Hotel 1
## 5145 City Hotel 1
## 5146 City Hotel 2
## 5147 City Hotel 2
## 5148 City Hotel 2
## 5149 City Hotel 1
## 5150 City Hotel 1
## 5151 City Hotel 1
## 5152 City Hotel 1
## 5153 City Hotel 1
## 5154 City Hotel 1
## 5155 City Hotel 2
## 5156 City Hotel 2
## 5157 City Hotel 1
## 5158 City Hotel 1
## 5159 City Hotel 1
## 5160 City Hotel 1
## 5161 City Hotel 2
## 5162 City Hotel 1
## 5163 City Hotel 2
## 5164 City Hotel 1
## 5165 City Hotel 1
## 5166 City Hotel 1
## 5167 City Hotel 2
## 5168 City Hotel 1
## 5169 City Hotel 2
## 5170 City Hotel 2
## 5171 City Hotel 2
## 5172 City Hotel 2
## 5173 City Hotel 2
## 5174 City Hotel 1
## 5175 City Hotel 2
## 5176 City Hotel 1
## 5177 City Hotel 2
## 5178 City Hotel 2
## 5179 City Hotel 1
## 5180 City Hotel 1
## 5181 City Hotel 2
## 5182 City Hotel 1
## 5183 City Hotel 1
## 5184 City Hotel 2
## 5185 City Hotel 1
## 5186 City Hotel 1
## 5187 City Hotel 2
## 5188 City Hotel 2
## 5189 City Hotel 1
## 5190 City Hotel 1
## 5191 City Hotel 1
## 5192 City Hotel 1
## 5193 City Hotel 1
## 5194 City Hotel 1
## 5195 City Hotel 2
## 5196 City Hotel 1
## 5197 City Hotel 1
## 5198 City Hotel 2
## 5199 City Hotel 1
## 5200 City Hotel 2
## 5201 City Hotel 3
## 5202 City Hotel 1
## 5203 City Hotel 1
## 5204 City Hotel 2
## 5205 City Hotel 2
## 5206 City Hotel 2
## 5207 City Hotel 1
## 5208 City Hotel 1
## 5209 City Hotel 1
## 5210 City Hotel 1
## 5211 City Hotel 1
## 5212 City Hotel 1
## 5213 City Hotel 1
## 5214 City Hotel 2
## 5215 City Hotel 1
## 5216 City Hotel 1
## 5217 City Hotel 1
## 5218 City Hotel 2
## 5219 City Hotel 1
## 5220 City Hotel 1
## 5221 City Hotel 2
## 5222 City Hotel 2
## 5223 City Hotel 2
## 5224 City Hotel 1
## 5225 City Hotel 2
## 5226 City Hotel 1
## 5227 City Hotel 2
## 5228 City Hotel 1
## 5229 City Hotel 1
## 5230 City Hotel 2
## 5231 City Hotel 2
## 5232 City Hotel 2
## 5233 City Hotel 1
## 5234 City Hotel 2
## 5235 City Hotel 3
## 5236 City Hotel 1
## 5237 City Hotel 1
## 5238 City Hotel 2
## 5239 City Hotel 2
## 5240 City Hotel 1
## 5241 City Hotel 1
## 5242 City Hotel 3
## 5243 City Hotel 1
## 5244 City Hotel 2
## 5245 City Hotel 2
## 5246 City Hotel 2
## 5247 City Hotel 3
## 5248 City Hotel 2
## 5249 City Hotel 2
## 5250 City Hotel 1
## 5251 City Hotel 3
## 5252 City Hotel 1
## 5253 City Hotel 1
## 5254 City Hotel 1
## 5255 City Hotel 1
## 5256 City Hotel 2
## 5257 City Hotel 1
## 5258 City Hotel 2
## 5259 City Hotel 1
## 5260 City Hotel 1
## 5261 City Hotel 2
## 5262 City Hotel 1
## 5263 City Hotel 1
## 5264 City Hotel 1
## 5265 City Hotel 1
## 5266 City Hotel 1
## 5267 City Hotel 1
## 5268 City Hotel 2
## 5269 City Hotel 1
## 5270 City Hotel 1
## 5271 City Hotel 1
## 5272 City Hotel 1
## 5273 City Hotel 1
## 5274 City Hotel 2
## 5275 City Hotel 1
## 5276 City Hotel 3
## 5277 City Hotel 2
## 5278 City Hotel 1
## 5279 City Hotel 1
## 5280 City Hotel 1
## 5281 City Hotel 1
## 5282 City Hotel 1
## 5283 City Hotel 1
## 5284 City Hotel 1
## 5285 City Hotel 1
## 5286 City Hotel 1
## 5287 City Hotel 2
## 5288 City Hotel 1
## 5289 City Hotel 1
## 5290 City Hotel 1
## 5291 City Hotel 1
## 5292 City Hotel 2
## 5293 City Hotel 1
## 5294 City Hotel 1
## 5295 City Hotel 2
## 5296 City Hotel 2
## 5297 City Hotel 1
## 5298 City Hotel 1
## 5299 City Hotel 1
## 5300 City Hotel 1
## 5301 City Hotel 2
## 5302 City Hotel 2
## 5303 City Hotel 2
## 5304 City Hotel 1
## 5305 City Hotel 1
## 5306 City Hotel 1
## 5307 City Hotel 3
## 5308 City Hotel 2
## 5309 City Hotel 2
## 5310 City Hotel 1
## 5311 City Hotel 1
## 5312 City Hotel 2
## 5313 City Hotel 1
## 5314 City Hotel 1
## 5315 City Hotel 1
## 5316 City Hotel 1
## 5317 City Hotel 1
## 5318 City Hotel 1
## 5319 City Hotel 1
## 5320 City Hotel 2
## 5321 City Hotel 1
## 5322 City Hotel 2
## 5323 City Hotel 1
## 5324 City Hotel 1
## 5325 City Hotel 2
## 5326 City Hotel 2
## 5327 City Hotel 1
## 5328 City Hotel 1
## 5329 City Hotel 1
## 5330 City Hotel 1
## 5331 City Hotel 1
## 5332 City Hotel 1
## 5333 City Hotel 1
## 5334 City Hotel 2
## 5335 City Hotel 1
## 5336 City Hotel 2
## 5337 City Hotel 1
## 5338 City Hotel 1
## 5339 City Hotel 1
## 5340 City Hotel 1
## 5341 City Hotel 2
## 5342 City Hotel 1
## 5343 City Hotel 1
## 5344 City Hotel 2
## 5345 City Hotel 1
## 5346 City Hotel 1
## 5347 City Hotel 1
## 5348 City Hotel 1
## 5349 City Hotel 2
## 5350 City Hotel 1
## 5351 City Hotel 1
## 5352 City Hotel 1
## 5353 City Hotel 2
## 5354 City Hotel 1
## 5355 City Hotel 3
## 5356 City Hotel 1
## 5357 City Hotel 2
## 5358 City Hotel 2
## 5359 City Hotel 2
## 5360 City Hotel 1
## 5361 City Hotel 1
## 5362 City Hotel 1
## 5363 City Hotel 1
## 5364 City Hotel 2
## 5365 City Hotel 2
## 5366 City Hotel 1
## 5367 City Hotel 2
## 5368 City Hotel 1
## 5369 City Hotel 1
## 5370 City Hotel 1
## 5371 City Hotel 1
## 5372 City Hotel 1
## 5373 City Hotel 2
## 5374 City Hotel 1
## 5375 City Hotel 2
## 5376 City Hotel 3
## 5377 City Hotel 2
## 5378 City Hotel 3
## 5379 City Hotel 2
## 5380 City Hotel 1
## 5381 City Hotel 1
## 5382 City Hotel 2
## 5383 City Hotel 1
## 5384 City Hotel 1
## 5385 City Hotel 2
## 5386 City Hotel 1
## 5387 City Hotel 1
## 5388 City Hotel 2
## 5389 City Hotel 2
## 5390 City Hotel 2
## 5391 City Hotel 2
## 5392 City Hotel 1
## 5393 City Hotel 2
## 5394 City Hotel 2
## 5395 City Hotel 1
## 5396 City Hotel 2
## 5397 City Hotel 2
## 5398 City Hotel 2
## 5399 City Hotel 1
## 5400 City Hotel 1
## 5401 City Hotel 2
## 5402 City Hotel 1
## 5403 City Hotel 2
# mean average daily rate for all bookings
hotels %>%
summarise(mean_adr = mean(adr))
## mean_adr
## 1 101.8311
# mean average daily rate for all booking at city and resort hotels
hotels %>%
group_by(hotel) %>%
summarise(mean_adr = mean(adr))
## # A tibble: 2 × 2
## hotel mean_adr
## <chr> <dbl>
## 1 City Hotel 105.
## 2 Resort Hotel 95.0
# The following two give the same result, so count is simply short for group_by then determine frequencies
hotels %>%
group_by(hotel) %>%
summarise(n = n())
## # A tibble: 2 × 2
## hotel n
## <chr> <int>
## 1 City Hotel 79330
## 2 Resort Hotel 40060
hotels %>%
count(hotel)
## hotel n
## 1 City Hotel 79330
## 2 Resort Hotel 40060
hotels %>%
summarise(
min_adr = min(adr),
mean_adr = mean(adr),
median_adr = median(adr),
max_adr = max(adr)
)
## min_adr mean_adr median_adr max_adr
## 1 -6.38 101.8311 94.575 5400